Skip to content

Commit 101df34

Browse files
committed
Auto merge of #1424 - RalfJung:dlsym, r=RalfJung
prepare Dlsym system for dynamic symbols on Windows This makes progress towards #1059.
2 parents 5d2423d + 402535e commit 101df34

File tree

3 files changed

+33
-14
lines changed

3 files changed

+33
-14
lines changed

src/shims/dlsym.rs

+18-5
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,25 @@ pub enum Dlsym {
1111
impl Dlsym {
1212
// Returns an error for unsupported symbols, and None if this symbol
1313
// should become a NULL pointer (pretend it does not exist).
14-
pub fn from_str(name: &str) -> InterpResult<'static, Option<Dlsym>> {
14+
pub fn from_str(name: &[u8], target_os: &str) -> InterpResult<'static, Option<Dlsym>> {
1515
use self::Dlsym::*;
16-
Ok(match name {
17-
"getentropy" => Some(GetEntropy),
18-
"__pthread_get_minstack" => None,
19-
_ => throw_unsup_format!("unsupported dlsym: {}", name),
16+
let name = String::from_utf8_lossy(name);
17+
Ok(match target_os {
18+
"linux" => match &*name {
19+
"__pthread_get_minstack" => None,
20+
_ => throw_unsup_format!("unsupported Linux dlsym: {}", name),
21+
}
22+
"macos" => match &*name {
23+
"getentropy" => Some(GetEntropy),
24+
_ => throw_unsup_format!("unsupported macOS dlsym: {}", name),
25+
}
26+
"windows" => match &*name {
27+
"SetThreadStackGuarantee" => None,
28+
"AcquireSRWLockExclusive" => None,
29+
"GetSystemTimePreciseAsFileTime" => None,
30+
_ => throw_unsup_format!("unsupported Windows dlsym: {}", name),
31+
}
32+
os => bug!("dlsym not implemented for target_os {}", os),
2033
})
2134
}
2235
}

src/shims/foreign_items/posix.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
173173
this.read_scalar(handle)?.not_undef()?;
174174
let symbol = this.read_scalar(symbol)?.not_undef()?;
175175
let symbol_name = this.memory.read_c_str(symbol)?;
176-
let err = format!("bad c unicode symbol: {:?}", symbol_name);
177-
let symbol_name = ::std::str::from_utf8(symbol_name).unwrap_or(&err);
178-
if let Some(dlsym) = Dlsym::from_str(symbol_name)? {
176+
if let Some(dlsym) = Dlsym::from_str(symbol_name, &this.tcx.sess.target.target.target_os)? {
179177
let ptr = this.memory.create_fn_alloc(FnVal::Other(dlsym));
180178
this.write_scalar(Scalar::from(ptr), dest)?;
181179
} else {

src/shims/foreign_items/windows.rs

+14-6
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,20 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
206206
this.write_scalar(Scalar::from_i32(result), dest)?;
207207
}
208208

209+
// Dynamic symbol loading
210+
"GetProcAddress" => {
211+
#[allow(non_snake_case)]
212+
let &[hModule, lpProcName] = check_arg_count(args)?;
213+
this.read_scalar(hModule)?.not_undef()?;
214+
let name = this.memory.read_c_str(this.read_scalar(lpProcName)?.not_undef()?)?;
215+
if let Some(dlsym) = Dlsym::from_str(name, &this.tcx.sess.target.target.target_os)? {
216+
let ptr = this.memory.create_fn_alloc(FnVal::Other(dlsym));
217+
this.write_scalar(Scalar::from(ptr), dest)?;
218+
} else {
219+
this.write_null(dest)?;
220+
}
221+
}
222+
209223
// Miscellaneous
210224
"SystemFunction036" => {
211225
// The actual name of 'RtlGenRandom'
@@ -258,12 +272,6 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx
258272
// Pretend this does not exist / nothing happened, by returning zero.
259273
this.write_null(dest)?;
260274
}
261-
"GetProcAddress" if this.frame().instance.to_string().starts_with("std::sys::windows::") => {
262-
#[allow(non_snake_case)]
263-
let &[_hModule, _lpProcName] = check_arg_count(args)?;
264-
// Pretend this does not exist / nothing happened, by returning zero.
265-
this.write_null(dest)?;
266-
}
267275
"SetConsoleTextAttribute" if this.frame().instance.to_string().starts_with("std::sys::windows::") => {
268276
#[allow(non_snake_case)]
269277
let &[_hConsoleOutput, _wAttribute] = check_arg_count(args)?;

0 commit comments

Comments
 (0)