Skip to main content

cargo/compiler/fingerprint/
mod.rs

1//! Tracks changes to determine if something needs to be recompiled.
2//!
3//! This module implements change-tracking so that Cargo can know whether or
4//! not something needs to be recompiled. A Cargo [`Unit`] can be either "dirty"
5//! (needs to be recompiled) or "fresh" (it does not need to be recompiled).
6//!
7//! ## Mechanisms affecting freshness
8//!
9//! There are several mechanisms that influence a Unit's freshness:
10//!
11//! - The [`Fingerprint`] is a hash, saved to the filesystem in the
12//!   `.fingerprint` directory, that tracks information about the Unit. If the
13//!   fingerprint is missing (such as the first time the unit is being
14//!   compiled), then the unit is dirty. If any of the fingerprint fields
15//!   change (like the name of the source file), then the Unit is considered
16//!   dirty.
17//!
18//!   The `Fingerprint` also tracks the fingerprints of all its dependencies,
19//!   so a change in a dependency will propagate the "dirty" status up.
20//!
21//! - Filesystem mtime tracking is also used to check if a unit is dirty.
22//!   See the section below on "Mtime comparison" for more details. There
23//!   are essentially two parts to mtime tracking:
24//!
25//!   1. The mtime of a Unit's output files is compared to the mtime of all
26//!      its dependencies' output file mtimes (see
27//!      [`check_filesystem`]). If any output is missing, or is
28//!      older than a dependency's output, then the unit is dirty.
29//!   2. The mtime of a Unit's source files is compared to the mtime of its
30//!      dep-info file in the fingerprint directory (see [`find_stale_file`]).
31//!      The dep-info file is used as an anchor to know when the last build of
32//!      the unit was done. See the "dep-info files" section below for more
33//!      details. If any input files are missing, or are newer than the
34//!      dep-info, then the unit is dirty.
35//!
36//!  - Alternatively if you're using the unstable feature `checksum-freshness`
37//!    mtimes are ignored entirely in favor of comparing first the file size, and
38//!    then the checksum with a known prior value emitted by rustc. Only nightly
39//!    rustc will emit the needed metadata at the time of writing. This is dependent
40//!    on the unstable feature `-Z checksum-hash-algorithm`.
41//!
42//! Note: Fingerprinting is not a perfect solution. Filesystem mtime tracking
43//! is notoriously imprecise and problematic. Only a small part of the
44//! environment is captured. This is a balance of performance, simplicity, and
45//! completeness. Sandboxing, hashing file contents, tracking every file
46//! access, environment variable, and network operation would ensure more
47//! reliable and reproducible builds at the cost of being complex, slow, and
48//! platform-dependent.
49//!
50//! ## Fingerprints and [`UnitHash`]s
51//!
52//! [`Metadata`] tracks several [`UnitHash`]s, including
53//! [`Metadata::unit_id`], [`Metadata::c_metadata`], and [`Metadata::c_extra_filename`].
54//! See its documentation for more details.
55//!
56//! NOTE: Not all output files are isolated via filename hashes (like dylibs).
57//! The fingerprint directory uses a hash, but sometimes units share the same
58//! fingerprint directory (when they don't have Metadata) so care should be
59//! taken to handle this!
60//!
61//! Fingerprints and [`UnitHash`]s are similar, and track some of the same things.
62//! [`UnitHash`]s contains information that is required to keep Units separate.
63//! The Fingerprint includes additional information that should cause a
64//! recompile, but it is desired to reuse the same filenames. A comparison
65//! of what is tracked:
66//!
67//! Value                                      | Fingerprint | `Metadata::unit_id` [^8] | `Metadata::c_metadata`
68//! -------------------------------------------|-------------|--------------------------|-----------------------
69//! rustc                                      | ✓           | ✓                        | ✓
70//! [`Profile`]                                | ✓           | ✓                        | ✓
71//! `cargo rustc` extra args                   | ✓           | ✓[^7]                    |
72//! [`CompileMode`]                            | ✓           | ✓                        | ✓
73//! Target Name                                | ✓           | ✓                        | ✓
74//! `TargetKind` (bin/lib/etc.)                | ✓           | ✓                        | ✓
75//! Enabled Features                           | ✓           | ✓                        | ✓
76//! Declared Features                          | ✓           |                          |
77//! Immediate dependency’s hashes              | ✓[^1]       | ✓                        | ✓
78//! [`CompileKind`] (host/target)              | ✓           | ✓                        | ✓
79//! `__CARGO_DEFAULT_LIB_METADATA`[^4]         |             | ✓                        | ✓
80//! `package_id`                               |             | ✓                        | ✓
81//! Target src path relative to ws             | ✓           |                          |
82//! Target flags (test/bench/for_host/edition) | ✓           |                          |
83//! -C incremental=… flag                      | ✓           |                          |
84//! mtime of sources                           | ✓[^3]       |                          |
85//! RUSTFLAGS/RUSTDOCFLAGS                     | ✓           | ✓[^7]                    |
86//! [`Lto`] flags                              | ✓           | ✓                        | ✓
87//! config settings[^5]                        | ✓           |                          |
88//! `is_std`                                   |             | ✓                        | ✓
89//! `[lints]` table[^6]                        | ✓           |                          |
90//! `[lints.rust.unexpected_cfgs.check-cfg]`   | ✓           |                          |
91//! `--extern priv:`                           | ✓           |                          |
92//!
93//! [^1]: Bin dependencies are not included.
94//!
95//! [^3]: See below for details on mtime tracking.
96//!
97//! [^4]: `__CARGO_DEFAULT_LIB_METADATA` is set by rustbuild to embed the
98//!        release channel (bootstrap/stable/beta/nightly) in libstd.
99//!
100//! [^5]: Config settings that are not otherwise captured anywhere else.
101//!       Currently, this is only `doc.extern-map`.
102//!
103//! [^6]: Via [`Manifest::lint_rustflags`][crate::workspace::Manifest::lint_rustflags]
104//!
105//! [^7]: extra-flags and RUSTFLAGS are conditionally excluded when `--remap-path-prefix` is
106//!       present to avoid breaking build reproducibility while we wait for trim-paths
107//!
108//! [^8]: including `-Cextra-filename`
109//!
110//! When deciding what should go in the Metadata vs the Fingerprint, consider
111//! that some files (like dylibs) do not have a hash in their filename. Thus,
112//! if a value changes, only the fingerprint will detect the change (consider,
113//! for example, swapping between different features). Fields that are only in
114//! Metadata generally aren't relevant to the fingerprint because they
115//! fundamentally change the output (like target vs host changes the directory
116//! where it is emitted).
117//!
118//! ## Fingerprint files
119//!
120//! Fingerprint information is stored in the
121//! `target/{debug,release}/.fingerprint/` directory. Each Unit is stored in a
122//! separate directory. Each Unit directory contains:
123//!
124//! - A file with a 16 hex-digit hash. This is the Fingerprint hash, used for
125//!   quick loading and comparison.
126//! - A `.json` file that contains details about the Fingerprint. This is only
127//!   used to log details about *why* a fingerprint is considered dirty.
128//!   `CARGO_LOG=cargo::compiler::fingerprint=trace cargo build` can be
129//!   used to display this log information.
130//! - A "dep-info" file which is a translation of rustc's `*.d` dep-info files
131//!   to a Cargo-specific format that tweaks file names and is optimized for
132//!   reading quickly.
133//! - An `invoked.timestamp` file whose filesystem mtime is updated every time
134//!   the Unit is built. This is used for capturing the time when the build
135//!   starts, to detect if files are changed in the middle of the build. See
136//!   below for more details.
137//!
138//! Note that some units are a little different. A Unit for *running* a build
139//! script or for `rustdoc` does not have a dep-info file (it's not
140//! applicable). Build script `invoked.timestamp` files are in the build
141//! output directory.
142//!
143//! ## Fingerprint calculation
144//!
145//! After the list of Units has been calculated, the Units are added to the
146//! [`JobQueue`]. As each one is added, the fingerprint is calculated, and the
147//! dirty/fresh status is recorded. A closure is used to update the fingerprint
148//! on-disk when the Unit successfully finishes. The closure will recompute the
149//! Fingerprint based on the updated information. If the Unit fails to compile,
150//! the fingerprint is not updated.
151//!
152//! Fingerprints are cached in the [`BuildRunner`]. This makes computing
153//! Fingerprints faster, but also is necessary for properly updating
154//! dependency information. Since a Fingerprint includes the Fingerprints of
155//! all dependencies, when it is updated, by using `Arc` clones, it
156//! automatically picks up the updates to its dependencies.
157//!
158//! ### dep-info files
159//!
160//! Cargo has several kinds of "dep info" files:
161//!
162//! * dep-info files generated by `rustc`.
163//! * Fingerprint dep-info files translated from the first one.
164//! * dep-info for external build system integration.
165//! * Unstable `-Zbinary-dep-depinfo`.
166//!
167//! #### `rustc` dep-info files
168//!
169//! Cargo passes the `--emit=dep-info` flag to `rustc` so that `rustc` will
170//! generate a "dep info" file (with the `.d` extension). This is a
171//! Makefile-like syntax that includes all of the source files used to build
172//! the crate. This file is used by Cargo to know which files to check to see
173//! if the crate will need to be rebuilt. Example:
174//!
175//! ```makefile
176//! /path/to/target/debug/deps/cargo-b6219d178925203d: src/bin/main.rs src/bin/cargo/cli.rs # … etc.
177//! ```
178//!
179//! #### Fingerprint dep-info files
180//!
181//! After `rustc` exits successfully, Cargo will read the first kind of dep
182//! info file and translate it into a binary format that is stored in the
183//! fingerprint directory ([`translate_dep_info`]).
184//!
185//! These are used to quickly scan for any changed files. The mtime of the
186//! fingerprint dep-info file itself is used as the reference for comparing the
187//! source files to determine if any of the source files have been modified
188//! (see [below](#mtime-comparison) for more detail).
189//!
190//! Note that Cargo parses the special `# env-var:...` comments in dep-info
191//! files to learn about environment variables that the rustc compile depends on.
192//! Cargo then later uses this to trigger a recompile if a referenced env var
193//! changes (even if the source didn't change).
194//! This also includes env vars generated from Cargo metadata like `CARGO_PKG_DESCRIPTION`.
195//! (See [`crate::workspace::manifest::ManifestMetadata`]
196//!
197//! #### dep-info files for build system integration.
198//!
199//! There is also a third dep-info file. Cargo will extend the file created by
200//! rustc with some additional information and saves this into the output
201//! directory. This is intended for build system integration. See the
202//! [`output_depinfo`] function for more detail.
203//!
204//! #### -Zbinary-dep-depinfo
205//!
206//! `rustc` has an experimental flag `-Zbinary-dep-depinfo`. This causes
207//! `rustc` to include binary files (like rlibs) in the dep-info file. This is
208//! primarily to support rustc development, so that Cargo can check the
209//! implicit dependency to the standard library (which lives in the sysroot).
210//! We want Cargo to recompile whenever the standard library rlib/dylibs
211//! change, and this is a generic mechanism to make that work.
212//!
213//! ### Mtime comparison
214//!
215//! The use of modification timestamps is the most common way a unit will be
216//! determined to be dirty or fresh between builds. There are many subtle
217//! issues and edge cases with mtime comparisons. This gives a high-level
218//! overview, but you'll need to read the code for the gritty details. Mtime
219//! handling is different for different unit kinds. The different styles are
220//! driven by the [`Fingerprint::local`] field, which is set based on the unit
221//! kind.
222//!
223//! The status of whether or not the mtime is "stale" or "up-to-date" is
224//! stored in [`Fingerprint::fs_status`].
225//!
226//! All units will compare the mtime of its newest output file with the mtimes
227//! of the outputs of all its dependencies. If any output file is missing,
228//! then the unit is stale. If any dependency is newer, the unit is stale.
229//!
230//! #### Normal package mtime handling
231//!
232//! [`LocalFingerprint::CheckDepInfo`] is used for checking the mtime of
233//! packages. It compares the mtime of the input files (the source files) to
234//! the mtime of the dep-info file (which is written last after a build is
235//! finished). If the dep-info is missing, the unit is stale (it has never
236//! been built). The list of input files comes from the dep-info file. See the
237//! section above for details on dep-info files.
238//!
239//! Also note that although registry and git packages use [`CheckDepInfo`], none
240//! of their source files are included in the dep-info (see
241//! [`translate_dep_info`]), so for those kinds no mtime checking is done
242//! (unless `-Zbinary-dep-depinfo` is used). Repository and git packages are
243//! static, so there is no need to check anything.
244//!
245//! When a build is complete, the mtime of the dep-info file in the
246//! fingerprint directory is modified to rewind it to the time when the build
247//! started. This is done by creating an `invoked.timestamp` file when the
248//! build starts to capture the start time. The mtime is rewound to the start
249//! to handle the case where the user modifies a source file while a build is
250//! running. Cargo can't know whether or not the file was included in the
251//! build, so it takes a conservative approach of assuming the file was *not*
252//! included, and it should be rebuilt during the next build.
253//!
254//! #### Rustdoc mtime handling
255//!
256//! Rustdoc does not emit a dep-info file, so Cargo currently has a relatively
257//! simple system for detecting rebuilds. [`LocalFingerprint::Precalculated`] is
258//! used for rustdoc units. For registry packages, this is the package
259//! version. For git packages, it is the git hash. For path packages, it is
260//! a string of the mtime of the newest file in the package.
261//!
262//! There are some known bugs with how this works, so it should be improved at
263//! some point.
264//!
265//! #### Build script mtime handling
266//!
267//! Build script mtime handling runs in different modes. There is the "old
268//! style" where the build script does not emit any `rerun-if` directives. In
269//! this mode, Cargo will use [`LocalFingerprint::Precalculated`]. See the
270//! "rustdoc" section above how it works.
271//!
272//! In the new-style, each `rerun-if` directive is translated to the
273//! corresponding [`LocalFingerprint`] variant. The [`RerunIfChanged`] variant
274//! compares the mtime of the given filenames against the mtime of the
275//! "output" file.
276//!
277//! Similar to normal units, the build script "output" file mtime is rewound
278//! to the time just before the build script is executed to handle mid-build
279//! modifications.
280//!
281//! ## Considerations for inclusion in a fingerprint
282//!
283//! Over time we've realized a few items which historically were included in
284//! fingerprint hashings should not actually be included. Examples are:
285//!
286//! * Modification time values. We strive to never include a modification time
287//!   inside a `Fingerprint` to get hashed into an actual value. While
288//!   theoretically fine to do, in practice this causes issues with common
289//!   applications like Docker. Docker, after a layer is built, will zero out
290//!   the nanosecond part of all filesystem modification times. This means that
291//!   the actual modification time is different for all build artifacts, which
292//!   if we tracked the actual values of modification times would cause
293//!   unnecessary recompiles. To fix this we instead only track paths which are
294//!   relevant. These paths are checked dynamically to see if they're up to
295//!   date, and the modification time doesn't make its way into the fingerprint
296//!   hash.
297//!
298//! * Absolute path names. We strive to maintain a property where if you rename
299//!   a project directory Cargo will continue to preserve all build artifacts
300//!   and reuse the cache. This means that we can't ever hash an absolute path
301//!   name. Instead we always hash relative path names and the "root" is passed
302//!   in at runtime dynamically. Some of this is best effort, but the general
303//!   idea is that we assume all accesses within a crate stay within that
304//!   crate.
305//!
306//! These are pretty tricky to test for unfortunately, but we should have a good
307//! test suite nowadays and lord knows Cargo gets enough testing in the wild!
308//!
309//! ## Build scripts
310//!
311//! The *running* of a build script ([`CompileMode::RunCustomBuild`]) is treated
312//! significantly different than all other Unit kinds. It has its own function
313//! for calculating the Fingerprint ([`calculate_run_custom_build`]) and has some
314//! unique considerations. It does not track the same information as a normal
315//! Unit. The information tracked depends on the `rerun-if-changed` and
316//! `rerun-if-env-changed` statements produced by the build script. If the
317//! script does not emit either of these statements, the Fingerprint runs in
318//! "old style" mode where an mtime change of *any* file in the package will
319//! cause the build script to be re-run. Otherwise, the fingerprint *only*
320//! tracks the individual "rerun-if" items listed by the build script.
321//!
322//! The "rerun-if" statements from a *previous* build are stored in the build
323//! output directory in a file called `output`. Cargo parses this file when
324//! the Unit for that build script is prepared for the [`JobQueue`]. The
325//! Fingerprint code can then use that information to compute the Fingerprint
326//! and compare against the old fingerprint hash.
327//!
328//! Care must be taken with build script Fingerprints because the
329//! [`Fingerprint::local`] value may be changed after the build script runs
330//! (such as if the build script adds or removes "rerun-if" items).
331//!
332//! Another complication is if a build script is overridden. In that case, the
333//! fingerprint is the hash of the output of the override.
334//!
335//! ## Special considerations
336//!
337//! Registry dependencies do not track the mtime of files. This is because
338//! registry dependencies are not expected to change (if a new version is
339//! used, the Package ID will change, causing a rebuild). Cargo currently
340//! partially works with Docker caching. When a Docker image is built, it has
341//! normal mtime information. However, when a step is cached, the nanosecond
342//! portions of all files is zeroed out. Currently this works, but care must
343//! be taken for situations like these.
344//!
345//! HFS on macOS only supports 1 second timestamps. This causes a significant
346//! number of problems, particularly with Cargo's testsuite which does rapid
347//! builds in succession. Other filesystems have various degrees of
348//! resolution.
349//!
350//! Various weird filesystems (such as network filesystems) also can cause
351//! complications. Network filesystems may track the time on the server
352//! (except when the time is set manually such as with
353//! `filetime::set_file_times`). Not all filesystems support modifying the
354//! mtime.
355//!
356//! See the [`A-rebuild-detection`] label on the issue tracker for more.
357//!
358//! [`check_filesystem`]: Fingerprint::check_filesystem
359//! [`Metadata`]: crate::compiler::Metadata
360//! [`Metadata::unit_id`]: crate::compiler::Metadata::unit_id
361//! [`Metadata::c_metadata`]: crate::compiler::Metadata::c_metadata
362//! [`Metadata::c_extra_filename`]: crate::compiler::Metadata::c_extra_filename
363//! [`UnitHash`]: crate::compiler::UnitHash
364//! [`Profile`]: crate::workspace::profiles::Profile
365//! [`CompileMode`]: crate::compiler::CompileMode
366//! [`Lto`]: crate::compiler::Lto
367//! [`CompileKind`]: crate::compiler::CompileKind
368//! [`JobQueue`]: super::job_queue::JobQueue
369//! [`output_depinfo`]: super::output_depinfo()
370//! [`CheckDepInfo`]: LocalFingerprint::CheckDepInfo
371//! [`RerunIfChanged`]: LocalFingerprint::RerunIfChanged
372//! [`CompileMode::RunCustomBuild`]: crate::compiler::CompileMode::RunCustomBuild
373//! [`A-rebuild-detection`]: https://github.com/rust-lang/cargo/issues?q=is%3Aissue+is%3Aopen+label%3AA-rebuild-detection
374
375mod dep_info;
376mod dirty_reason;
377mod rustdoc;
378
379use crate::util::data_structures::HashMap;
380use std::collections::hash_map::Entry;
381use std::env;
382use std::ffi::OsString;
383use std::fs;
384use std::fs::File;
385use std::hash::{self, Hash, Hasher};
386use std::io::{self};
387use std::ops::Not;
388use std::path::{Path, PathBuf};
389use std::sync::{Arc, Mutex};
390use std::time::SystemTime;
391
392use anyhow::Context as _;
393use anyhow::format_err;
394use cargo_util::paths;
395use filetime::FileTime;
396use serde::de;
397use serde::ser;
398use serde::{Deserialize, Serialize};
399use tracing::{debug, info};
400
401use crate::compiler::unit_graph::UnitDep;
402use crate::util;
403use crate::util::errors::CargoResult;
404use crate::util::interning::InternedString;
405use crate::util::log_message::LogMessage;
406use crate::util::{StableHasher, internal, path_args};
407use crate::workspace::Package;
408use crate::{CARGO_ENV, GlobalContext};
409
410use super::BuildContext;
411use super::BuildRunner;
412use super::FileFlavor;
413use super::Job;
414use super::Unit;
415use super::UnitIndex;
416use super::Work;
417use super::custom_build::BuildDeps;
418
419pub use self::dep_info::Checksum;
420pub use self::dep_info::parse_dep_info;
421pub use self::dep_info::parse_rustc_dep_info;
422pub use self::dep_info::translate_dep_info;
423pub use self::dirty_reason::DirtyReason;
424pub use self::rustdoc::RustdocFingerprint;
425
426/// Result of comparing fingerprints between the current and previous builds.
427enum FingerprintComparison {
428    /// The unit does not need rebuilding.
429    Fresh,
430    /// The unit needs rebuilding.
431    Dirty {
432        /// The reason why the unit is dirty.
433        reason: DirtyReason,
434    },
435}
436
437/// Determines if a [`Unit`] is up-to-date, and if not prepares necessary work to
438/// update the persisted fingerprint.
439///
440/// This function will inspect `Unit`, calculate a fingerprint for it, and then
441/// return an appropriate [`Job`] to run. The returned `Job` will be a noop if
442/// `unit` is considered "fresh", or if it was previously built and cached.
443/// Otherwise the `Job` returned will write out the true fingerprint to the
444/// filesystem, to be executed after the unit's work has completed.
445///
446/// The `force` flag is a way to force the `Job` to be "dirty", or always
447/// update the fingerprint. **Beware using this flag** because it does not
448/// transitively propagate throughout the dependency graph, it only forces this
449/// one unit which is very unlikely to be what you want unless you're
450/// exclusively talking about top-level units.
451#[tracing::instrument(
452    skip(build_runner, unit),
453    fields(package_id = %unit.pkg.package_id(), target = unit.target.name())
454)]
455pub fn prepare_target(
456    build_runner: &mut BuildRunner<'_, '_>,
457    unit: &Unit,
458    force: bool,
459) -> CargoResult<Job> {
460    let bcx = build_runner.bcx;
461    let loc = build_runner.files().fingerprint_file_path(unit, "");
462
463    debug!("fingerprint at: {}", loc.display());
464
465    // Figure out if this unit is up to date. After calculating the fingerprint
466    // compare it to an old version, if any, and attempt to print diagnostic
467    // information about failed comparisons to aid in debugging.
468    let fingerprint = calculate(build_runner, unit)?;
469    let mtime_on_use = build_runner.bcx.gctx.cli_unstable().mtime_on_use;
470    let dirty_reason = match compare_old_fingerprint(unit, &loc, &*fingerprint, mtime_on_use, force)
471    {
472        FingerprintComparison::Fresh => None,
473        FingerprintComparison::Dirty { reason } => Some(reason),
474    };
475
476    if let Some(logger) = bcx.logger {
477        let index = bcx.unit_to_index[unit];
478        let mut cause = None;
479        let status = match dirty_reason.as_ref() {
480            Some(reason) if reason.is_fresh_build() => util::log_message::FingerprintStatus::New,
481            Some(reason) => {
482                cause = Some(reason.clone());
483                util::log_message::FingerprintStatus::Dirty
484            }
485            None => util::log_message::FingerprintStatus::Fresh,
486        };
487        logger.log(LogMessage::UnitFingerprint {
488            index,
489            status,
490            cause,
491        });
492    }
493
494    let Some(dirty_reason) = dirty_reason else {
495        return Ok(Job::new_fresh());
496    };
497
498    // We're going to rebuild, so ensure the source of the crate passes all
499    // verification checks before we build it.
500    //
501    // The `Source::verify` method is intended to allow sources to execute
502    // pre-build checks to ensure that the relevant source code is all
503    // up-to-date and as expected. This is currently used primarily for
504    // directory sources which will use this hook to perform an integrity check
505    // on all files in the source to ensure they haven't changed. If they have
506    // changed then an error is issued.
507    let source_id = unit.pkg.package_id().source_id();
508    let sources = bcx.packages.sources();
509    let source = sources
510        .get(source_id)
511        .ok_or_else(|| internal("missing package source"))?;
512    source.verify(unit.pkg.package_id())?;
513
514    // Clear out the old fingerprint file if it exists. This protects when
515    // compilation is interrupted leaving a corrupt file. For example, a
516    // project with a lib.rs and integration test (two units):
517    //
518    // 1. Build the library and integration test.
519    // 2. Make a change to lib.rs (NOT the integration test).
520    // 3. Build the integration test, hit Ctrl-C while linking. With gcc, this
521    //    will leave behind an incomplete executable (zero size, or partially
522    //    written). NOTE: The library builds successfully, it is the linking
523    //    of the integration test that we are interrupting.
524    // 4. Build the integration test again.
525    //
526    // Without the following line, then step 3 will leave a valid fingerprint
527    // on the disk. Then step 4 will think the integration test is "fresh"
528    // because:
529    //
530    // - There is a valid fingerprint hash on disk (written in step 1).
531    // - The mtime of the output file (the corrupt integration executable
532    //   written in step 3) is newer than all of its dependencies.
533    // - The mtime of the integration test fingerprint dep-info file (written
534    //   in step 1) is newer than the integration test's source files, because
535    //   we haven't modified any of its source files.
536    //
537    // But the executable is corrupt and needs to be rebuilt. Clearing the
538    // fingerprint at step 3 ensures that Cargo never mistakes a partially
539    // written output as up-to-date.
540    if loc.exists() {
541        // Truncate instead of delete so that compare_old_fingerprint will
542        // still log the reason for the fingerprint failure instead of just
543        // reporting "failed to read fingerprint" during the next build if
544        // this build fails.
545        paths::write(&loc, b"")?;
546    }
547
548    let write_fingerprint = if unit.mode.is_run_custom_build() {
549        // For build scripts the `local` field of the fingerprint may change
550        // while we're executing it. For example it could be in the legacy
551        // "consider everything a dependency mode" and then we switch to "deps
552        // are explicitly specified" mode.
553        //
554        // To handle this movement we need to regenerate the `local` field of a
555        // build script's fingerprint after it's executed. We do this by
556        // using the `build_script_local_fingerprints` function which returns a
557        // thunk we can invoke on a foreign thread to calculate this.
558        let build_script_outputs = Arc::clone(&build_runner.build_script_outputs);
559        let metadata = build_runner.get_run_build_script_metadata(unit);
560        let (gen_local, _overridden) = build_script_local_fingerprints(build_runner, unit)?;
561        let output_path = build_runner.build_explicit_deps[unit]
562            .build_script_output
563            .clone();
564        Work::new(move |_| {
565            let outputs = build_script_outputs.lock().unwrap();
566            let output = outputs
567                .get(metadata)
568                .expect("output must exist after running");
569            let deps = BuildDeps::new(&output_path, Some(output));
570
571            // FIXME: it's basically buggy that we pass `None` to `call_box`
572            // here. See documentation on `build_script_local_fingerprints`
573            // below for more information. Despite this just try to proceed and
574            // hobble along if it happens to return `Some`.
575            if let Some(new_local) = (gen_local)(&deps, None)? {
576                *fingerprint.local.lock().unwrap() = new_local;
577            }
578
579            write_fingerprint(&loc, &fingerprint)
580        })
581    } else {
582        Work::new(move |_| write_fingerprint(&loc, &fingerprint))
583    };
584
585    Ok(Job::new_dirty(write_fingerprint, dirty_reason))
586}
587
588/// Dependency edge information for fingerprints. This is generated for each
589/// dependency and is stored in a [`Fingerprint`].
590#[derive(Clone)]
591struct DepFingerprint {
592    /// The hash of the package id that this dependency points to
593    pkg_id: u64,
594    /// The crate name we're using for this dependency, which if we change we'll
595    /// need to recompile!
596    name: InternedString,
597    /// Whether or not this dependency is flagged as a public dependency or not.
598    public: bool,
599    /// Whether or not this dependency is an rmeta dependency or a "full"
600    /// dependency. In the case of an rmeta dependency our dependency edge only
601    /// actually requires the rmeta from what we depend on, so when checking
602    /// mtime information all files other than the rmeta can be ignored.
603    only_requires_rmeta: bool,
604    /// The dependency's fingerprint we recursively point to, containing all the
605    /// other hash information we'd otherwise need.
606    fingerprint: Arc<Fingerprint>,
607}
608
609/// A fingerprint can be considered to be a "short string" representing the
610/// state of a world for a package.
611///
612/// If a fingerprint ever changes, then the package itself needs to be
613/// recompiled. Inputs to the fingerprint include source code modifications,
614/// compiler flags, compiler version, etc. This structure is not simply a
615/// `String` due to the fact that some fingerprints cannot be calculated lazily.
616///
617/// Path sources, for example, use the mtime of the corresponding dep-info file
618/// as a fingerprint (all source files must be modified *before* this mtime).
619/// This dep-info file is not generated, however, until after the crate is
620/// compiled. As a result, this structure can be thought of as a fingerprint
621/// to-be. The actual value can be calculated via [`hash_u64()`], but the operation
622/// may fail as some files may not have been generated.
623///
624/// Note that dependencies are taken into account for fingerprints because rustc
625/// requires that whenever an upstream crate is recompiled that all downstream
626/// dependents are also recompiled. This is typically tracked through
627/// [`DependencyQueue`], but it also needs to be retained here because Cargo can
628/// be interrupted while executing, losing the state of the [`DependencyQueue`]
629/// graph.
630///
631/// [`hash_u64()`]: crate::compiler::fingerprint::Fingerprint::hash_u64
632/// [`DependencyQueue`]: crate::util::DependencyQueue
633#[derive(Serialize, Deserialize)]
634pub struct Fingerprint {
635    /// Hash of the version of `rustc` used.
636    rustc: u64,
637    /// Sorted list of cfg features enabled.
638    features: String,
639    /// Sorted list of all the declared cfg features.
640    declared_features: String,
641    /// Hash of the `Target` struct, including the target name,
642    /// package-relative source path, edition, etc.
643    target: u64,
644    /// Hash of the [`Profile`], [`CompileMode`], and any extra flags passed via
645    /// `cargo rustc` or `cargo rustdoc`.
646    ///
647    /// [`Profile`]: crate::workspace::profiles::Profile
648    /// [`CompileMode`]: crate::compiler::CompileMode
649    profile: u64,
650    /// Hash of the path to the base source file. This is relative to the
651    /// workspace root for path members, or absolute for other sources.
652    path: u64,
653    /// Fingerprints of dependencies.
654    deps: Vec<DepFingerprint>,
655    /// Information about the inputs that affect this Unit (such as source
656    /// file mtimes or build script environment variables).
657    local: Mutex<Vec<LocalFingerprint>>,
658    /// Cached hash of the [`Fingerprint`] struct. Used to improve performance
659    /// for hashing.
660    #[serde(skip)]
661    memoized_hash: Mutex<Option<u64>>,
662    /// RUSTFLAGS/RUSTDOCFLAGS environment variable value (or config value).
663    rustflags: Vec<String>,
664    /// Hash of various config settings that change how things are compiled.
665    config: u64,
666    /// The rustc target. This is only relevant for `.json` files, otherwise
667    /// the metadata hash segregates the units.
668    compile_kind: u64,
669    /// Unit index for this fingerprint, used for tracing cascading rebuilds.
670    /// Not persisted to disk as indices can change between builds.
671    #[serde(skip)]
672    index: UnitIndex,
673    /// Description of whether the filesystem status for this unit is up to date
674    /// or should be considered stale.
675    #[serde(skip)]
676    fs_status: FsStatus,
677    /// Files, relative to `target_root`, that are produced by the step that
678    /// this `Fingerprint` represents. This is used to detect when the whole
679    /// fingerprint is out of date if this is missing, or if previous
680    /// fingerprints output files are regenerated and look newer than this one.
681    #[serde(skip)]
682    outputs: Vec<PathBuf>,
683}
684
685/// Indication of the status on the filesystem for a particular unit.
686#[derive(Clone, Default, Debug, Serialize, Deserialize)]
687#[serde(tag = "fs_status", rename_all = "kebab-case")]
688pub enum FsStatus {
689    /// This unit is to be considered stale, even if hash information all
690    /// matches.
691    #[default]
692    Stale,
693
694    /// File system inputs have changed (or are missing), or there were
695    /// changes to the environment variables that affect this unit. See
696    /// the variants of [`StaleItem`] for more information.
697    StaleItem(StaleItem),
698
699    /// A dependency was stale.
700    StaleDependency {
701        unit: UnitIndex,
702        #[serde(with = "serde_file_time")]
703        dep_mtime: FileTime,
704        #[serde(with = "serde_file_time")]
705        max_mtime: FileTime,
706    },
707
708    /// A dependency's fingerprint was stale.
709    StaleDepFingerprint { unit: UnitIndex },
710
711    /// This unit is up-to-date. All outputs and their corresponding mtime are
712    /// listed in the payload here for other dependencies to compare against.
713    #[serde(skip)]
714    UpToDate { mtimes: HashMap<PathBuf, FileTime> },
715}
716
717impl FsStatus {
718    fn up_to_date(&self) -> bool {
719        match self {
720            FsStatus::UpToDate { .. } => true,
721            FsStatus::Stale
722            | FsStatus::StaleItem(_)
723            | FsStatus::StaleDependency { .. }
724            | FsStatus::StaleDepFingerprint { .. } => false,
725        }
726    }
727}
728
729mod serde_file_time {
730    use filetime::FileTime;
731    use serde::Deserialize;
732    use serde::Serialize;
733
734    /// Serialize FileTime as milliseconds with nano.
735    pub(super) fn serialize<S>(ft: &FileTime, s: S) -> Result<S::Ok, S::Error>
736    where
737        S: serde::Serializer,
738    {
739        let secs_as_millis = ft.unix_seconds() as f64 * 1000.0;
740        let nanos_as_millis = ft.nanoseconds() as f64 / 1_000_000.0;
741        (secs_as_millis + nanos_as_millis).serialize(s)
742    }
743
744    /// Deserialize FileTime from milliseconds with nano.
745    pub(super) fn deserialize<'de, D>(d: D) -> Result<FileTime, D::Error>
746    where
747        D: serde::Deserializer<'de>,
748    {
749        let millis = f64::deserialize(d)?;
750        let secs = (millis / 1000.0) as i64;
751        let nanos = ((millis % 1000.0) * 1_000_000.0) as u32;
752        Ok(FileTime::from_unix_time(secs, nanos))
753    }
754}
755
756impl Serialize for DepFingerprint {
757    fn serialize<S>(&self, ser: S) -> Result<S::Ok, S::Error>
758    where
759        S: ser::Serializer,
760    {
761        (
762            &self.pkg_id,
763            &self.name,
764            &self.public,
765            &self.fingerprint.hash_u64(),
766        )
767            .serialize(ser)
768    }
769}
770
771impl<'de> Deserialize<'de> for DepFingerprint {
772    fn deserialize<D>(d: D) -> Result<DepFingerprint, D::Error>
773    where
774        D: de::Deserializer<'de>,
775    {
776        let (pkg_id, name, public, hash) = <(u64, String, bool, u64)>::deserialize(d)?;
777        Ok(DepFingerprint {
778            pkg_id,
779            name: name.into(),
780            public,
781            fingerprint: Arc::new(Fingerprint {
782                memoized_hash: Mutex::new(Some(hash)),
783                ..Fingerprint::new()
784            }),
785            // This field is never read since it's only used in
786            // `check_filesystem` which isn't used by fingerprints loaded from
787            // disk.
788            only_requires_rmeta: false,
789        })
790    }
791}
792
793/// A `LocalFingerprint` represents something that we use to detect direct
794/// changes to a `Fingerprint`.
795///
796/// This is where we track file information, env vars, etc. This
797/// `LocalFingerprint` struct is hashed and if the hash changes will force a
798/// recompile of any fingerprint it's included into. Note that the "local"
799/// terminology comes from the fact that it only has to do with one crate, and
800/// `Fingerprint` tracks the transitive propagation of fingerprint changes.
801///
802/// Note that because this is hashed its contents are carefully managed. Like
803/// mentioned in the above module docs, we don't want to hash absolute paths or
804/// mtime information.
805///
806/// Also note that a `LocalFingerprint` is used in `check_filesystem` to detect
807/// when the filesystem contains stale information (based on mtime currently).
808/// The paths here don't change much between compilations but they're used as
809/// inputs when we probe the filesystem looking at information.
810#[derive(Debug, Serialize, Deserialize, Hash)]
811enum LocalFingerprint {
812    /// This is a precalculated fingerprint which has an opaque string we just
813    /// hash as usual. This variant is primarily used for rustdoc where we
814    /// don't have a dep-info file to compare against.
815    ///
816    /// This is also used for build scripts with no `rerun-if-*` statements, but
817    /// that's overall a mistake and causes bugs in Cargo. We shouldn't use this
818    /// for build scripts.
819    Precalculated(String),
820
821    /// This is used for crate compilations. The `dep_info` file is a relative
822    /// path anchored at `target_root(...)` to the dep-info file that Cargo
823    /// generates (which is a custom serialization after parsing rustc's own
824    /// `dep-info` output).
825    ///
826    /// The `dep_info` file, when present, also lists a number of other files
827    /// for us to look at. If any of those files are newer than this file then
828    /// we need to recompile.
829    ///
830    /// If the `checksum` bool is true then the `dep_info` file is expected to
831    /// contain file checksums instead of file mtimes.
832    CheckDepInfo { dep_info: PathBuf, checksum: bool },
833
834    /// This represents a nonempty set of `rerun-if-changed` annotations printed
835    /// out by a build script. The `output` file is a relative file anchored at
836    /// `target_root(...)` which is the actual output of the build script. That
837    /// output has already been parsed and the paths printed out via
838    /// `rerun-if-changed` are listed in `paths`. The `paths` field is relative
839    /// to `pkg.root()`
840    ///
841    /// This is considered up-to-date if all of the `paths` are older than
842    /// `output`, otherwise we need to recompile.
843    RerunIfChanged {
844        output: PathBuf,
845        paths: Vec<PathBuf>,
846    },
847
848    /// This represents a single `rerun-if-env-changed` annotation printed by a
849    /// build script. The exact env var and value are hashed here. There's no
850    /// filesystem dependence here, and if the values are changed the hash will
851    /// change forcing a recompile.
852    RerunIfEnvChanged { var: String, val: Option<String> },
853}
854
855/// See [`FsStatus::StaleItem`].
856#[derive(Clone, Debug, Serialize, Deserialize)]
857#[serde(tag = "stale_item", rename_all = "kebab-case")]
858pub enum StaleItem {
859    MissingFile {
860        path: PathBuf,
861    },
862    UnableToReadFile {
863        path: PathBuf,
864    },
865    FailedToReadMetadata {
866        path: PathBuf,
867    },
868    FileSizeChanged {
869        path: PathBuf,
870        old_size: u64,
871        new_size: u64,
872    },
873    ChangedFile {
874        reference: PathBuf,
875        #[serde(with = "serde_file_time")]
876        reference_mtime: FileTime,
877        stale: PathBuf,
878        #[serde(with = "serde_file_time")]
879        stale_mtime: FileTime,
880    },
881    ChangedChecksum {
882        source: PathBuf,
883        stored_checksum: Checksum,
884        new_checksum: Checksum,
885    },
886    MissingChecksum {
887        path: PathBuf,
888    },
889    ChangedEnv {
890        var: String,
891        previous: Option<String>,
892        current: Option<String>,
893    },
894}
895
896impl LocalFingerprint {
897    /// Read the environment variable of the given env `key`, and creates a new
898    /// [`LocalFingerprint::RerunIfEnvChanged`] for it. The `env_config` is used firstly
899    /// to check if the env var is set in the config system as some envs need to be overridden.
900    /// If not, it will fallback to `std::env::var`.
901    ///
902    // TODO: `std::env::var` is allowed at this moment. Should figure out
903    // if it makes sense if permitting to read env from the env snapshot.
904    #[allow(clippy::disallowed_methods)]
905    fn from_env<K: AsRef<str>>(
906        key: K,
907        env_config: &Arc<HashMap<String, OsString>>,
908    ) -> LocalFingerprint {
909        let key = key.as_ref();
910        let var = key.to_owned();
911        let val = if let Some(val) = env_config.get(key) {
912            val.to_str().map(ToOwned::to_owned)
913        } else {
914            env::var(key).ok()
915        };
916        LocalFingerprint::RerunIfEnvChanged { var, val }
917    }
918
919    /// Checks dynamically at runtime if this `LocalFingerprint` has a stale
920    /// item inside of it.
921    ///
922    /// The main purpose of this function is to handle two different ways
923    /// fingerprints can be invalidated:
924    ///
925    /// * One is a dependency listed in rustc's dep-info files is invalid. Note
926    ///   that these could either be env vars or files. We check both here.
927    ///
928    /// * Another is the `rerun-if-changed` directive from build scripts. This
929    ///   is where we'll find whether files have actually changed
930    fn find_stale_item(
931        &self,
932        mtime_cache: &mut HashMap<PathBuf, FileTime>,
933        checksum_cache: &mut HashMap<PathBuf, Checksum>,
934        pkg: &Package,
935        build_root: &Path,
936        cargo_exe: &Path,
937        gctx: &GlobalContext,
938    ) -> CargoResult<Option<StaleItem>> {
939        let pkg_root = pkg.root();
940        match self {
941            // We need to parse `dep_info`, learn about the crate's dependencies.
942            //
943            // For each env var we see if our current process's env var still
944            // matches, and for each file we see if any of them are newer than
945            // the `dep_info` file itself whose mtime represents the start of
946            // rustc.
947            LocalFingerprint::CheckDepInfo { dep_info, checksum } => {
948                let dep_info = build_root.join(dep_info);
949                let Some(info) = parse_dep_info(pkg_root, build_root, &dep_info)? else {
950                    return Ok(Some(StaleItem::MissingFile { path: dep_info }));
951                };
952                for (key, previous) in info.env.iter() {
953                    if let Some(value) = pkg.manifest().metadata().env_var(key.as_str()) {
954                        if Some(value.as_ref()) == previous.as_deref() {
955                            continue;
956                        }
957                    }
958
959                    let current = if key == CARGO_ENV {
960                        Some(cargo_exe.to_str().ok_or_else(|| {
961                            format_err!(
962                                "cargo exe path {} must be valid UTF-8",
963                                cargo_exe.display()
964                            )
965                        })?)
966                    } else {
967                        if let Some(value) = gctx.env_config()?.get(key) {
968                            value.to_str()
969                        } else {
970                            gctx.get_env(key).ok()
971                        }
972                    };
973                    if current == previous.as_deref() {
974                        continue;
975                    }
976                    return Ok(Some(StaleItem::ChangedEnv {
977                        var: key.clone(),
978                        previous: previous.clone(),
979                        current: current.map(Into::into),
980                    }));
981                }
982                if *checksum {
983                    Ok(find_stale_file(
984                        mtime_cache,
985                        checksum_cache,
986                        &dep_info,
987                        info.files.iter().map(|(file, checksum)| (file, *checksum)),
988                        *checksum,
989                    ))
990                } else {
991                    Ok(find_stale_file(
992                        mtime_cache,
993                        checksum_cache,
994                        &dep_info,
995                        info.files.into_keys().map(|p| (p, None)),
996                        *checksum,
997                    ))
998                }
999            }
1000
1001            // We need to verify that no paths listed in `paths` are newer than
1002            // the `output` path itself, or the last time the build script ran.
1003            LocalFingerprint::RerunIfChanged { output, paths } => Ok(find_stale_file(
1004                mtime_cache,
1005                checksum_cache,
1006                &build_root.join(output),
1007                paths.iter().map(|p| (pkg_root.join(p), None)),
1008                false,
1009            )),
1010
1011            // These have no dependencies on the filesystem, and their values
1012            // are included natively in the `Fingerprint` hash so nothing
1013            // tocheck for here.
1014            LocalFingerprint::RerunIfEnvChanged { .. } => Ok(None),
1015            LocalFingerprint::Precalculated(..) => Ok(None),
1016        }
1017    }
1018
1019    fn kind(&self) -> &'static str {
1020        match self {
1021            LocalFingerprint::Precalculated(..) => "precalculated",
1022            LocalFingerprint::CheckDepInfo { .. } => "dep-info",
1023            LocalFingerprint::RerunIfChanged { .. } => "rerun-if-changed",
1024            LocalFingerprint::RerunIfEnvChanged { .. } => "rerun-if-env-changed",
1025        }
1026    }
1027}
1028
1029impl Fingerprint {
1030    fn new() -> Fingerprint {
1031        Fingerprint {
1032            rustc: 0,
1033            target: 0,
1034            profile: 0,
1035            path: 0,
1036            features: String::new(),
1037            declared_features: String::new(),
1038            deps: Vec::new(),
1039            local: Mutex::new(Vec::new()),
1040            memoized_hash: Mutex::new(None),
1041            rustflags: Vec::new(),
1042            config: 0,
1043            compile_kind: 0,
1044            index: UnitIndex::default(),
1045            fs_status: FsStatus::Stale,
1046            outputs: Vec::new(),
1047        }
1048    }
1049
1050    /// For performance reasons fingerprints will memoize their own hash, but
1051    /// there's also internal mutability with its `local` field which can
1052    /// change, for example with build scripts, during a build.
1053    ///
1054    /// This method can be used to bust all memoized hashes just before a build
1055    /// to ensure that after a build completes everything is up-to-date.
1056    pub fn clear_memoized(&self) {
1057        *self.memoized_hash.lock().unwrap() = None;
1058    }
1059
1060    fn hash_u64(&self) -> u64 {
1061        if let Some(s) = *self.memoized_hash.lock().unwrap() {
1062            return s;
1063        }
1064        let ret = util::hash_u64(self);
1065        *self.memoized_hash.lock().unwrap() = Some(ret);
1066        ret
1067    }
1068
1069    /// Compares this fingerprint with an old version which was previously
1070    /// serialized to filesystem.
1071    ///
1072    /// The purpose of this is exclusively to produce a diagnostic message
1073    /// [`DirtyReason`], indicating why we're recompiling something.
1074    fn compare(&self, old: &Fingerprint) -> DirtyReason {
1075        if self.rustc != old.rustc {
1076            return DirtyReason::RustcChanged;
1077        }
1078        if self.features != old.features {
1079            return DirtyReason::FeaturesChanged {
1080                old: old.features.clone(),
1081                new: self.features.clone(),
1082            };
1083        }
1084        if self.declared_features != old.declared_features {
1085            return DirtyReason::DeclaredFeaturesChanged {
1086                old: old.declared_features.clone(),
1087                new: self.declared_features.clone(),
1088            };
1089        }
1090        if self.target != old.target {
1091            return DirtyReason::TargetConfigurationChanged;
1092        }
1093        if self.path != old.path {
1094            return DirtyReason::PathToSourceChanged;
1095        }
1096        if self.profile != old.profile {
1097            return DirtyReason::ProfileConfigurationChanged;
1098        }
1099        if self.rustflags != old.rustflags {
1100            return DirtyReason::RustflagsChanged {
1101                old: old.rustflags.clone(),
1102                new: self.rustflags.clone(),
1103            };
1104        }
1105        if self.config != old.config {
1106            return DirtyReason::ConfigSettingsChanged;
1107        }
1108        if self.compile_kind != old.compile_kind {
1109            return DirtyReason::CompileKindChanged;
1110        }
1111        let my_local = self.local.lock().unwrap();
1112        let old_local = old.local.lock().unwrap();
1113        if my_local.len() != old_local.len() {
1114            return DirtyReason::LocalLengthsChanged;
1115        }
1116        for (new, old) in my_local.iter().zip(old_local.iter()) {
1117            match (new, old) {
1118                (LocalFingerprint::Precalculated(a), LocalFingerprint::Precalculated(b)) => {
1119                    if a != b {
1120                        return DirtyReason::PrecalculatedComponentsChanged {
1121                            old: b.to_string(),
1122                            new: a.to_string(),
1123                        };
1124                    }
1125                }
1126                (
1127                    LocalFingerprint::CheckDepInfo {
1128                        dep_info: a_dep,
1129                        checksum: checksum_a,
1130                    },
1131                    LocalFingerprint::CheckDepInfo {
1132                        dep_info: b_dep,
1133                        checksum: checksum_b,
1134                    },
1135                ) => {
1136                    if a_dep != b_dep {
1137                        return DirtyReason::DepInfoOutputChanged {
1138                            old: b_dep.clone(),
1139                            new: a_dep.clone(),
1140                        };
1141                    }
1142                    if checksum_a != checksum_b {
1143                        return DirtyReason::ChecksumUseChanged { old: *checksum_b };
1144                    }
1145                }
1146                (
1147                    LocalFingerprint::RerunIfChanged {
1148                        output: a_out,
1149                        paths: a_paths,
1150                    },
1151                    LocalFingerprint::RerunIfChanged {
1152                        output: b_out,
1153                        paths: b_paths,
1154                    },
1155                ) => {
1156                    if a_out != b_out {
1157                        return DirtyReason::RerunIfChangedOutputFileChanged {
1158                            old: b_out.clone(),
1159                            new: a_out.clone(),
1160                        };
1161                    }
1162                    if a_paths != b_paths {
1163                        return DirtyReason::RerunIfChangedOutputPathsChanged {
1164                            old: b_paths.clone(),
1165                            new: a_paths.clone(),
1166                        };
1167                    }
1168                }
1169                (
1170                    LocalFingerprint::RerunIfEnvChanged {
1171                        var: a_key,
1172                        val: a_value,
1173                    },
1174                    LocalFingerprint::RerunIfEnvChanged {
1175                        var: b_key,
1176                        val: b_value,
1177                    },
1178                ) => {
1179                    if *a_key != *b_key {
1180                        return DirtyReason::EnvVarsChanged {
1181                            old: b_key.clone(),
1182                            new: a_key.clone(),
1183                        };
1184                    }
1185                    if *a_value != *b_value {
1186                        return DirtyReason::EnvVarChanged {
1187                            name: a_key.clone(),
1188                            old_value: b_value.clone(),
1189                            new_value: a_value.clone(),
1190                        };
1191                    }
1192                }
1193                (a, b) => {
1194                    return DirtyReason::LocalFingerprintTypeChanged {
1195                        old: b.kind().to_owned(),
1196                        new: a.kind().to_owned(),
1197                    };
1198                }
1199            }
1200        }
1201
1202        if self.deps.len() != old.deps.len() {
1203            return DirtyReason::NumberOfDependenciesChanged {
1204                old: old.deps.len(),
1205                new: self.deps.len(),
1206            };
1207        }
1208        for (a, b) in self.deps.iter().zip(old.deps.iter()) {
1209            if a.name != b.name {
1210                return DirtyReason::UnitDependencyNameChanged {
1211                    old: b.name,
1212                    new: a.name,
1213                };
1214            }
1215
1216            if a.fingerprint.hash_u64() != b.fingerprint.hash_u64() {
1217                return DirtyReason::UnitDependencyInfoChanged {
1218                    unit: a.fingerprint.index,
1219                };
1220            }
1221        }
1222
1223        if !self.fs_status.up_to_date() {
1224            return DirtyReason::FsStatusOutdated(self.fs_status.clone());
1225        }
1226
1227        // This typically means some filesystem modifications happened or
1228        // something transitive was odd. In general we should strive to provide
1229        // a better error message than this, so if you see this message a lot it
1230        // likely means this method needs to be updated!
1231        DirtyReason::NothingObvious
1232    }
1233
1234    /// Dynamically inspect the local filesystem to update the `fs_status` field
1235    /// of this `Fingerprint`.
1236    ///
1237    /// This function is used just after a `Fingerprint` is constructed to check
1238    /// the local state of the filesystem and propagate any dirtiness from
1239    /// dependencies up to this unit as well. This function assumes that the
1240    /// unit starts out as [`FsStatus::Stale`] and then it will optionally switch
1241    /// it to `UpToDate` if it can.
1242    fn check_filesystem(
1243        &mut self,
1244        mtime_cache: &mut HashMap<PathBuf, FileTime>,
1245        checksum_cache: &mut HashMap<PathBuf, Checksum>,
1246        pkg: &Package,
1247        build_root: &Path,
1248        cargo_exe: &Path,
1249        gctx: &GlobalContext,
1250    ) -> CargoResult<()> {
1251        assert!(!self.fs_status.up_to_date());
1252
1253        let pkg_root = pkg.root();
1254        let mut mtimes = HashMap::default();
1255
1256        // Get the `mtime` of all outputs. Optionally update their mtime
1257        // afterwards based on the `mtime_on_use` flag. Afterwards we want the
1258        // minimum mtime as it's the one we'll be comparing to inputs and
1259        // dependencies.
1260        for output in self.outputs.iter() {
1261            let Ok(mtime) = paths::mtime(output) else {
1262                // This path failed to report its `mtime`. It probably doesn't
1263                // exists, so leave ourselves as stale and bail out.
1264                let item = StaleItem::FailedToReadMetadata {
1265                    path: output.clone(),
1266                };
1267                self.fs_status = FsStatus::StaleItem(item);
1268                return Ok(());
1269            };
1270            assert!(mtimes.insert(output.clone(), mtime).is_none());
1271        }
1272
1273        let opt_max = mtimes.iter().max_by_key(|kv| kv.1);
1274        let Some((max_path, max_mtime)) = opt_max else {
1275            // We had no output files. This means we're an overridden build
1276            // script and we're just always up to date because we aren't
1277            // watching the filesystem.
1278            self.fs_status = FsStatus::UpToDate { mtimes };
1279            return Ok(());
1280        };
1281        debug!(
1282            "max output mtime for {:?} is {:?} {}",
1283            pkg_root, max_path, max_mtime
1284        );
1285
1286        for dep in self.deps.iter() {
1287            let dep_mtimes = match &dep.fingerprint.fs_status {
1288                FsStatus::UpToDate { mtimes } => mtimes,
1289                // If our dependency is stale, so are we, so bail out.
1290                FsStatus::Stale
1291                | FsStatus::StaleItem(_)
1292                | FsStatus::StaleDependency { .. }
1293                | FsStatus::StaleDepFingerprint { .. } => {
1294                    self.fs_status = FsStatus::StaleDepFingerprint {
1295                        unit: dep.fingerprint.index,
1296                    };
1297                    return Ok(());
1298                }
1299            };
1300
1301            // If our dependency edge only requires the rmeta file to be present
1302            // then we only need to look at that one output file, otherwise we
1303            // need to consider all output files to see if we're out of date.
1304            let (dep_path, dep_mtime) = if dep.only_requires_rmeta {
1305                dep_mtimes
1306                    .iter()
1307                    .find(|(path, _mtime)| {
1308                        path.extension().and_then(|s| s.to_str()) == Some("rmeta")
1309                    })
1310                    .expect("failed to find rmeta")
1311            } else {
1312                match dep_mtimes.iter().max_by_key(|kv| kv.1) {
1313                    Some(dep_mtime) => dep_mtime,
1314                    // If our dependencies is up to date and has no filesystem
1315                    // interactions, then we can move on to the next dependency.
1316                    None => continue,
1317                }
1318            };
1319            debug!(
1320                "max dep mtime for {:?} is {:?} {}",
1321                pkg_root, dep_path, dep_mtime
1322            );
1323
1324            // If the dependency is newer than our own output then it was
1325            // recompiled previously. We transitively become stale ourselves in
1326            // that case, so bail out.
1327            //
1328            // Note that this comparison should probably be `>=`, not `>`, but
1329            // for a discussion of why it's `>` see the discussion about #5918
1330            // below in `find_stale`.
1331            if dep_mtime > max_mtime {
1332                info!(
1333                    "dependency on `{}` is newer than we are {} > {} {:?}",
1334                    dep.name, dep_mtime, max_mtime, pkg_root
1335                );
1336
1337                self.fs_status = FsStatus::StaleDependency {
1338                    unit: dep.fingerprint.index,
1339                    dep_mtime: *dep_mtime,
1340                    max_mtime: *max_mtime,
1341                };
1342
1343                return Ok(());
1344            }
1345        }
1346
1347        // If we reached this far then all dependencies are up to date. Check
1348        // all our `LocalFingerprint` information to see if we have any stale
1349        // files for this package itself. If we do find something log a helpful
1350        // message and bail out so we stay stale.
1351        for local in self.local.get_mut().unwrap().iter() {
1352            if let Some(item) = local.find_stale_item(
1353                mtime_cache,
1354                checksum_cache,
1355                pkg,
1356                build_root,
1357                cargo_exe,
1358                gctx,
1359            )? {
1360                item.log();
1361                self.fs_status = FsStatus::StaleItem(item);
1362                return Ok(());
1363            }
1364        }
1365
1366        // Everything was up to date! Record such.
1367        self.fs_status = FsStatus::UpToDate { mtimes };
1368        debug!("filesystem up-to-date {:?}", pkg_root);
1369
1370        Ok(())
1371    }
1372}
1373
1374impl hash::Hash for Fingerprint {
1375    fn hash<H: Hasher>(&self, h: &mut H) {
1376        let Fingerprint {
1377            rustc,
1378            ref features,
1379            ref declared_features,
1380            target,
1381            path,
1382            profile,
1383            ref deps,
1384            ref local,
1385            config,
1386            compile_kind,
1387            ref rustflags,
1388            ..
1389        } = *self;
1390        let local = local.lock().unwrap();
1391        (
1392            rustc,
1393            features,
1394            declared_features,
1395            target,
1396            path,
1397            profile,
1398            &*local,
1399            config,
1400            compile_kind,
1401            rustflags,
1402        )
1403            .hash(h);
1404
1405        h.write_usize(deps.len());
1406        for DepFingerprint {
1407            pkg_id,
1408            name,
1409            public,
1410            fingerprint,
1411            only_requires_rmeta: _, // static property, no need to hash
1412        } in deps
1413        {
1414            pkg_id.hash(h);
1415            name.hash(h);
1416            public.hash(h);
1417            // use memoized dep hashes to avoid exponential blowup
1418            h.write_u64(fingerprint.hash_u64());
1419        }
1420    }
1421}
1422
1423impl DepFingerprint {
1424    fn new(
1425        build_runner: &mut BuildRunner<'_, '_>,
1426        parent: &Unit,
1427        dep: &UnitDep,
1428    ) -> CargoResult<DepFingerprint> {
1429        let fingerprint = calculate(build_runner, &dep.unit)?;
1430        // We need to be careful about what we hash here. We have a goal of
1431        // supporting renaming a project directory and not rebuilding
1432        // everything. To do that, however, we need to make sure that the cwd
1433        // doesn't make its way into any hashes, and one source of that is the
1434        // `SourceId` for `path` packages.
1435        //
1436        // We already have a requirement that `path` packages all have unique
1437        // names (sort of for this same reason), so if the package source is a
1438        // `path` then we just hash the name, but otherwise we hash the full
1439        // id as it won't change when the directory is renamed.
1440        let pkg_id = if dep.unit.pkg.package_id().source_id().is_path() {
1441            util::hash_u64(dep.unit.pkg.package_id().name())
1442        } else {
1443            util::hash_u64(dep.unit.pkg.package_id())
1444        };
1445
1446        Ok(DepFingerprint {
1447            pkg_id,
1448            name: dep.extern_crate_name,
1449            public: dep.public,
1450            fingerprint,
1451            only_requires_rmeta: build_runner.only_requires_rmeta(parent, &dep.unit),
1452        })
1453    }
1454}
1455
1456impl StaleItem {
1457    /// Use the `log` crate to log a hopefully helpful message in diagnosing
1458    /// what file is considered stale and why. This is intended to be used in
1459    /// conjunction with `CARGO_LOG` to determine why Cargo is recompiling
1460    /// something. Currently there's no user-facing usage of this other than
1461    /// that.
1462    fn log(&self) {
1463        match self {
1464            StaleItem::MissingFile { path } => {
1465                info!("stale: missing {:?}", path);
1466            }
1467            StaleItem::UnableToReadFile { path } => {
1468                info!("stale: unable to read {:?}", path);
1469            }
1470            StaleItem::FailedToReadMetadata { path } => {
1471                info!("stale: couldn't read metadata {:?}", path);
1472            }
1473            StaleItem::ChangedFile {
1474                reference,
1475                reference_mtime,
1476                stale,
1477                stale_mtime,
1478            } => {
1479                info!("stale: changed {:?}", stale);
1480                info!("          (vs) {:?}", reference);
1481                info!("               {:?} < {:?}", reference_mtime, stale_mtime);
1482            }
1483            StaleItem::FileSizeChanged {
1484                path,
1485                new_size,
1486                old_size,
1487            } => {
1488                info!("stale: changed {:?}", path);
1489                info!("prior file size {old_size}");
1490                info!("  new file size {new_size}");
1491            }
1492            StaleItem::ChangedChecksum {
1493                source,
1494                stored_checksum,
1495                new_checksum,
1496            } => {
1497                info!("stale: changed {:?}", source);
1498                info!("prior checksum {stored_checksum}");
1499                info!("  new checksum {new_checksum}");
1500            }
1501            StaleItem::MissingChecksum { path } => {
1502                info!("stale: no prior checksum {:?}", path);
1503            }
1504            StaleItem::ChangedEnv {
1505                var,
1506                previous,
1507                current,
1508            } => {
1509                info!("stale: changed env {:?}", var);
1510                info!("       {:?} != {:?}", previous, current);
1511            }
1512        }
1513    }
1514}
1515
1516/// Calculates the fingerprint for a [`Unit`].
1517///
1518/// This fingerprint is used by Cargo to learn about when information such as:
1519///
1520/// * A non-path package changes (changes version, changes revision, etc).
1521/// * Any dependency changes
1522/// * The compiler changes
1523/// * The set of features a package is built with changes
1524/// * The profile a target is compiled with changes (e.g., opt-level changes)
1525/// * Any other compiler flags change that will affect the result
1526///
1527/// Information like file modification time is only calculated for path
1528/// dependencies.
1529fn calculate(build_runner: &mut BuildRunner<'_, '_>, unit: &Unit) -> CargoResult<Arc<Fingerprint>> {
1530    // This function is slammed quite a lot, so the result is memoized.
1531    if let Some(s) = build_runner.fingerprints.get(unit) {
1532        return Ok(Arc::clone(s));
1533    }
1534    let mut fingerprint = if unit.mode.is_run_custom_build() {
1535        calculate_run_custom_build(build_runner, unit)?
1536    } else if unit.mode.is_doc_test() {
1537        panic!("doc tests do not fingerprint");
1538    } else {
1539        calculate_normal(build_runner, unit)?
1540    };
1541
1542    // After we built the initial `Fingerprint` be sure to update the
1543    // `fs_status` field of it.
1544    let build_root = build_root(build_runner);
1545    let cargo_exe = build_runner.bcx.gctx.cargo_exe()?;
1546    fingerprint.check_filesystem(
1547        &mut build_runner.mtime_cache,
1548        &mut build_runner.checksum_cache,
1549        &unit.pkg,
1550        &build_root,
1551        cargo_exe,
1552        build_runner.bcx.gctx,
1553    )?;
1554
1555    let fingerprint = Arc::new(fingerprint);
1556    build_runner
1557        .fingerprints
1558        .insert(unit.clone(), Arc::clone(&fingerprint));
1559    Ok(fingerprint)
1560}
1561
1562/// Calculate a fingerprint for a "normal" unit, or anything that's not a build
1563/// script. This is an internal helper of [`calculate`], don't call directly.
1564fn calculate_normal(
1565    build_runner: &mut BuildRunner<'_, '_>,
1566    unit: &Unit,
1567) -> CargoResult<Fingerprint> {
1568    let deps = {
1569        // Recursively calculate the fingerprint for all of our dependencies.
1570        //
1571        // Skip fingerprints of binaries because they don't actually induce a
1572        // recompile, they're just dependencies in the sense that they need to be
1573        // built. The only exception here are artifact dependencies,
1574        // which is an actual dependency that needs a recompile.
1575        //
1576        // Create Vec since mutable build_runner is needed in closure.
1577        let deps = Vec::from(build_runner.unit_deps(unit));
1578        let mut deps = deps
1579            .into_iter()
1580            .filter(|dep| !dep.unit.target.is_bin() || dep.unit.artifact.is_true())
1581            .map(|dep| DepFingerprint::new(build_runner, unit, &dep))
1582            .collect::<CargoResult<Vec<_>>>()?;
1583        deps.sort_by(|a, b| a.pkg_id.cmp(&b.pkg_id));
1584        deps
1585    };
1586
1587    // Afterwards calculate our own fingerprint information.
1588    let build_root = build_root(build_runner);
1589    let is_any_doc_gen = unit.mode.is_doc() || unit.mode.is_doc_scrape();
1590    let rustdoc_depinfo_enabled = build_runner.bcx.gctx.cli_unstable().rustdoc_depinfo;
1591    let local = if is_any_doc_gen && !rustdoc_depinfo_enabled {
1592        // rustdoc does not have dep-info files.
1593        let fingerprint = pkg_fingerprint(build_runner.bcx, &unit.pkg).with_context(|| {
1594            format!(
1595                "failed to determine package fingerprint for documenting {}",
1596                unit.pkg
1597            )
1598        })?;
1599        vec![LocalFingerprint::Precalculated(fingerprint)]
1600    } else {
1601        let dep_info = dep_info_loc(build_runner, unit);
1602        let dep_info = dep_info.strip_prefix(&build_root).unwrap().to_path_buf();
1603        vec![LocalFingerprint::CheckDepInfo {
1604            dep_info,
1605            checksum: build_runner.bcx.gctx.cli_unstable().checksum_freshness,
1606        }]
1607    };
1608
1609    // Figure out what the outputs of our unit is, and we'll be storing them
1610    // into the fingerprint as well.
1611    let outputs = build_runner
1612        .outputs(unit)?
1613        .iter()
1614        .filter(|output| !matches!(output.flavor, FileFlavor::DebugInfo | FileFlavor::Auxiliary))
1615        .map(|output| output.path.clone())
1616        .collect();
1617
1618    // Fill out a bunch more information that we'll be tracking typically
1619    // hashed to take up less space on disk as we just need to know when things
1620    // change.
1621    let extra_flags = if unit.mode.is_doc() || unit.mode.is_doc_scrape() {
1622        &unit.rustdocflags
1623    } else {
1624        &unit.rustflags
1625    }
1626    .to_vec();
1627
1628    let profile_hash = util::hash_u64((
1629        &unit.profile,
1630        unit.mode,
1631        build_runner.bcx.extra_args_for(unit),
1632        build_runner.lto[unit],
1633        unit.pkg.manifest().lint_rustflags(),
1634    ));
1635    let mut config = StableHasher::new();
1636    let linker = if unit.target.for_host() && !build_runner.bcx.gctx.target_applies_to_host()? {
1637        build_runner.compilation.host_linker()
1638    } else {
1639        build_runner.compilation.target_linker(unit.kind)
1640    };
1641    if let Some(linker) = linker {
1642        linker.hash(&mut config);
1643    }
1644    if unit.mode.is_doc() && build_runner.bcx.gctx.cli_unstable().rustdoc_map {
1645        if let Ok(map) = build_runner.bcx.gctx.doc_extern_map() {
1646            map.hash(&mut config);
1647        }
1648    }
1649    if let Some(allow_features) = &build_runner.bcx.gctx.cli_unstable().allow_features {
1650        allow_features.hash(&mut config);
1651    }
1652    // -Zpublic-dependency changes how library units pass dependency privacy
1653    // to rustc via `--extern`.
1654    (unit.target.is_lib()
1655        && build_runner.unit_deps(unit).iter().any(|dep| !dep.public)
1656        && super::is_public_dependency_enabled(build_runner, unit))
1657    .hash(&mut config);
1658    // -Zembed-metadata changes how all units are compiled, and it also changes how we tell
1659    // rustc to link to deps using `--extern`. If it changes, we should rebuild everything.
1660    build_runner
1661        .bcx
1662        .gctx
1663        .should_embed_metadata()
1664        .not()
1665        .hash(&mut config);
1666
1667    let compile_kind = unit.kind.fingerprint_hash();
1668    let mut declared_features = unit.pkg.summary().features().keys().collect::<Vec<_>>();
1669    declared_features.sort(); // to avoid useless rebuild if the user orders it's features
1670    // differently
1671    Ok(Fingerprint {
1672        rustc: util::hash_u64(&build_runner.bcx.rustc().verbose_version),
1673        target: util::hash_u64(&unit.target),
1674        profile: profile_hash,
1675        // Note that .0 is hashed here, not .1 which is the cwd. That doesn't
1676        // actually affect the output artifact so there's no need to hash it.
1677        path: util::hash_u64(path_args(build_runner.bcx.ws, unit).0),
1678        features: format!("{:?}", unit.features),
1679        declared_features: format!("{declared_features:?}"),
1680        deps,
1681        local: Mutex::new(local),
1682        memoized_hash: Mutex::new(None),
1683        config: Hasher::finish(&config),
1684        compile_kind,
1685        index: build_runner.bcx.unit_to_index[unit],
1686        rustflags: extra_flags,
1687        fs_status: FsStatus::Stale,
1688        outputs,
1689    })
1690}
1691
1692/// Calculate a fingerprint for an "execute a build script" unit.  This is an
1693/// internal helper of [`calculate`], don't call directly.
1694fn calculate_run_custom_build(
1695    build_runner: &mut BuildRunner<'_, '_>,
1696    unit: &Unit,
1697) -> CargoResult<Fingerprint> {
1698    assert!(unit.mode.is_run_custom_build());
1699    // Using the `BuildDeps` information we'll have previously parsed and
1700    // inserted into `build_explicit_deps` built an initial snapshot of the
1701    // `LocalFingerprint` list for this build script. If we previously executed
1702    // the build script this means we'll be watching files and env vars.
1703    // Otherwise if we haven't previously executed it we'll just start watching
1704    // the whole crate.
1705    let (gen_local, overridden) = build_script_local_fingerprints(build_runner, unit)?;
1706    let deps = &build_runner.build_explicit_deps[unit];
1707    let local = (gen_local)(
1708        deps,
1709        Some(&|| {
1710            const IO_ERR_MESSAGE: &str = "\
1711An I/O error happened. Please make sure you can access the file.
1712
1713By default, if your project contains a build script, cargo scans all files in
1714it to determine whether a rebuild is needed. If you don't expect to access the
1715file, specify `rerun-if-changed` in your build script.
1716See https://doc.rust-lang.org/cargo/reference/build-scripts.html#rerun-if-changed for more information.";
1717            pkg_fingerprint(build_runner.bcx, &unit.pkg).map_err(|err| {
1718                let mut message = format!("failed to determine package fingerprint for build script for {}", unit.pkg);
1719                if err.root_cause().is::<io::Error>() {
1720                    message = format!("{}\n{}", message, IO_ERR_MESSAGE)
1721                }
1722                err.context(message)
1723            })
1724        }),
1725    )?
1726    .unwrap();
1727    let output = deps.build_script_output.clone();
1728
1729    // Include any dependencies of our execution, which is typically just the
1730    // compilation of the build script itself. (if the build script changes we
1731    // should be rerun!). Note though that if we're an overridden build script
1732    // we have no dependencies so no need to recurse in that case.
1733    let deps = if overridden {
1734        // Overridden build scripts don't need to track deps.
1735        vec![]
1736    } else {
1737        // Create Vec since mutable build_runner is needed in closure.
1738        let deps = Vec::from(build_runner.unit_deps(unit));
1739        deps.into_iter()
1740            .map(|dep| DepFingerprint::new(build_runner, unit, &dep))
1741            .collect::<CargoResult<Vec<_>>>()?
1742    };
1743
1744    let rustflags = unit.rustflags.to_vec();
1745
1746    Ok(Fingerprint {
1747        local: Mutex::new(local),
1748        rustc: util::hash_u64(&build_runner.bcx.rustc().verbose_version),
1749        deps,
1750        outputs: if overridden { Vec::new() } else { vec![output] },
1751        rustflags,
1752        index: build_runner.bcx.unit_to_index[unit],
1753
1754        // Most of the other info is blank here as we don't really include it
1755        // in the execution of the build script, but... this may be a latent
1756        // bug in Cargo.
1757        ..Fingerprint::new()
1758    })
1759}
1760
1761/// Get ready to compute the [`LocalFingerprint`] values
1762/// for a [`RunCustomBuild`] unit.
1763///
1764/// This function has, what's on the surface, a seriously wonky interface.
1765/// You'll call this function and it'll return a closure and a boolean. The
1766/// boolean is pretty simple in that it indicates whether the `unit` has been
1767/// overridden via `.cargo/config.toml`. The closure is much more complicated.
1768///
1769/// This closure is intended to capture any local state necessary to compute
1770/// the `LocalFingerprint` values for this unit. It is `Send` and `'static` to
1771/// be sent to other threads as well (such as when we're executing build
1772/// scripts). That deduplication is the rationale for the closure at least.
1773///
1774/// The arguments to the closure are a bit weirder, though, and I'll apologize
1775/// in advance for the weirdness too. The first argument to the closure is a
1776/// `&BuildDeps`. This is the parsed version of a build script, and when Cargo
1777/// starts up this is cached from previous runs of a build script.  After a
1778/// build script executes the output file is reparsed and passed in here.
1779///
1780/// The second argument is the weirdest, it's *optionally* a closure to
1781/// call [`pkg_fingerprint`]. The `pkg_fingerprint` requires access to
1782/// "source map" located in `Context`. That's very non-`'static` and
1783/// non-`Send`, so it can't be used on other threads, such as when we invoke
1784/// this after a build script has finished. The `Option` allows us to for sure
1785/// calculate it on the main thread at the beginning, and then swallow the bug
1786/// for now where a worker thread after a build script has finished doesn't
1787/// have access. Ideally there would be no second argument or it would be more
1788/// "first class" and not an `Option` but something that can be sent between
1789/// threads. In any case, it's a bug for now.
1790///
1791/// This isn't the greatest of interfaces, and if there's suggestions to
1792/// improve please do so!
1793///
1794/// FIXME(#6779) - see all the words above
1795///
1796/// [`RunCustomBuild`]: crate::compiler::CompileMode::RunCustomBuild
1797fn build_script_local_fingerprints(
1798    build_runner: &mut BuildRunner<'_, '_>,
1799    unit: &Unit,
1800) -> CargoResult<(
1801    Box<
1802        dyn FnOnce(
1803                &BuildDeps,
1804                Option<&dyn Fn() -> CargoResult<String>>,
1805            ) -> CargoResult<Option<Vec<LocalFingerprint>>>
1806            + Send,
1807    >,
1808    bool,
1809)> {
1810    assert!(unit.mode.is_run_custom_build());
1811    // First up, if this build script is entirely overridden, then we just
1812    // return the hash of what we overrode it with. This is the easy case!
1813    if let Some(fingerprint) = build_script_override_fingerprint(build_runner, unit) {
1814        debug!("override local fingerprints deps {}", unit.pkg);
1815        return Ok((
1816            Box::new(
1817                move |_: &BuildDeps, _: Option<&dyn Fn() -> CargoResult<String>>| {
1818                    Ok(Some(vec![fingerprint]))
1819                },
1820            ),
1821            true, // this is an overridden build script
1822        ));
1823    }
1824
1825    // ... Otherwise this is a "real" build script and we need to return a real
1826    // closure. Our returned closure classifies the build script based on
1827    // whether it prints `rerun-if-*`. If it *doesn't* print this it's where the
1828    // magical second argument comes into play, which fingerprints a whole
1829    // package. Remember that the fact that this is an `Option` is a bug, but a
1830    // longstanding bug, in Cargo. Recent refactorings just made it painfully
1831    // obvious.
1832    let pkg_root = unit.pkg.root().to_path_buf();
1833    let build_dir = build_root(build_runner);
1834    let env_config = Arc::clone(build_runner.bcx.gctx.env_config()?);
1835    let calculate =
1836        move |deps: &BuildDeps, pkg_fingerprint: Option<&dyn Fn() -> CargoResult<String>>| {
1837            if deps.rerun_if_changed.is_empty() && deps.rerun_if_env_changed.is_empty() {
1838                match pkg_fingerprint {
1839                    // FIXME: this is somewhat buggy with respect to docker and
1840                    // weird filesystems. The `Precalculated` variant
1841                    // constructed below will, for `path` dependencies, contain
1842                    // a stringified version of the mtime for the local crate.
1843                    // This violates one of the things we describe in this
1844                    // module's doc comment, never hashing mtimes. We should
1845                    // figure out a better scheme where a package fingerprint
1846                    // may be a string (like for a registry) or a list of files
1847                    // (like for a path dependency). Those list of files would
1848                    // be stored here rather than the mtime of them.
1849                    Some(f) => {
1850                        let s = f()?;
1851                        debug!(
1852                            "old local fingerprints deps {:?} precalculated={:?}",
1853                            pkg_root, s
1854                        );
1855                        return Ok(Some(vec![LocalFingerprint::Precalculated(s)]));
1856                    }
1857                    None => return Ok(None),
1858                }
1859            }
1860
1861            // Ok so now we're in "new mode" where we can have files listed as
1862            // dependencies as well as env vars listed as dependencies. Process
1863            // them all here.
1864            Ok(Some(local_fingerprints_deps(
1865                deps,
1866                &build_dir,
1867                &pkg_root,
1868                &env_config,
1869            )))
1870        };
1871
1872    // Note that `false` == "not overridden"
1873    Ok((Box::new(calculate), false))
1874}
1875
1876/// Create a [`LocalFingerprint`] for an overridden build script.
1877/// Returns None if it is not overridden.
1878fn build_script_override_fingerprint(
1879    build_runner: &mut BuildRunner<'_, '_>,
1880    unit: &Unit,
1881) -> Option<LocalFingerprint> {
1882    // Build script output is only populated at this stage when it is
1883    // overridden.
1884    let build_script_outputs = build_runner.build_script_outputs.lock().unwrap();
1885    let metadata = build_runner.get_run_build_script_metadata(unit);
1886    // Returns None if it is not overridden.
1887    let output = build_script_outputs.get(metadata)?;
1888    let s = format!(
1889        "overridden build state with hash: {}",
1890        util::hash_u64(output)
1891    );
1892    Some(LocalFingerprint::Precalculated(s))
1893}
1894
1895/// Compute the [`LocalFingerprint`] values for a [`RunCustomBuild`] unit for
1896/// non-overridden new-style build scripts only. This is only used when `deps`
1897/// is already known to have a nonempty `rerun-if-*` somewhere.
1898///
1899/// [`RunCustomBuild`]: crate::compiler::CompileMode::RunCustomBuild
1900fn local_fingerprints_deps(
1901    deps: &BuildDeps,
1902    build_root: &Path,
1903    pkg_root: &Path,
1904    env_config: &Arc<HashMap<String, OsString>>,
1905) -> Vec<LocalFingerprint> {
1906    debug!("new local fingerprints deps {:?}", pkg_root);
1907    let mut local = Vec::new();
1908
1909    if !deps.rerun_if_changed.is_empty() {
1910        // Note that like the module comment above says we are careful to never
1911        // store an absolute path in `LocalFingerprint`, so ensure that we strip
1912        // absolute prefixes from them.
1913        let output = deps
1914            .build_script_output
1915            .strip_prefix(build_root)
1916            .unwrap()
1917            .to_path_buf();
1918        let paths = deps
1919            .rerun_if_changed
1920            .iter()
1921            .map(|p| p.strip_prefix(pkg_root).unwrap_or(p).to_path_buf())
1922            .collect();
1923        local.push(LocalFingerprint::RerunIfChanged { output, paths });
1924    }
1925
1926    local.extend(
1927        deps.rerun_if_env_changed
1928            .iter()
1929            .map(|s| LocalFingerprint::from_env(s, env_config)),
1930    );
1931
1932    local
1933}
1934
1935/// Writes the short fingerprint hash value to `<loc>`
1936/// and logs detailed JSON information to `<loc>.json`.
1937fn write_fingerprint(loc: &Path, fingerprint: &Fingerprint) -> CargoResult<()> {
1938    debug_assert_ne!(fingerprint.rustc, 0);
1939    // fingerprint::new().rustc == 0, make sure it doesn't make it to the file system.
1940    // This is mostly so outside tools can reliably find out what rust version this file is for,
1941    // as we can use the full hash.
1942    let hash = fingerprint.hash_u64();
1943    debug!("write fingerprint ({:x}) : {}", hash, loc.display());
1944    paths::write(loc, util::to_hex(hash).as_bytes())?;
1945
1946    let json = serde_json::to_string(fingerprint).unwrap();
1947    if cfg!(debug_assertions) {
1948        let f: Fingerprint = serde_json::from_str(&json).unwrap();
1949        assert_eq!(f.hash_u64(), hash);
1950    }
1951    paths::write(&loc.with_extension("json"), json.as_bytes())?;
1952    Ok(())
1953}
1954
1955/// Prepare for work when a package starts to build
1956pub fn prepare_init(build_runner: &mut BuildRunner<'_, '_>, unit: &Unit) -> CargoResult<()> {
1957    let new1 = build_runner.files().fingerprint_dir(unit);
1958
1959    // Doc tests have no output, thus no fingerprint.
1960    if !new1.exists() && !unit.mode.is_doc_test() {
1961        paths::create_dir_all(&new1)?;
1962    }
1963
1964    Ok(())
1965}
1966
1967/// Returns the location that the dep-info file will show up at
1968/// for the [`Unit`] specified.
1969pub fn dep_info_loc(build_runner: &mut BuildRunner<'_, '_>, unit: &Unit) -> PathBuf {
1970    build_runner.files().fingerprint_file_path(unit, "dep-")
1971}
1972
1973/// Returns an absolute path that build directory.
1974/// All paths are rewritten to be relative to this.
1975fn build_root(build_runner: &BuildRunner<'_, '_>) -> PathBuf {
1976    build_runner.bcx.ws.build_dir().into_path_unlocked()
1977}
1978
1979/// Reads the value from the old fingerprint hash file and compare.
1980///
1981/// If dirty, it then restores the detailed information
1982/// from the fingerprint JSON file, and provides an rich dirty reason.
1983fn compare_old_fingerprint(
1984    unit: &Unit,
1985    old_hash_path: &Path,
1986    new_fingerprint: &Fingerprint,
1987    mtime_on_use: bool,
1988    forced: bool,
1989) -> FingerprintComparison {
1990    if mtime_on_use {
1991        // update the mtime so other cleaners know we used it
1992        let t = FileTime::from_system_time(SystemTime::now());
1993        debug!("mtime-on-use forcing {:?} to {}", old_hash_path, t);
1994        paths::set_file_time_no_err(old_hash_path, t);
1995    }
1996
1997    let compare = _compare_old_fingerprint(old_hash_path, new_fingerprint);
1998
1999    match compare.as_ref() {
2000        Ok(FingerprintComparison::Fresh) => {}
2001        Ok(FingerprintComparison::Dirty { reason }) => {
2002            info!(
2003                "fingerprint dirty for {}/{:?}/{:?}",
2004                unit.pkg, unit.mode, unit.target,
2005            );
2006            info!("    dirty: {reason:?}");
2007        }
2008        Err(e) => {
2009            info!(
2010                "fingerprint error for {}/{:?}/{:?}",
2011                unit.pkg, unit.mode, unit.target,
2012            );
2013            info!("    err: {e:?}");
2014        }
2015    }
2016
2017    match compare {
2018        Ok(FingerprintComparison::Fresh) if forced => FingerprintComparison::Dirty {
2019            reason: DirtyReason::Forced,
2020        },
2021        Ok(cmp) => cmp,
2022        Err(_) => FingerprintComparison::Dirty {
2023            reason: DirtyReason::FreshBuild,
2024        },
2025    }
2026}
2027
2028fn _compare_old_fingerprint(
2029    old_hash_path: &Path,
2030    new_fingerprint: &Fingerprint,
2031) -> CargoResult<FingerprintComparison> {
2032    let old_fingerprint_short = paths::read(old_hash_path)?;
2033
2034    let new_hash = new_fingerprint.hash_u64();
2035
2036    if util::to_hex(new_hash) == old_fingerprint_short && new_fingerprint.fs_status.up_to_date() {
2037        return Ok(FingerprintComparison::Fresh);
2038    }
2039
2040    let old_fingerprint_json = paths::read(&old_hash_path.with_extension("json"))?;
2041    let old_fingerprint: Fingerprint = serde_json::from_str(&old_fingerprint_json)
2042        .with_context(|| internal("failed to deserialize json"))?;
2043    // Fingerprint can be empty after a failed rebuild (see comment in prepare_target).
2044    if !old_fingerprint_short.is_empty() {
2045        debug_assert_eq!(
2046            util::to_hex(old_fingerprint.hash_u64()),
2047            old_fingerprint_short
2048        );
2049    }
2050
2051    let reason = new_fingerprint.compare(&old_fingerprint);
2052    Ok(FingerprintComparison::Dirty { reason })
2053}
2054
2055/// Calculates the fingerprint of a unit thats contains no dep-info files.
2056fn pkg_fingerprint(bcx: &BuildContext<'_, '_>, pkg: &Package) -> CargoResult<String> {
2057    let source_id = pkg.package_id().source_id();
2058    let sources = bcx.packages.sources();
2059
2060    let source = sources
2061        .get(source_id)
2062        .ok_or_else(|| internal("missing package source"))?;
2063    source.fingerprint(pkg)
2064}
2065
2066/// The `reference` file is considered as "stale" if any file from `paths` has a newer mtime.
2067fn find_stale_file<I, P>(
2068    mtime_cache: &mut HashMap<PathBuf, FileTime>,
2069    checksum_cache: &mut HashMap<PathBuf, Checksum>,
2070    reference: &Path,
2071    paths: I,
2072    use_checksums: bool,
2073) -> Option<StaleItem>
2074where
2075    I: IntoIterator<Item = (P, Option<(u64, Checksum)>)>,
2076    P: AsRef<Path>,
2077{
2078    let reference_mtime = match paths::mtime(reference) {
2079        Ok(mtime) => mtime,
2080        Err(..) => {
2081            return Some(StaleItem::MissingFile {
2082                path: reference.to_path_buf(),
2083            });
2084        }
2085    };
2086
2087    let skippable_dirs = if let Ok(cargo_home) = home::cargo_home() {
2088        let skippable_dirs: Vec<_> = ["git", "registry"]
2089            .into_iter()
2090            .map(|subfolder| cargo_home.join(subfolder))
2091            .collect();
2092        Some(skippable_dirs)
2093    } else {
2094        None
2095    };
2096    for (path, prior_checksum) in paths {
2097        let path = path.as_ref();
2098
2099        // Assuming anything in cargo_home/{git, registry} is immutable
2100        // (see also #9455 about marking the src directory readonly) which avoids rebuilds when CI
2101        // caches $CARGO_HOME/registry/{index, cache} and $CARGO_HOME/git/db across runs, keeping
2102        // the content the same but changing the mtime.
2103        if let Some(ref skippable_dirs) = skippable_dirs {
2104            if skippable_dirs.iter().any(|dir| path.starts_with(dir)) {
2105                continue;
2106            }
2107        }
2108        if use_checksums {
2109            let Some((file_len, prior_checksum)) = prior_checksum else {
2110                return Some(StaleItem::MissingChecksum {
2111                    path: path.to_path_buf(),
2112                });
2113            };
2114            let path_buf = path.to_path_buf();
2115
2116            let path_checksum = match checksum_cache.entry(path_buf) {
2117                Entry::Occupied(o) => *o.get(),
2118                Entry::Vacant(v) => {
2119                    let Ok(current_file_len) = fs::metadata(&path).map(|m| m.len()) else {
2120                        return Some(StaleItem::FailedToReadMetadata {
2121                            path: path.to_path_buf(),
2122                        });
2123                    };
2124                    if current_file_len != file_len {
2125                        return Some(StaleItem::FileSizeChanged {
2126                            path: path.to_path_buf(),
2127                            new_size: current_file_len,
2128                            old_size: file_len,
2129                        });
2130                    }
2131                    let Ok(file) = File::open(path) else {
2132                        return Some(StaleItem::MissingFile {
2133                            path: path.to_path_buf(),
2134                        });
2135                    };
2136                    let Ok(checksum) = Checksum::compute(prior_checksum.algo(), file) else {
2137                        return Some(StaleItem::UnableToReadFile {
2138                            path: path.to_path_buf(),
2139                        });
2140                    };
2141                    *v.insert(checksum)
2142                }
2143            };
2144            if path_checksum == prior_checksum {
2145                continue;
2146            }
2147            return Some(StaleItem::ChangedChecksum {
2148                source: path.to_path_buf(),
2149                stored_checksum: prior_checksum,
2150                new_checksum: path_checksum,
2151            });
2152        } else {
2153            let path_mtime = match mtime_cache.entry(path.to_path_buf()) {
2154                Entry::Occupied(o) => *o.get(),
2155                Entry::Vacant(v) => {
2156                    let Ok(mtime) = paths::mtime_recursive(path) else {
2157                        return Some(StaleItem::MissingFile {
2158                            path: path.to_path_buf(),
2159                        });
2160                    };
2161                    *v.insert(mtime)
2162                }
2163            };
2164
2165            // TODO: fix #5918.
2166            // Note that equal mtimes should be considered "stale". For filesystems with
2167            // not much timestamp precision like 1s this is would be a conservative approximation
2168            // to handle the case where a file is modified within the same second after
2169            // a build starts. We want to make sure that incremental rebuilds pick that up!
2170            //
2171            // For filesystems with nanosecond precision it's been seen in the wild that
2172            // its "nanosecond precision" isn't really nanosecond-accurate. It turns out that
2173            // kernels may cache the current time so files created at different times actually
2174            // list the same nanosecond precision. Some digging on #5919 picked up that the
2175            // kernel caches the current time between timer ticks, which could mean that if
2176            // a file is updated at most 10ms after a build starts then Cargo may not
2177            // pick up the build changes.
2178            //
2179            // All in all, an equality check here would be a conservative assumption that,
2180            // if equal, files were changed just after a previous build finished.
2181            // Unfortunately this became problematic when (in #6484) cargo switch to more accurately
2182            // measuring the start time of builds.
2183            if path_mtime <= reference_mtime {
2184                continue;
2185            }
2186
2187            return Some(StaleItem::ChangedFile {
2188                reference: reference.to_path_buf(),
2189                reference_mtime,
2190                stale: path.to_path_buf(),
2191                stale_mtime: path_mtime,
2192            });
2193        }
2194    }
2195
2196    debug!(
2197        "all paths up-to-date relative to {:?} mtime={}",
2198        reference, reference_mtime
2199    );
2200    None
2201}