]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_middle/src/lint.rs
Rollup merge of #102550 - notriddle:notriddle/impl, r=GuillaumeGomez
[rust.git] / compiler / rustc_middle / src / lint.rs
1 use std::cmp;
2
3 use rustc_data_structures::fx::FxHashMap;
4 use rustc_data_structures::sorted_map::SortedMap;
5 use rustc_errors::{Diagnostic, DiagnosticBuilder, DiagnosticId, DiagnosticMessage, MultiSpan};
6 use rustc_hir::{HirId, ItemLocalId};
7 use rustc_session::lint::{
8     builtin::{self, FORBIDDEN_LINT_GROUPS},
9     FutureIncompatibilityReason, Level, Lint, LintId,
10 };
11 use rustc_session::Session;
12 use rustc_span::hygiene::MacroKind;
13 use rustc_span::source_map::{DesugaringKind, ExpnKind};
14 use rustc_span::{symbol, Span, Symbol, DUMMY_SP};
15
16 use crate::ty::TyCtxt;
17
18 /// How a lint level was set.
19 #[derive(Clone, Copy, PartialEq, Eq, HashStable, Debug)]
20 pub enum LintLevelSource {
21     /// Lint is at the default level as declared
22     /// in rustc or a plugin.
23     Default,
24
25     /// Lint level was set by an attribute.
26     Node {
27         name: Symbol,
28         span: Span,
29         /// RFC 2383 reason
30         reason: Option<Symbol>,
31     },
32
33     /// Lint level was set by a command-line flag.
34     /// The provided `Level` is the level specified on the command line.
35     /// (The actual level may be lower due to `--cap-lints`.)
36     CommandLine(Symbol, Level),
37 }
38
39 impl LintLevelSource {
40     pub fn name(&self) -> Symbol {
41         match *self {
42             LintLevelSource::Default => symbol::kw::Default,
43             LintLevelSource::Node { name, .. } => name,
44             LintLevelSource::CommandLine(name, _) => name,
45         }
46     }
47
48     pub fn span(&self) -> Span {
49         match *self {
50             LintLevelSource::Default => DUMMY_SP,
51             LintLevelSource::Node { span, .. } => span,
52             LintLevelSource::CommandLine(_, _) => DUMMY_SP,
53         }
54     }
55 }
56
57 /// A tuple of a lint level and its source.
58 pub type LevelAndSource = (Level, LintLevelSource);
59
60 /// Return type for the `shallow_lint_levels_on` query.
61 ///
62 /// This map represents the set of allowed lints and allowance levels given
63 /// by the attributes for *a single HirId*.
64 #[derive(Default, Debug, HashStable)]
65 pub struct ShallowLintLevelMap {
66     pub specs: SortedMap<ItemLocalId, FxHashMap<LintId, LevelAndSource>>,
67 }
68
69 /// From an initial level and source, verify the effect of special annotations:
70 /// `warnings` lint level and lint caps.
71 ///
72 /// The return of this function is suitable for diagnostics.
73 pub fn reveal_actual_level(
74     level: Option<Level>,
75     src: &mut LintLevelSource,
76     sess: &Session,
77     lint: LintId,
78     probe_for_lint_level: impl FnOnce(LintId) -> (Option<Level>, LintLevelSource),
79 ) -> Level {
80     // If `level` is none then we actually assume the default level for this lint.
81     let mut level = level.unwrap_or_else(|| lint.lint.default_level(sess.edition()));
82
83     // If we're about to issue a warning, check at the last minute for any
84     // directives against the warnings "lint". If, for example, there's an
85     // `allow(warnings)` in scope then we want to respect that instead.
86     //
87     // We exempt `FORBIDDEN_LINT_GROUPS` from this because it specifically
88     // triggers in cases (like #80988) where you have `forbid(warnings)`,
89     // and so if we turned that into an error, it'd defeat the purpose of the
90     // future compatibility warning.
91     if level == Level::Warn && lint != LintId::of(FORBIDDEN_LINT_GROUPS) {
92         let (warnings_level, warnings_src) = probe_for_lint_level(LintId::of(builtin::WARNINGS));
93         if let Some(configured_warning_level) = warnings_level {
94             if configured_warning_level != Level::Warn {
95                 level = configured_warning_level;
96                 *src = warnings_src;
97             }
98         }
99     }
100
101     // Ensure that we never exceed the `--cap-lints` argument unless the source is a --force-warn
102     level = if let LintLevelSource::CommandLine(_, Level::ForceWarn(_)) = src {
103         level
104     } else {
105         cmp::min(level, sess.opts.lint_cap.unwrap_or(Level::Forbid))
106     };
107
108     if let Some(driver_level) = sess.driver_lint_caps.get(&lint) {
109         // Ensure that we never exceed driver level.
110         level = cmp::min(*driver_level, level);
111     }
112
113     level
114 }
115
116 impl ShallowLintLevelMap {
117     /// Perform a deep probe in the HIR tree looking for the actual level for the lint.
118     /// This lint level is not usable for diagnostics, it needs to be corrected by
119     /// `reveal_actual_level` beforehand.
120     #[instrument(level = "trace", skip(self, tcx), ret)]
121     fn probe_for_lint_level(
122         &self,
123         tcx: TyCtxt<'_>,
124         id: LintId,
125         start: HirId,
126     ) -> (Option<Level>, LintLevelSource) {
127         if let Some(map) = self.specs.get(&start.local_id)
128             && let Some(&(level, src)) = map.get(&id)
129         {
130             return (Some(level), src);
131         }
132
133         let mut owner = start.owner;
134         let mut specs = &self.specs;
135
136         for parent in tcx.hir().parent_id_iter(start) {
137             if parent.owner != owner {
138                 owner = parent.owner;
139                 specs = &tcx.shallow_lint_levels_on(owner).specs;
140             }
141             if let Some(map) = specs.get(&parent.local_id)
142                 && let Some(&(level, src)) = map.get(&id)
143             {
144                 return (Some(level), src);
145             }
146         }
147
148         (None, LintLevelSource::Default)
149     }
150
151     /// Fetch and return the user-visible lint level for the given lint at the given HirId.
152     #[instrument(level = "trace", skip(self, tcx), ret)]
153     pub fn lint_level_id_at_node(
154         &self,
155         tcx: TyCtxt<'_>,
156         lint: LintId,
157         cur: HirId,
158     ) -> (Level, LintLevelSource) {
159         let (level, mut src) = self.probe_for_lint_level(tcx, lint, cur);
160         let level = reveal_actual_level(level, &mut src, tcx.sess, lint, |lint| {
161             self.probe_for_lint_level(tcx, lint, cur)
162         });
163         (level, src)
164     }
165 }
166
167 impl TyCtxt<'_> {
168     /// Fetch and return the user-visible lint level for the given lint at the given HirId.
169     pub fn lint_level_at_node(self, lint: &'static Lint, id: HirId) -> (Level, LintLevelSource) {
170         self.shallow_lint_levels_on(id.owner).lint_level_id_at_node(self, LintId::of(lint), id)
171     }
172
173     /// Walks upwards from `id` to find a node which might change lint levels with attributes.
174     /// It stops at `bound` and just returns it if reached.
175     pub fn maybe_lint_level_root_bounded(self, mut id: HirId, bound: HirId) -> HirId {
176         let hir = self.hir();
177         loop {
178             if id == bound {
179                 return bound;
180             }
181
182             if hir.attrs(id).iter().any(|attr| Level::from_attr(attr).is_some()) {
183                 return id;
184             }
185             let next = hir.get_parent_node(id);
186             if next == id {
187                 bug!("lint traversal reached the root of the crate");
188             }
189             id = next;
190         }
191     }
192 }
193
194 /// This struct represents a lint expectation and holds all required information
195 /// to emit the `unfulfilled_lint_expectations` lint if it is unfulfilled after
196 /// the `LateLintPass` has completed.
197 #[derive(Clone, Debug, HashStable)]
198 pub struct LintExpectation {
199     /// The reason for this expectation that can optionally be added as part of
200     /// the attribute. It will be displayed as part of the lint message.
201     pub reason: Option<Symbol>,
202     /// The [`Span`] of the attribute that this expectation originated from.
203     pub emission_span: Span,
204     /// Lint messages for the `unfulfilled_lint_expectations` lint will be
205     /// adjusted to include an additional note. Therefore, we have to track if
206     /// the expectation is for the lint.
207     pub is_unfulfilled_lint_expectations: bool,
208     /// This will hold the name of the tool that this lint belongs to. For
209     /// the lint `clippy::some_lint` the tool would be `clippy`, the same
210     /// goes for `rustdoc`. This will be `None` for rustc lints
211     pub lint_tool: Option<Symbol>,
212 }
213
214 impl LintExpectation {
215     pub fn new(
216         reason: Option<Symbol>,
217         emission_span: Span,
218         is_unfulfilled_lint_expectations: bool,
219         lint_tool: Option<Symbol>,
220     ) -> Self {
221         Self { reason, emission_span, is_unfulfilled_lint_expectations, lint_tool }
222     }
223 }
224
225 pub fn explain_lint_level_source(
226     lint: &'static Lint,
227     level: Level,
228     src: LintLevelSource,
229     err: &mut Diagnostic,
230 ) {
231     let name = lint.name_lower();
232     match src {
233         LintLevelSource::Default => {
234             err.note_once(&format!("`#[{}({})]` on by default", level.as_str(), name));
235         }
236         LintLevelSource::CommandLine(lint_flag_val, orig_level) => {
237             let flag = match orig_level {
238                 Level::Warn => "-W",
239                 Level::Deny => "-D",
240                 Level::Forbid => "-F",
241                 Level::Allow => "-A",
242                 Level::ForceWarn(_) => "--force-warn",
243                 Level::Expect(_) => {
244                     unreachable!("the expect level does not have a commandline flag")
245                 }
246             };
247             let hyphen_case_lint_name = name.replace('_', "-");
248             if lint_flag_val.as_str() == name {
249                 err.note_once(&format!(
250                     "requested on the command line with `{} {}`",
251                     flag, hyphen_case_lint_name
252                 ));
253             } else {
254                 let hyphen_case_flag_val = lint_flag_val.as_str().replace('_', "-");
255                 err.note_once(&format!(
256                     "`{} {}` implied by `{} {}`",
257                     flag, hyphen_case_lint_name, flag, hyphen_case_flag_val
258                 ));
259             }
260         }
261         LintLevelSource::Node { name: lint_attr_name, span, reason, .. } => {
262             if let Some(rationale) = reason {
263                 err.note(rationale.as_str());
264             }
265             err.span_note_once(span, "the lint level is defined here");
266             if lint_attr_name.as_str() != name {
267                 let level_str = level.as_str();
268                 err.note_once(&format!(
269                     "`#[{}({})]` implied by `#[{}({})]`",
270                     level_str, name, level_str, lint_attr_name
271                 ));
272             }
273         }
274     }
275 }
276
277 pub fn struct_lint_level<'s, 'd>(
278     sess: &'s Session,
279     lint: &'static Lint,
280     level: Level,
281     src: LintLevelSource,
282     span: Option<MultiSpan>,
283     msg: impl Into<DiagnosticMessage>,
284     decorate: impl 'd
285     + for<'a, 'b> FnOnce(
286         &'b mut DiagnosticBuilder<'a, ()>,
287     ) -> &'b mut DiagnosticBuilder<'a, ()>,
288 ) {
289     // Avoid codegen bloat from monomorphization by immediately doing dyn dispatch of `decorate` to
290     // the "real" work.
291     fn struct_lint_level_impl<'s, 'd>(
292         sess: &'s Session,
293         lint: &'static Lint,
294         level: Level,
295         src: LintLevelSource,
296         span: Option<MultiSpan>,
297         msg: impl Into<DiagnosticMessage>,
298         decorate: Box<
299             dyn 'd
300                 + for<'a, 'b> FnOnce(
301                     &'b mut DiagnosticBuilder<'a, ()>,
302                 ) -> &'b mut DiagnosticBuilder<'a, ()>,
303         >,
304     ) {
305         // Check for future incompatibility lints and issue a stronger warning.
306         let future_incompatible = lint.future_incompatible;
307
308         let has_future_breakage = future_incompatible.map_or(
309             // Default allow lints trigger too often for testing.
310             sess.opts.unstable_opts.future_incompat_test && lint.default_level != Level::Allow,
311             |incompat| {
312                 matches!(incompat.reason, FutureIncompatibilityReason::FutureReleaseErrorReportNow)
313             },
314         );
315
316         let mut err = match (level, span) {
317             (Level::Allow, span) => {
318                 if has_future_breakage {
319                     if let Some(span) = span {
320                         sess.struct_span_allow(span, "")
321                     } else {
322                         sess.struct_allow("")
323                     }
324                 } else {
325                     return;
326                 }
327             }
328             (Level::Expect(expect_id), _) => {
329                 // This case is special as we actually allow the lint itself in this context, but
330                 // we can't return early like in the case for `Level::Allow` because we still
331                 // need the lint diagnostic to be emitted to `rustc_error::HandlerInner`.
332                 //
333                 // We can also not mark the lint expectation as fulfilled here right away, as it
334                 // can still be cancelled in the decorate function. All of this means that we simply
335                 // create a `DiagnosticBuilder` and continue as we would for warnings.
336                 sess.struct_expect("", expect_id)
337             }
338             (Level::ForceWarn(Some(expect_id)), Some(span)) => {
339                 sess.struct_span_warn_with_expectation(span, "", expect_id)
340             }
341             (Level::ForceWarn(Some(expect_id)), None) => {
342                 sess.struct_warn_with_expectation("", expect_id)
343             }
344             (Level::Warn | Level::ForceWarn(None), Some(span)) => sess.struct_span_warn(span, ""),
345             (Level::Warn | Level::ForceWarn(None), None) => sess.struct_warn(""),
346             (Level::Deny | Level::Forbid, Some(span)) => {
347                 let mut builder = sess.diagnostic().struct_err_lint("");
348                 builder.set_span(span);
349                 builder
350             }
351             (Level::Deny | Level::Forbid, None) => sess.diagnostic().struct_err_lint(""),
352         };
353
354         err.set_primary_message(msg);
355         err.set_is_lint();
356
357         // If this code originates in a foreign macro, aka something that this crate
358         // did not itself author, then it's likely that there's nothing this crate
359         // can do about it. We probably want to skip the lint entirely.
360         if err.span.primary_spans().iter().any(|s| in_external_macro(sess, *s)) {
361             // Any suggestions made here are likely to be incorrect, so anything we
362             // emit shouldn't be automatically fixed by rustfix.
363             err.disable_suggestions();
364
365             // If this is a future incompatible that is not an edition fixing lint
366             // it'll become a hard error, so we have to emit *something*. Also,
367             // if this lint occurs in the expansion of a macro from an external crate,
368             // allow individual lints to opt-out from being reported.
369             let not_future_incompatible =
370                 future_incompatible.map(|f| f.reason.edition().is_some()).unwrap_or(true);
371             if not_future_incompatible && !lint.report_in_external_macro {
372                 err.cancel();
373                 // Don't continue further, since we don't want to have
374                 // `diag_span_note_once` called for a diagnostic that isn't emitted.
375                 return;
376             }
377         }
378
379         // Lint diagnostics that are covered by the expect level will not be emitted outside
380         // the compiler. It is therefore not necessary to add any information for the user.
381         // This will therefore directly call the decorate function which will in turn emit
382         // the `Diagnostic`.
383         if let Level::Expect(_) = level {
384             let name = lint.name_lower();
385             err.code(DiagnosticId::Lint { name, has_future_breakage, is_force_warn: false });
386
387             decorate(&mut err);
388             err.emit();
389             return;
390         }
391
392         let name = lint.name_lower();
393         let is_force_warn = matches!(level, Level::ForceWarn(_));
394         err.code(DiagnosticId::Lint { name, has_future_breakage, is_force_warn });
395
396         if let Some(future_incompatible) = future_incompatible {
397             let explanation = match future_incompatible.reason {
398                 FutureIncompatibilityReason::FutureReleaseError
399                 | FutureIncompatibilityReason::FutureReleaseErrorReportNow => {
400                     "this was previously accepted by the compiler but is being phased out; \
401                          it will become a hard error in a future release!"
402                         .to_owned()
403                 }
404                 FutureIncompatibilityReason::FutureReleaseSemanticsChange => {
405                     "this will change its meaning in a future release!".to_owned()
406                 }
407                 FutureIncompatibilityReason::EditionError(edition) => {
408                     let current_edition = sess.edition();
409                     format!(
410                         "this is accepted in the current edition (Rust {}) but is a hard error in Rust {}!",
411                         current_edition, edition
412                     )
413                 }
414                 FutureIncompatibilityReason::EditionSemanticsChange(edition) => {
415                     format!("this changes meaning in Rust {}", edition)
416                 }
417                 FutureIncompatibilityReason::Custom(reason) => reason.to_owned(),
418             };
419
420             if future_incompatible.explain_reason {
421                 err.warn(&explanation);
422             }
423             if !future_incompatible.reference.is_empty() {
424                 let citation =
425                     format!("for more information, see {}", future_incompatible.reference);
426                 err.note(&citation);
427             }
428         }
429
430         // Finally, run `decorate`.
431         decorate(&mut err);
432         explain_lint_level_source(lint, level, src, &mut *err);
433         err.emit()
434     }
435     struct_lint_level_impl(sess, lint, level, src, span, msg, Box::new(decorate))
436 }
437
438 /// Returns whether `span` originates in a foreign crate's external macro.
439 ///
440 /// This is used to test whether a lint should not even begin to figure out whether it should
441 /// be reported on the current node.
442 pub fn in_external_macro(sess: &Session, span: Span) -> bool {
443     let expn_data = span.ctxt().outer_expn_data();
444     match expn_data.kind {
445         ExpnKind::Inlined
446         | ExpnKind::Root
447         | ExpnKind::Desugaring(DesugaringKind::ForLoop | DesugaringKind::WhileLoop) => false,
448         ExpnKind::AstPass(_) | ExpnKind::Desugaring(_) => true, // well, it's "external"
449         ExpnKind::Macro(MacroKind::Bang, _) => {
450             // Dummy span for the `def_site` means it's an external macro.
451             expn_data.def_site.is_dummy() || sess.source_map().is_imported(expn_data.def_site)
452         }
453         ExpnKind::Macro { .. } => true, // definitely a plugin
454     }
455 }