2019-08-13 11:34:43 -05:00
|
|
|
use std::collections::HashMap;
|
2019-09-18 16:10:13 -05:00
|
|
|
use std::env;
|
2019-09-24 14:42:38 -05:00
|
|
|
use std::path::Path;
|
2019-08-06 17:40:07 -05:00
|
|
|
|
2019-08-13 11:34:43 -05:00
|
|
|
use crate::stacked_borrows::Tag;
|
2019-08-06 17:40:07 -05:00
|
|
|
use crate::*;
|
2019-09-20 10:25:43 -05:00
|
|
|
use rustc::ty::layout::Size;
|
|
|
|
use rustc_mir::interpret::{Memory, Pointer};
|
2019-08-06 17:40:07 -05:00
|
|
|
|
2019-08-13 11:34:43 -05:00
|
|
|
#[derive(Default)]
|
|
|
|
pub struct EnvVars {
|
2019-08-27 08:45:37 -05:00
|
|
|
/// Stores pointers to the environment variables. These variables must be stored as
|
|
|
|
/// null-terminated C strings with the `"{name}={value}"` format.
|
2019-08-13 11:34:43 -05:00
|
|
|
map: HashMap<Vec<u8>, Pointer<Tag>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl EnvVars {
|
|
|
|
pub(crate) fn init<'mir, 'tcx>(
|
|
|
|
ecx: &mut InterpCx<'mir, 'tcx, Evaluator<'tcx>>,
|
2019-08-29 04:07:20 -05:00
|
|
|
mut excluded_env_vars: Vec<String>,
|
2019-08-13 11:34:43 -05:00
|
|
|
) {
|
2019-08-29 04:09:34 -05:00
|
|
|
// Exclude `TERM` var to avoid terminfo trying to open the termcap file.
|
2019-08-29 04:07:20 -05:00
|
|
|
excluded_env_vars.push("TERM".to_owned());
|
2019-08-29 04:09:34 -05:00
|
|
|
|
2019-08-15 04:24:04 -05:00
|
|
|
if ecx.machine.communicate {
|
2019-09-18 16:10:13 -05:00
|
|
|
for (name, value) in env::vars() {
|
2019-08-28 17:31:57 -05:00
|
|
|
if !excluded_env_vars.contains(&name) {
|
2019-09-20 10:25:43 -05:00
|
|
|
let var_ptr =
|
2019-10-17 21:11:50 -05:00
|
|
|
alloc_env_var(name.as_bytes(), value.as_bytes(), &mut ecx.memory);
|
2019-08-28 17:31:57 -05:00
|
|
|
ecx.machine.env_vars.map.insert(name.into_bytes(), var_ptr);
|
|
|
|
}
|
2019-08-13 16:17:41 -05:00
|
|
|
}
|
2019-08-13 11:34:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-26 15:18:11 -05:00
|
|
|
fn alloc_env_var<'mir, 'tcx>(
|
|
|
|
name: &[u8],
|
|
|
|
value: &[u8],
|
2019-08-07 09:10:39 -05:00
|
|
|
memory: &mut Memory<'mir, 'tcx, Evaluator<'tcx>>,
|
|
|
|
) -> Pointer<Tag> {
|
2019-08-29 15:03:10 -05:00
|
|
|
let mut bytes = name.to_vec();
|
|
|
|
bytes.push(b'=');
|
|
|
|
bytes.extend_from_slice(value);
|
|
|
|
bytes.push(0);
|
|
|
|
memory.allocate_static_bytes(bytes.as_slice(), MiriMemoryKind::Env.into())
|
2019-08-06 17:40:07 -05:00
|
|
|
}
|
2019-08-14 15:44:37 -05:00
|
|
|
|
|
|
|
impl<'mir, 'tcx> EvalContextExt<'mir, 'tcx> for crate::MiriEvalContext<'mir, 'tcx> {}
|
|
|
|
pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx> {
|
2019-09-20 10:25:43 -05:00
|
|
|
fn getenv(&mut self, name_op: OpTy<'tcx, Tag>) -> InterpResult<'tcx, Scalar<Tag>> {
|
2019-08-14 15:44:37 -05:00
|
|
|
let this = self.eval_context_mut();
|
|
|
|
|
2019-08-14 16:48:36 -05:00
|
|
|
let name_ptr = this.read_scalar(name_op)?.not_undef()?;
|
2019-10-17 21:11:50 -05:00
|
|
|
let name = this.memory.read_c_str(name_ptr)?;
|
2019-08-14 16:48:36 -05:00
|
|
|
Ok(match this.machine.env_vars.map.get(name) {
|
2019-08-27 08:45:37 -05:00
|
|
|
// The offset is used to strip the "{name}=" part of the string.
|
2019-09-20 10:25:43 -05:00
|
|
|
Some(var_ptr) => {
|
|
|
|
Scalar::Ptr(var_ptr.offset(Size::from_bytes(name.len() as u64 + 1), this)?)
|
|
|
|
}
|
2019-08-14 16:48:36 -05:00
|
|
|
None => Scalar::ptr_null(&*this.tcx),
|
|
|
|
})
|
2019-08-14 15:44:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn setenv(
|
|
|
|
&mut self,
|
|
|
|
name_op: OpTy<'tcx, Tag>,
|
|
|
|
value_op: OpTy<'tcx, Tag>,
|
2019-08-14 16:48:36 -05:00
|
|
|
) -> InterpResult<'tcx, i32> {
|
2019-08-14 15:44:37 -05:00
|
|
|
let this = self.eval_context_mut();
|
|
|
|
|
|
|
|
let name_ptr = this.read_scalar(name_op)?.not_undef()?;
|
|
|
|
let value_ptr = this.read_scalar(value_op)?.not_undef()?;
|
2019-10-17 21:11:50 -05:00
|
|
|
let value = this.memory.read_c_str(value_ptr)?;
|
2019-08-14 16:48:36 -05:00
|
|
|
let mut new = None;
|
2019-08-14 15:44:37 -05:00
|
|
|
if !this.is_null(name_ptr)? {
|
2019-10-17 21:11:50 -05:00
|
|
|
let name = this.memory.read_c_str(name_ptr)?;
|
2019-08-14 15:44:37 -05:00
|
|
|
if !name.is_empty() && !name.contains(&b'=') {
|
|
|
|
new = Some((name.to_owned(), value.to_owned()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if let Some((name, value)) = new {
|
2019-10-17 21:11:50 -05:00
|
|
|
let var_ptr = alloc_env_var(&name, &value, &mut this.memory);
|
2019-08-26 15:18:11 -05:00
|
|
|
if let Some(var) = this.machine.env_vars.map.insert(name.to_owned(), var_ptr) {
|
2019-10-17 21:11:50 -05:00
|
|
|
this.memory
|
2019-09-20 10:25:43 -05:00
|
|
|
.deallocate(var, None, MiriMemoryKind::Env.into())?;
|
2019-08-14 15:44:37 -05:00
|
|
|
}
|
2019-08-14 16:48:36 -05:00
|
|
|
Ok(0)
|
2019-08-14 15:44:37 -05:00
|
|
|
} else {
|
2019-08-14 16:48:36 -05:00
|
|
|
Ok(-1)
|
2019-08-14 15:44:37 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-20 10:25:43 -05:00
|
|
|
fn unsetenv(&mut self, name_op: OpTy<'tcx, Tag>) -> InterpResult<'tcx, i32> {
|
2019-08-14 15:44:37 -05:00
|
|
|
let this = self.eval_context_mut();
|
|
|
|
|
|
|
|
let name_ptr = this.read_scalar(name_op)?.not_undef()?;
|
2019-08-14 16:48:36 -05:00
|
|
|
let mut success = None;
|
2019-08-14 15:44:37 -05:00
|
|
|
if !this.is_null(name_ptr)? {
|
2019-10-17 21:11:50 -05:00
|
|
|
let name = this.memory.read_c_str(name_ptr)?.to_owned();
|
2019-08-14 15:44:37 -05:00
|
|
|
if !name.is_empty() && !name.contains(&b'=') {
|
|
|
|
success = Some(this.machine.env_vars.map.remove(&name));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if let Some(old) = success {
|
|
|
|
if let Some(var) = old {
|
2019-10-17 21:11:50 -05:00
|
|
|
this.memory
|
2019-09-20 10:25:43 -05:00
|
|
|
.deallocate(var, None, MiriMemoryKind::Env.into())?;
|
2019-08-14 15:44:37 -05:00
|
|
|
}
|
2019-08-14 16:48:36 -05:00
|
|
|
Ok(0)
|
2019-08-14 15:44:37 -05:00
|
|
|
} else {
|
2019-08-14 16:48:36 -05:00
|
|
|
Ok(-1)
|
2019-08-14 15:44:37 -05:00
|
|
|
}
|
|
|
|
}
|
2019-09-18 16:10:13 -05:00
|
|
|
|
|
|
|
fn getcwd(
|
|
|
|
&mut self,
|
|
|
|
buf_op: OpTy<'tcx, Tag>,
|
|
|
|
size_op: OpTy<'tcx, Tag>,
|
|
|
|
) -> InterpResult<'tcx, Scalar<Tag>> {
|
|
|
|
let this = self.eval_context_mut();
|
|
|
|
|
2019-10-14 15:36:15 -05:00
|
|
|
this.check_no_isolation("getcwd")?;
|
2019-09-19 10:32:18 -05:00
|
|
|
|
2019-09-20 02:13:48 -05:00
|
|
|
let buf = this.force_ptr(this.read_scalar(buf_op)?.not_undef()?)?;
|
2019-10-18 04:33:12 -05:00
|
|
|
let size = this.read_scalar(size_op)?.to_usize(&*this.tcx)?;
|
2019-09-20 02:13:48 -05:00
|
|
|
// If we cannot get the current directory, we return null
|
2019-09-20 03:30:55 -05:00
|
|
|
match env::current_dir() {
|
2019-09-20 10:25:43 -05:00
|
|
|
Ok(cwd) => {
|
2019-09-20 03:30:55 -05:00
|
|
|
// It is not clear what happens with non-utf8 paths here
|
|
|
|
let mut bytes = cwd.display().to_string().into_bytes();
|
2019-10-11 04:17:43 -05:00
|
|
|
// If `size` is smaller or equal than the `bytes.len()`, writing `bytes` plus the
|
|
|
|
// required null terminator to memory using the `buf` pointer would cause an
|
2019-10-11 08:20:32 -05:00
|
|
|
// overflow. The desired behavior in this case is to return null.
|
2019-09-20 03:30:55 -05:00
|
|
|
if (bytes.len() as u64) < size {
|
|
|
|
// We add a `/0` terminator
|
|
|
|
bytes.push(0);
|
2019-10-11 03:36:34 -05:00
|
|
|
// This is ok because the buffer was strictly larger than `bytes`, so after
|
|
|
|
// adding the null terminator, the buffer size is larger or equal to
|
|
|
|
// `bytes.len()`, meaning that `bytes` actually fit inside tbe buffer.
|
2019-10-17 21:11:50 -05:00
|
|
|
this.memory
|
2019-09-20 10:25:43 -05:00
|
|
|
.get_mut(buf.alloc_id)?
|
2019-10-18 04:33:12 -05:00
|
|
|
.write_bytes(&*this.tcx, buf, &bytes)?;
|
2019-09-20 10:25:43 -05:00
|
|
|
return Ok(Scalar::Ptr(buf));
|
2019-09-20 03:30:55 -05:00
|
|
|
}
|
2019-10-03 10:21:55 -05:00
|
|
|
let erange = this.eval_libc("ERANGE")?;
|
|
|
|
this.set_last_error(erange)?;
|
2019-09-18 16:10:13 -05:00
|
|
|
}
|
2019-10-07 08:38:54 -05:00
|
|
|
Err(e) => this.consume_io_error(e)?,
|
2019-09-18 16:10:13 -05:00
|
|
|
}
|
2019-10-18 04:33:12 -05:00
|
|
|
Ok(Scalar::ptr_null(&*this.tcx))
|
2019-09-18 16:10:13 -05:00
|
|
|
}
|
2019-09-24 14:42:38 -05:00
|
|
|
|
|
|
|
fn chdir(&mut self, path_op: OpTy<'tcx, Tag>) -> InterpResult<'tcx, i32> {
|
|
|
|
let this = self.eval_context_mut();
|
|
|
|
|
2019-10-14 15:36:15 -05:00
|
|
|
this.check_no_isolation("chdir")?;
|
2019-09-24 14:42:38 -05:00
|
|
|
|
|
|
|
let path_bytes = this
|
2019-10-17 21:11:50 -05:00
|
|
|
.memory
|
2019-09-24 14:42:38 -05:00
|
|
|
.read_c_str(this.read_scalar(path_op)?.not_undef()?)?;
|
|
|
|
|
|
|
|
let path = Path::new(
|
|
|
|
std::str::from_utf8(path_bytes)
|
|
|
|
.map_err(|_| err_unsup_format!("{:?} is not a valid utf-8 string", path_bytes))?,
|
|
|
|
);
|
|
|
|
|
|
|
|
match env::set_current_dir(path) {
|
|
|
|
Ok(()) => Ok(0),
|
|
|
|
Err(e) => {
|
2019-10-07 08:38:54 -05:00
|
|
|
this.consume_io_error(e)?;
|
2019-09-24 14:42:38 -05:00
|
|
|
Ok(-1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-14 15:44:37 -05:00
|
|
|
}
|