]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/types.rs
Auto merge of #3926 - flip1995:def_path_uplift, r=phansch
[rust.git] / clippy_lints / src / types.rs
1 #![allow(default_hash_types)]
2
3 use std::borrow::Cow;
4 use std::cmp::Ordering;
5 use std::collections::BTreeMap;
6
7 use if_chain::if_chain;
8 use rustc::hir;
9 use rustc::hir::intravisit::{walk_body, walk_expr, walk_ty, FnKind, NestedVisitorMap, Visitor};
10 use rustc::hir::*;
11 use rustc::lint::{in_external_macro, LateContext, LateLintPass, LintArray, LintContext, LintPass};
12 use rustc::ty::layout::LayoutOf;
13 use rustc::ty::{self, InferTy, Ty, TyCtxt, TypeckTables};
14 use rustc::{declare_tool_lint, lint_array};
15 use rustc_errors::Applicability;
16 use rustc_target::spec::abi::Abi;
17 use rustc_typeck::hir_ty_to_ty;
18 use syntax::ast::{FloatTy, IntTy, UintTy};
19 use syntax::errors::DiagnosticBuilder;
20 use syntax::source_map::Span;
21
22 use crate::consts::{constant, Constant};
23 use crate::utils::paths;
24 use crate::utils::{
25     clip, comparisons, differing_macro_contexts, higher, in_constant, in_macro, int_bits, last_path_segment,
26     match_path, multispan_sugg, same_tys, sext, snippet, snippet_opt, snippet_with_applicability, span_help_and_lint,
27     span_lint, span_lint_and_sugg, span_lint_and_then, unsext,
28 };
29
30 /// Handles all the linting of funky types
31 pub struct TypePass;
32
33 declare_clippy_lint! {
34     /// **What it does:** Checks for use of `Box<Vec<_>>` anywhere in the code.
35     ///
36     /// **Why is this bad?** `Vec` already keeps its contents in a separate area on
37     /// the heap. So if you `Box` it, you just add another level of indirection
38     /// without any benefit whatsoever.
39     ///
40     /// **Known problems:** None.
41     ///
42     /// **Example:**
43     /// ```rust,ignore
44     /// struct X {
45     ///     values: Box<Vec<Foo>>,
46     /// }
47     /// ```
48     ///
49     /// Better:
50     ///
51     /// ```rust,ignore
52     /// struct X {
53     ///     values: Vec<Foo>,
54     /// }
55     /// ```
56     pub BOX_VEC,
57     perf,
58     "usage of `Box<Vec<T>>`, vector elements are already on the heap"
59 }
60
61 declare_clippy_lint! {
62     /// **What it does:** Checks for use of `Vec<Box<T>>` where T: Sized anywhere in the code.
63     ///
64     /// **Why is this bad?** `Vec` already keeps its contents in a separate area on
65     /// the heap. So if you `Box` its contents, you just add another level of indirection.
66     ///
67     /// **Known problems:** Vec<Box<T: Sized>> makes sense if T is a large type (see #3530,
68     /// 1st comment).
69     ///
70     /// **Example:**
71     /// ```rust
72     /// struct X {
73     ///     values: Vec<Box<i32>>,
74     /// }
75     /// ```
76     ///
77     /// Better:
78     ///
79     /// ```rust
80     /// struct X {
81     ///     values: Vec<i32>,
82     /// }
83     /// ```
84     pub VEC_BOX,
85     complexity,
86     "usage of `Vec<Box<T>>` where T: Sized, vector elements are already on the heap"
87 }
88
89 declare_clippy_lint! {
90     /// **What it does:** Checks for use of `Option<Option<_>>` in function signatures and type
91     /// definitions
92     ///
93     /// **Why is this bad?** `Option<_>` represents an optional value. `Option<Option<_>>`
94     /// represents an optional optional value which is logically the same thing as an optional
95     /// value but has an unneeded extra level of wrapping.
96     ///
97     /// **Known problems:** None.
98     ///
99     /// **Example**
100     /// ```rust
101     /// fn x() -> Option<Option<u32>> {
102     ///     None
103     /// }
104     /// ```
105     pub OPTION_OPTION,
106     complexity,
107     "usage of `Option<Option<T>>`"
108 }
109
110 declare_clippy_lint! {
111     /// **What it does:** Checks for usage of any `LinkedList`, suggesting to use a
112     /// `Vec` or a `VecDeque` (formerly called `RingBuf`).
113     ///
114     /// **Why is this bad?** Gankro says:
115     ///
116     /// > The TL;DR of `LinkedList` is that it's built on a massive amount of
117     /// pointers and indirection.
118     /// > It wastes memory, it has terrible cache locality, and is all-around slow.
119     /// `RingBuf`, while
120     /// > "only" amortized for push/pop, should be faster in the general case for
121     /// almost every possible
122     /// > workload, and isn't even amortized at all if you can predict the capacity
123     /// you need.
124     /// >
125     /// > `LinkedList`s are only really good if you're doing a lot of merging or
126     /// splitting of lists.
127     /// > This is because they can just mangle some pointers instead of actually
128     /// copying the data. Even
129     /// > if you're doing a lot of insertion in the middle of the list, `RingBuf`
130     /// can still be better
131     /// > because of how expensive it is to seek to the middle of a `LinkedList`.
132     ///
133     /// **Known problems:** False positives – the instances where using a
134     /// `LinkedList` makes sense are few and far between, but they can still happen.
135     ///
136     /// **Example:**
137     /// ```rust
138     /// let x = LinkedList::new();
139     /// ```
140     pub LINKEDLIST,
141     pedantic,
142     "usage of LinkedList, usually a vector is faster, or a more specialized data structure like a VecDeque"
143 }
144
145 declare_clippy_lint! {
146     /// **What it does:** Checks for use of `&Box<T>` anywhere in the code.
147     ///
148     /// **Why is this bad?** Any `&Box<T>` can also be a `&T`, which is more
149     /// general.
150     ///
151     /// **Known problems:** None.
152     ///
153     /// **Example:**
154     /// ```rust,ignore
155     /// fn foo(bar: &Box<T>) { ... }
156     /// ```
157     ///
158     /// Better:
159     ///
160     /// ```rust,ignore
161     /// fn foo(bar: &T) { ... }
162     /// ```
163     pub BORROWED_BOX,
164     complexity,
165     "a borrow of a boxed type"
166 }
167
168 impl LintPass for TypePass {
169     fn get_lints(&self) -> LintArray {
170         lint_array!(BOX_VEC, VEC_BOX, OPTION_OPTION, LINKEDLIST, BORROWED_BOX)
171     }
172
173     fn name(&self) -> &'static str {
174         "Types"
175     }
176 }
177
178 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for TypePass {
179     fn check_fn(&mut self, cx: &LateContext<'_, '_>, _: FnKind<'_>, decl: &FnDecl, _: &Body, _: Span, id: HirId) {
180         // Skip trait implementations; see issue #605.
181         if let Some(hir::Node::Item(item)) = cx.tcx.hir().find_by_hir_id(cx.tcx.hir().get_parent_item(id)) {
182             if let ItemKind::Impl(_, _, _, _, Some(..), _, _) = item.node {
183                 return;
184             }
185         }
186
187         check_fn_decl(cx, decl);
188     }
189
190     fn check_struct_field(&mut self, cx: &LateContext<'_, '_>, field: &hir::StructField) {
191         check_ty(cx, &field.ty, false);
192     }
193
194     fn check_trait_item(&mut self, cx: &LateContext<'_, '_>, item: &TraitItem) {
195         match item.node {
196             TraitItemKind::Const(ref ty, _) | TraitItemKind::Type(_, Some(ref ty)) => check_ty(cx, ty, false),
197             TraitItemKind::Method(ref sig, _) => check_fn_decl(cx, &sig.decl),
198             _ => (),
199         }
200     }
201
202     fn check_local(&mut self, cx: &LateContext<'_, '_>, local: &Local) {
203         if let Some(ref ty) = local.ty {
204             check_ty(cx, ty, true);
205         }
206     }
207 }
208
209 fn check_fn_decl(cx: &LateContext<'_, '_>, decl: &FnDecl) {
210     for input in &decl.inputs {
211         check_ty(cx, input, false);
212     }
213
214     if let FunctionRetTy::Return(ref ty) = decl.output {
215         check_ty(cx, ty, false);
216     }
217 }
218
219 /// Checks if `qpath` has last segment with type parameter matching `path`
220 fn match_type_parameter(cx: &LateContext<'_, '_>, qpath: &QPath, path: &[&str]) -> bool {
221     let last = last_path_segment(qpath);
222     if_chain! {
223         if let Some(ref params) = last.args;
224         if !params.parenthesized;
225         if let Some(ty) = params.args.iter().find_map(|arg| match arg {
226             GenericArg::Type(ty) => Some(ty),
227             _ => None,
228         });
229         if let TyKind::Path(ref qpath) = ty.node;
230         if let Some(did) = cx.tables.qpath_def(qpath, ty.hir_id).opt_def_id();
231         if cx.match_def_path(did, path);
232         then {
233             return true;
234         }
235     }
236     false
237 }
238
239 /// Recursively check for `TypePass` lints in the given type. Stop at the first
240 /// lint found.
241 ///
242 /// The parameter `is_local` distinguishes the context of the type; types from
243 /// local bindings should only be checked for the `BORROWED_BOX` lint.
244 #[allow(clippy::too_many_lines)]
245 fn check_ty(cx: &LateContext<'_, '_>, hir_ty: &hir::Ty, is_local: bool) {
246     if in_macro(hir_ty.span) {
247         return;
248     }
249     match hir_ty.node {
250         TyKind::Path(ref qpath) if !is_local => {
251             let hir_id = hir_ty.hir_id;
252             let def = cx.tables.qpath_def(qpath, hir_id);
253             if let Some(def_id) = def.opt_def_id() {
254                 if Some(def_id) == cx.tcx.lang_items().owned_box() {
255                     if match_type_parameter(cx, qpath, &paths::VEC) {
256                         span_help_and_lint(
257                             cx,
258                             BOX_VEC,
259                             hir_ty.span,
260                             "you seem to be trying to use `Box<Vec<T>>`. Consider using just `Vec<T>`",
261                             "`Vec<T>` is already on the heap, `Box<Vec<T>>` makes an extra allocation.",
262                         );
263                         return; // don't recurse into the type
264                     }
265                 } else if cx.match_def_path(def_id, &paths::VEC) {
266                     if_chain! {
267                         // Get the _ part of Vec<_>
268                         if let Some(ref last) = last_path_segment(qpath).args;
269                         if let Some(ty) = last.args.iter().find_map(|arg| match arg {
270                             GenericArg::Type(ty) => Some(ty),
271                             _ => None,
272                         });
273                         // ty is now _ at this point
274                         if let TyKind::Path(ref ty_qpath) = ty.node;
275                         let def = cx.tables.qpath_def(ty_qpath, ty.hir_id);
276                         if let Some(def_id) = def.opt_def_id();
277                         if Some(def_id) == cx.tcx.lang_items().owned_box();
278                         // At this point, we know ty is Box<T>, now get T
279                         if let Some(ref last) = last_path_segment(ty_qpath).args;
280                         if let Some(boxed_ty) = last.args.iter().find_map(|arg| match arg {
281                             GenericArg::Type(ty) => Some(ty),
282                             _ => None,
283                         });
284                         then {
285                             let ty_ty = hir_ty_to_ty(cx.tcx, boxed_ty);
286                             if ty_ty.is_sized(cx.tcx.at(ty.span), cx.param_env) {
287                                 span_lint_and_sugg(
288                                     cx,
289                                     VEC_BOX,
290                                     hir_ty.span,
291                                     "`Vec<T>` is already on the heap, the boxing is unnecessary.",
292                                     "try",
293                                     format!("Vec<{}>", ty_ty),
294                                     Applicability::MachineApplicable,
295                                 );
296                                 return; // don't recurse into the type
297                             }
298                         }
299                     }
300                 } else if cx.match_def_path(def_id, &paths::OPTION) {
301                     if match_type_parameter(cx, qpath, &paths::OPTION) {
302                         span_lint(
303                             cx,
304                             OPTION_OPTION,
305                             hir_ty.span,
306                             "consider using `Option<T>` instead of `Option<Option<T>>` or a custom \
307                              enum if you need to distinguish all 3 cases",
308                         );
309                         return; // don't recurse into the type
310                     }
311                 } else if cx.match_def_path(def_id, &paths::LINKED_LIST) {
312                     span_help_and_lint(
313                         cx,
314                         LINKEDLIST,
315                         hir_ty.span,
316                         "I see you're using a LinkedList! Perhaps you meant some other data structure?",
317                         "a VecDeque might work",
318                     );
319                     return; // don't recurse into the type
320                 }
321             }
322             match *qpath {
323                 QPath::Resolved(Some(ref ty), ref p) => {
324                     check_ty(cx, ty, is_local);
325                     for ty in p.segments.iter().flat_map(|seg| {
326                         seg.args
327                             .as_ref()
328                             .map_or_else(|| [].iter(), |params| params.args.iter())
329                             .filter_map(|arg| match arg {
330                                 GenericArg::Type(ty) => Some(ty),
331                                 _ => None,
332                             })
333                     }) {
334                         check_ty(cx, ty, is_local);
335                     }
336                 },
337                 QPath::Resolved(None, ref p) => {
338                     for ty in p.segments.iter().flat_map(|seg| {
339                         seg.args
340                             .as_ref()
341                             .map_or_else(|| [].iter(), |params| params.args.iter())
342                             .filter_map(|arg| match arg {
343                                 GenericArg::Type(ty) => Some(ty),
344                                 _ => None,
345                             })
346                     }) {
347                         check_ty(cx, ty, is_local);
348                     }
349                 },
350                 QPath::TypeRelative(ref ty, ref seg) => {
351                     check_ty(cx, ty, is_local);
352                     if let Some(ref params) = seg.args {
353                         for ty in params.args.iter().filter_map(|arg| match arg {
354                             GenericArg::Type(ty) => Some(ty),
355                             _ => None,
356                         }) {
357                             check_ty(cx, ty, is_local);
358                         }
359                     }
360                 },
361             }
362         },
363         TyKind::Rptr(ref lt, ref mut_ty) => check_ty_rptr(cx, hir_ty, is_local, lt, mut_ty),
364         // recurse
365         TyKind::Slice(ref ty) | TyKind::Array(ref ty, _) | TyKind::Ptr(MutTy { ref ty, .. }) => {
366             check_ty(cx, ty, is_local)
367         },
368         TyKind::Tup(ref tys) => {
369             for ty in tys {
370                 check_ty(cx, ty, is_local);
371             }
372         },
373         _ => {},
374     }
375 }
376
377 fn check_ty_rptr(cx: &LateContext<'_, '_>, hir_ty: &hir::Ty, is_local: bool, lt: &Lifetime, mut_ty: &MutTy) {
378     match mut_ty.ty.node {
379         TyKind::Path(ref qpath) => {
380             let hir_id = mut_ty.ty.hir_id;
381             let def = cx.tables.qpath_def(qpath, hir_id);
382             if_chain! {
383                 if let Some(def_id) = def.opt_def_id();
384                 if Some(def_id) == cx.tcx.lang_items().owned_box();
385                 if let QPath::Resolved(None, ref path) = *qpath;
386                 if let [ref bx] = *path.segments;
387                 if let Some(ref params) = bx.args;
388                 if !params.parenthesized;
389                 if let Some(inner) = params.args.iter().find_map(|arg| match arg {
390                     GenericArg::Type(ty) => Some(ty),
391                     _ => None,
392                 });
393                 then {
394                     if is_any_trait(inner) {
395                         // Ignore `Box<Any>` types; see issue #1884 for details.
396                         return;
397                     }
398
399                     let ltopt = if lt.is_elided() {
400                         String::new()
401                     } else {
402                         format!("{} ", lt.name.ident().as_str())
403                     };
404                     let mutopt = if mut_ty.mutbl == Mutability::MutMutable {
405                         "mut "
406                     } else {
407                         ""
408                     };
409                     let mut applicability = Applicability::MachineApplicable;
410                     span_lint_and_sugg(
411                         cx,
412                         BORROWED_BOX,
413                         hir_ty.span,
414                         "you seem to be trying to use `&Box<T>`. Consider using just `&T`",
415                         "try",
416                         format!(
417                             "&{}{}{}",
418                             ltopt,
419                             mutopt,
420                             &snippet_with_applicability(cx, inner.span, "..", &mut applicability)
421                         ),
422                         Applicability::Unspecified,
423                     );
424                     return; // don't recurse into the type
425                 }
426             };
427             check_ty(cx, &mut_ty.ty, is_local);
428         },
429         _ => check_ty(cx, &mut_ty.ty, is_local),
430     }
431 }
432
433 // Returns true if given type is `Any` trait.
434 fn is_any_trait(t: &hir::Ty) -> bool {
435     if_chain! {
436         if let TyKind::TraitObject(ref traits, _) = t.node;
437         if traits.len() >= 1;
438         // Only Send/Sync can be used as additional traits, so it is enough to
439         // check only the first trait.
440         if match_path(&traits[0].trait_ref.path, &paths::ANY_TRAIT);
441         then {
442             return true;
443         }
444     }
445
446     false
447 }
448
449 pub struct LetPass;
450
451 declare_clippy_lint! {
452     /// **What it does:** Checks for binding a unit value.
453     ///
454     /// **Why is this bad?** A unit value cannot usefully be used anywhere. So
455     /// binding one is kind of pointless.
456     ///
457     /// **Known problems:** None.
458     ///
459     /// **Example:**
460     /// ```rust
461     /// let x = {
462     ///     1;
463     /// };
464     /// ```
465     pub LET_UNIT_VALUE,
466     style,
467     "creating a let binding to a value of unit type, which usually can't be used afterwards"
468 }
469
470 impl LintPass for LetPass {
471     fn get_lints(&self) -> LintArray {
472         lint_array!(LET_UNIT_VALUE)
473     }
474
475     fn name(&self) -> &'static str {
476         "LetUnitValue"
477     }
478 }
479
480 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for LetPass {
481     fn check_stmt(&mut self, cx: &LateContext<'a, 'tcx>, stmt: &'tcx Stmt) {
482         if let StmtKind::Local(ref local) = stmt.node {
483             if is_unit(cx.tables.pat_ty(&local.pat)) {
484                 if in_external_macro(cx.sess(), stmt.span) || in_macro(local.pat.span) {
485                     return;
486                 }
487                 if higher::is_from_for_desugar(local) {
488                     return;
489                 }
490                 span_lint(
491                     cx,
492                     LET_UNIT_VALUE,
493                     stmt.span,
494                     &format!(
495                         "this let-binding has unit value. Consider omitting `let {} =`",
496                         snippet(cx, local.pat.span, "..")
497                     ),
498                 );
499             }
500         }
501     }
502 }
503
504 declare_clippy_lint! {
505     /// **What it does:** Checks for comparisons to unit.
506     ///
507     /// **Why is this bad?** Unit is always equal to itself, and thus is just a
508     /// clumsily written constant. Mostly this happens when someone accidentally
509     /// adds semicolons at the end of the operands.
510     ///
511     /// **Known problems:** None.
512     ///
513     /// **Example:**
514     /// ```rust
515     /// # fn foo() {};
516     /// # fn bar() {};
517     /// # fn baz() {};
518     /// if {
519     ///     foo();
520     /// } == {
521     ///     bar();
522     /// } {
523     ///     baz();
524     /// }
525     /// ```
526     /// is equal to
527     /// ```rust
528     /// # fn foo() {};
529     /// # fn bar() {};
530     /// # fn baz() {};
531     /// {
532     ///     foo();
533     ///     bar();
534     ///     baz();
535     /// }
536     /// ```
537     pub UNIT_CMP,
538     correctness,
539     "comparing unit values"
540 }
541
542 pub struct UnitCmp;
543
544 impl LintPass for UnitCmp {
545     fn get_lints(&self) -> LintArray {
546         lint_array!(UNIT_CMP)
547     }
548
549     fn name(&self) -> &'static str {
550         "UnicCmp"
551     }
552 }
553
554 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UnitCmp {
555     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
556         if in_macro(expr.span) {
557             return;
558         }
559         if let ExprKind::Binary(ref cmp, ref left, _) = expr.node {
560             let op = cmp.node;
561             if op.is_comparison() && is_unit(cx.tables.expr_ty(left)) {
562                 let result = match op {
563                     BinOpKind::Eq | BinOpKind::Le | BinOpKind::Ge => "true",
564                     _ => "false",
565                 };
566                 span_lint(
567                     cx,
568                     UNIT_CMP,
569                     expr.span,
570                     &format!(
571                         "{}-comparison of unit values detected. This will always be {}",
572                         op.as_str(),
573                         result
574                     ),
575                 );
576             }
577         }
578     }
579 }
580
581 declare_clippy_lint! {
582     /// **What it does:** Checks for passing a unit value as an argument to a function without using a
583     /// unit literal (`()`).
584     ///
585     /// **Why is this bad?** This is likely the result of an accidental semicolon.
586     ///
587     /// **Known problems:** None.
588     ///
589     /// **Example:**
590     /// ```rust
591     /// foo({
592     ///     let a = bar();
593     ///     baz(a);
594     /// })
595     /// ```
596     pub UNIT_ARG,
597     complexity,
598     "passing unit to a function"
599 }
600
601 pub struct UnitArg;
602
603 impl LintPass for UnitArg {
604     fn get_lints(&self) -> LintArray {
605         lint_array!(UNIT_ARG)
606     }
607
608     fn name(&self) -> &'static str {
609         "UnitArg"
610     }
611 }
612
613 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UnitArg {
614     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
615         if in_macro(expr.span) {
616             return;
617         }
618
619         // apparently stuff in the desugaring of `?` can trigger this
620         // so check for that here
621         // only the calls to `Try::from_error` is marked as desugared,
622         // so we need to check both the current Expr and its parent.
623         if is_questionmark_desugar_marked_call(expr) {
624             return;
625         }
626         if_chain! {
627             let map = &cx.tcx.hir();
628             let opt_parent_node = map.find_by_hir_id(map.get_parent_node_by_hir_id(expr.hir_id));
629             if let Some(hir::Node::Expr(parent_expr)) = opt_parent_node;
630             if is_questionmark_desugar_marked_call(parent_expr);
631             then {
632                 return;
633             }
634         }
635
636         match expr.node {
637             ExprKind::Call(_, ref args) | ExprKind::MethodCall(_, _, ref args) => {
638                 for arg in args {
639                     if is_unit(cx.tables.expr_ty(arg)) && !is_unit_literal(arg) {
640                         if let ExprKind::Match(.., match_source) = &arg.node {
641                             if *match_source == MatchSource::TryDesugar {
642                                 continue;
643                             }
644                         }
645
646                         span_lint_and_sugg(
647                             cx,
648                             UNIT_ARG,
649                             arg.span,
650                             "passing a unit value to a function",
651                             "if you intended to pass a unit value, use a unit literal instead",
652                             "()".to_string(),
653                             Applicability::MachineApplicable,
654                         );
655                     }
656                 }
657             },
658             _ => (),
659         }
660     }
661 }
662
663 fn is_questionmark_desugar_marked_call(expr: &Expr) -> bool {
664     use syntax_pos::hygiene::CompilerDesugaringKind;
665     if let ExprKind::Call(ref callee, _) = expr.node {
666         callee.span.is_compiler_desugaring(CompilerDesugaringKind::QuestionMark)
667     } else {
668         false
669     }
670 }
671
672 fn is_unit(ty: Ty<'_>) -> bool {
673     match ty.sty {
674         ty::Tuple(slice) if slice.is_empty() => true,
675         _ => false,
676     }
677 }
678
679 fn is_unit_literal(expr: &Expr) -> bool {
680     match expr.node {
681         ExprKind::Tup(ref slice) if slice.is_empty() => true,
682         _ => false,
683     }
684 }
685
686 pub struct CastPass;
687
688 declare_clippy_lint! {
689     /// **What it does:** Checks for casts from any numerical to a float type where
690     /// the receiving type cannot store all values from the original type without
691     /// rounding errors. This possible rounding is to be expected, so this lint is
692     /// `Allow` by default.
693     ///
694     /// Basically, this warns on casting any integer with 32 or more bits to `f32`
695     /// or any 64-bit integer to `f64`.
696     ///
697     /// **Why is this bad?** It's not bad at all. But in some applications it can be
698     /// helpful to know where precision loss can take place. This lint can help find
699     /// those places in the code.
700     ///
701     /// **Known problems:** None.
702     ///
703     /// **Example:**
704     /// ```rust
705     /// let x = u64::MAX;
706     /// x as f64
707     /// ```
708     pub CAST_PRECISION_LOSS,
709     pedantic,
710     "casts that cause loss of precision, e.g., `x as f32` where `x: u64`"
711 }
712
713 declare_clippy_lint! {
714     /// **What it does:** Checks for casts from a signed to an unsigned numerical
715     /// type. In this case, negative values wrap around to large positive values,
716     /// which can be quite surprising in practice. However, as the cast works as
717     /// defined, this lint is `Allow` by default.
718     ///
719     /// **Why is this bad?** Possibly surprising results. You can activate this lint
720     /// as a one-time check to see where numerical wrapping can arise.
721     ///
722     /// **Known problems:** None.
723     ///
724     /// **Example:**
725     /// ```rust
726     /// let y: i8 = -1;
727     /// y as u128 // will return 18446744073709551615
728     /// ```
729     pub CAST_SIGN_LOSS,
730     pedantic,
731     "casts from signed types to unsigned types, e.g., `x as u32` where `x: i32`"
732 }
733
734 declare_clippy_lint! {
735     /// **What it does:** Checks for on casts between numerical types that may
736     /// truncate large values. This is expected behavior, so the cast is `Allow` by
737     /// default.
738     ///
739     /// **Why is this bad?** In some problem domains, it is good practice to avoid
740     /// truncation. This lint can be activated to help assess where additional
741     /// checks could be beneficial.
742     ///
743     /// **Known problems:** None.
744     ///
745     /// **Example:**
746     /// ```rust
747     /// fn as_u8(x: u64) -> u8 {
748     ///     x as u8
749     /// }
750     /// ```
751     pub CAST_POSSIBLE_TRUNCATION,
752     pedantic,
753     "casts that may cause truncation of the value, e.g., `x as u8` where `x: u32`, or `x as i32` where `x: f32`"
754 }
755
756 declare_clippy_lint! {
757     /// **What it does:** Checks for casts from an unsigned type to a signed type of
758     /// the same size. Performing such a cast is a 'no-op' for the compiler,
759     /// i.e., nothing is changed at the bit level, and the binary representation of
760     /// the value is reinterpreted. This can cause wrapping if the value is too big
761     /// for the target signed type. However, the cast works as defined, so this lint
762     /// is `Allow` by default.
763     ///
764     /// **Why is this bad?** While such a cast is not bad in itself, the results can
765     /// be surprising when this is not the intended behavior, as demonstrated by the
766     /// example below.
767     ///
768     /// **Known problems:** None.
769     ///
770     /// **Example:**
771     /// ```rust
772     /// u32::MAX as i32 // will yield a value of `-1`
773     /// ```
774     pub CAST_POSSIBLE_WRAP,
775     pedantic,
776     "casts that may cause wrapping around the value, e.g., `x as i32` where `x: u32` and `x > i32::MAX`"
777 }
778
779 declare_clippy_lint! {
780     /// **What it does:** Checks for on casts between numerical types that may
781     /// be replaced by safe conversion functions.
782     ///
783     /// **Why is this bad?** Rust's `as` keyword will perform many kinds of
784     /// conversions, including silently lossy conversions. Conversion functions such
785     /// as `i32::from` will only perform lossless conversions. Using the conversion
786     /// functions prevents conversions from turning into silent lossy conversions if
787     /// the types of the input expressions ever change, and make it easier for
788     /// people reading the code to know that the conversion is lossless.
789     ///
790     /// **Known problems:** None.
791     ///
792     /// **Example:**
793     /// ```rust
794     /// fn as_u64(x: u8) -> u64 {
795     ///     x as u64
796     /// }
797     /// ```
798     ///
799     /// Using `::from` would look like this:
800     ///
801     /// ```rust
802     /// fn as_u64(x: u8) -> u64 {
803     ///     u64::from(x)
804     /// }
805     /// ```
806     pub CAST_LOSSLESS,
807     complexity,
808     "casts using `as` that are known to be lossless, e.g., `x as u64` where `x: u8`"
809 }
810
811 declare_clippy_lint! {
812     /// **What it does:** Checks for casts to the same type.
813     ///
814     /// **Why is this bad?** It's just unnecessary.
815     ///
816     /// **Known problems:** None.
817     ///
818     /// **Example:**
819     /// ```rust
820     /// let _ = 2i32 as i32
821     /// ```
822     pub UNNECESSARY_CAST,
823     complexity,
824     "cast to the same type, e.g., `x as i32` where `x: i32`"
825 }
826
827 declare_clippy_lint! {
828     /// **What it does:** Checks for casts from a less-strictly-aligned pointer to a
829     /// more-strictly-aligned pointer
830     ///
831     /// **Why is this bad?** Dereferencing the resulting pointer may be undefined
832     /// behavior.
833     ///
834     /// **Known problems:** None.
835     ///
836     /// **Example:**
837     /// ```rust
838     /// let _ = (&1u8 as *const u8) as *const u16;
839     /// let _ = (&mut 1u8 as *mut u8) as *mut u16;
840     /// ```
841     pub CAST_PTR_ALIGNMENT,
842     correctness,
843     "cast from a pointer to a more-strictly-aligned pointer"
844 }
845
846 declare_clippy_lint! {
847     /// **What it does:** Checks for casts of function pointers to something other than usize
848     ///
849     /// **Why is this bad?**
850     /// Casting a function pointer to anything other than usize/isize is not portable across
851     /// architectures, because you end up losing bits if the target type is too small or end up with a
852     /// bunch of extra bits that waste space and add more instructions to the final binary than
853     /// strictly necessary for the problem
854     ///
855     /// Casting to isize also doesn't make sense since there are no signed addresses.
856     ///
857     /// **Example**
858     ///
859     /// ```rust
860     /// // Bad
861     /// fn fun() -> i32 { 1 }
862     /// let a = fun as i64;
863     ///
864     /// // Good
865     /// fn fun2() -> i32 { 1 }
866     /// let a = fun2 as usize;
867     /// ```
868     pub FN_TO_NUMERIC_CAST,
869     style,
870     "casting a function pointer to a numeric type other than usize"
871 }
872
873 declare_clippy_lint! {
874     /// **What it does:** Checks for casts of a function pointer to a numeric type not wide enough to
875     /// store address.
876     ///
877     /// **Why is this bad?**
878     /// Such a cast discards some bits of the function's address. If this is intended, it would be more
879     /// clearly expressed by casting to usize first, then casting the usize to the intended type (with
880     /// a comment) to perform the truncation.
881     ///
882     /// **Example**
883     ///
884     /// ```rust
885     /// // Bad
886     /// fn fn1() -> i16 {
887     ///     1
888     /// };
889     /// let _ = fn1 as i32;
890     ///
891     /// // Better: Cast to usize first, then comment with the reason for the truncation
892     /// fn fn2() -> i16 {
893     ///     1
894     /// };
895     /// let fn_ptr = fn2 as usize;
896     /// let fn_ptr_truncated = fn_ptr as i32;
897     /// ```
898     pub FN_TO_NUMERIC_CAST_WITH_TRUNCATION,
899     style,
900     "casting a function pointer to a numeric type not wide enough to store the address"
901 }
902
903 /// Returns the size in bits of an integral type.
904 /// Will return 0 if the type is not an int or uint variant
905 fn int_ty_to_nbits(typ: Ty<'_>, tcx: TyCtxt<'_, '_, '_>) -> u64 {
906     match typ.sty {
907         ty::Int(i) => match i {
908             IntTy::Isize => tcx.data_layout.pointer_size.bits(),
909             IntTy::I8 => 8,
910             IntTy::I16 => 16,
911             IntTy::I32 => 32,
912             IntTy::I64 => 64,
913             IntTy::I128 => 128,
914         },
915         ty::Uint(i) => match i {
916             UintTy::Usize => tcx.data_layout.pointer_size.bits(),
917             UintTy::U8 => 8,
918             UintTy::U16 => 16,
919             UintTy::U32 => 32,
920             UintTy::U64 => 64,
921             UintTy::U128 => 128,
922         },
923         _ => 0,
924     }
925 }
926
927 fn is_isize_or_usize(typ: Ty<'_>) -> bool {
928     match typ.sty {
929         ty::Int(IntTy::Isize) | ty::Uint(UintTy::Usize) => true,
930         _ => false,
931     }
932 }
933
934 fn span_precision_loss_lint(cx: &LateContext<'_, '_>, expr: &Expr, cast_from: Ty<'_>, cast_to_f64: bool) {
935     let mantissa_nbits = if cast_to_f64 { 52 } else { 23 };
936     let arch_dependent = is_isize_or_usize(cast_from) && cast_to_f64;
937     let arch_dependent_str = "on targets with 64-bit wide pointers ";
938     let from_nbits_str = if arch_dependent {
939         "64".to_owned()
940     } else if is_isize_or_usize(cast_from) {
941         "32 or 64".to_owned()
942     } else {
943         int_ty_to_nbits(cast_from, cx.tcx).to_string()
944     };
945     span_lint(
946         cx,
947         CAST_PRECISION_LOSS,
948         expr.span,
949         &format!(
950             "casting {0} to {1} causes a loss of precision {2}({0} is {3} bits wide, but {1}'s mantissa \
951              is only {4} bits wide)",
952             cast_from,
953             if cast_to_f64 { "f64" } else { "f32" },
954             if arch_dependent { arch_dependent_str } else { "" },
955             from_nbits_str,
956             mantissa_nbits
957         ),
958     );
959 }
960
961 fn should_strip_parens(op: &Expr, snip: &str) -> bool {
962     if let ExprKind::Binary(_, _, _) = op.node {
963         if snip.starts_with('(') && snip.ends_with(')') {
964             return true;
965         }
966     }
967     false
968 }
969
970 fn span_lossless_lint(cx: &LateContext<'_, '_>, expr: &Expr, op: &Expr, cast_from: Ty<'_>, cast_to: Ty<'_>) {
971     // Do not suggest using From in consts/statics until it is valid to do so (see #2267).
972     if in_constant(cx, expr.hir_id) {
973         return;
974     }
975     // The suggestion is to use a function call, so if the original expression
976     // has parens on the outside, they are no longer needed.
977     let mut applicability = Applicability::MachineApplicable;
978     let opt = snippet_opt(cx, op.span);
979     let sugg = if let Some(ref snip) = opt {
980         if should_strip_parens(op, snip) {
981             &snip[1..snip.len() - 1]
982         } else {
983             snip.as_str()
984         }
985     } else {
986         applicability = Applicability::HasPlaceholders;
987         ".."
988     };
989
990     span_lint_and_sugg(
991         cx,
992         CAST_LOSSLESS,
993         expr.span,
994         &format!(
995             "casting {} to {} may become silently lossy if types change",
996             cast_from, cast_to
997         ),
998         "try",
999         format!("{}::from({})", cast_to, sugg),
1000         applicability,
1001     );
1002 }
1003
1004 enum ArchSuffix {
1005     _32,
1006     _64,
1007     None,
1008 }
1009
1010 fn check_loss_of_sign(cx: &LateContext<'_, '_>, expr: &Expr, op: &Expr, cast_from: Ty<'_>, cast_to: Ty<'_>) {
1011     if !cast_from.is_signed() || cast_to.is_signed() {
1012         return;
1013     }
1014
1015     // don't lint for positive constants
1016     let const_val = constant(cx, &cx.tables, op);
1017     if_chain! {
1018         if let Some((const_val, _)) = const_val;
1019         if let Constant::Int(n) = const_val;
1020         if let ty::Int(ity) = cast_from.sty;
1021         if sext(cx.tcx, n, ity) >= 0;
1022         then {
1023             return
1024         }
1025     }
1026
1027     span_lint(
1028         cx,
1029         CAST_SIGN_LOSS,
1030         expr.span,
1031         &format!("casting {} to {} may lose the sign of the value", cast_from, cast_to),
1032     );
1033 }
1034
1035 fn check_truncation_and_wrapping(cx: &LateContext<'_, '_>, expr: &Expr, cast_from: Ty<'_>, cast_to: Ty<'_>) {
1036     let arch_64_suffix = " on targets with 64-bit wide pointers";
1037     let arch_32_suffix = " on targets with 32-bit wide pointers";
1038     let cast_unsigned_to_signed = !cast_from.is_signed() && cast_to.is_signed();
1039     let from_nbits = int_ty_to_nbits(cast_from, cx.tcx);
1040     let to_nbits = int_ty_to_nbits(cast_to, cx.tcx);
1041     let (span_truncation, suffix_truncation, span_wrap, suffix_wrap) =
1042         match (is_isize_or_usize(cast_from), is_isize_or_usize(cast_to)) {
1043             (true, true) | (false, false) => (
1044                 to_nbits < from_nbits,
1045                 ArchSuffix::None,
1046                 to_nbits == from_nbits && cast_unsigned_to_signed,
1047                 ArchSuffix::None,
1048             ),
1049             (true, false) => (
1050                 to_nbits <= 32,
1051                 if to_nbits == 32 {
1052                     ArchSuffix::_64
1053                 } else {
1054                     ArchSuffix::None
1055                 },
1056                 to_nbits <= 32 && cast_unsigned_to_signed,
1057                 ArchSuffix::_32,
1058             ),
1059             (false, true) => (
1060                 from_nbits == 64,
1061                 ArchSuffix::_32,
1062                 cast_unsigned_to_signed,
1063                 if from_nbits == 64 {
1064                     ArchSuffix::_64
1065                 } else {
1066                     ArchSuffix::_32
1067                 },
1068             ),
1069         };
1070     if span_truncation {
1071         span_lint(
1072             cx,
1073             CAST_POSSIBLE_TRUNCATION,
1074             expr.span,
1075             &format!(
1076                 "casting {} to {} may truncate the value{}",
1077                 cast_from,
1078                 cast_to,
1079                 match suffix_truncation {
1080                     ArchSuffix::_32 => arch_32_suffix,
1081                     ArchSuffix::_64 => arch_64_suffix,
1082                     ArchSuffix::None => "",
1083                 }
1084             ),
1085         );
1086     }
1087     if span_wrap {
1088         span_lint(
1089             cx,
1090             CAST_POSSIBLE_WRAP,
1091             expr.span,
1092             &format!(
1093                 "casting {} to {} may wrap around the value{}",
1094                 cast_from,
1095                 cast_to,
1096                 match suffix_wrap {
1097                     ArchSuffix::_32 => arch_32_suffix,
1098                     ArchSuffix::_64 => arch_64_suffix,
1099                     ArchSuffix::None => "",
1100                 }
1101             ),
1102         );
1103     }
1104 }
1105
1106 fn check_lossless(cx: &LateContext<'_, '_>, expr: &Expr, op: &Expr, cast_from: Ty<'_>, cast_to: Ty<'_>) {
1107     let cast_signed_to_unsigned = cast_from.is_signed() && !cast_to.is_signed();
1108     let from_nbits = int_ty_to_nbits(cast_from, cx.tcx);
1109     let to_nbits = int_ty_to_nbits(cast_to, cx.tcx);
1110     if !is_isize_or_usize(cast_from) && !is_isize_or_usize(cast_to) && from_nbits < to_nbits && !cast_signed_to_unsigned
1111     {
1112         span_lossless_lint(cx, expr, op, cast_from, cast_to);
1113     }
1114 }
1115
1116 impl LintPass for CastPass {
1117     fn get_lints(&self) -> LintArray {
1118         lint_array!(
1119             CAST_PRECISION_LOSS,
1120             CAST_SIGN_LOSS,
1121             CAST_POSSIBLE_TRUNCATION,
1122             CAST_POSSIBLE_WRAP,
1123             CAST_LOSSLESS,
1124             UNNECESSARY_CAST,
1125             CAST_PTR_ALIGNMENT,
1126             FN_TO_NUMERIC_CAST,
1127             FN_TO_NUMERIC_CAST_WITH_TRUNCATION,
1128         )
1129     }
1130
1131     fn name(&self) -> &'static str {
1132         "Casts"
1133     }
1134 }
1135
1136 // Check if the given type is either `core::ffi::c_void` or
1137 // one of the platform specific `libc::<platform>::c_void` of libc.
1138 fn is_c_void(cx: &LateContext<'_, '_>, ty: Ty<'_>) -> bool {
1139     if let ty::Adt(adt, _) = ty.sty {
1140         let names = cx.get_def_path(adt.did);
1141
1142         if names.is_empty() {
1143             return false;
1144         }
1145         if names[0] == "libc" || names[0] == "core" && *names.last().unwrap() == "c_void" {
1146             return true;
1147         }
1148     }
1149     false
1150 }
1151
1152 /// Returns the mantissa bits wide of a fp type.
1153 /// Will return 0 if the type is not a fp
1154 fn fp_ty_mantissa_nbits(typ: Ty<'_>) -> u32 {
1155     match typ.sty {
1156         ty::Float(FloatTy::F32) => 23,
1157         ty::Float(FloatTy::F64) | ty::Infer(InferTy::FloatVar(_)) => 52,
1158         _ => 0,
1159     }
1160 }
1161
1162 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for CastPass {
1163     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
1164         if let ExprKind::Cast(ref ex, _) = expr.node {
1165             let (cast_from, cast_to) = (cx.tables.expr_ty(ex), cx.tables.expr_ty(expr));
1166             lint_fn_to_numeric_cast(cx, expr, ex, cast_from, cast_to);
1167             if let ExprKind::Lit(ref lit) = ex.node {
1168                 use syntax::ast::{LitIntType, LitKind};
1169                 if let LitKind::Int(n, _) = lit.node {
1170                     if cast_to.is_fp() {
1171                         let from_nbits = 128 - n.leading_zeros();
1172                         let to_nbits = fp_ty_mantissa_nbits(cast_to);
1173                         if from_nbits != 0 && to_nbits != 0 && from_nbits <= to_nbits {
1174                             span_lint_and_sugg(
1175                                 cx,
1176                                 UNNECESSARY_CAST,
1177                                 expr.span,
1178                                 &format!("casting integer literal to {} is unnecessary", cast_to),
1179                                 "try",
1180                                 format!("{}_{}", n, cast_to),
1181                                 Applicability::MachineApplicable,
1182                             );
1183                             return;
1184                         }
1185                     }
1186                 }
1187                 match lit.node {
1188                     LitKind::Int(_, LitIntType::Unsuffixed) | LitKind::FloatUnsuffixed(_) => {},
1189                     _ => {
1190                         if cast_from.sty == cast_to.sty && !in_external_macro(cx.sess(), expr.span) {
1191                             span_lint(
1192                                 cx,
1193                                 UNNECESSARY_CAST,
1194                                 expr.span,
1195                                 &format!(
1196                                     "casting to the same type is unnecessary (`{}` -> `{}`)",
1197                                     cast_from, cast_to
1198                                 ),
1199                             );
1200                         }
1201                     },
1202                 }
1203             }
1204             if cast_from.is_numeric() && cast_to.is_numeric() && !in_external_macro(cx.sess(), expr.span) {
1205                 match (cast_from.is_integral(), cast_to.is_integral()) {
1206                     (true, false) => {
1207                         let from_nbits = int_ty_to_nbits(cast_from, cx.tcx);
1208                         let to_nbits = if let ty::Float(FloatTy::F32) = cast_to.sty {
1209                             32
1210                         } else {
1211                             64
1212                         };
1213                         if is_isize_or_usize(cast_from) || from_nbits >= to_nbits {
1214                             span_precision_loss_lint(cx, expr, cast_from, to_nbits == 64);
1215                         }
1216                         if from_nbits < to_nbits {
1217                             span_lossless_lint(cx, expr, ex, cast_from, cast_to);
1218                         }
1219                     },
1220                     (false, true) => {
1221                         span_lint(
1222                             cx,
1223                             CAST_POSSIBLE_TRUNCATION,
1224                             expr.span,
1225                             &format!("casting {} to {} may truncate the value", cast_from, cast_to),
1226                         );
1227                         if !cast_to.is_signed() {
1228                             span_lint(
1229                                 cx,
1230                                 CAST_SIGN_LOSS,
1231                                 expr.span,
1232                                 &format!("casting {} to {} may lose the sign of the value", cast_from, cast_to),
1233                             );
1234                         }
1235                     },
1236                     (true, true) => {
1237                         check_loss_of_sign(cx, expr, ex, cast_from, cast_to);
1238                         check_truncation_and_wrapping(cx, expr, cast_from, cast_to);
1239                         check_lossless(cx, expr, ex, cast_from, cast_to);
1240                     },
1241                     (false, false) => {
1242                         if let (&ty::Float(FloatTy::F64), &ty::Float(FloatTy::F32)) = (&cast_from.sty, &cast_to.sty) {
1243                             span_lint(
1244                                 cx,
1245                                 CAST_POSSIBLE_TRUNCATION,
1246                                 expr.span,
1247                                 "casting f64 to f32 may truncate the value",
1248                             );
1249                         }
1250                         if let (&ty::Float(FloatTy::F32), &ty::Float(FloatTy::F64)) = (&cast_from.sty, &cast_to.sty) {
1251                             span_lossless_lint(cx, expr, ex, cast_from, cast_to);
1252                         }
1253                     },
1254                 }
1255             }
1256
1257             if_chain! {
1258                 if let ty::RawPtr(from_ptr_ty) = &cast_from.sty;
1259                 if let ty::RawPtr(to_ptr_ty) = &cast_to.sty;
1260                 if let Some(from_align) = cx.layout_of(from_ptr_ty.ty).ok().map(|a| a.align.abi);
1261                 if let Some(to_align) = cx.layout_of(to_ptr_ty.ty).ok().map(|a| a.align.abi);
1262                 if from_align < to_align;
1263                 // with c_void, we inherently need to trust the user
1264                 if !is_c_void(cx, from_ptr_ty.ty);
1265                 then {
1266                     span_lint(
1267                         cx,
1268                         CAST_PTR_ALIGNMENT,
1269                         expr.span,
1270                         &format!("casting from `{}` to a more-strictly-aligned pointer (`{}`)", cast_from, cast_to)
1271                     );
1272                 }
1273             }
1274         }
1275     }
1276 }
1277
1278 fn lint_fn_to_numeric_cast(
1279     cx: &LateContext<'_, '_>,
1280     expr: &Expr,
1281     cast_expr: &Expr,
1282     cast_from: Ty<'_>,
1283     cast_to: Ty<'_>,
1284 ) {
1285     // We only want to check casts to `ty::Uint` or `ty::Int`
1286     match cast_to.sty {
1287         ty::Uint(_) | ty::Int(..) => { /* continue on */ },
1288         _ => return,
1289     }
1290     match cast_from.sty {
1291         ty::FnDef(..) | ty::FnPtr(_) => {
1292             let mut applicability = Applicability::MachineApplicable;
1293             let from_snippet = snippet_with_applicability(cx, cast_expr.span, "x", &mut applicability);
1294
1295             let to_nbits = int_ty_to_nbits(cast_to, cx.tcx);
1296             if to_nbits < cx.tcx.data_layout.pointer_size.bits() {
1297                 span_lint_and_sugg(
1298                     cx,
1299                     FN_TO_NUMERIC_CAST_WITH_TRUNCATION,
1300                     expr.span,
1301                     &format!(
1302                         "casting function pointer `{}` to `{}`, which truncates the value",
1303                         from_snippet, cast_to
1304                     ),
1305                     "try",
1306                     format!("{} as usize", from_snippet),
1307                     applicability,
1308                 );
1309             } else if cast_to.sty != ty::Uint(UintTy::Usize) {
1310                 span_lint_and_sugg(
1311                     cx,
1312                     FN_TO_NUMERIC_CAST,
1313                     expr.span,
1314                     &format!("casting function pointer `{}` to `{}`", from_snippet, cast_to),
1315                     "try",
1316                     format!("{} as usize", from_snippet),
1317                     applicability,
1318                 );
1319             }
1320         },
1321         _ => {},
1322     }
1323 }
1324
1325 declare_clippy_lint! {
1326     /// **What it does:** Checks for types used in structs, parameters and `let`
1327     /// declarations above a certain complexity threshold.
1328     ///
1329     /// **Why is this bad?** Too complex types make the code less readable. Consider
1330     /// using a `type` definition to simplify them.
1331     ///
1332     /// **Known problems:** None.
1333     ///
1334     /// **Example:**
1335     /// ```rust
1336     /// struct Foo {
1337     ///     inner: Rc<Vec<Vec<Box<(u32, u32, u32, u32)>>>>,
1338     /// }
1339     /// ```
1340     pub TYPE_COMPLEXITY,
1341     complexity,
1342     "usage of very complex types that might be better factored into `type` definitions"
1343 }
1344
1345 pub struct TypeComplexityPass {
1346     threshold: u64,
1347 }
1348
1349 impl TypeComplexityPass {
1350     pub fn new(threshold: u64) -> Self {
1351         Self { threshold }
1352     }
1353 }
1354
1355 impl LintPass for TypeComplexityPass {
1356     fn get_lints(&self) -> LintArray {
1357         lint_array!(TYPE_COMPLEXITY)
1358     }
1359
1360     fn name(&self) -> &'static str {
1361         "TypeComplexityPass"
1362     }
1363 }
1364
1365 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for TypeComplexityPass {
1366     fn check_fn(
1367         &mut self,
1368         cx: &LateContext<'a, 'tcx>,
1369         _: FnKind<'tcx>,
1370         decl: &'tcx FnDecl,
1371         _: &'tcx Body,
1372         _: Span,
1373         _: HirId,
1374     ) {
1375         self.check_fndecl(cx, decl);
1376     }
1377
1378     fn check_struct_field(&mut self, cx: &LateContext<'a, 'tcx>, field: &'tcx hir::StructField) {
1379         // enum variants are also struct fields now
1380         self.check_type(cx, &field.ty);
1381     }
1382
1383     fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx Item) {
1384         match item.node {
1385             ItemKind::Static(ref ty, _, _) | ItemKind::Const(ref ty, _) => self.check_type(cx, ty),
1386             // functions, enums, structs, impls and traits are covered
1387             _ => (),
1388         }
1389     }
1390
1391     fn check_trait_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx TraitItem) {
1392         match item.node {
1393             TraitItemKind::Const(ref ty, _) | TraitItemKind::Type(_, Some(ref ty)) => self.check_type(cx, ty),
1394             TraitItemKind::Method(MethodSig { ref decl, .. }, TraitMethod::Required(_)) => self.check_fndecl(cx, decl),
1395             // methods with default impl are covered by check_fn
1396             _ => (),
1397         }
1398     }
1399
1400     fn check_impl_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx ImplItem) {
1401         match item.node {
1402             ImplItemKind::Const(ref ty, _) | ImplItemKind::Type(ref ty) => self.check_type(cx, ty),
1403             // methods are covered by check_fn
1404             _ => (),
1405         }
1406     }
1407
1408     fn check_local(&mut self, cx: &LateContext<'a, 'tcx>, local: &'tcx Local) {
1409         if let Some(ref ty) = local.ty {
1410             self.check_type(cx, ty);
1411         }
1412     }
1413 }
1414
1415 impl<'a, 'tcx> TypeComplexityPass {
1416     fn check_fndecl(&self, cx: &LateContext<'a, 'tcx>, decl: &'tcx FnDecl) {
1417         for arg in &decl.inputs {
1418             self.check_type(cx, arg);
1419         }
1420         if let Return(ref ty) = decl.output {
1421             self.check_type(cx, ty);
1422         }
1423     }
1424
1425     fn check_type(&self, cx: &LateContext<'_, '_>, ty: &hir::Ty) {
1426         if in_macro(ty.span) {
1427             return;
1428         }
1429         let score = {
1430             let mut visitor = TypeComplexityVisitor { score: 0, nest: 1 };
1431             visitor.visit_ty(ty);
1432             visitor.score
1433         };
1434
1435         if score > self.threshold {
1436             span_lint(
1437                 cx,
1438                 TYPE_COMPLEXITY,
1439                 ty.span,
1440                 "very complex type used. Consider factoring parts into `type` definitions",
1441             );
1442         }
1443     }
1444 }
1445
1446 /// Walks a type and assigns a complexity score to it.
1447 struct TypeComplexityVisitor {
1448     /// total complexity score of the type
1449     score: u64,
1450     /// current nesting level
1451     nest: u64,
1452 }
1453
1454 impl<'tcx> Visitor<'tcx> for TypeComplexityVisitor {
1455     fn visit_ty(&mut self, ty: &'tcx hir::Ty) {
1456         let (add_score, sub_nest) = match ty.node {
1457             // _, &x and *x have only small overhead; don't mess with nesting level
1458             TyKind::Infer | TyKind::Ptr(..) | TyKind::Rptr(..) => (1, 0),
1459
1460             // the "normal" components of a type: named types, arrays/tuples
1461             TyKind::Path(..) | TyKind::Slice(..) | TyKind::Tup(..) | TyKind::Array(..) => (10 * self.nest, 1),
1462
1463             // function types bring a lot of overhead
1464             TyKind::BareFn(ref bare) if bare.abi == Abi::Rust => (50 * self.nest, 1),
1465
1466             TyKind::TraitObject(ref param_bounds, _) => {
1467                 let has_lifetime_parameters = param_bounds.iter().any(|bound| {
1468                     bound.bound_generic_params.iter().any(|gen| match gen.kind {
1469                         GenericParamKind::Lifetime { .. } => true,
1470                         _ => false,
1471                     })
1472                 });
1473                 if has_lifetime_parameters {
1474                     // complex trait bounds like A<'a, 'b>
1475                     (50 * self.nest, 1)
1476                 } else {
1477                     // simple trait bounds like A + B
1478                     (20 * self.nest, 0)
1479                 }
1480             },
1481
1482             _ => (0, 0),
1483         };
1484         self.score += add_score;
1485         self.nest += sub_nest;
1486         walk_ty(self, ty);
1487         self.nest -= sub_nest;
1488     }
1489     fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
1490         NestedVisitorMap::None
1491     }
1492 }
1493
1494 declare_clippy_lint! {
1495     /// **What it does:** Checks for expressions where a character literal is cast
1496     /// to `u8` and suggests using a byte literal instead.
1497     ///
1498     /// **Why is this bad?** In general, casting values to smaller types is
1499     /// error-prone and should be avoided where possible. In the particular case of
1500     /// converting a character literal to u8, it is easy to avoid by just using a
1501     /// byte literal instead. As an added bonus, `b'a'` is even slightly shorter
1502     /// than `'a' as u8`.
1503     ///
1504     /// **Known problems:** None.
1505     ///
1506     /// **Example:**
1507     /// ```rust
1508     /// 'x' as u8
1509     /// ```
1510     ///
1511     /// A better version, using the byte literal:
1512     ///
1513     /// ```rust
1514     /// b'x'
1515     /// ```
1516     pub CHAR_LIT_AS_U8,
1517     complexity,
1518     "casting a character literal to u8"
1519 }
1520
1521 pub struct CharLitAsU8;
1522
1523 impl LintPass for CharLitAsU8 {
1524     fn get_lints(&self) -> LintArray {
1525         lint_array!(CHAR_LIT_AS_U8)
1526     }
1527
1528     fn name(&self) -> &'static str {
1529         "CharLiteralAsU8"
1530     }
1531 }
1532
1533 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for CharLitAsU8 {
1534     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
1535         use syntax::ast::LitKind;
1536
1537         if let ExprKind::Cast(ref e, _) = expr.node {
1538             if let ExprKind::Lit(ref l) = e.node {
1539                 if let LitKind::Char(_) = l.node {
1540                     if ty::Uint(UintTy::U8) == cx.tables.expr_ty(expr).sty && !in_macro(expr.span) {
1541                         let msg = "casting character literal to u8. `char`s \
1542                                    are 4 bytes wide in rust, so casting to u8 \
1543                                    truncates them";
1544                         let help = format!(
1545                             "Consider using a byte literal instead:\nb{}",
1546                             snippet(cx, e.span, "'x'")
1547                         );
1548                         span_help_and_lint(cx, CHAR_LIT_AS_U8, expr.span, msg, &help);
1549                     }
1550                 }
1551             }
1552         }
1553     }
1554 }
1555
1556 declare_clippy_lint! {
1557     /// **What it does:** Checks for comparisons where one side of the relation is
1558     /// either the minimum or maximum value for its type and warns if it involves a
1559     /// case that is always true or always false. Only integer and boolean types are
1560     /// checked.
1561     ///
1562     /// **Why is this bad?** An expression like `min <= x` may misleadingly imply
1563     /// that is is possible for `x` to be less than the minimum. Expressions like
1564     /// `max < x` are probably mistakes.
1565     ///
1566     /// **Known problems:** For `usize` the size of the current compile target will
1567     /// be assumed (e.g., 64 bits on 64 bit systems). This means code that uses such
1568     /// a comparison to detect target pointer width will trigger this lint. One can
1569     /// use `mem::sizeof` and compare its value or conditional compilation
1570     /// attributes
1571     /// like `#[cfg(target_pointer_width = "64")] ..` instead.
1572     ///
1573     /// **Example:**
1574     ///
1575     /// ```rust
1576     /// let vec: Vec<isize> = vec![];
1577     /// if vec.len() <= 0 {}
1578     /// if 100 > std::i32::MAX {}
1579     /// ```
1580     pub ABSURD_EXTREME_COMPARISONS,
1581     correctness,
1582     "a comparison with a maximum or minimum value that is always true or false"
1583 }
1584
1585 pub struct AbsurdExtremeComparisons;
1586
1587 impl LintPass for AbsurdExtremeComparisons {
1588     fn get_lints(&self) -> LintArray {
1589         lint_array!(ABSURD_EXTREME_COMPARISONS)
1590     }
1591
1592     fn name(&self) -> &'static str {
1593         "AbsurdExtremeComparisons"
1594     }
1595 }
1596
1597 enum ExtremeType {
1598     Minimum,
1599     Maximum,
1600 }
1601
1602 struct ExtremeExpr<'a> {
1603     which: ExtremeType,
1604     expr: &'a Expr,
1605 }
1606
1607 enum AbsurdComparisonResult {
1608     AlwaysFalse,
1609     AlwaysTrue,
1610     InequalityImpossible,
1611 }
1612
1613 fn is_cast_between_fixed_and_target<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) -> bool {
1614     if let ExprKind::Cast(ref cast_exp, _) = expr.node {
1615         let precast_ty = cx.tables.expr_ty(cast_exp);
1616         let cast_ty = cx.tables.expr_ty(expr);
1617
1618         return is_isize_or_usize(precast_ty) != is_isize_or_usize(cast_ty);
1619     }
1620
1621     false
1622 }
1623
1624 fn detect_absurd_comparison<'a, 'tcx>(
1625     cx: &LateContext<'a, 'tcx>,
1626     op: BinOpKind,
1627     lhs: &'tcx Expr,
1628     rhs: &'tcx Expr,
1629 ) -> Option<(ExtremeExpr<'tcx>, AbsurdComparisonResult)> {
1630     use crate::types::AbsurdComparisonResult::*;
1631     use crate::types::ExtremeType::*;
1632     use crate::utils::comparisons::*;
1633
1634     // absurd comparison only makes sense on primitive types
1635     // primitive types don't implement comparison operators with each other
1636     if cx.tables.expr_ty(lhs) != cx.tables.expr_ty(rhs) {
1637         return None;
1638     }
1639
1640     // comparisons between fix sized types and target sized types are considered unanalyzable
1641     if is_cast_between_fixed_and_target(cx, lhs) || is_cast_between_fixed_and_target(cx, rhs) {
1642         return None;
1643     }
1644
1645     let normalized = normalize_comparison(op, lhs, rhs);
1646     let (rel, normalized_lhs, normalized_rhs) = if let Some(val) = normalized {
1647         val
1648     } else {
1649         return None;
1650     };
1651
1652     let lx = detect_extreme_expr(cx, normalized_lhs);
1653     let rx = detect_extreme_expr(cx, normalized_rhs);
1654
1655     Some(match rel {
1656         Rel::Lt => {
1657             match (lx, rx) {
1658                 (Some(l @ ExtremeExpr { which: Maximum, .. }), _) => (l, AlwaysFalse), // max < x
1659                 (_, Some(r @ ExtremeExpr { which: Minimum, .. })) => (r, AlwaysFalse), // x < min
1660                 _ => return None,
1661             }
1662         },
1663         Rel::Le => {
1664             match (lx, rx) {
1665                 (Some(l @ ExtremeExpr { which: Minimum, .. }), _) => (l, AlwaysTrue), // min <= x
1666                 (Some(l @ ExtremeExpr { which: Maximum, .. }), _) => (l, InequalityImpossible), // max <= x
1667                 (_, Some(r @ ExtremeExpr { which: Minimum, .. })) => (r, InequalityImpossible), // x <= min
1668                 (_, Some(r @ ExtremeExpr { which: Maximum, .. })) => (r, AlwaysTrue), // x <= max
1669                 _ => return None,
1670             }
1671         },
1672         Rel::Ne | Rel::Eq => return None,
1673     })
1674 }
1675
1676 fn detect_extreme_expr<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) -> Option<ExtremeExpr<'tcx>> {
1677     use crate::types::ExtremeType::*;
1678
1679     let ty = cx.tables.expr_ty(expr);
1680
1681     let cv = constant(cx, cx.tables, expr)?.0;
1682
1683     let which = match (&ty.sty, cv) {
1684         (&ty::Bool, Constant::Bool(false)) | (&ty::Uint(_), Constant::Int(0)) => Minimum,
1685         (&ty::Int(ity), Constant::Int(i))
1686             if i == unsext(cx.tcx, i128::min_value() >> (128 - int_bits(cx.tcx, ity)), ity) =>
1687         {
1688             Minimum
1689         },
1690
1691         (&ty::Bool, Constant::Bool(true)) => Maximum,
1692         (&ty::Int(ity), Constant::Int(i))
1693             if i == unsext(cx.tcx, i128::max_value() >> (128 - int_bits(cx.tcx, ity)), ity) =>
1694         {
1695             Maximum
1696         },
1697         (&ty::Uint(uty), Constant::Int(i)) if clip(cx.tcx, u128::max_value(), uty) == i => Maximum,
1698
1699         _ => return None,
1700     };
1701     Some(ExtremeExpr { which, expr })
1702 }
1703
1704 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for AbsurdExtremeComparisons {
1705     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
1706         use crate::types::AbsurdComparisonResult::*;
1707         use crate::types::ExtremeType::*;
1708
1709         if let ExprKind::Binary(ref cmp, ref lhs, ref rhs) = expr.node {
1710             if let Some((culprit, result)) = detect_absurd_comparison(cx, cmp.node, lhs, rhs) {
1711                 if !in_macro(expr.span) {
1712                     let msg = "this comparison involving the minimum or maximum element for this \
1713                                type contains a case that is always true or always false";
1714
1715                     let conclusion = match result {
1716                         AlwaysFalse => "this comparison is always false".to_owned(),
1717                         AlwaysTrue => "this comparison is always true".to_owned(),
1718                         InequalityImpossible => format!(
1719                             "the case where the two sides are not equal never occurs, consider using {} == {} \
1720                              instead",
1721                             snippet(cx, lhs.span, "lhs"),
1722                             snippet(cx, rhs.span, "rhs")
1723                         ),
1724                     };
1725
1726                     let help = format!(
1727                         "because {} is the {} value for this type, {}",
1728                         snippet(cx, culprit.expr.span, "x"),
1729                         match culprit.which {
1730                             Minimum => "minimum",
1731                             Maximum => "maximum",
1732                         },
1733                         conclusion
1734                     );
1735
1736                     span_help_and_lint(cx, ABSURD_EXTREME_COMPARISONS, expr.span, msg, &help);
1737                 }
1738             }
1739         }
1740     }
1741 }
1742
1743 declare_clippy_lint! {
1744     /// **What it does:** Checks for comparisons where the relation is always either
1745     /// true or false, but where one side has been upcast so that the comparison is
1746     /// necessary. Only integer types are checked.
1747     ///
1748     /// **Why is this bad?** An expression like `let x : u8 = ...; (x as u32) > 300`
1749     /// will mistakenly imply that it is possible for `x` to be outside the range of
1750     /// `u8`.
1751     ///
1752     /// **Known problems:**
1753     /// https://github.com/rust-lang/rust-clippy/issues/886
1754     ///
1755     /// **Example:**
1756     /// ```rust
1757     /// let x : u8 = ...; (x as u32) > 300
1758     /// ```
1759     pub INVALID_UPCAST_COMPARISONS,
1760     pedantic,
1761     "a comparison involving an upcast which is always true or false"
1762 }
1763
1764 pub struct InvalidUpcastComparisons;
1765
1766 impl LintPass for InvalidUpcastComparisons {
1767     fn get_lints(&self) -> LintArray {
1768         lint_array!(INVALID_UPCAST_COMPARISONS)
1769     }
1770
1771     fn name(&self) -> &'static str {
1772         "InvalidUpcastComparisons"
1773     }
1774 }
1775
1776 #[derive(Copy, Clone, Debug, Eq)]
1777 enum FullInt {
1778     S(i128),
1779     U(u128),
1780 }
1781
1782 impl FullInt {
1783     #[allow(clippy::cast_sign_loss)]
1784     fn cmp_s_u(s: i128, u: u128) -> Ordering {
1785         if s < 0 {
1786             Ordering::Less
1787         } else if u > (i128::max_value() as u128) {
1788             Ordering::Greater
1789         } else {
1790             (s as u128).cmp(&u)
1791         }
1792     }
1793 }
1794
1795 impl PartialEq for FullInt {
1796     fn eq(&self, other: &Self) -> bool {
1797         self.partial_cmp(other).expect("partial_cmp only returns Some(_)") == Ordering::Equal
1798     }
1799 }
1800
1801 impl PartialOrd for FullInt {
1802     fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
1803         Some(match (self, other) {
1804             (&FullInt::S(s), &FullInt::S(o)) => s.cmp(&o),
1805             (&FullInt::U(s), &FullInt::U(o)) => s.cmp(&o),
1806             (&FullInt::S(s), &FullInt::U(o)) => Self::cmp_s_u(s, o),
1807             (&FullInt::U(s), &FullInt::S(o)) => Self::cmp_s_u(o, s).reverse(),
1808         })
1809     }
1810 }
1811 impl Ord for FullInt {
1812     fn cmp(&self, other: &Self) -> Ordering {
1813         self.partial_cmp(other)
1814             .expect("partial_cmp for FullInt can never return None")
1815     }
1816 }
1817
1818 fn numeric_cast_precast_bounds<'a>(cx: &LateContext<'_, '_>, expr: &'a Expr) -> Option<(FullInt, FullInt)> {
1819     use std::*;
1820
1821     if let ExprKind::Cast(ref cast_exp, _) = expr.node {
1822         let pre_cast_ty = cx.tables.expr_ty(cast_exp);
1823         let cast_ty = cx.tables.expr_ty(expr);
1824         // if it's a cast from i32 to u32 wrapping will invalidate all these checks
1825         if cx.layout_of(pre_cast_ty).ok().map(|l| l.size) == cx.layout_of(cast_ty).ok().map(|l| l.size) {
1826             return None;
1827         }
1828         match pre_cast_ty.sty {
1829             ty::Int(int_ty) => Some(match int_ty {
1830                 IntTy::I8 => (
1831                     FullInt::S(i128::from(i8::min_value())),
1832                     FullInt::S(i128::from(i8::max_value())),
1833                 ),
1834                 IntTy::I16 => (
1835                     FullInt::S(i128::from(i16::min_value())),
1836                     FullInt::S(i128::from(i16::max_value())),
1837                 ),
1838                 IntTy::I32 => (
1839                     FullInt::S(i128::from(i32::min_value())),
1840                     FullInt::S(i128::from(i32::max_value())),
1841                 ),
1842                 IntTy::I64 => (
1843                     FullInt::S(i128::from(i64::min_value())),
1844                     FullInt::S(i128::from(i64::max_value())),
1845                 ),
1846                 IntTy::I128 => (FullInt::S(i128::min_value()), FullInt::S(i128::max_value())),
1847                 IntTy::Isize => (
1848                     FullInt::S(isize::min_value() as i128),
1849                     FullInt::S(isize::max_value() as i128),
1850                 ),
1851             }),
1852             ty::Uint(uint_ty) => Some(match uint_ty {
1853                 UintTy::U8 => (
1854                     FullInt::U(u128::from(u8::min_value())),
1855                     FullInt::U(u128::from(u8::max_value())),
1856                 ),
1857                 UintTy::U16 => (
1858                     FullInt::U(u128::from(u16::min_value())),
1859                     FullInt::U(u128::from(u16::max_value())),
1860                 ),
1861                 UintTy::U32 => (
1862                     FullInt::U(u128::from(u32::min_value())),
1863                     FullInt::U(u128::from(u32::max_value())),
1864                 ),
1865                 UintTy::U64 => (
1866                     FullInt::U(u128::from(u64::min_value())),
1867                     FullInt::U(u128::from(u64::max_value())),
1868                 ),
1869                 UintTy::U128 => (FullInt::U(u128::min_value()), FullInt::U(u128::max_value())),
1870                 UintTy::Usize => (
1871                     FullInt::U(usize::min_value() as u128),
1872                     FullInt::U(usize::max_value() as u128),
1873                 ),
1874             }),
1875             _ => None,
1876         }
1877     } else {
1878         None
1879     }
1880 }
1881
1882 fn node_as_const_fullint<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) -> Option<FullInt> {
1883     let val = constant(cx, cx.tables, expr)?.0;
1884     if let Constant::Int(const_int) = val {
1885         match cx.tables.expr_ty(expr).sty {
1886             ty::Int(ity) => Some(FullInt::S(sext(cx.tcx, const_int, ity))),
1887             ty::Uint(_) => Some(FullInt::U(const_int)),
1888             _ => None,
1889         }
1890     } else {
1891         None
1892     }
1893 }
1894
1895 fn err_upcast_comparison(cx: &LateContext<'_, '_>, span: Span, expr: &Expr, always: bool) {
1896     if let ExprKind::Cast(ref cast_val, _) = expr.node {
1897         span_lint(
1898             cx,
1899             INVALID_UPCAST_COMPARISONS,
1900             span,
1901             &format!(
1902                 "because of the numeric bounds on `{}` prior to casting, this expression is always {}",
1903                 snippet(cx, cast_val.span, "the expression"),
1904                 if always { "true" } else { "false" },
1905             ),
1906         );
1907     }
1908 }
1909
1910 fn upcast_comparison_bounds_err<'a, 'tcx>(
1911     cx: &LateContext<'a, 'tcx>,
1912     span: Span,
1913     rel: comparisons::Rel,
1914     lhs_bounds: Option<(FullInt, FullInt)>,
1915     lhs: &'tcx Expr,
1916     rhs: &'tcx Expr,
1917     invert: bool,
1918 ) {
1919     use crate::utils::comparisons::*;
1920
1921     if let Some((lb, ub)) = lhs_bounds {
1922         if let Some(norm_rhs_val) = node_as_const_fullint(cx, rhs) {
1923             if rel == Rel::Eq || rel == Rel::Ne {
1924                 if norm_rhs_val < lb || norm_rhs_val > ub {
1925                     err_upcast_comparison(cx, span, lhs, rel == Rel::Ne);
1926                 }
1927             } else if match rel {
1928                 Rel::Lt => {
1929                     if invert {
1930                         norm_rhs_val < lb
1931                     } else {
1932                         ub < norm_rhs_val
1933                     }
1934                 },
1935                 Rel::Le => {
1936                     if invert {
1937                         norm_rhs_val <= lb
1938                     } else {
1939                         ub <= norm_rhs_val
1940                     }
1941                 },
1942                 Rel::Eq | Rel::Ne => unreachable!(),
1943             } {
1944                 err_upcast_comparison(cx, span, lhs, true)
1945             } else if match rel {
1946                 Rel::Lt => {
1947                     if invert {
1948                         norm_rhs_val >= ub
1949                     } else {
1950                         lb >= norm_rhs_val
1951                     }
1952                 },
1953                 Rel::Le => {
1954                     if invert {
1955                         norm_rhs_val > ub
1956                     } else {
1957                         lb > norm_rhs_val
1958                     }
1959                 },
1960                 Rel::Eq | Rel::Ne => unreachable!(),
1961             } {
1962                 err_upcast_comparison(cx, span, lhs, false)
1963             }
1964         }
1965     }
1966 }
1967
1968 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for InvalidUpcastComparisons {
1969     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
1970         if let ExprKind::Binary(ref cmp, ref lhs, ref rhs) = expr.node {
1971             let normalized = comparisons::normalize_comparison(cmp.node, lhs, rhs);
1972             let (rel, normalized_lhs, normalized_rhs) = if let Some(val) = normalized {
1973                 val
1974             } else {
1975                 return;
1976             };
1977
1978             let lhs_bounds = numeric_cast_precast_bounds(cx, normalized_lhs);
1979             let rhs_bounds = numeric_cast_precast_bounds(cx, normalized_rhs);
1980
1981             upcast_comparison_bounds_err(cx, expr.span, rel, lhs_bounds, normalized_lhs, normalized_rhs, false);
1982             upcast_comparison_bounds_err(cx, expr.span, rel, rhs_bounds, normalized_rhs, normalized_lhs, true);
1983         }
1984     }
1985 }
1986
1987 declare_clippy_lint! {
1988     /// **What it does:** Checks for public `impl` or `fn` missing generalization
1989     /// over different hashers and implicitly defaulting to the default hashing
1990     /// algorithm (SipHash).
1991     ///
1992     /// **Why is this bad?** `HashMap` or `HashSet` with custom hashers cannot be
1993     /// used with them.
1994     ///
1995     /// **Known problems:** Suggestions for replacing constructors can contain
1996     /// false-positives. Also applying suggestions can require modification of other
1997     /// pieces of code, possibly including external crates.
1998     ///
1999     /// **Example:**
2000     /// ```rust
2001     /// # use std::collections::HashMap;
2002     /// # use std::hash::Hash;
2003     /// # trait Serialize {};
2004     /// impl<K: Hash + Eq, V> Serialize for HashMap<K, V> { }
2005     ///
2006     /// pub fn foo(map: &mut HashMap<i32, i32>) { }
2007     /// ```
2008     pub IMPLICIT_HASHER,
2009     style,
2010     "missing generalization over different hashers"
2011 }
2012
2013 pub struct ImplicitHasher;
2014
2015 impl LintPass for ImplicitHasher {
2016     fn get_lints(&self) -> LintArray {
2017         lint_array!(IMPLICIT_HASHER)
2018     }
2019
2020     fn name(&self) -> &'static str {
2021         "ImplicitHasher"
2022     }
2023 }
2024
2025 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for ImplicitHasher {
2026     #[allow(clippy::cast_possible_truncation, clippy::too_many_lines)]
2027     fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx Item) {
2028         use syntax_pos::BytePos;
2029
2030         fn suggestion<'a, 'tcx>(
2031             cx: &LateContext<'a, 'tcx>,
2032             db: &mut DiagnosticBuilder<'_>,
2033             generics_span: Span,
2034             generics_suggestion_span: Span,
2035             target: &ImplicitHasherType<'_>,
2036             vis: ImplicitHasherConstructorVisitor<'_, '_, '_>,
2037         ) {
2038             let generics_snip = snippet(cx, generics_span, "");
2039             // trim `<` `>`
2040             let generics_snip = if generics_snip.is_empty() {
2041                 ""
2042             } else {
2043                 &generics_snip[1..generics_snip.len() - 1]
2044             };
2045
2046             multispan_sugg(
2047                 db,
2048                 "consider adding a type parameter".to_string(),
2049                 vec![
2050                     (
2051                         generics_suggestion_span,
2052                         format!(
2053                             "<{}{}S: ::std::hash::BuildHasher{}>",
2054                             generics_snip,
2055                             if generics_snip.is_empty() { "" } else { ", " },
2056                             if vis.suggestions.is_empty() {
2057                                 ""
2058                             } else {
2059                                 // request users to add `Default` bound so that generic constructors can be used
2060                                 " + Default"
2061                             },
2062                         ),
2063                     ),
2064                     (
2065                         target.span(),
2066                         format!("{}<{}, S>", target.type_name(), target.type_arguments(),),
2067                     ),
2068                 ],
2069             );
2070
2071             if !vis.suggestions.is_empty() {
2072                 multispan_sugg(db, "...and use generic constructor".into(), vis.suggestions);
2073             }
2074         }
2075
2076         if !cx.access_levels.is_exported(item.hir_id) {
2077             return;
2078         }
2079
2080         match item.node {
2081             ItemKind::Impl(_, _, _, ref generics, _, ref ty, ref items) => {
2082                 let mut vis = ImplicitHasherTypeVisitor::new(cx);
2083                 vis.visit_ty(ty);
2084
2085                 for target in &vis.found {
2086                     if differing_macro_contexts(item.span, target.span()) {
2087                         return;
2088                     }
2089
2090                     let generics_suggestion_span = generics.span.substitute_dummy({
2091                         let pos = snippet_opt(cx, item.span.until(target.span()))
2092                             .and_then(|snip| Some(item.span.lo() + BytePos(snip.find("impl")? as u32 + 4)));
2093                         if let Some(pos) = pos {
2094                             Span::new(pos, pos, item.span.data().ctxt)
2095                         } else {
2096                             return;
2097                         }
2098                     });
2099
2100                     let mut ctr_vis = ImplicitHasherConstructorVisitor::new(cx, target);
2101                     for item in items.iter().map(|item| cx.tcx.hir().impl_item(item.id)) {
2102                         ctr_vis.visit_impl_item(item);
2103                     }
2104
2105                     span_lint_and_then(
2106                         cx,
2107                         IMPLICIT_HASHER,
2108                         target.span(),
2109                         &format!(
2110                             "impl for `{}` should be generalized over different hashers",
2111                             target.type_name()
2112                         ),
2113                         move |db| {
2114                             suggestion(cx, db, generics.span, generics_suggestion_span, target, ctr_vis);
2115                         },
2116                     );
2117                 }
2118             },
2119             ItemKind::Fn(ref decl, .., ref generics, body_id) => {
2120                 let body = cx.tcx.hir().body(body_id);
2121
2122                 for ty in &decl.inputs {
2123                     let mut vis = ImplicitHasherTypeVisitor::new(cx);
2124                     vis.visit_ty(ty);
2125
2126                     for target in &vis.found {
2127                         let generics_suggestion_span = generics.span.substitute_dummy({
2128                             let pos = snippet_opt(cx, item.span.until(body.arguments[0].pat.span))
2129                                 .and_then(|snip| {
2130                                     let i = snip.find("fn")?;
2131                                     Some(item.span.lo() + BytePos((i + (&snip[i..]).find('(')?) as u32))
2132                                 })
2133                                 .expect("failed to create span for type parameters");
2134                             Span::new(pos, pos, item.span.data().ctxt)
2135                         });
2136
2137                         let mut ctr_vis = ImplicitHasherConstructorVisitor::new(cx, target);
2138                         ctr_vis.visit_body(body);
2139
2140                         span_lint_and_then(
2141                             cx,
2142                             IMPLICIT_HASHER,
2143                             target.span(),
2144                             &format!(
2145                                 "parameter of type `{}` should be generalized over different hashers",
2146                                 target.type_name()
2147                             ),
2148                             move |db| {
2149                                 suggestion(cx, db, generics.span, generics_suggestion_span, target, ctr_vis);
2150                             },
2151                         );
2152                     }
2153                 }
2154             },
2155             _ => {},
2156         }
2157     }
2158 }
2159
2160 enum ImplicitHasherType<'tcx> {
2161     HashMap(Span, Ty<'tcx>, Cow<'static, str>, Cow<'static, str>),
2162     HashSet(Span, Ty<'tcx>, Cow<'static, str>),
2163 }
2164
2165 impl<'tcx> ImplicitHasherType<'tcx> {
2166     /// Checks that `ty` is a target type without a BuildHasher.
2167     fn new<'a>(cx: &LateContext<'a, 'tcx>, hir_ty: &hir::Ty) -> Option<Self> {
2168         if let TyKind::Path(QPath::Resolved(None, ref path)) = hir_ty.node {
2169             let params: Vec<_> = path
2170                 .segments
2171                 .last()
2172                 .as_ref()?
2173                 .args
2174                 .as_ref()?
2175                 .args
2176                 .iter()
2177                 .filter_map(|arg| match arg {
2178                     GenericArg::Type(ty) => Some(ty),
2179                     _ => None,
2180                 })
2181                 .collect();
2182             let params_len = params.len();
2183
2184             let ty = hir_ty_to_ty(cx.tcx, hir_ty);
2185
2186             if match_path(path, &paths::HASHMAP) && params_len == 2 {
2187                 Some(ImplicitHasherType::HashMap(
2188                     hir_ty.span,
2189                     ty,
2190                     snippet(cx, params[0].span, "K"),
2191                     snippet(cx, params[1].span, "V"),
2192                 ))
2193             } else if match_path(path, &paths::HASHSET) && params_len == 1 {
2194                 Some(ImplicitHasherType::HashSet(
2195                     hir_ty.span,
2196                     ty,
2197                     snippet(cx, params[0].span, "T"),
2198                 ))
2199             } else {
2200                 None
2201             }
2202         } else {
2203             None
2204         }
2205     }
2206
2207     fn type_name(&self) -> &'static str {
2208         match *self {
2209             ImplicitHasherType::HashMap(..) => "HashMap",
2210             ImplicitHasherType::HashSet(..) => "HashSet",
2211         }
2212     }
2213
2214     fn type_arguments(&self) -> String {
2215         match *self {
2216             ImplicitHasherType::HashMap(.., ref k, ref v) => format!("{}, {}", k, v),
2217             ImplicitHasherType::HashSet(.., ref t) => format!("{}", t),
2218         }
2219     }
2220
2221     fn ty(&self) -> Ty<'tcx> {
2222         match *self {
2223             ImplicitHasherType::HashMap(_, ty, ..) | ImplicitHasherType::HashSet(_, ty, ..) => ty,
2224         }
2225     }
2226
2227     fn span(&self) -> Span {
2228         match *self {
2229             ImplicitHasherType::HashMap(span, ..) | ImplicitHasherType::HashSet(span, ..) => span,
2230         }
2231     }
2232 }
2233
2234 struct ImplicitHasherTypeVisitor<'a, 'tcx: 'a> {
2235     cx: &'a LateContext<'a, 'tcx>,
2236     found: Vec<ImplicitHasherType<'tcx>>,
2237 }
2238
2239 impl<'a, 'tcx: 'a> ImplicitHasherTypeVisitor<'a, 'tcx> {
2240     fn new(cx: &'a LateContext<'a, 'tcx>) -> Self {
2241         Self { cx, found: vec![] }
2242     }
2243 }
2244
2245 impl<'a, 'tcx: 'a> Visitor<'tcx> for ImplicitHasherTypeVisitor<'a, 'tcx> {
2246     fn visit_ty(&mut self, t: &'tcx hir::Ty) {
2247         if let Some(target) = ImplicitHasherType::new(self.cx, t) {
2248             self.found.push(target);
2249         }
2250
2251         walk_ty(self, t);
2252     }
2253
2254     fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
2255         NestedVisitorMap::None
2256     }
2257 }
2258
2259 /// Looks for default-hasher-dependent constructors like `HashMap::new`.
2260 struct ImplicitHasherConstructorVisitor<'a, 'b, 'tcx: 'a + 'b> {
2261     cx: &'a LateContext<'a, 'tcx>,
2262     body: &'a TypeckTables<'tcx>,
2263     target: &'b ImplicitHasherType<'tcx>,
2264     suggestions: BTreeMap<Span, String>,
2265 }
2266
2267 impl<'a, 'b, 'tcx: 'a + 'b> ImplicitHasherConstructorVisitor<'a, 'b, 'tcx> {
2268     fn new(cx: &'a LateContext<'a, 'tcx>, target: &'b ImplicitHasherType<'tcx>) -> Self {
2269         Self {
2270             cx,
2271             body: cx.tables,
2272             target,
2273             suggestions: BTreeMap::new(),
2274         }
2275     }
2276 }
2277
2278 impl<'a, 'b, 'tcx: 'a + 'b> Visitor<'tcx> for ImplicitHasherConstructorVisitor<'a, 'b, 'tcx> {
2279     fn visit_body(&mut self, body: &'tcx Body) {
2280         let prev_body = self.body;
2281         self.body = self.cx.tcx.body_tables(body.id());
2282         walk_body(self, body);
2283         self.body = prev_body;
2284     }
2285
2286     fn visit_expr(&mut self, e: &'tcx Expr) {
2287         if_chain! {
2288             if let ExprKind::Call(ref fun, ref args) = e.node;
2289             if let ExprKind::Path(QPath::TypeRelative(ref ty, ref method)) = fun.node;
2290             if let TyKind::Path(QPath::Resolved(None, ref ty_path)) = ty.node;
2291             then {
2292                 if !same_tys(self.cx, self.target.ty(), self.body.expr_ty(e)) {
2293                     return;
2294                 }
2295
2296                 if match_path(ty_path, &paths::HASHMAP) {
2297                     if method.ident.name == "new" {
2298                         self.suggestions
2299                             .insert(e.span, "HashMap::default()".to_string());
2300                     } else if method.ident.name == "with_capacity" {
2301                         self.suggestions.insert(
2302                             e.span,
2303                             format!(
2304                                 "HashMap::with_capacity_and_hasher({}, Default::default())",
2305                                 snippet(self.cx, args[0].span, "capacity"),
2306                             ),
2307                         );
2308                     }
2309                 } else if match_path(ty_path, &paths::HASHSET) {
2310                     if method.ident.name == "new" {
2311                         self.suggestions
2312                             .insert(e.span, "HashSet::default()".to_string());
2313                     } else if method.ident.name == "with_capacity" {
2314                         self.suggestions.insert(
2315                             e.span,
2316                             format!(
2317                                 "HashSet::with_capacity_and_hasher({}, Default::default())",
2318                                 snippet(self.cx, args[0].span, "capacity"),
2319                             ),
2320                         );
2321                     }
2322                 }
2323             }
2324         }
2325
2326         walk_expr(self, e);
2327     }
2328
2329     fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
2330         NestedVisitorMap::OnlyBodies(&self.cx.tcx.hir())
2331     }
2332 }
2333
2334 declare_clippy_lint! {
2335     /// **What it does:** Checks for casts of `&T` to `&mut T` anywhere in the code.
2336     ///
2337     /// **Why is this bad?** It’s basically guaranteed to be undefined behaviour.
2338     /// `UnsafeCell` is the only way to obtain aliasable data that is considered
2339     /// mutable.
2340     ///
2341     /// **Known problems:** None.
2342     ///
2343     /// **Example:**
2344     /// ```rust,ignore
2345     /// fn x(r: &i32) {
2346     ///     unsafe {
2347     ///         *(r as *const _ as *mut _) += 1;
2348     ///     }
2349     /// }
2350     /// ```
2351     ///
2352     /// Instead consider using interior mutability types.
2353     ///
2354     /// ```rust
2355     /// use std::cell::UnsafeCell;
2356     ///
2357     /// fn x(r: &UnsafeCell<i32>) {
2358     ///     unsafe {
2359     ///         *r.get() += 1;
2360     ///     }
2361     /// }
2362     /// ```
2363     pub CAST_REF_TO_MUT,
2364     correctness,
2365     "a cast of reference to a mutable pointer"
2366 }
2367
2368 pub struct RefToMut;
2369
2370 impl LintPass for RefToMut {
2371     fn get_lints(&self) -> LintArray {
2372         lint_array!(CAST_REF_TO_MUT)
2373     }
2374
2375     fn name(&self) -> &'static str {
2376         "RefToMut"
2377     }
2378 }
2379
2380 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for RefToMut {
2381     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
2382         if_chain! {
2383             if let ExprKind::Unary(UnOp::UnDeref, e) = &expr.node;
2384             if let ExprKind::Cast(e, t) = &e.node;
2385             if let TyKind::Ptr(MutTy { mutbl: Mutability::MutMutable, .. }) = t.node;
2386             if let ExprKind::Cast(e, t) = &e.node;
2387             if let TyKind::Ptr(MutTy { mutbl: Mutability::MutImmutable, .. }) = t.node;
2388             if let ty::Ref(..) = cx.tables.node_type(e.hir_id).sty;
2389             then {
2390                 span_lint(
2391                     cx,
2392                     CAST_REF_TO_MUT,
2393                     expr.span,
2394                     "casting &T to &mut T may cause undefined behaviour, consider instead using an UnsafeCell",
2395                 );
2396             }
2397         }
2398     }
2399 }