2016-03-19 11:48:29 -05:00
|
|
|
//! Checks for usage of `&Vec[_]` and `&String`.
|
2015-05-04 00:17:15 -05:00
|
|
|
|
2018-05-30 03:15:50 -05:00
|
|
|
use crate::utils::ptr::get_spans;
|
2019-09-11 01:26:57 -05:00
|
|
|
use crate::utils::{
|
|
|
|
is_type_diagnostic_item, match_qpath, match_type, paths, snippet_opt, span_lint, span_lint_and_then,
|
|
|
|
walk_ptrs_hir_ty,
|
|
|
|
};
|
2018-11-27 14:14:15 -06:00
|
|
|
use if_chain::if_chain;
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc::ty;
|
|
|
|
use rustc_errors::Applicability;
|
2020-02-21 02:39:38 -06:00
|
|
|
use rustc_hir::{
|
|
|
|
BinOpKind, BodyId, Expr, ExprKind, FnDecl, FnRetTy, GenericArg, HirId, ImplItem, ImplItemKind, Item, ItemKind,
|
2020-03-16 10:00:16 -05:00
|
|
|
Lifetime, MutTy, Mutability, Node, PathSegment, QPath, TraitFn, TraitItem, TraitItemKind, Ty, TyKind,
|
2020-02-21 02:39:38 -06:00
|
|
|
};
|
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_lint_pass, declare_tool_lint};
|
2020-01-04 04:00:00 -06:00
|
|
|
use rustc_span::source_map::Span;
|
2019-12-30 18:17:56 -06:00
|
|
|
use rustc_span::{MultiSpan, Symbol};
|
2018-11-27 14:14:15 -06:00
|
|
|
use std::borrow::Cow;
|
2015-05-04 00:17:15 -05:00
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **What it does:** This lint checks for function arguments of type `&String`
|
|
|
|
/// or `&Vec` unless the references are mutable. It will also suggest you
|
|
|
|
/// replace `.clone()` calls with the appropriate `.to_owned()`/`to_string()`
|
|
|
|
/// calls.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** Requiring the argument to be of the specific size
|
|
|
|
/// makes the function less useful for no benefit; slices in the form of `&[T]`
|
|
|
|
/// or `&str` usually suffice and can be obtained from other types, too.
|
|
|
|
///
|
|
|
|
/// **Known problems:** The lint does not follow data. So if you have an
|
|
|
|
/// argument `x` and write `let y = x; y.clone()` the lint will not suggest
|
|
|
|
/// changing that `.clone()` to `.to_owned()`.
|
|
|
|
///
|
|
|
|
/// Other functions called from this function taking a `&String` or `&Vec`
|
|
|
|
/// argument may also fail to compile if you change the argument. Applying
|
|
|
|
/// this lint on them will fix the problem, but they may be in other crates.
|
|
|
|
///
|
|
|
|
/// Also there may be `fn(&Vec)`-typed references pointing to your function.
|
|
|
|
/// If you have them, you will get a compiler error after applying this lint's
|
|
|
|
/// suggestions. You then have the choice to undo your changes or change the
|
|
|
|
/// type of the reference.
|
|
|
|
///
|
|
|
|
/// Note that if the function is part of your public interface, there may be
|
|
|
|
/// other crates referencing it you may not be aware. Carefully deprecate the
|
|
|
|
/// function before applying the lint suggestions in this case.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2019-03-05 16:23:50 -06:00
|
|
|
/// ```ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
/// fn foo(&Vec<u32>) { .. }
|
|
|
|
/// ```
|
2018-11-27 14:49:09 -06:00
|
|
|
pub PTR_ARG,
|
|
|
|
style,
|
|
|
|
"fn arguments of the type `&Vec<...>` or `&String`, suggesting to use `&[...]` or `&str` instead, respectively"
|
2015-05-04 00:17:15 -05:00
|
|
|
}
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **What it does:** This lint checks for equality comparisons with `ptr::null`
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** It's easier and more readable to use the inherent
|
|
|
|
/// `.is_null()`
|
|
|
|
/// method instead
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2019-03-05 16:23:50 -06:00
|
|
|
/// ```ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
/// if x == ptr::null {
|
|
|
|
/// ..
|
|
|
|
/// }
|
|
|
|
/// ```
|
2016-08-22 11:29:29 -05:00
|
|
|
pub CMP_NULL,
|
2018-03-28 08:24:26 -05:00
|
|
|
style,
|
2016-08-22 11:29:29 -05:00
|
|
|
"comparing a pointer to a null pointer, suggesting to use `.is_null()` instead."
|
|
|
|
}
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **What it does:** This lint checks for functions that take immutable
|
|
|
|
/// references and return
|
|
|
|
/// mutable ones.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** This is trivially unsound, as one can create two
|
|
|
|
/// mutable references
|
|
|
|
/// from the same (immutable!) source. This
|
|
|
|
/// [error](https://github.com/rust-lang/rust/issues/39465)
|
|
|
|
/// actually lead to an interim Rust release 1.15.1.
|
|
|
|
///
|
|
|
|
/// **Known problems:** To be on the conservative side, if there's at least one
|
|
|
|
/// mutable reference
|
|
|
|
/// with the output lifetime, this lint will not trigger. In practice, this
|
|
|
|
/// case is unlikely anyway.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2019-03-05 16:23:50 -06:00
|
|
|
/// ```ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
/// fn foo(&Foo) -> &mut Bar { .. }
|
|
|
|
/// ```
|
2017-02-10 12:39:03 -06:00
|
|
|
pub MUT_FROM_REF,
|
2018-03-28 08:24:26 -05:00
|
|
|
correctness,
|
2017-02-10 12:39:03 -06:00
|
|
|
"fns that create mutable refs from immutable ref args"
|
|
|
|
}
|
2016-08-22 11:29:29 -05:00
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(Ptr => [PTR_ARG, CMP_NULL, MUT_FROM_REF]);
|
2015-05-04 00:17:15 -05:00
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Ptr {
|
2019-12-22 08:42:41 -06:00
|
|
|
fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx Item<'_>) {
|
2019-11-08 14:12:08 -06:00
|
|
|
if let ItemKind::Fn(ref sig, _, body_id) = item.kind {
|
|
|
|
check_fn(cx, &sig.decl, item.hir_id, Some(body_id));
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-22 08:42:41 -06:00
|
|
|
fn check_impl_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx ImplItem<'_>) {
|
2020-03-16 10:00:16 -05:00
|
|
|
if let ImplItemKind::Fn(ref sig, body_id) = item.kind {
|
2019-02-27 03:39:33 -06:00
|
|
|
let parent_item = cx.tcx.hir().get_parent_item(item.hir_id);
|
2019-06-25 16:34:07 -05:00
|
|
|
if let Some(Node::Item(it)) = cx.tcx.hir().find(parent_item) {
|
2020-01-17 23:14:36 -06:00
|
|
|
if let ItemKind::Impl { of_trait: Some(_), .. } = it.kind {
|
2015-10-30 18:48:05 -05:00
|
|
|
return; // ignore trait impls
|
|
|
|
}
|
|
|
|
}
|
2019-02-27 03:39:33 -06:00
|
|
|
check_fn(cx, &sig.decl, item.hir_id, Some(body_id));
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-22 08:42:41 -06:00
|
|
|
fn check_trait_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx TraitItem<'_>) {
|
2020-03-12 14:56:55 -05:00
|
|
|
if let TraitItemKind::Fn(ref sig, ref trait_method) = item.kind {
|
2020-03-16 10:00:16 -05:00
|
|
|
let body_id = if let TraitFn::Provided(b) = *trait_method {
|
2017-11-04 14:55:56 -05:00
|
|
|
Some(b)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
2019-02-27 03:39:33 -06:00
|
|
|
check_fn(cx, &sig.decl, item.hir_id, body_id);
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
2016-12-01 15:31:56 -06:00
|
|
|
|
2019-12-27 01:12:26 -06:00
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr<'_>) {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Binary(ref op, ref l, ref r) = expr.kind {
|
2018-07-12 02:50:09 -05:00
|
|
|
if (op.node == BinOpKind::Eq || op.node == BinOpKind::Ne) && (is_null_path(l) || is_null_path(r)) {
|
2017-08-09 02:30:56 -05:00
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
CMP_NULL,
|
|
|
|
expr.span,
|
2020-01-06 00:30:43 -06:00
|
|
|
"Comparing with null is better expressed by the `.is_null()` method",
|
2017-08-09 02:30:56 -05:00
|
|
|
);
|
2016-08-22 11:29:29 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-04 00:17:15 -05:00
|
|
|
}
|
|
|
|
|
2019-01-13 09:19:02 -06:00
|
|
|
#[allow(clippy::too_many_lines)]
|
2019-12-29 22:02:10 -06:00
|
|
|
fn check_fn(cx: &LateContext<'_, '_>, decl: &FnDecl<'_>, fn_id: HirId, opt_body_id: Option<BodyId>) {
|
2019-07-05 22:52:51 -05:00
|
|
|
let fn_def_id = cx.tcx.hir().local_def_id(fn_id);
|
2017-06-29 08:38:25 -05:00
|
|
|
let sig = cx.tcx.fn_sig(fn_def_id);
|
2017-03-01 06:24:19 -06:00
|
|
|
let fn_ty = sig.skip_binder();
|
2016-03-01 13:38:21 -06:00
|
|
|
|
2017-09-16 02:10:26 -05:00
|
|
|
for (idx, (arg, ty)) in decl.inputs.iter().zip(fn_ty.inputs()).enumerate() {
|
2019-12-21 12:38:45 -06:00
|
|
|
if let ty::Ref(_, ty, Mutability::Not) = ty.kind {
|
2019-09-07 05:21:52 -05:00
|
|
|
if is_type_diagnostic_item(cx, ty, Symbol::intern("vec_type")) {
|
2017-09-10 12:32:24 -05:00
|
|
|
let mut ty_snippet = None;
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let TyKind::Path(QPath::Resolved(_, ref path)) = walk_ptrs_hir_ty(arg).kind;
|
2018-06-24 08:32:40 -05:00
|
|
|
if let Some(&PathSegment{args: Some(ref parameters), ..}) = path.segments.last();
|
2017-10-23 14:18:02 -05:00
|
|
|
then {
|
2018-06-24 16:42:52 -05:00
|
|
|
let types: Vec<_> = parameters.args.iter().filter_map(|arg| match arg {
|
|
|
|
GenericArg::Type(ty) => Some(ty),
|
|
|
|
_ => None,
|
|
|
|
}).collect();
|
|
|
|
if types.len() == 1 {
|
|
|
|
ty_snippet = snippet_opt(cx, types[0].span);
|
|
|
|
}
|
2017-10-23 14:18:02 -05:00
|
|
|
}
|
|
|
|
};
|
2019-05-17 16:53:54 -05:00
|
|
|
if let Some(spans) = get_spans(cx, opt_body_id, idx, &[("clone", ".to_owned()")]) {
|
2017-09-20 16:59:23 -05:00
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
PTR_ARG,
|
|
|
|
arg.span,
|
|
|
|
"writing `&Vec<_>` instead of `&[_]` involves one more reference and cannot be used \
|
|
|
|
with non-Vec-based slices.",
|
|
|
|
|db| {
|
|
|
|
if let Some(ref snippet) = ty_snippet {
|
2019-01-27 06:33:56 -06:00
|
|
|
db.span_suggestion(
|
2018-11-27 14:14:15 -06:00
|
|
|
arg.span,
|
|
|
|
"change this to",
|
|
|
|
format!("&[{}]", snippet),
|
|
|
|
Applicability::Unspecified,
|
|
|
|
);
|
2017-09-20 16:59:23 -05:00
|
|
|
}
|
|
|
|
for (clonespan, suggestion) in spans {
|
2019-01-27 06:33:56 -06:00
|
|
|
db.span_suggestion(
|
2017-11-04 14:55:56 -05:00
|
|
|
clonespan,
|
2018-11-27 14:14:15 -06:00
|
|
|
&snippet_opt(cx, clonespan).map_or("change the call to".into(), |x| {
|
|
|
|
Cow::Owned(format!("change `{}` to", x))
|
|
|
|
}),
|
2017-11-04 14:55:56 -05:00
|
|
|
suggestion.into(),
|
2018-09-15 11:14:08 -05:00
|
|
|
Applicability::Unspecified,
|
2017-11-04 14:55:56 -05:00
|
|
|
);
|
2017-09-20 16:59:23 -05:00
|
|
|
}
|
2017-11-04 14:55:56 -05:00
|
|
|
},
|
2017-09-20 16:59:23 -05:00
|
|
|
);
|
|
|
|
}
|
2019-05-17 16:53:54 -05:00
|
|
|
} else if match_type(cx, ty, &paths::STRING) {
|
2019-05-17 17:58:25 -05:00
|
|
|
if let Some(spans) = get_spans(cx, opt_body_id, idx, &[("clone", ".to_string()"), ("as_str", "")]) {
|
2017-09-20 16:59:23 -05:00
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
PTR_ARG,
|
|
|
|
arg.span,
|
|
|
|
"writing `&String` instead of `&str` involves a new object where a slice will do.",
|
|
|
|
|db| {
|
2019-01-27 06:34:23 -06:00
|
|
|
db.span_suggestion(arg.span, "change this to", "&str".into(), Applicability::Unspecified);
|
2017-09-20 16:59:23 -05:00
|
|
|
for (clonespan, suggestion) in spans {
|
2019-01-27 06:33:56 -06:00
|
|
|
db.span_suggestion_short(
|
2017-11-04 14:55:56 -05:00
|
|
|
clonespan,
|
2018-11-27 14:14:15 -06:00
|
|
|
&snippet_opt(cx, clonespan).map_or("change the call to".into(), |x| {
|
|
|
|
Cow::Owned(format!("change `{}` to", x))
|
|
|
|
}),
|
2017-11-04 14:55:56 -05:00
|
|
|
suggestion.into(),
|
2018-09-15 11:14:08 -05:00
|
|
|
Applicability::Unspecified,
|
2017-11-04 14:55:56 -05:00
|
|
|
);
|
2017-09-20 16:59:23 -05:00
|
|
|
}
|
2017-11-04 14:55:56 -05:00
|
|
|
},
|
2017-09-20 16:59:23 -05:00
|
|
|
);
|
|
|
|
}
|
2019-05-17 16:53:54 -05:00
|
|
|
} else if match_type(cx, ty, &paths::COW) {
|
2018-03-02 18:13:54 -06:00
|
|
|
if_chain! {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let TyKind::Rptr(_, MutTy { ref ty, ..} ) = arg.kind;
|
|
|
|
if let TyKind::Path(ref path) = ty.kind;
|
2018-03-02 18:13:54 -06:00
|
|
|
if let QPath::Resolved(None, ref pp) = *path;
|
|
|
|
if let [ref bx] = *pp.segments;
|
2018-06-24 08:32:40 -05:00
|
|
|
if let Some(ref params) = bx.args;
|
2018-03-02 18:13:54 -06:00
|
|
|
if !params.parenthesized;
|
2018-06-24 19:06:57 -05:00
|
|
|
if let Some(inner) = params.args.iter().find_map(|arg| match arg {
|
|
|
|
GenericArg::Type(ty) => Some(ty),
|
2019-02-19 01:34:43 -06:00
|
|
|
_ => None,
|
2018-06-24 19:06:57 -05:00
|
|
|
});
|
2018-03-02 18:13:54 -06:00
|
|
|
then {
|
|
|
|
let replacement = snippet_opt(cx, inner.span);
|
2018-03-15 10:07:15 -05:00
|
|
|
if let Some(r) = replacement {
|
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
PTR_ARG,
|
|
|
|
arg.span,
|
|
|
|
"using a reference to `Cow` is not recommended.",
|
|
|
|
|db| {
|
2019-01-27 06:33:56 -06:00
|
|
|
db.span_suggestion(
|
2018-09-18 10:07:54 -05:00
|
|
|
arg.span,
|
|
|
|
"change this to",
|
|
|
|
"&".to_owned() + &r,
|
|
|
|
Applicability::Unspecified,
|
|
|
|
);
|
2018-03-15 10:07:15 -05:00
|
|
|
},
|
|
|
|
);
|
2018-03-02 18:13:54 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-08-21 11:28:17 -05:00
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
2017-02-10 12:39:03 -06:00
|
|
|
|
2020-02-17 03:36:17 -06:00
|
|
|
if let FnRetTy::Return(ref ty) = decl.output {
|
2019-12-21 12:38:45 -06:00
|
|
|
if let Some((out, Mutability::Mut, _)) = get_rptr_lm(ty) {
|
2017-02-12 06:53:30 -06:00
|
|
|
let mut immutables = vec![];
|
2018-11-27 14:14:15 -06:00
|
|
|
for (_, ref mutbl, ref argspan) in decl
|
|
|
|
.inputs
|
2017-09-05 04:33:04 -05:00
|
|
|
.iter()
|
|
|
|
.filter_map(|ty| get_rptr_lm(ty))
|
|
|
|
.filter(|&(lt, _, _)| lt.name == out.name)
|
2017-08-09 02:30:56 -05:00
|
|
|
{
|
2019-12-21 12:38:45 -06:00
|
|
|
if *mutbl == Mutability::Mut {
|
2017-02-12 07:11:18 -06:00
|
|
|
return;
|
|
|
|
}
|
2017-02-12 06:53:30 -06:00
|
|
|
immutables.push(*argspan);
|
2017-02-10 12:39:03 -06:00
|
|
|
}
|
2017-02-12 07:11:18 -06:00
|
|
|
if immutables.is_empty() {
|
|
|
|
return;
|
|
|
|
}
|
2018-11-27 14:14:15 -06:00
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
MUT_FROM_REF,
|
|
|
|
ty.span,
|
|
|
|
"mutable borrow from immutable input(s)",
|
|
|
|
|db| {
|
|
|
|
let ms = MultiSpan::from_spans(immutables);
|
|
|
|
db.span_note(ms, "immutable borrow here");
|
|
|
|
},
|
|
|
|
);
|
2017-02-10 12:39:03 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-29 22:02:10 -06:00
|
|
|
fn get_rptr_lm<'tcx>(ty: &'tcx Ty<'tcx>) -> Option<(&'tcx Lifetime, Mutability, Span)> {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let TyKind::Rptr(ref lt, ref m) = ty.kind {
|
2017-02-12 06:53:30 -06:00
|
|
|
Some((lt, m.mutbl, ty.span))
|
2017-02-10 17:32:12 -06:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2015-05-04 00:17:15 -05:00
|
|
|
}
|
2016-08-22 11:29:29 -05:00
|
|
|
|
2019-12-27 01:12:26 -06:00
|
|
|
fn is_null_path(expr: &Expr<'_>) -> bool {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Call(ref pathexp, ref args) = expr.kind {
|
2016-08-22 11:29:29 -05:00
|
|
|
if args.is_empty() {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Path(ref path) = pathexp.kind {
|
2019-05-17 16:53:54 -05:00
|
|
|
return match_qpath(path, &paths::PTR_NULL) || match_qpath(path, &paths::PTR_NULL_MUT);
|
2016-08-22 11:29:29 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
false
|
|
|
|
}
|