2020-03-17 20:51:43 -05:00
|
|
|
use crate::utils::{match_type, paths, span_lint_and_help};
|
2020-03-30 13:39:27 -05:00
|
|
|
use rustc_middle::hir::map::Map;
|
2020-03-18 17:13:06 -05:00
|
|
|
use rustc_hir::intravisit::{self as visit, NestedVisitorMap, Visitor};
|
|
|
|
use rustc_hir::{Arm, Expr, ExprKind, MatchSource, StmtKind};
|
2020-03-05 07:36:19 -06:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
|
|
|
|
|
|
|
declare_clippy_lint! {
|
|
|
|
/// **What it does:** Checks for `Mutex::lock` calls in `if let` expression
|
|
|
|
/// with lock calls in any of the else blocks.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** The Mutex lock remains held for the whole
|
|
|
|
/// `if let ... else` block and deadlocks.
|
|
|
|
///
|
2020-03-18 14:20:01 -05:00
|
|
|
/// **Known problems:** None.
|
2020-03-05 07:36:19 -06:00
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
///
|
2020-03-17 20:51:43 -05:00
|
|
|
/// ```rust,ignore
|
2020-03-05 07:36:19 -06:00
|
|
|
/// if let Ok(thing) = mutex.lock() {
|
|
|
|
/// do_thing();
|
|
|
|
/// } else {
|
|
|
|
/// mutex.lock();
|
|
|
|
/// }
|
|
|
|
/// ```
|
2020-03-17 20:51:43 -05:00
|
|
|
/// Should be written
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// let locked = mutex.lock();
|
|
|
|
/// if let Ok(thing) = locked {
|
|
|
|
/// do_thing(thing);
|
|
|
|
/// } else {
|
|
|
|
/// use_locked(locked);
|
|
|
|
/// }
|
|
|
|
/// ```
|
2020-03-05 07:36:19 -06:00
|
|
|
pub IF_LET_MUTEX,
|
|
|
|
correctness,
|
2020-03-05 17:02:22 -06:00
|
|
|
"locking a `Mutex` in an `if let` block can cause deadlocks"
|
2020-03-05 07:36:19 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
declare_lint_pass!(IfLetMutex => [IF_LET_MUTEX]);
|
|
|
|
|
|
|
|
impl LateLintPass<'_, '_> for IfLetMutex {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'_, '_>, ex: &'_ Expr<'_>) {
|
2020-03-18 17:13:06 -05:00
|
|
|
let mut arm_visit = ArmVisitor {
|
|
|
|
arm_mutex: false,
|
|
|
|
arm_lock: false,
|
|
|
|
cx,
|
|
|
|
};
|
2020-03-18 17:33:59 -05:00
|
|
|
let mut op_visit = OppVisitor {
|
2020-03-18 17:13:06 -05:00
|
|
|
op_mutex: false,
|
|
|
|
op_lock: false,
|
|
|
|
cx,
|
|
|
|
};
|
|
|
|
if let ExprKind::Match(
|
|
|
|
ref op,
|
|
|
|
ref arms,
|
|
|
|
MatchSource::IfLetDesugar {
|
2020-03-05 07:36:19 -06:00
|
|
|
contains_else_clause: true,
|
2020-03-18 17:13:06 -05:00
|
|
|
},
|
|
|
|
) = ex.kind
|
|
|
|
{
|
|
|
|
op_visit.visit_expr(op);
|
|
|
|
if op_visit.op_mutex && op_visit.op_lock {
|
|
|
|
for arm in *arms {
|
|
|
|
arm_visit.visit_arm(arm);
|
|
|
|
}
|
2020-03-05 07:36:19 -06:00
|
|
|
|
2020-03-18 17:13:06 -05:00
|
|
|
if arm_visit.arm_mutex && arm_visit.arm_lock {
|
|
|
|
span_lint_and_help(
|
|
|
|
cx,
|
|
|
|
IF_LET_MUTEX,
|
|
|
|
ex.span,
|
|
|
|
"calling `Mutex::lock` inside the scope of another `Mutex::lock` causes a deadlock",
|
|
|
|
"move the lock call outside of the `if let ...` expression",
|
|
|
|
);
|
|
|
|
}
|
2020-03-05 07:36:19 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-18 17:13:06 -05:00
|
|
|
/// Checks if `Mutex::lock` is called in the `if let _ = expr.
|
2020-03-18 17:33:59 -05:00
|
|
|
pub struct OppVisitor<'tcx, 'l> {
|
2020-03-18 17:13:06 -05:00
|
|
|
pub op_mutex: bool,
|
|
|
|
pub op_lock: bool,
|
|
|
|
pub cx: &'tcx LateContext<'tcx, 'l>,
|
2020-03-18 14:20:01 -05:00
|
|
|
}
|
|
|
|
|
2020-03-18 17:33:59 -05:00
|
|
|
impl<'tcx, 'l> Visitor<'tcx> for OppVisitor<'tcx, 'l> {
|
2020-03-18 17:13:06 -05:00
|
|
|
type Map = Map<'tcx>;
|
|
|
|
|
|
|
|
fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
|
|
|
|
if let ExprKind::MethodCall(path, _span, args) = &expr.kind {
|
|
|
|
if path.ident.to_string() == "lock" {
|
|
|
|
self.op_lock = true;
|
2020-03-18 14:20:01 -05:00
|
|
|
}
|
2020-03-18 17:13:06 -05:00
|
|
|
let ty = self.cx.tables.expr_ty(&args[0]);
|
|
|
|
if match_type(self.cx, ty, &paths::MUTEX) {
|
|
|
|
self.op_mutex = true;
|
2020-03-18 14:20:01 -05:00
|
|
|
}
|
2020-03-18 17:13:06 -05:00
|
|
|
}
|
|
|
|
visit::walk_expr(self, expr);
|
2020-03-18 14:20:01 -05:00
|
|
|
}
|
2020-03-18 17:13:06 -05:00
|
|
|
|
|
|
|
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
|
|
|
|
NestedVisitorMap::None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Checks if `Mutex::lock` is called in any of the branches.
|
|
|
|
pub struct ArmVisitor<'tcx, 'l> {
|
|
|
|
pub arm_mutex: bool,
|
|
|
|
pub arm_lock: bool,
|
|
|
|
pub cx: &'tcx LateContext<'tcx, 'l>,
|
2020-03-18 14:20:01 -05:00
|
|
|
}
|
|
|
|
|
2020-03-18 17:13:06 -05:00
|
|
|
impl<'tcx, 'l> Visitor<'tcx> for ArmVisitor<'tcx, 'l> {
|
|
|
|
type Map = Map<'tcx>;
|
|
|
|
|
|
|
|
fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
|
|
|
|
if let ExprKind::MethodCall(path, _span, args) = &expr.kind {
|
|
|
|
if path.ident.to_string() == "lock" {
|
|
|
|
self.arm_lock = true;
|
|
|
|
}
|
|
|
|
let ty = self.cx.tables.expr_ty(&args[0]);
|
|
|
|
if match_type(self.cx, ty, &paths::MUTEX) {
|
|
|
|
self.arm_mutex = true;
|
2020-03-05 07:36:19 -06:00
|
|
|
}
|
|
|
|
}
|
2020-03-18 17:13:06 -05:00
|
|
|
visit::walk_expr(self, expr);
|
2020-03-05 07:36:19 -06:00
|
|
|
}
|
2020-03-17 20:51:43 -05:00
|
|
|
|
2020-03-18 17:13:06 -05:00
|
|
|
fn visit_arm(&mut self, arm: &'tcx Arm<'_>) {
|
|
|
|
if let ExprKind::Block(ref block, _l) = arm.body.kind {
|
|
|
|
for stmt in block.stmts {
|
|
|
|
match stmt.kind {
|
|
|
|
StmtKind::Local(loc) => {
|
|
|
|
if let Some(expr) = loc.init {
|
|
|
|
self.visit_expr(expr)
|
|
|
|
}
|
|
|
|
},
|
2020-03-18 18:53:22 -05:00
|
|
|
StmtKind::Expr(expr) | StmtKind::Semi(expr) => self.visit_expr(expr),
|
2020-03-18 17:13:06 -05:00
|
|
|
// we don't care about `Item`
|
|
|
|
_ => {},
|
|
|
|
}
|
2020-03-17 20:51:43 -05:00
|
|
|
}
|
2020-03-18 17:13:06 -05:00
|
|
|
};
|
|
|
|
visit::walk_arm(self, arm);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
|
|
|
|
NestedVisitorMap::None
|
2020-03-17 20:51:43 -05:00
|
|
|
}
|
|
|
|
}
|