2019-01-30 19:15:29 -06:00
|
|
|
//! Checks for uses of const which the type is not `Freeze` (`Cell`-free).
|
2018-06-06 10:20:22 -05:00
|
|
|
//!
|
|
|
|
//! This lint is **deny** by default.
|
|
|
|
|
2019-01-30 19:15:29 -06:00
|
|
|
use std::ptr;
|
|
|
|
|
2020-01-06 10:39:50 -06:00
|
|
|
use rustc_hir::def::{DefKind, Res};
|
2020-02-21 02:39:38 -06:00
|
|
|
use rustc_hir::{Expr, ExprKind, ImplItem, ImplItemKind, Item, ItemKind, Node, TraitItem, TraitItemKind, UnOp};
|
2020-09-24 07:49:22 -05:00
|
|
|
use rustc_infer::traits::specialization_graph;
|
2020-01-12 00:08:41 -06:00
|
|
|
use rustc_lint::{LateContext, LateLintPass, Lint};
|
2020-03-30 04:02:14 -05:00
|
|
|
use rustc_middle::ty::adjustment::Adjust;
|
2020-09-24 07:49:22 -05:00
|
|
|
use rustc_middle::ty::{AssocKind, Ty};
|
2020-01-11 05:37:08 -06:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2019-12-30 18:17:56 -06:00
|
|
|
use rustc_span::{InnerSpan, Span, DUMMY_SP};
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc_typeck::hir_ty_to_ty;
|
2018-06-06 10:20:22 -05:00
|
|
|
|
2020-09-24 07:49:22 -05:00
|
|
|
use crate::utils::{in_constant, qpath_res, span_lint_and_then};
|
|
|
|
use if_chain::if_chain;
|
2019-01-30 19:15:29 -06:00
|
|
|
|
2018-06-06 10:20:22 -05:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **What it does:** Checks for declaration of `const` items which is interior
|
2019-01-30 19:15:29 -06:00
|
|
|
/// mutable (e.g., contains a `Cell`, `Mutex`, `AtomicXxxx`, etc.).
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
2019-01-30 19:15:29 -06:00
|
|
|
/// **Why is this bad?** Consts are copied everywhere they are referenced, i.e.,
|
2019-03-05 10:50:33 -06:00
|
|
|
/// every time you refer to the const a fresh instance of the `Cell` or `Mutex`
|
|
|
|
/// or `AtomicXxxx` will be created, which defeats the whole purpose of using
|
|
|
|
/// these types in the first place.
|
|
|
|
///
|
|
|
|
/// The `const` should better be replaced by a `static` item if a global
|
|
|
|
/// variable is wanted, or replaced by a `const fn` if a constructor is wanted.
|
|
|
|
///
|
|
|
|
/// **Known problems:** A "non-constant" const item is a legacy way to supply an
|
2019-01-30 19:15:29 -06:00
|
|
|
/// initialized value to downstream `static` items (e.g., the
|
2019-03-05 10:50:33 -06:00
|
|
|
/// `std::sync::ONCE_INIT` constant). In this case the use of `const` is legit,
|
|
|
|
/// and this lint should be suppressed.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// use std::sync::atomic::{AtomicUsize, Ordering::SeqCst};
|
|
|
|
///
|
|
|
|
/// // Bad.
|
|
|
|
/// const CONST_ATOM: AtomicUsize = AtomicUsize::new(12);
|
|
|
|
/// CONST_ATOM.store(6, SeqCst); // the content of the atomic is unchanged
|
|
|
|
/// assert_eq!(CONST_ATOM.load(SeqCst), 12); // because the CONST_ATOM in these lines are distinct
|
|
|
|
///
|
|
|
|
/// // Good.
|
|
|
|
/// static STATIC_ATOM: AtomicUsize = AtomicUsize::new(15);
|
|
|
|
/// STATIC_ATOM.store(9, SeqCst);
|
|
|
|
/// assert_eq!(STATIC_ATOM.load(SeqCst), 9); // use a `static` item to refer to the same instance
|
|
|
|
/// ```
|
2018-06-06 10:20:22 -05:00
|
|
|
pub DECLARE_INTERIOR_MUTABLE_CONST,
|
|
|
|
correctness,
|
2020-01-06 00:30:43 -06:00
|
|
|
"declaring `const` with interior mutability"
|
2018-06-06 10:20:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
declare_clippy_lint! {
|
2019-01-30 19:15:29 -06:00
|
|
|
/// **What it does:** Checks if `const` items which is interior mutable (e.g.,
|
|
|
|
/// contains a `Cell`, `Mutex`, `AtomicXxxx`, etc.) has been borrowed directly.
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
2019-01-30 19:15:29 -06:00
|
|
|
/// **Why is this bad?** Consts are copied everywhere they are referenced, i.e.,
|
2019-03-05 10:50:33 -06:00
|
|
|
/// every time you refer to the const a fresh instance of the `Cell` or `Mutex`
|
|
|
|
/// or `AtomicXxxx` will be created, which defeats the whole purpose of using
|
|
|
|
/// these types in the first place.
|
|
|
|
///
|
|
|
|
/// The `const` value should be stored inside a `static` item.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// use std::sync::atomic::{AtomicUsize, Ordering::SeqCst};
|
|
|
|
/// const CONST_ATOM: AtomicUsize = AtomicUsize::new(12);
|
|
|
|
///
|
|
|
|
/// // Bad.
|
|
|
|
/// CONST_ATOM.store(6, SeqCst); // the content of the atomic is unchanged
|
|
|
|
/// assert_eq!(CONST_ATOM.load(SeqCst), 12); // because the CONST_ATOM in these lines are distinct
|
|
|
|
///
|
|
|
|
/// // Good.
|
|
|
|
/// static STATIC_ATOM: AtomicUsize = CONST_ATOM;
|
|
|
|
/// STATIC_ATOM.store(9, SeqCst);
|
|
|
|
/// assert_eq!(STATIC_ATOM.load(SeqCst), 9); // use a `static` item to refer to the same instance
|
|
|
|
/// ```
|
2018-06-06 10:20:22 -05:00
|
|
|
pub BORROW_INTERIOR_MUTABLE_CONST,
|
|
|
|
correctness,
|
2020-01-06 00:30:43 -06:00
|
|
|
"referencing `const` with interior mutability"
|
2018-06-06 10:20:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
enum Source {
|
2018-11-27 14:14:15 -06:00
|
|
|
Item { item: Span },
|
2020-09-24 07:49:22 -05:00
|
|
|
Assoc { item: Span },
|
2018-11-27 14:14:15 -06:00
|
|
|
Expr { expr: Span },
|
2018-06-06 10:20:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Source {
|
2019-09-18 01:37:41 -05:00
|
|
|
#[must_use]
|
2018-06-06 10:20:22 -05:00
|
|
|
fn lint(&self) -> (&'static Lint, &'static str, Span) {
|
|
|
|
match self {
|
2019-07-30 19:25:35 -05:00
|
|
|
Self::Item { item } | Self::Assoc { item, .. } => (
|
2018-06-06 10:20:22 -05:00
|
|
|
DECLARE_INTERIOR_MUTABLE_CONST,
|
2020-01-06 00:30:43 -06:00
|
|
|
"a `const` item should never be interior mutable",
|
2018-06-06 10:20:22 -05:00
|
|
|
*item,
|
|
|
|
),
|
2019-07-30 19:25:35 -05:00
|
|
|
Self::Expr { expr } => (
|
2018-06-06 10:20:22 -05:00
|
|
|
BORROW_INTERIOR_MUTABLE_CONST,
|
2020-01-06 00:30:43 -06:00
|
|
|
"a `const` item with interior mutability should not be borrowed",
|
2018-06-06 10:20:22 -05:00
|
|
|
*expr,
|
|
|
|
),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn verify_ty_bound<'tcx>(cx: &LateContext<'tcx>, ty: Ty<'tcx>, source: Source) {
|
2020-09-24 07:49:22 -05:00
|
|
|
// Ignore types whose layout is unknown since `is_freeze` reports every generic types as `!Freeze`,
|
|
|
|
// making it indistinguishable from `UnsafeCell`. i.e. it isn't a tool to prove a type is
|
|
|
|
// 'unfrozen'. However, this code causes a false negative in which
|
|
|
|
// a type contains a layout-unknown type, but also a unsafe cell like `const CELL: Cell<T>`.
|
|
|
|
// Yet, it's better than `ty.has_type_flags(TypeFlags::HAS_TY_PARAM | TypeFlags::HAS_PROJECTION)`
|
|
|
|
// since it works when a pointer indirection involves (`Cell<*const T>`).
|
|
|
|
// Making up a `ParamEnv` where every generic params and assoc types are `Freeze`is another option;
|
|
|
|
// but I'm not sure whether it's a decent way, if possible.
|
|
|
|
if cx.tcx.layout_of(cx.param_env.and(ty)).is_err() || ty.is_freeze(cx.tcx.at(DUMMY_SP), cx.param_env) {
|
2018-06-06 10:20:22 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let (lint, msg, span) = source.lint();
|
2020-04-17 01:08:00 -05:00
|
|
|
span_lint_and_then(cx, lint, span, msg, |diag| {
|
2019-08-19 11:30:32 -05:00
|
|
|
if span.from_expansion() {
|
2018-06-06 10:20:22 -05:00
|
|
|
return; // Don't give suggestions into macros.
|
|
|
|
}
|
|
|
|
match source {
|
|
|
|
Source::Item { .. } => {
|
2019-06-12 03:28:58 -05:00
|
|
|
let const_kw_span = span.from_inner(InnerSpan::new(0, 5));
|
2020-04-17 01:08:00 -05:00
|
|
|
diag.span_label(const_kw_span, "make this a static item (maybe with lazy_static)");
|
2018-11-27 14:14:15 -06:00
|
|
|
},
|
2020-09-24 07:49:22 -05:00
|
|
|
Source::Assoc { .. } => (),
|
2018-06-06 10:20:22 -05:00
|
|
|
Source::Expr { .. } => {
|
2020-04-17 01:08:00 -05:00
|
|
|
diag.help("assign this const to a local or static variable, and use the variable here");
|
2018-11-27 14:14:15 -06:00
|
|
|
},
|
2018-06-06 10:20:22 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(NonCopyConst => [DECLARE_INTERIOR_MUTABLE_CONST, BORROW_INTERIOR_MUTABLE_CONST]);
|
2018-06-06 10:20:22 -05:00
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for NonCopyConst {
|
|
|
|
fn check_item(&mut self, cx: &LateContext<'tcx>, it: &'tcx Item<'_>) {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ItemKind::Const(hir_ty, ..) = &it.kind {
|
2018-06-06 10:20:22 -05:00
|
|
|
let ty = hir_ty_to_ty(cx.tcx, hir_ty);
|
|
|
|
verify_ty_bound(cx, ty, Source::Item { item: it.span });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn check_trait_item(&mut self, cx: &LateContext<'tcx>, trait_item: &'tcx TraitItem<'_>) {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let TraitItemKind::Const(hir_ty, ..) = &trait_item.kind {
|
2018-06-06 10:20:22 -05:00
|
|
|
let ty = hir_ty_to_ty(cx.tcx, hir_ty);
|
2020-09-24 07:49:22 -05:00
|
|
|
// Normalize assoc types because ones originated from generic params
|
|
|
|
// bounded other traits could have their bound.
|
|
|
|
let normalized = cx.tcx.normalize_erasing_regions(cx.param_env, ty);
|
|
|
|
verify_ty_bound(cx, normalized, Source::Assoc { item: trait_item.span });
|
2018-06-06 10:20:22 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn check_impl_item(&mut self, cx: &LateContext<'tcx>, impl_item: &'tcx ImplItem<'_>) {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ImplItemKind::Const(hir_ty, ..) = &impl_item.kind {
|
2019-06-25 16:33:51 -05:00
|
|
|
let item_hir_id = cx.tcx.hir().get_parent_node(impl_item.hir_id);
|
2019-06-18 04:15:47 -05:00
|
|
|
let item = cx.tcx.hir().expect_item(item_hir_id);
|
2020-09-24 07:49:22 -05:00
|
|
|
|
|
|
|
match &item.kind {
|
|
|
|
ItemKind::Impl {
|
|
|
|
of_trait: Some(of_trait_ref),
|
|
|
|
..
|
|
|
|
} => {
|
|
|
|
if_chain! {
|
|
|
|
// Lint a trait impl item only when the definition is a generic type,
|
|
|
|
// assuming a assoc const is not meant to be a interior mutable type.
|
|
|
|
if let Some(of_trait_def_id) = of_trait_ref.trait_def_id();
|
|
|
|
if let Some(of_assoc_item) = specialization_graph::Node::Trait(of_trait_def_id)
|
|
|
|
.item(cx.tcx, impl_item.ident, AssocKind::Const, of_trait_def_id);
|
|
|
|
if cx
|
|
|
|
.tcx
|
|
|
|
.layout_of(cx.tcx.param_env(of_trait_def_id).and(
|
|
|
|
// Normalize assoc types because ones originated from generic params
|
|
|
|
// bounded other traits could have their bound at the trait defs;
|
|
|
|
// and, in that case, the definition is *not* generic.
|
|
|
|
cx.tcx.normalize_erasing_regions(
|
|
|
|
cx.tcx.param_env(of_trait_def_id),
|
|
|
|
cx.tcx.type_of(of_assoc_item.def_id),
|
|
|
|
),
|
|
|
|
))
|
|
|
|
.is_err();
|
|
|
|
then {
|
|
|
|
let ty = hir_ty_to_ty(cx.tcx, hir_ty);
|
|
|
|
let normalized = cx.tcx.normalize_erasing_regions(cx.param_env, ty);
|
|
|
|
verify_ty_bound(
|
|
|
|
cx,
|
|
|
|
normalized,
|
|
|
|
Source::Assoc {
|
|
|
|
item: impl_item.span,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
ItemKind::Impl { of_trait: None, .. } => {
|
|
|
|
let ty = hir_ty_to_ty(cx.tcx, hir_ty);
|
|
|
|
// Normalize assoc types originated from generic params.
|
|
|
|
let normalized = cx.tcx.normalize_erasing_regions(cx.param_env, ty);
|
|
|
|
verify_ty_bound(cx, normalized, Source::Assoc { item: impl_item.span });
|
|
|
|
},
|
|
|
|
_ => (),
|
2018-06-06 10:20:22 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Path(qpath) = &expr.kind {
|
2018-06-06 10:20:22 -05:00
|
|
|
// Only lint if we use the const item inside a function.
|
2019-02-24 12:43:15 -06:00
|
|
|
if in_constant(cx, expr.hir_id) {
|
2018-06-06 10:20:22 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-30 19:15:29 -06:00
|
|
|
// Make sure it is a const item.
|
2019-09-18 12:29:04 -05:00
|
|
|
match qpath_res(cx, qpath, expr.hir_id) {
|
2020-03-16 01:23:03 -05:00
|
|
|
Res::Def(DefKind::Const | DefKind::AssocConst, _) => {},
|
2018-06-06 10:20:22 -05:00
|
|
|
_ => return,
|
|
|
|
};
|
|
|
|
|
2019-01-30 19:15:29 -06:00
|
|
|
// Climb up to resolve any field access and explicit referencing.
|
2018-06-06 10:20:22 -05:00
|
|
|
let mut cur_expr = expr;
|
|
|
|
let mut dereferenced_expr = expr;
|
|
|
|
let mut needs_check_adjustment = true;
|
|
|
|
loop {
|
2019-06-25 16:33:51 -05:00
|
|
|
let parent_id = cx.tcx.hir().get_parent_node(cur_expr.hir_id);
|
2019-02-24 12:43:15 -06:00
|
|
|
if parent_id == cur_expr.hir_id {
|
2018-06-06 10:20:22 -05:00
|
|
|
break;
|
|
|
|
}
|
2019-06-25 16:34:07 -05:00
|
|
|
if let Some(Node::Expr(parent_expr)) = cx.tcx.hir().find(parent_id) {
|
2019-09-27 10:16:06 -05:00
|
|
|
match &parent_expr.kind {
|
2018-07-12 02:30:57 -05:00
|
|
|
ExprKind::AddrOf(..) => {
|
2019-01-30 19:15:29 -06:00
|
|
|
// `&e` => `e` must be referenced.
|
2018-06-06 10:20:22 -05:00
|
|
|
needs_check_adjustment = false;
|
2018-11-27 14:14:15 -06:00
|
|
|
},
|
2018-07-12 02:30:57 -05:00
|
|
|
ExprKind::Field(..) => {
|
2018-06-06 10:20:22 -05:00
|
|
|
needs_check_adjustment = true;
|
2020-08-28 09:10:16 -05:00
|
|
|
|
|
|
|
// Check whether implicit dereferences happened;
|
|
|
|
// if so, no need to go further up
|
|
|
|
// because of the same reason as the `ExprKind::Unary` case.
|
|
|
|
if cx
|
|
|
|
.typeck_results()
|
|
|
|
.expr_adjustments(dereferenced_expr)
|
|
|
|
.iter()
|
|
|
|
.any(|adj| matches!(adj.kind, Adjust::Deref(_)))
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
dereferenced_expr = parent_expr;
|
2018-11-27 14:14:15 -06:00
|
|
|
},
|
2018-07-12 02:30:57 -05:00
|
|
|
ExprKind::Index(e, _) if ptr::eq(&**e, cur_expr) => {
|
2018-06-06 10:20:22 -05:00
|
|
|
// `e[i]` => desugared to `*Index::index(&e, i)`,
|
|
|
|
// meaning `e` must be referenced.
|
|
|
|
// no need to go further up since a method call is involved now.
|
|
|
|
needs_check_adjustment = false;
|
|
|
|
break;
|
2018-11-27 14:14:15 -06:00
|
|
|
},
|
2020-01-06 10:39:50 -06:00
|
|
|
ExprKind::Unary(UnOp::UnDeref, _) => {
|
2018-06-06 10:20:22 -05:00
|
|
|
// `*e` => desugared to `*Deref::deref(&e)`,
|
|
|
|
// meaning `e` must be referenced.
|
|
|
|
// no need to go further up since a method call is involved now.
|
|
|
|
needs_check_adjustment = false;
|
|
|
|
break;
|
2018-11-27 14:14:15 -06:00
|
|
|
},
|
2018-06-06 10:20:22 -05:00
|
|
|
_ => break,
|
|
|
|
}
|
|
|
|
cur_expr = parent_expr;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-11 16:07:04 -05:00
|
|
|
let ty = if needs_check_adjustment {
|
2020-07-17 03:47:04 -05:00
|
|
|
let adjustments = cx.typeck_results().expr_adjustments(dereferenced_expr);
|
2020-07-14 07:59:59 -05:00
|
|
|
if let Some(i) = adjustments
|
|
|
|
.iter()
|
|
|
|
.position(|adj| matches!(adj.kind, Adjust::Borrow(_) | Adjust::Deref(_)))
|
|
|
|
{
|
2018-06-06 10:20:22 -05:00
|
|
|
if i == 0 {
|
2020-07-17 03:47:04 -05:00
|
|
|
cx.typeck_results().expr_ty(dereferenced_expr)
|
2018-06-06 10:20:22 -05:00
|
|
|
} else {
|
|
|
|
adjustments[i - 1].target
|
|
|
|
}
|
|
|
|
} else {
|
2019-01-30 19:15:29 -06:00
|
|
|
// No borrow adjustments means the entire const is moved.
|
2018-06-06 10:20:22 -05:00
|
|
|
return;
|
|
|
|
}
|
2018-08-11 16:07:04 -05:00
|
|
|
} else {
|
2020-07-17 03:47:04 -05:00
|
|
|
cx.typeck_results().expr_ty(dereferenced_expr)
|
2018-06-06 10:20:22 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
verify_ty_bound(cx, ty, Source::Expr { expr: expr.span });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|