2016-06-23 08:16:25 -05:00
|
|
|
use byteorder::{ReadBytesExt, WriteBytesExt, LittleEndian, BigEndian, self};
|
2016-03-13 15:36:25 -05:00
|
|
|
use std::collections::Bound::{Included, Excluded};
|
2016-04-06 04:45:06 -05:00
|
|
|
use std::collections::{btree_map, BTreeMap, HashMap, HashSet, VecDeque};
|
2016-04-09 20:31:53 -05:00
|
|
|
use std::{fmt, iter, mem, ptr};
|
2016-03-05 00:48:23 -06:00
|
|
|
|
2016-06-08 06:43:34 -05:00
|
|
|
use rustc::hir::def_id::DefId;
|
2016-06-14 03:34:54 -05:00
|
|
|
use rustc::ty::BareFnTy;
|
2016-06-08 06:43:34 -05:00
|
|
|
use rustc::ty::subst::Substs;
|
2016-06-23 08:16:25 -05:00
|
|
|
use rustc::ty::layout::{self, TargetDataLayout};
|
2016-06-08 06:43:34 -05:00
|
|
|
|
2016-03-14 22:48:00 -05:00
|
|
|
use error::{EvalError, EvalResult};
|
2016-03-13 01:43:28 -06:00
|
|
|
use primval::PrimVal;
|
2016-03-05 00:48:23 -06:00
|
|
|
|
2016-04-04 21:33:41 -05:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Allocations and pointers
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2016-04-09 20:31:53 -05:00
|
|
|
#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq)]
|
2016-04-04 21:33:41 -05:00
|
|
|
pub struct AllocId(u64);
|
|
|
|
|
2016-04-09 20:31:53 -05:00
|
|
|
impl fmt::Display for AllocId {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "{}", self.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-04 21:33:41 -05:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Allocation {
|
2016-04-06 18:29:56 -05:00
|
|
|
pub bytes: Vec<u8>,
|
2016-04-04 21:33:41 -05:00
|
|
|
pub relocations: BTreeMap<usize, AllocId>,
|
2016-04-06 04:45:06 -05:00
|
|
|
pub undef_mask: UndefMask,
|
2016-04-04 21:33:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
|
|
|
|
pub struct Pointer {
|
|
|
|
pub alloc_id: AllocId,
|
|
|
|
pub offset: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Pointer {
|
|
|
|
pub fn offset(self, i: isize) -> Self {
|
|
|
|
Pointer { offset: (self.offset as isize + i) as usize, ..self }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-20 03:35:15 -05:00
|
|
|
#[derive(Debug, Copy, Clone, Hash, Eq, PartialEq)]
|
2016-06-14 03:34:54 -05:00
|
|
|
pub struct FunctionDefinition<'tcx> {
|
|
|
|
pub def_id: DefId,
|
|
|
|
pub substs: &'tcx Substs<'tcx>,
|
|
|
|
pub fn_ty: &'tcx BareFnTy<'tcx>,
|
|
|
|
}
|
|
|
|
|
2016-04-04 21:33:41 -05:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Top-level interpreter memory
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2016-06-23 02:36:24 -05:00
|
|
|
pub struct Memory<'a, 'tcx> {
|
2016-06-13 04:39:15 -05:00
|
|
|
/// Actual memory allocations (arbitrary bytes, may contain pointers into other allocations)
|
2016-04-09 20:31:53 -05:00
|
|
|
alloc_map: HashMap<AllocId, Allocation>,
|
2016-06-13 04:39:15 -05:00
|
|
|
/// Function "allocations". They exist solely so pointers have something to point to, and
|
|
|
|
/// we can figure out what they point to.
|
2016-06-14 03:34:54 -05:00
|
|
|
functions: HashMap<AllocId, FunctionDefinition<'tcx>>,
|
2016-06-20 03:35:15 -05:00
|
|
|
/// Inverse map of `functions` so we don't allocate a new pointer every time we need one
|
2016-06-20 09:52:53 -05:00
|
|
|
function_alloc_cache: HashMap<FunctionDefinition<'tcx>, AllocId>,
|
2016-04-09 20:31:53 -05:00
|
|
|
next_id: AllocId,
|
2016-06-23 02:36:24 -05:00
|
|
|
pub layout: &'a TargetDataLayout,
|
2016-03-23 22:40:58 -05:00
|
|
|
}
|
|
|
|
|
2016-06-23 02:36:24 -05:00
|
|
|
impl<'a, 'tcx> Memory<'a, 'tcx> {
|
|
|
|
pub fn new(layout: &'a TargetDataLayout) -> Self {
|
2016-03-17 08:53:26 -05:00
|
|
|
Memory {
|
|
|
|
alloc_map: HashMap::new(),
|
2016-06-08 06:43:34 -05:00
|
|
|
functions: HashMap::new(),
|
2016-06-20 09:52:53 -05:00
|
|
|
function_alloc_cache: HashMap::new(),
|
2016-04-09 20:31:53 -05:00
|
|
|
next_id: AllocId(0),
|
2016-06-23 02:36:24 -05:00
|
|
|
layout: layout,
|
2016-03-17 08:53:26 -05:00
|
|
|
}
|
2016-03-05 00:48:23 -06:00
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn create_fn_ptr(&mut self, def_id: DefId, substs: &'tcx Substs<'tcx>, fn_ty: &'tcx BareFnTy<'tcx>) -> Pointer {
|
2016-06-20 03:35:15 -05:00
|
|
|
let def = FunctionDefinition {
|
2016-06-14 03:34:54 -05:00
|
|
|
def_id: def_id,
|
|
|
|
substs: substs,
|
|
|
|
fn_ty: fn_ty,
|
2016-06-20 03:35:15 -05:00
|
|
|
};
|
2016-06-20 09:52:53 -05:00
|
|
|
if let Some(&alloc_id) = self.function_alloc_cache.get(&def) {
|
2016-06-20 03:35:15 -05:00
|
|
|
return Pointer {
|
|
|
|
alloc_id: alloc_id,
|
|
|
|
offset: 0,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
let id = self.next_id;
|
|
|
|
debug!("creating fn ptr: {}", id);
|
|
|
|
self.next_id.0 += 1;
|
|
|
|
self.functions.insert(id, def);
|
2016-06-20 09:52:53 -05:00
|
|
|
self.function_alloc_cache.insert(def, id);
|
2016-06-08 06:43:34 -05:00
|
|
|
Pointer {
|
|
|
|
alloc_id: id,
|
|
|
|
offset: 0,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-07 07:19:43 -06:00
|
|
|
pub fn allocate(&mut self, size: usize) -> Pointer {
|
2016-03-22 01:48:28 -05:00
|
|
|
let alloc = Allocation {
|
2016-04-06 18:29:56 -05:00
|
|
|
bytes: vec![0; size],
|
2016-03-22 01:48:28 -05:00
|
|
|
relocations: BTreeMap::new(),
|
2016-04-06 05:35:25 -05:00
|
|
|
undef_mask: UndefMask::new(size),
|
2016-03-22 01:48:28 -05:00
|
|
|
};
|
2016-04-09 20:31:53 -05:00
|
|
|
let id = self.next_id;
|
|
|
|
self.next_id.0 += 1;
|
|
|
|
self.alloc_map.insert(id, alloc);
|
2016-03-05 00:48:23 -06:00
|
|
|
Pointer {
|
2016-03-07 07:19:43 -06:00
|
|
|
alloc_id: id,
|
2016-03-05 00:48:23 -06:00
|
|
|
offset: 0,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-09 21:08:37 -05:00
|
|
|
// TODO(solson): Track which allocations were returned from __rust_allocate and report an error
|
2016-04-06 18:29:56 -05:00
|
|
|
// when reallocating/deallocating any others.
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn reallocate(&mut self, ptr: Pointer, new_size: usize) -> EvalResult<'tcx, ()> {
|
2016-04-06 18:29:56 -05:00
|
|
|
if ptr.offset != 0 {
|
2016-05-09 21:08:37 -05:00
|
|
|
// TODO(solson): Report error about non-__rust_allocate'd pointer.
|
2016-05-30 08:27:52 -05:00
|
|
|
return Err(EvalError::Unimplemented(format!("bad pointer offset: {}", ptr.offset)));
|
2016-04-06 18:29:56 -05:00
|
|
|
}
|
|
|
|
|
2016-06-13 04:24:01 -05:00
|
|
|
let size = self.get_mut(ptr.alloc_id)?.bytes.len();
|
|
|
|
|
2016-04-06 18:29:56 -05:00
|
|
|
if new_size > size {
|
|
|
|
let amount = new_size - size;
|
2016-06-13 04:24:01 -05:00
|
|
|
let alloc = self.get_mut(ptr.alloc_id)?;
|
2016-04-06 18:29:56 -05:00
|
|
|
alloc.bytes.extend(iter::repeat(0).take(amount));
|
|
|
|
alloc.undef_mask.grow(amount, false);
|
|
|
|
} else if size > new_size {
|
2016-06-13 04:24:01 -05:00
|
|
|
self.clear_relocations(ptr.offset(new_size as isize), size - new_size)?;
|
|
|
|
let alloc = self.get_mut(ptr.alloc_id)?;
|
|
|
|
alloc.bytes.truncate(new_size);
|
|
|
|
alloc.undef_mask.truncate(new_size);
|
2016-04-06 18:29:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2016-05-09 21:08:37 -05:00
|
|
|
// TODO(solson): See comment on `reallocate`.
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn deallocate(&mut self, ptr: Pointer) -> EvalResult<'tcx, ()> {
|
2016-04-07 04:02:02 -05:00
|
|
|
if ptr.offset != 0 {
|
2016-05-09 21:08:37 -05:00
|
|
|
// TODO(solson): Report error about non-__rust_allocate'd pointer.
|
2016-05-30 08:27:52 -05:00
|
|
|
return Err(EvalError::Unimplemented(format!("bad pointer offset: {}", ptr.offset)));
|
2016-04-07 04:02:02 -05:00
|
|
|
}
|
|
|
|
|
2016-04-09 20:31:53 -05:00
|
|
|
if self.alloc_map.remove(&ptr.alloc_id).is_none() {
|
2016-05-09 21:08:37 -05:00
|
|
|
// TODO(solson): Report error about erroneous free. This is blocked on properly tracking
|
2016-04-07 04:02:02 -05:00
|
|
|
// already-dropped state since this if-statement is entered even in safe code without
|
|
|
|
// it.
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2016-06-23 02:59:16 -05:00
|
|
|
|
|
|
|
pub fn pointer_size(&self) -> usize {
|
|
|
|
self.layout.pointer_size.bytes() as usize
|
|
|
|
}
|
2016-06-23 08:16:25 -05:00
|
|
|
|
|
|
|
pub fn endianess(&self) -> layout::Endian {
|
|
|
|
self.layout.endian
|
|
|
|
}
|
2016-06-23 02:40:01 -05:00
|
|
|
}
|
2016-04-07 04:02:02 -05:00
|
|
|
|
2016-06-23 02:40:01 -05:00
|
|
|
/// Allocation accessors
|
|
|
|
impl<'a, 'tcx> Memory<'a, 'tcx> {
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn get(&self, id: AllocId) -> EvalResult<'tcx, &Allocation> {
|
2016-06-13 04:39:15 -05:00
|
|
|
match self.alloc_map.get(&id) {
|
|
|
|
Some(alloc) => Ok(alloc),
|
|
|
|
None => match self.functions.get(&id) {
|
|
|
|
Some(_) => Err(EvalError::DerefFunctionPointer),
|
|
|
|
None => Err(EvalError::DanglingPointerDeref),
|
|
|
|
}
|
|
|
|
}
|
2016-03-05 00:48:23 -06:00
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn get_mut(&mut self, id: AllocId) -> EvalResult<'tcx, &mut Allocation> {
|
2016-06-13 04:39:15 -05:00
|
|
|
match self.alloc_map.get_mut(&id) {
|
|
|
|
Some(alloc) => Ok(alloc),
|
|
|
|
None => match self.functions.get(&id) {
|
|
|
|
Some(_) => Err(EvalError::DerefFunctionPointer),
|
|
|
|
None => Err(EvalError::DanglingPointerDeref),
|
|
|
|
}
|
|
|
|
}
|
2016-03-05 00:48:23 -06:00
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn get_fn(&self, id: AllocId) -> EvalResult<'tcx, FunctionDefinition<'tcx>> {
|
2016-06-08 06:43:34 -05:00
|
|
|
debug!("reading fn ptr: {}", id);
|
2016-06-13 04:39:15 -05:00
|
|
|
match self.functions.get(&id) {
|
|
|
|
Some(&fn_id) => Ok(fn_id),
|
|
|
|
None => match self.alloc_map.get(&id) {
|
|
|
|
Some(_) => Err(EvalError::ExecuteMemory),
|
|
|
|
None => Err(EvalError::InvalidFunctionPointer),
|
|
|
|
}
|
|
|
|
}
|
2016-06-08 06:43:34 -05:00
|
|
|
}
|
|
|
|
|
2016-04-06 04:45:06 -05:00
|
|
|
/// Print an allocation and all allocations it points to, recursively.
|
|
|
|
pub fn dump(&self, id: AllocId) {
|
|
|
|
let mut allocs_seen = HashSet::new();
|
|
|
|
let mut allocs_to_print = VecDeque::new();
|
|
|
|
allocs_to_print.push_back(id);
|
|
|
|
|
|
|
|
while let Some(id) = allocs_to_print.pop_front() {
|
2016-04-09 20:31:53 -05:00
|
|
|
allocs_seen.insert(id);
|
|
|
|
let prefix = format!("Alloc {:<5} ", format!("{}:", id));
|
2016-04-06 04:45:06 -05:00
|
|
|
print!("{}", prefix);
|
|
|
|
let mut relocations = vec![];
|
|
|
|
|
2016-06-08 06:43:34 -05:00
|
|
|
let alloc = match (self.alloc_map.get(&id), self.functions.get(&id)) {
|
|
|
|
(Some(a), None) => a,
|
|
|
|
(None, Some(_)) => {
|
|
|
|
// FIXME: print function name
|
|
|
|
println!("function pointer");
|
|
|
|
continue;
|
|
|
|
},
|
|
|
|
(None, None) => {
|
2016-04-07 04:07:57 -05:00
|
|
|
println!("(deallocated)");
|
|
|
|
continue;
|
2016-06-08 06:43:34 -05:00
|
|
|
},
|
|
|
|
(Some(_), Some(_)) => unreachable!(),
|
2016-04-07 04:07:57 -05:00
|
|
|
};
|
|
|
|
|
2016-04-06 04:45:06 -05:00
|
|
|
for i in 0..alloc.bytes.len() {
|
|
|
|
if let Some(&target_id) = alloc.relocations.get(&i) {
|
2016-04-09 20:31:53 -05:00
|
|
|
if !allocs_seen.contains(&target_id) {
|
2016-04-06 04:45:06 -05:00
|
|
|
allocs_to_print.push_back(target_id);
|
|
|
|
}
|
2016-04-09 20:31:53 -05:00
|
|
|
relocations.push((i, target_id));
|
2016-04-06 04:45:06 -05:00
|
|
|
}
|
2016-04-09 20:31:53 -05:00
|
|
|
if alloc.undef_mask.is_range_defined(i, i + 1) {
|
2016-04-06 04:45:06 -05:00
|
|
|
print!("{:02x} ", alloc.bytes[i]);
|
|
|
|
} else {
|
|
|
|
print!("__ ");
|
|
|
|
}
|
|
|
|
}
|
2016-04-06 18:33:24 -05:00
|
|
|
println!("({} bytes)", alloc.bytes.len());
|
2016-04-06 04:45:06 -05:00
|
|
|
|
|
|
|
if !relocations.is_empty() {
|
|
|
|
print!("{:1$}", "", prefix.len()); // Print spaces.
|
|
|
|
let mut pos = 0;
|
2016-06-23 03:00:31 -05:00
|
|
|
let relocation_width = (self.pointer_size() - 1) * 3;
|
2016-04-06 04:45:06 -05:00
|
|
|
for (i, target_id) in relocations {
|
|
|
|
print!("{:1$}", "", (i - pos) * 3);
|
|
|
|
print!("└{0:─^1$}┘ ", format!("({})", target_id), relocation_width);
|
2016-06-23 03:00:31 -05:00
|
|
|
pos = i + self.pointer_size();
|
2016-04-06 04:45:06 -05:00
|
|
|
}
|
|
|
|
println!("");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-06-23 02:40:01 -05:00
|
|
|
}
|
2016-04-06 04:45:06 -05:00
|
|
|
|
2016-06-23 02:40:01 -05:00
|
|
|
/// Byte accessors
|
|
|
|
impl<'a, 'tcx> Memory<'a, 'tcx> {
|
2016-06-14 03:34:54 -05:00
|
|
|
fn get_bytes_unchecked(&self, ptr: Pointer, size: usize) -> EvalResult<'tcx, &[u8]> {
|
2016-05-09 19:52:44 -05:00
|
|
|
let alloc = self.get(ptr.alloc_id)?;
|
2016-03-23 20:44:05 -05:00
|
|
|
if ptr.offset + size > alloc.bytes.len() {
|
2016-05-31 05:05:25 -05:00
|
|
|
return Err(EvalError::PointerOutOfBounds {
|
2016-06-01 04:22:37 -05:00
|
|
|
ptr: ptr,
|
2016-05-31 05:05:25 -05:00
|
|
|
size: size,
|
2016-06-01 04:22:37 -05:00
|
|
|
allocation_size: alloc.bytes.len(),
|
2016-05-31 05:05:25 -05:00
|
|
|
});
|
2016-03-23 20:44:05 -05:00
|
|
|
}
|
|
|
|
Ok(&alloc.bytes[ptr.offset..ptr.offset + size])
|
2016-03-05 00:48:23 -06:00
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
fn get_bytes_unchecked_mut(&mut self, ptr: Pointer, size: usize) -> EvalResult<'tcx, &mut [u8]> {
|
2016-05-09 19:52:44 -05:00
|
|
|
let alloc = self.get_mut(ptr.alloc_id)?;
|
2016-03-23 20:44:05 -05:00
|
|
|
if ptr.offset + size > alloc.bytes.len() {
|
2016-05-31 05:05:25 -05:00
|
|
|
return Err(EvalError::PointerOutOfBounds {
|
2016-06-01 04:22:37 -05:00
|
|
|
ptr: ptr,
|
2016-05-31 05:05:25 -05:00
|
|
|
size: size,
|
2016-06-01 04:22:37 -05:00
|
|
|
allocation_size: alloc.bytes.len(),
|
2016-05-31 05:05:25 -05:00
|
|
|
});
|
2016-03-23 20:44:05 -05:00
|
|
|
}
|
|
|
|
Ok(&mut alloc.bytes[ptr.offset..ptr.offset + size])
|
2016-03-05 00:48:23 -06:00
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
fn get_bytes(&self, ptr: Pointer, size: usize) -> EvalResult<'tcx, &[u8]> {
|
2016-05-09 19:52:44 -05:00
|
|
|
if self.relocations(ptr, size)?.count() != 0 {
|
2016-03-23 20:44:05 -05:00
|
|
|
return Err(EvalError::ReadPointerAsBytes);
|
2016-03-21 06:27:34 -05:00
|
|
|
}
|
2016-05-09 19:52:44 -05:00
|
|
|
self.check_defined(ptr, size)?;
|
2016-03-23 20:44:05 -05:00
|
|
|
self.get_bytes_unchecked(ptr, size)
|
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
fn get_bytes_mut(&mut self, ptr: Pointer, size: usize) -> EvalResult<'tcx, &mut [u8]> {
|
2016-05-09 19:52:44 -05:00
|
|
|
self.clear_relocations(ptr, size)?;
|
|
|
|
self.mark_definedness(ptr, size, true)?;
|
2016-03-23 20:44:05 -05:00
|
|
|
self.get_bytes_unchecked_mut(ptr, size)
|
2016-03-21 06:27:34 -05:00
|
|
|
}
|
2016-06-23 02:40:01 -05:00
|
|
|
}
|
2016-03-21 06:27:34 -05:00
|
|
|
|
2016-06-23 02:40:01 -05:00
|
|
|
/// Reading and writing
|
|
|
|
impl<'a, 'tcx> Memory<'a, 'tcx> {
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn copy(&mut self, src: Pointer, dest: Pointer, size: usize) -> EvalResult<'tcx, ()> {
|
2016-05-09 19:52:44 -05:00
|
|
|
self.check_relocation_edges(src, size)?;
|
2016-03-21 06:27:34 -05:00
|
|
|
|
2016-05-09 19:52:44 -05:00
|
|
|
let src_bytes = self.get_bytes_unchecked_mut(src, size)?.as_mut_ptr();
|
|
|
|
let dest_bytes = self.get_bytes_mut(dest, size)?.as_mut_ptr();
|
2016-03-05 00:48:23 -06:00
|
|
|
|
|
|
|
// SAFE: The above indexing would have panicked if there weren't at least `size` bytes
|
|
|
|
// behind `src` and `dest`. Also, we use the overlapping-safe `ptr::copy` if `src` and
|
|
|
|
// `dest` could possibly overlap.
|
|
|
|
unsafe {
|
|
|
|
if src.alloc_id == dest.alloc_id {
|
|
|
|
ptr::copy(src_bytes, dest_bytes, size);
|
|
|
|
} else {
|
|
|
|
ptr::copy_nonoverlapping(src_bytes, dest_bytes, size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-09 19:52:44 -05:00
|
|
|
self.copy_undef_mask(src, dest, size)?;
|
|
|
|
self.copy_relocations(src, dest, size)?;
|
2016-04-06 05:08:52 -05:00
|
|
|
|
|
|
|
Ok(())
|
2016-03-05 00:48:23 -06:00
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn read_bytes(&self, ptr: Pointer, size: usize) -> EvalResult<'tcx, &[u8]> {
|
2016-04-15 04:16:35 -05:00
|
|
|
self.get_bytes(ptr, size)
|
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn write_bytes(&mut self, ptr: Pointer, src: &[u8]) -> EvalResult<'tcx, ()> {
|
2016-05-09 19:52:44 -05:00
|
|
|
let bytes = self.get_bytes_mut(ptr, src.len())?;
|
2016-04-07 06:56:07 -05:00
|
|
|
bytes.clone_from_slice(src);
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn write_repeat(&mut self, ptr: Pointer, val: u8, count: usize) -> EvalResult<'tcx, ()> {
|
2016-05-09 19:52:44 -05:00
|
|
|
let bytes = self.get_bytes_mut(ptr, count)?;
|
2016-04-07 06:56:07 -05:00
|
|
|
for b in bytes { *b = val; }
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn drop_fill(&mut self, ptr: Pointer, size: usize) -> EvalResult<'tcx, ()> {
|
2016-04-07 06:56:07 -05:00
|
|
|
self.write_repeat(ptr, mem::POST_DROP_U8, size)
|
2016-03-19 00:19:39 -05:00
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn read_ptr(&self, ptr: Pointer) -> EvalResult<'tcx, Pointer> {
|
2016-06-23 03:00:31 -05:00
|
|
|
let size = self.pointer_size();
|
2016-05-09 19:52:44 -05:00
|
|
|
self.check_defined(ptr, size)?;
|
|
|
|
let offset = self.get_bytes_unchecked(ptr, size)?
|
2016-06-23 08:16:25 -05:00
|
|
|
.read_target_uint(size, self.endianess()).unwrap() as usize;
|
2016-05-09 19:52:44 -05:00
|
|
|
let alloc = self.get(ptr.alloc_id)?;
|
2016-03-17 08:24:10 -05:00
|
|
|
match alloc.relocations.get(&ptr.offset) {
|
|
|
|
Some(&alloc_id) => Ok(Pointer { alloc_id: alloc_id, offset: offset }),
|
|
|
|
None => Err(EvalError::ReadBytesAsPointer),
|
|
|
|
}
|
2016-03-13 15:36:25 -05:00
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn write_ptr(&mut self, dest: Pointer, ptr: Pointer) -> EvalResult<'tcx, ()> {
|
2016-06-23 06:04:05 -05:00
|
|
|
self.write_usize(dest, ptr.offset as u64)?;
|
2016-05-09 19:52:44 -05:00
|
|
|
self.get_mut(dest.alloc_id)?.relocations.insert(dest.offset, ptr.alloc_id);
|
2016-03-13 15:36:25 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn write_primval(&mut self, ptr: Pointer, val: PrimVal) -> EvalResult<'tcx, ()> {
|
2016-06-23 03:00:31 -05:00
|
|
|
let pointer_size = self.pointer_size();
|
2016-03-13 01:14:20 -06:00
|
|
|
match val {
|
|
|
|
PrimVal::Bool(b) => self.write_bool(ptr, b),
|
2016-03-17 07:26:37 -05:00
|
|
|
PrimVal::I8(n) => self.write_int(ptr, n as i64, 1),
|
|
|
|
PrimVal::I16(n) => self.write_int(ptr, n as i64, 2),
|
|
|
|
PrimVal::I32(n) => self.write_int(ptr, n as i64, 4),
|
|
|
|
PrimVal::I64(n) => self.write_int(ptr, n as i64, 8),
|
|
|
|
PrimVal::U8(n) => self.write_uint(ptr, n as u64, 1),
|
|
|
|
PrimVal::U16(n) => self.write_uint(ptr, n as u64, 2),
|
|
|
|
PrimVal::U32(n) => self.write_uint(ptr, n as u64, 4),
|
2016-03-21 06:42:42 -05:00
|
|
|
PrimVal::U64(n) => self.write_uint(ptr, n as u64, 8),
|
2016-06-21 02:43:45 -05:00
|
|
|
PrimVal::Char(c) => self.write_uint(ptr, c as u64, 4),
|
2016-03-21 06:42:42 -05:00
|
|
|
PrimVal::IntegerPtr(n) => self.write_uint(ptr, n as u64, pointer_size),
|
2016-06-20 03:35:15 -05:00
|
|
|
PrimVal::FnPtr(_p) |
|
2016-03-19 00:03:46 -05:00
|
|
|
PrimVal::AbstractPtr(_p) => unimplemented!(),
|
2016-03-13 01:14:20 -06:00
|
|
|
}
|
2016-03-07 04:44:03 -06:00
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn read_bool(&self, ptr: Pointer) -> EvalResult<'tcx, bool> {
|
2016-05-09 19:52:44 -05:00
|
|
|
let bytes = self.get_bytes(ptr, 1)?;
|
2016-03-07 04:44:03 -06:00
|
|
|
match bytes[0] {
|
|
|
|
0 => Ok(false),
|
|
|
|
1 => Ok(true),
|
|
|
|
_ => Err(EvalError::InvalidBool),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn write_bool(&mut self, ptr: Pointer, b: bool) -> EvalResult<'tcx, ()> {
|
2016-03-17 07:39:29 -05:00
|
|
|
self.get_bytes_mut(ptr, 1).map(|bytes| bytes[0] = b as u8)
|
2016-03-05 00:48:23 -06:00
|
|
|
}
|
2016-03-13 01:14:20 -06:00
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn read_int(&self, ptr: Pointer, size: usize) -> EvalResult<'tcx, i64> {
|
2016-06-23 08:16:25 -05:00
|
|
|
self.get_bytes(ptr, size).map(|mut b| b.read_target_int(size, self.endianess()).unwrap())
|
2016-03-17 04:12:15 -05:00
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn write_int(&mut self, ptr: Pointer, n: i64, size: usize) -> EvalResult<'tcx, ()> {
|
2016-06-23 08:16:25 -05:00
|
|
|
let endianess = self.endianess();
|
|
|
|
self.get_bytes_mut(ptr, size).map(|mut b| b.write_target_int(n, size, endianess).unwrap())
|
2016-03-13 01:14:20 -06:00
|
|
|
}
|
2016-03-15 00:03:31 -05:00
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn read_uint(&self, ptr: Pointer, size: usize) -> EvalResult<'tcx, u64> {
|
2016-06-23 08:16:25 -05:00
|
|
|
self.get_bytes(ptr, size).map(|mut b| b.read_target_uint(size, self.endianess()).unwrap())
|
2016-03-17 03:53:03 -05:00
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn write_uint(&mut self, ptr: Pointer, n: u64, size: usize) -> EvalResult<'tcx, ()> {
|
2016-06-23 08:16:25 -05:00
|
|
|
let endianess = self.endianess();
|
|
|
|
self.get_bytes_mut(ptr, size).map(|mut b| b.write_target_uint(n, size, endianess).unwrap())
|
2016-03-17 03:53:03 -05:00
|
|
|
}
|
2016-03-21 00:24:27 -05:00
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn read_isize(&self, ptr: Pointer) -> EvalResult<'tcx, i64> {
|
2016-06-23 03:00:31 -05:00
|
|
|
self.read_int(ptr, self.pointer_size())
|
2016-03-21 00:24:27 -05:00
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn write_isize(&mut self, ptr: Pointer, n: i64) -> EvalResult<'tcx, ()> {
|
2016-06-23 03:00:31 -05:00
|
|
|
let size = self.pointer_size();
|
2016-03-21 00:24:27 -05:00
|
|
|
self.write_int(ptr, n, size)
|
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn read_usize(&self, ptr: Pointer) -> EvalResult<'tcx, u64> {
|
2016-06-23 03:00:31 -05:00
|
|
|
self.read_uint(ptr, self.pointer_size())
|
2016-03-21 00:24:27 -05:00
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
pub fn write_usize(&mut self, ptr: Pointer, n: u64) -> EvalResult<'tcx, ()> {
|
2016-06-23 03:00:31 -05:00
|
|
|
let size = self.pointer_size();
|
2016-03-21 00:24:27 -05:00
|
|
|
self.write_uint(ptr, n, size)
|
|
|
|
}
|
2016-06-23 02:40:01 -05:00
|
|
|
}
|
2016-03-05 00:48:23 -06:00
|
|
|
|
2016-06-23 02:40:01 -05:00
|
|
|
/// Relocations
|
|
|
|
impl<'a, 'tcx> Memory<'a, 'tcx> {
|
2016-03-23 22:40:58 -05:00
|
|
|
fn relocations(&self, ptr: Pointer, size: usize)
|
2016-06-14 03:34:54 -05:00
|
|
|
-> EvalResult<'tcx, btree_map::Range<usize, AllocId>>
|
2016-03-23 22:40:58 -05:00
|
|
|
{
|
2016-06-23 03:00:31 -05:00
|
|
|
let start = ptr.offset.saturating_sub(self.pointer_size() - 1);
|
2016-06-13 04:24:01 -05:00
|
|
|
let end = ptr.offset + size;
|
2016-05-09 19:52:44 -05:00
|
|
|
Ok(self.get(ptr.alloc_id)?.relocations.range(Included(&start), Excluded(&end)))
|
2016-03-05 00:48:23 -06:00
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
fn clear_relocations(&mut self, ptr: Pointer, size: usize) -> EvalResult<'tcx, ()> {
|
2016-03-27 01:29:02 -05:00
|
|
|
// Find all relocations overlapping the given range.
|
2016-05-09 19:52:44 -05:00
|
|
|
let keys: Vec<_> = self.relocations(ptr, size)?.map(|(&k, _)| k).collect();
|
2016-04-28 23:01:17 -05:00
|
|
|
if keys.is_empty() { return Ok(()); }
|
2016-03-27 01:29:02 -05:00
|
|
|
|
|
|
|
// Find the start and end of the given range and its outermost relocations.
|
|
|
|
let start = ptr.offset;
|
|
|
|
let end = start + size;
|
|
|
|
let first = *keys.first().unwrap();
|
2016-06-23 03:00:31 -05:00
|
|
|
let last = *keys.last().unwrap() + self.pointer_size();
|
2016-03-27 01:29:02 -05:00
|
|
|
|
2016-05-09 19:52:44 -05:00
|
|
|
let alloc = self.get_mut(ptr.alloc_id)?;
|
2016-03-27 01:29:02 -05:00
|
|
|
|
|
|
|
// Mark parts of the outermost relocations as undefined if they partially fall outside the
|
|
|
|
// given range.
|
2016-04-06 04:45:06 -05:00
|
|
|
if first < start { alloc.undef_mask.set_range(first, start, false); }
|
|
|
|
if last > end { alloc.undef_mask.set_range(end, last, false); }
|
2016-03-27 01:29:02 -05:00
|
|
|
|
|
|
|
// Forget all the relocations.
|
|
|
|
for k in keys { alloc.relocations.remove(&k); }
|
|
|
|
|
2016-03-23 22:40:58 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
fn check_relocation_edges(&self, ptr: Pointer, size: usize) -> EvalResult<'tcx, ()> {
|
2016-05-09 19:52:44 -05:00
|
|
|
let overlapping_start = self.relocations(ptr, 0)?.count();
|
|
|
|
let overlapping_end = self.relocations(ptr.offset(size as isize), 0)?.count();
|
2016-03-23 22:40:58 -05:00
|
|
|
if overlapping_start + overlapping_end != 0 {
|
|
|
|
return Err(EvalError::ReadPointerAsBytes);
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
fn copy_relocations(&mut self, src: Pointer, dest: Pointer, size: usize) -> EvalResult<'tcx, ()> {
|
2016-05-09 19:52:44 -05:00
|
|
|
let relocations: Vec<_> = self.relocations(src, size)?
|
2016-03-23 22:40:58 -05:00
|
|
|
.map(|(&offset, &alloc_id)| {
|
|
|
|
// Update relocation offsets for the new positions in the destination allocation.
|
|
|
|
(offset + dest.offset - src.offset, alloc_id)
|
|
|
|
})
|
|
|
|
.collect();
|
2016-05-09 19:52:44 -05:00
|
|
|
self.get_mut(dest.alloc_id)?.relocations.extend(relocations);
|
2016-03-23 22:40:58 -05:00
|
|
|
Ok(())
|
2016-03-05 00:48:23 -06:00
|
|
|
}
|
2016-06-23 02:40:01 -05:00
|
|
|
}
|
2016-03-26 23:25:08 -05:00
|
|
|
|
2016-06-23 02:40:01 -05:00
|
|
|
/// Undefined bytes
|
|
|
|
impl<'a, 'tcx> Memory<'a, 'tcx> {
|
2016-05-09 21:08:37 -05:00
|
|
|
// FIXME(solson): This is a very naive, slow version.
|
2016-06-14 03:34:54 -05:00
|
|
|
fn copy_undef_mask(&mut self, src: Pointer, dest: Pointer, size: usize) -> EvalResult<'tcx, ()> {
|
2016-04-06 05:08:52 -05:00
|
|
|
// The bits have to be saved locally before writing to dest in case src and dest overlap.
|
|
|
|
let mut v = Vec::with_capacity(size);
|
|
|
|
for i in 0..size {
|
2016-05-09 19:52:44 -05:00
|
|
|
let defined = self.get(src.alloc_id)?.undef_mask.get(src.offset + i);
|
2016-04-06 05:08:52 -05:00
|
|
|
v.push(defined);
|
|
|
|
}
|
|
|
|
for (i, defined) in v.into_iter().enumerate() {
|
2016-05-09 19:52:44 -05:00
|
|
|
self.get_mut(dest.alloc_id)?.undef_mask.set(dest.offset + i, defined);
|
2016-04-06 05:08:52 -05:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2016-06-14 03:34:54 -05:00
|
|
|
fn check_defined(&self, ptr: Pointer, size: usize) -> EvalResult<'tcx, ()> {
|
2016-05-09 19:52:44 -05:00
|
|
|
let alloc = self.get(ptr.alloc_id)?;
|
2016-04-06 04:45:06 -05:00
|
|
|
if !alloc.undef_mask.is_range_defined(ptr.offset, ptr.offset + size) {
|
2016-03-27 00:56:49 -05:00
|
|
|
return Err(EvalError::ReadUndefBytes);
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2016-03-28 17:37:07 -05:00
|
|
|
pub fn mark_definedness(&mut self, ptr: Pointer, size: usize, new_state: bool)
|
2016-06-14 03:34:54 -05:00
|
|
|
-> EvalResult<'tcx, ()>
|
2016-03-28 17:37:07 -05:00
|
|
|
{
|
2016-05-09 19:52:44 -05:00
|
|
|
let mut alloc = self.get_mut(ptr.alloc_id)?;
|
2016-04-06 04:45:06 -05:00
|
|
|
alloc.undef_mask.set_range(ptr.offset, ptr.offset + size, new_state);
|
2016-03-26 23:25:08 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Undefined byte tracking
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2016-04-06 04:45:06 -05:00
|
|
|
type Block = u64;
|
|
|
|
const BLOCK_SIZE: usize = 64;
|
2016-03-27 00:25:35 -05:00
|
|
|
|
2016-04-06 04:45:06 -05:00
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub struct UndefMask {
|
|
|
|
blocks: Vec<Block>,
|
|
|
|
len: usize,
|
|
|
|
}
|
2016-03-27 00:25:35 -05:00
|
|
|
|
2016-04-06 04:45:06 -05:00
|
|
|
impl UndefMask {
|
2016-04-06 05:35:25 -05:00
|
|
|
fn new(size: usize) -> Self {
|
|
|
|
let mut m = UndefMask {
|
2016-04-06 04:45:06 -05:00
|
|
|
blocks: vec![],
|
|
|
|
len: 0,
|
2016-04-06 05:35:25 -05:00
|
|
|
};
|
|
|
|
m.grow(size, false);
|
|
|
|
m
|
2016-03-27 00:25:35 -05:00
|
|
|
}
|
|
|
|
|
2016-04-06 04:45:06 -05:00
|
|
|
/// Check whether the range `start..end` (end-exclusive) is entirely defined.
|
|
|
|
fn is_range_defined(&self, start: usize, end: usize) -> bool {
|
|
|
|
if end > self.len { return false; }
|
|
|
|
for i in start..end {
|
|
|
|
if !self.get(i) { return false; }
|
2016-03-26 23:25:08 -05:00
|
|
|
}
|
2016-04-06 04:45:06 -05:00
|
|
|
true
|
2016-03-26 23:25:08 -05:00
|
|
|
}
|
|
|
|
|
2016-04-06 04:45:06 -05:00
|
|
|
fn set_range(&mut self, start: usize, end: usize, new_state: bool) {
|
|
|
|
let len = self.len;
|
|
|
|
if end > len { self.grow(end - len, new_state); }
|
|
|
|
self.set_range_inbounds(start, end, new_state);
|
2016-03-26 23:25:08 -05:00
|
|
|
}
|
|
|
|
|
2016-04-06 04:45:06 -05:00
|
|
|
fn set_range_inbounds(&mut self, start: usize, end: usize, new_state: bool) {
|
|
|
|
for i in start..end { self.set(i, new_state); }
|
2016-03-26 23:25:08 -05:00
|
|
|
}
|
|
|
|
|
2016-04-06 04:45:06 -05:00
|
|
|
fn get(&self, i: usize) -> bool {
|
|
|
|
let (block, bit) = bit_index(i);
|
|
|
|
(self.blocks[block] & 1 << bit) != 0
|
2016-03-26 23:25:08 -05:00
|
|
|
}
|
|
|
|
|
2016-04-06 04:45:06 -05:00
|
|
|
fn set(&mut self, i: usize, new_state: bool) {
|
|
|
|
let (block, bit) = bit_index(i);
|
|
|
|
if new_state {
|
|
|
|
self.blocks[block] |= 1 << bit;
|
|
|
|
} else {
|
|
|
|
self.blocks[block] &= !(1 << bit);
|
|
|
|
}
|
|
|
|
}
|
2016-03-26 23:25:08 -05:00
|
|
|
|
2016-04-06 04:45:06 -05:00
|
|
|
fn grow(&mut self, amount: usize, new_state: bool) {
|
|
|
|
let unused_trailing_bits = self.blocks.len() * BLOCK_SIZE - self.len;
|
|
|
|
if amount > unused_trailing_bits {
|
|
|
|
let additional_blocks = amount / BLOCK_SIZE + 1;
|
|
|
|
self.blocks.extend(iter::repeat(0).take(additional_blocks));
|
|
|
|
}
|
|
|
|
let start = self.len;
|
|
|
|
self.len += amount;
|
|
|
|
self.set_range_inbounds(start, start + amount, new_state);
|
|
|
|
}
|
2016-03-26 23:25:08 -05:00
|
|
|
|
2016-06-13 04:24:01 -05:00
|
|
|
fn truncate(&mut self, length: usize) {
|
|
|
|
self.len = length;
|
|
|
|
self.blocks.truncate(self.len / BLOCK_SIZE + 1);
|
|
|
|
}
|
|
|
|
}
|
2016-03-26 23:25:08 -05:00
|
|
|
|
2016-04-06 04:45:06 -05:00
|
|
|
fn bit_index(bits: usize) -> (usize, usize) {
|
|
|
|
(bits / BLOCK_SIZE, bits % BLOCK_SIZE)
|
2016-03-05 00:48:23 -06:00
|
|
|
}
|
2016-06-23 08:16:25 -05:00
|
|
|
|
|
|
|
trait ReadBytesExt2 {
|
|
|
|
fn read_target_uint(&mut self, nbytes: usize, endian: layout::Endian) -> Result<u64, byteorder::Error>;
|
|
|
|
fn read_target_int(&mut self, nbytes: usize, endian: layout::Endian) -> Result<i64, byteorder::Error>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: ReadBytesExt> ReadBytesExt2 for T {
|
|
|
|
fn read_target_uint(&mut self, nbytes: usize, endian: layout::Endian) -> Result<u64, byteorder::Error> {
|
|
|
|
match endian {
|
|
|
|
layout::Endian::Little => ReadBytesExt::read_uint::<LittleEndian>(self, nbytes),
|
|
|
|
layout::Endian::Big => ReadBytesExt::read_uint::<BigEndian>(self, nbytes),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn read_target_int(&mut self, nbytes: usize, endian: layout::Endian) -> Result<i64, byteorder::Error> {
|
|
|
|
match endian {
|
|
|
|
layout::Endian::Little => ReadBytesExt::read_int::<LittleEndian>(self, nbytes),
|
|
|
|
layout::Endian::Big => ReadBytesExt::read_int::<BigEndian>(self, nbytes),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
trait WriteBytesExt2 {
|
|
|
|
fn write_target_uint(&mut self, data: u64, nbytes: usize, endian: layout::Endian) -> Result<(), byteorder::Error>;
|
|
|
|
fn write_target_int(&mut self, data: i64, nbytes: usize, endian: layout::Endian) -> Result<(), byteorder::Error>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: WriteBytesExt> WriteBytesExt2 for T {
|
|
|
|
fn write_target_uint(&mut self, data: u64, nbytes: usize, endian: layout::Endian) -> Result<(), byteorder::Error> {
|
|
|
|
match endian {
|
|
|
|
layout::Endian::Little => WriteBytesExt::write_uint::<LittleEndian>(self, data, nbytes),
|
|
|
|
layout::Endian::Big => WriteBytesExt::write_uint::<BigEndian>(self, data, nbytes),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn write_target_int(&mut self, data: i64, nbytes: usize, endian: layout::Endian) -> Result<(), byteorder::Error> {
|
|
|
|
match endian {
|
|
|
|
layout::Endian::Little => WriteBytesExt::write_int::<LittleEndian>(self, data, nbytes),
|
|
|
|
layout::Endian::Big => WriteBytesExt::write_int::<BigEndian>(self, data, nbytes),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|