2021-03-25 18:29:11 +00:00
|
|
|
use clippy_utils::diagnostics::span_lint_and_help;
|
2020-03-01 03:23:33 +00:00
|
|
|
use rustc_ast::ast::{Expr, ExprKind};
|
2021-12-04 15:09:15 +00:00
|
|
|
use rustc_lint::{EarlyContext, EarlyLintPass, LintContext};
|
2020-03-30 09:02:14 +00:00
|
|
|
use rustc_middle::lint::in_external_macro;
|
2020-01-11 11:37:08 +00:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2019-11-15 19:27:07 +00:00
|
|
|
|
|
|
|
declare_clippy_lint! {
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for usage of `as` conversions.
|
2019-11-15 19:27:07 +00:00
|
|
|
///
|
2021-01-30 17:06:34 +00:00
|
|
|
/// Note that this lint is specialized in linting *every single* use of `as`
|
|
|
|
/// regardless of whether good alternatives exist or not.
|
|
|
|
/// If you want more precise lints for `as`, please consider using these separate lints:
|
|
|
|
/// `unnecessary_cast`, `cast_lossless/possible_truncation/possible_wrap/precision_loss/sign_loss`,
|
|
|
|
/// `fn_to_numeric_cast(_with_truncation)`, `char_lit_as_u8`, `ref_to_mut` and `ptr_as_ptr`.
|
|
|
|
/// There is a good explanation the reason why this lint should work in this way and how it is useful
|
|
|
|
/// [in this issue](https://github.com/rust-lang/rust-clippy/issues/5122).
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// `as` conversions will perform many kinds of
|
2019-11-15 19:27:07 +00:00
|
|
|
/// conversions, including silently lossy conversions and dangerous coercions.
|
|
|
|
/// There are cases when it makes sense to use `as`, so the lint is
|
|
|
|
/// Allow by default.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Example
|
2019-11-15 19:27:07 +00:00
|
|
|
/// ```rust,ignore
|
|
|
|
/// let a: u32;
|
|
|
|
/// ...
|
|
|
|
/// f(a as u16);
|
|
|
|
/// ```
|
|
|
|
///
|
2022-05-28 13:22:59 +00:00
|
|
|
/// Use instead:
|
2019-11-15 19:27:07 +00:00
|
|
|
/// ```rust,ignore
|
|
|
|
/// f(a.try_into()?);
|
2022-06-01 22:36:02 +00:00
|
|
|
///
|
|
|
|
/// // or
|
|
|
|
///
|
2019-11-15 19:27:07 +00:00
|
|
|
/// f(a.try_into().expect("Unexpected u16 overflow in f"));
|
|
|
|
/// ```
|
2021-12-06 11:33:31 +00:00
|
|
|
#[clippy::version = "1.41.0"]
|
2019-11-15 19:27:07 +00:00
|
|
|
pub AS_CONVERSIONS,
|
|
|
|
restriction,
|
|
|
|
"using a potentially dangerous silent `as` conversion"
|
|
|
|
}
|
|
|
|
|
|
|
|
declare_lint_pass!(AsConversions => [AS_CONVERSIONS]);
|
|
|
|
|
|
|
|
impl EarlyLintPass for AsConversions {
|
|
|
|
fn check_expr(&mut self, cx: &EarlyContext<'_>, expr: &Expr) {
|
2021-12-04 15:09:15 +00:00
|
|
|
if in_external_macro(cx.sess(), expr.span) {
|
2019-11-15 19:27:07 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let ExprKind::Cast(_, _) = expr.kind {
|
2020-01-27 01:56:22 +00:00
|
|
|
span_lint_and_help(
|
2019-11-15 19:27:07 +00:00
|
|
|
cx,
|
|
|
|
AS_CONVERSIONS,
|
|
|
|
expr.span,
|
|
|
|
"using a potentially dangerous silent `as` conversion",
|
2020-04-18 10:28:29 +00:00
|
|
|
None,
|
2019-11-15 19:27:07 +00:00
|
|
|
"consider using a safe wrapper for this conversion",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|