]> git.lizzy.rs Git - rust.git/blob - src/machine.rs
Store layouts of i32 and u32 inside Evaluator
[rust.git] / src / machine.rs
1 //! Global machine state as well as implementation of the interpreter engine
2 //! `Machine` trait.
3
4 use std::borrow::Cow;
5 use std::cell::RefCell;
6 use std::num::NonZeroU64;
7 use std::rc::Rc;
8 use std::time::Instant;
9
10 use log::trace;
11 use rand::rngs::StdRng;
12
13 use rustc_data_structures::fx::FxHashMap;
14 use rustc_middle::{mir, ty::{self, layout::TyAndLayout}};
15 use rustc_target::abi::{LayoutOf, Size};
16 use rustc_ast::attr;
17 use rustc_span::symbol::{sym, Symbol};
18
19 use crate::*;
20
21 // Some global facts about the emulated machine.
22 pub const PAGE_SIZE: u64 = 4 * 1024; // FIXME: adjust to target architecture
23 pub const STACK_ADDR: u64 = 32 * PAGE_SIZE; // not really about the "stack", but where we start assigning integer addresses to allocations
24 pub const STACK_SIZE: u64 = 16 * PAGE_SIZE; // whatever
25 pub const NUM_CPUS: u64 = 1;
26
27 /// Extra data stored with each stack frame
28 #[derive(Debug)]
29 pub struct FrameData<'tcx> {
30     /// Extra data for Stacked Borrows.
31     pub call_id: stacked_borrows::CallId,
32
33     /// If this is Some(), then this is a special "catch unwind" frame (the frame of `try_fn`
34     /// called by `try`). When this frame is popped during unwinding a panic,
35     /// we stop unwinding, use the `CatchUnwindData` to handle catching.
36     pub catch_unwind: Option<CatchUnwindData<'tcx>>,
37 }
38
39 /// Extra memory kinds
40 #[derive(Debug, Copy, Clone, PartialEq, Eq)]
41 pub enum MiriMemoryKind {
42     /// `__rust_alloc` memory.
43     Rust,
44     /// `malloc` memory.
45     C,
46     /// Windows `HeapAlloc` memory.
47     WinHeap,
48     /// Memory for args, errno, extern statics and other parts of the machine-managed environment.
49     /// This memory may leak.
50     Machine,
51     /// Memory for env vars. Separate from `Machine` because we clean it up and leak-check it.
52     Env,
53     /// Globals copied from `tcx`.
54     /// This memory may leak.
55     Global,
56 }
57
58 impl Into<MemoryKind<MiriMemoryKind>> for MiriMemoryKind {
59     #[inline(always)]
60     fn into(self) -> MemoryKind<MiriMemoryKind> {
61         MemoryKind::Machine(self)
62     }
63 }
64
65 /// Extra per-allocation data
66 #[derive(Debug, Clone)]
67 pub struct AllocExtra {
68     /// Stacked Borrows state is only added if it is enabled.
69     pub stacked_borrows: Option<stacked_borrows::AllocExtra>,
70 }
71
72 /// Extra global memory data
73 #[derive(Clone, Debug)]
74 pub struct MemoryExtra {
75     pub stacked_borrows: Option<stacked_borrows::MemoryExtra>,
76     pub intptrcast: intptrcast::MemoryExtra,
77
78     /// Mapping extern static names to their canonical allocation.
79     extern_statics: FxHashMap<Symbol, AllocId>,
80
81     /// The random number generator used for resolving non-determinism.
82     /// Needs to be queried by ptr_to_int, hence needs interior mutability.
83     pub(crate) rng: RefCell<StdRng>,
84
85     /// An allocation ID to report when it is being allocated
86     /// (helps for debugging memory leaks).
87     tracked_alloc_id: Option<AllocId>,
88 }
89
90 impl MemoryExtra {
91     pub fn new(rng: StdRng, stacked_borrows: bool, tracked_pointer_tag: Option<PtrId>, tracked_alloc_id: Option<AllocId>) -> Self {
92         let stacked_borrows = if stacked_borrows {
93             Some(Rc::new(RefCell::new(stacked_borrows::GlobalState::new(tracked_pointer_tag))))
94         } else {
95             None
96         };
97         MemoryExtra {
98             stacked_borrows,
99             intptrcast: Default::default(),
100             extern_statics: FxHashMap::default(),
101             rng: RefCell::new(rng),
102             tracked_alloc_id,
103         }
104     }
105
106     fn add_extern_static<'tcx, 'mir>(
107         this: &mut MiriEvalContext<'mir, 'tcx>,
108         name: &str,
109         ptr: Scalar<Tag>,
110     ) {
111         let ptr = ptr.assert_ptr();
112         assert_eq!(ptr.offset, Size::ZERO);
113         this.memory
114             .extra
115             .extern_statics
116             .insert(Symbol::intern(name), ptr.alloc_id)
117             .unwrap_none();
118     }
119
120     /// Sets up the "extern statics" for this machine.
121     pub fn init_extern_statics<'tcx, 'mir>(
122         this: &mut MiriEvalContext<'mir, 'tcx>,
123     ) -> InterpResult<'tcx> {
124         match this.tcx.sess.target.target.target_os.as_str() {
125             "linux" => {
126                 // "__cxa_thread_atexit_impl"
127                 // This should be all-zero, pointer-sized.
128                 let layout = this.layout_of(this.tcx.types.usize)?;
129                 let place = this.allocate(layout, MiriMemoryKind::Machine.into());
130                 this.write_scalar(Scalar::from_machine_usize(0, this), place.into())?;
131                 Self::add_extern_static(this, "__cxa_thread_atexit_impl", place.ptr);
132                 // "environ"
133                 Self::add_extern_static(this, "environ", this.machine.env_vars.environ.unwrap().ptr);
134             }
135             "windows" => {
136                 // "_tls_used"
137                 // This is some obscure hack that is part of the Windows TLS story. It's a `u8`.
138                 let layout = this.layout_of(this.tcx.types.u8)?;
139                 let place = this.allocate(layout, MiriMemoryKind::Machine.into());
140                 this.write_scalar(Scalar::from_u8(0), place.into())?;
141                 Self::add_extern_static(this, "_tls_used", place.ptr);
142             }
143             _ => {} // No "extern statics" supported on this target
144         }
145         Ok(())
146     }
147 }
148
149 /// Cached layouts of primitive types
150 #[derive(Default)]
151 struct PrimitiveLayouts<'tcx> {
152     i32: RefCell<Option<TyAndLayout<'tcx>>>,
153     u32: RefCell<Option<TyAndLayout<'tcx>>>,
154 }
155
156 impl<'mir, 'tcx: 'mir> PrimitiveLayouts<'tcx> {
157     fn i32(&self, ecx: &MiriEvalContext<'mir, 'tcx>) -> InterpResult<'tcx, TyAndLayout<'tcx>> {
158         {
159             let layout_ref = self.i32.borrow();
160             if layout_ref.is_some() {
161                 return Ok(layout_ref.unwrap());
162             }
163         }
164         let layout = ecx.layout_of(ecx.tcx.types.i32)?;
165         *self.i32.borrow_mut() = Some(layout);
166         Ok(layout)
167     }
168
169     fn u32(&self, ecx: &MiriEvalContext<'mir, 'tcx>) -> InterpResult<'tcx, TyAndLayout<'tcx>> {
170         {
171             let layout_ref = self.u32.borrow();
172             if layout_ref.is_some() {
173                 return Ok(layout_ref.unwrap());
174             }
175         }
176         let layout = ecx.layout_of(ecx.tcx.types.u32)?;
177         *self.u32.borrow_mut() = Some(layout);
178         Ok(layout)
179     }
180 }
181
182 /// The machine itself.
183 pub struct Evaluator<'tcx> {
184     /// Environment variables set by `setenv`.
185     /// Miri does not expose env vars from the host to the emulated program.
186     pub(crate) env_vars: EnvVars<'tcx>,
187
188     /// Program arguments (`Option` because we can only initialize them after creating the ecx).
189     /// These are *pointers* to argc/argv because macOS.
190     /// We also need the full command line as one string because of Windows.
191     pub(crate) argc: Option<Scalar<Tag>>,
192     pub(crate) argv: Option<Scalar<Tag>>,
193     pub(crate) cmd_line: Option<Scalar<Tag>>,
194
195     /// Last OS error location in memory. It is a 32-bit integer.
196     pub(crate) last_error: Option<MPlaceTy<'tcx, Tag>>,
197
198     /// TLS state.
199     pub(crate) tls: TlsData<'tcx>,
200
201     /// If enabled, the `env_vars` field is populated with the host env vars during initialization
202     /// and random number generation is delegated to the host.
203     pub(crate) communicate: bool,
204
205     /// Whether to enforce the validity invariant.
206     pub(crate) validate: bool,
207
208     pub(crate) file_handler: FileHandler,
209     pub(crate) dir_handler: DirHandler,
210
211     /// The temporary used for storing the argument of
212     /// the call to `miri_start_panic` (the panic payload) when unwinding.
213     /// This is pointer-sized, and matches the `Payload` type in `src/libpanic_unwind/miri.rs`.
214     pub(crate) panic_payload: Option<Scalar<Tag>>,
215
216     /// The "time anchor" for this machine's monotone clock (for `Instant` simulation).
217     pub(crate) time_anchor: Instant,
218
219     /// Cached `TyLayout`s for primitive data types that are commonly used inside Miri.
220     primitive_layouts: PrimitiveLayouts<'tcx>,
221 }
222
223 impl<'tcx> Evaluator<'tcx> {
224     pub(crate) fn new(communicate: bool, validate: bool) -> Self {
225         Evaluator {
226             // `env_vars` could be initialized properly here if `Memory` were available before
227             // calling this method.
228             env_vars: EnvVars::default(),
229             argc: None,
230             argv: None,
231             cmd_line: None,
232             last_error: None,
233             tls: TlsData::default(),
234             communicate,
235             validate,
236             file_handler: Default::default(),
237             dir_handler: Default::default(),
238             panic_payload: None,
239             time_anchor: Instant::now(),
240             primitive_layouts: PrimitiveLayouts::default(),
241         }
242     }
243 }
244
245 /// A rustc InterpCx for Miri.
246 pub type MiriEvalContext<'mir, 'tcx> = InterpCx<'mir, 'tcx, Evaluator<'tcx>>;
247
248 /// A little trait that's useful to be inherited by extension traits.
249 pub trait MiriEvalContextExt<'mir, 'tcx> {
250     fn eval_context_ref<'a>(&'a self) -> &'a MiriEvalContext<'mir, 'tcx>;
251     fn eval_context_mut<'a>(&'a mut self) -> &'a mut MiriEvalContext<'mir, 'tcx>;
252 }
253 impl<'mir, 'tcx> MiriEvalContextExt<'mir, 'tcx> for MiriEvalContext<'mir, 'tcx> {
254     #[inline(always)]
255     fn eval_context_ref(&self) -> &MiriEvalContext<'mir, 'tcx> {
256         self
257     }
258     #[inline(always)]
259     fn eval_context_mut(&mut self) -> &mut MiriEvalContext<'mir, 'tcx> {
260         self
261     }
262 }
263
264 impl<'mir, 'tcx> EvalContextExt<'mir, 'tcx> for MiriEvalContext<'mir, 'tcx> {}
265 /// Provides convenience methods for use elsewhere
266 pub trait EvalContextExt<'mir, 'tcx: 'mir>: MiriEvalContextExt<'mir, 'tcx> {
267     fn i32_layout(&self) -> InterpResult<'tcx, TyAndLayout<'tcx>> {
268         let this = self.eval_context_ref();
269         this.machine.primitive_layouts.i32(this)
270     }
271
272     fn u32_layout(&self) -> InterpResult<'tcx, TyAndLayout<'tcx>> {
273         let this = self.eval_context_ref();
274         this.machine.primitive_layouts.u32(this)
275     }
276 }
277
278 /// Machine hook implementations.
279 impl<'mir, 'tcx> Machine<'mir, 'tcx> for Evaluator<'tcx> {
280     type MemoryKind = MiriMemoryKind;
281
282     type FrameExtra = FrameData<'tcx>;
283     type MemoryExtra = MemoryExtra;
284     type AllocExtra = AllocExtra;
285     type PointerTag = Tag;
286     type ExtraFnVal = Dlsym;
287
288     type MemoryMap =
289         MonoHashMap<AllocId, (MemoryKind<MiriMemoryKind>, Allocation<Tag, Self::AllocExtra>)>;
290
291     const GLOBAL_KIND: Option<MiriMemoryKind> = Some(MiriMemoryKind::Global);
292
293     const CHECK_ALIGN: bool = true;
294
295     #[inline(always)]
296     fn enforce_validity(ecx: &InterpCx<'mir, 'tcx, Self>) -> bool {
297         ecx.machine.validate
298     }
299
300     #[inline(always)]
301     fn find_mir_or_eval_fn(
302         ecx: &mut InterpCx<'mir, 'tcx, Self>,
303         instance: ty::Instance<'tcx>,
304         args: &[OpTy<'tcx, Tag>],
305         ret: Option<(PlaceTy<'tcx, Tag>, mir::BasicBlock)>,
306         unwind: Option<mir::BasicBlock>,
307     ) -> InterpResult<'tcx, Option<&'mir mir::Body<'tcx>>> {
308         ecx.find_mir_or_eval_fn(instance, args, ret, unwind)
309     }
310
311     #[inline(always)]
312     fn call_extra_fn(
313         ecx: &mut InterpCx<'mir, 'tcx, Self>,
314         fn_val: Dlsym,
315         args: &[OpTy<'tcx, Tag>],
316         ret: Option<(PlaceTy<'tcx, Tag>, mir::BasicBlock)>,
317         _unwind: Option<mir::BasicBlock>,
318     ) -> InterpResult<'tcx> {
319         ecx.call_dlsym(fn_val, args, ret)
320     }
321
322     #[inline(always)]
323     fn call_intrinsic(
324         ecx: &mut rustc_mir::interpret::InterpCx<'mir, 'tcx, Self>,
325         instance: ty::Instance<'tcx>,
326         args: &[OpTy<'tcx, Tag>],
327         ret: Option<(PlaceTy<'tcx, Tag>, mir::BasicBlock)>,
328         unwind: Option<mir::BasicBlock>,
329     ) -> InterpResult<'tcx> {
330         ecx.call_intrinsic(instance, args, ret, unwind)
331     }
332
333     #[inline(always)]
334     fn assert_panic(
335         ecx: &mut InterpCx<'mir, 'tcx, Self>,
336         msg: &mir::AssertMessage<'tcx>,
337         unwind: Option<mir::BasicBlock>,
338     ) -> InterpResult<'tcx> {
339         ecx.assert_panic(msg, unwind)
340     }
341
342     #[inline(always)]
343     fn abort(_ecx: &mut InterpCx<'mir, 'tcx, Self>) -> InterpResult<'tcx, !> {
344         throw_machine_stop!(TerminationInfo::Abort(None))
345     }
346
347     #[inline(always)]
348     fn binary_ptr_op(
349         ecx: &rustc_mir::interpret::InterpCx<'mir, 'tcx, Self>,
350         bin_op: mir::BinOp,
351         left: ImmTy<'tcx, Tag>,
352         right: ImmTy<'tcx, Tag>,
353     ) -> InterpResult<'tcx, (Scalar<Tag>, bool, ty::Ty<'tcx>)> {
354         ecx.binary_ptr_op(bin_op, left, right)
355     }
356
357     fn box_alloc(
358         ecx: &mut InterpCx<'mir, 'tcx, Self>,
359         dest: PlaceTy<'tcx, Tag>,
360     ) -> InterpResult<'tcx> {
361         trace!("box_alloc for {:?}", dest.layout.ty);
362         let layout = ecx.layout_of(dest.layout.ty.builtin_deref(false).unwrap().ty)?;
363         // First argument: `size`.
364         // (`0` is allowed here -- this is expected to be handled by the lang item).
365         let size = Scalar::from_machine_usize(layout.size.bytes(), ecx);
366
367         // Second argument: `align`.
368         let align = Scalar::from_machine_usize(layout.align.abi.bytes(), ecx);
369
370         // Call the `exchange_malloc` lang item.
371         let malloc = ecx.tcx.lang_items().exchange_malloc_fn().unwrap();
372         let malloc = ty::Instance::mono(ecx.tcx.tcx, malloc);
373         ecx.call_function(
374             malloc,
375             &[size.into(), align.into()],
376             Some(dest),
377             // Don't do anything when we are done. The `statement()` function will increment
378             // the old stack frame's stmt counter to the next statement, which means that when
379             // `exchange_malloc` returns, we go on evaluating exactly where we want to be.
380             StackPopCleanup::None { cleanup: true },
381         )?;
382         Ok(())
383     }
384
385     fn canonical_alloc_id(mem: &Memory<'mir, 'tcx, Self>, id: AllocId) -> AllocId {
386         let tcx = mem.tcx;
387         // Figure out if this is an extern static, and if yes, which one.
388         let def_id = match tcx.alloc_map.lock().get(id) {
389             Some(GlobalAlloc::Static(def_id)) if tcx.is_foreign_item(def_id) => def_id,
390             _ => {
391                 // No need to canonicalize anything.
392                 return id;
393             }
394         };
395         let attrs = tcx.get_attrs(def_id);
396         let link_name = match attr::first_attr_value_str_by_name(&attrs, sym::link_name) {
397             Some(name) => name,
398             None => tcx.item_name(def_id),
399         };
400         // Check if we know this one.
401         if let Some(canonical_id) = mem.extra.extern_statics.get(&link_name) {
402             trace!("canonical_alloc_id: {:?} ({}) -> {:?}", id, link_name, canonical_id);
403             *canonical_id
404         } else {
405             // Return original id; `Memory::get_static_alloc` will throw an error.
406             id
407         }
408     }
409
410     fn init_allocation_extra<'b>(
411         memory_extra: &MemoryExtra,
412         id: AllocId,
413         alloc: Cow<'b, Allocation>,
414         kind: Option<MemoryKind<Self::MemoryKind>>,
415     ) -> (Cow<'b, Allocation<Self::PointerTag, Self::AllocExtra>>, Self::PointerTag) {
416         if Some(id) == memory_extra.tracked_alloc_id {
417             register_diagnostic(NonHaltingDiagnostic::CreatedAlloc(id));
418         }
419
420         let kind = kind.expect("we set our STATIC_KIND so this cannot be None");
421         let alloc = alloc.into_owned();
422         let (stacks, base_tag) =
423             if let Some(stacked_borrows) = memory_extra.stacked_borrows.as_ref() {
424                 let (stacks, base_tag) =
425                     Stacks::new_allocation(id, alloc.size, Rc::clone(stacked_borrows), kind);
426                 (Some(stacks), base_tag)
427             } else {
428                 // No stacks, no tag.
429                 (None, Tag::Untagged)
430             };
431         let mut stacked_borrows = memory_extra.stacked_borrows.as_ref().map(|sb| sb.borrow_mut());
432         let alloc: Allocation<Tag, Self::AllocExtra> = alloc.with_tags_and_extra(
433             |alloc| {
434                 if let Some(stacked_borrows) = stacked_borrows.as_mut() {
435                     // Only globals may already contain pointers at this point
436                     assert_eq!(kind, MiriMemoryKind::Global.into());
437                     stacked_borrows.global_base_ptr(alloc)
438                 } else {
439                     Tag::Untagged
440                 }
441             },
442             AllocExtra { stacked_borrows: stacks },
443         );
444         (Cow::Owned(alloc), base_tag)
445     }
446
447     #[inline(always)]
448     fn tag_global_base_pointer(memory_extra: &MemoryExtra, id: AllocId) -> Self::PointerTag {
449         if let Some(stacked_borrows) = memory_extra.stacked_borrows.as_ref() {
450             stacked_borrows.borrow_mut().global_base_ptr(id)
451         } else {
452             Tag::Untagged
453         }
454     }
455
456     #[inline(always)]
457     fn retag(
458         ecx: &mut InterpCx<'mir, 'tcx, Self>,
459         kind: mir::RetagKind,
460         place: PlaceTy<'tcx, Tag>,
461     ) -> InterpResult<'tcx> {
462         if ecx.memory.extra.stacked_borrows.is_none() {
463             // No tracking.
464             Ok(())
465         } else {
466             ecx.retag(kind, place)
467         }
468     }
469
470     #[inline(always)]
471     fn stack_push(ecx: &mut InterpCx<'mir, 'tcx, Self>) -> InterpResult<'tcx, FrameData<'tcx>> {
472         let stacked_borrows = ecx.memory.extra.stacked_borrows.as_ref();
473         let call_id = stacked_borrows.map_or(NonZeroU64::new(1).unwrap(), |stacked_borrows| {
474             stacked_borrows.borrow_mut().new_call()
475         });
476         Ok(FrameData { call_id, catch_unwind: None })
477     }
478
479     #[inline(always)]
480     fn stack_pop(
481         ecx: &mut InterpCx<'mir, 'tcx, Self>,
482         extra: FrameData<'tcx>,
483         unwinding: bool,
484     ) -> InterpResult<'tcx, StackPopJump> {
485         ecx.handle_stack_pop(extra, unwinding)
486     }
487
488     #[inline(always)]
489     fn int_to_ptr(
490         memory: &Memory<'mir, 'tcx, Self>,
491         int: u64,
492     ) -> InterpResult<'tcx, Pointer<Self::PointerTag>> {
493         intptrcast::GlobalState::int_to_ptr(int, memory)
494     }
495
496     #[inline(always)]
497     fn ptr_to_int(
498         memory: &Memory<'mir, 'tcx, Self>,
499         ptr: Pointer<Self::PointerTag>,
500     ) -> InterpResult<'tcx, u64> {
501         intptrcast::GlobalState::ptr_to_int(ptr, memory)
502     }
503 }
504
505 impl AllocationExtra<Tag> for AllocExtra {
506     #[inline(always)]
507     fn memory_read<'tcx>(
508         alloc: &Allocation<Tag, AllocExtra>,
509         ptr: Pointer<Tag>,
510         size: Size,
511     ) -> InterpResult<'tcx> {
512         if let Some(ref stacked_borrows) = alloc.extra.stacked_borrows {
513             stacked_borrows.memory_read(ptr, size)
514         } else {
515             Ok(())
516         }
517     }
518
519     #[inline(always)]
520     fn memory_written<'tcx>(
521         alloc: &mut Allocation<Tag, AllocExtra>,
522         ptr: Pointer<Tag>,
523         size: Size,
524     ) -> InterpResult<'tcx> {
525         if let Some(ref mut stacked_borrows) = alloc.extra.stacked_borrows {
526             stacked_borrows.memory_written(ptr, size)
527         } else {
528             Ok(())
529         }
530     }
531
532     #[inline(always)]
533     fn memory_deallocated<'tcx>(
534         alloc: &mut Allocation<Tag, AllocExtra>,
535         ptr: Pointer<Tag>,
536         size: Size,
537     ) -> InterpResult<'tcx> {
538         if let Some(ref mut stacked_borrows) = alloc.extra.stacked_borrows {
539             stacked_borrows.memory_deallocated(ptr, size)
540         } else {
541             Ok(())
542         }
543     }
544 }
545
546 impl MayLeak for MiriMemoryKind {
547     #[inline(always)]
548     fn may_leak(self) -> bool {
549         use self::MiriMemoryKind::*;
550         match self {
551             Rust | C | WinHeap | Env => false,
552             Machine | Global => true,
553         }
554     }
555 }