waffle/fuzz/fuzz_targets/straightline_differential.rs

212 lines
6.4 KiB
Rust
Raw Normal View History

#![no_main]
use libfuzzer_sys::{arbitrary, fuzz_target};
2022-11-30 01:32:38 +00:00
use std::sync::atomic::{AtomicU64, Ordering};
use waffle::Module;
2021-12-25 07:56:21 +00:00
fn reject(bytes: &[u8]) -> bool {
let parser = wasmparser::Parser::new(0);
2021-12-25 01:03:13 +00:00
let mut has_start = false;
2021-12-25 07:56:21 +00:00
let mut has_global_set = false;
let mut num_globals = 0;
for payload in parser.parse_all(bytes) {
match payload.unwrap() {
wasmparser::Payload::CodeSectionEntry(body) => {
for op in body.get_operators_reader().unwrap() {
let op = op.unwrap();
match op {
wasmparser::Operator::Loop { .. } => {
2021-12-25 01:03:13 +00:00
// Disallow direct loops.
return true;
}
wasmparser::Operator::Call { .. }
| wasmparser::Operator::CallIndirect { .. } => {
// Disallow recursion.
return true;
}
2021-12-25 07:56:21 +00:00
wasmparser::Operator::GlobalSet { .. } => {
has_global_set = true;
}
_ => {}
}
}
}
2021-12-25 01:03:13 +00:00
wasmparser::Payload::StartSection { .. } => {
has_start = true;
}
2021-12-25 07:56:21 +00:00
wasmparser::Payload::ExportSection(mut reader) => {
for _ in 0..reader.get_count() {
let e = reader.read().unwrap();
match &e.kind {
&wasmparser::ExternalKind::Global => {
num_globals += 1;
}
_ => {}
}
}
}
_ => {}
}
}
2021-12-25 07:56:21 +00:00
if !has_start || !has_global_set || num_globals < 1 {
return true;
}
false
}
#[derive(Debug)]
struct Config;
impl<'a> arbitrary::Arbitrary<'a> for Config {
fn arbitrary(_u: &mut arbitrary::Unstructured<'a>) -> arbitrary::Result<Self> {
Ok(Config)
}
}
impl wasm_smith::Config for Config {
fn min_funcs(&self) -> usize {
1
}
fn max_funcs(&self) -> usize {
1
}
fn min_memories(&self) -> u32 {
1
}
fn max_memories(&self) -> usize {
1
}
fn min_globals(&self) -> usize {
10
}
fn max_globals(&self) -> usize {
10
}
fn min_tables(&self) -> u32 {
0
}
fn max_tables(&self) -> usize {
0
}
fn min_imports(&self) -> usize {
0
}
fn max_imports(&self) -> usize {
0
}
fn min_exports(&self) -> usize {
12
}
fn max_exports(&self) -> usize {
12
}
fn allow_start_export(&self) -> bool {
true
}
fn canonicalize_nans(&self) -> bool {
true
}
2021-12-25 01:03:13 +00:00
fn max_memory_pages(&self, _is_64: bool) -> u64 {
1
}
}
fuzz_target!(|module: wasm_smith::ConfiguredModule<Config>| {
let _ = env_logger::try_init();
log::debug!("original module: {:?}", module.module);
let orig_bytes = module.module.to_bytes();
2021-12-25 07:56:21 +00:00
if reject(&orig_bytes[..]) {
log::debug!("Discarding fuzz run. Body:\n{:?}", module);
return;
2021-12-25 07:56:21 +00:00
} else {
log::info!("body: {:?}", module);
}
2021-12-25 01:03:13 +00:00
let engine = wasmtime::Engine::default();
let mut store = wasmtime::Store::new(&engine, ());
let orig_module =
wasmtime::Module::new(&engine, &orig_bytes[..]).expect("failed to parse original wasm");
let orig_instance = wasmtime::Instance::new(&mut store, &orig_module, &[]);
let orig_instance = match orig_instance {
Ok(orig_instance) => orig_instance,
Err(e) => {
2021-12-25 07:56:21 +00:00
log::info!("cannot run start on orig intsance ({:?}); discarding", e);
return;
}
};
let parsed_module = Module::from_wasm_bytes(&orig_bytes[..]).unwrap();
2022-11-30 01:32:38 +00:00
let roundtrip_bytes = parsed_module.to_wasm_bytes().unwrap();
2021-12-25 01:13:23 +00:00
if let Ok(filename) = std::env::var("FUZZ_DUMP_WASM") {
std::fs::write(format!("{}_orig.wasm", filename), &orig_bytes[..]).unwrap();
std::fs::write(format!("{}_roundtrip.wasm", filename), &roundtrip_bytes[..]).unwrap();
}
2022-11-30 01:32:38 +00:00
let total = TOTAL.fetch_add(1, Ordering::Relaxed);
2021-12-25 01:03:13 +00:00
let roundtrip_module = wasmtime::Module::new(&engine, &roundtrip_bytes[..])
.expect("failed to parse roundtripped wasm");
let roundtrip_instance = wasmtime::Instance::new(&mut store, &roundtrip_module, &[])
.expect("cannot instantiate roundtripped wasm");
// Ensure exports are equal.
let a_globals: Vec<_> = orig_instance
.exports(&mut store)
.filter_map(|e| e.into_global())
.collect();
let a_globals: Vec<wasmtime::Val> = a_globals.into_iter().map(|g| g.get(&mut store)).collect();
let a_mems: Vec<wasmtime::Memory> = orig_instance
.exports(&mut store)
.filter_map(|e| e.into_memory())
.collect();
let b_globals: Vec<_> = roundtrip_instance
.exports(&mut store)
.filter_map(|e| e.into_global())
.collect();
let b_globals: Vec<wasmtime::Val> = b_globals.into_iter().map(|g| g.get(&mut store)).collect();
let b_mems: Vec<wasmtime::Memory> = roundtrip_instance
.exports(&mut store)
.filter_map(|e| e.into_memory())
.collect();
2021-12-25 01:06:59 +00:00
log::info!("a_globals = {:?}", a_globals);
log::info!("b_globals = {:?}", b_globals);
2021-12-25 01:03:13 +00:00
assert_eq!(a_globals.len(), b_globals.len());
for (a, b) in a_globals.into_iter().zip(b_globals.into_iter()) {
match (a, b) {
(wasmtime::Val::I32(a), wasmtime::Val::I32(b)) => assert_eq!(a, b),
(wasmtime::Val::I64(a), wasmtime::Val::I64(b)) => assert_eq!(a, b),
(wasmtime::Val::F32(a), wasmtime::Val::F32(b)) => assert_eq!(a, b),
(wasmtime::Val::F64(a), wasmtime::Val::F64(b)) => assert_eq!(a, b),
_ => panic!("mismatching types"),
}
}
2021-12-25 01:03:13 +00:00
assert_eq!(a_mems.len(), b_mems.len());
for (a, b) in a_mems.into_iter().zip(b_mems.into_iter()) {
let a_data = a.data(&store);
let b_data = b.data(&store);
assert_eq!(a_data, b_data);
}
2022-11-30 01:32:38 +00:00
success(total);
});
2022-11-30 01:32:38 +00:00
static TOTAL: AtomicU64 = AtomicU64::new(0);
static SUCCESS: AtomicU64 = AtomicU64::new(0);
fn success(total: u64) {
let value = SUCCESS.fetch_add(1, Ordering::Relaxed);
if value % 1000 == 0 {
eprintln!("SUCCESS: {} / TOTAL: {}", value, total);
}
}