Kurt Roeckx 07fc8d5207 Enable all protocols and ciphers in the fuzzer 5 anos atrás
..
corpora 273f7fe16a Add fuzz corpora file that found the ASN.1 stack depth issue 6 anos atrás
README.md e8ff08f7bb Update location of the libfuzzer repository 6 anos atrás
asn1.c 976b0388d0 Conditionalize fuzz tests on feature macros 6 anos atrás
asn1parse.c d69d8f904c Make the fuzzers more reproducible 7 anos atrás
bignum.c 222cb307d4 Don't turn b2 negative 6 anos atrás
bndiv.c 61389f0981 bndiv fuzzer: limit the size of the input to avoid timeout 6 anos atrás
build.info 902f7d5c87 ASN1 fuzzer: Use d2i_TYPE / i2d_TYPE functions 6 anos atrás
client.c 07fc8d5207 Enable all protocols and ciphers in the fuzzer 5 anos atrás
cms.c d69d8f904c Make the fuzzers more reproducible 7 anos atrás
conf.c d69d8f904c Make the fuzzers more reproducible 7 anos atrás
crl.c d69d8f904c Make the fuzzers more reproducible 7 anos atrás
ct.c d69d8f904c Make the fuzzers more reproducible 7 anos atrás
driver.c ad4da7fbc0 Add a FuzzerClean() function 7 anos atrás
fuzzer.h 9f08a1c63e Install custom RAND_METHOD for fuzzing 6 anos atrás
helper.py 44c8a5e2b9 Add final(?) set of copyrights. 8 anos atrás
mkfuzzoids.pl 0d66475908 Update copyright year 6 anos atrás
oids.txt 55fc247a69 New GOST identificators 6 anos atrás
rand.inc 710769f0a9 Move FuzzerSetRand to separate file. 6 anos atrás
server.c 07fc8d5207 Enable all protocols and ciphers in the fuzzer 5 anos atrás
test-corpus.c c4d3c19b4c Update copyright year 6 anos atrás
x509.c 710769f0a9 Move FuzzerSetRand to separate file. 6 anos atrás

README.md

I Can Haz Fuzz?

LibFuzzer

Or, how to fuzz OpenSSL with libfuzzer.

Starting from a vanilla+OpenSSH server Ubuntu install.

Use Chrome's handy recent build of clang. Older versions may also work.

$ sudo apt-get install git
$ mkdir git-work
$ git clone https://chromium.googlesource.com/chromium/src/tools/clang
$ clang/scripts/update.py

You may want to git pull and re-run the update from time to time.

Update your path:

$ PATH=~/third_party/llvm-build/Release+Asserts/bin/:$PATH

Get and build libFuzzer (there is a git mirror at https://github.com/llvm-mirror/llvm/tree/master/lib/Fuzzer if you prefer):

$ cd
$ sudo apt-get install subversion
$ mkdir svn-work
$ cd svn-work
$ svn co https://llvm.org/svn/llvm-project/compiler-rt/trunk/lib/fuzzer Fuzzer
$ cd Fuzzer
$ clang++ -c -g -O2 -std=c++11 *.cpp
$ ar r libFuzzer.a *.o
$ ranlib libFuzzer.a

Configure for fuzzing:

$ CC=clang ./config enable-fuzz-libfuzzer \
        --with-fuzzer-include=../../svn-work/Fuzzer \
        --with-fuzzer-lib=../../svn-work/Fuzzer/libFuzzer \
        -DPEDANTIC enable-asan enable-ubsan no-shared \
        -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION \
        -fsanitize-coverage=trace-pc-guard,indirect-calls,trace-cmp \
        enable-ec_nistp_64_gcc_128 -fno-sanitize=alignment enable-tls1_3 \
        enable-weak-ssl-ciphers enable-rc5 enable-md2 \
        enable-ssl3 enable-ssl3-method enable-nextprotoneg \
        --debug
$ sudo apt-get install make
$ LDCMD=clang++ make -j
$ fuzz/helper.py $FUZZER

Where $FUZZER is one of the executables in fuzz/.

If you get a crash, you should find a corresponding input file in fuzz/corpora/$FUZZER-crash/.

AFL

Configure for fuzzing:

$ sudo apt-get install afl-clang
$ CC=afl-clang-fast ./config enable-fuzz-afl no-shared -DPEDANTIC \
    enable-tls1_3 enable-weak-ssl-ciphers enable-rc5 enable-md2 \
    enable-ssl3 enable-ssl3-method enable-nextprotoneg \
    enable-ec_nistp_64_gcc_128 -fno-sanitize=alignment \
    --debug
$ make

The following options can also be enabled: enable-asan, enable-ubsan, enable-msan

Run one of the fuzzers:

$ afl-fuzz -i fuzz/corpora/$FUZZER -o fuzz/corpora/$FUZZER/out fuzz/$FUZZER

Where $FUZZER is one of the executables in fuzz/.

Reproducing issues

If a fuzzer generates a reproducible error, you can reproduce the problem using the fuzz/-test binaries and the file generated by the fuzzer. They binaries don't need to be build for fuzzing, there is no need to set CC or the call config with enable-fuzz- or -fsanitize-coverage, but some of the other options above might be needed. For instance the enable-asan or enable-ubsan option might be useful to show you when the problem happens. For the client and server fuzzer it might be needed to use -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION to reproduce the generated random numbers.

To reproduce the crash you can run:

$ fuzz/$FUZZER-test $file

Random numbers

The client and server fuzzer normally generate random numbers as part of the TLS connection setup. This results in the coverage of the fuzzing corpus changing depending on the random numbers. This also has an effect for coverage of the rest of the test suite and you see the coverage change for each commit even when no code has been modified.

Since we want to maximize the coverage of the fuzzing corpus, the client and server fuzzer will use predictable numbers instead of the random numbers. This is controlled by the FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION define.

The coverage depends on the way the numbers are generated. We don't disable any check of hashes, but the corpus has the correct hash in it for the random numbers that were generated. For instance the client fuzzer will always generate the same client hello with the same random number in it, and so the server, as emulated by the file, can be generated for that client hello.

Coverage changes

Since the corpus depends on the default behaviour of the client and the server, changes in what they send by default will have an impact on the coverage. The corpus will need to be updated in that case.

Updating the corpus

The client and server corpus is generated with multiple config options:

  • The options as documented above
  • Without enable-ec_nistp_64_gcc_128 and without --debug
  • With no-asm
  • Using 32 bit
  • A default config, plus options needed to generate the fuzzer.

The libfuzzer merge option is used to add the additional coverage from each config to the minimal set.