Skip to content

betamos/safe-leaks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Safe Leaks

This crate challenges you to leak non-'static data past its lifetime in safe Rust.

As an adversary, your job to write a leaking function FnOnce(LeakMe<'a>) where you prevent LeakMe's destructor from running. You may use any safe APIs from std (feel free to try with third-party crates too) to achieve this goal, including panic unwinding.

Note that you cannot simply avoid the destructor through process termination or an inifinite loop. For the leak to be valid, the leaking function must return. In other words, the code that follows the input lifetime 'a must be executed without invoking LeakMe's destructor.

Purpose

This crate should not be used in any real application. It's purpose is to demonstrate and enumerate the different ways that destructors are not invoked in safe Rust today. In a parallel universe, there is a version of Rust where destructors are statically guaranteed to run, where you can create amazing things such as scoped async tasks (that don't block an entire thread).

Contributing

See the test module for current techniques, and run them through cargo test. If you find a novel technique, please send a PR.

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Author: Didrik Nordström

About

Demonstrate leaks in safe Rust.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages