Compare commits
86 Commits
fret_updat
...
fret
Author | SHA1 | Date | |
---|---|---|---|
798aa2ceb9 | |||
183ff32beb | |||
89979b64d9 | |||
35da9fdf24 | |||
1bca346b39 | |||
8b90886299 | |||
1bd7d853ac | |||
253048e534 | |||
52cc00fedc | |||
eec998c426 | |||
a328ddfd5f | |||
6a042da5c1 | |||
2e20a22dc6 | |||
bbc83ef6be | |||
48466ac2d7 | |||
ad8cecdba4 | |||
c2afc0186e | |||
4df67db479 | |||
402eff7b47 | |||
a8a6c175c8 | |||
8a79e12f91 | |||
a3e38b6abb | |||
eb04325f09 | |||
cfb8fa2b32 | |||
2889e9bf61 | |||
960764cf85 | |||
e6816cc2de | |||
f3180a35cc | |||
54312b2577 | |||
6d920fd962 | |||
281979ecd8 | |||
c628afaa81 | |||
c548c6bc09 | |||
6e8769907d | |||
bf639e42fa | |||
a05ff97d0c | |||
f09034b7fe | |||
d118eeacbd | |||
57fc441118 | |||
10b5fe8a74 | |||
7f987b037d | |||
58be280a62 | |||
3c586f5047 | |||
9336b932d0 | |||
e0f73778e2 | |||
e5ac5ba825 | |||
2acf3ef301 | |||
28bac2a850 | |||
41586dd8b1 | |||
7420aabeeb | |||
d118ff0056 | |||
dfe4f713b9 | |||
f7a05d2a7c | |||
2593bdf42f | |||
8c8ab7c44e | |||
9cadc5d61c | |||
594554eca0 | |||
267309b954 | |||
35435fbd97 | |||
8fcc54bbdd | |||
1f538f9834 | |||
ba01f600ee | |||
2cb479581d | |||
1fbf948478 | |||
6e1d5695e3 | |||
8d31196614 | |||
4c90144db5 | |||
eeaf7eb43f | |||
68c4887dad | |||
7ca2d43f3d | |||
9f97852e4a | |||
f4e1990387 | |||
d936234976 | |||
795fbff61a | |||
6a9df35e28 | |||
9b9fbc3677 | |||
decae09931 | |||
b812e994a6 | |||
4587f442d0 | |||
c748fecbe2 | |||
7595d25192 | |||
79bca99cc7 | |||
b07f7ccbca | |||
e3f38edd0a | |||
6ad55e3b29 | |||
f7ee38ebb2 |
151
.github/workflows/build_and_test.yml
vendored
151
.github/workflows/build_and_test.yml
vendored
@ -16,9 +16,6 @@ jobs:
|
|||||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- name: Install mimetype
|
|
||||||
if: runner.os == 'Linux'
|
|
||||||
run: sudo apt-get install libfile-mimeinfo-perl
|
|
||||||
- uses: actions-rs/toolchain@v1
|
- uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
profile: minimal
|
profile: minimal
|
||||||
@ -34,6 +31,9 @@ jobs:
|
|||||||
crate: mdbook-linkcheck
|
crate: mdbook-linkcheck
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: Swatinem/rust-cache@v2
|
- uses: Swatinem/rust-cache@v2
|
||||||
|
- name: Install mimetype
|
||||||
|
if: runner.os == 'Linux'
|
||||||
|
run: sudo apt-get install libfile-mimeinfo-perl
|
||||||
- name: Check for binary blobs
|
- name: Check for binary blobs
|
||||||
if: runner.os == 'Linux'
|
if: runner.os == 'Linux'
|
||||||
run: ./scripts/check_for_blobs.sh
|
run: ./scripts/check_for_blobs.sh
|
||||||
@ -49,8 +49,6 @@ jobs:
|
|||||||
run: cargo test
|
run: cargo test
|
||||||
- name: Test libafl no_std
|
- name: Test libafl no_std
|
||||||
run: cd libafl && cargo test --no-default-features
|
run: cd libafl && cargo test --no-default-features
|
||||||
- name: Test libafl_bolts no_std no_alloc
|
|
||||||
run: cd libafl_bolts && cargo test --no-default-features
|
|
||||||
- name: Test libafl_targets no_std
|
- name: Test libafl_targets no_std
|
||||||
run: cd libafl_targets && cargo test --no-default-features
|
run: cd libafl_targets && cargo test --no-default-features
|
||||||
|
|
||||||
@ -63,14 +61,18 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
profile: minimal
|
profile: minimal
|
||||||
toolchain: stable
|
toolchain: stable
|
||||||
|
- name: set mold linker as default linker
|
||||||
|
uses: rui314/setup-mold@v1
|
||||||
- name: Install and cache deps
|
- name: Install and cache deps
|
||||||
uses: awalsh128/cache-apt-pkgs-action@v1.1.0
|
uses: awalsh128/cache-apt-pkgs-action@v1.1.0
|
||||||
with:
|
with:
|
||||||
packages: llvm llvm-dev clang ninja-build clang-format-13 shellcheck libgtk-3-dev gcc-arm-linux-gnueabi g++-arm-linux-gnueabi libslirp-dev libz3-dev
|
packages: llvm llvm-dev clang ninja-build clang-format-13 shellcheck libgtk-3-dev gcc-arm-linux-gnueabi g++-arm-linux-gnueabi libslirp-dev
|
||||||
- name: get clang version
|
- name: get clang version
|
||||||
run: command -v llvm-config && clang -v
|
run: command -v llvm-config && clang -v
|
||||||
|
- name: Install cargo-hack
|
||||||
|
run: curl -LsSf https://github.com/taiki-e/cargo-hack/releases/latest/download/cargo-hack-x86_64-unknown-linux-gnu.tar.gz | tar xzf - -C ~/.cargo/bin
|
||||||
- name: Add nightly rustfmt and clippy
|
- name: Add nightly rustfmt and clippy
|
||||||
run: rustup toolchain install nightly --component rustfmt --component clippy --component miri --allow-downgrade
|
run: rustup toolchain install nightly --component rustfmt --component clippy --allow-downgrade
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: Swatinem/rust-cache@v2
|
- uses: Swatinem/rust-cache@v2
|
||||||
|
|
||||||
@ -80,8 +82,6 @@ jobs:
|
|||||||
run: cargo check --features=sancov_pcguard_edges
|
run: cargo check --features=sancov_pcguard_edges
|
||||||
- name: Format
|
- name: Format
|
||||||
run: cargo fmt -- --check
|
run: cargo fmt -- --check
|
||||||
- name: Cleanup
|
|
||||||
run: cargo clean
|
|
||||||
- name: Run clang-format style check for C/C++ programs.
|
- name: Run clang-format style check for C/C++ programs.
|
||||||
run: clang-format-13 -n -Werror --style=file $(find . -type f \( -name '*.cpp' -o -iname '*.hpp' -o -name '*.cc' -o -name '*.cxx' -o -name '*.cc' -o -name '*.h' \) | grep -v '/target/' | grep -v 'libpng-1\.6\.37' | grep -v 'stb_image\.h' | grep -v 'dlmalloc\.c' | grep -v 'QEMU-Nyx')
|
run: clang-format-13 -n -Werror --style=file $(find . -type f \( -name '*.cpp' -o -iname '*.hpp' -o -name '*.cc' -o -name '*.cxx' -o -name '*.cc' -o -name '*.h' \) | grep -v '/target/' | grep -v 'libpng-1\.6\.37' | grep -v 'stb_image\.h' | grep -v 'dlmalloc\.c' | grep -v 'QEMU-Nyx')
|
||||||
- name: run shellcheck
|
- name: run shellcheck
|
||||||
@ -91,43 +91,13 @@ jobs:
|
|||||||
|
|
||||||
# ---- doc check ----
|
# ---- doc check ----
|
||||||
- name: Build Docs
|
- name: Build Docs
|
||||||
run: cargo +nightly doc --all-features
|
run: cargo doc
|
||||||
- name: Test Docs
|
- name: Test Docs
|
||||||
run: cargo +nightly test --doc --all-features
|
run: cargo +nightly test --doc --all-features
|
||||||
|
|
||||||
# ---- build normal and examples ----
|
# ---- build and feature check ----
|
||||||
- name: Run a normal build
|
- name: Run a normal build
|
||||||
run: cargo build --verbose
|
run: cargo build --verbose
|
||||||
- name: Build examples
|
|
||||||
run: cargo build --examples --verbose
|
|
||||||
|
|
||||||
# --- miri undefined behavior test --
|
|
||||||
- name: Run miri tests
|
|
||||||
run: RUST_BACKTRACE=1 MIRIFLAGS="-Zmiri-disable-isolation" cargo +nightly miri test
|
|
||||||
|
|
||||||
ubuntu-check:
|
|
||||||
runs-on: ubuntu-22.04
|
|
||||||
steps:
|
|
||||||
- name: Remove Dotnet & Haskell
|
|
||||||
run: rm -rf /usr/share/dotnet && rm -rf /opt/ghc
|
|
||||||
- uses: actions-rs/toolchain@v1
|
|
||||||
with:
|
|
||||||
profile: minimal
|
|
||||||
toolchain: stable
|
|
||||||
- name: Install and cache deps
|
|
||||||
uses: awalsh128/cache-apt-pkgs-action@v1.1.0
|
|
||||||
with:
|
|
||||||
packages: llvm llvm-dev clang ninja-build clang-format-13 shellcheck libgtk-3-dev gcc-arm-linux-gnueabi g++-arm-linux-gnueabi libslirp-dev libz3-dev
|
|
||||||
- name: get clang version
|
|
||||||
run: command -v llvm-config && clang -v
|
|
||||||
- name: Install cargo-hack
|
|
||||||
run: curl -LsSf https://github.com/taiki-e/cargo-hack/releases/latest/download/cargo-hack-x86_64-unknown-linux-gnu.tar.gz | tar xzf - -C ~/.cargo/bin
|
|
||||||
- name: Add nightly
|
|
||||||
run: rustup toolchain install nightly --allow-downgrade
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- uses: Swatinem/rust-cache@v2
|
|
||||||
|
|
||||||
# ---- build and feature check ----
|
|
||||||
# cargo-hack's --feature-powerset would be nice here but libafl has a too many knobs
|
# cargo-hack's --feature-powerset would be nice here but libafl has a too many knobs
|
||||||
- name: Check each feature
|
- name: Check each feature
|
||||||
# Skipping `python` as it has to be built with the `maturin` tool
|
# Skipping `python` as it has to be built with the `maturin` tool
|
||||||
@ -136,6 +106,8 @@ jobs:
|
|||||||
run: cargo hack check --each-feature --clean-per-run --exclude-features=prelude,agpl,nautilus,python,sancov_pcguard_edges,arm,aarch64,i386,be,systemmode --no-dev-deps
|
run: cargo hack check --each-feature --clean-per-run --exclude-features=prelude,agpl,nautilus,python,sancov_pcguard_edges,arm,aarch64,i386,be,systemmode --no-dev-deps
|
||||||
- name: Check nightly features
|
- name: Check nightly features
|
||||||
run: cargo +nightly check --features=agpl && cargo +nightly check --features=nautilus
|
run: cargo +nightly check --features=agpl && cargo +nightly check --features=nautilus
|
||||||
|
- name: Build examples
|
||||||
|
run: cargo build --examples --verbose
|
||||||
|
|
||||||
ubuntu-concolic:
|
ubuntu-concolic:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -158,16 +130,16 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
profile: minimal
|
profile: minimal
|
||||||
toolchain: stable
|
toolchain: stable
|
||||||
|
- name: set mold linker as default linker
|
||||||
|
uses: rui314/setup-mold@v1
|
||||||
- name: Install deps
|
- name: Install deps
|
||||||
run: sudo apt-get install -y llvm llvm-dev clang ninja-build python3-dev python3-pip python3-venv libz3-dev
|
run: sudo apt-get install -y llvm llvm-dev clang ninja-build python3-dev python3-pip python3-venv
|
||||||
- name: Install maturin
|
- name: Install maturin
|
||||||
run: python3 -m pip install maturin
|
run: python3 -m pip install maturin
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: Swatinem/rust-cache@v2
|
- uses: Swatinem/rust-cache@v2
|
||||||
- name: Run a maturin build
|
- name: Run a maturin build
|
||||||
run: cd ./bindings/pylibafl && python3 -m venv .env && . .env/bin/activate && pip install --upgrade --force-reinstall . && ./test.sh
|
run: cd ./bindings/pylibafl && maturin build
|
||||||
- name: Run python test
|
|
||||||
run: . ./bindings/pylibafl/.env/bin/activate && cd ./fuzzers/baby_fuzzer && python3 baby_fuzzer.py 2>&1 | grep "Bye"
|
|
||||||
|
|
||||||
fuzzers:
|
fuzzers:
|
||||||
strategy:
|
strategy:
|
||||||
@ -179,33 +151,24 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
profile: minimal
|
profile: minimal
|
||||||
toolchain: stable
|
toolchain: stable
|
||||||
- name: Remove Dotnet (macOS)
|
- name: set mold linker as default linker
|
||||||
if: runner.os == 'macOS'
|
if: runner.os == 'Linux' # mold only support linux until now
|
||||||
run: rm -rf /usr/local/bin/dotnet
|
uses: rui314/setup-mold@v1
|
||||||
- name: Remove Dotnet & Haskell (Linux)
|
|
||||||
if: runner.os == 'Linux'
|
|
||||||
run: rm -rf /usr/share/dotnet && rm -rf /opt/ghc
|
|
||||||
- name: Add nightly rustfmt and clippy
|
- name: Add nightly rustfmt and clippy
|
||||||
run: rustup toolchain install nightly --component rustfmt --component clippy --allow-downgrade
|
run: rustup toolchain install nightly --component rustfmt --component clippy --allow-downgrade
|
||||||
- name: Add no_std toolchain
|
- name: Add no_std toolchain
|
||||||
run: rustup toolchain install nightly-x86_64-unknown-linux-gnu ; rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
|
run: rustup toolchain install nightly-x86_64-unknown-linux-gnu ; rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
|
||||||
- name: Add wasm target
|
- name: Install python
|
||||||
run: rustup target add wasm32-unknown-unknown
|
|
||||||
- name: Install cxxbridge
|
|
||||||
if: runner.os == 'macOS'
|
if: runner.os == 'macOS'
|
||||||
run: cargo install cxxbridge-cmd
|
run: brew install --force-bottle --overwrite python@3.11
|
||||||
- name: Install python (macOS)
|
|
||||||
# Removing macOS things already installed in CI against failed linking
|
|
||||||
if: runner.os == 'macOS'
|
|
||||||
run: rm /usr/local/bin/2to3* /usr/local/bin/idle3* /usr/local/bin/pydoc3* /usr/local/bin/python3*; brew install --force-bottle --overwrite python
|
|
||||||
- uses: lyricwulf/abc@v1
|
- uses: lyricwulf/abc@v1
|
||||||
with:
|
with:
|
||||||
# todo: remove afl++-clang when nyx support samcov_pcguard
|
# todo: remove afl++-clang when nyx support samcov_pcguard
|
||||||
linux: llvm llvm-dev clang nasm ninja-build gcc-arm-linux-gnueabi g++-arm-linux-gnueabi gcc-aarch64-linux-gnu g++-aarch64-linux-gnu gcc-mipsel-linux-gnu g++-mipsel-linux-gnu gcc-powerpc-linux-gnu g++-powerpc-linux-gnu libc6-dev-i386-cross libc6-dev libc6-dev-i386 lib32gcc-11-dev lib32stdc++-11-dev libgtk-3-dev afl++-clang pax-utils libz3-dev
|
linux: llvm llvm-dev clang nasm ninja-build gcc-arm-linux-gnueabi g++-arm-linux-gnueabi libgtk-3-dev afl++-clang pax-utils
|
||||||
# update bash for macos to support `declare -A` command`
|
# update bash for macos to support `declare -A` command`
|
||||||
macos: llvm libpng nasm coreutils z3 bash wget
|
macos: llvm libpng nasm coreutils z3 bash
|
||||||
- name: pip install
|
- name: pip install
|
||||||
run: python3 -m pip install msgpack jinja2 find_libpython
|
run: python3 -m pip install msgpack jinja2
|
||||||
# Note that nproc needs to have coreutils installed on macOS, so the order of CI commands matters.
|
# Note that nproc needs to have coreutils installed on macOS, so the order of CI commands matters.
|
||||||
- name: enable mult-thread for `make`
|
- name: enable mult-thread for `make`
|
||||||
run: export MAKEFLAGS="-j$(expr $(nproc) \+ 1)"
|
run: export MAKEFLAGS="-j$(expr $(nproc) \+ 1)"
|
||||||
@ -213,58 +176,16 @@ jobs:
|
|||||||
uses: baptiste0928/cargo-install@v1.3.0
|
uses: baptiste0928/cargo-install@v1.3.0
|
||||||
with:
|
with:
|
||||||
crate: cargo-make
|
crate: cargo-make
|
||||||
- name: install wasm-pack
|
|
||||||
uses: baptiste0928/cargo-install@v1.3.0
|
|
||||||
with:
|
|
||||||
crate: wasm-pack
|
|
||||||
- name: install chrome
|
|
||||||
uses: browser-actions/setup-chrome@v1
|
|
||||||
with:
|
|
||||||
chrome-version: stable
|
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
submodules: true # recursively checkout submodules
|
submodules: true # recursively checkout submodules
|
||||||
fetch-depth: 0 # to diff with origin/main
|
|
||||||
- uses: Swatinem/rust-cache@v2
|
- uses: Swatinem/rust-cache@v2
|
||||||
- name: Symlink Headers
|
|
||||||
if: runner.os == 'Linux'
|
|
||||||
# We can't install gcc-multilib which would usually do this for us due to collisions with other packages
|
|
||||||
run: sudo ln -s /usr/include/asm-generic /usr/include/asm
|
|
||||||
- name: Build and run example fuzzers (Linux)
|
- name: Build and run example fuzzers (Linux)
|
||||||
if: runner.os == 'Linux'
|
if: runner.os == 'Linux'
|
||||||
run: RUN_ON_CI=1 ./scripts/test_all_fuzzers.sh
|
run: ./scripts/test_all_fuzzers.sh
|
||||||
- name: Build and run example fuzzers (macOS)
|
- name: Build and run example fuzzers (macOS)
|
||||||
if: runner.os == 'macOS' # use bash v4
|
if: runner.os == 'macOS' # use bash v4
|
||||||
run: /usr/local/bin/bash -c 'RUN_ON_CI=1 ./scripts/test_all_fuzzers.sh'
|
run: /usr/local/bin/bash ./scripts/test_all_fuzzers.sh
|
||||||
|
|
||||||
executions-check:
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
os: [ubuntu-latest, macos-latest]
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
steps:
|
|
||||||
- uses: actions-rs/toolchain@v1
|
|
||||||
with:
|
|
||||||
profile: minimal
|
|
||||||
toolchain: stable
|
|
||||||
- name: Fix python (macOS)
|
|
||||||
if: runner.os == 'macOS'
|
|
||||||
run: rm /usr/local/bin/2to3* /usr/local/bin/idle3* /usr/local/bin/pydoc3* /usr/local/bin/python3*
|
|
||||||
- uses: lyricwulf/abc@v1
|
|
||||||
with:
|
|
||||||
linux: llvm llvm-dev clang
|
|
||||||
macos: python@3.11 llvm bash coreutils
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
submodules: true # recursively checkout submodules
|
|
||||||
fetch-depth: 0
|
|
||||||
- uses: Swatinem/rust-cache@v2
|
|
||||||
- name: Build and run libfuzzer_libpng (Linux)
|
|
||||||
if: runner.os == 'Linux'
|
|
||||||
run: ./scripts/executions-check.sh
|
|
||||||
- name: Build and run libfuzzer_libpng (macOS)
|
|
||||||
if: runner.os == 'macOS'
|
|
||||||
run: /usr/local/bin/bash -c './scripts/executions-check.sh'
|
|
||||||
|
|
||||||
nostd-build:
|
nostd-build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -287,8 +208,6 @@ jobs:
|
|||||||
run: cd ./libafl && cargo test --no-default-features
|
run: cd ./libafl && cargo test --no-default-features
|
||||||
- name: libafl armv6m-none-eabi (32 bit no_std) clippy
|
- name: libafl armv6m-none-eabi (32 bit no_std) clippy
|
||||||
run: cd ./libafl && cargo clippy --target thumbv6m-none-eabi --no-default-features
|
run: cd ./libafl && cargo clippy --target thumbv6m-none-eabi --no-default-features
|
||||||
- name: Build no_std no_alloc bolts
|
|
||||||
run: cd ./libafl_bolts && cargo +nightly build -Zbuild-std=core --target aarch64-unknown-none --no-default-features -v --release && cd ../
|
|
||||||
|
|
||||||
build-docker:
|
build-docker:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -319,14 +238,10 @@ jobs:
|
|||||||
- name: install cargo-make
|
- name: install cargo-make
|
||||||
run: cargo install --force cargo-make
|
run: cargo install --force cargo-make
|
||||||
- uses: ilammy/msvc-dev-cmd@v1
|
- uses: ilammy/msvc-dev-cmd@v1
|
||||||
- name: install cxx bridge
|
|
||||||
run: cargo install cxxbridge-cmd
|
|
||||||
- name: Build fuzzers/frida_libpng
|
- name: Build fuzzers/frida_libpng
|
||||||
run: cd fuzzers/frida_libpng/ && cargo make test
|
run: cd fuzzers/frida_libpng/ && cargo make test
|
||||||
- name: Build fuzzers/frida_gdiplus
|
- name: Build fuzzers/frida_gdiplus
|
||||||
run: cd fuzzers/frida_gdiplus/ && cargo make test
|
run: cd fuzzers/frida_gdiplus/ && cargo make test
|
||||||
- name: Build fuzzers/tinyinst_simple
|
|
||||||
run: cd fuzzers/tinyinst_simple/ && cargo make test
|
|
||||||
|
|
||||||
macos:
|
macos:
|
||||||
runs-on: macOS-latest
|
runs-on: macOS-latest
|
||||||
@ -339,8 +254,6 @@ jobs:
|
|||||||
run: rustup toolchain install nightly --component rustfmt --component clippy --allow-downgrade
|
run: rustup toolchain install nightly --component rustfmt --component clippy --allow-downgrade
|
||||||
- name: Install deps
|
- name: Install deps
|
||||||
run: brew install z3 gtk+3
|
run: brew install z3 gtk+3
|
||||||
- name: Install cxxbridge
|
|
||||||
run: cargo install cxxbridge-cmd
|
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: Swatinem/rust-cache@v2
|
- uses: Swatinem/rust-cache@v2
|
||||||
- name: MacOS Build
|
- name: MacOS Build
|
||||||
@ -361,7 +274,7 @@ jobs:
|
|||||||
toolchain: stable
|
toolchain: stable
|
||||||
- uses: nttld/setup-ndk@v1
|
- uses: nttld/setup-ndk@v1
|
||||||
with:
|
with:
|
||||||
ndk-version: r25b
|
ndk-version: r21e
|
||||||
- name: install ios
|
- name: install ios
|
||||||
run: rustup target add aarch64-apple-ios
|
run: rustup target add aarch64-apple-ios
|
||||||
- name: install android
|
- name: install android
|
||||||
@ -371,7 +284,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- uses: Swatinem/rust-cache@v2
|
- uses: Swatinem/rust-cache@v2
|
||||||
- name: Build iOS
|
- name: Build iOS
|
||||||
run: cargo build --target aarch64-apple-ios && cd libafl_frida && cargo build --target aarch64-apple-ios && cd ..
|
run: cargo build --target aarch64-apple-ios
|
||||||
- name: Build Android
|
- name: Build Android
|
||||||
run: cargo ndk -t arm64-v8a build --release
|
run: cargo ndk -t arm64-v8a build --release
|
||||||
#run: cargo build --target aarch64-linux-android
|
#run: cargo build --target aarch64-linux-android
|
||||||
@ -397,16 +310,16 @@ jobs:
|
|||||||
sync: rsync
|
sync: rsync
|
||||||
copyback: false
|
copyback: false
|
||||||
mem: 2048
|
mem: 2048
|
||||||
release: 13.2
|
release: 13.1
|
||||||
prepare: |
|
prepare: |
|
||||||
pkg install -y curl bash sudo llvm16
|
pkg install -y curl bash sudo llvm14
|
||||||
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
||||||
|
|
||||||
run: |
|
run: |
|
||||||
freebsd-version
|
freebsd-version
|
||||||
. "$HOME/.cargo/env"
|
. "$HOME/.cargo/env"
|
||||||
rustup toolchain install nightly
|
rustup toolchain install nightly
|
||||||
export LLVM_CONFIG=/usr/local/bin/llvm-config16
|
export LLVM_CONFIG=/usr/local/bin/llvm-config14
|
||||||
pwd
|
pwd
|
||||||
ls -lah
|
ls -lah
|
||||||
echo "local/bin"
|
echo "local/bin"
|
||||||
|
6
.gitignore
vendored
6
.gitignore
vendored
@ -21,7 +21,6 @@ vendor
|
|||||||
*.obj
|
*.obj
|
||||||
|
|
||||||
.cur_input
|
.cur_input
|
||||||
.cur_input_*
|
|
||||||
.venv
|
.venv
|
||||||
|
|
||||||
crashes
|
crashes
|
||||||
@ -33,8 +32,6 @@ perf.data.old
|
|||||||
.vscode
|
.vscode
|
||||||
test.dict
|
test.dict
|
||||||
|
|
||||||
.idea/
|
|
||||||
|
|
||||||
# Ignore all built fuzzers
|
# Ignore all built fuzzers
|
||||||
fuzzer_*
|
fuzzer_*
|
||||||
AFLplusplus
|
AFLplusplus
|
||||||
@ -49,7 +46,6 @@ a
|
|||||||
forkserver_test
|
forkserver_test
|
||||||
__pycache__
|
__pycache__
|
||||||
*.lafl_lock
|
*.lafl_lock
|
||||||
*.metadata
|
|
||||||
|
|
||||||
*atomic_file_testfile*
|
*atomic_file_testfile*
|
||||||
**/libxml2
|
**/libxml2
|
||||||
@ -58,5 +54,3 @@ __pycache__
|
|||||||
|
|
||||||
libafl_nyx/QEMU-Nyx
|
libafl_nyx/QEMU-Nyx
|
||||||
libafl_nyx/packer
|
libafl_nyx/packer
|
||||||
|
|
||||||
.z3-trace
|
|
||||||
|
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[submodule "libafl_concolic/symcc_runtime/symcc"]
|
||||||
|
path = libafl_concolic/symcc_runtime/symcc
|
||||||
|
url = https://github.com/AFLplusplus/symcc.git
|
32
Cargo.toml
32
Cargo.toml
@ -1,46 +1,42 @@
|
|||||||
[workspace]
|
[workspace]
|
||||||
resolver = "2"
|
|
||||||
members = [
|
members = [
|
||||||
"libafl",
|
"libafl",
|
||||||
"libafl_bolts",
|
"libafl_derive",
|
||||||
"libafl_cc",
|
"libafl_cc",
|
||||||
|
"libafl_targets",
|
||||||
|
"libafl_frida",
|
||||||
|
"libafl_qemu",
|
||||||
|
"libafl_tinyinst",
|
||||||
|
"libafl_sugar",
|
||||||
|
"libafl_nyx",
|
||||||
"libafl_concolic/symcc_runtime",
|
"libafl_concolic/symcc_runtime",
|
||||||
"libafl_concolic/symcc_libafl",
|
"libafl_concolic/symcc_libafl",
|
||||||
"libafl_concolic/test/dump_constraints",
|
"libafl_concolic/test/dump_constraints",
|
||||||
"libafl_concolic/test/runtime_test",
|
"libafl_concolic/test/runtime_test",
|
||||||
"libafl_derive",
|
|
||||||
"libafl_frida",
|
|
||||||
"libafl_libfuzzer",
|
|
||||||
"libafl_nyx",
|
|
||||||
"libafl_qemu",
|
|
||||||
"libafl_sugar",
|
|
||||||
"libafl_targets",
|
|
||||||
"libafl_tinyinst",
|
|
||||||
"utils/build_and_test_fuzzers",
|
|
||||||
"utils/deexit",
|
"utils/deexit",
|
||||||
"utils/libafl_benches",
|
|
||||||
"utils/gramatron/construct_automata",
|
"utils/gramatron/construct_automata",
|
||||||
|
"utils/libafl_benches",
|
||||||
]
|
]
|
||||||
default-members = [
|
default-members = [
|
||||||
"libafl",
|
"libafl",
|
||||||
"libafl_bolts",
|
|
||||||
"libafl_cc",
|
|
||||||
"libafl_derive",
|
"libafl_derive",
|
||||||
|
"libafl_cc",
|
||||||
"libafl_targets",
|
"libafl_targets",
|
||||||
]
|
]
|
||||||
exclude = [
|
exclude = [
|
||||||
"bindings",
|
|
||||||
"fuzzers",
|
"fuzzers",
|
||||||
"libafl_qemu/libafl_qemu_build",
|
"bindings",
|
||||||
"libafl_qemu/libafl_qemu_sys",
|
|
||||||
"scripts",
|
"scripts",
|
||||||
|
"libafl_qemu/libafl_qemu_build",
|
||||||
|
"libafl_qemu/libafl_qemu_sys"
|
||||||
]
|
]
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "0.11.1"
|
version = "0.8.2"
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
lto = true
|
lto = true
|
||||||
codegen-units = 1
|
codegen-units = 1
|
||||||
opt-level = 3
|
opt-level = 3
|
||||||
debug = true
|
debug = true
|
||||||
|
|
||||||
|
17
Dockerfile
17
Dockerfile
@ -28,13 +28,10 @@ COPY Cargo.toml README.md ./
|
|||||||
COPY libafl_derive/Cargo.toml libafl_derive/Cargo.toml
|
COPY libafl_derive/Cargo.toml libafl_derive/Cargo.toml
|
||||||
COPY scripts/dummy.rs libafl_derive/src/lib.rs
|
COPY scripts/dummy.rs libafl_derive/src/lib.rs
|
||||||
|
|
||||||
COPY libafl/Cargo.toml libafl/build.rs libafl/README.md libafl/
|
COPY libafl/Cargo.toml libafl/build.rs libafl/
|
||||||
|
COPY libafl/examples libafl/examples
|
||||||
COPY scripts/dummy.rs libafl/src/lib.rs
|
COPY scripts/dummy.rs libafl/src/lib.rs
|
||||||
|
|
||||||
COPY libafl_bolts/Cargo.toml libafl_bolts/build.rs libafl_bolts/README.md libafl_bolts/
|
|
||||||
COPY libafl_bolts/examples libafl_bolts/examples
|
|
||||||
COPY scripts/dummy.rs libafl_bolts/src/lib.rs
|
|
||||||
|
|
||||||
COPY libafl_frida/Cargo.toml libafl_frida/build.rs libafl_frida/
|
COPY libafl_frida/Cargo.toml libafl_frida/build.rs libafl_frida/
|
||||||
COPY scripts/dummy.rs libafl_frida/src/lib.rs
|
COPY scripts/dummy.rs libafl_frida/src/lib.rs
|
||||||
COPY libafl_frida/src/gettls.c libafl_frida/src/gettls.c
|
COPY libafl_frida/src/gettls.c libafl_frida/src/gettls.c
|
||||||
@ -78,10 +75,6 @@ COPY scripts/dummy.rs libafl_nyx/src/lib.rs
|
|||||||
COPY libafl_tinyinst/Cargo.toml libafl_tinyinst/
|
COPY libafl_tinyinst/Cargo.toml libafl_tinyinst/
|
||||||
COPY scripts/dummy.rs libafl_tinyinst/src/lib.rs
|
COPY scripts/dummy.rs libafl_tinyinst/src/lib.rs
|
||||||
|
|
||||||
# avoid pulling in the runtime, as this is quite an expensive build, until later
|
|
||||||
COPY libafl_libfuzzer/Cargo.toml libafl_libfuzzer/
|
|
||||||
COPY scripts/dummy.rs libafl_libfuzzer/src/lib.rs
|
|
||||||
|
|
||||||
COPY utils utils
|
COPY utils utils
|
||||||
|
|
||||||
RUN cargo build && cargo build --release
|
RUN cargo build && cargo build --release
|
||||||
@ -102,8 +95,6 @@ COPY libafl_cc/src libafl_cc/src
|
|||||||
RUN touch libafl_cc/src/lib.rs
|
RUN touch libafl_cc/src/lib.rs
|
||||||
COPY libafl_derive/src libafl_derive/src
|
COPY libafl_derive/src libafl_derive/src
|
||||||
RUN touch libafl_derive/src/lib.rs
|
RUN touch libafl_derive/src/lib.rs
|
||||||
COPY libafl_bolts/src libafl_bolts/src
|
|
||||||
RUN touch libafl_bolts/src/lib.rs
|
|
||||||
COPY libafl/src libafl/src
|
COPY libafl/src libafl/src
|
||||||
RUN touch libafl/src/lib.rs
|
RUN touch libafl/src/lib.rs
|
||||||
COPY libafl_targets/src libafl_targets/src
|
COPY libafl_targets/src libafl_targets/src
|
||||||
@ -121,10 +112,6 @@ COPY libafl_concolic/symcc_runtime libafl_concolic/symcc_runtime
|
|||||||
COPY libafl_concolic/test libafl_concolic/test
|
COPY libafl_concolic/test libafl_concolic/test
|
||||||
COPY libafl_nyx/src libafl_nyx/src
|
COPY libafl_nyx/src libafl_nyx/src
|
||||||
RUN touch libafl_nyx/src/lib.rs
|
RUN touch libafl_nyx/src/lib.rs
|
||||||
COPY libafl_libfuzzer/src libafl_libfuzzer/src
|
|
||||||
COPY libafl_libfuzzer/libafl_libfuzzer_runtime libafl_libfuzzer/libafl_libfuzzer_runtime
|
|
||||||
COPY libafl_libfuzzer/build.rs libafl_libfuzzer/build.rs
|
|
||||||
RUN touch libafl_libfuzzer/src/lib.rs
|
|
||||||
RUN cargo build && cargo build --release
|
RUN cargo build && cargo build --release
|
||||||
|
|
||||||
# Copy fuzzers over
|
# Copy fuzzers over
|
||||||
|
23
README.md
23
README.md
@ -1,6 +1,6 @@
|
|||||||
# LibAFL, the fuzzer library.
|
# LibAFL, the fuzzer library.
|
||||||
|
|
||||||
<img align="right" src="https://raw.githubusercontent.com/AFLplusplus/Website/main/static/libafl_logo.svg" alt="LibAFL logo" width="250" heigh="250">
|
<img align="right" src="https://github.com/AFLplusplus/Website/raw/master/static/logo_256x256.png" alt="AFL++ Logo">
|
||||||
|
|
||||||
Advanced Fuzzing Library - Slot your own fuzzers together and extend their features using Rust.
|
Advanced Fuzzing Library - Slot your own fuzzers together and extend their features using Rust.
|
||||||
|
|
||||||
@ -10,7 +10,6 @@ LibAFL is written and maintained by
|
|||||||
* [Dominik Maier](https://twitter.com/domenuk) <dominik@aflplus.plus>
|
* [Dominik Maier](https://twitter.com/domenuk) <dominik@aflplus.plus>
|
||||||
* [s1341](https://twitter.com/srubenst1341) <github@shmarya.net>
|
* [s1341](https://twitter.com/srubenst1341) <github@shmarya.net>
|
||||||
* [Dongjia Zhang](https://github.com/tokatoka) <toka@aflplus.plus>
|
* [Dongjia Zhang](https://github.com/tokatoka) <toka@aflplus.plus>
|
||||||
* [Addison Crump](https://github.com/addisoncrump) <me@addisoncrump.info>
|
|
||||||
|
|
||||||
## Why LibAFL?
|
## Why LibAFL?
|
||||||
|
|
||||||
@ -34,7 +33,7 @@ LibAFL offers integrations with popular instrumentation frameworks. At the momen
|
|||||||
|
|
||||||
+ SanitizerCoverage, in [libafl_targets](./libafl_targets)
|
+ SanitizerCoverage, in [libafl_targets](./libafl_targets)
|
||||||
+ Frida, in [libafl_frida](./libafl_frida)
|
+ Frida, in [libafl_frida](./libafl_frida)
|
||||||
+ QEMU user-mode and system mode, including hooks for emulation, in [libafl_qemu](./libafl_qemu)
|
+ QEMU user-mode, in [libafl_qemu](./libafl_qemu)
|
||||||
+ TinyInst, in [libafl_tinyinst](./libafl_tinyinst) by [elbiazo](https://github.com/elbiazo)
|
+ TinyInst, in [libafl_tinyinst](./libafl_tinyinst) by [elbiazo](https://github.com/elbiazo)
|
||||||
|
|
||||||
## Getting started
|
## Getting started
|
||||||
@ -45,36 +44,36 @@ We highly recommend *not* to use e.g. your Linux distribition package as this is
|
|||||||
Rust directly, instructions can be found [here](https://www.rust-lang.org/tools/install).
|
Rust directly, instructions can be found [here](https://www.rust-lang.org/tools/install).
|
||||||
|
|
||||||
- LLVM tools
|
- LLVM tools
|
||||||
The LLVM tools (including clang, clang++) are needed (newer than LLVM 11.0.0 up to LLVM 17.0.0)
|
The LLVM tools are needed (newer than LLVM 11.0.0 but older than LLVM 15.0.0)
|
||||||
|
|
||||||
- Cargo-make
|
- Cargo-make
|
||||||
We use cargo-make to build the fuzzers in `fuzzers/` directory. You can install it with
|
We use cargo-make to build the fuzzers in `fuzzers/` directory. You can install it with
|
||||||
|
|
||||||
```sh
|
```
|
||||||
cargo install cargo-make
|
cargo install cargo-make
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Clone the LibAFL repository with
|
2. Clone the LibAFL repository with
|
||||||
|
|
||||||
```sh
|
```
|
||||||
git clone https://github.com/AFLplusplus/LibAFL
|
git clone https://github.com/AFLplusplus/LibAFL
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Build the library using
|
3. Build the library using
|
||||||
|
|
||||||
```sh
|
```
|
||||||
cargo build --release
|
cargo build --release
|
||||||
```
|
```
|
||||||
|
|
||||||
4. Build the API documentation with
|
4. Build the API documentation with
|
||||||
|
|
||||||
```sh
|
```
|
||||||
cargo doc
|
cargo doc
|
||||||
```
|
```
|
||||||
|
|
||||||
5. Browse the LibAFL book (WIP!) with (requires [mdbook](https://rust-lang.github.io/mdBook/index.html))
|
5. Browse the LibAFL book (WIP!) with (requires [mdbook](https://github.com/rust-lang/mdBook))
|
||||||
|
|
||||||
```sh
|
```
|
||||||
cd docs && mdbook serve
|
cd docs && mdbook serve
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -82,11 +81,9 @@ We collect all example fuzzers in [`./fuzzers`](./fuzzers/).
|
|||||||
Be sure to read their documentation (and source), this is *the natural way to get started!*
|
Be sure to read their documentation (and source), this is *the natural way to get started!*
|
||||||
|
|
||||||
You can run each example fuzzer with
|
You can run each example fuzzer with
|
||||||
|
```
|
||||||
```sh
|
|
||||||
cargo make run
|
cargo make run
|
||||||
```
|
```
|
||||||
|
|
||||||
as long as the fuzzer directory has `Makefile.toml` file.
|
as long as the fuzzer directory has `Makefile.toml` file.
|
||||||
|
|
||||||
The best-tested fuzzer is [`./fuzzers/libfuzzer_libpng`](./fuzzers/libfuzzer_libpng), a multicore libfuzzer-like fuzzer using LibAFL for a libpng harness.
|
The best-tested fuzzer is [`./fuzzers/libfuzzer_libpng`](./fuzzers/libfuzzer_libpng), a multicore libfuzzer-like fuzzer using LibAFL for a libpng harness.
|
||||||
|
1
bindings/pylibafl/.gitignore
vendored
1
bindings/pylibafl/.gitignore
vendored
@ -1 +0,0 @@
|
|||||||
dist/
|
|
@ -1,15 +1,13 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pylibafl"
|
name = "pylibafl"
|
||||||
version = "0.11.1"
|
version = "0.8.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
pyo3 = { version = "0.18.3", features = ["extension-module"] }
|
pyo3 = { version = "0.17", features = ["extension-module"] }
|
||||||
pyo3-log = "0.8.1"
|
libafl_qemu = { path = "../../libafl_qemu", version = "0.8.2", features = ["python"] }
|
||||||
libafl_qemu = { path = "../../libafl_qemu", version = "0.11.1", features = ["python"] }
|
libafl_sugar = { path = "../../libafl_sugar", version = "0.8.2", features = ["python"] }
|
||||||
libafl_sugar = { path = "../../libafl_sugar", version = "0.11.1", features = ["python"] }
|
libafl = { path = "../../libafl", version = "0.8.2", features = ["python"] }
|
||||||
libafl = { path = "../../libafl", version = "0.11.1", features = ["python"] }
|
|
||||||
libafl_bolts = { path = "../../libafl_bolts", version = "0.11.1", features = ["python"] }
|
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
pyo3-build-config = { version = "0.17" }
|
pyo3-build-config = { version = "0.17" }
|
||||||
|
@ -1,26 +0,0 @@
|
|||||||
[build-system]
|
|
||||||
requires = ["maturin[patchelf]>=0.14.10,<0.15"]
|
|
||||||
build-backend = "maturin"
|
|
||||||
|
|
||||||
[project]
|
|
||||||
name = "PyLibAFL"
|
|
||||||
version = "0.10.1"
|
|
||||||
description = "Advanced Fuzzing Library for Python"
|
|
||||||
readme = "README.md"
|
|
||||||
requires-python = ">=3.8"
|
|
||||||
license = {text = "Apache-2.0"}
|
|
||||||
classifiers = [
|
|
||||||
"License :: OSI Approved :: Apache Software License",
|
|
||||||
"License :: OSI Approved :: MIT License",
|
|
||||||
"Programming Language :: Rust",
|
|
||||||
"Topic :: Security",
|
|
||||||
]
|
|
||||||
|
|
||||||
[project.urls]
|
|
||||||
repository = "https://github.com/AFLplusplus/LibAFL.git"
|
|
||||||
|
|
||||||
[tool.maturin]
|
|
||||||
bindings = "pylibafl"
|
|
||||||
manifest-path = "Cargo.toml"
|
|
||||||
python-source = "python"
|
|
||||||
all-features = true
|
|
@ -1,5 +1,4 @@
|
|||||||
use libafl;
|
use libafl;
|
||||||
use libafl_bolts;
|
|
||||||
#[cfg(target_os = "linux")]
|
#[cfg(target_os = "linux")]
|
||||||
use libafl_qemu;
|
use libafl_qemu;
|
||||||
use libafl_sugar;
|
use libafl_sugar;
|
||||||
@ -27,7 +26,7 @@ class BaseFeedback:
|
|||||||
pass
|
pass
|
||||||
def is_interesting(self, state, mgr, input, observers, exit_kind) -> bool:
|
def is_interesting(self, state, mgr, input, observers, exit_kind) -> bool:
|
||||||
return False
|
return False
|
||||||
def append_metadata(self, state, observers, testcase):
|
def append_metadata(self, state, testcase):
|
||||||
pass
|
pass
|
||||||
def discard_metadata(self, state, input):
|
def discard_metadata(self, state, input):
|
||||||
pass
|
pass
|
||||||
@ -85,27 +84,23 @@ def feedback_or_fast(a, b):
|
|||||||
#[pymodule]
|
#[pymodule]
|
||||||
#[pyo3(name = "pylibafl")]
|
#[pyo3(name = "pylibafl")]
|
||||||
pub fn python_module(py: Python, m: &PyModule) -> PyResult<()> {
|
pub fn python_module(py: Python, m: &PyModule) -> PyResult<()> {
|
||||||
pyo3_log::init();
|
|
||||||
|
|
||||||
let modules = py.import("sys")?.getattr("modules")?;
|
let modules = py.import("sys")?.getattr("modules")?;
|
||||||
|
|
||||||
let sugar_module = PyModule::new(py, "sugar")?;
|
let sugar_module = PyModule::new(py, "sugar")?;
|
||||||
libafl_sugar::python_module(py, sugar_module)?;
|
libafl_sugar::python_module(py, sugar_module)?;
|
||||||
m.add_submodule(sugar_module)?;
|
m.add_submodule(sugar_module)?;
|
||||||
|
|
||||||
modules.set_item("pylibafl.sugar", sugar_module)?;
|
modules.set_item("pylibafl.sugar", sugar_module)?;
|
||||||
|
|
||||||
#[cfg(target_os = "linux")]
|
#[cfg(target_os = "linux")]
|
||||||
{
|
let qemu_module = PyModule::new(py, "qemu")?;
|
||||||
let qemu_module = PyModule::new(py, "qemu")?;
|
#[cfg(target_os = "linux")]
|
||||||
libafl_qemu::python_module(py, qemu_module)?;
|
libafl_qemu::python_module(py, qemu_module)?;
|
||||||
m.add_submodule(qemu_module)?;
|
#[cfg(target_os = "linux")]
|
||||||
modules.set_item("pylibafl.qemu", qemu_module)?;
|
m.add_submodule(qemu_module)?;
|
||||||
}
|
|
||||||
|
|
||||||
let bolts_module = PyModule::new(py, "libafl_bolts")?;
|
#[cfg(target_os = "linux")]
|
||||||
libafl_bolts::pybind::python_module(py, bolts_module)?;
|
modules.set_item("pylibafl.qemu", qemu_module)?;
|
||||||
m.add_submodule(bolts_module)?;
|
|
||||||
modules.set_item("pylibafl.libafl_bolts", bolts_module)?;
|
|
||||||
|
|
||||||
let libafl_module = PyModule::new(py, "libafl")?;
|
let libafl_module = PyModule::new(py, "libafl")?;
|
||||||
libafl::pybind::python_module(py, libafl_module)?;
|
libafl::pybind::python_module(py, libafl_module)?;
|
||||||
@ -119,6 +114,7 @@ pub fn python_module(py: Python, m: &PyModule) -> PyResult<()> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
m.add_submodule(libafl_module)?;
|
m.add_submodule(libafl_module)?;
|
||||||
|
|
||||||
modules.set_item("pylibafl.libafl", libafl_module)?;
|
modules.set_item("pylibafl.libafl", libafl_module)?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
@ -1,8 +1,5 @@
|
|||||||
from pylibafl.libafl import *
|
from pylibafl.libafl import *
|
||||||
import ctypes
|
import ctypes
|
||||||
import platform
|
|
||||||
|
|
||||||
MAP_SIZE = 4096
|
|
||||||
|
|
||||||
|
|
||||||
class FooObserver(BaseObserver):
|
class FooObserver(BaseObserver):
|
||||||
@ -36,16 +33,11 @@ class FooExecutor(BaseExecutor):
|
|||||||
return (self.h)(input)
|
return (self.h)(input)
|
||||||
|
|
||||||
|
|
||||||
if platform.system() == "Darwin":
|
libc = ctypes.cdll.LoadLibrary("libc.so.6")
|
||||||
libc = ctypes.cdll.LoadLibrary("libc.dylib")
|
|
||||||
else:
|
|
||||||
libc = ctypes.cdll.LoadLibrary("libc.so.6")
|
|
||||||
|
|
||||||
# Get a buffer to use for our map observer
|
area_ptr = libc.calloc(1, 4096)
|
||||||
libc.calloc.restype = ctypes.c_void_p
|
|
||||||
area_ptr = libc.calloc(1, MAP_SIZE)
|
|
||||||
|
|
||||||
observer = StdMapObserverI8("mymap", area_ptr, MAP_SIZE)
|
observer = StdMapObserverI8("mymap", area_ptr, 4096)
|
||||||
|
|
||||||
m = observer.as_map_observer()
|
m = observer.as_map_observer()
|
||||||
|
|
||||||
@ -77,12 +69,7 @@ mgr = SimpleEventManager(monitor.as_monitor())
|
|||||||
|
|
||||||
|
|
||||||
def harness(buf) -> ExitKind:
|
def harness(buf) -> ExitKind:
|
||||||
"""
|
|
||||||
The harness fn that the fuzzer will execute in a loop
|
|
||||||
"""
|
|
||||||
# print(buf)
|
# print(buf)
|
||||||
|
|
||||||
# set the observer map byte from python
|
|
||||||
m[0] = 1
|
m[0] = 1
|
||||||
if len(buf) > 0 and buf[0] == ord("a"):
|
if len(buf) > 0 and buf[0] == ord("a"):
|
||||||
m[1] = 1
|
m[1] = 1
|
||||||
@ -104,6 +91,4 @@ stage_tuple_list = StagesTuple([stage.as_stage()])
|
|||||||
|
|
||||||
fuzzer.add_input(state, executor.as_executor(), mgr.as_manager(), b"\0\0")
|
fuzzer.add_input(state, executor.as_executor(), mgr.as_manager(), b"\0\0")
|
||||||
|
|
||||||
print("Starting to fuzz from python!")
|
|
||||||
|
|
||||||
fuzzer.fuzz_loop(executor.as_executor(), state, mgr.as_manager(), stage_tuple_list)
|
fuzzer.fuzz_loop(executor.as_executor(), state, mgr.as_manager(), stage_tuple_list)
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
timeout 10 python3 ./test.py
|
|
||||||
export exit_code=$?
|
|
||||||
if [ $exit_code -eq 124 ]; then
|
|
||||||
# 124 = timeout happened. All good.
|
|
||||||
exit 0
|
|
||||||
else
|
|
||||||
exit $exit_code
|
|
||||||
fi
|
|
||||||
|
|
1
docs/.gitignore
vendored
1
docs/.gitignore
vendored
@ -1,2 +1 @@
|
|||||||
book
|
book
|
||||||
!listings/**/*
|
|
||||||
|
@ -1,9 +0,0 @@
|
|||||||
[package]
|
|
||||||
name = "baby_fuzzer_listing_01"
|
|
||||||
version = "0.1.0"
|
|
||||||
authors = ["Your Name <you@example.com>"]
|
|
||||||
edition = "2018"
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
||||||
|
|
||||||
[dependencies]
|
|
@ -1,3 +0,0 @@
|
|||||||
fn main() {
|
|
||||||
println!("Hello, world!");
|
|
||||||
}
|
|
@ -1,21 +0,0 @@
|
|||||||
[package]
|
|
||||||
name = "baby_fuzzer_listing_02"
|
|
||||||
version = "0.1.0"
|
|
||||||
authors = ["Your Name <you@example.com>"]
|
|
||||||
edition = "2018"
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
libafl = { path = "path/to/libafl/" }
|
|
||||||
libafl_bolts = { path = "path/to/libafl_bolts/" }
|
|
||||||
|
|
||||||
[profile.dev]
|
|
||||||
panic = "abort"
|
|
||||||
|
|
||||||
[profile.release]
|
|
||||||
panic = "abort"
|
|
||||||
lto = true
|
|
||||||
codegen-units = 1
|
|
||||||
opt-level = 3
|
|
||||||
debug = true
|
|
@ -1,3 +0,0 @@
|
|||||||
fn main() {
|
|
||||||
println!("Hello, world!");
|
|
||||||
}
|
|
@ -1,24 +0,0 @@
|
|||||||
[package]
|
|
||||||
name = "baby_fuzzer_listing_03"
|
|
||||||
version = "0.1.0"
|
|
||||||
authors = ["Your Name <you@example.com>"]
|
|
||||||
edition = "2018"
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
libafl = { path = "path/to/libafl/" }
|
|
||||||
libafl_bolts = { path = "path/to/libafl_bolts/" }
|
|
||||||
|
|
||||||
[profile.dev]
|
|
||||||
panic = "abort"
|
|
||||||
|
|
||||||
[profile.release]
|
|
||||||
panic = "abort"
|
|
||||||
lto = true
|
|
||||||
codegen-units = 1
|
|
||||||
opt-level = 3
|
|
||||||
debug = true
|
|
||||||
|
|
||||||
[features]
|
|
||||||
panic = []
|
|
@ -1,26 +0,0 @@
|
|||||||
extern crate libafl;
|
|
||||||
extern crate libafl_bolts;
|
|
||||||
use libafl::{
|
|
||||||
executors::ExitKind,
|
|
||||||
inputs::{BytesInput, HasTargetBytes},
|
|
||||||
};
|
|
||||||
use libafl_bolts::AsSlice;
|
|
||||||
|
|
||||||
fn main() {
|
|
||||||
let mut harness = |input: &BytesInput| {
|
|
||||||
let target = input.target_bytes();
|
|
||||||
let buf = target.as_slice();
|
|
||||||
if buf.len() > 0 && buf[0] == 'a' as u8 {
|
|
||||||
if buf.len() > 1 && buf[1] == 'b' as u8 {
|
|
||||||
if buf.len() > 2 && buf[2] == 'c' as u8 {
|
|
||||||
panic!("=)");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ExitKind::Ok
|
|
||||||
};
|
|
||||||
// To test the panic:
|
|
||||||
let input = BytesInput::new(Vec::from("abc"));
|
|
||||||
#[cfg(feature = "panic")]
|
|
||||||
harness(&input);
|
|
||||||
}
|
|
@ -1,24 +0,0 @@
|
|||||||
[package]
|
|
||||||
name = "baby_fuzzer_listing_04"
|
|
||||||
version = "0.1.0"
|
|
||||||
authors = ["Your Name <you@example.com>"]
|
|
||||||
edition = "2018"
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
libafl = { path = "path/to/libafl/" }
|
|
||||||
libafl_bolts = { path = "path/to/libafl_bolts/" }
|
|
||||||
|
|
||||||
[profile.dev]
|
|
||||||
panic = "abort"
|
|
||||||
|
|
||||||
[profile.release]
|
|
||||||
panic = "abort"
|
|
||||||
lto = true
|
|
||||||
codegen-units = 1
|
|
||||||
opt-level = 3
|
|
||||||
debug = true
|
|
||||||
|
|
||||||
[features]
|
|
||||||
panic = []
|
|
@ -1,86 +0,0 @@
|
|||||||
/* ANCHOR: use */
|
|
||||||
extern crate libafl;
|
|
||||||
extern crate libafl_bolts;
|
|
||||||
|
|
||||||
use libafl::{
|
|
||||||
corpus::{InMemoryCorpus, OnDiskCorpus},
|
|
||||||
events::SimpleEventManager,
|
|
||||||
executors::{inprocess::InProcessExecutor, ExitKind},
|
|
||||||
fuzzer::StdFuzzer,
|
|
||||||
generators::RandPrintablesGenerator,
|
|
||||||
inputs::{BytesInput, HasTargetBytes},
|
|
||||||
monitors::SimpleMonitor,
|
|
||||||
schedulers::QueueScheduler,
|
|
||||||
state::StdState,
|
|
||||||
};
|
|
||||||
use libafl_bolts::{current_nanos, rands::StdRand, AsSlice};
|
|
||||||
use std::path::PathBuf;
|
|
||||||
/* ANCHOR_END: use */
|
|
||||||
|
|
||||||
fn main() {
|
|
||||||
let mut harness = |input: &BytesInput| {
|
|
||||||
let target = input.target_bytes();
|
|
||||||
let buf = target.as_slice();
|
|
||||||
if buf.len() > 0 && buf[0] == 'a' as u8 {
|
|
||||||
if buf.len() > 1 && buf[1] == 'b' as u8 {
|
|
||||||
if buf.len() > 2 && buf[2] == 'c' as u8 {
|
|
||||||
panic!("=)");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ExitKind::Ok
|
|
||||||
};
|
|
||||||
// To test the panic:
|
|
||||||
let input = BytesInput::new(Vec::from("abc"));
|
|
||||||
#[cfg(feature = "panic")]
|
|
||||||
harness(&input);
|
|
||||||
|
|
||||||
/* ANCHOR: state */
|
|
||||||
// create a State from scratch
|
|
||||||
let mut state = StdState::new(
|
|
||||||
// RNG
|
|
||||||
StdRand::with_seed(current_nanos()),
|
|
||||||
// Corpus that will be evolved, we keep it in memory for performance
|
|
||||||
InMemoryCorpus::new(),
|
|
||||||
// Corpus in which we store solutions (crashes in this example),
|
|
||||||
// on disk so the user can get them after stopping the fuzzer
|
|
||||||
OnDiskCorpus::new(PathBuf::from("./crashes")).unwrap(),
|
|
||||||
&mut (),
|
|
||||||
&mut (),
|
|
||||||
)
|
|
||||||
.unwrap();
|
|
||||||
/* ANCHOR_END: state */
|
|
||||||
|
|
||||||
/* ANCHOR: event_manager */
|
|
||||||
// The Monitor trait defines how the fuzzer stats are displayed to the user
|
|
||||||
let mon = SimpleMonitor::new(|s| println!("{s}"));
|
|
||||||
|
|
||||||
// The event manager handles the various events generated during the fuzzing loop
|
|
||||||
// such as the notification of the addition of a new item to the corpus
|
|
||||||
let mut mgr = SimpleEventManager::new(mon);
|
|
||||||
/* ANCHOR_END: event_manager */
|
|
||||||
|
|
||||||
/* ANCHOR: scheduler_fuzzer */
|
|
||||||
// A queue policy to get testcasess from the corpus
|
|
||||||
let scheduler = QueueScheduler::new();
|
|
||||||
|
|
||||||
// A fuzzer with feedbacks and a corpus scheduler
|
|
||||||
let mut fuzzer = StdFuzzer::new(scheduler, (), ());
|
|
||||||
/* ANCHOR_END: scheduler_fuzzer */
|
|
||||||
|
|
||||||
/* ANCHOR: executor */
|
|
||||||
// Create the executor for an in-process function
|
|
||||||
let mut executor = InProcessExecutor::new(&mut harness, (), &mut fuzzer, &mut state, &mut mgr)
|
|
||||||
.expect("Failed to create the Executor");
|
|
||||||
/* ANCHOR_END: executor */
|
|
||||||
|
|
||||||
/* ANCHOR: generator */
|
|
||||||
// Generator of printable bytearrays of max size 32
|
|
||||||
let mut generator = RandPrintablesGenerator::new(32);
|
|
||||||
|
|
||||||
// Generate 8 initial inputs
|
|
||||||
state
|
|
||||||
.generate_initial_inputs(&mut fuzzer, &mut executor, &mut generator, &mut mgr, 8)
|
|
||||||
.expect("Failed to generate the initial corpus");
|
|
||||||
/* ANCHOR_END: generator */
|
|
||||||
}
|
|
@ -1,23 +0,0 @@
|
|||||||
[package]
|
|
||||||
name = "baby_fuzzer_listing_05"
|
|
||||||
version = "0.1.0"
|
|
||||||
authors = ["Your Name <you@example.com>"]
|
|
||||||
edition = "2018"
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
libafl = { path = "path/to/libafl/" }
|
|
||||||
|
|
||||||
[profile.dev]
|
|
||||||
panic = "abort"
|
|
||||||
|
|
||||||
[profile.release]
|
|
||||||
panic = "abort"
|
|
||||||
lto = true
|
|
||||||
codegen-units = 1
|
|
||||||
opt-level = 3
|
|
||||||
debug = true
|
|
||||||
|
|
||||||
[features]
|
|
||||||
panic = []
|
|
@ -1,116 +0,0 @@
|
|||||||
/* ANCHOR: use */
|
|
||||||
extern crate libafl;
|
|
||||||
extern crate libafl_bolts;
|
|
||||||
|
|
||||||
use libafl::{
|
|
||||||
corpus::{InMemoryCorpus, OnDiskCorpus},
|
|
||||||
events::SimpleEventManager,
|
|
||||||
executors::{inprocess::InProcessExecutor, ExitKind},
|
|
||||||
feedbacks::{CrashFeedback, MaxMapFeedback},
|
|
||||||
fuzzer::StdFuzzer,
|
|
||||||
generators::RandPrintablesGenerator,
|
|
||||||
inputs::{BytesInput, HasTargetBytes},
|
|
||||||
monitors::SimpleMonitor,
|
|
||||||
observers::StdMapObserver,
|
|
||||||
schedulers::QueueScheduler,
|
|
||||||
state::StdState,
|
|
||||||
};
|
|
||||||
use libafl_bolts::{current_nanos, rands::StdRand, tuples::tuple_list, AsSlice};
|
|
||||||
use std::path::PathBuf;
|
|
||||||
/* ANCHOR_END: use */
|
|
||||||
|
|
||||||
/* ANCHOR: signals */
|
|
||||||
// Coverage map with explicit assignments due to the lack of instrumentation
|
|
||||||
static mut SIGNALS: [u8; 16] = [0; 16];
|
|
||||||
|
|
||||||
fn signals_set(idx: usize) {
|
|
||||||
unsafe { SIGNALS[idx] = 1 };
|
|
||||||
}
|
|
||||||
|
|
||||||
fn main() {
|
|
||||||
// The closure that we want to fuzz
|
|
||||||
let mut harness = |input: &BytesInput| {
|
|
||||||
let target = input.target_bytes();
|
|
||||||
let buf = target.as_slice();
|
|
||||||
signals_set(0); // set SIGNALS[0]
|
|
||||||
if buf.len() > 0 && buf[0] == 'a' as u8 {
|
|
||||||
signals_set(1); // set SIGNALS[1]
|
|
||||||
if buf.len() > 1 && buf[1] == 'b' as u8 {
|
|
||||||
signals_set(2); // set SIGNALS[2]
|
|
||||||
if buf.len() > 2 && buf[2] == 'c' as u8 {
|
|
||||||
panic!("=)");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ExitKind::Ok
|
|
||||||
};
|
|
||||||
/* ANCHOR_END: signals */
|
|
||||||
// To test the panic:
|
|
||||||
let input = BytesInput::new(Vec::from("abc"));
|
|
||||||
#[cfg(feature = "panic")]
|
|
||||||
harness(&input);
|
|
||||||
|
|
||||||
/* ANCHOR: observer */
|
|
||||||
// Create an observation channel using the signals map
|
|
||||||
let observer = unsafe { StdMapObserver::new("signals", &mut SIGNALS) };
|
|
||||||
/* ANCHOR_END: observer */
|
|
||||||
|
|
||||||
/* ANCHOR: state_with_feedback_and_objective */
|
|
||||||
// Feedback to rate the interestingness of an input
|
|
||||||
let mut feedback = MaxMapFeedback::new(&observer);
|
|
||||||
|
|
||||||
// A feedback to choose if an input is a solution or not
|
|
||||||
let mut objective = CrashFeedback::new();
|
|
||||||
|
|
||||||
// create a State from scratch
|
|
||||||
let mut state = StdState::new(
|
|
||||||
// RNG
|
|
||||||
StdRand::with_seed(current_nanos()),
|
|
||||||
// Corpus that will be evolved, we keep it in memory for performance
|
|
||||||
InMemoryCorpus::new(),
|
|
||||||
// Corpus in which we store solutions (crashes in this example),
|
|
||||||
// on disk so the user can get them after stopping the fuzzer
|
|
||||||
OnDiskCorpus::new(PathBuf::from("./crashes")).unwrap(),
|
|
||||||
&mut feedback,
|
|
||||||
&mut objective,
|
|
||||||
)
|
|
||||||
.unwrap();
|
|
||||||
/* ANCHOR_END: state_with_feedback_and_objective */
|
|
||||||
|
|
||||||
// The Monitor trait defines how the fuzzer stats are displayed to the user
|
|
||||||
let mon = SimpleMonitor::new(|s| println!("{s}"));
|
|
||||||
|
|
||||||
// The event manager handles the various events generated during the fuzzing loop
|
|
||||||
// such as the notification of the addition of a new item to the corpus
|
|
||||||
let mut mgr = SimpleEventManager::new(mon);
|
|
||||||
|
|
||||||
// A queue policy to get testcasess from the corpus
|
|
||||||
let scheduler = QueueScheduler::new();
|
|
||||||
/* ANCHOR: state_with_feedback_and_objective */
|
|
||||||
|
|
||||||
// A fuzzer with feedbacks and a corpus scheduler
|
|
||||||
let mut fuzzer = StdFuzzer::new(scheduler, feedback, objective);
|
|
||||||
/* ANCHOR_END: state_with_feedback_and_objective */
|
|
||||||
|
|
||||||
/* ANCHOR: executor_with_observer */
|
|
||||||
// Create the executor for an in-process function with just one observer
|
|
||||||
let mut executor = InProcessExecutor::new(
|
|
||||||
&mut harness,
|
|
||||||
tuple_list!(observer),
|
|
||||||
&mut fuzzer,
|
|
||||||
&mut state,
|
|
||||||
&mut mgr,
|
|
||||||
)
|
|
||||||
.expect("Failed to create the Executor");
|
|
||||||
/* ANCHOR_END: executor_with_observer */
|
|
||||||
|
|
||||||
// Generator of printable bytearrays of max size 32
|
|
||||||
let mut generator = RandPrintablesGenerator::new(32);
|
|
||||||
|
|
||||||
// Generate 8 initial inputs
|
|
||||||
state
|
|
||||||
.generate_initial_inputs(&mut fuzzer, &mut executor, &mut generator, &mut mgr, 8)
|
|
||||||
.expect("Failed to generate the initial corpus");
|
|
||||||
/* ANCHOR: signals */
|
|
||||||
}
|
|
||||||
/* ANCHOR_END: signals */
|
|
@ -1,24 +0,0 @@
|
|||||||
[package]
|
|
||||||
name = "baby_fuzzer_listing_06"
|
|
||||||
version = "0.1.0"
|
|
||||||
authors = ["Your Name <you@example.com>"]
|
|
||||||
edition = "2018"
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
libafl = { path = "path/to/libafl/" }
|
|
||||||
libafl_bolts = { path = "path/to/libafl_bolts/" }
|
|
||||||
|
|
||||||
[profile.dev]
|
|
||||||
panic = "abort"
|
|
||||||
|
|
||||||
[profile.release]
|
|
||||||
panic = "abort"
|
|
||||||
lto = true
|
|
||||||
codegen-units = 1
|
|
||||||
opt-level = 3
|
|
||||||
debug = true
|
|
||||||
|
|
||||||
[features]
|
|
||||||
panic = []
|
|
@ -1,116 +0,0 @@
|
|||||||
/* ANCHOR: use */
|
|
||||||
extern crate libafl;
|
|
||||||
extern crate libafl_bolts;
|
|
||||||
|
|
||||||
use libafl::{
|
|
||||||
corpus::{InMemoryCorpus, OnDiskCorpus},
|
|
||||||
events::SimpleEventManager,
|
|
||||||
executors::{inprocess::InProcessExecutor, ExitKind},
|
|
||||||
feedbacks::{CrashFeedback, MaxMapFeedback},
|
|
||||||
fuzzer::{Fuzzer, StdFuzzer},
|
|
||||||
generators::RandPrintablesGenerator,
|
|
||||||
inputs::{BytesInput, HasTargetBytes},
|
|
||||||
monitors::SimpleMonitor,
|
|
||||||
mutators::scheduled::{havoc_mutations, StdScheduledMutator},
|
|
||||||
observers::StdMapObserver,
|
|
||||||
schedulers::QueueScheduler,
|
|
||||||
stages::mutational::StdMutationalStage,
|
|
||||||
state::StdState,
|
|
||||||
};
|
|
||||||
use libafl_bolts::{current_nanos, rands::StdRand, tuples::tuple_list, AsSlice};
|
|
||||||
use std::path::PathBuf;
|
|
||||||
/* ANCHOR_END: use */
|
|
||||||
|
|
||||||
// Coverage map with explicit assignments due to the lack of instrumentation
|
|
||||||
static mut SIGNALS: [u8; 16] = [0; 16];
|
|
||||||
|
|
||||||
fn signals_set(idx: usize) {
|
|
||||||
unsafe { SIGNALS[idx] = 1 };
|
|
||||||
}
|
|
||||||
|
|
||||||
fn main() {
|
|
||||||
// The closure that we want to fuzz
|
|
||||||
let mut harness = |input: &BytesInput| {
|
|
||||||
let target = input.target_bytes();
|
|
||||||
let buf = target.as_slice();
|
|
||||||
signals_set(0); // set SIGNALS[0]
|
|
||||||
if buf.len() > 0 && buf[0] == 'a' as u8 {
|
|
||||||
signals_set(1); // set SIGNALS[1]
|
|
||||||
if buf.len() > 1 && buf[1] == 'b' as u8 {
|
|
||||||
signals_set(2); // set SIGNALS[2]
|
|
||||||
if buf.len() > 2 && buf[2] == 'c' as u8 {
|
|
||||||
panic!("=)");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ExitKind::Ok
|
|
||||||
};
|
|
||||||
// To test the panic:
|
|
||||||
let input = BytesInput::new(Vec::from("abc"));
|
|
||||||
#[cfg(feature = "panic")]
|
|
||||||
harness(&input);
|
|
||||||
|
|
||||||
// Create an observation channel using the signals map
|
|
||||||
let observer = unsafe { StdMapObserver::new("signals", &mut SIGNALS) };
|
|
||||||
|
|
||||||
// Feedback to rate the interestingness of an input
|
|
||||||
let mut feedback = MaxMapFeedback::new(&observer);
|
|
||||||
|
|
||||||
// A feedback to choose if an input is a solution or not
|
|
||||||
let mut objective = CrashFeedback::new();
|
|
||||||
|
|
||||||
// create a State from scratch
|
|
||||||
let mut state = StdState::new(
|
|
||||||
// RNG
|
|
||||||
StdRand::with_seed(current_nanos()),
|
|
||||||
// Corpus that will be evolved, we keep it in memory for performance
|
|
||||||
InMemoryCorpus::new(),
|
|
||||||
// Corpus in which we store solutions (crashes in this example),
|
|
||||||
// on disk so the user can get them after stopping the fuzzer
|
|
||||||
OnDiskCorpus::new(PathBuf::from("./crashes")).unwrap(),
|
|
||||||
&mut feedback,
|
|
||||||
&mut objective,
|
|
||||||
)
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
// The Monitor trait defines how the fuzzer stats are displayed to the user
|
|
||||||
let mon = SimpleMonitor::new(|s| println!("{s}"));
|
|
||||||
|
|
||||||
// The event manager handles the various events generated during the fuzzing loop
|
|
||||||
// such as the notification of the addition of a new item to the corpus
|
|
||||||
let mut mgr = SimpleEventManager::new(mon);
|
|
||||||
|
|
||||||
// A queue policy to get testcasess from the corpus
|
|
||||||
let scheduler = QueueScheduler::new();
|
|
||||||
|
|
||||||
// A fuzzer with feedbacks and a corpus scheduler
|
|
||||||
let mut fuzzer = StdFuzzer::new(scheduler, feedback, objective);
|
|
||||||
|
|
||||||
// Create the executor for an in-process function with just one observer
|
|
||||||
let mut executor = InProcessExecutor::new(
|
|
||||||
&mut harness,
|
|
||||||
tuple_list!(observer),
|
|
||||||
&mut fuzzer,
|
|
||||||
&mut state,
|
|
||||||
&mut mgr,
|
|
||||||
)
|
|
||||||
.expect("Failed to create the Executor");
|
|
||||||
|
|
||||||
// Generator of printable bytearrays of max size 32
|
|
||||||
let mut generator = RandPrintablesGenerator::new(32);
|
|
||||||
|
|
||||||
// Generate 8 initial inputs
|
|
||||||
state
|
|
||||||
.generate_initial_inputs(&mut fuzzer, &mut executor, &mut generator, &mut mgr, 8)
|
|
||||||
.expect("Failed to generate the initial corpus");
|
|
||||||
|
|
||||||
/* ANCHOR: mutational_stage */
|
|
||||||
// Setup a mutational stage with a basic bytes mutator
|
|
||||||
let mutator = StdScheduledMutator::new(havoc_mutations());
|
|
||||||
let mut stages = tuple_list!(StdMutationalStage::new(mutator));
|
|
||||||
|
|
||||||
fuzzer
|
|
||||||
.fuzz_loop(&mut stages, &mut executor, &mut state, &mut mgr)
|
|
||||||
.expect("Error in the fuzzing loop");
|
|
||||||
/* ANCHOR_END: mutational_stage */
|
|
||||||
}
|
|
@ -25,7 +25,6 @@
|
|||||||
- [Architecture](./design/architecture.md)
|
- [Architecture](./design/architecture.md)
|
||||||
- [Metadata](./design/metadata.md)
|
- [Metadata](./design/metadata.md)
|
||||||
- [Migrating from LibAFL <0.9 to 0.9](./design/migration-0.9.md)
|
- [Migrating from LibAFL <0.9 to 0.9](./design/migration-0.9.md)
|
||||||
- [Migrating from LibAFL <0.11 to 0.11](./design/migration-0.11.md)
|
|
||||||
|
|
||||||
- [Message Passing](./message_passing/message_passing.md)
|
- [Message Passing](./message_passing/message_passing.md)
|
||||||
- [Spawning Instances](./message_passing/spawn_instances.md)
|
- [Spawning Instances](./message_passing/spawn_instances.md)
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
# Concolic Tracing and Hybrid Fuzzing
|
# Concolic Tracing and Hybrid Fuzzing
|
||||||
|
|
||||||
LibAFL has support for concolic tracing based on the [SymCC](https://github.com/eurecom-s3/symcc) instrumenting compiler.
|
LibAFL has support for concolic tracing based on the [SymCC](https://github.com/eurecom-s3/symcc) instrumenting compiler.
|
||||||
|
|
||||||
For those uninitiated, the following text attempts to describe concolic tracing from the ground up using an example.
|
For those uninitiated, the following attempts to describe concolic tracing from the ground up using an example.
|
||||||
Then, we'll go through the relationship of SymCC and LibAFL concolic tracing.
|
Then, we'll go through the relationship of SymCC and LibAFL concolic tracing.
|
||||||
Finally, we'll walk through building a basic hybrid fuzzer using LibAFL.
|
Finally, we'll walk through building a basic hybrid fuzzer using LibAFL.
|
||||||
|
|
||||||
@ -93,18 +92,18 @@ In hybrid fuzzing, we combine this tracing + solving approach with more traditio
|
|||||||
The concolic tracing support in LibAFL is implemented using SymCC.
|
The concolic tracing support in LibAFL is implemented using SymCC.
|
||||||
SymCC is a compiler plugin for clang that can be used as a drop-in replacement for a normal C or C++ compiler.
|
SymCC is a compiler plugin for clang that can be used as a drop-in replacement for a normal C or C++ compiler.
|
||||||
SymCC will instrument the compiled code with callbacks into a runtime that can be supplied by the user.
|
SymCC will instrument the compiled code with callbacks into a runtime that can be supplied by the user.
|
||||||
These callbacks allow the runtime to construct a trace that is similar to the previous example.
|
These callbacks allow the runtime to construct a trace that similar to the previous example.
|
||||||
|
|
||||||
### SymCC and its Runtimes
|
### SymCC and its Runtimes
|
||||||
|
|
||||||
SymCC ships with 2 runtimes:
|
SymCC ships with 2 runtimes:
|
||||||
|
|
||||||
* A 'simple' runtime that attempts to negate and analytically solve any branch conditions it comes across using [Z3](https://github.com/Z3Prover/z3/wiki) and
|
* a 'simple' runtime that attempts to solve any branches it comes across using [Z3](https://github.com/Z3Prover/z3/wiki) and
|
||||||
* A [QSym](https://github.com/sslab-gatech/qsym)-based runtime, which does a bit more filtering on the expressions and also solves them using Z3.
|
* a [QSym](https://github.com/sslab-gatech/qsym)-based runtime, which does a bit more filtering on the expressions and also solves using Z3.
|
||||||
|
|
||||||
The integration with LibAFL, however, requires you to **BYORT** (_bring your own runtime_) using the [`symcc_runtime`](https://docs.rs/symcc_runtime/0.1/symcc_runtime) crate.
|
The integration with LibAFL, however, requires you to **BYORT** (_bring your own runtime_) using the [`symcc_runtime`](https://docs.rs/symcc_runtime/0.1/symcc_runtime) crate.
|
||||||
This crate allows you to easily build a custom runtime out of the built-in building blocks or create entirely new runtimes with full flexibility.
|
This crate allows you to easily build a custom runtime out of the built-in building blocks or create entirely new runtimes with full flexibility.
|
||||||
Check out the `symcc_runtime` docs for more information on how to build your own runtime.
|
Checkout out the `symcc_runtime` docs for more information on how to build your own runtime.
|
||||||
|
|
||||||
### SymQEMU
|
### SymQEMU
|
||||||
|
|
||||||
@ -124,7 +123,7 @@ There are three main steps involved with building a hybrid fuzzer using LibAFL:
|
|||||||
3. building the fuzzer.
|
3. building the fuzzer.
|
||||||
|
|
||||||
Note that the order of these steps is important.
|
Note that the order of these steps is important.
|
||||||
For example, we need to have a runtime ready before we can do instrumentation with SymCC.
|
For example, we need to have runtime ready before we can do instrumentation with SymCC.
|
||||||
|
|
||||||
### Building a Runtime
|
### Building a Runtime
|
||||||
|
|
||||||
@ -135,12 +134,10 @@ Check out the [example hybrid fuzzer's runtime](https://github.com/AFLplusplus/L
|
|||||||
### Instrumentation
|
### Instrumentation
|
||||||
|
|
||||||
There are two main instrumentation methods to make use of concolic tracing in LibAFL:
|
There are two main instrumentation methods to make use of concolic tracing in LibAFL:
|
||||||
|
* Using an **compile-time** instrumented target with **SymCC**.
|
||||||
* Using a **compile-time** instrumented target with **SymCC**.
|
|
||||||
This only works when the source is available for the target and the target is reasonably easy to build using the SymCC compiler wrapper.
|
This only works when the source is available for the target and the target is reasonably easy to build using the SymCC compiler wrapper.
|
||||||
* Using **SymQEMU** to dynamically instrument the target at **runtime**.
|
* Using **SymQEMU** to dynamically instrument the target at **runtime**.
|
||||||
This avoids building a separate instrumented target with concolic tracing instrumentation and so does not require source code.
|
This avoids a separate instrumented target with concolic tracing instrumentation and does not require source code.
|
||||||
|
|
||||||
It should be noted, however, that the 'quality' of the generated expressions can be significantly worse and SymQEMU generally produces significantly more and significantly more convoluted expressions than SymCC.
|
It should be noted, however, that the 'quality' of the generated expressions can be significantly worse and SymQEMU generally produces significantly more and significantly more convoluted expressions than SymCC.
|
||||||
Therefore, it is recommended to use SymCC over SymQEMU when possible.
|
Therefore, it is recommended to use SymCC over SymQEMU when possible.
|
||||||
|
|
||||||
@ -161,23 +158,23 @@ Make sure you satisfy the [build requirements](https://github.com/eurecom-s3/sym
|
|||||||
|
|
||||||
Build SymQEMU according to its [build instructions](https://github.com/eurecom-s3/symqemu#readme).
|
Build SymQEMU according to its [build instructions](https://github.com/eurecom-s3/symqemu#readme).
|
||||||
By default, SymQEMU looks for the runtime in a sibling directory.
|
By default, SymQEMU looks for the runtime in a sibling directory.
|
||||||
Since we don't have a runtime there, we need to explicitly set the `--symcc-build` argument of the `configure` script to the path of your runtime.
|
Since we don't have a runtime there, we need to let it know the path to your runtime by setting `--symcc-build` argument of the `configure` script to the path of your runtime.
|
||||||
|
|
||||||
### Building the Fuzzer
|
### Building the Fuzzer
|
||||||
|
|
||||||
No matter the instrumentation method, the interface between the fuzzer and the instrumented target should now be consistent.
|
No matter the instrumentation method, the interface between the fuzzer and the instrumented target should now be consistent.
|
||||||
The only difference between using SymCC and SymQEMU should be the binary that represents the target:
|
The only difference between using SymCC and SymQEMU should be the binary that represents the target:
|
||||||
In the case of SymCC it will be the binary that was build with instrumentation and with SymQEMU it will be the emulator binary (eg. `x86_64-linux-user/symqemu-x86_64`), followed by your uninstrumented target binary and its arguments.
|
In the case of SymCC it will be the binary that was build with instrumentation and with SymQEMU it will be the emulator binary (eg. `x86_64-linux-user/symqemu-x86_64`), followed by your uninstrumented target binary and arguments.
|
||||||
|
|
||||||
You can use the [`CommandExecutor`](https://docs.rs/libafl/0.6.0/libafl/executors/command/struct.CommandExecutor.html) to execute your target ([example](https://github.com/AFLplusplus/LibAFL/blob/main/fuzzers/libfuzzer_stb_image_concolic/fuzzer/src/main.rs#L244)).
|
You can use the [`CommandExecutor`](https://docs.rs/libafl/0.6.0/libafl/executors/command/struct.CommandExecutor.html) to execute your target ([example](https://github.com/AFLplusplus/LibAFL/blob/main/fuzzers/libfuzzer_stb_image_concolic/fuzzer/src/main.rs#L244)).
|
||||||
When configuring the command, make sure you pass the `SYMCC_INPUT_FILE` environment variable (set to the input file path), if your target reads input from a file (instead of standard input).
|
When configuring the command, make sure you pass the `SYMCC_INPUT_FILE` environment variable the input file path, if your target reads input from a file (instead of standard input).
|
||||||
|
|
||||||
#### Serialization and Solving
|
#### Serialization and Solving
|
||||||
|
|
||||||
While it is perfectly possible to build a custom runtime that also performs the solving step of hybrid fuzzing in the context of the target process, the intended use of the LibAFL concolic tracing support is to serialize the (filtered and pre-processed) branch conditions using the [`TracingRuntime`](https://docs.rs/symcc_runtime/0.1/symcc_runtime/tracing/struct.TracingRuntime.html).
|
While it is perfectly possible to build a custom runtime that also performs the solving step of hybrid fuzzing in the context of the target process, the intended use of the LibAFL concolic tracing support is to serialize the (filtered and pre-processed) branch conditions using the [`TracingRuntime`](https://docs.rs/symcc_runtime/0.1/symcc_runtime/tracing/struct.TracingRuntime.html).
|
||||||
This serialized representation can be deserialized in the fuzzer process for solving using a [`ConcolicObserver`](https://docs.rs/libafl/0.6.0/libafl/observers/concolic/struct.ConcolicObserver.html) wrapped in a [`ConcolicTracingStage`](https://docs.rs/libafl/0.6.0/libafl/stages/concolic/struct.ConcolicTracingStage.html), which will attach a [`ConcolicMetadata`](https://docs.rs/libafl/0.6.0/libafl/observers/concolic/struct.ConcolicMetadata.html) to every [`TestCase`](https://docs.rs/libafl/0.6.0/libafl/corpus/testcase/struct.Testcase.html).
|
This serialized representation can be deserialized in the fuzzer process for solving using a [`ConcolicObserver`](https://docs.rs/libafl/0.6.0/libafl/observers/concolic/struct.ConcolicObserver.html) wrapped in a [`ConcolicTracingStage`](https://docs.rs/libafl/0.6.0/libafl/stages/concolic/struct.ConcolicTracingStage.html), which will attach a [`ConcolicMetadata`](https://docs.rs/libafl/0.6.0/libafl/observers/concolic/struct.ConcolicMetadata.html) to every [`TestCase`](https://docs.rs/libafl/0.6.0/libafl/corpus/testcase/struct.Testcase.html).
|
||||||
|
|
||||||
The `ConcolicMetadata` can be used to replay the concolic trace and to solve the conditions using an SMT-Solver.
|
The `ConcolicMetadata` can be used to replay the concolic trace and solved using an SMT-Solver.
|
||||||
Most use-cases involving concolic tracing, however, will need to define some policy around which branches they want to solve.
|
Most use-cases involving concolic tracing, however, will need to define some policy around which branches they want to solve.
|
||||||
The [`SimpleConcolicMutationalStage`](https://docs.rs/libafl/0.6.0//libafl/stages/concolic/struct.SimpleConcolicMutationalStage.html) can be used for testing purposes.
|
The [`SimpleConcolicMutationalStage`](https://docs.rs/libafl/0.6.0//libafl/stages/concolic/struct.SimpleConcolicMutationalStage.html) can be used for testing purposes.
|
||||||
It will attempt to solve all branches, like the original simple backend from SymCC, using Z3.
|
It will attempt to solve all branches, like the original simple backend from SymCC, using Z3.
|
||||||
|
@ -17,7 +17,7 @@ If you are on Windows, you'll need to install llvm tools.
|
|||||||
LibAFL uses Frida's [__Stalker__](https://frida.re/docs/stalker/) to trace the execution of your program and instrument your harness.
|
LibAFL uses Frida's [__Stalker__](https://frida.re/docs/stalker/) to trace the execution of your program and instrument your harness.
|
||||||
Thus, you have to compile your harness to a dynamic library. Frida instruments your PUT after dynamically loading it.
|
Thus, you have to compile your harness to a dynamic library. Frida instruments your PUT after dynamically loading it.
|
||||||
|
|
||||||
In our `frida_libpng` example, we load the dynamic library and find the symbol to harness as follows:
|
For example in our `frida_libpng` example, we load the dynamic library and find the symbol to harness as follows:
|
||||||
|
|
||||||
```rust,ignore
|
```rust,ignore
|
||||||
let lib = libloading::Library::new(module_name).unwrap();
|
let lib = libloading::Library::new(module_name).unwrap();
|
||||||
@ -28,9 +28,9 @@ In our `frida_libpng` example, we load the dynamic library and find the symbol t
|
|||||||
|
|
||||||
## `FridaInstrumentationHelper` and Runtimes
|
## `FridaInstrumentationHelper` and Runtimes
|
||||||
|
|
||||||
To use functionalities that Frida offers, we'll first need to obtain a `Gum` object by `Gum::obtain()`.
|
To use functionalities that Frida offers, we'll first need to obtain `Gum` object by `Gum::obtain()`.
|
||||||
|
|
||||||
In LibAFL, we use the `FridaInstrumentationHelper` struct to manage frida-related state. `FridaInstrumentationHelper` is a key component that sets up the [__Transformer__](https://frida.re/docs/stalker/#transformer) that is used to generate the instrumented code. It also initializes the `Runtimes` that offer various instrumentations.
|
In LibAFL, we use the `FridaInstrumentationHelper` struct to manage frida-related state. `FridaInstrumentationHelper` is a key component that sets up the [__Transformer__](https://frida.re/docs/stalker/#transformer) that is used to generate the instrumented code. It also initializes the `Runtimes` that offer various instrumentation.
|
||||||
|
|
||||||
We have `CoverageRuntime` that can track the edge coverage, `AsanRuntime` for address sanitizer, `DrCovRuntime` that uses [__DrCov__](https://dynamorio.org/page_drcov.html) for coverage collection (to be imported in coverage tools like Lighthouse, bncov, dragondance,...), and `CmpLogRuntime` for cmplog instrumentation.
|
We have `CoverageRuntime` that can track the edge coverage, `AsanRuntime` for address sanitizer, `DrCovRuntime` that uses [__DrCov__](https://dynamorio.org/page_drcov.html) for coverage collection (to be imported in coverage tools like Lighthouse, bncov, dragondance,...), and `CmpLogRuntime` for cmplog instrumentation.
|
||||||
All of these runtimes can be slotted into `FridaInstrumentationHelper` at build time.
|
All of these runtimes can be slotted into `FridaInstrumentationHelper` at build time.
|
||||||
@ -53,12 +53,12 @@ Combined with any `Runtime` you'd like to use, you can initialize the `FridaInst
|
|||||||
|
|
||||||
## Running the Fuzzer
|
## Running the Fuzzer
|
||||||
|
|
||||||
After setting up the `FridaInstrumentationHelper` you can obtain the pointer to the coverage map by calling `map_mut_ptr()`.
|
After setting up the `FridaInstrumentationHelper`. You can obtain the pointer to the coverage map by calling `map_ptr_mut()`.
|
||||||
|
|
||||||
```rust,ignore
|
```rust,ignore
|
||||||
let edges_observer = HitcountsMapObserver::new(StdMapObserver::from_mut_ptr(
|
let edges_observer = HitcountsMapObserver::new(StdMapObserver::new_from_ptr(
|
||||||
"edges",
|
"edges",
|
||||||
frida_helper.map_mut_ptr().unwrap(),
|
frida_helper.map_ptr_mut().unwrap(),
|
||||||
MAP_SIZE,
|
MAP_SIZE,
|
||||||
));
|
));
|
||||||
```
|
```
|
||||||
@ -83,5 +83,5 @@ You can then link this observer to `FridaInProcessExecutor` as follows:
|
|||||||
);
|
);
|
||||||
```
|
```
|
||||||
|
|
||||||
And finally you can run the fuzzer.
|
And, finally you can run the fuzzer.
|
||||||
See the `frida_` examples in [`./fuzzers`](https://github.com/AFLplusplus/LibAFL/tree/main/fuzzers/) for more information and, for linux or full-system, play around with `libafl_qemu`, another binary-only tracer.
|
See the `frida_` examples in [`./fuzzers`](https://github.com/AFLplusplus/LibAFL/tree/main/fuzzers/) for more information and, for linux or full-system, play around with `libafl_qemu`, another binary-only tracer.
|
@ -1,6 +1,6 @@
|
|||||||
# Using LibAFL in `no_std` environments
|
# Using LibAFL in `no_std` environments
|
||||||
|
|
||||||
It is possible to use LibAFL in `no_std` environments e.g. on custom platforms like microcontrollers, kernels, hypervisors, and more.
|
It is possible to use LibAFL in `no_std` environments e.g. custom platforms like microcontrollers, kernels, hypervisors, and more.
|
||||||
|
|
||||||
You can simply add LibAFL to your `Cargo.toml` file:
|
You can simply add LibAFL to your `Cargo.toml` file:
|
||||||
|
|
||||||
@ -16,7 +16,7 @@ cargo build --no-default-features --target aarch64-unknown-none
|
|||||||
|
|
||||||
## Use custom timing
|
## Use custom timing
|
||||||
|
|
||||||
The minimum amount of support LibAFL needs for a `no_std` environment is a monotonically increasing timestamp.
|
The minimum amount of input LibAFL needs for `no_std` is a monotonically increasing timestamp.
|
||||||
For this, anywhere in your project you need to implement the `external_current_millis` function, which returns the current time in milliseconds.
|
For this, anywhere in your project you need to implement the `external_current_millis` function, which returns the current time in milliseconds.
|
||||||
|
|
||||||
```c
|
```c
|
||||||
|
@ -2,12 +2,12 @@
|
|||||||
|
|
||||||
NYX supports both source-based and binary-only fuzzing.
|
NYX supports both source-based and binary-only fuzzing.
|
||||||
|
|
||||||
Currently, `libafl_nyx` only supports [afl++](https://github.com/AFLplusplus/AFLplusplus)'s instruction type. To install it, you can use `sudo apt install aflplusplus`. Or compile from the source:
|
Currently, `libafl_nyx` only supports [afl++](https://github.com/AFLplusplus/AFLplusplus)'s instruction. To install it, you can use `sudo apt install aflplusplus`. Or compile from the source:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/AFLplusplus/AFLplusplus
|
git clone https://github.com/AFLplusplus/AFLplusplus
|
||||||
cd AFLplusplus
|
cd AFLplusplus
|
||||||
make all # this will not compile afl's additional extensions
|
make all # this will not compile afl's additional extension
|
||||||
```
|
```
|
||||||
|
|
||||||
Then you should compile the target with the afl++ compiler wrapper:
|
Then you should compile the target with the afl++ compiler wrapper:
|
||||||
@ -20,9 +20,9 @@ export CXX=afl-clang-fast++
|
|||||||
make
|
make
|
||||||
```
|
```
|
||||||
|
|
||||||
For binary-only fuzzing, Nyx uses intel-PT(Intel® Processor Trace). You can find the list of supported CPUs at <https://www.intel.com/content/www/us/en/support/articles/000056730/processors.html>.
|
For binary-only fuzzing, Nyx uses intel-PT(Intel® Processor Trace). You can find the supported CPU at <https://www.intel.com/content/www/us/en/support/articles/000056730/processors.html>.
|
||||||
|
|
||||||
## Preparing the Nyx working directory
|
## Preparing Nyx working directory
|
||||||
|
|
||||||
This step is used to pack the target into Nyx's kernel. Don't worry, we have a template shell script in our [example](https://github.com/AFLplusplus/LibAFL/blob/main/fuzzers/nyx_libxml2_parallel/setup_libxml2.sh):
|
This step is used to pack the target into Nyx's kernel. Don't worry, we have a template shell script in our [example](https://github.com/AFLplusplus/LibAFL/blob/main/fuzzers/nyx_libxml2_parallel/setup_libxml2.sh):
|
||||||
|
|
||||||
@ -49,7 +49,7 @@ python3 ./packer/packer/nyx_config_gen.py /tmp/nyx_libxml2/ Kernel || exit
|
|||||||
|
|
||||||
## Standalone fuzzing
|
## Standalone fuzzing
|
||||||
|
|
||||||
In the [example fuzzer](https://github.com/AFLplusplus/LibAFL/blob/main/fuzzers/nyx_libxml2_standalone/src/main.rs) you first need to run `./setup_libxml2.sh`. It will prepare your target and create your nyx work directory in `/tmp/libxml2`. After that, you can start to write your code.
|
In the [example fuzzer](https://github.com/AFLplusplus/LibAFL/blob/main/fuzzers/nyx_libxml2_standalone/src/main.rs). First you need to run `./setup_libxml2.sh`, It will prepare your target and create your nyx work directory in `/tmp/libxml2`. After that, you can start write your code.
|
||||||
|
|
||||||
First, to create `Nyxhelper`:
|
First, to create `Nyxhelper`:
|
||||||
|
|
||||||
@ -57,21 +57,22 @@ First, to create `Nyxhelper`:
|
|||||||
let share_dir = Path::new("/tmp/nyx_libxml2/");
|
let share_dir = Path::new("/tmp/nyx_libxml2/");
|
||||||
let cpu_id = 0; // use first cpu
|
let cpu_id = 0; // use first cpu
|
||||||
let parallel_mode = false; // close parallel_mode
|
let parallel_mode = false; // close parallel_mode
|
||||||
let mut helper = NyxHelper::new(share_dir, cpu_id, true, parallel_mode, None).unwrap(); // we don't need to set the last parameter in standalone mode, we just use None, here
|
let mut helper = NyxHelper::new(share_dir, cpu_id, true, parallel_mode, None).unwrap(); // we don't the set the last parameter in standalone mode, we just use None, here
|
||||||
```
|
```
|
||||||
|
|
||||||
Then, fetch `trace_bits`, create an observer and the `NyxExecutor`:
|
Then, fetch `trace_bits`, create an observer and the `NyxExecutor`:
|
||||||
|
|
||||||
```rust,ignore
|
```rust,ignore
|
||||||
let observer = unsafe { StdMapObserver::from_mut_ptr("trace", helper.trace_bits, helper.map_size) };
|
let trace_bits = unsafe { std::slice::from_raw_parts_mut(helper.trace_bits, helper.map_size) };
|
||||||
|
let observer = StdMapObserver::new("trace", trace_bits);
|
||||||
let mut executor = NyxExecutor::new(&mut helper, tuple_list!(observer)).unwrap();
|
let mut executor = NyxExecutor::new(&mut helper, tuple_list!(observer)).unwrap();
|
||||||
```
|
```
|
||||||
|
|
||||||
Finally, use them normally and pass them into `fuzzer.fuzz_loop(&mut stages, &mut executor, &mut state, &mut mgr)` to start fuzzing.
|
Finally, use them as normal and pass them into `fuzzer.fuzz_loop(&mut stages, &mut executor, &mut state, &mut mgr)` to start fuzzing.
|
||||||
|
|
||||||
## Parallel fuzzing
|
## Parallel fuzzing
|
||||||
|
|
||||||
In the [example fuzzer](https://github.com/AFLplusplus/LibAFL/blob/main/fuzzers/nyx_libxml2_parallel/src/main.rs) you first need to run `./setup_libxml2.sh` as described before.
|
In the [example fuzzer](https://github.com/AFLplusplus/LibAFL/blob/main/fuzzers/nyx_libxml2_parallel/src/main.rs). First you need to run `./setup_libxml2.sh` as described before.
|
||||||
|
|
||||||
Parallel fuzzing relies on [`Launcher`](../message_passing/spawn_instances.md), so spawn logic should be written in the scoop of anonymous function `run_client`:
|
Parallel fuzzing relies on [`Launcher`](../message_passing/spawn_instances.md), so spawn logic should be written in the scoop of anonymous function `run_client`:
|
||||||
|
|
||||||
@ -90,7 +91,7 @@ let mut helper = NyxHelper::new(
|
|||||||
cpu_id, // current cpu id
|
cpu_id, // current cpu id
|
||||||
true, // open snap_mode
|
true, // open snap_mode
|
||||||
parallel_mode, // open parallel mode
|
parallel_mode, // open parallel mode
|
||||||
Some(parent_cpu_id.id as u32), // the cpu-id of main instance, there is only one main instance, other instances will be treated as secondaries
|
Some(parent_cpu_id.id as u32), // the cpu-id of master instance, there is only one master instance, other instances will be treated as slaved
|
||||||
)
|
)
|
||||||
.unwrap();
|
.unwrap();
|
||||||
```
|
```
|
||||||
@ -98,11 +99,13 @@ let mut helper = NyxHelper::new(
|
|||||||
Then you can fetch the trace_bits and create an observer and `NyxExecutor`
|
Then you can fetch the trace_bits and create an observer and `NyxExecutor`
|
||||||
|
|
||||||
```rust,ignore
|
```rust,ignore
|
||||||
let observer = unsafe { StdMapObserver::from_mut_ptr("trace", helper.trace_bits, helper.map_size) }
|
let trace_bits =
|
||||||
|
unsafe { std::slice::from_raw_parts_mut(helper.trace_bits, helper.map_size) };
|
||||||
|
let observer = StdMapObserver::new("trace", trace_bits);
|
||||||
let mut executor = NyxExecutor::new(&mut helper, tuple_list!(observer)).unwrap();
|
let mut executor = NyxExecutor::new(&mut helper, tuple_list!(observer)).unwrap();
|
||||||
```
|
```
|
||||||
|
|
||||||
Finally, open a `Launcher` as usual to start fuzzing:
|
Finally, open a `Launcher` as normal to start fuzzing:
|
||||||
|
|
||||||
```rust,ignore
|
```rust,ignore
|
||||||
match Launcher::builder()
|
match Launcher::builder()
|
||||||
@ -118,6 +121,6 @@ match Launcher::builder()
|
|||||||
{
|
{
|
||||||
Ok(()) => (),
|
Ok(()) => (),
|
||||||
Err(Error::ShuttingDown) => println!("Fuzzing stopped by user. Good bye."),
|
Err(Error::ShuttingDown) => println!("Fuzzing stopped by user. Good bye."),
|
||||||
Err(err) => panic!("Failed to run launcher: {err:?}"),
|
Err(err) => panic!("Failed to run launcher: {:?}", err),
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
@ -17,7 +17,7 @@ You can find a complete version of this tutorial as an example fuzzer in [`fuzze
|
|||||||
|
|
||||||
We use cargo to create a new Rust project with LibAFL as a dependency.
|
We use cargo to create a new Rust project with LibAFL as a dependency.
|
||||||
|
|
||||||
```console
|
```sh
|
||||||
$ cargo new baby_fuzzer
|
$ cargo new baby_fuzzer
|
||||||
$ cd baby_fuzzer
|
$ cd baby_fuzzer
|
||||||
```
|
```
|
||||||
@ -25,11 +25,18 @@ $ cd baby_fuzzer
|
|||||||
The generated `Cargo.toml` looks like the following:
|
The generated `Cargo.toml` looks like the following:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
{{#include ../../listings/baby_fuzzer/listing-01/Cargo.toml}}
|
[package]
|
||||||
|
name = "baby_fuzzer"
|
||||||
|
version = "0.1.0"
|
||||||
|
authors = ["Your Name <you@example.com>"]
|
||||||
|
edition = "2018"
|
||||||
|
|
||||||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
```
|
```
|
||||||
|
|
||||||
In order to use LibAFl we must add it as dependency adding `libafl = { path = "path/to/libafl/" }` under `[dependencies]`.
|
In order to use LibAFl we must add it as dependency adding `libafl = { path = "path/to/libafl/" }` under `[dependencies]`.
|
||||||
That path actually needs to point to the `libafl` directory within the cloned repo, not the root of the repo itself.
|
|
||||||
You can use the LibAFL version from [crates.io](https://crates.io/crates/libafl) if you want, in this case, you have to use `libafl = "*"` to get the latest version (or set it to the current version).
|
You can use the LibAFL version from [crates.io](https://crates.io/crates/libafl) if you want, in this case, you have to use `libafl = "*"` to get the latest version (or set it to the current version).
|
||||||
|
|
||||||
As we are going to fuzz Rust code, we want that a panic does not simply cause the program to exit, but raise an `abort` that can then be caught by the fuzzer.
|
As we are going to fuzz Rust code, we want that a panic does not simply cause the program to exit, but raise an `abort` that can then be caught by the fuzzer.
|
||||||
@ -40,9 +47,27 @@ Alongside this setting, we add some optimization flags for the compilation, when
|
|||||||
The final `Cargo.toml` should look similar to the following:
|
The final `Cargo.toml` should look similar to the following:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
{{#include ../../listings/baby_fuzzer/listing-02/Cargo.toml}}
|
[package]
|
||||||
```
|
name = "baby_fuzzer"
|
||||||
|
version = "0.1.0"
|
||||||
|
authors = ["Your Name <you@example.com>"]
|
||||||
|
edition = "2018"
|
||||||
|
|
||||||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
libafl = { path = "path/to/libafl/" }
|
||||||
|
|
||||||
|
[profile.dev]
|
||||||
|
panic = "abort"
|
||||||
|
|
||||||
|
[profile.release]
|
||||||
|
panic = "abort"
|
||||||
|
lto = true
|
||||||
|
codegen-units = 1
|
||||||
|
opt-level = 3
|
||||||
|
debug = true
|
||||||
|
```
|
||||||
|
|
||||||
## The function under test
|
## The function under test
|
||||||
|
|
||||||
@ -51,32 +76,52 @@ To start, we create the closure that we want to fuzz. It takes a buffer as input
|
|||||||
`ExitKind` is used to inform the fuzzer about the harness' exit status.
|
`ExitKind` is used to inform the fuzzer about the harness' exit status.
|
||||||
|
|
||||||
```rust
|
```rust
|
||||||
{{#rustdoc_include ../../listings/baby_fuzzer/listing-03/src/main.rs}}
|
extern crate libafl;
|
||||||
|
use libafl::{
|
||||||
|
bolts::AsSlice,
|
||||||
|
inputs::{BytesInput, HasTargetBytes},
|
||||||
|
executors::ExitKind,
|
||||||
|
};
|
||||||
|
|
||||||
|
fn main(){
|
||||||
|
let mut harness = |input: &BytesInput| {
|
||||||
|
let target = input.target_bytes();
|
||||||
|
let buf = target.as_slice();
|
||||||
|
if buf.len() > 0 && buf[0] == 'a' as u8 {
|
||||||
|
if buf.len() > 1 && buf[1] == 'b' as u8 {
|
||||||
|
if buf.len() > 2 && buf[2] == 'c' as u8 {
|
||||||
|
panic!("=)");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ExitKind::Ok
|
||||||
|
};
|
||||||
|
// To test the panic:
|
||||||
|
let input = BytesInput::new(Vec::from("abc"));
|
||||||
|
#[cfg(feature = "panic")]
|
||||||
|
harness(&input);
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
To test the crash manually, you can add a feature in `Cargo.toml` that enables the call that triggers the panic:
|
|
||||||
|
|
||||||
```toml
|
|
||||||
{{#include ../../listings/baby_fuzzer/listing-03/Cargo.toml:22:23}}
|
|
||||||
```
|
|
||||||
|
|
||||||
And then run the program with that feature activated:
|
|
||||||
|
|
||||||
```console
|
|
||||||
$ cargo run -F panic
|
|
||||||
```
|
|
||||||
|
|
||||||
And you should see the program crash as expected.
|
|
||||||
|
|
||||||
## Generating and running some tests
|
## Generating and running some tests
|
||||||
|
|
||||||
One of the main components that a LibAFL-based fuzzer uses is the State, a container of the data that will evolve during the fuzzing process.
|
One of the main components that a LibAFL-based fuzzer uses is the State, a container of the data that is evolved during the fuzzing process.
|
||||||
It includes all state, such as the Corpus of inputs, the current RNG state, and potential Metadata for the testcases and run.
|
Includes all State, such as the Corpus of inputs, the current RNG state, and potential Metadata for the testcases and run.
|
||||||
In our `main` we create a basic State instance like the following:
|
In our `main` we create a basic State instance like the following:
|
||||||
|
|
||||||
|
```rust,ignore
|
||||||
```rust
|
// create a State from scratch
|
||||||
{{#rustdoc_include ../../listings/baby_fuzzer/listing-04/src/main.rs:state}}
|
let mut state = StdState::new(
|
||||||
|
// RNG
|
||||||
|
StdRand::with_seed(current_nanos()),
|
||||||
|
// Corpus that will be evolved, we keep it in memory for performance
|
||||||
|
InMemoryCorpus::new(),
|
||||||
|
// Corpus in which we store solutions (crashes in this example),
|
||||||
|
// on disk so the user can get them after stopping the fuzzer
|
||||||
|
OnDiskCorpus::new(PathBuf::from("./crashes")).unwrap(),
|
||||||
|
&mut (),
|
||||||
|
&mut ()
|
||||||
|
).unwrap();
|
||||||
```
|
```
|
||||||
|
|
||||||
- The first parameter is a random number generator, that is part of the fuzzer state, in this case, we use the default one `StdRand`, but you can choose a different one. We seed it with the current nanoseconds.
|
- The first parameter is a random number generator, that is part of the fuzzer state, in this case, we use the default one `StdRand`, but you can choose a different one. We seed it with the current nanoseconds.
|
||||||
@ -84,26 +129,43 @@ In our `main` we create a basic State instance like the following:
|
|||||||
|
|
||||||
To avoid type annotation error, you can use `InMemoryCorpus::<BytesInput>::new()` to replace `InMemoryCorpus::new()`. If not, type annotation will be automatically inferred when adding `executor`.
|
To avoid type annotation error, you can use `InMemoryCorpus::<BytesInput>::new()` to replace `InMemoryCorpus::new()`. If not, type annotation will be automatically inferred when adding `executor`.
|
||||||
|
|
||||||
- The third parameter is another Corpus that stores the "solution" testcases for the fuzzer. For our purpose, the solution is the input that triggers the panic. In this case, we want to store it to disk under the `crashes` directory, so we can inspect it.
|
- third parameter is another corpus that stores the "solution" testcases for the fuzzer. For our purpose, the solution is the input that triggers the panic. In this case, we want to store it to disk under the `crashes` directory, so we can inspect it.
|
||||||
- The last two parameters are feedback and objective, we will discuss them later.
|
- last two parameters are feedback and objective, we will discuss them later.
|
||||||
|
|
||||||
Another required component is the **EventManager**. It handles some events such as the addition of a testcase to the corpus during the fuzzing process. For our purpose, we use the simplest one that just displays the information about these events to the user using a `Monitor` instance.
|
Another required component is the **EventManager**. It handles some events such as the addition of a testcase to the corpus during the fuzzing process. For our purpose, we use the simplest one that just displays the information about these events to the user using a `Monitor` instance.
|
||||||
|
|
||||||
```rust
|
```rust,ignore
|
||||||
{{#rustdoc_include ../../listings/baby_fuzzer/listing-04/src/main.rs:event_manager}}
|
// The Monitor trait defines how the fuzzer stats are displayed to the user
|
||||||
|
let mon = SimpleMonitor::new(|s| println!("{}", s));
|
||||||
|
|
||||||
|
// The event manager handle the various events generated during the fuzzing loop
|
||||||
|
// such as the notification of the addition of a new item to the corpus
|
||||||
|
let mut mgr = SimpleEventManager::new(mon);
|
||||||
```
|
```
|
||||||
|
|
||||||
In addition, we have the **Fuzzer**, an entity that contains some actions that alter the State. One of these actions is the scheduling of the testcases to the fuzzer using a **Scheduler**.
|
In addition, we have the **Fuzzer**, an entity that contains some actions that alter the State. One of these actions is the scheduling of the testcases to the fuzzer using a **Scheduler**.
|
||||||
We create it as `QueueScheduler`, a scheduler that serves testcases to the fuzzer in a FIFO fashion.
|
We create it as `QueueScheduler`, a scheduler that serves testcases to the fuzzer in a FIFO fashion.
|
||||||
|
|
||||||
```rust
|
```rust,ignore
|
||||||
{{#rustdoc_include ../../listings/baby_fuzzer/listing-04/src/main.rs:scheduler_fuzzer}}
|
// A queue policy to get testcasess from the corpus
|
||||||
|
let scheduler = QueueScheduler::new();
|
||||||
|
|
||||||
|
// A fuzzer with feedbacks and a corpus scheduler
|
||||||
|
let mut fuzzer = StdFuzzer::new(scheduler, (), ());
|
||||||
```
|
```
|
||||||
|
|
||||||
Last but not least, we need an **Executor** that is the entity responsible to run our program under test. In this example, we want to run the harness function in-process (without forking off a child, for example), and so we use the `InProcessExecutor`.
|
Last but not least, we need an **Executor** that is the entity responsible to run our program under test. In this example, we want to run the harness function in-process (without forking off a child, for example), and so we use the `InProcessExecutor`.
|
||||||
|
|
||||||
```rust
|
```rust,ignore
|
||||||
{{#rustdoc_include ../../listings/baby_fuzzer/listing-04/src/main.rs:executor}}
|
// Create the executor for an in-process function
|
||||||
|
let mut executor = InProcessExecutor::new(
|
||||||
|
&mut harness,
|
||||||
|
(),
|
||||||
|
&mut fuzzer,
|
||||||
|
&mut state,
|
||||||
|
&mut mgr,
|
||||||
|
)
|
||||||
|
.expect("Failed to create the Executor");
|
||||||
```
|
```
|
||||||
|
|
||||||
It takes a reference to the harness, the state, and the event manager. We will discuss the second parameter later.
|
It takes a reference to the harness, the state, and the event manager. We will discuss the second parameter later.
|
||||||
@ -113,19 +175,41 @@ Now we have the 4 major entities ready for running our tests, but we still canno
|
|||||||
|
|
||||||
For this purpose, we use a **Generator**, `RandPrintablesGenerator` that generates a string of printable bytes.
|
For this purpose, we use a **Generator**, `RandPrintablesGenerator` that generates a string of printable bytes.
|
||||||
|
|
||||||
```rust
|
```rust,ignore
|
||||||
{{#rustdoc_include ../../listings/baby_fuzzer/listing-04/src/main.rs:generator}}
|
use libafl::generators::RandPrintablesGenerator;
|
||||||
|
|
||||||
|
// Generator of printable bytearrays of max size 32
|
||||||
|
let mut generator = RandPrintablesGenerator::new(32);
|
||||||
|
|
||||||
|
// Generate 8 initial inputs
|
||||||
|
state
|
||||||
|
.generate_initial_inputs(&mut fuzzer, &mut executor, &mut generator, &mut mgr, 8)
|
||||||
|
.expect("Failed to generate the initial corpus".into());
|
||||||
```
|
```
|
||||||
|
|
||||||
Now you can prepend the necessary `use` directives to your main.rs and compile the fuzzer.
|
Now you can prepend the necessary `use` directives to your main.rs and compile the fuzzer.
|
||||||
|
|
||||||
```rust
|
```rust
|
||||||
{{#rustdoc_include ../../listings/baby_fuzzer/listing-04/src/main.rs:use}}
|
extern crate libafl;
|
||||||
|
|
||||||
|
use std::path::PathBuf;
|
||||||
|
use libafl::{
|
||||||
|
bolts::{AsSlice, current_nanos, rands::StdRand},
|
||||||
|
corpus::{InMemoryCorpus, OnDiskCorpus},
|
||||||
|
events::SimpleEventManager,
|
||||||
|
executors::{inprocess::InProcessExecutor, ExitKind},
|
||||||
|
fuzzer::StdFuzzer,
|
||||||
|
generators::RandPrintablesGenerator,
|
||||||
|
inputs::{BytesInput, HasTargetBytes},
|
||||||
|
monitors::SimpleMonitor,
|
||||||
|
schedulers::QueueScheduler,
|
||||||
|
state::StdState,
|
||||||
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
When running, you should see something similar to:
|
When running, you should see something similar to:
|
||||||
|
|
||||||
```console
|
```sh
|
||||||
$ cargo run
|
$ cargo run
|
||||||
Finished dev [unoptimized + debuginfo] target(s) in 0.04s
|
Finished dev [unoptimized + debuginfo] target(s) in 0.04s
|
||||||
Running `target/debug/baby_fuzzer`
|
Running `target/debug/baby_fuzzer`
|
||||||
@ -141,22 +225,60 @@ Now we want to turn our simple fuzzer into a feedback-based one and increase the
|
|||||||
**Observer** can record the information about properties of a fuzzing run and then feeds the fuzzer. We use the `StdMapObserver`, the default observer that uses a map to keep track of covered elements. In our fuzzer, each condition is mapped to an entry of such map.
|
**Observer** can record the information about properties of a fuzzing run and then feeds the fuzzer. We use the `StdMapObserver`, the default observer that uses a map to keep track of covered elements. In our fuzzer, each condition is mapped to an entry of such map.
|
||||||
|
|
||||||
We represent such map as a `static mut` variable.
|
We represent such map as a `static mut` variable.
|
||||||
As we don't rely on any instrumentation engine, we have to manually track the satisfied conditions by `signals_set` in our harness:
|
As we don't rely on any instrumentation engine, we have to manually track the satisfied conditions by `singals_set` in our harness:
|
||||||
|
|
||||||
```rust
|
```rust
|
||||||
{{#rustdoc_include ../../listings/baby_fuzzer/listing-05/src/main.rs:signals}}
|
extern crate libafl;
|
||||||
|
use libafl::{
|
||||||
|
bolts::AsSlice,
|
||||||
|
inputs::{BytesInput, HasTargetBytes},
|
||||||
|
executors::ExitKind,
|
||||||
|
};
|
||||||
|
|
||||||
|
// Coverage map with explicit assignments due to the lack of instrumentation
|
||||||
|
static mut SIGNALS: [u8; 16] = [0; 16];
|
||||||
|
|
||||||
|
fn signals_set(idx: usize) {
|
||||||
|
unsafe { SIGNALS[idx] = 1 };
|
||||||
|
}
|
||||||
|
|
||||||
|
// The closure that we want to fuzz
|
||||||
|
let mut harness = |input: &BytesInput| {
|
||||||
|
let target = input.target_bytes();
|
||||||
|
let buf = target.as_slice();
|
||||||
|
signals_set(0); // set SIGNALS[0]
|
||||||
|
if buf.len() > 0 && buf[0] == 'a' as u8 {
|
||||||
|
signals_set(1); // set SIGNALS[1]
|
||||||
|
if buf.len() > 1 && buf[1] == 'b' as u8 {
|
||||||
|
signals_set(2); // set SIGNALS[2]
|
||||||
|
if buf.len() > 2 && buf[2] == 'c' as u8 {
|
||||||
|
panic!("=)");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ExitKind::Ok
|
||||||
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
The observer can be created directly from the `SIGNALS` map, in the following way:
|
The observer can be created directly from the `SIGNALS` map, in the following way:
|
||||||
|
|
||||||
```rust
|
```rust,ignore
|
||||||
{{#rustdoc_include ../../listings/baby_fuzzer/listing-05/src/main.rs:observer}}
|
// Create an observation channel using the signals map
|
||||||
|
let observer = StdMapObserver::new("signals", unsafe { &mut SIGNALS });
|
||||||
```
|
```
|
||||||
|
|
||||||
The observers are usually kept in the corresponding executor as they keep track of information that is valid for just one run. We have then to modify our InProcessExecutor creation to include the observer as follows:
|
The observers are usually kept in the corresponding executor as they keep track of information that is valid for just one run. We have then to modify our InProcessExecutor creation to include the observer as follows:
|
||||||
|
|
||||||
```rust
|
```rust,ignore
|
||||||
{{#rustdoc_include ../../listings/baby_fuzzer/listing-05/src/main.rs:executor_with_observer}}
|
// Create the executor for an in-process function with just one observer
|
||||||
|
let mut executor = InProcessExecutor::new(
|
||||||
|
&mut harness,
|
||||||
|
tuple_list!(observer),
|
||||||
|
&mut fuzzer,
|
||||||
|
&mut state,
|
||||||
|
&mut mgr,
|
||||||
|
)
|
||||||
|
.expect("Failed to create the Executor".into());
|
||||||
```
|
```
|
||||||
|
|
||||||
Now that the fuzzer can observe which condition is satisfied, we need a way to rate an input as interesting (i.e. worth of addition to the corpus) based on this observation. Here comes the notion of Feedback.
|
Now that the fuzzer can observe which condition is satisfied, we need a way to rate an input as interesting (i.e. worth of addition to the corpus) based on this observation. Here comes the notion of Feedback.
|
||||||
@ -165,23 +287,49 @@ Now that the fuzzer can observe which condition is satisfied, we need a way to r
|
|||||||
|
|
||||||
We use `MaxMapFeedback`, a feedback that implements a novelty search over the map of the MapObserver. Basically, if there is a value in the observer's map that is greater than the maximum value registered so far for the same entry, it rates the input as interesting and updates its state.
|
We use `MaxMapFeedback`, a feedback that implements a novelty search over the map of the MapObserver. Basically, if there is a value in the observer's map that is greater than the maximum value registered so far for the same entry, it rates the input as interesting and updates its state.
|
||||||
|
|
||||||
**Objective Feedback** is another kind of Feedback which decides if an input is a "solution". It will save input to solutions(`./crashes` in our case) rather than corpus when the input is rated interesting. We use `CrashFeedback` to tell the fuzzer that if an input causes the program to crash it is a solution for us.
|
**Objective Feedback** is another kind of Feedback which decide if an input is a "solution". It will save input to solutions(`./crashes` in our case) other than corpus when the input is rated interesting. We use `CrashFeedback` to tell the fuzzer that if an input causes the program to crash it is a solution for us.
|
||||||
|
|
||||||
We need to update our State creation including the feedback state and the Fuzzer including the feedback and the objective:
|
We need to update our State creation including the feedback state and the Fuzzer including the feedback and the objective:
|
||||||
|
|
||||||
```rust
|
```rust,ignore
|
||||||
{{#rustdoc_include ../../listings/baby_fuzzer/listing-05/src/main.rs:state_with_feedback_and_objective}}
|
extern crate libafl;
|
||||||
```
|
use libafl::{
|
||||||
|
bolts::{current_nanos, rands::StdRand, tuples::tuple_list},
|
||||||
|
corpus::{InMemoryCorpus, OnDiskCorpus},
|
||||||
|
feedbacks::{MaxMapFeedback, CrashFeedback},
|
||||||
|
fuzzer::StdFuzzer,
|
||||||
|
state::StdState,
|
||||||
|
observers::StdMapObserver,
|
||||||
|
};
|
||||||
|
|
||||||
Once again, you need to add the necessary `use` directives for this to work properly:
|
// Feedback to rate the interestingness of an input
|
||||||
|
let mut feedback = MaxMapFeedback::new(&observer);
|
||||||
|
|
||||||
```rust
|
// A feedback to choose if an input is a solution or not
|
||||||
{{#rustdoc_include ../../listings/baby_fuzzer/listing-05/src/main.rs:use}}
|
let mut objective = CrashFeedback::new();
|
||||||
|
|
||||||
|
// create a State from scratch
|
||||||
|
let mut state = StdState::new(
|
||||||
|
// RNG
|
||||||
|
StdRand::with_seed(current_nanos()),
|
||||||
|
// Corpus that will be evolved, we keep it in memory for performance
|
||||||
|
InMemoryCorpus::new(),
|
||||||
|
// Corpus in which we store solutions (crashes in this example),
|
||||||
|
// on disk so the user can get them after stopping the fuzzer
|
||||||
|
OnDiskCorpus::new(PathBuf::from("./crashes")).unwrap(),
|
||||||
|
&mut feedback,
|
||||||
|
&mut objective
|
||||||
|
).unwrap();
|
||||||
|
|
||||||
|
// ...
|
||||||
|
|
||||||
|
// A fuzzer with feedbacks and a corpus scheduler
|
||||||
|
let mut fuzzer = StdFuzzer::new(scheduler, feedback, objective);
|
||||||
```
|
```
|
||||||
|
|
||||||
## The actual fuzzing
|
## The actual fuzzing
|
||||||
|
|
||||||
Now, we can run the program, but the outcome is not so different from the previous one as the random generator does not take into account what we save as interesting in the corpus. To do that, we need to plug a Mutator.
|
Now, after including the correct `use`, we can run the program, but the outcome is not so different from the previous one as the random generator does not take into account what we save as interesting in the corpus. To do that, we need to plug a Mutator.
|
||||||
|
|
||||||
**Stages** perform actions on individual inputs, taken from the corpus.
|
**Stages** perform actions on individual inputs, taken from the corpus.
|
||||||
For instance, the `MutationalStage` executes the harness several times in a row, every time with mutated inputs.
|
For instance, the `MutationalStage` executes the harness several times in a row, every time with mutated inputs.
|
||||||
@ -189,20 +337,28 @@ For instance, the `MutationalStage` executes the harness several times in a row,
|
|||||||
As the last step, we create a MutationalStage that uses a mutator inspired by the havoc mutator of AFL.
|
As the last step, we create a MutationalStage that uses a mutator inspired by the havoc mutator of AFL.
|
||||||
|
|
||||||
```rust,ignore
|
```rust,ignore
|
||||||
{{#rustdoc_include ../../listings/baby_fuzzer/listing-06/src/main.rs:mutational_stage}}
|
use libafl::{
|
||||||
|
mutators::scheduled::{havoc_mutations, StdScheduledMutator},
|
||||||
|
stages::mutational::StdMutationalStage,
|
||||||
|
fuzzer::Fuzzer,
|
||||||
|
};
|
||||||
|
|
||||||
|
// ...
|
||||||
|
|
||||||
|
// Setup a mutational stage with a basic bytes mutator
|
||||||
|
let mutator = StdScheduledMutator::new(havoc_mutations());
|
||||||
|
let mut stages = tuple_list!(StdMutationalStage::new(mutator));
|
||||||
|
|
||||||
|
fuzzer
|
||||||
|
.fuzz_loop(&mut stages, &mut executor, &mut state, &mut mgr)
|
||||||
|
.expect("Error in the fuzzing loop");
|
||||||
```
|
```
|
||||||
|
|
||||||
`fuzz_loop` will request a testcase for each iteration to the fuzzer using the scheduler and then it will invoke the stage.
|
`fuzz_loop` will request a testcase for each iteration to the fuzzer using the scheduler and then it will invoke the stage.
|
||||||
|
|
||||||
Again, we need to add the new `use` directives:
|
After adding this code, we have a proper fuzzer, that can run a find the input that panics the function in less than a second.
|
||||||
|
|
||||||
```rust,ignore
|
```text
|
||||||
{{#rustdoc_include ../../listings/baby_fuzzer/listing-06/src/main.rs:use}}
|
|
||||||
```
|
|
||||||
|
|
||||||
After adding this code, we have a proper fuzzer, that can run and find the input that panics the function in less than a second.
|
|
||||||
|
|
||||||
```console
|
|
||||||
$ cargo run
|
$ cargo run
|
||||||
Compiling baby_fuzzer v0.1.0 (/home/andrea/Desktop/baby_fuzzer)
|
Compiling baby_fuzzer v0.1.0 (/home/andrea/Desktop/baby_fuzzer)
|
||||||
Finished dev [unoptimized + debuginfo] target(s) in 1.56s
|
Finished dev [unoptimized + debuginfo] target(s) in 1.56s
|
||||||
|
@ -9,4 +9,4 @@ Examples can be found under `./fuzzer`.
|
|||||||
| baby_fuzzer_nautilus | [nautilus](https://www.ndss-symposium.org/wp-content/uploads/2019/02/ndss2019_04A-3_Aschermann_paper.pdf) is a **coverage guided, grammar based** fuzzer|
|
| baby_fuzzer_nautilus | [nautilus](https://www.ndss-symposium.org/wp-content/uploads/2019/02/ndss2019_04A-3_Aschermann_paper.pdf) is a **coverage guided, grammar based** fuzzer|
|
||||||
|baby_fuzzer_tokens| basic **token level** fuzzer with token level mutations|
|
|baby_fuzzer_tokens| basic **token level** fuzzer with token level mutations|
|
||||||
|baby_fuzzer_with_forkexecutor| example for **InProcessForkExecutor**|
|
|baby_fuzzer_with_forkexecutor| example for **InProcessForkExecutor**|
|
||||||
|baby_no_std|a minimalistic example how to create a libafl based fuzzer that works on **`no_std`** environments like TEEs, Kernels or on bare metal|
|
|baby_no_std|a minimalistic example how to create a libafl based fuzzer that works on **`no_std`** environments like TEEs, Kernels or on barew metal|
|
||||||
|
@ -4,8 +4,8 @@ The Corpus is where testcases are stored. We define a Testcase as an Input and a
|
|||||||
|
|
||||||
A Corpus can store testcases in different ways, for example on disk, or in memory, or implement a cache to speedup on disk storage.
|
A Corpus can store testcases in different ways, for example on disk, or in memory, or implement a cache to speedup on disk storage.
|
||||||
|
|
||||||
Usually, a testcase is added to the Corpus when it is considered as interesting, but a Corpus is used also to store testcases that fulfill an objective (like crashing the program under test for instance).
|
Usually, a testcase is added to the Corpus when it is considered as interesting, but a Corpus is used also to store testcases that fulfill an objective (like crashing the tested program for instance).
|
||||||
|
|
||||||
Related to the Corpus is the way in which the next testcase (the fuzzer would ask for) is retrieved from the Corpus. The taxonomy for this handling in LibAFL is CorpusScheduler, the entity representing the policy to pop testcases from the Corpus, in a FIFO fashion for instance.
|
Related to the Corpus, there is the way in which the fuzzer should ask for the next testcase to fuzz picking it from the Corpus. The taxonomy for this in LibAFL is CorpusScheduler, the entity representing the policy to pop testcases from the Corpus, FIFO for instance.
|
||||||
|
|
||||||
Speaking about the code, [`Corpus`](https://docs.rs/libafl/0/libafl/corpus/trait.Corpus.html) and [`CorpusScheduler`](https://docs.rs/libafl/0/libafl/corpus/trait.CorpusScheduler.html) are traits.
|
Speaking about the code, [`Corpus`](https://docs.rs/libafl/0/libafl/corpus/trait.Corpus.html) and [`CorpusScheduler`](https://docs.rs/libafl/0/libafl/corpus/trait.CorpusScheduler.html) are traits.
|
||||||
|
@ -13,7 +13,7 @@ In Rust, we bind this concept to the [`Executor`](https://docs.rs/libafl/0/libaf
|
|||||||
|
|
||||||
By default, we implement some commonly used Executors such as [`InProcessExecutor`](https://docs.rs/libafl/0/libafl/executors/inprocess/struct.InProcessExecutor.html) in which the target is a harness function providing in-process crash detection. Another Executor is the [`ForkserverExecutor`](https://docs.rs/libafl/0/libafl/executors/forkserver/struct.ForkserverExecutor.html) that implements an AFL-like mechanism to spawn child processes to fuzz.
|
By default, we implement some commonly used Executors such as [`InProcessExecutor`](https://docs.rs/libafl/0/libafl/executors/inprocess/struct.InProcessExecutor.html) in which the target is a harness function providing in-process crash detection. Another Executor is the [`ForkserverExecutor`](https://docs.rs/libafl/0/libafl/executors/forkserver/struct.ForkserverExecutor.html) that implements an AFL-like mechanism to spawn child processes to fuzz.
|
||||||
|
|
||||||
A common pattern when creating an Executor is wrapping an existing one, for instance [`TimeoutExecutor`](https://docs.rs/libafl/0.6.1/libafl/executors/timeout/struct.TimeoutExecutor.html) wraps an executor and installs a timeout callback before calling the original `run` function of the wrapped executor.
|
A common pattern when creating an Executor is wrapping an existing one, for instance [`TimeoutExecutor`](https://docs.rs/libafl/0.6.1/libafl/executors/timeout/struct.TimeoutExecutor.html) wraps an executor and install a timeout callback before calling the original run function of the wrapped executor.
|
||||||
|
|
||||||
## InProcessExecutor
|
## InProcessExecutor
|
||||||
Let's begin with the base case; `InProcessExecutor`.
|
Let's begin with the base case; `InProcessExecutor`.
|
||||||
@ -24,7 +24,7 @@ When you want to execute the harness as fast as possible, you will most probably
|
|||||||
One thing to note here is, when your harness is likely to have heap corruption bugs, you want to use another allocator so that corrupted heap does not affect the fuzzer itself. (For example, we adopt MiMalloc in some of our fuzzers.). Alternatively you can compile your harness with address sanitizer to make sure you can catch these heap bugs.
|
One thing to note here is, when your harness is likely to have heap corruption bugs, you want to use another allocator so that corrupted heap does not affect the fuzzer itself. (For example, we adopt MiMalloc in some of our fuzzers.). Alternatively you can compile your harness with address sanitizer to make sure you can catch these heap bugs.
|
||||||
|
|
||||||
## ForkserverExecutor
|
## ForkserverExecutor
|
||||||
Next, we'll take a look at the `ForkserverExecutor`. In this case, it is `afl-cc` (from AFLplusplus/AFLplusplus) that compiles the harness code, and therefore, we can't use `EDGES_MAP` anymore. Fortunately we have [_a way_](https://github.com/AFLplusplus/AFLplusplus/blob/2e15661f184c77ac1fbb6f868c894e946cbb7f17/instrumentation/afl-compiler-rt.o.c#L270) to tell the forkserver which map to record the coverage in.
|
Next, we'll take a look at the `ForkserverExecutor`. In this case, it is `afl-cc` (from AFLplusplus/AFLplusplus) that compiles the harness code, and therefore, we can't use `EDGES_MAP` anymore. Hopefully, we have [_a way_](https://github.com/AFLplusplus/AFLplusplus/blob/2e15661f184c77ac1fbb6f868c894e946cbb7f17/instrumentation/afl-compiler-rt.o.c#L270) to tell the forkserver which map to record the coverage.
|
||||||
|
|
||||||
As you can see from the forkserver example,
|
As you can see from the forkserver example,
|
||||||
|
|
||||||
@ -48,7 +48,7 @@ See AFL++'s [_documentation_](https://github.com/AFLplusplus/AFLplusplus/blob/st
|
|||||||
Finally, we'll talk about the `InProcessForkExecutor`.
|
Finally, we'll talk about the `InProcessForkExecutor`.
|
||||||
`InProcessForkExecutor` has only one difference from `InprocessExecutor`; It forks before running the harness and that's it.
|
`InProcessForkExecutor` has only one difference from `InprocessExecutor`; It forks before running the harness and that's it.
|
||||||
|
|
||||||
But why do we want to do so? Well, under some circumstances, you may find your harness pretty unstable or your harness wreaks havoc on the global states. In this case, you want to fork it before executing the harness runs in the child process so that it doesn't break things.
|
But why do we want to do so? well, under some circumstances, you may find your harness pretty unstable or your harness wreaks havoc on the global states. In this case, you want to fork it before executing the harness runs in the child process so that it doesn't break things.
|
||||||
|
|
||||||
However, we have to take care of the shared memory, it's the child process that runs the harness code and writes the coverage to the map.
|
However, we have to take care of the shared memory, it's the child process that runs the harness code and writes the coverage to the map.
|
||||||
|
|
||||||
|
@ -10,25 +10,17 @@ The concept of "interestingness" is abstract, but typically it is related to a n
|
|||||||
|
|
||||||
As an example, given an Observer that reports all the sizes of memory allocations, a maximization Feedback can be used to maximize these sizes to sport pathological inputs in terms of memory consumption.
|
As an example, given an Observer that reports all the sizes of memory allocations, a maximization Feedback can be used to maximize these sizes to sport pathological inputs in terms of memory consumption.
|
||||||
|
|
||||||
In terms of code, the library offers the [`Feedback`](https://docs.rs/libafl/0/libafl/feedbacks/trait.Feedback.html) trait.
|
In terms of code, the library offers the [`Feedback`](https://docs.rs/libafl/0/libafl/feedbacks/trait.Feedback.html) and the [`FeedbackState`](https://docs.rs/libafl/0/libafl/feedbacks/trait.FeedbackState.html) traits.
|
||||||
It is used to implement functors that, given the state of the observers from the last execution, tells if the execution was interesting.
|
The first is used to implement functors that, given the state of the observers from the last execution, tells if the execution was interesting. The second is tied with `Feedback` and it is the state of the data that the feedback wants to persist in the fuzzers's state, for instance the cumulative map holding all the edges seen so far in the case of a feedback based on edge coverage.
|
||||||
So to speak, it reduces the observations to a boolean result of [`is_interesting`](https://docs.rs/libafl/0/libafl/feedbacks/trait.Feedback.html#tymethod.is_interesting) - or not.
|
|
||||||
For this, a `Feedback` can store anything it wants to persist in the fuzzers's state.
|
|
||||||
This might be, for instance, the cumulative map of all edges seen so far, in the case of a feedback based on edge coverage.
|
|
||||||
This can be achieved by adding `Metadata` in [`init_state`](https://docs.rs/libafl/0/libafl/feedbacks/trait.Feedback.html#method.init_state) and accessing it later in `is_interesting`.
|
|
||||||
`Feedback` can also add custom metadata to a newly created [`Testcase`](https://docs.rs/libafl/0/libafl/corpus/testcase/struct.Testcase.html) using [`append_metadata`](https://docs.rs/libafl/0.10.1/libafl/feedbacks/trait.Feedback.html#method.append_metadata).
|
|
||||||
|
|
||||||
Multiple Feedbacks can be combined into a boolean expression, considering for instance an execution as interesting if it triggers new code paths or execute in less time compared to the average execution time using [`feedback_or`](https://docs.rs/libafl/*/libafl/macro.feedback_or.html).
|
Multiple Feedbacks can be combined into boolean formula, considering for instance an execution as interesting if it triggers new code paths or execute in less time compared to the average execution time using [`feedback_or`](https://docs.rs/libafl/*/libafl/macro.feedback_or.html).
|
||||||
|
|
||||||
On top, logic operators like `feedback_or` and `feedback_and` have a `_fast` variant (e.g. `feedback_or_fast`) where the second feedback will not be evaluated, if the value of the first feedback operand already answers the `interestingness` question so as to save precious performance.
|
On top, logic operators like `feedback_or` and `feedback_and` have a `_fast` option (`feedback_or_fast` where the second feedback will not be evaluated, if the first part already answers the `interestingness` question, to save precious performance.
|
||||||
|
|
||||||
Using `feedback_and_fast` in combination with [`ConstFeedback`](https://docs.rs/libafl/*/libafl/feedbacks/enum.ConstFeedback.html#method.new), certain feedbacks can be disabled dynamically.
|
Using `feedback_and_fast` in combination with [`ConstFeedback`](https://docs.rs/libafl/*/libafl/feedbacks/enum.ConstFeedback.html#method.new), certain feedbacks can be disabled dynamically.
|
||||||
|
|
||||||
## Objectives
|
## Objectives
|
||||||
|
|
||||||
While feedbacks are commonly used to decide if an [`Input`](https://docs.rs/libafl/*/libafl/inputs/trait.Input.html) should be kept for future mutations, they serve a double-purpose, as so-called `Objective Feedbacks`.
|
While feedbacks are commonly used to decide if an [`Input`](https://docs.rs/libafl/*/libafl/inputs/trait.Input.html) should be kept for future mutations, they serve a double-purpose, as so-called `Objective Feedbacks`.
|
||||||
In this case, the `interestingness` of a feedback indicates if an `Objective` has been hit.
|
In this case, the `interestingness` of a feedback indicates, if an `Objective` has been hit.
|
||||||
Commonly, these objectives would be a crash or a timeout, but they can also be used to detect if specific parts of the program have been reached, for sanitization, or a differential fuzzing success.
|
Commonly, these would be a`crash or a timeout, but they can also be used to find specific parts of the program, for sanitization, or a differential fuzzing success.
|
||||||
Objectives use the same trait as a normal [`Feedback`](https://docs.rs/libafl/0/libafl/feedbacks/trait.Feedback.html) and the implementations can be used interchangeably.
|
|
||||||
|
|
||||||
The only difference is that `interesting` Objectives won't be mutated further, and are counted as `Solutions`, a successful fuzzing campaign.
|
|
||||||
|
@ -6,10 +6,10 @@ In our model of an abstract fuzzer, we define the Input as the internal represen
|
|||||||
|
|
||||||
In the straightforward case, the input of the program is a byte array and in fuzzers such as AFL we store and manipulate exactly these byte arrays.
|
In the straightforward case, the input of the program is a byte array and in fuzzers such as AFL we store and manipulate exactly these byte arrays.
|
||||||
|
|
||||||
But it is not always the case. A program can expect inputs that are not linear byte arrays (e.g. a sequence of syscalls forming a use case or protocol) and the fuzzer does not represent the Input in the same way that the program consumes it.
|
But it is not always the case. A program can expect inputs that are not byte arrays (e.g. a sequence of syscalls) and the fuzzer does not represent the Input in the same way that the program consumes it.
|
||||||
|
|
||||||
In case of a grammar fuzzer for instance, the Input is generally an Abstract Syntax Tree because it is a data structure that can be easily manipulated while maintaining the validity, but the program expects a byte array as input, so just before the execution, the tree is serialized to a sequence of bytes.
|
In case of a grammar fuzzer for instance, the Input is generally an Abstract Syntax Tree because it is a data structure that can be easily manipulated while maintaining the validity, but the program expects a byte array as input, so just before the execution, the tree is serialized to a sequence of bytes.
|
||||||
|
|
||||||
In the Rust code, an [`Input`](https://docs.rs/libafl/*/libafl/inputs/trait.Input.html) is a trait that can be implemented only by structures that are serializable and have only owned data as fields.
|
In the Rust code, an [`Input`](https://docs.rs/libafl/*/libafl/inputs/trait.Input.html) is a trait that can be implemented only by structures that are serializable and have only owned data as fields.
|
||||||
|
|
||||||
While most fuzzers use a normal `BytesInput`, more advanced ones use inputs that include special inputs for grammar fuzzing ([GramatronInput](https://docs.rs/libafl/*/libafl/inputs/gramatron/struct.GramatronInput.html) or `NautilusInput` on Rust nightly), as well as the token-level [EncodedInput](https://docs.rs/libafl/*/libafl/inputs/encoded/struct.EncodedInput.html).
|
While most fuzzer use a normal `BytesInput`], more advanced inputs like inputs include special inputs for grammar fuzzing ([GramatronInput](https://docs.rs/libafl/*/libafl/inputs/gramatron/struct.GramatronInput.html) or `NautilusInput` on nightly), as well as the token-level [EncodedInput](https://docs.rs/libafl/*/libafl/inputs/encoded/struct.EncodedInput.html).
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
# Mutator
|
# Mutator
|
||||||
|
|
||||||
The Mutator is an entity that takes one or more Inputs and generates a new instance of Input derived by its inputs.
|
The Mutator is an entity that takes one or more Inputs and generates a new derived one.
|
||||||
|
|
||||||
Mutators can be composed, and they are generally linked to a specific Input type.
|
Mutators can be composed, and they are generally linked to a specific Input type.
|
||||||
|
|
||||||
There can be, for instance, a Mutator that applies more than a single type of mutation to the input. Consider a generic Mutator for a byte stream, bit flip is just one of the possible mutations but not the only one, there is also, for instance, the random replacement of a byte of the copy of a chunk.
|
There can be, for instance, a Mutator that applies more than a single type of mutation on the input. Consider a generic Mutator for a byte stream, bit flip is just one of the possible mutations but not the only one, there is also, for instance, the random replacement of a byte of the copy of a chunk.
|
||||||
|
|
||||||
In LibAFL, [`Mutator`](https://docs.rs/libafl/*/libafl/mutators/trait.Mutator.html) is a trait.
|
In LibAFL, [`Mutator`](https://docs.rs/libafl/*/libafl/mutators/trait.Mutator.html) is a trait.
|
||||||
|
@ -4,8 +4,8 @@ An Observer is an entity that provides an information observed during the execut
|
|||||||
|
|
||||||
The information contained in the Observer is not preserved across executions, but it may be serialized and passed on to other nodes if an `Input` is considered `interesting`, and added to the `Corpus`.
|
The information contained in the Observer is not preserved across executions, but it may be serialized and passed on to other nodes if an `Input` is considered `interesting`, and added to the `Corpus`.
|
||||||
|
|
||||||
As an example, the coverage map, filled during the execution to report the executed edges used by fuzzers such as AFL and `HonggFuzz` can be considered an observation. Another `Observer` can collect the time spent executing a run, the program output, or a more advanced observation, like maximum stack depth at runtime.
|
As an example, the coverage map, filled during the execution to report the executed edges used by fuzzers such as AFL and `HonggFuzz` can be considered an observation. Another `Observer` can be the time spent executing a run, the program output, or more advanced observation, like maximum stack depth at runtime.
|
||||||
This information is an observation of a dynamic property of the program.
|
This information is not preserved across runs, and it is an observation of a dynamic property of the program.
|
||||||
|
|
||||||
In terms of code, in the library this entity is described by the [`Observer`](https://docs.rs/libafl/0/libafl/observers/trait.Observer.html) trait.
|
In terms of code, in the library this entity is described by the [`Observer`](https://docs.rs/libafl/0/libafl/observers/trait.Observer.html) trait.
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
# Stage
|
# Stage
|
||||||
|
|
||||||
A Stage is an entity that operates on a single Input received from the Corpus.
|
A Stage is an entity that operates on a single Input got from the Corpus.
|
||||||
|
|
||||||
For instance, a Mutational Stage, given an input of the corpus, applies a Mutator and executes the generated input one or more times. How many times this has to be done can be scheduled, AFL for instance uses a performance score of the input to choose how many times the havoc mutator should be invoked. This can depend also on other parameters, for instance, the length of the input if we want to just apply a sequential bitflip, or a fixed value.
|
For instance, a Mutational Stage, given an input of the corpus, applies a Mutator and executes the generated input one or more time. How many times this has to be done can be scheduled, AFL for instance uses a performance score of the input to choose how many times the havoc mutator should be invoked. This can depend also on other parameters, for instance, the length of the input if we want to just apply a sequential bitflip, or be a fixed value.
|
||||||
|
|
||||||
A stage can also be an analysis stage, for instance, the Colorization stage of Redqueen that aims to introduce more entropy in a testcase or the Trimming stage of AFL that aims to reduce the size of a testcase.
|
A stage can also be an analysis stage, for instance, the Colorization stage of Redqueen that aims to introduce more entropy in a testcase or the Trimming stage of AFL that aims to reduce the size of a testcase.
|
||||||
|
|
||||||
|
@ -10,6 +10,6 @@ Thinking about similar fuzzers, you can observe that most of the time the data s
|
|||||||
|
|
||||||
Beside the entities previously described, we introduce the [`Testcase`](https://docs.rs/libafl/0.6/libafl/corpus/testcase/struct.Testcase.html) and [`State`](https://docs.rs/libafl/0.6/libafl/state/struct.StdState.html) entities. The Testcase is a container for an Input stored in the Corpus and its metadata (so, in the implementation, the Corpus stores Testcases) and the State contains all the metadata that are evolved while running the fuzzer, Corpus included.
|
Beside the entities previously described, we introduce the [`Testcase`](https://docs.rs/libafl/0.6/libafl/corpus/testcase/struct.Testcase.html) and [`State`](https://docs.rs/libafl/0.6/libafl/state/struct.StdState.html) entities. The Testcase is a container for an Input stored in the Corpus and its metadata (so, in the implementation, the Corpus stores Testcases) and the State contains all the metadata that are evolved while running the fuzzer, Corpus included.
|
||||||
|
|
||||||
The State, in the implementation, contains only owned objects that are serializable, and it is serializable itself. Some fuzzers may want to serialize their state when pausing or just, when doing in-process fuzzing, serialize on crash and deserialize in the new process to continue to fuzz with all the metadata preserved.
|
The State, in the implementation, contains only owned objects that are serializable, and it is serializable itself. Some fuzzers may want to serialize its state when pausing or just, when doing in-process fuzzing, serialize on crash and deserialize in the new process to continue to fuzz with all the metadata preserved.
|
||||||
|
|
||||||
Additionally, we group the entities that are "actions", like the `CorpusScheduler` and the `Feedbacks`, in a common place, the [`Fuzzer'](https://docs.rs/libafl/*/libafl/fuzzer/struct.StdFuzzer.html).
|
Additionally, we group the entities that are "actions", like the `CorpusScheduler` and the `Feedbacks`, in a common place, the [`Fuzzer'](https://docs.rs/libafl/*/libafl/fuzzer/struct.StdFuzzer.html).
|
||||||
|
@ -5,10 +5,10 @@ A metadata in LibAFL is a self-contained structure that holds associated data to
|
|||||||
In terms of code, a metadata can be defined as a Rust struct registered in the SerdeAny register.
|
In terms of code, a metadata can be defined as a Rust struct registered in the SerdeAny register.
|
||||||
|
|
||||||
```rust
|
```rust
|
||||||
# extern crate libafl_bolts;
|
extern crate libafl;
|
||||||
# extern crate serde;
|
extern crate serde;
|
||||||
|
|
||||||
use libafl_bolts::SerdeAny;
|
use libafl::SerdeAny;
|
||||||
use serde::{Serialize, Deserialize};
|
use serde::{Serialize, Deserialize};
|
||||||
|
|
||||||
#[derive(Debug, Serialize, Deserialize, SerdeAny)]
|
#[derive(Debug, Serialize, Deserialize, SerdeAny)]
|
||||||
@ -19,7 +19,7 @@ pub struct MyMetadata {
|
|||||||
|
|
||||||
The struct must be static, so it cannot hold references to borrowed objects.
|
The struct must be static, so it cannot hold references to borrowed objects.
|
||||||
|
|
||||||
As an alternative to `derive(SerdeAny)` which is a proc-macro in `libafl_derive` the user can use `libafl_bolts::impl_serdeany!(MyMetadata);`.
|
As an alternative to `derive(SerdeAny)` that is a proc-macro in `libafl_derive` the user can use `libafl::impl_serdeany!(MyMetadata);`.
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
@ -1,27 +0,0 @@
|
|||||||
# Migrating from LibAFL <0.11 to 0.11
|
|
||||||
|
|
||||||
We moved the old `libafl::bolts` module to its own crate called `libafl_bolts`.
|
|
||||||
For this, imports for types in LibAFL bolts have changed in version 0.11, everything else should remain the same.
|
|
||||||
|
|
||||||
## Reasons for This Change
|
|
||||||
|
|
||||||
With the change we can now use a lot of low-level features of LibAFL for projects that are unrelated to fuzzing, or just completely different to LibAFL.
|
|
||||||
Some cross-platform things in bolts include
|
|
||||||
|
|
||||||
* SerdeAnyMap: a map that stores and retrieves elements by type and is serializable and deserializable
|
|
||||||
* ShMem: A cross-platform (Windows, Linux, Android, MacOS) shared memory implementation
|
|
||||||
* LLMP: A fast, lock-free IPC mechanism via SharedMap
|
|
||||||
* Core_affinity: A maintained version of `core_affinity` that can be used to get core information and bind processes to cores
|
|
||||||
* Rands: Fast random number generators for fuzzing (like [RomuRand](http://www.romu-random.org/))
|
|
||||||
* MiniBSOD: get and print information about the current process state including important registers.
|
|
||||||
* Tuples: Haskel-like compile-time tuple lists
|
|
||||||
* Os: OS specific stuff like signal handling, windows exception handling, pipes, and helpers for `fork`
|
|
||||||
|
|
||||||
## What changed
|
|
||||||
|
|
||||||
You will need to move all `libafl::bolts::` imports to `libafl_bolts:::` and add the crate dependency in your Cargo.toml (and specify feature flags there).
|
|
||||||
As only exception, the `libafl::bolts::launcher::Launcher` has moved to `libafl::events::launcher::Launcher` since it has fuzzer and `EventManager` specific code.
|
|
||||||
If you are using `prelude`, you may need to also ad `libafl_bolts::prelude`.
|
|
||||||
|
|
||||||
That's it.
|
|
||||||
Enjoy using `libafl_bolts` in other projects.
|
|
@ -75,7 +75,7 @@ where
|
|||||||
```
|
```
|
||||||
|
|
||||||
The executor is constrained to `EM` and `Z`, with each of their respective states being constrained to `E`'s state. It
|
The executor is constrained to `EM` and `Z`, with each of their respective states being constrained to `E`'s state. It
|
||||||
is no longer necessary to explicitly define a generic for the input type, the state type, or the generic type, as these
|
is no longer necessary to explicitly defined a generic for the input type, the state type, or the generic type, as these
|
||||||
are all present as associated types for `E`. Additionally, we don't even need to specify any details about the observers
|
are all present as associated types for `E`. Additionally, we don't even need to specify any details about the observers
|
||||||
(`OT` in the previous version) as the type does not need to be constrained and is not shared by other types.
|
(`OT` in the previous version) as the type does not need to be constrained and is not shared by other types.
|
||||||
|
|
||||||
@ -101,7 +101,7 @@ See `fuzzers/` for examples of these changes.
|
|||||||
If you implemented a Mutator, Executor, State, or another kind of component, you must update your implementation. The
|
If you implemented a Mutator, Executor, State, or another kind of component, you must update your implementation. The
|
||||||
main changes to the API are in the use of "Uses*" for associated types.
|
main changes to the API are in the use of "Uses*" for associated types.
|
||||||
|
|
||||||
In many scenarios, Input, Observer, and State generics have been moved into traits with associated types (namely,
|
In many scenarios, Input, Observers, and State generics have been moved into traits with associated types (namely,
|
||||||
"UsesInput", "UsesObservers", and "UsesState". These traits are required for many existing traits now and are very
|
"UsesInput", "UsesObservers", and "UsesState". These traits are required for many existing traits now and are very
|
||||||
straightforward to implement. In a majority of cases, you will have generics on your custom implementation or a fixed
|
straightforward to implement. In a majority of cases, you will have generics on your custom implementation or a fixed
|
||||||
type to implement this with. Thankfully, Rust will let you know when you need to implement this type.
|
type to implement this with. Thankfully, Rust will let you know when you need to implement this type.
|
||||||
@ -127,7 +127,7 @@ where
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
After 0.9, all `Corpus` implementations are required to implement `UsesInput`. Also `Corpus` no longer has a generic for
|
After 0.9, all `Corpus` implementations are required to implement `UsesInput` and `Corpus` no longer has a generic for
|
||||||
the input type (as it is now provided by the UsesInput impl). The migrated implementation is shown below:
|
the input type (as it is now provided by the UsesInput impl). The migrated implementation is shown below:
|
||||||
|
|
||||||
```rust,ignore
|
```rust,ignore
|
||||||
@ -160,26 +160,3 @@ Now, `Corpus` cannot be accidentally implemented for another type other than tha
|
|||||||
is fixed to the associated type for `UsesInput`.
|
is fixed to the associated type for `UsesInput`.
|
||||||
|
|
||||||
A more complex example of migration can be found in the "Reasons for this change" section of this document.
|
A more complex example of migration can be found in the "Reasons for this change" section of this document.
|
||||||
|
|
||||||
## Observer Changes
|
|
||||||
|
|
||||||
Additionally, we changed the Observer API, as the API in 0.8 led to undefined behavior.
|
|
||||||
At the same time, we used the change to simplify the common case: creating an `StdMapObserver`
|
|
||||||
from libafl_target's `EDGES_MAP`.
|
|
||||||
In the future, instead of using:
|
|
||||||
|
|
||||||
```rust,ignore
|
|
||||||
let edges = unsafe { &mut EDGES_MAP[0..MAX_EDGES_NUM] };
|
|
||||||
let edges_observer = StdMapObserver::new("edges", edges);
|
|
||||||
```
|
|
||||||
|
|
||||||
creating the edges observer is as simple as using the new `std_edges_map_observer` function.
|
|
||||||
|
|
||||||
```rust,ignore
|
|
||||||
let edges_observer = unsafe { std_edges_map_observer("edges") };
|
|
||||||
```
|
|
||||||
|
|
||||||
Alternatively, `StdMapObserver::new` will still work, but now the whole method is marked as `unsafe`.
|
|
||||||
The reason is that the caller has to make sure `EDGES_MAP` (or other maps) are not moved or freed in memory,
|
|
||||||
for the lifetime of the `MapObserver`.
|
|
||||||
This means that the buffer should either be `static` or `Pin`.
|
|
||||||
|
@ -6,7 +6,7 @@ LibAFL, as most of the Rust projects, can be built using `cargo` from the root d
|
|||||||
$ cargo build --release
|
$ cargo build --release
|
||||||
```
|
```
|
||||||
|
|
||||||
Note that the `--release` flag is optional for development, but you need to add it to do fuzzing at a decent speed.
|
Note that the `--release` flag is optional for development, but you needed to add it to fuzzing at a decent speed.
|
||||||
Slowdowns of 10x or more are not uncommon for Debug builds.
|
Slowdowns of 10x or more are not uncommon for Debug builds.
|
||||||
|
|
||||||
The LibAFL repository is composed of multiple crates.
|
The LibAFL repository is composed of multiple crates.
|
||||||
|
@ -10,7 +10,7 @@ libafl = { version = "*" }
|
|||||||
|
|
||||||
## Crate List
|
## Crate List
|
||||||
|
|
||||||
For LibAFL, each crate has its self-contained purpose, and the user may not need to use all of them in their project.
|
For LibAFL, each crate has its self-contained purpose, and the user may not need to use all of them in its project.
|
||||||
Following the naming convention of the folders in the project's root, they are:
|
Following the naming convention of the folders in the project's root, they are:
|
||||||
|
|
||||||
### [`libafl`](https://github.com/AFLplusplus/LibAFL/tree/main/libafl)
|
### [`libafl`](https://github.com/AFLplusplus/LibAFL/tree/main/libafl)
|
||||||
@ -31,21 +31,6 @@ You can choose the features by using `features = ["feature1", "feature2", ...]`
|
|||||||
Out of this list, by default, `std`, `derive`, and `rand_trait` are already set.
|
Out of this list, by default, `std`, `derive`, and `rand_trait` are already set.
|
||||||
You can choose to disable them by setting `default-features = false` in your `Cargo.toml`.
|
You can choose to disable them by setting `default-features = false` in your `Cargo.toml`.
|
||||||
|
|
||||||
## [`libafl_bolts](https://github.com/AFLplusplus/LibAFL/tree/main/libafl)
|
|
||||||
|
|
||||||
The `libafl_bolts` create is a minimal tool shed filled with useful low-level rust features, not necessarily related to fuzzers.
|
|
||||||
In it, you'll find highlights like:
|
|
||||||
|
|
||||||
- `core_affinity` to bind the current process to cores
|
|
||||||
- `SerdeAnyMap` a map that can store typed values in a serializable fashion
|
|
||||||
- `minibsod` to dump the current process state
|
|
||||||
- `LLMP`, "low level message passing", a lock-free IPC mechanism
|
|
||||||
- `Rand`, different fast (non-cryptographically secure) RNG implementations like RomuRand
|
|
||||||
- `ShMem`, a platform independent shard memory implementation
|
|
||||||
- `Tuples`, a compiletime tuple implementation
|
|
||||||
|
|
||||||
... and much more.
|
|
||||||
|
|
||||||
### libafl_sugar
|
### libafl_sugar
|
||||||
|
|
||||||
The sugar crate abstracts away most of the complexity of LibAFL's API.
|
The sugar crate abstracts away most of the complexity of LibAFL's API.
|
||||||
@ -67,13 +52,13 @@ To enable and disable features at compile-time, the features are enabled and dis
|
|||||||
Currently, the supported flags are:
|
Currently, the supported flags are:
|
||||||
|
|
||||||
- `pcguard_edges` defines the SanitizerCoverage trace-pc-guard hooks to track the executed edges in a map.
|
- `pcguard_edges` defines the SanitizerCoverage trace-pc-guard hooks to track the executed edges in a map.
|
||||||
- `pcguard_hitcounts` defines the SanitizerCoverage trace-pc-guard hooks to track the executed edges with the hitcounts (like AFL) in a map.
|
- `pcguard_hitcounts defines the SanitizerCoverage trace-pc-guard hooks to track the executed edges with the hitcounts (like AFL) in a map.
|
||||||
- `libfuzzer` exposes a compatibility layer with libFuzzer style harnesses.
|
- `libfuzzer` exposes a compatibility layer with libFuzzer style harnesses.
|
||||||
- `value_profile` defines the SanitizerCoverage trace-cmp hooks to track the matching bits of each comparison in a map.
|
- `value_profile` defines the SanitizerCoverage trace-cmp hooks to track the matching bits of each comparison in a map.
|
||||||
|
|
||||||
### libafl_cc
|
### libafl_cc
|
||||||
|
|
||||||
This is a library that provides utils to wrap compilers and create source-level fuzzers.
|
This is a library that provides utils wrap compilers and create source-level fuzzers.
|
||||||
|
|
||||||
At the moment, only the Clang compiler is supported.
|
At the moment, only the Clang compiler is supported.
|
||||||
To understand it deeper, look through the tutorials and examples.
|
To understand it deeper, look through the tutorials and examples.
|
||||||
|
@ -11,15 +11,15 @@ The first step is to download LibAFL and all dependencies that are not automatic
|
|||||||
> previous command. Additionally, PowerShell-specific examples will use `>`
|
> previous command. Additionally, PowerShell-specific examples will use `>`
|
||||||
> rather than `$`.
|
> rather than `$`.
|
||||||
|
|
||||||
While technically you do not need to install LibAFL, but can use the version from crates.io directly, we do recommend to download or clone the GitHub version.
|
While you technically do not need to install LibAFL, but can use the version from crates.io directly, we do recommend to download or clone the GitHub version.
|
||||||
This gets you the example fuzzers, additional utilities, and latest patches.
|
This gets you the example fuzzers, additional utilities, and latest patches.
|
||||||
The easiest way to do this is to use `git`.
|
The easiest way to do this is to use `git`.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
$ git clone https://github.com/AFLplusplus/LibAFL.git
|
$ git clone git@github.com:AFLplusplus/LibAFL.git
|
||||||
```
|
```
|
||||||
|
|
||||||
Alternatively, on a UNIX-like machine, you can download a compressed archive and extract it with:
|
You can alternatively, on a UNIX-like machine, download a compressed archive and extract it with:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
wget https://github.com/AFLplusplus/LibAFL/archive/main.tar.gz
|
wget https://github.com/AFLplusplus/LibAFL/archive/main.tar.gz
|
||||||
@ -31,7 +31,7 @@ $ ls LibAFL-main # this is the extracted folder
|
|||||||
## Clang installation
|
## Clang installation
|
||||||
|
|
||||||
One of the external dependencies of LibAFL is the Clang C/C++ compiler.
|
One of the external dependencies of LibAFL is the Clang C/C++ compiler.
|
||||||
While most of the code is written in pure Rust, we still need a C compiler because stable Rust still does not support features that some parts of LibAFL may need, such as weak linking, and LLVM builtins linking.
|
While most of the code is in pure Rust, we still need a C compiler because stable Rust still does not support features that some parts of LibAFL may need, such as weak linking, and LLVM builtins linking.
|
||||||
For these parts, we use C to expose the missing functionalities to our Rust codebase.
|
For these parts, we use C to expose the missing functionalities to our Rust codebase.
|
||||||
|
|
||||||
In addition, if you want to perform source-level fuzz testing of C/C++ applications,
|
In addition, if you want to perform source-level fuzz testing of C/C++ applications,
|
||||||
|
@ -4,10 +4,10 @@ Fuzzers are important tools for security researchers and developers alike.
|
|||||||
A wide range of state-of-the-art tools like [AFL++](https://github.com/AFLplusplus/AFLplusplus), [libFuzzer](https://llvm.org/docs/LibFuzzer.html) or [honggfuzz](https://github.com/google/honggfuzz) are available to users. They do their job in a very effective way, finding thousands of bugs.
|
A wide range of state-of-the-art tools like [AFL++](https://github.com/AFLplusplus/AFLplusplus), [libFuzzer](https://llvm.org/docs/LibFuzzer.html) or [honggfuzz](https://github.com/google/honggfuzz) are available to users. They do their job in a very effective way, finding thousands of bugs.
|
||||||
|
|
||||||
From the perspective of a power user, however, these tools are limited.
|
From the perspective of a power user, however, these tools are limited.
|
||||||
Their designs do not treat extensibility as a first-class citizen.
|
Their design does not treat extensibility as a first-class citizen.
|
||||||
Usually, a fuzzer developer can choose to either fork one of these existing tools, or to create a new fuzzer from scratch.
|
Usually, a fuzzer developer can choose to either fork one of these existing tools, or to create a new fuzzer from scratch.
|
||||||
In any case, researchers end up with tons of fuzzers, all of which are incompatible with each other.
|
In any case, researchers end up with tons of fuzzers, all of which are incompatible with each other.
|
||||||
Their outstanding features cannot just be combined for new projects.
|
Their outstanding features can not just be combined for new projects.
|
||||||
By reinventing the wheel over and over, we may completely miss out on features that are complex to reimplement.
|
By reinventing the wheel over and over, we may completely miss out on features that are complex to reimplement.
|
||||||
|
|
||||||
To tackle this issue, we created LibAFL, a library that is _not just another fuzzer_, but a collection of reusable pieces for individual fuzzers.
|
To tackle this issue, we created LibAFL, a library that is _not just another fuzzer_, but a collection of reusable pieces for individual fuzzers.
|
||||||
@ -24,11 +24,11 @@ Some highlight features currently include:
|
|||||||
This means it does not require a specific OS-dependent runtime to function.
|
This means it does not require a specific OS-dependent runtime to function.
|
||||||
Define an allocator and a way to map pages, and you are good to inject LibAFL in obscure targets like embedded devices, hypervisors, or maybe even WebAssembly?
|
Define an allocator and a way to map pages, and you are good to inject LibAFL in obscure targets like embedded devices, hypervisors, or maybe even WebAssembly?
|
||||||
- `adaptable`: Given years of experience fine-tuning *AFLplusplus* and our academic fuzzing background, we could incorporate recent fuzzing trends into LibAFL's design and make it future-proof.
|
- `adaptable`: Given years of experience fine-tuning *AFLplusplus* and our academic fuzzing background, we could incorporate recent fuzzing trends into LibAFL's design and make it future-proof.
|
||||||
To give an example, as opposed to old-school fuzzers, a `BytesInput` is just one of the potential forms of inputs:
|
To give an example, as opposed to old-skool fuzzers, a `BytesInput` is just one of the potential forms of inputs:
|
||||||
feel free to use and mutate an Abstract Syntax Tree instead, for structured fuzzing.
|
feel free to use and mutate an Abstract Syntax Tree instead, for structured fuzzing.
|
||||||
- `scalable`: As part of LibAFL, we developed `Low Level Message Passing`, `LLMP` for short, which allows LibAFL to scale almost linearly over cores. That is, if you chose to use this feature - it is your fuzzer, after all.
|
- `scalable`: As part of LibAFL, we developed `Low Level Message Passing`, `LLMP` for short, which allows LibAFL to scale almost linearly over cores. That is, if you chose to use this feature - it is your fuzzer, after all.
|
||||||
Scaling to multiple machines over TCP is also possible, using LLMP's `broker2broker` feature.
|
Scaling to multiple machines over TCP is also possible, using LLMP's `broker2broker` feature.
|
||||||
- `fast`: We do everything we can at compile time so that the runtime overhead is as minimal as it can get.
|
- `fast`: We do everything we can at compile time so that the runtime overhead is as minimal as it can get.
|
||||||
- `bring your own target`: We support binary-only modes, like (full-system) QEMU-Mode and Frida-Mode with ASan and CmpLog, as well as multiple compilation passes for sourced-based instrumentation.
|
- `bring your own target`: We support binary-only modes, like QEMU-Mode and Frida-Mode with ASAN and CmpLog, as well as multiple compilation passes for sourced-based instrumentation.
|
||||||
Of course, we also support custom instrumentation, as you can see in the Python example based on Google's Atheris.
|
Of course, we also support custom instrumentation, as you can see in the Python example based on Google's Atheris.
|
||||||
- `usable`: This one is on you to decide. Dig right in!
|
- `usable`: This one is on you to decide. Dig right in!
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
*by Andrea Fioraldi and Dominik Maier*
|
*by Andrea Fioraldi and Dominik Maier*
|
||||||
|
|
||||||
Welcome to LibAFL, the Advanced Fuzzing Library.
|
Welcome to LibAFL, the Advanced Fuzzing Library.
|
||||||
This book shall be a gentle introduction to the library.
|
This book shall be a gentle introduction into the library.
|
||||||
|
|
||||||
This version of the LibAFL book is coupled with the release 1.0 beta of the library.
|
This version of the LibAFL book is coupled with the release 1.0 beta of the library.
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
Configurations for individual fuzzer nodes are relevant for multi node fuzzing.
|
Configurations for individual fuzzer nodes are relevant for multi node fuzzing.
|
||||||
The chapter describes how to run nodes with different configurations
|
The chapter describes how to run nodes with different configurations
|
||||||
in one fuzzing cluster.
|
in one fuzzing cluster.
|
||||||
This allows, for example, a node compiled with ASan, to know that it needs to rerun new testcases for a node without ASan, while the same binary/configuration does not.
|
This allows, for example, a node compiled with ASAN, to know that it needs to rerun new testcases for a node without ASAN, while the same binary/configuration does not.
|
||||||
|
|
||||||
Fuzzers with the same configuration can exchange Observers for new testcases and reuse them without rerunning the input.
|
Fuzzers with the same configuration can exchange Observers for new testcases and reuse them without rerunning the input.
|
||||||
A different configuration indicates, that only the raw input can be exchanged, it must be rerun on the other node to capture relevant observations.
|
A different configuration indicates, that only the raw input can be exchanged, it must be rerun on the other node to capture relevant observations.
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
# Message Passing
|
# Message Passing
|
||||||
|
|
||||||
LibAFL offers a standard mechanism for message passing between processes and machines with a low overhead.
|
LibAFL offers a standard mechanism for message passing over processes and machines with a low overhead.
|
||||||
We use message passing to inform the other connected clients/fuzzers/nodes about new testcases, metadata, and statistics about the current run.
|
We use message passing to inform the other connected clients/fuzzers/nodes about new testcases, metadata, and statistics about the current run.
|
||||||
Depending on individual needs, LibAFL can also write testcase contents to disk, while still using events to notify other fuzzers, using the `CachedOnDiskCorpus` or similar.
|
Depending on individual needs, LibAFL can also write testcase contents to disk, while still using events to notify other fuzzers, using an `OnDiskCorpus`.
|
||||||
|
|
||||||
In our tests, message passing scales very well to share new testcases and metadata between multiple running fuzzer instances for multi-core fuzzing.
|
In our tests, message passing scales very well to share new testcases and metadata between multiple running fuzzer instances for multi-core fuzzing.
|
||||||
Specifically, it scales _a lot_ better than using memory locks on a shared corpus, and _a lot_ better than sharing the testcases via the filesystem, as AFL traditionally does.
|
Specifically, it scales _a lot_ better than using memory locks on a shared corpus, and _a lot_ better than sharing the testcases via the filesystem, as AFL traditionally does.
|
||||||
@ -12,7 +12,7 @@ The `EventManager` interface is used to send Events over the wire using `Low Lev
|
|||||||
|
|
||||||
## Low Level Message Passing (LLMP)
|
## Low Level Message Passing (LLMP)
|
||||||
|
|
||||||
LibAFL comes with a reasonably lock-free message passing mechanism that scales well across cores and, using its _broker2broker_ mechanism, even to connected machines via TCP.
|
LibAFL comes with a reasonably lock-free message passing mechanism that scales well across cores and, using its *broker2broker* mechanism, even to connected machines via TCP.
|
||||||
Most example fuzzers use this mechanism, and it is the best `EventManager` if you want to fuzz on more than a single core.
|
Most example fuzzers use this mechanism, and it is the best `EventManager` if you want to fuzz on more than a single core.
|
||||||
In the following, we will describe the inner workings of `LLMP`.
|
In the following, we will describe the inner workings of `LLMP`.
|
||||||
|
|
||||||
@ -28,12 +28,12 @@ Shared maps, called shared memory for the sake of not colliding with Rust's `map
|
|||||||
Each client, usually a fuzzer trying to share stats and new testcases, maps an outgoing `ShMem` map.
|
Each client, usually a fuzzer trying to share stats and new testcases, maps an outgoing `ShMem` map.
|
||||||
With very few exceptions, only this client writes to this map, therefore, we do not run in race conditions and can live without locks.
|
With very few exceptions, only this client writes to this map, therefore, we do not run in race conditions and can live without locks.
|
||||||
The broker reads from all client's `ShMem` maps.
|
The broker reads from all client's `ShMem` maps.
|
||||||
It periodically checks all incoming client maps and then forwards new messages to its outgoing broadcast-`ShMem`, mapped by all connected clients.
|
It checks all incoming client maps periodically and then forwards new messages to its outgoing broadcast-`ShMem`, mapped by all connected clients.
|
||||||
|
|
||||||
To send new messages, a client places a new message at the end of their shared memory and then updates a static field to notify the broker.
|
To send new messages, a client places a new message at the end of their shared memory and then updates a static field to notify the broker.
|
||||||
Once the outgoing map is full, the sender allocates a new `ShMem` using the respective `ShMemProvider`.
|
Once the outgoing map is full, the sender allocates a new `ShMem` using the respective `ShMemProvider`.
|
||||||
It then sends the information needed to map the newly-allocated page in connected processes to the old page, using an end of page (`EOP`) message.
|
It then sends the information needed to map the newly-allocated page in connected processes to the old page, using an end of page (`EOP`) message.
|
||||||
Once the receiver maps the new page, it flags it as safe for unmapping by the sending process (to avoid race conditions if we have more than a single EOP in a short time), and then continues to read from the new `ShMem`.
|
Once the receiver maps the new page, flags it as safe for unmapping from the sending process (to avoid race conditions if we have more than a single EOP in a short time), and then continues to read from the new `ShMem`.
|
||||||
|
|
||||||
The schema for client's maps to the broker is as follows:
|
The schema for client's maps to the broker is as follows:
|
||||||
|
|
||||||
@ -54,10 +54,10 @@ After the broker received a new message from clientN, (`clientN_out->current_id
|
|||||||
|
|
||||||
The clients periodically, for example after finishing `n` mutations, check for new incoming messages by checking if (`current_broadcast_map->current_id != last_message->message_id`).
|
The clients periodically, for example after finishing `n` mutations, check for new incoming messages by checking if (`current_broadcast_map->current_id != last_message->message_id`).
|
||||||
While the broker uses the same EOP mechanism to map new `ShMem`s for its outgoing map, it never unmaps old pages.
|
While the broker uses the same EOP mechanism to map new `ShMem`s for its outgoing map, it never unmaps old pages.
|
||||||
This additional memory resources serve a good purpose: by keeping all broadcast pages around, we make sure that new clients can join in on a fuzzing campaign at a later point in time.
|
This additional memory overhead serves a good purpose: by keeping all broadcast pages around, we make sure that new clients can join in on a fuzzing campaign at a later point in time
|
||||||
They just need to re-read all broadcasted messages from start to finish.
|
They just need to re-read all broadcasted messages from start to finish.
|
||||||
|
|
||||||
So the outgoing messages flow is like this over the outgoing broadcast `Shmem`:
|
So the outgoing messages flow like this over the outgoing broadcast `Shmem`:
|
||||||
|
|
||||||
```text
|
```text
|
||||||
[broker]
|
[broker]
|
||||||
|
@ -4,18 +4,18 @@ Multiple fuzzer instances can be spawned using different ways.
|
|||||||
|
|
||||||
## Manually, via a TCP port
|
## Manually, via a TCP port
|
||||||
|
|
||||||
The straightforward way to do Multi-Threading is to use the [`LlmpRestartingEventManager`](https://docs.rs/libafl/latest/libafl/events/llmp/struct.LlmpRestartingEventManager.html), specifically to use [`setup_restarting_mgr_std`](https://docs.rs/libafl/latest/libafl/events/llmp/fn.setup_restarting_mgr_std.html).
|
The straightforward way to do Multi-Threading is to use the `LlmpRestartingEventManager`, specifically to use `setup_restarting_mgr_std`.
|
||||||
It abstracts away all the pesky details about restarts on crash handling (for in-memory fuzzers) and multi-threading.
|
It abstracts away all the pesky details about restarts on crash handling (for in-memory fuzzers) and multi-threading.
|
||||||
With it, every instance you launch manually tries to connect to a TCP port on the local machine.
|
With it, every instance you launch manually tries to connect to a TCP port on the local machine.
|
||||||
|
|
||||||
If the port is not yet bound, this instance becomes the broker, binding itself to the port to await new clients.
|
If the port is not yet bound, this instance becomes the broker, itself binding to the port to await new clients.
|
||||||
|
|
||||||
If the port is already bound, the EventManager will try to connect to it.
|
If the port is already bound, the EventManager will try to connect to it.
|
||||||
The instance becomes a client and can now communicate with all other nodes.
|
The instance becomes a client and can now communicate with all other nodes.
|
||||||
|
|
||||||
Launching nodes manually has the benefit that you can have multiple nodes with different configurations, such as clients fuzzing with and without `ASan``.
|
Launching nodes manually has the benefit that you can have multiple nodes with different configurations, such as clients fuzzing with and without ASAN.
|
||||||
|
|
||||||
While it's called "restarting" manager, it uses `fork` on Unix-like operating systems as optimization and only actually restarts from scratch on Windows.
|
While it's called "restarting" manager, it uses `fork` on Unix operating systems as optimization and only actually restarts from scratch on Windows.
|
||||||
|
|
||||||
|
|
||||||
## Automated, with Launcher
|
## Automated, with Launcher
|
||||||
@ -23,7 +23,7 @@ While it's called "restarting" manager, it uses `fork` on Unix-like operating sy
|
|||||||
The Launcher is the lazy way to do multiprocessing.
|
The Launcher is the lazy way to do multiprocessing.
|
||||||
You can use the Launcher builder to create a fuzzer that spawns multiple nodes with one click, all using restarting event managers and the same configuration.
|
You can use the Launcher builder to create a fuzzer that spawns multiple nodes with one click, all using restarting event managers and the same configuration.
|
||||||
|
|
||||||
To use launcher, first you need to write an anonymous function `let mut run_client = |state: Option<_>, mut mgr, _core_id|{}`, which uses three parameters to create an individual fuzzer. Then you can specify the `shmem_provider`,`broker_port`,`monitor`,`cores` and other stuff through `Launcher::builder()`:
|
To use launcher, first you need to write an anonymous function `let mut run_client = |state: Option<_>, mut mgr, _core_id|{}`, which uses three parameters to create individual fuzzer. Then you can specify the `shmem_provider`,`broker_port`,`monitor`,`cores` and other stuff through `Launcher::builder()`:
|
||||||
|
|
||||||
```rust,ignore
|
```rust,ignore
|
||||||
Launcher::builder()
|
Launcher::builder()
|
||||||
@ -42,17 +42,13 @@ To use launcher, first you need to write an anonymous function `let mut run_clie
|
|||||||
This first starts a broker, then spawns `n` clients, according to the value passed to `cores`.
|
This first starts a broker, then spawns `n` clients, according to the value passed to `cores`.
|
||||||
The value is a string indicating the cores to bind to, for example, `0,2,5` or `0-3`.
|
The value is a string indicating the cores to bind to, for example, `0,2,5` or `0-3`.
|
||||||
For each client, `run_client` will be called.
|
For each client, `run_client` will be called.
|
||||||
If the launcher uses `fork`, it will hide child output, unless the settings indicate otherwise, or the `LIBAFL_DEBUG_OUTPUT` env variable is set.
|
On Windows, the Launcher will restart each client, while on Unix, it will use `fork`.
|
||||||
On Windows, the Launcher will restart each client, while on Unix-alikes, it will use `fork`.
|
|
||||||
|
|
||||||
Advanced use-cases:
|
Advanced use-cases:
|
||||||
|
|
||||||
1. To connect multiple nodes together via TCP, you can use the `remote_broker_addr`. this requires the `llmp_bind_public` compile-time feature for `LibAFL`.
|
1. To connect multiple nodes together via TCP, you can use the `remote_broker_addr`. this requires the `llmp_bind_public` compile-time feature for `LibAFL`.
|
||||||
2. To use multiple launchers for individual configurations, you can set `spawn_broker` to `false` on all instances but one.
|
2. To use multiple launchers for individual configurations, you can set `spawn_broker` to `false` on all but one.
|
||||||
3. Launcher will not select the cores automatically, so you need to specify the `cores` that you want.
|
3. Launcher will not select the cores automatically, so you need to specify the `cores` that you want.
|
||||||
4. On `Unix`, you can chose between a forking and non-forking version of Launcher by setting the `fork` feature in LibAFL. Some targets may not like forking, but it is faster than restarting processes from scratch. Windows will never fork.
|
|
||||||
5. For simple debugging, first set the `LIBAFL_DEBUG_OUTPUT` env variable to see if a child process printed anything.
|
|
||||||
6. For further debugging of fuzzer failures, it may make sense to replace `Launcher` temporarily with a [`SimpleEventManager`](https://docs.rs/libafl/latest/libafl/events/simple/struct.SimpleEventManager.html#method.new) and call your harness fn (`run_client(None, mgr, 0);`) directly, so that fuzzing runs in the same thread and is easier to debug, before moving back to `Launcher` after the bugfix.
|
|
||||||
|
|
||||||
For more examples, you can check out `qemu_launcher` and `libfuzzer_libpng_launcher` in [`./fuzzers/`](https://github.com/AFLplusplus/LibAFL/tree/main/fuzzers).
|
For more examples, you can check out `qemu_launcher` and `libfuzzer_libpng_launcher` in [`./fuzzers/`](https://github.com/AFLplusplus/LibAFL/tree/main/fuzzers).
|
||||||
|
|
||||||
|
@ -2,4 +2,4 @@
|
|||||||
|
|
||||||
In this chapter, we will build a custom fuzzer using the [Lain](https://github.com/microsoft/lain) mutator in Rust.
|
In this chapter, we will build a custom fuzzer using the [Lain](https://github.com/microsoft/lain) mutator in Rust.
|
||||||
|
|
||||||
This tutorial will introduce you to writing extensions to LibAFL like Feedbacks and Testcase's metadata.
|
This tutorial will introduce you in writing extensions to LibAFL like Feedbacks and Testcase's metadata.
|
||||||
|
@ -33,10 +33,9 @@ debug = true
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libafl = { path = "../../libafl/" }
|
libafl = { path = "../../libafl/" }
|
||||||
libafl_bolts = { path = "../../libafl_bolts/" }
|
|
||||||
libafl_qemu = { path = "../../libafl_qemu/", features = ["arm", "systemmode"] }
|
libafl_qemu = { path = "../../libafl_qemu/", features = ["arm", "systemmode"] }
|
||||||
serde = { version = "1.0", default-features = false, features = ["alloc"] } # serialization lib
|
serde = { version = "1.0", default-features = false, features = ["alloc"] } # serialization lib
|
||||||
hashbrown = { version = "0.14.0", features = ["serde"] } # A faster hashmap, nostd compatible
|
hashbrown = { version = "0.12", features = ["serde", "ahash-compile-time-rng"] } # A faster hashmap, nostd compatible
|
||||||
petgraph = { version="0.6.0", features = ["serde-1"] }
|
petgraph = { version="0.6.0", features = ["serde-1"] }
|
||||||
ron = "0.7" # write serialized data - including hashmaps
|
ron = "0.7" # write serialized data - including hashmaps
|
||||||
rand = "0.5"
|
rand = "0.5"
|
||||||
|
@ -1,22 +1,21 @@
|
|||||||
use hashbrown::{hash_map::Entry, HashMap};
|
use hashbrown::{hash_map::Entry, HashMap};
|
||||||
use libafl_bolts::{
|
|
||||||
current_nanos,
|
|
||||||
rands::StdRand,
|
|
||||||
tuples::{tuple_list,MatchName},
|
|
||||||
impl_serdeany,
|
|
||||||
Named,
|
|
||||||
};
|
|
||||||
use libafl::{
|
use libafl::{
|
||||||
|
bolts::{
|
||||||
|
current_nanos,
|
||||||
|
rands::StdRand,
|
||||||
|
tuples::{tuple_list},
|
||||||
|
},
|
||||||
executors::{ExitKind},
|
executors::{ExitKind},
|
||||||
fuzzer::{StdFuzzer},
|
fuzzer::{StdFuzzer},
|
||||||
inputs::{BytesInput, HasTargetBytes},
|
inputs::{BytesInput, HasTargetBytes},
|
||||||
observers::{Observer,VariableMapObserver},
|
observers::{Observer,VariableMapObserver},
|
||||||
state::{StdState, HasNamedMetadata},
|
state::{StdState, HasNamedMetadata},
|
||||||
Error,
|
Error,
|
||||||
observers::ObserversTuple, prelude::UsesInput,
|
observers::ObserversTuple, prelude::UsesInput, impl_serdeany,
|
||||||
};
|
};
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use std::{cell::UnsafeCell, cmp::max, env, fs::OpenOptions, io::Write, time::Instant};
|
use std::{cell::UnsafeCell, cmp::max, env, fs::OpenOptions, io::Write, time::Instant};
|
||||||
|
use libafl::bolts::tuples::Named;
|
||||||
|
|
||||||
use libafl_qemu::{
|
use libafl_qemu::{
|
||||||
emu,
|
emu,
|
||||||
@ -34,6 +33,7 @@ use libafl::corpus::testcase::Testcase;
|
|||||||
use core::{fmt::Debug, time::Duration};
|
use core::{fmt::Debug, time::Duration};
|
||||||
// use libafl::feedbacks::FeedbackState;
|
// use libafl::feedbacks::FeedbackState;
|
||||||
// use libafl::state::HasFeedbackStates;
|
// use libafl::state::HasFeedbackStates;
|
||||||
|
use libafl::bolts::tuples::MatchName;
|
||||||
use std::time::{SystemTime, UNIX_EPOCH};
|
use std::time::{SystemTime, UNIX_EPOCH};
|
||||||
|
|
||||||
pub static mut FUZZ_START_TIMESTAMP : SystemTime = UNIX_EPOCH;
|
pub static mut FUZZ_START_TIMESTAMP : SystemTime = UNIX_EPOCH;
|
||||||
@ -138,7 +138,7 @@ where
|
|||||||
unsafe { self.end_tick = emu::icount_get_raw() };
|
unsafe { self.end_tick = emu::icount_get_raw() };
|
||||||
// println!("clock post {}", self.end_tick);
|
// println!("clock post {}", self.end_tick);
|
||||||
// println!("Number of Ticks: {} <- {} {}",self.end_tick - self.start_tick, self.end_tick, self.start_tick);
|
// println!("Number of Ticks: {} <- {} {}",self.end_tick - self.start_tick, self.end_tick, self.start_tick);
|
||||||
let metadata =_state.metadata_map_mut();
|
let metadata =_state.metadata_mut();
|
||||||
let hist = metadata.get_mut::<IcHist>();
|
let hist = metadata.get_mut::<IcHist>();
|
||||||
let timestamp = SystemTime::now().duration_since(unsafe {FUZZ_START_TIMESTAMP}).unwrap().as_millis();
|
let timestamp = SystemTime::now().duration_since(unsafe {FUZZ_START_TIMESTAMP}).unwrap().as_millis();
|
||||||
match hist {
|
match hist {
|
||||||
@ -226,10 +226,9 @@ where
|
|||||||
|
|
||||||
/// Append to the testcase the generated metadata in case of a new corpus item
|
/// Append to the testcase the generated metadata in case of a new corpus item
|
||||||
#[inline]
|
#[inline]
|
||||||
fn append_metadata<OT>(
|
fn append_metadata(
|
||||||
&mut self,
|
&mut self,
|
||||||
_state: &mut S,
|
_state: &mut S,
|
||||||
observers: &OT,
|
|
||||||
testcase: &mut Testcase<S::Input>,
|
testcase: &mut Testcase<S::Input>,
|
||||||
) -> Result<(), Error> {
|
) -> Result<(), Error> {
|
||||||
*testcase.exec_time_mut() = self.exec_time;
|
*testcase.exec_time_mut() = self.exec_time;
|
||||||
@ -297,7 +296,7 @@ where
|
|||||||
let observer = _observers.match_name::<QemuClockObserver>("clock")
|
let observer = _observers.match_name::<QemuClockObserver>("clock")
|
||||||
.expect("QemuClockObserver not found");
|
.expect("QemuClockObserver not found");
|
||||||
let clock_state = state
|
let clock_state = state
|
||||||
.named_metadata_map_mut()
|
.named_metadata_mut()
|
||||||
.get_mut::<MaxIcountMetadata>(&self.name)
|
.get_mut::<MaxIcountMetadata>(&self.name)
|
||||||
.unwrap();
|
.unwrap();
|
||||||
if observer.last_runtime() > clock_state.max_icount_seen {
|
if observer.last_runtime() > clock_state.max_icount_seen {
|
||||||
@ -310,7 +309,7 @@ where
|
|||||||
|
|
||||||
/// Append to the testcase the generated metadata in case of a new corpus item
|
/// Append to the testcase the generated metadata in case of a new corpus item
|
||||||
#[inline]
|
#[inline]
|
||||||
fn append_metadata<OT>(&mut self, _state: &mut S, observers: &OT, testcase: &mut Testcase<S::Input>) -> Result<(), Error> {
|
fn append_metadata(&mut self, _state: &mut S, testcase: &mut Testcase<S::Input>) -> Result<(), Error> {
|
||||||
// testcase.metadata_mut().insert(QemuIcountMetadata{runtime: self.last_runtime});
|
// testcase.metadata_mut().insert(QemuIcountMetadata{runtime: self.last_runtime});
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
@ -1,21 +1,20 @@
|
|||||||
//! A fuzzer using qemu in systemmode for binary-only coverage of kernels
|
//! A fuzzer using qemu in systemmode for binary-only coverage of kernels
|
||||||
//!
|
//!
|
||||||
use core::time::Duration;
|
use core::time::Duration;
|
||||||
use std::{env, path::PathBuf, process::{self, abort}, io::{Read, Write}, fs::{self, OpenOptions}, cmp::{min, max}, mem::transmute_copy, collections::btree_map::Range, ptr::addr_of_mut};
|
use std::{env, path::PathBuf, process::{self, abort}, io::{Read, Write}, fs::{self, OpenOptions}, cmp::{min, max}, mem::transmute_copy, collections::btree_map::Range};
|
||||||
|
|
||||||
use libafl_bolts::{
|
|
||||||
core_affinity::Cores,
|
|
||||||
current_nanos,
|
|
||||||
rands::StdRand,
|
|
||||||
shmem::{ShMemProvider, StdShMemProvider},
|
|
||||||
tuples::tuple_list,
|
|
||||||
AsSlice,
|
|
||||||
AsMutSlice
|
|
||||||
};
|
|
||||||
use libafl::{
|
use libafl::{
|
||||||
|
bolts::{
|
||||||
|
core_affinity::Cores,
|
||||||
|
current_nanos,
|
||||||
|
launcher::Launcher,
|
||||||
|
rands::StdRand,
|
||||||
|
shmem::{ShMemProvider, StdShMemProvider},
|
||||||
|
tuples::tuple_list,
|
||||||
|
AsSlice,
|
||||||
|
},
|
||||||
corpus::{Corpus, InMemoryCorpus, OnDiskCorpus},
|
corpus::{Corpus, InMemoryCorpus, OnDiskCorpus},
|
||||||
events::EventConfig,
|
events::EventConfig,
|
||||||
events::launcher::Launcher,
|
|
||||||
executors::{ExitKind, TimeoutExecutor},
|
executors::{ExitKind, TimeoutExecutor},
|
||||||
feedback_or,
|
feedback_or,
|
||||||
feedback_or_fast,
|
feedback_or_fast,
|
||||||
@ -27,10 +26,10 @@ use libafl::{
|
|||||||
schedulers::{IndexesLenTimeMinimizerScheduler, QueueScheduler},
|
schedulers::{IndexesLenTimeMinimizerScheduler, QueueScheduler},
|
||||||
state::{HasCorpus, StdState, HasMetadata, HasNamedMetadata},
|
state::{HasCorpus, StdState, HasMetadata, HasNamedMetadata},
|
||||||
Error,
|
Error,
|
||||||
prelude::{SimpleMonitor, SimpleEventManager, RandBytesGenerator, Generator, SimpleRestartingEventManager, HasBytesVec, minimizer::TopRatedsMetadata, havoc_mutations, StdScheduledMutator, HitcountsMapObserver, CorpusId}, Evaluator, stages::StdMutationalStage,
|
prelude::{SimpleMonitor, SimpleEventManager, AsMutSlice, RandBytesGenerator, Generator, SimpleRestartingEventManager, HasBytesVec, minimizer::TopRatedsMetadata, havoc_mutations, StdScheduledMutator, HitcountsMapObserver}, Evaluator, stages::StdMutationalStage,
|
||||||
};
|
};
|
||||||
use libafl_qemu::{
|
use libafl_qemu::{
|
||||||
edges::{self, edges_map_mut_slice, MAX_EDGES_NUM}, edges::QemuEdgeCoverageHelper, elf::EasyElf, emu::Emulator, GuestPhysAddr, QemuExecutor,
|
edges, edges::QemuEdgeCoverageHelper, elf::EasyElf, emu::Emulator, GuestPhysAddr, QemuExecutor,
|
||||||
QemuHooks, Regs, QemuInstrumentationFilter, GuestAddr,
|
QemuHooks, Regs, QemuInstrumentationFilter, GuestAddr,
|
||||||
emu::libafl_qemu_set_native_breakpoint, emu::libafl_qemu_remove_native_breakpoint,
|
emu::libafl_qemu_set_native_breakpoint, emu::libafl_qemu_remove_native_breakpoint,
|
||||||
};
|
};
|
||||||
@ -127,12 +126,6 @@ pub fn fuzz() {
|
|||||||
let task_queue_addr = elf
|
let task_queue_addr = elf
|
||||||
.resolve_symbol("pxReadyTasksLists", 0)
|
.resolve_symbol("pxReadyTasksLists", 0)
|
||||||
.expect("Symbol pxReadyTasksLists not found");
|
.expect("Symbol pxReadyTasksLists not found");
|
||||||
let task_delay_addr = elf
|
|
||||||
.resolve_symbol("pxDelayedTaskList", 0)
|
|
||||||
.expect("Symbol pxDelayedTaskList not found");
|
|
||||||
let task_delay_overflow_addr = elf
|
|
||||||
.resolve_symbol("pxOverflowDelayedTaskList", 0)
|
|
||||||
.expect("Symbol pxOverflowDelayedTaskList not found");
|
|
||||||
// let task_queue_addr = virt2phys(task_queue_addr,&elf.goblin());
|
// let task_queue_addr = virt2phys(task_queue_addr,&elf.goblin());
|
||||||
#[cfg(feature = "systemstate")]
|
#[cfg(feature = "systemstate")]
|
||||||
println!("Task Queue at {:#x}", task_queue_addr);
|
println!("Task Queue at {:#x}", task_queue_addr);
|
||||||
@ -181,7 +174,7 @@ pub fn fuzz() {
|
|||||||
// Initialize QEMU
|
// Initialize QEMU
|
||||||
let args: Vec<String> = env::args().collect();
|
let args: Vec<String> = env::args().collect();
|
||||||
let env: Vec<(String, String)> = env::vars().collect();
|
let env: Vec<(String, String)> = env::vars().collect();
|
||||||
let emu = Emulator::new(&args, &env).expect("Emulator creation failed");
|
let emu = Emulator::new(&args, &env);
|
||||||
|
|
||||||
if let Some(main_addr) = main_addr {
|
if let Some(main_addr) = main_addr {
|
||||||
unsafe {
|
unsafe {
|
||||||
@ -249,11 +242,9 @@ pub fn fuzz() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Create an observation channel using the coverage map
|
// Create an observation channel using the coverage map
|
||||||
let edges_observer = unsafe { VariableMapObserver::from_mut_slice(
|
let edges = unsafe { &mut edges::EDGES_MAP };
|
||||||
"edges",
|
let edges_counter = unsafe { &mut edges::MAX_EDGES_NUM };
|
||||||
edges_map_mut_slice(),
|
let edges_observer = VariableMapObserver::new("edges", edges, edges_counter);
|
||||||
addr_of_mut!(MAX_EDGES_NUM)
|
|
||||||
)};
|
|
||||||
#[cfg(feature = "observer_hitcounts")]
|
#[cfg(feature = "observer_hitcounts")]
|
||||||
let edges_observer = HitcountsMapObserver::new(edges_observer);
|
let edges_observer = HitcountsMapObserver::new(edges_observer);
|
||||||
|
|
||||||
@ -277,7 +268,7 @@ pub fn fuzz() {
|
|||||||
let mut feedback = feedback_or!(
|
let mut feedback = feedback_or!(
|
||||||
feedback,
|
feedback,
|
||||||
// New maximization map feedback linked to the edges observer and the feedback state
|
// New maximization map feedback linked to the edges observer and the feedback state
|
||||||
MaxMapFeedback::tracking(&edges_observer, true, true)
|
MaxMapFeedback::new_tracking(&edges_observer, true, true)
|
||||||
);
|
);
|
||||||
#[cfg(feature = "feed_longest")]
|
#[cfg(feature = "feed_longest")]
|
||||||
let mut feedback = feedback_or!(
|
let mut feedback = feedback_or!(
|
||||||
@ -348,7 +339,7 @@ pub fn fuzz() {
|
|||||||
let qhelpers = tuple_list!(
|
let qhelpers = tuple_list!(
|
||||||
QemuEdgeCoverageHelper::default(),
|
QemuEdgeCoverageHelper::default(),
|
||||||
QemuStateRestoreHelper::new(),
|
QemuStateRestoreHelper::new(),
|
||||||
QemuSystemStateHelper::new(svh,curr_tcb_pointer,task_queue_addr,task_delay_addr,task_delay_overflow_addr,input_counter_ptr,app_range.clone())
|
QemuSystemStateHelper::new(svh,curr_tcb_pointer,task_queue_addr,input_counter_ptr,app_range.clone())
|
||||||
);
|
);
|
||||||
let mut hooks = QemuHooks::new(&emu,qhelpers);
|
let mut hooks = QemuHooks::new(&emu,qhelpers);
|
||||||
|
|
||||||
@ -402,7 +393,7 @@ pub fn fuzz() {
|
|||||||
.create(true)
|
.create(true)
|
||||||
.append(true)
|
.append(true)
|
||||||
.open(td).expect("Could not open timedump");
|
.open(td).expect("Could not open timedump");
|
||||||
if let Ok(ichist) = state.metadata_mut::<IcHist>() {
|
if let Some(ichist) = state.metadata_mut().get_mut::<IcHist>() {
|
||||||
for i in ichist.0.drain(..) {
|
for i in ichist.0.drain(..) {
|
||||||
writeln!(file, "{},{}", i.0, i.1).expect("Write to dump failed");
|
writeln!(file, "{},{}", i.0, i.1).expect("Write to dump failed");
|
||||||
}
|
}
|
||||||
@ -482,7 +473,7 @@ pub fn fuzz() {
|
|||||||
.create(true)
|
.create(true)
|
||||||
.append(true)
|
.append(true)
|
||||||
.open(td).expect("Could not open timedump");
|
.open(td).expect("Could not open timedump");
|
||||||
if let Some(ichist) = state.metadata_map_mut().get_mut::<IcHist>() {
|
if let Some(ichist) = state.metadata_mut().get_mut::<IcHist>() {
|
||||||
for i in ichist.0.drain(..) {
|
for i in ichist.0.drain(..) {
|
||||||
writeln!(file, "{},{}", i.0, i.1).expect("Write to dump failed");
|
writeln!(file, "{},{}", i.0, i.1).expect("Write to dump failed");
|
||||||
}
|
}
|
||||||
@ -494,7 +485,7 @@ pub fn fuzz() {
|
|||||||
let mut worst = Duration::new(0,0);
|
let mut worst = Duration::new(0,0);
|
||||||
let mut worst_input = None;
|
let mut worst_input = None;
|
||||||
for i in 0..corpus.count() {
|
for i in 0..corpus.count() {
|
||||||
let tc = corpus.get(i.into()).expect("Could not get element from corpus").borrow();
|
let tc = corpus.get(i).expect("Could not get element from corpus").borrow();
|
||||||
if worst < tc.exec_time().expect("Testcase missing duration") {
|
if worst < tc.exec_time().expect("Testcase missing duration") {
|
||||||
worst_input = Some(tc.input().as_ref().unwrap().bytes().to_owned());
|
worst_input = Some(tc.input().as_ref().unwrap().bytes().to_owned());
|
||||||
worst = tc.exec_time().expect("Testcase missing duration");
|
worst = tc.exec_time().expect("Testcase missing duration");
|
||||||
@ -519,8 +510,8 @@ pub fn fuzz() {
|
|||||||
}
|
}
|
||||||
{
|
{
|
||||||
let mut gd = String::from(&td);
|
let mut gd = String::from(&td);
|
||||||
if let Some(md) = state.metadata_map_mut().get_mut::<TopRatedsMetadata>() {
|
if let Some(md) = state.metadata_mut().get_mut::<TopRatedsMetadata>() {
|
||||||
let mut uniq: Vec<CorpusId> = md.map.values().map(|x| x.clone()).collect();
|
let mut uniq: Vec<usize> = md.map.values().map(|x| x.clone()).collect();
|
||||||
uniq.sort();
|
uniq.sort();
|
||||||
uniq.dedup();
|
uniq.dedup();
|
||||||
gd.push_str(&format!(".{}.toprated{}", uniq.len(), marker));
|
gd.push_str(&format!(".{}.toprated{}", uniq.len(), marker));
|
||||||
@ -532,13 +523,13 @@ pub fn fuzz() {
|
|||||||
dumper(format!(".iter_{}",t));
|
dumper(format!(".iter_{}",t));
|
||||||
}
|
}
|
||||||
println!("Start running until saturation");
|
println!("Start running until saturation");
|
||||||
let mut last = state.metadata_map().get::<IcHist>().unwrap().1;
|
let mut last = state.metadata().get::<IcHist>().unwrap().1;
|
||||||
while SystemTime::now().duration_since(unsafe {FUZZ_START_TIMESTAMP}).unwrap().as_millis() < last.1 + Duration::from_secs(10800).as_millis() {
|
while SystemTime::now().duration_since(unsafe {FUZZ_START_TIMESTAMP}).unwrap().as_millis() < last.1 + Duration::from_secs(10800).as_millis() {
|
||||||
starttime=starttime.checked_add(Duration::from_secs(30)).unwrap();
|
starttime=starttime.checked_add(Duration::from_secs(30)).unwrap();
|
||||||
fuzzer
|
fuzzer
|
||||||
.fuzz_loop_until(&mut stages, &mut executor, &mut state, &mut mgr, starttime)
|
.fuzz_loop_until(&mut stages, &mut executor, &mut state, &mut mgr, starttime)
|
||||||
.unwrap();
|
.unwrap();
|
||||||
let after = state.metadata_map().get::<IcHist>().unwrap().1;
|
let after = state.metadata().get::<IcHist>().unwrap().1;
|
||||||
if after.0 > last.0 {
|
if after.0 > last.0 {
|
||||||
last=after;
|
last=after;
|
||||||
}
|
}
|
||||||
@ -548,7 +539,7 @@ pub fn fuzz() {
|
|||||||
let mut worst = Duration::new(0,0);
|
let mut worst = Duration::new(0,0);
|
||||||
let mut worst_input = None;
|
let mut worst_input = None;
|
||||||
for i in 0..corpus.count() {
|
for i in 0..corpus.count() {
|
||||||
let tc = corpus.get(i.into()).expect("Could not get element from corpus").borrow();
|
let tc = corpus.get(i).expect("Could not get element from corpus").borrow();
|
||||||
if worst < tc.exec_time().expect("Testcase missing duration") {
|
if worst < tc.exec_time().expect("Testcase missing duration") {
|
||||||
worst_input = Some(tc.input().as_ref().unwrap().bytes().to_owned());
|
worst_input = Some(tc.input().as_ref().unwrap().bytes().to_owned());
|
||||||
worst = tc.exec_time().expect("Testcase missing duration");
|
worst = tc.exec_time().expect("Testcase missing duration");
|
||||||
@ -566,14 +557,14 @@ pub fn fuzz() {
|
|||||||
{
|
{
|
||||||
let mut gd = String::from(&td);
|
let mut gd = String::from(&td);
|
||||||
gd.push_str(".graph" );
|
gd.push_str(".graph" );
|
||||||
if let Some(md) = state.named_metadata_map_mut().get_mut::<SysGraphFeedbackState>("SysMap") {
|
if let Some(md) = state.named_metadata_mut().get_mut::<SysGraphFeedbackState>("SysMap") {
|
||||||
fs::write(&gd,ron::to_string(&md).expect("Failed to serialize graph")).expect("Failed to write graph");
|
fs::write(&gd,ron::to_string(&md).expect("Failed to serialize graph")).expect("Failed to write graph");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
let mut gd = String::from(&td);
|
let mut gd = String::from(&td);
|
||||||
if let Some(md) = state.metadata_map_mut().get_mut::<TopRatedsMetadata>() {
|
if let Some(md) = state.metadata_mut().get_mut::<TopRatedsMetadata>() {
|
||||||
let mut uniq: Vec<CorpusId> = md.map.values().map(|x| x.clone()).collect();
|
let mut uniq: Vec<usize> = md.map.values().map(|x| x.clone()).collect();
|
||||||
uniq.sort();
|
uniq.sort();
|
||||||
uniq.dedup();
|
uniq.dedup();
|
||||||
gd.push_str(&format!(".{}.toprated", uniq.len()));
|
gd.push_str(&format!(".{}.toprated", uniq.len()));
|
||||||
@ -591,7 +582,7 @@ pub fn fuzz() {
|
|||||||
.create(true)
|
.create(true)
|
||||||
.append(true)
|
.append(true)
|
||||||
.open(td).expect("Could not open timedump");
|
.open(td).expect("Could not open timedump");
|
||||||
if let Ok(ichist) = state.metadata_mut::<IcHist>() {
|
if let Some(ichist) = state.metadata_mut().get_mut::<IcHist>() {
|
||||||
for i in ichist.0.drain(..) {
|
for i in ichist.0.drain(..) {
|
||||||
writeln!(file, "{},{}", i.0, i.1).expect("Write to dump failed");
|
writeln!(file, "{},{}", i.0, i.1).expect("Write to dump failed");
|
||||||
}
|
}
|
||||||
@ -603,7 +594,7 @@ pub fn fuzz() {
|
|||||||
let mut worst = Duration::new(0,0);
|
let mut worst = Duration::new(0,0);
|
||||||
let mut worst_input = None;
|
let mut worst_input = None;
|
||||||
for i in 0..corpus.count() {
|
for i in 0..corpus.count() {
|
||||||
let tc = corpus.get(i.into()).expect("Could not get element from corpus").borrow();
|
let tc = corpus.get(i).expect("Could not get element from corpus").borrow();
|
||||||
if worst < tc.exec_time().expect("Testcase missing duration") {
|
if worst < tc.exec_time().expect("Testcase missing duration") {
|
||||||
worst_input = Some(tc.input().as_ref().unwrap().bytes().to_owned());
|
worst_input = Some(tc.input().as_ref().unwrap().bytes().to_owned());
|
||||||
worst = tc.exec_time().expect("Testcase missing duration");
|
worst = tc.exec_time().expect("Testcase missing duration");
|
||||||
@ -621,14 +612,14 @@ pub fn fuzz() {
|
|||||||
{
|
{
|
||||||
let mut gd = String::from(&td);
|
let mut gd = String::from(&td);
|
||||||
gd.push_str(".graph");
|
gd.push_str(".graph");
|
||||||
if let Some(md) = state.named_metadata_map_mut().get_mut::<SysGraphFeedbackState>("SysMap") {
|
if let Some(md) = state.named_metadata_mut().get_mut::<SysGraphFeedbackState>("SysMap") {
|
||||||
fs::write(&gd,ron::to_string(&md).expect("Failed to serialize graph")).expect("Failed to write graph");
|
fs::write(&gd,ron::to_string(&md).expect("Failed to serialize graph")).expect("Failed to write graph");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
let mut gd = String::from(&td);
|
let mut gd = String::from(&td);
|
||||||
if let Ok(md) = state.metadata_mut::<TopRatedsMetadata>() {
|
if let Some(md) = state.metadata_mut().get_mut::<TopRatedsMetadata>() {
|
||||||
let mut uniq: Vec<CorpusId> = md.map.values().map(|x| x.clone()).collect();
|
let mut uniq: Vec<usize> = md.map.values().map(|x| x.clone()).collect();
|
||||||
uniq.sort();
|
uniq.sort();
|
||||||
uniq.dedup();
|
uniq.dedup();
|
||||||
gd.push_str(&format!(".{}.toprated", uniq.len()));
|
gd.push_str(&format!(".{}.toprated", uniq.len()));
|
||||||
@ -648,7 +639,7 @@ pub fn fuzz() {
|
|||||||
// Initialize QEMU
|
// Initialize QEMU
|
||||||
let args: Vec<String> = env::args().collect();
|
let args: Vec<String> = env::args().collect();
|
||||||
let env: Vec<(String, String)> = env::vars().collect();
|
let env: Vec<(String, String)> = env::vars().collect();
|
||||||
let emu = Emulator::new(&args, &env).expect("Emu creation failed");
|
let emu = Emulator::new(&args, &env);
|
||||||
|
|
||||||
if let Some(main_addr) = main_addr {
|
if let Some(main_addr) = main_addr {
|
||||||
unsafe { libafl_qemu_set_native_breakpoint(main_addr); }// BREAKPOINT
|
unsafe { libafl_qemu_set_native_breakpoint(main_addr); }// BREAKPOINT
|
||||||
|
@ -4,18 +4,15 @@
|
|||||||
use core::marker::PhantomData;
|
use core::marker::PhantomData;
|
||||||
use std::cmp::{max, min};
|
use std::cmp::{max, min};
|
||||||
|
|
||||||
use libafl_bolts::rands::{
|
|
||||||
StdRand, RandomSeed,
|
|
||||||
Rand
|
|
||||||
};
|
|
||||||
use libafl::{
|
use libafl::{
|
||||||
|
bolts::rands::Rand,
|
||||||
corpus::{Corpus, self},
|
corpus::{Corpus, self},
|
||||||
fuzzer::Evaluator,
|
fuzzer::Evaluator,
|
||||||
mark_feature_time,
|
mark_feature_time,
|
||||||
stages::{Stage},
|
stages::{Stage},
|
||||||
start_timer,
|
start_timer,
|
||||||
state::{HasClientPerfMonitor, HasCorpus, HasRand, UsesState, HasMetadata},
|
state::{HasClientPerfMonitor, HasCorpus, HasRand, UsesState, HasMetadata},
|
||||||
Error, prelude::{HasBytesVec, UsesInput, new_hash_feedback, MutationResult, Mutator, CorpusId},
|
Error, prelude::{HasBytesVec, UsesInput, new_hash_feedback, StdRand, RandomSeed, MutationResult, Mutator},
|
||||||
};
|
};
|
||||||
use crate::{systemstate::{FreeRTOSSystemStateMetadata, RefinedFreeRTOSSystemState}, fuzzer::DO_NUM_INTERRUPT, clock::IcHist};
|
use crate::{systemstate::{FreeRTOSSystemStateMetadata, RefinedFreeRTOSSystemState}, fuzzer::DO_NUM_INTERRUPT, clock::IcHist};
|
||||||
|
|
||||||
@ -56,7 +53,7 @@ where
|
|||||||
executor: &mut E,
|
executor: &mut E,
|
||||||
state: &mut Self::State,
|
state: &mut Self::State,
|
||||||
manager: &mut EM,
|
manager: &mut EM,
|
||||||
corpus_idx: CorpusId,
|
corpus_idx: usize,
|
||||||
) -> Result<(), Error> {
|
) -> Result<(), Error> {
|
||||||
let mut _input = state
|
let mut _input = state
|
||||||
.corpus()
|
.corpus()
|
||||||
@ -106,7 +103,7 @@ where
|
|||||||
// let mut suffix : Vec<u8> = vec![];
|
// let mut suffix : Vec<u8> = vec![];
|
||||||
#[cfg(feature = "feed_systemtrace")]
|
#[cfg(feature = "feed_systemtrace")]
|
||||||
{
|
{
|
||||||
let tmp = _input.metadata_map().get::<FreeRTOSSystemStateMetadata>();
|
let tmp = _input.metadata().get::<FreeRTOSSystemStateMetadata>();
|
||||||
if tmp.is_some() {
|
if tmp.is_some() {
|
||||||
let trace = tmp.expect("FreeRTOSSystemStateMetadata not found");
|
let trace = tmp.expect("FreeRTOSSystemStateMetadata not found");
|
||||||
|
|
||||||
@ -118,10 +115,10 @@ where
|
|||||||
let m = interrupt_offsets[0..num_interrupts].iter().any(|x| (curr.start_tick..curr.end_tick).contains(&(*x as u64)));
|
let m = interrupt_offsets[0..num_interrupts].iter().any(|x| (curr.start_tick..curr.end_tick).contains(&(*x as u64)));
|
||||||
if m {
|
if m {
|
||||||
marks.push((curr, i, 1));
|
marks.push((curr, i, 1));
|
||||||
// println!("1: {}",curr.current_task.0.task_name);
|
// println!("1: {}",curr.current_task.task_name);
|
||||||
} else if last_m {
|
} else if last_m {
|
||||||
marks.push((curr, i, 2));
|
marks.push((curr, i, 2));
|
||||||
// println!("2: {}",curr.current_task.0.task_name);
|
// println!("2: {}",curr.current_task.task_name);
|
||||||
} else {
|
} else {
|
||||||
marks.push((curr, i, 0));
|
marks.push((curr, i, 0));
|
||||||
}
|
}
|
||||||
@ -209,7 +206,7 @@ where
|
|||||||
}
|
}
|
||||||
#[cfg(not(feature = "feed_systemtrace"))]
|
#[cfg(not(feature = "feed_systemtrace"))]
|
||||||
{
|
{
|
||||||
let metadata = state.metadata_map();
|
let metadata = state.metadata();
|
||||||
let hist = metadata.get::<IcHist>().unwrap();
|
let hist = metadata.get::<IcHist>().unwrap();
|
||||||
let maxtick : u64 = hist.1.0;
|
let maxtick : u64 = hist.1.0;
|
||||||
// let maxtick : u64 = (_input.exec_time().expect("No duration found").as_nanos() >> 4).try_into().unwrap();
|
// let maxtick : u64 = (_input.exec_time().expect("No duration found").as_nanos() >> 4).try_into().unwrap();
|
||||||
|
@ -56,7 +56,7 @@ where
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
fn post_exec<OT>(&mut self, emulator: &Emulator, _input: &S::Input, _observers: &mut OT, _exit_kind: &mut ExitKind) {
|
fn post_exec(&mut self, emulator: &Emulator, _input: &S::Input) {
|
||||||
// unsafe { println!("snapshot post {}",emu::icount_get_raw()) };
|
// unsafe { println!("snapshot post {}",emu::icount_get_raw()) };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,19 +1,19 @@
|
|||||||
use libafl::SerdeAny;
|
use libafl::SerdeAny;
|
||||||
use libafl_bolts::ownedref::OwnedSlice;
|
use libafl::bolts::ownedref::OwnedSlice;
|
||||||
use libafl::inputs::BytesInput;
|
use libafl::inputs::BytesInput;
|
||||||
use libafl::prelude::UsesInput;
|
use libafl::prelude::UsesInput;
|
||||||
use libafl::state::HasNamedMetadata;
|
use libafl::state::HasNamedMetadata;
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
use crate::clock::QemuClockObserver;
|
use crate::clock::QemuClockObserver;
|
||||||
use libafl::corpus::Testcase;
|
use libafl::corpus::Testcase;
|
||||||
use libafl_bolts::tuples::MatchName;
|
use libafl::bolts::tuples::MatchName;
|
||||||
use std::collections::hash_map::DefaultHasher;
|
use std::collections::hash_map::DefaultHasher;
|
||||||
use std::hash::Hasher;
|
use std::hash::Hasher;
|
||||||
use std::hash::Hash;
|
use std::hash::Hash;
|
||||||
use libafl::events::EventFirer;
|
use libafl::events::EventFirer;
|
||||||
use libafl::state::HasClientPerfMonitor;
|
use libafl::state::HasClientPerfMonitor;
|
||||||
use libafl::feedbacks::Feedback;
|
use libafl::feedbacks::Feedback;
|
||||||
use libafl_bolts::Named;
|
use libafl::bolts::tuples::Named;
|
||||||
use libafl::Error;
|
use libafl::Error;
|
||||||
use hashbrown::HashMap;
|
use hashbrown::HashMap;
|
||||||
use libafl::{executors::ExitKind, inputs::Input, observers::ObserversTuple, state::HasMetadata};
|
use libafl::{executors::ExitKind, inputs::Input, observers::ObserversTuple, state::HasMetadata};
|
||||||
@ -81,13 +81,13 @@ where
|
|||||||
let clock_observer = observers.match_name::<QemuClockObserver>("clocktime") //TODO not fixed
|
let clock_observer = observers.match_name::<QemuClockObserver>("clocktime") //TODO not fixed
|
||||||
.expect("QemuClockObserver not found");
|
.expect("QemuClockObserver not found");
|
||||||
let feedbackstate = match state
|
let feedbackstate = match state
|
||||||
.named_metadata_map_mut()
|
.named_metadata_mut()
|
||||||
.get_mut::<SystemStateFeedbackState>("systemstate") {
|
.get_mut::<SystemStateFeedbackState>("systemstate") {
|
||||||
Some(s) => s,
|
Some(s) => s,
|
||||||
None => {
|
None => {
|
||||||
let n=SystemStateFeedbackState::default();
|
let n=SystemStateFeedbackState::default();
|
||||||
state.named_metadata_map_mut().insert(n, "systemstate");
|
state.named_metadata_mut().insert(n, "systemstate");
|
||||||
state.named_metadata_map_mut().get_mut::<SystemStateFeedbackState>("systemstate").unwrap()
|
state.named_metadata_mut().get_mut::<SystemStateFeedbackState>("systemstate").unwrap()
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
// let feedbackstate = state
|
// let feedbackstate = state
|
||||||
@ -123,10 +123,10 @@ where
|
|||||||
|
|
||||||
/// Append to the testcase the generated metadata in case of a new corpus item
|
/// Append to the testcase the generated metadata in case of a new corpus item
|
||||||
#[inline]
|
#[inline]
|
||||||
fn append_metadata<OT>(&mut self, _state: &mut S, observers: &OT, testcase: &mut Testcase<S::Input>) -> Result<(), Error> {
|
fn append_metadata(&mut self, _state: &mut S, testcase: &mut Testcase<S::Input>) -> Result<(), Error> {
|
||||||
let a = self.last_trace.take();
|
let a = self.last_trace.take();
|
||||||
match a {
|
match a {
|
||||||
Some(s) => testcase.metadata_map_mut().insert(FreeRTOSSystemStateMetadata::new(s)),
|
Some(s) => testcase.metadata_mut().insert(FreeRTOSSystemStateMetadata::new(s)),
|
||||||
None => (),
|
None => (),
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
@ -154,7 +154,7 @@ pub fn match_traces(target: &Vec<RefinedFreeRTOSSystemState>, last: &Vec<Refined
|
|||||||
let mut ret = true;
|
let mut ret = true;
|
||||||
if target.len() > last.len() {return false;}
|
if target.len() > last.len() {return false;}
|
||||||
for i in 0..target.len() {
|
for i in 0..target.len() {
|
||||||
ret &= target[i].current_task.0.task_name==last[i].current_task.0.task_name;
|
ret &= target[i].current_task.task_name==last[i].current_task.task_name;
|
||||||
}
|
}
|
||||||
ret
|
ret
|
||||||
}
|
}
|
||||||
@ -162,7 +162,7 @@ pub fn match_traces_name(target: &Vec<String>, last: &Vec<RefinedFreeRTOSSystemS
|
|||||||
let mut ret = true;
|
let mut ret = true;
|
||||||
if target.len() > last.len() {return false;}
|
if target.len() > last.len() {return false;}
|
||||||
for i in 0..target.len() {
|
for i in 0..target.len() {
|
||||||
ret &= target[i]==last[i].current_task.0.task_name;
|
ret &= target[i]==last[i].current_task.task_name;
|
||||||
}
|
}
|
||||||
ret
|
ret
|
||||||
}
|
}
|
||||||
@ -213,7 +213,7 @@ impl Named for HitSystemStateFeedback
|
|||||||
|
|
||||||
impl HitSystemStateFeedback {
|
impl HitSystemStateFeedback {
|
||||||
pub fn new(target: Option<Vec<RefinedFreeRTOSSystemState>>) -> Self {
|
pub fn new(target: Option<Vec<RefinedFreeRTOSSystemState>>) -> Self {
|
||||||
Self {target: target.map(|x| x.into_iter().map(|y| y.current_task.0.task_name).collect())}
|
Self {target: target.map(|x| x.into_iter().map(|y| y.current_task.task_name).collect())}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//=========================== Debugging Feedback
|
//=========================== Debugging Feedback
|
||||||
@ -244,7 +244,7 @@ where
|
|||||||
{
|
{
|
||||||
let observer = observers.match_name::<QemuSystemStateObserver>("systemstate")
|
let observer = observers.match_name::<QemuSystemStateObserver>("systemstate")
|
||||||
.expect("QemuSystemStateObserver not found");
|
.expect("QemuSystemStateObserver not found");
|
||||||
let names : Vec<String> = observer.last_run.iter().map(|x| x.current_task.0.task_name.clone()).collect();
|
let names : Vec<String> = observer.last_run.iter().map(|x| x.current_task.task_name.clone()).collect();
|
||||||
match &self.dumpfile {
|
match &self.dumpfile {
|
||||||
Some(s) => {
|
Some(s) => {
|
||||||
std::fs::write(s,ron::to_string(&observer.last_run).expect("Error serializing hashmap")).expect("Can not dump to file");
|
std::fs::write(s,ron::to_string(&observer.last_run).expect("Error serializing hashmap")).expect("Can not dump to file");
|
||||||
@ -257,11 +257,11 @@ where
|
|||||||
}
|
}
|
||||||
/// Append to the testcase the generated metadata in case of a new corpus item
|
/// Append to the testcase the generated metadata in case of a new corpus item
|
||||||
#[inline]
|
#[inline]
|
||||||
fn append_metadata<OT>(&mut self, _state: &mut S, observers: &OT, testcase: &mut Testcase<S::Input>) -> Result<(), Error> {
|
fn append_metadata(&mut self, _state: &mut S, testcase: &mut Testcase<S::Input>) -> Result<(), Error> {
|
||||||
if !self.dump_metadata {return Ok(());}
|
if !self.dump_metadata {return Ok(());}
|
||||||
let a = self.last_trace.take();
|
let a = self.last_trace.take();
|
||||||
match a {
|
match a {
|
||||||
Some(s) => testcase.metadata_map_mut().insert(FreeRTOSSystemStateMetadata::new(s)),
|
Some(s) => testcase.metadata_mut().insert(FreeRTOSSystemStateMetadata::new(s)),
|
||||||
None => (),
|
None => (),
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
use libafl::SerdeAny;
|
use libafl::SerdeAny;
|
||||||
/// Feedbacks organizing SystemStates as a graph
|
/// Feedbacks organizing SystemStates as a graph
|
||||||
use libafl::inputs::HasBytesVec;
|
use libafl::inputs::HasBytesVec;
|
||||||
use libafl_bolts::rands::RandomSeed;
|
use libafl::bolts::rands::RandomSeed;
|
||||||
use libafl_bolts::rands::StdRand;
|
use libafl::bolts::rands::StdRand;
|
||||||
use libafl::mutators::Mutator;
|
use libafl::mutators::Mutator;
|
||||||
use libafl::mutators::MutationResult;
|
use libafl::mutators::MutationResult;
|
||||||
use libafl::prelude::HasTargetBytes;
|
use libafl::prelude::HasTargetBytes;
|
||||||
@ -15,23 +15,22 @@ use libafl::state::HasCorpus;
|
|||||||
use libafl::state::HasSolutions;
|
use libafl::state::HasSolutions;
|
||||||
use libafl::state::HasRand;
|
use libafl::state::HasRand;
|
||||||
use crate::worst::MaxExecsLenFavFactor;
|
use crate::worst::MaxExecsLenFavFactor;
|
||||||
use crate::worst::MaxTimeFavFactor;
|
|
||||||
use libafl::schedulers::MinimizerScheduler;
|
use libafl::schedulers::MinimizerScheduler;
|
||||||
use libafl_bolts::HasRefCnt;
|
use libafl::bolts::HasRefCnt;
|
||||||
use libafl_bolts::AsSlice;
|
use libafl::bolts::AsSlice;
|
||||||
use libafl_bolts::ownedref::OwnedSlice;
|
use libafl::bolts::ownedref::OwnedSlice;
|
||||||
use libafl::inputs::BytesInput;
|
use libafl::inputs::BytesInput;
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
use crate::clock::QemuClockObserver;
|
use crate::clock::QemuClockObserver;
|
||||||
use libafl::corpus::Testcase;
|
use libafl::corpus::Testcase;
|
||||||
use libafl_bolts::tuples::MatchName;
|
use libafl::bolts::tuples::MatchName;
|
||||||
use std::collections::hash_map::DefaultHasher;
|
use std::collections::hash_map::DefaultHasher;
|
||||||
use std::hash::Hasher;
|
use std::hash::Hasher;
|
||||||
use std::hash::Hash;
|
use std::hash::Hash;
|
||||||
use libafl::events::EventFirer;
|
use libafl::events::EventFirer;
|
||||||
use libafl::state::HasClientPerfMonitor;
|
use libafl::state::HasClientPerfMonitor;
|
||||||
use libafl::feedbacks::Feedback;
|
use libafl::feedbacks::Feedback;
|
||||||
use libafl_bolts::Named;
|
use libafl::bolts::tuples::Named;
|
||||||
use libafl::Error;
|
use libafl::Error;
|
||||||
use hashbrown::HashMap;
|
use hashbrown::HashMap;
|
||||||
use libafl::{executors::ExitKind, inputs::Input, observers::ObserversTuple, state::HasMetadata};
|
use libafl::{executors::ExitKind, inputs::Input, observers::ObserversTuple, state::HasMetadata};
|
||||||
@ -45,7 +44,7 @@ use petgraph::graph::NodeIndex;
|
|||||||
use petgraph::Direction;
|
use petgraph::Direction;
|
||||||
use std::cmp::Ordering;
|
use std::cmp::Ordering;
|
||||||
|
|
||||||
use libafl_bolts::rands::Rand;
|
use libafl::bolts::rands::Rand;
|
||||||
|
|
||||||
//============================= Data Structures
|
//============================= Data Structures
|
||||||
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Default)]
|
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Default)]
|
||||||
@ -106,24 +105,11 @@ impl SysGraphNode {
|
|||||||
return interesting;
|
return interesting;
|
||||||
}
|
}
|
||||||
pub fn get_taskname(&self) -> &str {
|
pub fn get_taskname(&self) -> &str {
|
||||||
&self.base.current_task.0.task_name
|
&self.base.current_task.task_name
|
||||||
}
|
}
|
||||||
pub fn get_input_counts(&self) -> Vec<u32> {
|
pub fn get_input_counts(&self) -> Vec<u32> {
|
||||||
self.variants.iter().map(|x| x.input_counter).collect()
|
self.variants.iter().map(|x| x.input_counter).collect()
|
||||||
}
|
}
|
||||||
pub fn pretty_print(&self) -> String {
|
|
||||||
let mut ret = String::new();
|
|
||||||
ret.push_str(&format!("{}#{}",&self.base.current_task.0.task_name,&self.base.current_task.1));
|
|
||||||
ret.push_str("\nRl:");
|
|
||||||
for i in &self.base.ready_list_after {
|
|
||||||
ret.push_str(&format!("\n{}#{}",i.0.task_name,i.1));
|
|
||||||
}
|
|
||||||
ret.push_str("\nDl:");
|
|
||||||
for i in &self.base.delay_list_after {
|
|
||||||
ret.push_str(&format!("\n{}#{}",i.0.task_name,i.1));
|
|
||||||
}
|
|
||||||
ret
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
impl PartialEq for SysGraphNode {
|
impl PartialEq for SysGraphNode {
|
||||||
fn eq(&self, other: &SysGraphNode) -> bool {
|
fn eq(&self, other: &SysGraphNode) -> bool {
|
||||||
@ -162,15 +148,15 @@ impl HasRefCnt for SysGraphMetadata {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
libafl_bolts::impl_serdeany!(SysGraphMetadata);
|
libafl::impl_serdeany!(SysGraphMetadata);
|
||||||
|
|
||||||
pub type GraphMaximizerCorpusScheduler<CS> =
|
pub type GraphMaximizerCorpusScheduler<CS> =
|
||||||
MinimizerScheduler<CS, MaxTimeFavFactor<<CS as UsesState>::State>,SysGraphMetadata>;
|
MinimizerScheduler<CS, MaxExecsLenFavFactor<<CS as UsesState>::State>,SysGraphMetadata>;
|
||||||
|
|
||||||
//============================= Graph Feedback
|
//============================= Graph Feedback
|
||||||
|
|
||||||
/// Improved System State Graph
|
/// Improved System State Graph
|
||||||
#[derive(Serialize, Deserialize, Clone, Debug, SerdeAny)]
|
#[derive(Serialize, Deserialize, Clone, Debug, Default, SerdeAny)]
|
||||||
pub struct SysGraphFeedbackState
|
pub struct SysGraphFeedbackState
|
||||||
{
|
{
|
||||||
pub graph: DiGraph<SysGraphNode, ()>,
|
pub graph: DiGraph<SysGraphNode, ()>,
|
||||||
@ -183,9 +169,9 @@ impl SysGraphFeedbackState
|
|||||||
pub fn new() -> Self {
|
pub fn new() -> Self {
|
||||||
let mut graph = DiGraph::<SysGraphNode, ()>::new();
|
let mut graph = DiGraph::<SysGraphNode, ()>::new();
|
||||||
let mut entry = SysGraphNode::default();
|
let mut entry = SysGraphNode::default();
|
||||||
entry.base.current_task.0.task_name="Start".to_string();
|
entry.base.current_task.task_name="Start".to_string();
|
||||||
let mut exit = SysGraphNode::default();
|
let mut exit = SysGraphNode::default();
|
||||||
exit.base.current_task.0.task_name="End".to_string();
|
exit.base.current_task.task_name="End".to_string();
|
||||||
let entry = graph.add_node(entry);
|
let entry = graph.add_node(entry);
|
||||||
let exit = graph.add_node(exit);
|
let exit = graph.add_node(exit);
|
||||||
Self {graph: graph, entrypoint: entry, exit: exit, name: String::from("SysMap")}
|
Self {graph: graph, entrypoint: entry, exit: exit, name: String::from("SysMap")}
|
||||||
@ -215,10 +201,11 @@ impl SysGraphFeedbackState
|
|||||||
let mut trace : Vec<NodeIndex> = vec![current_index];
|
let mut trace : Vec<NodeIndex> = vec![current_index];
|
||||||
for n in list {
|
for n in list {
|
||||||
let mut matching : Option<NodeIndex> = None;
|
let mut matching : Option<NodeIndex> = None;
|
||||||
for i in self.graph.node_indices() {
|
for i in self.graph.neighbors_directed(current_index, Direction::Outgoing) {
|
||||||
let tmp = &self.graph[i];
|
let tmp = &self.graph[i];
|
||||||
if n == &tmp.base {
|
if n == &tmp.base {
|
||||||
matching = Some(i);
|
matching = Some(i);
|
||||||
|
current_index = i;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -226,20 +213,16 @@ impl SysGraphFeedbackState
|
|||||||
None => {
|
None => {
|
||||||
novel = true;
|
novel = true;
|
||||||
let j = self.graph.add_node(SysGraphNode::from(n.clone(),input.clone()));
|
let j = self.graph.add_node(SysGraphNode::from(n.clone(),input.clone()));
|
||||||
self.graph.update_edge(current_index, j, ());
|
self.graph.add_edge(current_index, j, ());
|
||||||
current_index = j;
|
current_index = j;
|
||||||
},
|
},
|
||||||
Some(i) => {
|
Some(i) => {
|
||||||
novel |= self.graph[i].unite_interesting(&n, input);
|
novel |= self.graph[i].unite_interesting(&n, input);
|
||||||
self.graph.update_edge(current_index, i, ());
|
|
||||||
current_index = i;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
trace.push(current_index);
|
trace.push(current_index);
|
||||||
}
|
}
|
||||||
if current_index != self.entrypoint {
|
self.graph.update_edge(current_index, self.exit, ()); // every path ends in the exit noded
|
||||||
self.graph.update_edge(current_index, self.exit, ()); // every path ends in the exit noded
|
|
||||||
}
|
|
||||||
return (novel, trace);
|
return (novel, trace);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -250,19 +233,14 @@ impl Named for SysGraphFeedbackState
|
|||||||
&self.name
|
&self.name
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
impl Default for SysGraphFeedbackState {
|
|
||||||
fn default() -> Self {
|
|
||||||
Self::new()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
impl SysGraphFeedbackState
|
impl SysGraphFeedbackState
|
||||||
{
|
{
|
||||||
fn reset(&mut self) -> Result<(), Error> {
|
fn reset(&mut self) -> Result<(), Error> {
|
||||||
self.graph.clear();
|
self.graph.clear();
|
||||||
let mut entry = SysGraphNode::default();
|
let mut entry = SysGraphNode::default();
|
||||||
entry.base.current_task.0.task_name="Start".to_string();
|
entry.base.current_task.task_name="Start".to_string();
|
||||||
let mut exit = SysGraphNode::default();
|
let mut exit = SysGraphNode::default();
|
||||||
exit.base.current_task.0.task_name="End".to_string();
|
exit.base.current_task.task_name="End".to_string();
|
||||||
self.entrypoint = self.graph.add_node(entry);
|
self.entrypoint = self.graph.add_node(entry);
|
||||||
self.exit = self.graph.add_node(exit);
|
self.exit = self.graph.add_node(exit);
|
||||||
Ok(())
|
Ok(())
|
||||||
@ -303,13 +281,13 @@ where
|
|||||||
let observer = observers.match_name::<QemuSystemStateObserver>("systemstate")
|
let observer = observers.match_name::<QemuSystemStateObserver>("systemstate")
|
||||||
.expect("QemuSystemStateObserver not found");
|
.expect("QemuSystemStateObserver not found");
|
||||||
let feedbackstate = match state
|
let feedbackstate = match state
|
||||||
.named_metadata_map_mut()
|
.named_metadata_mut()
|
||||||
.get_mut::<SysGraphFeedbackState>("SysMap") {
|
.get_mut::<SysGraphFeedbackState>("SysMap") {
|
||||||
Some(s) => s,
|
Some(s) => s,
|
||||||
None => {
|
None => {
|
||||||
let n=SysGraphFeedbackState::default();
|
let n=SysGraphFeedbackState::default();
|
||||||
state.named_metadata_map_mut().insert(n, "SysMap");
|
state.named_metadata_mut().insert(n, "SysMap");
|
||||||
state.named_metadata_map_mut().get_mut::<SysGraphFeedbackState>("SysMap").unwrap()
|
state.named_metadata_mut().get_mut::<SysGraphFeedbackState>("SysMap").unwrap()
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
let ret = feedbackstate.update(&observer.last_run, &observer.last_input);
|
let ret = feedbackstate.update(&observer.last_run, &observer.last_input);
|
||||||
@ -319,10 +297,10 @@ where
|
|||||||
|
|
||||||
/// Append to the testcase the generated metadata in case of a new corpus item
|
/// Append to the testcase the generated metadata in case of a new corpus item
|
||||||
#[inline]
|
#[inline]
|
||||||
fn append_metadata<OT>(&mut self, _state: &mut S, _observers: &OT, testcase: &mut Testcase<S::Input>) -> Result<(), Error> {
|
fn append_metadata(&mut self, _state: &mut S, testcase: &mut Testcase<S::Input>) -> Result<(), Error> {
|
||||||
let a = self.last_trace.take();
|
let a = self.last_trace.take();
|
||||||
match a {
|
match a {
|
||||||
Some(s) => testcase.metadata_map_mut().insert(SysGraphMetadata::new(s)),
|
Some(s) => testcase.metadata_mut().insert(SysGraphMetadata::new(s)),
|
||||||
None => (),
|
None => (),
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
use std::cell::UnsafeCell;
|
use std::cell::UnsafeCell;
|
||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
use std::ops::Range;
|
use std::ops::Range;
|
||||||
use libafl::prelude::ExitKind;
|
|
||||||
use libafl::prelude::UsesInput;
|
use libafl::prelude::UsesInput;
|
||||||
use libafl_qemu::Emulator;
|
use libafl_qemu::Emulator;
|
||||||
use libafl_qemu::GuestAddr;
|
use libafl_qemu::GuestAddr;
|
||||||
@ -38,8 +37,6 @@ pub struct QemuSystemStateHelper {
|
|||||||
kerneladdr: u32,
|
kerneladdr: u32,
|
||||||
tcb_addr: u32,
|
tcb_addr: u32,
|
||||||
ready_queues: u32,
|
ready_queues: u32,
|
||||||
delay_queue: u32,
|
|
||||||
delay_queue_overflow: u32,
|
|
||||||
input_counter: Option<u64>,
|
input_counter: Option<u64>,
|
||||||
app_range: Range<u32>,
|
app_range: Range<u32>,
|
||||||
}
|
}
|
||||||
@ -50,8 +47,6 @@ impl QemuSystemStateHelper {
|
|||||||
kerneladdr: u32,
|
kerneladdr: u32,
|
||||||
tcb_addr: u32,
|
tcb_addr: u32,
|
||||||
ready_queues: u32,
|
ready_queues: u32,
|
||||||
delay_queue: u32,
|
|
||||||
delay_queue_overflow: u32,
|
|
||||||
input_counter: Option<u64>,
|
input_counter: Option<u64>,
|
||||||
app_range: Range<u32>,
|
app_range: Range<u32>,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
@ -59,8 +54,6 @@ impl QemuSystemStateHelper {
|
|||||||
kerneladdr,
|
kerneladdr,
|
||||||
tcb_addr: tcb_addr,
|
tcb_addr: tcb_addr,
|
||||||
ready_queues: ready_queues,
|
ready_queues: ready_queues,
|
||||||
delay_queue,
|
|
||||||
delay_queue_overflow,
|
|
||||||
input_counter: input_counter,
|
input_counter: input_counter,
|
||||||
app_range,
|
app_range,
|
||||||
}
|
}
|
||||||
@ -89,42 +82,11 @@ where
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn post_exec<OT>(&mut self, emulator: &Emulator, _input: &S::Input, _observers: &mut OT, _exit_kind: &mut ExitKind) {
|
fn post_exec(&mut self, emulator: &Emulator, _input: &S::Input) {
|
||||||
trigger_collection(emulator, self)
|
trigger_collection(emulator, self)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn read_freertos_list(systemstate : &mut RawFreeRTOSSystemState, emulator: &Emulator, target: u32) -> freertos::List_t {
|
|
||||||
let read : freertos::List_t = freertos::emu_lookup::lookup(emulator, target);
|
|
||||||
let listbytes : u32 = u32::try_from(std::mem::size_of::<freertos::List_t>()).unwrap();
|
|
||||||
|
|
||||||
let mut next_index = read.pxIndex;
|
|
||||||
for _j in 0..read.uxNumberOfItems {
|
|
||||||
// always jump over the xListEnd marker
|
|
||||||
if (target..target+listbytes).contains(&next_index) {
|
|
||||||
let next_item : freertos::MiniListItem_t = freertos::emu_lookup::lookup(emulator, next_index);
|
|
||||||
let new_next_index=next_item.pxNext;
|
|
||||||
systemstate.dumping_ground.insert(next_index,List_MiniItem_struct(next_item));
|
|
||||||
next_index = new_next_index;
|
|
||||||
}
|
|
||||||
let next_item : freertos::ListItem_t = freertos::emu_lookup::lookup(emulator, next_index);
|
|
||||||
// println!("Item at {}: {:?}",next_index,next_item);
|
|
||||||
assert_eq!(next_item.pvContainer,target);
|
|
||||||
let new_next_index=next_item.pxNext;
|
|
||||||
let next_tcb : TCB_t= freertos::emu_lookup::lookup(emulator,next_item.pvOwner);
|
|
||||||
// println!("TCB at {}: {:?}",next_item.pvOwner,next_tcb);
|
|
||||||
systemstate.dumping_ground.insert(next_item.pvOwner,TCB_struct(next_tcb.clone()));
|
|
||||||
systemstate.dumping_ground.insert(next_index,List_Item_struct(next_item));
|
|
||||||
next_index=new_next_index;
|
|
||||||
}
|
|
||||||
// Handle edge case where the end marker was not included yet
|
|
||||||
if (target..target+listbytes).contains(&next_index) {
|
|
||||||
let next_item : freertos::MiniListItem_t = freertos::emu_lookup::lookup(emulator, next_index);
|
|
||||||
systemstate.dumping_ground.insert(next_index,List_MiniItem_struct(next_item));
|
|
||||||
}
|
|
||||||
return read;
|
|
||||||
}
|
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
fn trigger_collection(emulator: &Emulator, h: &QemuSystemStateHelper) {
|
fn trigger_collection(emulator: &Emulator, h: &QemuSystemStateHelper) {
|
||||||
let listbytes : u32 = u32::try_from(std::mem::size_of::<freertos::List_t>()).unwrap();
|
let listbytes : u32 = u32::try_from(std::mem::size_of::<freertos::List_t>()).unwrap();
|
||||||
@ -162,20 +124,34 @@ fn trigger_collection(emulator: &Emulator, h: &QemuSystemStateHelper) {
|
|||||||
}
|
}
|
||||||
// println!("{:?}",std::str::from_utf8(¤t_tcb.pcTaskName));
|
// println!("{:?}",std::str::from_utf8(¤t_tcb.pcTaskName));
|
||||||
|
|
||||||
// Extract delay list
|
|
||||||
let mut target : u32 = h.delay_queue;
|
|
||||||
target = freertos::emu_lookup::lookup(emulator, target);
|
|
||||||
systemstate.delay_list = read_freertos_list(&mut systemstate, emulator, target);
|
|
||||||
|
|
||||||
// Extract delay list overflow
|
|
||||||
let mut target : u32 = h.delay_queue_overflow;
|
|
||||||
target = freertos::emu_lookup::lookup(emulator, target);
|
|
||||||
systemstate.delay_list_overflow = read_freertos_list(&mut systemstate, emulator, target);
|
|
||||||
|
|
||||||
// Extract priority lists
|
|
||||||
for i in 0..NUM_PRIOS {
|
for i in 0..NUM_PRIOS {
|
||||||
let target : u32 = listbytes*u32::try_from(i).unwrap()+h.ready_queues;
|
let target : u32 = listbytes*u32::try_from(i).unwrap()+h.ready_queues;
|
||||||
systemstate.prio_ready_lists[i] = read_freertos_list(&mut systemstate, emulator, target);
|
systemstate.prio_ready_lists[i] = freertos::emu_lookup::lookup(emulator, target);
|
||||||
|
// println!("List at {}: {:?}",target, systemstate.prio_ready_lists[i]);
|
||||||
|
let mut next_index = systemstate.prio_ready_lists[i].pxIndex;
|
||||||
|
for _j in 0..systemstate.prio_ready_lists[i].uxNumberOfItems {
|
||||||
|
// always jump over the xListEnd marker
|
||||||
|
if (target..target+listbytes).contains(&next_index) {
|
||||||
|
let next_item : freertos::MiniListItem_t = freertos::emu_lookup::lookup(emulator, next_index);
|
||||||
|
let new_next_index=next_item.pxNext;
|
||||||
|
systemstate.dumping_ground.insert(next_index,List_MiniItem_struct(next_item));
|
||||||
|
next_index = new_next_index;
|
||||||
|
}
|
||||||
|
let next_item : freertos::ListItem_t = freertos::emu_lookup::lookup(emulator, next_index);
|
||||||
|
// println!("Item at {}: {:?}",next_index,next_item);
|
||||||
|
assert_eq!(next_item.pvContainer,target);
|
||||||
|
let new_next_index=next_item.pxNext;
|
||||||
|
let next_tcb : TCB_t= freertos::emu_lookup::lookup(emulator,next_item.pvOwner);
|
||||||
|
// println!("TCB at {}: {:?}",next_item.pvOwner,next_tcb);
|
||||||
|
systemstate.dumping_ground.insert(next_item.pvOwner,TCB_struct(next_tcb.clone()));
|
||||||
|
systemstate.dumping_ground.insert(next_index,List_Item_struct(next_item));
|
||||||
|
next_index=new_next_index;
|
||||||
|
}
|
||||||
|
// Handle edge case where the end marker was not included yet
|
||||||
|
if (target..target+listbytes).contains(&next_index) {
|
||||||
|
let next_item : freertos::MiniListItem_t = freertos::emu_lookup::lookup(emulator, next_index);
|
||||||
|
systemstate.dumping_ground.insert(next_index,List_MiniItem_struct(next_item));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
unsafe { CURRENT_SYSTEMSTATE_VEC.push(systemstate); }
|
unsafe { CURRENT_SYSTEMSTATE_VEC.push(systemstate); }
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
//! systemstate referes to the State of a FreeRTOS fuzzing target
|
//! systemstate referes to the State of a FreeRTOS fuzzing target
|
||||||
use std::collections::hash_map::DefaultHasher;
|
use std::collections::hash_map::DefaultHasher;
|
||||||
use libafl_bolts::HasRefCnt;
|
use libafl::bolts::HasRefCnt;
|
||||||
use libafl_bolts::AsSlice;
|
use libafl::bolts::AsSlice;
|
||||||
use std::hash::Hasher;
|
use std::hash::Hasher;
|
||||||
use std::hash::Hash;
|
use std::hash::Hash;
|
||||||
use hashbrown::HashMap;
|
use hashbrown::HashMap;
|
||||||
@ -32,8 +32,6 @@ pub struct RawFreeRTOSSystemState {
|
|||||||
qemu_tick: u64,
|
qemu_tick: u64,
|
||||||
current_tcb: TCB_t,
|
current_tcb: TCB_t,
|
||||||
prio_ready_lists: [freertos::List_t; NUM_PRIOS],
|
prio_ready_lists: [freertos::List_t; NUM_PRIOS],
|
||||||
delay_list: freertos::List_t,
|
|
||||||
delay_list_overflow: freertos::List_t,
|
|
||||||
dumping_ground: HashMap<u32,freertos::rtos_struct>,
|
dumping_ground: HashMap<u32,freertos::rtos_struct>,
|
||||||
input_counter: u32,
|
input_counter: u32,
|
||||||
last_pc: Option<u64>,
|
last_pc: Option<u64>,
|
||||||
@ -42,7 +40,7 @@ pub struct RawFreeRTOSSystemState {
|
|||||||
static mut CURRENT_SYSTEMSTATE_VEC: Vec<RawFreeRTOSSystemState> = vec![];
|
static mut CURRENT_SYSTEMSTATE_VEC: Vec<RawFreeRTOSSystemState> = vec![];
|
||||||
|
|
||||||
/// A reduced version of freertos::TCB_t
|
/// A reduced version of freertos::TCB_t
|
||||||
#[derive(Debug, Default, Serialize, Deserialize, Clone)]
|
#[derive(Debug, Default, Serialize, Deserialize, Clone, PartialEq)]
|
||||||
pub struct RefinedTCB {
|
pub struct RefinedTCB {
|
||||||
pub task_name: String,
|
pub task_name: String,
|
||||||
pub priority: u32,
|
pub priority: u32,
|
||||||
@ -52,15 +50,6 @@ pub struct RefinedTCB {
|
|||||||
notify_state: u8,
|
notify_state: u8,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl PartialEq for RefinedTCB {
|
|
||||||
fn eq(&self, other: &Self) -> bool {
|
|
||||||
self.task_name == other.task_name &&
|
|
||||||
self.priority == other.priority &&
|
|
||||||
self.base_priority == other.base_priority
|
|
||||||
// && self.notify_state == other.notify_state
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Hash for RefinedTCB {
|
impl Hash for RefinedTCB {
|
||||||
fn hash<H: Hasher>(&self, state: &mut H) {
|
fn hash<H: Hasher>(&self, state: &mut H) {
|
||||||
self.task_name.hash(state);
|
self.task_name.hash(state);
|
||||||
@ -110,15 +99,13 @@ pub struct RefinedFreeRTOSSystemState {
|
|||||||
pub end_tick: u64,
|
pub end_tick: u64,
|
||||||
last_pc: Option<u64>,
|
last_pc: Option<u64>,
|
||||||
input_counter: u32,
|
input_counter: u32,
|
||||||
pub current_task: (RefinedTCB, u32),
|
pub current_task: RefinedTCB,
|
||||||
ready_list_after: Vec<(RefinedTCB, u32)>,
|
ready_list_after: Vec<RefinedTCB>,
|
||||||
delay_list_after: Vec<(RefinedTCB, u32)>,
|
|
||||||
}
|
}
|
||||||
impl PartialEq for RefinedFreeRTOSSystemState {
|
impl PartialEq for RefinedFreeRTOSSystemState {
|
||||||
fn eq(&self, other: &Self) -> bool {
|
fn eq(&self, other: &Self) -> bool {
|
||||||
self.current_task == other.current_task && self.ready_list_after == other.ready_list_after &&
|
self.current_task == other.current_task && self.ready_list_after == other.ready_list_after &&
|
||||||
self.delay_list_after == other.delay_list_after
|
self.last_pc == other.last_pc
|
||||||
// && self.last_pc == other.last_pc
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -177,4 +164,4 @@ impl HasRefCnt for FreeRTOSSystemStateMetadata {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
libafl_bolts::impl_serdeany!(FreeRTOSSystemStateMetadata);
|
libafl::impl_serdeany!(FreeRTOSSystemStateMetadata);
|
||||||
|
@ -1,13 +1,12 @@
|
|||||||
// use crate::systemstate::IRQ_INPUT_BYTES_NUMBER;
|
// use crate::systemstate::IRQ_INPUT_BYTES_NUMBER;
|
||||||
use libafl::prelude::ExitKind;
|
use libafl::prelude::{ExitKind, AsSlice};
|
||||||
use libafl::{inputs::HasTargetBytes, prelude::UsesInput};
|
use libafl::{inputs::HasTargetBytes, prelude::UsesInput};
|
||||||
use libafl_bolts::HasLen;
|
use libafl::bolts::HasLen;
|
||||||
use libafl_bolts::Named;
|
use libafl::bolts::tuples::Named;
|
||||||
use libafl_bolts::AsSlice;
|
|
||||||
use libafl::Error;
|
use libafl::Error;
|
||||||
use libafl::observers::Observer;
|
use libafl::observers::Observer;
|
||||||
use serde::{Deserialize, Serialize};
|
|
||||||
use hashbrown::HashMap;
|
use hashbrown::HashMap;
|
||||||
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
use super::{
|
use super::{
|
||||||
CURRENT_SYSTEMSTATE_VEC,
|
CURRENT_SYSTEMSTATE_VEC,
|
||||||
@ -112,59 +111,23 @@ fn tcb_list_to_vec_cached(list: List_t, dump: &mut HashMap<u32,rtos_struct>) ->
|
|||||||
}
|
}
|
||||||
/// Drains a List of raw SystemStates to produce a refined trace
|
/// Drains a List of raw SystemStates to produce a refined trace
|
||||||
fn refine_system_states(input: &mut Vec<RawFreeRTOSSystemState>) -> Vec<RefinedFreeRTOSSystemState> {
|
fn refine_system_states(input: &mut Vec<RawFreeRTOSSystemState>) -> Vec<RefinedFreeRTOSSystemState> {
|
||||||
let mut iteration_counts : HashMap<String, u32>= HashMap::new();
|
let mut ret = Vec::<RefinedFreeRTOSSystemState>::new();
|
||||||
let mut ret = Vec::<RefinedFreeRTOSSystemState>::new();
|
let mut start_tick : u64 = 0;
|
||||||
let mut start_tick : u64 = 0;
|
for mut i in input.drain(..) {
|
||||||
for mut i in input.drain(..) {
|
let mut collector = Vec::<RefinedTCB>::new();
|
||||||
let cur = RefinedTCB::from_tcb_owned(i.current_tcb);
|
for j in i.prio_ready_lists.into_iter().rev() {
|
||||||
// collect ready list
|
let mut tmp = tcb_list_to_vec_cached(j,&mut i.dumping_ground).iter().map(|x| RefinedTCB::from_tcb(x)).collect();
|
||||||
let mut collector = Vec::<RefinedTCB>::new();
|
collector.append(&mut tmp);
|
||||||
for j in i.prio_ready_lists.into_iter().rev() {
|
|
||||||
let mut tmp = tcb_list_to_vec_cached(j,&mut i.dumping_ground).iter().map(|x| RefinedTCB::from_tcb(x)).collect();
|
|
||||||
collector.append(&mut tmp);
|
|
||||||
}
|
|
||||||
// collect delay list
|
|
||||||
let mut delay_list : Vec::<RefinedTCB> = tcb_list_to_vec_cached(i.delay_list, &mut i.dumping_ground).iter().map(|x| RefinedTCB::from_tcb(x)).collect();
|
|
||||||
let mut delay_list_overflow : Vec::<RefinedTCB> = tcb_list_to_vec_cached(i.delay_list_overflow, &mut i.dumping_ground).iter().map(|x| RefinedTCB::from_tcb(x)).collect();
|
|
||||||
delay_list.append(&mut delay_list_overflow);
|
|
||||||
delay_list.sort_by(|a,b| a.task_name.cmp(&b.task_name));
|
|
||||||
|
|
||||||
// keep counts for all tasks
|
|
||||||
let _ = iteration_counts.try_insert(cur.task_name.clone(), 1);
|
|
||||||
for j in collector.iter() {let _ = iteration_counts.try_insert(j.task_name.clone(), 1);}
|
|
||||||
for j in delay_list.iter() {let _ = iteration_counts.try_insert(j.task_name.clone(), 0);}
|
|
||||||
|
|
||||||
// Ensure that async events appear in the delay list, so we the counts in all states
|
|
||||||
if let Some(lst) = ret.last() {
|
|
||||||
for a in lst.delay_list_after.iter().filter(|x| x.0.task_name.contains("async")) {
|
|
||||||
if delay_list.iter().find(|x| (*x).task_name==a.0.task_name).is_none() && cur.task_name != a.0.task_name {
|
|
||||||
delay_list.push(a.0.clone());
|
|
||||||
delay_list.sort_by(|a,b| a.task_name.cmp(&b.task_name));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// increase when:
|
|
||||||
// current and delayed afterwards
|
|
||||||
if let Some(_) = delay_list.iter().find(|x| (*x).task_name==cur.task_name) {
|
|
||||||
*iteration_counts.get_mut(&cur.task_name).unwrap()+=1;
|
|
||||||
}
|
|
||||||
|
|
||||||
let collector = collector.into_iter().map(|x| {let t = *iteration_counts.get(&x.task_name).unwrap_or(&1); (x, t)}).collect();
|
|
||||||
// let filter_delay = delay_list.into_iter().filter(|x| !x.task_name.contains("async"));
|
|
||||||
let delay_list : Vec<(RefinedTCB, u32)> = delay_list.into_iter().map(|x| {let t = *iteration_counts.get(&x.task_name).unwrap_or(&0); (x, t)}).collect();
|
|
||||||
let t = *iteration_counts.get(&cur.task_name).unwrap_or(&1);
|
|
||||||
// We don't care about the order
|
|
||||||
ret.push(RefinedFreeRTOSSystemState {
|
|
||||||
current_task: (cur, t),
|
|
||||||
start_tick: start_tick,
|
|
||||||
end_tick: i.qemu_tick,
|
|
||||||
ready_list_after: collector,
|
|
||||||
delay_list_after: delay_list,
|
|
||||||
input_counter: i.input_counter,//+IRQ_INPUT_BYTES_NUMBER,
|
|
||||||
last_pc: i.last_pc,
|
|
||||||
});
|
|
||||||
start_tick=i.qemu_tick;
|
|
||||||
}
|
}
|
||||||
return ret;
|
ret.push(RefinedFreeRTOSSystemState {
|
||||||
|
current_task: RefinedTCB::from_tcb_owned(i.current_tcb),
|
||||||
|
start_tick: start_tick,
|
||||||
|
end_tick: i.qemu_tick,
|
||||||
|
ready_list_after: collector,
|
||||||
|
input_counter: i.input_counter,//+IRQ_INPUT_BYTES_NUMBER,
|
||||||
|
last_pc: i.last_pc,
|
||||||
|
});
|
||||||
|
start_tick=i.qemu_tick;
|
||||||
|
}
|
||||||
|
return ret;
|
||||||
}
|
}
|
@ -6,13 +6,13 @@ use std::{cmp::{max, min}, mem::swap, borrow::BorrowMut};
|
|||||||
|
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
use libafl_bolts::{rands::Rand, serdeany::SerdeAny, AsSlice, HasRefCnt, HasLen};
|
|
||||||
use libafl::{
|
use libafl::{
|
||||||
|
bolts::{rands::Rand, serdeany::SerdeAny, AsSlice, HasRefCnt},
|
||||||
corpus::{Corpus, Testcase},
|
corpus::{Corpus, Testcase},
|
||||||
inputs::UsesInput,
|
inputs::UsesInput,
|
||||||
schedulers::{Scheduler, TestcaseScore, minimizer::DEFAULT_SKIP_NON_FAVORED_PROB },
|
schedulers::{Scheduler, TestcaseScore, minimizer::DEFAULT_SKIP_NON_FAVORED_PROB },
|
||||||
state::{HasCorpus, HasMetadata, HasRand, UsesState, State},
|
state::{HasCorpus, HasMetadata, HasRand, UsesState, State},
|
||||||
Error, SerdeAny, prelude::CorpusId,
|
Error, SerdeAny, prelude::HasLen,
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -55,51 +55,51 @@ where
|
|||||||
CS::State: HasCorpus + HasMetadata + HasRand,
|
CS::State: HasCorpus + HasMetadata + HasRand,
|
||||||
{
|
{
|
||||||
/// Add an entry to the corpus and return its index
|
/// Add an entry to the corpus and return its index
|
||||||
fn on_add(&mut self, state: &mut CS::State, idx: CorpusId) -> Result<(), Error> {
|
fn on_add(&self, state: &mut CS::State, idx: usize) -> Result<(), Error> {
|
||||||
let l = state.corpus()
|
let l = state.corpus()
|
||||||
.get(idx)?
|
.get(idx)?
|
||||||
.borrow()
|
.borrow()
|
||||||
.metadata_map()
|
.metadata()
|
||||||
.get::<FreeRTOSSystemStateMetadata>().map_or(0, |x| x.trace_length);
|
.get::<FreeRTOSSystemStateMetadata>().map_or(0, |x| x.trace_length);
|
||||||
self.get_update_trace_length(state,l);
|
self.get_update_trace_length(state,l);
|
||||||
self.base.on_add(state, idx)
|
self.base.on_add(state, idx)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Replaces the testcase at the given idx
|
/// Replaces the testcase at the given idx
|
||||||
// fn on_replace(
|
fn on_replace(
|
||||||
// &mut self,
|
&self,
|
||||||
// state: &mut CS::State,
|
state: &mut CS::State,
|
||||||
// idx: CorpusId,
|
idx: usize,
|
||||||
// testcase: &Testcase<<CS::State as UsesInput>::Input>,
|
testcase: &Testcase<<CS::State as UsesInput>::Input>,
|
||||||
// ) -> Result<(), Error> {
|
) -> Result<(), Error> {
|
||||||
// let l = state.corpus()
|
let l = state.corpus()
|
||||||
// .get(idx)?
|
.get(idx)?
|
||||||
// .borrow()
|
.borrow()
|
||||||
// .metadata()
|
.metadata()
|
||||||
// .get::<FreeRTOSSystemStateMetadata>().map_or(0, |x| x.trace_length);
|
.get::<FreeRTOSSystemStateMetadata>().map_or(0, |x| x.trace_length);
|
||||||
// self.get_update_trace_length(state, l);
|
self.get_update_trace_length(state, l);
|
||||||
// self.base.on_replace(state, idx, testcase)
|
self.base.on_replace(state, idx, testcase)
|
||||||
// }
|
}
|
||||||
|
|
||||||
/// Removes an entry from the corpus, returning M if M was present.
|
/// Removes an entry from the corpus, returning M if M was present.
|
||||||
// fn on_remove(
|
fn on_remove(
|
||||||
// &self,
|
&self,
|
||||||
// state: &mut CS::State,
|
state: &mut CS::State,
|
||||||
// idx: usize,
|
idx: usize,
|
||||||
// testcase: &Option<Testcase<<CS::State as UsesInput>::Input>>,
|
testcase: &Option<Testcase<<CS::State as UsesInput>::Input>>,
|
||||||
// ) -> Result<(), Error> {
|
) -> Result<(), Error> {
|
||||||
// self.base.on_remove(state, idx, testcase)?;
|
self.base.on_remove(state, idx, testcase)?;
|
||||||
// Ok(())
|
Ok(())
|
||||||
// }
|
}
|
||||||
|
|
||||||
/// Gets the next entry
|
/// Gets the next entry
|
||||||
fn next(&mut self, state: &mut CS::State) -> Result<CorpusId, Error> {
|
fn next(&self, state: &mut CS::State) -> Result<usize, Error> {
|
||||||
let mut idx = self.base.next(state)?;
|
let mut idx = self.base.next(state)?;
|
||||||
while {
|
while {
|
||||||
let l = state.corpus()
|
let l = state.corpus()
|
||||||
.get(idx)?
|
.get(idx)?
|
||||||
.borrow()
|
.borrow()
|
||||||
.metadata_map()
|
.metadata()
|
||||||
.get::<FreeRTOSSystemStateMetadata>().map_or(0, |x| x.trace_length);
|
.get::<FreeRTOSSystemStateMetadata>().map_or(0, |x| x.trace_length);
|
||||||
let m = self.get_update_trace_length(state,l);
|
let m = self.get_update_trace_length(state,l);
|
||||||
state.rand_mut().below(m) > l as u64
|
state.rand_mut().below(m) > l as u64
|
||||||
@ -118,7 +118,7 @@ where
|
|||||||
{
|
{
|
||||||
pub fn get_update_trace_length(&self, state: &mut CS::State, par: usize) -> u64 {
|
pub fn get_update_trace_length(&self, state: &mut CS::State, par: usize) -> u64 {
|
||||||
// Create a new top rated meta if not existing
|
// Create a new top rated meta if not existing
|
||||||
if let Some(td) = state.metadata_map_mut().get_mut::<LongestTracesMetadata>() {
|
if let Some(td) = state.metadata_mut().get_mut::<LongestTracesMetadata>() {
|
||||||
let m = max(td.max_trace_length, par);
|
let m = max(td.max_trace_length, par);
|
||||||
td.max_trace_length = m;
|
td.max_trace_length = m;
|
||||||
m as u64
|
m as u64
|
||||||
@ -172,18 +172,18 @@ where
|
|||||||
{
|
{
|
||||||
/// get first element in current gen,
|
/// get first element in current gen,
|
||||||
/// if current_gen is empty, swap lists, sort by FavFactor, take top k and return first
|
/// if current_gen is empty, swap lists, sort by FavFactor, take top k and return first
|
||||||
fn next(&mut self, state: &mut Self::State) -> Result<CorpusId, Error> {
|
fn next(&self, state: &mut Self::State) -> Result<usize, Error> {
|
||||||
let mut to_remove : Vec<(usize, f64)> = vec![];
|
let mut to_remove : Vec<(usize, f64)> = vec![];
|
||||||
let mut to_return : usize = 0;
|
let mut to_return : usize = 0;
|
||||||
let c = state.corpus().count();
|
let c = state.corpus().count();
|
||||||
let gm = state.metadata_map_mut().get_mut::<GeneticMetadata>().expect("Corpus Scheduler empty");
|
let gm = state.metadata_mut().get_mut::<GeneticMetadata>().expect("Corpus Scheduler empty");
|
||||||
// println!("index: {} curr: {:?} next: {:?} gen: {} corp: {}", gm.current_cursor, gm.current_gen.len(), gm.next_gen.len(), gm.gen,
|
// println!("index: {} curr: {:?} next: {:?} gen: {} corp: {}", gm.current_cursor, gm.current_gen.len(), gm.next_gen.len(), gm.gen,
|
||||||
// c);
|
// c);
|
||||||
match gm.current_gen.get(gm.current_cursor) {
|
match gm.current_gen.get(gm.current_cursor) {
|
||||||
Some(c) => {
|
Some(c) => {
|
||||||
gm.current_cursor+=1;
|
gm.current_cursor+=1;
|
||||||
// println!("normal next: {}", (*c).0);
|
// println!("normal next: {}", (*c).0);
|
||||||
return Ok((*c).0.into())
|
return Ok((*c).0)
|
||||||
},
|
},
|
||||||
None => {
|
None => {
|
||||||
swap(&mut to_remove, &mut gm.current_gen);
|
swap(&mut to_remove, &mut gm.current_gen);
|
||||||
@ -207,53 +207,53 @@ where
|
|||||||
to_remove.sort_by(|x,y| x.0.cmp(&(*y).0));
|
to_remove.sort_by(|x,y| x.0.cmp(&(*y).0));
|
||||||
to_remove.reverse();
|
to_remove.reverse();
|
||||||
for i in to_remove {
|
for i in to_remove {
|
||||||
state.corpus_mut().remove(i.0.into()).unwrap();
|
state.corpus_mut().remove(i.0).unwrap();
|
||||||
}
|
}
|
||||||
// println!("switch next: {to_return}");
|
// println!("switch next: {to_return}");
|
||||||
return Ok(to_return.into());
|
return Ok(to_return);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Add the new input to the next generation
|
/// Add the new input to the next generation
|
||||||
fn on_add(
|
fn on_add(
|
||||||
&mut self,
|
&self,
|
||||||
state: &mut Self::State,
|
state: &mut Self::State,
|
||||||
idx: CorpusId
|
idx: usize
|
||||||
) -> Result<(), Error> {
|
) -> Result<(), Error> {
|
||||||
// println!("On Add {idx}");
|
// println!("On Add {idx}");
|
||||||
let mut tc = state.corpus_mut().get(idx).unwrap().borrow_mut().clone();
|
let mut tc = state.corpus_mut().get(idx).unwrap().borrow_mut().clone();
|
||||||
let ff = MaxTimeFavFactor::compute(state, &mut tc).unwrap();
|
let ff = MaxTimeFavFactor::compute(&mut tc, state).unwrap();
|
||||||
if let Some(gm) = state.metadata_map_mut().get_mut::<GeneticMetadata>() {
|
if let Some(gm) = state.metadata_mut().get_mut::<GeneticMetadata>() {
|
||||||
gm.next_gen.push((idx.into(),ff));
|
gm.next_gen.push((idx,ff));
|
||||||
} else {
|
} else {
|
||||||
state.add_metadata(GeneticMetadata::new(vec![], vec![(idx.into(),ff)]));
|
state.add_metadata(GeneticMetadata::new(vec![], vec![(idx,ff)]));
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
// fn on_replace(
|
fn on_replace(
|
||||||
// &self,
|
&self,
|
||||||
// _state: &mut Self::State,
|
_state: &mut Self::State,
|
||||||
// _idx: usize,
|
_idx: usize,
|
||||||
// _prev: &Testcase<<Self::State as UsesInput>::Input>
|
_prev: &Testcase<<Self::State as UsesInput>::Input>
|
||||||
// ) -> Result<(), Error> {
|
) -> Result<(), Error> {
|
||||||
// // println!("On Replace {_idx}");
|
// println!("On Replace {_idx}");
|
||||||
// Ok(())
|
Ok(())
|
||||||
// }
|
}
|
||||||
|
|
||||||
// fn on_remove(
|
fn on_remove(
|
||||||
// &self,
|
&self,
|
||||||
// state: &mut Self::State,
|
state: &mut Self::State,
|
||||||
// idx: usize,
|
idx: usize,
|
||||||
// _testcase: &Option<Testcase<<Self::State as UsesInput>::Input>>
|
_testcase: &Option<Testcase<<Self::State as UsesInput>::Input>>
|
||||||
// ) -> Result<(), Error> {
|
) -> Result<(), Error> {
|
||||||
// // println!("On Remove {idx}");
|
// println!("On Remove {idx}");
|
||||||
// if let Some(gm) = state.metadata_mut().get_mut::<GeneticMetadata>() {
|
if let Some(gm) = state.metadata_mut().get_mut::<GeneticMetadata>() {
|
||||||
// gm.next_gen = gm.next_gen.drain(..).into_iter().filter(|x| (*x).0 != idx).collect::<Vec<(usize, f64)>>();
|
gm.next_gen = gm.next_gen.drain(..).into_iter().filter(|x| (*x).0 != idx).collect::<Vec<(usize, f64)>>();
|
||||||
// gm.current_gen = gm.current_gen.drain(..).into_iter().filter(|x| (*x).0 != idx).collect::<Vec<(usize, f64)>>();
|
gm.current_gen = gm.current_gen.drain(..).into_iter().filter(|x| (*x).0 != idx).collect::<Vec<(usize, f64)>>();
|
||||||
// } else {
|
} else {
|
||||||
// state.add_metadata(GeneticMetadata::new(vec![], vec![]));
|
state.add_metadata(GeneticMetadata::new(vec![], vec![]));
|
||||||
// }
|
}
|
||||||
// Ok(())
|
Ok(())
|
||||||
// }
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<S> GenerationScheduler<S>
|
impl<S> GenerationScheduler<S>
|
||||||
|
@ -4,7 +4,7 @@ use libafl::inputs::BytesInput;
|
|||||||
use libafl::inputs::HasTargetBytes;
|
use libafl::inputs::HasTargetBytes;
|
||||||
use libafl::feedbacks::MapIndexesMetadata;
|
use libafl::feedbacks::MapIndexesMetadata;
|
||||||
use libafl::corpus::Testcase;
|
use libafl::corpus::Testcase;
|
||||||
use libafl::prelude::{UsesInput};
|
use libafl::prelude::{UsesInput, AsSlice};
|
||||||
use core::marker::PhantomData;
|
use core::marker::PhantomData;
|
||||||
use libafl::schedulers::{MinimizerScheduler, TestcaseScore};
|
use libafl::schedulers::{MinimizerScheduler, TestcaseScore};
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
@ -22,12 +22,11 @@ use libafl::observers::MapObserver;
|
|||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use std::cmp;
|
use std::cmp;
|
||||||
|
|
||||||
use libafl_bolts::{
|
|
||||||
Named,
|
|
||||||
HasLen,
|
|
||||||
AsSlice,
|
|
||||||
};
|
|
||||||
use libafl::{
|
use libafl::{
|
||||||
|
bolts::{
|
||||||
|
tuples::Named,
|
||||||
|
HasLen,
|
||||||
|
},
|
||||||
observers::Observer,
|
observers::Observer,
|
||||||
Error,
|
Error,
|
||||||
};
|
};
|
||||||
@ -55,7 +54,7 @@ where
|
|||||||
S: HasCorpus + HasMetadata,
|
S: HasCorpus + HasMetadata,
|
||||||
S::Input: HasLen,
|
S::Input: HasLen,
|
||||||
{
|
{
|
||||||
fn compute(state: &S, entry: &mut Testcase<<S as UsesInput>::Input>) -> Result<f64, Error> {
|
fn compute(entry: &mut Testcase<<S as UsesInput>::Input>, state: &S) -> Result<f64, Error> {
|
||||||
// TODO maybe enforce entry.exec_time().is_some()
|
// TODO maybe enforce entry.exec_time().is_some()
|
||||||
let et = entry.exec_time().expect("testcase.exec_time is needed for scheduler");
|
let et = entry.exec_time().expect("testcase.exec_time is needed for scheduler");
|
||||||
let tns : i64 = et.as_nanos().try_into().expect("failed to convert time");
|
let tns : i64 = et.as_nanos().try_into().expect("failed to convert time");
|
||||||
@ -85,9 +84,9 @@ where
|
|||||||
S: HasCorpus + HasMetadata,
|
S: HasCorpus + HasMetadata,
|
||||||
S::Input: HasLen,
|
S::Input: HasLen,
|
||||||
{
|
{
|
||||||
fn compute( state: &S, entry: &mut Testcase<S::Input>) -> Result<f64, Error> {
|
fn compute(entry: &mut Testcase<S::Input>, state: &S) -> Result<f64, Error> {
|
||||||
let execs_per_hour = (3600.0/entry.exec_time().expect("testcase.exec_time is needed for scheduler").as_secs_f64());
|
let execs_per_hour = (3600.0/entry.exec_time().expect("testcase.exec_time is needed for scheduler").as_secs_f64());
|
||||||
let execs_times_length_per_hour = execs_per_hour*entry.load_len(state.corpus()).unwrap() as f64;
|
let execs_times_length_per_hour = execs_per_hour*entry.cached_len()? as f64;
|
||||||
Ok(execs_times_length_per_hour)
|
Ok(execs_times_length_per_hour)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -302,15 +301,14 @@ where
|
|||||||
Ok(false)
|
Ok(false)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fn append_metadata<OT>(
|
fn append_metadata(
|
||||||
&mut self,
|
&mut self,
|
||||||
_state: &mut S,
|
_state: &mut S,
|
||||||
observers: &OT,
|
|
||||||
testcase: &mut Testcase<<S as UsesInput>::Input>,
|
testcase: &mut Testcase<<S as UsesInput>::Input>,
|
||||||
) -> Result<(), Error> {
|
) -> Result<(), Error> {
|
||||||
#[cfg(feature = "feed_afl")]
|
#[cfg(feature = "feed_afl")]
|
||||||
if self.last_is_longest {
|
if self.last_is_longest {
|
||||||
let mim : Option<&mut MapIndexesMetadata>= testcase.metadata_map_mut().get_mut();
|
let mim : Option<&mut MapIndexesMetadata>= testcase.metadata_mut().get_mut();
|
||||||
// pretend that the longest input alone excercises some non-existing edge, to keep it relevant
|
// pretend that the longest input alone excercises some non-existing edge, to keep it relevant
|
||||||
mim.unwrap().list.push(usize::MAX);
|
mim.unwrap().list.push(usize::MAX);
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "baby_fuzzer"
|
name = "baby_fuzzer"
|
||||||
version = "0.10.0"
|
version = "0.7.1"
|
||||||
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
|
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
@ -21,4 +21,3 @@ debug = true
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libafl = { path = "../../libafl/" }
|
libafl = { path = "../../libafl/" }
|
||||||
libafl_bolts = { path = "../../libafl_bolts/" }
|
|
||||||
|
@ -6,5 +6,3 @@ It runs on a single core until a crash occurs and then exits.
|
|||||||
|
|
||||||
The tested program is a simple Rust function without any instrumentation.
|
The tested program is a simple Rust function without any instrumentation.
|
||||||
For real fuzzing, you will want to add some sort to add coverage or other feedback.
|
For real fuzzing, you will want to add some sort to add coverage or other feedback.
|
||||||
|
|
||||||
You can run this example using `cargo run`, and you can enable the TUI feature by running `cargo run --features tui`.
|
|
@ -4,86 +4,67 @@ from pylibafl import libafl
|
|||||||
|
|
||||||
def map_observer_wrapper(map_observer):
|
def map_observer_wrapper(map_observer):
|
||||||
if type(map_observer).__name__ == "OwnedMapObserverI32":
|
if type(map_observer).__name__ == "OwnedMapObserverI32":
|
||||||
return libafl.MapObserverI32.new_owned(map_observer)
|
return libafl.MapObserverI32.new_from_owned(map_observer)
|
||||||
|
|
||||||
def executor_wrapper(executor):
|
def executor_wrapper(executor):
|
||||||
if type(executor).__name__ == "InProcessExecutor":
|
if type(executor).__name__ == "OwnedInProcessExecutorI32":
|
||||||
return libafl.Executor.new_inprocess(executor)
|
return libafl.ExecutorI32.new_from_inprocess(executor)
|
||||||
|
|
||||||
def generator_wrapper(generator):
|
|
||||||
if type(generator).__name__ == "RandPrintablesGenerator":
|
|
||||||
return libafl.Generator.new_rand_printables(generator)
|
|
||||||
|
|
||||||
def monitor_wrapper(monitor):
|
def monitor_wrapper(monitor):
|
||||||
return monitor.as_monitor()
|
if type(monitor).__name__ == "SimpleMonitor":
|
||||||
|
return libafl.Monitor.new_from_simple(monitor)
|
||||||
|
|
||||||
def event_manager_wrapper(event_manager):
|
def event_manager_wrapper(event_manager):
|
||||||
return event_manager.as_manager()
|
if type(event_manager).__name__ == "SimpleEventManager":
|
||||||
|
return libafl.EventManagerI32.new_from_simple(event_manager)
|
||||||
|
|
||||||
def corpus_wrapper(corpus):
|
def corpus_wrapper(corpus):
|
||||||
if type(corpus).__name__ == "InMemoryCorpus":
|
if type(corpus).__name__ == "InMemoryCorpus":
|
||||||
return libafl.Corpus.new_in_memory(corpus)
|
return libafl.Corpus.new_from_in_memory(corpus)
|
||||||
if type(corpus).__name__ == "OnDiskCorpus":
|
if type(corpus).__name__ == "OnDiskCorpus":
|
||||||
return libafl.Corpus.new_on_disk(corpus)
|
return libafl.Corpus.new_from_on_disk(corpus)
|
||||||
|
|
||||||
def rand_wrapper(rand):
|
def rand_wrapper(rand):
|
||||||
if type(rand).__name__ == "StdRand":
|
if type(rand).__name__ == "StdRand":
|
||||||
return libafl.Rand.new_std(rand)
|
return libafl.Rand.new_from_std(rand)
|
||||||
|
|
||||||
def mutator_wrapper(mutator):
|
|
||||||
if type(mutator).__name__ == "StdHavocMutator":
|
|
||||||
return libafl.Mutator.new_std_havoc(mutator)
|
|
||||||
|
|
||||||
def stage_wrapper(stage):
|
def stage_wrapper(stage):
|
||||||
if type(stage).__name__ == "StdMutationalStage":
|
if type(stage).__name__ == "StdScheduledHavocMutationsStageI32":
|
||||||
return libafl.Stage.new_std_mutational(stage)
|
return libafl.StageI32.new_from_std_scheduled(stage)
|
||||||
|
|
||||||
# CODE WRITTEN BY USER
|
# CODE WRITTEN BY USER
|
||||||
import logging
|
|
||||||
logging.basicConfig(level=logging.INFO)
|
def harness(inp):
|
||||||
|
if len(inp.hex()) >= 2 and inp.hex()[:2] == '61':
|
||||||
|
raise Exception("NOOOOOO =)")
|
||||||
|
|
||||||
map_observer = libafl.OwnedMapObserverI32("signals", [0] * 16)
|
map_observer = libafl.OwnedMapObserverI32("signals", [0] * 16)
|
||||||
|
|
||||||
def harness(inp):
|
feedback_state = libafl.MapFeedbackStateI32.with_observer(map_observer_wrapper(map_observer))
|
||||||
#print(inp)
|
|
||||||
map_observer[0] = 1
|
|
||||||
if len(inp) > 0 and inp[0] == ord('a'):
|
|
||||||
map_observer[1] = 1
|
|
||||||
if len(inp) > 1 and inp[1] == ord('b'):
|
|
||||||
map_observer[2] = 1
|
|
||||||
if len(inp) > 2 and inp[2] == ord('c'):
|
|
||||||
map_observer[3] = 1
|
|
||||||
raise Exception("NOOOOOO =)")
|
|
||||||
|
|
||||||
feedback = libafl.MaxMapFeedbackI32(map_observer_wrapper(map_observer))
|
feedback = libafl.MaxMapFeedbackI32(feedback_state, map_observer_wrapper(map_observer))
|
||||||
objective = libafl.CrashFeedback()
|
|
||||||
|
|
||||||
state = libafl.StdState(
|
state = libafl.StdStateI32(
|
||||||
rand_wrapper(libafl.StdRand.with_current_nanos()),
|
rand_wrapper(libafl.StdRand.with_current_nanos()),
|
||||||
corpus_wrapper(libafl.InMemoryCorpus()),
|
corpus_wrapper(libafl.InMemoryCorpus()),
|
||||||
corpus_wrapper(libafl.OnDiskCorpus("./crashes")),
|
corpus_wrapper(libafl.OnDiskCorpus("./crashes")),
|
||||||
feedback.as_feedback(),
|
feedback_state
|
||||||
objective.as_feedback(),
|
|
||||||
)
|
)
|
||||||
|
|
||||||
monitor = libafl.SimpleMonitor(lambda x: print(x))
|
monitor = libafl.SimpleMonitor()
|
||||||
|
|
||||||
mgr = libafl.SimpleEventManager(monitor_wrapper(monitor))
|
mgr = libafl.SimpleEventManager(monitor_wrapper(monitor))
|
||||||
|
|
||||||
fuzzer = libafl.StdFuzzer(feedback.as_feedback(), objective.as_feedback())
|
fuzzer = libafl.StdFuzzerI32(feedback)
|
||||||
|
|
||||||
observers = libafl.ObserversTuple([libafl.Observer.new_map_i32(map_observer_wrapper(map_observer))])
|
executor = libafl.OwnedInProcessExecutorI32(harness, map_observer_wrapper(map_observer), fuzzer, state, event_manager_wrapper(mgr))
|
||||||
|
|
||||||
executor = libafl.InProcessExecutor(harness, observers, fuzzer, state, event_manager_wrapper(mgr))
|
generator = libafl.RandPrintablesGeneratorI32(32)
|
||||||
|
|
||||||
generator = libafl.RandPrintablesGenerator(32)
|
state.generate_initial_inputs(fuzzer, executor_wrapper(executor), generator, event_manager_wrapper(mgr), 8)
|
||||||
|
|
||||||
state.generate_initial_inputs(fuzzer, executor_wrapper(executor), generator_wrapper(generator), event_manager_wrapper(mgr), 3)
|
stage = libafl.StdScheduledHavocMutationsStageI32.new_from_scheduled_havoc_mutations()
|
||||||
|
|
||||||
mutator = libafl.StdHavocMutator()
|
stage_tuple_list = libafl.StagesOwnedListI32(stage_wrapper(stage))
|
||||||
|
|
||||||
stage = libafl.StdMutationalStage(mutator_wrapper(mutator))
|
fuzzer.fuzz_loop(executor_wrapper(executor), state, event_manager_wrapper(mgr), stage_tuple_list)
|
||||||
|
|
||||||
stages = libafl.StagesTuple([stage_wrapper(stage)])
|
|
||||||
|
|
||||||
fuzzer.fuzz_loop(executor_wrapper(executor), state, event_manager_wrapper(mgr), stages)
|
|
@ -1,12 +1,13 @@
|
|||||||
|
use std::path::PathBuf;
|
||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
use std::ptr::write_volatile;
|
use std::ptr::write_volatile;
|
||||||
use std::{path::PathBuf, ptr::write};
|
|
||||||
|
|
||||||
#[cfg(feature = "tui")]
|
#[cfg(feature = "tui")]
|
||||||
use libafl::monitors::tui::{ui::TuiUI, TuiMonitor};
|
use libafl::monitors::tui::TuiMonitor;
|
||||||
#[cfg(not(feature = "tui"))]
|
#[cfg(not(feature = "tui"))]
|
||||||
use libafl::monitors::SimpleMonitor;
|
use libafl::monitors::SimpleMonitor;
|
||||||
use libafl::{
|
use libafl::{
|
||||||
|
bolts::{current_nanos, rands::StdRand, tuples::tuple_list, AsSlice},
|
||||||
corpus::{InMemoryCorpus, OnDiskCorpus},
|
corpus::{InMemoryCorpus, OnDiskCorpus},
|
||||||
events::SimpleEventManager,
|
events::SimpleEventManager,
|
||||||
executors::{inprocess::InProcessExecutor, ExitKind},
|
executors::{inprocess::InProcessExecutor, ExitKind},
|
||||||
@ -20,18 +21,16 @@ use libafl::{
|
|||||||
stages::mutational::StdMutationalStage,
|
stages::mutational::StdMutationalStage,
|
||||||
state::StdState,
|
state::StdState,
|
||||||
};
|
};
|
||||||
use libafl_bolts::{current_nanos, rands::StdRand, tuples::tuple_list, AsSlice};
|
|
||||||
|
|
||||||
/// Coverage map with explicit assignments due to the lack of instrumentation
|
/// Coverage map with explicit assignments due to the lack of instrumentation
|
||||||
static mut SIGNALS: [u8; 16] = [0; 16];
|
static mut SIGNALS: [u8; 16] = [0; 16];
|
||||||
static mut SIGNALS_PTR: *mut u8 = unsafe { SIGNALS.as_mut_ptr() };
|
|
||||||
|
|
||||||
/// Assign a signal to the signals map
|
/// Assign a signal to the signals map
|
||||||
fn signals_set(idx: usize) {
|
fn signals_set(idx: usize) {
|
||||||
unsafe { write(SIGNALS_PTR.add(idx), 1) };
|
unsafe { SIGNALS[idx] = 1 };
|
||||||
}
|
}
|
||||||
|
|
||||||
#[allow(clippy::similar_names, clippy::manual_assert)]
|
#[allow(clippy::similar_names)]
|
||||||
pub fn main() {
|
pub fn main() {
|
||||||
// The closure that we want to fuzz
|
// The closure that we want to fuzz
|
||||||
let mut harness = |input: &BytesInput| {
|
let mut harness = |input: &BytesInput| {
|
||||||
@ -61,7 +60,8 @@ pub fn main() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Create an observation channel using the signals map
|
// Create an observation channel using the signals map
|
||||||
let observer = unsafe { StdMapObserver::from_mut_ptr("signals", SIGNALS_PTR, SIGNALS.len()) };
|
let observer =
|
||||||
|
unsafe { StdMapObserver::new_from_ptr("signals", SIGNALS.as_mut_ptr(), SIGNALS.len()) };
|
||||||
|
|
||||||
// Feedback to rate the interestingness of an input
|
// Feedback to rate the interestingness of an input
|
||||||
let mut feedback = MaxMapFeedback::new(&observer);
|
let mut feedback = MaxMapFeedback::new(&observer);
|
||||||
@ -88,11 +88,9 @@ pub fn main() {
|
|||||||
|
|
||||||
// The Monitor trait define how the fuzzer stats are displayed to the user
|
// The Monitor trait define how the fuzzer stats are displayed to the user
|
||||||
#[cfg(not(feature = "tui"))]
|
#[cfg(not(feature = "tui"))]
|
||||||
let mon = SimpleMonitor::new(|s| println!("{s}"));
|
let mon = SimpleMonitor::new(|s| println!("{}", s));
|
||||||
#[cfg(feature = "tui")]
|
#[cfg(feature = "tui")]
|
||||||
let ui = TuiUI::with_version(String::from("Baby Fuzzer"), String::from("0.0.1"), false);
|
let mon = TuiMonitor::new(String::from("Baby Fuzzer"), false);
|
||||||
#[cfg(feature = "tui")]
|
|
||||||
let mon = TuiMonitor::new(ui);
|
|
||||||
|
|
||||||
// The event manager handle the various events generated during the fuzzing loop
|
// The event manager handle the various events generated during the fuzzing loop
|
||||||
// such as the notification of the addition of a new item to the corpus
|
// such as the notification of the addition of a new item to the corpus
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "baby_fuzzer_gramatron"
|
name = "baby_fuzzer_gramatron"
|
||||||
version = "0.11.1"
|
version = "0.8.2"
|
||||||
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
|
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
@ -20,5 +20,4 @@ debug = true
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libafl = { path = "../../libafl/" }
|
libafl = { path = "../../libafl/" }
|
||||||
libafl_bolts = { path = "../../libafl_bolts/" }
|
postcard = "0.7"
|
||||||
postcard = { version = "1.0", features = ["alloc"], default-features = false } # no_std compatible serde serialization format
|
|
||||||
|
@ -7,6 +7,7 @@ use std::{
|
|||||||
};
|
};
|
||||||
|
|
||||||
use libafl::{
|
use libafl::{
|
||||||
|
bolts::{current_nanos, rands::StdRand, tuples::tuple_list},
|
||||||
corpus::{InMemoryCorpus, OnDiskCorpus},
|
corpus::{InMemoryCorpus, OnDiskCorpus},
|
||||||
events::SimpleEventManager,
|
events::SimpleEventManager,
|
||||||
executors::{inprocess::InProcessExecutor, ExitKind},
|
executors::{inprocess::InProcessExecutor, ExitKind},
|
||||||
@ -24,15 +25,13 @@ use libafl::{
|
|||||||
stages::mutational::StdMutationalStage,
|
stages::mutational::StdMutationalStage,
|
||||||
state::StdState,
|
state::StdState,
|
||||||
};
|
};
|
||||||
use libafl_bolts::{current_nanos, rands::StdRand, tuples::tuple_list};
|
|
||||||
|
|
||||||
/// Coverage map with explicit assignments due to the lack of instrumentation
|
/// Coverage map with explicit assignments due to the lack of instrumentation
|
||||||
static mut SIGNALS: [u8; 16] = [0; 16];
|
static mut SIGNALS: [u8; 16] = [0; 16];
|
||||||
static mut SIGNALS_PTR: *mut u8 = unsafe { SIGNALS.as_mut_ptr() };
|
|
||||||
/*
|
/*
|
||||||
/// Assign a signal to the signals map
|
/// Assign a signal to the signals map
|
||||||
fn signals_set(idx: usize) {
|
fn signals_set(idx: usize) {
|
||||||
unsafe { std::ptr::write(SIGNALS_PTR.add(idx), 1) };
|
unsafe { SIGNALS[idx] = 1 };
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -58,7 +57,7 @@ pub fn main() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Create an observation channel using the signals map
|
// Create an observation channel using the signals map
|
||||||
let observer = unsafe { StdMapObserver::from_mut_ptr("signals", SIGNALS_PTR, SIGNALS.len()) };
|
let observer = StdMapObserver::new("signals", unsafe { &mut SIGNALS });
|
||||||
|
|
||||||
// Feedback to rate the interestingness of an input
|
// Feedback to rate the interestingness of an input
|
||||||
let mut feedback = MaxMapFeedback::new(&observer);
|
let mut feedback = MaxMapFeedback::new(&observer);
|
||||||
@ -84,7 +83,7 @@ pub fn main() {
|
|||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
// The Monitor trait define how the fuzzer stats are reported to the user
|
// The Monitor trait define how the fuzzer stats are reported to the user
|
||||||
let monitor = SimpleMonitor::new(|s| println!("{s}"));
|
let monitor = SimpleMonitor::new(|s| println!("{}", s));
|
||||||
|
|
||||||
// The event manager handle the various events generated during the fuzzing loop
|
// The event manager handle the various events generated during the fuzzing loop
|
||||||
// such as the notification of the addition of a new item to the corpus
|
// such as the notification of the addition of a new item to the corpus
|
||||||
@ -123,7 +122,7 @@ pub fn main() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let mut set = HashSet::new();
|
let mut set = HashSet::new();
|
||||||
let st = libafl_bolts::current_milliseconds();
|
let st = libafl::bolts::current_milliseconds();
|
||||||
let mut b = vec![];
|
let mut b = vec![];
|
||||||
let mut c = 0;
|
let mut c = 0;
|
||||||
for _ in 0..100000 {
|
for _ in 0..100000 {
|
||||||
@ -132,7 +131,7 @@ pub fn main() {
|
|||||||
set.insert(calculate_hash(&b));
|
set.insert(calculate_hash(&b));
|
||||||
c += b.len();
|
c += b.len();
|
||||||
}
|
}
|
||||||
println!("{} / {}", c, libafl_bolts::current_milliseconds() - st);
|
println!("{} / {}", c, libafl::bolts::current_milliseconds() - st);
|
||||||
println!("{} / 100000", set.len());
|
println!("{} / 100000", set.len());
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "baby_fuzzer_grimoire"
|
name = "baby_fuzzer_grimoire"
|
||||||
version = "0.11.1"
|
version = "0.8.2"
|
||||||
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
|
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
@ -20,4 +20,3 @@ debug = true
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libafl = { path = "../../libafl/" }
|
libafl = { path = "../../libafl/" }
|
||||||
libafl_bolts = { path = "../../libafl_bolts/" }
|
|
||||||
|
@ -1,14 +1,15 @@
|
|||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
use std::ptr::write_volatile;
|
use std::ptr::write_volatile;
|
||||||
use std::{fs, io::Read, path::PathBuf, ptr::write};
|
use std::{fs, io::Read, path::PathBuf};
|
||||||
|
|
||||||
use libafl::{
|
use libafl::{
|
||||||
|
bolts::{current_nanos, rands::StdRand, tuples::tuple_list, AsSlice},
|
||||||
corpus::{InMemoryCorpus, OnDiskCorpus},
|
corpus::{InMemoryCorpus, OnDiskCorpus},
|
||||||
events::SimpleEventManager,
|
events::SimpleEventManager,
|
||||||
executors::{inprocess::InProcessExecutor, ExitKind},
|
executors::{inprocess::InProcessExecutor, ExitKind},
|
||||||
feedbacks::{CrashFeedback, MaxMapFeedback},
|
feedbacks::{CrashFeedback, MaxMapFeedback},
|
||||||
fuzzer::{Evaluator, Fuzzer, StdFuzzer},
|
fuzzer::{Evaluator, Fuzzer, StdFuzzer},
|
||||||
inputs::{BytesInput, HasTargetBytes},
|
inputs::{GeneralizedInput, HasTargetBytes},
|
||||||
monitors::SimpleMonitor,
|
monitors::SimpleMonitor,
|
||||||
mutators::{
|
mutators::{
|
||||||
havoc_mutations, scheduled::StdScheduledMutator, GrimoireExtensionMutator,
|
havoc_mutations, scheduled::StdScheduledMutator, GrimoireExtensionMutator,
|
||||||
@ -20,14 +21,13 @@ use libafl::{
|
|||||||
stages::{mutational::StdMutationalStage, GeneralizationStage},
|
stages::{mutational::StdMutationalStage, GeneralizationStage},
|
||||||
state::{HasMetadata, StdState},
|
state::{HasMetadata, StdState},
|
||||||
};
|
};
|
||||||
use libafl_bolts::{current_nanos, rands::StdRand, tuples::tuple_list, AsSlice};
|
|
||||||
|
|
||||||
/// Coverage map with explicit assignments due to the lack of instrumentation
|
/// Coverage map with explicit assignments due to the lack of instrumentation
|
||||||
static mut SIGNALS: [u8; 16] = [0; 16];
|
static mut SIGNALS: [u8; 16] = [0; 16];
|
||||||
static mut SIGNALS_PTR: *mut u8 = unsafe { SIGNALS.as_mut_ptr() };
|
|
||||||
/// Assign a signal to the signals map
|
/// Assign a signal to the signals map
|
||||||
fn signals_set(idx: usize) {
|
fn signals_set(idx: usize) {
|
||||||
unsafe { write(SIGNALS_PTR.add(idx), 1) };
|
unsafe { SIGNALS[idx] = 1 };
|
||||||
}
|
}
|
||||||
|
|
||||||
fn is_sub<T: PartialEq>(mut haystack: &[T], needle: &[T]) -> bool {
|
fn is_sub<T: PartialEq>(mut haystack: &[T], needle: &[T]) -> bool {
|
||||||
@ -59,13 +59,13 @@ pub fn main() {
|
|||||||
let mut file = fs::File::open(path).expect("no file found");
|
let mut file = fs::File::open(path).expect("no file found");
|
||||||
let mut buffer = vec![];
|
let mut buffer = vec![];
|
||||||
file.read_to_end(&mut buffer).expect("buffer overflow");
|
file.read_to_end(&mut buffer).expect("buffer overflow");
|
||||||
let input = BytesInput::new(buffer);
|
let input = GeneralizedInput::new(buffer);
|
||||||
initial_inputs.push(input);
|
initial_inputs.push(input);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// The closure that we want to fuzz
|
// The closure that we want to fuzz
|
||||||
let mut harness = |input: &BytesInput| {
|
let mut harness = |input: &GeneralizedInput| {
|
||||||
let target_bytes = input.target_bytes();
|
let target_bytes = input.target_bytes();
|
||||||
let bytes = target_bytes.as_slice();
|
let bytes = target_bytes.as_slice();
|
||||||
|
|
||||||
@ -77,14 +77,21 @@ pub fn main() {
|
|||||||
signals_set(3);
|
signals_set(3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsafe {
|
||||||
|
if input.grimoire_mutated {
|
||||||
|
// println!(">>> {:?}", input.generalized());
|
||||||
|
println!(">>> {:?}", std::str::from_utf8_unchecked(bytes));
|
||||||
|
}
|
||||||
|
}
|
||||||
signals_set(1);
|
signals_set(1);
|
||||||
ExitKind::Ok
|
ExitKind::Ok
|
||||||
};
|
};
|
||||||
|
|
||||||
// Create an observation channel using the signals map
|
// Create an observation channel using the signals map
|
||||||
let observer = unsafe { StdMapObserver::from_mut_ptr("signals", SIGNALS_PTR, SIGNALS.len()) };
|
let observer = StdMapObserver::new("signals", unsafe { &mut SIGNALS });
|
||||||
|
|
||||||
// Feedback to rate the interestingness of an input
|
// Feedback to rate the interestingness of an input
|
||||||
let mut feedback = MaxMapFeedback::tracking(&observer, false, true);
|
let mut feedback = MaxMapFeedback::new_tracking(&observer, false, true);
|
||||||
|
|
||||||
// A feedback to choose if an input is a solution or not
|
// A feedback to choose if an input is a solution or not
|
||||||
let mut objective = CrashFeedback::new();
|
let mut objective = CrashFeedback::new();
|
||||||
@ -106,12 +113,12 @@ pub fn main() {
|
|||||||
)
|
)
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
if state.metadata_map().get::<Tokens>().is_none() {
|
if state.metadata().get::<Tokens>().is_none() {
|
||||||
state.add_metadata(Tokens::from([b"FOO".to_vec(), b"BAR".to_vec()]));
|
state.add_metadata(Tokens::from([b"FOO".to_vec(), b"BAR".to_vec()]));
|
||||||
}
|
}
|
||||||
|
|
||||||
// The Monitor trait define how the fuzzer stats are reported to the user
|
// The Monitor trait define how the fuzzer stats are reported to the user
|
||||||
let monitor = SimpleMonitor::new(|s| println!("{s}"));
|
let monitor = SimpleMonitor::new(|s| println!("{}", s));
|
||||||
|
|
||||||
// The event manager handle the various events generated during the fuzzing loop
|
// The event manager handle the various events generated during the fuzzing loop
|
||||||
// such as the notification of the addition of a new item to the corpus
|
// such as the notification of the addition of a new item to the corpus
|
||||||
@ -151,7 +158,7 @@ pub fn main() {
|
|||||||
let mut stages = tuple_list!(
|
let mut stages = tuple_list!(
|
||||||
generalization,
|
generalization,
|
||||||
StdMutationalStage::new(mutator),
|
StdMutationalStage::new(mutator),
|
||||||
StdMutationalStage::transforming(grimoire_mutator)
|
StdMutationalStage::new(grimoire_mutator)
|
||||||
);
|
);
|
||||||
|
|
||||||
for input in initial_inputs {
|
for input in initial_inputs {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "baby_fuzzer_minimizing"
|
name = "baby_fuzzer_minimizing"
|
||||||
version = "0.11.1"
|
version = "0.8.2"
|
||||||
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>", "Addison Crump <research@addisoncrump.info>"]
|
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>", "Addison Crump <research@addisoncrump.info>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
@ -21,4 +21,3 @@ debug = true
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libafl = { path = "../../libafl/", features = ["prelude"] }
|
libafl = { path = "../../libafl/", features = ["prelude"] }
|
||||||
libafl_bolts = { path = "../../libafl_bolts/", features = ["prelude"] }
|
|
||||||
|
@ -1,17 +1,15 @@
|
|||||||
|
use std::path::PathBuf;
|
||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
use std::ptr::write_volatile;
|
use std::ptr::write_volatile;
|
||||||
use std::{path::PathBuf, ptr::write};
|
|
||||||
|
|
||||||
use libafl::prelude::*;
|
use libafl::prelude::*;
|
||||||
use libafl_bolts::prelude::*;
|
|
||||||
|
|
||||||
/// Coverage map with explicit assignments due to the lack of instrumentation
|
/// Coverage map with explicit assignments due to the lack of instrumentation
|
||||||
static mut SIGNALS: [u8; 16] = [0; 16];
|
static mut SIGNALS: [u8; 16] = [0; 16];
|
||||||
static mut SIGNALS_PTR: *mut u8 = unsafe { SIGNALS.as_mut_ptr() };
|
|
||||||
|
|
||||||
/// Assign a signal to the signals map
|
/// Assign a signal to the signals map
|
||||||
fn signals_set(idx: usize) {
|
fn signals_set(idx: usize) {
|
||||||
unsafe { write(SIGNALS_PTR.add(idx), 1) };
|
unsafe { SIGNALS[idx] = 1 };
|
||||||
}
|
}
|
||||||
|
|
||||||
#[allow(clippy::similar_names)]
|
#[allow(clippy::similar_names)]
|
||||||
@ -34,9 +32,10 @@ pub fn main() -> Result<(), Error> {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Create an observation channel using the signals map
|
// Create an observation channel using the signals map
|
||||||
let observer = unsafe { StdMapObserver::from_mut_ptr("signals", SIGNALS_PTR, SIGNALS.len()) };
|
let observer =
|
||||||
|
unsafe { StdMapObserver::new_from_ptr("signals", SIGNALS.as_mut_ptr(), SIGNALS.len()) };
|
||||||
|
|
||||||
let factory = MapEqualityFactory::with_observer(&observer);
|
let factory = MapEqualityFactory::new_from_observer(&observer);
|
||||||
|
|
||||||
// Feedback to rate the interestingness of an input
|
// Feedback to rate the interestingness of an input
|
||||||
let mut feedback = MaxMapFeedback::new(&observer);
|
let mut feedback = MaxMapFeedback::new(&observer);
|
||||||
@ -45,7 +44,7 @@ pub fn main() -> Result<(), Error> {
|
|||||||
let mut objective = CrashFeedback::new();
|
let mut objective = CrashFeedback::new();
|
||||||
|
|
||||||
// The Monitor trait define how the fuzzer stats are displayed to the user
|
// The Monitor trait define how the fuzzer stats are displayed to the user
|
||||||
let mon = SimpleMonitor::new(|s| println!("{s}"));
|
let mon = SimpleMonitor::new(|s| println!("{}", s));
|
||||||
|
|
||||||
let mut mgr = SimpleEventManager::new(mon);
|
let mut mgr = SimpleEventManager::new(mon);
|
||||||
|
|
||||||
@ -57,7 +56,7 @@ pub fn main() -> Result<(), Error> {
|
|||||||
// RNG
|
// RNG
|
||||||
StdRand::with_seed(current_nanos()),
|
StdRand::with_seed(current_nanos()),
|
||||||
// Corpus that will be evolved, we keep it in memory for performance
|
// Corpus that will be evolved, we keep it in memory for performance
|
||||||
InMemoryOnDiskCorpus::new(&corpus_dir).unwrap(),
|
OnDiskCorpus::new(&corpus_dir).unwrap(),
|
||||||
// Corpus in which we store solutions (crashes in this example),
|
// Corpus in which we store solutions (crashes in this example),
|
||||||
// on disk so the user can get them after stopping the fuzzer
|
// on disk so the user can get them after stopping the fuzzer
|
||||||
OnDiskCorpus::new(&solution_dir).unwrap(),
|
OnDiskCorpus::new(&solution_dir).unwrap(),
|
||||||
@ -109,7 +108,7 @@ pub fn main() -> Result<(), Error> {
|
|||||||
|
|
||||||
let mut state = StdState::new(
|
let mut state = StdState::new(
|
||||||
StdRand::with_seed(current_nanos()),
|
StdRand::with_seed(current_nanos()),
|
||||||
InMemoryOnDiskCorpus::new(minimized_dir).unwrap(),
|
OnDiskCorpus::new(&minimized_dir).unwrap(),
|
||||||
InMemoryCorpus::new(),
|
InMemoryCorpus::new(),
|
||||||
&mut (),
|
&mut (),
|
||||||
&mut (),
|
&mut (),
|
||||||
@ -117,7 +116,7 @@ pub fn main() -> Result<(), Error> {
|
|||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
// The Monitor trait define how the fuzzer stats are displayed to the user
|
// The Monitor trait define how the fuzzer stats are displayed to the user
|
||||||
let mon = SimpleMonitor::new(|s| println!("{s}"));
|
let mon = SimpleMonitor::new(|s| println!("{}", s));
|
||||||
|
|
||||||
let mut mgr = SimpleEventManager::new(mon);
|
let mut mgr = SimpleEventManager::new(mon);
|
||||||
|
|
||||||
@ -137,13 +136,7 @@ pub fn main() -> Result<(), Error> {
|
|||||||
let mut executor = InProcessExecutor::new(&mut harness, (), &mut fuzzer, &mut state, &mut mgr)?;
|
let mut executor = InProcessExecutor::new(&mut harness, (), &mut fuzzer, &mut state, &mut mgr)?;
|
||||||
|
|
||||||
state.load_initial_inputs_forced(&mut fuzzer, &mut executor, &mut mgr, &[solution_dir])?;
|
state.load_initial_inputs_forced(&mut fuzzer, &mut executor, &mut mgr, &[solution_dir])?;
|
||||||
stages.perform_all(
|
stages.perform_all(&mut fuzzer, &mut executor, &mut state, &mut mgr, 0)?;
|
||||||
&mut fuzzer,
|
|
||||||
&mut executor,
|
|
||||||
&mut state,
|
|
||||||
&mut mgr,
|
|
||||||
CorpusId::from(0_usize),
|
|
||||||
)?;
|
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "baby_fuzzer_nautilus"
|
name = "baby_fuzzer_nautilus"
|
||||||
version = "0.11.1"
|
version = "0.8.2"
|
||||||
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
|
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
|
||||||
edition = "2021"
|
edition = "2018"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
@ -20,4 +20,3 @@ debug = true
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libafl = { path = "../../libafl/", features = ["default", "nautilus"] }
|
libafl = { path = "../../libafl/", features = ["default", "nautilus"] }
|
||||||
libafl_bolts = { path = "../../libafl_bolts/" }
|
|
||||||
|
@ -3,6 +3,7 @@ use std::path::PathBuf;
|
|||||||
use std::ptr::write_volatile;
|
use std::ptr::write_volatile;
|
||||||
|
|
||||||
use libafl::{
|
use libafl::{
|
||||||
|
bolts::{current_nanos, rands::StdRand, tuples::tuple_list},
|
||||||
corpus::{InMemoryCorpus, OnDiskCorpus},
|
corpus::{InMemoryCorpus, OnDiskCorpus},
|
||||||
events::SimpleEventManager,
|
events::SimpleEventManager,
|
||||||
executors::{inprocess::InProcessExecutor, ExitKind},
|
executors::{inprocess::InProcessExecutor, ExitKind},
|
||||||
@ -20,15 +21,13 @@ use libafl::{
|
|||||||
stages::mutational::StdMutationalStage,
|
stages::mutational::StdMutationalStage,
|
||||||
state::{HasMetadata, StdState},
|
state::{HasMetadata, StdState},
|
||||||
};
|
};
|
||||||
use libafl_bolts::{current_nanos, rands::StdRand, tuples::tuple_list};
|
|
||||||
|
|
||||||
/// Coverage map with explicit assignments due to the lack of instrumentation
|
/// Coverage map with explicit assignments due to the lack of instrumentation
|
||||||
static mut SIGNALS: [u8; 16] = [0; 16];
|
static mut SIGNALS: [u8; 16] = [0; 16];
|
||||||
static mut SIGNALS_PTR: *mut u8 = unsafe { SIGNALS.as_mut_ptr() };
|
|
||||||
/*
|
/*
|
||||||
/// Assign a signal to the signals map
|
/// Assign a signal to the signals map
|
||||||
fn signals_set(idx: usize) {
|
fn signals_set(idx: usize) {
|
||||||
unsafe { str::ptr::write(SIGNALS_PTR.add(idx), 1) };
|
unsafe { SIGNALS[idx] = 1 };
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -47,7 +46,7 @@ pub fn main() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Create an observation channel using the signals map
|
// Create an observation channel using the signals map
|
||||||
let observer = unsafe { StdMapObserver::from_mut_ptr("signals", SIGNALS_PTR, SIGNALS.len()) };
|
let observer = StdMapObserver::new("signals", unsafe { &mut SIGNALS });
|
||||||
|
|
||||||
// Feedback to rate the interestingness of an input
|
// Feedback to rate the interestingness of an input
|
||||||
let mut feedback = feedback_or!(
|
let mut feedback = feedback_or!(
|
||||||
@ -75,16 +74,12 @@ pub fn main() {
|
|||||||
)
|
)
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
if state
|
if state.metadata().get::<NautilusChunksMetadata>().is_none() {
|
||||||
.metadata_map()
|
|
||||||
.get::<NautilusChunksMetadata>()
|
|
||||||
.is_none()
|
|
||||||
{
|
|
||||||
state.add_metadata(NautilusChunksMetadata::new("/tmp/".into()));
|
state.add_metadata(NautilusChunksMetadata::new("/tmp/".into()));
|
||||||
}
|
}
|
||||||
|
|
||||||
// The Monitor trait define how the fuzzer stats are reported to the user
|
// The Monitor trait define how the fuzzer stats are reported to the user
|
||||||
let monitor = SimpleMonitor::new(|s| println!("{s}"));
|
let monitor = SimpleMonitor::new(|s| println!("{}", s));
|
||||||
|
|
||||||
// The event manager handle the various events generated during the fuzzing loop
|
// The event manager handle the various events generated during the fuzzing loop
|
||||||
// such as the notification of the addition of a new item to the corpus
|
// such as the notification of the addition of a new item to the corpus
|
||||||
@ -122,7 +117,7 @@ pub fn main() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let mut set = HashSet::new();
|
let mut set = HashSet::new();
|
||||||
let st = libafl_bolts::current_milliseconds();
|
let st = libafl::bolts::current_milliseconds();
|
||||||
let mut b = vec![];
|
let mut b = vec![];
|
||||||
let mut c = 0;
|
let mut c = 0;
|
||||||
for _ in 0..100000 {
|
for _ in 0..100000 {
|
||||||
@ -131,7 +126,7 @@ pub fn main() {
|
|||||||
set.insert(calculate_hash(&b));
|
set.insert(calculate_hash(&b));
|
||||||
c += b.len();
|
c += b.len();
|
||||||
}
|
}
|
||||||
println!("{} / {}", c, libafl_bolts::current_milliseconds() - st);
|
println!("{} / {}", c, libafl::bolts::current_milliseconds() - st);
|
||||||
println!("{} / 100000", set.len());
|
println!("{} / 100000", set.len());
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "baby_fuzzer_swap_differential"
|
name = "baby_fuzzer_swap_differential"
|
||||||
version = "0.11.1"
|
version = "0.7.1"
|
||||||
authors = ["Addison Crump <research@addisoncrump.info>"]
|
authors = ["Addison Crump <research@addisoncrump.info>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
default-run = "fuzzer_sd"
|
default-run = "fuzzer_sd"
|
||||||
@ -21,12 +21,11 @@ debug = true
|
|||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
bindgen = "0.63"
|
bindgen = "0.61"
|
||||||
cc = "1.0"
|
cc = "1.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libafl = { path = "../../libafl" }
|
libafl = { path = "../../libafl" }
|
||||||
libafl_bolts = { path = "../../libafl_bolts" }
|
|
||||||
libafl_targets = { path = "../../libafl_targets", features = ["sancov_pcguard_hitcounts", "libfuzzer", "sancov_cmplog", "pointer_maps"] }
|
libafl_targets = { path = "../../libafl_targets", features = ["sancov_pcguard_hitcounts", "libfuzzer", "sancov_cmplog", "pointer_maps"] }
|
||||||
mimalloc = { version = "*", default-features = false }
|
mimalloc = { version = "*", default-features = false }
|
||||||
|
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
# Variables
|
# Variables
|
||||||
[env]
|
[env]
|
||||||
FUZZER_NAME='fuzzer_sd'
|
FUZZER_NAME='fuzzer_sd'
|
||||||
PROJECT_DIR = { script = ["pwd"] }
|
|
||||||
CARGO_TARGET_DIR = { value = "target", condition = { env_not_set = ["CARGO_TARGET_DIR"] } }
|
CARGO_TARGET_DIR = { value = "target", condition = { env_not_set = ["CARGO_TARGET_DIR"] } }
|
||||||
LIBAFL_CC = '${CARGO_TARGET_DIR}/release/libafl_cc'
|
LIBAFL_CC = '${CARGO_TARGET_DIR}/release/libafl_cc'
|
||||||
FUZZER = '${CARGO_TARGET_DIR}/release/${FUZZER_NAME}'
|
FUZZER = '${CARGO_TARGET_DIR}/release/${FUZZER_NAME}'
|
||||||
|
PROJECT_DIR = { script = ["pwd"] }
|
||||||
|
|
||||||
# Compilers
|
# Compilers
|
||||||
[tasks.cc]
|
[tasks.cc]
|
||||||
@ -31,13 +31,7 @@ windows_alias = "unsupported"
|
|||||||
[tasks.test_unix]
|
[tasks.test_unix]
|
||||||
script_runner = "@shell"
|
script_runner = "@shell"
|
||||||
script='''
|
script='''
|
||||||
timeout 10s ${CARGO_TARGET_DIR}/release/${FUZZER_NAME} >fuzz_stdout.log || true
|
timeout 10s ${CARGO_TARGET_DIR}/release/${FUZZER_NAME}
|
||||||
if [ -z "$(grep "objectives: 1" fuzz_stdout.log)" ]; then
|
|
||||||
echo "Fuzzer does not generate any testcases or any crashes"
|
|
||||||
exit 1
|
|
||||||
else
|
|
||||||
echo "Fuzzer is working"
|
|
||||||
fi
|
|
||||||
'''
|
'''
|
||||||
dependencies = [ "fuzzer" ]
|
dependencies = [ "fuzzer" ]
|
||||||
|
|
||||||
|
@ -27,7 +27,9 @@ fn main() -> anyhow::Result<()> {
|
|||||||
})
|
})
|
||||||
.join("release/libafl_cc");
|
.join("release/libafl_cc");
|
||||||
println!("cargo:rerun-if-changed={}", compiler.to_str().unwrap());
|
println!("cargo:rerun-if-changed={}", compiler.to_str().unwrap());
|
||||||
if compiler.try_exists().unwrap_or(false) {
|
if !compiler.try_exists().unwrap_or(false) {
|
||||||
|
println!("cargo:warning=Can't find libafl_cc; assuming that we're building it.");
|
||||||
|
} else {
|
||||||
cc::Build::new()
|
cc::Build::new()
|
||||||
.compiler(compiler)
|
.compiler(compiler)
|
||||||
.file("first.c")
|
.file("first.c")
|
||||||
@ -36,8 +38,6 @@ fn main() -> anyhow::Result<()> {
|
|||||||
.compile("diff-target");
|
.compile("diff-target");
|
||||||
|
|
||||||
println!("cargo:rustc-link-lib=diff-target");
|
println!("cargo:rustc-link-lib=diff-target");
|
||||||
} else {
|
|
||||||
println!("cargo:warning=Can't find libafl_cc; assuming that we're building it.");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
use std::env;
|
use std::env;
|
||||||
|
|
||||||
use libafl_cc::{ClangWrapper, CompilerWrapper, ToolWrapper};
|
use libafl_cc::{ClangWrapper, CompilerWrapper};
|
||||||
|
|
||||||
pub fn main() {
|
pub fn main() {
|
||||||
let args: Vec<String> = env::args().collect();
|
let args: Vec<String> = env::args().collect();
|
||||||
@ -11,7 +11,7 @@ pub fn main() {
|
|||||||
let is_cpp = match wrapper_name[wrapper_name.len()-2..].to_lowercase().as_str() {
|
let is_cpp = match wrapper_name[wrapper_name.len()-2..].to_lowercase().as_str() {
|
||||||
"cc" => false,
|
"cc" => false,
|
||||||
"++" | "pp" | "xx" => true,
|
"++" | "pp" | "xx" => true,
|
||||||
_ => panic!("Could not figure out if c or c++ wrapper was called. Expected {dir:?} to end with c or cxx"),
|
_ => panic!("Could not figure out if c or c++ wrapper was called. Expected {:?} to end with c or cxx", dir),
|
||||||
};
|
};
|
||||||
|
|
||||||
dir.pop();
|
dir.pop();
|
||||||
|
@ -6,11 +6,12 @@ use std::{
|
|||||||
};
|
};
|
||||||
|
|
||||||
#[cfg(feature = "tui")]
|
#[cfg(feature = "tui")]
|
||||||
use libafl::monitors::tui::{ui::TuiUI, TuiMonitor};
|
use libafl::monitors::tui::TuiMonitor;
|
||||||
#[cfg(not(feature = "tui"))]
|
#[cfg(not(feature = "tui"))]
|
||||||
use libafl::monitors::SimpleMonitor;
|
use libafl::monitors::SimpleMonitor;
|
||||||
use libafl::{
|
use libafl::{
|
||||||
corpus::{Corpus, InMemoryCorpus, InMemoryOnDiskCorpus},
|
bolts::{current_nanos, rands::StdRand, tuples::tuple_list, AsSlice},
|
||||||
|
corpus::{Corpus, InMemoryCorpus, OnDiskCorpus},
|
||||||
events::SimpleEventManager,
|
events::SimpleEventManager,
|
||||||
executors::{inprocess::InProcessExecutor, DiffExecutor, ExitKind},
|
executors::{inprocess::InProcessExecutor, DiffExecutor, ExitKind},
|
||||||
feedbacks::{CrashFeedback, MaxMapFeedback},
|
feedbacks::{CrashFeedback, MaxMapFeedback},
|
||||||
@ -23,22 +24,18 @@ use libafl::{
|
|||||||
stages::mutational::StdMutationalStage,
|
stages::mutational::StdMutationalStage,
|
||||||
state::{HasSolutions, StdState},
|
state::{HasSolutions, StdState},
|
||||||
};
|
};
|
||||||
use libafl_bolts::{current_nanos, rands::StdRand, tuples::tuple_list, AsSlice};
|
use libafl_targets::{DifferentialAFLMapSwapObserver, MAX_EDGES_NUM};
|
||||||
use libafl_targets::{edges_max_num, DifferentialAFLMapSwapObserver};
|
|
||||||
#[cfg(not(miri))]
|
|
||||||
use mimalloc::MiMalloc;
|
use mimalloc::MiMalloc;
|
||||||
|
|
||||||
#[global_allocator]
|
#[global_allocator]
|
||||||
#[cfg(not(miri))]
|
|
||||||
static GLOBAL: MiMalloc = MiMalloc;
|
static GLOBAL: MiMalloc = MiMalloc;
|
||||||
|
|
||||||
// bindings to the functions defined in the target
|
// bindings to the functions defined in the target
|
||||||
mod bindings {
|
mod bindings {
|
||||||
#![allow(non_snake_case)]
|
|
||||||
#![allow(non_camel_case_types)]
|
#![allow(non_camel_case_types)]
|
||||||
#![allow(non_upper_case_globals)]
|
#![allow(non_upper_case_globals)]
|
||||||
#![allow(unused)]
|
#![allow(unused)]
|
||||||
#![allow(clippy::unreadable_literal)]
|
|
||||||
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
|
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -47,22 +44,24 @@ use bindings::{inspect_first, inspect_second};
|
|||||||
#[cfg(feature = "multimap")]
|
#[cfg(feature = "multimap")]
|
||||||
mod multimap {
|
mod multimap {
|
||||||
pub use libafl::observers::{HitcountsIterableMapObserver, MultiMapObserver};
|
pub use libafl::observers::{HitcountsIterableMapObserver, MultiMapObserver};
|
||||||
pub use libafl_bolts::ownedref::OwnedMutSlice;
|
|
||||||
|
pub static mut FIRST_EDGES: &'static mut [u8] = &mut [];
|
||||||
|
pub static mut SECOND_EDGES: &'static mut [u8] = &mut [];
|
||||||
|
pub static mut COMBINED_EDGES: [&'static mut [u8]; 2] = [&mut [], &mut []];
|
||||||
}
|
}
|
||||||
#[cfg(feature = "multimap")]
|
#[cfg(feature = "multimap")]
|
||||||
use multimap::{HitcountsIterableMapObserver, MultiMapObserver, OwnedMutSlice};
|
use multimap::*;
|
||||||
|
|
||||||
#[cfg(not(feature = "multimap"))]
|
#[cfg(not(feature = "multimap"))]
|
||||||
mod slicemap {
|
mod slicemap {
|
||||||
pub use libafl::observers::HitcountsMapObserver;
|
pub use libafl::observers::HitcountsMapObserver;
|
||||||
|
|
||||||
pub static mut EDGES: &mut [u8] = &mut [];
|
pub static mut EDGES: &'static mut [u8] = &mut [];
|
||||||
}
|
}
|
||||||
#[cfg(not(feature = "multimap"))]
|
#[cfg(not(feature = "multimap"))]
|
||||||
use slicemap::{HitcountsMapObserver, EDGES};
|
use slicemap::*;
|
||||||
|
|
||||||
#[allow(clippy::similar_names)]
|
#[allow(clippy::similar_names)]
|
||||||
#[allow(clippy::too_many_lines)]
|
|
||||||
pub fn main() {
|
pub fn main() {
|
||||||
// The closure that we want to fuzz
|
// The closure that we want to fuzz
|
||||||
let mut first_harness = |input: &BytesInput| {
|
let mut first_harness = |input: &BytesInput| {
|
||||||
@ -84,35 +83,19 @@ pub fn main() {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
let num_edges: usize = edges_max_num();
|
|
||||||
|
|
||||||
#[cfg(feature = "multimap")]
|
#[cfg(feature = "multimap")]
|
||||||
let (
|
let (first_map_observer, second_map_observer, map_swapper, map_observer) = {
|
||||||
first_map_observer,
|
|
||||||
second_map_observer,
|
|
||||||
map_swapper,
|
|
||||||
map_observer,
|
|
||||||
layout,
|
|
||||||
first_edges,
|
|
||||||
second_edges,
|
|
||||||
) = {
|
|
||||||
// initialize the maps
|
// initialize the maps
|
||||||
let layout = Layout::from_size_align(num_edges, 64).unwrap();
|
unsafe {
|
||||||
let first_edges = unsafe { (alloc_zeroed(layout), num_edges) };
|
let layout = Layout::from_size_align(MAX_EDGES_NUM, 64).unwrap();
|
||||||
let second_edges = unsafe { (alloc_zeroed(layout), num_edges) };
|
FIRST_EDGES = core::slice::from_raw_parts_mut(alloc_zeroed(layout), MAX_EDGES_NUM);
|
||||||
|
SECOND_EDGES = core::slice::from_raw_parts_mut(alloc_zeroed(layout), MAX_EDGES_NUM);
|
||||||
let combined_edges = unsafe {
|
COMBINED_EDGES = [&mut FIRST_EDGES, &mut SECOND_EDGES];
|
||||||
vec![
|
}
|
||||||
OwnedMutSlice::from_raw_parts_mut(first_edges.0, first_edges.1),
|
|
||||||
OwnedMutSlice::from_raw_parts_mut(second_edges.0, second_edges.1),
|
|
||||||
]
|
|
||||||
};
|
|
||||||
|
|
||||||
// create the base maps used to observe the different executors from two independent maps
|
// create the base maps used to observe the different executors from two independent maps
|
||||||
let mut first_map_observer =
|
let mut first_map_observer = StdMapObserver::new("first-edges", unsafe { FIRST_EDGES });
|
||||||
unsafe { StdMapObserver::from_mut_ptr("first-edges", first_edges.0, first_edges.1) };
|
let mut second_map_observer = StdMapObserver::new("second-edges", unsafe { SECOND_EDGES });
|
||||||
let mut second_map_observer =
|
|
||||||
unsafe { StdMapObserver::from_mut_ptr("second-edges", second_edges.0, second_edges.1) };
|
|
||||||
|
|
||||||
// create a map swapper so that we can replace the coverage map pointer (requires feature pointer_maps!)
|
// create a map swapper so that we can replace the coverage map pointer (requires feature pointer_maps!)
|
||||||
let map_swapper =
|
let map_swapper =
|
||||||
@ -123,35 +106,28 @@ pub fn main() {
|
|||||||
// differential mode
|
// differential mode
|
||||||
let map_observer = HitcountsIterableMapObserver::new(MultiMapObserver::differential(
|
let map_observer = HitcountsIterableMapObserver::new(MultiMapObserver::differential(
|
||||||
"combined-edges",
|
"combined-edges",
|
||||||
combined_edges,
|
unsafe { &mut COMBINED_EDGES },
|
||||||
));
|
));
|
||||||
|
|
||||||
(
|
(
|
||||||
first_map_observer,
|
first_map_observer,
|
||||||
second_map_observer,
|
second_map_observer,
|
||||||
map_swapper,
|
map_swapper,
|
||||||
map_observer,
|
map_observer,
|
||||||
layout,
|
|
||||||
first_edges,
|
|
||||||
second_edges,
|
|
||||||
)
|
)
|
||||||
};
|
};
|
||||||
#[cfg(not(feature = "multimap"))]
|
#[cfg(not(feature = "multimap"))]
|
||||||
let (first_map_observer, second_map_observer, map_swapper, map_observer) = {
|
let (first_map_observer, second_map_observer, map_swapper, map_observer) = {
|
||||||
// initialize the map
|
// initialize the map
|
||||||
unsafe {
|
unsafe {
|
||||||
let layout = Layout::from_size_align(num_edges * 2, 64).unwrap();
|
let layout = Layout::from_size_align(MAX_EDGES_NUM * 2, 64).unwrap();
|
||||||
EDGES = core::slice::from_raw_parts_mut(alloc_zeroed(layout), num_edges * 2);
|
EDGES = core::slice::from_raw_parts_mut(alloc_zeroed(layout), MAX_EDGES_NUM * 2);
|
||||||
}
|
}
|
||||||
|
|
||||||
let edges_ptr = unsafe { EDGES.as_mut_ptr() };
|
|
||||||
|
|
||||||
// create the base maps used to observe the different executors by splitting a slice
|
// create the base maps used to observe the different executors by splitting a slice
|
||||||
let mut first_map_observer =
|
let mut first_map_observer =
|
||||||
unsafe { StdMapObserver::from_mut_ptr("first-edges", edges_ptr, num_edges) };
|
StdMapObserver::new("first-edges", unsafe { &mut EDGES[..MAX_EDGES_NUM] });
|
||||||
let mut second_map_observer = unsafe {
|
let mut second_map_observer =
|
||||||
StdMapObserver::from_mut_ptr("second-edges", edges_ptr.add(num_edges), num_edges)
|
StdMapObserver::new("second-edges", unsafe { &mut EDGES[MAX_EDGES_NUM..] });
|
||||||
};
|
|
||||||
|
|
||||||
// create a map swapper so that we can replace the coverage map pointer (requires feature pointer_maps!)
|
// create a map swapper so that we can replace the coverage map pointer (requires feature pointer_maps!)
|
||||||
let map_swapper =
|
let map_swapper =
|
||||||
@ -160,14 +136,10 @@ pub fn main() {
|
|||||||
// create a combined map observer, e.g. for calibration
|
// create a combined map observer, e.g. for calibration
|
||||||
// we use StdMapObserver::differential to indicate that we want to use the observer in
|
// we use StdMapObserver::differential to indicate that we want to use the observer in
|
||||||
// differential mode
|
// differential mode
|
||||||
let map_observer = unsafe {
|
let map_observer =
|
||||||
HitcountsMapObserver::new(StdMapObserver::differential_from_mut_ptr(
|
HitcountsMapObserver::new(StdMapObserver::differential("combined-edges", unsafe {
|
||||||
"combined-edges",
|
EDGES
|
||||||
edges_ptr,
|
}));
|
||||||
num_edges * 2,
|
|
||||||
))
|
|
||||||
};
|
|
||||||
|
|
||||||
(
|
(
|
||||||
first_map_observer,
|
first_map_observer,
|
||||||
second_map_observer,
|
second_map_observer,
|
||||||
@ -191,7 +163,7 @@ pub fn main() {
|
|||||||
InMemoryCorpus::new(),
|
InMemoryCorpus::new(),
|
||||||
// Corpus in which we store solutions (crashes in this example),
|
// Corpus in which we store solutions (crashes in this example),
|
||||||
// on disk so the user can get them after stopping the fuzzer
|
// on disk so the user can get them after stopping the fuzzer
|
||||||
InMemoryOnDiskCorpus::new(PathBuf::from("./crashes")).unwrap(),
|
OnDiskCorpus::new(PathBuf::from("./crashes")).unwrap(),
|
||||||
// States of the feedbacks.
|
// States of the feedbacks.
|
||||||
// The feedbacks can report the data that should persist in the State.
|
// The feedbacks can report the data that should persist in the State.
|
||||||
&mut feedback,
|
&mut feedback,
|
||||||
@ -202,11 +174,9 @@ pub fn main() {
|
|||||||
|
|
||||||
// The Monitor trait define how the fuzzer stats are displayed to the user
|
// The Monitor trait define how the fuzzer stats are displayed to the user
|
||||||
#[cfg(not(feature = "tui"))]
|
#[cfg(not(feature = "tui"))]
|
||||||
let mon = SimpleMonitor::new(|s| println!("{s}"));
|
let mon = SimpleMonitor::new(|s| println!("{}", s));
|
||||||
#[cfg(feature = "tui")]
|
#[cfg(feature = "tui")]
|
||||||
let ui = TuiUI::new(String::from("Baby Fuzzer"), false);
|
let mon = TuiMonitor::new(String::from("Baby Fuzzer"), false);
|
||||||
#[cfg(feature = "tui")]
|
|
||||||
let mon = TuiMonitor::new(ui);
|
|
||||||
|
|
||||||
// The event manager handle the various events generated during the fuzzing loop
|
// The event manager handle the various events generated during the fuzzing loop
|
||||||
// such as the notification of the addition of a new item to the corpus
|
// such as the notification of the addition of a new item to the corpus
|
||||||
@ -273,10 +243,4 @@ pub fn main() {
|
|||||||
)
|
)
|
||||||
.expect("Error in the fuzzing loop");
|
.expect("Error in the fuzzing loop");
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "multimap")]
|
|
||||||
unsafe {
|
|
||||||
std::alloc::dealloc(first_edges.0, layout);
|
|
||||||
std::alloc::dealloc(second_edges.0, layout);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "baby_fuzzer_tokens"
|
name = "baby_fuzzer_tokens"
|
||||||
version = "0.11.1"
|
version = "0.8.2"
|
||||||
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
|
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
@ -20,4 +20,3 @@ debug = true
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libafl = { path = "../../libafl/" }
|
libafl = { path = "../../libafl/" }
|
||||||
libafl_bolts = { path = "../../libafl_bolts/" }
|
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
use std::ptr::write_volatile;
|
use std::ptr::write_volatile;
|
||||||
use std::{fs, io::Read, path::PathBuf, ptr::write};
|
use std::{fs, io::Read, path::PathBuf};
|
||||||
|
|
||||||
use libafl::{
|
use libafl::{
|
||||||
|
bolts::{current_nanos, rands::StdRand, tuples::tuple_list},
|
||||||
corpus::{InMemoryCorpus, OnDiskCorpus},
|
corpus::{InMemoryCorpus, OnDiskCorpus},
|
||||||
events::SimpleEventManager,
|
events::SimpleEventManager,
|
||||||
executors::{inprocess::InProcessExecutor, ExitKind},
|
executors::{inprocess::InProcessExecutor, ExitKind},
|
||||||
@ -16,16 +17,13 @@ use libafl::{
|
|||||||
stages::mutational::StdMutationalStage,
|
stages::mutational::StdMutationalStage,
|
||||||
state::StdState,
|
state::StdState,
|
||||||
};
|
};
|
||||||
use libafl_bolts::{current_nanos, rands::StdRand, tuples::tuple_list};
|
|
||||||
|
|
||||||
/// Coverage map with explicit assignments due to the lack of instrumentation
|
/// Coverage map with explicit assignments due to the lack of instrumentation
|
||||||
static mut SIGNALS: [u8; 16] = [0; 16];
|
static mut SIGNALS: [u8; 16] = [0; 16];
|
||||||
static mut SIGNALS_PTR: *mut u8 = unsafe { SIGNALS.as_mut_ptr() };
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
/// Assign a signal to the signals map
|
/// Assign a signal to the signals map
|
||||||
fn signals_set(idx: usize) {
|
fn signals_set(idx: usize) {
|
||||||
unsafe { write(SIGNALS_PTR.add(idx), 1) };
|
unsafe { SIGNALS[idx] = 1 };
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -67,7 +65,7 @@ pub fn main() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Create an observation channel using the signals map
|
// Create an observation channel using the signals map
|
||||||
let observer = unsafe { StdMapObserver::from_mut_ptr("signals", SIGNALS_PTR, SIGNALS.len()) };
|
let observer = StdMapObserver::new("signals", unsafe { &mut SIGNALS });
|
||||||
|
|
||||||
// Feedback to rate the interestingness of an input
|
// Feedback to rate the interestingness of an input
|
||||||
let mut feedback = MaxMapFeedback::new(&observer);
|
let mut feedback = MaxMapFeedback::new(&observer);
|
||||||
@ -93,7 +91,7 @@ pub fn main() {
|
|||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
// The Monitor trait define how the fuzzer stats are reported to the user
|
// The Monitor trait define how the fuzzer stats are reported to the user
|
||||||
let monitor = SimpleMonitor::new(|s| println!("{s}"));
|
let monitor = SimpleMonitor::new(|s| println!("{}", s));
|
||||||
|
|
||||||
// The event manager handle the various events generated during the fuzzing loop
|
// The event manager handle the various events generated during the fuzzing loop
|
||||||
// such as the notification of the addition of a new item to the corpus
|
// such as the notification of the addition of a new item to the corpus
|
||||||
|
@ -1,2 +0,0 @@
|
|||||||
[build]
|
|
||||||
target = "wasm32-unknown-unknown"
|
|
6
fuzzers/baby_fuzzer_wasm/.gitignore
vendored
6
fuzzers/baby_fuzzer_wasm/.gitignore
vendored
@ -1,6 +0,0 @@
|
|||||||
/target
|
|
||||||
**/*.rs.bk
|
|
||||||
Cargo.lock
|
|
||||||
bin/
|
|
||||||
wasm-pack.log
|
|
||||||
.idea/
|
|
@ -1,36 +0,0 @@
|
|||||||
[package]
|
|
||||||
name = "baby_fuzzer_wasm"
|
|
||||||
version = "0.1.0"
|
|
||||||
authors = ["Addison Crump <research@addisoncrump.info>"]
|
|
||||||
edition = "2018"
|
|
||||||
|
|
||||||
[lib]
|
|
||||||
crate-type = ["cdylib", "rlib"]
|
|
||||||
|
|
||||||
[features]
|
|
||||||
default = ["console_error_panic_hook"]
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
js-sys = "0.3"
|
|
||||||
wasm-bindgen = "0.2.63"
|
|
||||||
|
|
||||||
libafl = { path = "../../libafl", default-features = false }
|
|
||||||
libafl_bolts = { path = "../../libafl_bolts", default-features = false }
|
|
||||||
|
|
||||||
# The `console_error_panic_hook` crate provides better debugging of panics by
|
|
||||||
# logging them with `console.error`. This is great for development, but requires
|
|
||||||
# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
|
|
||||||
# code size when deploying.
|
|
||||||
console_error_panic_hook = { version = "0.1.6", optional = true }
|
|
||||||
|
|
||||||
[dependencies.web-sys]
|
|
||||||
version = "0.3"
|
|
||||||
features = ['console', 'Window', 'Performance', 'PerformanceTiming']
|
|
||||||
|
|
||||||
[dev-dependencies]
|
|
||||||
wasm-bindgen-test = "0.3.13"
|
|
||||||
|
|
||||||
[profile.release]
|
|
||||||
opt-level = 3
|
|
||||||
lto = true
|
|
||||||
codegen-units = 1
|
|
@ -1,29 +0,0 @@
|
|||||||
[env]
|
|
||||||
FUZZER_NAME="fuzzer"
|
|
||||||
PROJECT_DIR = { script = ["pwd"] }
|
|
||||||
|
|
||||||
[tasks.unsupported]
|
|
||||||
script_runner="@shell"
|
|
||||||
script='''
|
|
||||||
echo "Cargo-make not integrated yet on this"
|
|
||||||
'''
|
|
||||||
|
|
||||||
# Fuzzer
|
|
||||||
[tasks.build]
|
|
||||||
command = "wasm-pack"
|
|
||||||
args = ["build", "--target", "web"]
|
|
||||||
|
|
||||||
# Test
|
|
||||||
[tasks.test]
|
|
||||||
linux_alias = "test_unix"
|
|
||||||
mac_alias = "test_unix"
|
|
||||||
windows_alias = "unsupported"
|
|
||||||
|
|
||||||
[tasks.test_unix]
|
|
||||||
command = "wasm-pack"
|
|
||||||
args = ["test", "--chrome", "--headless"]
|
|
||||||
|
|
||||||
# Clean
|
|
||||||
[tasks.clean]
|
|
||||||
command = "cargo"
|
|
||||||
args = ["clean"]
|
|
@ -1,12 +0,0 @@
|
|||||||
# libafl-wasm
|
|
||||||
|
|
||||||
A brief demo demonstrating libafl's compatibility with WASM, and how to do it.
|
|
||||||
|
|
||||||
In this example, the entire LibAFL harness and target are present in a WASM binary, which is then loaded by [the example
|
|
||||||
webpage](pkg/index.html). To run this example, do `cargo make build`, then open [the example webpage](pkg/index.html) in
|
|
||||||
your browser (via something like `python3 -m http.server`). The fuzzer will execute until finding a solution and will
|
|
||||||
write the fuzzer log to your console.
|
|
||||||
|
|
||||||
In a real fuzzing campaign, you would likely need to also create a LibAFL Corpus implementation which was backed by
|
|
||||||
JavaScript, and restart the fuzzing campaign by re-invoking the fuzzer and providing the associated corpora. This is
|
|
||||||
not demonstrated in this barebones example.
|
|
1
fuzzers/baby_fuzzer_wasm/pkg/.gitignore
vendored
1
fuzzers/baby_fuzzer_wasm/pkg/.gitignore
vendored
@ -1 +0,0 @@
|
|||||||
*
|
|
@ -1,14 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<title>libafl_wasm test</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<script type="module">
|
|
||||||
import libafl_wasm from './libafl_wasm.js'
|
|
||||||
|
|
||||||
libafl_wasm().then(wasm => wasm.fuzz())
|
|
||||||
</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,17 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "baby_fuzzer_wasm",
|
|
||||||
"collaborators": [
|
|
||||||
"Addison Crump <research@addisoncrump.info>"
|
|
||||||
],
|
|
||||||
"version": "0.1.0",
|
|
||||||
"files": [
|
|
||||||
"baby_fuzzer_wasm_bg.wasm",
|
|
||||||
"baby_fuzzer_wasm.js",
|
|
||||||
"baby_fuzzer_wasm.d.ts"
|
|
||||||
],
|
|
||||||
"module": "baby_fuzzer_wasm.js",
|
|
||||||
"types": "baby_fuzzer_wasm.d.ts",
|
|
||||||
"sideEffects": [
|
|
||||||
"./snippets/*"
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,141 +0,0 @@
|
|||||||
mod utils;
|
|
||||||
|
|
||||||
use libafl::{
|
|
||||||
corpus::{Corpus, InMemoryCorpus},
|
|
||||||
events::SimpleEventManager,
|
|
||||||
executors::{ExitKind, InProcessExecutor},
|
|
||||||
feedbacks::{CrashFeedback, MapFeedbackMetadata, MaxMapFeedback},
|
|
||||||
generators::RandPrintablesGenerator,
|
|
||||||
inputs::{BytesInput, HasTargetBytes},
|
|
||||||
monitors::SimpleMonitor,
|
|
||||||
mutators::{havoc_mutations, StdScheduledMutator},
|
|
||||||
observers::StdMapObserver,
|
|
||||||
schedulers::QueueScheduler,
|
|
||||||
stages::StdMutationalStage,
|
|
||||||
state::{HasSolutions, StdState},
|
|
||||||
Fuzzer, StdFuzzer,
|
|
||||||
};
|
|
||||||
use libafl_bolts::{
|
|
||||||
current_nanos, rands::StdRand, serdeany::RegistryBuilder, tuples::tuple_list, AsSlice,
|
|
||||||
};
|
|
||||||
use wasm_bindgen::prelude::*;
|
|
||||||
use web_sys::{Performance, Window};
|
|
||||||
|
|
||||||
use crate::utils::set_panic_hook;
|
|
||||||
|
|
||||||
// defined for internal use by libafl
|
|
||||||
#[no_mangle]
|
|
||||||
#[allow(clippy::cast_sign_loss, clippy::cast_possible_truncation)]
|
|
||||||
pub extern "C" fn external_current_millis() -> u64 {
|
|
||||||
let window: Window = web_sys::window().expect("should be in browser to run this demo");
|
|
||||||
let performance: Performance = window
|
|
||||||
.performance()
|
|
||||||
.expect("should be in browser to run this demo");
|
|
||||||
performance.now() as u64
|
|
||||||
}
|
|
||||||
|
|
||||||
#[allow(clippy::missing_panics_doc)]
|
|
||||||
#[wasm_bindgen]
|
|
||||||
pub fn fuzz() {
|
|
||||||
set_panic_hook();
|
|
||||||
|
|
||||||
unsafe {
|
|
||||||
RegistryBuilder::register::<MapFeedbackMetadata<u8>>();
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut signals = [0u8; 64];
|
|
||||||
let signals_ptr = signals.as_mut_ptr();
|
|
||||||
let signals_set = |i: usize| unsafe {
|
|
||||||
*signals_ptr.add(i) += 1;
|
|
||||||
};
|
|
||||||
|
|
||||||
// The closure that we want to fuzz
|
|
||||||
let mut harness = |input: &BytesInput| {
|
|
||||||
let target = input.target_bytes();
|
|
||||||
let buf = target.as_slice();
|
|
||||||
signals_set(0);
|
|
||||||
if !buf.is_empty() && buf[0] == b'a' {
|
|
||||||
signals_set(1);
|
|
||||||
if buf.len() > 1 && buf[1] == b'b' {
|
|
||||||
signals_set(2);
|
|
||||||
#[allow(clippy::manual_assert)]
|
|
||||||
if buf.len() > 2 && buf[2] == b'c' {
|
|
||||||
// WASM cannot handle traps: https://webassembly.github.io/spec/core/intro/overview.html
|
|
||||||
// in a "real" fuzzing campaign, you should prefer to setup trap handling in JS,
|
|
||||||
// but we do not do this for demonstration purposes
|
|
||||||
return ExitKind::Crash;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ExitKind::Ok
|
|
||||||
};
|
|
||||||
|
|
||||||
// Create an observation channel using the signals map
|
|
||||||
let observer =
|
|
||||||
unsafe { StdMapObserver::from_mut_ptr("signals", signals.as_mut_ptr(), signals.len()) };
|
|
||||||
|
|
||||||
// Feedback to rate the interestingness of an input
|
|
||||||
let mut feedback = MaxMapFeedback::new(&observer);
|
|
||||||
|
|
||||||
// A feedback to choose if an input is a solution or not
|
|
||||||
let mut objective = CrashFeedback::new();
|
|
||||||
|
|
||||||
// create a State from scratch
|
|
||||||
let mut state = StdState::new(
|
|
||||||
// RNG
|
|
||||||
StdRand::with_seed(current_nanos()),
|
|
||||||
// Corpus that will be evolved, we keep it in memory for performance
|
|
||||||
InMemoryCorpus::new(),
|
|
||||||
// In a "real" fuzzing campaign, you should stash solutions in a JS array instead
|
|
||||||
InMemoryCorpus::new(),
|
|
||||||
// States of the feedbacks.
|
|
||||||
// The feedbacks can report the data that should persist in the State.
|
|
||||||
&mut feedback,
|
|
||||||
// Same for objective feedbacks
|
|
||||||
&mut objective,
|
|
||||||
)
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
// The Monitor trait define how the fuzzer stats are reported to the user
|
|
||||||
let monitor = SimpleMonitor::new(|s| {
|
|
||||||
web_sys::console::log_1(&s.into());
|
|
||||||
});
|
|
||||||
|
|
||||||
// The event manager handle the various events generated during the fuzzing loop
|
|
||||||
// such as the notification of the addition of a new item to the corpus
|
|
||||||
let mut mgr = SimpleEventManager::new(monitor);
|
|
||||||
|
|
||||||
// A queue policy to get testcasess from the corpus
|
|
||||||
let scheduler = QueueScheduler::new();
|
|
||||||
|
|
||||||
// A fuzzer with feedbacks and a corpus scheduler
|
|
||||||
let mut fuzzer = StdFuzzer::new(scheduler, feedback, objective);
|
|
||||||
|
|
||||||
// Create the executor for an in-process function with just one observer
|
|
||||||
let mut executor = InProcessExecutor::new(
|
|
||||||
&mut harness,
|
|
||||||
tuple_list!(observer),
|
|
||||||
&mut fuzzer,
|
|
||||||
&mut state,
|
|
||||||
&mut mgr,
|
|
||||||
)
|
|
||||||
.expect("Failed to create the Executor");
|
|
||||||
|
|
||||||
// Generator of printable bytearrays of max size 32
|
|
||||||
let mut generator = RandPrintablesGenerator::new(32);
|
|
||||||
|
|
||||||
// Generate 8 initial inputs
|
|
||||||
state
|
|
||||||
.generate_initial_inputs(&mut fuzzer, &mut executor, &mut generator, &mut mgr, 8)
|
|
||||||
.expect("Failed to generate the initial corpus");
|
|
||||||
|
|
||||||
// Setup a mutational stage with a basic bytes mutator
|
|
||||||
let mutator = StdScheduledMutator::new(havoc_mutations());
|
|
||||||
let mut stages = tuple_list!(StdMutationalStage::new(mutator));
|
|
||||||
|
|
||||||
while state.solutions().is_empty() {
|
|
||||||
fuzzer
|
|
||||||
.fuzz_one(&mut stages, &mut executor, &mut state, &mut mgr)
|
|
||||||
.expect("Error in the fuzzing loop");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,10 +0,0 @@
|
|||||||
pub fn set_panic_hook() {
|
|
||||||
// When the `console_error_panic_hook` feature is enabled, we can call the
|
|
||||||
// `set_panic_hook` function at least once during initialization, and then
|
|
||||||
// we will get better error messages if our code ever panics.
|
|
||||||
//
|
|
||||||
// For more details see
|
|
||||||
// https://github.com/rustwasm/console_error_panic_hook#readme
|
|
||||||
#[cfg(feature = "console_error_panic_hook")]
|
|
||||||
console_error_panic_hook::set_once();
|
|
||||||
}
|
|
@ -1,14 +0,0 @@
|
|||||||
//! Test suite for the Web and headless browsers.
|
|
||||||
|
|
||||||
#![cfg(target_arch = "wasm32")]
|
|
||||||
|
|
||||||
extern crate wasm_bindgen_test;
|
|
||||||
use baby_fuzzer_wasm::fuzz;
|
|
||||||
use wasm_bindgen_test::*;
|
|
||||||
|
|
||||||
wasm_bindgen_test_configure!(run_in_browser);
|
|
||||||
|
|
||||||
#[wasm_bindgen_test]
|
|
||||||
fn test_fuzz() {
|
|
||||||
fuzz();
|
|
||||||
}
|
|
@ -1,15 +0,0 @@
|
|||||||
{
|
|
||||||
"moz:firefoxOptions": {
|
|
||||||
"prefs": {
|
|
||||||
"media.navigator.streams.fake": true,
|
|
||||||
"media.navigator.permission.disabled": true
|
|
||||||
},
|
|
||||||
"args": []
|
|
||||||
},
|
|
||||||
"goog:chromeOptions": {
|
|
||||||
"args": [
|
|
||||||
"--use-fake-device-for-media-stream",
|
|
||||||
"--use-fake-ui-for-media-stream"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "baby_fuzzer_with_forkexecutor"
|
name = "baby_fuzzer_with_forkexecutor"
|
||||||
version = "0.11.1"
|
version = "0.6.1"
|
||||||
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
|
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
@ -20,4 +20,3 @@ debug = true
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libafl = { path = "../../libafl/" }
|
libafl = { path = "../../libafl/" }
|
||||||
libafl_bolts = { path = "../../libafl_bolts/" }
|
|
||||||
|
@ -1,8 +1,15 @@
|
|||||||
|
use std::path::PathBuf;
|
||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
use std::ptr::write_volatile;
|
use std::ptr::write_volatile;
|
||||||
use std::{path::PathBuf, ptr::write};
|
|
||||||
|
|
||||||
use libafl::{
|
use libafl::{
|
||||||
|
bolts::{
|
||||||
|
current_nanos,
|
||||||
|
rands::StdRand,
|
||||||
|
shmem::{unix_shmem, ShMemProvider},
|
||||||
|
tuples::tuple_list,
|
||||||
|
AsMutSlice, AsSlice,
|
||||||
|
},
|
||||||
corpus::{InMemoryCorpus, OnDiskCorpus},
|
corpus::{InMemoryCorpus, OnDiskCorpus},
|
||||||
events::SimpleEventManager,
|
events::SimpleEventManager,
|
||||||
executors::{ExitKind, InProcessForkExecutor},
|
executors::{ExitKind, InProcessForkExecutor},
|
||||||
@ -17,23 +24,16 @@ use libafl::{
|
|||||||
stages::mutational::StdMutationalStage,
|
stages::mutational::StdMutationalStage,
|
||||||
state::StdState,
|
state::StdState,
|
||||||
};
|
};
|
||||||
use libafl_bolts::{
|
|
||||||
current_nanos,
|
|
||||||
rands::StdRand,
|
|
||||||
shmem::{unix_shmem, ShMemProvider},
|
|
||||||
tuples::tuple_list,
|
|
||||||
AsMutSlice, AsSlice,
|
|
||||||
};
|
|
||||||
|
|
||||||
#[allow(clippy::similar_names)]
|
#[allow(clippy::similar_names)]
|
||||||
pub fn main() {
|
pub fn main() {
|
||||||
let mut shmem_provider = unix_shmem::UnixShMemProvider::new().unwrap();
|
let mut shmem_provider = unix_shmem::UnixShMemProvider::new().unwrap();
|
||||||
let mut signals = shmem_provider.new_shmem(16).unwrap();
|
let mut signals = shmem_provider.new_shmem(16).unwrap();
|
||||||
let signals_len = signals.as_slice().len();
|
let mut signals_clone = signals.clone();
|
||||||
let signals_ptr = signals.as_mut_slice().as_mut_ptr();
|
|
||||||
|
|
||||||
let signals_set = |idx: usize| {
|
let mut signals_set = |idx: usize| {
|
||||||
unsafe { write(signals_ptr.add(idx), 1) };
|
let a = signals.as_mut_slice();
|
||||||
|
a[idx] = 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
// The closure that we want to fuzz
|
// The closure that we want to fuzz
|
||||||
@ -64,7 +64,7 @@ pub fn main() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Create an observation channel using the signals map
|
// Create an observation channel using the signals map
|
||||||
let observer = unsafe { StdMapObserver::from_mut_ptr("signals", signals_ptr, signals_len) };
|
let observer = StdMapObserver::new("signals", signals_clone.as_mut_slice());
|
||||||
// Create a stacktrace observer to add the observers tuple
|
// Create a stacktrace observer to add the observers tuple
|
||||||
|
|
||||||
// Feedback to rate the interestingness of an input, obtained by ANDing the interestingness of both feedbacks
|
// Feedback to rate the interestingness of an input, obtained by ANDing the interestingness of both feedbacks
|
||||||
@ -91,7 +91,7 @@ pub fn main() {
|
|||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
// The Monitor trait define how the fuzzer stats are displayed to the user
|
// The Monitor trait define how the fuzzer stats are displayed to the user
|
||||||
let mon = SimpleMonitor::new(|s| println!("{s}"));
|
let mon = SimpleMonitor::new(|s| println!("{}", s));
|
||||||
|
|
||||||
// The event manager handle the various events generated during the fuzzing loop
|
// The event manager handle the various events generated during the fuzzing loop
|
||||||
// such as the notification of the addition of a new item to the corpus
|
// such as the notification of the addition of a new item to the corpus
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "baby_no_std"
|
name = "baby_no_std"
|
||||||
version = "0.11.1"
|
version = "0.8.2"
|
||||||
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
|
authors = ["Andrea Fioraldi <andreafioraldi@gmail.com>", "Dominik Maier <domenukk@gmail.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
@ -16,7 +16,6 @@ debug = true
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libafl = { default-features = false, path = "../../libafl/" }
|
libafl = { default-features = false, path = "../../libafl/" }
|
||||||
libafl_bolts = { default-features = false, path = "../../libafl_bolts/" }
|
|
||||||
static-alloc = "0.2.3"
|
static-alloc = "0.2.3"
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
#![no_std]
|
#![no_std]
|
||||||
// Embedded targets: build with no_main
|
// Embedded targets: build with no_main
|
||||||
#![cfg_attr(not(any(windows)), no_main)]
|
#![cfg_attr(not(any(windows)), no_main)]
|
||||||
|
// Embedded needs alloc error handlers which only work on nightly right now...
|
||||||
|
#![cfg_attr(not(any(windows)), feature(default_alloc_error_handler))]
|
||||||
|
|
||||||
#[cfg(any(windows, unix))]
|
#[cfg(any(windows, unix))]
|
||||||
extern crate alloc;
|
extern crate alloc;
|
||||||
@ -8,9 +10,9 @@ extern crate alloc;
|
|||||||
use alloc::ffi::CString;
|
use alloc::ffi::CString;
|
||||||
#[cfg(not(any(windows)))]
|
#[cfg(not(any(windows)))]
|
||||||
use core::panic::PanicInfo;
|
use core::panic::PanicInfo;
|
||||||
use core::ptr::write;
|
|
||||||
|
|
||||||
use libafl::{
|
use libafl::{
|
||||||
|
bolts::{current_nanos, rands::StdRand, tuples::tuple_list, AsSlice},
|
||||||
corpus::InMemoryCorpus,
|
corpus::InMemoryCorpus,
|
||||||
events::SimpleEventManager,
|
events::SimpleEventManager,
|
||||||
executors::{inprocess::InProcessExecutor, ExitKind},
|
executors::{inprocess::InProcessExecutor, ExitKind},
|
||||||
@ -25,7 +27,6 @@ use libafl::{
|
|||||||
stages::mutational::StdMutationalStage,
|
stages::mutational::StdMutationalStage,
|
||||||
state::StdState,
|
state::StdState,
|
||||||
};
|
};
|
||||||
use libafl_bolts::{current_nanos, rands::StdRand, tuples::tuple_list, AsSlice};
|
|
||||||
#[cfg(any(windows, unix))]
|
#[cfg(any(windows, unix))]
|
||||||
use libc::{abort, printf};
|
use libc::{abort, printf};
|
||||||
use static_alloc::Bump;
|
use static_alloc::Bump;
|
||||||
@ -47,11 +48,10 @@ fn panic(_info: &PanicInfo) -> ! {
|
|||||||
|
|
||||||
/// Coverage map with explicit assignments due to the lack of instrumentation
|
/// Coverage map with explicit assignments due to the lack of instrumentation
|
||||||
static mut SIGNALS: [u8; 16] = [0; 16];
|
static mut SIGNALS: [u8; 16] = [0; 16];
|
||||||
static mut SIGNALS_PTR: *mut u8 = unsafe { SIGNALS.as_mut_ptr() };
|
|
||||||
|
|
||||||
/// Assign a signal to the signals map
|
/// Assign a signal to the signals map
|
||||||
fn signals_set(idx: usize) {
|
fn signals_set(idx: usize) {
|
||||||
unsafe { write(SIGNALS_PTR.add(idx), 1) };
|
unsafe { SIGNALS[idx] = 1 };
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Provide custom time in `no_std` environment
|
/// Provide custom time in `no_std` environment
|
||||||
@ -87,7 +87,7 @@ pub extern "C" fn main(_argc: isize, _argv: *const *const u8) -> isize {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Create an observation channel using the signals map
|
// Create an observation channel using the signals map
|
||||||
let observer = unsafe { StdMapObserver::from_mut_ptr("signals", SIGNALS_PTR, SIGNALS.len()) };
|
let observer = StdMapObserver::new("signals", unsafe { &mut SIGNALS });
|
||||||
|
|
||||||
// Feedback to rate the interestingness of an input
|
// Feedback to rate the interestingness of an input
|
||||||
let mut feedback = MaxMapFeedback::new(&observer);
|
let mut feedback = MaxMapFeedback::new(&observer);
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user