rust-clippy/clippy_lints/src/eval_order_dependence.rs

358 lines
13 KiB
Rust
Raw Normal View History

use crate::utils::{get_parent_expr, span_lint, span_lint_and_note};
2018-11-27 20:14:15 +00:00
use if_chain::if_chain;
2020-01-09 07:13:22 +00:00
use rustc::hir::map::Map;
use rustc::ty;
2020-01-09 07:13:22 +00:00
use rustc_hir::intravisit::{walk_expr, NestedVisitorMap, Visitor};
2020-02-21 08:39:38 +00:00
use rustc_hir::{def, BinOpKind, Block, Expr, ExprKind, Guard, HirId, Local, Node, QPath, Stmt, StmtKind};
2020-01-12 06:08:41 +00:00
use rustc_lint::{LateContext, LateLintPass};
2020-01-11 11:37:08 +00:00
use rustc_session::{declare_lint_pass, declare_tool_lint};
2018-03-28 13:24:26 +00:00
declare_clippy_lint! {
/// **What it does:** Checks for a read and a write to the same variable where
/// whether the read occurs before or after the write depends on the evaluation
/// order of sub-expressions.
///
/// **Why is this bad?** It is often confusing to read. In addition, the
/// sub-expression evaluation order for Rust is not well documented.
///
/// **Known problems:** Code which intentionally depends on the evaluation
/// order, or which is correct for any evaluation order.
///
/// **Example:**
/// ```rust
/// let mut x = 0;
/// let a = {
/// x = 1;
/// 1
/// } + x;
/// // Unclear whether a is 1 or 2.
/// ```
pub EVAL_ORDER_DEPENDENCE,
2018-03-28 13:24:26 +00:00
complexity,
"whether a variable read occurs before a write depends on sub-expression evaluation order"
}
2018-03-28 13:24:26 +00:00
declare_clippy_lint! {
/// **What it does:** Checks for diverging calls that are not match arms or
/// statements.
///
/// **Why is this bad?** It is often confusing to read. In addition, the
/// sub-expression evaluation order for Rust is not well documented.
///
/// **Known problems:** Someone might want to use `some_bool || panic!()` as a
/// shorthand.
///
/// **Example:**
/// ```rust,no_run
/// # fn b() -> bool { true }
/// # fn c() -> bool { true }
/// let a = b() || panic!() || c();
/// // `c()` is dead, `panic!()` is only called if `b()` returns `false`
/// let x = (a, b, c, panic!());
/// // can simply be replaced by `panic!()`
/// ```
pub DIVERGING_SUB_EXPRESSION,
2018-03-28 13:24:26 +00:00
complexity,
"whether an expression contains a diverging sub expression"
}
2019-04-08 20:43:55 +00:00
declare_lint_pass!(EvalOrderDependence => [EVAL_ORDER_DEPENDENCE, DIVERGING_SUB_EXPRESSION]);
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for EvalOrderDependence {
2019-12-27 07:12:26 +00:00
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr<'_>) {
// Find a write to a local variable.
2019-09-27 15:16:06 +00:00
match expr.kind {
ExprKind::Assign(ref lhs, ..) | ExprKind::AssignOp(_, ref lhs, _) => {
2019-09-27 15:16:06 +00:00
if let ExprKind::Path(ref qpath) = lhs.kind {
2018-11-27 20:14:15 +00:00
if let QPath::Resolved(_, ref path) = *qpath {
if path.segments.len() == 1 {
if let def::Res::Local(var) = cx.tables.qpath_res(qpath, lhs.hir_id) {
2018-11-27 20:14:15 +00:00
let mut visitor = ReadVisitor {
cx,
var,
write_expr: expr,
last_expr: expr,
};
check_for_unsequenced_reads(&mut visitor);
}
2017-09-12 12:26:40 +00:00
}
}
}
2016-12-20 17:21:30 +00:00
},
_ => {},
}
}
2019-12-27 07:12:26 +00:00
fn check_stmt(&mut self, cx: &LateContext<'a, 'tcx>, stmt: &'tcx Stmt<'_>) {
2019-09-27 15:16:06 +00:00
match stmt.kind {
StmtKind::Local(ref local) => {
2019-01-20 10:49:45 +00:00
if let Local { init: Some(ref e), .. } = **local {
DivergenceVisitor { cx }.visit_expr(e);
}
},
StmtKind::Expr(ref e) | StmtKind::Semi(ref e) => DivergenceVisitor { cx }.maybe_walk_expr(e),
StmtKind::Item(..) => {},
}
}
}
struct DivergenceVisitor<'a, 'tcx> {
cx: &'a LateContext<'a, 'tcx>,
}
impl<'a, 'tcx> DivergenceVisitor<'a, 'tcx> {
2019-12-27 07:12:26 +00:00
fn maybe_walk_expr(&mut self, e: &'tcx Expr<'_>) {
2019-09-27 15:16:06 +00:00
match e.kind {
2019-09-12 06:36:05 +00:00
ExprKind::Closure(..) => {},
2019-12-27 07:12:26 +00:00
ExprKind::Match(ref e, arms, _) => {
self.visit_expr(e);
for arm in arms {
if let Some(ref guard) = arm.guard {
2018-09-02 07:38:25 +00:00
match guard {
Guard::If(if_expr) => self.visit_expr(if_expr),
}
}
// make sure top level arm expressions aren't linted
self.maybe_walk_expr(&*arm.body);
}
2016-12-20 17:21:30 +00:00
},
_ => walk_expr(self, e),
}
}
2019-12-27 07:12:26 +00:00
fn report_diverging_sub_expr(&mut self, e: &Expr<'_>) {
2016-12-20 17:21:30 +00:00
span_lint(self.cx, DIVERGING_SUB_EXPRESSION, e.span, "sub-expression diverges");
}
}
impl<'a, 'tcx> Visitor<'tcx> for DivergenceVisitor<'a, 'tcx> {
2020-01-09 07:13:22 +00:00
type Map = Map<'tcx>;
2019-12-27 07:12:26 +00:00
fn visit_expr(&mut self, e: &'tcx Expr<'_>) {
2019-09-27 15:16:06 +00:00
match e.kind {
2018-07-12 07:30:57 +00:00
ExprKind::Continue(_) | ExprKind::Break(_, _) | ExprKind::Ret(_) => self.report_diverging_sub_expr(e),
ExprKind::Call(ref func, _) => {
let typ = self.cx.tables.expr_ty(func);
match typ.kind {
ty::FnDef(..) | ty::FnPtr(_) => {
let sig = typ.fn_sig(self.cx.tcx);
if let ty::Never = self.cx.tcx.erase_late_bound_regions(&sig).output().kind {
2016-12-20 17:21:30 +00:00
self.report_diverging_sub_expr(e);
}
},
_ => {},
}
},
2018-07-12 07:30:57 +00:00
ExprKind::MethodCall(..) => {
2017-01-13 16:04:56 +00:00
let borrowed_table = self.cx.tables;
if borrowed_table.expr_ty(e).is_never() {
2016-09-13 10:41:37 +00:00
self.report_diverging_sub_expr(e);
}
},
_ => {
2017-08-09 07:30:56 +00:00
// do not lint expressions referencing objects of type `!`, as that required a
// diverging expression
// to begin with
},
}
self.maybe_walk_expr(e);
}
2019-12-27 07:12:26 +00:00
fn visit_block(&mut self, _: &'tcx Block<'_>) {
// don't continue over blocks, LateLintPass already does that
}
2020-01-09 07:13:22 +00:00
fn nested_visit_map(&mut self) -> NestedVisitorMap<'_, Self::Map> {
NestedVisitorMap::None
}
}
/// Walks up the AST from the given write expression (`vis.write_expr`) looking
/// for reads to the same variable that are unsequenced relative to the write.
///
/// This means reads for which there is a common ancestor between the read and
/// the write such that
///
2018-11-27 20:14:15 +00:00
/// * evaluating the ancestor necessarily evaluates both the read and the write (for example, `&x`
/// and `|| x = 1` don't necessarily evaluate `x`), and
///
2018-11-27 20:14:15 +00:00
/// * which one is evaluated first depends on the order of sub-expression evaluation. Blocks, `if`s,
/// loops, `match`es, and the short-circuiting logical operators are considered to have a defined
/// evaluation order.
///
/// When such a read is found, the lint is triggered.
2018-07-23 11:01:12 +00:00
fn check_for_unsequenced_reads(vis: &mut ReadVisitor<'_, '_>) {
let map = &vis.cx.tcx.hir();
2019-02-24 18:43:15 +00:00
let mut cur_id = vis.write_expr.hir_id;
loop {
let parent_id = map.get_parent_node(cur_id);
if parent_id == cur_id {
break;
}
2019-06-25 21:34:07 +00:00
let parent_node = match map.find(parent_id) {
Some(parent) => parent,
None => break,
};
let stop_early = match parent_node {
2018-08-28 11:13:42 +00:00
Node::Expr(expr) => check_expr(vis, expr),
Node::Stmt(stmt) => check_stmt(vis, stmt),
Node::Item(_) => {
// We reached the top of the function, stop.
break;
},
2016-12-20 17:21:30 +00:00
_ => StopEarly::KeepGoing,
};
match stop_early {
StopEarly::Stop => break,
StopEarly::KeepGoing => {},
}
cur_id = parent_id;
}
}
/// Whether to stop early for the loop in `check_for_unsequenced_reads`. (If
/// `check_expr` weren't an independent function, this would be unnecessary and
/// we could just use `break`).
enum StopEarly {
KeepGoing,
Stop,
}
2019-12-27 07:12:26 +00:00
fn check_expr<'a, 'tcx>(vis: &mut ReadVisitor<'a, 'tcx>, expr: &'tcx Expr<'_>) -> StopEarly {
2019-02-24 18:43:15 +00:00
if expr.hir_id == vis.last_expr.hir_id {
return StopEarly::KeepGoing;
}
2019-09-27 15:16:06 +00:00
match expr.kind {
2018-11-27 20:14:15 +00:00
ExprKind::Array(_)
| ExprKind::Tup(_)
| ExprKind::MethodCall(..)
| ExprKind::Call(_, _)
| ExprKind::Assign(..)
2018-11-27 20:14:15 +00:00
| ExprKind::Index(_, _)
| ExprKind::Repeat(_, _)
| ExprKind::Struct(_, _, _) => {
walk_expr(vis, expr);
2016-12-20 17:21:30 +00:00
},
2018-07-12 07:30:57 +00:00
ExprKind::Binary(op, _, _) | ExprKind::AssignOp(op, _, _) => {
2018-07-12 07:50:09 +00:00
if op.node == BinOpKind::And || op.node == BinOpKind::Or {
// x && y and x || y always evaluate x first, so these are
// strictly sequenced.
} else {
walk_expr(vis, expr);
}
2016-12-20 17:21:30 +00:00
},
2018-07-12 07:30:57 +00:00
ExprKind::Closure(_, _, _, _, _) => {
// Either
//
2018-11-27 20:14:15 +00:00
// * `var` is defined in the closure body, in which case we've reached the top of the enclosing
// function and can stop, or
//
2018-11-27 20:14:15 +00:00
// * `var` is captured by the closure, in which case, because evaluating a closure does not evaluate
// its body, we don't necessarily have a write, so we need to stop to avoid generating false
// positives.
//
// This is also the only place we need to stop early (grrr).
return StopEarly::Stop;
2016-12-20 17:21:30 +00:00
},
// All other expressions either have only one child or strictly
// sequence the evaluation order of their sub-expressions.
2016-12-20 17:21:30 +00:00
_ => {},
}
vis.last_expr = expr;
StopEarly::KeepGoing
}
2019-12-27 07:12:26 +00:00
fn check_stmt<'a, 'tcx>(vis: &mut ReadVisitor<'a, 'tcx>, stmt: &'tcx Stmt<'_>) -> StopEarly {
2019-09-27 15:16:06 +00:00
match stmt.kind {
StmtKind::Expr(ref expr) | StmtKind::Semi(ref expr) => check_expr(vis, expr),
// If the declaration is of a local variable, check its initializer
// expression if it has one. Otherwise, keep going.
2019-01-20 10:49:45 +00:00
StmtKind::Local(ref local) => local
.init
.as_ref()
.map_or(StopEarly::KeepGoing, |expr| check_expr(vis, expr)),
_ => StopEarly::KeepGoing,
}
}
/// A visitor that looks for reads from a variable.
struct ReadVisitor<'a, 'tcx> {
cx: &'a LateContext<'a, 'tcx>,
2019-01-31 01:15:29 +00:00
/// The ID of the variable we're looking for.
2019-04-14 20:18:34 +00:00
var: HirId,
/// The expressions where the write to the variable occurred (for reporting
/// in the lint).
2019-12-27 07:12:26 +00:00
write_expr: &'tcx Expr<'tcx>,
/// The last (highest in the AST) expression we've checked, so we know not
/// to recheck it.
2019-12-27 07:12:26 +00:00
last_expr: &'tcx Expr<'tcx>,
}
impl<'a, 'tcx> Visitor<'tcx> for ReadVisitor<'a, 'tcx> {
2020-01-09 07:13:22 +00:00
type Map = Map<'tcx>;
2019-12-27 07:12:26 +00:00
fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
2019-02-24 18:43:15 +00:00
if expr.hir_id == self.last_expr.hir_id {
return;
}
2019-09-27 15:16:06 +00:00
match expr.kind {
2018-07-12 07:30:57 +00:00
ExprKind::Path(ref qpath) => {
if_chain! {
if let QPath::Resolved(None, ref path) = *qpath;
if path.segments.len() == 1;
if let def::Res::Local(local_id) = self.cx.tables.qpath_res(qpath, expr.hir_id);
if local_id == self.var;
2017-09-12 12:26:40 +00:00
// Check that this is a read, not a write.
if !is_in_assignment_position(self.cx, expr);
then {
span_lint_and_note(
self.cx,
EVAL_ORDER_DEPENDENCE,
expr.span,
"unsequenced read of a variable",
self.write_expr.span,
"whether read occurs before this write depends on evaluation order"
);
}
}
}
// We're about to descend a closure. Since we don't know when (or
// if) the closure will be evaluated, any reads in it might not
// occur here (or ever). Like above, bail to avoid false positives.
2018-07-12 07:30:57 +00:00
ExprKind::Closure(_, _, _, _, _) |
// We want to avoid a false positive when a variable name occurs
// only to have its address taken, so we stop here. Technically,
// this misses some weird cases, eg.
//
// ```rust
// let mut x = 0;
// let a = foo(&{x = 1; x}, x);
// ```
//
// TODO: fix this
ExprKind::AddrOf(_, _, _) => {
return;
}
_ => {}
}
walk_expr(self, expr);
}
2020-01-09 07:13:22 +00:00
fn nested_visit_map(&mut self) -> NestedVisitorMap<'_, Self::Map> {
NestedVisitorMap::None
}
}
2019-01-31 01:15:29 +00:00
/// Returns `true` if `expr` is the LHS of an assignment, like `expr = ...`.
2019-12-27 07:12:26 +00:00
fn is_in_assignment_position(cx: &LateContext<'_, '_>, expr: &Expr<'_>) -> bool {
if let Some(parent) = get_parent_expr(cx, expr) {
if let ExprKind::Assign(ref lhs, ..) = parent.kind {
2019-02-24 18:43:15 +00:00
return lhs.hir_id == expr.hir_id;
}
}
false
}