You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rollup merge of rust-lang#127856 - RalfJung:interpret-cast-sanity, r=oli-obk
interpret: add sanity check in dyn upcast to double-check what codegen does
For dyn receiver calls, we already have two codepaths: look up the function to call by indexing into the vtable, or alternatively resolve the DefId given the dynamic type of the receiver. With debug assertions enabled, the interpreter does both and compares the results. (Without debug assertions we always use the vtable as it is simpler.)
This PR does the same for dyn trait upcasts. However, for casts *not* using the vtable is the easier thing to do, so now the vtable path is the debug-assertion-only path. In particular, there are cases where the vtable does not contain a pointer for upcasts but instead reuses the old pointer: when the supertrait vtable is a prefix of the larger vtable. We don't want to expose this optimization and detect UB if people do a transmute assuming this optimization, so we cannot in general use the vtable indexing path.
r? ``@oli-obk``
Copy file name to clipboardexpand all lines: src/tools/miri/tests/fail/dyn-upcast-trait-mismatch.stderr
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
error: Undefined Behavior: using vtable for trait `Baz` but trait `Bar` was expected
2
2
--> $DIR/dyn-upcast-trait-mismatch.rs:LL:CC
3
3
|
4
-
LL | let _err = baz_fake as *const dyn Foo;
5
-
| ^^^^^^^^ using vtable for trait `Baz` but trait `Bar` was expected
4
+
LL | let _err = baz_fake as *const dyn Foo;
5
+
| ^^^^^^^^ using vtable for trait `Baz` but trait `Bar` was expected
6
6
|
7
7
= help: this indicates a bug in the program: it performed an invalid operation, and caused Undefined Behavior
8
8
= help: see https://doc.rust-lang.org/nightly/reference/behavior-considered-undefined.html for further information
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered null pointer, but expected a vtable pointer
444
-
|
445
-
= note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
446
-
= note: the raw bytes of the constant (size: 8, align: 4) {
447
-
╾ALLOC_ID╼ 00 00 00 00 │ ╾──╼....
448
-
}
443
+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ out-of-bounds pointer use: null pointer is a dangling pointer (it has no provenance)
449
444
450
-
error[E0080]: it is undefined behavior to use this value
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered ALLOC27<imm>, but expected a vtable pointer
455
-
|
456
-
= note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
457
-
= note: the raw bytes of the constant (size: 8, align: 4) {
458
-
╾ALLOC_ID╼ ╾ALLOC_ID╼ │ ╾──╼╾──╼
459
-
}
449
+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ using ALLOC32 as vtable pointer but it does not point to a vtable
460
450
461
451
error[E0080]: it is undefined behavior to use this value
0 commit comments