rust/clippy_lints/src/array_indexing.rs

124 lines
3.7 KiB
Rust
Raw Normal View History

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::*;
use rustc::ty;
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];
/// ...
/// x[9];
/// &x[2..9];
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,
"out of bounds constant indexing"
2015-12-21 12:22:29 -06:00
}
/// **What it does:** Checks for usage of indexing or slicing.
///
/// **Why is this bad?** Usually, this can be safely allowed. However, in some
/// domains such as kernel development, a panic can cause the whole operating
/// system to crash.
///
/// **Known problems:** Hopefully none.
///
/// **Example:**
2016-07-15 17:25:44 -05:00
/// ```rust
/// ...
/// x[2];
/// &x[0..2];
/// ```
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
pub INDEXING_SLICING,
2018-03-28 08:24:26 -05:00
restriction,
"indexing/slicing usage"
}
2017-08-09 02:30:56 -05:00
#[derive(Copy, Clone)]
2015-12-21 12:22:29 -06:00
pub struct ArrayIndexing;
impl LintPass for ArrayIndexing {
fn get_lints(&self) -> LintArray {
lint_array!(INDEXING_SLICING, OUT_OF_BOUNDS_INDEXING)
2015-12-21 12:22:29 -06:00
}
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for ArrayIndexing {
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx hir::Expr) {
if let hir::ExprIndex(ref array, ref index) = e.node {
// Array with known size can be checked statically
2017-01-13 10:04:56 -06:00
let ty = cx.tables.expr_ty(array);
if let ty::TyArray(_, size) = ty.sty {
2018-05-13 03:44:57 -05:00
let size = size.assert_usize(cx.tcx).unwrap().into();
// Index is a constant uint
2018-05-13 06:16:31 -05:00
if let Some((Constant::Int(const_index), _)) = constant(cx, cx.tables, index) {
2018-03-13 05:38:11 -05:00
if size <= const_index {
utils::span_lint(cx, OUT_OF_BOUNDS_INDEXING, e.span, "const index is out of bounds");
2017-09-13 08:34:04 -05:00
}
2018-03-13 05:38:11 -05:00
return;
2015-12-21 12:22:29 -06:00
}
// Index is a constant range
if let Some(range) = higher::range(cx, index) {
if let Some((start, end)) = to_const_range(cx, range, size) {
if start > size || end > size {
2016-04-14 13:14:03 -05:00
utils::span_lint(cx, OUT_OF_BOUNDS_INDEXING, e.span, "range is out of bounds");
}
2016-03-11 15:10:40 -06:00
return;
}
}
}
if let Some(range) = higher::range(cx, index) {
// Full ranges are always valid
if range.start.is_none() && range.end.is_none() {
return;
}
// Impossible to know if indexing or slicing is correct
utils::span_lint(cx, INDEXING_SLICING, e.span, "slicing may panic");
} else {
utils::span_lint(cx, INDEXING_SLICING, e.span, "indexing may panic");
2015-12-21 12:22:29 -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.
fn to_const_range<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, range: Range, array_size: u128) -> Option<(u128, u128)> {
2018-05-13 06:16:31 -05:00
let s = range.start.map(|expr| constant(cx, cx.tables, expr).map(|(c, _)| c));
let start = match s {
2018-03-13 05:38:11 -05:00
Some(Some(Constant::Int(x))) => x,
Some(_) => return None,
2018-03-13 05:38:11 -05:00
None => 0,
};
2018-05-13 06:16:31 -05:00
let e = range.end.map(|expr| constant(cx, cx.tables, expr).map(|(c, _)| c));
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
},
Some(_) => return None,
2016-04-14 13:14:03 -05:00
None => array_size,
};
Some((start, end))
}