2018-05-30 03:15:50 -05:00
|
|
|
|
use crate::utils::paths;
|
2020-04-19 16:11:30 -05:00
|
|
|
|
use crate::utils::{
|
|
|
|
|
is_automatically_derived, is_copy, match_path, span_lint_and_help, span_lint_and_note, span_lint_and_then,
|
|
|
|
|
};
|
2018-11-27 14:14:15 -06:00
|
|
|
|
use if_chain::if_chain;
|
2020-04-19 16:11:30 -05:00
|
|
|
|
use rustc_hir::def_id::DefId;
|
|
|
|
|
use rustc_hir::intravisit::{walk_expr, walk_fn, walk_item, FnKind, NestedVisitorMap, Visitor};
|
2020-04-20 13:05:15 -05:00
|
|
|
|
use rustc_hir::{
|
|
|
|
|
BlockCheckMode, BodyId, Expr, ExprKind, FnDecl, HirId, Item, ItemKind, TraitRef, UnsafeSource, Unsafety,
|
|
|
|
|
};
|
2020-01-12 00:08:41 -06:00
|
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-04-19 16:11:30 -05:00
|
|
|
|
use rustc_middle::hir::map::Map;
|
2020-03-30 04:02:14 -05:00
|
|
|
|
use rustc_middle::ty::{self, Ty};
|
2020-01-11 05:37:08 -06:00
|
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-01-04 04:00:00 -06:00
|
|
|
|
use rustc_span::source_map::Span;
|
2016-01-21 11:19:02 -06:00
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// **What it does:** Checks for deriving `Hash` but implementing `PartialEq`
|
|
|
|
|
/// explicitly or vice versa.
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** The implementation of these traits must agree (for
|
|
|
|
|
/// example for use with `HashMap`) so it’s probably a bad idea to use a
|
|
|
|
|
/// default-generated `Hash` implementation with an explicitly defined
|
|
|
|
|
/// `PartialEq`. In particular, the following must hold for any type:
|
|
|
|
|
///
|
2019-03-05 16:23:50 -06:00
|
|
|
|
/// ```text
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// k1 == k2 ⇒ hash(k1) == hash(k2)
|
|
|
|
|
/// ```
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** None.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
2019-03-05 16:23:50 -06:00
|
|
|
|
/// ```ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// #[derive(Hash)]
|
|
|
|
|
/// struct Foo;
|
|
|
|
|
///
|
|
|
|
|
/// impl PartialEq for Foo {
|
|
|
|
|
/// ...
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2016-02-15 16:38:09 -06:00
|
|
|
|
pub DERIVE_HASH_XOR_EQ,
|
2018-03-28 08:24:26 -05:00
|
|
|
|
correctness,
|
2016-01-21 11:19:02 -06:00
|
|
|
|
"deriving `Hash` but implementing `PartialEq` explicitly"
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// **What it does:** Checks for explicit `Clone` implementations for `Copy`
|
|
|
|
|
/// types.
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** To avoid surprising behaviour, these traits should
|
|
|
|
|
/// agree and the behaviour of `Copy` cannot be overridden. In almost all
|
|
|
|
|
/// situations a `Copy` type should have a `Clone` implementation that does
|
|
|
|
|
/// nothing more than copy the object, which is what `#[derive(Copy, Clone)]`
|
|
|
|
|
/// gets you.
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** Bounds of generic types are sometimes wrong: https://github.com/rust-lang/rust/issues/26925
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
2019-08-03 11:42:05 -05:00
|
|
|
|
/// ```rust,ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// #[derive(Copy)]
|
|
|
|
|
/// struct Foo;
|
|
|
|
|
///
|
|
|
|
|
/// impl Clone for Foo {
|
2019-08-03 11:42:05 -05:00
|
|
|
|
/// // ..
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2016-01-24 06:56:23 -06:00
|
|
|
|
pub EXPL_IMPL_CLONE_ON_COPY,
|
2018-03-28 08:24:26 -05:00
|
|
|
|
pedantic,
|
2016-01-24 06:56:23 -06:00
|
|
|
|
"implementing `Clone` explicitly on `Copy` types"
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-19 16:11:30 -05:00
|
|
|
|
declare_clippy_lint! {
|
|
|
|
|
/// **What it does:** Checks for deriving `serde::Deserialize` on a type that
|
|
|
|
|
/// has methods using `unsafe`.
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** Deriving `serde::Deserialize` will create a constructor
|
|
|
|
|
/// that may violate invariants hold by another constructor.
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** None.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
|
|
|
|
///
|
|
|
|
|
/// ```rust,ignore
|
|
|
|
|
/// use serde::Deserialize;
|
|
|
|
|
///
|
|
|
|
|
/// #[derive(Deserialize)]
|
|
|
|
|
/// pub struct Foo {
|
|
|
|
|
/// // ..
|
|
|
|
|
/// }
|
|
|
|
|
///
|
|
|
|
|
/// impl Foo {
|
|
|
|
|
/// pub fn new() -> Self {
|
|
|
|
|
/// // setup here ..
|
|
|
|
|
/// }
|
|
|
|
|
///
|
|
|
|
|
/// pub unsafe fn parts() -> (&str, &str) {
|
|
|
|
|
/// // assumes invariants hold
|
|
|
|
|
/// }
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
|
|
|
|
pub UNSAFE_DERIVE_DESERIALIZE,
|
2020-04-20 13:05:15 -05:00
|
|
|
|
pedantic,
|
2020-04-19 16:11:30 -05:00
|
|
|
|
"deriving `serde::Deserialize` on a type that has methods using `unsafe`"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
declare_lint_pass!(Derive => [EXPL_IMPL_CLONE_ON_COPY, DERIVE_HASH_XOR_EQ, UNSAFE_DERIVE_DESERIALIZE]);
|
2016-01-21 11:19:02 -06:00
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Derive {
|
2020-04-20 13:05:15 -05:00
|
|
|
|
fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx Item<'_>) {
|
|
|
|
|
if let ItemKind::Impl {
|
2020-01-17 23:14:36 -06:00
|
|
|
|
of_trait: Some(ref trait_ref),
|
|
|
|
|
..
|
|
|
|
|
} = item.kind
|
|
|
|
|
{
|
2019-07-05 22:52:51 -05:00
|
|
|
|
let ty = cx.tcx.type_of(cx.tcx.hir().local_def_id(item.hir_id));
|
2016-10-29 20:13:41 -05:00
|
|
|
|
let is_automatically_derived = is_automatically_derived(&*item.attrs);
|
2016-02-15 16:38:09 -06:00
|
|
|
|
|
|
|
|
|
check_hash_peq(cx, item.span, trait_ref, ty, is_automatically_derived);
|
|
|
|
|
|
2020-04-19 16:11:30 -05:00
|
|
|
|
if is_automatically_derived {
|
|
|
|
|
check_unsafe_derive_deserialize(cx, item, trait_ref, ty);
|
|
|
|
|
} else {
|
2016-02-14 13:29:32 -06:00
|
|
|
|
check_copy_clone(cx, item, trait_ref, ty);
|
2016-01-21 11:19:02 -06:00
|
|
|
|
}
|
2016-06-05 13:46:27 -05:00
|
|
|
|
}
|
2016-01-24 06:56:23 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-01-21 11:19:02 -06:00
|
|
|
|
|
2016-02-15 16:38:09 -06:00
|
|
|
|
/// Implementation of the `DERIVE_HASH_XOR_EQ` lint.
|
2016-12-21 05:14:54 -06:00
|
|
|
|
fn check_hash_peq<'a, 'tcx>(
|
|
|
|
|
cx: &LateContext<'a, 'tcx>,
|
|
|
|
|
span: Span,
|
2020-04-20 13:05:15 -05:00
|
|
|
|
trait_ref: &TraitRef<'_>,
|
2017-06-10 21:57:25 -05:00
|
|
|
|
ty: Ty<'tcx>,
|
2017-08-09 02:30:56 -05:00
|
|
|
|
hash_is_automatically_derived: bool,
|
2016-12-21 05:14:54 -06:00
|
|
|
|
) {
|
2017-10-23 14:18:02 -05:00
|
|
|
|
if_chain! {
|
2019-05-17 16:53:54 -05:00
|
|
|
|
if match_path(&trait_ref.path, &paths::HASH);
|
2017-10-23 14:18:02 -05:00
|
|
|
|
if let Some(peq_trait_def_id) = cx.tcx.lang_items().eq_trait();
|
2020-03-27 09:34:29 -05:00
|
|
|
|
if let Some(def_id) = &trait_ref.trait_def_id();
|
|
|
|
|
if !def_id.is_local();
|
2017-10-23 14:18:02 -05:00
|
|
|
|
then {
|
|
|
|
|
// Look for the PartialEq implementations for `ty`
|
|
|
|
|
cx.tcx.for_each_relevant_impl(peq_trait_def_id, ty, |impl_id| {
|
|
|
|
|
let peq_is_automatically_derived = is_automatically_derived(&cx.tcx.get_attrs(impl_id));
|
2017-11-04 14:55:56 -05:00
|
|
|
|
|
2017-10-23 14:18:02 -05:00
|
|
|
|
if peq_is_automatically_derived == hash_is_automatically_derived {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2017-11-04 14:55:56 -05:00
|
|
|
|
|
2017-10-23 14:18:02 -05:00
|
|
|
|
let trait_ref = cx.tcx.impl_trait_ref(impl_id).expect("must be a trait implementation");
|
2017-11-04 14:55:56 -05:00
|
|
|
|
|
2017-10-23 14:18:02 -05:00
|
|
|
|
// Only care about `impl PartialEq<Foo> for Foo`
|
|
|
|
|
// For `impl PartialEq<B> for A, input_types is [A, B]
|
|
|
|
|
if trait_ref.substs.type_at(1) == ty {
|
|
|
|
|
let mess = if peq_is_automatically_derived {
|
|
|
|
|
"you are implementing `Hash` explicitly but have derived `PartialEq`"
|
|
|
|
|
} else {
|
|
|
|
|
"you are deriving `Hash` but have implemented `PartialEq` explicitly"
|
|
|
|
|
};
|
2017-11-04 14:55:56 -05:00
|
|
|
|
|
2017-10-23 14:18:02 -05:00
|
|
|
|
span_lint_and_then(
|
2020-04-24 04:57:34 -05:00
|
|
|
|
cx,
|
|
|
|
|
DERIVE_HASH_XOR_EQ,
|
|
|
|
|
span,
|
2017-10-23 14:18:02 -05:00
|
|
|
|
mess,
|
2020-04-17 01:08:00 -05:00
|
|
|
|
|diag| {
|
2020-04-24 04:57:34 -05:00
|
|
|
|
if let Some(local_def_id) = impl_id.as_local() {
|
|
|
|
|
let hir_id = cx.tcx.hir().as_local_hir_id(local_def_id);
|
|
|
|
|
diag.span_note(
|
|
|
|
|
cx.tcx.hir().span(hir_id),
|
|
|
|
|
"`PartialEq` implemented here"
|
|
|
|
|
);
|
|
|
|
|
}
|
2017-10-23 14:18:02 -05:00
|
|
|
|
}
|
2020-04-24 04:57:34 -05:00
|
|
|
|
);
|
2017-10-23 14:18:02 -05:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-01-24 06:56:23 -06:00
|
|
|
|
}
|
2016-01-21 11:19:02 -06:00
|
|
|
|
|
2016-01-24 06:56:23 -06:00
|
|
|
|
/// Implementation of the `EXPL_IMPL_CLONE_ON_COPY` lint.
|
2020-04-20 13:05:15 -05:00
|
|
|
|
fn check_copy_clone<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, item: &Item<'_>, trait_ref: &TraitRef<'_>, ty: Ty<'tcx>) {
|
2019-05-17 16:53:54 -05:00
|
|
|
|
if match_path(&trait_ref.path, &paths::CLONE_TRAIT) {
|
2017-06-10 21:34:47 -05:00
|
|
|
|
if !is_copy(cx, ty) {
|
2017-04-28 10:03:18 -05:00
|
|
|
|
return;
|
2016-01-24 06:56:23 -06:00
|
|
|
|
}
|
2016-01-21 11:19:02 -06:00
|
|
|
|
|
2019-09-26 04:03:36 -05:00
|
|
|
|
match ty.kind {
|
2018-08-22 16:34:52 -05:00
|
|
|
|
ty::Adt(def, _) if def.is_union() => return,
|
2016-08-28 12:43:55 -05:00
|
|
|
|
|
|
|
|
|
// Some types are not Clone by default but could be cloned “by hand” if necessary
|
2018-11-27 14:14:15 -06:00
|
|
|
|
ty::Adt(def, substs) => {
|
|
|
|
|
for variant in &def.variants {
|
|
|
|
|
for field in &variant.fields {
|
2019-09-26 04:03:36 -05:00
|
|
|
|
if let ty::FnDef(..) = field.ty(cx.tcx, substs).kind {
|
2018-01-11 03:28:42 -06:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-11-27 14:14:15 -06:00
|
|
|
|
for subst in substs {
|
2019-09-26 11:34:43 -05:00
|
|
|
|
if let ty::subst::GenericArgKind::Type(subst) = subst.unpack() {
|
2019-09-26 04:03:36 -05:00
|
|
|
|
if let ty::Param(_) = subst.kind {
|
2018-11-27 14:14:15 -06:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-01-11 03:28:42 -06:00
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
|
},
|
2016-01-24 06:56:23 -06:00
|
|
|
|
_ => (),
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-17 09:01:25 -05:00
|
|
|
|
span_lint_and_note(
|
2017-09-05 04:33:04 -05:00
|
|
|
|
cx,
|
|
|
|
|
EXPL_IMPL_CLONE_ON_COPY,
|
|
|
|
|
item.span,
|
|
|
|
|
"you are implementing `Clone` explicitly on a `Copy` type",
|
2020-04-18 05:29:36 -05:00
|
|
|
|
Some(item.span),
|
2020-04-17 09:01:25 -05:00
|
|
|
|
"consider deriving `Clone` or removing `Copy`",
|
2017-09-05 04:33:04 -05:00
|
|
|
|
);
|
2016-01-24 06:56:23 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-04-19 16:11:30 -05:00
|
|
|
|
|
|
|
|
|
/// Implementation of the `UNSAFE_DERIVE_DESERIALIZE` lint.
|
|
|
|
|
fn check_unsafe_derive_deserialize<'a, 'tcx>(
|
|
|
|
|
cx: &LateContext<'a, 'tcx>,
|
2020-04-20 13:05:15 -05:00
|
|
|
|
item: &Item<'_>,
|
|
|
|
|
trait_ref: &TraitRef<'_>,
|
2020-04-19 16:11:30 -05:00
|
|
|
|
ty: Ty<'tcx>,
|
|
|
|
|
) {
|
2020-04-20 13:05:15 -05:00
|
|
|
|
fn item_from_def_id<'tcx>(cx: &LateContext<'_, 'tcx>, def_id: DefId) -> &'tcx Item<'tcx> {
|
2020-04-24 04:57:34 -05:00
|
|
|
|
let hir_id = cx.tcx.hir().as_local_hir_id(def_id.expect_local());
|
2020-04-19 16:11:30 -05:00
|
|
|
|
cx.tcx.hir().expect_item(hir_id)
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-20 13:05:15 -05:00
|
|
|
|
fn has_unsafe<'tcx>(cx: &LateContext<'_, 'tcx>, item: &'tcx Item<'_>) -> bool {
|
2020-04-19 16:11:30 -05:00
|
|
|
|
let mut visitor = UnsafeVisitor { cx, has_unsafe: false };
|
|
|
|
|
walk_item(&mut visitor, item);
|
|
|
|
|
visitor.has_unsafe
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if_chain! {
|
|
|
|
|
if match_path(&trait_ref.path, &paths::SERDE_DESERIALIZE);
|
|
|
|
|
if let ty::Adt(def, _) = ty.kind;
|
|
|
|
|
if def.did.is_local();
|
|
|
|
|
if cx.tcx.inherent_impls(def.did)
|
|
|
|
|
.iter()
|
|
|
|
|
.map(|imp_did| item_from_def_id(cx, *imp_did))
|
|
|
|
|
.any(|imp| has_unsafe(cx, imp));
|
|
|
|
|
then {
|
|
|
|
|
span_lint_and_help(
|
|
|
|
|
cx,
|
|
|
|
|
UNSAFE_DERIVE_DESERIALIZE,
|
|
|
|
|
item.span,
|
|
|
|
|
"you are deriving `serde::Deserialize` on a type that has methods using `unsafe`",
|
|
|
|
|
None,
|
|
|
|
|
"consider implementing `serde::Deserialize` manually. See https://serde.rs/impl-deserialize.html"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct UnsafeVisitor<'a, 'tcx> {
|
|
|
|
|
cx: &'a LateContext<'a, 'tcx>,
|
|
|
|
|
has_unsafe: bool,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<'tcx> Visitor<'tcx> for UnsafeVisitor<'_, 'tcx> {
|
|
|
|
|
type Map = Map<'tcx>;
|
|
|
|
|
|
2020-04-20 13:05:15 -05:00
|
|
|
|
fn visit_fn(&mut self, kind: FnKind<'tcx>, decl: &'tcx FnDecl<'_>, body_id: BodyId, span: Span, id: HirId) {
|
2020-04-19 16:11:30 -05:00
|
|
|
|
if self.has_unsafe {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if_chain! {
|
|
|
|
|
if let Some(header) = kind.header();
|
2020-04-20 13:05:15 -05:00
|
|
|
|
if let Unsafety::Unsafe = header.unsafety;
|
2020-04-19 16:11:30 -05:00
|
|
|
|
then {
|
|
|
|
|
self.has_unsafe = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
walk_fn(self, kind, decl, body_id, span, id);
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-20 13:05:15 -05:00
|
|
|
|
fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
|
2020-04-19 16:11:30 -05:00
|
|
|
|
if self.has_unsafe {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-20 13:05:15 -05:00
|
|
|
|
if let ExprKind::Block(block, _) = expr.kind {
|
2020-04-19 16:11:30 -05:00
|
|
|
|
match block.rules {
|
|
|
|
|
BlockCheckMode::UnsafeBlock(UnsafeSource::UserProvided)
|
|
|
|
|
| BlockCheckMode::PushUnsafeBlock(UnsafeSource::UserProvided)
|
|
|
|
|
| BlockCheckMode::PopUnsafeBlock(UnsafeSource::UserProvided) => {
|
|
|
|
|
self.has_unsafe = true;
|
|
|
|
|
},
|
|
|
|
|
_ => {},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
walk_expr(self, expr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
|
|
|
|
|
NestedVisitorMap::All(self.cx.tcx.hir())
|
|
|
|
|
}
|
|
|
|
|
}
|