2015-11-11 08:28:31 -06:00
|
|
|
use rustc::lint::*;
|
2016-03-25 17:22:17 -05:00
|
|
|
use rustc::ty::TypeVariants::{TyRawPtr, TyRef};
|
2016-06-28 07:08:08 -05:00
|
|
|
use rustc::ty;
|
2016-04-07 10:46:48 -05:00
|
|
|
use rustc::hir::*;
|
2016-09-19 10:59:12 -05:00
|
|
|
use utils::{match_def_path, paths, span_lint, span_lint_and_then, snippet};
|
2016-06-29 16:02:15 -05:00
|
|
|
use utils::sugg;
|
2015-11-11 08:28:31 -06:00
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for transmutes that can't ever be correct on any
|
|
|
|
/// architecture.
|
2015-12-14 01:03:01 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** It's basically guaranteed to be undefined behaviour.
|
2016-06-28 07:08:08 -05:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Known problems:** When accessing C, users might want to store pointer
|
|
|
|
/// sized objects in `extradata` arguments to save an allocation.
|
2016-06-28 07:08:08 -05:00
|
|
|
///
|
2016-07-15 17:25:44 -05:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// let ptr: *const T = core::intrinsics::transmute('x')`
|
|
|
|
/// ```
|
2016-06-28 07:08:08 -05:00
|
|
|
declare_lint! {
|
|
|
|
pub WRONG_TRANSMUTE,
|
|
|
|
Warn,
|
|
|
|
"transmutes that are confusing at best, undefined behaviour at worst and always useless"
|
|
|
|
}
|
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for transmutes to the original type of the object
|
|
|
|
/// and transmutes that could be a cast.
|
2016-06-28 07:08:08 -05:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** Readability. The code tricks people into thinking that
|
|
|
|
/// something complex is going on.
|
2015-12-14 01:03:01 -06:00
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
2016-07-15 17:25:44 -05:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// core::intrinsics::transmute(t) // where the result type is the same as `t`'s
|
|
|
|
/// ```
|
2015-11-11 08:28:31 -06:00
|
|
|
declare_lint! {
|
|
|
|
pub USELESS_TRANSMUTE,
|
|
|
|
Warn,
|
2016-06-28 07:08:08 -05:00
|
|
|
"transmutes that have the same to and from types or could be a cast/coercion"
|
2015-11-11 08:28:31 -06:00
|
|
|
}
|
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for transmutes between a type `T` and `*T`.
|
2016-03-24 17:48:38 -05:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** It's easy to mistakenly transmute between a type and a
|
|
|
|
/// pointer to that type.
|
2016-03-24 17:48:38 -05:00
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
2016-07-15 17:25:44 -05:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// core::intrinsics::transmute(t)` // where the result type is the same as `*t` or `&t`'s
|
|
|
|
/// ```
|
2016-03-24 17:48:38 -05:00
|
|
|
declare_lint! {
|
|
|
|
pub CROSSPOINTER_TRANSMUTE,
|
|
|
|
Warn,
|
|
|
|
"transmutes that have to or from types that are a pointer to the other"
|
|
|
|
}
|
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for transmutes from a pointer to a reference.
|
2016-03-25 17:22:17 -05:00
|
|
|
///
|
|
|
|
/// **Why is this bad?** This can always be rewritten with `&` and `*`.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// let _: &T = std::mem::transmute(p); // where p: *const T
|
|
|
|
/// // can be written:
|
|
|
|
/// let _: &T = &*p;
|
|
|
|
/// ```
|
|
|
|
declare_lint! {
|
|
|
|
pub TRANSMUTE_PTR_TO_REF,
|
|
|
|
Warn,
|
|
|
|
"transmutes from a pointer to a reference type"
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Transmute;
|
2015-11-11 08:28:31 -06:00
|
|
|
|
2016-03-25 17:22:17 -05:00
|
|
|
impl LintPass for Transmute {
|
2015-11-11 08:28:31 -06:00
|
|
|
fn get_lints(&self) -> LintArray {
|
2016-06-28 07:08:08 -05:00
|
|
|
lint_array![CROSSPOINTER_TRANSMUTE, TRANSMUTE_PTR_TO_REF, USELESS_TRANSMUTE, WRONG_TRANSMUTE]
|
2015-11-11 08:28:31 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-25 17:22:17 -05:00
|
|
|
impl LateLintPass for Transmute {
|
2015-11-11 08:28:31 -06:00
|
|
|
fn check_expr(&mut self, cx: &LateContext, e: &Expr) {
|
|
|
|
if let ExprCall(ref path_expr, ref args) = e.node {
|
2016-09-19 10:59:12 -05:00
|
|
|
if let ExprPath(None, ref path) = path_expr.node {
|
2016-06-10 12:47:10 -05:00
|
|
|
let def_id = cx.tcx.expect_def(path_expr.id).def_id();
|
2015-11-11 08:28:31 -06:00
|
|
|
|
2016-04-14 11:13:15 -05:00
|
|
|
if match_def_path(cx, def_id, &paths::TRANSMUTE) {
|
2016-11-16 14:57:56 -06:00
|
|
|
let from_ty = cx.tcx.tables().expr_ty(&args[0]);
|
|
|
|
let to_ty = cx.tcx.tables().expr_ty(e);
|
2015-11-11 08:28:31 -06:00
|
|
|
|
2016-06-27 06:46:21 -05:00
|
|
|
match (&from_ty.sty, &to_ty.sty) {
|
|
|
|
_ if from_ty == to_ty => span_lint(
|
|
|
|
cx,
|
|
|
|
USELESS_TRANSMUTE,
|
|
|
|
e.span,
|
|
|
|
&format!("transmute from a type (`{}`) to itself", from_ty),
|
|
|
|
),
|
2016-06-27 09:12:48 -05:00
|
|
|
(&TyRef(_, rty), &TyRawPtr(ptr_ty)) => span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
USELESS_TRANSMUTE,
|
|
|
|
e.span,
|
|
|
|
"transmute from a reference to a pointer",
|
|
|
|
|db| {
|
2016-11-23 15:44:00 -06:00
|
|
|
if let Some(arg) = sugg::Sugg::hir_opt(cx, &args[0]) {
|
2016-06-27 09:12:48 -05:00
|
|
|
let sugg = if ptr_ty == rty {
|
2016-07-06 08:36:42 -05:00
|
|
|
arg.as_ty(to_ty)
|
2016-06-27 09:12:48 -05:00
|
|
|
} else {
|
2016-07-06 08:36:42 -05:00
|
|
|
arg.as_ty(cx.tcx.mk_ptr(rty)).as_ty(to_ty)
|
2016-06-27 09:12:48 -05:00
|
|
|
};
|
|
|
|
|
2016-07-03 19:22:57 -05:00
|
|
|
db.span_suggestion(e.span, "try", sugg.to_string());
|
2016-06-27 09:12:48 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
),
|
2016-06-28 07:08:08 -05:00
|
|
|
(&ty::TyInt(_), &TyRawPtr(_)) |
|
|
|
|
(&ty::TyUint(_), &TyRawPtr(_)) => span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
USELESS_TRANSMUTE,
|
|
|
|
e.span,
|
|
|
|
"transmute from an integer to a pointer",
|
|
|
|
|db| {
|
2016-11-23 15:44:00 -06:00
|
|
|
if let Some(arg) = sugg::Sugg::hir_opt(cx, &args[0]) {
|
2016-07-03 19:22:57 -05:00
|
|
|
db.span_suggestion(e.span, "try", arg.as_ty(&to_ty.to_string()).to_string());
|
2016-06-28 07:08:08 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
),
|
|
|
|
(&ty::TyFloat(_), &TyRef(..)) |
|
|
|
|
(&ty::TyFloat(_), &TyRawPtr(_)) |
|
|
|
|
(&ty::TyChar, &TyRef(..)) |
|
|
|
|
(&ty::TyChar, &TyRawPtr(_)) => span_lint(
|
|
|
|
cx,
|
|
|
|
WRONG_TRANSMUTE,
|
|
|
|
e.span,
|
|
|
|
&format!("transmute from a `{}` to a pointer", from_ty),
|
|
|
|
),
|
2016-06-27 06:46:21 -05:00
|
|
|
(&TyRawPtr(from_ptr), _) if from_ptr.ty == to_ty => span_lint(
|
|
|
|
cx,
|
|
|
|
CROSSPOINTER_TRANSMUTE,
|
|
|
|
e.span,
|
|
|
|
&format!("transmute from a type (`{}`) to the type that it points to (`{}`)",
|
|
|
|
from_ty,
|
|
|
|
to_ty),
|
|
|
|
),
|
|
|
|
(_, &TyRawPtr(to_ptr)) if to_ptr.ty == from_ty => span_lint(
|
|
|
|
cx,
|
|
|
|
CROSSPOINTER_TRANSMUTE,
|
|
|
|
e.span,
|
|
|
|
&format!("transmute from a type (`{}`) to a pointer to that type (`{}`)",
|
|
|
|
from_ty,
|
|
|
|
to_ty),
|
|
|
|
),
|
|
|
|
(&TyRawPtr(from_pty), &TyRef(_, to_rty)) => span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
TRANSMUTE_PTR_TO_REF,
|
|
|
|
e.span,
|
|
|
|
&format!("transmute from a pointer type (`{}`) to a reference type (`{}`)",
|
|
|
|
from_ty,
|
|
|
|
to_ty),
|
|
|
|
|db| {
|
2016-07-01 13:55:45 -05:00
|
|
|
let arg = sugg::Sugg::hir(cx, &args[0], "..");
|
2016-06-29 16:02:15 -05:00
|
|
|
let (deref, cast) = if to_rty.mutbl == Mutability::MutMutable {
|
|
|
|
("&mut *", "*mut")
|
|
|
|
} else {
|
|
|
|
("&*", "*const")
|
|
|
|
};
|
2016-03-24 17:48:38 -05:00
|
|
|
|
2016-07-03 19:22:57 -05:00
|
|
|
let arg = if from_pty.ty == to_rty.ty {
|
|
|
|
arg
|
2016-06-29 16:02:15 -05:00
|
|
|
} else {
|
2016-09-19 10:59:12 -05:00
|
|
|
arg.as_ty(&format!("{} {}", cast, get_type_snippet(cx, path, to_rty.ty)))
|
2016-06-29 16:02:15 -05:00
|
|
|
};
|
2016-03-24 17:48:38 -05:00
|
|
|
|
2016-07-03 19:22:57 -05:00
|
|
|
db.span_suggestion(e.span, "try", sugg::make_unop(deref, arg).to_string());
|
2016-06-27 06:46:21 -05:00
|
|
|
},
|
|
|
|
),
|
|
|
|
_ => return,
|
2016-03-25 17:22:17 -05:00
|
|
|
};
|
2016-03-24 17:48:38 -05:00
|
|
|
}
|
2016-06-27 06:46:21 -05:00
|
|
|
}
|
2016-03-24 17:48:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-09-19 10:59:12 -05:00
|
|
|
|
|
|
|
/// Get the snippet of `Bar` in `…::transmute<Foo, &Bar>`. If that snippet is not available , use
|
|
|
|
/// the type's `ToString` implementation. In weird cases it could lead to types with invalid `'_`
|
|
|
|
/// lifetime, but it should be rare.
|
|
|
|
fn get_type_snippet(cx: &LateContext, path: &Path, to_rty: ty::Ty) -> String {
|
|
|
|
if_let_chain!{[
|
|
|
|
let Some(seg) = path.segments.last(),
|
|
|
|
let PathParameters::AngleBracketedParameters(ref ang) = seg.parameters,
|
|
|
|
let Some(to_ty) = ang.types.get(1),
|
|
|
|
let TyRptr(_, ref to_ty) = to_ty.node,
|
|
|
|
], {
|
|
|
|
return snippet(cx, to_ty.ty.span, &to_rty.to_string()).to_string();
|
|
|
|
}}
|
|
|
|
|
|
|
|
to_rty.to_string()
|
|
|
|
}
|