Skip to main content

rustc_attr_parsing/
interface.rs

1//! API for other crates to parse attributes themselves.
2use std::convert::identity;
3#[cfg(debug_assertions)]
4use std::sync::atomic::{AtomicBool, Ordering};
5
6use rustc_ast as ast;
7use rustc_ast::token::DocFragmentKind;
8use rustc_ast::{AttrStyle, CRATE_NODE_ID, NodeId, Safety};
9use rustc_data_structures::sync::{DynSend, DynSync};
10use rustc_errors::{Diag, DiagCtxtHandle, Diagnostic, Level, MultiSpan};
11use rustc_feature::{BUILTIN_ATTRIBUTE_MAP, Features};
12use rustc_hir::attrs::AttributeKind;
13use rustc_hir::{AttrArgs, AttrItem, AttrPath, Attribute, HashIgnoredAttrId, Target};
14use rustc_lint_defs::RegisteredTools;
15use rustc_session::Session;
16use rustc_session::lint::LintId;
17use rustc_span::{DUMMY_SP, ErrorGuaranteed, Span, Symbol, sym};
18
19use crate::attributes::AttributeSafety;
20use crate::context::{
21    ATTRIBUTE_PARSERS, AcceptContext, FinalizeCheckContext, FinalizeCheckFn, FinalizeContext,
22    FinalizeFn, FinalizeOutput, SharedContext,
23};
24use crate::parser::{AllowExprMetavar, ArgParser, PathParser, RefPathParser};
25use crate::session_diagnostics::ParsedDescription;
26use crate::synthetic::SyntheticAttrState;
27use crate::{AttributeTemplate, OmitDoc, ShouldEmit};
28
29pub struct EmitAttribute(
30    pub  Box<
31        dyn for<'a> FnOnce(DiagCtxtHandle<'a>, Level, &Session) -> Diag<'a, ()>
32            + DynSend
33            + DynSync
34            + 'static,
35    >,
36);
37
38/// Context created once, for example as part of the ast lowering
39/// context, through which all attributes can be lowered.
40pub struct AttributeParser<'sess> {
41    pub(crate) attr_tools: Option<&'sess RegisteredTools>,
42    pub(crate) features: Option<&'sess Features>,
43    pub(crate) sess: &'sess Session,
44    pub(crate) should_emit: ShouldEmit,
45
46    /// *Only* parse attributes that passes this filter.
47    ///
48    /// Used in cases where we want the lowering infrastructure for parse just limited attributes.
49    parse_filter: Option<&'sess dyn Fn(&ast::Attribute) -> bool>,
50}
51
52impl<'sess> AttributeParser<'sess> {
53    /// This method allows you to parse attributes *before* you have access to features or tools.
54    /// One example where this is necessary, is to parse `feature` attributes themselves for
55    /// example.
56    ///
57    /// Try to use this as little as possible. Attributes *should* be lowered during
58    /// `rustc_ast_lowering`. Some attributes require access to features to parse, which would
59    /// crash if you tried to do so through [`parse_limited`](Self::parse_limited).
60    ///
61    /// To make sure use is limited, supply a filter. Only attributes that passes the filter are
62    /// picked out of the list of instructions and parsed. Those are returned.
63    ///
64    /// No diagnostics will be emitted when parsing limited. Lints are not emitted at all, while
65    /// errors will be emitted as a delayed bugs. in other words, we *expect* attributes parsed
66    /// with `parse_limited` to be reparsed later during ast lowering where we *do* emit the errors
67    ///
68    /// Due to this function not taking in `RegisteredTools`, *do not* use this for parsing any lint attributes
69    pub fn parse_limited(
70        sess: &'sess Session,
71        attrs: &[ast::Attribute],
72        parse_filter: &dyn Fn(&ast::Attribute) -> bool,
73    ) -> Option<Attribute> {
74        Self::parse_limited_should_emit(
75            sess,
76            attrs,
77            parse_filter,
78            // Because we're not emitting warnings/errors, the target should not matter
79            DUMMY_SP,
80            None,
81            ShouldEmit::Nothing,
82        )
83    }
84
85    /// This does the same as `parse_limited`, except that it takes a fixed symbol instead of a
86    /// filter.
87    pub fn parse_limited_sym(
88        sess: &'sess Session,
89        attrs: &[ast::Attribute],
90        sym: &'static [Symbol],
91    ) -> Option<Attribute> {
92        Self::parse_limited(sess, attrs, &|attr| attr.path_matches(sym))
93    }
94
95    /// This does the same as `parse_limited`, except it has a `should_emit` parameter which allows it to emit errors.
96    /// Usually you want `parse_limited`, which emits no errors.
97    ///
98    /// Due to this function not taking in `RegisteredTools`, *do not* use this for parsing any lint attributes
99    pub fn parse_limited_should_emit(
100        sess: &'sess Session,
101        attrs: &[ast::Attribute],
102        parse_filter: &dyn Fn(&ast::Attribute) -> bool,
103        target_span: Span,
104        features: Option<&'sess Features>,
105        should_emit: ShouldEmit,
106    ) -> Option<Attribute> {
107        let mut parsed = Self::parse_limited_all(
108            sess,
109            attrs,
110            Some(parse_filter),
111            Target::Crate,
112            target_span,
113            CRATE_NODE_ID,
114            features,
115            should_emit,
116            None,
117        );
118        if !(parsed.len() <= 1) {
    ::core::panicking::panic("assertion failed: parsed.len() <= 1")
};assert!(parsed.len() <= 1);
119        parsed.pop()
120    }
121
122    /// This does the same as `parse_limited_should_emit`, except that it takes a fixed symbol
123    /// instead of a filter.
124    pub fn parse_limited_sym_should_emit(
125        sess: &'sess Session,
126        attrs: &[ast::Attribute],
127        sym: &'static [Symbol],
128        target_span: Span,
129        features: Option<&'sess Features>,
130        should_emit: ShouldEmit,
131    ) -> Option<Attribute> {
132        Self::parse_limited_should_emit(
133            sess,
134            attrs,
135            &|attr| attr.path_matches(sym),
136            target_span,
137            features,
138            should_emit,
139        )
140    }
141
142    /// This method allows you to parse a list of attributes *before* `rustc_ast_lowering`.
143    /// This can be used for attributes that would be removed before `rustc_ast_lowering`, such as attributes on macro calls.
144    ///
145    /// Try to use this as little as possible. Attributes *should* be lowered during
146    /// `rustc_ast_lowering`. Some attributes require access to features to parse, which would
147    /// crash if you tried to do so through [`parse_limited_all`](Self::parse_limited_all).
148    /// Therefore, if `parse_filter` is None, then features *must* be provided.
149    pub fn parse_limited_all(
150        sess: &'sess Session,
151        attrs: &[ast::Attribute],
152        parse_filter: Option<&dyn Fn(&ast::Attribute) -> bool>,
153        target: Target,
154        target_span: Span,
155        target_node_id: NodeId,
156        features: Option<&'sess Features>,
157        should_emit: ShouldEmit,
158        attr_tools: Option<&'sess RegisteredTools>,
159    ) -> Vec<Attribute> {
160        let mut p = AttributeParser { features, attr_tools, parse_filter, sess, should_emit };
161        p.parse_attribute_list(
162            attrs,
163            target_span,
164            target,
165            OmitDoc::Skip,
166            std::convert::identity,
167            |lint_id, span, kind| {
168                sess.psess.dyn_buffer_lint_sess(lint_id.lint, span, target_node_id, kind.0)
169            },
170        )
171    }
172
173    /// This method parses a single attribute, using `parse_fn`.
174    /// This is useful if you already know what exact attribute this is, and want to parse it.
175    pub fn parse_single<T>(
176        sess: &'sess Session,
177        attr: &ast::Attribute,
178        target_span: Span,
179        target_node_id: NodeId,
180        target: Target,
181        features: Option<&'sess Features>,
182        emit_errors: ShouldEmit,
183        parse_fn: fn(cx: &mut AcceptContext<'_, '_>, item: &ArgParser) -> Option<T>,
184        template: &AttributeTemplate,
185        allow_expr_metavar: AllowExprMetavar,
186        expected_safety: AttributeSafety,
187    ) -> Option<T> {
188        let attr_item = attr.get_normal_item();
189        let parts = attr_item.path.segments.iter().map(|seg| seg.ident.name).collect::<Vec<_>>();
190
191        let path = AttrPath::from_ast(&attr_item.path, identity);
192        let args = ArgParser::from_attr_args(
193            &attr_item.args,
194            &parts,
195            &sess.psess,
196            emit_errors,
197            allow_expr_metavar,
198        )?;
199        Self::parse_single_args(
200            sess,
201            attr.span,
202            attr_item.span,
203            attr.style,
204            path,
205            Some(attr_item.unsafety),
206            expected_safety,
207            ParsedDescription::Attribute,
208            target_span,
209            target_node_id,
210            target,
211            features,
212            emit_errors,
213            &args,
214            parse_fn,
215            template,
216        )
217    }
218
219    /// This method is equivalent to `parse_single`, but parses arguments using `parse_fn` using manually created `args`.
220    /// This is useful when you want to parse other things than attributes using attribute parsers.
221    pub fn parse_single_args<T, I>(
222        sess: &'sess Session,
223        attr_span: Span,
224        inner_span: Span,
225        attr_style: AttrStyle,
226        attr_path: AttrPath,
227        attr_safety: Option<Safety>,
228        expected_safety: AttributeSafety,
229        parsed_description: ParsedDescription,
230        target_span: Span,
231        target_node_id: NodeId,
232        target: Target,
233        features: Option<&'sess Features>,
234        should_emit: ShouldEmit,
235        args: &I,
236        parse_fn: fn(cx: &mut AcceptContext<'_, '_>, item: &I) -> T,
237        template: &AttributeTemplate,
238    ) -> T {
239        let mut parser = Self { features, attr_tools: None, parse_filter: None, sess, should_emit };
240        let mut emit_lint = |lint_id: LintId, span: MultiSpan, kind: EmitAttribute| {
241            sess.psess.dyn_buffer_lint_sess(lint_id.lint, span, target_node_id, kind.0)
242        };
243        if let Some(safety) = attr_safety {
244            parser.check_attribute_safety(
245                &attr_path,
246                inner_span,
247                safety,
248                expected_safety,
249                &mut emit_lint,
250            );
251        }
252        let mut cx: AcceptContext<'_, 'sess> = AcceptContext {
253            shared: SharedContext {
254                cx: &mut parser,
255                target_span,
256                target,
257                emit_lint: &mut emit_lint,
258                #[cfg(debug_assertions)]
259                has_lint_been_emitted: AtomicBool::new(false),
260            },
261            attr_span,
262            inner_span,
263            attr_style,
264            parsed_description,
265            template,
266            attr_safety: attr_safety.unwrap_or(Safety::Default),
267            attr_path,
268            #[cfg(debug_assertions)]
269            has_target_been_checked: false,
270        };
271        parse_fn(&mut cx, args)
272    }
273}
274
275impl<'sess> AttributeParser<'sess> {
276    pub fn new(
277        sess: &'sess Session,
278        features: &'sess Features,
279        attr_tools: &'sess RegisteredTools,
280        should_emit: ShouldEmit,
281    ) -> Self {
282        Self {
283            features: Some(features),
284            attr_tools: Some(attr_tools),
285            parse_filter: None,
286            sess,
287            should_emit,
288        }
289    }
290
291    pub(crate) fn sess(&self) -> &'sess Session {
292        self.sess
293    }
294
295    pub(crate) fn features(&self) -> &'sess Features {
296        self.features.expect("features not available at this point in the compiler")
297    }
298
299    pub(crate) fn features_option(&self) -> Option<&'sess Features> {
300        self.features
301    }
302
303    pub(crate) fn dcx(&self) -> DiagCtxtHandle<'sess> {
304        self.sess().dcx()
305    }
306
307    pub(crate) fn emit_err(&self, diag: impl for<'x> Diagnostic<'x>) -> ErrorGuaranteed {
308        self.should_emit.emit_err(self.sess.dcx().create_err(diag))
309    }
310
311    /// Parse a list of attributes.
312    ///
313    /// `target_span` is the span of the thing this list of attributes is applied to,
314    /// and when `omit_doc` is set, doc attributes are filtered out.
315    pub fn parse_attribute_list(
316        &mut self,
317        attrs: &[ast::Attribute],
318        target_span: Span,
319        target: Target,
320        omit_doc: OmitDoc,
321        lower_span: impl Copy + Fn(Span) -> Span,
322        mut emit_lint: impl FnMut(LintId, MultiSpan, EmitAttribute),
323    ) -> Vec<Attribute> {
324        let mut attributes = Vec::new();
325        let mut attr_paths: Vec<RefPathParser<'_>> = Vec::new();
326        let mut synthetic_attr_state = SyntheticAttrState::default();
327
328        let mut finalizers: Vec<FinalizeFn> = Vec::with_capacity(attrs.len());
329
330        for attr in attrs {
331            // If we're only looking for a single attribute, skip all the ones we don't care about.
332            if let Some(filter) = self.parse_filter {
333                if !filter(attr) {
334                    continue;
335                }
336            }
337
338            // Sometimes, for example for `#![doc = include_str!("readme.md")]`,
339            // doc still contains a non-literal. You might say, when we're lowering attributes
340            // that's expanded right? But no, sometimes, when parsing attributes on macros,
341            // we already use the lowering logic and these are still there. So, when `omit_doc`
342            // is set we *also* want to ignore these.
343            let is_doc_attribute = attr.has_name(sym::doc);
344            if omit_doc == OmitDoc::Skip && is_doc_attribute {
345                continue;
346            }
347
348            let attr_span = lower_span(attr.span);
349            match &attr.kind {
350                ast::AttrKind::DocComment(comment_kind, symbol) => {
351                    if omit_doc == OmitDoc::Skip {
352                        continue;
353                    }
354
355                    attributes.push(Attribute::Parsed(AttributeKind::DocComment {
356                        style: attr.style,
357                        kind: DocFragmentKind::Sugared(*comment_kind),
358                        span: attr_span,
359                        comment: *symbol,
360                    }));
361                }
362                ast::AttrKind::Synthetic(synthetic) => {
363                    synthetic_attr_state.accept_synthetic_attr(attr_span, lower_span, synthetic);
364                }
365                ast::AttrKind::Normal(n) => {
366                    attr_paths.push(PathParser(&n.item.path));
367                    let attr_path = AttrPath::from_ast(&n.item.path, lower_span);
368                    let parts =
369                        n.item.path.segments.iter().map(|seg| seg.ident.name).collect::<Vec<_>>();
370                    let inner_span = lower_span(n.item.span);
371
372                    if let Some(accept) = ATTRIBUTE_PARSERS.accepters.get(parts.as_slice()) {
373                        self.check_attribute_safety(
374                            &attr_path,
375                            inner_span,
376                            n.item.unsafety,
377                            accept.safety,
378                            &mut emit_lint,
379                        );
380                        self.check_attribute_stability(&attr_path, attr_span, accept.stability);
381                        if let [part] = parts.as_slice() {
382                            if true {
    if !BUILTIN_ATTRIBUTE_MAP.contains(part) {
        ::core::panicking::panic("assertion failed: BUILTIN_ATTRIBUTE_MAP.contains(part)")
    };
};debug_assert!(BUILTIN_ATTRIBUTE_MAP.contains(part));
383                        }
384
385                        let Some(args) = ArgParser::from_attr_args(
386                            &n.item.args,
387                            &parts,
388                            &self.sess.psess,
389                            self.should_emit,
390                            AllowExprMetavar::No,
391                        ) else {
392                            continue;
393                        };
394
395                        // Special-case handling for `#[doc = "..."]`: if we go through with
396                        // `DocParser`, the order of doc comments will be messed up because `///`
397                        // doc comments are added into `attributes` whereas attributes parsed with
398                        // `DocParser` are added into `parsed_attributes` which are then appended
399                        // to `attributes`. So if you have:
400                        //
401                        // /// bla
402                        // #[doc = "a"]
403                        // /// blob
404                        //
405                        // You would get:
406                        //
407                        // bla
408                        // blob
409                        // a
410                        if is_doc_attribute
411                            && let ArgParser::NameValue(nv) = &args
412                            // If not a string key/value, it should emit an error, but to make
413                            // things simpler, it's handled in `DocParser` because it's simpler to
414                            // emit an error with `AcceptContext`.
415                            && let Some(comment) = nv.value_as_str()
416                        {
417                            attributes.push(Attribute::Parsed(AttributeKind::DocComment {
418                                style: attr.style,
419                                kind: DocFragmentKind::Raw(nv.value_span),
420                                span: attr_span,
421                                comment,
422                            }));
423                            continue;
424                        }
425
426                        let mut cx: AcceptContext<'_, 'sess> = AcceptContext {
427                            shared: SharedContext {
428                                cx: self,
429                                target_span,
430                                target,
431                                emit_lint: &mut emit_lint,
432                                #[cfg(debug_assertions)]
433                                has_lint_been_emitted: AtomicBool::new(false),
434                            },
435                            attr_span,
436                            inner_span,
437                            attr_style: attr.style,
438                            parsed_description: ParsedDescription::Attribute,
439                            template: &accept.template,
440                            attr_safety: n.item.unsafety,
441                            attr_path: attr_path.clone(),
442                            #[cfg(debug_assertions)]
443                            has_target_been_checked: false,
444                        };
445
446                        (accept.accept_fn)(&mut cx, &args);
447                        finalizers.push(accept.finalizer);
448
449                        Self::check_target(&accept.allowed_targets, "", &mut cx);
450                        #[cfg(debug_assertions)]
451                        if !cx.shared.has_lint_been_emitted.load(Ordering::Relaxed) {
452                            cx.shared.cx.check_args_used(attr, &args)
453                        }
454                    } else {
455                        let attr = AttrItem {
456                            path: attr_path.clone(),
457                            args: self.lower_attr_args(&n.item.args, lower_span),
458                            id: HashIgnoredAttrId { attr_id: attr.id },
459                            style: attr.style,
460                            span: attr_span,
461                        };
462
463                        self.check_attribute_safety(
464                            &attr_path,
465                            inner_span,
466                            n.item.unsafety,
467                            AttributeSafety::Normal,
468                            &mut emit_lint,
469                        );
470
471                        if !#[allow(non_exhaustive_omitted_patterns)] match self.should_emit {
    ShouldEmit::Nothing => true,
    _ => false,
}matches!(self.should_emit, ShouldEmit::Nothing)
472                            && target == Target::Crate
473                        {
474                            self.check_invalid_crate_level_attr_item(&attr, inner_span);
475                        }
476
477                        attributes.push(Attribute::Unparsed(Box::new(attr)));
478                    };
479                }
480            }
481        }
482
483        synthetic_attr_state.finalize_synthetic_attrs(&mut attributes);
484
485        // First, run all finalizers to produce the parsed attributes. Cross-attribute
486        // checks that need to inspect the fully parsed attributes are deferred until all
487        // finalizers have run (see below), since the parsed attributes are not yet all
488        // available here.
489        let mut deferred_checks: Vec<(FinalizeCheckFn, Span)> = Vec::new();
490        for f in &finalizers {
491            let FinalizeOutput { attr, deferred_check } = f(&mut FinalizeContext {
492                shared: SharedContext {
493                    cx: self,
494                    target_span,
495                    target,
496                    emit_lint: &mut emit_lint,
497                    #[cfg(debug_assertions)]
498                    has_lint_been_emitted: AtomicBool::new(false),
499                },
500                all_attrs: &attr_paths,
501            });
502            if let Some(attr) = attr {
503                attributes.push(Attribute::Parsed(attr));
504            }
505            if let Some(deferred_check) = deferred_check {
506                deferred_checks.push(deferred_check);
507            }
508        }
509
510        // Now that all attributes have been parsed, run the deferred checks. These can
511        // inspect the fully parsed attributes via `FinalizeCheckContext::parsed_attrs`.
512        for (check, attr_span) in deferred_checks {
513            check(
514                &FinalizeCheckContext {
515                    shared: SharedContext {
516                        cx: self,
517                        target_span,
518                        target,
519                        emit_lint: &mut emit_lint,
520                        #[cfg(debug_assertions)]
521                        has_lint_been_emitted: AtomicBool::new(false),
522                    },
523                    all_attrs: &attr_paths,
524                    parsed_attrs: &attributes,
525                },
526                attr_span,
527            );
528        }
529
530        if !#[allow(non_exhaustive_omitted_patterns)] match self.should_emit {
    ShouldEmit::Nothing => true,
    _ => false,
}matches!(self.should_emit, ShouldEmit::Nothing) && target == Target::WherePredicate {
531            self.check_invalid_where_predicate_attrs(attributes.iter());
532        }
533
534        attributes
535    }
536
537    #[cfg(debug_assertions)]
538    /// Checks whether all `ArgParser`s were observed by an attribute parser at least once
539    /// This check exists because otherwise it is too easy to accidentally ignore the arguments of an attribute
540    fn check_args_used(&self, attr: &ast::Attribute, args: &ArgParser) {
541        if let ArgParser::List(items) = args {
542            for item in items.mixed() {
543                if let crate::parser::MetaItemOrLitParser::MetaItemParser(item) = item {
544                    if !item.are_args_checked() {
545                        self.dcx().span_delayed_bug(
546                            item.span(),
547                            "attribute args were not properly checked",
548                        );
549                        return;
550                    }
551                    self.check_args_used(attr, item.args());
552                }
553            }
554        }
555    }
556
557    /// Returns whether there is a parser for an attribute with this name
558    pub fn is_parsed_attribute(path: &[Symbol]) -> bool {
559        /// The list of attributes that are parsed attributes,
560        /// even though they don't have a parser in `Late::parsers()`
561        const SPECIAL_ATTRIBUTES: &[&[Symbol]] = &[
562            // Cfg attrs are removed after being converted into synthetic attrs and don't need to
563            // be in the parser list.
564            &[sym::cfg],
565            &[sym::cfg_attr],
566        ];
567
568        ATTRIBUTE_PARSERS.accepters.contains_key(path) || SPECIAL_ATTRIBUTES.contains(&path)
569    }
570
571    fn lower_attr_args(&self, args: &ast::AttrArgs, lower_span: impl Fn(Span) -> Span) -> AttrArgs {
572        match args {
573            ast::AttrArgs::Empty => AttrArgs::Empty,
574            ast::AttrArgs::Delimited(args) => AttrArgs::Delimited(args.clone()),
575            // This is an inert key-value attribute - it will never be visible to macros
576            // after it gets lowered to HIR. Therefore, we can extract literals to handle
577            // nonterminals in `#[doc]` (e.g. `#[doc = $e]`).
578            ast::AttrArgs::Eq { eq_span, expr } => {
579                // In valid code the value always ends up as a single literal. Otherwise, a dummy
580                // literal suffices because the error is handled elsewhere.
581                let lit = if let ast::ExprKind::Lit(token_lit) = expr.kind
582                    && let Ok(lit) =
583                        ast::MetaItemLit::from_token_lit(token_lit, lower_span(expr.span))
584                {
585                    lit
586                } else {
587                    let guar = self.dcx().span_delayed_bug(
588                        args.span().unwrap_or(DUMMY_SP),
589                        "expr in place where literal is expected (builtin attr parsing)",
590                    );
591                    ast::MetaItemLit {
592                        symbol: sym::dummy,
593                        suffix: None,
594                        kind: ast::LitKind::Err(guar),
595                        span: DUMMY_SP,
596                    }
597                };
598                AttrArgs::Eq { eq_span: lower_span(*eq_span), expr: lit }
599            }
600        }
601    }
602}