]> git.lizzy.rs Git - rust.git/blob - cargo-miri/bin.rs
Auto merge of #2259 - RalfJung:cargo-rustc, r=RalfJung
[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     // Having both `RUSTC_WRAPPER` and `RUSTC` set does some odd things, so let's avoid that.
642     // See <https://github.com/rust-lang/miri/issues/2238>.
643     if env::var_os("RUSTC").is_some() && env::var_os("MIRI").is_none() {
644         println!(
645             "WARNING: Ignoring `RUSTC` environment variable; set `MIRI` if you want to control the binary used as the driver."
646         );
647     }
648     cmd.env_remove("RUSTC");
649
650     let runner_env_name =
651         |triple: &str| format!("CARGO_TARGET_{}_RUNNER", triple.to_uppercase().replace('-', "_"));
652     let host_runner_env_name = runner_env_name(&host);
653     let target_runner_env_name = runner_env_name(target);
654     // Set the target runner to us, so we can interpret the binaries.
655     cmd.env(&target_runner_env_name, &cargo_miri_path);
656     // Unit tests of `proc-macro` crates are run on the host, so we set the host runner to
657     // us in order to skip them.
658     cmd.env(&host_runner_env_name, &cargo_miri_path);
659
660     // Set rustdoc to us as well, so we can run doctests.
661     cmd.env("RUSTDOC", &cargo_miri_path);
662
663     cmd.env("MIRI_LOCAL_CRATES", local_crates(&metadata));
664
665     // Run cargo.
666     if verbose {
667         eprintln!("[cargo-miri miri] RUSTC_WRAPPER={:?}", cargo_miri_path);
668         eprintln!("[cargo-miri miri] {}={:?}", target_runner_env_name, cargo_miri_path);
669         if *target != host {
670             eprintln!("[cargo-miri miri] {}={:?}", host_runner_env_name, cargo_miri_path);
671         }
672         eprintln!("[cargo-miri miri] RUSTDOC={:?}", cargo_miri_path);
673         eprintln!("[cargo-miri miri] {:?}", cmd);
674         cmd.env("MIRI_VERBOSE", ""); // This makes the other phases verbose.
675     }
676     exec(cmd)
677 }
678
679 #[derive(Debug, Copy, Clone, PartialEq)]
680 enum RustcPhase {
681     /// `rustc` called via `xargo` for sysroot build.
682     Setup,
683     /// `rustc` called by `cargo` for regular build.
684     Build,
685     /// `rustc` called by `rustdoc` for doctest.
686     Rustdoc,
687 }
688
689 fn phase_rustc(mut args: env::Args, phase: RustcPhase) {
690     /// Determines if we are being invoked (as rustc) to build a crate for
691     /// the "target" architecture, in contrast to the "host" architecture.
692     /// Host crates are for build scripts and proc macros and still need to
693     /// be built like normal; target crates need to be built for or interpreted
694     /// by Miri.
695     ///
696     /// Currently, we detect this by checking for "--target=", which is
697     /// never set for host crates. This matches what rustc bootstrap does,
698     /// which hopefully makes it "reliable enough". This relies on us always
699     /// invoking cargo itself with `--target`, which `in_cargo_miri` ensures.
700     fn is_target_crate() -> bool {
701         get_arg_flag_value("--target").is_some()
702     }
703
704     /// Returns whether or not Cargo invoked the wrapper (this binary) to compile
705     /// the final, binary crate (either a test for 'cargo test', or a binary for 'cargo run')
706     /// Cargo does not give us this information directly, so we need to check
707     /// various command-line flags.
708     fn is_runnable_crate() -> bool {
709         let is_bin = get_arg_flag_value("--crate-type").as_deref().unwrap_or("bin") == "bin";
710         let is_test = has_arg_flag("--test");
711         is_bin || is_test
712     }
713
714     fn out_filename(prefix: &str, suffix: &str) -> PathBuf {
715         if let Some(out_dir) = get_arg_flag_value("--out-dir") {
716             let mut path = PathBuf::from(out_dir);
717             path.push(format!(
718                 "{}{}{}{}",
719                 prefix,
720                 get_arg_flag_value("--crate-name").unwrap(),
721                 // This is technically a `-C` flag but the prefix seems unique enough...
722                 // (and cargo passes this before the filename so it should be unique)
723                 get_arg_flag_value("extra-filename").unwrap_or_default(),
724                 suffix,
725             ));
726             path
727         } else {
728             let out_file = get_arg_flag_value("-o").unwrap();
729             PathBuf::from(out_file)
730         }
731     }
732
733     let verbose = std::env::var_os("MIRI_VERBOSE").is_some();
734     let target_crate = is_target_crate();
735     let print = get_arg_flag_value("--print").is_some() || has_arg_flag("-vV"); // whether this is cargo/xargo invoking rustc to get some infos
736
737     let store_json = |info: CrateRunInfo| {
738         // Create a stub .d file to stop Cargo from "rebuilding" the crate:
739         // https://github.com/rust-lang/miri/issues/1724#issuecomment-787115693
740         // As we store a JSON file instead of building the crate here, an empty file is fine.
741         let dep_info_name = out_filename("", ".d");
742         if verbose {
743             eprintln!("[cargo-miri rustc] writing stub dep-info to `{}`", dep_info_name.display());
744         }
745         File::create(dep_info_name).expect("failed to create fake .d file");
746
747         let filename = out_filename("", "");
748         if verbose {
749             eprintln!("[cargo-miri rustc] writing run info to `{}`", filename.display());
750         }
751         info.store(&filename);
752         // For Windows, do the same thing again with `.exe` appended to the filename.
753         // (Need to do this here as cargo moves that "binary" to a different place before running it.)
754         info.store(&out_filename("", ".exe"));
755     };
756
757     let runnable_crate = !print && is_runnable_crate();
758
759     if runnable_crate && target_crate {
760         assert!(
761             phase != RustcPhase::Setup,
762             "there should be no interpretation during sysroot build"
763         );
764         let inside_rustdoc = phase == RustcPhase::Rustdoc;
765         // This is the binary or test crate that we want to interpret under Miri.
766         // But we cannot run it here, as cargo invoked us as a compiler -- our stdin and stdout are not
767         // like we want them.
768         // Instead of compiling, we write JSON into the output file with all the relevant command-line flags
769         // and environment variables; this is used when cargo calls us again in the CARGO_TARGET_RUNNER phase.
770         let env = CrateRunEnv::collect(args, inside_rustdoc);
771
772         // Rustdoc expects us to exit with an error code if the test is marked as `compile_fail`,
773         // just creating the JSON file is not enough: we need to detect syntax errors,
774         // so we need to run Miri with `MIRI_BE_RUSTC` for a check-only build.
775         if inside_rustdoc {
776             let mut cmd = miri();
777
778             // Ensure --emit argument for a check-only build is present.
779             // We cannot use the usual helpers since we need to check specifically in `env.args`.
780             if let Some(i) = env.args.iter().position(|arg| arg.starts_with("--emit=")) {
781                 // For `no_run` tests, rustdoc passes a `--emit` flag; make sure it has the right shape.
782                 assert_eq!(env.args[i], "--emit=metadata");
783             } else {
784                 // For all other kinds of tests, we can just add our flag.
785                 cmd.arg("--emit=metadata");
786             }
787
788             cmd.args(&env.args);
789             cmd.env("MIRI_BE_RUSTC", "target");
790
791             if verbose {
792                 eprintln!(
793                     "[cargo-miri rustc] captured input:\n{}",
794                     std::str::from_utf8(&env.stdin).unwrap()
795                 );
796                 eprintln!("[cargo-miri rustc] {:?}", cmd);
797             }
798
799             exec_with_pipe(cmd, &env.stdin);
800         }
801
802         store_json(CrateRunInfo::RunWith(env));
803
804         return;
805     }
806
807     if runnable_crate && ArgFlagValueIter::new("--extern").any(|krate| krate == "proc_macro") {
808         // This is a "runnable" `proc-macro` crate (unit tests). We do not support
809         // interpreting that under Miri now, so we write a JSON file to (display a
810         // helpful message and) skip it in the runner phase.
811         store_json(CrateRunInfo::SkipProcMacroTest);
812         return;
813     }
814
815     let mut cmd = miri();
816     let mut emit_link_hack = false;
817     // Arguments are treated very differently depending on whether this crate is
818     // for interpretation by Miri, or for use by a build script / proc macro.
819     if !print && target_crate {
820         // Forward arguments, but remove "link" from "--emit" to make this a check-only build.
821         let emit_flag = "--emit";
822         while let Some(arg) = args.next() {
823             if let Some(val) = arg.strip_prefix(emit_flag) {
824                 // Patch this argument. First, extract its value.
825                 let val =
826                     val.strip_prefix('=').expect("`cargo` should pass `--emit=X` as one argument");
827                 let mut val: Vec<_> = val.split(',').collect();
828                 // Now make sure "link" is not in there, but "metadata" is.
829                 if let Some(i) = val.iter().position(|&s| s == "link") {
830                     emit_link_hack = true;
831                     val.remove(i);
832                     if !val.iter().any(|&s| s == "metadata") {
833                         val.push("metadata");
834                     }
835                 }
836                 cmd.arg(format!("{}={}", emit_flag, val.join(",")));
837             } else if arg == "--extern" {
838                 // Patch `--extern` filenames, since Cargo sometimes passes stub `.rlib` files:
839                 // https://github.com/rust-lang/miri/issues/1705
840                 forward_patched_extern_arg(&mut args, &mut cmd);
841             } else {
842                 cmd.arg(arg);
843             }
844         }
845
846         // Use our custom sysroot (but not if that is what we are currently building).
847         if phase != RustcPhase::Setup {
848             forward_miri_sysroot(&mut cmd);
849         }
850
851         // During setup, patch the panic runtime for `libpanic_abort` (mirroring what bootstrap usually does).
852         if phase == RustcPhase::Setup
853             && get_arg_flag_value("--crate-name").as_deref() == Some("panic_abort")
854         {
855             cmd.arg("-C").arg("panic=abort");
856         }
857     } else {
858         // For host crates or when we are printing, just forward everything.
859         cmd.args(args);
860     }
861
862     // We want to compile, not interpret. We still use Miri to make sure the compiler version etc
863     // are the exact same as what is used for interpretation.
864     // MIRI_DEFAULT_ARGS should not be used to build host crates, hence setting "target" or "host"
865     // as the value here to help Miri differentiate them.
866     cmd.env("MIRI_BE_RUSTC", if target_crate { "target" } else { "host" });
867
868     // Run it.
869     if verbose {
870         eprintln!("[cargo-miri rustc] {:?}", cmd);
871     }
872     exec(cmd);
873
874     // Create a stub .rlib file if "link" was requested by cargo.
875     // This is necessary to prevent cargo from doing rebuilds all the time.
876     if emit_link_hack {
877         // Some platforms prepend "lib", some do not... let's just create both files.
878         File::create(out_filename("lib", ".rlib")).expect("failed to create fake .rlib file");
879         File::create(out_filename("", ".rlib")).expect("failed to create fake .rlib file");
880         // Just in case this is a cdylib or staticlib, also create those fake files.
881         File::create(out_filename("lib", ".so")).expect("failed to create fake .so file");
882         File::create(out_filename("lib", ".a")).expect("failed to create fake .a file");
883         File::create(out_filename("lib", ".dylib")).expect("failed to create fake .dylib file");
884         File::create(out_filename("", ".dll")).expect("failed to create fake .dll file");
885         File::create(out_filename("", ".lib")).expect("failed to create fake .lib file");
886     }
887 }
888
889 #[derive(Debug, Copy, Clone, PartialEq)]
890 enum RunnerPhase {
891     /// `cargo` is running a binary
892     Cargo,
893     /// `rustdoc` is running a binary
894     Rustdoc,
895 }
896
897 fn phase_runner(binary: &Path, binary_args: env::Args, phase: RunnerPhase) {
898     let verbose = std::env::var_os("MIRI_VERBOSE").is_some();
899
900     let file = File::open(&binary)
901         .unwrap_or_else(|_| show_error(format!("file {:?} not found or `cargo-miri` invoked incorrectly; please only invoke this binary through `cargo miri`", binary)));
902     let file = BufReader::new(file);
903
904     let info = serde_json::from_reader(file).unwrap_or_else(|_| {
905         show_error(format!(
906             "file {:?} contains outdated or invalid JSON; try `cargo clean`",
907             binary
908         ))
909     });
910     let info = match info {
911         CrateRunInfo::RunWith(info) => info,
912         CrateRunInfo::SkipProcMacroTest => {
913             eprintln!(
914                 "Running unit tests of `proc-macro` crates is not currently supported by Miri."
915             );
916             return;
917         }
918     };
919
920     let mut cmd = miri();
921
922     // Set missing env vars. We prefer build-time env vars over run-time ones; see
923     // <https://github.com/rust-lang/miri/issues/1661> for the kind of issue that fixes.
924     for (name, val) in info.env {
925         if verbose {
926             if let Some(old_val) = env::var_os(&name) {
927                 if old_val != val {
928                     eprintln!(
929                         "[cargo-miri runner] Overwriting run-time env var {:?}={:?} with build-time value {:?}",
930                         name, old_val, val
931                     );
932                 }
933             }
934         }
935         cmd.env(name, val);
936     }
937
938     // Forward rustc arguments.
939     // We need to patch "--extern" filenames because we forced a check-only
940     // build without cargo knowing about that: replace `.rlib` suffix by
941     // `.rmeta`.
942     // We also need to remove `--error-format` as cargo specifies that to be JSON,
943     // but when we run here, cargo does not interpret the JSON any more. `--json`
944     // then also nees to be dropped.
945     let mut args = info.args.into_iter();
946     let error_format_flag = "--error-format";
947     let json_flag = "--json";
948     while let Some(arg) = args.next() {
949         if arg == "--extern" {
950             forward_patched_extern_arg(&mut args, &mut cmd);
951         } else if let Some(suffix) = arg.strip_prefix(error_format_flag) {
952             assert!(suffix.starts_with('='));
953             // Drop this argument.
954         } else if let Some(suffix) = arg.strip_prefix(json_flag) {
955             assert!(suffix.starts_with('='));
956             // This is how we pass through --color=always. We detect that Cargo is detecting rustc
957             // to emit the diagnostic structure that Cargo would consume from rustc to emit colored
958             // diagnostics, and ask rustc to emit them.
959             // See https://github.com/rust-lang/miri/issues/2037
960             if arg.split(',').any(|a| a == "diagnostic-rendered-ansi") {
961                 cmd.arg("--color=always");
962             }
963             // But aside from remembering that colored output was requested, drop this argument.
964         } else {
965             cmd.arg(arg);
966         }
967     }
968     // Set sysroot (if we are inside rustdoc, we already did that in `phase_cargo_rustdoc`).
969     if phase != RunnerPhase::Rustdoc {
970         forward_miri_sysroot(&mut cmd);
971     }
972     // Respect `MIRIFLAGS`.
973     if let Ok(a) = env::var("MIRIFLAGS") {
974         // This code is taken from `RUSTFLAGS` handling in cargo.
975         let args = a.split(' ').map(str::trim).filter(|s| !s.is_empty()).map(str::to_string);
976         cmd.args(args);
977     }
978
979     // Then pass binary arguments.
980     cmd.arg("--");
981     cmd.args(binary_args);
982
983     // Make sure we use the build-time working directory for interpreting Miri/rustc arguments.
984     // But then we need to switch to the run-time one, which we instruct Miri do do by setting `MIRI_CWD`.
985     cmd.current_dir(info.current_dir);
986     cmd.env("MIRI_CWD", env::current_dir().unwrap());
987
988     // Run it.
989     if verbose {
990         eprintln!("[cargo-miri runner] {:?}", cmd);
991     }
992
993     match phase {
994         RunnerPhase::Rustdoc => exec_with_pipe(cmd, &info.stdin),
995         RunnerPhase::Cargo => exec(cmd),
996     }
997 }
998
999 fn phase_rustdoc(fst_arg: &str, mut args: env::Args) {
1000     let verbose = std::env::var_os("MIRI_VERBOSE").is_some();
1001
1002     // phase_cargo_miri sets the RUSTDOC env var to ourselves, so we can't use that here;
1003     // just default to a straight-forward invocation for now:
1004     let mut cmd = Command::new("rustdoc");
1005
1006     // Because of the way the main function is structured, we have to take the first argument spearately
1007     // from the rest; to simplify the following argument patching loop, we'll just skip that one.
1008     // This is fine for now, because cargo will never pass --extern arguments in the first position,
1009     // but we should defensively assert that this will work.
1010     let extern_flag = "--extern";
1011     assert!(fst_arg != extern_flag);
1012     cmd.arg(fst_arg);
1013
1014     let runtool_flag = "--runtool";
1015     // `crossmode` records if *any* argument matches `runtool_flag`; here we check the first one.
1016     let mut crossmode = fst_arg == runtool_flag;
1017     while let Some(arg) = args.next() {
1018         if arg == extern_flag {
1019             // Patch --extern arguments to use *.rmeta files, since phase_cargo_rustc only creates stub *.rlib files.
1020             forward_patched_extern_arg(&mut args, &mut cmd);
1021         } else if arg == runtool_flag {
1022             // An existing --runtool flag indicates cargo is running in cross-target mode, which we don't support.
1023             // Note that this is only passed when cargo is run with the unstable -Zdoctest-xcompile flag;
1024             // otherwise, we won't be called as rustdoc at all.
1025             crossmode = true;
1026             break;
1027         } else {
1028             cmd.arg(arg);
1029         }
1030     }
1031
1032     if crossmode {
1033         show_error(format!("cross-interpreting doctests is not currently supported by Miri."));
1034     }
1035
1036     // Doctests of `proc-macro` crates (and their dependencies) are always built for the host,
1037     // so we are not able to run them in Miri.
1038     if ArgFlagValueIter::new("--crate-type").any(|crate_type| crate_type == "proc-macro") {
1039         eprintln!("Running doctests of `proc-macro` crates is not currently supported by Miri.");
1040         return;
1041     }
1042
1043     // For each doctest, rustdoc starts two child processes: first the test is compiled,
1044     // then the produced executable is invoked. We want to reroute both of these to cargo-miri,
1045     // such that the first time we'll enter phase_cargo_rustc, and phase_cargo_runner second.
1046     //
1047     // rustdoc invokes the test-builder by forwarding most of its own arguments, which makes
1048     // it difficult to determine when phase_cargo_rustc should run instead of phase_cargo_rustdoc.
1049     // Furthermore, the test code is passed via stdin, rather than a temporary file, so we need
1050     // to let phase_cargo_rustc know to expect that. We'll use this environment variable as a flag:
1051     cmd.env("MIRI_CALLED_FROM_RUSTDOC", "1");
1052
1053     // The `--test-builder` and `--runtool` arguments are unstable rustdoc features,
1054     // which are disabled by default. We first need to enable them explicitly:
1055     cmd.arg("-Z").arg("unstable-options");
1056
1057     // rustdoc needs to know the right sysroot.
1058     forward_miri_sysroot(&mut cmd);
1059     // make sure the 'miri' flag is set for rustdoc
1060     cmd.arg("--cfg").arg("miri");
1061
1062     // Make rustdoc call us back.
1063     let cargo_miri_path = std::env::current_exe().expect("current executable path invalid");
1064     cmd.arg("--test-builder").arg(&cargo_miri_path); // invoked by forwarding most arguments
1065     cmd.arg("--runtool").arg(&cargo_miri_path); // invoked with just a single path argument
1066
1067     if verbose {
1068         eprintln!("[cargo-miri rustdoc] {:?}", cmd);
1069     }
1070
1071     exec(cmd)
1072 }
1073
1074 fn main() {
1075     // Rustc does not support non-UTF-8 arguments so we make no attempt either.
1076     // (We do support non-UTF-8 environment variables though.)
1077     let mut args = std::env::args();
1078     // Skip binary name.
1079     args.next().unwrap();
1080
1081     // Dispatch to `cargo-miri` phase. There are four phases:
1082     // - When we are called via `cargo miri`, we run as the frontend and invoke the underlying
1083     //   cargo. We set RUSTDOC, RUSTC_WRAPPER and CARGO_TARGET_RUNNER to ourselves.
1084     // - When we are executed due to RUSTDOC, we run rustdoc and set both `--test-builder` and
1085     //   `--runtool` to ourselves.
1086     // - When we are executed due to RUSTC_WRAPPER (or as the rustdoc test builder), we build crates
1087     //   or store the flags of binary crates for later interpretation.
1088     // - When we are executed due to CARGO_TARGET_RUNNER (or as the rustdoc runtool), we start
1089     //   interpretation based on the flags that were stored earlier.
1090     //
1091     // Additionally, we also set ourselves as RUSTC when calling xargo to build the sysroot, which
1092     // has to be treated slightly differently than when we build regular crates.
1093
1094     // Dispatch running as part of sysroot compilation.
1095     if env::var_os("MIRI_CALLED_FROM_XARGO").is_some() {
1096         phase_rustc(args, RustcPhase::Setup);
1097         return;
1098     }
1099
1100     // The way rustdoc invokes rustc is indistuingishable from the way cargo invokes rustdoc by the
1101     // arguments alone. `phase_cargo_rustdoc` sets this environment variable to let us disambiguate.
1102     if env::var_os("MIRI_CALLED_FROM_RUSTDOC").is_some() {
1103         // ...however, we then also see this variable when rustdoc invokes us as the testrunner!
1104         // The runner is invoked as `$runtool ($runtool-arg)* output_file`;
1105         // since we don't specify any runtool-args, and rustdoc supplies multiple arguments to
1106         // the test-builder unconditionally, we can just check the number of remaining arguments:
1107         if args.len() == 1 {
1108             let arg = args.next().unwrap();
1109             let binary = Path::new(&arg);
1110             if binary.exists() {
1111                 phase_runner(binary, args, RunnerPhase::Rustdoc);
1112             } else {
1113                 show_error(format!(
1114                     "`cargo-miri` called with non-existing path argument `{}` in rustdoc mode; please invoke this binary through `cargo miri`",
1115                     arg
1116                 ));
1117             }
1118         } else {
1119             phase_rustc(args, RustcPhase::Rustdoc);
1120         }
1121
1122         return;
1123     }
1124
1125     match args.next().as_deref() {
1126         Some("miri") => phase_cargo_miri(args),
1127         Some("rustc") => phase_rustc(args, RustcPhase::Build),
1128         Some(arg) => {
1129             // We have to distinguish the "runner" and "rustdoc" cases.
1130             // As runner, the first argument is the binary (a file that should exist, with an absolute path);
1131             // as rustdoc, the first argument is a flag (`--something`).
1132             let binary = Path::new(arg);
1133             if binary.exists() {
1134                 assert!(!arg.starts_with("--")); // not a flag
1135                 phase_runner(binary, args, RunnerPhase::Cargo);
1136             } else if arg.starts_with("--") {
1137                 phase_rustdoc(arg, args);
1138             } else {
1139                 show_error(format!(
1140                     "`cargo-miri` called with unexpected first argument `{}`; please only invoke this binary through `cargo miri`",
1141                     arg
1142                 ));
1143             }
1144         }
1145         _ =>
1146             show_error(format!(
1147                 "`cargo-miri` called without first argument; please only invoke this binary through `cargo miri`"
1148             )),
1149     }
1150 }