2018-05-22 23:56:02 -05:00
|
|
|
//! lint on indexing and slicing operations
|
|
|
|
|
2018-05-30 03:15:50 -05:00
|
|
|
use crate::consts::{constant, Constant};
|
2018-06-07 12:16:50 -05:00
|
|
|
use crate::utils::higher::Range;
|
|
|
|
use crate::utils::{self, higher};
|
2018-05-22 03:21:42 -05:00
|
|
|
use rustc::hir;
|
2015-12-21 12:22:29 -06:00
|
|
|
use rustc::lint::*;
|
2016-09-30 08:35:24 -05:00
|
|
|
use rustc::ty;
|
2016-03-11 03:51:16 -06:00
|
|
|
use syntax::ast::RangeLimits;
|
2015-12-21 12:22:29 -06:00
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
/// **What it does:** Checks for out of bounds array indexing with a constant
|
|
|
|
/// index.
|
2015-12-21 12:22:29 -06:00
|
|
|
///
|
|
|
|
/// **Why is this bad?** This will always panic at runtime.
|
|
|
|
///
|
|
|
|
/// **Known problems:** Hopefully none.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2016-07-15 17:25:44 -05:00
|
|
|
/// ```rust
|
2015-12-21 12:22:29 -06:00
|
|
|
/// let x = [1,2,3,4];
|
2018-05-22 23:56:02 -05:00
|
|
|
///
|
|
|
|
/// // Bad
|
2015-12-21 12:22:29 -06:00
|
|
|
/// x[9];
|
2016-03-11 03:51:16 -06:00
|
|
|
/// &x[2..9];
|
2018-05-22 23:56:02 -05:00
|
|
|
///
|
|
|
|
/// // Good
|
|
|
|
/// x[0];
|
|
|
|
/// x[3];
|
2015-12-21 12:22:29 -06:00
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2015-12-21 12:22:29 -06:00
|
|
|
pub OUT_OF_BOUNDS_INDEXING,
|
2018-03-28 08:24:26 -05:00
|
|
|
correctness,
|
2016-08-06 03:18:36 -05:00
|
|
|
"out of bounds constant indexing"
|
2015-12-21 12:22:29 -06:00
|
|
|
}
|
|
|
|
|
2018-05-22 23:56:02 -05:00
|
|
|
/// **What it does:** Checks for usage of indexing or slicing. Does not report
|
|
|
|
/// if we can tell that the indexing or slicing operations on an array are in
|
|
|
|
/// bounds.
|
2016-03-11 03:51:16 -06:00
|
|
|
///
|
2018-05-22 23:56:02 -05:00
|
|
|
/// **Why is this bad?** Indexing and slicing can panic at runtime and there are
|
|
|
|
/// safe alternatives.
|
2016-03-11 03:51:16 -06:00
|
|
|
///
|
|
|
|
/// **Known problems:** Hopefully none.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2016-07-15 17:25:44 -05:00
|
|
|
/// ```rust
|
2018-05-22 23:56:02 -05:00
|
|
|
/// let x = vec![0; 5];
|
|
|
|
/// // Bad
|
2016-03-11 03:51:16 -06:00
|
|
|
/// x[2];
|
2018-05-22 23:56:02 -05:00
|
|
|
/// &x[2..100];
|
|
|
|
/// &x[2..];
|
|
|
|
/// &x[..100];
|
|
|
|
///
|
|
|
|
/// // Good
|
|
|
|
/// x.get(2)
|
|
|
|
/// x.get(2..100)
|
|
|
|
/// x.get(2..)
|
|
|
|
/// x.get(..100)
|
2016-03-11 03:51:16 -06:00
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2016-03-11 03:51:16 -06:00
|
|
|
pub INDEXING_SLICING,
|
2018-03-28 08:24:26 -05:00
|
|
|
restriction,
|
2016-03-11 03:51:16 -06:00
|
|
|
"indexing/slicing usage"
|
|
|
|
}
|
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2018-05-22 23:56:02 -05:00
|
|
|
pub struct IndexingSlicingPass;
|
2015-12-21 12:22:29 -06:00
|
|
|
|
2018-05-22 23:56:02 -05:00
|
|
|
impl LintPass for IndexingSlicingPass {
|
2015-12-21 12:22:29 -06:00
|
|
|
fn get_lints(&self) -> LintArray {
|
2016-03-11 03:51:16 -06:00
|
|
|
lint_array!(INDEXING_SLICING, OUT_OF_BOUNDS_INDEXING)
|
2015-12-21 12:22:29 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-22 23:56:02 -05:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for IndexingSlicingPass {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
|
|
|
|
if let ExprIndex(ref a, ref b) = &expr.node {
|
|
|
|
match &b.node {
|
|
|
|
// Both ExprStruct and ExprPath require this approach's checks
|
|
|
|
// on the `range` returned by `higher::range(cx, b)`.
|
|
|
|
// ExprStruct handles &x[n..m], &x[n..] and &x[..n].
|
|
|
|
// ExprPath handles &x[..] and x[var]
|
|
|
|
ExprStruct(_, _, _) | ExprPath(_) => {
|
|
|
|
if let Some(range) = higher::range(cx, b) {
|
|
|
|
let ty = cx.tables.expr_ty(a);
|
|
|
|
if let ty::TyArray(_, s) = ty.sty {
|
|
|
|
let size: u128 = s.assert_usize(cx.tcx).unwrap().into();
|
|
|
|
// Index is a constant range.
|
|
|
|
if let Some((start, end)) = to_const_range(cx, range, size) {
|
|
|
|
if start > size || end > size {
|
|
|
|
utils::span_lint(
|
|
|
|
cx,
|
|
|
|
OUT_OF_BOUNDS_INDEXING,
|
|
|
|
expr.span,
|
|
|
|
"range is out of bounds",
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
// Range is in bounds, ok.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
match (range.start, range.end) {
|
|
|
|
(None, Some(_)) => {
|
|
|
|
cx.span_lint(
|
|
|
|
INDEXING_SLICING,
|
|
|
|
expr.span,
|
|
|
|
"slicing may panic. Consider using \
|
|
|
|
`.get(..n)`or `.get_mut(..n)` instead",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
(Some(_), None) => {
|
|
|
|
cx.span_lint(
|
|
|
|
INDEXING_SLICING,
|
|
|
|
expr.span,
|
|
|
|
"slicing may panic. Consider using \
|
|
|
|
`.get(n..)` or .get_mut(n..)` instead",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
(Some(_), Some(_)) => {
|
|
|
|
cx.span_lint(
|
|
|
|
INDEXING_SLICING,
|
|
|
|
expr.span,
|
|
|
|
"slicing may panic. Consider using \
|
|
|
|
`.get(n..m)` or `.get_mut(n..m)` instead",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
(None, None) => (),
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cx.span_lint(
|
|
|
|
INDEXING_SLICING,
|
|
|
|
expr.span,
|
|
|
|
"indexing may panic. Consider using `.get(n)` or \
|
|
|
|
`.get_mut(n)` instead",
|
|
|
|
);
|
2017-09-13 08:34:04 -05:00
|
|
|
}
|
2015-12-21 12:22:29 -06:00
|
|
|
}
|
2018-05-22 23:56:02 -05:00
|
|
|
ExprLit(_) => {
|
|
|
|
// [n]
|
|
|
|
let ty = cx.tables.expr_ty(a);
|
|
|
|
if let ty::TyArray(_, s) = ty.sty {
|
|
|
|
let size: u128 = s.assert_usize(cx.tcx).unwrap().into();
|
|
|
|
// Index is a constant uint.
|
|
|
|
if let Some((Constant::Int(const_index), _)) = constant(cx, cx.tables, b) {
|
|
|
|
if size <= const_index {
|
|
|
|
utils::span_lint(
|
|
|
|
cx,
|
|
|
|
OUT_OF_BOUNDS_INDEXING,
|
|
|
|
expr.span,
|
|
|
|
"const index is out of bounds",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
// Else index is in bounds, ok.
|
2016-03-11 03:51:16 -06:00
|
|
|
}
|
2018-05-22 23:56:02 -05:00
|
|
|
} else {
|
|
|
|
cx.span_lint(
|
|
|
|
INDEXING_SLICING,
|
|
|
|
expr.span,
|
|
|
|
"indexing may panic. Consider using `.get(n)` or \
|
|
|
|
`.get_mut(n)` instead",
|
|
|
|
);
|
2016-03-11 03:51:16 -06:00
|
|
|
}
|
|
|
|
}
|
2018-05-22 23:56:02 -05:00
|
|
|
_ => (),
|
2015-12-21 12:22:29 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-11 03:51:16 -06:00
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
/// Returns an option containing a tuple with the start and end (exclusive) of
|
|
|
|
/// the range.
|
2018-05-22 23:56:02 -05:00
|
|
|
fn to_const_range<'a, 'tcx>(
|
|
|
|
cx: &LateContext<'a, 'tcx>,
|
|
|
|
range: Range,
|
|
|
|
array_size: u128,
|
|
|
|
) -> Option<(u128, u128)> {
|
|
|
|
let s = range
|
|
|
|
.start
|
|
|
|
.map(|expr| constant(cx, cx.tables, expr).map(|(c, _)| c));
|
2018-04-01 23:34:11 -05:00
|
|
|
let start = match s {
|
2018-03-13 05:38:11 -05:00
|
|
|
Some(Some(Constant::Int(x))) => x,
|
2016-03-11 03:51:16 -06:00
|
|
|
Some(_) => return None,
|
2018-03-13 05:38:11 -05:00
|
|
|
None => 0,
|
2016-03-11 03:51:16 -06:00
|
|
|
};
|
|
|
|
|
2018-05-22 23:56:02 -05:00
|
|
|
let e = range
|
|
|
|
.end
|
|
|
|
.map(|expr| constant(cx, cx.tables, expr).map(|(c, _)| c));
|
2018-04-01 23:34:11 -05:00
|
|
|
let end = match e {
|
|
|
|
Some(Some(Constant::Int(x))) => if range.limits == RangeLimits::Closed {
|
2018-03-13 05:38:11 -05:00
|
|
|
x + 1
|
2017-09-05 04:33:04 -05:00
|
|
|
} else {
|
|
|
|
x
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-03-11 03:51:16 -06:00
|
|
|
Some(_) => return None,
|
2016-04-14 13:14:03 -05:00
|
|
|
None => array_size,
|
2016-03-11 03:51:16 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
Some((start, end))
|
|
|
|
}
|