2022-08-31 13:24:45 +00:00
|
|
|
use clippy_utils::diagnostics::span_lint_and_then;
|
2021-03-25 18:29:11 +00:00
|
|
|
use clippy_utils::ty::is_type_diagnostic_item;
|
2023-07-17 08:19:29 +00:00
|
|
|
use clippy_utils::{higher, SpanlessEq};
|
2022-08-31 13:24:45 +00:00
|
|
|
use rustc_errors::Diagnostic;
|
2022-01-15 22:07:52 +00:00
|
|
|
use rustc_hir::intravisit::{self as visit, Visitor};
|
2021-08-08 14:49:13 +00:00
|
|
|
use rustc_hir::{Expr, ExprKind};
|
2020-03-05 13:36:19 +00:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2023-12-01 17:21:58 +00:00
|
|
|
use rustc_session::declare_lint_pass;
|
2021-10-02 23:51:01 +00:00
|
|
|
use rustc_span::sym;
|
2020-03-05 13:36:19 +00:00
|
|
|
|
|
|
|
declare_clippy_lint! {
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for `Mutex::lock` calls in `if let` expression
|
2020-03-05 13:36:19 +00:00
|
|
|
/// with lock calls in any of the else blocks.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// The Mutex lock remains held for the whole
|
2020-03-05 13:36:19 +00:00
|
|
|
/// `if let ... else` block and deadlocks.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Example
|
2020-03-18 01:51:43 +00:00
|
|
|
/// ```rust,ignore
|
2020-03-05 13:36:19 +00:00
|
|
|
/// if let Ok(thing) = mutex.lock() {
|
|
|
|
/// do_thing();
|
|
|
|
/// } else {
|
|
|
|
/// mutex.lock();
|
|
|
|
/// }
|
|
|
|
/// ```
|
2020-03-18 01:51:43 +00:00
|
|
|
/// Should be written
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// let locked = mutex.lock();
|
|
|
|
/// if let Ok(thing) = locked {
|
|
|
|
/// do_thing(thing);
|
|
|
|
/// } else {
|
|
|
|
/// use_locked(locked);
|
|
|
|
/// }
|
|
|
|
/// ```
|
2021-12-06 11:33:31 +00:00
|
|
|
#[clippy::version = "1.45.0"]
|
2020-03-05 13:36:19 +00:00
|
|
|
pub IF_LET_MUTEX,
|
|
|
|
correctness,
|
2020-03-05 23:02:22 +00:00
|
|
|
"locking a `Mutex` in an `if let` block can cause deadlocks"
|
2020-03-05 13:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
declare_lint_pass!(IfLetMutex => [IF_LET_MUTEX]);
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for IfLetMutex {
|
2021-08-08 14:49:13 +00:00
|
|
|
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'tcx>) {
|
2022-08-31 13:24:45 +00:00
|
|
|
let mut arm_visit = ArmVisitor { found_mutex: None, cx };
|
|
|
|
let mut op_visit = OppVisitor { found_mutex: None, cx };
|
2021-08-08 14:49:13 +00:00
|
|
|
if let Some(higher::IfLet {
|
|
|
|
let_expr,
|
|
|
|
if_then,
|
|
|
|
if_else: Some(if_else),
|
|
|
|
..
|
2021-08-19 18:31:25 +00:00
|
|
|
}) = higher::IfLet::hir(cx, expr)
|
2020-03-18 22:13:06 +00:00
|
|
|
{
|
2021-08-08 14:49:13 +00:00
|
|
|
op_visit.visit_expr(let_expr);
|
2022-08-31 13:24:45 +00:00
|
|
|
if let Some(op_mutex) = op_visit.found_mutex {
|
2021-08-08 14:49:13 +00:00
|
|
|
arm_visit.visit_expr(if_then);
|
|
|
|
arm_visit.visit_expr(if_else);
|
2020-03-05 13:36:19 +00:00
|
|
|
|
2022-08-31 13:24:45 +00:00
|
|
|
if let Some(arm_mutex) = arm_visit.found_mutex_if_same_as(op_mutex) {
|
|
|
|
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(
|
2020-03-18 22:13:06 +00:00
|
|
|
cx,
|
|
|
|
IF_LET_MUTEX,
|
2021-08-08 14:49:13 +00:00
|
|
|
expr.span,
|
2020-03-18 22:13:06 +00:00
|
|
|
"calling `Mutex::lock` inside the scope of another `Mutex::lock` causes a deadlock",
|
2022-08-31 13:24:45 +00:00
|
|
|
diag,
|
2020-03-18 22:13:06 +00:00
|
|
|
);
|
|
|
|
}
|
2020-03-05 13:36:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-01 16:17:38 +00:00
|
|
|
/// Checks if `Mutex::lock` is called in the `if let` expr.
|
2020-06-25 20:41:36 +00:00
|
|
|
pub struct OppVisitor<'a, 'tcx> {
|
2020-04-15 21:08:26 +00:00
|
|
|
found_mutex: Option<&'tcx Expr<'tcx>>,
|
2020-06-25 20:41:36 +00:00
|
|
|
cx: &'a LateContext<'tcx>,
|
2020-03-18 19:20:01 +00:00
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
impl<'tcx> Visitor<'tcx> for OppVisitor<'_, 'tcx> {
|
2020-03-18 22:13:06 +00:00
|
|
|
fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
|
2021-04-08 15:50:13 +00:00
|
|
|
if let Some(mutex) = is_mutex_lock_call(self.cx, expr) {
|
|
|
|
self.found_mutex = Some(mutex);
|
|
|
|
return;
|
2020-03-18 22:13:06 +00:00
|
|
|
}
|
|
|
|
visit::walk_expr(self, expr);
|
2020-03-18 19:20:01 +00:00
|
|
|
}
|
2020-03-18 22:13:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Checks if `Mutex::lock` is called in any of the branches.
|
2020-06-25 20:41:36 +00:00
|
|
|
pub struct ArmVisitor<'a, 'tcx> {
|
2020-04-15 21:08:26 +00:00
|
|
|
found_mutex: Option<&'tcx Expr<'tcx>>,
|
2020-06-25 20:41:36 +00:00
|
|
|
cx: &'a LateContext<'tcx>,
|
2020-03-18 19:20:01 +00:00
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
impl<'tcx> Visitor<'tcx> for ArmVisitor<'_, 'tcx> {
|
2020-04-15 21:08:26 +00:00
|
|
|
fn visit_expr(&mut self, expr: &'tcx Expr<'tcx>) {
|
2021-04-08 15:50:13 +00:00
|
|
|
if let Some(mutex) = is_mutex_lock_call(self.cx, expr) {
|
|
|
|
self.found_mutex = Some(mutex);
|
|
|
|
return;
|
2020-03-05 13:36:19 +00:00
|
|
|
}
|
2020-03-18 22:13:06 +00:00
|
|
|
visit::walk_expr(self, expr);
|
2020-03-05 13:36:19 +00:00
|
|
|
}
|
2020-03-18 01:51:43 +00:00
|
|
|
}
|
2020-04-15 21:08:26 +00:00
|
|
|
|
2020-07-14 12:59:59 +00:00
|
|
|
impl<'tcx, 'l> ArmVisitor<'tcx, 'l> {
|
2022-08-31 13:24:45 +00:00
|
|
|
fn found_mutex_if_same_as(&self, op_mutex: &Expr<'_>) -> Option<&Expr<'_>> {
|
|
|
|
self.found_mutex.and_then(|arm_mutex| {
|
|
|
|
SpanlessEq::new(self.cx)
|
|
|
|
.eq_expr(op_mutex, arm_mutex)
|
|
|
|
.then_some(arm_mutex)
|
|
|
|
})
|
2020-04-15 21:08:26 +00:00
|
|
|
}
|
|
|
|
}
|
2020-04-20 19:08:44 +00:00
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
fn is_mutex_lock_call<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) -> Option<&'tcx Expr<'tcx>> {
|
2023-11-16 18:13:24 +00:00
|
|
|
if let ExprKind::MethodCall(path, self_arg, ..) = &expr.kind
|
|
|
|
&& path.ident.as_str() == "lock"
|
|
|
|
&& let ty = cx.typeck_results().expr_ty(self_arg).peel_refs()
|
|
|
|
&& is_type_diagnostic_item(cx, ty, sym::Mutex)
|
|
|
|
{
|
|
|
|
Some(self_arg)
|
|
|
|
} else {
|
|
|
|
None
|
2020-04-20 19:08:44 +00:00
|
|
|
}
|
|
|
|
}
|