Ecosyste.ms: Advisories
An open API service providing security vulnerability metadata for many open source software ecosystems.
Security Advisories: GSA_kwCzR0hTQS04bXY1LTd4OTUtN3djZs4AArsr
`mopa` is technically unsound
The mopa
crate redefines the deprecated TraitObject
struct from core::raw
like so:
#[repr(C)]
#[derive(Copy, Clone)]
#[doc(hidden)]
pub struct TraitObject {
pub data: *mut (),
pub vtable: *mut (),
}
This is done to then transmute a reference to a trait object (&dyn Trait
for any trait Trait
) into this struct and retrieve the data
field for the purpose of downcasting. This is used to implement downcast_ref_unchecked()
, in terms of which downcast_ref()
is also implemented. Same goes for mutable reference downcasting and Box
downcasting.
The Rust compiler explicitly reserves the right to change the memory layout of &dyn Trait
for any trait Trait
. The worst case scenario is that it swaps data
and vtable
, making an executable location breach and compromisation of ASLR possible, since reads from data
would read vtable
instead. Likewise, arbitrary code execution is also theoretically possible if reads of vtable
generated by the compiler read data
instead.
While, as of Rust 1.52, this unsound assumption still holds true, updating the compiler may silently create UB in a crate which previously compiled and run without issues, compromising the security of builds which are believed to be reproducible.
A potential strategy to resolve this has already been suggested in an issue on the GitHub repository of the crate.
Permalink: https://github.com/advisories/GHSA-8mv5-7x95-7wcfJSON: https://advisories.ecosyste.ms/api/v1/advisories/GSA_kwCzR0hTQS04bXY1LTd4OTUtN3djZs4AArsr
Source: GitHub Advisory Database
Origin: Unspecified
Severity: High
Classification: General
Published: over 2 years ago
Updated: over 1 year ago
Identifiers: GHSA-8mv5-7x95-7wcf
References:
- https://github.com/chris-morgan/mopa/issues/13
- https://rustsec.org/advisories/RUSTSEC-2021-0095.html
- https://github.com/advisories/GHSA-8mv5-7x95-7wcf
Blast Radius: 0.0
Affected Packages
cargo:mopa
Dependent packages: 28Dependent repositories: 609
Downloads: 870,420 total
Affected Version Ranges: <= 0.2.2
No known fixed version
All affected versions: 0.1.0, 0.1.1, 0.1.2, 0.1.3, 0.1.4, 0.1.5, 0.1.6, 0.1.7, 0.1.8, 0.2.0, 0.2.1, 0.2.2