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];
|
|
|
|
/// ...
|
|
|
|
/// x[9];
|
2016-03-11 03:51:16 -06:00
|
|
|
/// &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,
|
2016-08-06 03:18:36 -05:00
|
|
|
"out of bounds constant indexing"
|
2015-12-21 12:22:29 -06:00
|
|
|
}
|
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for usage of indexing or slicing.
|
2016-03-11 03:51:16 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **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.
|
2016-03-11 03:51:16 -06:00
|
|
|
///
|
|
|
|
/// **Known problems:** Hopefully none.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2016-07-15 17:25:44 -05:00
|
|
|
/// ```rust
|
2016-03-11 03:51:16 -06:00
|
|
|
/// ...
|
|
|
|
/// x[2];
|
|
|
|
/// &x[0..2];
|
|
|
|
/// ```
|
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)]
|
2015-12-21 12:22:29 -06:00
|
|
|
pub struct ArrayIndexing;
|
|
|
|
|
|
|
|
impl LintPass for ArrayIndexing {
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for ArrayIndexing {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx hir::Expr) {
|
2016-09-30 08:35:24 -05:00
|
|
|
if let hir::ExprIndex(ref array, ref index) = e.node {
|
2016-03-11 03:51:16 -06:00
|
|
|
// Array with known size can be checked statically
|
2017-01-13 10:04:56 -06:00
|
|
|
let ty = cx.tables.expr_ty(array);
|
2016-09-30 08:35:24 -05:00
|
|
|
if let ty::TyArray(_, size) = ty.sty {
|
2018-05-13 03:44:57 -05:00
|
|
|
let size = size.assert_usize(cx.tcx).unwrap().into();
|
2016-03-11 03:51:16 -06:00
|
|
|
|
|
|
|
// 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
|
|
|
}
|
2016-03-11 03:51:16 -06:00
|
|
|
|
|
|
|
// Index is a constant range
|
2018-05-08 10:16:01 -05:00
|
|
|
if let Some(range) = higher::range(cx, index) {
|
2018-04-01 23:34:11 -05:00
|
|
|
if let Some((start, end)) = to_const_range(cx, range, size) {
|
2016-03-14 15:48:24 -05:00
|
|
|
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 03:51:16 -06:00
|
|
|
}
|
2016-03-11 15:10:40 -06:00
|
|
|
return;
|
2016-03-11 03:51:16 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-08 10:16:01 -05:00
|
|
|
if let Some(range) = higher::range(cx, index) {
|
2016-03-11 03:51:16 -06:00
|
|
|
// 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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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-04-01 23:34:11 -05:00
|
|
|
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));
|
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-13 06:16:31 -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))
|
|
|
|
}
|