-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fear(runtime-fuzzer): Introduce
run_corpus
script (#3260)
- Loading branch information
Showing
2 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
// This file is part of Gear. | ||
|
||
// Copyright (C) 2021-2023 Gear Technologies Inc. | ||
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0 | ||
|
||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
|
||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
|
||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
//! Runs provided from the cli corpus | ||
//! | ||
//! Alternatively, `cargo fuzz run` can be used to reproduce some corpus, | ||
//! but it won't give logs of [`GearCalls`] generation, which sheds some | ||
//! light on how `gear-wasm-gen` worked. | ||
//! | ||
//! Also that script can be used to run any bytes input, not only fuzzer's | ||
//! corpus. | ||
//! | ||
//! Just simply run `cargo run --release -- -p <path_to_corpus>`. | ||
use anyhow::Result; | ||
use arbitrary::{Arbitrary, Unstructured}; | ||
use clap::Parser; | ||
use runtime_fuzzer::{self, GearCalls}; | ||
use std::{fs, path::PathBuf}; | ||
|
||
/// A simple tool to run corpus. | ||
#[derive(Debug, Parser)] | ||
#[command(author, version, about, long_about = None)] | ||
struct Params { | ||
/// Path to the file, which contains corpus. | ||
#[arg(short, long)] | ||
path: PathBuf, | ||
} | ||
|
||
fn main() -> Result<()> { | ||
let params = Params::parse(); | ||
|
||
let corpus_bytes = fs::read(params.path)?; | ||
|
||
gear_utils::init_default_logger(); | ||
|
||
let mut unstructured = Unstructured::new(&corpus_bytes); | ||
let gear_calls = GearCalls::arbitrary(&mut unstructured)?; | ||
|
||
runtime_fuzzer::run(gear_calls); | ||
|
||
Ok(()) | ||
} |