2021-01-22 11:07:00 -06:00
|
|
|
use crate::utils::{is_expn_of, is_type_diagnostic_item, match_panic_def_id, method_chain_args, span_lint_and_then};
|
2018-11-27 14:14:15 -06:00
|
|
|
use if_chain::if_chain;
|
2020-01-06 10:39:50 -06:00
|
|
|
use rustc_hir as hir;
|
2020-01-12 00:08:41 -06:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-03-30 04:02:14 -05:00
|
|
|
use rustc_middle::hir::map::Map;
|
2020-04-12 08:23:07 -05:00
|
|
|
use rustc_middle::ty;
|
2020-01-11 05:37:08 -06:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-11-05 07:29:48 -06:00
|
|
|
use rustc_span::{sym, Span};
|
2017-10-16 16:06:31 -05: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 impls of `From<..>` that contain `panic!()` or `unwrap()`
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** `TryFrom` should be used if there's a possibility of failure.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// struct Foo(i32);
|
2020-06-09 09:36:01 -05:00
|
|
|
///
|
|
|
|
/// // Bad
|
2019-03-05 10:50:33 -06:00
|
|
|
/// impl From<String> for Foo {
|
|
|
|
/// fn from(s: String) -> Self {
|
|
|
|
/// Foo(s.parse().unwrap())
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
2020-06-09 09:36:01 -05:00
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// // Good
|
|
|
|
/// struct Foo(i32);
|
|
|
|
///
|
|
|
|
/// use std::convert::TryFrom;
|
|
|
|
/// impl TryFrom<String> for Foo {
|
|
|
|
/// type Error = ();
|
|
|
|
/// fn try_from(s: String) -> Result<Self, Self::Error> {
|
|
|
|
/// if let Ok(parsed) = s.parse() {
|
|
|
|
/// Ok(Foo(parsed))
|
|
|
|
/// } else {
|
|
|
|
/// Err(())
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
pub FALLIBLE_IMPL_FROM,
|
|
|
|
nursery,
|
2017-10-17 11:09:10 -05:00
|
|
|
"Warn on impls of `From<..>` that contain `panic!()` or `unwrap()`"
|
2017-10-16 16:06:31 -05:00
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(FallibleImplFrom => [FALLIBLE_IMPL_FROM]);
|
2017-10-16 16:06:31 -05:00
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for FallibleImplFrom {
|
|
|
|
fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::Item<'_>) {
|
2017-10-16 16:06:31 -05:00
|
|
|
// check for `impl From<???> for ..`
|
2019-07-05 22:52:51 -05:00
|
|
|
let impl_def_id = cx.tcx.hir().local_def_id(item.hir_id);
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
2020-11-22 16:46:21 -06:00
|
|
|
if let hir::ItemKind::Impl(impl_) = &item.kind;
|
2017-10-23 14:18:02 -05:00
|
|
|
if let Some(impl_trait_ref) = cx.tcx.impl_trait_ref(impl_def_id);
|
2021-01-22 11:07:00 -06:00
|
|
|
if cx.tcx.is_diagnostic_item(sym::from_trait, impl_trait_ref.def_id);
|
2017-10-23 14:18:02 -05:00
|
|
|
then {
|
2020-11-22 16:46:21 -06:00
|
|
|
lint_impl_body(cx, item.span, impl_.items);
|
2017-10-23 14:18:02 -05:00
|
|
|
}
|
|
|
|
}
|
2017-10-16 16:06:31 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn lint_impl_body<'tcx>(cx: &LateContext<'tcx>, impl_span: Span, impl_items: &[hir::ImplItemRef<'_>]) {
|
2020-01-09 01:13:22 -06:00
|
|
|
use rustc_hir::intravisit::{self, NestedVisitorMap, Visitor};
|
2020-02-21 02:39:38 -06:00
|
|
|
use rustc_hir::{Expr, ExprKind, ImplItemKind, QPath};
|
2017-10-16 16:06:31 -05:00
|
|
|
|
2019-06-19 13:36:23 -05:00
|
|
|
struct FindPanicUnwrap<'a, 'tcx> {
|
2020-06-25 15:41:36 -05:00
|
|
|
lcx: &'a LateContext<'tcx>,
|
2020-07-17 03:47:04 -05:00
|
|
|
typeck_results: &'tcx ty::TypeckResults<'tcx>,
|
2017-10-16 16:06:31 -05:00
|
|
|
result: Vec<Span>,
|
|
|
|
}
|
|
|
|
|
2019-06-19 13:36:23 -05:00
|
|
|
impl<'a, 'tcx> Visitor<'tcx> for FindPanicUnwrap<'a, 'tcx> {
|
2020-01-09 01:13:22 -06:00
|
|
|
type Map = Map<'tcx>;
|
|
|
|
|
2019-12-27 01:12:26 -06:00
|
|
|
fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
|
2017-10-16 16:06:31 -05:00
|
|
|
// check for `begin_panic`
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Call(ref func_expr, _) = expr.kind;
|
|
|
|
if let ExprKind::Path(QPath::Resolved(_, ref path)) = func_expr.kind;
|
2019-05-03 19:03:12 -05:00
|
|
|
if let Some(path_def_id) = path.res.opt_def_id();
|
2020-11-17 14:16:15 -06:00
|
|
|
if match_panic_def_id(self.lcx, path_def_id);
|
2019-05-17 16:53:54 -05:00
|
|
|
if is_expn_of(expr.span, "unreachable").is_none();
|
2017-10-23 14:18:02 -05:00
|
|
|
then {
|
|
|
|
self.result.push(expr.span);
|
|
|
|
}
|
|
|
|
}
|
2017-10-16 16:06:31 -05:00
|
|
|
|
|
|
|
// check for `unwrap`
|
2019-05-17 16:53:54 -05:00
|
|
|
if let Some(arglists) = method_chain_args(expr, &["unwrap"]) {
|
2020-09-24 07:49:22 -05:00
|
|
|
let reciever_ty = self.typeck_results.expr_ty(&arglists[0][0]).peel_refs();
|
2020-11-05 07:29:48 -06:00
|
|
|
if is_type_diagnostic_item(self.lcx, reciever_ty, sym::option_type)
|
|
|
|
|| is_type_diagnostic_item(self.lcx, reciever_ty, sym::result_type)
|
2020-04-12 08:23:54 -05:00
|
|
|
{
|
2017-10-16 16:06:31 -05:00
|
|
|
self.result.push(expr.span);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// and check sub-expressions
|
|
|
|
intravisit::walk_expr(self, expr);
|
|
|
|
}
|
|
|
|
|
2020-03-15 17:41:20 -05:00
|
|
|
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
|
2017-10-16 16:06:31 -05:00
|
|
|
NestedVisitorMap::None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for impl_item in impl_items {
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
2020-11-05 07:29:48 -06:00
|
|
|
if impl_item.ident.name == sym::from;
|
2020-03-16 10:00:16 -05:00
|
|
|
if let ImplItemKind::Fn(_, body_id) =
|
2019-09-27 10:16:06 -05:00
|
|
|
cx.tcx.hir().impl_item(impl_item.id).kind;
|
2017-10-23 14:18:02 -05:00
|
|
|
then {
|
|
|
|
// check the body for `begin_panic` or `unwrap`
|
2018-12-07 18:56:03 -06:00
|
|
|
let body = cx.tcx.hir().body(body_id);
|
2019-07-05 22:52:51 -05:00
|
|
|
let impl_item_def_id = cx.tcx.hir().local_def_id(impl_item.id.hir_id);
|
2017-10-23 14:18:02 -05:00
|
|
|
let mut fpu = FindPanicUnwrap {
|
2019-04-07 12:44:10 -05:00
|
|
|
lcx: cx,
|
2020-07-17 03:47:04 -05:00
|
|
|
typeck_results: cx.tcx.typeck(impl_item_def_id),
|
2017-10-23 14:18:02 -05:00
|
|
|
result: Vec::new(),
|
|
|
|
};
|
|
|
|
fpu.visit_expr(&body.value);
|
2017-11-04 14:55:56 -05:00
|
|
|
|
2017-10-23 14:18:02 -05:00
|
|
|
// if we've found one, lint
|
|
|
|
if !fpu.result.is_empty() {
|
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
FALLIBLE_IMPL_FROM,
|
|
|
|
impl_span,
|
|
|
|
"consider implementing `TryFrom` instead",
|
2020-04-17 01:08:00 -05:00
|
|
|
move |diag| {
|
|
|
|
diag.help(
|
2017-10-23 14:18:02 -05:00
|
|
|
"`From` is intended for infallible conversions only. \
|
2020-06-09 09:36:01 -05:00
|
|
|
Use `TryFrom` if there's a possibility for the conversion to fail.");
|
2020-04-17 01:08:00 -05:00
|
|
|
diag.span_note(fpu.result, "potential failure(s)");
|
2017-10-23 14:18:02 -05:00
|
|
|
});
|
|
|
|
}
|
2017-10-16 16:06:31 -05:00
|
|
|
}
|
2017-10-23 14:18:02 -05:00
|
|
|
}
|
2017-10-16 16:06:31 -05:00
|
|
|
}
|
|
|
|
}
|