-
Notifications
You must be signed in to change notification settings - Fork 13.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a Lint for Pointer to Integer Transmutes in Consts
- Loading branch information
1 parent
5d9b908
commit 191f5e4
Showing
12 changed files
with
213 additions
and
17 deletions.
There are no files selected for viewing
This file contains 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 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
77 changes: 77 additions & 0 deletions
77
compiler/rustc_mir_transform/src/check_undefined_transmutes.rs
This file contains 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,77 @@ | ||
use rustc_middle::mir::visit::Visitor; | ||
use rustc_middle::mir::{Body, Location, Operand, Terminator, TerminatorKind}; | ||
use rustc_middle::ty::{AssocItem, AssocKind, TyCtxt}; | ||
use rustc_session::lint::builtin::PTR_TO_INTEGER_TRANSMUTE_IN_CONSTS; | ||
use rustc_span::sym; | ||
|
||
use crate::errors; | ||
|
||
/// Check for transmutes that exhibit undefined behavior. | ||
/// For example, transmuting pointers to integers in a const context. | ||
pub(super) struct CheckUndefinedTransmutes; | ||
|
||
impl<'tcx> crate::MirLint<'tcx> for CheckUndefinedTransmutes { | ||
fn run_lint(&self, tcx: TyCtxt<'tcx>, body: &Body<'tcx>) { | ||
let mut checker = UndefinedTransmutesChecker { body, tcx }; | ||
checker.visit_body(body); | ||
} | ||
} | ||
|
||
struct UndefinedTransmutesChecker<'a, 'tcx> { | ||
body: &'a Body<'tcx>, | ||
tcx: TyCtxt<'tcx>, | ||
} | ||
|
||
impl<'a, 'tcx> UndefinedTransmutesChecker<'a, 'tcx> { | ||
// This functions checks two things: | ||
// 1. `function` takes a raw pointer as input and returns an integer as output. | ||
// 2. `function` is called from a const function or an associated constant. | ||
// | ||
// Why do we consider const functions and associated constants only? | ||
// | ||
// Generally, undefined behavior in const items are handled by the evaluator. | ||
// But, const functions and associated constants are evaluated only when referenced. | ||
// This can result in undefined behavior in a library going unnoticed until | ||
// the function or constant is actually used. | ||
// | ||
// Therefore, we only consider const functions and associated constants here and leave | ||
// other const items to be handled by the evaluator. | ||
fn is_ptr_to_int_in_const(&self, function: &Operand<'tcx>) -> bool { | ||
let def_id = self.body.source.def_id(); | ||
|
||
if self.tcx.is_const_fn(def_id) | ||
|| matches!( | ||
self.tcx.opt_associated_item(def_id), | ||
Some(AssocItem { kind: AssocKind::Const, .. }) | ||
) | ||
{ | ||
let fn_sig = function.ty(self.body, self.tcx).fn_sig(self.tcx).skip_binder(); | ||
if let [input] = fn_sig.inputs() { | ||
return input.is_unsafe_ptr() && fn_sig.output().is_integral(); | ||
} | ||
} | ||
false | ||
} | ||
} | ||
|
||
impl<'tcx> Visitor<'tcx> for UndefinedTransmutesChecker<'_, 'tcx> { | ||
// Check each block's terminator for calls to pointer to integer transmutes | ||
// in const functions or associated constants and emit a lint. | ||
fn visit_terminator(&mut self, terminator: &Terminator<'tcx>, location: Location) { | ||
if let TerminatorKind::Call { func, .. } = &terminator.kind | ||
&& let Some((func_def_id, _)) = func.const_fn_def() | ||
&& self.tcx.is_intrinsic(func_def_id, sym::transmute) | ||
&& self.is_ptr_to_int_in_const(func) | ||
&& let Some(call_id) = self.body.source.def_id().as_local() | ||
{ | ||
let hir_id = self.tcx.local_def_id_to_hir_id(call_id); | ||
let span = self.body.source_info(location).span; | ||
self.tcx.emit_node_span_lint( | ||
PTR_TO_INTEGER_TRANSMUTE_IN_CONSTS, | ||
hir_id, | ||
span, | ||
errors::UndefinedTransmute, | ||
); | ||
} | ||
} | ||
} |
This file contains 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 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 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
12 changes: 12 additions & 0 deletions
12
src/tools/clippy/tests/ui/pointer_to_integer_transmutes_in_consts.rs
This file contains 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,12 @@ | ||
//@no-rustfix | ||
#![deny(rustc::ptr_to_integer_transmute_in_consts)] | ||
#![allow(clippy::missing_transmute_annotations)] | ||
|
||
// Pointers cannot be cast to integers in const contexts | ||
const fn issue_12402<P>(ptr: *const P) { | ||
unsafe { std::mem::transmute::<*const i32, usize>(&42i32) }; | ||
//~^ ERROR: pointers cannot be transmuted to integers | ||
unsafe { std::mem::transmute::<fn(*const P), usize>(issue_12402) }; | ||
let _ = unsafe { std::mem::transmute::<_, usize>(ptr) }; | ||
//~^ ERROR: pointers cannot be transmuted to integers | ||
} |
23 changes: 23 additions & 0 deletions
23
src/tools/clippy/tests/ui/pointer_to_integer_transmutes_in_consts.stderr
This file contains 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,23 @@ | ||
error: pointers cannot be transmuted to integers during const eval | ||
--> tests/ui/pointer_to_integer_transmutes_in_consts.rs:7:14 | ||
| | ||
LL | unsafe { std::mem::transmute::<*const i32, usize>(&42i32) }; | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: at compile-time, pointers do not have an integer value | ||
= note: avoiding this restriction via `union` or raw pointers leads to compile-time undefined behavior | ||
= help: for more information, see https://doc.rust-lang.org/std/mem/fn.transmute.html | ||
= note: `#[deny(ptr_to_integer_transmute_in_consts)]` on by default | ||
|
||
error: pointers cannot be transmuted to integers during const eval | ||
--> tests/ui/pointer_to_integer_transmutes_in_consts.rs:10:22 | ||
| | ||
LL | let _ = unsafe { std::mem::transmute::<_, usize>(ptr) }; | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: at compile-time, pointers do not have an integer value | ||
= note: avoiding this restriction via `union` or raw pointers leads to compile-time undefined behavior | ||
= help: for more information, see https://doc.rust-lang.org/std/mem/fn.transmute.html | ||
|
||
error: aborting due to 2 previous errors | ||
|
This file contains 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 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 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
45 changes: 43 additions & 2 deletions
45
tests/ui/consts/const-eval/ptr-to-int-transmute-in-consts-issue-87525.stderr
This file contains 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 |
---|---|---|
@@ -1,12 +1,53 @@ | ||
error: pointers cannot be transmuted to integers during const eval | ||
--> $DIR/ptr-to-int-transmute-in-consts-issue-87525.rs:66:9 | ||
| | ||
LL | std::mem::transmute(ptr) | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: at compile-time, pointers do not have an integer value | ||
= note: avoiding this restriction via `union` or raw pointers leads to compile-time undefined behavior | ||
= help: for more information, see https://doc.rust-lang.org/std/mem/fn.transmute.html | ||
= note: `#[deny(ptr_to_integer_transmute_in_consts)]` on by default | ||
|
||
error[E0080]: evaluation of constant value failed | ||
--> $DIR/ptr-to-int-transmute-in-consts-issue-87525.rs:68:26 | ||
--> $DIR/ptr-to-int-transmute-in-consts-issue-87525.rs:73:26 | ||
| | ||
LL | const value: usize = zoom(&a); | ||
| ^^^^^^^^ unable to turn pointer into integer | ||
| | ||
= help: this code performed an operation that depends on the underlying bytes representing a pointer | ||
= help: the absolute address of a pointer is not known at compile-time, so such operations are not supported | ||
|
||
error: aborting due to 1 previous error | ||
error: pointers cannot be transmuted to integers during const eval | ||
--> $DIR/ptr-to-int-transmute-in-consts-issue-87525.rs:8:9 | ||
| | ||
LL | std::mem::transmute(ptr) | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: at compile-time, pointers do not have an integer value | ||
= note: avoiding this restriction via `union` or raw pointers leads to compile-time undefined behavior | ||
= help: for more information, see https://doc.rust-lang.org/std/mem/fn.transmute.html | ||
|
||
error: pointers cannot be transmuted to integers during const eval | ||
--> $DIR/ptr-to-int-transmute-in-consts-issue-87525.rs:18:13 | ||
| | ||
LL | std::mem::transmute(ptr) | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: at compile-time, pointers do not have an integer value | ||
= note: avoiding this restriction via `union` or raw pointers leads to compile-time undefined behavior | ||
= help: for more information, see https://doc.rust-lang.org/std/mem/fn.transmute.html | ||
|
||
error: pointers cannot be transmuted to integers during const eval | ||
--> $DIR/ptr-to-int-transmute-in-consts-issue-87525.rs:35:13 | ||
| | ||
LL | std::mem::transmute(ptr) | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: at compile-time, pointers do not have an integer value | ||
= note: avoiding this restriction via `union` or raw pointers leads to compile-time undefined behavior | ||
= help: for more information, see https://doc.rust-lang.org/std/mem/fn.transmute.html | ||
|
||
error: aborting due to 5 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0080`. |