blob: 914a78262a903074c34f72c14267fe783fe79f65 [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 Serebryanybfbe7fc2016-02-02 03:03:47 +000054Usage:
55======
56To run fuzzing pass 0 or more directories::
57
58./fuzzer [-flag1=val1 [-flag2=val2 ...] ] [dir1 [dir2 ...] ]
59
60To run individual tests without fuzzing pass 1 or more files::
61
62./fuzzer [-flag1=val1 [-flag2=val2 ...] ] file1 [file2 ...]
63
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000064The most important flags are::
65
66 seed 0 Random seed. If 0, seed is generated.
67 runs -1 Number of individual test runs (-1 for infinite runs).
Kostya Serebryanyc5f905c2015-05-26 19:32:52 +000068 max_len 64 Maximum length of the test input.
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000069 cross_over 1 If 1, cross over inputs.
70 mutate_depth 5 Apply this number of consecutive mutations to each input.
Kostya Serebryany316b5712015-05-26 20:57:47 +000071 timeout 1200 Timeout in seconds (if positive). If one unit runs more than this number of seconds the process will abort.
Kostya Serebryany9768e7f2016-01-23 19:34:19 +000072 abort_on_timeout 0 If positive, call abort on timeout.
Kostya Serebryany54a63632016-01-29 23:30:07 +000073 timeout_exitcode 77 Unless abort_on_timeout is set, use this exitcode on timeout.
Kostya Serebryanyb85db172015-10-02 20:47:55 +000074 max_total_time 0 If positive, indicates the maximal total time in seconds to run the fuzzer.
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000075 help 0 Print help.
Kostya Serebryany9cc3b0d2015-10-24 01:16:40 +000076 merge 0 If 1, the 2-nd, 3-rd, etc corpora will be merged into the 1-st corpus. Only interesting units will be taken.
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000077 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.
78 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 +000079 sync_command 0 Execute an external command "<sync_command> <test_corpus>" to synchronize the test corpus.
Kostya Serebryanyc5f905c2015-05-26 19:32:52 +000080 sync_timeout 600 Minimum timeout between syncs.
Kostya Serebryanyb17e2982015-07-31 21:48:10 +000081 use_traces 0 Experimental: use instruction traces
Kostya Serebryanybc7c0ad2015-08-11 01:44:42 +000082 only_ascii 0 If 1, generate only ASCII (isprint+isspace) inputs.
Kostya Serebryanybd5d1cd2015-10-09 03:57:59 +000083 artifact_prefix "" Write fuzzing artifacts (crash, timeout, or slow inputs) as $(artifact_prefix)file
Kostya Serebryany2d0ef142015-11-25 21:40:46 +000084 exact_artifact_path "" Write the single artifact on failure (crash, timeout) as $(exact_artifact_path). This overrides -artifact_prefix and will not use checksum in the file name. Do not use the same path for several parallel processes.
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000085
86For the full list of flags run the fuzzer binary with ``-help=1``.
87
Kostya Serebryany79677382015-03-31 21:39:38 +000088Usage examples
89==============
90
91Toy example
92-----------
93
94A simple function that does something interesting if it receives the input "HI!"::
95
96 cat << EOF >> test_fuzzer.cc
Kostya Serebryany1c80b9d2015-11-26 00:12:57 +000097 #include <stdint.h>
98 #include <stddef.h>
99 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
Kostya Serebryany79677382015-03-31 21:39:38 +0000100 if (size > 0 && data[0] == 'H')
101 if (size > 1 && data[1] == 'I')
102 if (size > 2 && data[2] == '!')
103 __builtin_trap();
Kostya Serebryany20bb5e72015-10-02 23:34:06 +0000104 return 0;
Kostya Serebryany79677382015-03-31 21:39:38 +0000105 }
106 EOF
107 # Get lib/Fuzzer. Assuming that you already have fresh clang in PATH.
108 svn co http://llvm.org/svn/llvm-project/llvm/trunk/lib/Fuzzer
109 # Build lib/Fuzzer files.
110 clang -c -g -O2 -std=c++11 Fuzzer/*.cpp -IFuzzer
111 # Build test_fuzzer.cc with asan and link against lib/Fuzzer.
Alexey Samsonov21a33812015-05-07 23:33:24 +0000112 clang++ -fsanitize=address -fsanitize-coverage=edge test_fuzzer.cc Fuzzer*.o
Kostya Serebryany79677382015-03-31 21:39:38 +0000113 # Run the fuzzer with no corpus.
114 ./a.out
115
116You should get ``Illegal instruction (core dumped)`` pretty quickly.
117
118PCRE2
119-----
120
121Here we show how to use lib/Fuzzer on something real, yet simple: pcre2_::
122
Alexey Samsonov21a33812015-05-07 23:33:24 +0000123 COV_FLAGS=" -fsanitize-coverage=edge,indirect-calls,8bit-counters"
Kostya Serebryany79677382015-03-31 21:39:38 +0000124 # Get PCRE2
125 svn co svn://vcs.exim.org/pcre2/code/trunk pcre
126 # Get lib/Fuzzer. Assuming that you already have fresh clang in PATH.
127 svn co http://llvm.org/svn/llvm-project/llvm/trunk/lib/Fuzzer
128 # Build PCRE2 with AddressSanitizer and coverage.
129 (cd pcre; ./autogen.sh; CC="clang -fsanitize=address $COV_FLAGS" ./configure --prefix=`pwd`/../inst && make -j && make install)
130 # Build lib/Fuzzer files.
131 clang -c -g -O2 -std=c++11 Fuzzer/*.cpp -IFuzzer
Eric Christopher572e03a2015-06-19 01:53:21 +0000132 # Build the actual function that does something interesting with PCRE2.
Kostya Serebryany79677382015-03-31 21:39:38 +0000133 cat << EOF > pcre_fuzzer.cc
134 #include <string.h>
Kostya Serebryany1c80b9d2015-11-26 00:12:57 +0000135 #include <stdint.h>
Kostya Serebryany79677382015-03-31 21:39:38 +0000136 #include "pcre2posix.h"
Kostya Serebryany1c80b9d2015-11-26 00:12:57 +0000137 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
Kostya Serebryany20bb5e72015-10-02 23:34:06 +0000138 if (size < 1) return 0;
Kostya Serebryany79677382015-03-31 21:39:38 +0000139 char *str = new char[size+1];
140 memcpy(str, data, size);
141 str[size] = 0;
142 regex_t preg;
143 if (0 == regcomp(&preg, str, 0)) {
144 regexec(&preg, str, 0, 0, 0);
145 regfree(&preg);
146 }
147 delete [] str;
Kostya Serebryany20bb5e72015-10-02 23:34:06 +0000148 return 0;
Kostya Serebryany79677382015-03-31 21:39:38 +0000149 }
150 EOF
151 clang++ -g -fsanitize=address $COV_FLAGS -c -std=c++11 -I inst/include/ pcre_fuzzer.cc
152 # Link.
153 clang++ -g -fsanitize=address -Wl,--whole-archive inst/lib/*.a -Wl,-no-whole-archive Fuzzer*.o pcre_fuzzer.o -o pcre_fuzzer
154
155This will give you a binary of the fuzzer, called ``pcre_fuzzer``.
156Now, create a directory that will hold the test corpus::
157
158 mkdir -p CORPUS
159
160For simple input languages like regular expressions this is all you need.
161For more complicated inputs populate the directory with some input samples.
162Now run the fuzzer with the corpus dir as the only parameter::
163
164 ./pcre_fuzzer ./CORPUS
165
166You will see output like this::
167
168 Seed: 1876794929
169 #0 READ cov 0 bits 0 units 1 exec/s 0
170 #1 pulse cov 3 bits 0 units 1 exec/s 0
171 #1 INITED cov 3 bits 0 units 1 exec/s 0
172 #2 pulse cov 208 bits 0 units 1 exec/s 0
173 #2 NEW cov 208 bits 0 units 2 exec/s 0 L: 64
174 #3 NEW cov 217 bits 0 units 3 exec/s 0 L: 63
175 #4 pulse cov 217 bits 0 units 3 exec/s 0
176
177* The ``Seed:`` line shows you the current random seed (you can change it with ``-seed=N`` flag).
178* 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).
179* The ``INITED`` line shows you that how many inputs will be fuzzed.
180* 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.
181* The ``pulse`` lines appear periodically to show the current status.
182
183Now, interrupt the fuzzer and run it again the same way. You will see::
184
185 Seed: 1879995378
186 #0 READ cov 0 bits 0 units 564 exec/s 0
187 #1 pulse cov 502 bits 0 units 564 exec/s 0
188 ...
189 #512 pulse cov 2933 bits 0 units 564 exec/s 512
190 #564 INITED cov 2991 bits 0 units 344 exec/s 564
191 #1024 pulse cov 2991 bits 0 units 344 exec/s 1024
192 #1455 NEW cov 2995 bits 0 units 345 exec/s 1455 L: 49
193
194This time you were running the fuzzer with a non-empty input corpus (564 items).
195As the first step, the fuzzer minimized the set to produce 344 interesting items (the ``INITED`` line)
196
Kostya Serebryanyfb2f3312015-05-13 22:42:28 +0000197It is quite convenient to store test corpuses in git.
198As an example, here is a git repository with test inputs for the above PCRE2 fuzzer::
199
200 git clone https://github.com/kcc/fuzzing-with-sanitizers.git
201 ./pcre_fuzzer ./fuzzing-with-sanitizers/pcre2/C1/
202
Kostya Serebryany79677382015-03-31 21:39:38 +0000203You may run ``N`` independent fuzzer jobs in parallel on ``M`` CPUs::
204
205 N=100; M=4; ./pcre_fuzzer ./CORPUS -jobs=$N -workers=$M
206
Kostya Serebryany9690fcf2015-05-12 18:51:57 +0000207By default (``-reload=1``) the fuzzer processes will periodically scan the CORPUS directory
208and reload any new tests. This way the test inputs found by one process will be picked up
209by all others.
Kostya Serebryany79677382015-03-31 21:39:38 +0000210
Kostya Serebryany9690fcf2015-05-12 18:51:57 +0000211If ``-workers=$M`` is not supplied, ``min($N,NumberOfCpuCore/2)`` will be used.
Kostya Serebryany79677382015-03-31 21:39:38 +0000212
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000213Heartbleed
214----------
215Remember Heartbleed_?
216As it was recently `shown <https://blog.hboeck.de/archives/868-How-Heartbleed-couldve-been-found.html>`_,
217fuzzing with AddressSanitizer can find Heartbleed. Indeed, here are the step-by-step instructions
218to find Heartbleed with LibFuzzer::
219
220 wget https://www.openssl.org/source/openssl-1.0.1f.tar.gz
221 tar xf openssl-1.0.1f.tar.gz
Alexey Samsonov21a33812015-05-07 23:33:24 +0000222 COV_FLAGS="-fsanitize-coverage=edge,indirect-calls" # -fsanitize-coverage=8bit-counters
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000223 (cd openssl-1.0.1f/ && ./config &&
224 make -j 32 CC="clang -g -fsanitize=address $COV_FLAGS")
225 # Get and build LibFuzzer
226 svn co http://llvm.org/svn/llvm-project/llvm/trunk/lib/Fuzzer
227 clang -c -g -O2 -std=c++11 Fuzzer/*.cpp -IFuzzer
228 # Get examples of key/pem files.
229 git clone https://github.com/hannob/selftls
230 cp selftls/server* . -v
231 cat << EOF > handshake-fuzz.cc
232 #include <openssl/ssl.h>
233 #include <openssl/err.h>
234 #include <assert.h>
Kostya Serebryany1c80b9d2015-11-26 00:12:57 +0000235 #include <stdint.h>
236 #include <stddef.h>
237
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000238 SSL_CTX *sctx;
239 int Init() {
240 SSL_library_init();
241 SSL_load_error_strings();
242 ERR_load_BIO_strings();
243 OpenSSL_add_all_algorithms();
244 assert (sctx = SSL_CTX_new(TLSv1_method()));
245 assert (SSL_CTX_use_certificate_file(sctx, "server.pem", SSL_FILETYPE_PEM));
246 assert (SSL_CTX_use_PrivateKey_file(sctx, "server.key", SSL_FILETYPE_PEM));
247 return 0;
248 }
Kostya Serebryany1c80b9d2015-11-26 00:12:57 +0000249 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000250 static int unused = Init();
251 SSL *server = SSL_new(sctx);
252 BIO *sinbio = BIO_new(BIO_s_mem());
253 BIO *soutbio = BIO_new(BIO_s_mem());
254 SSL_set_bio(server, sinbio, soutbio);
255 SSL_set_accept_state(server);
256 BIO_write(sinbio, Data, Size);
257 SSL_do_handshake(server);
258 SSL_free(server);
Kostya Serebryany20bb5e72015-10-02 23:34:06 +0000259 return 0;
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000260 }
261 EOF
Mehdi Amini30618f92015-09-17 15:59:52 +0000262 # Build the fuzzer.
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000263 clang++ -g handshake-fuzz.cc -fsanitize=address \
264 openssl-1.0.1f/libssl.a openssl-1.0.1f/libcrypto.a Fuzzer*.o
265 # Run 20 independent fuzzer jobs.
266 ./a.out -jobs=20 -workers=20
267
268Voila::
269
270 #1048576 pulse cov 3424 bits 0 units 9 exec/s 24385
271 =================================================================
272 ==17488==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x629000004748 at pc 0x00000048c979 bp 0x7fffe3e864f0 sp 0x7fffe3e85ca8
273 READ of size 60731 at 0x629000004748 thread T0
274 #0 0x48c978 in __asan_memcpy
275 #1 0x4db504 in tls1_process_heartbeat openssl-1.0.1f/ssl/t1_lib.c:2586:3
276 #2 0x580be3 in ssl3_read_bytes openssl-1.0.1f/ssl/s3_pkt.c:1092:4
277
Kostya Serebryany1c80b9d2015-11-26 00:12:57 +0000278Note: a `similar fuzzer <https://boringssl.googlesource.com/boringssl/+/HEAD/FUZZING.md>`_
279is now a part of the boringssl source tree.
280
Kostya Serebryany043ab1c2015-04-01 21:33:20 +0000281Advanced features
282=================
283
Kostya Serebryany7d211662015-09-04 00:12:11 +0000284Dictionaries
285------------
286*EXPERIMENTAL*.
287LibFuzzer supports user-supplied dictionaries with input language keywords
288or other interesting byte sequences (e.g. multi-byte magic values).
289Use ``-dict=DICTIONARY_FILE``. For some input languages using a dictionary
290may significantly improve the search speed.
291The dictionary syntax is similar to that used by AFL_ for its ``-x`` option::
292
293 # Lines starting with '#' and empty lines are ignored.
294
295 # Adds "blah" (w/o quotes) to the dictionary.
296 kw1="blah"
297 # Use \\ for backslash and \" for quotes.
298 kw2="\"ac\\dc\""
299 # Use \xAB for hex values
300 kw3="\xF7\xF8"
301 # the name of the keyword followed by '=' may be omitted:
302 "foo\x0Abar"
303
Kostya Serebryanyb17e2982015-07-31 21:48:10 +0000304Data-flow-guided fuzzing
305------------------------
306
307*EXPERIMENTAL*.
308With an additional compiler flag ``-fsanitize-coverage=trace-cmp`` (see SanitizerCoverageTraceDataFlow_)
309and extra run-time flag ``-use_traces=1`` the fuzzer will try to apply *data-flow-guided fuzzing*.
310That is, the fuzzer will record the inputs to comparison instructions, switch statements,
Kostya Serebryany7f4227d2015-08-05 18:23:01 +0000311and several libc functions (``memcmp``, ``strcmp``, ``strncmp``, etc).
Kostya Serebryanyb17e2982015-07-31 21:48:10 +0000312It will later use those recorded inputs during mutations.
313
314This mode can be combined with DataFlowSanitizer_ to achieve better sensitivity.
315
Kostya Serebryany6bd016b2015-04-10 05:44:43 +0000316AFL compatibility
317-----------------
318LibFuzzer can be used in parallel with AFL_ on the same test corpus.
319Both fuzzers expect the test corpus to reside in a directory, one file per input.
320You can run both fuzzers on the same corpus in parallel::
321
322 ./afl-fuzz -i testcase_dir -o findings_dir /path/to/program -r @@
323 ./llvm-fuzz testcase_dir findings_dir # Will write new tests to testcase_dir
324
325Periodically restart both fuzzers so that they can use each other's findings.
Kostya Serebryany79677382015-03-31 21:39:38 +0000326
Kostya Serebryanycd073d52015-04-10 06:32:29 +0000327How good is my fuzzer?
328----------------------
329
Kostya Serebryany566bc5a2015-05-06 22:19:00 +0000330Once you implement your target function ``LLVMFuzzerTestOneInput`` and fuzz it to death,
Kostya Serebryanycd073d52015-04-10 06:32:29 +0000331you will want to know whether the function or the corpus can be improved further.
332One easy to use metric is, of course, code coverage.
333You can get the coverage for your corpus like this::
334
335 ASAN_OPTIONS=coverage_pcs=1 ./fuzzer CORPUS_DIR -runs=0
336
337This will run all the tests in the CORPUS_DIR but will not generate any new tests
338and dump covered PCs to disk before exiting.
339Then you can subtract the set of covered PCs from the set of all instrumented PCs in the binary,
340see SanitizerCoverage_ for details.
341
Kostya Serebryany926b9bd2015-05-22 22:43:05 +0000342User-supplied mutators
343----------------------
344
345LibFuzzer allows to use custom (user-supplied) mutators,
346see FuzzerInterface.h_
347
Kostya Serebryanyaca76962016-01-16 01:23:12 +0000348Startup initialization
349----------------------
350If the library being tested needs to be initialized, there are several options.
351
352The simplest way is to have a statically initialized global object::
353
354 static bool Initialized = DoInitialization();
355
356Alternatively, you may define an optional init function and it will receive
357the program arguments that you can read and modify::
358
359 extern "C" int LLVMFuzzerInitialize(int *argc, char ***argv) {
360 ReadAndMaybeModify(argc, argv);
361 return 0;
362 }
363
364Finally, you may use your own ``main()`` and call ``FuzzerDriver``
365from there, see FuzzerInterface.h_.
366
367Try to avoid initialization inside the target function itself as
368it will skew the coverage data. Don't do this::
369
370 extern "C" int LLVMFuzzerTestOneInput(...) {
371 static bool initialized = false;
372 if (!initialized) {
373 ...
374 }
375 }
376
Kostya Serebryany79677382015-03-31 21:39:38 +0000377Fuzzing components of LLVM
378==========================
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000379
380clang-format-fuzzer
381-------------------
382The inputs are random pieces of C++-like text.
383
384Build (make sure to use fresh clang as the host compiler)::
385
386 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
387 ninja clang-format-fuzzer
388 mkdir CORPUS_DIR
389 ./bin/clang-format-fuzzer CORPUS_DIR
390
391Optionally build other kinds of binaries (asan+Debug, msan, ubsan, etc).
392
Kostya Serebryany79677382015-03-31 21:39:38 +0000393Tracking bug: https://llvm.org/bugs/show_bug.cgi?id=23052
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000394
Kostya Serebryany79677382015-03-31 21:39:38 +0000395clang-fuzzer
396------------
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000397
Kostya Serebryany866e0d12015-09-02 22:44:46 +0000398The behavior is very similar to ``clang-format-fuzzer``.
Kostya Serebryany79677382015-03-31 21:39:38 +0000399
400Tracking bug: https://llvm.org/bugs/show_bug.cgi?id=23057
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000401
Kostya Serebryanyb98e3272015-08-31 18:57:24 +0000402llvm-as-fuzzer
403--------------
404
405Tracking bug: https://llvm.org/bugs/show_bug.cgi?id=24639
406
Daniel Sanders5151b202015-09-18 10:47:45 +0000407llvm-mc-fuzzer
408--------------
409
410This tool fuzzes the MC layer. Currently it is only able to fuzz the
411disassembler but it is hoped that assembly, and round-trip verification will be
412added in future.
413
414When run in dissassembly mode, the inputs are opcodes to be disassembled. The
415fuzzer will consume as many instructions as possible and will stop when it
416finds an invalid instruction or runs out of data.
417
Daniel Sanders4fe1c8b2015-09-26 17:09:01 +0000418Please note that the command line interface differs slightly from that of other
419fuzzers. The fuzzer arguments should follow ``--fuzzer-args`` and should have
420a single dash, while other arguments control the operation mode and target in a
421similar manner to ``llvm-mc`` and should have two dashes. For example::
Daniel Sanders5151b202015-09-18 10:47:45 +0000422
Daniel Sanders4fe1c8b2015-09-26 17:09:01 +0000423 llvm-mc-fuzzer --triple=aarch64-linux-gnu --disassemble --fuzzer-args -max_len=4 -jobs=10
Daniel Sanders5151b202015-09-18 10:47:45 +0000424
Kostya Serebryanyfb2f3312015-05-13 22:42:28 +0000425Buildbot
426--------
427
428We have a buildbot that runs the above fuzzers for LLVM components
42924/7/365 at http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-fuzzer .
430
431Pre-fuzzed test inputs in git
432-----------------------------
433
434The buildbot occumulates large test corpuses over time.
435The corpuses are stored in git on github and can be used like this::
436
437 git clone https://github.com/kcc/fuzzing-with-sanitizers.git
438 bin/clang-format-fuzzer fuzzing-with-sanitizers/llvm/clang-format/C1
439 bin/clang-fuzzer fuzzing-with-sanitizers/llvm/clang/C1/
Kostya Serebryanyb98e3272015-08-31 18:57:24 +0000440 bin/llvm-as-fuzzer fuzzing-with-sanitizers/llvm/llvm-as/C1 -only_ascii=1
Kostya Serebryanyfb2f3312015-05-13 22:42:28 +0000441
442
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000443FAQ
444=========================
445
446Q. Why Fuzzer does not use any of the LLVM support?
447---------------------------------------------------
448
449There are two reasons.
450
451First, we want this library to be used outside of the LLVM w/o users having to
452build the rest of LLVM. This may sound unconvincing for many LLVM folks,
453but in practice the need for building the whole LLVM frightens many potential
454users -- and we want more users to use this code.
455
456Second, there is a subtle technical reason not to rely on the rest of LLVM, or
457any other large body of code (maybe not even STL). When coverage instrumentation
458is enabled, it will also instrument the LLVM support code which will blow up the
459coverage set of the process (since the fuzzer is in-process). In other words, by
460using more external dependencies we will slow down the fuzzer while the main
461reason for it to exist is extreme speed.
462
463Q. What about Windows then? The Fuzzer contains code that does not build on Windows.
464------------------------------------------------------------------------------------
465
466The sanitizer coverage support does not work on Windows either as of 01/2015.
467Once it's there, we'll need to re-implement OS-specific parts (I/O, signals).
468
469Q. When this Fuzzer is not a good solution for a problem?
470---------------------------------------------------------
471
472* If the test inputs are validated by the target library and the validator
473 asserts/crashes on invalid inputs, the in-process fuzzer is not applicable
474 (we could use fork() w/o exec, but it comes with extra overhead).
475* Bugs in the target library may accumulate w/o being detected. E.g. a memory
476 corruption that goes undetected at first and then leads to a crash while
477 testing another input. This is why it is highly recommended to run this
478 in-process fuzzer with all sanitizers to detect most bugs on the spot.
479* It is harder to protect the in-process fuzzer from excessive memory
480 consumption and infinite loops in the target library (still possible).
481* The target library should not have significant global state that is not
482 reset between the runs.
483* Many interesting target libs are not designed in a way that supports
484 the in-process fuzzer interface (e.g. require a file path instead of a
485 byte array).
486* If a single test run takes a considerable fraction of a second (or
487 more) the speed benefit from the in-process fuzzer is negligible.
488* If the target library runs persistent threads (that outlive
489 execution of one test) the fuzzing results will be unreliable.
490
491Q. So, what exactly this Fuzzer is good for?
492--------------------------------------------
493
494This Fuzzer might be a good choice for testing libraries that have relatively
495small inputs, each input takes < 1ms to run, and the library code is not expected
496to crash on invalid inputs.
497Examples: regular expression matchers, text or binary format parsers.
498
Kostya Serebryanyfab4fba2015-08-11 01:53:45 +0000499Trophies
500========
501* GLIBC: https://sourceware.org/glibc/wiki/FuzzingLibc
Kostya Serebryanyfdf44182015-08-11 04:16:37 +0000502
Kostya Serebryanyfab4fba2015-08-11 01:53:45 +0000503* MUSL LIBC:
Kostya Serebryanyfdf44182015-08-11 04:16:37 +0000504
505 * http://git.musl-libc.org/cgit/musl/commit/?id=39dfd58417ef642307d90306e1c7e50aaec5a35c
506 * http://www.openwall.com/lists/oss-security/2015/03/30/3
507
Kostya Serebryany928eb332015-10-12 18:15:42 +0000508* `pugixml <https://github.com/zeux/pugixml/issues/39>`_
Kostya Serebryanyfdf44182015-08-11 04:16:37 +0000509
Kostya Serebryany45dac2a2015-10-10 02:14:18 +0000510* PCRE: Search for "LLVM fuzzer" in http://vcs.pcre.org/pcre2/code/trunk/ChangeLog?view=markup;
Kostya Serebryany928eb332015-10-12 18:15:42 +0000511 also in `bugzilla <https://bugs.exim.org/buglist.cgi?bug_status=__all__&content=libfuzzer&no_redirect=1&order=Importance&product=PCRE&query_format=specific>`_
Kostya Serebryanyfdf44182015-08-11 04:16:37 +0000512
Kostya Serebryany928eb332015-10-12 18:15:42 +0000513* `ICU <http://bugs.icu-project.org/trac/ticket/11838>`_
Kostya Serebryanyed483772015-08-11 20:34:48 +0000514
Kostya Serebryany928eb332015-10-12 18:15:42 +0000515* `Freetype <https://savannah.nongnu.org/search/?words=LibFuzzer&type_of_search=bugs&Search=Search&exact=1#options>`_
Kostya Serebryany62921282015-09-11 16:34:14 +0000516
Kostya Serebryany928eb332015-10-12 18:15:42 +0000517* `Harfbuzz <https://github.com/behdad/harfbuzz/issues/139>`_
518
Kostya Serebryany240a1592015-11-11 05:25:24 +0000519* `SQLite <http://www3.sqlite.org/cgi/src/info/088009efdd56160b>`_
Kostya Serebryany65e71262015-11-11 05:20:55 +0000520
Kostya Serebryany12fa3b52015-11-13 02:44:16 +0000521* `Python <http://bugs.python.org/issue25388>`_
522
Kostya Serebryany064a6722015-12-05 02:23:49 +0000523* OpenSSL/BoringSSL: `[1] <https://boringssl.googlesource.com/boringssl/+/cb852981cd61733a7a1ae4fd8755b7ff950e857d>`_
524
Kostya Serebryany928eb332015-10-12 18:15:42 +0000525* `Libxml2
526 <https://bugzilla.gnome.org/buglist.cgi?bug_status=__all__&content=libFuzzer&list_id=68957&order=Importance&product=libxml2&query_format=specific>`_
Kostya Serebryany45dac2a2015-10-10 02:14:18 +0000527
Kostya Serebryany240a1592015-11-11 05:25:24 +0000528* `Linux Kernel's BPF verifier <https://github.com/iovisor/bpf-fuzzer>`_
Kostya Serebryany62921282015-09-11 16:34:14 +0000529
Kostya Serebryany240a1592015-11-11 05:25:24 +0000530* LLVM: `Clang <https://llvm.org/bugs/show_bug.cgi?id=23057>`_, `Clang-format <https://llvm.org/bugs/show_bug.cgi?id=23052>`_, `libc++ <https://llvm.org/bugs/show_bug.cgi?id=24411>`_, `llvm-as <https://llvm.org/bugs/show_bug.cgi?id=24639>`_, Disassembler: http://reviews.llvm.org/rL247405, http://reviews.llvm.org/rL247414, http://reviews.llvm.org/rL247416, http://reviews.llvm.org/rL247417, http://reviews.llvm.org/rL247420, http://reviews.llvm.org/rL247422.
Kostya Serebryanyfab4fba2015-08-11 01:53:45 +0000531
Kostya Serebryany79677382015-03-31 21:39:38 +0000532.. _pcre2: http://www.pcre.org/
533
534.. _AFL: http://lcamtuf.coredump.cx/afl/
535
Alexey Samsonov675e5392015-04-27 22:50:06 +0000536.. _SanitizerCoverage: http://clang.llvm.org/docs/SanitizerCoverage.html
Kostya Serebryanyb17e2982015-07-31 21:48:10 +0000537.. _SanitizerCoverageTraceDataFlow: http://clang.llvm.org/docs/SanitizerCoverage.html#tracing-data-flow
538.. _DataFlowSanitizer: http://clang.llvm.org/docs/DataFlowSanitizer.html
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000539
540.. _Heartbleed: http://en.wikipedia.org/wiki/Heartbleed
Kostya Serebryany926b9bd2015-05-22 22:43:05 +0000541
542.. _FuzzerInterface.h: https://github.com/llvm-mirror/llvm/blob/master/lib/Fuzzer/FuzzerInterface.h