2017-09-18 10:47:33 +00:00
|
|
|
#![feature(rustc_private)]
|
2020-10-23 20:16:59 +00:00
|
|
|
#![feature(once_cell)]
|
2020-06-23 15:05:22 +00:00
|
|
|
#![cfg_attr(feature = "deny-warnings", deny(warnings))]
|
|
|
|
// warn on lints, that are included in `rust-lang/rust`s bootstrap
|
|
|
|
#![warn(rust_2018_idioms, unused_lifetimes)]
|
|
|
|
// warn on rustc internal lints
|
|
|
|
#![deny(rustc::internal)]
|
2017-09-18 10:47:33 +00:00
|
|
|
|
2018-09-15 07:21:58 +00:00
|
|
|
// FIXME: switch to something more ergonomic here, once available.
|
2019-01-31 01:15:29 +00:00
|
|
|
// (Currently there is no way to opt into sysroot crates without `extern crate`.)
|
2018-09-15 07:21:58 +00:00
|
|
|
extern crate rustc_driver;
|
2019-09-27 05:09:12 +00:00
|
|
|
extern crate rustc_errors;
|
2019-02-01 22:28:14 +00:00
|
|
|
extern crate rustc_interface;
|
2020-03-30 09:02:14 +00:00
|
|
|
extern crate rustc_middle;
|
2018-09-15 07:21:58 +00:00
|
|
|
|
2019-02-01 22:28:14 +00:00
|
|
|
use rustc_interface::interface;
|
2020-03-30 09:02:14 +00:00
|
|
|
use rustc_middle::ty::TyCtxt;
|
2020-02-21 08:39:38 +00:00
|
|
|
use rustc_tools_util::VersionInfo;
|
2019-04-30 09:10:31 +00:00
|
|
|
|
2019-09-27 05:09:12 +00:00
|
|
|
use std::borrow::Cow;
|
2019-12-23 20:06:52 +00:00
|
|
|
use std::env;
|
2020-10-23 20:16:59 +00:00
|
|
|
use std::lazy::SyncLazy;
|
2019-12-23 20:06:52 +00:00
|
|
|
use std::ops::Deref;
|
2019-09-27 05:09:12 +00:00
|
|
|
use std::panic;
|
2019-07-12 12:13:15 +00:00
|
|
|
use std::path::{Path, PathBuf};
|
2018-12-14 09:15:56 +00:00
|
|
|
use std::process::{exit, Command};
|
2017-09-18 10:47:33 +00:00
|
|
|
|
2019-01-15 18:56:09 +00:00
|
|
|
/// If a command-line option matches `find_arg`, then apply the predicate `pred` on its value. If
|
|
|
|
/// true, then return it. The parameter is assumed to be either `--arg=value` or `--arg value`.
|
2019-12-23 20:06:52 +00:00
|
|
|
fn arg_value<'a, T: Deref<Target = str>>(
|
|
|
|
args: &'a [T],
|
2019-01-15 18:56:09 +00:00
|
|
|
find_arg: &str,
|
|
|
|
pred: impl Fn(&str) -> bool,
|
|
|
|
) -> Option<&'a str> {
|
2019-12-23 20:06:52 +00:00
|
|
|
let mut args = args.iter().map(Deref::deref);
|
2019-01-15 18:56:09 +00:00
|
|
|
while let Some(arg) = args.next() {
|
2019-12-23 20:06:52 +00:00
|
|
|
let mut arg = arg.splitn(2, '=');
|
|
|
|
if arg.next() != Some(find_arg) {
|
2019-01-15 18:56:09 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-12-23 20:06:52 +00:00
|
|
|
match arg.next().or_else(|| args.next()) {
|
|
|
|
Some(v) if pred(v) => return Some(v),
|
2020-12-20 16:19:49 +00:00
|
|
|
_ => {},
|
2019-01-15 18:56:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2020-12-23 09:52:53 +00:00
|
|
|
#[test]
|
|
|
|
fn test_arg_value() {
|
|
|
|
let args = &["--bar=bar", "--foobar", "123", "--foo"];
|
|
|
|
|
|
|
|
assert_eq!(arg_value(&[] as &[&str], "--foobar", |_| true), None);
|
|
|
|
assert_eq!(arg_value(args, "--bar", |_| false), None);
|
|
|
|
assert_eq!(arg_value(args, "--bar", |_| true), Some("bar"));
|
|
|
|
assert_eq!(arg_value(args, "--bar", |p| p == "bar"), Some("bar"));
|
|
|
|
assert_eq!(arg_value(args, "--bar", |p| p == "foo"), None);
|
|
|
|
assert_eq!(arg_value(args, "--foobar", |p| p == "foo"), None);
|
|
|
|
assert_eq!(arg_value(args, "--foobar", |p| p == "123"), Some("123"));
|
|
|
|
assert_eq!(arg_value(args, "--foo", |_| true), None);
|
|
|
|
}
|
|
|
|
|
2020-02-11 15:52:00 +00:00
|
|
|
struct DefaultCallbacks;
|
|
|
|
impl rustc_driver::Callbacks for DefaultCallbacks {}
|
2019-02-01 22:28:14 +00:00
|
|
|
|
|
|
|
struct ClippyCallbacks;
|
|
|
|
impl rustc_driver::Callbacks for ClippyCallbacks {
|
2019-10-11 01:46:22 +00:00
|
|
|
fn config(&mut self, config: &mut interface::Config) {
|
|
|
|
let previous = config.register_lints.take();
|
|
|
|
config.register_lints = Some(Box::new(move |sess, mut lint_store| {
|
|
|
|
// technically we're ~guaranteed that this is none but might as well call anything that
|
|
|
|
// is there already. Certainly it can't hurt.
|
|
|
|
if let Some(previous) = &previous {
|
|
|
|
(previous)(sess, lint_store);
|
|
|
|
}
|
|
|
|
|
|
|
|
let conf = clippy_lints::read_conf(&[], &sess);
|
|
|
|
clippy_lints::register_plugins(&mut lint_store, &sess, &conf);
|
2020-05-28 13:45:24 +00:00
|
|
|
clippy_lints::register_pre_expansion_lints(&mut lint_store);
|
2019-10-11 01:46:22 +00:00
|
|
|
clippy_lints::register_renamed(&mut lint_store);
|
|
|
|
}));
|
2019-11-22 13:24:38 +00:00
|
|
|
|
2019-11-23 00:26:19 +00:00
|
|
|
// FIXME: #4825; This is required, because Clippy lints that are based on MIR have to be
|
|
|
|
// run on the unoptimized MIR. On the other hand this results in some false negatives. If
|
|
|
|
// MIR passes can be enabled / disabled separately, we should figure out, what passes to
|
|
|
|
// use for Clippy.
|
2020-12-14 21:12:15 +00:00
|
|
|
config.opts.debugging_opts.mir_opt_level = 0;
|
2019-02-01 22:28:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-08 21:19:16 +00:00
|
|
|
fn display_help() {
|
|
|
|
println!(
|
|
|
|
"\
|
2019-06-05 00:32:03 +00:00
|
|
|
Checks a package to catch common mistakes and improve your Rust code.
|
|
|
|
|
|
|
|
Usage:
|
|
|
|
cargo clippy [options] [--] [<opts>...]
|
|
|
|
|
|
|
|
Common options:
|
|
|
|
-h, --help Print this message
|
2020-06-23 15:05:22 +00:00
|
|
|
--rustc Pass all args to rustc
|
2019-06-05 00:32:03 +00:00
|
|
|
-V, --version Print version info and exit
|
|
|
|
|
|
|
|
Other options are the same as `cargo check`.
|
|
|
|
|
|
|
|
To allow or deny a lint from the command line you can use `cargo clippy --`
|
|
|
|
with:
|
|
|
|
|
|
|
|
-W --warn OPT Set lint warnings
|
|
|
|
-A --allow OPT Set lint allowed
|
|
|
|
-D --deny OPT Set lint denied
|
|
|
|
-F --forbid OPT Set lint forbidden
|
|
|
|
|
|
|
|
You can use tool lints to allow or deny lints from your code, eg.:
|
|
|
|
|
|
|
|
#[allow(clippy::needless_lifetimes)]
|
|
|
|
"
|
2019-06-08 21:19:16 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-09-27 05:09:12 +00:00
|
|
|
const BUG_REPORT_URL: &str = "https://github.com/rust-lang/rust-clippy/issues/new";
|
|
|
|
|
2020-12-20 16:19:49 +00:00
|
|
|
static ICE_HOOK: SyncLazy<Box<dyn Fn(&panic::PanicInfo<'_>) + Sync + Send + 'static>> = SyncLazy::new(|| {
|
|
|
|
let hook = panic::take_hook();
|
|
|
|
panic::set_hook(Box::new(|info| report_clippy_ice(info, BUG_REPORT_URL)));
|
|
|
|
hook
|
|
|
|
});
|
2019-09-27 05:09:12 +00:00
|
|
|
|
|
|
|
fn report_clippy_ice(info: &panic::PanicInfo<'_>, bug_report_url: &str) {
|
|
|
|
// Invoke our ICE handler, which prints the actual panic message and optionally a backtrace
|
|
|
|
(*ICE_HOOK)(info);
|
|
|
|
|
|
|
|
// Separate the output with an empty line
|
|
|
|
eprintln!();
|
|
|
|
|
|
|
|
let emitter = Box::new(rustc_errors::emitter::EmitterWriter::stderr(
|
|
|
|
rustc_errors::ColorConfig::Auto,
|
|
|
|
None,
|
|
|
|
false,
|
|
|
|
false,
|
|
|
|
None,
|
|
|
|
false,
|
|
|
|
));
|
|
|
|
let handler = rustc_errors::Handler::with_emitter(true, None, emitter);
|
|
|
|
|
|
|
|
// a .span_bug or .bug call has already printed what
|
|
|
|
// it wants to print.
|
|
|
|
if !info.payload().is::<rustc_errors::ExplicitBug>() {
|
|
|
|
let d = rustc_errors::Diagnostic::new(rustc_errors::Level::Bug, "unexpected panic");
|
|
|
|
handler.emit_diagnostic(&d);
|
|
|
|
}
|
|
|
|
|
2019-09-27 05:25:16 +00:00
|
|
|
let version_info = rustc_tools_util::get_version_info!();
|
|
|
|
|
2019-09-27 05:09:12 +00:00
|
|
|
let xs: Vec<Cow<'static, str>> = vec![
|
|
|
|
"the compiler unexpectedly panicked. this is a bug.".into(),
|
|
|
|
format!("we would appreciate a bug report: {}", bug_report_url).into(),
|
2019-09-27 05:25:16 +00:00
|
|
|
format!("Clippy version: {}", version_info).into(),
|
2019-09-27 05:09:12 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
for note in &xs {
|
|
|
|
handler.note_without_error(¬e);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If backtraces are enabled, also print the query stack
|
2019-12-23 20:06:52 +00:00
|
|
|
let backtrace = env::var_os("RUST_BACKTRACE").map_or(false, |x| &x != "0");
|
2019-09-27 05:09:12 +00:00
|
|
|
|
2020-09-29 14:44:07 +00:00
|
|
|
let num_frames = if backtrace { None } else { Some(2) };
|
|
|
|
|
|
|
|
TyCtxt::try_print_query_stack(&handler, num_frames);
|
2019-09-27 05:09:12 +00:00
|
|
|
}
|
|
|
|
|
2020-01-22 13:56:08 +00:00
|
|
|
fn toolchain_path(home: Option<String>, toolchain: Option<String>) -> Option<PathBuf> {
|
|
|
|
home.and_then(|home| {
|
|
|
|
toolchain.map(|toolchain| {
|
|
|
|
let mut path = PathBuf::from(home);
|
|
|
|
path.push("toolchains");
|
|
|
|
path.push(toolchain);
|
|
|
|
path
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-12-20 16:19:49 +00:00
|
|
|
#[allow(clippy::too_many_lines)]
|
2019-06-08 21:19:16 +00:00
|
|
|
pub fn main() {
|
|
|
|
rustc_driver::init_rustc_env_logger();
|
2020-10-23 20:16:59 +00:00
|
|
|
SyncLazy::force(&ICE_HOOK);
|
2020-05-17 15:36:26 +00:00
|
|
|
exit(rustc_driver::catch_with_exit_code(move || {
|
|
|
|
let mut orig_args: Vec<String> = env::args().collect();
|
2019-06-05 00:32:03 +00:00
|
|
|
|
2020-05-17 15:36:26 +00:00
|
|
|
// Get the sysroot, looking from most specific to this invocation to the least:
|
|
|
|
// - command line
|
|
|
|
// - runtime environment
|
|
|
|
// - SYSROOT
|
|
|
|
// - RUSTUP_HOME, MULTIRUST_HOME, RUSTUP_TOOLCHAIN, MULTIRUST_TOOLCHAIN
|
|
|
|
// - sysroot from rustc in the path
|
|
|
|
// - compile-time environment
|
|
|
|
// - SYSROOT
|
|
|
|
// - RUSTUP_HOME, MULTIRUST_HOME, RUSTUP_TOOLCHAIN, MULTIRUST_TOOLCHAIN
|
|
|
|
let sys_root_arg = arg_value(&orig_args, "--sysroot", |_| true);
|
|
|
|
let have_sys_root_arg = sys_root_arg.is_some();
|
|
|
|
let sys_root = sys_root_arg
|
|
|
|
.map(PathBuf::from)
|
|
|
|
.or_else(|| std::env::var("SYSROOT").ok().map(PathBuf::from))
|
|
|
|
.or_else(|| {
|
|
|
|
let home = std::env::var("RUSTUP_HOME")
|
|
|
|
.or_else(|_| std::env::var("MULTIRUST_HOME"))
|
|
|
|
.ok();
|
|
|
|
let toolchain = std::env::var("RUSTUP_TOOLCHAIN")
|
|
|
|
.or_else(|_| std::env::var("MULTIRUST_TOOLCHAIN"))
|
|
|
|
.ok();
|
|
|
|
toolchain_path(home, toolchain)
|
|
|
|
})
|
|
|
|
.or_else(|| {
|
|
|
|
Command::new("rustc")
|
|
|
|
.arg("--print")
|
|
|
|
.arg("sysroot")
|
|
|
|
.output()
|
|
|
|
.ok()
|
|
|
|
.and_then(|out| String::from_utf8(out.stdout).ok())
|
|
|
|
.map(|s| PathBuf::from(s.trim()))
|
|
|
|
})
|
|
|
|
.or_else(|| option_env!("SYSROOT").map(PathBuf::from))
|
|
|
|
.or_else(|| {
|
|
|
|
let home = option_env!("RUSTUP_HOME")
|
|
|
|
.or(option_env!("MULTIRUST_HOME"))
|
|
|
|
.map(ToString::to_string);
|
|
|
|
let toolchain = option_env!("RUSTUP_TOOLCHAIN")
|
|
|
|
.or(option_env!("MULTIRUST_TOOLCHAIN"))
|
|
|
|
.map(ToString::to_string);
|
|
|
|
toolchain_path(home, toolchain)
|
|
|
|
})
|
|
|
|
.map(|pb| pb.to_string_lossy().to_string())
|
|
|
|
.expect("need to specify SYSROOT env var during clippy compilation, or use rustup or multirust");
|
2019-06-08 21:19:16 +00:00
|
|
|
|
2020-06-23 15:05:22 +00:00
|
|
|
// make "clippy-driver --rustc" work like a subcommand that passes further args to "rustc"
|
|
|
|
// for example `clippy-driver --rustc --version` will print the rustc version that clippy-driver
|
|
|
|
// uses
|
|
|
|
if let Some(pos) = orig_args.iter().position(|arg| arg == "--rustc") {
|
|
|
|
orig_args.remove(pos);
|
|
|
|
orig_args[0] = "rustc".to_string();
|
|
|
|
|
|
|
|
// if we call "rustc", we need to pass --sysroot here as well
|
|
|
|
let mut args: Vec<String> = orig_args.clone();
|
|
|
|
if !have_sys_root_arg {
|
|
|
|
args.extend(vec!["--sysroot".into(), sys_root]);
|
|
|
|
};
|
|
|
|
|
2020-10-07 12:09:59 +00:00
|
|
|
return rustc_driver::RunCompiler::new(&args, &mut DefaultCallbacks).run();
|
2020-06-23 15:05:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if orig_args.iter().any(|a| a == "--version" || a == "-V") {
|
|
|
|
let version_info = rustc_tools_util::get_version_info!();
|
|
|
|
println!("{}", version_info);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2020-05-17 15:36:26 +00:00
|
|
|
// Setting RUSTC_WRAPPER causes Cargo to pass 'rustc' as the first argument.
|
|
|
|
// We're invoking the compiler programmatically, so we ignore this/
|
2020-12-20 16:19:49 +00:00
|
|
|
let wrapper_mode = orig_args.get(1).map(Path::new).and_then(Path::file_stem) == Some("rustc".as_ref());
|
2020-05-17 15:36:26 +00:00
|
|
|
|
|
|
|
if wrapper_mode {
|
|
|
|
// we still want to be able to invoke it normally though
|
|
|
|
orig_args.remove(1);
|
|
|
|
}
|
|
|
|
|
2020-12-20 16:19:49 +00:00
|
|
|
if !wrapper_mode && (orig_args.iter().any(|a| a == "--help" || a == "-h") || orig_args.len() == 1) {
|
2020-05-17 15:36:26 +00:00
|
|
|
display_help();
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// this conditional check for the --sysroot flag is there so users can call
|
|
|
|
// `clippy_driver` directly
|
|
|
|
// without having to pass --sysroot or anything
|
|
|
|
let mut args: Vec<String> = orig_args.clone();
|
|
|
|
if !have_sys_root_arg {
|
|
|
|
args.extend(vec!["--sysroot".into(), sys_root]);
|
|
|
|
};
|
|
|
|
|
2020-12-23 09:52:53 +00:00
|
|
|
let mut no_deps = false;
|
|
|
|
let clippy_args = env::var("CLIPPY_ARGS")
|
|
|
|
.unwrap_or_default()
|
|
|
|
.split("__CLIPPY_HACKERY__")
|
|
|
|
.filter_map(|s| match s {
|
|
|
|
"" => None,
|
|
|
|
"--no-deps" => {
|
|
|
|
no_deps = true;
|
|
|
|
None
|
|
|
|
},
|
|
|
|
_ => Some(s.to_string()),
|
|
|
|
})
|
|
|
|
.chain(vec!["--cfg".into(), r#"feature="cargo-clippy""#.into()])
|
|
|
|
.collect::<Vec<String>>();
|
2020-12-20 16:19:49 +00:00
|
|
|
|
|
|
|
// We enable Clippy if one of the following conditions is met
|
|
|
|
// - IF Clippy is run on its test suite OR
|
|
|
|
// - IF Clippy is run on the main crate, not on deps (`!cap_lints_allow`) THEN
|
|
|
|
// - IF `--no-deps` is not set (`!no_deps`) OR
|
|
|
|
// - IF `--no-deps` is set and Clippy is run on the specified primary package
|
2021-01-15 09:56:44 +00:00
|
|
|
let clippy_tests_set = env::var("__CLIPPY_INTERNAL_TESTS").map_or(false, |val| val == "true");
|
2020-12-20 16:19:49 +00:00
|
|
|
let cap_lints_allow = arg_value(&orig_args, "--cap-lints", |val| val == "allow").is_some();
|
|
|
|
let in_primary_package = env::var("CARGO_PRIMARY_PACKAGE").is_ok();
|
2020-05-17 15:36:26 +00:00
|
|
|
|
2020-12-20 16:19:49 +00:00
|
|
|
let clippy_enabled = clippy_tests_set || (!cap_lints_allow && (!no_deps || in_primary_package));
|
2020-05-17 15:36:26 +00:00
|
|
|
if clippy_enabled {
|
2020-12-23 09:52:53 +00:00
|
|
|
args.extend(clippy_args);
|
2020-05-17 15:36:26 +00:00
|
|
|
}
|
2020-12-20 16:19:49 +00:00
|
|
|
|
2020-05-17 15:36:26 +00:00
|
|
|
let mut clippy = ClippyCallbacks;
|
|
|
|
let mut default = DefaultCallbacks;
|
|
|
|
let callbacks: &mut (dyn rustc_driver::Callbacks + Send) =
|
|
|
|
if clippy_enabled { &mut clippy } else { &mut default };
|
2020-12-20 16:19:49 +00:00
|
|
|
|
2020-10-07 12:09:59 +00:00
|
|
|
rustc_driver::RunCompiler::new(&args, callbacks).run()
|
2020-05-17 15:36:26 +00:00
|
|
|
}))
|
2017-09-18 10:47:33 +00:00
|
|
|
}
|