This project might be open to known security vulnerabilities, which can be prevented by tightening the version range of affected dependencies. Find detailed information at the bottom.

Crate error-stack

Dependencies

(8 total, 1 possibly insecure)

CrateRequiredLatestStatus
 anyhow>=1.0.731.0.102up to date
 eyre ⚠️>=0.60.6.12maybe insecure
 futures-core>=0.30.3.32up to date
 pin-project-lite^0.2.160.2.17up to date
 serde_core>=11.0.228up to date
 spin>=0.90.10.0up to date
 tracing>=0.10.1.44up to date
 tracing-error>=0.20.2.1up to date

Dev dependencies

(15 total, all up-to-date)

CrateRequiredLatestStatus
 ansi-to-html^0.2.20.2.2up to date
 expect-test^1.5.11.5.1up to date
 futures^0.3.310.3.32up to date
 futures-util^0.3.310.3.32up to date
 glob^0.3.30.3.3up to date
 insta^1.43.21.47.2up to date
 owo-colors^4.2.34.3.0up to date
 regex^1.11.21.12.3up to date
 serde^1.0.2281.0.228up to date
 supports-color^3.0.23.0.2up to date
 supports-unicode^3.0.03.0.0up to date
 thiserror^2.0.172.0.18up to date
 tracing^0.1.410.1.44up to date
 tracing-subscriber^0.3.200.3.23up to date
 trybuild^1.0.1131.0.116up to date

Security Vulnerabilities

eyre: Parts of Report are dropped as the wrong type during downcast

RUSTSEC-2024-0021

In affected versions, after a Report is constructed using wrap_err or wrap_err_with to attach a message of type D onto an error of type E, then using downcast to recover ownership of either the value of type D or the value of type E, one of two things can go wrong:

  • If downcasting to E, there remains a value of type D to be dropped. It is incorrectly "dropped" by running E's drop behavior, rather than D's. For example if D is &str and E is std::io::Error, there would be a call of std::io::Error::drop in which the reference received by the Drop impl does not refer to a valid value of type std::io::Error, but instead to &str.

  • If downcasting to D, there remains a value of type E to be dropped. When D and E do not happen to be the same size, E's drop behavior is incorrectly executed in the wrong location. The reference received by the Drop impl may point left or right of the real E value that is meant to be getting dropped.

In both cases, when the Report contains an error E that has nontrivial drop behavior, the most likely outcome is memory corruption.

When the Report contains an error E that has trivial drop behavior (for example a Utf8Error) but where D has nontrivial drop behavior (such as String), the most likely outcome is that downcasting to E would leak D.