coreutils/fuzz/fuzz_targets/fuzz_common.rs

140 lines
3.8 KiB
Rust
Raw Normal View History

2023-03-20 19:55:45 +00:00
// This file is part of the uutils coreutils package.
//
// For the full copyright and license information, please view the LICENSE
// file that was distributed with this source code.
use libc::{close, dup, dup2, pipe, STDOUT_FILENO};
use std::ffi::OsString;
use std::io;
use std::io::Write;
2023-03-20 19:55:45 +00:00
use std::process::Command;
use std::sync::atomic::Ordering;
use std::sync::{atomic::AtomicBool, Once};
static CHECK_GNU: Once = Once::new();
static IS_GNU: AtomicBool = AtomicBool::new(false);
pub fn is_gnu_cmd(cmd_path: &str) -> Result<(), std::io::Error> {
CHECK_GNU.call_once(|| {
let version_output = Command::new(cmd_path).arg("--version").output().unwrap();
println!("version_output {:#?}", version_output);
let version_str = String::from_utf8_lossy(&version_output.stdout).to_string();
if version_str.contains("GNU coreutils") {
IS_GNU.store(true, Ordering::Relaxed);
}
});
if IS_GNU.load(Ordering::Relaxed) {
Ok(())
} else {
panic!("Not the GNU implementation");
}
}
2023-09-28 19:52:26 +00:00
pub fn generate_and_run_uumain<F>(args: &[OsString], uumain_function: F) -> (String, i32)
where
F: FnOnce(std::vec::IntoIter<OsString>) -> i32,
{
let uumain_exit_status;
// Duplicate the stdout file descriptor
let original_stdout_fd = unsafe { dup(STDOUT_FILENO) };
if original_stdout_fd == -1 {
return ("Failed to duplicate STDOUT_FILENO".to_string(), -1);
}
println!("Running test {:?}", &args[0..]);
let mut pipe_fds = [-1; 2];
if unsafe { pipe(pipe_fds.as_mut_ptr()) } == -1 {
return ("Failed to create a pipe".to_string(), -1);
}
// Redirect stdout to the pipe
unsafe {
if dup2(pipe_fds[1], STDOUT_FILENO) == -1 {
close(pipe_fds[0]);
close(pipe_fds[1]);
return (
"Failed to redirect STDOUT_FILENO to the pipe".to_string(),
-1,
);
}
}
uumain_exit_status = uumain_function(args.to_owned().into_iter());
io::stdout().flush().unwrap();
// Restore the original stdout
unsafe {
if dup2(original_stdout_fd, STDOUT_FILENO) == -1 {
return (
"Failed to restore the original STDOUT_FILENO".to_string(),
-1,
);
}
close(original_stdout_fd);
}
unsafe { close(pipe_fds[1]) };
let mut captured_output = Vec::new();
let mut read_buffer = [0; 1024];
loop {
let bytes_read = unsafe {
libc::read(
pipe_fds[0],
read_buffer.as_mut_ptr() as *mut libc::c_void,
read_buffer.len(),
)
};
if bytes_read == -1 {
eprintln!("Failed to read from the pipe");
break;
}
if bytes_read <= 0 {
break;
}
captured_output.extend_from_slice(&read_buffer[..bytes_read as usize]);
}
unsafe { libc::close(pipe_fds[0]) };
let my_output = String::from_utf8_lossy(&captured_output)
.to_string()
.trim()
.to_owned();
(my_output, uumain_exit_status)
}
pub fn run_gnu_cmd(
cmd_path: &str,
args: &[OsString],
check_gnu: bool,
) -> Result<(String, i32), io::Error> {
if check_gnu {
is_gnu_cmd(cmd_path)?; // Check if it's a GNU implementation
}
let mut command = Command::new(cmd_path);
for arg in args {
command.arg(arg);
}
let output = command.output()?;
let exit_code = output.status.code().unwrap_or(-1);
if output.status.success() || !check_gnu {
Ok((
String::from_utf8_lossy(&output.stdout).to_string(),
exit_code,
))
} else {
Err(io::Error::new(
io::ErrorKind::Other,
format!("GNU command execution failed with exit code {}", exit_code),
))
}
}