pared Vulnerable to Use After Free in `Parc` and `Prc` Due to Missing Lifetime Constraints
Moderate severity
GitHub Reviewed
Published
Mar 24, 2025
to the GitHub Advisory Database
•
Updated Mar 24, 2025
Description
Published to the GitHub Advisory Database
Mar 24, 2025
Reviewed
Mar 24, 2025
Last updated
Mar 24, 2025
Affected versions of this crate didn't provide sufficient lifetime constraints to conversion functions from
alloc::sync::Arc
andalloc::rc::Rc
, which made it possible to create projections of these reference counted pointers. Unlike the original reference counted pointers, these projections could outlive original data's lifetimes.This projected pointer could cause the original
Arc
's orRc
'sDrop::drop
to get called at a point where the original data was no longer valid, leading to a potential use after free.The affected functions were
pared::prc::Prc::from_rc
pared::prc::Prc::project
pared::prc::Prc::try_from_rc
pared::sync::Parc::from_arc
pared::sync::Parc::project
pared::sync::Parc::try_from_arc
This flaw was fixed in 108f540ea8acb6073751a1aa386085c1cdc4fd1e by requiring that the type stored in the
Arc
s andRc
s passed to these functions containT: 'static
.References