-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Disable unwinding for catch_unwind
error payloads.
#99032
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
danielhenrymantilla
wants to merge
3
commits into
rust-lang:master
from
danielhenrymantilla:no_unwind_drop_panic_payload
Closed
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 | ||||
---|---|---|---|---|---|---|
|
@@ -90,6 +90,8 @@ fn panic_bounds_check(index: usize, len: usize) -> ! { | |||||
#[inline(never)] | ||||||
#[lang = "panic_no_unwind"] // needed by codegen for panic in nounwind function | ||||||
fn panic_no_unwind() -> ! { | ||||||
// Could this be written in terms of: | ||||||
// `panic_abort(Some(&format_args!("panic in a function that cannot unwind")))`? | ||||||
if cfg!(feature = "panic_immediate_abort") { | ||||||
super::intrinsics::abort() | ||||||
} | ||||||
|
@@ -109,6 +111,28 @@ fn panic_no_unwind() -> ! { | |||||
unsafe { panic_impl(&pi) } | ||||||
} | ||||||
|
||||||
/// Aborts the process, but with a properly displayed panic message. | ||||||
#[cold] | ||||||
#[rustc_allocator_nounwind] | ||||||
pub(crate) fn panic_abort<'a>(message: Option<&'a fmt::Arguments<'a>>) -> ! { | ||||||
danielhenrymantilla marked this conversation as resolved.
Show resolved
Hide resolved
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
(and change others accordingly)
|
||||||
if cfg!(feature = "panic_immediate_abort") { | ||||||
super::intrinsics::abort() | ||||||
} | ||||||
|
||||||
// NOTE This function never crosses the FFI boundary; it's a Rust-to-Rust call | ||||||
// that gets resolved to the `#[panic_handler]` function. | ||||||
extern "Rust" { | ||||||
#[lang = "panic_impl"] | ||||||
fn panic_impl(pi: &PanicInfo<'_>) -> !; | ||||||
} | ||||||
|
||||||
// PanicInfo with the `can_unwind` flag set to false forces an abort. | ||||||
let pi = PanicInfo::internal_constructor(message, Location::caller(), false); | ||||||
|
||||||
// SAFETY: `panic_impl` is defined in safe Rust code and thus is safe to call. | ||||||
unsafe { panic_impl(&pi) } | ||||||
} | ||||||
|
||||||
/// The entry point for panicking with a formatted message. | ||||||
/// | ||||||
/// This is designed to reduce the amount of code required at the call | ||||||
|
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
73 changes: 73 additions & 0 deletions
73
src/test/ui/panics/drop_in_panic_payload_does_not_unwind.rs
This file contains hidden or 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,73 @@ | ||
// run-pass | ||
// needs-unwind | ||
// 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, ops::Not, panic, process}; | ||
|
||
fn main() { | ||
match &env::args().collect::<Vec<_>>()[..] { | ||
[just_me] => parent(just_me), | ||
[_me, subprocess] if subprocess == "panic" => subprocess_panic(), | ||
[_me, subprocess] if subprocess == "resume_unwind" => subprocess_resume_unwind(), | ||
_ => unreachable!(), | ||
} | ||
} | ||
|
||
fn parent(self_exe: &str) { | ||
// call the subprocess 1: panic with a drop bomb | ||
let status = | ||
process::Command::new(self_exe) | ||
.arg("panic") | ||
.status() | ||
.expect("running the command should have succeeded") | ||
; | ||
assert!(status.success().not(), "`subprocess_panic()` is expected to have aborted"); | ||
|
||
// call the subprocess 2: resume_unwind with a drop bomb | ||
let status = | ||
process::Command::new(self_exe) | ||
.arg("resume_unwind") | ||
.status() | ||
.expect("running the command should have succeeded") | ||
; | ||
assert!(status.success().not(), "`subprocess_resume_unwind()` is expected to have aborted"); | ||
} | ||
|
||
fn subprocess_panic() { | ||
let _ = panic::catch_unwind(|| { | ||
struct Bomb; | ||
|
||
impl Drop for Bomb { | ||
fn drop(&mut self) { | ||
panic!(); | ||
} | ||
} | ||
|
||
let panic_payload = panic::catch_unwind(|| panic::panic_any(Bomb)).unwrap_err(); | ||
// Calls `Bomb::drop`, which starts unwinding. But since this is a panic payload already, | ||
// the drop glue is amended to abort on unwind. So this ought to abort the process. | ||
drop(panic_payload); | ||
}); | ||
} | ||
|
||
fn subprocess_resume_unwind() { | ||
use panic::resume_unwind; | ||
let _ = panic::catch_unwind(|| { | ||
struct Bomb; | ||
|
||
impl Drop for Bomb { | ||
fn drop(&mut self) { | ||
panic!(); | ||
} | ||
} | ||
|
||
let panic_payload = panic::catch_unwind(|| resume_unwind(Box::new(Bomb))).unwrap_err(); | ||
// Calls `Bomb::drop`, which starts unwinding. But since this is a panic payload already, | ||
// the drop glue is amended to abort on unwind. So this ought to abort the process. | ||
drop(panic_payload); | ||
}); | ||
} |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.