solidity/test/tools/ossfuzz
2021-01-27 14:55:49 +01:00
..
config Remove finney and szabo denominations. 2020-07-13 18:07:10 +02:00
protomutators Enable the -Wconversion warning 2020-12-08 16:45:24 +00:00
abiV2FuzzerCommon.cpp Merge remote-tracking branch 'origin/develop' into breaking 2020-12-14 11:33:40 +01:00
abiV2FuzzerCommon.h Merge remote-tracking branch 'origin/develop' into breaking 2020-12-07 13:04:14 +01:00
abiV2Proto.proto Abiv2 fuzzer: Enable differential fuzzing and remove support for string coding 2020-12-15 11:13:10 +01:00
abiV2ProtoFuzzer.cpp abiv2 proto fuzzer: Move anon namespace utility functions to common source 2020-12-04 15:33:41 +01:00
AbiV2IsabelleFuzzer.cpp Abiv2 fuzzer: Enable differential fuzzing and remove support for string coding 2020-12-15 11:13:10 +01:00
CMakeLists.txt Enable fine grained yul optimizer fuzzing 2021-01-19 18:22:59 +01:00
const_opt_ossfuzz.cpp Enable more C++ compiler warnings 2020-12-10 21:03:58 +00:00
Generators.h Add documentation and/or comments. 2021-01-26 15:48:42 +01:00
protoToAbiV2.cpp Abiv2 fuzzer: Enable differential fuzzing and remove support for string coding 2020-12-15 11:13:10 +01:00
protoToAbiV2.h Abiv2 fuzzer: Enable differential fuzzing and remove support for string coding 2020-12-15 11:13:10 +01:00
protoToSol.cpp Add SPDX license identifier if not present already in source file 2020-07-17 20:24:12 +05:30
protoToSol.h Enable the -Wconversion warning 2020-12-08 16:45:24 +00:00
protoToYul.cpp Enable the -Wconversion warning 2020-12-08 16:45:24 +00:00
protoToYul.h Enable fine grained yul optimizer fuzzing 2021-01-19 18:22:59 +01:00
README.md Update test/tools/ossfuzz/README.md 2020-03-09 10:38:19 +01:00
solc_noopt_ossfuzz.cpp ossfuzz: Add option to force SMT pragma and set it in solc fuzzers 2020-12-21 11:55:58 +01:00
solc_opt_ossfuzz.cpp ossfuzz: Add option to force SMT pragma and set it in solc fuzzers 2020-12-21 11:55:58 +01:00
SolidityCustomMutatorInterface.cpp Add visitors for automatic test case generation. 2021-01-26 15:48:42 +01:00
SolidityCustomMutatorInterface.h Add solidity generator 2020-11-23 22:27:40 +01:00
SolidityGenerator.cpp Reorganized code for better readability. 2021-01-26 16:16:03 +01:00
SolidityGenerator.h ossfuzz: Clang tidy suggested fixes in Solidity generator 2021-01-27 14:55:49 +01:00
solProto.proto Add SPDX license identifier if not present already in source file 2020-07-17 20:24:12 +05:30
solProtoFuzzer.cpp Add SPDX license identifier if not present already in source file 2020-07-17 20:24:12 +05:30
strictasm_assembly_ossfuzz.cpp Enable more C++ compiler warnings 2020-12-10 21:03:58 +00:00
strictasm_diff_ossfuzz.cpp Merge remote-tracking branch 'origin/develop' into breaking 2020-12-14 11:33:40 +01:00
strictasm_opt_ossfuzz.cpp Enable more C++ compiler warnings 2020-12-10 21:03:58 +00:00
yulFuzzerCommon.cpp Yul interpreter: Introduce expression evaluation maximum nesting depth 2020-12-04 17:27:03 +01:00
yulFuzzerCommon.h Yul interpreter: Introduce expression evaluation maximum nesting depth 2020-12-04 17:27:03 +01:00
yulOptimizerFuzzDictionary.h Do not create duplicate case statements 2019-08-26 12:44:06 +02:00
yulProto_diff_ossfuzz.cpp Enable fine grained yul optimizer fuzzing 2021-01-19 18:22:59 +01:00
yulProto.proto Enable fine grained yul optimizer fuzzing 2021-01-19 18:22:59 +01:00
yulProtoFuzzer.cpp Enable fine grained yul optimizer fuzzing 2021-01-19 18:22:59 +01:00

