]> git.lizzy.rs Git - rust.git/blob - src/librustc_lint/builtin.rs
Rollup merge of #58782 - tspiteri:str-escape-self, r=kennytm
[rust.git] / src / librustc_lint / builtin.rs
1 //! Lints in the Rust compiler.
2 //!
3 //! This contains lints which can feasibly be implemented as their own
4 //! AST visitor. Also see `rustc::lint::builtin`, which contains the
5 //! definitions of lints that are emitted directly inside the main
6 //! compiler.
7 //!
8 //! To add a new lint to rustc, declare it here using `declare_lint!()`.
9 //! Then add code to emit the new lint in the appropriate circumstances.
10 //! You can do that in an existing `LintPass` if it makes sense, or in a
11 //! new `LintPass`, or using `Session::add_lint` elsewhere in the
12 //! compiler. Only do the latter if the check can't be written cleanly as a
13 //! `LintPass` (also, note that such lints will need to be defined in
14 //! `rustc::lint::builtin`, not here).
15 //!
16 //! If you define a new `EarlyLintPass`, you will also need to add it to the
17 //! `add_early_builtin!` or `add_early_builtin_with_new!` invocation in
18 //! `lib.rs`. Use the former for unit-like structs and the latter for structs
19 //! with a `pub fn new()`.
20 //!
21 //! If you define a new `LateLintPass`, you will also need to add it to the
22 //! `late_lint_methods!` invocation in `lib.rs`.
23
24 use rustc::hir::def::Def;
25 use rustc::hir::def_id::{DefId, LOCAL_CRATE};
26 use rustc::ty::{self, Ty};
27 use rustc::{lint, util};
28 use hir::Node;
29 use util::nodemap::NodeSet;
30 use lint::{LateContext, LintContext, LintArray};
31 use lint::{LintPass, LateLintPass, EarlyLintPass, EarlyContext};
32
33 use rustc::util::nodemap::FxHashSet;
34
35 use syntax::tokenstream::{TokenTree, TokenStream};
36 use syntax::ast;
37 use syntax::ptr::P;
38 use syntax::ast::Expr;
39 use syntax::attr;
40 use syntax::source_map::Spanned;
41 use syntax::edition::Edition;
42 use syntax::feature_gate::{AttributeGate, AttributeTemplate, AttributeType};
43 use syntax::feature_gate::{Stability, deprecated_attributes};
44 use syntax_pos::{BytePos, Span, SyntaxContext};
45 use syntax::symbol::keywords;
46 use syntax::errors::{Applicability, DiagnosticBuilder};
47 use syntax::print::pprust::expr_to_string;
48 use syntax::visit::FnKind;
49 use syntax::struct_span_err;
50
51 use rustc::hir::{self, GenericParamKind, PatKind};
52
53 use crate::nonstandard_style::{MethodLateContext, method_context};
54
55 use log::debug;
56
57 // hardwired lints from librustc
58 pub use lint::builtin::*;
59
60 declare_lint! {
61     WHILE_TRUE,
62     Warn,
63     "suggest using `loop { }` instead of `while true { }`"
64 }
65
66 #[derive(Copy, Clone)]
67 pub struct WhileTrue;
68
69 impl LintPass for WhileTrue {
70     fn name(&self) -> &'static str {
71         "WhileTrue"
72     }
73
74     fn get_lints(&self) -> LintArray {
75         lint_array!(WHILE_TRUE)
76     }
77 }
78
79 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for WhileTrue {
80     fn check_expr(&mut self, cx: &LateContext<'_, '_>, e: &hir::Expr) {
81         if let hir::ExprKind::While(ref cond, ..) = e.node {
82             if let hir::ExprKind::Lit(ref lit) = cond.node {
83                 if let ast::LitKind::Bool(true) = lit.node {
84                     if lit.span.ctxt() == SyntaxContext::empty() {
85                         let msg = "denote infinite loops with `loop { ... }`";
86                         let condition_span = cx.tcx.sess.source_map().def_span(e.span);
87                         let mut err = cx.struct_span_lint(WHILE_TRUE, condition_span, msg);
88                         err.span_suggestion_short(
89                             condition_span,
90                             "use `loop`",
91                             "loop".to_owned(),
92                             Applicability::MachineApplicable
93                         );
94                         err.emit();
95                     }
96                 }
97             }
98         }
99     }
100 }
101
102 declare_lint! {
103     BOX_POINTERS,
104     Allow,
105     "use of owned (Box type) heap memory"
106 }
107
108 #[derive(Copy, Clone)]
109 pub struct BoxPointers;
110
111 impl BoxPointers {
112     fn check_heap_type<'a, 'tcx>(&self, cx: &LateContext<'_, '_>, span: Span, ty: Ty<'_>) {
113         for leaf_ty in ty.walk() {
114             if leaf_ty.is_box() {
115                 let m = format!("type uses owned (Box type) pointers: {}", ty);
116                 cx.span_lint(BOX_POINTERS, span, &m);
117             }
118         }
119     }
120 }
121
122 impl LintPass for BoxPointers {
123     fn name(&self) -> &'static str {
124         "BoxPointers"
125     }
126
127     fn get_lints(&self) -> LintArray {
128         lint_array!(BOX_POINTERS)
129     }
130 }
131
132 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for BoxPointers {
133     fn check_item(&mut self, cx: &LateContext<'_, '_>, it: &hir::Item) {
134         match it.node {
135             hir::ItemKind::Fn(..) |
136             hir::ItemKind::Ty(..) |
137             hir::ItemKind::Enum(..) |
138             hir::ItemKind::Struct(..) |
139             hir::ItemKind::Union(..) => {
140                 let def_id = cx.tcx.hir().local_def_id(it.id);
141                 self.check_heap_type(cx, it.span, cx.tcx.type_of(def_id))
142             }
143             _ => ()
144         }
145
146         // If it's a struct, we also have to check the fields' types
147         match it.node {
148             hir::ItemKind::Struct(ref struct_def, _) |
149             hir::ItemKind::Union(ref struct_def, _) => {
150                 for struct_field in struct_def.fields() {
151                     let def_id = cx.tcx.hir().local_def_id(struct_field.id);
152                     self.check_heap_type(cx, struct_field.span,
153                                          cx.tcx.type_of(def_id));
154                 }
155             }
156             _ => (),
157         }
158     }
159
160     fn check_expr(&mut self, cx: &LateContext<'_, '_>, e: &hir::Expr) {
161         let ty = cx.tables.node_type(e.hir_id);
162         self.check_heap_type(cx, e.span, ty);
163     }
164 }
165
166 declare_lint! {
167     NON_SHORTHAND_FIELD_PATTERNS,
168     Warn,
169     "using `Struct { x: x }` instead of `Struct { x }` in a pattern"
170 }
171
172 #[derive(Copy, Clone)]
173 pub struct NonShorthandFieldPatterns;
174
175 impl LintPass for NonShorthandFieldPatterns {
176     fn name(&self) -> &'static str {
177         "NonShorthandFieldPatterns"
178     }
179
180     fn get_lints(&self) -> LintArray {
181         lint_array!(NON_SHORTHAND_FIELD_PATTERNS)
182     }
183 }
184
185 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NonShorthandFieldPatterns {
186     fn check_pat(&mut self, cx: &LateContext<'_, '_>, pat: &hir::Pat) {
187         if let PatKind::Struct(ref qpath, ref field_pats, _) = pat.node {
188             let variant = cx.tables.pat_ty(pat).ty_adt_def()
189                                    .expect("struct pattern type is not an ADT")
190                                    .variant_of_def(cx.tables.qpath_def(qpath, pat.hir_id));
191             for fieldpat in field_pats {
192                 if fieldpat.node.is_shorthand {
193                     continue;
194                 }
195                 if fieldpat.span.ctxt().outer().expn_info().is_some() {
196                     // Don't lint if this is a macro expansion: macro authors
197                     // shouldn't have to worry about this kind of style issue
198                     // (Issue #49588)
199                     continue;
200                 }
201                 if let PatKind::Binding(_, _, _, ident, None) = fieldpat.node.pat.node {
202                     if cx.tcx.find_field_index(ident, &variant) ==
203                        Some(cx.tcx.field_index(fieldpat.node.hir_id, cx.tables)) {
204                         let mut err = cx.struct_span_lint(NON_SHORTHAND_FIELD_PATTERNS,
205                                      fieldpat.span,
206                                      &format!("the `{}:` in this pattern is redundant", ident));
207                         let subspan = cx.tcx.sess.source_map().span_through_char(fieldpat.span,
208                                                                                  ':');
209                         err.span_suggestion_short(
210                             subspan,
211                             "remove this",
212                             ident.to_string(),
213                             Applicability::MachineApplicable
214                         );
215                         err.emit();
216                     }
217                 }
218             }
219         }
220     }
221 }
222
223 declare_lint! {
224     UNSAFE_CODE,
225     Allow,
226     "usage of `unsafe` code"
227 }
228
229 #[derive(Copy, Clone)]
230 pub struct UnsafeCode;
231
232 impl LintPass for UnsafeCode {
233     fn name(&self) -> &'static str {
234         "UnsafeCode"
235     }
236
237     fn get_lints(&self) -> LintArray {
238         lint_array!(UNSAFE_CODE)
239     }
240 }
241
242 impl UnsafeCode {
243     fn report_unsafe(&self, cx: &EarlyContext<'_>, span: Span, desc: &'static str) {
244         // This comes from a macro that has #[allow_internal_unsafe].
245         if span.allows_unsafe() {
246             return;
247         }
248
249         cx.span_lint(UNSAFE_CODE, span, desc);
250     }
251 }
252
253 impl EarlyLintPass for UnsafeCode {
254     fn check_attribute(&mut self, cx: &EarlyContext<'_>, attr: &ast::Attribute) {
255         if attr.check_name("allow_internal_unsafe") {
256             self.report_unsafe(cx, attr.span, "`allow_internal_unsafe` allows defining \
257                                                macros using unsafe without triggering \
258                                                the `unsafe_code` lint at their call site");
259         }
260     }
261
262     fn check_expr(&mut self, cx: &EarlyContext<'_>, e: &ast::Expr) {
263         if let ast::ExprKind::Block(ref blk, _) = e.node {
264             // Don't warn about generated blocks, that'll just pollute the output.
265             if blk.rules == ast::BlockCheckMode::Unsafe(ast::UserProvided) {
266                 self.report_unsafe(cx, blk.span, "usage of an `unsafe` block");
267             }
268         }
269     }
270
271     fn check_item(&mut self, cx: &EarlyContext<'_>, it: &ast::Item) {
272         match it.node {
273             ast::ItemKind::Trait(_, ast::Unsafety::Unsafe, ..) => {
274                 self.report_unsafe(cx, it.span, "declaration of an `unsafe` trait")
275             }
276
277             ast::ItemKind::Impl(ast::Unsafety::Unsafe, ..) => {
278                 self.report_unsafe(cx, it.span, "implementation of an `unsafe` trait")
279             }
280
281             _ => return,
282         }
283     }
284
285     fn check_fn(&mut self,
286                 cx: &EarlyContext<'_>,
287                 fk: FnKind<'_>,
288                 _: &ast::FnDecl,
289                 span: Span,
290                 _: ast::NodeId) {
291         match fk {
292             FnKind::ItemFn(_, ast::FnHeader { unsafety: ast::Unsafety::Unsafe, .. }, ..) => {
293                 self.report_unsafe(cx, span, "declaration of an `unsafe` function")
294             }
295
296             FnKind::Method(_, sig, ..) => {
297                 if sig.header.unsafety == ast::Unsafety::Unsafe {
298                     self.report_unsafe(cx, span, "implementation of an `unsafe` method")
299                 }
300             }
301
302             _ => (),
303         }
304     }
305
306     fn check_trait_item(&mut self, cx: &EarlyContext<'_>, item: &ast::TraitItem) {
307         if let ast::TraitItemKind::Method(ref sig, None) = item.node {
308             if sig.header.unsafety == ast::Unsafety::Unsafe {
309                 self.report_unsafe(cx, item.span, "declaration of an `unsafe` method")
310             }
311         }
312     }
313 }
314
315 declare_lint! {
316     pub MISSING_DOCS,
317     Allow,
318     "detects missing documentation for public members",
319     report_in_external_macro: true
320 }
321
322 pub struct MissingDoc {
323     /// Stack of whether `#[doc(hidden)]` is set at each level which has lint attributes.
324     doc_hidden_stack: Vec<bool>,
325
326     /// Private traits or trait items that leaked through. Don't check their methods.
327     private_traits: FxHashSet<hir::HirId>,
328 }
329
330 fn has_doc(attr: &ast::Attribute) -> bool {
331     if !attr.check_name("doc") {
332         return false;
333     }
334
335     if attr.is_value_str() {
336         return true;
337     }
338
339     if let Some(list) = attr.meta_item_list() {
340         for meta in list {
341             if meta.check_name("include") || meta.check_name("hidden") {
342                 return true;
343             }
344         }
345     }
346
347     false
348 }
349
350 impl MissingDoc {
351     pub fn new() -> MissingDoc {
352         MissingDoc {
353             doc_hidden_stack: vec![false],
354             private_traits: FxHashSet::default(),
355         }
356     }
357
358     fn doc_hidden(&self) -> bool {
359         *self.doc_hidden_stack.last().expect("empty doc_hidden_stack")
360     }
361
362     fn check_missing_docs_attrs(&self,
363                                 cx: &LateContext<'_, '_>,
364                                 id: Option<hir::HirId>,
365                                 attrs: &[ast::Attribute],
366                                 sp: Span,
367                                 desc: &'static str) {
368         // If we're building a test harness, then warning about
369         // documentation is probably not really relevant right now.
370         if cx.sess().opts.test {
371             return;
372         }
373
374         // `#[doc(hidden)]` disables missing_docs check.
375         if self.doc_hidden() {
376             return;
377         }
378
379         // Only check publicly-visible items, using the result from the privacy pass.
380         // It's an option so the crate root can also use this function (it doesn't
381         // have a NodeId).
382         if let Some(id) = id {
383             let node_id = cx.tcx.hir().hir_to_node_id(id);
384             if !cx.access_levels.is_exported(node_id) {
385                 return;
386             }
387         }
388
389         let has_doc = attrs.iter().any(|a| has_doc(a));
390         if !has_doc {
391             cx.span_lint(MISSING_DOCS,
392                          cx.tcx.sess.source_map().def_span(sp),
393                          &format!("missing documentation for {}", desc));
394         }
395     }
396 }
397
398 impl LintPass for MissingDoc {
399     fn name(&self) -> &'static str {
400         "MissingDoc"
401     }
402
403     fn get_lints(&self) -> LintArray {
404         lint_array!(MISSING_DOCS)
405     }
406 }
407
408 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for MissingDoc {
409     fn enter_lint_attrs(&mut self, _: &LateContext<'_, '_>, attrs: &[ast::Attribute]) {
410         let doc_hidden = self.doc_hidden() ||
411                          attrs.iter().any(|attr| {
412             attr.check_name("doc") &&
413             match attr.meta_item_list() {
414                 None => false,
415                 Some(l) => attr::list_contains_name(&l, "hidden"),
416             }
417         });
418         self.doc_hidden_stack.push(doc_hidden);
419     }
420
421     fn exit_lint_attrs(&mut self, _: &LateContext<'_, '_>, _attrs: &[ast::Attribute]) {
422         self.doc_hidden_stack.pop().expect("empty doc_hidden_stack");
423     }
424
425     fn check_crate(&mut self, cx: &LateContext<'_, '_>, krate: &hir::Crate) {
426         self.check_missing_docs_attrs(cx, None, &krate.attrs, krate.span, "crate");
427
428         for macro_def in &krate.exported_macros {
429             let has_doc = macro_def.attrs.iter().any(|a| has_doc(a));
430             if !has_doc {
431                 cx.span_lint(MISSING_DOCS,
432                              cx.tcx.sess.source_map().def_span(macro_def.span),
433                              "missing documentation for macro");
434             }
435         }
436     }
437
438     fn check_item(&mut self, cx: &LateContext<'_, '_>, it: &hir::Item) {
439         let desc = match it.node {
440             hir::ItemKind::Fn(..) => "a function",
441             hir::ItemKind::Mod(..) => "a module",
442             hir::ItemKind::Enum(..) => "an enum",
443             hir::ItemKind::Struct(..) => "a struct",
444             hir::ItemKind::Union(..) => "a union",
445             hir::ItemKind::Trait(.., ref trait_item_refs) => {
446                 // Issue #11592, traits are always considered exported, even when private.
447                 if let hir::VisibilityKind::Inherited = it.vis.node {
448                     self.private_traits.insert(it.hir_id);
449                     for trait_item_ref in trait_item_refs {
450                         let hir_id = cx.tcx.hir().node_to_hir_id(trait_item_ref.id.node_id);
451                         self.private_traits.insert(hir_id);
452                     }
453                     return;
454                 }
455                 "a trait"
456             }
457             hir::ItemKind::Ty(..) => "a type alias",
458             hir::ItemKind::Impl(.., Some(ref trait_ref), _, ref impl_item_refs) => {
459                 // If the trait is private, add the impl items to private_traits so they don't get
460                 // reported for missing docs.
461                 let real_trait = trait_ref.path.def.def_id();
462                 if let Some(node_id) = cx.tcx.hir().as_local_node_id(real_trait) {
463                     match cx.tcx.hir().find(node_id) {
464                         Some(Node::Item(item)) => {
465                             if let hir::VisibilityKind::Inherited = item.vis.node {
466                                 for impl_item_ref in impl_item_refs {
467                                     let hir_id = cx.tcx.hir().node_to_hir_id(
468                                         impl_item_ref.id.node_id);
469                                     self.private_traits.insert(hir_id);
470                                 }
471                             }
472                         }
473                         _ => {}
474                     }
475                 }
476                 return;
477             }
478             hir::ItemKind::Const(..) => "a constant",
479             hir::ItemKind::Static(..) => "a static",
480             _ => return,
481         };
482
483         self.check_missing_docs_attrs(cx, Some(it.hir_id), &it.attrs, it.span, desc);
484     }
485
486     fn check_trait_item(&mut self, cx: &LateContext<'_, '_>, trait_item: &hir::TraitItem) {
487         if self.private_traits.contains(&trait_item.hir_id) {
488             return;
489         }
490
491         let desc = match trait_item.node {
492             hir::TraitItemKind::Const(..) => "an associated constant",
493             hir::TraitItemKind::Method(..) => "a trait method",
494             hir::TraitItemKind::Type(..) => "an associated type",
495         };
496
497         self.check_missing_docs_attrs(cx,
498                                       Some(trait_item.hir_id),
499                                       &trait_item.attrs,
500                                       trait_item.span,
501                                       desc);
502     }
503
504     fn check_impl_item(&mut self, cx: &LateContext<'_, '_>, impl_item: &hir::ImplItem) {
505         // If the method is an impl for a trait, don't doc.
506         if method_context(cx, impl_item.hir_id) == MethodLateContext::TraitImpl {
507             return;
508         }
509
510         let desc = match impl_item.node {
511             hir::ImplItemKind::Const(..) => "an associated constant",
512             hir::ImplItemKind::Method(..) => "a method",
513             hir::ImplItemKind::Type(_) => "an associated type",
514             hir::ImplItemKind::Existential(_) => "an associated existential type",
515         };
516         self.check_missing_docs_attrs(cx,
517                                       Some(impl_item.hir_id),
518                                       &impl_item.attrs,
519                                       impl_item.span,
520                                       desc);
521     }
522
523     fn check_struct_field(&mut self, cx: &LateContext<'_, '_>, sf: &hir::StructField) {
524         if !sf.is_positional() {
525             self.check_missing_docs_attrs(cx,
526                                           Some(sf.hir_id),
527                                           &sf.attrs,
528                                           sf.span,
529                                           "a struct field")
530         }
531     }
532
533     fn check_variant(&mut self, cx: &LateContext<'_, '_>, v: &hir::Variant, _: &hir::Generics) {
534         self.check_missing_docs_attrs(cx,
535                                       Some(v.node.data.hir_id()),
536                                       &v.node.attrs,
537                                       v.span,
538                                       "a variant");
539     }
540 }
541
542 declare_lint! {
543     pub MISSING_COPY_IMPLEMENTATIONS,
544     Allow,
545     "detects potentially-forgotten implementations of `Copy`"
546 }
547
548 #[derive(Copy, Clone)]
549 pub struct MissingCopyImplementations;
550
551 impl LintPass for MissingCopyImplementations {
552     fn name(&self) -> &'static str {
553         "MissingCopyImplementations"
554     }
555
556     fn get_lints(&self) -> LintArray {
557         lint_array!(MISSING_COPY_IMPLEMENTATIONS)
558     }
559 }
560
561 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for MissingCopyImplementations {
562     fn check_item(&mut self, cx: &LateContext<'_, '_>, item: &hir::Item) {
563         if !cx.access_levels.is_reachable(item.id) {
564             return;
565         }
566         let (def, ty) = match item.node {
567             hir::ItemKind::Struct(_, ref ast_generics) => {
568                 if !ast_generics.params.is_empty() {
569                     return;
570                 }
571                 let def = cx.tcx.adt_def(cx.tcx.hir().local_def_id(item.id));
572                 (def, cx.tcx.mk_adt(def, cx.tcx.intern_substs(&[])))
573             }
574             hir::ItemKind::Union(_, ref ast_generics) => {
575                 if !ast_generics.params.is_empty() {
576                     return;
577                 }
578                 let def = cx.tcx.adt_def(cx.tcx.hir().local_def_id(item.id));
579                 (def, cx.tcx.mk_adt(def, cx.tcx.intern_substs(&[])))
580             }
581             hir::ItemKind::Enum(_, ref ast_generics) => {
582                 if !ast_generics.params.is_empty() {
583                     return;
584                 }
585                 let def = cx.tcx.adt_def(cx.tcx.hir().local_def_id(item.id));
586                 (def, cx.tcx.mk_adt(def, cx.tcx.intern_substs(&[])))
587             }
588             _ => return,
589         };
590         if def.has_dtor(cx.tcx) {
591             return;
592         }
593         let param_env = ty::ParamEnv::empty();
594         if ty.is_copy_modulo_regions(cx.tcx, param_env, item.span) {
595             return;
596         }
597         if param_env.can_type_implement_copy(cx.tcx, ty).is_ok() {
598             cx.span_lint(MISSING_COPY_IMPLEMENTATIONS,
599                          item.span,
600                          "type could implement `Copy`; consider adding `impl \
601                           Copy`")
602         }
603     }
604 }
605
606 declare_lint! {
607     MISSING_DEBUG_IMPLEMENTATIONS,
608     Allow,
609     "detects missing implementations of fmt::Debug"
610 }
611
612 pub struct MissingDebugImplementations {
613     impling_types: Option<NodeSet>,
614 }
615
616 impl MissingDebugImplementations {
617     pub fn new() -> MissingDebugImplementations {
618         MissingDebugImplementations { impling_types: None }
619     }
620 }
621
622 impl LintPass for MissingDebugImplementations {
623     fn name(&self) -> &'static str {
624         "MissingDebugImplementations"
625     }
626
627     fn get_lints(&self) -> LintArray {
628         lint_array!(MISSING_DEBUG_IMPLEMENTATIONS)
629     }
630 }
631
632 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for MissingDebugImplementations {
633     fn check_item(&mut self, cx: &LateContext<'_, '_>, item: &hir::Item) {
634         if !cx.access_levels.is_reachable(item.id) {
635             return;
636         }
637
638         match item.node {
639             hir::ItemKind::Struct(..) |
640             hir::ItemKind::Union(..) |
641             hir::ItemKind::Enum(..) => {}
642             _ => return,
643         }
644
645         let debug = match cx.tcx.lang_items().debug_trait() {
646             Some(debug) => debug,
647             None => return,
648         };
649
650         if self.impling_types.is_none() {
651             let mut impls = NodeSet::default();
652             cx.tcx.for_each_impl(debug, |d| {
653                 if let Some(ty_def) = cx.tcx.type_of(d).ty_adt_def() {
654                     if let Some(node_id) = cx.tcx.hir().as_local_node_id(ty_def.did) {
655                         impls.insert(node_id);
656                     }
657                 }
658             });
659
660             self.impling_types = Some(impls);
661             debug!("{:?}", self.impling_types);
662         }
663
664         if !self.impling_types.as_ref().unwrap().contains(&item.id) {
665             cx.span_lint(MISSING_DEBUG_IMPLEMENTATIONS,
666                          item.span,
667                          "type does not implement `fmt::Debug`; consider adding #[derive(Debug)] \
668                           or a manual implementation")
669         }
670     }
671 }
672
673 declare_lint! {
674     pub ANONYMOUS_PARAMETERS,
675     Allow,
676     "detects anonymous parameters"
677 }
678
679 /// Checks for use of anonymous parameters (RFC 1685).
680 #[derive(Copy, Clone)]
681 pub struct AnonymousParameters;
682
683 impl LintPass for AnonymousParameters {
684     fn name(&self) -> &'static str {
685         "AnonymousParameters"
686     }
687
688     fn get_lints(&self) -> LintArray {
689         lint_array!(ANONYMOUS_PARAMETERS)
690     }
691 }
692
693 impl EarlyLintPass for AnonymousParameters {
694     fn check_trait_item(&mut self, cx: &EarlyContext<'_>, it: &ast::TraitItem) {
695         match it.node {
696             ast::TraitItemKind::Method(ref sig, _) => {
697                 for arg in sig.decl.inputs.iter() {
698                     match arg.pat.node {
699                         ast::PatKind::Ident(_, ident, None) => {
700                             if ident.name == keywords::Invalid.name() {
701                                 let ty_snip = cx
702                                     .sess
703                                     .source_map()
704                                     .span_to_snippet(arg.ty.span);
705
706                                 let (ty_snip, appl) = if let Ok(snip) = ty_snip {
707                                     (snip, Applicability::MachineApplicable)
708                                 } else {
709                                     ("<type>".to_owned(), Applicability::HasPlaceholders)
710                                 };
711
712                                 cx.struct_span_lint(
713                                     ANONYMOUS_PARAMETERS,
714                                     arg.pat.span,
715                                     "anonymous parameters are deprecated and will be \
716                                      removed in the next edition."
717                                 ).span_suggestion(
718                                     arg.pat.span,
719                                     "Try naming the parameter or explicitly \
720                                     ignoring it",
721                                     format!("_: {}", ty_snip),
722                                     appl
723                                 ).emit();
724                             }
725                         }
726                         _ => (),
727                     }
728                 }
729             },
730             _ => (),
731         }
732     }
733 }
734
735 /// Check for use of attributes which have been deprecated.
736 #[derive(Clone)]
737 pub struct DeprecatedAttr {
738     // This is not free to compute, so we want to keep it around, rather than
739     // compute it for every attribute.
740     depr_attrs: Vec<&'static (&'static str, AttributeType, AttributeTemplate, AttributeGate)>,
741 }
742
743 impl DeprecatedAttr {
744     pub fn new() -> DeprecatedAttr {
745         DeprecatedAttr {
746             depr_attrs: deprecated_attributes(),
747         }
748     }
749 }
750
751 impl LintPass for DeprecatedAttr {
752     fn name(&self) -> &'static str {
753         "DeprecatedAttr"
754     }
755
756     fn get_lints(&self) -> LintArray {
757         lint_array!()
758     }
759 }
760
761 impl EarlyLintPass for DeprecatedAttr {
762     fn check_attribute(&mut self, cx: &EarlyContext<'_>, attr: &ast::Attribute) {
763         for &&(n, _, _, ref g) in &self.depr_attrs {
764             if attr.name() == n {
765                 if let &AttributeGate::Gated(Stability::Deprecated(link, suggestion),
766                                              ref name,
767                                              ref reason,
768                                              _) = g {
769                     let msg = format!("use of deprecated attribute `{}`: {}. See {}",
770                                       name, reason, link);
771                     let mut err = cx.struct_span_lint(DEPRECATED, attr.span, &msg);
772                     err.span_suggestion_short(
773                         attr.span,
774                         suggestion.unwrap_or("remove this attribute"),
775                         String::new(),
776                         Applicability::MachineApplicable
777                     );
778                     err.emit();
779                 }
780                 return;
781             }
782         }
783     }
784 }
785
786 declare_lint! {
787     pub UNUSED_DOC_COMMENTS,
788     Warn,
789     "detects doc comments that aren't used by rustdoc"
790 }
791
792 #[derive(Copy, Clone)]
793 pub struct UnusedDocComment;
794
795 impl LintPass for UnusedDocComment {
796     fn name(&self) -> &'static str {
797         "UnusedDocComment"
798     }
799
800     fn get_lints(&self) -> LintArray {
801         lint_array![UNUSED_DOC_COMMENTS]
802     }
803 }
804
805 impl UnusedDocComment {
806     fn warn_if_doc<'a, 'tcx,
807                    I: Iterator<Item=&'a ast::Attribute>,
808                    C: LintContext<'tcx>>(&self, mut attrs: I, cx: &C) {
809         if let Some(attr) = attrs.find(|a| a.is_value_str() && a.check_name("doc")) {
810             cx.struct_span_lint(UNUSED_DOC_COMMENTS, attr.span, "doc comment not used by rustdoc")
811               .emit();
812         }
813     }
814 }
815
816 impl EarlyLintPass for UnusedDocComment {
817     fn check_local(&mut self, cx: &EarlyContext<'_>, decl: &ast::Local) {
818         self.warn_if_doc(decl.attrs.iter(), cx);
819     }
820
821     fn check_arm(&mut self, cx: &EarlyContext<'_>, arm: &ast::Arm) {
822         self.warn_if_doc(arm.attrs.iter(), cx);
823     }
824
825     fn check_expr(&mut self, cx: &EarlyContext<'_>, expr: &ast::Expr) {
826         self.warn_if_doc(expr.attrs.iter(), cx);
827     }
828 }
829
830 declare_lint! {
831     PLUGIN_AS_LIBRARY,
832     Warn,
833     "compiler plugin used as ordinary library in non-plugin crate"
834 }
835
836 #[derive(Copy, Clone)]
837 pub struct PluginAsLibrary;
838
839 impl LintPass for PluginAsLibrary {
840     fn name(&self) -> &'static str {
841         "PluginAsLibrary"
842     }
843
844     fn get_lints(&self) -> LintArray {
845         lint_array![PLUGIN_AS_LIBRARY]
846     }
847 }
848
849 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for PluginAsLibrary {
850     fn check_item(&mut self, cx: &LateContext<'_, '_>, it: &hir::Item) {
851         if cx.tcx.plugin_registrar_fn(LOCAL_CRATE).is_some() {
852             // We're compiling a plugin; it's fine to link other plugins.
853             return;
854         }
855
856         match it.node {
857             hir::ItemKind::ExternCrate(..) => (),
858             _ => return,
859         };
860
861         let def_id = cx.tcx.hir().local_def_id(it.id);
862         let prfn = match cx.tcx.extern_mod_stmt_cnum(def_id) {
863             Some(cnum) => cx.tcx.plugin_registrar_fn(cnum),
864             None => {
865                 // Probably means we aren't linking the crate for some reason.
866                 //
867                 // Not sure if / when this could happen.
868                 return;
869             }
870         };
871
872         if prfn.is_some() {
873             cx.span_lint(PLUGIN_AS_LIBRARY,
874                          it.span,
875                          "compiler plugin used as an ordinary library");
876         }
877     }
878 }
879
880 declare_lint! {
881     NO_MANGLE_CONST_ITEMS,
882     Deny,
883     "const items will not have their symbols exported"
884 }
885
886 declare_lint! {
887     NO_MANGLE_GENERIC_ITEMS,
888     Warn,
889     "generic items must be mangled"
890 }
891
892 #[derive(Copy, Clone)]
893 pub struct InvalidNoMangleItems;
894
895 impl LintPass for InvalidNoMangleItems {
896     fn name(&self) -> &'static str {
897         "InvalidNoMangleItems"
898     }
899
900     fn get_lints(&self) -> LintArray {
901         lint_array!(NO_MANGLE_CONST_ITEMS,
902                     NO_MANGLE_GENERIC_ITEMS)
903     }
904 }
905
906 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for InvalidNoMangleItems {
907     fn check_item(&mut self, cx: &LateContext<'_, '_>, it: &hir::Item) {
908         match it.node {
909             hir::ItemKind::Fn(.., ref generics, _) => {
910                 if let Some(no_mangle_attr) = attr::find_by_name(&it.attrs, "no_mangle") {
911                     for param in &generics.params {
912                         match param.kind {
913                             GenericParamKind::Lifetime { .. } => {}
914                             GenericParamKind::Type { .. } |
915                             GenericParamKind::Const { .. } => {
916                                 let mut err = cx.struct_span_lint(
917                                     NO_MANGLE_GENERIC_ITEMS,
918                                     it.span,
919                                     "functions generic over types or consts must be mangled",
920                                 );
921                                 err.span_suggestion_short(
922                                     no_mangle_attr.span,
923                                     "remove this attribute",
924                                     String::new(),
925                                     // Use of `#[no_mangle]` suggests FFI intent; correct
926                                     // fix may be to monomorphize source by hand
927                                     Applicability::MaybeIncorrect
928                                 );
929                                 err.emit();
930                                 break;
931                             }
932                         }
933                     }
934                 }
935             }
936             hir::ItemKind::Const(..) => {
937                 if attr::contains_name(&it.attrs, "no_mangle") {
938                     // Const items do not refer to a particular location in memory, and therefore
939                     // don't have anything to attach a symbol to
940                     let msg = "const items should never be #[no_mangle]";
941                     let mut err = cx.struct_span_lint(NO_MANGLE_CONST_ITEMS, it.span, msg);
942
943                     // account for "pub const" (#45562)
944                     let start = cx.tcx.sess.source_map().span_to_snippet(it.span)
945                         .map(|snippet| snippet.find("const").unwrap_or(0))
946                         .unwrap_or(0) as u32;
947                     // `const` is 5 chars
948                     let const_span = it.span.with_hi(BytePos(it.span.lo().0 + start + 5));
949                     err.span_suggestion(
950                         const_span,
951                         "try a static value",
952                         "pub static".to_owned(),
953                         Applicability::MachineApplicable
954                     );
955                     err.emit();
956                 }
957             }
958             _ => {}
959         }
960     }
961 }
962
963 #[derive(Clone, Copy)]
964 pub struct MutableTransmutes;
965
966 declare_lint! {
967     MUTABLE_TRANSMUTES,
968     Deny,
969     "mutating transmuted &mut T from &T may cause undefined behavior"
970 }
971
972 impl LintPass for MutableTransmutes {
973     fn name(&self) -> &'static str {
974         "MutableTransmutes"
975     }
976
977     fn get_lints(&self) -> LintArray {
978         lint_array!(MUTABLE_TRANSMUTES)
979     }
980 }
981
982 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for MutableTransmutes {
983     fn check_expr(&mut self, cx: &LateContext<'_, '_>, expr: &hir::Expr) {
984         use rustc_target::spec::abi::Abi::RustIntrinsic;
985
986         let msg = "mutating transmuted &mut T from &T may cause undefined behavior, \
987                    consider instead using an UnsafeCell";
988         match get_transmute_from_to(cx, expr) {
989             Some((&ty::Ref(_, _, from_mt), &ty::Ref(_, _, to_mt))) => {
990                 if to_mt == hir::Mutability::MutMutable &&
991                    from_mt == hir::Mutability::MutImmutable {
992                     cx.span_lint(MUTABLE_TRANSMUTES, expr.span, msg);
993                 }
994             }
995             _ => (),
996         }
997
998         fn get_transmute_from_to<'a, 'tcx>
999             (cx: &LateContext<'a, 'tcx>,
1000              expr: &hir::Expr)
1001              -> Option<(&'tcx ty::TyKind<'tcx>, &'tcx ty::TyKind<'tcx>)> {
1002             let def = if let hir::ExprKind::Path(ref qpath) = expr.node {
1003                 cx.tables.qpath_def(qpath, expr.hir_id)
1004             } else {
1005                 return None;
1006             };
1007             if let Def::Fn(did) = def {
1008                 if !def_id_is_transmute(cx, did) {
1009                     return None;
1010                 }
1011                 let sig = cx.tables.node_type(expr.hir_id).fn_sig(cx.tcx);
1012                 let from = sig.inputs().skip_binder()[0];
1013                 let to = *sig.output().skip_binder();
1014                 return Some((&from.sty, &to.sty));
1015             }
1016             None
1017         }
1018
1019         fn def_id_is_transmute(cx: &LateContext<'_, '_>, def_id: DefId) -> bool {
1020             cx.tcx.fn_sig(def_id).abi() == RustIntrinsic &&
1021             cx.tcx.item_name(def_id) == "transmute"
1022         }
1023     }
1024 }
1025
1026 /// Forbids using the `#[feature(...)]` attribute
1027 #[derive(Copy, Clone)]
1028 pub struct UnstableFeatures;
1029
1030 declare_lint! {
1031     UNSTABLE_FEATURES,
1032     Allow,
1033     "enabling unstable features (deprecated. do not use)"
1034 }
1035
1036 impl LintPass for UnstableFeatures {
1037     fn name(&self) -> &'static str {
1038         "UnstableFeatures"
1039     }
1040
1041     fn get_lints(&self) -> LintArray {
1042         lint_array!(UNSTABLE_FEATURES)
1043     }
1044 }
1045
1046 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UnstableFeatures {
1047     fn check_attribute(&mut self, ctx: &LateContext<'_, '_>, attr: &ast::Attribute) {
1048         if attr.check_name("feature") {
1049             if let Some(items) = attr.meta_item_list() {
1050                 for item in items {
1051                     ctx.span_lint(UNSTABLE_FEATURES, item.span(), "unstable feature");
1052                 }
1053             }
1054         }
1055     }
1056 }
1057
1058 /// Lint for unions that contain fields with possibly non-trivial destructors.
1059 pub struct UnionsWithDropFields;
1060
1061 declare_lint! {
1062     UNIONS_WITH_DROP_FIELDS,
1063     Warn,
1064     "use of unions that contain fields with possibly non-trivial drop code"
1065 }
1066
1067 impl LintPass for UnionsWithDropFields {
1068     fn name(&self) -> &'static str {
1069         "UnionsWithDropFields"
1070     }
1071
1072     fn get_lints(&self) -> LintArray {
1073         lint_array!(UNIONS_WITH_DROP_FIELDS)
1074     }
1075 }
1076
1077 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UnionsWithDropFields {
1078     fn check_item(&mut self, ctx: &LateContext<'_, '_>, item: &hir::Item) {
1079         if let hir::ItemKind::Union(ref vdata, _) = item.node {
1080             for field in vdata.fields() {
1081                 let field_ty = ctx.tcx.type_of(ctx.tcx.hir().local_def_id(field.id));
1082                 if field_ty.needs_drop(ctx.tcx, ctx.param_env) {
1083                     ctx.span_lint(UNIONS_WITH_DROP_FIELDS,
1084                                   field.span,
1085                                   "union contains a field with possibly non-trivial drop code, \
1086                                    drop code of union fields is ignored when dropping the union");
1087                     return;
1088                 }
1089             }
1090         }
1091     }
1092 }
1093
1094 /// Lint for items marked `pub` that aren't reachable from other crates.
1095 #[derive(Copy, Clone)]
1096 pub struct UnreachablePub;
1097
1098 declare_lint! {
1099     pub UNREACHABLE_PUB,
1100     Allow,
1101     "`pub` items not reachable from crate root"
1102 }
1103
1104 impl LintPass for UnreachablePub {
1105     fn name(&self) -> &'static str {
1106         "UnreachablePub"
1107     }
1108
1109     fn get_lints(&self) -> LintArray {
1110         lint_array!(UNREACHABLE_PUB)
1111     }
1112 }
1113
1114 impl UnreachablePub {
1115     fn perform_lint(&self, cx: &LateContext<'_, '_>, what: &str, id: hir::HirId,
1116                     vis: &hir::Visibility, span: Span, exportable: bool) {
1117         let mut applicability = Applicability::MachineApplicable;
1118         let node_id = cx.tcx.hir().hir_to_node_id(id);
1119         match vis.node {
1120             hir::VisibilityKind::Public if !cx.access_levels.is_reachable(node_id) => {
1121                 if span.ctxt().outer().expn_info().is_some() {
1122                     applicability = Applicability::MaybeIncorrect;
1123                 }
1124                 let def_span = cx.tcx.sess.source_map().def_span(span);
1125                 let mut err = cx.struct_span_lint(UNREACHABLE_PUB, def_span,
1126                                                   &format!("unreachable `pub` {}", what));
1127                 let replacement = if cx.tcx.features().crate_visibility_modifier {
1128                     "crate"
1129                 } else {
1130                     "pub(crate)"
1131                 }.to_owned();
1132
1133                 err.span_suggestion(
1134                     vis.span,
1135                     "consider restricting its visibility",
1136                     replacement,
1137                     applicability,
1138                 );
1139                 if exportable {
1140                     err.help("or consider exporting it for use by other crates");
1141                 }
1142                 err.emit();
1143             },
1144             _ => {}
1145         }
1146     }
1147 }
1148
1149
1150 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UnreachablePub {
1151     fn check_item(&mut self, cx: &LateContext<'_, '_>, item: &hir::Item) {
1152         self.perform_lint(cx, "item", item.hir_id, &item.vis, item.span, true);
1153     }
1154
1155     fn check_foreign_item(&mut self, cx: &LateContext<'_, '_>, foreign_item: &hir::ForeignItem) {
1156         self.perform_lint(cx, "item", foreign_item.hir_id, &foreign_item.vis,
1157                           foreign_item.span, true);
1158     }
1159
1160     fn check_struct_field(&mut self, cx: &LateContext<'_, '_>, field: &hir::StructField) {
1161         self.perform_lint(cx, "field", field.hir_id, &field.vis, field.span, false);
1162     }
1163
1164     fn check_impl_item(&mut self, cx: &LateContext<'_, '_>, impl_item: &hir::ImplItem) {
1165         self.perform_lint(cx, "item", impl_item.hir_id, &impl_item.vis, impl_item.span, false);
1166     }
1167 }
1168
1169 /// Lint for trait and lifetime bounds in type aliases being mostly ignored.
1170 /// They are relevant when using associated types, but otherwise neither checked
1171 /// at definition site nor enforced at use site.
1172
1173 pub struct TypeAliasBounds;
1174
1175 declare_lint! {
1176     TYPE_ALIAS_BOUNDS,
1177     Warn,
1178     "bounds in type aliases are not enforced"
1179 }
1180
1181 impl LintPass for TypeAliasBounds {
1182     fn name(&self) -> &'static str {
1183         "TypeAliasBounds"
1184     }
1185
1186     fn get_lints(&self) -> LintArray {
1187         lint_array!(TYPE_ALIAS_BOUNDS)
1188     }
1189 }
1190
1191 impl TypeAliasBounds {
1192     fn is_type_variable_assoc(qpath: &hir::QPath) -> bool {
1193         match *qpath {
1194             hir::QPath::TypeRelative(ref ty, _) => {
1195                 // If this is a type variable, we found a `T::Assoc`.
1196                 match ty.node {
1197                     hir::TyKind::Path(hir::QPath::Resolved(None, ref path)) => {
1198                         match path.def {
1199                             Def::TyParam(_) => true,
1200                             _ => false
1201                         }
1202                     }
1203                     _ => false
1204                 }
1205             }
1206             hir::QPath::Resolved(..) => false,
1207         }
1208     }
1209
1210     fn suggest_changing_assoc_types(ty: &hir::Ty, err: &mut DiagnosticBuilder<'_>) {
1211         // Access to associates types should use `<T as Bound>::Assoc`, which does not need a
1212         // bound.  Let's see if this type does that.
1213
1214         // We use a HIR visitor to walk the type.
1215         use rustc::hir::intravisit::{self, Visitor};
1216         struct WalkAssocTypes<'a, 'db> where 'db: 'a {
1217             err: &'a mut DiagnosticBuilder<'db>
1218         }
1219         impl<'a, 'db, 'v> Visitor<'v> for WalkAssocTypes<'a, 'db> {
1220             fn nested_visit_map<'this>(&'this mut self) -> intravisit::NestedVisitorMap<'this, 'v>
1221             {
1222                 intravisit::NestedVisitorMap::None
1223             }
1224
1225             fn visit_qpath(&mut self, qpath: &'v hir::QPath, id: hir::HirId, span: Span) {
1226                 if TypeAliasBounds::is_type_variable_assoc(qpath) {
1227                     self.err.span_help(span,
1228                         "use fully disambiguated paths (i.e., `<T as Trait>::Assoc`) to refer to \
1229                          associated types in type aliases");
1230                 }
1231                 intravisit::walk_qpath(self, qpath, id, span)
1232             }
1233         }
1234
1235         // Let's go for a walk!
1236         let mut visitor = WalkAssocTypes { err };
1237         visitor.visit_ty(ty);
1238     }
1239 }
1240
1241 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for TypeAliasBounds {
1242     fn check_item(&mut self, cx: &LateContext<'_, '_>, item: &hir::Item) {
1243         let (ty, type_alias_generics) = match item.node {
1244             hir::ItemKind::Ty(ref ty, ref generics) => (&*ty, generics),
1245             _ => return,
1246         };
1247         let mut suggested_changing_assoc_types = false;
1248         // There must not be a where clause
1249         if !type_alias_generics.where_clause.predicates.is_empty() {
1250             let spans : Vec<_> = type_alias_generics.where_clause.predicates.iter()
1251                 .map(|pred| pred.span()).collect();
1252             let mut err = cx.struct_span_lint(TYPE_ALIAS_BOUNDS, spans,
1253                 "where clauses are not enforced in type aliases");
1254             err.help("the clause will not be checked when the type alias is used, \
1255                       and should be removed");
1256             if !suggested_changing_assoc_types {
1257                 TypeAliasBounds::suggest_changing_assoc_types(ty, &mut err);
1258                 suggested_changing_assoc_types = true;
1259             }
1260             err.emit();
1261         }
1262         // The parameters must not have bounds
1263         for param in type_alias_generics.params.iter() {
1264             let spans: Vec<_> = param.bounds.iter().map(|b| b.span()).collect();
1265             if !spans.is_empty() {
1266                 let mut err = cx.struct_span_lint(
1267                     TYPE_ALIAS_BOUNDS,
1268                     spans,
1269                     "bounds on generic parameters are not enforced in type aliases",
1270                 );
1271                 err.help("the bound will not be checked when the type alias is used, \
1272                           and should be removed");
1273                 if !suggested_changing_assoc_types {
1274                     TypeAliasBounds::suggest_changing_assoc_types(ty, &mut err);
1275                     suggested_changing_assoc_types = true;
1276                 }
1277                 err.emit();
1278             }
1279         }
1280     }
1281 }
1282
1283 /// Lint constants that are erroneous.
1284 /// Without this lint, we might not get any diagnostic if the constant is
1285 /// unused within this crate, even though downstream crates can't use it
1286 /// without producing an error.
1287 pub struct UnusedBrokenConst;
1288
1289 impl LintPass for UnusedBrokenConst {
1290     fn name(&self) -> &'static str {
1291         "UnusedBrokenConst"
1292     }
1293
1294     fn get_lints(&self) -> LintArray {
1295         lint_array!()
1296     }
1297 }
1298 fn check_const(cx: &LateContext<'_, '_>, body_id: hir::BodyId) {
1299     let def_id = cx.tcx.hir().body_owner_def_id(body_id);
1300     let is_static = cx.tcx.is_static(def_id).is_some();
1301     let param_env = if is_static {
1302         // Use the same param_env as `codegen_static_initializer`, to reuse the cache.
1303         ty::ParamEnv::reveal_all()
1304     } else {
1305         cx.tcx.param_env(def_id)
1306     };
1307     let cid = ::rustc::mir::interpret::GlobalId {
1308         instance: ty::Instance::mono(cx.tcx, def_id),
1309         promoted: None
1310     };
1311     // trigger the query once for all constants since that will already report the errors
1312     let _ = cx.tcx.const_eval(param_env.and(cid));
1313 }
1314
1315 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UnusedBrokenConst {
1316     fn check_item(&mut self, cx: &LateContext<'_, '_>, it: &hir::Item) {
1317         match it.node {
1318             hir::ItemKind::Const(_, body_id) => {
1319                 check_const(cx, body_id);
1320             },
1321             hir::ItemKind::Static(_, _, body_id) => {
1322                 check_const(cx, body_id);
1323             },
1324             _ => {},
1325         }
1326     }
1327 }
1328
1329 /// Lint for trait and lifetime bounds that don't depend on type parameters
1330 /// which either do nothing, or stop the item from being used.
1331 pub struct TrivialConstraints;
1332
1333 declare_lint! {
1334     TRIVIAL_BOUNDS,
1335     Warn,
1336     "these bounds don't depend on an type parameters"
1337 }
1338
1339 impl LintPass for TrivialConstraints {
1340     fn name(&self) -> &'static str {
1341         "TrivialConstraints"
1342     }
1343
1344     fn get_lints(&self) -> LintArray {
1345         lint_array!(TRIVIAL_BOUNDS)
1346     }
1347 }
1348
1349 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for TrivialConstraints {
1350     fn check_item(
1351         &mut self,
1352         cx: &LateContext<'a, 'tcx>,
1353         item: &'tcx hir::Item,
1354     ) {
1355         use rustc::ty::fold::TypeFoldable;
1356         use rustc::ty::Predicate::*;
1357
1358
1359         if cx.tcx.features().trivial_bounds {
1360             let def_id = cx.tcx.hir().local_def_id(item.id);
1361             let predicates = cx.tcx.predicates_of(def_id);
1362             for &(predicate, span) in &predicates.predicates {
1363                 let predicate_kind_name = match predicate {
1364                     Trait(..) => "Trait",
1365                     TypeOutlives(..) |
1366                     RegionOutlives(..) => "Lifetime",
1367
1368                     // Ignore projections, as they can only be global
1369                     // if the trait bound is global
1370                     Projection(..) |
1371                     // Ignore bounds that a user can't type
1372                     WellFormed(..) |
1373                     ObjectSafe(..) |
1374                     ClosureKind(..) |
1375                     Subtype(..) |
1376                     ConstEvaluatable(..) => continue,
1377                 };
1378                 if predicate.is_global() {
1379                     cx.span_lint(
1380                         TRIVIAL_BOUNDS,
1381                         span,
1382                         &format!("{} bound {} does not depend on any type \
1383                                 or lifetime parameters", predicate_kind_name, predicate),
1384                     );
1385                 }
1386             }
1387         }
1388     }
1389 }
1390
1391
1392 /// Does nothing as a lint pass, but registers some `Lint`s
1393 /// which are used by other parts of the compiler.
1394 #[derive(Copy, Clone)]
1395 pub struct SoftLints;
1396
1397 impl LintPass for SoftLints {
1398     fn name(&self) -> &'static str {
1399         "SoftLints"
1400     }
1401
1402     fn get_lints(&self) -> LintArray {
1403         lint_array!(
1404             WHILE_TRUE,
1405             BOX_POINTERS,
1406             NON_SHORTHAND_FIELD_PATTERNS,
1407             UNSAFE_CODE,
1408             MISSING_DOCS,
1409             MISSING_COPY_IMPLEMENTATIONS,
1410             MISSING_DEBUG_IMPLEMENTATIONS,
1411             ANONYMOUS_PARAMETERS,
1412             UNUSED_DOC_COMMENTS,
1413             PLUGIN_AS_LIBRARY,
1414             NO_MANGLE_CONST_ITEMS,
1415             NO_MANGLE_GENERIC_ITEMS,
1416             MUTABLE_TRANSMUTES,
1417             UNSTABLE_FEATURES,
1418             UNIONS_WITH_DROP_FIELDS,
1419             UNREACHABLE_PUB,
1420             TYPE_ALIAS_BOUNDS,
1421             TRIVIAL_BOUNDS
1422         )
1423     }
1424 }
1425
1426 declare_lint! {
1427     pub ELLIPSIS_INCLUSIVE_RANGE_PATTERNS,
1428     Allow,
1429     "`...` range patterns are deprecated"
1430 }
1431
1432
1433 pub struct EllipsisInclusiveRangePatterns;
1434
1435 impl LintPass for EllipsisInclusiveRangePatterns {
1436     fn name(&self) -> &'static str {
1437         "EllipsisInclusiveRangePatterns"
1438     }
1439
1440     fn get_lints(&self) -> LintArray {
1441         lint_array!(ELLIPSIS_INCLUSIVE_RANGE_PATTERNS)
1442     }
1443 }
1444
1445 impl EarlyLintPass for EllipsisInclusiveRangePatterns {
1446     fn check_pat(&mut self, cx: &EarlyContext<'_>, pat: &ast::Pat, visit_subpats: &mut bool) {
1447         use self::ast::{PatKind, RangeEnd, RangeSyntax::DotDotDot};
1448
1449         /// If `pat` is a `...` pattern, return the start and end of the range, as well as the span
1450         /// corresponding to the ellipsis.
1451         fn matches_ellipsis_pat(pat: &ast::Pat) -> Option<(&P<Expr>, &P<Expr>, Span)> {
1452             match &pat.node {
1453                 PatKind::Range(a, b, Spanned { span, node: RangeEnd::Included(DotDotDot), .. }) => {
1454                     Some((a, b, *span))
1455                 }
1456                 _ => None,
1457             }
1458         }
1459
1460         let (parenthesise, endpoints) = match &pat.node {
1461             PatKind::Ref(subpat, _) => (true, matches_ellipsis_pat(&subpat)),
1462             _ => (false, matches_ellipsis_pat(pat)),
1463         };
1464
1465         if let Some((start, end, join)) = endpoints {
1466             let msg = "`...` range patterns are deprecated";
1467             let suggestion = "use `..=` for an inclusive range";
1468             if parenthesise {
1469                 *visit_subpats = false;
1470                 let mut err = cx.struct_span_lint(ELLIPSIS_INCLUSIVE_RANGE_PATTERNS, pat.span, msg);
1471                 err.span_suggestion(
1472                     pat.span,
1473                     suggestion,
1474                     format!("&({}..={})", expr_to_string(&start), expr_to_string(&end)),
1475                     Applicability::MachineApplicable,
1476                 );
1477                 err.emit();
1478             } else {
1479                 let mut err = cx.struct_span_lint(ELLIPSIS_INCLUSIVE_RANGE_PATTERNS, join, msg);
1480                 err.span_suggestion_short(
1481                     join,
1482                     suggestion,
1483                     "..=".to_owned(),
1484                     Applicability::MachineApplicable,
1485                 );
1486                 err.emit();
1487             };
1488         }
1489     }
1490 }
1491
1492 declare_lint! {
1493     UNNAMEABLE_TEST_ITEMS,
1494     Warn,
1495     "detects an item that cannot be named being marked as #[test_case]",
1496     report_in_external_macro: true
1497 }
1498
1499 pub struct UnnameableTestItems {
1500     boundary: ast::NodeId, // NodeId of the item under which things are not nameable
1501     items_nameable: bool,
1502 }
1503
1504 impl UnnameableTestItems {
1505     pub fn new() -> Self {
1506         Self {
1507             boundary: ast::DUMMY_NODE_ID,
1508             items_nameable: true
1509         }
1510     }
1511 }
1512
1513 impl LintPass for UnnameableTestItems {
1514     fn name(&self) -> &'static str {
1515         "UnnameableTestItems"
1516     }
1517
1518     fn get_lints(&self) -> LintArray {
1519         lint_array!(UNNAMEABLE_TEST_ITEMS)
1520     }
1521 }
1522
1523 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UnnameableTestItems {
1524     fn check_item(&mut self, cx: &LateContext<'_, '_>, it: &hir::Item) {
1525         if self.items_nameable {
1526             if let hir::ItemKind::Mod(..) = it.node {}
1527             else {
1528                 self.items_nameable = false;
1529                 self.boundary = it.id;
1530             }
1531             return;
1532         }
1533
1534         if let Some(attr) = attr::find_by_name(&it.attrs, "rustc_test_marker") {
1535             cx.struct_span_lint(
1536                 UNNAMEABLE_TEST_ITEMS,
1537                 attr.span,
1538                 "cannot test inner items",
1539             ).emit();
1540         }
1541     }
1542
1543     fn check_item_post(&mut self, _cx: &LateContext<'_, '_>, it: &hir::Item) {
1544         if !self.items_nameable && self.boundary == it.id {
1545             self.items_nameable = true;
1546         }
1547     }
1548 }
1549
1550 declare_lint! {
1551     pub KEYWORD_IDENTS,
1552     Allow,
1553     "detects edition keywords being used as an identifier"
1554 }
1555
1556 /// Check for uses of edition keywords used as an identifier.
1557 #[derive(Copy, Clone)]
1558 pub struct KeywordIdents;
1559
1560 impl LintPass for KeywordIdents {
1561     fn name(&self) -> &'static str {
1562         "KeywordIdents"
1563     }
1564
1565     fn get_lints(&self) -> LintArray {
1566         lint_array!(KEYWORD_IDENTS)
1567     }
1568 }
1569
1570 impl KeywordIdents {
1571     fn check_tokens(&mut self, cx: &EarlyContext<'_>, tokens: TokenStream) {
1572         for tt in tokens.into_trees() {
1573             match tt {
1574                 TokenTree::Token(span, tok) => match tok.ident() {
1575                     // only report non-raw idents
1576                     Some((ident, false)) => {
1577                         self.check_ident(cx, ast::Ident {
1578                             span: span.substitute_dummy(ident.span),
1579                             ..ident
1580                         });
1581                     }
1582                     _ => {},
1583                 }
1584                 TokenTree::Delimited(_, _, tts) => {
1585                     self.check_tokens(cx, tts)
1586                 },
1587             }
1588         }
1589     }
1590 }
1591
1592 impl EarlyLintPass for KeywordIdents {
1593     fn check_mac_def(&mut self, cx: &EarlyContext<'_>, mac_def: &ast::MacroDef, _id: ast::NodeId) {
1594         self.check_tokens(cx, mac_def.stream());
1595     }
1596     fn check_mac(&mut self, cx: &EarlyContext<'_>, mac: &ast::Mac) {
1597         self.check_tokens(cx, mac.node.tts.clone().into());
1598     }
1599     fn check_ident(&mut self, cx: &EarlyContext<'_>, ident: ast::Ident) {
1600         let ident_str = &ident.as_str()[..];
1601         let cur_edition = cx.sess.edition();
1602         let is_raw_ident = |ident: ast::Ident| {
1603             cx.sess.parse_sess.raw_identifier_spans.borrow().contains(&ident.span)
1604         };
1605         let next_edition = match cur_edition {
1606             Edition::Edition2015 => {
1607                 match ident_str {
1608                     "async" | "try" | "dyn" => Edition::Edition2018,
1609                     // Only issue warnings for `await` if the `async_await`
1610                     // feature isn't being used. Otherwise, users need
1611                     // to keep using `await` for the macro exposed by std.
1612                     "await" if !cx.sess.features_untracked().async_await => Edition::Edition2018,
1613                     _ => return,
1614                 }
1615             }
1616
1617             // There are no new keywords yet for the 2018 edition and beyond.
1618             // However, `await` is a "false" keyword in the 2018 edition,
1619             // and can only be used if the `async_await` feature is enabled.
1620             // Otherwise, we emit an error.
1621             _ => {
1622                 if "await" == ident_str
1623                     && !cx.sess.features_untracked().async_await
1624                     && !is_raw_ident(ident)
1625                 {
1626                     let mut err = struct_span_err!(
1627                         cx.sess,
1628                         ident.span,
1629                         E0721,
1630                         "`await` is a keyword in the {} edition", cur_edition,
1631                     );
1632                     err.span_suggestion(
1633                         ident.span,
1634                         "you can use a raw identifier to stay compatible",
1635                         "r#await".to_string(),
1636                         Applicability::MachineApplicable,
1637                     );
1638                     err.emit();
1639                 }
1640                 return
1641             },
1642         };
1643
1644         // don't lint `r#foo`
1645         if is_raw_ident(ident) {
1646             return;
1647         }
1648
1649         let mut lint = cx.struct_span_lint(
1650             KEYWORD_IDENTS,
1651             ident.span,
1652             &format!("`{}` is a keyword in the {} edition",
1653                      ident.as_str(),
1654                      next_edition),
1655         );
1656         lint.span_suggestion(
1657             ident.span,
1658             "you can use a raw identifier to stay compatible",
1659             format!("r#{}", ident.as_str()),
1660             Applicability::MachineApplicable,
1661         );
1662         lint.emit()
1663     }
1664 }
1665
1666
1667 pub struct ExplicitOutlivesRequirements;
1668
1669 impl LintPass for ExplicitOutlivesRequirements {
1670     fn name(&self) -> &'static str {
1671         "ExplicitOutlivesRequirements"
1672     }
1673
1674     fn get_lints(&self) -> LintArray {
1675         lint_array![EXPLICIT_OUTLIVES_REQUIREMENTS]
1676     }
1677 }
1678
1679 impl ExplicitOutlivesRequirements {
1680     fn collect_outlives_bound_spans(
1681         &self,
1682         cx: &LateContext<'_, '_>,
1683         item_def_id: DefId,
1684         param_name: &str,
1685         bounds: &hir::GenericBounds,
1686         infer_static: bool
1687     ) -> Vec<(usize, Span)> {
1688         // For lack of a more elegant strategy for comparing the `ty::Predicate`s
1689         // returned by this query with the params/bounds grabbed from the HIR—and
1690         // with some regrets—we're going to covert the param/lifetime names to
1691         // strings
1692         let inferred_outlives = cx.tcx.inferred_outlives_of(item_def_id);
1693
1694         let ty_lt_names = inferred_outlives.iter().filter_map(|pred| {
1695             let binder = match pred {
1696                 ty::Predicate::TypeOutlives(binder) => binder,
1697                 _ => { return None; }
1698             };
1699             let ty_outlives_pred = binder.skip_binder();
1700             let ty_name = match ty_outlives_pred.0.sty {
1701                 ty::Param(param) => param.name.to_string(),
1702                 _ => { return None; }
1703             };
1704             let lt_name = match ty_outlives_pred.1 {
1705                 ty::RegionKind::ReEarlyBound(region) => {
1706                     region.name.to_string()
1707                 },
1708                 _ => { return None; }
1709             };
1710             Some((ty_name, lt_name))
1711         }).collect::<Vec<_>>();
1712
1713         let mut bound_spans = Vec::new();
1714         for (i, bound) in bounds.iter().enumerate() {
1715             if let hir::GenericBound::Outlives(lifetime) = bound {
1716                 let is_static = match lifetime.name {
1717                     hir::LifetimeName::Static => true,
1718                     _ => false
1719                 };
1720                 if is_static && !infer_static {
1721                     // infer-outlives for 'static is still feature-gated (tracking issue #44493)
1722                     continue;
1723                 }
1724
1725                 let lt_name = &lifetime.name.ident().to_string();
1726                 if ty_lt_names.contains(&(param_name.to_owned(), lt_name.to_owned())) {
1727                     bound_spans.push((i, bound.span()));
1728                 }
1729             }
1730         }
1731         bound_spans
1732     }
1733
1734     fn consolidate_outlives_bound_spans(
1735         &self,
1736         lo: Span,
1737         bounds: &hir::GenericBounds,
1738         bound_spans: Vec<(usize, Span)>
1739     ) -> Vec<Span> {
1740         if bounds.is_empty() {
1741             return Vec::new();
1742         }
1743         if bound_spans.len() == bounds.len() {
1744             let (_, last_bound_span) = bound_spans[bound_spans.len()-1];
1745             // If all bounds are inferable, we want to delete the colon, so
1746             // start from just after the parameter (span passed as argument)
1747             vec![lo.to(last_bound_span)]
1748         } else {
1749             let mut merged = Vec::new();
1750             let mut last_merged_i = None;
1751
1752             let mut from_start = true;
1753             for (i, bound_span) in bound_spans {
1754                 match last_merged_i {
1755                     // If the first bound is inferable, our span should also eat the trailing `+`
1756                     None if i == 0 => {
1757                         merged.push(bound_span.to(bounds[1].span().shrink_to_lo()));
1758                         last_merged_i = Some(0);
1759                     },
1760                     // If consecutive bounds are inferable, merge their spans
1761                     Some(h) if i == h+1 => {
1762                         if let Some(tail) = merged.last_mut() {
1763                             // Also eat the trailing `+` if the first
1764                             // more-than-one bound is inferable
1765                             let to_span = if from_start && i < bounds.len() {
1766                                 bounds[i+1].span().shrink_to_lo()
1767                             } else {
1768                                 bound_span
1769                             };
1770                             *tail = tail.to(to_span);
1771                             last_merged_i = Some(i);
1772                         } else {
1773                             bug!("another bound-span visited earlier");
1774                         }
1775                     },
1776                     _ => {
1777                         // When we find a non-inferable bound, subsequent inferable bounds
1778                         // won't be consecutive from the start (and we'll eat the leading
1779                         // `+` rather than the trailing one)
1780                         from_start = false;
1781                         merged.push(bounds[i-1].span().shrink_to_hi().to(bound_span));
1782                         last_merged_i = Some(i);
1783                     }
1784                 }
1785             }
1786             merged
1787         }
1788     }
1789 }
1790
1791 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for ExplicitOutlivesRequirements {
1792     fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx hir::Item) {
1793         let infer_static = cx.tcx.features().infer_static_outlives_requirements;
1794         let def_id = cx.tcx.hir().local_def_id(item.id);
1795         if let hir::ItemKind::Struct(_, ref generics) = item.node {
1796             let mut bound_count = 0;
1797             let mut lint_spans = Vec::new();
1798
1799             for param in &generics.params {
1800                 let param_name = match param.kind {
1801                     hir::GenericParamKind::Lifetime { .. } => continue,
1802                     hir::GenericParamKind::Type { .. } => {
1803                         match param.name {
1804                             hir::ParamName::Fresh(_) => continue,
1805                             hir::ParamName::Error => continue,
1806                             hir::ParamName::Plain(name) => name.to_string(),
1807                         }
1808                     }
1809                     hir::GenericParamKind::Const { .. } => continue,
1810                 };
1811                 let bound_spans = self.collect_outlives_bound_spans(
1812                     cx, def_id, &param_name, &param.bounds, infer_static
1813                 );
1814                 bound_count += bound_spans.len();
1815                 lint_spans.extend(
1816                     self.consolidate_outlives_bound_spans(
1817                         param.span.shrink_to_hi(), &param.bounds, bound_spans
1818                     )
1819                 );
1820             }
1821
1822             let mut where_lint_spans = Vec::new();
1823             let mut dropped_predicate_count = 0;
1824             let num_predicates = generics.where_clause.predicates.len();
1825             for (i, where_predicate) in generics.where_clause.predicates.iter().enumerate() {
1826                 if let hir::WherePredicate::BoundPredicate(predicate) = where_predicate {
1827                     let param_name = match predicate.bounded_ty.node {
1828                         hir::TyKind::Path(ref qpath) => {
1829                             if let hir::QPath::Resolved(None, ty_param_path) = qpath {
1830                                 ty_param_path.segments[0].ident.to_string()
1831                             } else {
1832                                 continue;
1833                             }
1834                         },
1835                         _ => { continue; }
1836                     };
1837                     let bound_spans = self.collect_outlives_bound_spans(
1838                         cx, def_id, &param_name, &predicate.bounds, infer_static
1839                     );
1840                     bound_count += bound_spans.len();
1841
1842                     let drop_predicate = bound_spans.len() == predicate.bounds.len();
1843                     if drop_predicate {
1844                         dropped_predicate_count += 1;
1845                     }
1846
1847                     // If all the bounds on a predicate were inferable and there are
1848                     // further predicates, we want to eat the trailing comma
1849                     if drop_predicate && i + 1 < num_predicates {
1850                         let next_predicate_span = generics.where_clause.predicates[i+1].span();
1851                         where_lint_spans.push(
1852                             predicate.span.to(next_predicate_span.shrink_to_lo())
1853                         );
1854                     } else {
1855                         where_lint_spans.extend(
1856                             self.consolidate_outlives_bound_spans(
1857                                 predicate.span.shrink_to_lo(),
1858                                 &predicate.bounds,
1859                                 bound_spans
1860                             )
1861                         );
1862                     }
1863                 }
1864             }
1865
1866             // If all predicates are inferable, drop the entire clause
1867             // (including the `where`)
1868             if num_predicates > 0 && dropped_predicate_count == num_predicates {
1869                 let full_where_span = generics.span.shrink_to_hi()
1870                     .to(generics.where_clause.span()
1871                     .expect("span of (nonempty) where clause should exist"));
1872                 lint_spans.push(
1873                     full_where_span
1874                 );
1875             } else {
1876                 lint_spans.extend(where_lint_spans);
1877             }
1878
1879             if !lint_spans.is_empty() {
1880                 let mut err = cx.struct_span_lint(
1881                     EXPLICIT_OUTLIVES_REQUIREMENTS,
1882                     lint_spans.clone(),
1883                     "outlives requirements can be inferred"
1884                 );
1885                 err.multipart_suggestion(
1886                     if bound_count == 1 {
1887                         "remove this bound"
1888                     } else {
1889                         "remove these bounds"
1890                     },
1891                     lint_spans.into_iter().map(|span| (span, "".to_owned())).collect::<Vec<_>>(),
1892                     Applicability::MachineApplicable
1893                 );
1894                 err.emit();
1895             }
1896
1897         }
1898     }
1899
1900 }