2015-12-21 12:22:29 -06:00
|
|
|
use rustc::lint::*;
|
2016-03-31 10:05:43 -05:00
|
|
|
use rustc::middle::const_val::ConstVal;
|
2016-09-30 08:35:24 -05:00
|
|
|
use rustc::ty;
|
2016-03-31 10:05:43 -05:00
|
|
|
use rustc_const_eval::EvalHint::ExprTypeChecked;
|
2017-01-13 10:04:56 -06:00
|
|
|
use rustc_const_eval::ConstContext;
|
2016-03-31 10:05:43 -05:00
|
|
|
use rustc_const_math::ConstInt;
|
2016-09-30 08:35:24 -05:00
|
|
|
use rustc::hir;
|
2016-03-11 03:51:16 -06:00
|
|
|
use syntax::ast::RangeLimits;
|
2016-06-29 16:16:44 -05:00
|
|
|
use utils::{self, higher};
|
2015-12-21 12:22:29 -06:00
|
|
|
|
2016-08-06 02:55:04 -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
|
|
|
/// ```
|
|
|
|
declare_lint! {
|
|
|
|
pub OUT_OF_BOUNDS_INDEXING,
|
|
|
|
Deny,
|
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];
|
|
|
|
/// ```
|
2016-08-06 01:56:28 -05:00
|
|
|
declare_restriction_lint! {
|
2016-03-11 03:51:16 -06:00
|
|
|
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 {
|
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 {
|
2017-01-04 11:05:33 -06:00
|
|
|
let size = ConstInt::Infer(size as u128);
|
2017-01-13 10:04:56 -06:00
|
|
|
let constcx = ConstContext::with_tables(cx.tcx, cx.tables);
|
2016-03-11 03:51:16 -06:00
|
|
|
|
|
|
|
// Index is a constant uint
|
2017-01-13 10:04:56 -06:00
|
|
|
let const_index = constcx.eval(index, ExprTypeChecked);
|
2016-03-15 14:09:53 -05:00
|
|
|
if let Ok(ConstVal::Integral(const_index)) = const_index {
|
2016-03-11 03:51:16 -06:00
|
|
|
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
|
|
|
}
|
2016-03-11 03:51:16 -06:00
|
|
|
|
|
|
|
// Index is a constant range
|
2016-06-29 16:16:44 -05:00
|
|
|
if let Some(range) = higher::range(index) {
|
2016-04-14 13:14:03 -05:00
|
|
|
let start = range.start
|
2017-01-13 10:04:56 -06:00
|
|
|
.map(|start| constcx.eval(start, ExprTypeChecked))
|
2016-06-05 18:42:39 -05:00
|
|
|
.map(|v| v.ok());
|
2016-04-14 13:14:03 -05:00
|
|
|
let end = range.end
|
2017-01-13 10:04:56 -06:00
|
|
|
.map(|end| constcx.eval(end, ExprTypeChecked))
|
2016-06-05 18:42:39 -05:00
|
|
|
.map(|v| v.ok());
|
2016-03-11 03:51:16 -06:00
|
|
|
|
2017-02-20 01:45:37 -06:00
|
|
|
if let Some((start, end)) = to_const_range(&start, &end, range.limits, 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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-29 16:16:44 -05:00
|
|
|
if let Some(range) = higher::range(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
|
|
|
|
2016-03-14 15:48:24 -05:00
|
|
|
/// Returns an option containing a tuple with the start and end (exclusive) of the range.
|
2016-12-21 05:14:54 -06:00
|
|
|
fn to_const_range(
|
2017-02-20 01:45:37 -06:00
|
|
|
start: &Option<Option<ConstVal>>,
|
|
|
|
end: &Option<Option<ConstVal>>,
|
2016-12-21 05:14:54 -06:00
|
|
|
limits: RangeLimits,
|
|
|
|
array_size: ConstInt
|
|
|
|
) -> Option<(ConstInt, ConstInt)> {
|
2017-02-20 01:45:37 -06:00
|
|
|
let start = match *start {
|
2016-03-15 14:09:53 -05:00
|
|
|
Some(Some(ConstVal::Integral(x))) => x,
|
2016-03-11 03:51:16 -06:00
|
|
|
Some(_) => return None,
|
2016-03-15 14:09:53 -05:00
|
|
|
None => ConstInt::Infer(0),
|
2016-03-11 03:51:16 -06:00
|
|
|
};
|
|
|
|
|
2017-02-20 01:45:37 -06:00
|
|
|
let end = match *end {
|
2016-03-15 14:09:53 -05:00
|
|
|
Some(Some(ConstVal::Integral(x))) => {
|
2016-03-11 03:51:16 -06:00
|
|
|
if limits == RangeLimits::Closed {
|
2016-03-14 15:48:24 -05:00
|
|
|
(x + ConstInt::Infer(1)).expect("such a big array is not realistic")
|
2016-03-11 03:51:16 -06:00
|
|
|
} else {
|
2016-03-14 15:48:24 -05:00
|
|
|
x
|
2016-03-11 03:51:16 -06:00
|
|
|
}
|
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))
|
|
|
|
}
|