2020-09-28 20:12:07 +05:30
|
|
|
extern crate clap;
|
|
|
|
extern crate thinp;
|
|
|
|
|
|
|
|
use atty::Stream;
|
|
|
|
use clap::{App, Arg};
|
|
|
|
use std::path::Path;
|
|
|
|
use std::process;
|
|
|
|
use std::process::exit;
|
|
|
|
use std::sync::Arc;
|
|
|
|
use thinp::file_utils;
|
|
|
|
use thinp::report::*;
|
|
|
|
use thinp::thin::dump::{dump, ThinDumpOptions};
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let parser = App::new("thin_check")
|
2021-05-11 23:42:11 +05:30
|
|
|
.version(thinp::version::tools_version())
|
2020-09-28 20:12:07 +05:30
|
|
|
.about("Validates thin provisioning metadata on a device or file.")
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("QUIET")
|
|
|
|
.help("Suppress output messages, return only exit code.")
|
|
|
|
.short("q")
|
|
|
|
.long("quiet"),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("SB_ONLY")
|
|
|
|
.help("Only check the superblock.")
|
|
|
|
.long("super-block-only")
|
|
|
|
.value_name("SB_ONLY"),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("SKIP_MAPPINGS")
|
|
|
|
.help("Don't check the mapping tree")
|
|
|
|
.long("skip-mappings")
|
|
|
|
.value_name("SKIP_MAPPINGS"),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("AUTO_REPAIR")
|
|
|
|
.help("Auto repair trivial issues.")
|
|
|
|
.long("auto-repair"),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("IGNORE_NON_FATAL")
|
|
|
|
.help("Only return a non-zero exit code if a fatal error is found.")
|
|
|
|
.long("ignore-non-fatal-errors"),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("CLEAR_NEEDS_CHECK")
|
|
|
|
.help("Clears the 'needs_check' flag in the superblock")
|
|
|
|
.long("clear-needs-check"),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("OVERRIDE_MAPPING_ROOT")
|
|
|
|
.help("Specify a mapping root to use")
|
|
|
|
.long("override-mapping-root")
|
|
|
|
.value_name("OVERRIDE_MAPPING_ROOT")
|
|
|
|
.takes_value(true),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("METADATA_SNAPSHOT")
|
|
|
|
.help("Check the metadata snapshot on a live pool")
|
|
|
|
.short("m")
|
|
|
|
.long("metadata-snapshot")
|
|
|
|
.value_name("METADATA_SNAPSHOT"),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("INPUT")
|
|
|
|
.help("Specify the input device to check")
|
|
|
|
.required(true)
|
|
|
|
.index(1),
|
|
|
|
)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("SYNC_IO")
|
|
|
|
.help("Force use of synchronous io")
|
|
|
|
.long("sync-io"),
|
|
|
|
);
|
|
|
|
|
|
|
|
let matches = parser.get_matches();
|
|
|
|
let input_file = Path::new(matches.value_of("INPUT").unwrap());
|
|
|
|
|
|
|
|
if !file_utils::file_exists(input_file) {
|
|
|
|
eprintln!("Couldn't find input file '{:?}'.", &input_file);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
let report;
|
|
|
|
|
|
|
|
if matches.is_present("QUIET") {
|
|
|
|
report = std::sync::Arc::new(mk_quiet_report());
|
|
|
|
} else if atty::is(Stream::Stdout) {
|
|
|
|
report = std::sync::Arc::new(mk_progress_bar_report());
|
|
|
|
} else {
|
|
|
|
report = Arc::new(mk_simple_report());
|
|
|
|
}
|
|
|
|
|
|
|
|
let opts = ThinDumpOptions {
|
|
|
|
dev: &input_file,
|
|
|
|
async_io: !matches.is_present("SYNC_IO"),
|
|
|
|
report,
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Err(reason) = dump(opts) {
|
|
|
|
println!("{}", reason);
|
|
|
|
process::exit(1);
|
|
|
|
}
|
|
|
|
}
|