Intro

oss-fuzz is Google's fuzzing infrastructure that performs continuous fuzzing. What this means is that, each and every upstream commit is automatically fetched by the infrastructure and fuzzed on a daily basis.

How to build fuzzers?

We have multiple fuzzers, some based on string input and others on protobuf input. To build them, please do the following:

  • Create a local docker image from Dockerfile.ubuntu1604.clang.ossfuzz in the .circleci/docker sub-directory. Please note that this step is likely to take at least an hour to complete. Therefore, it is recommended to do it when you are away from the computer (and the computer is plugged to power since we do not want a battery drain).
$ cd .circleci/docker
$ docker build -t solidity-ossfuzz-local -f Dockerfile.ubuntu1604.clang.ossfuzz .
  • Login to the docker container sourced from the image built in the previous step from the solidity parent directory
## Host
$ cd solidity
$ docker run -v `pwd`:/src/solidity -ti solidity-ossfuzz-local /bin/bash
## Docker shell
$ cd /src/solidity
  • Run cmake and build fuzzer harnesses
## Docker shell
$ cd /src/solidity
$ rm -rf fuzzer-build && mkdir fuzzer-build && cd fuzzer-build
## Compile protobuf C++ bindings
$ protoc --proto_path=../test/tools/ossfuzz yulProto.proto --cpp_out=../test/tools/ossfuzz
$ protoc --proto_path=../test/tools/ossfuzz abiV2Proto.proto --cpp_out=../test/tools/ossfuzz
## Run cmake
$ export CC=clang CXX=clang++
$ cmake -DCMAKE_TOOLCHAIN_FILE=cmake/toolchains/libfuzzer.cmake -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE:-Release} ..
$ make ossfuzz ossfuzz_proto ossfuzz_abiv2 -j

Why the elaborate docker image to build fuzzers?

For the following reasons:

  • Fuzzing binaries must link against libc++ and not libstdc++

    • This is because (1) MemorySanitizer (which flags uses of uninitialized memory) depends on libc++; and (2) because libc++ is instrumented (to check for memory and type errors) and libstdc++ not, the former may find more bugs.
  • Linking against libc++ requires us to compile everything solidity depends on from source (and link these against libc++ as well)

  • To reproduce the compiler versions used by upstream oss-fuzz bots, we need to reuse their docker image containing the said compiler versions

  • Some fuzzers depend on libprotobuf, libprotobuf-mutator, libevmone etc. which may not be available locally; even if they were they might not be the right versions

What is LIB_FUZZING_ENGINE?

oss-fuzz contains multiple fuzzer back-ends i.e., fuzzers. Each back-end may require different linker flags. oss-fuzz builder bot defines the correct linker flags via a bash environment variable called LIB_FUZZING_ENGINE.

For the solidity ossfuzz CI build, we use the libFuzzer back-end. This back-end requires us to manually set the LIB_FUZZING_ENGINE to -fsanitize=fuzzer.

What does the ossfuzz directory contain?

To help oss-fuzz do this, we (as project maintainers) need to provide the following:

  • test harnesses: C/C++ tests that define the LLVMFuzzerTestOneInput API. This determines what is to be fuzz tested.
  • build infrastructure: (c)make targets per fuzzing binary. Fuzzing requires coverage and memory instrumentation of the code to be fuzzed.
  • configuration files: These are files with the .options extension that are parsed by oss-fuzz. The only option that we use currently is the dictionary option that asks the fuzzing engines behind oss-fuzz to use the specified dictionary. The specified dictionary happens to be solidity.dict.

solidity.dict contains Solidity-specific syntactical tokens that are more likely to guide the fuzzer towards generating parseable and varied Solidity input.

To be consistent and aid better evaluation of the utility of the fuzzing dictionary, we stick to the following rules-of-thumb:

  • Full tokens such as block.number are preceded and followed by a whitespace
  • Incomplete tokens including function calls such as msg.sender.send() are abbreviated .send( to provide some leeway to the fuzzer to sythesize variants such as address(this).send()
  • Language keywords are suffixed by a whitespace with the exception of those that end a line of code such as break; and continue;