-
Notifications
You must be signed in to change notification settings - Fork 13.4k
add -Zextra-const-ub-checks to enable more UB checking in const-eval #100229
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// compile-flags: -Zextra-const-ub-checks | ||
RalfJung marked this conversation as resolved.
Show resolved
Hide resolved
|
||
#![feature(const_ptr_read)] | ||
|
||
use std::mem::transmute; | ||
|
||
const INVALID_BOOL: () = unsafe { | ||
let _x: bool = transmute(3u8); | ||
//~^ ERROR: evaluation of constant value failed | ||
//~| invalid value | ||
}; | ||
|
||
const INVALID_PTR_IN_INT: () = unsafe { | ||
let _x: usize = transmute(&3u8); | ||
//~^ ERROR: evaluation of constant value failed | ||
//~| invalid value | ||
}; | ||
|
||
const INVALID_SLICE_TO_USIZE_TRANSMUTE: () = unsafe { | ||
let x: &[u8] = &[0; 32]; | ||
let _x: (usize, usize) = transmute(x); | ||
//~^ ERROR: evaluation of constant value failed | ||
//~| invalid value | ||
}; | ||
|
||
const UNALIGNED_PTR: () = unsafe { | ||
let _x: &u32 = transmute(&[0u8; 4]); | ||
//~^ ERROR: evaluation of constant value failed | ||
//~| invalid value | ||
}; | ||
|
||
const UNALIGNED_READ: () = { | ||
INNER; //~ERROR any use of this value will cause an error | ||
//~| previously accepted | ||
// There is an error here but its span is in the standard library so we cannot match it... | ||
// so we have this in a *nested* const, such that the *outer* const fails to use it. | ||
const INNER: () = unsafe { | ||
let x = &[0u8; 4]; | ||
let ptr = x.as_ptr().cast::<u32>(); | ||
ptr.read(); | ||
}; | ||
}; | ||
|
||
fn main() {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
error[E0080]: evaluation of constant value failed | ||
--> $DIR/detect-extra-ub.rs:7:20 | ||
| | ||
LL | let _x: bool = transmute(3u8); | ||
| ^^^^^^^^^^^^^^ constructing invalid value: encountered 0x03, but expected a boolean | ||
|
||
error[E0080]: evaluation of constant value failed | ||
--> $DIR/detect-extra-ub.rs:13:21 | ||
| | ||
LL | let _x: usize = transmute(&3u8); | ||
| ^^^^^^^^^^^^^^^ constructing invalid value: encountered (potentially part of) a pointer, but expected plain (non-pointer) bytes | ||
|
||
error[E0080]: evaluation of constant value failed | ||
--> $DIR/detect-extra-ub.rs:20:30 | ||
| | ||
LL | let _x: (usize, usize) = transmute(x); | ||
| ^^^^^^^^^^^^ constructing invalid value at .0: encountered (potentially part of) a pointer, but expected plain (non-pointer) bytes | ||
|
||
error[E0080]: evaluation of constant value failed | ||
--> $DIR/detect-extra-ub.rs:26:20 | ||
| | ||
LL | let _x: &u32 = transmute(&[0u8; 4]); | ||
| ^^^^^^^^^^^^^^^^^^^^ constructing invalid value: encountered an unaligned reference (required 4 byte alignment but found 1) | ||
|
||
error[E0080]: evaluation of constant value failed | ||
--> $SRC_DIR/core/src/ptr/mod.rs:LL:COL | ||
| | ||
LL | copy_nonoverlapping(src, tmp.as_mut_ptr(), 1); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | | ||
| accessing memory with alignment 1, but alignment 4 is required | ||
| inside `std::ptr::read::<u32>` at $SRC_DIR/core/src/ptr/mod.rs:LL:COL | ||
| | ||
::: $SRC_DIR/core/src/ptr/const_ptr.rs:LL:COL | ||
| | ||
LL | unsafe { read(self) } | ||
| ---------- inside `ptr::const_ptr::<impl *const u32>::read` at $SRC_DIR/core/src/ptr/const_ptr.rs:LL:COL | ||
| | ||
::: $DIR/detect-extra-ub.rs:39:9 | ||
| | ||
LL | ptr.read(); | ||
| ---------- inside `INNER` at $DIR/detect-extra-ub.rs:39:9 | ||
|
||
error: any use of this value will cause an error | ||
--> $DIR/detect-extra-ub.rs:32:5 | ||
| | ||
LL | const UNALIGNED_READ: () = { | ||
| ------------------------ | ||
LL | INNER; | ||
| ^^^^^ referenced constant has errors | ||
| | ||
= note: `#[deny(const_err)]` on by default | ||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! | ||
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800> | ||
|
||
error: aborting due to 6 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0080`. | ||
Future incompatibility report: Future breakage diagnostic: | ||
error: any use of this value will cause an error | ||
--> $DIR/detect-extra-ub.rs:32:5 | ||
| | ||
LL | const UNALIGNED_READ: () = { | ||
| ------------------------ | ||
LL | INNER; | ||
| ^^^^^ referenced constant has errors | ||
| | ||
= note: `#[deny(const_err)]` on by default | ||
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! | ||
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800> | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.