1
Fork 0

Auto merge of #9318 - lukaslueg:ifletmutexref, r=xFrednet

Fix if_let_mutex not checking Mutexes behind refs

Fixes #9193

We can always peel references because we are looking for a method-call, for which autoderef applies.

---

changelog: [`if_let_mutex`]: detect calls to `Mutex::lock()` if mutex is behind a ref
changelog: [`if_let_mutex`]: Add labels to the two instances of the same Mutex that will deadlock
This commit is contained in:
bors 2022-08-15 21:31:37 +00:00
commit 0fc95e88f5
3 changed files with 61 additions and 27 deletions

View file

@ -1,8 +1,9 @@
use clippy_utils::diagnostics::span_lint_and_help; use clippy_utils::diagnostics::span_lint_and_then;
use clippy_utils::higher; use clippy_utils::higher;
use clippy_utils::ty::is_type_diagnostic_item; use clippy_utils::ty::is_type_diagnostic_item;
use clippy_utils::SpanlessEq; use clippy_utils::SpanlessEq;
use if_chain::if_chain; use if_chain::if_chain;
use rustc_errors::Diagnostic;
use rustc_hir::intravisit::{self as visit, Visitor}; use rustc_hir::intravisit::{self as visit, Visitor};
use rustc_hir::{Expr, ExprKind}; use rustc_hir::{Expr, ExprKind};
use rustc_lint::{LateContext, LateLintPass}; use rustc_lint::{LateContext, LateLintPass};
@ -45,16 +46,8 @@ declare_lint_pass!(IfLetMutex => [IF_LET_MUTEX]);
impl<'tcx> LateLintPass<'tcx> for IfLetMutex { impl<'tcx> LateLintPass<'tcx> for IfLetMutex {
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'tcx>) { fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'tcx>) {
let mut arm_visit = ArmVisitor { let mut arm_visit = ArmVisitor { found_mutex: None, cx };
mutex_lock_called: false, let mut op_visit = OppVisitor { found_mutex: None, cx };
found_mutex: None,
cx,
};
let mut op_visit = OppVisitor {
mutex_lock_called: false,
found_mutex: None,
cx,
};
if let Some(higher::IfLet { if let Some(higher::IfLet {
let_expr, let_expr,
if_then, if_then,
@ -63,18 +56,28 @@ impl<'tcx> LateLintPass<'tcx> for IfLetMutex {
}) = higher::IfLet::hir(cx, expr) }) = higher::IfLet::hir(cx, expr)
{ {
op_visit.visit_expr(let_expr); op_visit.visit_expr(let_expr);
if op_visit.mutex_lock_called { if let Some(op_mutex) = op_visit.found_mutex {
arm_visit.visit_expr(if_then); arm_visit.visit_expr(if_then);
arm_visit.visit_expr(if_else); arm_visit.visit_expr(if_else);
if arm_visit.mutex_lock_called && arm_visit.same_mutex(cx, op_visit.found_mutex.unwrap()) { if let Some(arm_mutex) = arm_visit.found_mutex_if_same_as(op_mutex) {
span_lint_and_help( let diag = |diag: &mut Diagnostic| {
diag.span_label(
op_mutex.span,
"this Mutex will remain locked for the entire `if let`-block...",
);
diag.span_label(
arm_mutex.span,
"... and is tried to lock again here, which will always deadlock.",
);
diag.help("move the lock call outside of the `if let ...` expression");
};
span_lint_and_then(
cx, cx,
IF_LET_MUTEX, IF_LET_MUTEX,
expr.span, expr.span,
"calling `Mutex::lock` inside the scope of another `Mutex::lock` causes a deadlock", "calling `Mutex::lock` inside the scope of another `Mutex::lock` causes a deadlock",
None, diag,
"move the lock call outside of the `if let ...` expression",
); );
} }
} }
@ -84,7 +87,6 @@ impl<'tcx> LateLintPass<'tcx> for IfLetMutex {
/// Checks if `Mutex::lock` is called in the `if let` expr. /// Checks if `Mutex::lock` is called in the `if let` expr.
pub struct OppVisitor<'a, 'tcx> { pub struct OppVisitor<'a, 'tcx> {
mutex_lock_called: bool,
found_mutex: Option<&'tcx Expr<'tcx>>, found_mutex: Option<&'tcx Expr<'tcx>>,
cx: &'a LateContext<'tcx>, cx: &'a LateContext<'tcx>,
} }
@ -93,7 +95,6 @@ impl<'tcx> Visitor<'tcx> for OppVisitor<'_, 'tcx> {
fn visit_expr(&mut self, expr: &'tcx Expr<'_>) { fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
if let Some(mutex) = is_mutex_lock_call(self.cx, expr) { if let Some(mutex) = is_mutex_lock_call(self.cx, expr) {
self.found_mutex = Some(mutex); self.found_mutex = Some(mutex);
self.mutex_lock_called = true;
return; return;
} }
visit::walk_expr(self, expr); visit::walk_expr(self, expr);
@ -102,7 +103,6 @@ impl<'tcx> Visitor<'tcx> for OppVisitor<'_, 'tcx> {
/// Checks if `Mutex::lock` is called in any of the branches. /// Checks if `Mutex::lock` is called in any of the branches.
pub struct ArmVisitor<'a, 'tcx> { pub struct ArmVisitor<'a, 'tcx> {
mutex_lock_called: bool,
found_mutex: Option<&'tcx Expr<'tcx>>, found_mutex: Option<&'tcx Expr<'tcx>>,
cx: &'a LateContext<'tcx>, cx: &'a LateContext<'tcx>,
} }
@ -111,7 +111,6 @@ impl<'tcx> Visitor<'tcx> for ArmVisitor<'_, 'tcx> {
fn visit_expr(&mut self, expr: &'tcx Expr<'tcx>) { fn visit_expr(&mut self, expr: &'tcx Expr<'tcx>) {
if let Some(mutex) = is_mutex_lock_call(self.cx, expr) { if let Some(mutex) = is_mutex_lock_call(self.cx, expr) {
self.found_mutex = Some(mutex); self.found_mutex = Some(mutex);
self.mutex_lock_called = true;
return; return;
} }
visit::walk_expr(self, expr); visit::walk_expr(self, expr);
@ -119,9 +118,12 @@ impl<'tcx> Visitor<'tcx> for ArmVisitor<'_, 'tcx> {
} }
impl<'tcx, 'l> ArmVisitor<'tcx, 'l> { impl<'tcx, 'l> ArmVisitor<'tcx, 'l> {
fn same_mutex(&self, cx: &LateContext<'_>, op_mutex: &Expr<'_>) -> bool { fn found_mutex_if_same_as(&self, op_mutex: &Expr<'_>) -> Option<&Expr<'_>> {
self.found_mutex self.found_mutex.and_then(|arm_mutex| {
.map_or(false, |arm_mutex| SpanlessEq::new(cx).eq_expr(op_mutex, arm_mutex)) SpanlessEq::new(self.cx)
.eq_expr(op_mutex, arm_mutex)
.then_some(arm_mutex)
})
} }
} }
@ -129,7 +131,7 @@ fn is_mutex_lock_call<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) -> Opt
if_chain! { if_chain! {
if let ExprKind::MethodCall(path, [self_arg, ..], _) = &expr.kind; if let ExprKind::MethodCall(path, [self_arg, ..], _) = &expr.kind;
if path.ident.as_str() == "lock"; if path.ident.as_str() == "lock";
let ty = cx.typeck_results().expr_ty(self_arg); let ty = cx.typeck_results().expr_ty(self_arg).peel_refs();
if is_type_diagnostic_item(cx, ty, sym::Mutex); if is_type_diagnostic_item(cx, ty, sym::Mutex);
then { then {
Some(self_arg) Some(self_arg)

View file

@ -39,4 +39,12 @@ fn if_let_different_mutex() {
}; };
} }
fn mutex_ref(mutex: &Mutex<i32>) {
if let Ok(i) = mutex.lock() {
do_stuff(i);
} else {
let _x = mutex.lock();
};
}
fn main() {} fn main() {}

View file

@ -1,10 +1,14 @@
error: calling `Mutex::lock` inside the scope of another `Mutex::lock` causes a deadlock error: calling `Mutex::lock` inside the scope of another `Mutex::lock` causes a deadlock
--> $DIR/if_let_mutex.rs:10:5 --> $DIR/if_let_mutex.rs:10:5
| |
LL | / if let Err(locked) = m.lock() { LL | if let Err(locked) = m.lock() {
| ^ - this Mutex will remain locked for the entire `if let`-block...
| _____|
| |
LL | | do_stuff(locked); LL | | do_stuff(locked);
LL | | } else { LL | | } else {
LL | | let lock = m.lock().unwrap(); LL | | let lock = m.lock().unwrap();
| | - ... and is tried to lock again here, which will always deadlock.
LL | | do_stuff(lock); LL | | do_stuff(lock);
LL | | }; LL | | };
| |_____^ | |_____^
@ -15,15 +19,35 @@ LL | | };
error: calling `Mutex::lock` inside the scope of another `Mutex::lock` causes a deadlock error: calling `Mutex::lock` inside the scope of another `Mutex::lock` causes a deadlock
--> $DIR/if_let_mutex.rs:22:5 --> $DIR/if_let_mutex.rs:22:5
| |
LL | / if let Some(locked) = m.lock().unwrap().deref() { LL | if let Some(locked) = m.lock().unwrap().deref() {
| ^ - this Mutex will remain locked for the entire `if let`-block...
| _____|
| |
LL | | do_stuff(locked); LL | | do_stuff(locked);
LL | | } else { LL | | } else {
LL | | let lock = m.lock().unwrap(); LL | | let lock = m.lock().unwrap();
| | - ... and is tried to lock again here, which will always deadlock.
LL | | do_stuff(lock); LL | | do_stuff(lock);
LL | | }; LL | | };
| |_____^ | |_____^
| |
= help: move the lock call outside of the `if let ...` expression = help: move the lock call outside of the `if let ...` expression
error: aborting due to 2 previous errors error: calling `Mutex::lock` inside the scope of another `Mutex::lock` causes a deadlock
--> $DIR/if_let_mutex.rs:43:5
|
LL | if let Ok(i) = mutex.lock() {
| ^ ----- this Mutex will remain locked for the entire `if let`-block...
| _____|
| |
LL | | do_stuff(i);
LL | | } else {
LL | | let _x = mutex.lock();
| | ----- ... and is tried to lock again here, which will always deadlock.
LL | | };
| |_____^
|
= help: move the lock call outside of the `if let ...` expression
error: aborting due to 3 previous errors