forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#86034 - nagisa:nagisa/rt-soundness, r=m-ou-se
Change entry point to 🛡️ against 💥 💥-payloads Guard against panic payloads panicking within entrypoints, where it is UB to do so. Note that there are a number of tradeoffs to consider. For instance, I considered guarding against accidental panics inside the `rt::init` and `rt::cleanup` code as well, as it is not all that obvious these may not panic, but doing so would mean that we initialize certain thread-local slots unconditionally, which has its own problems. Fixes rust-lang#86030 r? `@m-ou-se`
- Loading branch information
Showing
3 changed files
with
61 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// run-pass | ||
// ignore-emscripten no processes | ||
// ignore-sgx no processes | ||
// ignore-wasm32-bare no unwinding panic | ||
// ignore-avr no unwinding panic | ||
// ignore-nvptx64 no unwinding panic | ||
|
||
use std::env; | ||
use std::process::Command; | ||
|
||
struct Bomb; | ||
|
||
impl Drop for Bomb { | ||
fn drop(&mut self) { | ||
std::panic::panic_any(Bomb); | ||
} | ||
} | ||
|
||
fn main() { | ||
let args = env::args().collect::<Vec<_>>(); | ||
let output = match &args[..] { | ||
[me] => Command::new(&me).arg("plant the").output(), | ||
[..] => std::panic::panic_any(Bomb), | ||
}.expect("running the command should have succeeded"); | ||
println!("{:#?}", output); | ||
let stderr = std::str::from_utf8(&output.stderr); | ||
assert!(stderr.map(|v| { | ||
v.ends_with("drop of the panic payload panicked") | ||
}).unwrap_or(false)); | ||
} |