rust/src/array_indexing.rs

141 lines
4.4 KiB
Rust
Raw Normal View History

2015-12-21 12:22:29 -06:00
use rustc::lint::*;
use rustc::middle::const_eval::EvalHint::ExprTypeChecked;
use rustc::middle::const_eval::{eval_const_expr_partial, ConstVal};
use rustc::middle::ty::TyArray;
use rustc_front::hir::*;
2016-03-15 14:09:53 -05:00
use rustc_const_eval::ConstInt;
use syntax::ast::RangeLimits;
use utils;
2015-12-21 12:22:29 -06:00
/// **What it does:** Check for out of bounds array indexing with a constant index.
///
/// **Why is this bad?** This will always panic at runtime.
///
/// **Known problems:** Hopefully none.
///
/// **Example:**
///
/// ```
/// 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 bound constant indexing"
}
/// **What it does:** Check 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:**
///
/// ```
/// ...
/// x[2];
/// &x[0..2];
/// ```
declare_lint! {
pub INDEXING_SLICING,
Allow,
"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 LateLintPass for ArrayIndexing {
fn check_expr(&mut self, cx: &LateContext, e: &Expr) {
if let ExprIndex(ref array, ref index) = e.node {
// Array with known size can be checked statically
2015-12-21 12:22:29 -06:00
let ty = cx.tcx.expr_ty(array);
if let TyArray(_, size) = ty.sty {
2016-03-15 14:09:53 -05:00
let size = ConstInt::Infer(size as u64);
// Index is a constant uint
let const_index = eval_const_expr_partial(cx.tcx, &index, ExprTypeChecked, None);
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) = utils::unsugar_range(index) {
let start = range.start.map(|start|
2016-03-11 15:10:40 -06:00
eval_const_expr_partial(cx.tcx, start, ExprTypeChecked, None)).map(|v| v.ok());
let end = range.end.map(|end|
2016-03-11 15:10:40 -06:00
eval_const_expr_partial(cx.tcx, end, ExprTypeChecked, None)).map(|v| v.ok());
if let Some((start, end)) = to_const_range(start, end, range.limits, size) {
2016-03-11 15:10:40 -06:00
if start >= size || end >= size {
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) = utils::unsugar_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
///
/// Note: we assume the start and the end of the range are unsigned, since array slicing
/// works only on usize
2016-03-11 15:10:40 -06:00
fn to_const_range(start: Option<Option<ConstVal>>,
end: Option<Option<ConstVal>>,
limits: RangeLimits,
2016-03-15 14:09:53 -05:00
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,
2016-03-15 14:09:53 -05:00
None => ConstInt::Infer(0),
};
let end = match end {
2016-03-15 14:09:53 -05:00
Some(Some(ConstVal::Integral(x))) => {
if limits == RangeLimits::Closed {
x
} else {
2016-03-15 14:09:53 -05:00
(x - ConstInt::Infer(1)).expect("x > 0")
}
}
Some(_) => return None,
2016-03-15 14:09:53 -05:00
None => (array_size - ConstInt::Infer(1)).expect("array_size > 0"),
};
Some((start, end))
}