2018-11-27 14:14:15 -06:00
|
|
|
use crate::consts::{constant, Constant};
|
2020-07-14 07:59:59 -05:00
|
|
|
use crate::utils::{match_def_path, paths, span_lint, span_lint_and_help};
|
2018-11-27 14:14:15 -06:00
|
|
|
use if_chain::if_chain;
|
2020-02-29 21:23:33 -06:00
|
|
|
use rustc_ast::ast::{LitKind, StrStyle};
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc_data_structures::fx::FxHashSet;
|
2020-07-14 07:59:59 -05:00
|
|
|
use rustc_hir::{BorrowKind, Expr, ExprKind, HirId};
|
2020-01-12 00:08:41 -06:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-01-11 05:37:08 -06:00
|
|
|
use rustc_session::{declare_tool_lint, impl_lint_pass};
|
2020-01-04 04:00:00 -06:00
|
|
|
use rustc_span::source_map::{BytePos, Span};
|
2018-10-10 01:35:10 -05:00
|
|
|
use std::convert::TryFrom;
|
2016-02-04 17:36:06 -06:00
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **What it does:** Checks [regex](https://crates.io/crates/regex) creation
|
|
|
|
/// (with `Regex::new`,`RegexBuilder::new` or `RegexSet::new`) for correct
|
|
|
|
/// regex syntax.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** This will lead to a runtime panic.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2019-03-05 16:23:50 -06:00
|
|
|
/// ```ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
/// Regex::new("|")
|
|
|
|
/// ```
|
2016-02-04 17:36:06 -06:00
|
|
|
pub INVALID_REGEX,
|
2018-03-28 08:24:26 -05:00
|
|
|
correctness,
|
2016-08-06 03:18:36 -05:00
|
|
|
"invalid regular expressions"
|
2016-02-04 17:36:06 -06:00
|
|
|
}
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **What it does:** Checks for trivial [regex](https://crates.io/crates/regex)
|
|
|
|
/// creation (with `Regex::new`, `RegexBuilder::new` or `RegexSet::new`).
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** Matching the regex can likely be replaced by `==` or
|
|
|
|
/// `str::starts_with`, `str::ends_with` or `std::contains` or other `str`
|
|
|
|
/// methods.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2019-03-05 16:23:50 -06:00
|
|
|
/// ```ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
/// Regex::new("^foobar")
|
|
|
|
/// ```
|
2016-02-05 16:10:48 -06:00
|
|
|
pub TRIVIAL_REGEX,
|
2018-03-28 08:24:26 -05:00
|
|
|
style,
|
2016-08-06 03:18:36 -05:00
|
|
|
"trivial regular expressions"
|
2016-02-05 16:10:48 -06:00
|
|
|
}
|
|
|
|
|
2016-02-14 09:55:02 -06:00
|
|
|
#[derive(Clone, Default)]
|
2019-04-08 15:43:55 -05:00
|
|
|
pub struct Regex {
|
2018-09-11 18:34:52 -05:00
|
|
|
spans: FxHashSet<Span>,
|
2019-02-24 12:43:15 -06:00
|
|
|
last: Option<HirId>,
|
2016-02-14 09:55:02 -06:00
|
|
|
}
|
2016-02-04 17:36:06 -06:00
|
|
|
|
2020-07-14 07:59:59 -05:00
|
|
|
impl_lint_pass!(Regex => [INVALID_REGEX, TRIVIAL_REGEX]);
|
2016-02-04 17:36:06 -06:00
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for Regex {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Call(ref fun, ref args) = expr.kind;
|
|
|
|
if let ExprKind::Path(ref qpath) = fun.kind;
|
2017-10-23 14:18:02 -05:00
|
|
|
if args.len() == 1;
|
2020-06-25 21:55:23 -05:00
|
|
|
if let Some(def_id) = cx.qpath_res(qpath, fun.hir_id).opt_def_id();
|
2017-10-23 14:18:02 -05:00
|
|
|
then {
|
2019-05-17 16:53:54 -05:00
|
|
|
if match_def_path(cx, def_id, &paths::REGEX_NEW) ||
|
|
|
|
match_def_path(cx, def_id, &paths::REGEX_BUILDER_NEW) {
|
2017-10-23 14:18:02 -05:00
|
|
|
check_regex(cx, &args[0], true);
|
2019-05-17 16:53:54 -05:00
|
|
|
} else if match_def_path(cx, def_id, &paths::REGEX_BYTES_NEW) ||
|
|
|
|
match_def_path(cx, def_id, &paths::REGEX_BYTES_BUILDER_NEW) {
|
2017-10-23 14:18:02 -05:00
|
|
|
check_regex(cx, &args[0], false);
|
2019-05-17 16:53:54 -05:00
|
|
|
} else if match_def_path(cx, def_id, &paths::REGEX_SET_NEW) {
|
2017-10-23 14:18:02 -05:00
|
|
|
check_set(cx, &args[0], true);
|
2019-05-17 16:53:54 -05:00
|
|
|
} else if match_def_path(cx, def_id, &paths::REGEX_BYTES_SET_NEW) {
|
2017-10-23 14:18:02 -05:00
|
|
|
check_set(cx, &args[0], false);
|
|
|
|
}
|
2016-02-05 09:48:35 -06:00
|
|
|
}
|
2017-10-23 14:18:02 -05:00
|
|
|
}
|
2016-02-04 17:36:06 -06:00
|
|
|
}
|
|
|
|
}
|
2016-02-05 09:48:35 -06:00
|
|
|
|
2018-10-10 01:35:10 -05:00
|
|
|
#[allow(clippy::cast_possible_truncation)] // truncation very unlikely here
|
2019-09-18 01:37:41 -05:00
|
|
|
#[must_use]
|
2018-04-19 01:30:07 -05:00
|
|
|
fn str_span(base: Span, c: regex_syntax::ast::Span, offset: u16) -> Span {
|
|
|
|
let offset = u32::from(offset);
|
2018-10-10 01:35:10 -05:00
|
|
|
let end = base.lo() + BytePos(u32::try_from(c.end.offset).expect("offset too large") + offset);
|
|
|
|
let start = base.lo() + BytePos(u32::try_from(c.start.offset).expect("offset too large") + offset);
|
2018-03-13 09:02:40 -05:00
|
|
|
assert!(start <= end);
|
|
|
|
Span::new(start, end, base.ctxt())
|
2016-02-05 09:48:35 -06:00
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn const_str<'tcx>(cx: &LateContext<'tcx>, e: &'tcx Expr<'_>) -> Option<String> {
|
2020-07-17 03:47:04 -05:00
|
|
|
constant(cx, cx.typeck_results(), e).and_then(|(c, _)| match c {
|
2018-03-13 05:38:11 -05:00
|
|
|
Constant::Str(s) => Some(s),
|
2016-02-24 10:38:57 -06:00
|
|
|
_ => None,
|
2018-03-13 05:38:11 -05:00
|
|
|
})
|
2016-02-05 09:48:35 -06:00
|
|
|
}
|
2016-02-05 16:10:48 -06:00
|
|
|
|
2018-03-13 09:02:40 -05:00
|
|
|
fn is_trivial_regex(s: ®ex_syntax::hir::Hir) -> Option<&'static str> {
|
2020-02-21 02:39:38 -06:00
|
|
|
use regex_syntax::hir::Anchor::{EndText, StartText};
|
|
|
|
use regex_syntax::hir::HirKind::{Alternation, Anchor, Concat, Empty, Literal};
|
2018-03-13 09:02:40 -05:00
|
|
|
|
2020-07-14 07:59:59 -05:00
|
|
|
let is_literal = |e: &[regex_syntax::hir::Hir]| e.iter().all(|e| matches!(*e.kind(), Literal(_)));
|
2018-03-13 09:02:40 -05:00
|
|
|
|
|
|
|
match *s.kind() {
|
2018-11-27 14:14:15 -06:00
|
|
|
Empty | Anchor(_) => Some("the regex is unlikely to be useful as it is"),
|
2018-03-13 09:02:40 -05:00
|
|
|
Literal(_) => Some("consider using `str::contains`"),
|
2018-11-27 14:14:15 -06:00
|
|
|
Alternation(ref exprs) => {
|
|
|
|
if exprs.iter().all(|e| e.kind().is_empty()) {
|
|
|
|
Some("the regex is unlikely to be useful as it is")
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2018-03-13 09:02:40 -05:00
|
|
|
},
|
|
|
|
Concat(ref exprs) => match (exprs[0].kind(), exprs[exprs.len() - 1].kind()) {
|
2018-11-27 14:14:15 -06:00
|
|
|
(&Anchor(StartText), &Anchor(EndText)) if exprs[1..(exprs.len() - 1)].is_empty() => {
|
|
|
|
Some("consider using `str::is_empty`")
|
|
|
|
},
|
|
|
|
(&Anchor(StartText), &Anchor(EndText)) if is_literal(&exprs[1..(exprs.len() - 1)]) => {
|
|
|
|
Some("consider using `==` on `str`s")
|
|
|
|
},
|
2018-03-13 09:02:40 -05:00
|
|
|
(&Anchor(StartText), &Literal(_)) if is_literal(&exprs[1..]) => Some("consider using `str::starts_with`"),
|
2018-11-27 14:14:15 -06:00
|
|
|
(&Literal(_), &Anchor(EndText)) if is_literal(&exprs[1..(exprs.len() - 1)]) => {
|
|
|
|
Some("consider using `str::ends_with`")
|
|
|
|
},
|
2018-03-13 09:02:40 -05:00
|
|
|
_ if is_literal(exprs) => Some("consider using `str::contains`"),
|
2017-09-05 04:33:04 -05:00
|
|
|
_ => None,
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-02-06 11:06:39 -06:00
|
|
|
_ => None,
|
2016-02-05 16:10:48 -06:00
|
|
|
}
|
|
|
|
}
|
2016-05-25 10:15:19 -05:00
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn check_set<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>, utf8: bool) {
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
2019-11-27 16:30:10 -06:00
|
|
|
if let ExprKind::AddrOf(BorrowKind::Ref, _, ref expr) = expr.kind;
|
2019-12-27 01:12:26 -06:00
|
|
|
if let ExprKind::Array(exprs) = expr.kind;
|
2017-10-23 14:18:02 -05:00
|
|
|
then {
|
|
|
|
for expr in exprs {
|
|
|
|
check_regex(cx, expr, utf8);
|
|
|
|
}
|
2016-05-25 10:15:19 -05:00
|
|
|
}
|
2017-10-23 14:18:02 -05:00
|
|
|
}
|
2016-05-25 10:15:19 -05:00
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn check_regex<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>, utf8: bool) {
|
2018-04-07 15:18:51 -05:00
|
|
|
let mut parser = regex_syntax::ParserBuilder::new()
|
|
|
|
.unicode(utf8)
|
|
|
|
.allow_invalid_utf8(!utf8)
|
|
|
|
.build();
|
2016-05-25 10:15:19 -05:00
|
|
|
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Lit(ref lit) = expr.kind {
|
2018-01-23 09:52:14 -06:00
|
|
|
if let LitKind::Str(ref r, style) = lit.node {
|
2017-03-30 03:21:13 -05:00
|
|
|
let r = &r.as_str();
|
2018-03-13 09:02:40 -05:00
|
|
|
let offset = if let StrStyle::Raw(n) = style { 2 + n } else { 1 };
|
|
|
|
match parser.parse(r) {
|
2018-11-27 14:14:15 -06:00
|
|
|
Ok(r) => {
|
|
|
|
if let Some(repl) = is_trivial_regex(&r) {
|
2020-04-18 05:28:29 -05:00
|
|
|
span_lint_and_help(cx, TRIVIAL_REGEX, expr.span, "trivial regex", None, repl);
|
2018-11-27 14:14:15 -06:00
|
|
|
}
|
2018-03-13 09:02:40 -05:00
|
|
|
},
|
|
|
|
Err(regex_syntax::Error::Parse(e)) => {
|
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
INVALID_REGEX,
|
|
|
|
str_span(expr.span, *e.span(), offset),
|
|
|
|
&format!("regex syntax error: {}", e.kind()),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
Err(regex_syntax::Error::Translate(e)) => {
|
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
INVALID_REGEX,
|
|
|
|
str_span(expr.span, *e.span(), offset),
|
|
|
|
&format!("regex syntax error: {}", e.kind()),
|
2017-09-05 04:33:04 -05:00
|
|
|
);
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-05-25 10:15:19 -05:00
|
|
|
Err(e) => {
|
2018-11-27 14:14:15 -06:00
|
|
|
span_lint(cx, INVALID_REGEX, expr.span, &format!("regex syntax error: {}", e));
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-05-25 10:15:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if let Some(r) = const_str(cx, expr) {
|
2018-03-13 09:02:40 -05:00
|
|
|
match parser.parse(&r) {
|
2018-11-27 14:14:15 -06:00
|
|
|
Ok(r) => {
|
|
|
|
if let Some(repl) = is_trivial_regex(&r) {
|
2020-04-18 05:28:29 -05:00
|
|
|
span_lint_and_help(cx, TRIVIAL_REGEX, expr.span, "trivial regex", None, repl);
|
2018-11-27 14:14:15 -06:00
|
|
|
}
|
2018-03-13 09:02:40 -05:00
|
|
|
},
|
|
|
|
Err(regex_syntax::Error::Parse(e)) => {
|
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
INVALID_REGEX,
|
|
|
|
expr.span,
|
|
|
|
&format!("regex syntax error on position {}: {}", e.span().start.offset, e.kind()),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
Err(regex_syntax::Error::Translate(e)) => {
|
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
INVALID_REGEX,
|
|
|
|
expr.span,
|
|
|
|
&format!("regex syntax error on position {}: {}", e.span().start.offset, e.kind()),
|
2017-09-05 04:33:04 -05:00
|
|
|
);
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-05-25 10:15:19 -05:00
|
|
|
Err(e) => {
|
2018-11-27 14:14:15 -06:00
|
|
|
span_lint(cx, INVALID_REGEX, expr.span, &format!("regex syntax error: {}", e));
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-05-25 10:15:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|