]> git.lizzy.rs Git - rust.git/blob - src/shims/dlsym.rs
avoid using unchecked casts or arithmetic
[rust.git] / src / shims / dlsym.rs
1 use rustc::mir;
2
3 use crate::*;
4
5 #[derive(Debug, Copy, Clone)]
6 pub enum Dlsym {
7     GetEntropy,
8 }
9
10 impl Dlsym {
11     // Returns an error for unsupported symbols, and None if this symbol
12     // should become a NULL pointer (pretend it does not exist).
13     pub fn from_str(name: &str) -> InterpResult<'static, Option<Dlsym>> {
14         use self::Dlsym::*;
15         Ok(match name {
16             "getentropy" => Some(GetEntropy),
17             "__pthread_get_minstack" => None,
18             _ => throw_unsup_format!("Unsupported dlsym: {}", name),
19         })
20     }
21 }
22
23 impl<'mir, 'tcx> EvalContextExt<'mir, 'tcx> for crate::MiriEvalContext<'mir, 'tcx> {}
24 pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx> {
25     fn call_dlsym(
26         &mut self,
27         dlsym: Dlsym,
28         args: &[OpTy<'tcx, Tag>],
29         ret: Option<(PlaceTy<'tcx, Tag>, mir::BasicBlock)>,
30     ) -> InterpResult<'tcx> {
31         use self::Dlsym::*;
32
33         let this = self.eval_context_mut();
34         let (dest, ret) = ret.expect("we don't support any diverging dlsym");
35
36         match dlsym {
37             GetEntropy => {
38                 let ptr = this.read_scalar(args[0])?.not_undef()?;
39                 let len = this.read_scalar(args[1])?.to_machine_usize(this)?;
40                 this.gen_random(ptr, len)?;
41                 this.write_null(dest)?;
42             }
43         }
44
45         this.dump_place(*dest);
46         this.go_to_block(ret);
47         Ok(())
48     }
49 }