rust/clippy_lints/src/array_indexing.rs

159 lines
5.8 KiB
Rust
Raw Normal View History

2015-12-21 12:22:29 -06:00
use rustc::lint::*;
use rustc::middle::const_val::ConstVal;
use rustc::ty;
2017-07-31 05:37:38 -05:00
use rustc::ty::subst::Substs;
2017-01-13 10:04:56 -06:00
use rustc_const_eval::ConstContext;
2017-03-05 03:27:20 -06:00
use rustc_const_math::{ConstUsize, ConstIsize, ConstInt};
use rustc::hir;
use syntax::ast::RangeLimits;
use utils::{self, higher};
2015-12-21 12:22:29 -06: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
/// ```
declare_lint! {
pub OUT_OF_BOUNDS_INDEXING,
Deny,
"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];
/// ```
declare_restriction_lint! {
pub INDEXING_SLICING,
"indexing/slicing usage"
}
2015-12-21 12:22:29 -06:00
#[derive(Copy,Clone)]
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 {
2017-03-05 03:27:20 -06:00
let size = ConstInt::Usize(ConstUsize::new(size as u64, cx.sess().target.uint_type)
.expect("array size is invalid"));
2017-07-31 05:37:38 -05:00
let parent_item = cx.tcx.hir.get_parent(e.id);
let parent_def_id = cx.tcx.hir.local_def_id(parent_item);
let substs = Substs::identity_for_item(cx.tcx, parent_def_id);
let constcx = ConstContext::new(cx.tcx, cx.param_env.and(substs), cx.tables);
// Index is a constant uint
let const_index = constcx.eval(index);
2016-03-15 14:09:53 -05:00
if let Ok(ConstVal::Integral(const_index)) = const_index {
if size <= const_index {
utils::span_lint(cx, OUT_OF_BOUNDS_INDEXING, e.span, "const index is out of bounds");
2015-12-21 12:22:29 -06:00
}
2016-03-11 15:10:40 -06:00
return;
2015-12-21 12:22:29 -06:00
}
// Index is a constant range
if let Some(range) = higher::range(index) {
2016-04-14 13:14:03 -05:00
let start = range.start
.map(|start| constcx.eval(start))
.map(|v| v.ok());
2016-04-14 13:14:03 -05:00
let end = range.end
.map(|end| constcx.eval(end))
.map(|v| v.ok());
if let Some((start, end)) = to_const_range(&start, &end, range.limits, 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(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
}
}
}
}
/// Returns an option containing a tuple with the start and end (exclusive) of the range.
fn to_const_range(
start: &Option<Option<ConstVal>>,
end: &Option<Option<ConstVal>>,
limits: RangeLimits,
array_size: ConstInt
) -> Option<(ConstInt, ConstInt)> {
let start = match *start {
2016-03-15 14:09:53 -05:00
Some(Some(ConstVal::Integral(x))) => x,
Some(_) => return None,
None => ConstInt::U8(0),
};
let end = match *end {
2016-03-15 14:09:53 -05:00
Some(Some(ConstVal::Integral(x))) => {
if limits == RangeLimits::Closed {
2017-03-01 09:17:30 -06:00
match x {
2017-03-05 03:27:20 -06:00
ConstInt::U8(_) => (x + ConstInt::U8(1)),
ConstInt::U16(_) => (x + ConstInt::U16(1)),
ConstInt::U32(_) => (x + ConstInt::U32(1)),
ConstInt::U64(_) => (x + ConstInt::U64(1)),
ConstInt::U128(_) => (x + ConstInt::U128(1)),
ConstInt::Usize(ConstUsize::Us16(_)) => (x + ConstInt::Usize(ConstUsize::Us16(1))),
ConstInt::Usize(ConstUsize::Us32(_)) => (x + ConstInt::Usize(ConstUsize::Us32(1))),
ConstInt::Usize(ConstUsize::Us64(_)) => (x + ConstInt::Usize(ConstUsize::Us64(1))),
ConstInt::I8(_) => (x + ConstInt::I8(1)),
ConstInt::I16(_) => (x + ConstInt::I16(1)),
ConstInt::I32(_) => (x + ConstInt::I32(1)),
ConstInt::I64(_) => (x + ConstInt::I64(1)),
ConstInt::I128(_) => (x + ConstInt::I128(1)),
ConstInt::Isize(ConstIsize::Is16(_)) => (x + ConstInt::Isize(ConstIsize::Is16(1))),
ConstInt::Isize(ConstIsize::Is32(_)) => (x + ConstInt::Isize(ConstIsize::Is32(1))),
ConstInt::Isize(ConstIsize::Is64(_)) => (x + ConstInt::Isize(ConstIsize::Is64(1))),
}
.expect("such a big array is not realistic")
} 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))
}