]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/clippy_lints/src/attrs.rs
Auto merge of #96515 - lcnr:user-types-in-pat, r=nikomatsakis
[rust.git] / src / tools / clippy / clippy_lints / src / attrs.rs
1 //! checks for attributes
2
3 use clippy_utils::diagnostics::{span_lint, span_lint_and_help, span_lint_and_sugg, span_lint_and_then};
4 use clippy_utils::macros::{is_panic, macro_backtrace};
5 use clippy_utils::msrvs;
6 use clippy_utils::source::{first_line_of_span, is_present_in_source, snippet_opt, without_block_comments};
7 use clippy_utils::{extract_msrv_attr, meets_msrv};
8 use if_chain::if_chain;
9 use rustc_ast::{AttrKind, AttrStyle, Attribute, Lit, LitKind, MetaItemKind, NestedMetaItem};
10 use rustc_errors::Applicability;
11 use rustc_hir::{
12     Block, Expr, ExprKind, ImplItem, ImplItemKind, Item, ItemKind, StmtKind, TraitFn, TraitItem, TraitItemKind,
13 };
14 use rustc_lint::{EarlyContext, EarlyLintPass, LateContext, LateLintPass, LintContext};
15 use rustc_middle::lint::in_external_macro;
16 use rustc_middle::ty;
17 use rustc_semver::RustcVersion;
18 use rustc_session::{declare_lint_pass, declare_tool_lint, impl_lint_pass};
19 use rustc_span::source_map::Span;
20 use rustc_span::sym;
21 use rustc_span::symbol::Symbol;
22 use semver::Version;
23
24 static UNIX_SYSTEMS: &[&str] = &[
25     "android",
26     "dragonfly",
27     "emscripten",
28     "freebsd",
29     "fuchsia",
30     "haiku",
31     "illumos",
32     "ios",
33     "l4re",
34     "linux",
35     "macos",
36     "netbsd",
37     "openbsd",
38     "redox",
39     "solaris",
40     "vxworks",
41 ];
42
43 // NOTE: windows is excluded from the list because it's also a valid target family.
44 static NON_UNIX_SYSTEMS: &[&str] = &["hermit", "none", "wasi"];
45
46 declare_clippy_lint! {
47     /// ### What it does
48     /// Checks for items annotated with `#[inline(always)]`,
49     /// unless the annotated function is empty or simply panics.
50     ///
51     /// ### Why is this bad?
52     /// While there are valid uses of this annotation (and once
53     /// you know when to use it, by all means `allow` this lint), it's a common
54     /// newbie-mistake to pepper one's code with it.
55     ///
56     /// As a rule of thumb, before slapping `#[inline(always)]` on a function,
57     /// measure if that additional function call really affects your runtime profile
58     /// sufficiently to make up for the increase in compile time.
59     ///
60     /// ### Known problems
61     /// False positives, big time. This lint is meant to be
62     /// deactivated by everyone doing serious performance work. This means having
63     /// done the measurement.
64     ///
65     /// ### Example
66     /// ```ignore
67     /// #[inline(always)]
68     /// fn not_quite_hot_code(..) { ... }
69     /// ```
70     #[clippy::version = "pre 1.29.0"]
71     pub INLINE_ALWAYS,
72     pedantic,
73     "use of `#[inline(always)]`"
74 }
75
76 declare_clippy_lint! {
77     /// ### What it does
78     /// Checks for `extern crate` and `use` items annotated with
79     /// lint attributes.
80     ///
81     /// This lint permits `#[allow(unused_imports)]`, `#[allow(deprecated)]`,
82     /// `#[allow(unreachable_pub)]`, `#[allow(clippy::wildcard_imports)]` and
83     /// `#[allow(clippy::enum_glob_use)]` on `use` items and `#[allow(unused_imports)]` on
84     /// `extern crate` items with a `#[macro_use]` attribute.
85     ///
86     /// ### Why is this bad?
87     /// Lint attributes have no effect on crate imports. Most
88     /// likely a `!` was forgotten.
89     ///
90     /// ### Example
91     /// ```ignore
92     /// // Bad
93     /// #[deny(dead_code)]
94     /// extern crate foo;
95     /// #[forbid(dead_code)]
96     /// use foo::bar;
97     ///
98     /// // Ok
99     /// #[allow(unused_imports)]
100     /// use foo::baz;
101     /// #[allow(unused_imports)]
102     /// #[macro_use]
103     /// extern crate baz;
104     /// ```
105     #[clippy::version = "pre 1.29.0"]
106     pub USELESS_ATTRIBUTE,
107     correctness,
108     "use of lint attributes on `extern crate` items"
109 }
110
111 declare_clippy_lint! {
112     /// ### What it does
113     /// Checks for `#[deprecated]` annotations with a `since`
114     /// field that is not a valid semantic version.
115     ///
116     /// ### Why is this bad?
117     /// For checking the version of the deprecation, it must be
118     /// a valid semver. Failing that, the contained information is useless.
119     ///
120     /// ### Example
121     /// ```rust
122     /// #[deprecated(since = "forever")]
123     /// fn something_else() { /* ... */ }
124     /// ```
125     #[clippy::version = "pre 1.29.0"]
126     pub DEPRECATED_SEMVER,
127     correctness,
128     "use of `#[deprecated(since = \"x\")]` where x is not semver"
129 }
130
131 declare_clippy_lint! {
132     /// ### What it does
133     /// Checks for empty lines after outer attributes
134     ///
135     /// ### Why is this bad?
136     /// Most likely the attribute was meant to be an inner attribute using a '!'.
137     /// If it was meant to be an outer attribute, then the following item
138     /// should not be separated by empty lines.
139     ///
140     /// ### Known problems
141     /// Can cause false positives.
142     ///
143     /// From the clippy side it's difficult to detect empty lines between an attributes and the
144     /// following item because empty lines and comments are not part of the AST. The parsing
145     /// currently works for basic cases but is not perfect.
146     ///
147     /// ### Example
148     /// ```rust
149     /// // Good (as inner attribute)
150     /// #![allow(dead_code)]
151     ///
152     /// fn this_is_fine() { }
153     ///
154     /// // Bad
155     /// #[allow(dead_code)]
156     ///
157     /// fn not_quite_good_code() { }
158     ///
159     /// // Good (as outer attribute)
160     /// #[allow(dead_code)]
161     /// fn this_is_fine_too() { }
162     /// ```
163     #[clippy::version = "pre 1.29.0"]
164     pub EMPTY_LINE_AFTER_OUTER_ATTR,
165     nursery,
166     "empty line after outer attribute"
167 }
168
169 declare_clippy_lint! {
170     /// ### What it does
171     /// Checks for `warn`/`deny`/`forbid` attributes targeting the whole clippy::restriction category.
172     ///
173     /// ### Why is this bad?
174     /// Restriction lints sometimes are in contrast with other lints or even go against idiomatic rust.
175     /// These lints should only be enabled on a lint-by-lint basis and with careful consideration.
176     ///
177     /// ### Example
178     /// Bad:
179     /// ```rust
180     /// #![deny(clippy::restriction)]
181     /// ```
182     ///
183     /// Good:
184     /// ```rust
185     /// #![deny(clippy::as_conversions)]
186     /// ```
187     #[clippy::version = "1.47.0"]
188     pub BLANKET_CLIPPY_RESTRICTION_LINTS,
189     suspicious,
190     "enabling the complete restriction group"
191 }
192
193 declare_clippy_lint! {
194     /// ### What it does
195     /// Checks for `#[cfg_attr(rustfmt, rustfmt_skip)]` and suggests to replace it
196     /// with `#[rustfmt::skip]`.
197     ///
198     /// ### Why is this bad?
199     /// Since tool_attributes ([rust-lang/rust#44690](https://github.com/rust-lang/rust/issues/44690))
200     /// are stable now, they should be used instead of the old `cfg_attr(rustfmt)` attributes.
201     ///
202     /// ### Known problems
203     /// This lint doesn't detect crate level inner attributes, because they get
204     /// processed before the PreExpansionPass lints get executed. See
205     /// [#3123](https://github.com/rust-lang/rust-clippy/pull/3123#issuecomment-422321765)
206     ///
207     /// ### Example
208     /// Bad:
209     /// ```rust
210     /// #[cfg_attr(rustfmt, rustfmt_skip)]
211     /// fn main() { }
212     /// ```
213     ///
214     /// Good:
215     /// ```rust
216     /// #[rustfmt::skip]
217     /// fn main() { }
218     /// ```
219     #[clippy::version = "1.32.0"]
220     pub DEPRECATED_CFG_ATTR,
221     complexity,
222     "usage of `cfg_attr(rustfmt)` instead of tool attributes"
223 }
224
225 declare_clippy_lint! {
226     /// ### What it does
227     /// Checks for cfg attributes having operating systems used in target family position.
228     ///
229     /// ### Why is this bad?
230     /// The configuration option will not be recognised and the related item will not be included
231     /// by the conditional compilation engine.
232     ///
233     /// ### Example
234     /// Bad:
235     /// ```rust
236     /// #[cfg(linux)]
237     /// fn conditional() { }
238     /// ```
239     ///
240     /// Good:
241     /// ```rust
242     /// #[cfg(target_os = "linux")]
243     /// fn conditional() { }
244     /// ```
245     ///
246     /// Or:
247     /// ```rust
248     /// #[cfg(unix)]
249     /// fn conditional() { }
250     /// ```
251     /// Check the [Rust Reference](https://doc.rust-lang.org/reference/conditional-compilation.html#target_os) for more details.
252     #[clippy::version = "1.45.0"]
253     pub MISMATCHED_TARGET_OS,
254     correctness,
255     "usage of `cfg(operating_system)` instead of `cfg(target_os = \"operating_system\")`"
256 }
257
258 declare_clippy_lint! {
259     /// ### What it does
260     /// Checks for attributes that allow lints without a reason.
261     ///
262     /// (This requires the `lint_reasons` feature)
263     ///
264     /// ### Why is this bad?
265     /// Allowing a lint should always have a reason. This reason should be documented to
266     /// ensure that others understand the reasoning
267     ///
268     /// ### Example
269     /// Bad:
270     /// ```rust
271     /// #![feature(lint_reasons)]
272     ///
273     /// #![allow(clippy::some_lint)]
274     /// ```
275     ///
276     /// Good:
277     /// ```rust
278     /// #![feature(lint_reasons)]
279     ///
280     /// #![allow(clippy::some_lint, reason = "False positive rust-lang/rust-clippy#1002020")]
281     /// ```
282     #[clippy::version = "1.61.0"]
283     pub ALLOW_ATTRIBUTES_WITHOUT_REASON,
284     restriction,
285     "ensures that all `allow` and `expect` attributes have a reason"
286 }
287
288 declare_lint_pass!(Attributes => [
289     ALLOW_ATTRIBUTES_WITHOUT_REASON,
290     INLINE_ALWAYS,
291     DEPRECATED_SEMVER,
292     USELESS_ATTRIBUTE,
293     BLANKET_CLIPPY_RESTRICTION_LINTS,
294 ]);
295
296 impl<'tcx> LateLintPass<'tcx> for Attributes {
297     fn check_attribute(&mut self, cx: &LateContext<'tcx>, attr: &'tcx Attribute) {
298         if let Some(items) = &attr.meta_item_list() {
299             if let Some(ident) = attr.ident() {
300                 if is_lint_level(ident.name) {
301                     check_clippy_lint_names(cx, ident.name, items);
302                 }
303                 if matches!(ident.name, sym::allow | sym::expect) {
304                     check_lint_reason(cx, ident.name, items, attr);
305                 }
306                 if items.is_empty() || !attr.has_name(sym::deprecated) {
307                     return;
308                 }
309                 for item in items {
310                     if_chain! {
311                         if let NestedMetaItem::MetaItem(mi) = &item;
312                         if let MetaItemKind::NameValue(lit) = &mi.kind;
313                         if mi.has_name(sym::since);
314                         then {
315                             check_semver(cx, item.span(), lit);
316                         }
317                     }
318                 }
319             }
320         }
321     }
322
323     fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx Item<'_>) {
324         let attrs = cx.tcx.hir().attrs(item.hir_id());
325         if is_relevant_item(cx, item) {
326             check_attrs(cx, item.span, item.ident.name, attrs);
327         }
328         match item.kind {
329             ItemKind::ExternCrate(..) | ItemKind::Use(..) => {
330                 let skip_unused_imports = attrs.iter().any(|attr| attr.has_name(sym::macro_use));
331
332                 for attr in attrs {
333                     if in_external_macro(cx.sess(), attr.span) {
334                         return;
335                     }
336                     if let Some(lint_list) = &attr.meta_item_list() {
337                         if attr.ident().map_or(false, |ident| is_lint_level(ident.name)) {
338                             for lint in lint_list {
339                                 match item.kind {
340                                     ItemKind::Use(..) => {
341                                         if is_word(lint, sym!(unused_imports))
342                                             || is_word(lint, sym::deprecated)
343                                             || is_word(lint, sym!(unreachable_pub))
344                                             || is_word(lint, sym!(unused))
345                                             || extract_clippy_lint(lint).map_or(false, |s| {
346                                                 matches!(
347                                                     s.as_str(),
348                                                     "wildcard_imports" | "enum_glob_use" | "redundant_pub_crate",
349                                                 )
350                                             })
351                                         {
352                                             return;
353                                         }
354                                     },
355                                     ItemKind::ExternCrate(..) => {
356                                         if is_word(lint, sym!(unused_imports)) && skip_unused_imports {
357                                             return;
358                                         }
359                                         if is_word(lint, sym!(unused_extern_crates)) {
360                                             return;
361                                         }
362                                     },
363                                     _ => {},
364                                 }
365                             }
366                             let line_span = first_line_of_span(cx, attr.span);
367
368                             if let Some(mut sugg) = snippet_opt(cx, line_span) {
369                                 if sugg.contains("#[") {
370                                     span_lint_and_then(
371                                         cx,
372                                         USELESS_ATTRIBUTE,
373                                         line_span,
374                                         "useless lint attribute",
375                                         |diag| {
376                                             sugg = sugg.replacen("#[", "#![", 1);
377                                             diag.span_suggestion(
378                                                 line_span,
379                                                 "if you just forgot a `!`, use",
380                                                 sugg,
381                                                 Applicability::MaybeIncorrect,
382                                             );
383                                         },
384                                     );
385                                 }
386                             }
387                         }
388                     }
389                 }
390             },
391             _ => {},
392         }
393     }
394
395     fn check_impl_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx ImplItem<'_>) {
396         if is_relevant_impl(cx, item) {
397             check_attrs(cx, item.span, item.ident.name, cx.tcx.hir().attrs(item.hir_id()));
398         }
399     }
400
401     fn check_trait_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx TraitItem<'_>) {
402         if is_relevant_trait(cx, item) {
403             check_attrs(cx, item.span, item.ident.name, cx.tcx.hir().attrs(item.hir_id()));
404         }
405     }
406 }
407
408 /// Returns the lint name if it is clippy lint.
409 fn extract_clippy_lint(lint: &NestedMetaItem) -> Option<Symbol> {
410     if_chain! {
411         if let Some(meta_item) = lint.meta_item();
412         if meta_item.path.segments.len() > 1;
413         if let tool_name = meta_item.path.segments[0].ident;
414         if tool_name.name == sym::clippy;
415         then {
416             let lint_name = meta_item.path.segments.last().unwrap().ident.name;
417             return Some(lint_name);
418         }
419     }
420     None
421 }
422
423 fn check_clippy_lint_names(cx: &LateContext<'_>, name: Symbol, items: &[NestedMetaItem]) {
424     for lint in items {
425         if let Some(lint_name) = extract_clippy_lint(lint) {
426             if lint_name.as_str() == "restriction" && name != sym::allow {
427                 span_lint_and_help(
428                     cx,
429                     BLANKET_CLIPPY_RESTRICTION_LINTS,
430                     lint.span(),
431                     "restriction lints are not meant to be all enabled",
432                     None,
433                     "try enabling only the lints you really need",
434                 );
435             }
436         }
437     }
438 }
439
440 fn check_lint_reason(cx: &LateContext<'_>, name: Symbol, items: &[NestedMetaItem], attr: &'_ Attribute) {
441     // Check for the feature
442     if !cx.tcx.sess.features_untracked().lint_reasons {
443         return;
444     }
445
446     // Check if the reason is present
447     if let Some(item) = items.last().and_then(NestedMetaItem::meta_item)
448         && let MetaItemKind::NameValue(_) = &item.kind
449         && item.path == sym::reason
450     {
451         return;
452     }
453
454     span_lint_and_help(
455         cx,
456         ALLOW_ATTRIBUTES_WITHOUT_REASON,
457         attr.span,
458         &format!("`{}` attribute without specifying a reason", name.as_str()),
459         None,
460         "try adding a reason at the end with `, reason = \"..\"`",
461     );
462 }
463
464 fn is_relevant_item(cx: &LateContext<'_>, item: &Item<'_>) -> bool {
465     if let ItemKind::Fn(_, _, eid) = item.kind {
466         is_relevant_expr(cx, cx.tcx.typeck_body(eid), &cx.tcx.hir().body(eid).value)
467     } else {
468         true
469     }
470 }
471
472 fn is_relevant_impl(cx: &LateContext<'_>, item: &ImplItem<'_>) -> bool {
473     match item.kind {
474         ImplItemKind::Fn(_, eid) => is_relevant_expr(cx, cx.tcx.typeck_body(eid), &cx.tcx.hir().body(eid).value),
475         _ => false,
476     }
477 }
478
479 fn is_relevant_trait(cx: &LateContext<'_>, item: &TraitItem<'_>) -> bool {
480     match item.kind {
481         TraitItemKind::Fn(_, TraitFn::Required(_)) => true,
482         TraitItemKind::Fn(_, TraitFn::Provided(eid)) => {
483             is_relevant_expr(cx, cx.tcx.typeck_body(eid), &cx.tcx.hir().body(eid).value)
484         },
485         _ => false,
486     }
487 }
488
489 fn is_relevant_block(cx: &LateContext<'_>, typeck_results: &ty::TypeckResults<'_>, block: &Block<'_>) -> bool {
490     block.stmts.first().map_or(
491         block
492             .expr
493             .as_ref()
494             .map_or(false, |e| is_relevant_expr(cx, typeck_results, e)),
495         |stmt| match &stmt.kind {
496             StmtKind::Local(_) => true,
497             StmtKind::Expr(expr) | StmtKind::Semi(expr) => is_relevant_expr(cx, typeck_results, expr),
498             StmtKind::Item(_) => false,
499         },
500     )
501 }
502
503 fn is_relevant_expr(cx: &LateContext<'_>, typeck_results: &ty::TypeckResults<'_>, expr: &Expr<'_>) -> bool {
504     if macro_backtrace(expr.span).last().map_or(false, |macro_call| {
505         is_panic(cx, macro_call.def_id) || cx.tcx.item_name(macro_call.def_id) == sym::unreachable
506     }) {
507         return false;
508     }
509     match &expr.kind {
510         ExprKind::Block(block, _) => is_relevant_block(cx, typeck_results, block),
511         ExprKind::Ret(Some(e)) => is_relevant_expr(cx, typeck_results, e),
512         ExprKind::Ret(None) | ExprKind::Break(_, None) => false,
513         _ => true,
514     }
515 }
516
517 fn check_attrs(cx: &LateContext<'_>, span: Span, name: Symbol, attrs: &[Attribute]) {
518     if span.from_expansion() {
519         return;
520     }
521
522     for attr in attrs {
523         if let Some(values) = attr.meta_item_list() {
524             if values.len() != 1 || !attr.has_name(sym::inline) {
525                 continue;
526             }
527             if is_word(&values[0], sym::always) {
528                 span_lint(
529                     cx,
530                     INLINE_ALWAYS,
531                     attr.span,
532                     &format!(
533                         "you have declared `#[inline(always)]` on `{}`. This is usually a bad idea",
534                         name
535                     ),
536                 );
537             }
538         }
539     }
540 }
541
542 fn check_semver(cx: &LateContext<'_>, span: Span, lit: &Lit) {
543     if let LitKind::Str(is, _) = lit.kind {
544         if Version::parse(is.as_str()).is_ok() {
545             return;
546         }
547     }
548     span_lint(
549         cx,
550         DEPRECATED_SEMVER,
551         span,
552         "the since field must contain a semver-compliant version",
553     );
554 }
555
556 fn is_word(nmi: &NestedMetaItem, expected: Symbol) -> bool {
557     if let NestedMetaItem::MetaItem(mi) = &nmi {
558         mi.is_word() && mi.has_name(expected)
559     } else {
560         false
561     }
562 }
563
564 pub struct EarlyAttributes {
565     pub msrv: Option<RustcVersion>,
566 }
567
568 impl_lint_pass!(EarlyAttributes => [
569     DEPRECATED_CFG_ATTR,
570     MISMATCHED_TARGET_OS,
571     EMPTY_LINE_AFTER_OUTER_ATTR,
572 ]);
573
574 impl EarlyLintPass for EarlyAttributes {
575     fn check_item(&mut self, cx: &EarlyContext<'_>, item: &rustc_ast::Item) {
576         check_empty_line_after_outer_attr(cx, item);
577     }
578
579     fn check_attribute(&mut self, cx: &EarlyContext<'_>, attr: &Attribute) {
580         check_deprecated_cfg_attr(cx, attr, self.msrv);
581         check_mismatched_target_os(cx, attr);
582     }
583
584     extract_msrv_attr!(EarlyContext);
585 }
586
587 fn check_empty_line_after_outer_attr(cx: &EarlyContext<'_>, item: &rustc_ast::Item) {
588     for attr in &item.attrs {
589         if matches!(attr.kind, AttrKind::Normal(..))
590             && attr.style == AttrStyle::Outer
591             && is_present_in_source(cx, attr.span)
592         {
593             let begin_of_attr_to_item = Span::new(attr.span.lo(), item.span.lo(), item.span.ctxt(), item.span.parent());
594             let end_of_attr_to_item = Span::new(attr.span.hi(), item.span.lo(), item.span.ctxt(), item.span.parent());
595
596             if let Some(snippet) = snippet_opt(cx, end_of_attr_to_item) {
597                 let lines = snippet.split('\n').collect::<Vec<_>>();
598                 let lines = without_block_comments(lines);
599
600                 if lines.iter().filter(|l| l.trim().is_empty()).count() > 2 {
601                     span_lint(
602                         cx,
603                         EMPTY_LINE_AFTER_OUTER_ATTR,
604                         begin_of_attr_to_item,
605                         "found an empty line after an outer attribute. \
606                         Perhaps you forgot to add a `!` to make it an inner attribute?",
607                     );
608                 }
609             }
610         }
611     }
612 }
613
614 fn check_deprecated_cfg_attr(cx: &EarlyContext<'_>, attr: &Attribute, msrv: Option<RustcVersion>) {
615     if_chain! {
616         if meets_msrv(msrv, msrvs::TOOL_ATTRIBUTES);
617         // check cfg_attr
618         if attr.has_name(sym::cfg_attr);
619         if let Some(items) = attr.meta_item_list();
620         if items.len() == 2;
621         // check for `rustfmt`
622         if let Some(feature_item) = items[0].meta_item();
623         if feature_item.has_name(sym::rustfmt);
624         // check for `rustfmt_skip` and `rustfmt::skip`
625         if let Some(skip_item) = &items[1].meta_item();
626         if skip_item.has_name(sym!(rustfmt_skip)) ||
627             skip_item.path.segments.last().expect("empty path in attribute").ident.name == sym::skip;
628         // Only lint outer attributes, because custom inner attributes are unstable
629         // Tracking issue: https://github.com/rust-lang/rust/issues/54726
630         if attr.style == AttrStyle::Outer;
631         then {
632             span_lint_and_sugg(
633                 cx,
634                 DEPRECATED_CFG_ATTR,
635                 attr.span,
636                 "`cfg_attr` is deprecated for rustfmt and got replaced by tool attributes",
637                 "use",
638                 "#[rustfmt::skip]".to_string(),
639                 Applicability::MachineApplicable,
640             );
641         }
642     }
643 }
644
645 fn check_mismatched_target_os(cx: &EarlyContext<'_>, attr: &Attribute) {
646     fn find_os(name: &str) -> Option<&'static str> {
647         UNIX_SYSTEMS
648             .iter()
649             .chain(NON_UNIX_SYSTEMS.iter())
650             .find(|&&os| os == name)
651             .copied()
652     }
653
654     fn is_unix(name: &str) -> bool {
655         UNIX_SYSTEMS.iter().any(|&os| os == name)
656     }
657
658     fn find_mismatched_target_os(items: &[NestedMetaItem]) -> Vec<(&str, Span)> {
659         let mut mismatched = Vec::new();
660
661         for item in items {
662             if let NestedMetaItem::MetaItem(meta) = item {
663                 match &meta.kind {
664                     MetaItemKind::List(list) => {
665                         mismatched.extend(find_mismatched_target_os(list));
666                     },
667                     MetaItemKind::Word => {
668                         if_chain! {
669                             if let Some(ident) = meta.ident();
670                             if let Some(os) = find_os(ident.name.as_str());
671                             then {
672                                 mismatched.push((os, ident.span));
673                             }
674                         }
675                     },
676                     MetaItemKind::NameValue(..) => {},
677                 }
678             }
679         }
680
681         mismatched
682     }
683
684     if_chain! {
685         if attr.has_name(sym::cfg);
686         if let Some(list) = attr.meta_item_list();
687         let mismatched = find_mismatched_target_os(&list);
688         if !mismatched.is_empty();
689         then {
690             let mess = "operating system used in target family position";
691
692             span_lint_and_then(cx, MISMATCHED_TARGET_OS, attr.span, mess, |diag| {
693                 // Avoid showing the unix suggestion multiple times in case
694                 // we have more than one mismatch for unix-like systems
695                 let mut unix_suggested = false;
696
697                 for (os, span) in mismatched {
698                     let sugg = format!("target_os = \"{}\"", os);
699                     diag.span_suggestion(span, "try", sugg, Applicability::MaybeIncorrect);
700
701                     if !unix_suggested && is_unix(os) {
702                         diag.help("did you mean `unix`?");
703                         unix_suggested = true;
704                     }
705                 }
706             });
707         }
708     }
709 }
710
711 fn is_lint_level(symbol: Symbol) -> bool {
712     matches!(symbol, sym::allow | sym::expect | sym::warn | sym::deny | sym::forbid)
713 }