2019-06-29 07:15:05 -05:00
|
|
|
//! Global machine state as well as implementation of the interpreter engine
|
|
|
|
//! `Machine` trait.
|
|
|
|
|
2019-06-27 16:59:00 -05:00
|
|
|
use std::borrow::Cow;
|
2019-06-28 03:16:10 -05:00
|
|
|
use std::cell::RefCell;
|
2020-02-24 09:22:02 -06:00
|
|
|
use std::num::NonZeroU64;
|
2020-03-01 03:26:24 -06:00
|
|
|
use std::rc::Rc;
|
2020-03-19 17:00:02 -05:00
|
|
|
use std::time::Instant;
|
2019-06-27 16:59:00 -05:00
|
|
|
|
|
|
|
use rand::rngs::StdRng;
|
|
|
|
|
2020-03-02 15:36:15 -06:00
|
|
|
use rustc_data_structures::fx::FxHashMap;
|
2019-06-27 16:59:00 -05:00
|
|
|
use rustc::mir;
|
2019-12-23 05:56:23 -06:00
|
|
|
use rustc::ty::{
|
|
|
|
self,
|
|
|
|
layout::{LayoutOf, Size},
|
2020-02-23 15:32:37 -06:00
|
|
|
Ty,
|
2019-12-23 05:56:23 -06:00
|
|
|
};
|
2020-03-01 03:22:13 -06:00
|
|
|
use rustc_ast::attr;
|
2020-03-02 15:30:20 -06:00
|
|
|
use rustc_span::{source_map::Span, symbol::{sym, Symbol}};
|
2019-06-27 16:59:00 -05:00
|
|
|
|
|
|
|
use crate::*;
|
|
|
|
|
2019-06-29 07:37:41 -05:00
|
|
|
// Some global facts about the emulated machine.
|
2019-10-07 08:39:59 -05:00
|
|
|
pub const PAGE_SIZE: u64 = 4 * 1024; // FIXME: adjust to target architecture
|
|
|
|
pub const STACK_ADDR: u64 = 32 * PAGE_SIZE; // not really about the "stack", but where we start assigning integer addresses to allocations
|
|
|
|
pub const STACK_SIZE: u64 = 16 * PAGE_SIZE; // whatever
|
2019-06-29 07:37:41 -05:00
|
|
|
pub const NUM_CPUS: u64 = 1;
|
|
|
|
|
2019-04-14 20:02:55 -05:00
|
|
|
/// Extra data stored with each stack frame
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct FrameData<'tcx> {
|
|
|
|
/// Extra data for Stacked Borrows.
|
|
|
|
pub call_id: stacked_borrows::CallId,
|
2019-11-19 07:51:08 -06:00
|
|
|
|
2020-03-14 05:53:09 -05:00
|
|
|
/// If this is Some(), then this is a special "catch unwind" frame (the frame of `try_fn`
|
|
|
|
/// called by `try`). When this frame is popped during unwinding a panic,
|
|
|
|
/// we stop unwinding, use the `CatchUnwindData` to handle catching.
|
|
|
|
pub catch_unwind: Option<CatchUnwindData<'tcx>>,
|
2019-04-14 20:02:55 -05:00
|
|
|
}
|
|
|
|
|
2019-06-27 16:59:00 -05:00
|
|
|
/// Extra memory kinds
|
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
|
|
|
|
pub enum MiriMemoryKind {
|
|
|
|
/// `__rust_alloc` memory.
|
|
|
|
Rust,
|
|
|
|
/// `malloc` memory.
|
|
|
|
C,
|
2019-07-02 02:03:45 -05:00
|
|
|
/// Windows `HeapAlloc` memory.
|
|
|
|
WinHeap,
|
2020-02-23 14:55:02 -06:00
|
|
|
/// Memory for env vars and args, errno, extern statics and other parts of the machine-managed environment.
|
|
|
|
Machine,
|
2019-12-01 03:18:41 -06:00
|
|
|
/// Rust statics.
|
2019-06-27 16:59:00 -05:00
|
|
|
Static,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Into<MemoryKind<MiriMemoryKind>> for MiriMemoryKind {
|
|
|
|
#[inline(always)]
|
|
|
|
fn into(self) -> MemoryKind<MiriMemoryKind> {
|
|
|
|
MemoryKind::Machine(self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Extra per-allocation data
|
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct AllocExtra {
|
2020-02-24 09:22:02 -06:00
|
|
|
/// Stacked Borrows state is only added if it is enabled.
|
2019-07-03 03:19:55 -05:00
|
|
|
pub stacked_borrows: Option<stacked_borrows::AllocExtra>,
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Extra global memory data
|
2019-06-29 07:04:50 -05:00
|
|
|
#[derive(Clone, Debug)]
|
2020-03-08 11:54:47 -05:00
|
|
|
pub struct MemoryExtra {
|
2020-02-24 09:22:02 -06:00
|
|
|
pub stacked_borrows: Option<stacked_borrows::MemoryExtra>,
|
2019-06-27 16:59:00 -05:00
|
|
|
pub intptrcast: intptrcast::MemoryExtra,
|
2019-07-03 03:19:55 -05:00
|
|
|
|
2020-02-23 15:32:37 -06:00
|
|
|
/// Mapping extern static names to their canonical allocation.
|
2020-03-06 02:06:23 -06:00
|
|
|
extern_statics: FxHashMap<Symbol, AllocId>,
|
2020-02-23 15:32:37 -06:00
|
|
|
|
2019-07-23 14:38:53 -05:00
|
|
|
/// The random number generator used for resolving non-determinism.
|
2020-02-23 15:32:37 -06:00
|
|
|
/// Needs to be queried by ptr_to_int, hence needs interior mutability.
|
2019-07-23 14:38:53 -05:00
|
|
|
pub(crate) rng: RefCell<StdRng>,
|
2020-03-06 02:06:23 -06:00
|
|
|
|
|
|
|
/// An allocation ID to report when it is being allocated
|
|
|
|
/// (helps for debugging memory leaks).
|
|
|
|
tracked_alloc_id: Option<AllocId>,
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
2020-03-08 11:54:47 -05:00
|
|
|
impl MemoryExtra {
|
2020-03-06 02:06:23 -06:00
|
|
|
pub fn new(rng: StdRng, stacked_borrows: bool, tracked_pointer_tag: Option<PtrId>, tracked_alloc_id: Option<AllocId>) -> Self {
|
2020-02-24 09:22:02 -06:00
|
|
|
let stacked_borrows = if stacked_borrows {
|
|
|
|
Some(Rc::new(RefCell::new(stacked_borrows::GlobalState::new(tracked_pointer_tag))))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
2020-02-23 15:32:37 -06:00
|
|
|
MemoryExtra {
|
|
|
|
stacked_borrows,
|
|
|
|
intptrcast: Default::default(),
|
2020-03-02 15:36:15 -06:00
|
|
|
extern_statics: FxHashMap::default(),
|
2020-02-23 15:32:37 -06:00
|
|
|
rng: RefCell::new(rng),
|
2020-03-06 02:06:23 -06:00
|
|
|
tracked_alloc_id,
|
2020-02-23 15:32:37 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets up the "extern statics" for this machine.
|
2020-03-08 11:54:47 -05:00
|
|
|
pub fn init_extern_statics<'tcx, 'mir>(
|
2020-02-23 15:32:37 -06:00
|
|
|
this: &mut MiriEvalContext<'mir, 'tcx>,
|
|
|
|
) -> InterpResult<'tcx> {
|
2020-03-07 08:39:44 -06:00
|
|
|
let target_os = this.tcx.sess.target.target.target_os.as_str();
|
|
|
|
match target_os {
|
2020-03-07 14:33:27 -06:00
|
|
|
"linux" => {
|
|
|
|
// "__cxa_thread_atexit_impl"
|
|
|
|
// This should be all-zero, pointer-sized.
|
2020-03-04 11:15:14 -06:00
|
|
|
let layout = this.layout_of(this.tcx.types.usize)?;
|
|
|
|
let place = this.allocate(layout, MiriMemoryKind::Machine.into());
|
2020-03-04 12:24:01 -06:00
|
|
|
this.write_scalar(Scalar::from_machine_usize(0, &*this.tcx), place.into())?;
|
2020-03-04 11:15:14 -06:00
|
|
|
this.memory
|
|
|
|
.extra
|
|
|
|
.extern_statics
|
2020-03-07 14:33:27 -06:00
|
|
|
.insert(Symbol::intern("__cxa_thread_atexit_impl"), place.ptr.assert_ptr().alloc_id)
|
|
|
|
.unwrap_none();
|
|
|
|
// "environ"
|
|
|
|
this.memory
|
|
|
|
.extra
|
|
|
|
.extern_statics
|
2020-03-08 11:54:47 -05:00
|
|
|
.insert(Symbol::intern("environ"), this.machine.env_vars.environ.unwrap().ptr.assert_ptr().alloc_id)
|
2020-03-04 11:15:14 -06:00
|
|
|
.unwrap_none();
|
2020-02-23 15:32:37 -06:00
|
|
|
}
|
2020-03-22 02:51:15 -05:00
|
|
|
_ => {} // No "extern statics" supported on this target
|
2020-02-23 15:32:37 -06:00
|
|
|
}
|
|
|
|
Ok(())
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The machine itself.
|
|
|
|
pub struct Evaluator<'tcx> {
|
|
|
|
/// Environment variables set by `setenv`.
|
|
|
|
/// Miri does not expose env vars from the host to the emulated program.
|
2020-03-08 11:54:47 -05:00
|
|
|
pub(crate) env_vars: EnvVars<'tcx>,
|
2019-06-27 16:59:00 -05:00
|
|
|
|
|
|
|
/// Program arguments (`Option` because we can only initialize them after creating the ecx).
|
|
|
|
/// These are *pointers* to argc/argv because macOS.
|
|
|
|
/// We also need the full command line as one string because of Windows.
|
2019-11-02 05:50:21 -05:00
|
|
|
pub(crate) argc: Option<Scalar<Tag>>,
|
|
|
|
pub(crate) argv: Option<Scalar<Tag>>,
|
|
|
|
pub(crate) cmd_line: Option<Scalar<Tag>>,
|
2019-06-27 16:59:00 -05:00
|
|
|
|
2019-10-21 06:24:56 -05:00
|
|
|
/// Last OS error location in memory. It is a 32-bit integer.
|
2019-10-12 20:58:02 -05:00
|
|
|
pub(crate) last_error: Option<MPlaceTy<'tcx, Tag>>,
|
2019-06-27 16:59:00 -05:00
|
|
|
|
|
|
|
/// TLS state.
|
|
|
|
pub(crate) tls: TlsData<'tcx>,
|
2019-08-06 15:32:57 -05:00
|
|
|
|
2019-08-20 10:47:57 -05:00
|
|
|
/// If enabled, the `env_vars` field is populated with the host env vars during initialization
|
|
|
|
/// and random number generation is delegated to the host.
|
2019-08-06 15:32:57 -05:00
|
|
|
pub(crate) communicate: bool,
|
2019-09-24 17:28:00 -05:00
|
|
|
|
2020-02-24 09:25:29 -06:00
|
|
|
/// Whether to enforce the validity invariant.
|
|
|
|
pub(crate) validate: bool,
|
|
|
|
|
2019-09-24 17:28:00 -05:00
|
|
|
pub(crate) file_handler: FileHandler,
|
2020-01-25 12:57:15 -06:00
|
|
|
pub(crate) dir_handler: DirHandler,
|
2019-04-14 20:02:55 -05:00
|
|
|
|
|
|
|
/// The temporary used for storing the argument of
|
|
|
|
/// the call to `miri_start_panic` (the panic payload) when unwinding.
|
2020-03-14 05:53:09 -05:00
|
|
|
/// This is pointer-sized, and matches the `Payload` type in `src/libpanic_unwind/miri.rs`.
|
|
|
|
pub(crate) panic_payload: Option<Scalar<Tag>>,
|
2020-03-19 17:00:02 -05:00
|
|
|
|
|
|
|
/// The "time anchor" for this machine's monotone clock (for `Instant` simulation).
|
|
|
|
pub(crate) time_anchor: Instant,
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx> Evaluator<'tcx> {
|
2020-02-24 09:25:29 -06:00
|
|
|
pub(crate) fn new(communicate: bool, validate: bool) -> Self {
|
2019-06-27 16:59:00 -05:00
|
|
|
Evaluator {
|
2019-08-13 16:17:41 -05:00
|
|
|
// `env_vars` could be initialized properly here if `Memory` were available before
|
|
|
|
// calling this method.
|
2019-08-14 10:24:35 -05:00
|
|
|
env_vars: EnvVars::default(),
|
2019-06-27 16:59:00 -05:00
|
|
|
argc: None,
|
|
|
|
argv: None,
|
|
|
|
cmd_line: None,
|
2019-10-03 10:21:55 -05:00
|
|
|
last_error: None,
|
2019-06-27 16:59:00 -05:00
|
|
|
tls: TlsData::default(),
|
2019-08-06 15:32:57 -05:00
|
|
|
communicate,
|
2020-02-24 09:25:29 -06:00
|
|
|
validate,
|
2019-09-24 17:28:00 -05:00
|
|
|
file_handler: Default::default(),
|
2020-01-25 12:57:15 -06:00
|
|
|
dir_handler: Default::default(),
|
2019-12-23 05:56:23 -06:00
|
|
|
panic_payload: None,
|
2020-03-19 17:00:02 -05:00
|
|
|
time_anchor: Instant::now(),
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-05 16:47:10 -05:00
|
|
|
/// A rustc InterpCx for Miri.
|
|
|
|
pub type MiriEvalContext<'mir, 'tcx> = InterpCx<'mir, 'tcx, Evaluator<'tcx>>;
|
2019-06-27 16:59:00 -05:00
|
|
|
|
|
|
|
/// A little trait that's useful to be inherited by extension traits.
|
|
|
|
pub trait MiriEvalContextExt<'mir, 'tcx> {
|
2019-12-04 03:16:08 -06:00
|
|
|
fn eval_context_ref<'a>(&'a self) -> &'a MiriEvalContext<'mir, 'tcx>;
|
|
|
|
fn eval_context_mut<'a>(&'a mut self) -> &'a mut MiriEvalContext<'mir, 'tcx>;
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
impl<'mir, 'tcx> MiriEvalContextExt<'mir, 'tcx> for MiriEvalContext<'mir, 'tcx> {
|
|
|
|
#[inline(always)]
|
|
|
|
fn eval_context_ref(&self) -> &MiriEvalContext<'mir, 'tcx> {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
#[inline(always)]
|
|
|
|
fn eval_context_mut(&mut self) -> &mut MiriEvalContext<'mir, 'tcx> {
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Machine hook implementations.
|
|
|
|
impl<'mir, 'tcx> Machine<'mir, 'tcx> for Evaluator<'tcx> {
|
|
|
|
type MemoryKinds = MiriMemoryKind;
|
|
|
|
|
2019-04-14 20:02:55 -05:00
|
|
|
type FrameExtra = FrameData<'tcx>;
|
2020-03-08 11:54:47 -05:00
|
|
|
type MemoryExtra = MemoryExtra;
|
2019-06-27 16:59:00 -05:00
|
|
|
type AllocExtra = AllocExtra;
|
|
|
|
type PointerTag = Tag;
|
2019-06-30 09:03:13 -05:00
|
|
|
type ExtraFnVal = Dlsym;
|
2019-06-27 16:59:00 -05:00
|
|
|
|
2019-12-23 05:56:23 -06:00
|
|
|
type MemoryMap =
|
|
|
|
MonoHashMap<AllocId, (MemoryKind<MiriMemoryKind>, Allocation<Tag, Self::AllocExtra>)>;
|
2019-06-27 16:59:00 -05:00
|
|
|
|
|
|
|
const STATIC_KIND: Option<MiriMemoryKind> = Some(MiriMemoryKind::Static);
|
|
|
|
|
2019-08-05 08:49:19 -05:00
|
|
|
const CHECK_ALIGN: bool = true;
|
|
|
|
|
2019-06-27 16:59:00 -05:00
|
|
|
#[inline(always)]
|
2019-07-05 16:47:10 -05:00
|
|
|
fn enforce_validity(ecx: &InterpCx<'mir, 'tcx, Self>) -> bool {
|
2020-02-24 09:25:29 -06:00
|
|
|
ecx.machine.validate
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
2019-12-04 16:31:39 -06:00
|
|
|
fn find_mir_or_eval_fn(
|
2019-07-05 16:47:10 -05:00
|
|
|
ecx: &mut InterpCx<'mir, 'tcx, Self>,
|
2020-01-01 16:57:10 -06:00
|
|
|
_span: Span,
|
2019-06-27 16:59:00 -05:00
|
|
|
instance: ty::Instance<'tcx>,
|
|
|
|
args: &[OpTy<'tcx, Tag>],
|
2019-11-25 15:48:31 -06:00
|
|
|
ret: Option<(PlaceTy<'tcx, Tag>, mir::BasicBlock)>,
|
2019-04-14 20:02:55 -05:00
|
|
|
unwind: Option<mir::BasicBlock>,
|
2019-06-27 16:59:00 -05:00
|
|
|
) -> InterpResult<'tcx, Option<&'mir mir::Body<'tcx>>> {
|
2019-12-04 16:31:39 -06:00
|
|
|
ecx.find_mir_or_eval_fn(instance, args, ret, unwind)
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
2019-06-30 09:03:13 -05:00
|
|
|
#[inline(always)]
|
|
|
|
fn call_extra_fn(
|
|
|
|
ecx: &mut InterpCx<'mir, 'tcx, Self>,
|
|
|
|
fn_val: Dlsym,
|
|
|
|
args: &[OpTy<'tcx, Tag>],
|
2019-11-25 15:48:31 -06:00
|
|
|
ret: Option<(PlaceTy<'tcx, Tag>, mir::BasicBlock)>,
|
|
|
|
_unwind: Option<mir::BasicBlock>,
|
2019-06-30 09:03:13 -05:00
|
|
|
) -> InterpResult<'tcx> {
|
2019-11-25 15:48:31 -06:00
|
|
|
ecx.call_dlsym(fn_val, args, ret)
|
2019-06-30 09:03:13 -05:00
|
|
|
}
|
|
|
|
|
2019-06-27 16:59:00 -05:00
|
|
|
#[inline(always)]
|
|
|
|
fn call_intrinsic(
|
2019-07-05 16:47:10 -05:00
|
|
|
ecx: &mut rustc_mir::interpret::InterpCx<'mir, 'tcx, Self>,
|
2019-10-30 04:16:58 -05:00
|
|
|
span: Span,
|
2019-06-27 16:59:00 -05:00
|
|
|
instance: ty::Instance<'tcx>,
|
|
|
|
args: &[OpTy<'tcx, Tag>],
|
2019-11-25 15:48:31 -06:00
|
|
|
ret: Option<(PlaceTy<'tcx, Tag>, mir::BasicBlock)>,
|
2019-04-14 20:02:55 -05:00
|
|
|
unwind: Option<mir::BasicBlock>,
|
2019-06-27 16:59:00 -05:00
|
|
|
) -> InterpResult<'tcx> {
|
2019-11-25 15:48:31 -06:00
|
|
|
ecx.call_intrinsic(span, instance, args, ret, unwind)
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
2019-11-29 03:16:03 -06:00
|
|
|
#[inline(always)]
|
|
|
|
fn assert_panic(
|
|
|
|
ecx: &mut InterpCx<'mir, 'tcx, Self>,
|
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-03-11 14:05:44 -05:00
|
|
|
ecx.assert_panic(msg, unwind)
|
2019-11-29 03:16:03 -06:00
|
|
|
}
|
|
|
|
|
2020-03-12 14:46:58 -05:00
|
|
|
#[inline(always)]
|
|
|
|
fn abort(_ecx: &mut InterpCx<'mir, 'tcx, Self>) -> InterpResult<'tcx, !> {
|
2020-03-18 06:16:37 -05:00
|
|
|
throw_machine_stop!(TerminationInfo::Abort(None))
|
2020-03-12 14:46:58 -05:00
|
|
|
}
|
|
|
|
|
2019-06-27 16:59:00 -05:00
|
|
|
#[inline(always)]
|
2019-07-24 09:17:49 -05:00
|
|
|
fn binary_ptr_op(
|
2019-07-05 16:47:10 -05:00
|
|
|
ecx: &rustc_mir::interpret::InterpCx<'mir, 'tcx, Self>,
|
2019-06-27 16:59:00 -05:00
|
|
|
bin_op: mir::BinOp,
|
|
|
|
left: ImmTy<'tcx, Tag>,
|
|
|
|
right: ImmTy<'tcx, Tag>,
|
2019-08-10 14:19:25 -05:00
|
|
|
) -> InterpResult<'tcx, (Scalar<Tag>, bool, Ty<'tcx>)> {
|
2019-07-24 09:17:49 -05:00
|
|
|
ecx.binary_ptr_op(bin_op, left, right)
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn box_alloc(
|
2019-07-05 16:47:10 -05:00
|
|
|
ecx: &mut InterpCx<'mir, 'tcx, Self>,
|
2019-06-27 16:59:00 -05:00
|
|
|
dest: PlaceTy<'tcx, Tag>,
|
|
|
|
) -> InterpResult<'tcx> {
|
|
|
|
trace!("box_alloc for {:?}", dest.layout.ty);
|
2019-11-28 16:42:10 -06:00
|
|
|
let layout = ecx.layout_of(dest.layout.ty.builtin_deref(false).unwrap().ty)?;
|
|
|
|
// First argument: `size`.
|
|
|
|
// (`0` is allowed here -- this is expected to be handled by the lang item).
|
|
|
|
let size = Scalar::from_uint(layout.size.bytes(), ecx.pointer_size());
|
|
|
|
|
|
|
|
// Second argument: `align`.
|
|
|
|
let align = Scalar::from_uint(layout.align.abi.bytes(), ecx.pointer_size());
|
|
|
|
|
2019-06-27 16:59:00 -05:00
|
|
|
// Call the `exchange_malloc` lang item.
|
|
|
|
let malloc = ecx.tcx.lang_items().exchange_malloc_fn().unwrap();
|
|
|
|
let malloc = ty::Instance::mono(ecx.tcx.tcx, malloc);
|
2019-11-28 16:42:10 -06:00
|
|
|
ecx.call_function(
|
2019-06-27 16:59:00 -05:00
|
|
|
malloc,
|
2019-11-29 04:17:44 -06:00
|
|
|
&[size.into(), align.into()],
|
2019-06-27 16:59:00 -05:00
|
|
|
Some(dest),
|
|
|
|
// Don't do anything when we are done. The `statement()` function will increment
|
|
|
|
// the old stack frame's stmt counter to the next statement, which means that when
|
|
|
|
// `exchange_malloc` returns, we go on evaluating exactly where we want to be.
|
|
|
|
StackPopCleanup::None { cleanup: true },
|
|
|
|
)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-02-23 15:32:37 -06:00
|
|
|
fn canonical_alloc_id(mem: &Memory<'mir, 'tcx, Self>, id: AllocId) -> AllocId {
|
|
|
|
let tcx = mem.tcx;
|
|
|
|
// Figure out if this is an extern static, and if yes, which one.
|
|
|
|
let def_id = match tcx.alloc_map.lock().get(id) {
|
|
|
|
Some(GlobalAlloc::Static(def_id)) if tcx.is_foreign_item(def_id) => def_id,
|
|
|
|
_ => {
|
|
|
|
// No need to canonicalize anything.
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
};
|
2019-06-27 16:59:00 -05:00
|
|
|
let attrs = tcx.get_attrs(def_id);
|
|
|
|
let link_name = match attr::first_attr_value_str_by_name(&attrs, sym::link_name) {
|
2020-03-02 15:30:20 -06:00
|
|
|
Some(name) => name,
|
|
|
|
None => tcx.item_name(def_id),
|
2019-06-27 16:59:00 -05:00
|
|
|
};
|
2020-02-23 15:32:37 -06:00
|
|
|
// Check if we know this one.
|
2020-03-02 15:30:20 -06:00
|
|
|
if let Some(canonical_id) = mem.extra.extern_statics.get(&link_name) {
|
2020-02-23 15:32:37 -06:00
|
|
|
trace!("canonical_alloc_id: {:?} ({}) -> {:?}", id, link_name, canonical_id);
|
|
|
|
*canonical_id
|
|
|
|
} else {
|
|
|
|
// Return original id; `Memory::get_static_alloc` will throw an error.
|
|
|
|
id
|
|
|
|
}
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
2019-11-29 12:50:37 -06:00
|
|
|
fn init_allocation_extra<'b>(
|
2020-03-08 11:54:47 -05:00
|
|
|
memory_extra: &MemoryExtra,
|
2019-06-27 16:59:00 -05:00
|
|
|
id: AllocId,
|
|
|
|
alloc: Cow<'b, Allocation>,
|
|
|
|
kind: Option<MemoryKind<Self::MemoryKinds>>,
|
2019-12-01 03:18:41 -06:00
|
|
|
) -> (Cow<'b, Allocation<Self::PointerTag, Self::AllocExtra>>, Self::PointerTag) {
|
2020-03-06 02:11:41 -06:00
|
|
|
if Some(id) == memory_extra.tracked_alloc_id {
|
|
|
|
register_diagnostic(NonHaltingDiagnostic::CreatedAlloc(id));
|
|
|
|
}
|
|
|
|
|
2019-06-27 16:59:00 -05:00
|
|
|
let kind = kind.expect("we set our STATIC_KIND so this cannot be None");
|
|
|
|
let alloc = alloc.into_owned();
|
2020-03-01 03:26:24 -06:00
|
|
|
let (stacks, base_tag) =
|
|
|
|
if let Some(stacked_borrows) = memory_extra.stacked_borrows.as_ref() {
|
|
|
|
let (stacks, base_tag) =
|
|
|
|
Stacks::new_allocation(id, alloc.size, Rc::clone(stacked_borrows), kind);
|
|
|
|
(Some(stacks), base_tag)
|
|
|
|
} else {
|
|
|
|
// No stacks, no tag.
|
|
|
|
(None, Tag::Untagged)
|
|
|
|
};
|
2020-02-24 09:22:02 -06:00
|
|
|
let mut stacked_borrows = memory_extra.stacked_borrows.as_ref().map(|sb| sb.borrow_mut());
|
2019-09-17 05:30:14 -05:00
|
|
|
let alloc: Allocation<Tag, Self::AllocExtra> = alloc.with_tags_and_extra(
|
2019-10-07 08:39:59 -05:00
|
|
|
|alloc| {
|
2020-02-24 09:22:02 -06:00
|
|
|
if let Some(stacked_borrows) = stacked_borrows.as_mut() {
|
2019-10-07 08:39:59 -05:00
|
|
|
// Only statics may already contain pointers at this point
|
|
|
|
assert_eq!(kind, MiriMemoryKind::Static.into());
|
|
|
|
stacked_borrows.static_base_ptr(alloc)
|
2020-02-24 09:22:02 -06:00
|
|
|
} else {
|
|
|
|
Tag::Untagged
|
2019-10-07 08:39:59 -05:00
|
|
|
}
|
2019-09-05 11:17:58 -05:00
|
|
|
},
|
2019-12-23 05:56:23 -06:00
|
|
|
AllocExtra { stacked_borrows: stacks },
|
2019-09-05 11:17:58 -05:00
|
|
|
);
|
2019-12-01 03:18:41 -06:00
|
|
|
(Cow::Owned(alloc), base_tag)
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
2020-03-08 11:54:47 -05:00
|
|
|
fn tag_static_base_pointer(memory_extra: &MemoryExtra, id: AllocId) -> Self::PointerTag {
|
2020-02-24 09:22:02 -06:00
|
|
|
if let Some(stacked_borrows) = memory_extra.stacked_borrows.as_ref() {
|
|
|
|
stacked_borrows.borrow_mut().static_base_ptr(id)
|
2019-07-03 03:19:55 -05:00
|
|
|
} else {
|
2020-02-24 09:22:02 -06:00
|
|
|
Tag::Untagged
|
2019-07-03 03:19:55 -05:00
|
|
|
}
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
fn retag(
|
2019-07-05 16:47:10 -05:00
|
|
|
ecx: &mut InterpCx<'mir, 'tcx, Self>,
|
2019-06-27 16:59:00 -05:00
|
|
|
kind: mir::RetagKind,
|
|
|
|
place: PlaceTy<'tcx, Tag>,
|
|
|
|
) -> InterpResult<'tcx> {
|
2020-02-24 09:22:02 -06:00
|
|
|
if ecx.memory.extra.stacked_borrows.is_none() {
|
2019-07-03 03:19:55 -05:00
|
|
|
// No tracking.
|
2019-10-07 08:39:59 -05:00
|
|
|
Ok(())
|
2019-06-27 16:59:00 -05:00
|
|
|
} else {
|
|
|
|
ecx.retag(kind, place)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
2019-12-23 05:56:23 -06:00
|
|
|
fn stack_push(ecx: &mut InterpCx<'mir, 'tcx, Self>) -> InterpResult<'tcx, FrameData<'tcx>> {
|
2020-03-01 03:26:24 -06:00
|
|
|
let stacked_borrows = ecx.memory.extra.stacked_borrows.as_ref();
|
|
|
|
let call_id = stacked_borrows.map_or(NonZeroU64::new(1).unwrap(), |stacked_borrows| {
|
|
|
|
stacked_borrows.borrow_mut().new_call()
|
|
|
|
});
|
2020-03-14 05:53:09 -05:00
|
|
|
Ok(FrameData { call_id, catch_unwind: None })
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
fn stack_pop(
|
2019-07-05 16:47:10 -05:00
|
|
|
ecx: &mut InterpCx<'mir, 'tcx, Self>,
|
2019-04-14 20:02:55 -05:00
|
|
|
extra: FrameData<'tcx>,
|
2019-12-23 05:56:23 -06:00
|
|
|
unwinding: bool,
|
2020-03-14 05:53:09 -05:00
|
|
|
) -> InterpResult<'tcx, StackPopJump> {
|
2019-04-14 20:02:55 -05:00
|
|
|
ecx.handle_stack_pop(extra, unwinding)
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
2019-07-23 14:38:53 -05:00
|
|
|
#[inline(always)]
|
2019-06-27 16:59:00 -05:00
|
|
|
fn int_to_ptr(
|
|
|
|
memory: &Memory<'mir, 'tcx, Self>,
|
2019-07-06 02:51:20 -05:00
|
|
|
int: u64,
|
2019-06-27 16:59:00 -05:00
|
|
|
) -> InterpResult<'tcx, Pointer<Self::PointerTag>> {
|
2019-07-23 14:38:53 -05:00
|
|
|
intptrcast::GlobalState::int_to_ptr(int, memory)
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
2019-07-23 14:38:53 -05:00
|
|
|
#[inline(always)]
|
2019-06-27 16:59:00 -05:00
|
|
|
fn ptr_to_int(
|
|
|
|
memory: &Memory<'mir, 'tcx, Self>,
|
2019-07-06 02:51:20 -05:00
|
|
|
ptr: Pointer<Self::PointerTag>,
|
2019-06-27 16:59:00 -05:00
|
|
|
) -> InterpResult<'tcx, u64> {
|
2019-07-23 14:38:53 -05:00
|
|
|
intptrcast::GlobalState::ptr_to_int(ptr, memory)
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AllocationExtra<Tag> for AllocExtra {
|
|
|
|
#[inline(always)]
|
|
|
|
fn memory_read<'tcx>(
|
|
|
|
alloc: &Allocation<Tag, AllocExtra>,
|
|
|
|
ptr: Pointer<Tag>,
|
|
|
|
size: Size,
|
|
|
|
) -> InterpResult<'tcx> {
|
2019-07-03 03:19:55 -05:00
|
|
|
if let Some(ref stacked_borrows) = alloc.extra.stacked_borrows {
|
|
|
|
stacked_borrows.memory_read(ptr, size)
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
fn memory_written<'tcx>(
|
|
|
|
alloc: &mut Allocation<Tag, AllocExtra>,
|
|
|
|
ptr: Pointer<Tag>,
|
|
|
|
size: Size,
|
|
|
|
) -> InterpResult<'tcx> {
|
2019-07-03 03:19:55 -05:00
|
|
|
if let Some(ref mut stacked_borrows) = alloc.extra.stacked_borrows {
|
|
|
|
stacked_borrows.memory_written(ptr, size)
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
fn memory_deallocated<'tcx>(
|
|
|
|
alloc: &mut Allocation<Tag, AllocExtra>,
|
|
|
|
ptr: Pointer<Tag>,
|
|
|
|
size: Size,
|
|
|
|
) -> InterpResult<'tcx> {
|
2019-07-03 03:19:55 -05:00
|
|
|
if let Some(ref mut stacked_borrows) = alloc.extra.stacked_borrows {
|
|
|
|
stacked_borrows.memory_deallocated(ptr, size)
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl MayLeak for MiriMemoryKind {
|
|
|
|
#[inline(always)]
|
|
|
|
fn may_leak(self) -> bool {
|
|
|
|
use self::MiriMemoryKind::*;
|
|
|
|
match self {
|
2019-07-02 02:03:45 -05:00
|
|
|
Rust | C | WinHeap => false,
|
2020-02-23 14:55:02 -06:00
|
|
|
Machine | Static => true,
|
2019-06-27 16:59:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|