forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 implementation approaches to consider. Some simpler, some more complicated. This particular solution is nice in that it also guards against accidental implementation issues in various pieces of runtime code, something we cannot prevent statically right now. Fixes rust-lang#86030
- Loading branch information
Showing
3 changed files
with
55 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,24 @@ | ||
// run-pass | ||
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)); | ||
} |