1//! Check the validity invariant of a given value, and tell the user
2//! where in the value it got violated.
3//! In const context, this goes even further and tries to approximate const safety.
4//! That's useful because it means other passes (e.g. promotion) can rely on `const`s
5//! to be const-safe.
67use std::borrow::Cow;
8use std::fmt::{self, Write};
9use std::hash::Hash;
10use std::num::NonZero;
1112use either::{Left, Right};
13use hir::def::DefKind;
14use rustc_abi::{
15BackendRepr, FieldIdx, FieldsShape, Scalaras ScalarAbi, Size, VariantIdx, Variants,
16WrappingRange,
17};
18use rustc_ast::Mutability;
19use rustc_data_structures::fx::FxHashSet;
20use rustc_hiras hir;
21use rustc_middle::mir::interpret::{
22InterpErrorKind, InvalidMetaKind, Misalignment, PointerArithmetic, Provenance, alloc_range,
23interp_ok,
24};
25use rustc_middle::ty::layout::{LayoutCx, TyAndLayout};
26use rustc_middle::ty::{self, Ty};
27use rustc_span::{Symbol, bug, sym};
28use tracing::trace;
2930use super::machine::AllocMap;
31use super::{
32AllocId, CheckInAllocMsg, GlobalAlloc, ImmTy, Immediate, InterpCx, InterpResult, MPlaceTy,
33Machine, MemPlaceMeta, PlaceTy, Pointer, Projectable, Scalar, ValueVisitor, err_ub,
34};
35use crate::enter_trace_span;
3637// for the validation errors
38#[rustfmt::skip]
39use super::InterpErrorKind::UndefinedBehavioras Ub;
40use super::InterpErrorKind::Unsupportedas Unsup;
41use super::UndefinedBehaviorInfo::*;
42use super::UnsupportedOpInfo::*;
4344macro_rules!err_validation_failure {
45 ($where:expr, $msg:expr ) => {{
46let where_ = &$where;
47let path = if !where_.projs.is_empty() {
48let mut path = String::new();
49 write_path(&mut path, &where_.projs);
50Some(path)
51 } else {
52None
53};
5455#[allow(unused)]
56use ValidationErrorKind::*;
57let msg = ValidationErrorKind::from($msg);
58err_ub!(ValidationError {
59 orig_ty: where_.orig_ty,
60 path,
61 ptr_bytes_warning: msg.ptr_bytes_warning(),
62 msg: msg.to_string(),
63 })
64 }};
65}
6667macro_rules!throw_validation_failure {
68 ($where:expr, $msg:expr ) => {
69do yeet err_validation_failure!($where, $msg)
70 };
71}
7273/// If $e throws an error matching the pattern, throw a validation failure.
74/// Other errors are passed back to the caller, unchanged -- and if they reach the root of
75/// the visitor, we make sure only validation errors and `InvalidProgram` errors are left.
76/// This lets you use the patterns as a kind of validation list, asserting which errors
77/// can possibly happen:
78///
79/// ```ignore(illustrative)
80/// let v = try_validation!(some_fn(x), some_path, {
81/// Foo | Bar | Baz => format!("some failure involving {x}"),
82/// });
83/// ```
84///
85/// The patterns must be of type `UndefinedBehaviorInfo`.
86macro_rules!try_validation {
87 ($e:expr, $where:expr,
88 $( $( $p:pat_param )|+ => $msg:expr ),+ $(,)?
89) => {{
90$e.map_err_kind(|e| {
91// We catch the error and turn it into a validation failure. We are okay with
92 // allocation here as this can only slow down builds that fail anyway.
93match e {
94 $(
95 $($p)|+ => {
96err_validation_failure!(
97$where,
98$msg
99)
100 }
101 ),+,
102 e => e,
103 }
104 })?
105}};
106}
107108#[derive(#[automatically_derived]
impl ::core::fmt::Debug for PtrKind {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
PtrKind::Ref(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Ref",
&__self_0),
PtrKind::Box => ::core::fmt::Formatter::write_str(f, "Box"),
}
}
}Debug, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for PtrKind { }
#[automatically_derived]
impl ::core::clone::Clone for PtrKind {
#[inline]
fn clone(&self) -> PtrKind {
let _: ::core::clone::AssertParamIsClone<Mutability>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::Copy for PtrKind { }Copy, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for PtrKind { }
#[automatically_derived]
impl ::core::cmp::PartialEq for PtrKind {
#[inline]
fn eq(&self, other: &PtrKind) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr &&
match (self, other) {
(PtrKind::Ref(__self_0), PtrKind::Ref(__arg1_0)) =>
__self_0 == __arg1_0,
_ => true,
}
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for PtrKind {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<Mutability>;
}
}Eq)]
109enum PtrKind {
110 Ref(Mutability),
111 Box,
112}
113114impl fmt::Displayfor PtrKind {
115fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
116let str = match self {
117 PtrKind::Ref(_) => "reference",
118 PtrKind::Box => "box",
119 };
120f.write_fmt(format_args!("{0}", str))write!(f, "{str}")121 }
122}
123124#[derive(#[automatically_derived]
impl ::core::fmt::Debug for ExpectedKind {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
match self {
ExpectedKind::Reference => "Reference",
ExpectedKind::Box => "Box",
ExpectedKind::RawPtr => "RawPtr",
ExpectedKind::Bool => "Bool",
ExpectedKind::Char => "Char",
ExpectedKind::Float => "Float",
ExpectedKind::Int => "Int",
ExpectedKind::FnPtr => "FnPtr",
ExpectedKind::Str => "Str",
})
}
}Debug)]
125enum ExpectedKind {
126 Reference,
127 Box,
128 RawPtr,
129 Bool,
130 Char,
131 Float,
132 Int,
133 FnPtr,
134 Str,
135}
136137impl fmt::Displayfor ExpectedKind {
138fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
139let str = match self {
140 ExpectedKind::Reference => "expected a reference",
141 ExpectedKind::Box => "expected a box",
142 ExpectedKind::RawPtr => "expected a raw pointer",
143 ExpectedKind::Bool => "expected a boolean",
144 ExpectedKind::Char => "expected a unicode scalar value",
145 ExpectedKind::Float => "expected a floating point number",
146 ExpectedKind::Int => "expected an integer",
147 ExpectedKind::FnPtr => "expected a function pointer",
148 ExpectedKind::Str => "expected a string",
149 };
150f.write_fmt(format_args!("{0}", str))write!(f, "{str}")151 }
152}
153154impl From<PtrKind> for ExpectedKind {
155fn from(x: PtrKind) -> ExpectedKind {
156match x {
157 PtrKind::Box => ExpectedKind::Box,
158 PtrKind::Ref(_) => ExpectedKind::Reference,
159 }
160 }
161}
162163/// Validation errors that can be emitted in one than one place get a variant here so that
164/// we format them consistently. Everything else uses the `String` fallback.
165#[derive(#[automatically_derived]
impl<'tcx> ::core::fmt::Debug for ValidationErrorKind<'tcx> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
ValidationErrorKind::Uninit { expected: __self_0 } =>
::core::fmt::Formatter::debug_struct_field1_finish(f,
"Uninit", "expected", &__self_0),
ValidationErrorKind::PointerAsInt { expected: __self_0 } =>
::core::fmt::Formatter::debug_struct_field1_finish(f,
"PointerAsInt", "expected", &__self_0),
ValidationErrorKind::PartialPointer =>
::core::fmt::Formatter::write_str(f, "PartialPointer"),
ValidationErrorKind::InvalidMetaWrongTrait {
vtable_dyn_type: __self_0, expected_dyn_type: __self_1 } =>
::core::fmt::Formatter::debug_struct_field2_finish(f,
"InvalidMetaWrongTrait", "vtable_dyn_type", __self_0,
"expected_dyn_type", &__self_1),
ValidationErrorKind::GeneralError { msg: __self_0 } =>
::core::fmt::Formatter::debug_struct_field1_finish(f,
"GeneralError", "msg", &__self_0),
}
}
}Debug)]
166enum ValidationErrorKind<'tcx> {
167 Uninit {
168 expected: ExpectedKind,
169 },
170 PointerAsInt {
171 expected: ExpectedKind,
172 },
173 PartialPointer,
174 InvalidMetaWrongTrait {
175/// The vtable that was actually referenced by the wide pointer metadata.
176vtable_dyn_type: &'tcx ty::List<ty::PolyExistentialPredicate<'tcx>>,
177/// The vtable that was expected at the point in MIR that it was accessed.
178expected_dyn_type: &'tcx ty::List<ty::PolyExistentialPredicate<'tcx>>,
179 },
180 GeneralError {
181 msg: String,
182 },
183}
184185impl<'tcx> ValidationErrorKind<'tcx> {
186// We don't do this via `fmt::Display` to so that we can do a move in the `GeneralError` case.
187fn to_string(self) -> String {
188use ValidationErrorKind::*;
189match self {
190Uninit { expected } => ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered uninitialized memory, but {0}",
expected))
})format!("encountered uninitialized memory, but {expected}"),
191PointerAsInt { expected } => ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered a pointer, but {0}",
expected))
})format!("encountered a pointer, but {expected}"),
192PartialPointer => ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered a partial pointer or a mix of pointers"))
})format!("encountered a partial pointer or a mix of pointers"),
193InvalidMetaWrongTrait { vtable_dyn_type, expected_dyn_type } => ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("wrong trait in wide pointer vtable: expected `{0}`, but encountered `{1}`",
expected_dyn_type, vtable_dyn_type))
})format!(
194"wrong trait in wide pointer vtable: expected `{expected_dyn_type}`, but encountered `{vtable_dyn_type}`"
195),
196GeneralError { msg } => msg,
197 }
198 }
199200fn ptr_bytes_warning(&self) -> bool {
201use ValidationErrorKind::*;
202#[allow(non_exhaustive_omitted_patterns)] match self {
PointerAsInt { .. } | PartialPointer => true,
_ => false,
}matches!(self, PointerAsInt { .. } | PartialPointer)203 }
204}
205206impl<'tcx> From<String> for ValidationErrorKind<'tcx> {
207fn from(msg: String) -> Self {
208 ValidationErrorKind::GeneralError { msg }
209 }
210}
211212fn fmt_range(r: WrappingRange, max_hi: u128) -> String {
213let WrappingRange { start: lo, end: hi } = r;
214if !(hi <= max_hi) {
::core::panicking::panic("assertion failed: hi <= max_hi")
};assert!(hi <= max_hi);
215if lo > hi {
216::alloc::__export::must_use({
::alloc::fmt::format(format_args!("less or equal to {0}, or greater or equal to {1}",
hi, lo))
})format!("less or equal to {hi}, or greater or equal to {lo}")217 } else if lo == hi {
218::alloc::__export::must_use({
::alloc::fmt::format(format_args!("equal to {0}", lo))
})format!("equal to {lo}")219 } else if lo == 0 {
220if !(hi < max_hi) {
{
::core::panicking::panic_fmt(format_args!("should not be printing if the range covers everything"));
}
};assert!(hi < max_hi, "should not be printing if the range covers everything");
221::alloc::__export::must_use({
::alloc::fmt::format(format_args!("less or equal to {0}", hi))
})format!("less or equal to {hi}")222 } else if hi == max_hi {
223if !(lo > 0) {
{
::core::panicking::panic_fmt(format_args!("should not be printing if the range covers everything"));
}
};assert!(lo > 0, "should not be printing if the range covers everything");
224::alloc::__export::must_use({
::alloc::fmt::format(format_args!("greater or equal to {0}", lo))
})format!("greater or equal to {lo}")225 } else {
226::alloc::__export::must_use({
::alloc::fmt::format(format_args!("in the range {0}..={1}", lo, hi))
})format!("in the range {lo}..={hi}")227 }
228}
229230/// We want to show a nice path to the invalid field for diagnostics,
231/// but avoid string operations in the happy case where no error happens.
232/// So we track a `Vec<PathElem>` where `PathElem` contains all the data we
233/// need to later print something for the user.
234#[derive(#[automatically_derived]
impl<'tcx> ::core::marker::Copy for PathElem<'tcx> { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl<'tcx> ::core::clone::TrivialClone for PathElem<'tcx> { }
#[automatically_derived]
impl<'tcx> ::core::clone::Clone for PathElem<'tcx> {
#[inline]
fn clone(&self) -> PathElem<'tcx> {
let _: ::core::clone::AssertParamIsClone<Symbol>;
let _: ::core::clone::AssertParamIsClone<VariantIdx>;
let _: ::core::clone::AssertParamIsClone<usize>;
let _: ::core::clone::AssertParamIsClone<Ty<'tcx>>;
*self
}
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for PathElem<'tcx> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
PathElem::Field(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Field",
&__self_0),
PathElem::Variant(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"Variant", &__self_0),
PathElem::CoroutineState(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"CoroutineState", &__self_0),
PathElem::CapturedVar(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"CapturedVar", &__self_0),
PathElem::ArrayElem(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"ArrayElem", &__self_0),
PathElem::TupleElem(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"TupleElem", &__self_0),
PathElem::Deref => ::core::fmt::Formatter::write_str(f, "Deref"),
PathElem::EnumTag =>
::core::fmt::Formatter::write_str(f, "EnumTag"),
PathElem::CoroutineTag =>
::core::fmt::Formatter::write_str(f, "CoroutineTag"),
PathElem::DynDowncast(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"DynDowncast", &__self_0),
PathElem::Vtable =>
::core::fmt::Formatter::write_str(f, "Vtable"),
}
}
}Debug)]
235pub enum PathElem<'tcx> {
236 Field(Symbol),
237 Variant(Symbol),
238 CoroutineState(VariantIdx),
239 CapturedVar(Symbol),
240 ArrayElem(usize),
241 TupleElem(usize),
242 Deref,
243 EnumTag,
244 CoroutineTag,
245 DynDowncast(Ty<'tcx>),
246 Vtable,
247}
248249#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for Path<'tcx> {
#[inline]
fn clone(&self) -> Path<'tcx> {
Path {
orig_ty: ::core::clone::Clone::clone(&self.orig_ty),
projs: ::core::clone::Clone::clone(&self.projs),
}
}
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for Path<'tcx> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field2_finish(f, "Path",
"orig_ty", &self.orig_ty, "projs", &&self.projs)
}
}Debug)]
250pub struct Path<'tcx> {
251 orig_ty: Ty<'tcx>,
252 projs: Vec<PathElem<'tcx>>,
253}
254255impl<'tcx> Path<'tcx> {
256fn new(ty: Ty<'tcx>) -> Self {
257Self { orig_ty: ty, projs: ::alloc::vec::Vec::new()vec![] }
258 }
259}
260261/// Extra things to check for during validation of CTFE results.
262#[derive(#[automatically_derived]
impl ::core::marker::Copy for CtfeValidationMode { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for CtfeValidationMode { }
#[automatically_derived]
impl ::core::clone::Clone for CtfeValidationMode {
#[inline]
fn clone(&self) -> CtfeValidationMode {
let _: ::core::clone::AssertParamIsClone<Mutability>;
let _: ::core::clone::AssertParamIsClone<bool>;
*self
}
}Clone)]
263pub enum CtfeValidationMode {
264/// Validation of a `static`
265Static { mutbl: Mutability },
266/// Validation of a promoted.
267Promoted,
268/// Validation of a `const`.
269 /// `allow_immutable_unsafe_cell` says whether we allow `UnsafeCell` in immutable memory (which is the
270 /// case for the top-level allocation of a `const`, where this is fine because the allocation will be
271 /// copied at each use site).
272Const { allow_immutable_unsafe_cell: bool },
273}
274275impl CtfeValidationMode {
276fn allow_immutable_unsafe_cell(self) -> bool {
277match self {
278 CtfeValidationMode::Static { .. } => false,
279 CtfeValidationMode::Promoted { .. } => false,
280 CtfeValidationMode::Const { allow_immutable_unsafe_cell, .. } => {
281allow_immutable_unsafe_cell282 }
283 }
284 }
285}
286287/// State for tracking recursive validation of references
288pub struct RefTracking<T, PATH = ()> {
289 seen: FxHashSet<T>,
290 todo: Vec<(T, PATH)>,
291}
292293impl<T: Clone + Eq + Hash + std::fmt::Debug, PATH> RefTracking<T, PATH> {
294pub fn empty() -> Self {
295RefTracking { seen: FxHashSet::default(), todo: ::alloc::vec::Vec::new()vec![] }
296 }
297pub fn next(&mut self) -> Option<(T, PATH)> {
298self.todo.pop()
299 }
300301fn track(&mut self, val: T, path: impl FnOnce() -> PATH) {
302if self.seen.insert(val.clone()) {
303{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_const_eval/src/interpret/validity.rs:303",
"rustc_const_eval::interpret::validity",
::tracing::Level::TRACE,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_const_eval/src/interpret/validity.rs"),
::tracing_core::__macro_support::Option::Some(303u32),
::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::validity"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::TRACE <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("Recursing below ptr {0:#?}",
val) as &dyn ::tracing::field::Value))])
});
} else { ; }
};trace!("Recursing below ptr {:#?}", val);
304let path = path();
305// Remember to come back to this later.
306self.todo.push((val, path));
307 }
308 }
309}
310311impl<'tcx, T: Clone + Eq + Hash + std::fmt::Debug> RefTracking<T, Path<'tcx>> {
312pub fn new(val: T, ty: Ty<'tcx>) -> Self {
313let mut ref_tracking_for_consts =
314RefTracking { seen: FxHashSet::default(), todo: ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[(val.clone(), Path::new(ty))]))vec![(val.clone(), Path::new(ty))] };
315ref_tracking_for_consts.seen.insert(val);
316ref_tracking_for_consts317 }
318}
319320/// Format a path
321fn write_path(out: &mut String, path: &[PathElem<'_>]) {
322use self::PathElem::*;
323324for elem in path.iter() {
325match elem {
326 Field(name) => out.write_fmt(format_args!(".{0}", name))write!(out, ".{name}"),
327 EnumTag => out.write_fmt(format_args!(".<enum-tag>"))write!(out, ".<enum-tag>"),
328 Variant(name) => out.write_fmt(format_args!(".<enum-variant({0})>", name))write!(out, ".<enum-variant({name})>"),
329 CoroutineTag => out.write_fmt(format_args!(".<coroutine-tag>"))write!(out, ".<coroutine-tag>"),
330 CoroutineState(idx) => out.write_fmt(format_args!(".<coroutine-state({0})>", idx.index()))write!(out, ".<coroutine-state({})>", idx.index()),
331 CapturedVar(name) => out.write_fmt(format_args!(".<captured-var({0})>", name))write!(out, ".<captured-var({name})>"),
332 TupleElem(idx) => out.write_fmt(format_args!(".{0}", idx))write!(out, ".{idx}"),
333 ArrayElem(idx) => out.write_fmt(format_args!("[{0}]", idx))write!(out, "[{idx}]"),
334// `.<deref>` does not match Rust syntax, but it is more readable for long paths -- and
335 // some of the other items here also are not Rust syntax. Actually we can't
336 // even use the usual syntax because we are just showing the projections,
337 // not the root.
338 Deref => out.write_fmt(format_args!(".<deref>"))write!(out, ".<deref>"),
339 DynDowncast(ty) => out.write_fmt(format_args!(".<dyn-downcast({0})>", ty))write!(out, ".<dyn-downcast({ty})>"),
340 Vtable => out.write_fmt(format_args!(".<vtable>"))write!(out, ".<vtable>"),
341 }
342 .unwrap()
343 }
344}
345346pub type RangeSet = rustc_data_structures::range_set::RangeSet<Size>;
347348struct ValidityVisitor<'rt, 'tcx, M: Machine<'tcx>> {
349/// The `path` may be pushed to, but the part that is present when a function
350 /// starts must not be changed! `with_elem` relies on this stack discipline.
351path: Path<'tcx>,
352 ref_tracking: Option<&'rt mut RefTracking<MPlaceTy<'tcx, M::Provenance>, Path<'tcx>>>,
353/// `None` indicates this is not validating for CTFE (but for runtime).
354ctfe_mode: Option<CtfeValidationMode>,
355 ecx: &'rt mut InterpCx<'tcx, M>,
356/// Whether provenance should be reset outside of pointers (emulating the effect of a typed
357 /// copy).
358reset_provenance_and_padding: bool,
359/// This tracks which byte ranges in this value contain data; the remaining bytes are padding.
360 /// The ideal representation here would be pointer-length pairs, but to keep things more compact
361 /// we only store a (range) set of offsets -- the base pointer is the same throughout the entire
362 /// visit, after all.
363 /// If this is `Some`, then `reset_provenance_and_padding` must be true (but not vice versa:
364 /// we might not track data vs padding bytes if the place isn't stored in memory anyway).
365data_bytes: Option<RangeSet>,
366/// True if we are inside of `MaybeDangling`. This disables pointer access checks.
367may_dangle: bool,
368}
369370impl<'rt, 'tcx, M: Machine<'tcx>> ValidityVisitor<'rt, 'tcx, M> {
371fn aggregate_field_path_elem(
372&mut self,
373 layout: TyAndLayout<'tcx>,
374 field: usize,
375 field_ty: Ty<'tcx>,
376 ) -> PathElem<'tcx> {
377// First, check if we are projecting to a variant.
378match layout.variants {
379 Variants::Multiple { tag_field, .. } => {
380if tag_field.as_usize() == field {
381return match layout.ty.kind() {
382 ty::Adt(def, ..) if def.is_enum() => PathElem::EnumTag,
383 ty::Coroutine(..) => PathElem::CoroutineTag,
384_ => bug_impl(None, format_args!("non-variant type {0:?}", layout.ty),
Location::caller())bug!("non-variant type {:?}", layout.ty),
385 };
386 }
387 }
388 Variants::Single { .. } | Variants::Empty => {}
389 }
390391// Now we know we are projecting to a field, so figure out which one.
392match layout.ty.kind() {
393// coroutines, closures, and coroutine-closures all have upvars that may be named.
394ty::Closure(def_id, _) | ty::Coroutine(def_id, _) | ty::CoroutineClosure(def_id, _) => {
395let mut name = None;
396// FIXME this should be more descriptive i.e. CapturePlace instead of CapturedVar
397 // https://github.com/rust-lang/project-rfc-2229/issues/46
398if let Some(local_def_id) = def_id.as_local() {
399let captures = self.ecx.tcx.closure_captures(local_def_id);
400if let Some(captured_place) = captures.get(field) {
401// Sometimes the index is beyond the number of upvars (seen
402 // for a coroutine).
403let var_hir_id = captured_place.get_root_variable();
404let node = self.ecx.tcx.hir_node(var_hir_id);
405if let hir::Node::Pat(pat) = node406 && let hir::PatKind::Binding(_, _, ident, _) = pat.kind
407 {
408name = Some(ident.name);
409 }
410 }
411 }
412413 PathElem::CapturedVar(name.unwrap_or_else(|| {
414// Fall back to showing the field index.
415sym::integer(field)
416 }))
417 }
418419// tuples
420ty::Tuple(_) => PathElem::TupleElem(field),
421422// enums
423ty::Adt(def, ..) if def.is_enum() => {
424// we might be projecting *to* a variant, or to a field *in* a variant.
425match layout.variants {
426 Variants::Single { index } => {
427// Inside a variant
428PathElem::Field(def.variant(index).fields[FieldIdx::from_usize(field)].name)
429 }
430 Variants::Empty => {
::core::panicking::panic_fmt(format_args!("there is no field in Variants::Empty types"));
}panic!("there is no field in Variants::Empty types"),
431 Variants::Multiple { .. } => bug_impl(None, format_args!("we handled variants above"), Location::caller())bug!("we handled variants above"),
432 }
433 }
434435// other ADTs
436ty::Adt(def, _) => {
437 PathElem::Field(def.non_enum_variant().fields[FieldIdx::from_usize(field)].name)
438 }
439440// arrays/slices
441ty::Array(..) | ty::Slice(..) => PathElem::ArrayElem(field),
442443// dyn traits
444ty::Dynamic(..) => {
445{
match (&field, &0) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val,
&*right_val, ::core::option::Option::None);
}
}
}
};assert_eq!(field, 0);
446 PathElem::DynDowncast(field_ty)
447 }
448449// nothing else has an aggregate layout
450_ => bug_impl(None,
format_args!("aggregate_field_path_elem: got non-aggregate type {0:?}",
layout.ty), Location::caller())bug!("aggregate_field_path_elem: got non-aggregate type {:?}", layout.ty),
451 }
452 }
453454fn with_elem<R>(
455&mut self,
456 elem: PathElem<'tcx>,
457 f: impl FnOnce(&mut Self) -> InterpResult<'tcx, R>,
458 ) -> InterpResult<'tcx, R> {
459// Remember the old state
460let path_len = self.path.projs.len();
461// Record new element
462self.path.projs.push(elem);
463// Perform operation
464let r = f(self)?;
465// Undo changes
466self.path.projs.truncate(path_len);
467// Done
468interp_ok(r)
469 }
470471fn read_immediate(
472&self,
473 val: &PlaceTy<'tcx, M::Provenance>,
474 expected: ExpectedKind,
475 ) -> InterpResult<'tcx, ImmTy<'tcx, M::Provenance>> {
476interp_ok({
self.ecx.read_immediate(val).map_err_kind(|e|
{
match e {
Ub(InvalidUninitBytes(_)) => {
{
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg = ValidationErrorKind::from(Uninit { expected });
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}
}
Unsup(ReadPointerAsInt(_)) => {
{
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(PointerAsInt { expected });
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}
}
Unsup(ReadPartialPointer(_)) => {
{
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg = ValidationErrorKind::from(PartialPointer);
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}
}
e => e,
}
})?
}try_validation!(
477self.ecx.read_immediate(val),
478self.path,
479 Ub(InvalidUninitBytes(_)) =>
480 Uninit { expected },
481// The `Unsup` cases can only occur during CTFE
482Unsup(ReadPointerAsInt(_)) =>
483 PointerAsInt { expected },
484 Unsup(ReadPartialPointer(_)) =>
485 PartialPointer,
486 ))
487 }
488489fn read_scalar(
490&self,
491 val: &PlaceTy<'tcx, M::Provenance>,
492 expected: ExpectedKind,
493 ) -> InterpResult<'tcx, Scalar<M::Provenance>> {
494interp_ok(self.read_immediate(val, expected)?.to_scalar())
495 }
496497/// Given a place and a pointer loaded from that place, ensure that the place does
498 /// not store any more provenance than the pointer does. IOW, if any provenance
499 /// was discarded when loading the pointer, it will also get discarded in-memory.
500fn reset_pointer_provenance(
501&mut self,
502 place: &PlaceTy<'tcx, M::Provenance>,
503 ptr: &ImmTy<'tcx, M::Provenance>,
504 ) -> InterpResult<'tcx> {
505if #[allow(non_exhaustive_omitted_patterns)] match ptr.layout.backend_repr {
BackendRepr::Scalar(..) => true,
_ => false,
}matches!(ptr.layout.backend_repr, BackendRepr::Scalar(..)) {
506// A thin pointer. If it has provenance, we don't have to do anything.
507 // If it does not, ensure we clear the provenance in memory.
508if !#[allow(non_exhaustive_omitted_patterns)] match ptr.to_scalar() {
Scalar::Ptr(..) => true,
_ => false,
}matches!(ptr.to_scalar(), Scalar::Ptr(..)) {
509// The loaded pointer has no provenance. Some bytes of its representation still
510 // might have provenance, which we have to clear.
511self.ecx.clear_provenance(place)?;
512 }
513 } else {
514// A wide pointer. This means we have to worry both about the pointer itself and the
515 // metadata. We do the lazy thing and just write back the value we got. Just
516 // clearing provenance in a targeted manner would be more efficient, but unless this
517 // is a perf hotspot it's just not worth the effort.
518self.ecx.write_immediate_no_validate(**ptr, place)?;
519 }
520interp_ok(())
521 }
522523fn check_wide_ptr_meta(
524&mut self,
525 meta: MemPlaceMeta<M::Provenance>,
526 pointee: TyAndLayout<'tcx>,
527 ) -> InterpResult<'tcx> {
528let tail = self.ecx.tcx.struct_tail_for_codegen(pointee.ty, self.ecx.typing_env);
529match tail.kind() {
530 ty::Dynamic(data, _) => {
531let vtable = meta.unwrap_meta().to_pointer(self.ecx);
532// Make sure it is a genuine vtable pointer for the right trait.
533{
self.ecx.get_ptr_vtable_ty(vtable,
Some(data)).map_err_kind(|e|
{
match e {
Ub(DanglingIntPointer { .. } | InvalidVTablePointer(..)) =>
{
{
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered {0}, but expected a vtable pointer",
vtable))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}
}
Ub(InvalidVTableTrait { vtable_dyn_type, expected_dyn_type
}) => {
{
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(InvalidMetaWrongTrait {
expected_dyn_type,
vtable_dyn_type,
});
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}
}
e => e,
}
})?
};try_validation!(
534self.ecx.get_ptr_vtable_ty(vtable, Some(data)),
535self.path,
536 Ub(DanglingIntPointer{ .. } | InvalidVTablePointer(..)) =>
537format!("encountered {vtable}, but expected a vtable pointer"),
538 Ub(InvalidVTableTrait { vtable_dyn_type, expected_dyn_type }) =>
539 InvalidMetaWrongTrait { expected_dyn_type, vtable_dyn_type },
540 );
541 }
542 ty::Slice(..) | ty::Str => {
543let _len = meta.unwrap_meta().to_target_usize(self.ecx)?;
544// We do not check that `len * elem_size <= isize::MAX`:
545 // that is only required for references, and there it falls out of the
546 // "dereferenceable" check performed by Stacked Borrows.
547}
548 ty::Foreign(..) => {
549// Unsized, but not wide.
550}
551_ => bug_impl(None, format_args!("Unexpected unsized type tail: {0:?}", tail),
Location::caller())bug!("Unexpected unsized type tail: {:?}", tail),
552 }
553554interp_ok(())
555 }
556557/// Check a reference or `Box`.
558 ///
559 /// `ty` is the actual type of `value`; for a Box, `value` will be just the inner raw pointer.
560fn check_safe_pointer(
561&mut self,
562 value: &PlaceTy<'tcx, M::Provenance>,
563 ty: Ty<'tcx>,
564 ptr_kind: PtrKind,
565 ) -> InterpResult<'tcx> {
566// Note that some of those checks (those that encode the basic validity invariant of
567 // pointers) are duplicated in `place_deref`, so changes here might need updates there.
568let ptr = self.read_immediate(value, ptr_kind.into())?;
569if self.reset_provenance_and_padding {
570// There's no padding in a pointer.
571self.add_data_range_place(value);
572// Resetting provenance is done below, together with retagging, to avoid
573 // redundant writes.
574}
575let place = self.ecx.imm_ptr_to_mplace(&ptr)?;
576// Handle wide pointers.
577 // Check metadata early, for better diagnostics
578if place.layout.is_unsized() {
579self.check_wide_ptr_meta(place.meta(), place.layout)?;
580 }
581582// Determine size and alignment of pointee.
583let size_and_align = {
self.ecx.size_and_align_of_val(&place).map_err_kind(|e|
{
match e {
Ub(InvalidMeta(msg)) => {
{
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered invalid {1} metadata: {0}",
match msg {
InvalidMetaKind::SliceTooBig =>
"slice is bigger than largest supported object",
InvalidMetaKind::TooBig =>
"total size is bigger than largest supported object",
}, ptr_kind))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}
}
e => e,
}
})?
}try_validation!(
584self.ecx.size_and_align_of_val(&place),
585self.path,
586 Ub(InvalidMeta(msg)) => format!(
587"encountered invalid {ptr_kind} metadata: {}",
588match msg {
589 InvalidMetaKind::SliceTooBig => "slice is bigger than largest supported object",
590 InvalidMetaKind::TooBig => "total size is bigger than largest supported object",
591 }
592 )
593 );
594let (size, align) = size_and_align595// for the purpose of validity, consider foreign types to have
596 // alignment and size determined by the layout (size will be 0,
597 // alignment should take attributes into account).
598.unwrap_or_else(|| (place.layout.size, place.layout.align.abi));
599600// If we're not allow to dangle, make sure this is dereferenceable and retag it for
601 // the aliasing model.
602let adjusted_ptr = if !self.may_dangle {
603{
self.ecx.check_ptr_access(place.ptr(), size,
CheckInAllocMsg::Dereferenceable("pointer")).map_err_kind(|e|
{
match e {
Ub(DanglingIntPointer { addr: 0, .. }) => {
{
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered a null {0}",
ptr_kind))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}
}
Ub(DanglingIntPointer { addr: i, .. }) => {
{
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered a dangling {1} ({0} has no provenance)",
Pointer::<Option<AllocId>>::without_provenance(i),
ptr_kind))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}
}
Ub(PointerOutOfBounds { .. }) => {
{
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered a dangling {0} (going beyond the bounds of its allocation)",
ptr_kind))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}
}
Ub(PointerUseAfterFree(..)) => {
{
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered a dangling {0} (use-after-free)",
ptr_kind))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}
}
e => e,
}
})?
};try_validation!(
604self.ecx.check_ptr_access(
605 place.ptr(),
606 size,
607 CheckInAllocMsg::Dereferenceable("pointer"), // will anyway be replaced by validity message
608),
609self.path,
610 Ub(DanglingIntPointer { addr: 0, .. }) =>
611format!("encountered a null {ptr_kind}"),
612 Ub(DanglingIntPointer { addr: i, .. }) =>
613format!(
614"encountered a dangling {ptr_kind} ({ptr} has no provenance)",
615 ptr = Pointer::<Option<AllocId>>::without_provenance(i)
616 ),
617 Ub(PointerOutOfBounds { .. }) =>
618format!("encountered a dangling {ptr_kind} (going beyond the bounds of its allocation)"),
619 Ub(PointerUseAfterFree(..)) =>
620format!("encountered a dangling {ptr_kind} (use-after-free)"),
621 );
622if self.reset_provenance_and_padding {
623 M::retag_ptr_value(self.ecx, &ptr, ty).map_err_kind(|e| match e {
624 Ub(WriteToReadOnly(_)) => {
625{
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered {0} pointing to read-only memory",
if ptr_kind == PtrKind::Box {
"box"
} else { "mutable reference" }))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}err_validation_failure!(
626self.path,
627format!(
628"encountered {} pointing to read-only memory",
629if ptr_kind == PtrKind::Box { "box" } else { "mutable reference" },
630 )
631 )632 }
633 InterpErrorKind::MachineStop(mut machine_err) => {
634// Enhance the aliasing model error with the current path.
635if !self.path.projs.is_empty() {
636let mut path = String::new();
637 write_path(&mut path, &self.path.projs);
638 machine_err.with_validation_path(path);
639 }
640 InterpErrorKind::MachineStop(machine_err)
641 }
642 e => e,
643 })?
644} else {
645// We can't retag if we're not resetting provenance.
646None647 }
648 } else {
649// We are not checking dereferenceability, but we still want to ensure that the pointer
650 // *could* be dereferenceable in *some* memory: we have to be able to compute the
651 // address at the end of this range without overflowing..
652let scalar = Scalar::from_maybe_pointer(place.ptr(), self.ecx);
653// Skip this if we don't know the absolute address (during CTFE).
654if let Ok(addr) = scalar.try_to_scalar_int() {
655// Try to compute the end address. Cannot use `Size` addition as that also applies
656 // the "max obj size" bound.
657let addr = Size::from_bytes(addr.to_target_usize(*self.ecx.tcx)).bytes();
658if addr659 .checked_add(size.bytes())
660 .is_none_or(|result| result >= self.ecx.target_usize_max())
661 {
662do yeet {
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered a {1} that is too close to the end of the address space for a pointee of {0} bytes",
size.bytes(), ptr_kind))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}throw_validation_failure!(
663self.path,
664format!(
665"encountered a {ptr_kind} that is too close to the end of the address space for a pointee of {} bytes",
666 size.bytes(),
667 )
668 )669 }
670 }
671672// Pointer remains unchanged.
673None674 };
675// If the pointer needs adjusting, write back adjusted pointer. This automatically
676 // also clears any excess provenance. Otherwise, just clear the provenance.
677if let Some(ptr) = adjusted_ptr {
678self.ecx.write_immediate_no_validate(*ptr, value)?;
679 } else if self.reset_provenance_and_padding {
680self.reset_pointer_provenance(value, &ptr)?;
681 }
682683// Make sure this is non-null. This is obviously needed when `may_dangle` is set,
684 // but even if we did check dereferenceability above that would still allow null
685 // pointers if `size` is zero.
686let scalar = Scalar::from_maybe_pointer(place.ptr(), self.ecx);
687if self.ecx.scalar_may_be_null(scalar)? {
688let maybe = !M::Provenance::OFFSET_IS_ADDR && #[allow(non_exhaustive_omitted_patterns)] match scalar {
Scalar::Ptr(..) => true,
_ => false,
}matches!(scalar, Scalar::Ptr(..));
689do yeet {
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered a {0}null {1}",
if maybe { "maybe-" } else { "" }, ptr_kind))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}throw_validation_failure!(
690self.path,
691format!(
692"encountered a {maybe}null {ptr_kind}",
693 maybe = if maybe { "maybe-" } else { "" }
694 )
695 )696 }
697698// Do not allow references to uninhabited types.
699if !place.layout.ty.is_opsem_inhabited(*self.ecx.tcx, self.ecx.typing_env) {
700let ty = place.layout.ty;
701do yeet {
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered a {0} pointing to uninhabited type `{1}`",
ptr_kind, ty))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}throw_validation_failure!(
702self.path,
703format!("encountered a {ptr_kind} pointing to uninhabited type `{ty}`")
704 )705 }
706707// Check alignment after dereferenceable (if both are violated, trigger the error above).
708{
self.ecx.check_ptr_align(place.ptr(),
align).map_err_kind(|e|
{
match e {
Ub(AlignmentCheckFailed(Misalignment { required, has },
_msg)) => {
{
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered an unaligned {2} (required {0} byte alignment but found {1})",
required.bytes(), has.bytes(), ptr_kind))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}
}
e => e,
}
})?
};try_validation!(
709self.ecx.check_ptr_align(
710 place.ptr(),
711 align,
712 ),
713self.path,
714 Ub(AlignmentCheckFailed(Misalignment { required, has }, _msg)) => format!(
715"encountered an unaligned {ptr_kind} (required {required_bytes} byte alignment but found {found_bytes})",
716 required_bytes = required.bytes(),
717 found_bytes = has.bytes()
718 ),
719 );
720721// Recursive checking (but not inside `MaybeDangling` of course).
722if let Some(ref_tracking) = self.ref_tracking.as_deref_mut()
723 && !self.may_dangle
724 {
725// Proceed recursively even for ZST, no reason to skip them!
726 // `!` is a ZST and we want to validate it.
727if let Some(ctfe_mode) = self.ctfe_mode {
728let mut skip_recursive_check = false;
729// CTFE imposes restrictions on what references can point to.
730if let Ok((alloc_id, _offset, _prov)) =
731self.ecx.ptr_try_get_alloc_id(place.ptr(), 0)
732 {
733// Everything should be already interned.
734let Some(global_alloc) = self.ecx.tcx.try_get_global_alloc(alloc_id) else {
735if self.ecx.memory.alloc_map.contains_key(&alloc_id) {
736// This can happen when interning didn't complete due to, e.g.
737 // missing `make_global`. This must mean other errors are already
738 // being reported.
739self.ecx.tcx.dcx().delayed_bug(
740"interning did not complete, there should be an error",
741 );
742return interp_ok(());
743 }
744// We can't have *any* references to non-existing allocations in const-eval
745 // as the rest of rustc isn't happy with them... so we throw an error, even
746 // though for zero-sized references this isn't really UB.
747 // A potential future alternative would be to resurrect this as a zero-sized allocation
748 // (which codegen will then compile to an aligned dummy pointer anyway).
749do yeet {
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered a dangling {0} (use-after-free)",
ptr_kind))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
};throw_validation_failure!(
750self.path,
751format!("encountered a dangling {ptr_kind} (use-after-free)")
752 );
753 };
754let (size, _align) =
755global_alloc.size_and_align(*self.ecx.tcx, self.ecx.typing_env);
756let alloc_actual_mutbl =
757global_alloc.mutability(*self.ecx.tcx, self.ecx.typing_env);
758759match global_alloc {
760 GlobalAlloc::Static(did) => {
761let DefKind::Static { nested, .. } = self.ecx.tcx.def_kind(did) else {
762bug_impl(None, format_args!("impossible case reached"), Location::caller())bug!()763 };
764if !!self.ecx.tcx.is_thread_local_static(did) {
::core::panicking::panic("assertion failed: !self.ecx.tcx.is_thread_local_static(did)")
};assert!(!self.ecx.tcx.is_thread_local_static(did));
765if !self.ecx.tcx.is_static(did) {
::core::panicking::panic("assertion failed: self.ecx.tcx.is_static(did)")
};assert!(self.ecx.tcx.is_static(did));
766match ctfe_mode {
767 CtfeValidationMode::Static { .. }
768 | CtfeValidationMode::Promoted { .. } => {
769// We skip recursively checking other statics. These statics must be sound by
770 // themselves, and the only way to get broken statics here is by using
771 // unsafe code.
772 // The reasons we don't check other statics is twofold. For one, in all
773 // sound cases, the static was already validated on its own, and second, we
774 // trigger cycle errors if we try to compute the value of the other static
775 // and that static refers back to us (potentially through a promoted).
776 // This could miss some UB, but that's fine.
777 // We still walk nested allocations, as they are fundamentally part of this validation run.
778 // This means we will also recurse into nested statics of *other*
779 // statics, even though we do not recurse into other statics directly.
780 // That's somewhat inconsistent but harmless.
781skip_recursive_check = !nested;
782 }
783 CtfeValidationMode::Const { .. } => {
784// If this is mutable memory or an `extern static`, there's no point in checking it -- we'd
785 // just get errors trying to read the value.
786if alloc_actual_mutbl.is_mut()
787 || self.ecx.tcx.is_foreign_item(did)
788 {
789skip_recursive_check = true;
790 }
791 }
792 }
793 }
794_ => (),
795 }
796797// If this allocation has size zero, there is no actual mutability here.
798if size != Size::ZERO {
799// Determine whether this pointer expects to be pointing to something mutable.
800let ptr_expected_mutbl = match ptr_kind {
801 PtrKind::Box => Mutability::Mut,
802 PtrKind::Ref(mutbl) => {
803// We do not take into account interior mutability here since we cannot know if
804 // there really is an `UnsafeCell` inside `Option<UnsafeCell>` -- so we check
805 // that in the recursive descent behind this reference (controlled by
806 // `allow_immutable_unsafe_cell`).
807mutbl808 }
809 };
810// Mutable pointer to immutable memory is no good.
811if ptr_expected_mutbl == Mutability::Mut812 && alloc_actual_mutbl == Mutability::Not813 {
814// This can actually occur with transmutes.
815do yeet {
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered mutable reference or box pointing to read-only memory"))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
};throw_validation_failure!(
816self.path,
817format!(
818"encountered mutable reference or box pointing to read-only memory"
819)
820 );
821 }
822 }
823 }
824// Potentially skip recursive check.
825if skip_recursive_check {
826return interp_ok(());
827 }
828 } else {
829// This is not CTFE, so it's Miri with recursive checking.
830 // FIXME: should we skip `UnsafeCell` behind shared references? Currently that is
831 // not needed since validation reads bypass Stacked Borrows and data race checks,
832 // but is that really coherent?
833}
834let path = &self.path;
835ref_tracking.track(place, || {
836// We need to clone the path anyway, make sure it gets created
837 // with enough space for the additional `Deref`.
838let mut new_projs = Vec::with_capacity(path.projs.len() + 1);
839new_projs.extend(&path.projs);
840new_projs.push(PathElem::Deref);
841Path { projs: new_projs, orig_ty: path.orig_ty }
842 });
843 }
844interp_ok(())
845 }
846847/// Check if this is a value of primitive type, and if yes check the validity of the value
848 /// at that type. Return `true` if the type is indeed primitive.
849 ///
850 /// Note that not all of these have `FieldsShape::Primitive`, e.g. wide references.
851fn try_visit_primitive(
852&mut self,
853 value: &PlaceTy<'tcx, M::Provenance>,
854 ) -> InterpResult<'tcx, bool> {
855// Go over all the primitive types
856let ty = value.layout.ty;
857match ty.kind() {
858 ty::Bool => {
859let scalar = self.read_scalar(value, ExpectedKind::Bool)?;
860{
scalar.to_bool().map_err_kind(|e|
{
match e {
Ub(InvalidBool(..)) => {
{
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered {0:x}, but expected a boolean",
scalar))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}
}
e => e,
}
})?
};try_validation!(
861 scalar.to_bool(),
862self.path,
863 Ub(InvalidBool(..)) =>
864format!("encountered {scalar:x}, but expected a boolean"),
865 );
866if self.reset_provenance_and_padding {
867self.ecx.clear_provenance(value)?;
868self.add_data_range_place(value);
869 }
870interp_ok(true)
871 }
872 ty::Char => {
873let scalar = self.read_scalar(value, ExpectedKind::Char)?;
874{
scalar.to_char().map_err_kind(|e|
{
match e {
Ub(InvalidChar(..)) => {
{
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered {0:x}, but expected a valid unicode scalar value (in `0..=0x10FFFF` but not in `0xD800..=0xDFFF`)",
scalar))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}
}
e => e,
}
})?
};try_validation!(
875 scalar.to_char(),
876self.path,
877 Ub(InvalidChar(..)) =>
878format!("encountered {scalar:x}, but expected a valid unicode scalar value \
879 (in `0..=0x10FFFF` but not in `0xD800..=0xDFFF`)")
880 );
881if self.reset_provenance_and_padding {
882self.ecx.clear_provenance(value)?;
883self.add_data_range_place(value);
884 }
885interp_ok(true)
886 }
887 ty::Float(_) | ty::Int(_) | ty::Uint(_) => {
888// NOTE: Keep this in sync with the array optimization for int/float
889 // types below!
890self.read_scalar(
891 value,
892if #[allow(non_exhaustive_omitted_patterns)] match ty.kind() {
ty::Float(..) => true,
_ => false,
}matches!(ty.kind(), ty::Float(..)) {
893 ExpectedKind::Float
894 } else {
895 ExpectedKind::Int
896 },
897 )?;
898if self.reset_provenance_and_padding {
899self.ecx.clear_provenance(value)?;
900self.add_data_range_place(value);
901 }
902interp_ok(true)
903 }
904 ty::RawPtr(pointee, ..) => {
905let ptr = self.read_immediate(value, ExpectedKind::RawPtr)?;
906if self.reset_provenance_and_padding {
907self.reset_pointer_provenance(value, &ptr)?;
908// There's no padding in a pointer.
909self.add_data_range_place(value);
910 }
911912if !pointee.is_sized(*self.ecx.tcx, self.ecx.typing_env) {
913// Raw pointers to unsized types need to have their metadata checked.
914 // We avoid creating this place for sized types to match codegen: those types
915 // might actually be invalid (i.e., too big)!
916let place = self.ecx.imm_ptr_to_mplace(&ptr)?;
917if !place.layout.is_unsized() {
::core::panicking::panic("assertion failed: place.layout.is_unsized()")
};assert!(place.layout.is_unsized());
918self.check_wide_ptr_meta(place.meta(), place.layout)?;
919 }
920interp_ok(true)
921 }
922 ty::Ref(_, _ty, mutbl) => {
923self.check_safe_pointer(value, ty, PtrKind::Ref(*mutbl))?;
924interp_ok(true)
925 }
926 ty::FnPtr(..) => {
927let scalar = self.read_scalar(value, ExpectedKind::FnPtr)?;
928929// If we check references recursively, also check that this points to a function.
930if let Some(_) = self.ref_tracking {
931let ptr = scalar.to_pointer(self.ecx);
932let _fn = {
self.ecx.get_ptr_fn(ptr).map_err_kind(|e|
{
match e {
Ub(DanglingIntPointer { .. } | InvalidFunctionPointer(..))
=> {
{
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered {0}, but expected a function pointer",
ptr))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}
}
e => e,
}
})?
}try_validation!(
933self.ecx.get_ptr_fn(ptr),
934self.path,
935 Ub(DanglingIntPointer{ .. } | InvalidFunctionPointer(..)) =>
936format!("encountered {ptr}, but expected a function pointer"),
937 );
938// FIXME: Check if the signature matches
939} else {
940// Otherwise (for standalone Miri and for `-Zextra-const-ub-checks`),
941 // we have to still check it to be non-null.
942if self.ecx.scalar_may_be_null(scalar)? {
943let maybe =
944 !M::Provenance::OFFSET_IS_ADDR && #[allow(non_exhaustive_omitted_patterns)] match scalar {
Scalar::Ptr(..) => true,
_ => false,
}matches!(scalar, Scalar::Ptr(..));
945do yeet {
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered a {0}null function pointer",
if maybe { "maybe-" } else { "" }))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
};throw_validation_failure!(
946self.path,
947format!(
948"encountered a {maybe}null function pointer",
949 maybe = if maybe { "maybe-" } else { "" }
950 )
951 );
952 }
953 }
954if self.reset_provenance_and_padding {
955// Make sure we do not preserve partial provenance. This matches the thin
956 // pointer handling in `deref_pointer`.
957if #[allow(non_exhaustive_omitted_patterns)] match scalar {
Scalar::Int(..) => true,
_ => false,
}matches!(scalar, Scalar::Int(..)) {
958self.ecx.clear_provenance(value)?;
959 }
960self.add_data_range_place(value);
961 }
962interp_ok(true)
963 }
964 ty::Never => {
965do yeet {
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered a value of the never type `!`"))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}throw_validation_failure!(
966self.path,
967format!("encountered a value of the never type `!`")
968 )969 }
970 ty::Foreign(..) | ty::FnDef(..) => {
971// Nothing to check.
972interp_ok(true)
973 }
974 ty::UnsafeBinder(_) => {
::core::panicking::panic_fmt(format_args!("not implemented: {0}",
format_args!("FIXME(unsafe_binder)")));
}unimplemented!("FIXME(unsafe_binder)"),
975// The above should be all the primitive types. The rest is compound, we
976 // check them by visiting their fields/variants.
977ty::Adt(..)
978 | ty::Tuple(..)
979 | ty::Array(..)
980 | ty::Slice(..)
981 | ty::Str982 | ty::Dynamic(..)
983 | ty::Closure(..)
984 | ty::Pat(..)
985 | ty::CoroutineClosure(..)
986 | ty::Coroutine(..) => interp_ok(false),
987// Some types only occur during typechecking, they have no layout.
988 // We should not see them here and we could not check them anyway.
989ty::Error(_)
990 | ty::Infer(..)
991 | ty::Placeholder(..)
992 | ty::Bound(..)
993 | ty::Param(..)
994 | ty::Alias(..)
995 | ty::CoroutineWitness(..) => bug_impl(None, format_args!("Encountered invalid type {0:?}", ty),
Location::caller())bug!("Encountered invalid type {:?}", ty),
996 }
997 }
998999fn visit_scalar(
1000&mut self,
1001 scalar: Scalar<M::Provenance>,
1002 scalar_layout: ScalarAbi,
1003 ) -> InterpResult<'tcx> {
1004let size = scalar_layout.size(self.ecx);
1005let valid_range = scalar_layout.valid_range(self.ecx);
1006let WrappingRange { start, end } = valid_range;
1007let max_value = size.unsigned_int_max();
1008if !(end <= max_value) {
::core::panicking::panic("assertion failed: end <= max_value")
};assert!(end <= max_value);
1009let bits = match scalar.try_to_scalar_int() {
1010Ok(int) => int.to_bits(size),
1011Err(_) => {
1012// So this is a pointer then, and casting to an int failed.
1013 // Can only happen during CTFE.
1014 // We support 2 kinds of ranges here: full range, and excluding zero.
1015if start == 1 && end == max_value {
1016// Only null is the niche. So make sure the ptr is NOT null.
1017if self.ecx.scalar_may_be_null(scalar)? {
1018do yeet {
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered a maybe-null pointer, but expected something that is definitely non-zero"))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}throw_validation_failure!(
1019self.path,
1020format!(
1021"encountered a maybe-null pointer, but expected something that is definitely non-zero"
1022)
1023 )1024 } else {
1025return interp_ok(());
1026 }
1027 } else if scalar_layout.is_always_valid(self.ecx) {
1028// Easy. (This is reachable if `enforce_number_validity` is set.)
1029return interp_ok(());
1030 } else {
1031// Conservatively, we reject, because the pointer *could* have a bad value.
1032do yeet {
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered a pointer with unknown absolute address, but expected something that is definitely {0}",
fmt_range(valid_range, max_value)))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}throw_validation_failure!(
1033self.path,
1034format!(
1035"encountered a pointer with unknown absolute address, but expected something that is definitely {in_range}",
1036 in_range = fmt_range(valid_range, max_value)
1037 )
1038 )1039 }
1040 }
1041 };
1042// Now compare.
1043if valid_range.contains(bits) {
1044interp_ok(())
1045 } else {
1046do yeet {
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered {1}, but expected something {0}",
fmt_range(valid_range, max_value), bits))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}throw_validation_failure!(
1047self.path,
1048format!(
1049"encountered {bits}, but expected something {in_range}",
1050 in_range = fmt_range(valid_range, max_value)
1051 )
1052 )1053 }
1054 }
10551056fn in_mutable_memory(&self, val: &PlaceTy<'tcx, M::Provenance>) -> bool {
1057if true {
if !self.ctfe_mode.is_some() {
::core::panicking::panic("assertion failed: self.ctfe_mode.is_some()")
};
};debug_assert!(self.ctfe_mode.is_some());
1058if let Some(mplace) = val.as_mplace_or_local().left() {
1059if let Some(alloc_id) = mplace.ptr().provenance.and_then(|p| p.get_alloc_id()) {
1060let tcx = *self.ecx.tcx;
1061// Everything must be already interned.
1062let mutbl = tcx.global_alloc(alloc_id).mutability(tcx, self.ecx.typing_env);
1063if let Some((_, alloc)) = self.ecx.memory.alloc_map.get(alloc_id) {
1064{
match (&alloc.mutability, &mutbl) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
let kind = ::core::panicking::AssertKind::Eq;
::core::panicking::assert_failed(kind, &*left_val,
&*right_val, ::core::option::Option::None);
}
}
}
};assert_eq!(alloc.mutability, mutbl);
1065 }
1066mutbl.is_mut()
1067 } else {
1068// No memory at all.
1069false
1070}
1071 } else {
1072// A local variable -- definitely mutable.
1073true
1074}
1075 }
10761077/// Add the given pointer-length pair to the "data" range of this visit.
1078fn add_data_range(&mut self, ptr: Pointer<Option<M::Provenance>>, size: Size) {
1079if let Some(data_bytes) = self.data_bytes.as_mut() {
1080// We only have to store the offset, the rest is the same for all pointers here.
1081 // The logic is agnostic to whether the offset is relative or absolute as long as
1082 // it is consistent.
1083let (_prov, offset) = ptr.into_raw_parts();
1084// Add this.
1085data_bytes.add_range(offset, size);
1086 };
1087 }
10881089/// Add the entire given place to the "data" range of this visit.
1090fn add_data_range_place(&mut self, place: &PlaceTy<'tcx, M::Provenance>) {
1091// Only sized places can be added this way.
1092if true {
if !place.layout.is_sized() {
::core::panicking::panic("assertion failed: place.layout.is_sized()")
};
};debug_assert!(place.layout.is_sized());
1093if let Some(data_bytes) = self.data_bytes.as_mut() {
1094let offset = Self::data_range_offset(self.ecx, place);
1095data_bytes.add_range(offset, place.layout.size);
1096 }
1097 }
10981099/// Convert a place into the offset it starts at, for the purpose of data_range tracking.
1100 /// Must only be called if `data_bytes` is `Some(_)`.
1101fn data_range_offset(ecx: &InterpCx<'tcx, M>, place: &PlaceTy<'tcx, M::Provenance>) -> Size {
1102// The presence of `data_bytes` implies that our place is in memory.
1103let ptr = ecx1104 .place_to_op(place)
1105 .expect("place must be in memory")
1106 .as_mplace_or_imm()
1107 .expect_left("place must be in memory")
1108 .ptr();
1109let (_prov, offset) = ptr.into_raw_parts();
1110offset1111 }
11121113fn reset_padding(&mut self, place: &PlaceTy<'tcx, M::Provenance>) -> InterpResult<'tcx> {
1114let Some(data_bytes) = self.data_bytes.as_mut() else { return interp_ok(()) };
1115// Our value must be in memory, otherwise we would not have set up `data_bytes`.
1116let mplace = self.ecx.force_allocation(place)?;
1117// Determine starting offset and size.
1118let (_prov, start_offset) = mplace.ptr().into_raw_parts();
1119let (size, _align) = self
1120.ecx
1121 .size_and_align_of_val(&mplace)?
1122.unwrap_or((mplace.layout.size, mplace.layout.align.abi));
1123// If there is no padding at all, we can skip the rest: check for
1124 // a single data range covering the entire value.
1125if data_bytes.0 == &[(start_offset, size)] {
1126return interp_ok(());
1127 }
1128// Get a handle for the allocation. Do this only once, to avoid looking up the same
1129 // allocation over and over again. (Though to be fair, iterating the value already does
1130 // exactly that.)
1131let Some(mut alloc) = self.ecx.get_ptr_alloc_mut(mplace.ptr(), size)? else {
1132// A ZST, no padding to clear.
1133return interp_ok(());
1134 };
1135// Add a "finalizer" data range at the end, so that the iteration below finds all gaps
1136 // between ranges.
1137data_bytes.0.push((start_offset + size, Size::ZERO));
1138// Iterate, and reset gaps.
1139let mut padding_cleared_until = start_offset;
1140for &(offset, size) in data_bytes.0.iter() {
1141if !(offset >= padding_cleared_until) {
{
::core::panicking::panic_fmt(format_args!("reset_padding on {0}: previous field ended at offset {1}, next field starts at {2} (and has a size of {3} bytes)",
mplace.layout.ty,
(padding_cleared_until - start_offset).bytes(),
(offset - start_offset).bytes(), size.bytes()));
}
};assert!(
1142 offset >= padding_cleared_until,
1143"reset_padding on {}: previous field ended at offset {}, next field starts at {} (and has a size of {} bytes)",
1144 mplace.layout.ty,
1145 (padding_cleared_until - start_offset).bytes(),
1146 (offset - start_offset).bytes(),
1147 size.bytes(),
1148 );
1149if offset > padding_cleared_until {
1150// We found padding. Adjust the range to be relative to `alloc`, and make it uninit.
1151let padding_start = padding_cleared_until - start_offset;
1152let padding_size = offset - padding_cleared_until;
1153let range = alloc_range(padding_start, padding_size);
1154{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_const_eval/src/interpret/validity.rs:1154",
"rustc_const_eval::interpret::validity",
::tracing::Level::TRACE,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_const_eval/src/interpret/validity.rs"),
::tracing_core::__macro_support::Option::Some(1154u32),
::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::validity"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::TRACE <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("reset_padding on {0}: resetting padding range {1:?}",
mplace.layout.ty, range) as &dyn ::tracing::field::Value))])
});
} else { ; }
};trace!("reset_padding on {}: resetting padding range {range:?}", mplace.layout.ty);
1155 alloc.write_uninit(range);
1156 }
1157 padding_cleared_until = offset + size;
1158 }
1159if !(padding_cleared_until == start_offset + size) {
::core::panicking::panic("assertion failed: padding_cleared_until == start_offset + size")
};assert!(padding_cleared_until == start_offset + size);
1160interp_ok(())
1161 }
11621163/// Computes the data range of this union type:
1164 /// which bytes are inside a field (i.e., not padding.)
1165fn union_data_range<'e>(
1166 ecx: &'e mut InterpCx<'tcx, M>,
1167 layout: TyAndLayout<'tcx>,
1168 ) -> Cow<'e, RangeSet> {
1169if !layout.ty.is_union() {
::core::panicking::panic("assertion failed: layout.ty.is_union()")
};assert!(layout.ty.is_union());
1170if !layout.is_sized() {
{
::core::panicking::panic_fmt(format_args!("there are no unsized unions"));
}
};assert!(layout.is_sized(), "there are no unsized unions");
1171let layout_cx = LayoutCx::new(*ecx.tcx, ecx.typing_env);
1172return M::cached_union_data_range(ecx, layout.ty, || {
1173let mut out = RangeSet::new();
1174union_data_range_uncached(&layout_cx, layout, Size::ZERO, &mut out);
1175out1176 });
11771178/// Helper for recursive traversal: add data ranges of the given type to `out`.
1179fn union_data_range_uncached<'tcx>(
1180 cx: &LayoutCx<'tcx>,
1181 layout: TyAndLayout<'tcx>,
1182 base_offset: Size,
1183 out: &mut RangeSet,
1184 ) {
1185// If this is a ZST, we don't contain any data. In particular, this helps us to quickly
1186 // skip over huge arrays of ZST.
1187if layout.is_zst() {
1188return;
1189 }
1190// Just recursively add all the fields of everything to the output.
1191match &layout.fields {
1192 FieldsShape::Primitive => {
1193out.add_range(base_offset, layout.size);
1194 }
1195&FieldsShape::Union(fields) => {
1196// Currently, all fields start at offset 0 (relative to `base_offset`).
1197for field in 0..fields.get() {
1198let field = layout.field(cx, field);
1199 union_data_range_uncached(cx, field, base_offset, out);
1200 }
1201 }
1202&FieldsShape::Array { stride, count } => {
1203let elem = layout.field(cx, 0);
12041205// Fast-path for large arrays of simple types that do not contain any padding.
1206if elem.backend_repr.is_scalar() {
1207out.add_range(base_offset, elem.size * count);
1208 } else {
1209for idx in 0..count {
1210// This repeats the same computation for every array element... but the alternative
1211 // is to allocate temporary storage for a dedicated `out` set for the array element,
1212 // and replicating that N times. Is that better?
1213union_data_range_uncached(cx, elem, base_offset + idx * stride, out);
1214 }
1215 }
1216 }
1217 FieldsShape::Arbitrary { offsets, .. } => {
1218for (field, &offset) in offsets.iter_enumerated() {
1219let field = layout.field(cx, field.as_usize());
1220 union_data_range_uncached(cx, field, base_offset + offset, out);
1221 }
1222 }
1223 }
1224// Don't forget potential other variants.
1225match &layout.variants {
1226 Variants::Single { .. } | Variants::Empty => {
1227// Fully handled above.
1228}
1229 Variants::Multiple { variants, .. } => {
1230for variant in variants.indices() {
1231let variant = layout.for_variant(cx, variant);
1232 union_data_range_uncached(cx, variant, base_offset, out);
1233 }
1234 }
1235 }
1236 }
1237 }
1238}
12391240impl<'rt, 'tcx, M: Machine<'tcx>> ValueVisitor<'tcx, M> for ValidityVisitor<'rt, 'tcx, M> {
1241type V = PlaceTy<'tcx, M::Provenance>;
12421243#[inline(always)]
1244fn ecx(&self) -> &InterpCx<'tcx, M> {
1245self.ecx
1246 }
12471248fn read_discriminant(
1249&mut self,
1250 val: &PlaceTy<'tcx, M::Provenance>,
1251 ) -> InterpResult<'tcx, VariantIdx> {
1252self.with_elem(PathElem::EnumTag, move |this| {
1253interp_ok({
this.ecx.read_discriminant(val).map_err_kind(|e|
{
match e {
Ub(InvalidTag(val)) => {
{
let where_ = &this.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered {0:x}, but expected a valid enum tag",
val))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}
}
Ub(UninhabitedEnumVariantRead(_)) => {
{
let where_ = &this.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered an uninhabited enum variant"))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}
}
e => e,
}
})?
}try_validation!(
1254 this.ecx.read_discriminant(val),
1255 this.path,
1256 Ub(InvalidTag(val)) =>
1257format!("encountered {val:x}, but expected a valid enum tag"),
1258 Ub(UninhabitedEnumVariantRead(_)) =>
1259format!("encountered an uninhabited enum variant"),
1260// Uninit / bad provenance are not possible since the field was already previously
1261 // checked at its integer type.
1262))
1263 })
1264 }
12651266#[inline]
1267fn visit_field(
1268&mut self,
1269 old_val: &PlaceTy<'tcx, M::Provenance>,
1270 field: usize,
1271 new_val: &PlaceTy<'tcx, M::Provenance>,
1272 ) -> InterpResult<'tcx> {
1273let elem = self.aggregate_field_path_elem(old_val.layout, field, new_val.layout.ty);
1274self.with_elem(elem, move |this| this.visit_value(new_val))
1275 }
12761277#[inline]
1278fn visit_variant(
1279&mut self,
1280 old_val: &PlaceTy<'tcx, M::Provenance>,
1281 variant_id: VariantIdx,
1282 new_val: &PlaceTy<'tcx, M::Provenance>,
1283 ) -> InterpResult<'tcx> {
1284let name = match old_val.layout.ty.kind() {
1285 ty::Adt(adt, _) => PathElem::Variant(adt.variant(variant_id).name),
1286// Coroutines also have variants
1287ty::Coroutine(..) => PathElem::CoroutineState(variant_id),
1288_ => bug_impl(None,
format_args!("Unexpected type with variant: {0:?}", old_val.layout.ty),
Location::caller())bug!("Unexpected type with variant: {:?}", old_val.layout.ty),
1289 };
1290self.with_elem(name, move |this| this.visit_value(new_val))
1291 }
12921293#[inline(always)]
1294fn visit_union(
1295&mut self,
1296 val: &PlaceTy<'tcx, M::Provenance>,
1297 _fields: NonZero<usize>,
1298 ) -> InterpResult<'tcx> {
1299// Special check for CTFE validation, preventing `UnsafeCell` inside unions in immutable memory.
1300if self.ctfe_mode.is_some_and(|c| !c.allow_immutable_unsafe_cell()) {
1301// Unsized unions are currently not a thing, but let's keep this code consistent with
1302 // the check in `visit_value`.
1303let zst = self.ecx.size_and_align_of_val(val)?.is_some_and(|(s, _a)| s.bytes() == 0);
1304if !zst && !val.layout.ty.is_freeze(*self.ecx.tcx, self.ecx.typing_env) {
1305if !self.in_mutable_memory(val) {
1306do yeet {
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered `UnsafeCell` in read-only memory"))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
};throw_validation_failure!(
1307self.path,
1308format!("encountered `UnsafeCell` in read-only memory")
1309 );
1310 }
1311 }
1312 }
1313if self.reset_provenance_and_padding
1314 && let Some(data_bytes) = self.data_bytes.as_mut()
1315 {
1316let base_offset = Self::data_range_offset(self.ecx, val);
1317// Determine and add data range for this union.
1318let union_data_range = Self::union_data_range(self.ecx, val.layout);
1319for &(offset, size) in union_data_range.0.iter() {
1320 data_bytes.add_range(base_offset + offset, size);
1321 }
1322 }
1323interp_ok(())
1324 }
13251326#[inline]
1327fn visit_box(
1328&mut self,
1329 box_ty: Ty<'tcx>,
1330 val: &PlaceTy<'tcx, M::Provenance>,
1331 ) -> InterpResult<'tcx> {
1332self.check_safe_pointer(&val, box_ty, PtrKind::Box)?;
1333interp_ok(())
1334 }
13351336#[inline]
1337fn visit_variantless(&mut self, val: &PlaceTy<'tcx, M::Provenance>) -> InterpResult<'tcx> {
1338let ty = val.layout.ty;
1339if !ty.is_enum() {
{
::core::panicking::panic_fmt(format_args!("encountered non-enum variantless type `{0}`",
ty));
}
};assert!(ty.is_enum(), "encountered non-enum variantless type `{ty}`");
1340do yeet {
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered a value of zero-variant enum `{0}`",
ty))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
};throw_validation_failure!(
1341self.path,
1342format!("encountered a value of zero-variant enum `{ty}`")
1343 );
1344 }
13451346#[inline]
1347fn visit_value(&mut self, val: &PlaceTy<'tcx, M::Provenance>) -> InterpResult<'tcx> {
1348{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_const_eval/src/interpret/validity.rs:1348",
"rustc_const_eval::interpret::validity",
::tracing::Level::TRACE,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_const_eval/src/interpret/validity.rs"),
::tracing_core::__macro_support::Option::Some(1348u32),
::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::validity"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::TRACE <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("visit_value: {0:?}, {1:?}",
*val, val.layout) as &dyn ::tracing::field::Value))])
});
} else { ; }
};trace!("visit_value: {:?}, {:?}", *val, val.layout);
13491350// Check primitive types -- the leaves of our recursive descent.
1351 // This is called even for enum discriminants (which are "fields" of their enum),
1352 // so for integer-typed discriminants the provenance reset will happen here.
1353 // We assume that the Scalar validity range does not restrict these values
1354 // any further than `try_visit_primitive` does!
1355if self.try_visit_primitive(val)? {
1356return interp_ok(());
1357 }
13581359// Special check preventing `UnsafeCell` in the inner part of constants
1360if self.ctfe_mode.is_some_and(|c| !c.allow_immutable_unsafe_cell()) {
1361// Exclude ZST values. We need to compute the dynamic size/align to properly
1362 // handle slices and trait objects.
1363let zst = self.ecx.size_and_align_of_val(val)?.is_some_and(|(s, _a)| s.bytes() == 0);
1364if !zst1365 && let Some(def) = val.layout.ty.ty_adt_def()
1366 && def.is_unsafe_cell()
1367 {
1368if !self.in_mutable_memory(val) {
1369do yeet {
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("encountered `UnsafeCell` in read-only memory"))
}));
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
};throw_validation_failure!(
1370self.path,
1371format!("encountered `UnsafeCell` in read-only memory")
1372 );
1373 }
1374 }
1375 }
13761377// Recursively walk the value at its type. Apply optimizations for some large types.
1378match val.layout.ty.kind() {
1379 ty::Str => {
1380let mplace = val.assert_mem_place(); // strings are unsized and hence never immediate
1381let len = mplace.len(self.ecx)?;
1382let expected = ExpectedKind::Str;
1383{
self.ecx.read_bytes_ptr_strip_provenance(mplace.ptr(),
Size::from_bytes(len)).map_err_kind(|e|
{
match e {
Ub(InvalidUninitBytes(..)) => {
{
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg = ValidationErrorKind::from(Uninit { expected });
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}
}
Unsup(ReadPointerAsInt(_)) => {
{
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(PointerAsInt { expected });
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}
}
e => e,
}
})?
};try_validation!(
1384self.ecx.read_bytes_ptr_strip_provenance(mplace.ptr(), Size::from_bytes(len)),
1385self.path,
1386 Ub(InvalidUninitBytes(..)) =>
1387 Uninit { expected },
1388 Unsup(ReadPointerAsInt(_)) =>
1389 PointerAsInt { expected },
1390 );
1391 }
1392 ty::Array(tys, ..) | ty::Slice(tys)
1393// This optimization applies for types that can hold arbitrary non-provenance bytes (such as
1394 // integer and floating point types).
1395 // FIXME(wesleywiser) This logic could be extended further to arbitrary structs or
1396 // tuples made up of integer/floating point types or inhabited ZSTs with no padding.
1397if #[allow(non_exhaustive_omitted_patterns)] match tys.kind() {
ty::Int(..) | ty::Uint(..) | ty::Float(..) => true,
_ => false,
}matches!(tys.kind(), ty::Int(..) | ty::Uint(..) | ty::Float(..))1398 =>
1399 {
1400let expected = if tys.is_integral() { ExpectedKind::Int } else { ExpectedKind::Float };
1401// Optimized handling for arrays of integer/float type.
14021403 // This is the length of the array/slice.
1404let len = val.len(self.ecx)?;
1405// This is the element type size.
1406let layout = self.ecx.layout_of(*tys)?;
1407// This is the size in bytes of the whole array. (This checks for overflow.)
1408let size = layout.size * len;
1409// If the size is 0, there is nothing to check.
1410 // (`size` can only be 0 if `len` is 0, and empty arrays are always valid.)
1411if size == Size::ZERO {
1412return interp_ok(());
1413 }
1414// Now that we definitely have a non-ZST array, we know it lives in memory -- except it may
1415 // be an uninitialized local variable, those are also "immediate".
1416let mplace = match val.to_op(self.ecx)?.as_mplace_or_imm() {
1417Left(mplace) => mplace,
1418Right(imm) => match *imm {
1419 Immediate::Uninit =>
1420do yeet {
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg = ValidationErrorKind::from(Uninit { expected });
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}throw_validation_failure!(
1421self.path,
1422 Uninit { expected }
1423 ),
1424 Immediate::Scalar(..) | Immediate::ScalarPair { .. } =>
1425bug_impl(None,
format_args!("arrays/slices can never have Scalar/ScalarPair layout"),
Location::caller())bug!("arrays/slices can never have Scalar/ScalarPair layout"),
1426 }
1427 };
14281429// Optimization: we just check the entire range at once.
1430 // NOTE: Keep this in sync with the handling of integer and float
1431 // types above, in `visit_primitive`.
1432 // No need for an alignment check here, this is not an actual memory access.
1433let alloc = self.ecx.get_ptr_alloc(mplace.ptr(), size)?.expect("we already excluded size 0");
14341435 alloc.get_bytes_strip_provenance().map_err_kind(|kind| {
1436// Some error happened, try to provide a more detailed description.
1437 // For some errors we might be able to provide extra information.
1438 // (This custom logic does not fit the `try_validation!` macro.)
1439match kind {
1440 Ub(InvalidUninitBytes(Some((_alloc_id, access)))) | Unsup(ReadPointerAsInt(Some((_alloc_id, access)))) => {
1441// Some byte was uninitialized, determine which
1442 // element that byte belongs to so we can
1443 // provide an index.
1444let i = usize::try_from(
1445 access.bad.start.bytes() / layout.size.bytes(),
1446 )
1447 .unwrap();
1448self.path.projs.push(PathElem::ArrayElem(i));
14491450if #[allow(non_exhaustive_omitted_patterns)] match kind {
Ub(InvalidUninitBytes(_)) => true,
_ => false,
}matches!(kind, Ub(InvalidUninitBytes(_))) {
1451{
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg = ValidationErrorKind::from(Uninit { expected });
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}err_validation_failure!(self.path, Uninit { expected })1452 } else {
1453{
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg = ValidationErrorKind::from(PointerAsInt { expected });
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}err_validation_failure!(self.path, PointerAsInt {expected})1454 }
1455 }
14561457// Propagate upwards (that will also check for unexpected errors).
1458err => err,
1459 }
1460 })?;
14611462// Don't forget that these are all non-pointer types, and thus do not preserve
1463 // provenance.
1464if self.reset_provenance_and_padding {
1465// We can't share this with above as above, we might be looking at read-only memory.
1466let mut alloc = self.ecx.get_ptr_alloc_mut(mplace.ptr(), size)?.expect("we already excluded size 0");
1467alloc.clear_provenance();
1468// Also, mark this as containing data, not padding.
1469self.add_data_range(mplace.ptr(), size);
1470 }
1471 }
1472// Fast path for arrays and slices of ZSTs. We only need to check a single ZST element
1473 // of an array and not all of them, because there's only a single value of a specific
1474 // ZST type, so either validation fails for all elements or none.
1475ty::Array(tys, ..) | ty::Slice(tys) if self.ecx.layout_of(*tys)?.is_zst() => {
1476// Validate just the first element (if any).
1477if val.len(self.ecx)? > 0 {
1478self.visit_field(val, 0, &self.ecx.project_index(val, 0)?)?;
1479 }
1480 }
1481 ty::Pat(base, pat) => {
1482// First check that the base type is valid
1483self.visit_value(&val.transmute(self.ecx.layout_of(*base)?, self.ecx)?)?;
1484// When you extend this match, make sure to also add tests to
1485 // tests/ui/type/pattern_types/validity.rs
1486match **pat {
1487// Range and non-null patterns are precisely reflected into `valid_range` and thus
1488 // handled fully by `visit_scalar` (called below).
1489ty::PatternKind::Range { .. } => {},
1490 ty::PatternKind::NotNull => {},
14911492// FIXME(pattern_types): check that the value is covered by one of the variants.
1493 // For now, we rely on layout computation setting the scalar's `valid_range` to
1494 // match the pattern. However, this cannot always work; the layout may
1495 // pessimistically cover actually illegal ranges and Miri would miss that UB.
1496 // The consolation here is that codegen also will miss that UB, so at least
1497 // we won't see optimizations actually breaking such programs.
1498ty::PatternKind::Or(_patterns) => {}
1499 }
1500// FIXME(pattern_types): handle everything based on the pattern, not on the layout.
1501 // it's ok to run scalar validation even if the pattern type is `u8 is 0..=255` and thus
1502 // allows uninit values, because that's rare and so not a perf issue.
1503match val.layout.backend_repr {
1504 BackendRepr::Scalar(scalar_layout) => {
1505if !scalar_layout.is_uninit_valid() {
1506// There is something to check here.
1507 // We read directly via `ecx` since the read cannot fail -- we already read
1508 // this field above when recursing into the field.
1509let scalar = self.ecx.read_scalar(val)?;
1510self.visit_scalar(scalar, scalar_layout)?;
1511 }
1512 }
1513 BackendRepr::ScalarPair { a: a_layout, b: b_layout, b_offset: _ } => {
1514// We can only proceed if *both* scalars need to be initialized.
1515 // FIXME: find a way to also check ScalarPair when one side can be uninit but
1516 // the other must be init.
1517if !a_layout.is_uninit_valid() && !b_layout.is_uninit_valid() {
1518// We read directly via `ecx` since the read cannot fail -- we already read
1519 // this field above when recursing into the field.
1520let (a, b) = self.ecx.read_immediate(val)?.to_scalar_pair();
1521self.visit_scalar(a, a_layout)?;
1522self.visit_scalar(b, b_layout)?;
1523 }
1524 }
1525 BackendRepr::SimdVector { .. } | BackendRepr::SimdScalableVector { .. } => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
1526 BackendRepr::Memory { .. } => ::core::panicking::panic("internal error: entered unreachable code")unreachable!()1527 }
1528 }
1529_ => {
1530let old_may_dangle = self.may_dangle;
1531self.may_dangle |= val.layout.ty.is_like_maybe_dangling();
15321533// default handler
1534{
self.walk_value(val).map_err_kind(|e|
{
match e {
Ub(InvalidVTableTrait { vtable_dyn_type, expected_dyn_type
}) => {
{
let where_ = &self.path;
let path =
if !where_.projs.is_empty() {
let mut path = String::new();
write_path(&mut path, &where_.projs);
Some(path)
} else { None };
#[allow(unused)]
use ValidationErrorKind::*;
let msg =
ValidationErrorKind::from(InvalidMetaWrongTrait {
expected_dyn_type,
vtable_dyn_type,
});
::rustc_middle::mir::interpret::InterpErrorKind::UndefinedBehavior(::rustc_middle::mir::interpret::UndefinedBehaviorInfo::ValidationError {
orig_ty: where_.orig_ty,
path,
ptr_bytes_warning: msg.ptr_bytes_warning(),
msg: msg.to_string(),
})
}
}
e => e,
}
})?
};try_validation!(
1535self.walk_value(val),
1536self.path,
1537// It's not great to catch errors here, since we can't give a very good path,
1538 // but it's better than ICEing.
1539Ub(InvalidVTableTrait { vtable_dyn_type, expected_dyn_type }) =>
1540 InvalidMetaWrongTrait { expected_dyn_type, vtable_dyn_type },
1541 );
15421543self.may_dangle = old_may_dangle;
1544 }
1545 }
15461547// Assert that we checked everything there is to check about this type.
1548 // `is_opsem_inhabited` implies that the layout is inhabited (checked by layout invariants).
1549if !val.layout.ty.is_opsem_inhabited(*self.ecx.tcx, self.ecx.typing_env) {
{
::core::panicking::panic_fmt(format_args!("a value of type `{0}` passed validation but that type is uninhabited",
val.layout.ty));
}
};assert!(
1550 val.layout.ty.is_opsem_inhabited(*self.ecx.tcx, self.ecx.typing_env),
1551"a value of type `{}` passed validation but that type is uninhabited",
1552 val.layout.ty
1553 );
1554if truecfg!(debug_assertions) {
1555// Only run expensive checks when debug assertions are enabled.
1556match val.layout.backend_repr {
1557 BackendRepr::Scalar(scalar_layout) => {
1558if !scalar_layout.is_uninit_valid() {
1559// There is something to check here.
1560 // We read directly via `ecx` since the read cannot fail -- we already read
1561 // this field above when recursing into the field.
1562let scalar = self1563 .ecx
1564 .read_scalar(val)
1565 .expect("the above checks should have fully handled this situation");
1566self.visit_scalar(scalar, scalar_layout)
1567 .expect("the above checks should have fully handled this situation");
1568 }
1569 }
1570 BackendRepr::ScalarPair { a: a_layout, b: b_layout, b_offset: _ } => {
1571// We can only proceed if *both* scalars need to be initialized.
1572 // FIXME: find a way to also check ScalarPair when one side can be uninit but
1573 // the other must be init.
1574if !a_layout.is_uninit_valid() && !b_layout.is_uninit_valid() {
1575let (a, b) = self1576 .ecx
1577 .read_immediate(val)
1578 .expect("the above checks should have fully handled this situation")
1579 .to_scalar_pair();
1580self.visit_scalar(a, a_layout)
1581 .expect("the above checks should have fully handled this situation");
1582self.visit_scalar(b, b_layout)
1583 .expect("the above checks should have fully handled this situation");
1584 }
1585 }
1586 BackendRepr::SimdVector { .. } | BackendRepr::SimdScalableVector { .. } => {}
1587 BackendRepr::Memory { .. } => {}
1588 }
1589 }
15901591interp_ok(())
1592 }
1593}
15941595impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {
1596/// The internal core entry point for all validation operations.
1597fn validate_place_internal(
1598&mut self,
1599 val: &PlaceTy<'tcx, M::Provenance>,
1600 path: Path<'tcx>,
1601 ref_tracking: Option<&mut RefTracking<MPlaceTy<'tcx, M::Provenance>, Path<'tcx>>>,
1602 ctfe_mode: Option<CtfeValidationMode>,
1603 reset_provenance_and_padding: bool,
1604 start_in_may_dangle: bool,
1605 ) -> InterpResult<'tcx> {
1606{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event /rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_const_eval/src/interpret/validity.rs:1606",
"rustc_const_eval::interpret::validity",
::tracing::Level::TRACE,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_const_eval/src/interpret/validity.rs"),
::tracing_core::__macro_support::Option::Some(1606u32),
::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::validity"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::TRACE <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
__CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("validate_place_internal: {0:?}, {1:?}",
*val, val.layout.ty) as &dyn ::tracing::field::Value))])
});
} else { ; }
};trace!("validate_place_internal: {:?}, {:?}", *val, val.layout.ty);
16071608// Run the visitor.
1609self.ghost_run_mut(|ecx| {
1610let reset_padding = reset_provenance_and_padding && {
1611// Check if `val` is actually stored in memory. If not, padding is not even
1612 // represented and we need not reset it.
1613ecx.place_to_op(val)?.as_mplace_or_imm().is_left()
1614 };
1615let mut v = ValidityVisitor {
1616path,
1617ref_tracking,
1618ctfe_mode,
1619ecx,
1620reset_provenance_and_padding,
1621 data_bytes: reset_padding.then_some(RangeSet::new()),
1622 may_dangle: start_in_may_dangle,
1623 };
1624 v.visit_value(val)?;
1625 v.reset_padding(val)?;
1626interp_ok(())
1627 })
1628 .inspect_err_info(|err| {
1629if !#[allow(non_exhaustive_omitted_patterns)] match err.kind() {
InterpErrorKind::UndefinedBehavior(ValidationError { .. }) |
InterpErrorKind::InvalidProgram(_) | InterpErrorKind::Unsupported(_) |
InterpErrorKind::MachineStop(_) => true,
_ => false,
}matches!(
1630 err.kind(),
1631 InterpErrorKind::UndefinedBehavior(ValidationError { .. })
1632 | InterpErrorKind::InvalidProgram(_)
1633 | InterpErrorKind::Unsupported(_)
1634// We have to also ignore machine-specific errors since we do retagging
1635 // during validation.
1636| InterpErrorKind::MachineStop(_)
1637 ) {
1638bug_impl(None,
format_args!("Unexpected error during validation: {0}", err.to_string()),
Location::caller());bug!("Unexpected error during validation: {}", err.to_string());
1639 }
1640 })
1641 }
16421643/// This function checks the data at `val` to be const-valid.
1644 /// `val` is assumed to cover valid memory.
1645 /// It will error if the bits at the destination do not match the ones described by the layout.
1646 ///
1647 /// `ref_tracking` is used to record references that we encounter so that they
1648 /// can be checked recursively by an outside driving loop.
1649 ///
1650 /// `constant` controls whether this must satisfy the rules for constants:
1651 /// - no pointers to statics.
1652 /// - no `UnsafeCell` or non-ZST `&mut`.
1653#[inline(always)]
1654pub(crate) fn const_validate_place(
1655&mut self,
1656 val: &PlaceTy<'tcx, M::Provenance>,
1657 path: Path<'tcx>,
1658 ref_tracking: &mut RefTracking<MPlaceTy<'tcx, M::Provenance>, Path<'tcx>>,
1659 ctfe_mode: CtfeValidationMode,
1660 ) -> InterpResult<'tcx> {
1661self.validate_place_internal(
1662val,
1663path,
1664Some(ref_tracking),
1665Some(ctfe_mode),
1666/*reset_provenance*/ false,
1667/*start_in_may_dangle*/ false,
1668 )
1669 }
16701671/// This function checks the data at `val` to be runtime-valid.
1672 /// `val` is assumed to cover valid memory.
1673 /// It will error if the bits at the destination do not match the ones described by the layout.
1674#[inline(always)]
1675pub fn validate_place(
1676&mut self,
1677 val: &PlaceTy<'tcx, M::Provenance>,
1678 recursive: bool,
1679 reset_provenance_and_padding: bool,
1680 ) -> InterpResult<'tcx> {
1681let _trace =
1682<M as
crate::interpret::Machine>::enter_trace_span(||
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("validate_place",
"rustc_const_eval::interpret::validity",
::tracing::Level::INFO,
::tracing_core::__macro_support::Option::Some("/rustc-dev/923c95cdf5ba65cea505aa2ea829f578e1506ed8/compiler/rustc_const_eval/src/interpret/validity.rs"),
::tracing_core::__macro_support::Option::Some(1682u32),
::tracing_core::__macro_support::Option::Some("rustc_const_eval::interpret::validity"),
::tracing_core::field::FieldSet::new(&[{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("recursive")
}> =
::tracing::__macro_support::FieldName::new("recursive");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("reset_provenance_and_padding")
}> =
::tracing::__macro_support::FieldName::new("reset_provenance_and_padding");
NAME.as_str()
},
{
const NAME:
::tracing::__macro_support::FieldName<{
::tracing::__macro_support::FieldName::len("val")
}> =
::tracing::__macro_support::FieldName::new("val");
NAME.as_str()
}], ::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::INFO <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::INFO <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
meta.fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&recursive
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&reset_provenance_and_padding
as &dyn ::tracing::field::Value)),
(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&val)
as &dyn ::tracing::field::Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
})enter_trace_span!(M, "validate_place", recursive, reset_provenance_and_padding, ?val,);
1683// Note that we *could* actually be in CTFE here with `-Zextra-const-ub-checks`, but it's
1684 // still correct to not use `ctfe_mode`: that mode is for validation of the final constant
1685 // value, it rules out things like `UnsafeCell` in awkward places.
1686if !recursive {
1687return self.validate_place_internal(
1688val,
1689Path::new(val.layout.ty),
1690None,
1691None,
1692reset_provenance_and_padding,
1693/*start_in_may_dangle*/ false,
1694 );
1695 }
1696// Do a recursive check.
1697let mut ref_tracking = RefTracking::empty();
1698self.validate_place_internal(
1699 val,
1700 Path::new(val.layout.ty),
1701Some(&mut ref_tracking),
1702None,
1703 reset_provenance_and_padding,
1704/*start_in_may_dangle*/ false,
1705 )?;
1706while let Some((mplace, path)) = ref_tracking.todo.pop() {
1707// Things behind reference do *not* have the provenance reset. In fact
1708 // we treat the entire thing as being inside MaybeDangling, i.e., references
1709 // do not have to be dereferenceable.
1710self.validate_place_internal(
1711&mplace.into(),
1712 path,
1713None, // no further recursion
1714None,
1715/*reset_provenance_and_padding*/ false,
1716/*start_in_may_dangle*/ true,
1717 )?;
1718 }
1719interp_ok(())
1720 }
1721}