coreutils/hashsum/hashsum.rs

264 lines
9.5 KiB
Rust
Raw Normal View History

2014-06-22 20:27:43 +00:00
#![crate_id = "hashsum#1.0.0"]
2014-03-24 23:48:40 +00:00
2014-03-25 06:37:28 +00:00
/*
* This file is part of the uutils coreutils package.
*
* (c) Arcterus <arcterus@mail.com>
2014-06-22 20:27:43 +00:00
* (c) Vsevolod Velichko <torkvemada@sorokdva.net>
2014-03-25 06:37:28 +00:00
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
2014-03-31 16:40:21 +00:00
#![feature(macro_rules)]
2014-03-24 23:48:40 +00:00
extern crate crypto = "rust-crypto";
extern crate getopts;
2014-05-07 06:25:49 +00:00
extern crate libc;
2014-03-24 23:48:40 +00:00
use std::io::fs::File;
2014-05-07 23:55:53 +00:00
use std::io::stdio::stdin_raw;
2014-03-24 23:48:40 +00:00
use std::io::BufferedReader;
use std::os;
use crypto::digest::Digest;
2014-06-22 20:27:43 +00:00
use crypto::md5::Md5;
use crypto::sha1::Sha1;
use crypto::sha2::{Sha224, Sha256, Sha384, Sha512};
2014-03-24 23:48:40 +00:00
#[path = "../common/util.rs"]
mod util;
2014-06-22 20:27:43 +00:00
static NAME: &'static str = "hashsum";
2014-03-24 23:48:40 +00:00
static VERSION: &'static str = "1.0.0";
2014-06-22 20:27:43 +00:00
fn is_custom_binary(program: &str) -> bool {
match program {
"md5sum" | "sha1sum"
| "sha224sum" | "sha256sum"
| "sha384sum" | "sha512sum" => true,
_ => false
}
}
fn get_algo_opts(program: &str) -> Vec<getopts::OptGroup> {
if is_custom_binary(program) {
Vec::new()
} else {
vec!(
getopts::optflag("", "md5", "work with MD5"),
getopts::optflag("", "sha1", "work with SHA1"),
getopts::optflag("", "sha224", "work with SHA224"),
getopts::optflag("", "sha256", "work with SHA256"),
getopts::optflag("", "sha384", "work with SHA384"),
getopts::optflag("", "sha512", "work with SHA512")
)
}
}
fn detect_algo(program: &str, matches: &getopts::Matches) -> (&str, Box<Digest>) {
let mut alg: Option<Box<Digest>> = None;
let mut name: &'static str = "";
match program {
"md5sum" => ("MD5", box Md5::new() as Box<Digest>),
"sha1sum" => ("SHA1", box Sha1::new() as Box<Digest>),
"sha224sum" => ("SHA224", box Sha224::new() as Box<Digest>),
"sha256sum" => ("SHA256", box Sha256::new() as Box<Digest>),
"sha384sum" => ("SHA384", box Sha384::new() as Box<Digest>),
"sha512sum" => ("SHA512", box Sha512::new() as Box<Digest>),
_ => {
{
let set_or_crash = |n: &'static str, val: Box<Digest>| -> () {
if alg.is_some() { crash!(1, "You cannot combine multiple hash algorithms!") };
name = n;
alg = Some(val);
};
if matches.opt_present("md5") { set_or_crash("MD5", box Md5::new()) };
if matches.opt_present("sha1") { set_or_crash("SHA1", box Sha1::new()) };
if matches.opt_present("sha224") { set_or_crash("SHA224", box Sha224::new()) };
if matches.opt_present("sha256") { set_or_crash("SHA256", box Sha256::new()) };
if matches.opt_present("sha384") { set_or_crash("SHA384", box Sha384::new()) };
if matches.opt_present("sha512") { set_or_crash("SHA512", box Sha512::new()) };
}
if alg.is_none() { crash!(1, "You must specify hash algorithm!") };
(name, alg.unwrap())
}
}
}
#[allow(dead_code)]
fn main() { os::set_exit_status(uumain(os::args())); }
pub fn uumain(args: Vec<String>) -> int {
2014-05-16 08:32:58 +00:00
let program = args.get(0).clone();
2014-06-22 20:27:43 +00:00
let binary = Path::new(program.as_slice());
let binary_name = binary.filename_str().unwrap();
2014-03-24 23:48:40 +00:00
2014-06-22 20:27:43 +00:00
let mut opts: Vec<getopts::OptGroup> = vec!(
2014-03-24 23:48:40 +00:00
getopts::optflag("b", "binary", "read in binary mode"),
2014-06-22 20:27:43 +00:00
getopts::optflag("c", "check", "read hashsums from the FILEs and check them"),
2014-03-24 23:48:40 +00:00
getopts::optflag("", "tag", "create a BSD-style checksum"),
getopts::optflag("t", "text", "read in text mode (default)"),
getopts::optflag("q", "quiet", "don't print OK for each successfully verified file"),
getopts::optflag("s", "status", "don't output anything, status code shows success"),
getopts::optflag("", "strict", "exit non-zero for improperly formatted checksum lines"),
getopts::optflag("w", "warn", "warn about improperly formatted checksum lines"),
getopts::optflag("h", "help", "display this help and exit"),
2014-06-22 20:27:43 +00:00
getopts::optflag("V", "version", "output version information and exit"),
);
opts.push_all_move(get_algo_opts(binary_name.as_slice()));
2014-03-24 23:48:40 +00:00
2014-06-22 20:27:43 +00:00
let matches = match getopts::getopts(args.tail(), opts.as_slice()) {
2014-03-24 23:48:40 +00:00
Ok(m) => m,
2014-06-15 10:50:40 +00:00
Err(f) => crash!(1, "{}", f)
2014-03-24 23:48:40 +00:00
};
if matches.opt_present("help") {
2014-06-22 20:27:43 +00:00
usage(program.as_slice(), binary_name.as_slice(), opts.as_slice());
2014-03-24 23:48:40 +00:00
} else if matches.opt_present("version") {
2014-06-22 20:27:43 +00:00
version();
2014-03-24 23:48:40 +00:00
} else {
2014-06-22 20:27:43 +00:00
let (name, algo) = detect_algo(binary_name.as_slice(), &matches);
2014-03-24 23:48:40 +00:00
let binary = matches.opt_present("binary");
let check = matches.opt_present("check");
let tag = matches.opt_present("tag");
let status = matches.opt_present("status");
let quiet = matches.opt_present("quiet") || status;
let strict = matches.opt_present("strict");
let warn = matches.opt_present("warn") && !status;
2014-05-07 23:55:53 +00:00
let files = if matches.free.is_empty() {
2014-05-28 06:33:39 +00:00
vec!("-".to_string())
2014-05-07 23:55:53 +00:00
} else {
matches.free
};
2014-06-22 20:27:43 +00:00
match hashsum(name, algo, files, binary, check, tag, status, quiet, strict, warn) {
Ok(()) => return 0,
Err(e) => return e
}
2014-03-24 23:48:40 +00:00
}
0
2014-03-24 23:48:40 +00:00
}
2014-06-22 20:27:43 +00:00
fn version() {
println!("{} v{}", NAME, VERSION);
}
fn usage(program: &str, binary_name: &str, opts: &[getopts::OptGroup]) {
version();
println!("");
println!("Usage:");
if is_custom_binary(binary_name) {
println!(" {} [OPTION]... [FILE]...", program);
} else {
println!(" {} {{--md5|--sha1|--sha224|--sha256|--sha384|--sha512}} [OPTION]... [FILE]...", program);
}
println!("");
print!("{}", getopts::usage("Compute and check message digests.", opts));
}
fn hashsum(algoname: &str, mut digest: Box<Digest>, files: Vec<String>, binary: bool, check: bool, tag: bool, status: bool, quiet: bool, strict: bool, warn: bool) -> Result<(), int> {
let bytes = digest.output_bits() / 4;
2014-03-24 23:48:40 +00:00
let mut bad_format = 0;
let mut failed = 0;
for filename in files.iter() {
2014-05-17 10:32:14 +00:00
let filename: &str = filename.as_slice();
2014-05-07 23:55:53 +00:00
let mut file = BufferedReader::new(
2014-05-23 12:28:40 +00:00
if filename == "-" {
2014-05-09 00:12:57 +00:00
box stdin_raw() as Box<Reader>
2014-05-07 23:55:53 +00:00
} else {
2014-05-09 00:12:57 +00:00
box safe_unwrap!(File::open(&Path::new(filename))) as Box<Reader>
2014-05-07 23:55:53 +00:00
}
);
2014-03-24 23:48:40 +00:00
if check {
2014-05-07 23:55:53 +00:00
let mut buffer = file;
//let mut buffer = BufferedReader::new(file);
2014-03-24 23:48:40 +00:00
for (i, line) in buffer.lines().enumerate() {
let line = safe_unwrap!(line);
2014-05-23 12:28:40 +00:00
let (ck_filename, sum) = match from_gnu(line.as_slice(), bytes) {
2014-03-24 23:48:40 +00:00
Some(m) => m,
2014-06-22 20:27:43 +00:00
None => match from_bsd(algoname, line.as_slice(), bytes) {
2014-03-24 23:48:40 +00:00
Some(m) => m,
None => {
bad_format += 1;
if strict {
return Err(1);
2014-03-24 23:48:40 +00:00
}
if warn {
2014-06-22 20:27:43 +00:00
show_warning!("{}: {}: improperly formatted {} checksum line", filename, i + 1, algoname);
2014-03-24 23:48:40 +00:00
}
continue;
}
}
};
2014-06-22 20:27:43 +00:00
let real_sum = calc_sum(&mut digest, &mut safe_unwrap!(File::open(&Path::new(ck_filename))), binary);
2014-05-23 12:28:40 +00:00
if sum == real_sum.as_slice() {
2014-03-24 23:48:40 +00:00
if !quiet {
println!("{}: OK", ck_filename);
}
} else {
if !status {
println!("{}: FAILED", ck_filename);
}
failed += 1;
}
}
} else {
2014-06-22 20:27:43 +00:00
let sum = calc_sum(&mut digest, &mut file, binary);
2014-03-24 23:48:40 +00:00
if tag {
2014-06-22 20:27:43 +00:00
println!("{} ({}) = {}", algoname, filename, sum);
2014-03-24 23:48:40 +00:00
} else {
println!("{} {}", sum, filename);
}
}
}
if !status {
if bad_format == 1 {
show_warning!("{} line is improperly formatted", bad_format);
} else if bad_format > 1 {
show_warning!("{} lines are improperly formatted", bad_format);
}
if failed > 0 {
show_warning!("{} computed checksum did NOT match", failed);
}
}
Ok(())
2014-03-24 23:48:40 +00:00
}
2014-06-22 20:27:43 +00:00
fn calc_sum(digest: &mut Box<Digest>, file: &mut Reader, binary: bool) -> String {
2014-03-24 23:48:40 +00:00
let data =
if binary {
2014-05-23 12:28:40 +00:00
(safe_unwrap!(file.read_to_end()))
2014-03-24 23:48:40 +00:00
} else {
(safe_unwrap!(file.read_to_str())).into_bytes()
2014-03-24 23:48:40 +00:00
};
2014-06-22 20:27:43 +00:00
digest.reset();
digest.input(data.as_slice());
digest.result_str()
2014-03-24 23:48:40 +00:00
}
fn from_gnu<'a>(line: &'a str, bytes: uint) -> Option<(&'a str, &'a str)> {
let sum = line.slice_to(bytes);
if sum.len() < bytes || line.slice(bytes, bytes + 2) != " " {
None
} else {
Some((line.slice(bytes + 2, line.len() - 1), sum))
}
}
2014-06-22 20:27:43 +00:00
fn from_bsd<'a>(algoname: &str, line: &'a str, bytes: uint) -> Option<(&'a str, &'a str)> {
let expected = format!("{} (", algoname);
if line.slice(0, expected.len()) == expected.as_slice() {
2014-03-24 23:48:40 +00:00
let rparen = match line.find(')') {
Some(m) => m,
None => return None
};
2014-06-22 20:27:43 +00:00
if rparen > expected.len() && line.slice(rparen + 1, rparen + 4) == " = " && line.len() - 1 == rparen + 4 + bytes {
return Some((line.slice(expected.len(), rparen), line.slice(rparen + 4, line.len() - 1)));
2014-03-24 23:48:40 +00:00
}
}
None
}