]> git.lizzy.rs Git - rust.git/blob - cargo-miri/bin.rs
Auto merge of #2179 - RalfJung:rustc, r=oli-obk
[rust.git] / cargo-miri / bin.rs
1 #![allow(clippy::useless_format, clippy::derive_partial_eq_without_eq)]
2
3 mod version;
4
5 use std::env;
6 use std::ffi::{OsStr, OsString};
7 use std::fmt::Write as _;
8 use std::fs::{self, File};
9 use std::io::{self, BufRead, BufReader, BufWriter, Read, Write};
10 use std::iter::TakeWhile;
11 use std::ops::Not;
12 use std::path::{Path, PathBuf};
13 use std::process::{self, Command};
14
15 use rustc_version::VersionMeta;
16 use serde::{Deserialize, Serialize};
17
18 use version::*;
19
20 const CARGO_MIRI_HELP: &str = r#"Runs binary crates and tests in Miri
21
22 Usage:
23     cargo miri [subcommand] [<cargo options>...] [--] [<program/test suite options>...]
24
25 Subcommands:
26     run, r                   Run binaries
27     test, t                  Run tests
28     setup                    Only perform automatic setup, but without asking questions (for getting a proper libstd)
29
30 The cargo options are exactly the same as for `cargo run` and `cargo test`, respectively.
31
32 Examples:
33     cargo miri run
34     cargo miri test -- test-suite-filter
35 "#;
36
37 #[derive(Copy, Clone, Debug, PartialEq, Eq)]
38 enum MiriCommand {
39     Run,
40     Test,
41     Setup,
42 }
43
44 /// The information to run a crate with the given environment.
45 #[derive(Serialize, Deserialize)]
46 struct CrateRunEnv {
47     /// The command-line arguments.
48     args: Vec<String>,
49     /// The environment.
50     env: Vec<(OsString, OsString)>,
51     /// The current working directory.
52     current_dir: OsString,
53     /// The contents passed via standard input.
54     stdin: Vec<u8>,
55 }
56
57 impl CrateRunEnv {
58     /// Gather all the information we need.
59     fn collect(args: env::Args, capture_stdin: bool) -> Self {
60         let args = args.collect();
61         let env = env::vars_os().collect();
62         let current_dir = env::current_dir().unwrap().into_os_string();
63
64         let mut stdin = Vec::new();
65         if capture_stdin {
66             std::io::stdin().lock().read_to_end(&mut stdin).expect("cannot read stdin");
67         }
68
69         CrateRunEnv { args, env, current_dir, stdin }
70     }
71 }
72
73 /// The information Miri needs to run a crate. Stored as JSON when the crate is "compiled".
74 #[derive(Serialize, Deserialize)]
75 enum CrateRunInfo {
76     /// Run it with the given environment.
77     RunWith(CrateRunEnv),
78     /// Skip it as Miri does not support interpreting such kind of crates.
79     SkipProcMacroTest,
80 }
81
82 impl CrateRunInfo {
83     fn store(&self, filename: &Path) {
84         let file = File::create(filename)
85             .unwrap_or_else(|_| show_error(format!("cannot create `{}`", filename.display())));
86         let file = BufWriter::new(file);
87         serde_json::ser::to_writer(file, self)
88             .unwrap_or_else(|_| show_error(format!("cannot write to `{}`", filename.display())));
89     }
90 }
91
92 fn show_help() {
93     println!("{}", CARGO_MIRI_HELP);
94 }
95
96 fn show_version() {
97     let mut version = format!("miri {}", env!("CARGO_PKG_VERSION"));
98     // Only use `option_env` on vergen variables to ensure the build succeeds
99     // when vergen failed to find the git info.
100     if let Some(sha) = option_env!("VERGEN_GIT_SHA_SHORT") {
101         // This `unwrap` can never fail because if VERGEN_GIT_SHA_SHORT exists, then so does
102         // VERGEN_GIT_COMMIT_DATE.
103         #[allow(clippy::option_env_unwrap)]
104         write!(&mut version, " ({} {})", sha, option_env!("VERGEN_GIT_COMMIT_DATE").unwrap())
105             .unwrap();
106     }
107     println!("{}", version);
108 }
109
110 fn show_error(msg: String) -> ! {
111     eprintln!("fatal error: {}", msg);
112     std::process::exit(1)
113 }
114
115 // Determines whether a `--flag` is present.
116 fn has_arg_flag(name: &str) -> bool {
117     let mut args = std::env::args().take_while(|val| val != "--");
118     args.any(|val| val == name)
119 }
120
121 /// Yields all values of command line flag `name` as `Ok(arg)`, and all other arguments except
122 /// the flag as `Err(arg)`. (The flag `name` itself is not yielded at all, only its values are.)
123 struct ArgSplitFlagValue<'a, I> {
124     args: TakeWhile<I, fn(&String) -> bool>,
125     name: &'a str,
126 }
127
128 impl<'a, I: Iterator<Item = String>> ArgSplitFlagValue<'a, I> {
129     fn new(args: I, name: &'a str) -> Self {
130         Self {
131             // Stop searching at `--`.
132             args: args.take_while(|val| val != "--"),
133             name,
134         }
135     }
136 }
137
138 impl<I: Iterator<Item = String>> Iterator for ArgSplitFlagValue<'_, I> {
139     type Item = Result<String, String>;
140
141     fn next(&mut self) -> Option<Self::Item> {
142         let arg = self.args.next()?;
143         if let Some(suffix) = arg.strip_prefix(self.name) {
144             // Strip leading `name`.
145             if suffix.is_empty() {
146                 // This argument is exactly `name`; the next one is the value.
147                 return self.args.next().map(Ok);
148             } else if let Some(suffix) = suffix.strip_prefix('=') {
149                 // This argument is `name=value`; get the value.
150                 return Some(Ok(suffix.to_owned()));
151             }
152         }
153         Some(Err(arg))
154     }
155 }
156
157 /// Yields all values of command line flag `name`.
158 struct ArgFlagValueIter<'a>(ArgSplitFlagValue<'a, env::Args>);
159
160 impl<'a> ArgFlagValueIter<'a> {
161     fn new(name: &'a str) -> Self {
162         Self(ArgSplitFlagValue::new(env::args(), name))
163     }
164 }
165
166 impl Iterator for ArgFlagValueIter<'_> {
167     type Item = String;
168
169     fn next(&mut self) -> Option<Self::Item> {
170         loop {
171             if let Ok(value) = self.0.next()? {
172                 return Some(value);
173             }
174         }
175     }
176 }
177
178 /// Gets the value of a `--flag`.
179 fn get_arg_flag_value(name: &str) -> Option<String> {
180     ArgFlagValueIter::new(name).next()
181 }
182
183 fn forward_patched_extern_arg(args: &mut impl Iterator<Item = String>, cmd: &mut Command) {
184     cmd.arg("--extern"); // always forward flag, but adjust filename:
185     let path = args.next().expect("`--extern` should be followed by a filename");
186     if let Some(lib) = path.strip_suffix(".rlib") {
187         // If this is an rlib, make it an rmeta.
188         cmd.arg(format!("{}.rmeta", lib));
189     } else {
190         // Some other extern file (e.g. a `.so`). Forward unchanged.
191         cmd.arg(path);
192     }
193 }
194
195 fn forward_miri_sysroot(cmd: &mut Command) {
196     let sysroot = env::var_os("MIRI_SYSROOT").expect("the wrapper should have set MIRI_SYSROOT");
197     cmd.arg("--sysroot");
198     cmd.arg(sysroot);
199 }
200
201 /// Returns the path to the `miri` binary
202 fn find_miri() -> PathBuf {
203     if let Some(path) = env::var_os("MIRI") {
204         return path.into();
205     }
206     let mut path = std::env::current_exe().expect("current executable path invalid");
207     path.set_file_name("miri");
208     path
209 }
210
211 fn miri() -> Command {
212     Command::new(find_miri())
213 }
214
215 fn version_info() -> VersionMeta {
216     VersionMeta::for_command(miri()).expect("failed to determine underlying rustc version of Miri")
217 }
218
219 fn cargo() -> Command {
220     Command::new(env::var_os("CARGO").unwrap_or_else(|| OsString::from("cargo")))
221 }
222
223 fn xargo_check() -> Command {
224     Command::new(env::var_os("XARGO_CHECK").unwrap_or_else(|| OsString::from("xargo-check")))
225 }
226
227 /// Execute the command. If it fails, fail this process with the same exit code.
228 /// Otherwise, continue.
229 fn exec(mut cmd: Command) {
230     let exit_status = cmd.status().expect("failed to run command");
231     if exit_status.success().not() {
232         std::process::exit(exit_status.code().unwrap_or(-1))
233     }
234 }
235
236 /// Execute the command and pipe `input` into its stdin.
237 /// If it fails, fail this process with the same exit code.
238 /// Otherwise, continue.
239 fn exec_with_pipe(mut cmd: Command, input: &[u8]) {
240     cmd.stdin(process::Stdio::piped());
241     let mut child = cmd.spawn().expect("failed to spawn process");
242     {
243         let stdin = child.stdin.as_mut().expect("failed to open stdin");
244         stdin.write_all(input).expect("failed to write out test source");
245     }
246     let exit_status = child.wait().expect("failed to run command");
247     if exit_status.success().not() {
248         std::process::exit(exit_status.code().unwrap_or(-1))
249     }
250 }
251
252 fn xargo_version() -> Option<(u32, u32, u32)> {
253     let out = xargo_check().arg("--version").output().ok()?;
254     if !out.status.success() {
255         return None;
256     }
257     // Parse output. The first line looks like "xargo 0.3.12 (b004f1c 2018-12-13)".
258     let line = out
259         .stderr
260         .lines()
261         .next()
262         .expect("malformed `xargo --version` output: not at least one line")
263         .expect("malformed `xargo --version` output: error reading first line");
264     let (name, version) = {
265         let mut split = line.split(' ');
266         (
267             split.next().expect("malformed `xargo --version` output: empty"),
268             split.next().expect("malformed `xargo --version` output: not at least two words"),
269         )
270     };
271     if name != "xargo" {
272         // This is some fork of xargo
273         return None;
274     }
275     let mut version_pieces = version.split('.');
276     let major = version_pieces
277         .next()
278         .expect("malformed `xargo --version` output: not a major version piece")
279         .parse()
280         .expect("malformed `xargo --version` output: major version is not an integer");
281     let minor = version_pieces
282         .next()
283         .expect("malformed `xargo --version` output: not a minor version piece")
284         .parse()
285         .expect("malformed `xargo --version` output: minor version is not an integer");
286     let patch = version_pieces
287         .next()
288         .expect("malformed `xargo --version` output: not a patch version piece")
289         .parse()
290         .expect("malformed `xargo --version` output: patch version is not an integer");
291     if version_pieces.next().is_some() {
292         panic!("malformed `xargo --version` output: more than three pieces in version");
293     }
294     Some((major, minor, patch))
295 }
296
297 fn ask_to_run(mut cmd: Command, ask: bool, text: &str) {
298     // Disable interactive prompts in CI (GitHub Actions, Travis, AppVeyor, etc).
299     // Azure doesn't set `CI` though (nothing to see here, just Microsoft being Microsoft),
300     // so we also check their `TF_BUILD`.
301     let is_ci = env::var_os("CI").is_some() || env::var_os("TF_BUILD").is_some();
302     if ask && !is_ci {
303         let mut buf = String::new();
304         print!("I will run `{:?}` to {}. Proceed? [Y/n] ", cmd, text);
305         io::stdout().flush().unwrap();
306         io::stdin().read_line(&mut buf).unwrap();
307         match buf.trim().to_lowercase().as_ref() {
308             // Proceed.
309             "" | "y" | "yes" => {}
310             "n" | "no" => show_error(format!("aborting as per your request")),
311             a => show_error(format!("invalid answer `{}`", a)),
312         };
313     } else {
314         println!("Running `{:?}` to {}.", cmd, text);
315     }
316
317     if cmd.status().unwrap_or_else(|_| panic!("failed to execute {:?}", cmd)).success().not() {
318         show_error(format!("failed to {}", text));
319     }
320 }
321
322 /// Performs the setup required to make `cargo miri` work: Getting a custom-built libstd. Then sets
323 /// `MIRI_SYSROOT`. Skipped if `MIRI_SYSROOT` is already set, in which case we expect the user has
324 /// done all this already.
325 fn setup(subcommand: MiriCommand) {
326     if std::env::var_os("MIRI_SYSROOT").is_some() {
327         if subcommand == MiriCommand::Setup {
328             println!("WARNING: MIRI_SYSROOT already set, not doing anything.")
329         }
330         return;
331     }
332
333     // Subcommands other than `setup` will do a setup if necessary, but
334     // interactively confirm first.
335     let ask_user = subcommand != MiriCommand::Setup;
336
337     // First, we need xargo.
338     if xargo_version().map_or(true, |v| v < XARGO_MIN_VERSION) {
339         if std::env::var_os("XARGO_CHECK").is_some() {
340             // The user manually gave us a xargo binary; don't do anything automatically.
341             show_error(format!("xargo is too old; please upgrade to the latest version"))
342         }
343         let mut cmd = cargo();
344         cmd.args(&["install", "xargo"]);
345         ask_to_run(cmd, ask_user, "install a recent enough xargo");
346     }
347
348     // Determine where the rust sources are located.  The env vars manually setting the source
349     // (`MIRI_LIB_SRC`, `XARGO_RUST_SRC`) trump auto-detection.
350     let rust_src_env_var =
351         std::env::var_os("MIRI_LIB_SRC").or_else(|| std::env::var_os("XARGO_RUST_SRC"));
352     let rust_src = match rust_src_env_var {
353         Some(path) => {
354             let path = PathBuf::from(path);
355             // Make path absolute if possible.
356             path.canonicalize().unwrap_or(path)
357         }
358         None => {
359             // Check for `rust-src` rustup component.
360             let sysroot = miri()
361                 .args(&["--print", "sysroot"])
362                 .output()
363                 .expect("failed to determine sysroot")
364                 .stdout;
365             let sysroot = std::str::from_utf8(&sysroot).unwrap();
366             let sysroot = Path::new(sysroot.trim_end_matches('\n'));
367             // Check for `$SYSROOT/lib/rustlib/src/rust/library`; test if that contains `std/Cargo.toml`.
368             let rustup_src =
369                 sysroot.join("lib").join("rustlib").join("src").join("rust").join("library");
370             if !rustup_src.join("std").join("Cargo.toml").exists() {
371                 // Ask the user to install the `rust-src` component, and use that.
372                 let mut cmd = Command::new("rustup");
373                 cmd.args(&["component", "add", "rust-src"]);
374                 ask_to_run(
375                     cmd,
376                     ask_user,
377                     "install the `rust-src` component for the selected toolchain",
378                 );
379             }
380             rustup_src
381         }
382     };
383     if !rust_src.exists() {
384         show_error(format!("given Rust source directory `{}` does not exist.", rust_src.display()));
385     }
386     if rust_src.file_name().and_then(OsStr::to_str) != Some("library") {
387         show_error(format!(
388             "given Rust source directory `{}` does not seem to be the `library` subdirectory of \
389              a Rust source checkout.",
390             rust_src.display()
391         ));
392     }
393
394     // Next, we need our own libstd. Prepare a xargo project for that purpose.
395     // We will do this work in whatever is a good cache dir for this platform.
396     let dirs = directories::ProjectDirs::from("org", "rust-lang", "miri").unwrap();
397     let dir = dirs.cache_dir();
398     if !dir.exists() {
399         fs::create_dir_all(&dir).unwrap();
400     }
401     // The interesting bit: Xargo.toml
402     File::create(dir.join("Xargo.toml"))
403         .unwrap()
404         .write_all(
405             br#"
406 [dependencies.std]
407 default_features = false
408 # We support unwinding, so enable that panic runtime.
409 features = ["panic_unwind", "backtrace"]
410
411 [dependencies.test]
412 "#,
413         )
414         .unwrap();
415     // The boring bits: a dummy project for xargo.
416     // FIXME: With xargo-check, can we avoid doing this?
417     File::create(dir.join("Cargo.toml"))
418         .unwrap()
419         .write_all(
420             br#"
421 [package]
422 name = "miri-xargo"
423 description = "A dummy project for building libstd with xargo."
424 version = "0.0.0"
425
426 [lib]
427 path = "lib.rs"
428 "#,
429         )
430         .unwrap();
431     File::create(dir.join("lib.rs")).unwrap();
432
433     // Determine architectures.
434     // We always need to set a target so rustc bootstrap can tell apart host from target crates.
435     let host = version_info().host;
436     let target = get_arg_flag_value("--target");
437     let target = target.as_ref().unwrap_or(&host);
438     // Now invoke xargo.
439     let mut command = xargo_check();
440     command.arg("check").arg("-q");
441     command.arg("--target").arg(target);
442     command.current_dir(&dir);
443     command.env("XARGO_HOME", &dir);
444     command.env("XARGO_RUST_SRC", &rust_src);
445     // Use Miri as rustc to build a libstd compatible with us (and use the right flags).
446     // However, when we are running in bootstrap, we cannot just overwrite `RUSTC`,
447     // because we still need bootstrap to distinguish between host and target crates.
448     // In that case we overwrite `RUSTC_REAL` instead which determines the rustc used
449     // for target crates.
450     // We set ourselves (`cargo-miri`) instead of Miri directly to be able to patch the flags
451     // for `libpanic_abort` (usually this is done by bootstrap but we have to do it ourselves).
452     // The `MIRI_CALLED_FROM_XARGO` will mean we dispatch to `phase_setup_rustc`.
453     let cargo_miri_path = std::env::current_exe().expect("current executable path invalid");
454     if env::var_os("RUSTC_STAGE").is_some() {
455         command.env("RUSTC_REAL", &cargo_miri_path);
456     } else {
457         command.env("RUSTC", &cargo_miri_path);
458     }
459     command.env("MIRI_CALLED_FROM_XARGO", "1");
460     // Make sure there are no other wrappers or flags getting in our way
461     // (Cc https://github.com/rust-lang/miri/issues/1421).
462     // This is consistent with normal `cargo build` that does not apply `RUSTFLAGS`
463     // to the sysroot either.
464     command.env_remove("RUSTC_WRAPPER");
465     command.env_remove("RUSTFLAGS");
466     // Disable debug assertions in the standard library -- Miri is already slow enough.
467     // But keep the overflow checks, they are cheap.
468     command.env("RUSTFLAGS", "-Cdebug-assertions=off -Coverflow-checks=on");
469     // Finally run it!
470     if command.status().expect("failed to run xargo").success().not() {
471         show_error(format!("failed to run xargo"));
472     }
473
474     // That should be it! But we need to figure out where xargo built stuff.
475     // Unfortunately, it puts things into a different directory when the
476     // architecture matches the host.
477     let sysroot = if target == &host { dir.join("HOST") } else { PathBuf::from(dir) };
478     std::env::set_var("MIRI_SYSROOT", &sysroot); // pass the env var to the processes we spawn, which will turn it into "--sysroot" flags
479     // Figure out what to print.
480     let print_sysroot = subcommand == MiriCommand::Setup && has_arg_flag("--print-sysroot"); // whether we just print the sysroot path
481     if print_sysroot {
482         // Print just the sysroot and nothing else; this way we do not need any escaping.
483         println!("{}", sysroot.display());
484     } else if subcommand == MiriCommand::Setup {
485         println!("A libstd for Miri is now available in `{}`.", sysroot.display());
486     }
487 }
488
489 #[derive(Deserialize)]
490 struct Metadata {
491     target_directory: PathBuf,
492     workspace_members: Vec<String>,
493 }
494
495 fn get_cargo_metadata() -> Metadata {
496     let mut cmd = cargo();
497     // `-Zunstable-options` is required by `--config`.
498     cmd.args(["metadata", "--no-deps", "--format-version=1", "-Zunstable-options"]);
499     // The `build.target-dir` config can be passed by `--config` flags, so forward them to
500     // `cargo metadata`.
501     let config_flag = "--config";
502     for arg in ArgSplitFlagValue::new(
503         env::args().skip(3), // skip the program name, "miri" and "run" / "test"
504         config_flag,
505     )
506     // Only look at `Ok`
507     .flatten()
508     {
509         cmd.arg(config_flag).arg(arg);
510     }
511     let mut child = cmd
512         .stdin(process::Stdio::null())
513         .stdout(process::Stdio::piped())
514         .spawn()
515         .expect("failed ro run `cargo metadata`");
516     // Check this `Result` after `status.success()` is checked, so we don't print the error
517     // to stderr if `cargo metadata` is also printing to stderr.
518     let metadata: Result<Metadata, _> = serde_json::from_reader(child.stdout.take().unwrap());
519     let status = child.wait().expect("failed to wait for `cargo metadata` to exit");
520     if !status.success() {
521         std::process::exit(status.code().unwrap_or(-1));
522     }
523     metadata.unwrap_or_else(|e| show_error(format!("invalid `cargo metadata` output: {}", e)))
524 }
525
526 /// Pulls all the crates in this workspace from the cargo metadata.
527 /// Workspace members are emitted like "miri 0.1.0 (path+file:///path/to/miri)"
528 /// Additionally, somewhere between cargo metadata and TyCtxt, '-' gets replaced with '_' so we
529 /// make that same transformation here.
530 fn local_crates(metadata: &Metadata) -> String {
531     assert!(!metadata.workspace_members.is_empty());
532     let mut local_crates = String::new();
533     for member in &metadata.workspace_members {
534         let name = member.split(' ').next().unwrap();
535         let name = name.replace('-', "_");
536         local_crates.push_str(&name);
537         local_crates.push(',');
538     }
539     local_crates.pop(); // Remove the trailing ','
540
541     local_crates
542 }
543
544 fn phase_cargo_miri(mut args: env::Args) {
545     // Check for version and help flags even when invoked as `cargo-miri`.
546     if has_arg_flag("--help") || has_arg_flag("-h") {
547         show_help();
548         return;
549     }
550     if has_arg_flag("--version") || has_arg_flag("-V") {
551         show_version();
552         return;
553     }
554
555     // Require a subcommand before any flags.
556     // We cannot know which of those flags take arguments and which do not,
557     // so we cannot detect subcommands later.
558     let subcommand = match args.next().as_deref() {
559         Some("test" | "t") => MiriCommand::Test,
560         Some("run" | "r") => MiriCommand::Run,
561         Some("setup") => MiriCommand::Setup,
562         // Invalid command.
563         _ =>
564             show_error(format!(
565                 "`cargo miri` supports the following subcommands: `run`, `test`, and `setup`."
566             )),
567     };
568     let verbose = has_arg_flag("-v");
569
570     // We always setup.
571     setup(subcommand);
572
573     // Invoke actual cargo for the job, but with different flags.
574     // We re-use `cargo test` and `cargo run`, which makes target and binary handling very easy but
575     // requires some extra work to make the build check-only (see all the `--emit` hacks below).
576     // <https://github.com/rust-lang/miri/pull/1540#issuecomment-693553191> describes an alternative
577     // approach that uses `cargo check`, making that part easier but target and binary handling
578     // harder.
579     let cargo_miri_path = std::env::current_exe().expect("current executable path invalid");
580     let cargo_cmd = match subcommand {
581         MiriCommand::Test => "test",
582         MiriCommand::Run => "run",
583         MiriCommand::Setup => return, // `cargo miri setup` stops here.
584     };
585     let mut cmd = cargo();
586     cmd.arg(cargo_cmd);
587
588     // Make sure we know the build target, and cargo does, too.
589     // This is needed to make the `CARGO_TARGET_*_RUNNER` env var do something,
590     // and it later helps us detect which crates are proc-macro/build-script
591     // (host crates) and which crates are needed for the program itself.
592     let host = version_info().host;
593     let target = get_arg_flag_value("--target");
594     let target = if let Some(ref target) = target {
595         target
596     } else {
597         // No target given. Pick default and tell cargo about it.
598         cmd.arg("--target");
599         cmd.arg(&host);
600         &host
601     };
602
603     let mut target_dir = None;
604
605     // Forward all arguments before `--` other than `--target-dir` and its value to Cargo.
606     for arg in ArgSplitFlagValue::new(&mut args, "--target-dir") {
607         match arg {
608             Ok(value) => {
609                 if target_dir.is_some() {
610                     show_error(format!("`--target-dir` is provided more than once"));
611                 }
612                 target_dir = Some(value.into());
613             }
614             Err(arg) => {
615                 cmd.arg(arg);
616             }
617         }
618     }
619
620     let metadata = get_cargo_metadata();
621
622     // Detect the target directory if it's not specified via `--target-dir`.
623     let target_dir = target_dir.get_or_insert_with(|| metadata.target_directory.clone());
624
625     // Set `--target-dir` to `miri` inside the original target directory.
626     target_dir.push("miri");
627     cmd.arg("--target-dir").arg(target_dir);
628
629     // Forward all further arguments after `--` to cargo.
630     cmd.arg("--").args(args);
631
632     // Set `RUSTC_WRAPPER` to ourselves.  Cargo will prepend that binary to its usual invocation,
633     // i.e., the first argument is `rustc` -- which is what we use in `main` to distinguish
634     // the two codepaths. (That extra argument is why we prefer this over setting `RUSTC`.)
635     if env::var_os("RUSTC_WRAPPER").is_some() {
636         println!(
637             "WARNING: Ignoring `RUSTC_WRAPPER` environment variable, Miri does not support wrapping."
638         );
639     }
640     cmd.env("RUSTC_WRAPPER", &cargo_miri_path);
641
642     let runner_env_name =
643         |triple: &str| format!("CARGO_TARGET_{}_RUNNER", triple.to_uppercase().replace('-', "_"));
644     let host_runner_env_name = runner_env_name(&host);
645     let target_runner_env_name = runner_env_name(target);
646     // Set the target runner to us, so we can interpret the binaries.
647     cmd.env(&target_runner_env_name, &cargo_miri_path);
648     // Unit tests of `proc-macro` crates are run on the host, so we set the host runner to
649     // us in order to skip them.
650     cmd.env(&host_runner_env_name, &cargo_miri_path);
651
652     // Set rustdoc to us as well, so we can run doctests.
653     cmd.env("RUSTDOC", &cargo_miri_path);
654
655     cmd.env("MIRI_LOCAL_CRATES", local_crates(&metadata));
656
657     // Run cargo.
658     if verbose {
659         eprintln!("[cargo-miri miri] RUSTC_WRAPPER={:?}", cargo_miri_path);
660         eprintln!("[cargo-miri miri] {}={:?}", target_runner_env_name, cargo_miri_path);
661         if *target != host {
662             eprintln!("[cargo-miri miri] {}={:?}", host_runner_env_name, cargo_miri_path);
663         }
664         eprintln!("[cargo-miri miri] RUSTDOC={:?}", cargo_miri_path);
665         eprintln!("[cargo-miri miri] {:?}", cmd);
666         cmd.env("MIRI_VERBOSE", ""); // This makes the other phases verbose.
667     }
668     exec(cmd)
669 }
670
671 #[derive(Debug, Copy, Clone, PartialEq)]
672 enum RustcPhase {
673     /// `rustc` called via `xargo` for sysroot build.
674     Setup,
675     /// `rustc` called by `cargo` for regular build.
676     Build,
677     /// `rustc` called by `rustdoc` for doctest.
678     Rustdoc,
679 }
680
681 fn phase_rustc(mut args: env::Args, phase: RustcPhase) {
682     /// Determines if we are being invoked (as rustc) to build a crate for
683     /// the "target" architecture, in contrast to the "host" architecture.
684     /// Host crates are for build scripts and proc macros and still need to
685     /// be built like normal; target crates need to be built for or interpreted
686     /// by Miri.
687     ///
688     /// Currently, we detect this by checking for "--target=", which is
689     /// never set for host crates. This matches what rustc bootstrap does,
690     /// which hopefully makes it "reliable enough". This relies on us always
691     /// invoking cargo itself with `--target`, which `in_cargo_miri` ensures.
692     fn is_target_crate() -> bool {
693         get_arg_flag_value("--target").is_some()
694     }
695
696     /// Returns whether or not Cargo invoked the wrapper (this binary) to compile
697     /// the final, binary crate (either a test for 'cargo test', or a binary for 'cargo run')
698     /// Cargo does not give us this information directly, so we need to check
699     /// various command-line flags.
700     fn is_runnable_crate() -> bool {
701         let is_bin = get_arg_flag_value("--crate-type").as_deref().unwrap_or("bin") == "bin";
702         let is_test = has_arg_flag("--test");
703         is_bin || is_test
704     }
705
706     fn out_filename(prefix: &str, suffix: &str) -> PathBuf {
707         if let Some(out_dir) = get_arg_flag_value("--out-dir") {
708             let mut path = PathBuf::from(out_dir);
709             path.push(format!(
710                 "{}{}{}{}",
711                 prefix,
712                 get_arg_flag_value("--crate-name").unwrap(),
713                 // This is technically a `-C` flag but the prefix seems unique enough...
714                 // (and cargo passes this before the filename so it should be unique)
715                 get_arg_flag_value("extra-filename").unwrap_or_default(),
716                 suffix,
717             ));
718             path
719         } else {
720             let out_file = get_arg_flag_value("-o").unwrap();
721             PathBuf::from(out_file)
722         }
723     }
724
725     let verbose = std::env::var_os("MIRI_VERBOSE").is_some();
726     let target_crate = is_target_crate();
727     let print = get_arg_flag_value("--print").is_some() || has_arg_flag("-vV"); // whether this is cargo/xargo invoking rustc to get some infos
728
729     let store_json = |info: CrateRunInfo| {
730         // Create a stub .d file to stop Cargo from "rebuilding" the crate:
731         // https://github.com/rust-lang/miri/issues/1724#issuecomment-787115693
732         // As we store a JSON file instead of building the crate here, an empty file is fine.
733         let dep_info_name = out_filename("", ".d");
734         if verbose {
735             eprintln!("[cargo-miri rustc] writing stub dep-info to `{}`", dep_info_name.display());
736         }
737         File::create(dep_info_name).expect("failed to create fake .d file");
738
739         let filename = out_filename("", "");
740         if verbose {
741             eprintln!("[cargo-miri rustc] writing run info to `{}`", filename.display());
742         }
743         info.store(&filename);
744         // For Windows, do the same thing again with `.exe` appended to the filename.
745         // (Need to do this here as cargo moves that "binary" to a different place before running it.)
746         info.store(&out_filename("", ".exe"));
747     };
748
749     let runnable_crate = !print && is_runnable_crate();
750
751     if runnable_crate && target_crate {
752         assert!(
753             phase != RustcPhase::Setup,
754             "there should be no interpretation during sysroot build"
755         );
756         let inside_rustdoc = phase == RustcPhase::Rustdoc;
757         // This is the binary or test crate that we want to interpret under Miri.
758         // But we cannot run it here, as cargo invoked us as a compiler -- our stdin and stdout are not
759         // like we want them.
760         // Instead of compiling, we write JSON into the output file with all the relevant command-line flags
761         // and environment variables; this is used when cargo calls us again in the CARGO_TARGET_RUNNER phase.
762         let env = CrateRunEnv::collect(args, inside_rustdoc);
763
764         // Rustdoc expects us to exit with an error code if the test is marked as `compile_fail`,
765         // just creating the JSON file is not enough: we need to detect syntax errors,
766         // so we need to run Miri with `MIRI_BE_RUSTC` for a check-only build.
767         if inside_rustdoc {
768             let mut cmd = miri();
769
770             // Ensure --emit argument for a check-only build is present.
771             // We cannot use the usual helpers since we need to check specifically in `env.args`.
772             if let Some(i) = env.args.iter().position(|arg| arg.starts_with("--emit=")) {
773                 // For `no_run` tests, rustdoc passes a `--emit` flag; make sure it has the right shape.
774                 assert_eq!(env.args[i], "--emit=metadata");
775             } else {
776                 // For all other kinds of tests, we can just add our flag.
777                 cmd.arg("--emit=metadata");
778             }
779
780             cmd.args(&env.args);
781             cmd.env("MIRI_BE_RUSTC", "target");
782
783             if verbose {
784                 eprintln!(
785                     "[cargo-miri rustc] captured input:\n{}",
786                     std::str::from_utf8(&env.stdin).unwrap()
787                 );
788                 eprintln!("[cargo-miri rustc] {:?}", cmd);
789             }
790
791             exec_with_pipe(cmd, &env.stdin);
792         }
793
794         store_json(CrateRunInfo::RunWith(env));
795
796         return;
797     }
798
799     if runnable_crate && ArgFlagValueIter::new("--extern").any(|krate| krate == "proc_macro") {
800         // This is a "runnable" `proc-macro` crate (unit tests). We do not support
801         // interpreting that under Miri now, so we write a JSON file to (display a
802         // helpful message and) skip it in the runner phase.
803         store_json(CrateRunInfo::SkipProcMacroTest);
804         return;
805     }
806
807     let mut cmd = miri();
808     let mut emit_link_hack = false;
809     // Arguments are treated very differently depending on whether this crate is
810     // for interpretation by Miri, or for use by a build script / proc macro.
811     if !print && target_crate {
812         // Forward arguments, but remove "link" from "--emit" to make this a check-only build.
813         let emit_flag = "--emit";
814         while let Some(arg) = args.next() {
815             if let Some(val) = arg.strip_prefix(emit_flag) {
816                 // Patch this argument. First, extract its value.
817                 let val =
818                     val.strip_prefix('=').expect("`cargo` should pass `--emit=X` as one argument");
819                 let mut val: Vec<_> = val.split(',').collect();
820                 // Now make sure "link" is not in there, but "metadata" is.
821                 if let Some(i) = val.iter().position(|&s| s == "link") {
822                     emit_link_hack = true;
823                     val.remove(i);
824                     if !val.iter().any(|&s| s == "metadata") {
825                         val.push("metadata");
826                     }
827                 }
828                 cmd.arg(format!("{}={}", emit_flag, val.join(",")));
829             } else if arg == "--extern" {
830                 // Patch `--extern` filenames, since Cargo sometimes passes stub `.rlib` files:
831                 // https://github.com/rust-lang/miri/issues/1705
832                 forward_patched_extern_arg(&mut args, &mut cmd);
833             } else {
834                 cmd.arg(arg);
835             }
836         }
837
838         // Use our custom sysroot (but not if that is what we are currently building).
839         if phase != RustcPhase::Setup {
840             forward_miri_sysroot(&mut cmd);
841         }
842
843         // During setup, patch the panic runtime for `libpanic_abort` (mirroring what bootstrap usually does).
844         if phase == RustcPhase::Setup
845             && get_arg_flag_value("--crate-name").as_deref() == Some("panic_abort")
846         {
847             cmd.arg("-C").arg("panic=abort");
848         }
849     } else {
850         // For host crates or when we are printing, just forward everything.
851         cmd.args(args);
852     }
853
854     // We want to compile, not interpret. We still use Miri to make sure the compiler version etc
855     // are the exact same as what is used for interpretation.
856     // MIRI_DEFAULT_ARGS should not be used to build host crates, hence setting "target" or "host"
857     // as the value here to help Miri differentiate them.
858     cmd.env("MIRI_BE_RUSTC", if target_crate { "target" } else { "host" });
859
860     // Run it.
861     if verbose {
862         eprintln!("[cargo-miri rustc] {:?}", cmd);
863     }
864     exec(cmd);
865
866     // Create a stub .rlib file if "link" was requested by cargo.
867     // This is necessary to prevent cargo from doing rebuilds all the time.
868     if emit_link_hack {
869         // Some platforms prepend "lib", some do not... let's just create both files.
870         File::create(out_filename("lib", ".rlib")).expect("failed to create fake .rlib file");
871         File::create(out_filename("", ".rlib")).expect("failed to create fake .rlib file");
872         // Just in case this is a cdylib or staticlib, also create those fake files.
873         File::create(out_filename("lib", ".so")).expect("failed to create fake .so file");
874         File::create(out_filename("lib", ".a")).expect("failed to create fake .a file");
875         File::create(out_filename("lib", ".dylib")).expect("failed to create fake .dylib file");
876         File::create(out_filename("", ".dll")).expect("failed to create fake .dll file");
877         File::create(out_filename("", ".lib")).expect("failed to create fake .lib file");
878     }
879 }
880
881 #[derive(Debug, Copy, Clone, PartialEq)]
882 enum RunnerPhase {
883     /// `cargo` is running a binary
884     Cargo,
885     /// `rustdoc` is running a binary
886     Rustdoc,
887 }
888
889 fn phase_runner(binary: &Path, binary_args: env::Args, phase: RunnerPhase) {
890     let verbose = std::env::var_os("MIRI_VERBOSE").is_some();
891
892     let file = File::open(&binary)
893         .unwrap_or_else(|_| show_error(format!("file {:?} not found or `cargo-miri` invoked incorrectly; please only invoke this binary through `cargo miri`", binary)));
894     let file = BufReader::new(file);
895
896     let info = serde_json::from_reader(file).unwrap_or_else(|_| {
897         show_error(format!(
898             "file {:?} contains outdated or invalid JSON; try `cargo clean`",
899             binary
900         ))
901     });
902     let info = match info {
903         CrateRunInfo::RunWith(info) => info,
904         CrateRunInfo::SkipProcMacroTest => {
905             eprintln!(
906                 "Running unit tests of `proc-macro` crates is not currently supported by Miri."
907             );
908             return;
909         }
910     };
911
912     let mut cmd = miri();
913
914     // Set missing env vars. We prefer build-time env vars over run-time ones; see
915     // <https://github.com/rust-lang/miri/issues/1661> for the kind of issue that fixes.
916     for (name, val) in info.env {
917         if verbose {
918             if let Some(old_val) = env::var_os(&name) {
919                 if old_val != val {
920                     eprintln!(
921                         "[cargo-miri runner] Overwriting run-time env var {:?}={:?} with build-time value {:?}",
922                         name, old_val, val
923                     );
924                 }
925             }
926         }
927         cmd.env(name, val);
928     }
929
930     // Forward rustc arguments.
931     // We need to patch "--extern" filenames because we forced a check-only
932     // build without cargo knowing about that: replace `.rlib` suffix by
933     // `.rmeta`.
934     // We also need to remove `--error-format` as cargo specifies that to be JSON,
935     // but when we run here, cargo does not interpret the JSON any more. `--json`
936     // then also nees to be dropped.
937     let mut args = info.args.into_iter();
938     let error_format_flag = "--error-format";
939     let json_flag = "--json";
940     while let Some(arg) = args.next() {
941         if arg == "--extern" {
942             forward_patched_extern_arg(&mut args, &mut cmd);
943         } else if let Some(suffix) = arg.strip_prefix(error_format_flag) {
944             assert!(suffix.starts_with('='));
945             // Drop this argument.
946         } else if let Some(suffix) = arg.strip_prefix(json_flag) {
947             assert!(suffix.starts_with('='));
948             // Drop this argument.
949         } else {
950             cmd.arg(arg);
951         }
952     }
953     // Set sysroot (if we are inside rustdoc, we already did that in `phase_cargo_rustdoc`).
954     if phase != RunnerPhase::Rustdoc {
955         forward_miri_sysroot(&mut cmd);
956     }
957     // Respect `MIRIFLAGS`.
958     if let Ok(a) = env::var("MIRIFLAGS") {
959         // This code is taken from `RUSTFLAGS` handling in cargo.
960         let args = a.split(' ').map(str::trim).filter(|s| !s.is_empty()).map(str::to_string);
961         cmd.args(args);
962     }
963
964     // Then pass binary arguments.
965     cmd.arg("--");
966     cmd.args(binary_args);
967
968     // Make sure we use the build-time working directory for interpreting Miri/rustc arguments.
969     // But then we need to switch to the run-time one, which we instruct Miri do do by setting `MIRI_CWD`.
970     cmd.current_dir(info.current_dir);
971     cmd.env("MIRI_CWD", env::current_dir().unwrap());
972
973     // Run it.
974     if verbose {
975         eprintln!("[cargo-miri runner] {:?}", cmd);
976     }
977
978     match phase {
979         RunnerPhase::Rustdoc => exec_with_pipe(cmd, &info.stdin),
980         RunnerPhase::Cargo => exec(cmd),
981     }
982 }
983
984 fn phase_rustdoc(fst_arg: &str, mut args: env::Args) {
985     let verbose = std::env::var_os("MIRI_VERBOSE").is_some();
986
987     // phase_cargo_miri sets the RUSTDOC env var to ourselves, so we can't use that here;
988     // just default to a straight-forward invocation for now:
989     let mut cmd = Command::new("rustdoc");
990
991     // Because of the way the main function is structured, we have to take the first argument spearately
992     // from the rest; to simplify the following argument patching loop, we'll just skip that one.
993     // This is fine for now, because cargo will never pass --extern arguments in the first position,
994     // but we should defensively assert that this will work.
995     let extern_flag = "--extern";
996     assert!(fst_arg != extern_flag);
997     cmd.arg(fst_arg);
998
999     let runtool_flag = "--runtool";
1000     // `crossmode` records if *any* argument matches `runtool_flag`; here we check the first one.
1001     let mut crossmode = fst_arg == runtool_flag;
1002     while let Some(arg) = args.next() {
1003         if arg == extern_flag {
1004             // Patch --extern arguments to use *.rmeta files, since phase_cargo_rustc only creates stub *.rlib files.
1005             forward_patched_extern_arg(&mut args, &mut cmd);
1006         } else if arg == runtool_flag {
1007             // An existing --runtool flag indicates cargo is running in cross-target mode, which we don't support.
1008             // Note that this is only passed when cargo is run with the unstable -Zdoctest-xcompile flag;
1009             // otherwise, we won't be called as rustdoc at all.
1010             crossmode = true;
1011             break;
1012         } else {
1013             cmd.arg(arg);
1014         }
1015     }
1016
1017     if crossmode {
1018         show_error(format!("cross-interpreting doctests is not currently supported by Miri."));
1019     }
1020
1021     // Doctests of `proc-macro` crates (and their dependencies) are always built for the host,
1022     // so we are not able to run them in Miri.
1023     if ArgFlagValueIter::new("--crate-type").any(|crate_type| crate_type == "proc-macro") {
1024         eprintln!("Running doctests of `proc-macro` crates is not currently supported by Miri.");
1025         return;
1026     }
1027
1028     // For each doctest, rustdoc starts two child processes: first the test is compiled,
1029     // then the produced executable is invoked. We want to reroute both of these to cargo-miri,
1030     // such that the first time we'll enter phase_cargo_rustc, and phase_cargo_runner second.
1031     //
1032     // rustdoc invokes the test-builder by forwarding most of its own arguments, which makes
1033     // it difficult to determine when phase_cargo_rustc should run instead of phase_cargo_rustdoc.
1034     // Furthermore, the test code is passed via stdin, rather than a temporary file, so we need
1035     // to let phase_cargo_rustc know to expect that. We'll use this environment variable as a flag:
1036     cmd.env("MIRI_CALLED_FROM_RUSTDOC", "1");
1037
1038     // The `--test-builder` and `--runtool` arguments are unstable rustdoc features,
1039     // which are disabled by default. We first need to enable them explicitly:
1040     cmd.arg("-Z").arg("unstable-options");
1041
1042     // rustdoc needs to know the right sysroot.
1043     forward_miri_sysroot(&mut cmd);
1044     // make sure the 'miri' flag is set for rustdoc
1045     cmd.arg("--cfg").arg("miri");
1046
1047     // Make rustdoc call us back.
1048     let cargo_miri_path = std::env::current_exe().expect("current executable path invalid");
1049     cmd.arg("--test-builder").arg(&cargo_miri_path); // invoked by forwarding most arguments
1050     cmd.arg("--runtool").arg(&cargo_miri_path); // invoked with just a single path argument
1051
1052     if verbose {
1053         eprintln!("[cargo-miri rustdoc] {:?}", cmd);
1054     }
1055
1056     exec(cmd)
1057 }
1058
1059 fn main() {
1060     // Rustc does not support non-UTF-8 arguments so we make no attempt either.
1061     // (We do support non-UTF-8 environment variables though.)
1062     let mut args = std::env::args();
1063     // Skip binary name.
1064     args.next().unwrap();
1065
1066     // Dispatch to `cargo-miri` phase. There are four phases:
1067     // - When we are called via `cargo miri`, we run as the frontend and invoke the underlying
1068     //   cargo. We set RUSTDOC, RUSTC_WRAPPER and CARGO_TARGET_RUNNER to ourselves.
1069     // - When we are executed due to RUSTDOC, we run rustdoc and set both `--test-builder` and
1070     //   `--runtool` to ourselves.
1071     // - When we are executed due to RUSTC_WRAPPER (or as the rustdoc test builder), we build crates
1072     //   or store the flags of binary crates for later interpretation.
1073     // - When we are executed due to CARGO_TARGET_RUNNER (or as the rustdoc runtool), we start
1074     //   interpretation based on the flags that were stored earlier.
1075     //
1076     // Additionally, we also set ourselves as RUSTC when calling xargo to build the sysroot, which
1077     // has to be treated slightly differently than when we build regular crates.
1078
1079     // Dispatch running as part of sysroot compilation.
1080     if env::var_os("MIRI_CALLED_FROM_XARGO").is_some() {
1081         phase_rustc(args, RustcPhase::Setup);
1082         return;
1083     }
1084
1085     // The way rustdoc invokes rustc is indistuingishable from the way cargo invokes rustdoc by the
1086     // arguments alone. `phase_cargo_rustdoc` sets this environment variable to let us disambiguate.
1087     if env::var_os("MIRI_CALLED_FROM_RUSTDOC").is_some() {
1088         // ...however, we then also see this variable when rustdoc invokes us as the testrunner!
1089         // The runner is invoked as `$runtool ($runtool-arg)* output_file`;
1090         // since we don't specify any runtool-args, and rustdoc supplies multiple arguments to
1091         // the test-builder unconditionally, we can just check the number of remaining arguments:
1092         if args.len() == 1 {
1093             let arg = args.next().unwrap();
1094             let binary = Path::new(&arg);
1095             if binary.exists() {
1096                 phase_runner(binary, args, RunnerPhase::Rustdoc);
1097             } else {
1098                 show_error(format!(
1099                     "`cargo-miri` called with non-existing path argument `{}` in rustdoc mode; please invoke this binary through `cargo miri`",
1100                     arg
1101                 ));
1102             }
1103         } else {
1104             phase_rustc(args, RustcPhase::Rustdoc);
1105         }
1106
1107         return;
1108     }
1109
1110     match args.next().as_deref() {
1111         Some("miri") => phase_cargo_miri(args),
1112         Some("rustc") => phase_rustc(args, RustcPhase::Build),
1113         Some(arg) => {
1114             // We have to distinguish the "runner" and "rustdoc" cases.
1115             // As runner, the first argument is the binary (a file that should exist, with an absolute path);
1116             // as rustdoc, the first argument is a flag (`--something`).
1117             let binary = Path::new(arg);
1118             if binary.exists() {
1119                 assert!(!arg.starts_with("--")); // not a flag
1120                 phase_runner(binary, args, RunnerPhase::Cargo);
1121             } else if arg.starts_with("--") {
1122                 phase_rustdoc(arg, args);
1123             } else {
1124                 show_error(format!(
1125                     "`cargo-miri` called with unexpected first argument `{}`; please only invoke this binary through `cargo miri`",
1126                     arg
1127                 ));
1128             }
1129         }
1130         _ =>
1131             show_error(format!(
1132                 "`cargo-miri` called without first argument; please only invoke this binary through `cargo miri`"
1133             )),
1134     }
1135 }