@@ -29,11 +29,10 @@ use rustc_resolve::Resolver;
2929use rustc_session:: code_stats:: VTableSizeInfo ;
3030use rustc_session:: config:: { CrateType , Input , OutFileName , OutputFilenames , OutputType } ;
3131use rustc_session:: cstore:: Untracked ;
32- use rustc_session:: output:: { collect_crate_types, filename_for_input, find_crate_name } ;
32+ use rustc_session:: output:: { collect_crate_types, filename_for_input} ;
3333use rustc_session:: search_paths:: PathKind ;
3434use rustc_session:: { Limit , Session } ;
35- use rustc_span:: symbol:: { sym, Symbol } ;
36- use rustc_span:: FileName ;
35+ use rustc_span:: { sym, FileName , Span , Symbol } ;
3736use rustc_target:: spec:: PanicStrategy ;
3837use rustc_trait_selection:: traits;
3938use tracing:: { info, instrument} ;
@@ -663,8 +662,7 @@ pub(crate) fn create_global_ctxt<'tcx>(
663662
664663 let pre_configured_attrs = rustc_expand:: config:: pre_configure_attrs ( sess, & krate. attrs ) ;
665664
666- // parse `#[crate_name]` even if `--crate-name` was passed, to make sure it matches.
667- let crate_name = find_crate_name ( sess, & pre_configured_attrs) ;
665+ let crate_name = get_crate_name ( sess, & pre_configured_attrs) ;
668666 let crate_types = collect_crate_types ( sess, & pre_configured_attrs) ;
669667 let stable_crate_id = StableCrateId :: new (
670668 crate_name,
@@ -673,7 +671,7 @@ pub(crate) fn create_global_ctxt<'tcx>(
673671 sess. cfg_version ,
674672 ) ;
675673 let outputs = util:: build_output_filenames ( & pre_configured_attrs, sess) ;
676- let dep_graph = setup_dep_graph ( sess) ?;
674+ let dep_graph = setup_dep_graph ( sess, crate_name ) ?;
677675
678676 let cstore =
679677 FreezeLock :: new ( Box :: new ( CStore :: new ( compiler. codegen_backend . metadata_loader ( ) ) ) as _ ) ;
@@ -1047,23 +1045,83 @@ pub(crate) fn start_codegen<'tcx>(
10471045 Ok ( codegen)
10481046}
10491047
1050- fn get_recursion_limit ( krate_attrs : & [ ast:: Attribute ] , sess : & Session ) -> Limit {
1051- if let Some ( attr) = krate_attrs
1052- . iter ( )
1053- . find ( |attr| attr. has_name ( sym:: recursion_limit) && attr. value_str ( ) . is_none ( ) )
1048+ /// Compute and validate the crate name.
1049+ pub fn get_crate_name ( sess : & Session , krate_attrs : & [ ast:: Attribute ] ) -> Symbol {
1050+ // We unconditionally validate all `#![crate_name]`s even if a crate name was
1051+ // set on the command line via `--crate-name` which we prioritize over the
1052+ // crate attributes. We perform the validation here instead of later to ensure
1053+ // it gets run in all code paths requiring the crate name very early on.
1054+ // Namely, print requests (`--print`).
1055+ let attr_crate_name =
1056+ validate_and_find_value_str_builtin_attr ( sym:: crate_name, sess, krate_attrs) ;
1057+
1058+ let validate = |name, span| {
1059+ rustc_session:: output:: validate_crate_name ( sess, name, span) ;
1060+ name
1061+ } ;
1062+
1063+ if let Some ( crate_name) = & sess. opts . crate_name {
1064+ let crate_name = Symbol :: intern ( crate_name) ;
1065+ if let Some ( ( attr_crate_name, span) ) = attr_crate_name
1066+ && attr_crate_name != crate_name
1067+ {
1068+ sess. dcx ( ) . emit_err ( errors:: CrateNameDoesNotMatch {
1069+ span,
1070+ crate_name,
1071+ attr_crate_name,
1072+ } ) ;
1073+ }
1074+ return validate ( crate_name, None ) ;
1075+ }
1076+
1077+ if let Some ( ( crate_name, span) ) = attr_crate_name {
1078+ return validate ( crate_name, Some ( span) ) ;
1079+ }
1080+
1081+ if let Input :: File ( ref path) = sess. io . input
1082+ && let Some ( file_stem) = path. file_stem ( ) . and_then ( |s| s. to_str ( ) )
10541083 {
1055- // This is here mainly to check for using a macro, such as
1056- // #![recursion_limit = foo!()]. That is not supported since that
1057- // would require expanding this while in the middle of expansion,
1058- // which needs to know the limit before expanding. Otherwise,
1059- // validation would normally be caught in AstValidator (via
1060- // `check_builtin_attribute`), but by the time that runs the macro
1061- // is expanded, and it doesn't give an error.
1062- validate_attr:: emit_fatal_malformed_builtin_attribute (
1063- & sess. psess ,
1064- attr,
1065- sym:: recursion_limit,
1066- ) ;
1084+ if file_stem. starts_with ( '-' ) {
1085+ sess. dcx ( ) . emit_err ( errors:: CrateNameInvalid { crate_name : file_stem } ) ;
1086+ } else {
1087+ return validate ( Symbol :: intern ( & file_stem. replace ( '-' , "_" ) ) , None ) ;
1088+ }
10671089 }
1090+
1091+ Symbol :: intern ( "rust_out" )
1092+ }
1093+
1094+ fn get_recursion_limit ( krate_attrs : & [ ast:: Attribute ] , sess : & Session ) -> Limit {
1095+ // We don't permit macro calls inside of the attribute (e.g., #![recursion_limit = `expand!()`])
1096+ // because that would require expanding this while in the middle of expansion, which needs to
1097+ // know the limit before expanding.
1098+ let _ = validate_and_find_value_str_builtin_attr ( sym:: recursion_limit, sess, krate_attrs) ;
10681099 rustc_middle:: middle:: limits:: get_recursion_limit ( krate_attrs, sess)
10691100}
1101+
1102+ /// Validate *all* occurrences of the given "[value-str]" built-in attribute and return the first find.
1103+ ///
1104+ /// This validator is intended for built-in attributes whose value needs to be known very early
1105+ /// during compilation (namely, before macro expansion) and it mainly exists to reject macro calls
1106+ /// inside of the attributes, such as in `#![name = expand!()]`. Normal attribute validation happens
1107+ /// during semantic analysis via [`TyCtxt::check_mod_attrs`] which happens *after* macro expansion
1108+ /// when such macro calls (here: `expand`) have already been expanded and we can no longer check for
1109+ /// their presence.
1110+ ///
1111+ /// [value-str]: ast::Attribute::value_str
1112+ fn validate_and_find_value_str_builtin_attr (
1113+ name : Symbol ,
1114+ sess : & Session ,
1115+ krate_attrs : & [ ast:: Attribute ] ,
1116+ ) -> Option < ( Symbol , Span ) > {
1117+ let mut result = None ;
1118+ // Validate *all* relevant attributes, not just the first occurrence.
1119+ for attr in ast:: attr:: filter_by_name ( krate_attrs, name) {
1120+ let Some ( value) = attr. value_str ( ) else {
1121+ validate_attr:: emit_fatal_malformed_builtin_attribute ( & sess. psess , attr, name)
1122+ } ;
1123+ // Choose the first occurrence as our result.
1124+ result. get_or_insert ( ( value, attr. span ) ) ;
1125+ }
1126+ result
1127+ }
0 commit comments