|
| 1 | +use clippy_utils::diagnostics::span_lint_and_then; |
| 2 | +use clippy_utils::{fn_def_id, is_lint_allowed}; |
| 3 | +use hir::intravisit::{walk_expr, Visitor}; |
| 4 | +use hir::{Expr, ExprKind, FnRetTy, FnSig, Node}; |
| 5 | +use rustc_ast::Label; |
| 6 | +use rustc_errors::Applicability; |
| 7 | +use rustc_hir as hir; |
| 8 | +use rustc_lint::LateContext; |
| 9 | + |
| 10 | +use super::INFINITE_LOOP; |
| 11 | + |
| 12 | +pub(super) fn check<'tcx>( |
| 13 | + cx: &LateContext<'tcx>, |
| 14 | + expr: &Expr<'_>, |
| 15 | + loop_block: &'tcx hir::Block<'_>, |
| 16 | + label: Option<Label>, |
| 17 | +) { |
| 18 | + if is_lint_allowed(cx, INFINITE_LOOP, expr.hir_id) { |
| 19 | + return; |
| 20 | + } |
| 21 | + |
| 22 | + // Skip check if this loop is not in a function/method/closure. (In some weird case) |
| 23 | + let Some(parent_fn_ret) = get_parent_fn_ret_ty(cx, expr) else { |
| 24 | + return; |
| 25 | + }; |
| 26 | + // Or, its parent function is already returning `Never` |
| 27 | + if matches!( |
| 28 | + parent_fn_ret, |
| 29 | + FnRetTy::Return(hir::Ty { |
| 30 | + kind: hir::TyKind::Never, |
| 31 | + .. |
| 32 | + }) |
| 33 | + ) { |
| 34 | + return; |
| 35 | + } |
| 36 | + |
| 37 | + let mut loop_visitor = LoopVisitor { |
| 38 | + cx, |
| 39 | + label, |
| 40 | + is_finite: false, |
| 41 | + loop_depth: 0, |
| 42 | + }; |
| 43 | + loop_visitor.visit_block(loop_block); |
| 44 | + |
| 45 | + let is_finite_loop = loop_visitor.is_finite; |
| 46 | + |
| 47 | + if !is_finite_loop { |
| 48 | + span_lint_and_then(cx, INFINITE_LOOP, expr.span, "infinite loop detected", |diag| { |
| 49 | + if let FnRetTy::DefaultReturn(ret_span) = parent_fn_ret { |
| 50 | + diag.span_suggestion( |
| 51 | + ret_span, |
| 52 | + "if this is intentional, consider specifing `!` as function return", |
| 53 | + " -> !", |
| 54 | + Applicability::MaybeIncorrect, |
| 55 | + ); |
| 56 | + } else { |
| 57 | + diag.help("if this is not intended, try adding a `break` or `return` condition in the loop"); |
| 58 | + } |
| 59 | + }); |
| 60 | + } |
| 61 | +} |
| 62 | + |
| 63 | +fn get_parent_fn_ret_ty<'tcx>(cx: &LateContext<'tcx>, expr: &Expr<'_>) -> Option<FnRetTy<'tcx>> { |
| 64 | + for (_, parent_node) in cx.tcx.hir().parent_iter(expr.hir_id) { |
| 65 | + match parent_node { |
| 66 | + Node::Item(hir::Item { |
| 67 | + kind: hir::ItemKind::Fn(FnSig { decl, .. }, _, _), |
| 68 | + .. |
| 69 | + }) |
| 70 | + | Node::TraitItem(hir::TraitItem { |
| 71 | + kind: hir::TraitItemKind::Fn(FnSig { decl, .. }, _), |
| 72 | + .. |
| 73 | + }) |
| 74 | + | Node::ImplItem(hir::ImplItem { |
| 75 | + kind: hir::ImplItemKind::Fn(FnSig { decl, .. }, _), |
| 76 | + .. |
| 77 | + }) |
| 78 | + | Node::Expr(Expr { |
| 79 | + kind: ExprKind::Closure(hir::Closure { fn_decl: decl, .. }), |
| 80 | + .. |
| 81 | + }) => return Some(decl.output), |
| 82 | + _ => (), |
| 83 | + } |
| 84 | + } |
| 85 | + None |
| 86 | +} |
| 87 | + |
| 88 | +struct LoopVisitor<'hir, 'tcx> { |
| 89 | + cx: &'hir LateContext<'tcx>, |
| 90 | + label: Option<Label>, |
| 91 | + loop_depth: usize, |
| 92 | + is_finite: bool, |
| 93 | +} |
| 94 | + |
| 95 | +impl<'hir> Visitor<'hir> for LoopVisitor<'hir, '_> { |
| 96 | + fn visit_expr(&mut self, ex: &'hir Expr<'_>) { |
| 97 | + match &ex.kind { |
| 98 | + ExprKind::Break(hir::Destination { label, .. }, ..) => { |
| 99 | + // Assuming breaks the loop when `loop_depth` is 0, |
| 100 | + // as it could only means this `break` breaks current loop or any of its upper loop. |
| 101 | + // Or, the depth is not zero but the label is matched. |
| 102 | + if self.loop_depth == 0 || (label.is_some() && *label == self.label) { |
| 103 | + self.is_finite = true; |
| 104 | + } |
| 105 | + }, |
| 106 | + ExprKind::Ret(..) => self.is_finite = true, |
| 107 | + ExprKind::Loop(..) => { |
| 108 | + self.loop_depth += 1; |
| 109 | + walk_expr(self, ex); |
| 110 | + self.loop_depth = self.loop_depth.saturating_sub(1); |
| 111 | + }, |
| 112 | + _ => { |
| 113 | + // Calls to a function that never return |
| 114 | + if let Some(did) = fn_def_id(self.cx, ex) { |
| 115 | + let fn_ret_ty = self.cx.tcx.fn_sig(did).skip_binder().output().skip_binder(); |
| 116 | + if fn_ret_ty.is_never() { |
| 117 | + self.is_finite = true; |
| 118 | + return; |
| 119 | + } |
| 120 | + } |
| 121 | + walk_expr(self, ex); |
| 122 | + }, |
| 123 | + } |
| 124 | + } |
| 125 | +} |
0 commit comments