接上篇,当然依旧是整理自gist。
libfuzzer是llvm下面的一个项目
LibFuzzer is in-process, coverage-guided, evolutionary fuzzing engine. LibFuzzer is linked with the library under test, and feeds fuzzed inputs to the library via a specific fuzzing entrypoint (aka “target function”); the fuzzer then tracks which areas of the code are reached, and generates mutations on the corpus of input data in order to maximize the code coverage. The code coverage information for libFuzzer is provided by LLVM’s SanitizerCoverage instrumentation.
下面开始搞一搞吧
Chromium fuzzing tutorial
ubuntu16.04:
1 |
|
8核8G的机器,前面的基本上一秒编译一个,看来可能要9个小时后才能编译完。运气好的话
编译结束,大小也变成了49G
构建libfuzzer
1 | $ gn gen out/libfuzzer '--args=use_libfuzzer=true is_asan=true is_ubsan_security=true is_debug=false enable_nacl=false' --check |
1 | $ ./out/libfuzzer/v8_json_parser_fuzzer ~/chromium/testcases/json_parser_corpus/ --dict=json.dict -jobs=6 -workers=6 |
ToDo
- gn用法
- ninja 用法