2015-12-21 18:22:29 +00:00
|
|
|
use rustc::lint::*;
|
2016-09-30 13:35:24 +00:00
|
|
|
use rustc::ty;
|
|
|
|
use rustc::hir;
|
2016-03-11 09:51:16 +00:00
|
|
|
use syntax::ast::RangeLimits;
|
2016-06-29 21:16:44 +00:00
|
|
|
use utils::{self, higher};
|
2018-04-02 04:34:11 +00:00
|
|
|
use utils::higher::Range;
|
2018-03-13 10:38:11 +00:00
|
|
|
use consts::{constant, Constant};
|
2015-12-21 18:22:29 +00:00
|
|
|
|
2017-08-09 07:30:56 +00:00
|
|
|
/// **What it does:** Checks for out of bounds array indexing with a constant
|
|
|
|
/// index.
|
2015-12-21 18:22:29 +00:00
|
|
|
///
|
|
|
|
/// **Why is this bad?** This will always panic at runtime.
|
|
|
|
///
|
|
|
|
/// **Known problems:** Hopefully none.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2016-07-15 22:25:44 +00:00
|
|
|
/// ```rust
|
2015-12-21 18:22:29 +00:00
|
|
|
/// let x = [1,2,3,4];
|
|
|
|
/// ...
|
|
|
|
/// x[9];
|
2016-03-11 09:51:16 +00:00
|
|
|
/// &x[2..9];
|
2015-12-21 18:22:29 +00:00
|
|
|
/// ```
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2015-12-21 18:22:29 +00:00
|
|
|
pub OUT_OF_BOUNDS_INDEXING,
|
2018-03-28 13:24:26 +00:00
|
|
|
correctness,
|
2016-08-06 08:18:36 +00:00
|
|
|
"out of bounds constant indexing"
|
2015-12-21 18:22:29 +00:00
|
|
|
}
|
|
|
|
|
2016-08-06 07:55:04 +00:00
|
|
|
/// **What it does:** Checks for usage of indexing or slicing.
|
2016-03-11 09:51:16 +00:00
|
|
|
///
|
2016-08-06 07:55:04 +00: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 09:51:16 +00:00
|
|
|
///
|
|
|
|
/// **Known problems:** Hopefully none.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2016-07-15 22:25:44 +00:00
|
|
|
/// ```rust
|
2016-03-11 09:51:16 +00:00
|
|
|
/// ...
|
|
|
|
/// x[2];
|
|
|
|
/// &x[0..2];
|
|
|
|
/// ```
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2016-03-11 09:51:16 +00:00
|
|
|
pub INDEXING_SLICING,
|
2018-03-28 13:24:26 +00:00
|
|
|
restriction,
|
2016-03-11 09:51:16 +00:00
|
|
|
"indexing/slicing usage"
|
|
|
|
}
|
|
|
|
|
2017-08-09 07:30:56 +00:00
|
|
|
#[derive(Copy, Clone)]
|
2015-12-21 18:22:29 +00:00
|
|
|
pub struct ArrayIndexing;
|
|
|
|
|
|
|
|
impl LintPass for ArrayIndexing {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
2016-03-11 09:51:16 +00:00
|
|
|
lint_array!(INDEXING_SLICING, OUT_OF_BOUNDS_INDEXING)
|
2015-12-21 18:22:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 12:13:40 +00: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 13:35:24 +00:00
|
|
|
if let hir::ExprIndex(ref array, ref index) = e.node {
|
2016-03-11 09:51:16 +00:00
|
|
|
// Array with known size can be checked statically
|
2017-01-13 16:04:56 +00:00
|
|
|
let ty = cx.tables.expr_ty(array);
|
2016-09-30 13:35:24 +00:00
|
|
|
if let ty::TyArray(_, size) = ty.sty {
|
2018-03-13 10:38:11 +00:00
|
|
|
let size = size.val.to_raw_bits().unwrap();
|
2016-03-11 09:51:16 +00:00
|
|
|
|
|
|
|
// Index is a constant uint
|
2018-03-13 10:38:11 +00:00
|
|
|
if let Some((Constant::Int(const_index), _)) = constant(cx, index) {
|
|
|
|
if size <= const_index {
|
|
|
|
utils::span_lint(cx, OUT_OF_BOUNDS_INDEXING, e.span, "const index is out of bounds");
|
2017-09-13 13:34:04 +00:00
|
|
|
}
|
2018-03-13 10:38:11 +00:00
|
|
|
|
|
|
|
return;
|
2015-12-21 18:22:29 +00:00
|
|
|
}
|
2016-03-11 09:51:16 +00:00
|
|
|
|
|
|
|
// Index is a constant range
|
2018-05-08 15:16:01 +00:00
|
|
|
if let Some(range) = higher::range(cx, index) {
|
2018-04-02 04:34:11 +00:00
|
|
|
if let Some((start, end)) = to_const_range(cx, range, size) {
|
2016-03-14 20:48:24 +00:00
|
|
|
if start > size || end > size {
|
2016-04-14 18:14:03 +00:00
|
|
|
utils::span_lint(cx, OUT_OF_BOUNDS_INDEXING, e.span, "range is out of bounds");
|
2016-03-11 09:51:16 +00:00
|
|
|
}
|
2016-03-11 21:10:40 +00:00
|
|
|
return;
|
2016-03-11 09:51:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-08 15:16:01 +00:00
|
|
|
if let Some(range) = higher::range(cx, index) {
|
2016-03-11 09:51:16 +00: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 18:22:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-11 09:51:16 +00:00
|
|
|
|
2017-08-09 07:30:56 +00:00
|
|
|
/// Returns an option containing a tuple with the start and end (exclusive) of
|
|
|
|
/// the range.
|
2018-04-02 04:34:11 +00: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, expr).map(|(c, _)| c));
|
|
|
|
let start = match s {
|
2018-03-13 10:38:11 +00:00
|
|
|
Some(Some(Constant::Int(x))) => x,
|
2016-03-11 09:51:16 +00:00
|
|
|
Some(_) => return None,
|
2018-03-13 10:38:11 +00:00
|
|
|
None => 0,
|
2016-03-11 09:51:16 +00:00
|
|
|
};
|
|
|
|
|
2018-04-02 04:34:11 +00:00
|
|
|
let e = range.end.map(|expr| constant(cx, expr).map(|(c, _)| c));
|
|
|
|
let end = match e {
|
|
|
|
Some(Some(Constant::Int(x))) => if range.limits == RangeLimits::Closed {
|
2018-03-13 10:38:11 +00:00
|
|
|
x + 1
|
2017-09-05 09:33:04 +00:00
|
|
|
} else {
|
|
|
|
x
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2016-03-11 09:51:16 +00:00
|
|
|
Some(_) => return None,
|
2016-04-14 18:14:03 +00:00
|
|
|
None => array_size,
|
2016-03-11 09:51:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Some((start, end))
|
|
|
|
}
|