2020-03-17 09:18:53 -05:00
|
|
|
use std::convert::TryFrom;
|
2020-03-28 09:43:47 -05:00
|
|
|
use std::mem;
|
2020-03-23 13:57:40 -05:00
|
|
|
|
2020-03-30 04:07:32 -05:00
|
|
|
use log::trace;
|
|
|
|
|
|
|
|
use rustc_middle::mir;
|
|
|
|
use rustc_middle::ty::{
|
2019-10-08 15:06:14 -05:00
|
|
|
self,
|
2020-03-30 03:23:04 -05:00
|
|
|
layout::{self, LayoutOf, Size, TyAndLayout},
|
2019-12-23 05:56:23 -06:00
|
|
|
List, TyCtxt,
|
2019-10-08 15:06:14 -05:00
|
|
|
};
|
2020-03-01 03:26:24 -06:00
|
|
|
use rustc_hir::def_id::{DefId, CRATE_DEF_INDEX};
|
2020-01-05 02:53:45 -06:00
|
|
|
use rustc_span::source_map::DUMMY_SP;
|
2018-10-19 02:51:04 -05:00
|
|
|
|
2019-06-30 16:28:24 -05:00
|
|
|
use rand::RngCore;
|
|
|
|
|
2018-11-01 02:56:41 -05:00
|
|
|
use crate::*;
|
2018-10-19 02:51:04 -05:00
|
|
|
|
2019-06-13 01:52:04 -05:00
|
|
|
impl<'mir, 'tcx> EvalContextExt<'mir, 'tcx> for crate::MiriEvalContext<'mir, 'tcx> {}
|
2019-02-15 19:29:38 -06:00
|
|
|
|
2019-04-14 20:02:55 -05:00
|
|
|
/// Gets an instance for a path.
|
2020-03-09 03:38:33 -05:00
|
|
|
fn try_resolve_did<'mir, 'tcx>(tcx: TyCtxt<'tcx>, path: &[&str]) -> Option<DefId> {
|
2019-12-23 05:56:23 -06:00
|
|
|
tcx.crates()
|
2019-04-14 20:02:55 -05:00
|
|
|
.iter()
|
|
|
|
.find(|&&krate| tcx.original_crate_name(krate).as_str() == path[0])
|
|
|
|
.and_then(|krate| {
|
2019-12-23 05:56:23 -06:00
|
|
|
let krate = DefId { krate: *krate, index: CRATE_DEF_INDEX };
|
2019-04-14 20:02:55 -05:00
|
|
|
let mut items = tcx.item_children(krate);
|
|
|
|
let mut path_it = path.iter().skip(1).peekable();
|
2018-10-19 02:51:04 -05:00
|
|
|
|
2019-04-14 20:02:55 -05:00
|
|
|
while let Some(segment) = path_it.next() {
|
|
|
|
for item in mem::replace(&mut items, Default::default()).iter() {
|
|
|
|
if item.ident.name.as_str() == *segment {
|
|
|
|
if path_it.peek().is_none() {
|
2019-12-23 05:56:23 -06:00
|
|
|
return Some(item.res.def_id());
|
2018-10-19 02:51:04 -05:00
|
|
|
}
|
2019-04-14 20:02:55 -05:00
|
|
|
|
|
|
|
items = tcx.item_children(item.res.def_id());
|
|
|
|
break;
|
2018-10-19 02:51:04 -05:00
|
|
|
}
|
|
|
|
}
|
2019-04-14 20:02:55 -05:00
|
|
|
}
|
|
|
|
None
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx> {
|
2019-11-19 07:51:08 -06:00
|
|
|
/// Gets an instance for a path.
|
2020-03-09 03:38:33 -05:00
|
|
|
fn resolve_path(&self, path: &[&str]) -> ty::Instance<'tcx> {
|
|
|
|
let did = try_resolve_did(self.eval_context_ref().tcx.tcx, path)
|
|
|
|
.unwrap_or_else(|| panic!("failed to find required Rust item: {:?}", path));
|
|
|
|
ty::Instance::mono(self.eval_context_ref().tcx.tcx, did)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Evaluates the scalar at the specified path. Returns Some(val)
|
|
|
|
/// if the path could be resolved, and None otherwise
|
|
|
|
fn eval_path_scalar(
|
|
|
|
&mut self,
|
|
|
|
path: &[&str],
|
|
|
|
) -> InterpResult<'tcx, ScalarMaybeUndef<Tag>> {
|
|
|
|
let this = self.eval_context_mut();
|
|
|
|
let instance = this.resolve_path(path);
|
|
|
|
let cid = GlobalId { instance, promoted: None };
|
|
|
|
let const_val = this.const_eval_raw(cid)?;
|
|
|
|
let const_val = this.read_scalar(const_val.into())?;
|
|
|
|
return Ok(const_val);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Helper function to get a `libc` constant as a `Scalar`.
|
|
|
|
fn eval_libc(&mut self, name: &str) -> InterpResult<'tcx, Scalar<Tag>> {
|
|
|
|
self.eval_context_mut()
|
|
|
|
.eval_path_scalar(&["libc", name])?
|
|
|
|
.not_undef()
|
|
|
|
}
|
|
|
|
|
2020-03-28 13:42:22 -05:00
|
|
|
/// Helper function to get a `windows` constant as a `Scalar`.
|
|
|
|
fn eval_windows(&mut self, name: &str) -> InterpResult<'tcx, Scalar<Tag>> {
|
|
|
|
self.eval_context_mut()
|
|
|
|
.eval_path_scalar(&["std", "sys", "windows", "c", name])?
|
|
|
|
.not_undef()
|
|
|
|
}
|
|
|
|
|
2020-03-09 03:38:33 -05:00
|
|
|
/// Helper function to get a `libc` constant as an `i32`.
|
|
|
|
fn eval_libc_i32(&mut self, name: &str) -> InterpResult<'tcx, i32> {
|
2020-03-26 05:41:31 -05:00
|
|
|
// TODO: Cache the result.
|
2020-03-09 03:38:33 -05:00
|
|
|
self.eval_libc(name)?.to_i32()
|
|
|
|
}
|
|
|
|
|
2020-03-30 03:23:04 -05:00
|
|
|
/// Helper function to get the `TyAndLayout` of a `libc` type
|
|
|
|
fn libc_ty_layout(&mut self, name: &str) -> InterpResult<'tcx, TyAndLayout<'tcx>> {
|
2020-03-09 03:38:33 -05:00
|
|
|
let this = self.eval_context_mut();
|
|
|
|
let ty = this.resolve_path(&["libc", name]).monomorphic_ty(*this.tcx);
|
|
|
|
this.layout_of(ty)
|
2018-10-19 02:51:04 -05:00
|
|
|
}
|
2018-11-05 09:05:17 -06:00
|
|
|
|
2019-07-05 02:56:42 -05:00
|
|
|
/// Write a 0 of the appropriate size to `dest`.
|
|
|
|
fn write_null(&mut self, dest: PlaceTy<'tcx, Tag>) -> InterpResult<'tcx> {
|
|
|
|
self.eval_context_mut().write_scalar(Scalar::from_int(0, dest.layout.size), dest)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Test if this immediate equals 0.
|
|
|
|
fn is_null(&self, val: Scalar<Tag>) -> InterpResult<'tcx, bool> {
|
|
|
|
let this = self.eval_context_ref();
|
2020-03-29 03:01:31 -05:00
|
|
|
let null = Scalar::null_ptr(this);
|
2019-07-05 02:56:42 -05:00
|
|
|
this.ptr_eq(val, null)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Turn a Scalar into an Option<NonNullScalar>
|
|
|
|
fn test_null(&self, val: Scalar<Tag>) -> InterpResult<'tcx, Option<Scalar<Tag>>> {
|
|
|
|
let this = self.eval_context_ref();
|
2019-12-23 05:56:23 -06:00
|
|
|
Ok(if this.is_null(val)? { None } else { Some(val) })
|
2019-07-05 02:56:42 -05:00
|
|
|
}
|
|
|
|
|
2019-07-21 04:56:10 -05:00
|
|
|
/// Get the `Place` for a local
|
|
|
|
fn local_place(&mut self, local: mir::Local) -> InterpResult<'tcx, PlaceTy<'tcx, Tag>> {
|
|
|
|
let this = self.eval_context_mut();
|
2020-01-15 12:27:21 -06:00
|
|
|
let place = mir::Place { local: local, projection: List::empty() };
|
2019-07-21 04:56:10 -05:00
|
|
|
this.eval_place(&place)
|
|
|
|
}
|
|
|
|
|
2019-06-30 16:28:24 -05:00
|
|
|
/// Generate some random bytes, and write them to `dest`.
|
2020-03-17 09:18:53 -05:00
|
|
|
fn gen_random(&mut self, ptr: Scalar<Tag>, len: u64) -> InterpResult<'tcx> {
|
2019-08-04 08:21:17 -05:00
|
|
|
// Some programs pass in a null pointer and a length of 0
|
|
|
|
// to their platform's random-generation function (e.g. getrandom())
|
|
|
|
// on Linux. For compatibility with these programs, we don't perform
|
|
|
|
// any additional checks - it's okay if the pointer is invalid,
|
|
|
|
// since we wouldn't actually be writing to it.
|
|
|
|
if len == 0 {
|
2019-08-04 09:13:29 -05:00
|
|
|
return Ok(());
|
2019-08-04 08:21:17 -05:00
|
|
|
}
|
2019-06-30 16:28:24 -05:00
|
|
|
let this = self.eval_context_mut();
|
2019-06-30 16:32:25 -05:00
|
|
|
|
2020-03-17 09:18:53 -05:00
|
|
|
let mut data = vec![0; usize::try_from(len).unwrap()];
|
2019-08-19 10:43:09 -05:00
|
|
|
|
|
|
|
if this.machine.communicate {
|
|
|
|
// Fill the buffer using the host's rng.
|
2019-08-20 10:47:38 -05:00
|
|
|
getrandom::getrandom(&mut data)
|
2020-03-09 03:38:33 -05:00
|
|
|
.map_err(|err| err_unsup_format!("host getrandom failed: {}", err))?;
|
2019-12-23 05:56:23 -06:00
|
|
|
} else {
|
2019-10-17 21:11:50 -05:00
|
|
|
let rng = this.memory.extra.rng.get_mut();
|
2019-08-19 10:43:09 -05:00
|
|
|
rng.fill_bytes(&mut data);
|
|
|
|
}
|
2019-07-23 14:38:53 -05:00
|
|
|
|
2019-10-22 03:13:11 -05:00
|
|
|
this.memory.write_bytes(ptr, data.iter().copied())
|
2019-06-30 16:28:24 -05:00
|
|
|
}
|
|
|
|
|
2019-11-28 16:42:10 -06:00
|
|
|
/// Call a function: Push the stack frame and pass the arguments.
|
|
|
|
/// For now, arguments must be scalars (so that the caller does not have to know the layout).
|
|
|
|
fn call_function(
|
|
|
|
&mut self,
|
|
|
|
f: ty::Instance<'tcx>,
|
2019-11-29 04:17:44 -06:00
|
|
|
args: &[Immediate<Tag>],
|
2019-11-28 16:42:10 -06:00
|
|
|
dest: Option<PlaceTy<'tcx, Tag>>,
|
|
|
|
stack_pop: StackPopCleanup,
|
|
|
|
) -> InterpResult<'tcx> {
|
|
|
|
let this = self.eval_context_mut();
|
|
|
|
|
|
|
|
// Push frame.
|
2019-12-08 03:32:50 -06:00
|
|
|
let mir = &*this.load_mir(f.def, None)?;
|
2019-12-23 05:56:23 -06:00
|
|
|
let span = this
|
|
|
|
.stack()
|
|
|
|
.last()
|
2019-11-29 04:52:53 -06:00
|
|
|
.and_then(Frame::current_source_info)
|
|
|
|
.map(|si| si.span)
|
|
|
|
.unwrap_or(DUMMY_SP);
|
2019-12-23 05:56:23 -06:00
|
|
|
this.push_stack_frame(f, span, mir, dest, stack_pop)?;
|
2019-11-28 16:42:10 -06:00
|
|
|
|
|
|
|
// Initialize arguments.
|
|
|
|
let mut callee_args = this.frame().body.args_iter();
|
|
|
|
for arg in args {
|
|
|
|
let callee_arg = this.local_place(
|
2019-12-23 05:56:23 -06:00
|
|
|
callee_args.next().expect("callee has fewer arguments than expected"),
|
2019-11-28 16:42:10 -06:00
|
|
|
)?;
|
2019-11-29 04:17:44 -06:00
|
|
|
this.write_immediate(*arg, callee_arg)?;
|
2019-11-28 16:42:10 -06:00
|
|
|
}
|
|
|
|
callee_args.next().expect_none("callee has more arguments than expected");
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2019-02-15 19:29:38 -06:00
|
|
|
/// Visits the memory covered by `place`, sensitive to freezing: the 3rd parameter
|
2018-12-11 07:16:58 -06:00
|
|
|
/// will be true if this is frozen, false if this is in an `UnsafeCell`.
|
2018-11-07 09:56:25 -06:00
|
|
|
fn visit_freeze_sensitive(
|
2018-11-05 09:05:17 -06:00
|
|
|
&self,
|
2019-04-15 08:36:09 -05:00
|
|
|
place: MPlaceTy<'tcx, Tag>,
|
2018-11-05 09:05:17 -06:00
|
|
|
size: Size,
|
2019-06-08 15:14:47 -05:00
|
|
|
mut action: impl FnMut(Pointer<Tag>, Size, bool) -> InterpResult<'tcx>,
|
|
|
|
) -> InterpResult<'tcx> {
|
2018-12-11 07:16:58 -06:00
|
|
|
let this = self.eval_context_ref();
|
2018-11-05 09:05:17 -06:00
|
|
|
trace!("visit_frozen(place={:?}, size={:?})", *place, size);
|
2019-12-23 05:56:23 -06:00
|
|
|
debug_assert_eq!(
|
|
|
|
size,
|
2018-12-11 07:16:58 -06:00
|
|
|
this.size_and_align_of_mplace(place)?
|
2019-12-23 05:56:23 -06:00
|
|
|
.map(|(size, _)| size)
|
|
|
|
.unwrap_or_else(|| place.layout.size)
|
2018-11-05 09:05:17 -06:00
|
|
|
);
|
2019-02-15 19:29:38 -06:00
|
|
|
// Store how far we proceeded into the place so far. Everything to the left of
|
2018-11-05 09:05:17 -06:00
|
|
|
// this offset has already been handled, in the sense that the frozen parts
|
|
|
|
// have had `action` called on them.
|
2019-07-06 06:14:06 -05:00
|
|
|
let mut end_ptr = place.ptr.assert_ptr();
|
2018-11-05 09:05:17 -06:00
|
|
|
// Called when we detected an `UnsafeCell` at the given offset and size.
|
|
|
|
// Calls `action` and advances `end_ptr`.
|
2019-04-15 08:36:09 -05:00
|
|
|
let mut unsafe_cell_action = |unsafe_cell_ptr: Scalar<Tag>, unsafe_cell_size: Size| {
|
2019-07-06 06:14:06 -05:00
|
|
|
let unsafe_cell_ptr = unsafe_cell_ptr.assert_ptr();
|
|
|
|
debug_assert_eq!(unsafe_cell_ptr.alloc_id, end_ptr.alloc_id);
|
|
|
|
debug_assert_eq!(unsafe_cell_ptr.tag, end_ptr.tag);
|
2018-11-05 09:05:17 -06:00
|
|
|
// We assume that we are given the fields in increasing offset order,
|
|
|
|
// and nothing else changes.
|
2019-07-06 06:14:06 -05:00
|
|
|
let unsafe_cell_offset = unsafe_cell_ptr.offset;
|
|
|
|
let end_offset = end_ptr.offset;
|
2018-11-05 09:05:17 -06:00
|
|
|
assert!(unsafe_cell_offset >= end_offset);
|
|
|
|
let frozen_size = unsafe_cell_offset - end_offset;
|
|
|
|
// Everything between the end_ptr and this `UnsafeCell` is frozen.
|
|
|
|
if frozen_size != Size::ZERO {
|
2019-12-23 05:56:23 -06:00
|
|
|
action(end_ptr, frozen_size, /*frozen*/ true)?;
|
2018-11-07 09:56:25 -06:00
|
|
|
}
|
|
|
|
// This `UnsafeCell` is NOT frozen.
|
|
|
|
if unsafe_cell_size != Size::ZERO {
|
2019-12-23 05:56:23 -06:00
|
|
|
action(unsafe_cell_ptr, unsafe_cell_size, /*frozen*/ false)?;
|
2018-11-05 09:05:17 -06:00
|
|
|
}
|
|
|
|
// Update end end_ptr.
|
2019-07-06 06:14:06 -05:00
|
|
|
end_ptr = unsafe_cell_ptr.wrapping_offset(unsafe_cell_size, this);
|
2018-11-05 09:05:17 -06:00
|
|
|
// Done
|
|
|
|
Ok(())
|
|
|
|
};
|
|
|
|
// Run a visitor
|
|
|
|
{
|
|
|
|
let mut visitor = UnsafeCellVisitor {
|
2018-12-11 07:16:58 -06:00
|
|
|
ecx: this,
|
2018-11-05 09:05:17 -06:00
|
|
|
unsafe_cell_action: |place| {
|
|
|
|
trace!("unsafe_cell_action on {:?}", place.ptr);
|
|
|
|
// We need a size to go on.
|
2019-12-23 05:56:23 -06:00
|
|
|
let unsafe_cell_size = this
|
|
|
|
.size_and_align_of_mplace(place)?
|
2018-11-23 02:46:51 -06:00
|
|
|
.map(|(size, _)| size)
|
2018-11-05 09:05:17 -06:00
|
|
|
// for extern types, just cover what we can
|
2018-11-23 02:46:51 -06:00
|
|
|
.unwrap_or_else(|| place.layout.size);
|
2018-11-06 10:46:54 -06:00
|
|
|
// Now handle this `UnsafeCell`, unless it is empty.
|
|
|
|
if unsafe_cell_size != Size::ZERO {
|
2018-11-07 09:56:25 -06:00
|
|
|
unsafe_cell_action(place.ptr, unsafe_cell_size)
|
2018-11-06 10:46:54 -06:00
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
2018-11-05 09:05:17 -06:00
|
|
|
},
|
|
|
|
};
|
|
|
|
visitor.visit_value(place)?;
|
|
|
|
}
|
|
|
|
// The part between the end_ptr and the end of the place is also frozen.
|
|
|
|
// So pretend there is a 0-sized `UnsafeCell` at the end.
|
2018-12-11 07:16:58 -06:00
|
|
|
unsafe_cell_action(place.ptr.ptr_wrapping_offset(size, this), Size::ZERO)?;
|
2018-11-05 09:05:17 -06:00
|
|
|
// Done!
|
|
|
|
return Ok(());
|
|
|
|
|
|
|
|
/// Visiting the memory covered by a `MemPlace`, being aware of
|
|
|
|
/// whether we are inside an `UnsafeCell` or not.
|
2019-06-13 01:52:04 -05:00
|
|
|
struct UnsafeCellVisitor<'ecx, 'mir, 'tcx, F>
|
2019-12-23 05:56:23 -06:00
|
|
|
where
|
|
|
|
F: FnMut(MPlaceTy<'tcx, Tag>) -> InterpResult<'tcx>,
|
2018-11-05 09:05:17 -06:00
|
|
|
{
|
2019-06-13 01:52:04 -05:00
|
|
|
ecx: &'ecx MiriEvalContext<'mir, 'tcx>,
|
2018-11-05 09:05:17 -06:00
|
|
|
unsafe_cell_action: F,
|
|
|
|
}
|
|
|
|
|
2019-12-23 05:56:23 -06:00
|
|
|
impl<'ecx, 'mir, 'tcx, F> ValueVisitor<'mir, 'tcx, Evaluator<'tcx>>
|
|
|
|
for UnsafeCellVisitor<'ecx, 'mir, 'tcx, F>
|
2018-11-05 09:05:17 -06:00
|
|
|
where
|
2019-12-23 05:56:23 -06:00
|
|
|
F: FnMut(MPlaceTy<'tcx, Tag>) -> InterpResult<'tcx>,
|
2018-11-05 09:05:17 -06:00
|
|
|
{
|
2019-04-15 08:36:09 -05:00
|
|
|
type V = MPlaceTy<'tcx, Tag>;
|
2018-11-05 09:05:17 -06:00
|
|
|
|
|
|
|
#[inline(always)]
|
2019-06-13 01:52:04 -05:00
|
|
|
fn ecx(&self) -> &MiriEvalContext<'mir, 'tcx> {
|
2018-11-05 09:05:17 -06:00
|
|
|
&self.ecx
|
|
|
|
}
|
|
|
|
|
2019-02-15 19:29:38 -06:00
|
|
|
// Hook to detect `UnsafeCell`.
|
2019-12-23 05:56:23 -06:00
|
|
|
fn visit_value(&mut self, v: MPlaceTy<'tcx, Tag>) -> InterpResult<'tcx> {
|
2018-11-05 09:05:17 -06:00
|
|
|
trace!("UnsafeCellVisitor: {:?} {:?}", *v, v.layout.ty);
|
2019-09-26 04:40:13 -05:00
|
|
|
let is_unsafe_cell = match v.layout.ty.kind {
|
2019-12-23 05:56:23 -06:00
|
|
|
ty::Adt(adt, _) =>
|
|
|
|
Some(adt.did) == self.ecx.tcx.lang_items().unsafe_cell_type(),
|
2018-11-05 09:05:17 -06:00
|
|
|
_ => false,
|
|
|
|
};
|
|
|
|
if is_unsafe_cell {
|
|
|
|
// We do not have to recurse further, this is an `UnsafeCell`.
|
|
|
|
(self.unsafe_cell_action)(v)
|
|
|
|
} else if self.ecx.type_is_freeze(v.layout.ty) {
|
|
|
|
// This is `Freeze`, there cannot be an `UnsafeCell`
|
|
|
|
Ok(())
|
|
|
|
} else {
|
2019-08-28 11:41:30 -05:00
|
|
|
// We want to not actually read from memory for this visit. So, before
|
|
|
|
// walking this value, we have to make sure it is not a
|
|
|
|
// `Variants::Multiple`.
|
|
|
|
match v.layout.variants {
|
|
|
|
layout::Variants::Multiple { .. } => {
|
|
|
|
// A multi-variant enum, or generator, or so.
|
|
|
|
// Treat this like a union: without reading from memory,
|
|
|
|
// we cannot determine the variant we are in. Reading from
|
|
|
|
// memory would be subject to Stacked Borrows rules, leading
|
|
|
|
// to all sorts of "funny" recursion.
|
2019-08-28 11:45:10 -05:00
|
|
|
// We only end up here if the type is *not* freeze, so we just call the
|
|
|
|
// `UnsafeCell` action.
|
|
|
|
(self.unsafe_cell_action)(v)
|
2019-08-28 11:41:30 -05:00
|
|
|
}
|
|
|
|
layout::Variants::Single { .. } => {
|
2019-08-28 11:45:10 -05:00
|
|
|
// Proceed further, try to find where exactly that `UnsafeCell`
|
|
|
|
// is hiding.
|
2019-08-28 11:41:30 -05:00
|
|
|
self.walk_value(v)
|
|
|
|
}
|
|
|
|
}
|
2018-11-05 09:05:17 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-15 19:29:38 -06:00
|
|
|
// Make sure we visit aggregrates in increasing offset order.
|
2018-11-06 10:46:54 -06:00
|
|
|
fn visit_aggregate(
|
|
|
|
&mut self,
|
2019-04-15 08:36:09 -05:00
|
|
|
place: MPlaceTy<'tcx, Tag>,
|
2019-12-23 05:56:23 -06:00
|
|
|
fields: impl Iterator<Item = InterpResult<'tcx, MPlaceTy<'tcx, Tag>>>,
|
2019-06-08 15:14:47 -05:00
|
|
|
) -> InterpResult<'tcx> {
|
2018-11-06 10:46:54 -06:00
|
|
|
match place.layout.fields {
|
|
|
|
layout::FieldPlacement::Array { .. } => {
|
|
|
|
// For the array layout, we know the iterator will yield sorted elements so
|
|
|
|
// we can avoid the allocation.
|
|
|
|
self.walk_aggregate(place, fields)
|
|
|
|
}
|
|
|
|
layout::FieldPlacement::Arbitrary { .. } => {
|
|
|
|
// Gather the subplaces and sort them before visiting.
|
2019-12-23 05:56:23 -06:00
|
|
|
let mut places =
|
|
|
|
fields.collect::<InterpResult<'tcx, Vec<MPlaceTy<'tcx, Tag>>>>()?;
|
2019-07-06 06:14:06 -05:00
|
|
|
places.sort_by_key(|place| place.ptr.assert_ptr().offset);
|
2018-11-06 10:46:54 -06:00
|
|
|
self.walk_aggregate(place, places.into_iter().map(Ok))
|
|
|
|
}
|
|
|
|
layout::FieldPlacement::Union { .. } => {
|
|
|
|
// Uh, what?
|
2019-02-15 19:29:38 -06:00
|
|
|
bug!("a union is not an aggregate we should ever visit")
|
2018-11-06 10:46:54 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-15 19:29:38 -06:00
|
|
|
// We have to do *something* for unions.
|
2020-02-18 02:32:02 -06:00
|
|
|
fn visit_union(&mut self, v: MPlaceTy<'tcx, Tag>, fields: usize) -> InterpResult<'tcx> {
|
|
|
|
assert!(fields > 0); // we should never reach "pseudo-unions" with 0 fields, like primitives
|
|
|
|
|
2018-11-05 09:05:17 -06:00
|
|
|
// With unions, we fall back to whatever the type says, to hopefully be consistent
|
|
|
|
// with LLVM IR.
|
2019-02-15 19:29:38 -06:00
|
|
|
// FIXME: are we consistent, and is this really the behavior we want?
|
2018-11-05 09:05:17 -06:00
|
|
|
let frozen = self.ecx.type_is_freeze(v.layout.ty);
|
2019-12-23 05:56:23 -06:00
|
|
|
if frozen { Ok(()) } else { (self.unsafe_cell_action)(v) }
|
2018-11-05 09:05:17 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-11 04:17:43 -05:00
|
|
|
|
2019-10-11 00:55:32 -05:00
|
|
|
// Writes several `ImmTy`s contiguosly into memory. This is useful when you have to pack
|
2019-10-12 19:48:18 -05:00
|
|
|
// different values into a struct.
|
2019-10-14 09:08:39 -05:00
|
|
|
fn write_packed_immediates(
|
2019-10-08 15:06:14 -05:00
|
|
|
&mut self,
|
2020-01-30 06:38:49 -06:00
|
|
|
place: MPlaceTy<'tcx, Tag>,
|
2019-10-11 00:55:32 -05:00
|
|
|
imms: &[ImmTy<'tcx, Tag>],
|
2019-10-08 15:06:14 -05:00
|
|
|
) -> InterpResult<'tcx> {
|
|
|
|
let this = self.eval_context_mut();
|
|
|
|
|
|
|
|
let mut offset = Size::from_bytes(0);
|
|
|
|
|
2019-10-14 09:08:39 -05:00
|
|
|
for &imm in imms {
|
|
|
|
this.write_immediate_to_mplace(
|
|
|
|
*imm,
|
2020-01-15 12:27:21 -06:00
|
|
|
place.offset(offset, MemPlaceMeta::None, imm.layout, &*this.tcx)?,
|
2019-10-08 15:06:14 -05:00
|
|
|
)?;
|
2019-10-14 09:08:39 -05:00
|
|
|
offset += imm.layout.size;
|
2019-10-08 15:06:14 -05:00
|
|
|
}
|
2019-10-14 15:36:15 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
2019-10-08 15:06:14 -05:00
|
|
|
|
2019-10-14 15:36:15 -05:00
|
|
|
/// Helper function used inside the shims of foreign functions to check that isolation is
|
|
|
|
/// disabled. It returns an error using the `name` of the foreign function if this is not the
|
|
|
|
/// case.
|
2020-02-23 11:44:40 -06:00
|
|
|
fn check_no_isolation(&self, name: &str) -> InterpResult<'tcx> {
|
|
|
|
if !self.eval_context_ref().machine.communicate {
|
2020-03-22 13:48:59 -05:00
|
|
|
throw_machine_stop!(TerminationInfo::UnsupportedInIsolation(format!(
|
|
|
|
"`{}` not available when isolation is enabled",
|
2020-02-23 11:44:40 -06:00
|
|
|
name,
|
2020-03-22 13:48:59 -05:00
|
|
|
)))
|
2019-10-14 15:36:15 -05:00
|
|
|
}
|
2019-10-08 15:06:14 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-03-22 02:51:15 -05:00
|
|
|
/// Helper function used inside the shims of foreign functions to assert that the target OS
|
|
|
|
/// is `target_os`. It panics showing a message with the `name` of the foreign function
|
2020-02-22 08:02:25 -06:00
|
|
|
/// if this is not the case.
|
2020-03-22 02:51:15 -05:00
|
|
|
fn assert_target_os(&self, target_os: &str, name: &str) {
|
2020-02-22 08:02:25 -06:00
|
|
|
assert_eq!(
|
2020-02-23 11:54:08 -06:00
|
|
|
self.eval_context_ref().tcx.sess.target.target.target_os,
|
2020-03-22 02:51:15 -05:00
|
|
|
target_os,
|
|
|
|
"`{}` is only available on the `{}` target OS",
|
2020-02-22 08:02:25 -06:00
|
|
|
name,
|
2020-03-22 02:51:15 -05:00
|
|
|
target_os,
|
2020-02-22 08:02:25 -06:00
|
|
|
)
|
2020-02-08 12:29:26 -06:00
|
|
|
}
|
2019-10-13 15:26:03 -05:00
|
|
|
|
2019-10-19 14:00:44 -05:00
|
|
|
/// Sets the last error variable.
|
2019-10-12 20:44:45 -05:00
|
|
|
fn set_last_error(&mut self, scalar: Scalar<Tag>) -> InterpResult<'tcx> {
|
|
|
|
let this = self.eval_context_mut();
|
2019-10-12 20:58:02 -05:00
|
|
|
let errno_place = this.machine.last_error.unwrap();
|
|
|
|
this.write_scalar(scalar, errno_place.into())
|
2019-10-12 20:44:45 -05:00
|
|
|
}
|
|
|
|
|
2019-10-19 14:00:44 -05:00
|
|
|
/// Gets the last error variable.
|
2020-02-23 11:44:40 -06:00
|
|
|
fn get_last_error(&self) -> InterpResult<'tcx, Scalar<Tag>> {
|
|
|
|
let this = self.eval_context_ref();
|
2019-10-12 20:58:02 -05:00
|
|
|
let errno_place = this.machine.last_error.unwrap();
|
|
|
|
this.read_scalar(errno_place.into())?.not_undef()
|
2019-10-12 20:44:45 -05:00
|
|
|
}
|
|
|
|
|
2019-10-18 14:33:25 -05:00
|
|
|
/// Sets the last OS error using a `std::io::Error`. This function tries to produce the most
|
|
|
|
/// similar OS error from the `std::io::ErrorKind` and sets it as the last OS error.
|
2019-10-12 20:44:45 -05:00
|
|
|
fn set_last_error_from_io_error(&mut self, e: std::io::Error) -> InterpResult<'tcx> {
|
2019-10-17 20:29:30 -05:00
|
|
|
use std::io::ErrorKind::*;
|
|
|
|
let this = self.eval_context_mut();
|
2020-03-28 04:07:23 -05:00
|
|
|
let target = &this.tcx.sess.target.target;
|
2020-03-29 08:46:13 -05:00
|
|
|
let target_os = &target.target_os;
|
2019-10-17 20:29:30 -05:00
|
|
|
let last_error = if target.options.target_family == Some("unix".to_owned()) {
|
|
|
|
this.eval_libc(match e.kind() {
|
|
|
|
ConnectionRefused => "ECONNREFUSED",
|
|
|
|
ConnectionReset => "ECONNRESET",
|
|
|
|
PermissionDenied => "EPERM",
|
|
|
|
BrokenPipe => "EPIPE",
|
|
|
|
NotConnected => "ENOTCONN",
|
|
|
|
ConnectionAborted => "ECONNABORTED",
|
|
|
|
AddrNotAvailable => "EADDRNOTAVAIL",
|
|
|
|
AddrInUse => "EADDRINUSE",
|
|
|
|
NotFound => "ENOENT",
|
|
|
|
Interrupted => "EINTR",
|
|
|
|
InvalidInput => "EINVAL",
|
|
|
|
TimedOut => "ETIMEDOUT",
|
|
|
|
AlreadyExists => "EEXIST",
|
|
|
|
WouldBlock => "EWOULDBLOCK",
|
2019-12-23 05:56:23 -06:00
|
|
|
_ => {
|
2020-03-09 03:43:20 -05:00
|
|
|
throw_unsup_format!("io error {} cannot be transformed into a raw os error", e)
|
2019-12-23 05:56:23 -06:00
|
|
|
}
|
2019-10-17 20:29:30 -05:00
|
|
|
})?
|
2020-03-29 08:46:13 -05:00
|
|
|
} else if target_os == "windows" {
|
2020-03-28 13:42:22 -05:00
|
|
|
// FIXME: we have to finish implementing the Windows equivalent of this.
|
|
|
|
this.eval_windows(match e.kind() {
|
|
|
|
NotFound => "ERROR_FILE_NOT_FOUND",
|
2020-03-29 08:46:13 -05:00
|
|
|
_ => throw_unsup_format!("io error {} cannot be transformed into a raw os error", e)
|
2020-03-28 13:42:22 -05:00
|
|
|
})?
|
2020-03-29 08:46:13 -05:00
|
|
|
} else {
|
|
|
|
throw_unsup_format!("setting the last OS error from an io::Error is unsupported for {}.", target_os)
|
2019-10-17 20:29:30 -05:00
|
|
|
};
|
|
|
|
this.set_last_error(last_error)
|
2019-10-12 20:44:45 -05:00
|
|
|
}
|
2019-10-16 21:37:35 -05:00
|
|
|
|
|
|
|
/// Helper function that consumes an `std::io::Result<T>` and returns an
|
2019-10-18 14:33:25 -05:00
|
|
|
/// `InterpResult<'tcx,T>::Ok` instead. In case the result is an error, this function returns
|
|
|
|
/// `Ok(-1)` and sets the last OS error accordingly.
|
2019-10-16 21:37:35 -05:00
|
|
|
///
|
|
|
|
/// This function uses `T: From<i32>` instead of `i32` directly because some IO related
|
2019-10-24 03:23:44 -05:00
|
|
|
/// functions return different integer types (like `read`, that returns an `i64`).
|
2019-10-18 14:33:25 -05:00
|
|
|
fn try_unwrap_io_result<T: From<i32>>(
|
2019-10-16 21:37:35 -05:00
|
|
|
&mut self,
|
|
|
|
result: std::io::Result<T>,
|
|
|
|
) -> InterpResult<'tcx, T> {
|
|
|
|
match result {
|
|
|
|
Ok(ok) => Ok(ok),
|
|
|
|
Err(e) => {
|
|
|
|
self.eval_context_mut().set_last_error_from_io_error(e)?;
|
|
|
|
Ok((-1).into())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-17 10:21:06 -05:00
|
|
|
}
|
2019-10-17 21:20:05 -05:00
|
|
|
|
2019-11-30 14:09:52 -06:00
|
|
|
pub fn immty_from_int_checked<'tcx>(
|
|
|
|
int: impl Into<i128>,
|
2020-03-30 03:23:04 -05:00
|
|
|
layout: TyAndLayout<'tcx>,
|
2019-11-30 14:09:52 -06:00
|
|
|
) -> InterpResult<'tcx, ImmTy<'tcx, Tag>> {
|
|
|
|
let int = int.into();
|
2020-03-01 03:26:24 -06:00
|
|
|
Ok(ImmTy::try_from_int(int, layout).ok_or_else(|| {
|
2020-03-09 03:38:33 -05:00
|
|
|
err_unsup_format!("signed value {:#x} does not fit in {} bits", int, layout.size.bits())
|
2020-03-01 03:26:24 -06:00
|
|
|
})?)
|
2019-11-30 14:09:52 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn immty_from_uint_checked<'tcx>(
|
|
|
|
int: impl Into<u128>,
|
2020-03-30 03:23:04 -05:00
|
|
|
layout: TyAndLayout<'tcx>,
|
2019-11-30 14:09:52 -06:00
|
|
|
) -> InterpResult<'tcx, ImmTy<'tcx, Tag>> {
|
|
|
|
let int = int.into();
|
2020-03-01 03:26:24 -06:00
|
|
|
Ok(ImmTy::try_from_uint(int, layout).ok_or_else(|| {
|
2020-03-09 03:38:33 -05:00
|
|
|
err_unsup_format!("unsigned value {:#x} does not fit in {} bits", int, layout.size.bits())
|
2020-03-01 03:26:24 -06:00
|
|
|
})?)
|
2019-11-30 14:09:52 -06:00
|
|
|
}
|