Skip to content

Commit 96ee9a0

Browse files
committed
Auto merge of #2226 - InfRandomness:unix-helpers, r=RalfJung
Add unix helpers This creates unix helper(s)
2 parents ada7b72 + bc27fbb commit 96ee9a0

File tree

4 files changed

+30
-34
lines changed

4 files changed

+30
-34
lines changed

src/helpers.rs

+17
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,17 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
493493
)
494494
}
495495

496+
/// Helper function used inside the shims of foreign functions to assert that the target OS
497+
/// is part of the UNIX family. It panics showing a message with the `name` of the foreign function
498+
/// if this is not the case.
499+
fn assert_target_os_is_unix(&self, name: &str) {
500+
assert!(
501+
target_os_is_unix(self.eval_context_ref().tcx.sess.target.os.as_ref()),
502+
"`{}` is only available for supported UNIX family targets",
503+
name,
504+
);
505+
}
506+
496507
/// Get last error variable as a place, lazily allocating thread-local storage for it if
497508
/// necessary.
498509
fn last_error_place(&mut self) -> InterpResult<'tcx, MPlaceTy<'tcx, Tag>> {
@@ -895,3 +906,9 @@ impl std::fmt::Display for HexRange {
895906
write!(f, "[{:#x}..{:#x}]", self.0.start.bytes(), self.0.end().bytes())
896907
}
897908
}
909+
910+
/// Helper function used inside the shims of foreign functions to check that
911+
/// `target_os` is a supported UNIX OS.
912+
pub fn target_os_is_unix(target_os: &str) -> bool {
913+
matches!(target_os, "linux" | "macos")
914+
}

src/shims/dlsym.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use rustc_middle::mir;
22
use rustc_target::spec::abi::Abi;
33

