2020-02-03 13:01:42 -06:00
|
|
|
use crate::utils::{higher::if_block, in_macro, match_type, paths, span_lint_and_then, usage::is_potentially_mutated};
|
2018-07-19 03:00:54 -05:00
|
|
|
use if_chain::if_chain;
|
2020-01-09 01:13:22 -06:00
|
|
|
use rustc::hir::map::Map;
|
|
|
|
use rustc_hir::intravisit::*;
|
2020-01-06 10:39:50 -06:00
|
|
|
use rustc_hir::*;
|
2020-01-12 00:08:41 -06:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-01-11 05:37:08 -06:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-01-04 04:00:00 -06:00
|
|
|
use rustc_span::source_map::Span;
|
2018-05-27 17:02:38 -05:00
|
|
|
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **What it does:** Checks for calls of `unwrap[_err]()` that cannot fail.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** Using `if let` or `match` is more idiomatic.
|
|
|
|
///
|
2019-07-30 02:51:45 -05:00
|
|
|
/// **Known problems:** None
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
2019-08-01 05:53:20 -05:00
|
|
|
/// # let option = Some(0);
|
|
|
|
/// # fn do_something_with(_x: usize) {}
|
2019-03-05 10:50:33 -06:00
|
|
|
/// if option.is_some() {
|
|
|
|
/// do_something_with(option.unwrap())
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Could be written:
|
|
|
|
///
|
|
|
|
/// ```rust
|
2019-08-01 05:53:20 -05:00
|
|
|
/// # let option = Some(0);
|
|
|
|
/// # fn do_something_with(_x: usize) {}
|
2019-03-05 10:50:33 -06:00
|
|
|
/// if let Some(value) = option {
|
|
|
|
/// do_something_with(value)
|
|
|
|
/// }
|
|
|
|
/// ```
|
2018-05-27 17:02:38 -05:00
|
|
|
pub UNNECESSARY_UNWRAP,
|
2019-07-30 02:50:56 -05:00
|
|
|
complexity,
|
2020-01-06 00:30:43 -06:00
|
|
|
"checks for calls of `unwrap[_err]()` that cannot fail"
|
2018-05-27 17:02:38 -05:00
|
|
|
}
|
|
|
|
|
2018-06-08 11:12:01 -05:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **What it does:** Checks for calls of `unwrap[_err]()` that will always fail.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** If panicking is desired, an explicit `panic!()` should be used.
|
|
|
|
///
|
|
|
|
/// **Known problems:** This lint only checks `if` conditions not assignments.
|
|
|
|
/// So something like `let x: Option<()> = None; x.unwrap();` will not be recognized.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
2019-08-01 05:53:20 -05:00
|
|
|
/// # let option = Some(0);
|
|
|
|
/// # fn do_something_with(_x: usize) {}
|
2019-03-05 10:50:33 -06:00
|
|
|
/// if option.is_none() {
|
|
|
|
/// do_something_with(option.unwrap())
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// This code will always panic. The if condition should probably be inverted.
|
2018-06-08 11:12:01 -05:00
|
|
|
pub PANICKING_UNWRAP,
|
2019-07-30 02:50:56 -05:00
|
|
|
correctness,
|
2020-01-06 00:30:43 -06:00
|
|
|
"checks for calls of `unwrap[_err]()` that will always fail"
|
2018-06-08 11:12:01 -05:00
|
|
|
}
|
|
|
|
|
2018-05-27 17:02:38 -05:00
|
|
|
/// Visitor that keeps track of which variables are unwrappable.
|
2019-06-19 13:36:23 -05:00
|
|
|
struct UnwrappableVariablesVisitor<'a, 'tcx> {
|
2018-05-27 17:02:38 -05:00
|
|
|
unwrappables: Vec<UnwrapInfo<'tcx>>,
|
|
|
|
cx: &'a LateContext<'a, 'tcx>,
|
|
|
|
}
|
|
|
|
/// Contains information about whether a variable can be unwrapped.
|
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
|
|
struct UnwrapInfo<'tcx> {
|
|
|
|
/// The variable that is checked
|
2019-12-29 22:02:10 -06:00
|
|
|
ident: &'tcx Path<'tcx>,
|
2018-05-27 17:02:38 -05:00
|
|
|
/// The check, like `x.is_ok()`
|
2019-12-27 01:12:26 -06:00
|
|
|
check: &'tcx Expr<'tcx>,
|
2018-05-27 17:02:38 -05:00
|
|
|
/// Whether `is_some()` or `is_ok()` was called (as opposed to `is_err()` or `is_none()`).
|
|
|
|
safe_to_unwrap: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Collects the information about unwrappable variables from an if condition
|
|
|
|
/// The `invert` argument tells us whether the condition is negated.
|
2019-06-19 13:36:23 -05:00
|
|
|
fn collect_unwrap_info<'a, 'tcx>(
|
2018-05-27 17:02:38 -05:00
|
|
|
cx: &'a LateContext<'a, 'tcx>,
|
2019-12-27 01:12:26 -06:00
|
|
|
expr: &'tcx Expr<'_>,
|
2018-05-27 17:02:38 -05:00
|
|
|
invert: bool,
|
|
|
|
) -> Vec<UnwrapInfo<'tcx>> {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Binary(op, left, right) = &expr.kind {
|
2018-05-27 17:02:38 -05:00
|
|
|
match (invert, op.node) {
|
2018-07-12 02:50:09 -05:00
|
|
|
(false, BinOpKind::And) | (false, BinOpKind::BitAnd) | (true, BinOpKind::Or) | (true, BinOpKind::BitOr) => {
|
2018-05-27 17:02:38 -05:00
|
|
|
let mut unwrap_info = collect_unwrap_info(cx, left, invert);
|
|
|
|
unwrap_info.append(&mut collect_unwrap_info(cx, right, invert));
|
|
|
|
return unwrap_info;
|
|
|
|
},
|
|
|
|
_ => (),
|
|
|
|
}
|
2020-01-06 10:39:50 -06:00
|
|
|
} else if let ExprKind::Unary(UnOp::UnNot, expr) = &expr.kind {
|
2018-05-27 17:02:38 -05:00
|
|
|
return collect_unwrap_info(cx, expr, !invert);
|
|
|
|
} else {
|
|
|
|
if_chain! {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::MethodCall(method_name, _, args) = &expr.kind;
|
|
|
|
if let ExprKind::Path(QPath::Resolved(None, path)) = &args[0].kind;
|
2018-05-27 17:02:38 -05:00
|
|
|
let ty = cx.tables.expr_ty(&args[0]);
|
2019-05-17 16:53:54 -05:00
|
|
|
if match_type(cx, ty, &paths::OPTION) || match_type(cx, ty, &paths::RESULT);
|
2018-06-28 08:46:58 -05:00
|
|
|
let name = method_name.ident.as_str();
|
2018-05-27 17:02:38 -05:00
|
|
|
if ["is_some", "is_none", "is_ok", "is_err"].contains(&&*name);
|
|
|
|
then {
|
|
|
|
assert!(args.len() == 1);
|
|
|
|
let unwrappable = match name.as_ref() {
|
|
|
|
"is_some" | "is_ok" => true,
|
|
|
|
"is_err" | "is_none" => false,
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
let safe_to_unwrap = unwrappable != invert;
|
|
|
|
return vec![UnwrapInfo { ident: path, check: expr, safe_to_unwrap }];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Vec::new()
|
|
|
|
}
|
|
|
|
|
2019-06-19 13:36:23 -05:00
|
|
|
impl<'a, 'tcx> UnwrappableVariablesVisitor<'a, 'tcx> {
|
2019-12-27 01:12:26 -06:00
|
|
|
fn visit_branch(&mut self, cond: &'tcx Expr<'_>, branch: &'tcx Expr<'_>, else_branch: bool) {
|
2018-05-27 17:02:38 -05:00
|
|
|
let prev_len = self.unwrappables.len();
|
|
|
|
for unwrap_info in collect_unwrap_info(self.cx, cond, else_branch) {
|
|
|
|
if is_potentially_mutated(unwrap_info.ident, cond, self.cx)
|
|
|
|
|| is_potentially_mutated(unwrap_info.ident, branch, self.cx)
|
|
|
|
{
|
|
|
|
// if the variable is mutated, we don't know whether it can be unwrapped:
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
self.unwrappables.push(unwrap_info);
|
|
|
|
}
|
|
|
|
walk_expr(self, branch);
|
|
|
|
self.unwrappables.truncate(prev_len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-19 13:36:23 -05:00
|
|
|
impl<'a, 'tcx> Visitor<'tcx> for UnwrappableVariablesVisitor<'a, 'tcx> {
|
2020-01-09 01:13:22 -06:00
|
|
|
type Map = Map<'tcx>;
|
|
|
|
|
2019-12-27 01:12:26 -06:00
|
|
|
fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
|
2020-02-03 13:01:42 -06:00
|
|
|
// Shouldn't lint when `expr` is in macro.
|
|
|
|
if in_macro(expr.span) {
|
|
|
|
return;
|
|
|
|
}
|
2019-05-10 21:13:15 -05:00
|
|
|
if let Some((cond, then, els)) = if_block(&expr) {
|
2018-05-27 17:02:38 -05:00
|
|
|
walk_expr(self, cond);
|
|
|
|
self.visit_branch(cond, then, false);
|
|
|
|
if let Some(els) = els {
|
|
|
|
self.visit_branch(cond, els, true);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// find `unwrap[_err]()` calls:
|
|
|
|
if_chain! {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::MethodCall(ref method_name, _, ref args) = expr.kind;
|
|
|
|
if let ExprKind::Path(QPath::Resolved(None, ref path)) = args[0].kind;
|
2019-05-17 16:53:54 -05:00
|
|
|
if [sym!(unwrap), sym!(unwrap_err)].contains(&method_name.ident.name);
|
|
|
|
let call_to_unwrap = method_name.ident.name == sym!(unwrap);
|
2018-05-27 17:02:38 -05:00
|
|
|
if let Some(unwrappable) = self.unwrappables.iter()
|
2019-05-03 19:03:12 -05:00
|
|
|
.find(|u| u.ident.res == path.res);
|
2018-05-27 17:02:38 -05:00
|
|
|
then {
|
2018-06-08 11:12:01 -05:00
|
|
|
if call_to_unwrap == unwrappable.safe_to_unwrap {
|
|
|
|
span_lint_and_then(
|
|
|
|
self.cx,
|
|
|
|
UNNECESSARY_UNWRAP,
|
|
|
|
expr.span,
|
|
|
|
&format!("You checked before that `{}()` cannot fail. \
|
|
|
|
Instead of checking and unwrapping, it's better to use `if let` or `match`.",
|
2018-06-28 08:46:58 -05:00
|
|
|
method_name.ident.name),
|
2018-06-08 11:12:01 -05:00
|
|
|
|db| { db.span_label(unwrappable.check.span, "the check is happening here"); },
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
span_lint_and_then(
|
|
|
|
self.cx,
|
2018-06-08 13:38:39 -05:00
|
|
|
PANICKING_UNWRAP,
|
2018-06-08 11:12:01 -05:00
|
|
|
expr.span,
|
|
|
|
&format!("This call to `{}()` will always panic.",
|
2018-06-28 08:46:58 -05:00
|
|
|
method_name.ident.name),
|
2018-06-08 11:12:01 -05:00
|
|
|
|db| { db.span_label(unwrappable.check.span, "because of this check"); },
|
|
|
|
);
|
|
|
|
}
|
2018-05-27 17:02:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
walk_expr(self, expr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-09 01:13:22 -06:00
|
|
|
fn nested_visit_map(&mut self) -> NestedVisitorMap<'_, Self::Map> {
|
2018-12-07 18:56:03 -06:00
|
|
|
NestedVisitorMap::OnlyBodies(&self.cx.tcx.hir())
|
2018-05-27 17:02:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(Unwrap => [PANICKING_UNWRAP, UNNECESSARY_UNWRAP]);
|
2018-05-27 17:02:38 -05:00
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Unwrap {
|
2018-05-27 17:02:38 -05:00
|
|
|
fn check_fn(
|
|
|
|
&mut self,
|
|
|
|
cx: &LateContext<'a, 'tcx>,
|
|
|
|
kind: FnKind<'tcx>,
|
2019-12-29 22:02:10 -06:00
|
|
|
decl: &'tcx FnDecl<'_>,
|
2019-12-22 08:42:41 -06:00
|
|
|
body: &'tcx Body<'_>,
|
2018-05-27 17:02:38 -05:00
|
|
|
span: Span,
|
2019-02-20 04:11:11 -06:00
|
|
|
fn_id: HirId,
|
2018-05-27 17:02:38 -05:00
|
|
|
) {
|
2019-08-19 11:30:32 -05:00
|
|
|
if span.from_expansion() {
|
2018-05-27 17:02:38 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut v = UnwrappableVariablesVisitor {
|
|
|
|
cx,
|
|
|
|
unwrappables: Vec::new(),
|
|
|
|
};
|
|
|
|
|
|
|
|
walk_fn(&mut v, kind, decl, body.id(), span, fn_id);
|
|
|
|
}
|
|
|
|
}
|