2019-11-19 07:51:08 -06:00
|
|
|
//! Panic runtime for Miri.
|
|
|
|
//!
|
|
|
|
//! The core pieces of the runtime are:
|
|
|
|
//! - An implementation of `__rust_maybe_catch_panic` that pushes the invoked stack frame with
|
|
|
|
//! some extra metadata derived from the panic-catching arguments of `__rust_maybe_catch_panic`.
|
|
|
|
//! - A hack in `libpanic_unwind` that calls the `miri_start_panic` intrinsic instead of the
|
|
|
|
//! target-native panic runtime. (This lives in the rustc repo.)
|
|
|
|
//! - An implementation of `miri_start_panic` that stores its argument (the panic payload), and then
|
|
|
|
//! immediately returns, but on the *unwind* edge (not the normal return edge), thus initiating unwinding.
|
|
|
|
//! - A hook executed each time a frame is popped, such that if the frame pushed by `__rust_maybe_catch_panic`
|
|
|
|
//! gets popped *during unwinding*, we take the panic payload and store it according to the extra
|
|
|
|
//! metadata we remembered when pushing said frame.
|
|
|
|
|
2019-04-14 20:02:55 -05:00
|
|
|
use rustc::mir;
|
2019-11-29 03:16:03 -06:00
|
|
|
use rustc::ty::{self, layout::LayoutOf};
|
2019-04-14 20:02:55 -05:00
|
|
|
use rustc_target::spec::PanicStrategy;
|
2020-01-05 02:53:45 -06:00
|
|
|
use rustc_span::source_map::Span;
|
2019-11-29 03:16:03 -06:00
|
|
|
|
|
|
|
use crate::*;
|
2019-04-14 20:02:55 -05:00
|
|
|
|
|
|
|
/// Holds all of the relevant data for a call to
|
2019-11-19 07:51:08 -06:00
|
|
|
/// `__rust_maybe_catch_panic`.
|
2019-04-14 20:02:55 -05:00
|
|
|
///
|
|
|
|
/// If a panic occurs, we update this data with
|
2019-11-19 07:51:08 -06:00
|
|
|
/// the information from the panic site.
|
2019-04-14 20:02:55 -05:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct CatchUnwindData<'tcx> {
|
2019-11-19 07:51:08 -06:00
|
|
|
/// The dereferenced `data_ptr` argument passed to `__rust_maybe_catch_panic`.
|
2019-04-14 20:02:55 -05:00
|
|
|
pub data_place: MPlaceTy<'tcx, Tag>,
|
2019-11-19 07:51:08 -06:00
|
|
|
/// The dereferenced `vtable_ptr` argument passed to `__rust_maybe_catch_panic`.
|
2019-04-14 20:02:55 -05:00
|
|
|
pub vtable_place: MPlaceTy<'tcx, Tag>,
|
2019-11-19 07:51:08 -06:00
|
|
|
/// The `dest` from the original call to `__rust_maybe_catch_panic`.
|
2019-04-14 20:02:55 -05:00
|
|
|
pub dest: PlaceTy<'tcx, Tag>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'mir, 'tcx> EvalContextExt<'mir, 'tcx> for crate::MiriEvalContext<'mir, 'tcx> {}
|
|
|
|
pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx> {
|
|
|
|
/// Handles the special "miri_start_panic" intrinsic, which is called
|
2019-11-19 07:51:08 -06:00
|
|
|
/// by libpanic_unwind to delegate the actual unwinding process to Miri.
|
2019-04-14 20:02:55 -05:00
|
|
|
fn handle_miri_start_panic(
|
|
|
|
&mut self,
|
|
|
|
args: &[OpTy<'tcx, Tag>],
|
2019-12-23 05:56:23 -06:00
|
|
|
unwind: Option<mir::BasicBlock>,
|
2019-04-14 20:02:55 -05:00
|
|
|
) -> InterpResult<'tcx> {
|
|
|
|
let this = self.eval_context_mut();
|
|
|
|
|
|
|
|
trace!("miri_start_panic: {:?}", this.frame().span);
|
|
|
|
|
2019-11-19 14:31:37 -06:00
|
|
|
// Get the raw pointer stored in arg[0] (the panic payload).
|
2019-04-14 20:02:55 -05:00
|
|
|
let scalar = this.read_immediate(args[0])?;
|
2019-12-23 05:56:23 -06:00
|
|
|
assert!(
|
|
|
|
this.machine.panic_payload.is_none(),
|
|
|
|
"the panic runtime should avoid double-panics"
|
|
|
|
);
|
2019-04-14 20:02:55 -05:00
|
|
|
this.machine.panic_payload = Some(scalar);
|
|
|
|
|
2019-11-19 07:51:08 -06:00
|
|
|
// Jump to the unwind block to begin unwinding.
|
2019-11-25 15:48:31 -06:00
|
|
|
this.unwind_to_block(unwind);
|
2019-12-23 05:56:23 -06:00
|
|
|
return Ok(());
|
2019-04-14 20:02:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn handle_catch_panic(
|
|
|
|
&mut self,
|
|
|
|
args: &[OpTy<'tcx, Tag>],
|
|
|
|
dest: PlaceTy<'tcx, Tag>,
|
|
|
|
ret: mir::BasicBlock,
|
|
|
|
) -> InterpResult<'tcx> {
|
|
|
|
let this = self.eval_context_mut();
|
2019-12-23 05:56:23 -06:00
|
|
|
let tcx = &{ this.tcx.tcx };
|
2019-04-14 20:02:55 -05:00
|
|
|
|
|
|
|
// fn __rust_maybe_catch_panic(
|
|
|
|
// f: fn(*mut u8),
|
|
|
|
// data: *mut u8,
|
|
|
|
// data_ptr: *mut usize,
|
|
|
|
// vtable_ptr: *mut usize,
|
|
|
|
// ) -> u32
|
2019-11-19 07:51:08 -06:00
|
|
|
|
|
|
|
// Get all the arguments.
|
2019-04-14 20:02:55 -05:00
|
|
|
let f = this.read_scalar(args[0])?.not_undef()?;
|
2019-11-19 07:51:08 -06:00
|
|
|
let f_arg = this.read_scalar(args[1])?.not_undef()?;
|
2019-04-14 20:02:55 -05:00
|
|
|
let data_place = this.deref_operand(args[2])?;
|
|
|
|
let vtable_place = this.deref_operand(args[3])?;
|
2019-11-19 07:51:08 -06:00
|
|
|
|
|
|
|
// Now we make a function call, and pass `f_arg` as first and only argument.
|
2019-04-14 20:02:55 -05:00
|
|
|
let f_instance = this.memory.get_fn(f)?.as_instance()?;
|
|
|
|
trace!("__rust_maybe_catch_panic: {:?}", f_instance);
|
2019-12-23 05:56:23 -06:00
|
|
|
let ret_place = MPlaceTy::dangling(this.layout_of(tcx.mk_unit())?, this).into();
|
2019-11-28 16:42:10 -06:00
|
|
|
this.call_function(
|
2019-04-14 20:02:55 -05:00
|
|
|
f_instance,
|
2019-11-29 04:17:44 -06:00
|
|
|
&[f_arg.into()],
|
2019-04-14 20:02:55 -05:00
|
|
|
Some(ret_place),
|
|
|
|
// Directly return to caller.
|
|
|
|
StackPopCleanup::Goto { ret: Some(ret), unwind: None },
|
|
|
|
)?;
|
|
|
|
|
2019-11-19 07:51:08 -06:00
|
|
|
// We ourselves will return `0`, eventually (will be overwritten if we catch a panic).
|
|
|
|
this.write_null(dest)?;
|
|
|
|
|
2019-04-14 20:02:55 -05:00
|
|
|
// In unwind mode, we tag this frame with some extra data.
|
|
|
|
// This lets `handle_stack_pop` (below) know that we should stop unwinding
|
|
|
|
// when we pop this frame.
|
|
|
|
if this.tcx.tcx.sess.panic_strategy() == PanicStrategy::Unwind {
|
2019-12-23 05:56:23 -06:00
|
|
|
this.frame_mut().extra.catch_panic =
|
|
|
|
Some(CatchUnwindData { data_place, vtable_place, dest })
|
2019-04-14 20:02:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
|
|
|
|
fn handle_stack_pop(
|
|
|
|
&mut self,
|
|
|
|
mut extra: FrameData<'tcx>,
|
2019-12-23 05:56:23 -06:00
|
|
|
unwinding: bool,
|
2019-04-14 20:02:55 -05:00
|
|
|
) -> InterpResult<'tcx, StackPopInfo> {
|
|
|
|
let this = self.eval_context_mut();
|
|
|
|
|
|
|
|
trace!("handle_stack_pop(extra = {:?}, unwinding = {})", extra, unwinding);
|
|
|
|
|
|
|
|
// We only care about `catch_panic` if we're unwinding - if we're doing a normal
|
|
|
|
// return, then we don't need to do anything special.
|
|
|
|
let res = if let (true, Some(unwind_data)) = (unwinding, extra.catch_panic.take()) {
|
2019-11-19 07:51:08 -06:00
|
|
|
// We've just popped a frame that was pushed by `__rust_maybe_catch_panic`,
|
|
|
|
// and we are unwinding, so we should catch that.
|
|
|
|
trace!("unwinding: found catch_panic frame during unwinding: {:?}", this.frame().span);
|
2019-04-14 20:02:55 -05:00
|
|
|
|
2019-11-19 07:51:08 -06:00
|
|
|
// `panic_payload` now holds a `*mut (dyn Any + Send)`,
|
2019-04-14 20:02:55 -05:00
|
|
|
// provided by the `miri_start_panic` intrinsic.
|
|
|
|
// We want to split this into its consituient parts -
|
2019-11-19 07:51:08 -06:00
|
|
|
// the data and vtable pointers - and store them according to
|
|
|
|
// `unwind_data`, i.e., we store them where `__rust_maybe_catch_panic`
|
|
|
|
// was told to put them.
|
|
|
|
let payload = this.machine.panic_payload.take().unwrap();
|
|
|
|
let payload = this.ref_to_mplace(payload)?;
|
2019-04-14 20:02:55 -05:00
|
|
|
let payload_data_place = payload.ptr;
|
2020-01-15 12:27:21 -06:00
|
|
|
let payload_vtable_place = payload.meta.unwrap_meta();
|
2019-04-14 20:02:55 -05:00
|
|
|
|
2019-11-19 07:51:08 -06:00
|
|
|
this.write_scalar(payload_data_place, unwind_data.data_place.into())?;
|
|
|
|
this.write_scalar(payload_vtable_place, unwind_data.vtable_place.into())?;
|
2019-04-14 20:02:55 -05:00
|
|
|
|
|
|
|
// We set the return value of `__rust_maybe_catch_panic` to 1,
|
|
|
|
// since there was a panic.
|
2019-11-19 07:51:08 -06:00
|
|
|
let dest = unwind_data.dest;
|
2019-04-14 20:02:55 -05:00
|
|
|
this.write_scalar(Scalar::from_int(1, dest.layout.size), dest)?;
|
|
|
|
|
|
|
|
StackPopInfo::StopUnwinding
|
|
|
|
} else {
|
|
|
|
StackPopInfo::Normal
|
|
|
|
};
|
|
|
|
this.memory.extra.stacked_borrows.borrow_mut().end_call(extra.call_id);
|
|
|
|
Ok(res)
|
|
|
|
}
|
2019-11-29 03:16:03 -06:00
|
|
|
|
|
|
|
fn assert_panic(
|
|
|
|
&mut self,
|
|
|
|
span: Span,
|
2020-02-13 07:01:35 -06:00
|
|
|
msg: &mir::AssertMessage<'tcx>,
|
2019-11-29 03:16:03 -06:00
|
|
|
unwind: Option<mir::BasicBlock>,
|
|
|
|
) -> InterpResult<'tcx> {
|
2020-02-13 07:01:35 -06:00
|
|
|
use rustc::mir::AssertKind::*;
|
2019-11-29 03:16:03 -06:00
|
|
|
let this = self.eval_context_mut();
|
|
|
|
|
|
|
|
match msg {
|
|
|
|
BoundsCheck { ref index, ref len } => {
|
2019-11-29 04:17:44 -06:00
|
|
|
// Forward to `panic_bounds_check` lang item.
|
|
|
|
|
2019-11-29 03:16:03 -06:00
|
|
|
// First arg: Caller location.
|
2019-11-29 04:52:53 -06:00
|
|
|
let location = this.alloc_caller_location_for_span(span);
|
2019-11-29 03:16:03 -06:00
|
|
|
// Second arg: index.
|
|
|
|
let index = this.read_scalar(this.eval_operand(index, None)?)?;
|
|
|
|
// Third arg: len.
|
|
|
|
let len = this.read_scalar(this.eval_operand(len, None)?)?;
|
|
|
|
|
|
|
|
// Call the lang item.
|
|
|
|
let panic_bounds_check = this.tcx.lang_items().panic_bounds_check_fn().unwrap();
|
|
|
|
let panic_bounds_check = ty::Instance::mono(this.tcx.tcx, panic_bounds_check);
|
|
|
|
this.call_function(
|
|
|
|
panic_bounds_check,
|
2019-11-29 04:17:44 -06:00
|
|
|
&[location.ptr.into(), index.into(), len.into()],
|
|
|
|
None,
|
|
|
|
StackPopCleanup::Goto { ret: None, unwind },
|
|
|
|
)?;
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
// Forward everything else to `panic` lang item.
|
|
|
|
|
|
|
|
// First arg: Message.
|
|
|
|
let msg = msg.description();
|
2019-12-01 03:18:41 -06:00
|
|
|
let msg = this.allocate_str(msg, MiriMemoryKind::Env.into());
|
2019-11-29 04:17:44 -06:00
|
|
|
|
|
|
|
// Call the lang item.
|
|
|
|
let panic = this.tcx.lang_items().panic_fn().unwrap();
|
|
|
|
let panic = ty::Instance::mono(this.tcx.tcx, panic);
|
|
|
|
this.call_function(
|
|
|
|
panic,
|
2020-01-01 16:57:10 -06:00
|
|
|
&[msg.to_ref()],
|
2019-11-29 03:16:03 -06:00
|
|
|
None,
|
|
|
|
StackPopCleanup::Goto { ret: None, unwind },
|
|
|
|
)?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
2019-04-14 20:02:55 -05:00
|
|
|
}
|