2019-05-14 08:06:21 +00:00
|
|
|
use crate::utils::{get_trait_def_id, span_lint, trait_ref_of_method};
|
2018-11-27 20:14:15 +00:00
|
|
|
use if_chain::if_chain;
|
2020-01-09 07:13:22 +00:00
|
|
|
use rustc::hir::map::Map;
|
2020-01-11 11:37:08 +00:00
|
|
|
use rustc::lint::{LateContext, LateLintPass};
|
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-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,
|
2018-03-28 13:24:26 +00:00
|
|
|
correctness,
|
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,
|
2018-03-28 13:24:26 +00:00
|
|
|
correctness,
|
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
|
|
|
|
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for SuspiciousImpl {
|
2019-12-27 07:12:26 +00:00
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx hir::Expr<'_>) {
|
2019-09-27 15:16:06 +00:00
|
|
|
if let hir::ExprKind::Binary(binop, _, _) = expr.kind {
|
2018-03-17 20:34:13 +00:00
|
|
|
match binop.node {
|
2018-11-27 20:14:15 +00:00
|
|
|
hir::BinOpKind::Eq
|
2018-07-16 13:07:39 +00:00
|
|
|
| hir::BinOpKind::Lt
|
|
|
|
| hir::BinOpKind::Le
|
|
|
|
| hir::BinOpKind::Ne
|
|
|
|
| hir::BinOpKind::Ge
|
2018-11-27 20:14:15 +00:00
|
|
|
| hir::BinOpKind::Gt => return,
|
2018-03-17 20:34:13 +00:00
|
|
|
_ => {},
|
|
|
|
}
|
2018-03-06 12:58:03 +00:00
|
|
|
// Check if the binary expression is part of another bi/unary expression
|
2018-02-13 14:40:17 +00:00
|
|
|
// as a child node
|
2019-06-25 21:33:51 +00:00
|
|
|
let mut parent_expr = cx.tcx.hir().get_parent_node(expr.hir_id);
|
2019-02-24 18:43:15 +00:00
|
|
|
while parent_expr != hir::CRATE_HIR_ID {
|
2019-06-22 06:41:16 +00:00
|
|
|
if let hir::Node::Expr(e) = cx.tcx.hir().get(parent_expr) {
|
2019-09-27 15:16:06 +00:00
|
|
|
match e.kind {
|
2018-07-12 07:30:57 +00:00
|
|
|
hir::ExprKind::Binary(..)
|
|
|
|
| hir::ExprKind::Unary(hir::UnOp::UnNot, _)
|
|
|
|
| hir::ExprKind::Unary(hir::UnOp::UnNeg, _) => return,
|
2018-03-06 12:58:03 +00:00
|
|
|
_ => {},
|
2018-02-13 14:40:17 +00:00
|
|
|
}
|
|
|
|
}
|
2019-06-25 21:33:51 +00:00
|
|
|
parent_expr = cx.tcx.hir().get_parent_node(parent_expr);
|
2018-02-13 14:40:17 +00:00
|
|
|
}
|
|
|
|
// as a parent node
|
2018-11-27 20:14:15 +00:00
|
|
|
let mut visitor = BinaryExprVisitor { in_binary_expr: false };
|
2018-02-13 14:40:17 +00:00
|
|
|
walk_expr(&mut visitor, expr);
|
|
|
|
|
|
|
|
if visitor.in_binary_expr {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(impl_trait) = check_binop(
|
|
|
|
cx,
|
|
|
|
expr,
|
2018-05-31 18:15:48 +00:00
|
|
|
binop.node,
|
2019-05-17 21:53:54 +00:00
|
|
|
&["Add", "Sub", "Mul", "Div"],
|
2018-07-16 13:07:39 +00:00
|
|
|
&[
|
|
|
|
hir::BinOpKind::Add,
|
|
|
|
hir::BinOpKind::Sub,
|
|
|
|
hir::BinOpKind::Mul,
|
|
|
|
hir::BinOpKind::Div,
|
|
|
|
],
|
2018-02-13 14:40:17 +00:00
|
|
|
) {
|
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
SUSPICIOUS_ARITHMETIC_IMPL,
|
|
|
|
binop.span,
|
2018-11-27 20:14:15 +00:00
|
|
|
&format!(r#"Suspicious use of binary operator in `{}` impl"#, impl_trait),
|
2018-02-13 14:40:17 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(impl_trait) = check_binop(
|
|
|
|
cx,
|
|
|
|
expr,
|
2018-05-31 18:15:48 +00:00
|
|
|
binop.node,
|
2018-02-13 14:40:17 +00:00
|
|
|
&[
|
2019-05-17 21:53:54 +00:00
|
|
|
"AddAssign",
|
|
|
|
"SubAssign",
|
|
|
|
"MulAssign",
|
|
|
|
"DivAssign",
|
|
|
|
"BitAndAssign",
|
|
|
|
"BitOrAssign",
|
|
|
|
"BitXorAssign",
|
|
|
|
"RemAssign",
|
|
|
|
"ShlAssign",
|
|
|
|
"ShrAssign",
|
2018-02-13 14:40:17 +00:00
|
|
|
],
|
|
|
|
&[
|
2018-07-16 13:07:39 +00:00
|
|
|
hir::BinOpKind::Add,
|
|
|
|
hir::BinOpKind::Sub,
|
|
|
|
hir::BinOpKind::Mul,
|
|
|
|
hir::BinOpKind::Div,
|
|
|
|
hir::BinOpKind::BitAnd,
|
|
|
|
hir::BinOpKind::BitOr,
|
|
|
|
hir::BinOpKind::BitXor,
|
|
|
|
hir::BinOpKind::Rem,
|
|
|
|
hir::BinOpKind::Shl,
|
|
|
|
hir::BinOpKind::Shr,
|
2018-02-13 14:40:17 +00:00
|
|
|
],
|
|
|
|
) {
|
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
SUSPICIOUS_OP_ASSIGN_IMPL,
|
|
|
|
binop.span,
|
2018-11-27 20:14:15 +00:00
|
|
|
&format!(r#"Suspicious use of binary operator in `{}` impl"#, impl_trait),
|
2018-02-13 14:40:17 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-13 23:34:08 +00:00
|
|
|
fn check_binop(
|
2018-07-23 11:01:12 +00:00
|
|
|
cx: &LateContext<'_, '_>,
|
2019-12-27 07:12:26 +00:00
|
|
|
expr: &hir::Expr<'_>,
|
2018-07-12 07:50:09 +00:00
|
|
|
binop: hir::BinOpKind,
|
2019-05-17 21:53:54 +00:00
|
|
|
traits: &[&'static str],
|
2018-07-12 07:50:09 +00:00
|
|
|
expected_ops: &[hir::BinOpKind],
|
2019-05-17 21:53:54 +00:00
|
|
|
) -> Option<&'static str> {
|
2018-02-13 14:40:17 +00:00
|
|
|
let mut trait_ids = vec![];
|
2019-05-17 21:53:54 +00:00
|
|
|
let [krate, module] = crate::utils::paths::OPS_MODULE;
|
2018-02-13 14:40:17 +00:00
|
|
|
|
2019-05-13 23:34:08 +00:00
|
|
|
for &t in traits {
|
2018-02-13 14:40:17 +00:00
|
|
|
let path = [krate, module, t];
|
|
|
|
if let Some(trait_id) = get_trait_def_id(cx, &path) {
|
|
|
|
trait_ids.push(trait_id);
|
|
|
|
} else {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the actually implemented trait
|
2019-02-24 18:43:15 +00:00
|
|
|
let parent_fn = cx.tcx.hir().get_parent_item(expr.hir_id);
|
2018-02-13 14:40:17 +00:00
|
|
|
|
|
|
|
if_chain! {
|
2019-03-07 06:42:38 +00:00
|
|
|
if let Some(trait_ref) = trait_ref_of_method(cx, parent_fn);
|
2019-05-04 00:03:12 +00:00
|
|
|
if let Some(idx) = trait_ids.iter().position(|&tid| tid == trait_ref.path.res.def_id());
|
2018-05-31 18:15:48 +00:00
|
|
|
if binop != expected_ops[idx];
|
2018-02-13 14:40:17 +00:00
|
|
|
then{
|
|
|
|
return Some(traits[idx])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
|
|
|
struct BinaryExprVisitor {
|
|
|
|
in_binary_expr: bool,
|
|
|
|
}
|
|
|
|
|
2019-06-19 18:36:23 +00:00
|
|
|
impl<'a, '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(..)
|
|
|
|
| hir::ExprKind::Unary(hir::UnOp::UnNot, _)
|
2018-11-27 20:14:15 +00:00
|
|
|
| hir::ExprKind::Unary(hir::UnOp::UnNeg, _) => self.in_binary_expr = true,
|
2018-03-06 12:58:03 +00:00
|
|
|
_ => {},
|
2018-02-13 14:40:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
walk_expr(self, expr);
|
|
|
|
}
|
2020-01-09 07:13:22 +00:00
|
|
|
fn nested_visit_map(&mut self) -> NestedVisitorMap<'_, Self::Map> {
|
2018-02-13 14:40:17 +00:00
|
|
|
NestedVisitorMap::None
|
|
|
|
}
|
|
|
|
}
|