cargo/core/compiler/build_runner/
compilation_files.rs

1//! See [`CompilationFiles`].
2
3use std::cell::OnceCell;
4use std::collections::HashMap;
5use std::fmt;
6use std::hash::{Hash, Hasher};
7use std::path::{Path, PathBuf};
8use std::sync::Arc;
9
10use tracing::debug;
11
12use super::{BuildContext, BuildRunner, CompileKind, FileFlavor, Layout};
13use crate::core::compiler::{CompileMode, CompileTarget, CrateType, FileType, Unit};
14use crate::core::{Target, TargetKind, Workspace};
15use crate::util::{self, CargoResult, OnceExt, StableHasher};
16
17/// This is a generic version number that can be changed to make
18/// backwards-incompatible changes to any file structures in the output
19/// directory. For example, the fingerprint files or the build-script
20/// output files.
21///
22/// Normally cargo updates ship with rustc updates which will
23/// cause a new hash due to the rustc version changing, but this allows
24/// cargo to be extra careful to deal with different versions of cargo that
25/// use the same rustc version.
26const METADATA_VERSION: u8 = 2;
27
28/// Uniquely identify a [`Unit`] under specific circumstances, see [`Metadata`] for more.
29#[derive(Copy, Clone, Hash, Eq, PartialEq, Ord, PartialOrd)]
30pub struct UnitHash(u64);
31
32impl fmt::Display for UnitHash {
33    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
34        write!(f, "{:016x}", self.0)
35    }
36}
37
38impl fmt::Debug for UnitHash {
39    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
40        write!(f, "UnitHash({:016x})", self.0)
41    }
42}
43
44/// [`Metadata`] tracks several [`UnitHash`]s, including
45/// [`Metadata::unit_id`], [`Metadata::c_metadata`], and [`Metadata::c_extra_filename`].
46///
47/// We use a hash because it is an easy way to guarantee
48/// that all the inputs can be converted to a valid path.
49///
50/// [`Metadata::unit_id`] is used to uniquely identify a unit in the build graph.
51/// This serves as a similar role as [`Metadata::c_extra_filename`] in that it uniquely identifies output
52/// on the filesystem except that its always present.
53///
54/// [`Metadata::c_extra_filename`] is needed for cases like:
55/// - A project may depend on crate `A` and crate `B`, so the package name must be in the file name.
56/// - Similarly a project may depend on two versions of `A`, so the version must be in the file name.
57///
58/// This also acts as the main layer of caching provided by Cargo
59/// so this must include all things that need to be distinguished in different parts of
60/// the same build. This is absolutely required or we override things before
61/// we get chance to use them.
62///
63/// For example, we want to cache `cargo build` and `cargo doc` separately, so that running one
64/// does not invalidate the artifacts for the other. We do this by including [`CompileMode`] in the
65/// hash, thus the artifacts go in different folders and do not override each other.
66/// If we don't add something that we should have, for this reason, we get the
67/// correct output but rebuild more than is needed.
68///
69/// Some things that need to be tracked to ensure the correct output should definitely *not*
70/// go in the `Metadata`. For example, the modification time of a file, should be tracked to make a
71/// rebuild when the file changes. However, it would be wasteful to include in the `Metadata`. The
72/// old artifacts are never going to be needed again. We can save space by just overwriting them.
73/// If we add something that we should not have, for this reason, we get the correct output but take
74/// more space than needed. This makes not including something in `Metadata`
75/// a form of cache invalidation.
76///
77/// Note that the `Fingerprint` is in charge of tracking everything needed to determine if a
78/// rebuild is needed.
79///
80/// [`Metadata::c_metadata`] is used for symbol mangling, because if you have two versions of
81/// the same crate linked together, their symbols need to be differentiated.
82///
83/// You should avoid anything that would interfere with reproducible
84/// builds. For example, *any* absolute path should be avoided. This is one
85/// reason that `RUSTFLAGS` is not in [`Metadata::c_metadata`], because it often has
86/// absolute paths (like `--remap-path-prefix` which is fundamentally used for
87/// reproducible builds and has absolute paths in it). Also, in some cases the
88/// mangled symbols need to be stable between different builds with different
89/// settings. For example, profile-guided optimizations need to swap
90/// `RUSTFLAGS` between runs, but needs to keep the same symbol names.
91#[derive(Copy, Clone, Debug)]
92pub struct Metadata {
93    unit_id: UnitHash,
94    c_metadata: UnitHash,
95    c_extra_filename: Option<UnitHash>,
96}
97
98impl Metadata {
99    /// A hash to identify a given [`Unit`] in the build graph
100    pub fn unit_id(&self) -> UnitHash {
101        self.unit_id
102    }
103
104    /// A hash to add to symbol naming through `-C metadata`
105    pub fn c_metadata(&self) -> UnitHash {
106        self.c_metadata
107    }
108
109    /// A hash to add to file names through `-C extra-filename`
110    pub fn c_extra_filename(&self) -> Option<UnitHash> {
111        self.c_extra_filename
112    }
113}
114
115/// Collection of information about the files emitted by the compiler, and the
116/// output directory structure.
117pub struct CompilationFiles<'a, 'gctx> {
118    /// The target directory layout for the host (and target if it is the same as host).
119    pub(super) host: Layout,
120    /// The target directory layout for the target (if different from then host).
121    pub(super) target: HashMap<CompileTarget, Layout>,
122    /// Additional directory to include a copy of the outputs.
123    export_dir: Option<PathBuf>,
124    /// The root targets requested by the user on the command line (does not
125    /// include dependencies).
126    roots: Vec<Unit>,
127    ws: &'a Workspace<'gctx>,
128    /// Metadata hash to use for each unit.
129    metas: HashMap<Unit, Metadata>,
130    /// For each Unit, a list all files produced.
131    outputs: HashMap<Unit, OnceCell<Arc<Vec<OutputFile>>>>,
132}
133
134/// Info about a single file emitted by the compiler.
135#[derive(Debug)]
136pub struct OutputFile {
137    /// Absolute path to the file that will be produced by the build process.
138    pub path: PathBuf,
139    /// If it should be linked into `target`, and what it should be called
140    /// (e.g., without metadata).
141    pub hardlink: Option<PathBuf>,
142    /// If `--artifact-dir` is specified, the absolute path to the exported file.
143    pub export_path: Option<PathBuf>,
144    /// Type of the file (library / debug symbol / else).
145    pub flavor: FileFlavor,
146}
147
148impl OutputFile {
149    /// Gets the hard link if present; otherwise, returns the path.
150    pub fn bin_dst(&self) -> &PathBuf {
151        match self.hardlink {
152            Some(ref link_dst) => link_dst,
153            None => &self.path,
154        }
155    }
156}
157
158impl<'a, 'gctx: 'a> CompilationFiles<'a, 'gctx> {
159    pub(super) fn new(
160        build_runner: &BuildRunner<'a, 'gctx>,
161        host: Layout,
162        target: HashMap<CompileTarget, Layout>,
163    ) -> CompilationFiles<'a, 'gctx> {
164        let mut metas = HashMap::new();
165        for unit in &build_runner.bcx.roots {
166            metadata_of(unit, build_runner, &mut metas);
167        }
168        let outputs = metas
169            .keys()
170            .cloned()
171            .map(|unit| (unit, OnceCell::new()))
172            .collect();
173        CompilationFiles {
174            ws: build_runner.bcx.ws,
175            host,
176            target,
177            export_dir: build_runner.bcx.build_config.export_dir.clone(),
178            roots: build_runner.bcx.roots.clone(),
179            metas,
180            outputs,
181        }
182    }
183
184    /// Returns the appropriate directory layout for either a plugin or not.
185    pub fn layout(&self, kind: CompileKind) -> &Layout {
186        match kind {
187            CompileKind::Host => &self.host,
188            CompileKind::Target(target) => &self.target[&target],
189        }
190    }
191
192    /// Gets the metadata for the given unit.
193    ///
194    /// See [`Metadata`] and [`fingerprint`] module for more.
195    ///
196    /// [`fingerprint`]: super::super::fingerprint#fingerprints-and-metadata
197    pub fn metadata(&self, unit: &Unit) -> Metadata {
198        self.metas[unit]
199    }
200
201    /// Gets the short hash based only on the `PackageId`.
202    /// Used for the metadata when `c_extra_filename` returns `None`.
203    fn target_short_hash(&self, unit: &Unit) -> String {
204        let hashable = unit.pkg.package_id().stable_hash(self.ws.root());
205        util::short_hash(&(METADATA_VERSION, hashable))
206    }
207
208    /// Returns the directory where the artifacts for the given unit are
209    /// initially created.
210    pub fn out_dir(&self, unit: &Unit) -> PathBuf {
211        // Docscrape units need to have doc/ set as the out_dir so sources for reverse-dependencies
212        // will be put into doc/ and not into deps/ where the *.examples files are stored.
213        if unit.mode.is_doc() || unit.mode.is_doc_scrape() {
214            self.layout(unit.kind)
215                .artifact_dir()
216                .expect("artifact-dir was not locked")
217                .doc()
218                .to_path_buf()
219        } else if unit.mode.is_doc_test() {
220            panic!("doc tests do not have an out dir");
221        } else if unit.target.is_custom_build() {
222            self.build_script_dir(unit)
223        } else if unit.target.is_example() {
224            self.layout(unit.kind).build_dir().examples().to_path_buf()
225        } else if unit.artifact.is_true() {
226            self.artifact_dir(unit)
227        } else {
228            self.deps_dir(unit).to_path_buf()
229        }
230    }
231
232    /// Additional export directory from `--artifact-dir`.
233    pub fn export_dir(&self) -> Option<PathBuf> {
234        self.export_dir.clone()
235    }
236
237    /// Directory name to use for a package in the form `{NAME}/{HASH}`.
238    ///
239    /// Note that some units may share the same directory, so care should be
240    /// taken in those cases!
241    fn pkg_dir(&self, unit: &Unit) -> String {
242        let separator = match self.ws.gctx().cli_unstable().build_dir_new_layout {
243            true => "/",
244            false => "-",
245        };
246        let name = unit.pkg.package_id().name();
247        let meta = self.metas[unit];
248        if let Some(c_extra_filename) = meta.c_extra_filename() {
249            format!("{}{}{}", name, separator, c_extra_filename)
250        } else {
251            format!("{}{}{}", name, separator, self.target_short_hash(unit))
252        }
253    }
254
255    /// Returns the final artifact path for the host (`/…/target/debug`)
256    pub fn host_dest(&self) -> Option<&Path> {
257        self.host.artifact_dir().map(|v| v.dest())
258    }
259
260    /// Returns the root of the build output tree for the host (`/…/build-dir`)
261    pub fn host_build_root(&self) -> &Path {
262        self.host.build_dir().root()
263    }
264
265    /// Returns the host `deps` directory path.
266    pub fn host_deps(&self, unit: &Unit) -> PathBuf {
267        let dir = self.pkg_dir(unit);
268        self.host.build_dir().deps(&dir)
269    }
270
271    /// Returns the directories where Rust crate dependencies are found for the
272    /// specified unit.
273    pub fn deps_dir(&self, unit: &Unit) -> PathBuf {
274        let dir = self.pkg_dir(unit);
275        self.layout(unit.kind).build_dir().deps(&dir)
276    }
277
278    /// Directory where the fingerprint for the given unit should go.
279    pub fn fingerprint_dir(&self, unit: &Unit) -> PathBuf {
280        let dir = self.pkg_dir(unit);
281        self.layout(unit.kind).build_dir().fingerprint(&dir)
282    }
283
284    /// Directory where incremental output for the given unit should go.
285    pub fn incremental_dir(&self, unit: &Unit) -> &Path {
286        self.layout(unit.kind).build_dir().incremental()
287    }
288
289    /// Directory where timing output should go.
290    pub fn timings_dir(&self) -> Option<&Path> {
291        self.host.artifact_dir().map(|v| v.timings())
292    }
293
294    /// Returns the path for a file in the fingerprint directory.
295    ///
296    /// The "prefix" should be something to distinguish the file from other
297    /// files in the fingerprint directory.
298    pub fn fingerprint_file_path(&self, unit: &Unit, prefix: &str) -> PathBuf {
299        // Different targets need to be distinguished in the
300        let kind = unit.target.kind().description();
301        let flavor = if unit.mode.is_any_test() {
302            "test-"
303        } else if unit.mode.is_doc() {
304            "doc-"
305        } else if unit.mode.is_run_custom_build() {
306            "run-"
307        } else {
308            ""
309        };
310        let name = format!("{}{}{}-{}", prefix, flavor, kind, unit.target.name());
311        self.fingerprint_dir(unit).join(name)
312    }
313
314    /// Path where compiler output is cached.
315    pub fn message_cache_path(&self, unit: &Unit) -> PathBuf {
316        self.fingerprint_file_path(unit, "output-")
317    }
318
319    /// Returns the directory where a compiled build script is stored.
320    /// `/path/to/target/{debug,release}/build/PKG-HASH`
321    pub fn build_script_dir(&self, unit: &Unit) -> PathBuf {
322        assert!(unit.target.is_custom_build());
323        assert!(!unit.mode.is_run_custom_build());
324        assert!(self.metas.contains_key(unit));
325        let dir = self.pkg_dir(unit);
326        self.layout(CompileKind::Host)
327            .build_dir()
328            .build_script(&dir)
329    }
330
331    /// Returns the directory for compiled artifacts files.
332    /// `/path/to/target/{debug,release}/deps/artifact/KIND/PKG-HASH`
333    fn artifact_dir(&self, unit: &Unit) -> PathBuf {
334        assert!(self.metas.contains_key(unit));
335        assert!(unit.artifact.is_true());
336        let dir = self.pkg_dir(unit);
337        let kind = match unit.target.kind() {
338            TargetKind::Bin => "bin",
339            TargetKind::Lib(lib_kinds) => match lib_kinds.as_slice() {
340                &[CrateType::Cdylib] => "cdylib",
341                &[CrateType::Staticlib] => "staticlib",
342                invalid => unreachable!(
343                    "BUG: unexpected artifact library type(s): {:?} - these should have been split",
344                    invalid
345                ),
346            },
347            invalid => unreachable!(
348                "BUG: {:?} are not supposed to be used as artifacts",
349                invalid
350            ),
351        };
352        self.layout(unit.kind)
353            .build_dir()
354            .artifact()
355            .join(dir)
356            .join(kind)
357    }
358
359    /// Returns the directory where information about running a build script
360    /// is stored.
361    /// `/path/to/target/{debug,release}/build/PKG-HASH`
362    pub fn build_script_run_dir(&self, unit: &Unit) -> PathBuf {
363        assert!(unit.target.is_custom_build());
364        assert!(unit.mode.is_run_custom_build());
365        let dir = self.pkg_dir(unit);
366        self.layout(unit.kind)
367            .build_dir()
368            .build_script_execution(&dir)
369    }
370
371    /// Returns the "`OUT_DIR`" directory for running a build script.
372    /// `/path/to/target/{debug,release}/build/PKG-HASH/out`
373    pub fn build_script_out_dir(&self, unit: &Unit) -> PathBuf {
374        self.build_script_run_dir(unit).join("out")
375    }
376
377    /// Returns the path to the executable binary for the given bin target.
378    ///
379    /// This should only to be used when a `Unit` is not available.
380    pub fn bin_link_for_target(
381        &self,
382        target: &Target,
383        kind: CompileKind,
384        bcx: &BuildContext<'_, '_>,
385    ) -> CargoResult<Option<PathBuf>> {
386        assert!(target.is_bin());
387        let Some(dest) = self.layout(kind).artifact_dir().map(|v| v.dest()) else {
388            return Ok(None);
389        };
390        let info = bcx.target_data.info(kind);
391        let (file_types, _) = info
392            .rustc_outputs(
393                CompileMode::Build,
394                &TargetKind::Bin,
395                bcx.target_data.short_name(&kind),
396                bcx.gctx,
397            )
398            .expect("target must support `bin`");
399
400        let file_type = file_types
401            .iter()
402            .find(|file_type| file_type.flavor == FileFlavor::Normal)
403            .expect("target must support `bin`");
404
405        Ok(Some(dest.join(file_type.uplift_filename(target))))
406    }
407
408    /// Returns the filenames that the given unit will generate.
409    ///
410    /// Note: It is not guaranteed that all of the files will be generated.
411    pub(super) fn outputs(
412        &self,
413        unit: &Unit,
414        bcx: &BuildContext<'a, 'gctx>,
415    ) -> CargoResult<Arc<Vec<OutputFile>>> {
416        self.outputs[unit]
417            .try_borrow_with(|| self.calc_outputs(unit, bcx))
418            .map(Arc::clone)
419    }
420
421    /// Returns the path where the output for the given unit and `FileType`
422    /// should be uplifted to.
423    ///
424    /// Returns `None` if the unit shouldn't be uplifted (for example, a
425    /// dependent rlib).
426    fn uplift_to(&self, unit: &Unit, file_type: &FileType, from_path: &Path) -> Option<PathBuf> {
427        // Tests, check, doc, etc. should not be uplifted.
428        if unit.mode != CompileMode::Build || file_type.flavor == FileFlavor::Rmeta {
429            return None;
430        }
431
432        // Artifact dependencies are never uplifted.
433        if unit.artifact.is_true() {
434            return None;
435        }
436
437        // - Binaries: The user always wants to see these, even if they are
438        //   implicitly built (for example for integration tests).
439        // - dylibs: This ensures that the dynamic linker pulls in all the
440        //   latest copies (even if the dylib was built from a previous cargo
441        //   build). There are complex reasons for this, see #8139, #6167, #6162.
442        // - Things directly requested from the command-line (the "roots").
443        //   This one is a little questionable for rlibs (see #6131), but is
444        //   historically how Cargo has operated. This is primarily useful to
445        //   give the user access to staticlibs and cdylibs.
446        if !unit.target.is_bin()
447            && !unit.target.is_custom_build()
448            && file_type.crate_type != Some(CrateType::Dylib)
449            && !self.roots.contains(unit)
450        {
451            return None;
452        }
453
454        let filename = file_type.uplift_filename(&unit.target);
455        let uplift_path = if unit.target.is_example() {
456            // Examples live in their own little world.
457            self.layout(unit.kind)
458                .artifact_dir()
459                .expect("artifact-dir was not locked")
460                .examples()
461                .join(filename)
462        } else if unit.target.is_custom_build() {
463            self.build_script_dir(unit).join(filename)
464        } else {
465            self.layout(unit.kind)
466                .artifact_dir()
467                .expect("artifact-dir was not locked")
468                .dest()
469                .join(filename)
470        };
471        if from_path == uplift_path {
472            // This can happen with things like examples that reside in the
473            // same directory, do not have a metadata hash (like on Windows),
474            // and do not have hyphens.
475            return None;
476        }
477        Some(uplift_path)
478    }
479
480    /// Calculates the filenames that the given unit will generate.
481    /// Should use [`CompilationFiles::outputs`] instead
482    /// as it caches the result of this function.
483    fn calc_outputs(
484        &self,
485        unit: &Unit,
486        bcx: &BuildContext<'a, 'gctx>,
487    ) -> CargoResult<Arc<Vec<OutputFile>>> {
488        let ret = match unit.mode {
489            _ if unit.skip_non_compile_time_dep => {
490                // This skips compilations so no outputs
491                vec![]
492            }
493            CompileMode::Doc => {
494                let path = if bcx.build_config.intent.wants_doc_json_output() {
495                    self.out_dir(unit)
496                        .join(format!("{}.json", unit.target.crate_name()))
497                } else {
498                    self.out_dir(unit)
499                        .join(unit.target.crate_name())
500                        .join("index.html")
501                };
502
503                vec![OutputFile {
504                    path,
505                    hardlink: None,
506                    export_path: None,
507                    flavor: FileFlavor::Normal,
508                }]
509            }
510            CompileMode::RunCustomBuild => {
511                // At this time, this code path does not handle build script
512                // outputs.
513                vec![]
514            }
515            CompileMode::Doctest => {
516                // Doctests are built in a temporary directory and then
517                // deleted. There is the `--persist-doctests` unstable flag,
518                // but Cargo does not know about that.
519                vec![]
520            }
521            CompileMode::Docscrape => {
522                // The file name needs to be stable across Cargo sessions.
523                // This originally used unit.buildkey(), but that isn't stable,
524                // so we use metadata instead (prefixed with name for debugging).
525                let file_name = format!(
526                    "{}-{}.examples",
527                    unit.pkg.name(),
528                    self.metadata(unit).unit_id()
529                );
530                let path = self.deps_dir(unit).join(file_name);
531                vec![OutputFile {
532                    path,
533                    hardlink: None,
534                    export_path: None,
535                    flavor: FileFlavor::Normal,
536                }]
537            }
538            CompileMode::Test | CompileMode::Build | CompileMode::Check { .. } => {
539                let mut outputs = self.calc_outputs_rustc(unit, bcx)?;
540                if bcx.build_config.sbom && bcx.gctx.cli_unstable().sbom {
541                    let sbom_files: Vec<_> = outputs
542                        .iter()
543                        .filter(|o| matches!(o.flavor, FileFlavor::Normal | FileFlavor::Linkable))
544                        .map(|output| OutputFile {
545                            path: Self::append_sbom_suffix(&output.path),
546                            hardlink: output.hardlink.as_ref().map(Self::append_sbom_suffix),
547                            export_path: output.export_path.as_ref().map(Self::append_sbom_suffix),
548                            flavor: FileFlavor::Sbom,
549                        })
550                        .collect();
551                    outputs.extend(sbom_files.into_iter());
552                }
553                outputs
554            }
555        };
556        debug!("Target filenames: {:?}", ret);
557
558        Ok(Arc::new(ret))
559    }
560
561    /// Append the SBOM suffix to the file name.
562    fn append_sbom_suffix(link: &PathBuf) -> PathBuf {
563        const SBOM_FILE_EXTENSION: &str = ".cargo-sbom.json";
564        let mut link_buf = link.clone().into_os_string();
565        link_buf.push(SBOM_FILE_EXTENSION);
566        PathBuf::from(link_buf)
567    }
568
569    /// Computes the actual, full pathnames for all the files generated by rustc.
570    ///
571    /// The `OutputFile` also contains the paths where those files should be
572    /// "uplifted" to.
573    fn calc_outputs_rustc(
574        &self,
575        unit: &Unit,
576        bcx: &BuildContext<'a, 'gctx>,
577    ) -> CargoResult<Vec<OutputFile>> {
578        let out_dir = self.out_dir(unit);
579
580        let info = bcx.target_data.info(unit.kind);
581        let triple = bcx.target_data.short_name(&unit.kind);
582        let (file_types, unsupported) =
583            info.rustc_outputs(unit.mode, unit.target.kind(), triple, bcx.gctx)?;
584        if file_types.is_empty() {
585            if !unsupported.is_empty() {
586                let unsupported_strs: Vec<_> = unsupported.iter().map(|ct| ct.as_str()).collect();
587                anyhow::bail!(
588                    "cannot produce {} for `{}` as the target `{}` \
589                     does not support these crate types",
590                    unsupported_strs.join(", "),
591                    unit.pkg,
592                    triple,
593                )
594            }
595            anyhow::bail!(
596                "cannot compile `{}` as the target `{}` does not \
597                 support any of the output crate types",
598                unit.pkg,
599                triple,
600            );
601        }
602
603        // Convert FileType to OutputFile.
604        let mut outputs = Vec::new();
605        for file_type in file_types {
606            let meta = self.metas[unit];
607            let meta_opt = meta.c_extra_filename().map(|h| h.to_string());
608            let path = out_dir.join(file_type.output_filename(&unit.target, meta_opt.as_deref()));
609
610            // If, the `different_binary_name` feature is enabled, the name of the hardlink will
611            // be the name of the binary provided by the user in `Cargo.toml`.
612            let hardlink = self.uplift_to(unit, &file_type, &path);
613            let export_path = if unit.target.is_custom_build() {
614                None
615            } else {
616                self.export_dir.as_ref().and_then(|export_dir| {
617                    hardlink
618                        .as_ref()
619                        .map(|hardlink| export_dir.join(hardlink.file_name().unwrap()))
620                })
621            };
622            outputs.push(OutputFile {
623                path,
624                hardlink,
625                export_path,
626                flavor: file_type.flavor,
627            });
628        }
629        Ok(outputs)
630    }
631}
632
633/// Gets the metadata hash for the given [`Unit`].
634///
635/// When a metadata hash doesn't exist for the given unit,
636/// this calls itself recursively to compute metadata hashes of all its dependencies.
637/// See [`compute_metadata`] for how a single metadata hash is computed.
638fn metadata_of<'a>(
639    unit: &Unit,
640    build_runner: &BuildRunner<'_, '_>,
641    metas: &'a mut HashMap<Unit, Metadata>,
642) -> &'a Metadata {
643    if !metas.contains_key(unit) {
644        let meta = compute_metadata(unit, build_runner, metas);
645        metas.insert(unit.clone(), meta);
646        for dep in build_runner.unit_deps(unit) {
647            metadata_of(&dep.unit, build_runner, metas);
648        }
649    }
650    &metas[unit]
651}
652
653/// Computes the metadata hash for the given [`Unit`].
654fn compute_metadata(
655    unit: &Unit,
656    build_runner: &BuildRunner<'_, '_>,
657    metas: &mut HashMap<Unit, Metadata>,
658) -> Metadata {
659    let bcx = &build_runner.bcx;
660    let deps_metadata = build_runner
661        .unit_deps(unit)
662        .iter()
663        .map(|dep| *metadata_of(&dep.unit, build_runner, metas))
664        .collect::<Vec<_>>();
665    let use_extra_filename = use_extra_filename(bcx, unit);
666
667    let mut shared_hasher = StableHasher::new();
668
669    METADATA_VERSION.hash(&mut shared_hasher);
670
671    let ws_root = if unit.is_std {
672        // SourceId for stdlib crates is an absolute path inside the sysroot.
673        // Pass the sysroot as workspace root so that we hash a relative path.
674        // This avoids the metadata hash changing depending on where the user installed rustc.
675        &bcx.target_data.get_info(unit.kind).unwrap().sysroot
676    } else {
677        bcx.ws.root()
678    };
679
680    // Unique metadata per (name, source, version) triple. This'll allow us
681    // to pull crates from anywhere without worrying about conflicts.
682    unit.pkg
683        .package_id()
684        .stable_hash(ws_root)
685        .hash(&mut shared_hasher);
686
687    // Also mix in enabled features to our metadata. This'll ensure that
688    // when changing feature sets each lib is separately cached.
689    unit.features.hash(&mut shared_hasher);
690
691    // Throw in the profile we're compiling with. This helps caching
692    // `panic=abort` and `panic=unwind` artifacts, additionally with various
693    // settings like debuginfo and whatnot.
694    unit.profile.hash(&mut shared_hasher);
695    unit.mode.hash(&mut shared_hasher);
696    build_runner.lto[unit].hash(&mut shared_hasher);
697
698    // Artifacts compiled for the host should have a different
699    // metadata piece than those compiled for the target, so make sure
700    // we throw in the unit's `kind` as well.  Use `fingerprint_hash`
701    // so that the StableHash doesn't change based on the pathnames
702    // of the custom target JSON spec files.
703    unit.kind.fingerprint_hash().hash(&mut shared_hasher);
704
705    // Finally throw in the target name/kind. This ensures that concurrent
706    // compiles of targets in the same crate don't collide.
707    unit.target.name().hash(&mut shared_hasher);
708    unit.target.kind().hash(&mut shared_hasher);
709
710    hash_rustc_version(bcx, &mut shared_hasher, unit);
711
712    if build_runner.bcx.ws.is_member(&unit.pkg) {
713        // This is primarily here for clippy. This ensures that the clippy
714        // artifacts are separate from the `check` ones.
715        if let Some(path) = &build_runner.bcx.rustc().workspace_wrapper {
716            path.hash(&mut shared_hasher);
717        }
718    }
719
720    // Seed the contents of `__CARGO_DEFAULT_LIB_METADATA` to the hasher if present.
721    // This should be the release channel, to get a different hash for each channel.
722    if let Ok(ref channel) = build_runner
723        .bcx
724        .gctx
725        .get_env("__CARGO_DEFAULT_LIB_METADATA")
726    {
727        channel.hash(&mut shared_hasher);
728    }
729
730    // std units need to be kept separate from user dependencies. std crates
731    // are differentiated in the Unit with `is_std` (for things like
732    // `-Zforce-unstable-if-unmarked`), so they are always built separately.
733    // This isn't strictly necessary for build dependencies which probably
734    // don't need unstable support. A future experiment might be to set
735    // `is_std` to false for build dependencies so that they can be shared
736    // with user dependencies.
737    unit.is_std.hash(&mut shared_hasher);
738
739    // While we don't hash RUSTFLAGS because it may contain absolute paths that
740    // hurts reproducibility, we track whether a unit's RUSTFLAGS is from host
741    // config, so that we can generate a different metadata hash for runtime
742    // and compile-time units.
743    //
744    // HACK: This is a temporary hack for fixing rust-lang/cargo#14253
745    // Need to find a long-term solution to replace this fragile workaround.
746    // See https://github.com/rust-lang/cargo/pull/14432#discussion_r1725065350
747    if unit.kind.is_host() && !bcx.gctx.target_applies_to_host().unwrap_or_default() {
748        let host_info = bcx.target_data.info(CompileKind::Host);
749        let target_configs_are_different = unit.rustflags != host_info.rustflags
750            || unit.rustdocflags != host_info.rustdocflags
751            || bcx
752                .target_data
753                .target_config(CompileKind::Host)
754                .links_overrides
755                != unit.links_overrides;
756        target_configs_are_different.hash(&mut shared_hasher);
757    }
758
759    let mut c_metadata_hasher = shared_hasher.clone();
760    // Mix in the target-metadata of all the dependencies of this target.
761    let mut dep_c_metadata_hashes = deps_metadata
762        .iter()
763        .map(|m| m.c_metadata)
764        .collect::<Vec<_>>();
765    dep_c_metadata_hashes.sort();
766    dep_c_metadata_hashes.hash(&mut c_metadata_hasher);
767
768    let mut c_extra_filename_hasher = shared_hasher.clone();
769    // Mix in the target-metadata of all the dependencies of this target.
770    let mut dep_c_extra_filename_hashes = deps_metadata
771        .iter()
772        .map(|m| m.c_extra_filename)
773        .collect::<Vec<_>>();
774    dep_c_extra_filename_hashes.sort();
775    dep_c_extra_filename_hashes.hash(&mut c_extra_filename_hasher);
776    // Avoid trashing the caches on RUSTFLAGS changing via `c_extra_filename`
777    //
778    // Limited to `c_extra_filename` to help with reproducible build / PGO issues.
779    let default = Vec::new();
780    let extra_args = build_runner.bcx.extra_args_for(unit).unwrap_or(&default);
781    if !has_remap_path_prefix(&extra_args) {
782        extra_args.hash(&mut c_extra_filename_hasher);
783    }
784    if unit.mode.is_doc() || unit.mode.is_doc_scrape() {
785        if !has_remap_path_prefix(&unit.rustdocflags) {
786            unit.rustdocflags.hash(&mut c_extra_filename_hasher);
787        }
788    } else {
789        if !has_remap_path_prefix(&unit.rustflags) {
790            unit.rustflags.hash(&mut c_extra_filename_hasher);
791        }
792    }
793
794    let c_metadata = UnitHash(Hasher::finish(&c_metadata_hasher));
795    let c_extra_filename = UnitHash(Hasher::finish(&c_extra_filename_hasher));
796    let unit_id = c_extra_filename;
797
798    let c_extra_filename = use_extra_filename.then_some(c_extra_filename);
799
800    Metadata {
801        unit_id,
802        c_metadata,
803        c_extra_filename,
804    }
805}
806
807/// HACK: Detect the *potential* presence of `--remap-path-prefix`
808///
809/// As CLI parsing is contextual and dependent on the CLI definition to understand the context, we
810/// can't say for sure whether `--remap-path-prefix` is present, so we guess if anything looks like
811/// it.
812/// If we could, we'd strip it out for hashing.
813/// Instead, we use this to avoid hashing rustflags if it might be present to avoid the risk of taking
814/// a flag that is trying to make things reproducible and making things less reproducible by the
815/// `-Cextra-filename` showing up in the rlib, even with `split-debuginfo`.
816fn has_remap_path_prefix(args: &[String]) -> bool {
817    args.iter()
818        .any(|s| s.starts_with("--remap-path-prefix=") || s == "--remap-path-prefix")
819}
820
821/// Hash the version of rustc being used during the build process.
822fn hash_rustc_version(bcx: &BuildContext<'_, '_>, hasher: &mut StableHasher, unit: &Unit) {
823    let vers = &bcx.rustc().version;
824    if vers.pre.is_empty() || bcx.gctx.cli_unstable().separate_nightlies {
825        // For stable, keep the artifacts separate. This helps if someone is
826        // testing multiple versions, to avoid recompiles. Note though that for
827        // cross-compiled builds the `host:` line of `verbose_version` is
828        // omitted since rustc should produce the same output for each target
829        // regardless of the host.
830        for line in bcx.rustc().verbose_version.lines() {
831            if unit.kind.is_host() || !line.starts_with("host: ") {
832                line.hash(hasher);
833            }
834        }
835        return;
836    }
837    // On "nightly"/"beta"/"dev"/etc, keep each "channel" separate. Don't hash
838    // the date/git information, so that whenever someone updates "nightly",
839    // they won't have a bunch of stale artifacts in the target directory.
840    //
841    // This assumes that the first segment is the important bit ("nightly",
842    // "beta", "dev", etc.). Skip other parts like the `.3` in `-beta.3`.
843    vers.pre.split('.').next().hash(hasher);
844    // Keep "host" since some people switch hosts to implicitly change
845    // targets, (like gnu vs musl or gnu vs msvc). In the future, we may want
846    // to consider hashing `unit.kind.short_name()` instead.
847    if unit.kind.is_host() {
848        bcx.rustc().host.hash(hasher);
849    }
850    // None of the other lines are important. Currently they are:
851    // binary: rustc  <-- or "rustdoc"
852    // commit-hash: 38114ff16e7856f98b2b4be7ab4cd29b38bed59a
853    // commit-date: 2020-03-21
854    // host: x86_64-apple-darwin
855    // release: 1.44.0-nightly
856    // LLVM version: 9.0
857    //
858    // The backend version ("LLVM version") might become more relevant in
859    // the future when cranelift sees more use, and people want to switch
860    // between different backends without recompiling.
861}
862
863/// Returns whether or not this unit should use a hash in the filename to make it unique.
864fn use_extra_filename(bcx: &BuildContext<'_, '_>, unit: &Unit) -> bool {
865    if unit.mode.is_doc_test() || unit.mode.is_doc() {
866        // Doc tests do not have metadata.
867        return false;
868    }
869    if unit.mode.is_any_test() || unit.mode.is_check() {
870        // These always use metadata.
871        return true;
872    }
873    // No metadata in these cases:
874    //
875    // - dylibs:
876    //   - if any dylib names are encoded in executables, so they can't be renamed.
877    //   - TODO: Maybe use `-install-name` on macOS or `-soname` on other UNIX systems
878    //     to specify the dylib name to be used by the linker instead of the filename.
879    // - Windows MSVC executables: The path to the PDB is embedded in the
880    //   executable, and we don't want the PDB path to include the hash in it.
881    // - wasm32-unknown-emscripten executables: When using emscripten, the path to the
882    //   .wasm file is embedded in the .js file, so we don't want the hash in there.
883    //
884    // This is only done for local packages, as we don't expect to export
885    // dependencies.
886    //
887    // The __CARGO_DEFAULT_LIB_METADATA env var is used to override this to
888    // force metadata in the hash. This is only used for building libstd. For
889    // example, if libstd is placed in a common location, we don't want a file
890    // named /usr/lib/libstd.so which could conflict with other rustc
891    // installs. In addition it prevents accidentally loading a libstd of a
892    // different compiler at runtime.
893    // See https://github.com/rust-lang/cargo/issues/3005
894    let short_name = bcx.target_data.short_name(&unit.kind);
895    if (unit.target.is_dylib()
896        || unit.target.is_cdylib()
897        || (unit.target.is_executable() && short_name == "wasm32-unknown-emscripten")
898        || (unit.target.is_executable() && short_name.contains("msvc")))
899        && unit.pkg.package_id().source_id().is_path()
900        && bcx.gctx.get_env("__CARGO_DEFAULT_LIB_METADATA").is_err()
901    {
902        return false;
903    }
904    true
905}