]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/attrs.rs
Auto merge of #3845 - euclio:unused-comments, r=phansch
[rust.git] / clippy_lints / src / attrs.rs
1 //! checks for attributes
2
3 use crate::reexport::*;
4 use crate::utils::{
5     in_macro, last_line_of_span, match_def_path, opt_def_id, paths, snippet_opt, span_lint, span_lint_and_sugg,
6     span_lint_and_then, without_block_comments,
7 };
8 use if_chain::if_chain;
9 use rustc::hir::*;
10 use rustc::lint::{
11     CheckLintNameResult, EarlyContext, EarlyLintPass, LateContext, LateLintPass, LintArray, LintContext, LintPass,
12 };
13 use rustc::ty::{self, TyCtxt};
14 use rustc::{declare_tool_lint, lint_array};
15 use rustc_errors::Applicability;
16 use semver::Version;
17 use syntax::ast::{AttrStyle, Attribute, Lit, LitKind, MetaItemKind, NestedMetaItem, NestedMetaItemKind};
18 use syntax::source_map::Span;
19
20 declare_clippy_lint! {
21     /// **What it does:** Checks for items annotated with `#[inline(always)]`,
22     /// unless the annotated function is empty or simply panics.
23     ///
24     /// **Why is this bad?** While there are valid uses of this annotation (and once
25     /// you know when to use it, by all means `allow` this lint), it's a common
26     /// newbie-mistake to pepper one's code with it.
27     ///
28     /// As a rule of thumb, before slapping `#[inline(always)]` on a function,
29     /// measure if that additional function call really affects your runtime profile
30     /// sufficiently to make up for the increase in compile time.
31     ///
32     /// **Known problems:** False positives, big time. This lint is meant to be
33     /// deactivated by everyone doing serious performance work. This means having
34     /// done the measurement.
35     ///
36     /// **Example:**
37     /// ```ignore
38     /// #[inline(always)]
39     /// fn not_quite_hot_code(..) { ... }
40     /// ```
41     pub INLINE_ALWAYS,
42     pedantic,
43     "use of `#[inline(always)]`"
44 }
45
46 declare_clippy_lint! {
47     /// **What it does:** Checks for `extern crate` and `use` items annotated with
48     /// lint attributes.
49     ///
50     /// This lint whitelists `#[allow(unused_imports)]` and `#[allow(deprecated)]` on
51     /// `use` items and `#[allow(unused_imports)]` on `extern crate` items with a
52     /// `#[macro_use]` attribute.
53     ///
54     /// **Why is this bad?** Lint attributes have no effect on crate imports. Most
55     /// likely a `!` was forgotten.
56     ///
57     /// **Known problems:** None.
58     ///
59     /// **Example:**
60     /// ```ignore
61     /// // Bad
62     /// #[deny(dead_code)]
63     /// extern crate foo;
64     /// #[forbid(dead_code)]
65     /// use foo::bar;
66     ///
67     /// // Ok
68     /// #[allow(unused_imports)]
69     /// use foo::baz;
70     /// #[allow(unused_imports)]
71     /// #[macro_use]
72     /// extern crate baz;
73     /// ```
74     pub USELESS_ATTRIBUTE,
75     correctness,
76     "use of lint attributes on `extern crate` items"
77 }
78
79 declare_clippy_lint! {
80     /// **What it does:** Checks for `#[deprecated]` annotations with a `since`
81     /// field that is not a valid semantic version.
82     ///
83     /// **Why is this bad?** For checking the version of the deprecation, it must be
84     /// a valid semver. Failing that, the contained information is useless.
85     ///
86     /// **Known problems:** None.
87     ///
88     /// **Example:**
89     /// ```rust
90     /// #[deprecated(since = "forever")]
91     /// fn something_else() { /* ... */ }
92     /// ```
93     pub DEPRECATED_SEMVER,
94     correctness,
95     "use of `#[deprecated(since = \"x\")]` where x is not semver"
96 }
97
98 declare_clippy_lint! {
99     /// **What it does:** Checks for empty lines after outer attributes
100     ///
101     /// **Why is this bad?**
102     /// Most likely the attribute was meant to be an inner attribute using a '!'.
103     /// If it was meant to be an outer attribute, then the following item
104     /// should not be separated by empty lines.
105     ///
106     /// **Known problems:** Can cause false positives.
107     ///
108     /// From the clippy side it's difficult to detect empty lines between an attributes and the
109     /// following item because empty lines and comments are not part of the AST. The parsing
110     /// currently works for basic cases but is not perfect.
111     ///
112     /// **Example:**
113     /// ```rust
114     /// // Bad
115     /// #[inline(always)]
116     ///
117     /// fn not_quite_good_code(..) { ... }
118     ///
119     /// // Good (as inner attribute)
120     /// #![inline(always)]
121     ///
122     /// fn this_is_fine(..) { ... }
123     ///
124     /// // Good (as outer attribute)
125     /// #[inline(always)]
126     /// fn this_is_fine_too(..) { ... }
127     /// ```
128     pub EMPTY_LINE_AFTER_OUTER_ATTR,
129     nursery,
130     "empty line after outer attribute"
131 }
132
133 declare_clippy_lint! {
134     /// **What it does:** Checks for `allow`/`warn`/`deny`/`forbid` attributes with scoped clippy
135     /// lints and if those lints exist in clippy. If there is a uppercase letter in the lint name
136     /// (not the tool name) and a lowercase version of this lint exists, it will suggest to lowercase
137     /// the lint name.
138     ///
139     /// **Why is this bad?** A lint attribute with a mistyped lint name won't have an effect.
140     ///
141     /// **Known problems:** None.
142     ///
143     /// **Example:**
144     /// Bad:
145     /// ```rust
146     /// #![warn(if_not_els)]
147     /// #![deny(clippy::All)]
148     /// ```
149     ///
150     /// Good:
151     /// ```rust
152     /// #![warn(if_not_else)]
153     /// #![deny(clippy::all)]
154     /// ```
155     pub UNKNOWN_CLIPPY_LINTS,
156     style,
157     "unknown_lints for scoped Clippy lints"
158 }
159
160 declare_clippy_lint! {
161     /// **What it does:** Checks for `#[cfg_attr(rustfmt, rustfmt_skip)]` and suggests to replace it
162     /// with `#[rustfmt::skip]`.
163     ///
164     /// **Why is this bad?** Since tool_attributes ([rust-lang/rust#44690](https://github.com/rust-lang/rust/issues/44690))
165     /// are stable now, they should be used instead of the old `cfg_attr(rustfmt)` attributes.
166     ///
167     /// **Known problems:** This lint doesn't detect crate level inner attributes, because they get
168     /// processed before the PreExpansionPass lints get executed. See
169     /// [#3123](https://github.com/rust-lang/rust-clippy/pull/3123#issuecomment-422321765)
170     ///
171     /// **Example:**
172     ///
173     /// Bad:
174     /// ```rust
175     /// #[cfg_attr(rustfmt, rustfmt_skip)]
176     /// fn main() { }
177     /// ```
178     ///
179     /// Good:
180     /// ```rust
181     /// #[rustfmt::skip]
182     /// fn main() { }
183     /// ```
184     pub DEPRECATED_CFG_ATTR,
185     complexity,
186     "usage of `cfg_attr(rustfmt)` instead of `tool_attributes`"
187 }
188
189 #[derive(Copy, Clone)]
190 pub struct AttrPass;
191
192 impl LintPass for AttrPass {
193     fn get_lints(&self) -> LintArray {
194         lint_array!(
195             INLINE_ALWAYS,
196             DEPRECATED_SEMVER,
197             USELESS_ATTRIBUTE,
198             EMPTY_LINE_AFTER_OUTER_ATTR,
199             UNKNOWN_CLIPPY_LINTS,
200         )
201     }
202
203     fn name(&self) -> &'static str {
204         "Attributes"
205     }
206 }
207
208 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for AttrPass {
209     fn check_attribute(&mut self, cx: &LateContext<'a, 'tcx>, attr: &'tcx Attribute) {
210         if let Some(items) = &attr.meta_item_list() {
211             match &*attr.name().as_str() {
212                 "allow" | "warn" | "deny" | "forbid" => {
213                     check_clippy_lint_names(cx, items);
214                 },
215                 _ => {},
216             }
217             if items.is_empty() || attr.name() != "deprecated" {
218                 return;
219             }
220             for item in items {
221                 if_chain! {
222                     if let NestedMetaItemKind::MetaItem(mi) = &item.node;
223                     if let MetaItemKind::NameValue(lit) = &mi.node;
224                     if mi.name() == "since";
225                     then {
226                         check_semver(cx, item.span, lit);
227                     }
228                 }
229             }
230         }
231     }
232
233     fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx Item) {
234         if is_relevant_item(cx.tcx, item) {
235             check_attrs(cx, item.span, item.ident.name, &item.attrs)
236         }
237         match item.node {
238             ItemKind::ExternCrate(..) | ItemKind::Use(..) => {
239                 let skip_unused_imports = item.attrs.iter().any(|attr| attr.name() == "macro_use");
240
241                 for attr in &item.attrs {
242                     if let Some(lint_list) = &attr.meta_item_list() {
243                         match &*attr.name().as_str() {
244                             "allow" | "warn" | "deny" | "forbid" => {
245                                 // whitelist `unused_imports` and `deprecated` for `use` items
246                                 // and `unused_imports` for `extern crate` items with `macro_use`
247                                 for lint in lint_list {
248                                     match item.node {
249                                         ItemKind::Use(..) => {
250                                             if is_word(lint, "unused_imports") || is_word(lint, "deprecated") {
251                                                 return;
252                                             }
253                                         },
254                                         ItemKind::ExternCrate(..) => {
255                                             if is_word(lint, "unused_imports") && skip_unused_imports {
256                                                 return;
257                                             }
258                                             if is_word(lint, "unused_extern_crates") {
259                                                 return;
260                                             }
261                                         },
262                                         _ => {},
263                                     }
264                                 }
265                                 let line_span = last_line_of_span(cx, attr.span);
266
267                                 if let Some(mut sugg) = snippet_opt(cx, line_span) {
268                                     if sugg.contains("#[") {
269                                         span_lint_and_then(
270                                             cx,
271                                             USELESS_ATTRIBUTE,
272                                             line_span,
273                                             "useless lint attribute",
274                                             |db| {
275                                                 sugg = sugg.replacen("#[", "#![", 1);
276                                                 db.span_suggestion(
277                                                     line_span,
278                                                     "if you just forgot a `!`, use",
279                                                     sugg,
280                                                     Applicability::MachineApplicable,
281                                                 );
282                                             },
283                                         );
284                                     }
285                                 }
286                             },
287                             _ => {},
288                         }
289                     }
290                 }
291             },
292             _ => {},
293         }
294     }
295
296     fn check_impl_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx ImplItem) {
297         if is_relevant_impl(cx.tcx, item) {
298             check_attrs(cx, item.span, item.ident.name, &item.attrs)
299         }
300     }
301
302     fn check_trait_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx TraitItem) {
303         if is_relevant_trait(cx.tcx, item) {
304             check_attrs(cx, item.span, item.ident.name, &item.attrs)
305         }
306     }
307 }
308
309 #[allow(clippy::single_match_else)]
310 fn check_clippy_lint_names(cx: &LateContext<'_, '_>, items: &[NestedMetaItem]) {
311     let lint_store = cx.lints();
312     for lint in items {
313         if_chain! {
314             if let Some(word) = lint.word();
315             if let Some(tool_name) = word.is_scoped();
316             if tool_name.as_str() == "clippy";
317             let name = word.name();
318             if let CheckLintNameResult::Tool(Err((None, _))) = lint_store.check_lint_name(
319                 &name.as_str(),
320                 Some(tool_name.as_str()),
321             );
322             then {
323                 span_lint_and_then(
324                     cx,
325                     UNKNOWN_CLIPPY_LINTS,
326                     lint.span,
327                     &format!("unknown clippy lint: clippy::{}", name),
328                     |db| {
329                         if name.as_str().chars().any(char::is_uppercase) {
330                             let name_lower = name.as_str().to_lowercase();
331                             match lint_store.check_lint_name(
332                                 &name_lower,
333                                 Some(tool_name.as_str())
334                             ) {
335                                 // FIXME: can we suggest similar lint names here?
336                                 // https://github.com/rust-lang/rust/pull/56992
337                                 CheckLintNameResult::NoLint(None) => (),
338                                 _ => {
339                                     db.span_suggestion(
340                                         lint.span,
341                                         "lowercase the lint name",
342                                         name_lower,
343                                         Applicability::MaybeIncorrect,
344                                     );
345                                 }
346                             }
347                         }
348                     }
349                 );
350             }
351         };
352     }
353 }
354
355 fn is_relevant_item(tcx: TyCtxt<'_, '_, '_>, item: &Item) -> bool {
356     if let ItemKind::Fn(_, _, _, eid) = item.node {
357         is_relevant_expr(tcx, tcx.body_tables(eid), &tcx.hir().body(eid).value)
358     } else {
359         true
360     }
361 }
362
363 fn is_relevant_impl(tcx: TyCtxt<'_, '_, '_>, item: &ImplItem) -> bool {
364     match item.node {
365         ImplItemKind::Method(_, eid) => is_relevant_expr(tcx, tcx.body_tables(eid), &tcx.hir().body(eid).value),
366         _ => false,
367     }
368 }
369
370 fn is_relevant_trait(tcx: TyCtxt<'_, '_, '_>, item: &TraitItem) -> bool {
371     match item.node {
372         TraitItemKind::Method(_, TraitMethod::Required(_)) => true,
373         TraitItemKind::Method(_, TraitMethod::Provided(eid)) => {
374             is_relevant_expr(tcx, tcx.body_tables(eid), &tcx.hir().body(eid).value)
375         },
376         _ => false,
377     }
378 }
379
380 fn is_relevant_block(tcx: TyCtxt<'_, '_, '_>, tables: &ty::TypeckTables<'_>, block: &Block) -> bool {
381     if let Some(stmt) = block.stmts.first() {
382         match &stmt.node {
383             StmtKind::Local(_) => true,
384             StmtKind::Expr(expr) | StmtKind::Semi(expr) => is_relevant_expr(tcx, tables, expr),
385             _ => false,
386         }
387     } else {
388         block.expr.as_ref().map_or(false, |e| is_relevant_expr(tcx, tables, e))
389     }
390 }
391
392 fn is_relevant_expr(tcx: TyCtxt<'_, '_, '_>, tables: &ty::TypeckTables<'_>, expr: &Expr) -> bool {
393     match &expr.node {
394         ExprKind::Block(block, _) => is_relevant_block(tcx, tables, block),
395         ExprKind::Ret(Some(e)) => is_relevant_expr(tcx, tables, e),
396         ExprKind::Ret(None) | ExprKind::Break(_, None) => false,
397         ExprKind::Call(path_expr, _) => {
398             if let ExprKind::Path(qpath) = &path_expr.node {
399                 if let Some(fun_id) = opt_def_id(tables.qpath_def(qpath, path_expr.hir_id)) {
400                     !match_def_path(tcx, fun_id, &paths::BEGIN_PANIC)
401                 } else {
402                     true
403                 }
404             } else {
405                 true
406             }
407         },
408         _ => true,
409     }
410 }
411
412 fn check_attrs(cx: &LateContext<'_, '_>, span: Span, name: Name, attrs: &[Attribute]) {
413     if in_macro(span) {
414         return;
415     }
416
417     for attr in attrs {
418         if attr.is_sugared_doc {
419             return;
420         }
421         if attr.style == AttrStyle::Outer {
422             if attr.tokens.is_empty() || !is_present_in_source(cx, attr.span) {
423                 return;
424             }
425
426             let begin_of_attr_to_item = Span::new(attr.span.lo(), span.lo(), span.ctxt());
427             let end_of_attr_to_item = Span::new(attr.span.hi(), span.lo(), span.ctxt());
428
429             if let Some(snippet) = snippet_opt(cx, end_of_attr_to_item) {
430                 let lines = snippet.split('\n').collect::<Vec<_>>();
431                 let lines = without_block_comments(lines);
432
433                 if lines.iter().filter(|l| l.trim().is_empty()).count() > 2 {
434                     span_lint(
435                         cx,
436                         EMPTY_LINE_AFTER_OUTER_ATTR,
437                         begin_of_attr_to_item,
438                         "Found an empty line after an outer attribute. \
439                          Perhaps you forgot to add a '!' to make it an inner attribute?",
440                     );
441                 }
442             }
443         }
444
445         if let Some(values) = attr.meta_item_list() {
446             if values.len() != 1 || attr.name() != "inline" {
447                 continue;
448             }
449             if is_word(&values[0], "always") {
450                 span_lint(
451                     cx,
452                     INLINE_ALWAYS,
453                     attr.span,
454                     &format!(
455                         "you have declared `#[inline(always)]` on `{}`. This is usually a bad idea",
456                         name
457                     ),
458                 );
459             }
460         }
461     }
462 }
463
464 fn check_semver(cx: &LateContext<'_, '_>, span: Span, lit: &Lit) {
465     if let LitKind::Str(is, _) = lit.node {
466         if Version::parse(&is.as_str()).is_ok() {
467             return;
468         }
469     }
470     span_lint(
471         cx,
472         DEPRECATED_SEMVER,
473         span,
474         "the since field must contain a semver-compliant version",
475     );
476 }
477
478 fn is_word(nmi: &NestedMetaItem, expected: &str) -> bool {
479     if let NestedMetaItemKind::MetaItem(mi) = &nmi.node {
480         mi.is_word() && mi.name() == expected
481     } else {
482         false
483     }
484 }
485
486 // If the snippet is empty, it's an attribute that was inserted during macro
487 // expansion and we want to ignore those, because they could come from external
488 // sources that the user has no control over.
489 // For some reason these attributes don't have any expansion info on them, so
490 // we have to check it this way until there is a better way.
491 fn is_present_in_source(cx: &LateContext<'_, '_>, span: Span) -> bool {
492     if let Some(snippet) = snippet_opt(cx, span) {
493         if snippet.is_empty() {
494             return false;
495         }
496     }
497     true
498 }
499
500 #[derive(Copy, Clone)]
501 pub struct CfgAttrPass;
502
503 impl LintPass for CfgAttrPass {
504     fn get_lints(&self) -> LintArray {
505         lint_array!(DEPRECATED_CFG_ATTR,)
506     }
507
508     fn name(&self) -> &'static str {
509         "DeprecatedCfgAttribute"
510     }
511 }
512
513 impl EarlyLintPass for CfgAttrPass {
514     fn check_attribute(&mut self, cx: &EarlyContext<'_>, attr: &Attribute) {
515         if_chain! {
516             // check cfg_attr
517             if attr.name() == "cfg_attr";
518             if let Some(items) = attr.meta_item_list();
519             if items.len() == 2;
520             // check for `rustfmt`
521             if let Some(feature_item) = items[0].meta_item();
522             if feature_item.name() == "rustfmt";
523             // check for `rustfmt_skip` and `rustfmt::skip`
524             if let Some(skip_item) = &items[1].meta_item();
525             if skip_item.name() == "rustfmt_skip" || skip_item.name() == "skip";
526             // Only lint outer attributes, because custom inner attributes are unstable
527             // Tracking issue: https://github.com/rust-lang/rust/issues/54726
528             if let AttrStyle::Outer = attr.style;
529             then {
530                 span_lint_and_sugg(
531                     cx,
532                     DEPRECATED_CFG_ATTR,
533                     attr.span,
534                     "`cfg_attr` is deprecated for rustfmt and got replaced by tool_attributes",
535                     "use",
536                     "#[rustfmt::skip]".to_string(),
537                     Applicability::MachineApplicable,
538                 );
539             }
540         }
541     }
542 }