Skip to content

Add redoxfs fuzzer for FUSE interface

emaxx-g requested to merge emaxx-g/redoxfs:fuzzer--fuse into master

Add a fuzzer that exercises the redoxfs file system operations through the FUSE interface.

The fuzzer looks for panics, memory issues in the unsafe code and unexpected mount failures. What's NOT checked is the semantics of the file operations and cryptographic encryption.


Usage:

  • Setup:
    cargo install cargo-fuzz
  • Running:
    ASAN_OPTIONS="detect_leaks=0" cargo fuzz run fuse_fuzz_target
Edited by emaxx-g

Merge request reports