2021-03-16 00:55:45 +00:00
|
|
|
use clippy_utils::diagnostics::span_lint;
|
2021-07-16 19:41:19 +00:00
|
|
|
use clippy_utils::{binop_traits, trait_ref_of_method, BINOP_TRAITS, OP_ASSIGN_TRAITS};
|
2018-11-27 20:14:15 +00:00
|
|
|
use if_chain::if_chain;
|
2020-01-06 16:39:50 +00:00
|
|
|
use rustc_hir as hir;
|
2020-01-09 07:13:22 +00:00
|
|
|
use rustc_hir::intravisit::{walk_expr, NestedVisitorMap, Visitor};
|
2020-01-12 06:08:41 +00:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-03-30 09:02:14 +00:00
|
|
|
use rustc_middle::hir::map::Map;
|
2020-01-11 11:37:08 +00:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2018-02-13 14:40:17 +00:00
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 16:50:33 +00:00
|
|
|
/// **What it does:** Lints for suspicious operations in impls of arithmetic operators, e.g.
|
|
|
|
/// subtracting elements in an Add impl.
|
|
|
|
///
|
|
|
|
/// **Why this is bad?** This is probably a typo or copy-and-paste error and not intended.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2019-03-05 22:23:50 +00:00
|
|
|
/// ```ignore
|
2019-03-05 16:50:33 +00:00
|
|
|
/// impl Add for Foo {
|
|
|
|
/// type Output = Foo;
|
|
|
|
///
|
|
|
|
/// fn add(self, other: Foo) -> Foo {
|
|
|
|
/// Foo(self.0 - other.0)
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
2018-02-13 14:40:17 +00:00
|
|
|
pub SUSPICIOUS_ARITHMETIC_IMPL,
|
2021-06-14 19:09:17 +00:00
|
|
|
suspicious,
|
2018-02-13 14:40:17 +00:00
|
|
|
"suspicious use of operators in impl of arithmetic trait"
|
|
|
|
}
|
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 16:50:33 +00:00
|
|
|
/// **What it does:** Lints for suspicious operations in impls of OpAssign, e.g.
|
|
|
|
/// subtracting elements in an AddAssign impl.
|
|
|
|
///
|
|
|
|
/// **Why this is bad?** This is probably a typo or copy-and-paste error and not intended.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2019-03-05 22:23:50 +00:00
|
|
|
/// ```ignore
|
2019-03-05 16:50:33 +00:00
|
|
|
/// impl AddAssign for Foo {
|
|
|
|
/// fn add_assign(&mut self, other: Foo) {
|
|
|
|
/// *self = *self - other;
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
2018-02-13 14:40:17 +00:00
|
|
|
pub SUSPICIOUS_OP_ASSIGN_IMPL,
|
2021-06-14 19:09:17 +00:00
|
|
|
suspicious,
|
2018-02-13 14:40:17 +00:00
|
|
|
"suspicious use of operators in impl of OpAssign trait"
|
|
|
|
}
|
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
declare_lint_pass!(SuspiciousImpl => [SUSPICIOUS_ARITHMETIC_IMPL, SUSPICIOUS_OP_ASSIGN_IMPL]);
|
2018-02-13 14:40:17 +00:00
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for SuspiciousImpl {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx hir::Expr<'_>) {
|
2021-07-16 19:41:19 +00:00
|
|
|
if_chain! {
|
|
|
|
if let hir::ExprKind::Binary(binop, _, _) | hir::ExprKind::AssignOp(binop, ..) = expr.kind;
|
|
|
|
if let Some((binop_trait_lang, op_assign_trait_lang)) = binop_traits(binop.node);
|
|
|
|
if let Ok(binop_trait_id) = cx.tcx.lang_items().require(binop_trait_lang);
|
|
|
|
if let Ok(op_assign_trait_id) = cx.tcx.lang_items().require(op_assign_trait_lang);
|
2020-08-11 13:43:21 +00:00
|
|
|
|
|
|
|
// Check for more than one binary operation in the implemented function
|
|
|
|
// Linting when multiple operations are involved can result in false positives
|
2021-03-30 19:59:59 +00:00
|
|
|
let parent_fn = cx.tcx.hir().get_parent_item(expr.hir_id);
|
2021-07-16 19:41:19 +00:00
|
|
|
if let hir::Node::ImplItem(impl_item) = cx.tcx.hir().get(parent_fn);
|
|
|
|
if let hir::ImplItemKind::Fn(_, body_id) = impl_item.kind;
|
|
|
|
let body = cx.tcx.hir().body(body_id);
|
|
|
|
let parent_fn = cx.tcx.hir().get_parent_item(expr.hir_id);
|
|
|
|
if let Some(trait_ref) = trait_ref_of_method(cx, parent_fn);
|
|
|
|
let trait_id = trait_ref.path.res.def_id();
|
|
|
|
if ![binop_trait_id, op_assign_trait_id].contains(&trait_id);
|
|
|
|
if let Some(&(_, lint)) = [
|
|
|
|
(&BINOP_TRAITS, SUSPICIOUS_ARITHMETIC_IMPL),
|
|
|
|
(&OP_ASSIGN_TRAITS, SUSPICIOUS_OP_ASSIGN_IMPL),
|
|
|
|
]
|
|
|
|
.iter()
|
|
|
|
.find(|&(ts, _)| ts.iter().any(|&t| Ok(trait_id) == cx.tcx.lang_items().require(t)));
|
|
|
|
if count_binops(&body.value) == 1;
|
|
|
|
then {
|
2018-02-13 14:40:17 +00:00
|
|
|
span_lint(
|
|
|
|
cx,
|
2021-07-16 19:41:19 +00:00
|
|
|
lint,
|
2018-02-13 14:40:17 +00:00
|
|
|
binop.span,
|
2021-07-16 19:41:19 +00:00
|
|
|
&format!("suspicious use of `{}` in `{}` impl", binop.node.as_str(), cx.tcx.item_name(trait_id)),
|
2018-02-13 14:40:17 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-16 19:41:19 +00:00
|
|
|
fn count_binops(expr: &hir::Expr<'_>) -> u32 {
|
|
|
|
let mut visitor = BinaryExprVisitor::default();
|
|
|
|
visitor.visit_expr(expr);
|
|
|
|
visitor.nb_binops
|
2018-02-13 14:40:17 +00:00
|
|
|
}
|
|
|
|
|
2021-07-16 19:41:19 +00:00
|
|
|
#[derive(Default)]
|
2018-02-13 14:40:17 +00:00
|
|
|
struct BinaryExprVisitor {
|
2020-08-11 13:43:21 +00:00
|
|
|
nb_binops: u32,
|
2018-02-13 14:40:17 +00:00
|
|
|
}
|
|
|
|
|
2020-06-23 15:05:22 +00:00
|
|
|
impl<'tcx> Visitor<'tcx> for BinaryExprVisitor {
|
2020-01-09 07:13:22 +00:00
|
|
|
type Map = Map<'tcx>;
|
|
|
|
|
2019-12-27 07:12:26 +00:00
|
|
|
fn visit_expr(&mut self, expr: &'tcx hir::Expr<'_>) {
|
2019-09-27 15:16:06 +00:00
|
|
|
match expr.kind {
|
2018-07-12 07:30:57 +00:00
|
|
|
hir::ExprKind::Binary(..)
|
2021-02-09 08:15:53 +00:00
|
|
|
| hir::ExprKind::Unary(hir::UnOp::Not | hir::UnOp::Neg, _)
|
2020-08-11 13:43:21 +00:00
|
|
|
| hir::ExprKind::AssignOp(..) => self.nb_binops += 1,
|
2018-03-06 12:58:03 +00:00
|
|
|
_ => {},
|
2018-02-13 14:40:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
walk_expr(self, expr);
|
|
|
|
}
|
2020-08-11 13:43:21 +00:00
|
|
|
|
2020-03-15 22:41:20 +00:00
|
|
|
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
|
2018-02-13 14:40:17 +00:00
|
|
|
NestedVisitorMap::None
|
|
|
|
}
|
|
|
|
}
|