Skip to content

Commit d131f33

Browse files
committed
lint: deny transmuting from immutable to mutable, since it's undefined behavior
[breaking-change] Technically breaking, since code that had been using these transmutes before will no longer compile. However, it was undefined behavior, so really, it's a good thing. Fixing your code would require some re-working to use an UnsafeCell instead. Closes rust-lang#13146
1 parent 6cd7486 commit d131f33

File tree

3 files changed

+87
-0
lines changed

3 files changed

+87
-0
lines changed

src/librustc_lint/builtin.rs

+66
Original file line numberDiff line numberDiff line change
@@ -2121,6 +2121,72 @@ impl LintPass for InvalidNoMangleItems {
21212121
}
21222122
}
21232123

2124+
#[derive(Clone, Copy)]
2125+
pub struct MutableTransmutes;
2126+
2127+
declare_lint! {
2128+
MUTABLE_TRANSMUTES,
2129+
Deny,
2130+
"mutating transmuted &mut T from &T may cause undefined behavior"
2131+
}
2132+
2133+
impl LintPass for MutableTransmutes {
2134+
fn get_lints(&self) -> LintArray {
2135+
lint_array!(MUTABLE_TRANSMUTES)
2136+
}
2137+
2138+
fn check_expr(&mut self, cx: &Context, expr: &ast::Expr) {
2139+
use syntax::ast::DefId;
2140+
use syntax::abi::RustIntrinsic;
2141+
let msg = "mutating transmuted &mut T from &T may cause undefined behavior,\
2142+
consider instead using an UnsafeCell";
2143+
match get_transmute_from_to(cx, expr) {
2144+
Some((&ty::ty_rptr(_, from_mt), &ty::ty_rptr(_, to_mt))) => {
2145+
if to_mt.mutbl == ast::Mutability::MutMutable
2146+
&& from_mt.mutbl == ast::Mutability::MutImmutable {
2147+
cx.span_lint(MUTABLE_TRANSMUTES, expr.span, msg);
2148+
}
2149+
}
2150+
_ => ()
2151+
}
2152+
2153+
fn get_transmute_from_to<'a, 'tcx>(cx: &Context<'a, 'tcx>, expr: &ast::Expr)
2154+
-> Option<(&'tcx ty::sty<'tcx>, &'tcx ty::sty<'tcx>)> {
2155+
match expr.node {
2156+
ast::ExprPath(..) => (),
2157+
_ => return None
2158+
}
2159+
if let DefFn(did, _) = ty::resolve_expr(cx.tcx, expr) {
2160+
if !def_id_is_transmute(cx, did) {
2161+
return None;
2162+
}
2163+
let typ = ty::node_id_to_type(cx.tcx, expr.id);
2164+
match typ.sty {
2165+
ty::ty_bare_fn(_, ref bare_fn) if bare_fn.abi == RustIntrinsic => {
2166+
if let ty::FnConverging(to) = bare_fn.sig.0.output {
2167+
let from = bare_fn.sig.0.inputs[0];
2168+
return Some((&from.sty, &to.sty));
2169+
}
2170+
},
2171+
_ => ()
2172+
}
2173+
}
2174+
None
2175+
}
2176+
2177+
fn def_id_is_transmute(cx: &Context, def_id: DefId) -> bool {
2178+
match ty::lookup_item_type(cx.tcx, def_id).ty.sty {
2179+
ty::ty_bare_fn(_, ref bfty) if bfty.abi == RustIntrinsic => (),
2180+
_ => return false
2181+
}
2182+
ty::with_path(cx.tcx, def_id, |path| match path.last() {
2183+
Some(ref last) => last.name().as_str() == "transmute",
2184+
_ => false
2185+
})
2186+
}
2187+
}
2188+
}
2189+
21242190
/// Forbids using the `#[feature(...)]` attribute
21252191
#[derive(Copy, Clone)]
21262192
pub struct UnstableFeatures;

src/librustc_lint/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ pub fn register_builtins(store: &mut lint::LintStore, sess: Option<&Session>) {
109109
InvalidNoMangleItems,
110110
PluginAsLibrary,
111111
DropWithReprExtern,
112+
MutableTransmutes,
112113
);
113114

114115
add_builtin_with_new!(sess,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// Tests that transmuting from &T to &mut T is Undefined Behavior.
12+
13+
use std::mem::transmute;
14+
15+
fn main() {
16+
let _a: &mut u8 = unsafe { transmute(&1u8) };
17+
//~^ ERROR mutating transmuted &mut T from &T may cause undefined behavior
18+
}
19+
20+

0 commit comments

Comments
 (0)