Skip to main content

miri/
machine.rs

1//! Global machine state as well as implementation of the interpreter engine
2//! `Machine` trait.
3
4use std::borrow::Cow;
5use std::cell::{Cell, RefCell};
6use std::collections::BTreeMap;
7use std::path::Path;
8use std::rc::Rc;
9use std::{fmt, process};
10
11use rand::rngs::StdRng;
12use rand::{RngExt, SeedableRng};
13use rustc_abi::{Align, ExternAbi, Size};
14use rustc_apfloat::{Float, FloatConvert};
15use rustc_ast::expand::allocator::{self, SpecialAllocatorMethod};
16use rustc_data_structures::either::Either;
17use rustc_data_structures::fx::{FxHashMap, FxHashSet};
18#[allow(unused)]
19use rustc_data_structures::static_assert_size;
20use rustc_hir::attrs::{InlineAttr, Linkage};
21use rustc_log::tracing;
22use rustc_middle::middle::codegen_fn_attrs::TargetFeatureKind;
23use rustc_middle::mir;
24use rustc_middle::query::TyCtxtAt;
25use rustc_middle::ty::layout::{
26    HasTyCtxt, HasTypingEnv, LayoutCx, LayoutError, LayoutOf, TyAndLayout,
27};
28use rustc_middle::ty::{self, Instance, Ty, TyCtxt};
29use rustc_session::config::InliningThreshold;
30use rustc_span::def_id::{CrateNum, DefId};
31use rustc_span::{Span, SpanData, Symbol};
32use rustc_symbol_mangling::mangle_internal_symbol;
33use rustc_target::callconv::FnAbi;
34use rustc_target::spec::{Arch, Os};
35
36use crate::alloc_addresses::EvalContextExt;
37use crate::concurrency::cpu_affinity::{self, CpuAffinityMask};
38use crate::concurrency::data_race::{self, NaReadType, NaWriteType};
39use crate::concurrency::sync::SyncObj;
40use crate::concurrency::{
41    AllocDataRaceHandler, GenmcCtx, GenmcEvalContextExt as _, GlobalDataRaceHandler, weak_memory,
42};
43use crate::helpers::is_no_core;
44use crate::*;
45
46/// First real-time signal.
47/// `signal(7)` says this must be between 32 and 64 and specifies 34 or 35
48/// as typical values.
49pub const SIGRTMIN: i32 = 34;
50
51/// Last real-time signal.
52/// `signal(7)` says it must be between 32 and 64 and specifies
53/// `SIGRTMAX` - `SIGRTMIN` >= 8 (which is the value of `_POSIX_RTSIG_MAX`)
54pub const SIGRTMAX: i32 = 42;
55
56/// Each anonymous global (constant, vtable, function pointer, ...) has multiple addresses, but only
57/// this many. Since const allocations are never deallocated, choosing a new [`AllocId`] and thus
58/// base address for each evaluation would produce unbounded memory usage.
59const ADDRS_PER_ANON_GLOBAL: usize = 32;
60
61#[derive(Copy, Clone, Debug, PartialEq)]
62pub enum AlignmentCheck {
63    /// Do not check alignment.
64    None,
65    /// Check alignment "symbolically", i.e., using only the requested alignment for an allocation and not its real base address.
66    Symbolic,
67    /// Check alignment on the actual physical integer address.
68    Int,
69}
70
71#[derive(Copy, Clone, Debug, PartialEq)]
72pub enum RejectOpWith {
73    /// Isolated op is rejected with an abort of the machine.
74    Abort,
75
76    /// If not Abort, miri returns an error for an isolated op.
77    /// Following options determine if user should be warned about such error.
78    /// Do not print warning about rejected isolated op.
79    NoWarning,
80
81    /// Print a warning about rejected isolated op, with backtrace.
82    Warning,
83
84    /// Print a warning about rejected isolated op, without backtrace.
85    WarningWithoutBacktrace,
86}
87
88#[derive(Copy, Clone, Debug, PartialEq)]
89pub enum IsolatedOp {
90    /// Reject an op requiring communication with the host. By
91    /// default, miri rejects the op with an abort. If not, it returns
92    /// an error code, and prints a warning about it. Warning levels
93    /// are controlled by `RejectOpWith` enum.
94    Reject(RejectOpWith),
95
96    /// Execute op requiring communication with the host, i.e. disable isolation.
97    Allow,
98}
99
100#[derive(Debug, Copy, Clone, PartialEq, Eq)]
101pub enum BacktraceStyle {
102    /// Prints a terser backtrace which ideally only contains relevant information.
103    Short,
104    /// Prints a backtrace with all possible information.
105    Full,
106    /// Prints only the frame that the error occurs in.
107    Off,
108}
109
110#[derive(Debug, Copy, Clone, PartialEq, Eq)]
111pub enum ValidationMode {
112    /// Do not perform any kind of validation.
113    No,
114    /// Validate the interior of the value, but not things behind references.
115    Shallow,
116    /// Fully recursively validate references.
117    Deep,
118}
119
120#[derive(Debug, Copy, Clone, PartialEq, Eq)]
121pub enum FloatRoundingErrorMode {
122    /// Apply a random error (the default).
123    Random,
124    /// Don't apply any error.
125    None,
126    /// Always apply the maximum error (with a random sign).
127    Max,
128}
129
130/// Extra data stored with each stack frame
131pub struct FrameExtra<'tcx> {
132    /// Extra data for the Borrow Tracker.
133    pub borrow_tracker: Option<borrow_tracker::FrameState>,
134
135    /// If this is Some(), then this is a special "catch unwind" frame (the frame of `try_fn`
136    /// called by `try`). When this frame is popped during unwinding a panic,
137    /// we stop unwinding, use the `CatchUnwindData` to handle catching.
138    pub catch_unwind: Option<CatchUnwindData<'tcx>>,
139
140    /// If `measureme` profiling is enabled, holds timing information
141    /// for the start of this frame. When we finish executing this frame,
142    /// we use this to register a completed event with `measureme`.
143    pub timing: Option<measureme::DetachedTiming>,
144
145    /// Indicates how user-relevant this frame is. `#[track_caller]` frames are never relevant.
146    /// Frames from user-relevant crates are maximally relevant; frames from other crates are less
147    /// relevant.
148    pub user_relevance: u8,
149
150    /// Data race detector per-frame data.
151    pub data_race: Option<data_race::FrameState>,
152}
153
154impl<'tcx> std::fmt::Debug for FrameExtra<'tcx> {
155    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
156        // Omitting `timing`, it does not support `Debug`.
157        let FrameExtra { borrow_tracker, catch_unwind, timing: _, user_relevance, data_race } =
158            self;
159        f.debug_struct("FrameData")
160            .field("borrow_tracker", borrow_tracker)
161            .field("catch_unwind", catch_unwind)
162            .field("user_relevance", user_relevance)
163            .field("data_race", data_race)
164            .finish()
165    }
166}
167
168impl VisitProvenance for FrameExtra<'_> {
169    fn visit_provenance(&self, visit: &mut VisitWith<'_>) {
170        let FrameExtra { catch_unwind, borrow_tracker, timing: _, user_relevance: _, data_race: _ } =
171            self;
172
173        catch_unwind.visit_provenance(visit);
174        borrow_tracker.visit_provenance(visit);
175    }
176}
177
178/// Extra memory kinds
179#[derive(Debug, Copy, Clone, PartialEq, Eq)]
180pub enum MiriMemoryKind {
181    /// `__rust_alloc` memory.
182    Rust,
183    /// `miri_alloc` memory.
184    Miri,
185    /// `malloc` memory.
186    C,
187    /// Windows `HeapAlloc` memory.
188    WinHeap,
189    /// Windows "local" memory (to be freed with `LocalFree`)
190    WinLocal,
191    /// Memory for args, errno, env vars, and other parts of the machine-managed environment.
192    /// This memory may leak.
193    Machine,
194    /// Memory allocated by the runtime, e.g. for readdir. Separate from `Machine` because we clean
195    /// it up (or expect the user to invoke operations that clean it up) and leak-check it.
196    Runtime,
197    /// Globals copied from `tcx`.
198    /// This memory may leak.
199    Global,
200    /// Memory for extern statics.
201    /// This memory may leak.
202    ExternStatic,
203    /// Memory for thread-local statics.
204    /// This memory may leak.
205    Tls,
206    /// Memory mapped directly by the program.
207    Mmap,
208    /// Memory allocated for `getaddrinfo` result.
209    SocketAddress,
210}
211
212impl From<MiriMemoryKind> for MemoryKind {
213    #[inline(always)]
214    fn from(kind: MiriMemoryKind) -> MemoryKind {
215        MemoryKind::Machine(kind)
216    }
217}
218
219impl MayLeak for MiriMemoryKind {
220    #[inline(always)]
221    fn may_leak(self) -> bool {
222        use self::MiriMemoryKind::*;
223        match self {
224            Rust | Miri | C | WinHeap | WinLocal | Runtime => false,
225            Machine | Global | ExternStatic | Tls | Mmap | SocketAddress => true,
226        }
227    }
228}
229
230impl MiriMemoryKind {
231    /// Whether we have a useful allocation span for an allocation of this kind.
232    fn should_save_allocation_span(self) -> bool {
233        use self::MiriMemoryKind::*;
234        match self {
235            // Heap allocations are fine since the `Allocation` is created immediately.
236            Rust | Miri | C | WinHeap | WinLocal | Mmap => true,
237            // Everything else is unclear, let's not show potentially confusing spans.
238            Machine | Global | ExternStatic | Tls | Runtime | SocketAddress => false,
239        }
240    }
241}
242
243impl fmt::Display for MiriMemoryKind {
244    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
245        use self::MiriMemoryKind::*;
246        match self {
247            Rust => write!(f, "Rust heap"),
248            Miri => write!(f, "Miri bare-metal heap"),
249            C => write!(f, "C heap"),
250            WinHeap => write!(f, "Windows heap"),
251            WinLocal => write!(f, "Windows local memory"),
252            Machine => write!(f, "machine-managed memory"),
253            Runtime => write!(f, "language runtime memory"),
254            Global => write!(f, "global (static or const)"),
255            ExternStatic => write!(f, "extern static"),
256            Tls => write!(f, "thread-local static"),
257            Mmap => write!(f, "mmap"),
258            SocketAddress => write!(f, "socket address"),
259        }
260    }
261}
262
263pub type MemoryKind = interpret::MemoryKind<MiriMemoryKind>;
264
265/// Pointer provenance.
266// This needs to be `Eq`+`Hash` because the `Machine` trait needs that because validity checking
267// *might* be recursive and then it has to track which places have already been visited.
268// These implementations are a bit questionable, and it means we may check the same place multiple
269// times with different provenance, but that is in general not wrong.
270#[derive(Clone, Copy, PartialEq, Eq, Hash)]
271pub enum Provenance {
272    /// For pointers with concrete provenance. we exactly know which allocation they are attached to
273    /// and what their borrow tag is.
274    Concrete {
275        alloc_id: AllocId,
276        /// Borrow Tracker tag.
277        tag: BorTag,
278    },
279    /// Pointers with wildcard provenance are created on int-to-ptr casts. According to the
280    /// specification, we should at that point angelically "guess" a provenance that will make all
281    /// future uses of this pointer work, if at all possible. Of course such a semantics cannot be
282    /// actually implemented in Miri. So instead, we approximate this, erroring on the side of
283    /// accepting too much code rather than rejecting correct code: a pointer with wildcard
284    /// provenance "acts like" any previously exposed pointer. Each time it is used, we check
285    /// whether *some* exposed pointer could have done what we want to do, and if the answer is yes
286    /// then we allow the access. This allows too much code in two ways:
287    /// - The same wildcard pointer can "take the role" of multiple different exposed pointers on
288    ///   subsequent memory accesses.
289    /// - In the aliasing model, we don't just have to know the borrow tag of the pointer used for
290    ///   the access, we also have to update the aliasing state -- and that update can be very
291    ///   different depending on which borrow tag we pick! Stacked Borrows has support for this by
292    ///   switching to a stack that is only approximately known, i.e. we over-approximate the effect
293    ///   of using *any* exposed pointer for this access, and only keep information about the borrow
294    ///   stack that would be true with all possible choices.
295    Wildcard,
296}
297
298/// The "extra" information a pointer has over a regular AllocId.
299#[derive(Copy, Clone, PartialEq)]
300pub enum ProvenanceExtra {
301    Concrete(BorTag),
302    Wildcard,
303}
304
305#[cfg(target_pointer_width = "64")]
306static_assert_size!(StrictPointer, 24);
307// Pointer does not fit as the layout algorithm isn't smart enough (but also, we tried using
308// pattern types to get a larger niche that makes this fit and it didn't improve performance).
309// #[cfg(target_pointer_width = "64")]
310//static_assert_size!(Pointer, 24);
311#[cfg(target_pointer_width = "64")]
312static_assert_size!(Scalar, 32);
313
314impl fmt::Debug for Provenance {
315    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
316        match self {
317            Provenance::Concrete { alloc_id, tag } => {
318                // Forward `alternate` flag to `alloc_id` printing.
319                if f.alternate() {
320                    write!(f, "[{alloc_id:#?}]")?;
321                } else {
322                    write!(f, "[{alloc_id:?}]")?;
323                }
324                // Print Borrow Tracker tag.
325                write!(f, "{tag:?}")?;
326            }
327            Provenance::Wildcard => {
328                write!(f, "[wildcard]")?;
329            }
330        }
331        Ok(())
332    }
333}
334
335impl interpret::Provenance for Provenance {
336    /// We use absolute addresses in the `offset` of a `StrictPointer`.
337    const OFFSET_IS_ADDR: bool = true;
338
339    /// Miri implements wildcard provenance.
340    const WILDCARD: Option<Self> = Some(Provenance::Wildcard);
341
342    fn get_alloc_id(self) -> Option<AllocId> {
343        match self {
344            Provenance::Concrete { alloc_id, .. } => Some(alloc_id),
345            Provenance::Wildcard => None,
346        }
347    }
348
349    fn fmt(ptr: &interpret::Pointer<Self>, f: &mut fmt::Formatter<'_>) -> fmt::Result {
350        let (prov, addr) = ptr.into_raw_parts(); // offset is absolute address
351        write!(f, "{:#x}", addr.bytes())?;
352        if f.alternate() {
353            write!(f, "{prov:#?}")?;
354        } else {
355            write!(f, "{prov:?}")?;
356        }
357        Ok(())
358    }
359}
360
361impl fmt::Debug for ProvenanceExtra {
362    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
363        match self {
364            ProvenanceExtra::Concrete(pid) => write!(f, "{pid:?}"),
365            ProvenanceExtra::Wildcard => write!(f, "<wildcard>"),
366        }
367    }
368}
369
370impl ProvenanceExtra {
371    pub fn and_then<T>(self, f: impl FnOnce(BorTag) -> Option<T>) -> Option<T> {
372        match self {
373            ProvenanceExtra::Concrete(pid) => f(pid),
374            ProvenanceExtra::Wildcard => None,
375        }
376    }
377}
378
379/// Extra per-allocation data
380#[derive(Debug)]
381pub struct AllocExtra<'tcx> {
382    /// Global state of the borrow tracker, if enabled.
383    pub borrow_tracker: Option<borrow_tracker::AllocState>,
384    /// Extra state for data race detection.
385    ///
386    /// Invariant: The enum variant must match the enum variant in the `data_race` field on `MiriMachine`
387    pub data_race: AllocDataRaceHandler,
388    /// A backtrace to where this allocation was allocated.
389    /// As this is recorded for leak reports, it only exists
390    /// if this allocation is leakable. The backtrace is not
391    /// pruned yet; that should be done before printing it.
392    pub backtrace: Option<Vec<FrameInfo<'tcx>>>,
393    /// Synchronization objects like to attach extra data to particular addresses. We store that
394    /// inside the relevant allocation, to ensure that everything is removed when the allocation is
395    /// freed.
396    /// This maps offsets to synchronization-primitive-specific data.
397    pub sync_objs: BTreeMap<Size, Box<dyn SyncObj>>,
398}
399
400// We need a `Clone` impl because the machine passes `Allocation` through `Cow`...
401// but that should never end up actually cloning our `AllocExtra`.
402impl<'tcx> Clone for AllocExtra<'tcx> {
403    fn clone(&self) -> Self {
404        panic!("our allocations should never be cloned");
405    }
406}
407
408impl VisitProvenance for AllocExtra<'_> {
409    fn visit_provenance(&self, visit: &mut VisitWith<'_>) {
410        let AllocExtra { borrow_tracker, data_race, backtrace: _, sync_objs: _ } = self;
411
412        borrow_tracker.visit_provenance(visit);
413        data_race.visit_provenance(visit);
414    }
415}
416
417/// Precomputed layouts of primitive types
418pub struct PrimitiveLayouts<'tcx> {
419    pub unit: TyAndLayout<'tcx>,
420    pub i8: TyAndLayout<'tcx>,
421    pub i16: TyAndLayout<'tcx>,
422    pub i32: TyAndLayout<'tcx>,
423    pub i64: TyAndLayout<'tcx>,
424    pub i128: TyAndLayout<'tcx>,
425    pub isize: TyAndLayout<'tcx>,
426    pub u8: TyAndLayout<'tcx>,
427    pub u16: TyAndLayout<'tcx>,
428    pub u32: TyAndLayout<'tcx>,
429    pub u64: TyAndLayout<'tcx>,
430    pub u128: TyAndLayout<'tcx>,
431    pub usize: TyAndLayout<'tcx>,
432    pub bool: TyAndLayout<'tcx>,
433    pub mut_raw_ptr: TyAndLayout<'tcx>,   // *mut ()
434    pub const_raw_ptr: TyAndLayout<'tcx>, // *const ()
435}
436
437impl<'tcx> PrimitiveLayouts<'tcx> {
438    fn new(layout_cx: LayoutCx<'tcx>) -> Result<Self, &'tcx LayoutError<'tcx>> {
439        let tcx = layout_cx.tcx();
440        let mut_raw_ptr = Ty::new_mut_ptr(tcx, tcx.types.unit);
441        let const_raw_ptr = Ty::new_imm_ptr(tcx, tcx.types.unit);
442        Ok(Self {
443            unit: layout_cx.layout_of(tcx.types.unit)?,
444            i8: layout_cx.layout_of(tcx.types.i8)?,
445            i16: layout_cx.layout_of(tcx.types.i16)?,
446            i32: layout_cx.layout_of(tcx.types.i32)?,
447            i64: layout_cx.layout_of(tcx.types.i64)?,
448            i128: layout_cx.layout_of(tcx.types.i128)?,
449            isize: layout_cx.layout_of(tcx.types.isize)?,
450            u8: layout_cx.layout_of(tcx.types.u8)?,
451            u16: layout_cx.layout_of(tcx.types.u16)?,
452            u32: layout_cx.layout_of(tcx.types.u32)?,
453            u64: layout_cx.layout_of(tcx.types.u64)?,
454            u128: layout_cx.layout_of(tcx.types.u128)?,
455            usize: layout_cx.layout_of(tcx.types.usize)?,
456            bool: layout_cx.layout_of(tcx.types.bool)?,
457            mut_raw_ptr: layout_cx.layout_of(mut_raw_ptr)?,
458            const_raw_ptr: layout_cx.layout_of(const_raw_ptr)?,
459        })
460    }
461
462    pub fn uint(&self, size: Size) -> Option<TyAndLayout<'tcx>> {
463        match size.bits() {
464            8 => Some(self.u8),
465            16 => Some(self.u16),
466            32 => Some(self.u32),
467            64 => Some(self.u64),
468            128 => Some(self.u128),
469            _ => None,
470        }
471    }
472
473    pub fn int(&self, size: Size) -> Option<TyAndLayout<'tcx>> {
474        match size.bits() {
475            8 => Some(self.i8),
476            16 => Some(self.i16),
477            32 => Some(self.i32),
478            64 => Some(self.i64),
479            128 => Some(self.i128),
480            _ => None,
481        }
482    }
483}
484
485/// The machine itself.
486///
487/// If you add anything here that stores machine values, remember to update
488/// `visit_all_machine_values`!
489pub struct MiriMachine<'tcx> {
490    // We carry a copy of the global `TyCtxt` for convenience, so methods taking just `&Evaluator` have `tcx` access.
491    pub tcx: TyCtxt<'tcx>,
492
493    /// Global data for borrow tracking.
494    pub borrow_tracker: Option<borrow_tracker::GlobalState>,
495
496    /// Depending on settings, this will be `None`,
497    /// global data for a data race detector,
498    /// or the context required for running in GenMC mode.
499    ///
500    /// Invariant: The enum variant must match the enum variant of `AllocDataRaceHandler` in the `data_race` field of all `AllocExtra`.
501    pub data_race: GlobalDataRaceHandler,
502
503    /// Ptr-int-cast module global data.
504    pub alloc_addresses: alloc_addresses::GlobalState,
505
506    /// Environment variables.
507    pub(crate) env_vars: EnvVars<'tcx>,
508
509    /// Return place of the main function.
510    pub(crate) main_fn_ret_place: Option<MPlaceTy<'tcx>>,
511
512    /// Program arguments (`Option` because we can only initialize them after creating the ecx).
513    /// These are *pointers* to argc/argv because macOS.
514    /// We also need the full command line as one string because of Windows.
515    pub(crate) argc: Option<Pointer>,
516    pub(crate) argv: Option<Pointer>,
517    pub(crate) cmd_line: Option<Pointer>,
518
519    /// TLS state.
520    pub(crate) tls: TlsData<'tcx>,
521
522    /// What should Miri do when an op requires communicating with the host,
523    /// such as accessing host env vars, random number generation, and
524    /// file system access.
525    pub(crate) isolated_op: IsolatedOp,
526
527    /// Whether to enforce the validity invariant.
528    pub(crate) validation: ValidationMode,
529
530    /// The table of file descriptors.
531    pub(crate) fds: shims::FdTable,
532    /// The table of directory descriptors.
533    pub(crate) dirs: shims::DirTable,
534
535    /// The table of all active [`ReadinessWatcher`]s.
536    pub(crate) readiness_interests: ReadinessInterestTable,
537
538    /// This machine's monotone clock.
539    pub(crate) monotonic_clock: MonotonicClock,
540
541    /// The set of threads.
542    pub(crate) threads: ThreadManager<'tcx>,
543
544    /// Handles blocking I/O and polling for completion.
545    pub(crate) blocking_io: BlockingIoManager,
546
547    /// Stores which thread is eligible to run on which CPUs.
548    /// This has no effect at all, it is just tracked to produce the correct result
549    /// in `sched_getaffinity`
550    /// This will be `None` when running `#![no_core]` crates.
551    pub(crate) thread_cpu_affinity: Option<FxHashMap<ThreadId, CpuAffinityMask>>,
552
553    /// Precomputed `TyLayout`s for primitive data types that are commonly used inside Miri.
554    pub(crate) layouts: PrimitiveLayouts<'tcx>,
555
556    /// Allocations that are considered roots of static memory (that may leak).
557    pub(crate) static_roots: Vec<AllocId>,
558
559    /// The `measureme` profiler used to record timing information about
560    /// the emulated program.
561    profiler: Option<measureme::Profiler>,
562    /// Used with `profiler` to cache the `StringId`s for event names
563    /// used with `measureme`.
564    string_cache: FxHashMap<String, measureme::StringId>,
565
566    /// Cache of `Instance` exported under the given `Symbol` name.
567    /// `None` means no `Instance` exported under the given name is found.
568    pub(crate) exported_symbols_cache: FxHashMap<Symbol, Option<Instance<'tcx>>>,
569
570    /// Equivalent setting as RUST_BACKTRACE on encountering an error.
571    pub(crate) backtrace_style: BacktraceStyle,
572
573    /// Crates which are considered user-relevant for the purposes of error reporting.
574    pub(crate) user_relevant_crates: Vec<CrateNum>,
575
576    /// Mapping extern static names to their pointer.
577    pub(crate) extern_statics: FxHashMap<Symbol, StrictPointer>,
578    /// A pointer to the allocation we provide for non-existent weak symbols.
579    pub(crate) missing_weak_symbol: Option<StrictPointer>,
580
581    /// The random number generator used for resolving non-determinism.
582    /// Needs to be queried by ptr_to_int, hence needs interior mutability.
583    pub(crate) rng: RefCell<StdRng>,
584
585    /// The allocator used for the machine's `AllocBytes` in native-libs mode.
586    pub(crate) allocator: Option<Rc<RefCell<crate::alloc::isolated_alloc::IsolatedAlloc>>>,
587
588    /// The allocation IDs to report when they are being allocated
589    /// (helps for debugging memory leaks and use after free bugs).
590    pub(crate) tracked_alloc_ids: FxHashSet<AllocId>,
591    /// For the tracked alloc ids, also report read/write accesses.
592    track_alloc_accesses: bool,
593
594    /// Controls whether alignment of memory accesses is being checked.
595    pub(crate) check_alignment: AlignmentCheck,
596
597    /// Failure rate of compare_exchange_weak, between 0.0 and 1.0
598    pub(crate) cmpxchg_weak_failure_rate: f64,
599
600    /// The probability of the active thread being preempted at the end of each basic block.
601    pub(crate) preemption_rate: f64,
602
603    /// If `Some`, we will report the current stack every N basic blocks.
604    pub(crate) report_progress: Option<u32>,
605    // The total number of blocks that have been executed.
606    pub(crate) basic_block_count: u64,
607
608    /// Handle of the optional shared object file for native functions.
609    #[cfg(all(feature = "native-lib", unix))]
610    pub native_lib: Vec<(libloading::Library, std::path::PathBuf)>,
611    #[cfg(not(all(feature = "native-lib", unix)))]
612    pub native_lib: Vec<!>,
613    /// A memory location for exchanging the current `ecx` pointer with native code.
614    #[cfg(all(feature = "native-lib", unix))]
615    pub native_lib_ecx_interchange: &'static Cell<usize>,
616
617    /// Run a garbage collector for BorTags every N basic blocks.
618    pub(crate) gc_interval: u32,
619    /// The number of blocks that passed since the last BorTag GC pass.
620    pub(crate) since_gc: u32,
621
622    /// The number of CPUs to be reported by miri.
623    pub(crate) num_cpus: u32,
624
625    /// Determines Miri's page size and associated values
626    pub(crate) page_size: u64,
627    pub(crate) stack_addr: u64,
628    pub(crate) stack_size: u64,
629
630    /// Whether to collect a backtrace when each allocation is created, just in case it leaks.
631    pub(crate) collect_leak_backtraces: bool,
632
633    /// The spans we will use to report where an allocation was created and deallocated in
634    /// diagnostics.
635    pub(crate) allocation_spans: RefCell<FxHashMap<AllocId, (Span, Option<Span>)>>,
636
637    /// For each allocation, an offset inside that allocation that was deemed aligned even for
638    /// symbolic alignment checks. This cannot be stored in `AllocExtra` since it needs to be
639    /// tracked for vtables and function allocations as well as regular allocations.
640    ///
641    /// Invariant: the promised alignment will never be less than the native alignment of the
642    /// allocation.
643    pub(crate) symbolic_alignment: RefCell<FxHashMap<AllocId, (Size, Align)>>,
644
645    /// A cache of "data range" computations for unions (i.e., the offsets of non-padding bytes).
646    union_data_ranges: FxHashMap<Ty<'tcx>, RangeSet>,
647
648    /// Caches the sanity-checks for various pthread primitives.
649    pub(crate) pthread_mutex_sanity: Cell<bool>,
650    pub(crate) pthread_rwlock_sanity: Cell<bool>,
651    pub(crate) pthread_condvar_sanity: Cell<bool>,
652
653    /// (Foreign) symbols that are synthesized as part of the allocator shim: the key indicates the
654    /// name of the symbol being synthesized; the value indicates whether this should invoke some
655    /// other symbol or whether this has special allocator semantics.
656    pub(crate) allocator_shim_symbols: FxHashMap<Symbol, Either<Symbol, SpecialAllocatorMethod>>,
657    /// Cache for `mangle_internal_symbol`.
658    pub(crate) mangle_internal_symbol_cache: FxHashMap<&'static str, String>,
659
660    /// Whether floating-point operations can behave non-deterministically.
661    pub float_nondet: bool,
662    /// Whether floating-point operations can have a non-deterministic rounding error.
663    pub float_rounding_error: FloatRoundingErrorMode,
664
665    /// Whether Miri artificially introduces short reads/writes on file descriptors.
666    pub short_fd_operations: bool,
667}
668
669impl<'tcx> MiriMachine<'tcx> {
670    /// Create a new MiriMachine.
671    ///
672    /// Invariant: `genmc_ctx.is_some() == config.genmc_config.is_some()`
673    pub(crate) fn new(
674        config: &MiriConfig,
675        layout_cx: LayoutCx<'tcx>,
676        genmc_ctx: Option<Rc<GenmcCtx>>,
677    ) -> Self {
678        let tcx = layout_cx.tcx();
679        let user_relevant_crates = Self::get_user_relevant_crates(tcx, config);
680        let layouts =
681            PrimitiveLayouts::new(layout_cx).expect("Couldn't get layouts of primitive types");
682        let profiler = config.measureme_out.as_ref().map(|out| {
683            let crate_name =
684                tcx.sess.opts.crate_name.clone().unwrap_or_else(|| "unknown-crate".to_string());
685            let pid = process::id();
686            // We adopt the same naming scheme for the profiler output that rustc uses. In rustc,
687            // the PID is padded so that the nondeterministic value of the PID does not spread
688            // nondeterminism to the allocator. In Miri we are not aiming for such performance
689            // control, we just pad for consistency with rustc.
690            let filename = format!("{crate_name}-{pid:07}");
691            let path = Path::new(out).join(filename);
692            measureme::Profiler::new(path).expect("Couldn't create `measureme` profiler")
693        });
694        let rng = StdRng::seed_from_u64(config.seed.unwrap_or(0));
695        let borrow_tracker = config.borrow_tracker.map(|bt| bt.instantiate_global_state(config));
696        let data_race = if config.genmc_config.is_some() {
697            // `genmc_ctx` persists across executions, so we don't create a new one here.
698            GlobalDataRaceHandler::Genmc(genmc_ctx.unwrap())
699        } else if config.data_race_detector {
700            GlobalDataRaceHandler::Vclocks(Box::new(data_race::GlobalState::new(config)))
701        } else {
702            GlobalDataRaceHandler::None
703        };
704        // Determine page size, stack address, and stack size.
705        // These values are mostly meaningless, but the stack address is also where we start
706        // allocating physical integer addresses for all allocations.
707        let page_size = if let Some(page_size) = config.page_size {
708            page_size
709        } else {
710            let target = &tcx.sess.target;
711            match target.arch {
712                Arch::Wasm32 | Arch::Wasm64 => 64 * 1024, // https://webassembly.github.io/spec/core/exec/runtime.html#memory-instances
713                Arch::AArch64 => {
714                    if target.is_like_darwin {
715                        // No "definitive" source, but see:
716                        // https://www.wwdcnotes.com/notes/wwdc20/10214/
717                        // https://github.com/ziglang/zig/issues/11308 etc.
718                        16 * 1024
719                    } else {
720                        4 * 1024
721                    }
722                }
723                _ => 4 * 1024,
724            }
725        };
726        // On 16bit targets, 32 pages is more than the entire address space!
727        let stack_addr = if tcx.pointer_size().bits() < 32 { page_size } else { page_size * 32 };
728        let stack_size =
729            if tcx.pointer_size().bits() < 32 { page_size * 4 } else { page_size * 16 };
730        assert!(
731            usize::try_from(config.num_cpus).unwrap() <= cpu_affinity::MAX_CPUS,
732            "miri only supports up to {} CPUs, but {} were configured",
733            cpu_affinity::MAX_CPUS,
734            config.num_cpus
735        );
736        let threads = ThreadManager::new(config);
737        let thread_cpu_affinity =
738            if matches!(&tcx.sess.target.os, Os::Linux | Os::FreeBsd | Os::Android)
739                && !is_no_core(tcx)
740            {
741                let mut affinity = FxHashMap::default();
742                affinity.insert(
743                    threads.active_thread(),
744                    CpuAffinityMask::new(&layout_cx, config.num_cpus),
745                );
746                Some(affinity)
747            } else {
748                None
749            };
750        let blocking_io = BlockingIoManager::new(config.isolated_op == IsolatedOp::Allow)
751            .expect("Couldn't create poll instance");
752        let alloc_addresses =
753            RefCell::new(alloc_addresses::GlobalStateInner::new(config, stack_addr, tcx));
754
755        MiriMachine {
756            tcx,
757            borrow_tracker,
758            data_race,
759            alloc_addresses,
760            // `env_vars` depends on a full interpreter so we cannot properly initialize it yet.
761            env_vars: EnvVars::default(),
762            main_fn_ret_place: None,
763            argc: None,
764            argv: None,
765            cmd_line: None,
766            tls: TlsData::default(),
767            isolated_op: config.isolated_op,
768            validation: config.validation,
769            fds: shims::FdTable::init(config.mute_stdout_stderr),
770            readiness_interests: ReadinessInterestTable::new(),
771            dirs: Default::default(),
772            layouts,
773            threads,
774            thread_cpu_affinity,
775            blocking_io,
776            static_roots: Vec::new(),
777            profiler,
778            string_cache: Default::default(),
779            exported_symbols_cache: FxHashMap::default(),
780            backtrace_style: config.backtrace_style,
781            user_relevant_crates,
782            extern_statics: FxHashMap::default(),
783            missing_weak_symbol: None,
784            rng: RefCell::new(rng),
785            allocator: (!config.native_lib.is_empty())
786                .then(|| Rc::new(RefCell::new(crate::alloc::isolated_alloc::IsolatedAlloc::new()))),
787            tracked_alloc_ids: config.tracked_alloc_ids.clone(),
788            track_alloc_accesses: config.track_alloc_accesses,
789            check_alignment: config.check_alignment,
790            cmpxchg_weak_failure_rate: config.cmpxchg_weak_failure_rate,
791            preemption_rate: config.preemption_rate,
792            report_progress: config.report_progress,
793            basic_block_count: 0,
794            monotonic_clock: MonotonicClock::new(config.isolated_op == IsolatedOp::Allow),
795            #[cfg(all(feature = "native-lib", unix))]
796            native_lib: config.native_lib.iter().map(|lib_file_path| {
797                let host_triple = rustc_session::config::host_tuple();
798                let target_triple = tcx.sess.opts.target_triple.tuple();
799                // Check if host target == the session target.
800                if host_triple != target_triple {
801                    panic!(
802                        "calling native C functions in linked .so file requires host and target to be the same: \
803                        host={host_triple}, target={target_triple}",
804                    );
805                }
806                // Note: it is the user's responsibility to provide a correct SO file.
807                // WATCH OUT: If an invalid/incorrect SO file is specified, this can cause
808                // undefined behaviour in Miri itself!
809                (
810                    unsafe {
811                        libloading::Library::new(lib_file_path)
812                            .expect("failed to read specified extern shared object file")
813                    },
814                    lib_file_path.clone(),
815                )
816            }).collect(),
817            #[cfg(all(feature = "native-lib", unix))]
818            native_lib_ecx_interchange: Box::leak(Box::new(Cell::new(0))),
819            #[cfg(not(all(feature = "native-lib", unix)))]
820            native_lib: config.native_lib.iter().map(|_| {
821                panic!("calling functions from native libraries via FFI is not supported in this build of Miri")
822            }).collect(),
823            gc_interval: config.gc_interval,
824            since_gc: 0,
825            num_cpus: config.num_cpus,
826            page_size,
827            stack_addr,
828            stack_size,
829            collect_leak_backtraces: config.collect_leak_backtraces,
830            allocation_spans: RefCell::new(FxHashMap::default()),
831            symbolic_alignment: RefCell::new(FxHashMap::default()),
832            union_data_ranges: FxHashMap::default(),
833            pthread_mutex_sanity: Cell::new(false),
834            pthread_rwlock_sanity: Cell::new(false),
835            pthread_condvar_sanity: Cell::new(false),
836            allocator_shim_symbols: Self::allocator_shim_symbols(tcx),
837            mangle_internal_symbol_cache: Default::default(),
838            float_nondet: config.float_nondet,
839            float_rounding_error: config.float_rounding_error,
840            short_fd_operations: config.short_fd_operations,
841        }
842    }
843
844    fn allocator_shim_symbols(
845        tcx: TyCtxt<'tcx>,
846    ) -> FxHashMap<Symbol, Either<Symbol, SpecialAllocatorMethod>> {
847        use rustc_codegen_ssa::base::allocator_shim_contents;
848
849        // codegen uses `allocator_kind_for_codegen` here, but that's only needed to deal with
850        // dylibs which we do not support.
851        let Some(kind) = tcx.allocator_kind(()) else {
852            return Default::default();
853        };
854        let methods = allocator_shim_contents(tcx, kind);
855        let mut symbols = FxHashMap::default();
856        for method in methods {
857            let from_name = Symbol::intern(&mangle_internal_symbol(
858                tcx,
859                &allocator::global_fn_name(method.name),
860            ));
861            let to = match method.special {
862                Some(special) => Either::Right(special),
863                None =>
864                    Either::Left(Symbol::intern(&mangle_internal_symbol(
865                        tcx,
866                        &allocator::default_fn_name(method.name),
867                    ))),
868            };
869            symbols.try_insert(from_name, to).unwrap();
870        }
871        symbols
872    }
873
874    /// Retrieve the list of user-relevant crates based on MIRI_LOCAL_CRATES as set by cargo-miri,
875    /// and extra crates set in the config.
876    fn get_user_relevant_crates(tcx: TyCtxt<'_>, config: &MiriConfig) -> Vec<CrateNum> {
877        // Convert the local crate names from the passed-in config into CrateNums so that they can
878        // be looked up quickly during execution
879        let local_crate_names = std::env::var("MIRI_LOCAL_CRATES")
880            .map(|crates| crates.split(',').map(|krate| krate.to_string()).collect::<Vec<_>>())
881            .unwrap_or_default();
882        let mut local_crates = Vec::new();
883        for &crate_num in tcx.crates(()) {
884            let name = tcx.crate_name(crate_num);
885            let name = name.as_str();
886            if local_crate_names
887                .iter()
888                .chain(&config.user_relevant_crates)
889                .any(|local_name| local_name == name)
890            {
891                local_crates.push(crate_num);
892            }
893        }
894        local_crates
895    }
896
897    pub(crate) fn late_init(
898        ecx: &mut MiriInterpCx<'tcx>,
899        config: &MiriConfig,
900        on_main_stack_empty: StackEmptyCallback<'tcx>,
901    ) -> InterpResult<'tcx> {
902        EnvVars::init(ecx, config)?;
903        MiriMachine::init_extern_statics(ecx)?;
904        ThreadManager::init(ecx, on_main_stack_empty);
905        interp_ok(())
906    }
907
908    pub(crate) fn add_extern_static(ecx: &mut MiriInterpCx<'tcx>, name: &str, ptr: Pointer) {
909        // This got just allocated, so there definitely is a pointer here.
910        let ptr = ptr.into_pointer_or_addr().unwrap();
911        ecx.machine.extern_statics.try_insert(Symbol::intern(name), ptr).unwrap();
912    }
913
914    pub(crate) fn communicate(&self) -> bool {
915        self.isolated_op == IsolatedOp::Allow
916    }
917
918    /// Check whether the stack frame that this `FrameInfo` refers to is part of a local crate.
919    pub(crate) fn is_local(&self, instance: ty::Instance<'tcx>) -> bool {
920        let def_id = instance.def_id();
921        def_id.is_local() || self.user_relevant_crates.contains(&def_id.krate)
922    }
923
924    /// Called when the interpreter is going to shut down abnormally, such as due to a Ctrl-C.
925    pub(crate) fn handle_abnormal_termination(&mut self) {
926        // All strings in the profile data are stored in a single string table which is not
927        // written to disk until the profiler is dropped. If the interpreter exits without dropping
928        // the profiler, it is not possible to interpret the profile data and all measureme tools
929        // will panic when given the file.
930        drop(self.profiler.take());
931    }
932
933    pub(crate) fn page_align(&self) -> Align {
934        Align::from_bytes(self.page_size).unwrap()
935    }
936
937    pub(crate) fn allocated_span(&self, alloc_id: AllocId) -> Option<SpanData> {
938        self.allocation_spans
939            .borrow()
940            .get(&alloc_id)
941            .map(|(allocated, _deallocated)| allocated.data())
942    }
943
944    pub(crate) fn deallocated_span(&self, alloc_id: AllocId) -> Option<SpanData> {
945        self.allocation_spans
946            .borrow()
947            .get(&alloc_id)
948            .and_then(|(_allocated, deallocated)| *deallocated)
949            .map(Span::data)
950    }
951
952    fn init_allocation(
953        ecx: &MiriInterpCx<'tcx>,
954        id: AllocId,
955        kind: MemoryKind,
956        size: Size,
957        align: Align,
958    ) -> InterpResult<'tcx, AllocExtra<'tcx>> {
959        if ecx.machine.tracked_alloc_ids.contains(&id) {
960            ecx.emit_diagnostic(NonHaltingDiagnostic::TrackingAlloc(id, size, align));
961        }
962
963        let borrow_tracker = ecx
964            .machine
965            .borrow_tracker
966            .as_ref()
967            .map(|bt| bt.borrow_mut().new_allocation(id, size, kind, &ecx.machine));
968
969        let data_race = match &ecx.machine.data_race {
970            GlobalDataRaceHandler::None => AllocDataRaceHandler::None,
971            GlobalDataRaceHandler::Vclocks(data_race) =>
972                AllocDataRaceHandler::Vclocks(
973                    data_race::AllocState::new_allocation(
974                        data_race,
975                        &ecx.machine.threads,
976                        size,
977                        kind,
978                        ecx.machine.current_user_relevant_span(),
979                    ),
980                    data_race.weak_memory.then(weak_memory::AllocState::new_allocation),
981                ),
982            GlobalDataRaceHandler::Genmc(_genmc_ctx) => {
983                // GenMC learns about new allocations directly from the alloc_addresses module,
984                // since it has to be able to control the address at which they are placed.
985                AllocDataRaceHandler::Genmc
986            }
987        };
988
989        // If an allocation is leaked, we want to report a backtrace to indicate where it was
990        // allocated. We don't need to record a backtrace for allocations which are allowed to
991        // leak.
992        let backtrace = if kind.may_leak() || !ecx.machine.collect_leak_backtraces {
993            None
994        } else {
995            Some(ecx.generate_stacktrace())
996        };
997
998        if matches!(kind, MemoryKind::Machine(kind) if kind.should_save_allocation_span()) {
999            ecx.machine
1000                .allocation_spans
1001                .borrow_mut()
1002                .insert(id, (ecx.machine.current_user_relevant_span(), None));
1003        }
1004
1005        interp_ok(AllocExtra {
1006            borrow_tracker,
1007            data_race,
1008            backtrace,
1009            sync_objs: BTreeMap::default(),
1010        })
1011    }
1012}
1013
1014impl VisitProvenance for MiriMachine<'_> {
1015    fn visit_provenance(&self, visit: &mut VisitWith<'_>) {
1016        #[rustfmt::skip]
1017        let MiriMachine {
1018            threads,
1019            thread_cpu_affinity: _,
1020            tls,
1021            env_vars,
1022            main_fn_ret_place,
1023            argc,
1024            argv,
1025            cmd_line,
1026            extern_statics,
1027            missing_weak_symbol,
1028            dirs,
1029            borrow_tracker,
1030            data_race,
1031            alloc_addresses,
1032            fds,
1033            blocking_io:_,
1034            readiness_interests: _,
1035            tcx: _,
1036            isolated_op: _,
1037            validation: _,
1038            monotonic_clock: _,
1039            layouts: _,
1040            static_roots: _,
1041            profiler: _,
1042            string_cache: _,
1043            exported_symbols_cache: _,
1044            backtrace_style: _,
1045            user_relevant_crates: _,
1046            rng: _,
1047            allocator: _,
1048            tracked_alloc_ids: _,
1049            track_alloc_accesses: _,
1050            check_alignment: _,
1051            cmpxchg_weak_failure_rate: _,
1052            preemption_rate: _,
1053            report_progress: _,
1054            basic_block_count: _,
1055            native_lib: _,
1056            #[cfg(all(feature = "native-lib", unix))]
1057            native_lib_ecx_interchange: _,
1058            gc_interval: _,
1059            since_gc: _,
1060            num_cpus: _,
1061            page_size: _,
1062            stack_addr: _,
1063            stack_size: _,
1064            collect_leak_backtraces: _,
1065            allocation_spans: _,
1066            symbolic_alignment: _,
1067            union_data_ranges: _,
1068            pthread_mutex_sanity: _,
1069            pthread_rwlock_sanity: _,
1070            pthread_condvar_sanity: _,
1071            allocator_shim_symbols: _,
1072            mangle_internal_symbol_cache: _,
1073            float_nondet: _,
1074            float_rounding_error: _,
1075            short_fd_operations: _,
1076        } = self;
1077
1078        threads.visit_provenance(visit);
1079        tls.visit_provenance(visit);
1080        env_vars.visit_provenance(visit);
1081        dirs.visit_provenance(visit);
1082        fds.visit_provenance(visit);
1083        data_race.visit_provenance(visit);
1084        borrow_tracker.visit_provenance(visit);
1085        alloc_addresses.visit_provenance(visit);
1086        main_fn_ret_place.visit_provenance(visit);
1087        argc.visit_provenance(visit);
1088        argv.visit_provenance(visit);
1089        cmd_line.visit_provenance(visit);
1090        missing_weak_symbol.visit_provenance(visit);
1091        for ptr in extern_statics.values() {
1092            ptr.visit_provenance(visit);
1093        }
1094    }
1095}
1096
1097/// A rustc InterpCx for Miri.
1098pub type MiriInterpCx<'tcx> = InterpCx<'tcx, MiriMachine<'tcx>>;
1099
1100/// A little trait that's useful to be inherited by extension traits.
1101pub trait MiriInterpCxExt<'tcx> {
1102    fn eval_context_ref<'a>(&'a self) -> &'a MiriInterpCx<'tcx>;
1103    fn eval_context_mut<'a>(&'a mut self) -> &'a mut MiriInterpCx<'tcx>;
1104}
1105impl<'tcx> MiriInterpCxExt<'tcx> for MiriInterpCx<'tcx> {
1106    #[inline(always)]
1107    fn eval_context_ref(&self) -> &MiriInterpCx<'tcx> {
1108        self
1109    }
1110    #[inline(always)]
1111    fn eval_context_mut(&mut self) -> &mut MiriInterpCx<'tcx> {
1112        self
1113    }
1114}
1115
1116/// Machine hook implementations.
1117impl<'tcx> Machine<'tcx> for MiriMachine<'tcx> {
1118    type MemoryKind = MiriMemoryKind;
1119    type ExtraFnVal = DynSym;
1120
1121    type FrameExtra = FrameExtra<'tcx>;
1122    type AllocExtra = AllocExtra<'tcx>;
1123
1124    type Provenance = Provenance;
1125    type ProvenanceExtra = ProvenanceExtra;
1126    type Bytes = MiriAllocBytes;
1127
1128    type MemoryMap =
1129        MonoHashMap<AllocId, (MemoryKind, Allocation<Provenance, Self::AllocExtra, Self::Bytes>)>;
1130
1131    const GLOBAL_KIND: Option<MiriMemoryKind> = Some(MiriMemoryKind::Global);
1132
1133    const PANIC_ON_ALLOC_FAIL: bool = false;
1134
1135    #[inline(always)]
1136    fn enforce_alignment(ecx: &MiriInterpCx<'tcx>) -> bool {
1137        ecx.machine.check_alignment != AlignmentCheck::None
1138    }
1139
1140    #[inline(always)]
1141    fn alignment_check(
1142        ecx: &MiriInterpCx<'tcx>,
1143        alloc_id: AllocId,
1144        alloc_align: Align,
1145        alloc_kind: AllocKind,
1146        offset: Size,
1147        align: Align,
1148    ) -> Option<Misalignment> {
1149        if ecx.machine.check_alignment != AlignmentCheck::Symbolic {
1150            // Just use the built-in check.
1151            return None;
1152        }
1153        if alloc_kind != AllocKind::LiveData {
1154            // Can't have any extra info here.
1155            return None;
1156        }
1157        // Let's see which alignment we have been promised for this allocation.
1158        let (promised_offset, promised_align) = ecx
1159            .machine
1160            .symbolic_alignment
1161            .borrow()
1162            .get(&alloc_id)
1163            .copied()
1164            .unwrap_or((Size::ZERO, alloc_align));
1165        if promised_align < align {
1166            // Definitely not enough.
1167            Some(Misalignment { has: promised_align, required: align })
1168        } else {
1169            // What's the offset between us and the promised alignment?
1170            let distance = offset.bytes().wrapping_sub(promised_offset.bytes());
1171            // That must also be aligned.
1172            if distance.is_multiple_of(align.bytes()) {
1173                // All looking good!
1174                None
1175            } else {
1176                // The biggest power of two through which `distance` is divisible.
1177                let distance_pow2 = 1 << distance.trailing_zeros();
1178                Some(Misalignment {
1179                    has: Align::from_bytes(distance_pow2).unwrap(),
1180                    required: align,
1181                })
1182            }
1183        }
1184    }
1185
1186    #[inline(always)]
1187    fn enforce_validity(ecx: &MiriInterpCx<'tcx>, _layout: TyAndLayout<'tcx>) -> bool {
1188        ecx.machine.validation != ValidationMode::No
1189    }
1190    #[inline(always)]
1191    fn enforce_validity_recursively(
1192        ecx: &InterpCx<'tcx, Self>,
1193        _layout: TyAndLayout<'tcx>,
1194    ) -> bool {
1195        ecx.machine.validation == ValidationMode::Deep
1196    }
1197
1198    #[inline(always)]
1199    fn ignore_optional_overflow_checks(ecx: &MiriInterpCx<'tcx>) -> bool {
1200        !ecx.tcx.sess.overflow_checks()
1201    }
1202
1203    fn check_fn_target_features(
1204        ecx: &MiriInterpCx<'tcx>,
1205        instance: ty::Instance<'tcx>,
1206    ) -> InterpResult<'tcx> {
1207        let attrs = ecx.tcx.codegen_instance_attrs(instance.def);
1208        if attrs
1209            .target_features
1210            .iter()
1211            .any(|feature| !ecx.tcx.sess.target_features.contains(&feature.name))
1212        {
1213            let unavailable = attrs
1214                .target_features
1215                .iter()
1216                .filter(|&feature| {
1217                    feature.kind != TargetFeatureKind::Implied
1218                        && !ecx.tcx.sess.target_features.contains(&feature.name)
1219                })
1220                .fold(String::new(), |mut s, feature| {
1221                    if !s.is_empty() {
1222                        s.push_str(", ");
1223                    }
1224                    s.push_str(feature.name.as_str());
1225                    s
1226                });
1227            let msg = format!(
1228                "calling a function that requires unavailable target features: {unavailable}"
1229            );
1230            // On WASM, this is not UB, but instead gets rejected during validation of the module
1231            // (see #84988).
1232            if ecx.tcx.sess.target.is_like_wasm {
1233                throw_machine_stop!(TerminationInfo::Abort(msg));
1234            } else {
1235                throw_ub_format!("{msg}");
1236            }
1237        }
1238        interp_ok(())
1239    }
1240
1241    #[inline(always)]
1242    fn find_mir_or_eval_fn(
1243        ecx: &mut MiriInterpCx<'tcx>,
1244        instance: ty::Instance<'tcx>,
1245        abi: &FnAbi<'tcx, Ty<'tcx>>,
1246        args: &[FnArg<'tcx>],
1247        dest: &PlaceTy<'tcx>,
1248        ret: Option<mir::BasicBlock>,
1249        unwind: mir::UnwindAction,
1250    ) -> InterpResult<'tcx, Option<(&'tcx mir::Body<'tcx>, ty::Instance<'tcx>)>> {
1251        // For foreign items, try to see if we can emulate them.
1252        if ecx.tcx.is_foreign_item(instance.def_id()) {
1253            let _trace = enter_trace_span!("emulate_foreign_item");
1254            // An external function call that does not have a MIR body. We either find MIR elsewhere
1255            // or emulate its effect.
1256            // This will be Ok(None) if we're emulating the intrinsic entirely within Miri (no need
1257            // to run extra MIR), and Ok(Some(body)) if we found MIR to run for the
1258            // foreign function
1259            // Any needed call to `goto_block` will be performed by `emulate_foreign_item`.
1260            let args = MiriInterpCx::copy_fn_args(args); // FIXME: Should `InPlace` arguments be reset to uninit?
1261            let link_name = Symbol::intern(ecx.tcx.symbol_name(instance).name);
1262            return ecx.emulate_foreign_item(link_name, abi, &args, dest, ret, unwind);
1263        }
1264
1265        if ecx.machine.data_race.as_genmc_ref().is_some()
1266            && ecx.genmc_intercept_function(instance, args, dest)?
1267        {
1268            ecx.return_to_block(ret)?;
1269            return interp_ok(None);
1270        }
1271
1272        // Otherwise, load the MIR.
1273        let _trace = enter_trace_span!("load_mir");
1274        interp_ok(Some((ecx.load_mir(instance.def, None)?, instance)))
1275    }
1276
1277    #[inline(always)]
1278    fn call_extra_fn(
1279        ecx: &mut MiriInterpCx<'tcx>,
1280        fn_val: DynSym,
1281        abi: &FnAbi<'tcx, Ty<'tcx>>,
1282        args: &[FnArg<'tcx>],
1283        dest: &PlaceTy<'tcx>,
1284        ret: Option<mir::BasicBlock>,
1285        unwind: mir::UnwindAction,
1286    ) -> InterpResult<'tcx> {
1287        let args = MiriInterpCx::copy_fn_args(args); // FIXME: Should `InPlace` arguments be reset to uninit?
1288        ecx.emulate_dyn_sym(fn_val, abi, &args, dest, ret, unwind)
1289    }
1290
1291    #[inline(always)]
1292    fn call_intrinsic(
1293        ecx: &mut MiriInterpCx<'tcx>,
1294        instance: ty::Instance<'tcx>,
1295        args: &[OpTy<'tcx>],
1296        dest: &PlaceTy<'tcx>,
1297        ret: Option<mir::BasicBlock>,
1298        unwind: mir::UnwindAction,
1299    ) -> InterpResult<'tcx, Option<ty::Instance<'tcx>>> {
1300        ecx.call_intrinsic(instance, args, dest, ret, unwind)
1301    }
1302
1303    #[inline(always)]
1304    fn assert_panic(
1305        ecx: &mut MiriInterpCx<'tcx>,
1306        msg: &mir::AssertMessage<'tcx>,
1307        unwind: mir::UnwindAction,
1308    ) -> InterpResult<'tcx> {
1309        ecx.assert_panic(msg, unwind)
1310    }
1311
1312    fn panic_nounwind(ecx: &mut InterpCx<'tcx, Self>, msg: &str) -> InterpResult<'tcx> {
1313        ecx.start_panic_nounwind(msg)
1314    }
1315
1316    fn unwind_terminate(
1317        ecx: &mut InterpCx<'tcx, Self>,
1318        reason: mir::UnwindTerminateReason,
1319    ) -> InterpResult<'tcx> {
1320        // Call the lang item.
1321        let panic = ecx.tcx.lang_items().get(reason.lang_item()).unwrap();
1322        let panic = ty::Instance::mono(ecx.tcx.tcx, panic);
1323        ecx.call_function(
1324            panic,
1325            ExternAbi::Rust,
1326            &[],
1327            None,
1328            ReturnContinuation::Goto { ret: None, unwind: mir::UnwindAction::Unreachable },
1329        )?;
1330        interp_ok(())
1331    }
1332
1333    #[inline(always)]
1334    fn binary_ptr_op(
1335        ecx: &MiriInterpCx<'tcx>,
1336        bin_op: mir::BinOp,
1337        left: &ImmTy<'tcx>,
1338        right: &ImmTy<'tcx>,
1339    ) -> InterpResult<'tcx, ImmTy<'tcx>> {
1340        ecx.binary_ptr_op(bin_op, left, right)
1341    }
1342
1343    #[inline(always)]
1344    fn generate_nan<F1: Float + FloatConvert<F2>, F2: Float>(
1345        ecx: &InterpCx<'tcx, Self>,
1346        inputs: &[F1],
1347    ) -> F2 {
1348        ecx.generate_nan(inputs)
1349    }
1350
1351    #[inline(always)]
1352    fn apply_float_nondet(
1353        ecx: &mut InterpCx<'tcx, Self>,
1354        val: ImmTy<'tcx>,
1355    ) -> InterpResult<'tcx, ImmTy<'tcx>> {
1356        crate::math::apply_random_float_error_to_imm(ecx, val, 4)
1357    }
1358
1359    #[inline(always)]
1360    fn equal_float_min_max<F: Float>(ecx: &MiriInterpCx<'tcx>, a: F, b: F) -> F {
1361        ecx.equal_float_min_max(a, b)
1362    }
1363
1364    #[inline(always)]
1365    fn float_fuse_mul_add(ecx: &InterpCx<'tcx, Self>) -> bool {
1366        ecx.machine.float_nondet && ecx.machine.rng.borrow_mut().random()
1367    }
1368
1369    #[inline(always)]
1370    fn runtime_checks(
1371        ecx: &InterpCx<'tcx, Self>,
1372        r: mir::RuntimeChecks,
1373    ) -> InterpResult<'tcx, bool> {
1374        interp_ok(r.value(ecx.tcx.sess))
1375    }
1376
1377    #[inline(always)]
1378    fn thread_local_static_pointer(
1379        ecx: &mut MiriInterpCx<'tcx>,
1380        def_id: DefId,
1381    ) -> InterpResult<'tcx, StrictPointer> {
1382        ecx.get_or_create_thread_local_alloc(def_id)
1383    }
1384
1385    fn extern_static_pointer(
1386        ecx: &MiriInterpCx<'tcx>,
1387        def_id: DefId,
1388    ) -> InterpResult<'tcx, StrictPointer> {
1389        let link_name = Symbol::intern(ecx.tcx.symbol_name(Instance::mono(*ecx.tcx, def_id)).name);
1390        let def_ty = ecx.tcx.type_of(def_id).instantiate_identity().skip_norm_wip();
1391        let extern_decl_layout =
1392            ecx.tcx.layout_of(ecx.typing_env().as_query_input(def_ty)).unwrap();
1393
1394        if let Some(&ptr) = ecx.machine.extern_statics.get(&link_name) {
1395            // Various parts of the engine rely on `get_alloc_info` for size and alignment
1396            // information. That uses the type information of this static.
1397            // Make sure it matches the Miri allocation for this.
1398            let Provenance::Concrete { alloc_id, .. } = ptr.provenance else {
1399                panic!("extern_statics cannot contain wildcards")
1400            };
1401            let info = ecx.get_alloc_info(alloc_id);
1402            if extern_decl_layout.size != info.size || extern_decl_layout.align.abi != info.align {
1403                throw_unsup_format!(
1404                    "extern static `{link_name}` has been declared as `{krate}::{name}` \
1405                    with a size of {decl_size} bytes and alignment of {decl_align} bytes, \
1406                    but Miri emulates it via an extern static shim \
1407                    with a size of {shim_size} bytes and alignment of {shim_align} bytes",
1408                    name = ecx.tcx.def_path_str(def_id),
1409                    krate = ecx.tcx.crate_name(def_id.krate),
1410                    decl_size = extern_decl_layout.size.bytes(),
1411                    decl_align = extern_decl_layout.align.bytes(),
1412                    shim_size = info.size.bytes(),
1413                    shim_align = info.align.bytes(),
1414                )
1415            }
1416            interp_ok(ptr)
1417        } else if ecx.tcx.codegen_fn_attrs(def_id).import_linkage == Some(Linkage::ExternalWeak) {
1418            // Symbols with weak linkage default to null if they are not defined. However we can't
1419            // create new allocations here. On the plus side we know rustc rejects non-ptr-sized
1420            // weak statics so we can just use a single global "null" allocation for all of them.
1421            // The memory we are assigning this address to is anyway somewhat "fake", it's an
1422            // indirection introduced by how Rust represents external symbols with linkage (see
1423            // <https://github.com/rust-lang/rust/issues/156468>). So we can just specify that such
1424            // memory does not have unique addresses, despite being technically a `static`.
1425            assert_eq!(
1426                extern_decl_layout.size,
1427                ecx.tcx.data_layout.pointer_size(),
1428                "non-pointer-sized weak static"
1429            );
1430            interp_ok(
1431                ecx.machine
1432                    .missing_weak_symbol
1433                    .expect("`missing_weak_symbol` should have been initialized"),
1434            )
1435        } else {
1436            throw_unsup_format!("extern static `{link_name}` is not supported by Miri")
1437        }
1438    }
1439
1440    fn init_local_allocation(
1441        ecx: &MiriInterpCx<'tcx>,
1442        id: AllocId,
1443        kind: MemoryKind,
1444        size: Size,
1445        align: Align,
1446    ) -> InterpResult<'tcx, Self::AllocExtra> {
1447        assert!(kind != MiriMemoryKind::Global.into());
1448        MiriMachine::init_allocation(ecx, id, kind, size, align)
1449    }
1450
1451    fn adjust_alloc_root_pointer(
1452        ecx: &MiriInterpCx<'tcx>,
1453        ptr: interpret::Pointer<CtfeProvenance>,
1454        kind: Option<MemoryKind>,
1455    ) -> InterpResult<'tcx, interpret::Pointer<Provenance>> {
1456        let kind = kind.expect("we set our GLOBAL_KIND so this cannot be None");
1457        let alloc_id = ptr.provenance.alloc_id();
1458        if cfg!(debug_assertions) {
1459            // The machine promises to never call us on thread-local or extern statics.
1460            match ecx.tcx.try_get_global_alloc(alloc_id) {
1461                Some(GlobalAlloc::Static(def_id)) if ecx.tcx.is_thread_local_static(def_id) => {
1462                    panic!("adjust_alloc_root_pointer called on thread-local static")
1463                }
1464                Some(GlobalAlloc::Static(def_id)) if ecx.tcx.is_foreign_item(def_id) => {
1465                    panic!("adjust_alloc_root_pointer called on extern static")
1466                }
1467                _ => {}
1468            }
1469        }
1470        // FIXME: can we somehow preserve the immutability of `ptr`?
1471        let tag = if let Some(borrow_tracker) = &ecx.machine.borrow_tracker {
1472            borrow_tracker.borrow_mut().root_ptr_tag(alloc_id, &ecx.machine)
1473        } else {
1474            // Value does not matter, SB is disabled
1475            BorTag::default()
1476        };
1477        ecx.adjust_alloc_root_pointer(ptr, tag, kind)
1478    }
1479
1480    /// Called on `usize as ptr` casts.
1481    #[inline(always)]
1482    fn ptr_from_addr_cast(ecx: &MiriInterpCx<'tcx>, addr: u64) -> InterpResult<'tcx, Pointer> {
1483        ecx.ptr_from_addr_cast(addr)
1484    }
1485
1486    /// Called on `ptr as usize` casts.
1487    /// (Actually computing the resulting `usize` doesn't need machine help,
1488    /// that's just `Scalar::try_to_int`.)
1489    #[inline(always)]
1490    fn expose_provenance(
1491        ecx: &InterpCx<'tcx, Self>,
1492        provenance: Self::Provenance,
1493    ) -> InterpResult<'tcx> {
1494        ecx.expose_provenance(provenance)
1495    }
1496
1497    /// Convert a pointer with provenance into an allocation-offset pair and extra provenance info.
1498    /// `size` says how many bytes of memory are expected at that pointer. The *sign* of `size` can
1499    /// be used to disambiguate situations where a wildcard pointer sits right in between two
1500    /// allocations.
1501    ///
1502    /// If `ptr.provenance.get_alloc_id()` is `Some(p)`, the returned `AllocId` must be `p`.
1503    /// The resulting `AllocId` will just be used for that one step and the forgotten again
1504    /// (i.e., we'll never turn the data returned here back into a `Pointer` that might be
1505    /// stored in machine state).
1506    ///
1507    /// When this fails, that means the pointer does not point to a live allocation.
1508    fn ptr_get_alloc(
1509        ecx: &MiriInterpCx<'tcx>,
1510        ptr: StrictPointer,
1511        size: i64,
1512    ) -> Option<(AllocId, Size, Self::ProvenanceExtra)> {
1513        let rel = ecx.ptr_get_alloc(ptr, size);
1514
1515        rel.map(|(alloc_id, size)| {
1516            let tag = match ptr.provenance {
1517                Provenance::Concrete { tag, .. } => ProvenanceExtra::Concrete(tag),
1518                Provenance::Wildcard => ProvenanceExtra::Wildcard,
1519            };
1520            (alloc_id, size, tag)
1521        })
1522    }
1523
1524    /// Called to adjust global allocations to the Provenance and AllocExtra of this machine.
1525    ///
1526    /// If `alloc` contains pointers, then they are all pointing to globals.
1527    ///
1528    /// This should avoid copying if no work has to be done! If this returns an owned
1529    /// allocation (because a copy had to be done to adjust things), machine memory will
1530    /// cache the result. (This relies on `AllocMap::get_or` being able to add the
1531    /// owned allocation to the map even when the map is shared.)
1532    fn adjust_global_allocation<'b>(
1533        ecx: &InterpCx<'tcx, Self>,
1534        id: AllocId,
1535        alloc: &'b Allocation,
1536    ) -> InterpResult<'tcx, Cow<'b, Allocation<Self::Provenance, Self::AllocExtra, Self::Bytes>>>
1537    {
1538        let alloc = alloc.adjust_from_tcx(
1539            &ecx.tcx,
1540            |bytes, align| ecx.get_global_alloc_bytes(id, bytes, align),
1541            |ptr| ecx.global_root_pointer(ptr),
1542        )?;
1543        let kind = MiriMemoryKind::Global.into();
1544        let extra = MiriMachine::init_allocation(ecx, id, kind, alloc.size(), alloc.align)?;
1545        interp_ok(Cow::Owned(alloc.with_extra(extra)))
1546    }
1547
1548    #[inline(always)]
1549    fn before_memory_read(
1550        _tcx: TyCtxtAt<'tcx>,
1551        machine: &Self,
1552        alloc_extra: &AllocExtra<'tcx>,
1553        ptr: Pointer,
1554        (alloc_id, prov_extra): (AllocId, Self::ProvenanceExtra),
1555        range: AllocRange,
1556    ) -> InterpResult<'tcx> {
1557        if machine.track_alloc_accesses && machine.tracked_alloc_ids.contains(&alloc_id) {
1558            machine.emit_diagnostic(NonHaltingDiagnostic::AccessedAlloc(
1559                alloc_id,
1560                range,
1561                borrow_tracker::AccessKind::Read,
1562            ));
1563        }
1564        // The order of checks is deliberate, to prefer reporting a data race over a borrow tracker error.
1565        match &machine.data_race {
1566            GlobalDataRaceHandler::None => {}
1567            GlobalDataRaceHandler::Genmc(genmc_ctx) =>
1568                genmc_ctx.memory_load(machine, ptr.addr(), range.size)?,
1569            GlobalDataRaceHandler::Vclocks(_data_race) => {
1570                let _trace = enter_trace_span!(data_race::before_memory_read);
1571                let AllocDataRaceHandler::Vclocks(data_race, _weak_memory) = &alloc_extra.data_race
1572                else {
1573                    unreachable!();
1574                };
1575                data_race.read_non_atomic(alloc_id, range, NaReadType::Read, None, machine)?;
1576            }
1577        }
1578        if let Some(borrow_tracker) = &alloc_extra.borrow_tracker {
1579            borrow_tracker.before_memory_read(alloc_id, prov_extra, range, machine)?;
1580        }
1581        // Check if there are any sync objects that would like to prevent reading this memory.
1582        for (_offset, obj) in alloc_extra.sync_objs.range(range.start..range.end()) {
1583            obj.on_access(concurrency::sync::AccessKind::Read)?;
1584        }
1585
1586        interp_ok(())
1587    }
1588
1589    #[inline(always)]
1590    fn before_memory_write(
1591        _tcx: TyCtxtAt<'tcx>,
1592        machine: &mut Self,
1593        alloc_extra: &mut AllocExtra<'tcx>,
1594        ptr: Pointer,
1595        (alloc_id, prov_extra): (AllocId, Self::ProvenanceExtra),
1596        range: AllocRange,
1597    ) -> InterpResult<'tcx> {
1598        if machine.track_alloc_accesses && machine.tracked_alloc_ids.contains(&alloc_id) {
1599            machine.emit_diagnostic(NonHaltingDiagnostic::AccessedAlloc(
1600                alloc_id,
1601                range,
1602                borrow_tracker::AccessKind::Write,
1603            ));
1604        }
1605        match &machine.data_race {
1606            GlobalDataRaceHandler::None => {}
1607            GlobalDataRaceHandler::Genmc(genmc_ctx) =>
1608                genmc_ctx.memory_store(machine, ptr.addr(), range.size)?,
1609            GlobalDataRaceHandler::Vclocks(_global_state) => {
1610                let _trace = enter_trace_span!(data_race::before_memory_write);
1611                let AllocDataRaceHandler::Vclocks(data_race, weak_memory) =
1612                    &mut alloc_extra.data_race
1613                else {
1614                    unreachable!()
1615                };
1616                data_race.write_non_atomic(alloc_id, range, NaWriteType::Write, None, machine)?;
1617                if let Some(weak_memory) = weak_memory {
1618                    weak_memory
1619                        .non_atomic_write(range, machine.data_race.as_vclocks_ref().unwrap());
1620                }
1621            }
1622        }
1623        if let Some(borrow_tracker) = &mut alloc_extra.borrow_tracker {
1624            borrow_tracker.before_memory_write(alloc_id, prov_extra, range, machine)?;
1625        }
1626        // Delete sync objects that don't like writes.
1627        // Most of the time, we can just skip this.
1628        if !alloc_extra.sync_objs.is_empty() {
1629            let mut to_delete = vec![];
1630            for (offset, obj) in alloc_extra.sync_objs.range(range.start..range.end()) {
1631                obj.on_access(concurrency::sync::AccessKind::Write)?;
1632                if obj.delete_on_write() {
1633                    to_delete.push(*offset);
1634                }
1635            }
1636            for offset in to_delete {
1637                alloc_extra.sync_objs.remove(&offset);
1638            }
1639        }
1640        interp_ok(())
1641    }
1642
1643    #[inline(always)]
1644    fn before_memory_deallocation(
1645        _tcx: TyCtxtAt<'tcx>,
1646        machine: &mut Self,
1647        alloc_extra: &mut AllocExtra<'tcx>,
1648        ptr: Pointer,
1649        (alloc_id, prove_extra): (AllocId, Self::ProvenanceExtra),
1650        size: Size,
1651        align: Align,
1652        kind: MemoryKind,
1653    ) -> InterpResult<'tcx> {
1654        if machine.tracked_alloc_ids.contains(&alloc_id) {
1655            machine.emit_diagnostic(NonHaltingDiagnostic::FreedAlloc(alloc_id));
1656        }
1657        match &machine.data_race {
1658            GlobalDataRaceHandler::None => {}
1659            GlobalDataRaceHandler::Genmc(genmc_ctx) =>
1660                genmc_ctx.handle_dealloc(machine, alloc_id, ptr.addr(), kind)?,
1661            GlobalDataRaceHandler::Vclocks(_global_state) => {
1662                let _trace = enter_trace_span!(data_race::before_memory_deallocation);
1663                let data_race = alloc_extra.data_race.as_vclocks_mut().unwrap();
1664                data_race.write_non_atomic(
1665                    alloc_id,
1666                    alloc_range(Size::ZERO, size),
1667                    NaWriteType::Deallocate,
1668                    None,
1669                    machine,
1670                )?;
1671            }
1672        }
1673        if let Some(borrow_tracker) = &mut alloc_extra.borrow_tracker {
1674            borrow_tracker.before_memory_deallocation(alloc_id, prove_extra, size, machine)?;
1675        }
1676        // Check if there are any sync objects that would like to prevent freeing this memory.
1677        for obj in alloc_extra.sync_objs.values() {
1678            obj.on_access(concurrency::sync::AccessKind::Dealloc)?;
1679        }
1680
1681        if let Some((_, deallocated_at)) = machine.allocation_spans.borrow_mut().get_mut(&alloc_id)
1682        {
1683            *deallocated_at = Some(machine.current_user_relevant_span());
1684        }
1685        machine.free_alloc_id(alloc_id, size, align, kind);
1686        interp_ok(())
1687    }
1688
1689    #[inline(always)]
1690    fn retag_ptr_value(
1691        ecx: &mut InterpCx<'tcx, Self>,
1692        val: &ImmTy<'tcx>,
1693        ty: Ty<'tcx>,
1694    ) -> InterpResult<'tcx, Option<ImmTy<'tcx>>> {
1695        if ecx.machine.borrow_tracker.is_some() {
1696            ecx.retag_ptr_value(val, ty)
1697        } else {
1698            interp_ok(None)
1699        }
1700    }
1701
1702    #[inline(always)]
1703    fn with_retag_mode<T>(
1704        ecx: &mut InterpCx<'tcx, Self>,
1705        mode: RetagMode,
1706        f: impl FnOnce(&mut InterpCx<'tcx, Self>) -> InterpResult<'tcx, T>,
1707    ) -> InterpResult<'tcx, T> {
1708        if ecx.machine.borrow_tracker.is_some() { ecx.with_retag_mode(mode, f) } else { f(ecx) }
1709    }
1710
1711    fn protect_in_place_function_argument(
1712        ecx: &mut InterpCx<'tcx, Self>,
1713        place: &MPlaceTy<'tcx>,
1714    ) -> InterpResult<'tcx> {
1715        // If we have a borrow tracker, we also have it set up protection so that all reads *and
1716        // writes* during this call are insta-UB.
1717        let protected_place = if ecx.machine.borrow_tracker.is_some() {
1718            ecx.protect_place(place)?
1719        } else {
1720            // No borrow tracker.
1721            place.clone()
1722        };
1723        // We do need to write `uninit` so that even after the call ends, the former contents of
1724        // this place cannot be observed any more. We do the write after retagging so that for
1725        // Tree Borrows, this is considered to activate the new tag.
1726        // Conveniently this also ensures that the place actually points to suitable memory.
1727        ecx.write_uninit(&protected_place)?;
1728        // Now we throw away the protected place, ensuring its tag is never used again.
1729        interp_ok(())
1730    }
1731
1732    #[inline(always)]
1733    fn init_frame(
1734        ecx: &mut InterpCx<'tcx, Self>,
1735        frame: Frame<'tcx, Provenance>,
1736    ) -> InterpResult<'tcx, Frame<'tcx, Provenance, FrameExtra<'tcx>>> {
1737        // Start recording our event before doing anything else
1738        let timing = if let Some(profiler) = ecx.machine.profiler.as_ref() {
1739            let fn_name = frame.instance().to_string();
1740            let entry = ecx.machine.string_cache.entry(fn_name.clone());
1741            let name = entry.or_insert_with(|| profiler.alloc_string(&*fn_name));
1742
1743            Some(profiler.start_recording_interval_event_detached(
1744                *name,
1745                measureme::EventId::from_label(*name),
1746                ecx.active_thread().to_u32(),
1747            ))
1748        } else {
1749            None
1750        };
1751
1752        let borrow_tracker = ecx.machine.borrow_tracker.as_ref();
1753
1754        let extra = FrameExtra {
1755            borrow_tracker: borrow_tracker.map(|bt| bt.borrow_mut().new_frame()),
1756            catch_unwind: None,
1757            timing,
1758            user_relevance: ecx.machine.user_relevance(&frame),
1759            data_race: ecx
1760                .machine
1761                .data_race
1762                .as_vclocks_ref()
1763                .map(|_| data_race::FrameState::default()),
1764        };
1765
1766        interp_ok(frame.with_extra(extra))
1767    }
1768
1769    fn stack<'a>(
1770        ecx: &'a InterpCx<'tcx, Self>,
1771    ) -> &'a [Frame<'tcx, Self::Provenance, Self::FrameExtra>] {
1772        ecx.active_thread_stack()
1773    }
1774
1775    fn stack_mut<'a>(
1776        ecx: &'a mut InterpCx<'tcx, Self>,
1777    ) -> &'a mut Vec<Frame<'tcx, Self::Provenance, Self::FrameExtra>> {
1778        ecx.active_thread_stack_mut()
1779    }
1780
1781    fn before_terminator(ecx: &mut InterpCx<'tcx, Self>) -> InterpResult<'tcx> {
1782        ecx.machine.basic_block_count += 1u64; // a u64 that is only incremented by 1 will "never" overflow
1783        ecx.machine.since_gc += 1;
1784        // Possibly report our progress. This will point at the terminator we are about to execute.
1785        if let Some(report_progress) = ecx.machine.report_progress {
1786            if ecx.machine.basic_block_count.is_multiple_of(u64::from(report_progress)) {
1787                ecx.emit_diagnostic(NonHaltingDiagnostic::ProgressReport {
1788                    block_count: ecx.machine.basic_block_count,
1789                });
1790            }
1791        }
1792
1793        // Search for BorTags to find all live pointers, then remove all other tags from borrow
1794        // stacks.
1795        // When debug assertions are enabled, run the GC as often as possible so that any cases
1796        // where it mistakenly removes an important tag become visible.
1797        if ecx.machine.gc_interval > 0 && ecx.machine.since_gc >= ecx.machine.gc_interval {
1798            ecx.machine.since_gc = 0;
1799            ecx.run_provenance_gc();
1800        }
1801
1802        // These are our preemption points.
1803        // (This will only take effect after the terminator has been executed.)
1804        ecx.maybe_preempt_active_thread();
1805
1806        // Make sure some time passes.
1807        ecx.machine.monotonic_clock.tick();
1808
1809        interp_ok(())
1810    }
1811
1812    #[inline(always)]
1813    fn after_stack_push(ecx: &mut InterpCx<'tcx, Self>) -> InterpResult<'tcx> {
1814        if ecx.frame().extra.user_relevance >= ecx.active_thread_ref().current_user_relevance() {
1815            // We just pushed a frame that's at least as relevant as the so-far most relevant frame.
1816            // That means we are now the most relevant frame.
1817            let stack_len = ecx.active_thread_stack().len();
1818            ecx.active_thread_mut().set_top_user_relevant_frame(stack_len - 1);
1819        }
1820        interp_ok(())
1821    }
1822
1823    fn before_stack_pop(ecx: &mut InterpCx<'tcx, Self>) -> InterpResult<'tcx> {
1824        let frame = ecx.frame();
1825        // We want this *before* the return value copy, because the return place itself is protected
1826        // until we do `on_stack_pop` here, and we need to un-protect it to copy the return value.
1827        if ecx.machine.borrow_tracker.is_some() {
1828            ecx.on_stack_pop(frame)?;
1829        }
1830        if ecx
1831            .active_thread_ref()
1832            .top_user_relevant_frame()
1833            .expect("there should always be a most relevant frame for a non-empty stack")
1834            == ecx.frame_idx()
1835        {
1836            // We are popping the most relevant frame. We have no clue what the next relevant frame
1837            // below that is, so we recompute that.
1838            // (If this ever becomes a bottleneck, we could have `push` store the previous
1839            // user-relevant frame and restore that here.)
1840            // We have to skip the frame that is just being popped.
1841            ecx.active_thread_mut().recompute_top_user_relevant_frame(/* skip */ 1);
1842        }
1843        // tracing-tree can automatically annotate scope changes, but it gets very confused by our
1844        // concurrency and what it prints is just plain wrong. So we print our own information
1845        // instead. (Cc https://github.com/rust-lang/miri/issues/2266)
1846        info!("Leaving {}", ecx.frame().instance());
1847        interp_ok(())
1848    }
1849
1850    #[inline(always)]
1851    fn after_stack_pop(
1852        ecx: &mut InterpCx<'tcx, Self>,
1853        frame: Frame<'tcx, Provenance, FrameExtra<'tcx>>,
1854        unwinding: bool,
1855    ) -> InterpResult<'tcx, ReturnAction> {
1856        let res = {
1857            // Move `frame` into a sub-scope so we control when it will be dropped.
1858            let mut frame = frame;
1859            let timing = frame.extra.timing.take();
1860            let res = ecx.handle_stack_pop_unwind(frame.extra, unwinding);
1861            if let Some(profiler) = ecx.machine.profiler.as_ref() {
1862                profiler.finish_recording_interval_event(timing.unwrap());
1863            }
1864            res
1865        };
1866        // Needs to be done after dropping frame to show up on the right nesting level.
1867        // (Cc https://github.com/rust-lang/miri/issues/2266)
1868        if !ecx.active_thread_stack().is_empty() {
1869            info!("Continuing in {}", ecx.frame().instance());
1870        }
1871        res
1872    }
1873
1874    fn after_local_read(
1875        ecx: &InterpCx<'tcx, Self>,
1876        frame: &Frame<'tcx, Provenance, FrameExtra<'tcx>>,
1877        local: mir::Local,
1878    ) -> InterpResult<'tcx> {
1879        if let Some(data_race) = &frame.extra.data_race {
1880            let _trace = enter_trace_span!(data_race::after_local_read);
1881            data_race.local_read(local, &ecx.machine);
1882        }
1883        interp_ok(())
1884    }
1885
1886    fn after_local_write(
1887        ecx: &mut InterpCx<'tcx, Self>,
1888        local: mir::Local,
1889        storage_live: bool,
1890    ) -> InterpResult<'tcx> {
1891        if let Some(data_race) = &ecx.frame().extra.data_race {
1892            let _trace = enter_trace_span!(data_race::after_local_write);
1893            data_race.local_write(local, storage_live, &ecx.machine);
1894        }
1895        interp_ok(())
1896    }
1897
1898    fn after_local_moved_to_memory(
1899        ecx: &mut InterpCx<'tcx, Self>,
1900        local: mir::Local,
1901        mplace: &MPlaceTy<'tcx>,
1902    ) -> InterpResult<'tcx> {
1903        let Some(Provenance::Concrete { alloc_id, .. }) = mplace.ptr().provenance else {
1904            panic!("after_local_allocated should only be called on fresh allocations");
1905        };
1906        // Record the span where this was allocated: the declaration of the local.
1907        let local_decl = &ecx.frame().body().local_decls[local];
1908        let span = local_decl.source_info.span;
1909        ecx.machine.allocation_spans.borrow_mut().insert(alloc_id, (span, None));
1910        // The data race system has to fix the clocks used for this write.
1911        let (alloc_info, machine) = ecx.get_alloc_extra_mut(alloc_id)?;
1912        if let Some(data_race) =
1913            &machine.threads.active_thread_stack().last().unwrap().extra.data_race
1914        {
1915            let _trace = enter_trace_span!(data_race::after_local_moved_to_memory);
1916            data_race.local_moved_to_memory(
1917                local,
1918                alloc_info.data_race.as_vclocks_mut().unwrap(),
1919                machine,
1920            );
1921        }
1922        interp_ok(())
1923    }
1924
1925    fn get_global_alloc_salt(
1926        ecx: &InterpCx<'tcx, Self>,
1927        instance: Option<ty::Instance<'tcx>>,
1928    ) -> usize {
1929        let unique = if let Some(instance) = instance {
1930            // Functions cannot be identified by pointers, as asm-equal functions can get
1931            // deduplicated by the linker (we set the "unnamed_addr" attribute for LLVM) and
1932            // functions can be duplicated across crates. We thus generate a new `AllocId` for every
1933            // mention of a function. This means that `main as fn() == main as fn()` is false, while
1934            // `let x = main as fn(); x == x` is true. However, as a quality-of-life feature it can
1935            // be useful to identify certain functions uniquely, e.g. for backtraces. So we identify
1936            // whether codegen will actually emit duplicate functions. It does that when they have
1937            // non-lifetime generics, or when they can be inlined. All other functions are given a
1938            // unique address. This is not a stable guarantee! The `inline` attribute is a hint and
1939            // cannot be relied upon for anything. But if we don't do this, the
1940            // `__rust_begin_short_backtrace`/`__rust_end_short_backtrace` logic breaks and panic
1941            // backtraces look terrible.
1942            let is_generic = instance
1943                .args
1944                .into_iter()
1945                .any(|arg| !matches!(arg.kind(), ty::GenericArgKind::Lifetime(_)));
1946            let can_be_inlined = matches!(
1947                ecx.tcx.sess.opts.unstable_opts.cross_crate_inline_threshold,
1948                InliningThreshold::Always
1949            ) || !matches!(
1950                ecx.tcx.codegen_instance_attrs(instance.def).inline,
1951                InlineAttr::Never
1952            );
1953            !is_generic && !can_be_inlined
1954        } else {
1955            // Non-functions are never unique.
1956            false
1957        };
1958        // Always use the same salt if the allocation is unique.
1959        if unique {
1960            CTFE_ALLOC_SALT
1961        } else {
1962            ecx.machine.rng.borrow_mut().random_range(0..ADDRS_PER_ANON_GLOBAL)
1963        }
1964    }
1965
1966    fn cached_union_data_range<'e>(
1967        ecx: &'e mut InterpCx<'tcx, Self>,
1968        ty: Ty<'tcx>,
1969        compute_range: impl FnOnce() -> RangeSet,
1970    ) -> Cow<'e, RangeSet> {
1971        Cow::Borrowed(ecx.machine.union_data_ranges.entry(ty).or_insert_with(compute_range))
1972    }
1973
1974    fn get_default_alloc_params(&self) -> <Self::Bytes as AllocBytes>::AllocParams {
1975        use crate::alloc::MiriAllocParams;
1976
1977        match &self.allocator {
1978            Some(alloc) => MiriAllocParams::Isolated(alloc.clone()),
1979            None => MiriAllocParams::Global,
1980        }
1981    }
1982
1983    fn enter_trace_span(span: impl FnOnce() -> tracing::Span) -> impl EnteredTraceSpan {
1984        #[cfg(feature = "tracing")]
1985        {
1986            span().entered()
1987        }
1988        #[cfg(not(feature = "tracing"))]
1989        #[expect(clippy::unused_unit)]
1990        {
1991            let _ = span; // so we avoid the "unused variable" warning
1992            ()
1993        }
1994    }
1995}
1996
1997/// Trait for callbacks handling asynchronous machine operations.
1998pub trait MachineCallback<'tcx, T>: VisitProvenance {
1999    /// The function to be invoked when the callback is fired.
2000    fn call(
2001        self: Box<Self>,
2002        ecx: &mut InterpCx<'tcx, MiriMachine<'tcx>>,
2003        arg: T,
2004    ) -> InterpResult<'tcx>;
2005}
2006
2007/// Type alias for boxed machine callbacks with generic argument type.
2008pub type DynMachineCallback<'tcx, T> = Box<dyn MachineCallback<'tcx, T> + 'tcx>;
2009
2010/// Creates a `DynMachineCallback`:
2011///
2012/// ```rust
2013/// callback!(
2014///     @capture<'tcx> {
2015///         var1: Ty1,
2016///         var2: Ty2<'tcx>,
2017///     }
2018///     |this, arg: ArgTy| {
2019///         // Implement the callback here.
2020///         todo!()
2021///     }
2022/// )
2023/// ```
2024///
2025/// All the argument types must implement `VisitProvenance`.
2026#[macro_export]
2027macro_rules! callback {
2028    (@capture<$tcx:lifetime $(,)? $($lft:lifetime),*>
2029        { $($name:ident: $type:ty),* $(,)? }
2030     |$this:ident, $arg:ident: $arg_ty:ty| $body:expr $(,)?) => {{
2031        struct Callback<$tcx, $($lft),*> {
2032            $($name: $type,)*
2033            _phantom: std::marker::PhantomData<&$tcx ()>,
2034        }
2035
2036        impl<$tcx, $($lft),*> VisitProvenance for Callback<$tcx, $($lft),*> {
2037            fn visit_provenance(&self, _visit: &mut VisitWith<'_>) {
2038                $(
2039                    self.$name.visit_provenance(_visit);
2040                )*
2041            }
2042        }
2043
2044        impl<$tcx, $($lft),*> MachineCallback<$tcx, $arg_ty> for Callback<$tcx, $($lft),*> {
2045            fn call(
2046                self: Box<Self>,
2047                $this: &mut MiriInterpCx<$tcx>,
2048                $arg: $arg_ty
2049            ) -> InterpResult<$tcx> {
2050                #[allow(unused_variables)]
2051                let Callback { $($name,)* _phantom } = *self;
2052                $body
2053            }
2054        }
2055
2056        Box::new(Callback {
2057            $($name,)*
2058            _phantom: std::marker::PhantomData
2059        })
2060    }};
2061}