4+
use crate::helpers::target_os_is_unix;
45
use crate::*;
56
use shims::unix::dlsym as unix;
67
use shims::windows::dlsym as windows;
@@ -18,7 +19,8 @@ impl Dlsym {
1819
pub fn from_str<'tcx>(name: &[u8], target_os: &str) -> InterpResult<'tcx, Option<Dlsym>> {
1920
let name = &*String::from_utf8_lossy(name);
2021
Ok(match target_os {
21-
"linux" | "macos" => unix::Dlsym::from_str(name, target_os)?.map(Dlsym::Posix),
22+
target if target_os_is_unix(target) =>
23+
unix::Dlsym::from_str(name, target)?.map(Dlsym::Posix),
2224
"windows" => windows::Dlsym::from_str(name)?.map(Dlsym::Windows),
2325
os => bug!("dlsym not implemented for target_os {}", os),
2426
})

src/shims/env.rs

+8-31
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ use rustc_data_structures::fx::FxHashMap;
88
use rustc_middle::ty::layout::LayoutOf;
99
use rustc_target::abi::Size;
1010

11+
use crate::helpers::target_os_is_unix;
1112
use crate::*;
1213

1314
/// Check whether an operation that writes to a target buffer was successful.
@@ -55,7 +56,7 @@ impl<'tcx> EnvVars<'tcx> {
5556
};
5657
if forward {
5758
let var_ptr = match target_os {
58-
"linux" | "macos" =>
59+
target if target_os_is_unix(target) =>
5960
alloc_env_var_as_c_str(name.as_ref(), value.as_ref(), ecx)?,
6061
"windows" => alloc_env_var_as_wide_str(name.as_ref(), value.as_ref(), ecx)?,
6162
unsupported =>
@@ -113,11 +114,7 @@ impl<'mir, 'tcx: 'mir> EvalContextExt<'mir, 'tcx> for crate::MiriEvalContext<'mi
113114
pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx> {
114115
fn getenv(&mut self, name_op: &OpTy<'tcx, Tag>) -> InterpResult<'tcx, Pointer<Option<Tag>>> {
115116
let this = self.eval_context_mut();
116-
let target_os = &this.tcx.sess.target.os;
117-
assert!(
118-
target_os == "linux" || target_os == "macos",
119-
"`getenv` is only available for the UNIX target family"
120-
);
117+
this.assert_target_os_is_unix("getenv");
121118

122119
let name_ptr = this.read_pointer(name_op)?;
123120
let name = this.read_os_str_from_c_str(name_ptr)?;
@@ -211,11 +208,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
211208
value_op: &OpTy<'tcx, Tag>,
212209
) -> InterpResult<'tcx, i32> {
213210
let this = self.eval_context_mut();
214-
let target_os = &this.tcx.sess.target.os;
215-
assert!(
216-
target_os == "linux" || target_os == "macos",
217-
"`setenv` is only available for the UNIX target family"
218-
);
211+
this.assert_target_os_is_unix("setenv");
219212

220213
let name_ptr = this.read_pointer(name_op)?;
221214
let value_ptr = this.read_pointer(value_op)?;
@@ -285,11 +278,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
285278

286279
fn unsetenv(&mut self, name_op: &OpTy<'tcx, Tag>) -> InterpResult<'tcx, i32> {
287280
let this = self.eval_context_mut();
288-
let target_os = &this.tcx.sess.target.os;
289-
assert!(
290-
target_os == "linux" || target_os == "macos",
291-
"`unsetenv` is only available for the UNIX target family"
292-
);
281+
this.assert_target_os_is_unix("unsetenv");
293282

294283
let name_ptr = this.read_pointer(name_op)?;
295284
let mut success = None;
@@ -319,11 +308,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
319308
size_op: &OpTy<'tcx, Tag>,
320309
) -> InterpResult<'tcx, Pointer<Option<Tag>>> {
321310
let this = self.eval_context_mut();
322-
let target_os = &this.tcx.sess.target.os;
323-
assert!(
324-
target_os == "linux" || target_os == "macos",
325-
"`getcwd` is only available for the UNIX target family"
326-
);
311+
this.assert_target_os_is_unix("getcwd");
327312

328313
let buf = this.read_pointer(buf_op)?;
329314
let size = this.read_scalar(size_op)?.to_machine_usize(&*this.tcx)?;
@@ -378,11 +363,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
378363

379364
fn chdir(&mut self, path_op: &OpTy<'tcx, Tag>) -> InterpResult<'tcx, i32> {
380365
let this = self.eval_context_mut();
381-
let target_os = &this.tcx.sess.target.os;
382-
assert!(
383-
target_os == "linux" || target_os == "macos",
384-
"`chdir` is only available for the UNIX target family"
385-
);
366+
this.assert_target_os_is_unix("chdir");
386367

387368
let path = this.read_path_from_c_str(this.read_pointer(path_op)?)?;
388369

@@ -468,11 +449,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
468449

469450
fn getpid(&mut self) -> InterpResult<'tcx, i32> {
470451
let this = self.eval_context_mut();
471-
let target_os = &this.tcx.sess.target.os;
472-
assert!(
473-
target_os == "linux" || target_os == "macos",
474-
"`getpid` is only available for the UNIX target family"
475-
);
452+
this.assert_target_os_is_unix("getpid");
476453

477454
this.check_no_isolation("`getpid`")?;
478455

src/shims/foreign_items.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ use rustc_target::{
2222
};
2323

2424
use super::backtrace::EvalContextExt as _;
25-
use crate::helpers::convert::Truncate;
25+
use crate::helpers::{convert::Truncate, target_os_is_unix};
2626
use crate::*;
2727

2828
/// Returned by `emulate_foreign_item_by_name`.
@@ -702,7 +702,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
702702

703703
// Platform-specific shims
704704
_ => match this.tcx.sess.target.os.as_ref() {
705-
"linux" | "macos" => return shims::unix::foreign_items::EvalContextExt::emulate_foreign_item_by_name(this, link_name, abi, args, dest, ret),
705+
target if target_os_is_unix(target) => return shims::unix::foreign_items::EvalContextExt::emulate_foreign_item_by_name(this, link_name, abi, args, dest, ret),
706706
"windows" => return shims::windows::foreign_items::EvalContextExt::emulate_foreign_item_by_name(this, link_name, abi, args, dest, ret),
707707
target => throw_unsup_format!("the target `{}` is not supported", target),
708708
}

0 commit comments

Comments
 (0)