2021-03-25 13:29:11 -05:00
|
|
|
use clippy_utils::diagnostics::span_lint_and_help;
|
2020-02-29 21:23:33 -06:00
|
|
|
use rustc_ast::ast::{Expr, ExprKind};
|
2021-12-04 09:09:15 -06:00
|
|
|
use rustc_lint::{EarlyContext, EarlyLintPass, LintContext};
|
2020-03-30 04:02:14 -05:00
|
|
|
use rustc_middle::lint::in_external_macro;
|
2020-01-11 05:37:08 -06:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2019-11-15 13:27:07 -06:00
|
|
|
|
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for usage of `as` conversions.
|
2019-11-15 13:27:07 -06:00
|
|
|
///
|
2021-01-30 11:06:34 -06: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 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// `as` conversions will perform many kinds of
|
2019-11-15 13:27:07 -06: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 05:16:06 -05:00
|
|
|
/// ### Example
|
2019-11-15 13:27:07 -06:00
|
|
|
/// ```rust,ignore
|
|
|
|
/// let a: u32;
|
|
|
|
/// ...
|
|
|
|
/// f(a as u16);
|
|
|
|
/// ```
|
|
|
|
///
|
2022-05-28 08:22:59 -05:00
|
|
|
/// Use instead:
|
2019-11-15 13:27:07 -06:00
|
|
|
/// ```rust,ignore
|
|
|
|
/// f(a.try_into()?);
|
|
|
|
/// ```
|
|
|
|
/// or
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// f(a.try_into().expect("Unexpected u16 overflow in f"));
|
|
|
|
/// ```
|
|
|
|
///
|
2021-12-06 05:33:31 -06:00
|
|
|
#[clippy::version = "1.41.0"]
|
2019-11-15 13:27:07 -06: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 09:09:15 -06:00
|
|
|
if in_external_macro(cx.sess(), expr.span) {
|
2019-11-15 13:27:07 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let ExprKind::Cast(_, _) = expr.kind {
|
2020-01-26 19:56:22 -06:00
|
|
|
span_lint_and_help(
|
2019-11-15 13:27:07 -06:00
|
|
|
cx,
|
|
|
|
AS_CONVERSIONS,
|
|
|
|
expr.span,
|
|
|
|
"using a potentially dangerous silent `as` conversion",
|
2020-04-18 05:28:29 -05:00
|
|
|
None,
|
2019-11-15 13:27:07 -06:00
|
|
|
"consider using a safe wrapper for this conversion",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|