RustSec logo

HistoryEditJSON (OSV)

RUSTSEC-2026-0308

Use-after-free in interned values and cached function results

Reported
Issued
Package
salsa (crates.io)
Type
INFO Unsound
Categories
Keywords
#use-after-free #interning #safe-api
Aliases
References
Patched
  • >=0.28.5
Unaffected
  • <0.23.0

Description

When an application reads an interned value's fields or uses that value as an input to a tracked function, Salsa must ensure that reusable storage has been validated for the current database revision. This prevents the value's fields and associated cached function results from being freed while in use. Affected versions checked this invariant only with debug_assert! when reading fields, and did not check it when using an interned value to access a tracked function's cached result.

Bugs in Salsa's dependency tracking, or an application-provided Eq implementation that incorrectly treats a changed query result as unchanged, can cause Salsa to reuse cached results containing stale interned values. If the application accesses these values and then interns additional values, Salsa can free the old fields or cached function results while references to them are still in use. This causes use-after-free through safe Rust APIs. Depending on the consuming application, attacker-controlled input may expose process memory or permit arbitrary code execution.

The fix asserts that an interned value's reusable storage has been validated for the current database revision before allowing an application to read its fields or access a tracked function's cached result using that value as input. If the assertion fails, Salsa panics before returning references to storage that could be freed while in use.

Salsa 0.28.5 and newer address this vulnerability. Dependent applications should update Salsa and rebuild.

Applications that disable garbage collection for all explicitly declared interned structs using #[salsa::interned(revisions = usize::MAX)] and do not use implicitly interned query arguments are not affected by this vulnerability.

Advisory available under CC0-1.0 license.