blob: 6f86db4c0a8d751d816a582cc9909a0c715b699f [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 Serebryany20bb5e72015-10-02 23:34:06 +000024 inside a single function ``extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);``.
25 Currently, the only expected return value is 0, others are reserved for future.
Kostya Serebryany35ce8632015-03-30 23:05:30 +000026* Link the Fuzzer, the library and the driver together into an executable
27 using the same sanitizer options as for the library.
28* Collect the initial corpus of inputs for the
29 fuzzer (a directory with test inputs, one file per input).
30 The better your inputs are the faster you will find something interesting.
31 Also try to keep your inputs small, otherwise the Fuzzer will run too slow.
Kostya Serebryanyc5f905c2015-05-26 19:32:52 +000032 By default, the Fuzzer limits the size of every input to 64 bytes
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000033 (use ``-max_len=N`` to override).
Kostya Serebryany35ce8632015-03-30 23:05:30 +000034* Run the fuzzer with the test corpus. As new interesting test cases are
35 discovered they will be added to the corpus. If a bug is discovered by
36 the sanitizer (asan, etc) it will be reported as usual and the reproducer
37 will be written to disk.
38 Each Fuzzer process is single-threaded (unless the library starts its own
Alexey Samsonov675e5392015-04-27 22:50:06 +000039 threads). You can run the Fuzzer on the same corpus in multiple processes
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000040 in parallel.
Kostya Serebryany35ce8632015-03-30 23:05:30 +000041
42
Kostya Serebryany79677382015-03-31 21:39:38 +000043The Fuzzer is similar in concept to AFL_,
Kostya Serebryany35ce8632015-03-30 23:05:30 +000044but uses in-process Fuzzing, which is more fragile, more restrictive, but
45potentially much faster as it has no overhead for process start-up.
Kostya Serebryany79677382015-03-31 21:39:38 +000046It uses LLVM's SanitizerCoverage_ instrumentation to get in-process
47coverage-feedback
Kostya Serebryany35ce8632015-03-30 23:05:30 +000048
Kostya Serebryany79677382015-03-31 21:39:38 +000049The code resides in the LLVM repository, requires the fresh Clang compiler to build
50and is used to fuzz various parts of LLVM,
51but the Fuzzer itself does not (and should not) depend on any
52part of LLVM and can be used for other projects w/o requiring the rest of LLVM.
Kostya Serebryany35ce8632015-03-30 23:05:30 +000053
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000054Flags
55=====
56The most important flags are::
57
58 seed 0 Random seed. If 0, seed is generated.
59 runs -1 Number of individual test runs (-1 for infinite runs).
Kostya Serebryanyc5f905c2015-05-26 19:32:52 +000060 max_len 64 Maximum length of the test input.
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000061 cross_over 1 If 1, cross over inputs.
62 mutate_depth 5 Apply this number of consecutive mutations to each input.
Kostya Serebryany316b5712015-05-26 20:57:47 +000063 timeout 1200 Timeout in seconds (if positive). If one unit runs more than this number of seconds the process will abort.
Kostya Serebryanyb85db172015-10-02 20:47:55 +000064 max_total_time 0 If positive, indicates the maximal total time in seconds to run the fuzzer.
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000065 help 0 Print help.
Kostya Serebryanyb06fae52015-09-08 17:43:51 +000066 save_minimized_corpus 0 If 1, the minimized corpus is saved into the first input directory. Example: ./fuzzer -save_minimized_corpus=1 NEW_EMPTY_DIR OLD_CORPUS
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000067 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.
68 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 +000069 sync_command 0 Execute an external command "<sync_command> <test_corpus>" to synchronize the test corpus.
Kostya Serebryanyc5f905c2015-05-26 19:32:52 +000070 sync_timeout 600 Minimum timeout between syncs.
Kostya Serebryanyb17e2982015-07-31 21:48:10 +000071 use_traces 0 Experimental: use instruction traces
Kostya Serebryanybc7c0ad2015-08-11 01:44:42 +000072 only_ascii 0 If 1, generate only ASCII (isprint+isspace) inputs.
Ivan Krasin95e82d52015-10-01 23:23:06 +000073 test_single_input "" Use specified file content as test input. Test will be run only once. Useful for debugging a particular case.
Kostya Serebryanybd5d1cd2015-10-09 03:57:59 +000074 artifact_prefix "" Write fuzzing artifacts (crash, timeout, or slow inputs) as $(artifact_prefix)file
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000075
76For the full list of flags run the fuzzer binary with ``-help=1``.
77
Kostya Serebryany79677382015-03-31 21:39:38 +000078Usage examples
79==============
80
81Toy example
82-----------
83
84A simple function that does something interesting if it receives the input "HI!"::
85
86 cat << EOF >> test_fuzzer.cc
Kostya Serebryany20bb5e72015-10-02 23:34:06 +000087 extern "C" int LLVMFuzzerTestOneInput(const unsigned char *data, unsigned long size) {
Kostya Serebryany79677382015-03-31 21:39:38 +000088 if (size > 0 && data[0] == 'H')
89 if (size > 1 && data[1] == 'I')
90 if (size > 2 && data[2] == '!')
91 __builtin_trap();
Kostya Serebryany20bb5e72015-10-02 23:34:06 +000092 return 0;
Kostya Serebryany79677382015-03-31 21:39:38 +000093 }
94 EOF
95 # Get lib/Fuzzer. Assuming that you already have fresh clang in PATH.
96 svn co http://llvm.org/svn/llvm-project/llvm/trunk/lib/Fuzzer
97 # Build lib/Fuzzer files.
98 clang -c -g -O2 -std=c++11 Fuzzer/*.cpp -IFuzzer
99 # Build test_fuzzer.cc with asan and link against lib/Fuzzer.
Alexey Samsonov21a33812015-05-07 23:33:24 +0000100 clang++ -fsanitize=address -fsanitize-coverage=edge test_fuzzer.cc Fuzzer*.o
Kostya Serebryany79677382015-03-31 21:39:38 +0000101 # Run the fuzzer with no corpus.
102 ./a.out
103
104You should get ``Illegal instruction (core dumped)`` pretty quickly.
105
106PCRE2
107-----
108
109Here we show how to use lib/Fuzzer on something real, yet simple: pcre2_::
110
Alexey Samsonov21a33812015-05-07 23:33:24 +0000111 COV_FLAGS=" -fsanitize-coverage=edge,indirect-calls,8bit-counters"
Kostya Serebryany79677382015-03-31 21:39:38 +0000112 # Get PCRE2
113 svn co svn://vcs.exim.org/pcre2/code/trunk pcre
114 # Get lib/Fuzzer. Assuming that you already have fresh clang in PATH.
115 svn co http://llvm.org/svn/llvm-project/llvm/trunk/lib/Fuzzer
116 # Build PCRE2 with AddressSanitizer and coverage.
117 (cd pcre; ./autogen.sh; CC="clang -fsanitize=address $COV_FLAGS" ./configure --prefix=`pwd`/../inst && make -j && make install)
118 # Build lib/Fuzzer files.
119 clang -c -g -O2 -std=c++11 Fuzzer/*.cpp -IFuzzer
Eric Christopher572e03a2015-06-19 01:53:21 +0000120 # Build the actual function that does something interesting with PCRE2.
Kostya Serebryany79677382015-03-31 21:39:38 +0000121 cat << EOF > pcre_fuzzer.cc
122 #include <string.h>
123 #include "pcre2posix.h"
Kostya Serebryany20bb5e72015-10-02 23:34:06 +0000124 extern "C" int LLVMFuzzerTestOneInput(const unsigned char *data, size_t size) {
125 if (size < 1) return 0;
Kostya Serebryany79677382015-03-31 21:39:38 +0000126 char *str = new char[size+1];
127 memcpy(str, data, size);
128 str[size] = 0;
129 regex_t preg;
130 if (0 == regcomp(&preg, str, 0)) {
131 regexec(&preg, str, 0, 0, 0);
132 regfree(&preg);
133 }
134 delete [] str;
Kostya Serebryany20bb5e72015-10-02 23:34:06 +0000135 return 0;
Kostya Serebryany79677382015-03-31 21:39:38 +0000136 }
137 EOF
138 clang++ -g -fsanitize=address $COV_FLAGS -c -std=c++11 -I inst/include/ pcre_fuzzer.cc
139 # Link.
140 clang++ -g -fsanitize=address -Wl,--whole-archive inst/lib/*.a -Wl,-no-whole-archive Fuzzer*.o pcre_fuzzer.o -o pcre_fuzzer
141
142This will give you a binary of the fuzzer, called ``pcre_fuzzer``.
143Now, create a directory that will hold the test corpus::
144
145 mkdir -p CORPUS
146
147For simple input languages like regular expressions this is all you need.
148For more complicated inputs populate the directory with some input samples.
149Now run the fuzzer with the corpus dir as the only parameter::
150
151 ./pcre_fuzzer ./CORPUS
152
153You will see output like this::
154
155 Seed: 1876794929
156 #0 READ cov 0 bits 0 units 1 exec/s 0
157 #1 pulse cov 3 bits 0 units 1 exec/s 0
158 #1 INITED cov 3 bits 0 units 1 exec/s 0
159 #2 pulse cov 208 bits 0 units 1 exec/s 0
160 #2 NEW cov 208 bits 0 units 2 exec/s 0 L: 64
161 #3 NEW cov 217 bits 0 units 3 exec/s 0 L: 63
162 #4 pulse cov 217 bits 0 units 3 exec/s 0
163
164* The ``Seed:`` line shows you the current random seed (you can change it with ``-seed=N`` flag).
165* 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).
166* The ``INITED`` line shows you that how many inputs will be fuzzed.
167* 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.
168* The ``pulse`` lines appear periodically to show the current status.
169
170Now, interrupt the fuzzer and run it again the same way. You will see::
171
172 Seed: 1879995378
173 #0 READ cov 0 bits 0 units 564 exec/s 0
174 #1 pulse cov 502 bits 0 units 564 exec/s 0
175 ...
176 #512 pulse cov 2933 bits 0 units 564 exec/s 512
177 #564 INITED cov 2991 bits 0 units 344 exec/s 564
178 #1024 pulse cov 2991 bits 0 units 344 exec/s 1024
179 #1455 NEW cov 2995 bits 0 units 345 exec/s 1455 L: 49
180
181This time you were running the fuzzer with a non-empty input corpus (564 items).
182As the first step, the fuzzer minimized the set to produce 344 interesting items (the ``INITED`` line)
183
Kostya Serebryanyfb2f3312015-05-13 22:42:28 +0000184It is quite convenient to store test corpuses in git.
185As an example, here is a git repository with test inputs for the above PCRE2 fuzzer::
186
187 git clone https://github.com/kcc/fuzzing-with-sanitizers.git
188 ./pcre_fuzzer ./fuzzing-with-sanitizers/pcre2/C1/
189
Kostya Serebryany79677382015-03-31 21:39:38 +0000190You may run ``N`` independent fuzzer jobs in parallel on ``M`` CPUs::
191
192 N=100; M=4; ./pcre_fuzzer ./CORPUS -jobs=$N -workers=$M
193
Kostya Serebryany9690fcf2015-05-12 18:51:57 +0000194By default (``-reload=1``) the fuzzer processes will periodically scan the CORPUS directory
195and reload any new tests. This way the test inputs found by one process will be picked up
196by all others.
Kostya Serebryany79677382015-03-31 21:39:38 +0000197
Kostya Serebryany9690fcf2015-05-12 18:51:57 +0000198If ``-workers=$M`` is not supplied, ``min($N,NumberOfCpuCore/2)`` will be used.
Kostya Serebryany79677382015-03-31 21:39:38 +0000199
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000200Heartbleed
201----------
202Remember Heartbleed_?
203As it was recently `shown <https://blog.hboeck.de/archives/868-How-Heartbleed-couldve-been-found.html>`_,
204fuzzing with AddressSanitizer can find Heartbleed. Indeed, here are the step-by-step instructions
205to find Heartbleed with LibFuzzer::
206
207 wget https://www.openssl.org/source/openssl-1.0.1f.tar.gz
208 tar xf openssl-1.0.1f.tar.gz
Alexey Samsonov21a33812015-05-07 23:33:24 +0000209 COV_FLAGS="-fsanitize-coverage=edge,indirect-calls" # -fsanitize-coverage=8bit-counters
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000210 (cd openssl-1.0.1f/ && ./config &&
211 make -j 32 CC="clang -g -fsanitize=address $COV_FLAGS")
212 # Get and build LibFuzzer
213 svn co http://llvm.org/svn/llvm-project/llvm/trunk/lib/Fuzzer
214 clang -c -g -O2 -std=c++11 Fuzzer/*.cpp -IFuzzer
215 # Get examples of key/pem files.
216 git clone https://github.com/hannob/selftls
217 cp selftls/server* . -v
218 cat << EOF > handshake-fuzz.cc
219 #include <openssl/ssl.h>
220 #include <openssl/err.h>
221 #include <assert.h>
222 SSL_CTX *sctx;
223 int Init() {
224 SSL_library_init();
225 SSL_load_error_strings();
226 ERR_load_BIO_strings();
227 OpenSSL_add_all_algorithms();
228 assert (sctx = SSL_CTX_new(TLSv1_method()));
229 assert (SSL_CTX_use_certificate_file(sctx, "server.pem", SSL_FILETYPE_PEM));
230 assert (SSL_CTX_use_PrivateKey_file(sctx, "server.key", SSL_FILETYPE_PEM));
231 return 0;
232 }
Kostya Serebryany20bb5e72015-10-02 23:34:06 +0000233 extern "C" int LLVMFuzzerTestOneInput(unsigned char *Data, size_t Size) {
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000234 static int unused = Init();
235 SSL *server = SSL_new(sctx);
236 BIO *sinbio = BIO_new(BIO_s_mem());
237 BIO *soutbio = BIO_new(BIO_s_mem());
238 SSL_set_bio(server, sinbio, soutbio);
239 SSL_set_accept_state(server);
240 BIO_write(sinbio, Data, Size);
241 SSL_do_handshake(server);
242 SSL_free(server);
Kostya Serebryany20bb5e72015-10-02 23:34:06 +0000243 return 0;
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000244 }
245 EOF
Mehdi Amini30618f92015-09-17 15:59:52 +0000246 # Build the fuzzer.
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000247 clang++ -g handshake-fuzz.cc -fsanitize=address \
248 openssl-1.0.1f/libssl.a openssl-1.0.1f/libcrypto.a Fuzzer*.o
249 # Run 20 independent fuzzer jobs.
250 ./a.out -jobs=20 -workers=20
251
252Voila::
253
254 #1048576 pulse cov 3424 bits 0 units 9 exec/s 24385
255 =================================================================
256 ==17488==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x629000004748 at pc 0x00000048c979 bp 0x7fffe3e864f0 sp 0x7fffe3e85ca8
257 READ of size 60731 at 0x629000004748 thread T0
258 #0 0x48c978 in __asan_memcpy
259 #1 0x4db504 in tls1_process_heartbeat openssl-1.0.1f/ssl/t1_lib.c:2586:3
260 #2 0x580be3 in ssl3_read_bytes openssl-1.0.1f/ssl/s3_pkt.c:1092:4
261
Kostya Serebryany043ab1c2015-04-01 21:33:20 +0000262Advanced features
263=================
264
Kostya Serebryany7d211662015-09-04 00:12:11 +0000265Dictionaries
266------------
267*EXPERIMENTAL*.
268LibFuzzer supports user-supplied dictionaries with input language keywords
269or other interesting byte sequences (e.g. multi-byte magic values).
270Use ``-dict=DICTIONARY_FILE``. For some input languages using a dictionary
271may significantly improve the search speed.
272The dictionary syntax is similar to that used by AFL_ for its ``-x`` option::
273
274 # Lines starting with '#' and empty lines are ignored.
275
276 # Adds "blah" (w/o quotes) to the dictionary.
277 kw1="blah"
278 # Use \\ for backslash and \" for quotes.
279 kw2="\"ac\\dc\""
280 # Use \xAB for hex values
281 kw3="\xF7\xF8"
282 # the name of the keyword followed by '=' may be omitted:
283 "foo\x0Abar"
284
Kostya Serebryanyb17e2982015-07-31 21:48:10 +0000285Data-flow-guided fuzzing
286------------------------
287
288*EXPERIMENTAL*.
289With an additional compiler flag ``-fsanitize-coverage=trace-cmp`` (see SanitizerCoverageTraceDataFlow_)
290and extra run-time flag ``-use_traces=1`` the fuzzer will try to apply *data-flow-guided fuzzing*.
291That is, the fuzzer will record the inputs to comparison instructions, switch statements,
Kostya Serebryany7f4227d2015-08-05 18:23:01 +0000292and several libc functions (``memcmp``, ``strcmp``, ``strncmp``, etc).
Kostya Serebryanyb17e2982015-07-31 21:48:10 +0000293It will later use those recorded inputs during mutations.
294
295This mode can be combined with DataFlowSanitizer_ to achieve better sensitivity.
296
Kostya Serebryany6bd016b2015-04-10 05:44:43 +0000297AFL compatibility
298-----------------
299LibFuzzer can be used in parallel with AFL_ on the same test corpus.
300Both fuzzers expect the test corpus to reside in a directory, one file per input.
301You can run both fuzzers on the same corpus in parallel::
302
303 ./afl-fuzz -i testcase_dir -o findings_dir /path/to/program -r @@
304 ./llvm-fuzz testcase_dir findings_dir # Will write new tests to testcase_dir
305
306Periodically restart both fuzzers so that they can use each other's findings.
Kostya Serebryany79677382015-03-31 21:39:38 +0000307
Kostya Serebryanycd073d52015-04-10 06:32:29 +0000308How good is my fuzzer?
309----------------------
310
Kostya Serebryany566bc5a2015-05-06 22:19:00 +0000311Once you implement your target function ``LLVMFuzzerTestOneInput`` and fuzz it to death,
Kostya Serebryanycd073d52015-04-10 06:32:29 +0000312you will want to know whether the function or the corpus can be improved further.
313One easy to use metric is, of course, code coverage.
314You can get the coverage for your corpus like this::
315
316 ASAN_OPTIONS=coverage_pcs=1 ./fuzzer CORPUS_DIR -runs=0
317
318This will run all the tests in the CORPUS_DIR but will not generate any new tests
319and dump covered PCs to disk before exiting.
320Then you can subtract the set of covered PCs from the set of all instrumented PCs in the binary,
321see SanitizerCoverage_ for details.
322
Kostya Serebryany926b9bd2015-05-22 22:43:05 +0000323User-supplied mutators
324----------------------
325
326LibFuzzer allows to use custom (user-supplied) mutators,
327see FuzzerInterface.h_
328
Kostya Serebryany79677382015-03-31 21:39:38 +0000329Fuzzing components of LLVM
330==========================
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000331
332clang-format-fuzzer
333-------------------
334The inputs are random pieces of C++-like text.
335
336Build (make sure to use fresh clang as the host compiler)::
337
338 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
339 ninja clang-format-fuzzer
340 mkdir CORPUS_DIR
341 ./bin/clang-format-fuzzer CORPUS_DIR
342
343Optionally build other kinds of binaries (asan+Debug, msan, ubsan, etc).
344
Kostya Serebryany79677382015-03-31 21:39:38 +0000345Tracking bug: https://llvm.org/bugs/show_bug.cgi?id=23052
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000346
Kostya Serebryany79677382015-03-31 21:39:38 +0000347clang-fuzzer
348------------
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000349
Kostya Serebryany866e0d12015-09-02 22:44:46 +0000350The behavior is very similar to ``clang-format-fuzzer``.
Kostya Serebryany79677382015-03-31 21:39:38 +0000351
352Tracking bug: https://llvm.org/bugs/show_bug.cgi?id=23057
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000353
Kostya Serebryanyb98e3272015-08-31 18:57:24 +0000354llvm-as-fuzzer
355--------------
356
357Tracking bug: https://llvm.org/bugs/show_bug.cgi?id=24639
358
Daniel Sanders5151b202015-09-18 10:47:45 +0000359llvm-mc-fuzzer
360--------------
361
362This tool fuzzes the MC layer. Currently it is only able to fuzz the
363disassembler but it is hoped that assembly, and round-trip verification will be
364added in future.
365
366When run in dissassembly mode, the inputs are opcodes to be disassembled. The
367fuzzer will consume as many instructions as possible and will stop when it
368finds an invalid instruction or runs out of data.
369
Daniel Sanders4fe1c8b2015-09-26 17:09:01 +0000370Please note that the command line interface differs slightly from that of other
371fuzzers. The fuzzer arguments should follow ``--fuzzer-args`` and should have
372a single dash, while other arguments control the operation mode and target in a
373similar manner to ``llvm-mc`` and should have two dashes. For example::
Daniel Sanders5151b202015-09-18 10:47:45 +0000374
Daniel Sanders4fe1c8b2015-09-26 17:09:01 +0000375 llvm-mc-fuzzer --triple=aarch64-linux-gnu --disassemble --fuzzer-args -max_len=4 -jobs=10
Daniel Sanders5151b202015-09-18 10:47:45 +0000376
Kostya Serebryanyfb2f3312015-05-13 22:42:28 +0000377Buildbot
378--------
379
380We have a buildbot that runs the above fuzzers for LLVM components
38124/7/365 at http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-fuzzer .
382
383Pre-fuzzed test inputs in git
384-----------------------------
385
386The buildbot occumulates large test corpuses over time.
387The corpuses are stored in git on github and can be used like this::
388
389 git clone https://github.com/kcc/fuzzing-with-sanitizers.git
390 bin/clang-format-fuzzer fuzzing-with-sanitizers/llvm/clang-format/C1
391 bin/clang-fuzzer fuzzing-with-sanitizers/llvm/clang/C1/
Kostya Serebryanyb98e3272015-08-31 18:57:24 +0000392 bin/llvm-as-fuzzer fuzzing-with-sanitizers/llvm/llvm-as/C1 -only_ascii=1
Kostya Serebryanyfb2f3312015-05-13 22:42:28 +0000393
394
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000395FAQ
396=========================
397
398Q. Why Fuzzer does not use any of the LLVM support?
399---------------------------------------------------
400
401There are two reasons.
402
403First, we want this library to be used outside of the LLVM w/o users having to
404build the rest of LLVM. This may sound unconvincing for many LLVM folks,
405but in practice the need for building the whole LLVM frightens many potential
406users -- and we want more users to use this code.
407
408Second, there is a subtle technical reason not to rely on the rest of LLVM, or
409any other large body of code (maybe not even STL). When coverage instrumentation
410is enabled, it will also instrument the LLVM support code which will blow up the
411coverage set of the process (since the fuzzer is in-process). In other words, by
412using more external dependencies we will slow down the fuzzer while the main
413reason for it to exist is extreme speed.
414
415Q. What about Windows then? The Fuzzer contains code that does not build on Windows.
416------------------------------------------------------------------------------------
417
418The sanitizer coverage support does not work on Windows either as of 01/2015.
419Once it's there, we'll need to re-implement OS-specific parts (I/O, signals).
420
421Q. When this Fuzzer is not a good solution for a problem?
422---------------------------------------------------------
423
424* If the test inputs are validated by the target library and the validator
425 asserts/crashes on invalid inputs, the in-process fuzzer is not applicable
426 (we could use fork() w/o exec, but it comes with extra overhead).
427* Bugs in the target library may accumulate w/o being detected. E.g. a memory
428 corruption that goes undetected at first and then leads to a crash while
429 testing another input. This is why it is highly recommended to run this
430 in-process fuzzer with all sanitizers to detect most bugs on the spot.
431* It is harder to protect the in-process fuzzer from excessive memory
432 consumption and infinite loops in the target library (still possible).
433* The target library should not have significant global state that is not
434 reset between the runs.
435* Many interesting target libs are not designed in a way that supports
436 the in-process fuzzer interface (e.g. require a file path instead of a
437 byte array).
438* If a single test run takes a considerable fraction of a second (or
439 more) the speed benefit from the in-process fuzzer is negligible.
440* If the target library runs persistent threads (that outlive
441 execution of one test) the fuzzing results will be unreliable.
442
443Q. So, what exactly this Fuzzer is good for?
444--------------------------------------------
445
446This Fuzzer might be a good choice for testing libraries that have relatively
447small inputs, each input takes < 1ms to run, and the library code is not expected
448to crash on invalid inputs.
449Examples: regular expression matchers, text or binary format parsers.
450
Kostya Serebryanyfab4fba2015-08-11 01:53:45 +0000451Trophies
452========
453* GLIBC: https://sourceware.org/glibc/wiki/FuzzingLibc
Kostya Serebryanyfdf44182015-08-11 04:16:37 +0000454
Kostya Serebryanyfab4fba2015-08-11 01:53:45 +0000455* MUSL LIBC:
Kostya Serebryanyfdf44182015-08-11 04:16:37 +0000456
457 * http://git.musl-libc.org/cgit/musl/commit/?id=39dfd58417ef642307d90306e1c7e50aaec5a35c
458 * http://www.openwall.com/lists/oss-security/2015/03/30/3
459
Kostya Serebryanyfab4fba2015-08-11 01:53:45 +0000460* pugixml: https://github.com/zeux/pugixml/issues/39
Kostya Serebryanyfdf44182015-08-11 04:16:37 +0000461
Kostya Serebryanyfab4fba2015-08-11 01:53:45 +0000462* PCRE: Search for "LLVM fuzzer" in http://vcs.pcre.org/pcre2/code/trunk/ChangeLog?view=markup
Kostya Serebryanyfdf44182015-08-11 04:16:37 +0000463
Kostya Serebryanyed483772015-08-11 20:34:48 +0000464* ICU: http://bugs.icu-project.org/trac/ticket/11838
465
Kostya Serebryany62921282015-09-11 16:34:14 +0000466* Freetype: https://savannah.nongnu.org/search/?words=LibFuzzer&type_of_search=bugs&Search=Search&exact=1#options
467
468* Linux Kernel's BPF verifier: https://github.com/iovisor/bpf-fuzzer
469
Kostya Serebryanyfab4fba2015-08-11 01:53:45 +0000470* LLVM:
Kostya Serebryanyfdf44182015-08-11 04:16:37 +0000471
472 * Clang: https://llvm.org/bugs/show_bug.cgi?id=23057
473
474 * Clang-format: https://llvm.org/bugs/show_bug.cgi?id=23052
475
476 * libc++: https://llvm.org/bugs/show_bug.cgi?id=24411
Kostya Serebryanyfab4fba2015-08-11 01:53:45 +0000477
Kostya Serebryanyb98e3272015-08-31 18:57:24 +0000478 * llvm-as: https://llvm.org/bugs/show_bug.cgi?id=24639
479
Daniel Sanders205d1992015-09-16 11:49:49 +0000480 * Disassembler:
Mehdi Amini30618f92015-09-17 15:59:52 +0000481
Daniel Sanders205d1992015-09-16 11:49:49 +0000482 * Mips: Discovered a number of untested instructions for the Mips target
483 (see valid-mips*.s in http://reviews.llvm.org/rL247405,
484 http://reviews.llvm.org/rL247414, http://reviews.llvm.org/rL247416,
485 http://reviews.llvm.org/rL247417, http://reviews.llvm.org/rL247420,
486 and http://reviews.llvm.org/rL247422) as well some instructions that
487 successfully disassembled on ISA's where they were not valid (see
488 invalid-xfail.s files in the same commits).
Kostya Serebryanyfab4fba2015-08-11 01:53:45 +0000489
Kostya Serebryany79677382015-03-31 21:39:38 +0000490.. _pcre2: http://www.pcre.org/
491
492.. _AFL: http://lcamtuf.coredump.cx/afl/
493
Alexey Samsonov675e5392015-04-27 22:50:06 +0000494.. _SanitizerCoverage: http://clang.llvm.org/docs/SanitizerCoverage.html
Kostya Serebryanyb17e2982015-07-31 21:48:10 +0000495.. _SanitizerCoverageTraceDataFlow: http://clang.llvm.org/docs/SanitizerCoverage.html#tracing-data-flow
496.. _DataFlowSanitizer: http://clang.llvm.org/docs/DataFlowSanitizer.html
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000497
498.. _Heartbleed: http://en.wikipedia.org/wiki/Heartbleed
Kostya Serebryany926b9bd2015-05-22 22:43:05 +0000499
500.. _FuzzerInterface.h: https://github.com/llvm-mirror/llvm/blob/master/lib/Fuzzer/FuzzerInterface.h