blob: 519c651bf00851043d36f8a8c69bbe449a20dae9 [file] [log] [blame]
Kostya Serebryany79677382015-03-31 21:39:38 +00001========================================================
Kostya Serebryany35ce8632015-03-30 23:05:30 +00002LibFuzzer -- a library for coverage-guided fuzz testing.
3========================================================
Kostya Serebryany79677382015-03-31 21:39:38 +00004.. contents::
5 :local:
6 :depth: 4
7
8Introduction
9============
Kostya Serebryany35ce8632015-03-30 23:05:30 +000010
11This library is intended primarily for in-process coverage-guided fuzz testing
12(fuzzing) of other libraries. The typical workflow looks like this:
13
14* Build the Fuzzer library as a static archive (or just a set of .o files).
15 Note that the Fuzzer contains the main() function.
16 Preferably do *not* use sanitizers while building the Fuzzer.
Alexey Samsonov21a33812015-05-07 23:33:24 +000017* Build the library you are going to test with
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000018 `-fsanitize-coverage={bb,edge}[,indirect-calls,8bit-counters]`
Kostya Serebryany35ce8632015-03-30 23:05:30 +000019 and one of the sanitizers. We recommend to build the library in several
20 different modes (e.g. asan, msan, lsan, ubsan, etc) and even using different
21 optimizations options (e.g. -O0, -O1, -O2) to diversify testing.
22* Build a test driver using the same options as the library.
23 The test driver is a C/C++ file containing interesting calls to the library
Kostya Serebryany566bc5a2015-05-06 22:19:00 +000024 inside a single function ``extern "C" void LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);``
Kostya Serebryany35ce8632015-03-30 23:05:30 +000025* Link the Fuzzer, the library and the driver together into an executable
26 using the same sanitizer options as for the library.
27* Collect the initial corpus of inputs for the
28 fuzzer (a directory with test inputs, one file per input).
29 The better your inputs are the faster you will find something interesting.
30 Also try to keep your inputs small, otherwise the Fuzzer will run too slow.
Kostya Serebryanyc5f905c2015-05-26 19:32:52 +000031 By default, the Fuzzer limits the size of every input to 64 bytes
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000032 (use ``-max_len=N`` to override).
Kostya Serebryany35ce8632015-03-30 23:05:30 +000033* Run the fuzzer with the test corpus. As new interesting test cases are
34 discovered they will be added to the corpus. If a bug is discovered by
35 the sanitizer (asan, etc) it will be reported as usual and the reproducer
36 will be written to disk.
37 Each Fuzzer process is single-threaded (unless the library starts its own
Alexey Samsonov675e5392015-04-27 22:50:06 +000038 threads). You can run the Fuzzer on the same corpus in multiple processes
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000039 in parallel.
Kostya Serebryany35ce8632015-03-30 23:05:30 +000040
41
Kostya Serebryany79677382015-03-31 21:39:38 +000042The Fuzzer is similar in concept to AFL_,
Kostya Serebryany35ce8632015-03-30 23:05:30 +000043but uses in-process Fuzzing, which is more fragile, more restrictive, but
44potentially much faster as it has no overhead for process start-up.
Kostya Serebryany79677382015-03-31 21:39:38 +000045It uses LLVM's SanitizerCoverage_ instrumentation to get in-process
46coverage-feedback
Kostya Serebryany35ce8632015-03-30 23:05:30 +000047
Kostya Serebryany79677382015-03-31 21:39:38 +000048The code resides in the LLVM repository, requires the fresh Clang compiler to build
49and is used to fuzz various parts of LLVM,
50but the Fuzzer itself does not (and should not) depend on any
51part of LLVM and can be used for other projects w/o requiring the rest of LLVM.
Kostya Serebryany35ce8632015-03-30 23:05:30 +000052
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000053Flags
54=====
55The most important flags are::
56
57 seed 0 Random seed. If 0, seed is generated.
58 runs -1 Number of individual test runs (-1 for infinite runs).
Kostya Serebryanyc5f905c2015-05-26 19:32:52 +000059 max_len 64 Maximum length of the test input.
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000060 cross_over 1 If 1, cross over inputs.
61 mutate_depth 5 Apply this number of consecutive mutations to each input.
Kostya Serebryany316b5712015-05-26 20:57:47 +000062 timeout 1200 Timeout in seconds (if positive). If one unit runs more than this number of seconds the process will abort.
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000063 help 0 Print help.
64 save_minimized_corpus 0 If 1, the minimized corpus is saved into the first input directory
65 jobs 0 Number of jobs to run. If jobs >= 1 we spawn this number of jobs in separate worker processes with stdout/stderr redirected to fuzz-JOB.log.
66 workers 0 Number of simultaneous worker processes to run the jobs. If zero, "min(jobs,NumberOfCpuCores()/2)" is used.
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000067 sync_command 0 Execute an external command "<sync_command> <test_corpus>" to synchronize the test corpus.
Kostya Serebryanyc5f905c2015-05-26 19:32:52 +000068 sync_timeout 600 Minimum timeout between syncs.
Kostya Serebryanyb17e2982015-07-31 21:48:10 +000069 use_traces 0 Experimental: use instruction traces
Kostya Serebryanybc7c0ad2015-08-11 01:44:42 +000070 only_ascii 0 If 1, generate only ASCII (isprint+isspace) inputs.
Kostya Serebryanyb17e2982015-07-31 21:48:10 +000071
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000072
73For the full list of flags run the fuzzer binary with ``-help=1``.
74
Kostya Serebryany79677382015-03-31 21:39:38 +000075Usage examples
76==============
77
78Toy example
79-----------
80
81A simple function that does something interesting if it receives the input "HI!"::
82
83 cat << EOF >> test_fuzzer.cc
Kostya Serebryany566bc5a2015-05-06 22:19:00 +000084 extern "C" void LLVMFuzzerTestOneInput(const unsigned char *data, unsigned long size) {
Kostya Serebryany79677382015-03-31 21:39:38 +000085 if (size > 0 && data[0] == 'H')
86 if (size > 1 && data[1] == 'I')
87 if (size > 2 && data[2] == '!')
88 __builtin_trap();
89 }
90 EOF
91 # Get lib/Fuzzer. Assuming that you already have fresh clang in PATH.
92 svn co http://llvm.org/svn/llvm-project/llvm/trunk/lib/Fuzzer
93 # Build lib/Fuzzer files.
94 clang -c -g -O2 -std=c++11 Fuzzer/*.cpp -IFuzzer
95 # Build test_fuzzer.cc with asan and link against lib/Fuzzer.
Alexey Samsonov21a33812015-05-07 23:33:24 +000096 clang++ -fsanitize=address -fsanitize-coverage=edge test_fuzzer.cc Fuzzer*.o
Kostya Serebryany79677382015-03-31 21:39:38 +000097 # Run the fuzzer with no corpus.
98 ./a.out
99
100You should get ``Illegal instruction (core dumped)`` pretty quickly.
101
102PCRE2
103-----
104
105Here we show how to use lib/Fuzzer on something real, yet simple: pcre2_::
106
Alexey Samsonov21a33812015-05-07 23:33:24 +0000107 COV_FLAGS=" -fsanitize-coverage=edge,indirect-calls,8bit-counters"
Kostya Serebryany79677382015-03-31 21:39:38 +0000108 # Get PCRE2
109 svn co svn://vcs.exim.org/pcre2/code/trunk pcre
110 # Get lib/Fuzzer. Assuming that you already have fresh clang in PATH.
111 svn co http://llvm.org/svn/llvm-project/llvm/trunk/lib/Fuzzer
112 # Build PCRE2 with AddressSanitizer and coverage.
113 (cd pcre; ./autogen.sh; CC="clang -fsanitize=address $COV_FLAGS" ./configure --prefix=`pwd`/../inst && make -j && make install)
114 # Build lib/Fuzzer files.
115 clang -c -g -O2 -std=c++11 Fuzzer/*.cpp -IFuzzer
Eric Christopher572e03a2015-06-19 01:53:21 +0000116 # Build the actual function that does something interesting with PCRE2.
Kostya Serebryany79677382015-03-31 21:39:38 +0000117 cat << EOF > pcre_fuzzer.cc
118 #include <string.h>
119 #include "pcre2posix.h"
Kostya Serebryany566bc5a2015-05-06 22:19:00 +0000120 extern "C" void LLVMFuzzerTestOneInput(const unsigned char *data, size_t size) {
Kostya Serebryany79677382015-03-31 21:39:38 +0000121 if (size < 1) return;
122 char *str = new char[size+1];
123 memcpy(str, data, size);
124 str[size] = 0;
125 regex_t preg;
126 if (0 == regcomp(&preg, str, 0)) {
127 regexec(&preg, str, 0, 0, 0);
128 regfree(&preg);
129 }
130 delete [] str;
131 }
132 EOF
133 clang++ -g -fsanitize=address $COV_FLAGS -c -std=c++11 -I inst/include/ pcre_fuzzer.cc
134 # Link.
135 clang++ -g -fsanitize=address -Wl,--whole-archive inst/lib/*.a -Wl,-no-whole-archive Fuzzer*.o pcre_fuzzer.o -o pcre_fuzzer
136
137This will give you a binary of the fuzzer, called ``pcre_fuzzer``.
138Now, create a directory that will hold the test corpus::
139
140 mkdir -p CORPUS
141
142For simple input languages like regular expressions this is all you need.
143For more complicated inputs populate the directory with some input samples.
144Now run the fuzzer with the corpus dir as the only parameter::
145
146 ./pcre_fuzzer ./CORPUS
147
148You will see output like this::
149
150 Seed: 1876794929
151 #0 READ cov 0 bits 0 units 1 exec/s 0
152 #1 pulse cov 3 bits 0 units 1 exec/s 0
153 #1 INITED cov 3 bits 0 units 1 exec/s 0
154 #2 pulse cov 208 bits 0 units 1 exec/s 0
155 #2 NEW cov 208 bits 0 units 2 exec/s 0 L: 64
156 #3 NEW cov 217 bits 0 units 3 exec/s 0 L: 63
157 #4 pulse cov 217 bits 0 units 3 exec/s 0
158
159* The ``Seed:`` line shows you the current random seed (you can change it with ``-seed=N`` flag).
160* The ``READ`` line shows you how many input files were read (since you passed an empty dir there were inputs, but one dummy input was synthesised).
161* The ``INITED`` line shows you that how many inputs will be fuzzed.
162* The ``NEW`` lines appear with the fuzzer finds a new interesting input, which is saved to the CORPUS dir. If multiple corpus dirs are given, the first one is used.
163* The ``pulse`` lines appear periodically to show the current status.
164
165Now, interrupt the fuzzer and run it again the same way. You will see::
166
167 Seed: 1879995378
168 #0 READ cov 0 bits 0 units 564 exec/s 0
169 #1 pulse cov 502 bits 0 units 564 exec/s 0
170 ...
171 #512 pulse cov 2933 bits 0 units 564 exec/s 512
172 #564 INITED cov 2991 bits 0 units 344 exec/s 564
173 #1024 pulse cov 2991 bits 0 units 344 exec/s 1024
174 #1455 NEW cov 2995 bits 0 units 345 exec/s 1455 L: 49
175
176This time you were running the fuzzer with a non-empty input corpus (564 items).
177As the first step, the fuzzer minimized the set to produce 344 interesting items (the ``INITED`` line)
178
Kostya Serebryanyfb2f3312015-05-13 22:42:28 +0000179It is quite convenient to store test corpuses in git.
180As an example, here is a git repository with test inputs for the above PCRE2 fuzzer::
181
182 git clone https://github.com/kcc/fuzzing-with-sanitizers.git
183 ./pcre_fuzzer ./fuzzing-with-sanitizers/pcre2/C1/
184
Kostya Serebryany79677382015-03-31 21:39:38 +0000185You may run ``N`` independent fuzzer jobs in parallel on ``M`` CPUs::
186
187 N=100; M=4; ./pcre_fuzzer ./CORPUS -jobs=$N -workers=$M
188
Kostya Serebryany9690fcf2015-05-12 18:51:57 +0000189By default (``-reload=1``) the fuzzer processes will periodically scan the CORPUS directory
190and reload any new tests. This way the test inputs found by one process will be picked up
191by all others.
Kostya Serebryany79677382015-03-31 21:39:38 +0000192
Kostya Serebryany9690fcf2015-05-12 18:51:57 +0000193If ``-workers=$M`` is not supplied, ``min($N,NumberOfCpuCore/2)`` will be used.
Kostya Serebryany79677382015-03-31 21:39:38 +0000194
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000195Heartbleed
196----------
197Remember Heartbleed_?
198As it was recently `shown <https://blog.hboeck.de/archives/868-How-Heartbleed-couldve-been-found.html>`_,
199fuzzing with AddressSanitizer can find Heartbleed. Indeed, here are the step-by-step instructions
200to find Heartbleed with LibFuzzer::
201
202 wget https://www.openssl.org/source/openssl-1.0.1f.tar.gz
203 tar xf openssl-1.0.1f.tar.gz
Alexey Samsonov21a33812015-05-07 23:33:24 +0000204 COV_FLAGS="-fsanitize-coverage=edge,indirect-calls" # -fsanitize-coverage=8bit-counters
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000205 (cd openssl-1.0.1f/ && ./config &&
206 make -j 32 CC="clang -g -fsanitize=address $COV_FLAGS")
207 # Get and build LibFuzzer
208 svn co http://llvm.org/svn/llvm-project/llvm/trunk/lib/Fuzzer
209 clang -c -g -O2 -std=c++11 Fuzzer/*.cpp -IFuzzer
210 # Get examples of key/pem files.
211 git clone https://github.com/hannob/selftls
212 cp selftls/server* . -v
213 cat << EOF > handshake-fuzz.cc
214 #include <openssl/ssl.h>
215 #include <openssl/err.h>
216 #include <assert.h>
217 SSL_CTX *sctx;
218 int Init() {
219 SSL_library_init();
220 SSL_load_error_strings();
221 ERR_load_BIO_strings();
222 OpenSSL_add_all_algorithms();
223 assert (sctx = SSL_CTX_new(TLSv1_method()));
224 assert (SSL_CTX_use_certificate_file(sctx, "server.pem", SSL_FILETYPE_PEM));
225 assert (SSL_CTX_use_PrivateKey_file(sctx, "server.key", SSL_FILETYPE_PEM));
226 return 0;
227 }
Kostya Serebryany566bc5a2015-05-06 22:19:00 +0000228 extern "C" void LLVMFuzzerTestOneInput(unsigned char *Data, size_t Size) {
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000229 static int unused = Init();
230 SSL *server = SSL_new(sctx);
231 BIO *sinbio = BIO_new(BIO_s_mem());
232 BIO *soutbio = BIO_new(BIO_s_mem());
233 SSL_set_bio(server, sinbio, soutbio);
234 SSL_set_accept_state(server);
235 BIO_write(sinbio, Data, Size);
236 SSL_do_handshake(server);
237 SSL_free(server);
238 }
239 EOF
240 # Build the fuzzer.
241 clang++ -g handshake-fuzz.cc -fsanitize=address \
242 openssl-1.0.1f/libssl.a openssl-1.0.1f/libcrypto.a Fuzzer*.o
243 # Run 20 independent fuzzer jobs.
244 ./a.out -jobs=20 -workers=20
245
246Voila::
247
248 #1048576 pulse cov 3424 bits 0 units 9 exec/s 24385
249 =================================================================
250 ==17488==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x629000004748 at pc 0x00000048c979 bp 0x7fffe3e864f0 sp 0x7fffe3e85ca8
251 READ of size 60731 at 0x629000004748 thread T0
252 #0 0x48c978 in __asan_memcpy
253 #1 0x4db504 in tls1_process_heartbeat openssl-1.0.1f/ssl/t1_lib.c:2586:3
254 #2 0x580be3 in ssl3_read_bytes openssl-1.0.1f/ssl/s3_pkt.c:1092:4
255
Kostya Serebryany043ab1c2015-04-01 21:33:20 +0000256Advanced features
257=================
258
Kostya Serebryany7d211662015-09-04 00:12:11 +0000259Dictionaries
260------------
261*EXPERIMENTAL*.
262LibFuzzer supports user-supplied dictionaries with input language keywords
263or other interesting byte sequences (e.g. multi-byte magic values).
264Use ``-dict=DICTIONARY_FILE``. For some input languages using a dictionary
265may significantly improve the search speed.
266The dictionary syntax is similar to that used by AFL_ for its ``-x`` option::
267
268 # Lines starting with '#' and empty lines are ignored.
269
270 # Adds "blah" (w/o quotes) to the dictionary.
271 kw1="blah"
272 # Use \\ for backslash and \" for quotes.
273 kw2="\"ac\\dc\""
274 # Use \xAB for hex values
275 kw3="\xF7\xF8"
276 # the name of the keyword followed by '=' may be omitted:
277 "foo\x0Abar"
278
Kostya Serebryanyb17e2982015-07-31 21:48:10 +0000279Data-flow-guided fuzzing
280------------------------
281
282*EXPERIMENTAL*.
283With an additional compiler flag ``-fsanitize-coverage=trace-cmp`` (see SanitizerCoverageTraceDataFlow_)
284and extra run-time flag ``-use_traces=1`` the fuzzer will try to apply *data-flow-guided fuzzing*.
285That is, the fuzzer will record the inputs to comparison instructions, switch statements,
Kostya Serebryany7f4227d2015-08-05 18:23:01 +0000286and several libc functions (``memcmp``, ``strcmp``, ``strncmp``, etc).
Kostya Serebryanyb17e2982015-07-31 21:48:10 +0000287It will later use those recorded inputs during mutations.
288
289This mode can be combined with DataFlowSanitizer_ to achieve better sensitivity.
290
Kostya Serebryany6bd016b2015-04-10 05:44:43 +0000291AFL compatibility
292-----------------
293LibFuzzer can be used in parallel with AFL_ on the same test corpus.
294Both fuzzers expect the test corpus to reside in a directory, one file per input.
295You can run both fuzzers on the same corpus in parallel::
296
297 ./afl-fuzz -i testcase_dir -o findings_dir /path/to/program -r @@
298 ./llvm-fuzz testcase_dir findings_dir # Will write new tests to testcase_dir
299
300Periodically restart both fuzzers so that they can use each other's findings.
Kostya Serebryany79677382015-03-31 21:39:38 +0000301
Kostya Serebryanycd073d52015-04-10 06:32:29 +0000302How good is my fuzzer?
303----------------------
304
Kostya Serebryany566bc5a2015-05-06 22:19:00 +0000305Once you implement your target function ``LLVMFuzzerTestOneInput`` and fuzz it to death,
Kostya Serebryanycd073d52015-04-10 06:32:29 +0000306you will want to know whether the function or the corpus can be improved further.
307One easy to use metric is, of course, code coverage.
308You can get the coverage for your corpus like this::
309
310 ASAN_OPTIONS=coverage_pcs=1 ./fuzzer CORPUS_DIR -runs=0
311
312This will run all the tests in the CORPUS_DIR but will not generate any new tests
313and dump covered PCs to disk before exiting.
314Then you can subtract the set of covered PCs from the set of all instrumented PCs in the binary,
315see SanitizerCoverage_ for details.
316
Kostya Serebryany926b9bd2015-05-22 22:43:05 +0000317User-supplied mutators
318----------------------
319
320LibFuzzer allows to use custom (user-supplied) mutators,
321see FuzzerInterface.h_
322
Kostya Serebryany79677382015-03-31 21:39:38 +0000323Fuzzing components of LLVM
324==========================
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000325
326clang-format-fuzzer
327-------------------
328The inputs are random pieces of C++-like text.
329
330Build (make sure to use fresh clang as the host compiler)::
331
332 cmake -GNinja -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DLLVM_USE_SANITIZER=Address -DLLVM_USE_SANITIZE_COVERAGE=YES -DCMAKE_BUILD_TYPE=Release /path/to/llvm
333 ninja clang-format-fuzzer
334 mkdir CORPUS_DIR
335 ./bin/clang-format-fuzzer CORPUS_DIR
336
337Optionally build other kinds of binaries (asan+Debug, msan, ubsan, etc).
338
Kostya Serebryany79677382015-03-31 21:39:38 +0000339Tracking bug: https://llvm.org/bugs/show_bug.cgi?id=23052
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000340
Kostya Serebryany79677382015-03-31 21:39:38 +0000341clang-fuzzer
342------------
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000343
Kostya Serebryany866e0d12015-09-02 22:44:46 +0000344The behavior is very similar to ``clang-format-fuzzer``.
Kostya Serebryany79677382015-03-31 21:39:38 +0000345
346Tracking bug: https://llvm.org/bugs/show_bug.cgi?id=23057
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000347
Kostya Serebryanyb98e3272015-08-31 18:57:24 +0000348llvm-as-fuzzer
349--------------
350
351Tracking bug: https://llvm.org/bugs/show_bug.cgi?id=24639
352
Kostya Serebryanyfb2f3312015-05-13 22:42:28 +0000353Buildbot
354--------
355
356We have a buildbot that runs the above fuzzers for LLVM components
35724/7/365 at http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-fuzzer .
358
359Pre-fuzzed test inputs in git
360-----------------------------
361
362The buildbot occumulates large test corpuses over time.
363The corpuses are stored in git on github and can be used like this::
364
365 git clone https://github.com/kcc/fuzzing-with-sanitizers.git
366 bin/clang-format-fuzzer fuzzing-with-sanitizers/llvm/clang-format/C1
367 bin/clang-fuzzer fuzzing-with-sanitizers/llvm/clang/C1/
Kostya Serebryanyb98e3272015-08-31 18:57:24 +0000368 bin/llvm-as-fuzzer fuzzing-with-sanitizers/llvm/llvm-as/C1 -only_ascii=1
Kostya Serebryanyfb2f3312015-05-13 22:42:28 +0000369
370
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000371FAQ
372=========================
373
374Q. Why Fuzzer does not use any of the LLVM support?
375---------------------------------------------------
376
377There are two reasons.
378
379First, we want this library to be used outside of the LLVM w/o users having to
380build the rest of LLVM. This may sound unconvincing for many LLVM folks,
381but in practice the need for building the whole LLVM frightens many potential
382users -- and we want more users to use this code.
383
384Second, there is a subtle technical reason not to rely on the rest of LLVM, or
385any other large body of code (maybe not even STL). When coverage instrumentation
386is enabled, it will also instrument the LLVM support code which will blow up the
387coverage set of the process (since the fuzzer is in-process). In other words, by
388using more external dependencies we will slow down the fuzzer while the main
389reason for it to exist is extreme speed.
390
391Q. What about Windows then? The Fuzzer contains code that does not build on Windows.
392------------------------------------------------------------------------------------
393
394The sanitizer coverage support does not work on Windows either as of 01/2015.
395Once it's there, we'll need to re-implement OS-specific parts (I/O, signals).
396
397Q. When this Fuzzer is not a good solution for a problem?
398---------------------------------------------------------
399
400* If the test inputs are validated by the target library and the validator
401 asserts/crashes on invalid inputs, the in-process fuzzer is not applicable
402 (we could use fork() w/o exec, but it comes with extra overhead).
403* Bugs in the target library may accumulate w/o being detected. E.g. a memory
404 corruption that goes undetected at first and then leads to a crash while
405 testing another input. This is why it is highly recommended to run this
406 in-process fuzzer with all sanitizers to detect most bugs on the spot.
407* It is harder to protect the in-process fuzzer from excessive memory
408 consumption and infinite loops in the target library (still possible).
409* The target library should not have significant global state that is not
410 reset between the runs.
411* Many interesting target libs are not designed in a way that supports
412 the in-process fuzzer interface (e.g. require a file path instead of a
413 byte array).
414* If a single test run takes a considerable fraction of a second (or
415 more) the speed benefit from the in-process fuzzer is negligible.
416* If the target library runs persistent threads (that outlive
417 execution of one test) the fuzzing results will be unreliable.
418
419Q. So, what exactly this Fuzzer is good for?
420--------------------------------------------
421
422This Fuzzer might be a good choice for testing libraries that have relatively
423small inputs, each input takes < 1ms to run, and the library code is not expected
424to crash on invalid inputs.
425Examples: regular expression matchers, text or binary format parsers.
426
Kostya Serebryanyfab4fba2015-08-11 01:53:45 +0000427Trophies
428========
429* GLIBC: https://sourceware.org/glibc/wiki/FuzzingLibc
Kostya Serebryanyfdf44182015-08-11 04:16:37 +0000430
Kostya Serebryanyfab4fba2015-08-11 01:53:45 +0000431* MUSL LIBC:
Kostya Serebryanyfdf44182015-08-11 04:16:37 +0000432
433 * http://git.musl-libc.org/cgit/musl/commit/?id=39dfd58417ef642307d90306e1c7e50aaec5a35c
434 * http://www.openwall.com/lists/oss-security/2015/03/30/3
435
Kostya Serebryanyfab4fba2015-08-11 01:53:45 +0000436* pugixml: https://github.com/zeux/pugixml/issues/39
Kostya Serebryanyfdf44182015-08-11 04:16:37 +0000437
Kostya Serebryanyfab4fba2015-08-11 01:53:45 +0000438* PCRE: Search for "LLVM fuzzer" in http://vcs.pcre.org/pcre2/code/trunk/ChangeLog?view=markup
Kostya Serebryanyfdf44182015-08-11 04:16:37 +0000439
Kostya Serebryanyed483772015-08-11 20:34:48 +0000440* ICU: http://bugs.icu-project.org/trac/ticket/11838
441
Kostya Serebryanyfab4fba2015-08-11 01:53:45 +0000442* LLVM:
Kostya Serebryanyfdf44182015-08-11 04:16:37 +0000443
444 * Clang: https://llvm.org/bugs/show_bug.cgi?id=23057
445
446 * Clang-format: https://llvm.org/bugs/show_bug.cgi?id=23052
447
448 * libc++: https://llvm.org/bugs/show_bug.cgi?id=24411
Kostya Serebryanyfab4fba2015-08-11 01:53:45 +0000449
Kostya Serebryanyb98e3272015-08-31 18:57:24 +0000450 * llvm-as: https://llvm.org/bugs/show_bug.cgi?id=24639
451
Kostya Serebryanyfab4fba2015-08-11 01:53:45 +0000452
453
Kostya Serebryany79677382015-03-31 21:39:38 +0000454.. _pcre2: http://www.pcre.org/
455
456.. _AFL: http://lcamtuf.coredump.cx/afl/
457
Alexey Samsonov675e5392015-04-27 22:50:06 +0000458.. _SanitizerCoverage: http://clang.llvm.org/docs/SanitizerCoverage.html
Kostya Serebryanyb17e2982015-07-31 21:48:10 +0000459.. _SanitizerCoverageTraceDataFlow: http://clang.llvm.org/docs/SanitizerCoverage.html#tracing-data-flow
460.. _DataFlowSanitizer: http://clang.llvm.org/docs/DataFlowSanitizer.html
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000461
462.. _Heartbleed: http://en.wikipedia.org/wiki/Heartbleed
Kostya Serebryany926b9bd2015-05-22 22:43:05 +0000463
464.. _FuzzerInterface.h: https://github.com/llvm-mirror/llvm/blob/master/lib/Fuzzer/FuzzerInterface.h