blob: 5c4cdcdf94e578141616289c887eba33fd7e49a3 [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:
Kostya Serebryanyd11dc172016-03-12 02:56:25 +00006 :depth: 1
Kostya Serebryany79677382015-03-31 21:39:38 +00007
8Introduction
9============
Kostya Serebryany35ce8632015-03-30 23:05:30 +000010
Kostya Serebryanyd11dc172016-03-12 02:56:25 +000011libFuzzer -- library for in-process evolutionary fuzzing of other libraries.
Kostya Serebryany35ce8632015-03-30 23:05:30 +000012
Kostya Serebryanyd11dc172016-03-12 02:56:25 +000013The typical workflow looks like the following.
14First, implement a fuzzing target function, like this::
15
16 // fuzz_target.cc
17 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
18 DoSomethingInterestingWithMyAPI(Data, Size);
19 return 0;
20 }
21
22Next, build the Fuzzer library as a static archive. Note that libFuzzer contains the `main()` function::
23
24 svn co http://llvm.org/svn/llvm-project/llvm/trunk/lib/Fuzzer
25 clang++ -c -g -O2 -std=c++11 Fuzzer/*.cpp -IFuzzer
26 ar ruv libFuzzer.a Fuzzer*.o
27
28Then build the target function and the library you are going to test.
29You should use SanitizerCoverage_ and one of ASan, MSan, or UBSan.
30Link it with `libFuzzer.a`::
31
32 clang -fsanitize-coverage=edge -fsanitize=address your_lib.cc fuzz_target.cc libFuzzer.a -o my_fuzzer
33
34Create a directory with the initial "seed" samlpes.
35For some input types libFuzzer will work just fine w/o any seeds,
36but for complex inputs this step is very important::
37
38 mkdir CORPUS_DIR
39 cp /some/input/samples/* CORPUS_DIR
40
41Finally, run the fuzzer on the `CORPUS_DIR`::
42
43 ./my_fuzzer CORPUS_DIR # -max_len=1000 -jobs=20 -more_lags=...
Kostya Serebryany35ce8632015-03-30 23:05:30 +000044
45
Kostya Serebryanyd11dc172016-03-12 02:56:25 +000046As new interesting test cases are discovered they will be added to the corpus.
47If a bug is discovered by the sanitizer (ASan, etc) it will be reported as usual and the reproducer
48will be written to disk.
49Each Fuzzer process is single-threaded (unless the library starts its own
50threads). You can run the libFuzzer on the same corpus in multiple processes
51in parallel (use the flags `-jobs=N` and `-workers=N`).
52
53libFuzzer is similar in concept to AFL_,
54but uses in-process Fuzzing, which is more fragile and restrictive, but
Kostya Serebryany35ce8632015-03-30 23:05:30 +000055potentially much faster as it has no overhead for process start-up.
Kostya Serebryany79677382015-03-31 21:39:38 +000056It uses LLVM's SanitizerCoverage_ instrumentation to get in-process
57coverage-feedback
Kostya Serebryany35ce8632015-03-30 23:05:30 +000058
Kostya Serebryany79677382015-03-31 21:39:38 +000059The code resides in the LLVM repository, requires the fresh Clang compiler to build
60and is used to fuzz various parts of LLVM,
61but the Fuzzer itself does not (and should not) depend on any
62part of LLVM and can be used for other projects w/o requiring the rest of LLVM.
Kostya Serebryany35ce8632015-03-30 23:05:30 +000063
Kostya Serebryanyd11dc172016-03-12 02:56:25 +000064Usage
65=====
66To run fuzzing pass 0 or more directories. New samples will be written into `dir1`, other directories will be read once during startup.::
Kostya Serebryanybfbe7fc2016-02-02 03:03:47 +000067
68./fuzzer [-flag1=val1 [-flag2=val2 ...] ] [dir1 [dir2 ...] ]
69
70To run individual tests without fuzzing pass 1 or more files::
71
72./fuzzer [-flag1=val1 [-flag2=val2 ...] ] file1 [file2 ...]
73
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000074The most important flags are::
75
76 seed 0 Random seed. If 0, seed is generated.
77 runs -1 Number of individual test runs (-1 for infinite runs).
Kostya Serebryany64d24572016-03-12 01:57:04 +000078 max_len 0 Maximum length of the test input. If 0, libFuzzer tries to guess a good value based on the corpus and reports it.
Kostya Serebryany316b5712015-05-26 20:57:47 +000079 timeout 1200 Timeout in seconds (if positive). If one unit runs more than this number of seconds the process will abort.
Kostya Serebryany54a63632016-01-29 23:30:07 +000080 timeout_exitcode 77 Unless abort_on_timeout is set, use this exitcode on timeout.
Kostya Serebryanyb85db172015-10-02 20:47:55 +000081 max_total_time 0 If positive, indicates the maximal total time in seconds to run the fuzzer.
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000082 help 0 Print help.
Kostya Serebryany9cc3b0d2015-10-24 01:16:40 +000083 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 +000084 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.
85 workers 0 Number of simultaneous worker processes to run the jobs. If zero, "min(jobs,NumberOfCpuCores()/2)" is used.
Kostya Serebryanyb17e2982015-07-31 21:48:10 +000086 use_traces 0 Experimental: use instruction traces
Kostya Serebryanybc7c0ad2015-08-11 01:44:42 +000087 only_ascii 0 If 1, generate only ASCII (isprint+isspace) inputs.
Kostya Serebryanybd5d1cd2015-10-09 03:57:59 +000088 artifact_prefix "" Write fuzzing artifacts (crash, timeout, or slow inputs) as $(artifact_prefix)file
Kostya Serebryany2d0ef142015-11-25 21:40:46 +000089 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 Serebryany3c767db2016-02-27 05:45:12 +000090 print_final_stats 0 If 1, print statistics at exit.
Kostya Serebryany49e40902016-03-18 20:58:29 +000091 close_fd_mask 0 If 1, close stdout at startup; if 2, close stderr; if 3, close both.
Kostya Serebryany2adfa3b2015-05-20 21:03:03 +000092
93For the full list of flags run the fuzzer binary with ``-help=1``.
94
Kostya Serebryany79677382015-03-31 21:39:38 +000095Usage examples
96==============
Kostya Serebryanyd11dc172016-03-12 02:56:25 +000097.. contents::
98 :local:
99 :depth: 1
Kostya Serebryany79677382015-03-31 21:39:38 +0000100
101Toy example
102-----------
103
104A simple function that does something interesting if it receives the input "HI!"::
105
106 cat << EOF >> test_fuzzer.cc
Kostya Serebryany1c80b9d2015-11-26 00:12:57 +0000107 #include <stdint.h>
108 #include <stddef.h>
109 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
Kostya Serebryany79677382015-03-31 21:39:38 +0000110 if (size > 0 && data[0] == 'H')
111 if (size > 1 && data[1] == 'I')
112 if (size > 2 && data[2] == '!')
113 __builtin_trap();
Kostya Serebryany20bb5e72015-10-02 23:34:06 +0000114 return 0;
Kostya Serebryany79677382015-03-31 21:39:38 +0000115 }
116 EOF
Kostya Serebryanyabca88e2016-03-12 03:05:37 +0000117 # Build test_fuzzer.cc with asan and link against libFuzzer.a
118 clang++ -fsanitize=address -fsanitize-coverage=edge test_fuzzer.cc libFuzzer.a
Kostya Serebryany79677382015-03-31 21:39:38 +0000119 # Run the fuzzer with no corpus.
120 ./a.out
121
Kostya Serebryanyabca88e2016-03-12 03:05:37 +0000122You should get an error pretty quickly::
123
124 #0 READ units: 1 exec/s: 0
125 #1 INITED cov: 3 units: 1 exec/s: 0
126 #2 NEW cov: 5 units: 2 exec/s: 0 L: 64 MS: 0
127 #19237 NEW cov: 9 units: 3 exec/s: 0 L: 64 MS: 0
128 #20595 NEW cov: 10 units: 4 exec/s: 0 L: 1 MS: 4 ChangeASCIIInt-ShuffleBytes-ChangeByte-CrossOver-
129 #34574 NEW cov: 13 units: 5 exec/s: 0 L: 2 MS: 3 ShuffleBytes-CrossOver-ChangeBit-
130 #34807 NEW cov: 15 units: 6 exec/s: 0 L: 3 MS: 1 CrossOver-
131 ==31511== ERROR: libFuzzer: deadly signal
132 ...
133 artifact_prefix='./'; Test unit written to ./crash-b13e8756b13a00cf168300179061fb4b91fefbed
134
Kostya Serebryany79677382015-03-31 21:39:38 +0000135
136PCRE2
137-----
138
Kostya Serebryanyabca88e2016-03-12 03:05:37 +0000139Here we show how to use libFuzzer on something real, yet simple: pcre2_::
Kostya Serebryany79677382015-03-31 21:39:38 +0000140
Alexey Samsonov21a33812015-05-07 23:33:24 +0000141 COV_FLAGS=" -fsanitize-coverage=edge,indirect-calls,8bit-counters"
Kostya Serebryany79677382015-03-31 21:39:38 +0000142 # Get PCRE2
143 svn co svn://vcs.exim.org/pcre2/code/trunk pcre
Kostya Serebryany79677382015-03-31 21:39:38 +0000144 # Build PCRE2 with AddressSanitizer and coverage.
145 (cd pcre; ./autogen.sh; CC="clang -fsanitize=address $COV_FLAGS" ./configure --prefix=`pwd`/../inst && make -j && make install)
Kostya Serebryanyabca88e2016-03-12 03:05:37 +0000146 # Build the fuzzing target function that does something interesting with PCRE2.
Kostya Serebryany79677382015-03-31 21:39:38 +0000147 cat << EOF > pcre_fuzzer.cc
148 #include <string.h>
Kostya Serebryany1c80b9d2015-11-26 00:12:57 +0000149 #include <stdint.h>
Kostya Serebryany79677382015-03-31 21:39:38 +0000150 #include "pcre2posix.h"
Kostya Serebryany1c80b9d2015-11-26 00:12:57 +0000151 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
Kostya Serebryany20bb5e72015-10-02 23:34:06 +0000152 if (size < 1) return 0;
Kostya Serebryany79677382015-03-31 21:39:38 +0000153 char *str = new char[size+1];
154 memcpy(str, data, size);
155 str[size] = 0;
156 regex_t preg;
157 if (0 == regcomp(&preg, str, 0)) {
158 regexec(&preg, str, 0, 0, 0);
159 regfree(&preg);
160 }
161 delete [] str;
Kostya Serebryany20bb5e72015-10-02 23:34:06 +0000162 return 0;
Kostya Serebryany79677382015-03-31 21:39:38 +0000163 }
164 EOF
165 clang++ -g -fsanitize=address $COV_FLAGS -c -std=c++11 -I inst/include/ pcre_fuzzer.cc
166 # Link.
Kostya Serebryanyabca88e2016-03-12 03:05:37 +0000167 clang++ -g -fsanitize=address -Wl,--whole-archive inst/lib/*.a -Wl,-no-whole-archive libFuzzer.a pcre_fuzzer.o -o pcre_fuzzer
Kostya Serebryany79677382015-03-31 21:39:38 +0000168
169This will give you a binary of the fuzzer, called ``pcre_fuzzer``.
170Now, create a directory that will hold the test corpus::
171
172 mkdir -p CORPUS
173
174For simple input languages like regular expressions this is all you need.
175For more complicated inputs populate the directory with some input samples.
176Now run the fuzzer with the corpus dir as the only parameter::
177
178 ./pcre_fuzzer ./CORPUS
179
180You will see output like this::
181
182 Seed: 1876794929
183 #0 READ cov 0 bits 0 units 1 exec/s 0
184 #1 pulse cov 3 bits 0 units 1 exec/s 0
185 #1 INITED cov 3 bits 0 units 1 exec/s 0
186 #2 pulse cov 208 bits 0 units 1 exec/s 0
187 #2 NEW cov 208 bits 0 units 2 exec/s 0 L: 64
188 #3 NEW cov 217 bits 0 units 3 exec/s 0 L: 63
189 #4 pulse cov 217 bits 0 units 3 exec/s 0
190
191* The ``Seed:`` line shows you the current random seed (you can change it with ``-seed=N`` flag).
192* 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).
193* The ``INITED`` line shows you that how many inputs will be fuzzed.
194* 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.
195* The ``pulse`` lines appear periodically to show the current status.
196
197Now, interrupt the fuzzer and run it again the same way. You will see::
198
199 Seed: 1879995378
200 #0 READ cov 0 bits 0 units 564 exec/s 0
201 #1 pulse cov 502 bits 0 units 564 exec/s 0
202 ...
203 #512 pulse cov 2933 bits 0 units 564 exec/s 512
204 #564 INITED cov 2991 bits 0 units 344 exec/s 564
205 #1024 pulse cov 2991 bits 0 units 344 exec/s 1024
206 #1455 NEW cov 2995 bits 0 units 345 exec/s 1455 L: 49
207
208This time you were running the fuzzer with a non-empty input corpus (564 items).
209As the first step, the fuzzer minimized the set to produce 344 interesting items (the ``INITED`` line)
210
211You may run ``N`` independent fuzzer jobs in parallel on ``M`` CPUs::
212
213 N=100; M=4; ./pcre_fuzzer ./CORPUS -jobs=$N -workers=$M
214
Kostya Serebryany9690fcf2015-05-12 18:51:57 +0000215By default (``-reload=1``) the fuzzer processes will periodically scan the CORPUS directory
216and reload any new tests. This way the test inputs found by one process will be picked up
217by all others.
Kostya Serebryany79677382015-03-31 21:39:38 +0000218
Kostya Serebryany9690fcf2015-05-12 18:51:57 +0000219If ``-workers=$M`` is not supplied, ``min($N,NumberOfCpuCore/2)`` will be used.
Kostya Serebryany79677382015-03-31 21:39:38 +0000220
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000221Heartbleed
222----------
223Remember Heartbleed_?
224As it was recently `shown <https://blog.hboeck.de/archives/868-How-Heartbleed-couldve-been-found.html>`_,
225fuzzing with AddressSanitizer can find Heartbleed. Indeed, here are the step-by-step instructions
226to find Heartbleed with LibFuzzer::
227
228 wget https://www.openssl.org/source/openssl-1.0.1f.tar.gz
229 tar xf openssl-1.0.1f.tar.gz
Alexey Samsonov21a33812015-05-07 23:33:24 +0000230 COV_FLAGS="-fsanitize-coverage=edge,indirect-calls" # -fsanitize-coverage=8bit-counters
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000231 (cd openssl-1.0.1f/ && ./config &&
232 make -j 32 CC="clang -g -fsanitize=address $COV_FLAGS")
233 # Get and build LibFuzzer
234 svn co http://llvm.org/svn/llvm-project/llvm/trunk/lib/Fuzzer
235 clang -c -g -O2 -std=c++11 Fuzzer/*.cpp -IFuzzer
236 # Get examples of key/pem files.
237 git clone https://github.com/hannob/selftls
238 cp selftls/server* . -v
239 cat << EOF > handshake-fuzz.cc
240 #include <openssl/ssl.h>
241 #include <openssl/err.h>
242 #include <assert.h>
Kostya Serebryany1c80b9d2015-11-26 00:12:57 +0000243 #include <stdint.h>
244 #include <stddef.h>
245
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000246 SSL_CTX *sctx;
247 int Init() {
248 SSL_library_init();
249 SSL_load_error_strings();
250 ERR_load_BIO_strings();
251 OpenSSL_add_all_algorithms();
252 assert (sctx = SSL_CTX_new(TLSv1_method()));
253 assert (SSL_CTX_use_certificate_file(sctx, "server.pem", SSL_FILETYPE_PEM));
254 assert (SSL_CTX_use_PrivateKey_file(sctx, "server.key", SSL_FILETYPE_PEM));
255 return 0;
256 }
Kostya Serebryany1c80b9d2015-11-26 00:12:57 +0000257 extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000258 static int unused = Init();
259 SSL *server = SSL_new(sctx);
260 BIO *sinbio = BIO_new(BIO_s_mem());
261 BIO *soutbio = BIO_new(BIO_s_mem());
262 SSL_set_bio(server, sinbio, soutbio);
263 SSL_set_accept_state(server);
264 BIO_write(sinbio, Data, Size);
265 SSL_do_handshake(server);
266 SSL_free(server);
Kostya Serebryany20bb5e72015-10-02 23:34:06 +0000267 return 0;
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000268 }
269 EOF
Mehdi Amini30618f92015-09-17 15:59:52 +0000270 # Build the fuzzer.
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000271 clang++ -g handshake-fuzz.cc -fsanitize=address \
272 openssl-1.0.1f/libssl.a openssl-1.0.1f/libcrypto.a Fuzzer*.o
273 # Run 20 independent fuzzer jobs.
274 ./a.out -jobs=20 -workers=20
275
276Voila::
277
278 #1048576 pulse cov 3424 bits 0 units 9 exec/s 24385
279 =================================================================
280 ==17488==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x629000004748 at pc 0x00000048c979 bp 0x7fffe3e864f0 sp 0x7fffe3e85ca8
281 READ of size 60731 at 0x629000004748 thread T0
282 #0 0x48c978 in __asan_memcpy
283 #1 0x4db504 in tls1_process_heartbeat openssl-1.0.1f/ssl/t1_lib.c:2586:3
284 #2 0x580be3 in ssl3_read_bytes openssl-1.0.1f/ssl/s3_pkt.c:1092:4
285
Kostya Serebryany1c80b9d2015-11-26 00:12:57 +0000286Note: a `similar fuzzer <https://boringssl.googlesource.com/boringssl/+/HEAD/FUZZING.md>`_
287is now a part of the boringssl source tree.
288
Kostya Serebryany043ab1c2015-04-01 21:33:20 +0000289Advanced features
290=================
Kostya Serebryanyd11dc172016-03-12 02:56:25 +0000291.. contents::
292 :local:
293 :depth: 1
Kostya Serebryany043ab1c2015-04-01 21:33:20 +0000294
Kostya Serebryany7d211662015-09-04 00:12:11 +0000295Dictionaries
296------------
297*EXPERIMENTAL*.
298LibFuzzer supports user-supplied dictionaries with input language keywords
299or other interesting byte sequences (e.g. multi-byte magic values).
300Use ``-dict=DICTIONARY_FILE``. For some input languages using a dictionary
301may significantly improve the search speed.
302The dictionary syntax is similar to that used by AFL_ for its ``-x`` option::
303
304 # Lines starting with '#' and empty lines are ignored.
305
306 # Adds "blah" (w/o quotes) to the dictionary.
307 kw1="blah"
308 # Use \\ for backslash and \" for quotes.
309 kw2="\"ac\\dc\""
310 # Use \xAB for hex values
311 kw3="\xF7\xF8"
312 # the name of the keyword followed by '=' may be omitted:
313 "foo\x0Abar"
314
Kostya Serebryanyb17e2982015-07-31 21:48:10 +0000315Data-flow-guided fuzzing
316------------------------
317
318*EXPERIMENTAL*.
319With an additional compiler flag ``-fsanitize-coverage=trace-cmp`` (see SanitizerCoverageTraceDataFlow_)
320and extra run-time flag ``-use_traces=1`` the fuzzer will try to apply *data-flow-guided fuzzing*.
321That is, the fuzzer will record the inputs to comparison instructions, switch statements,
Kostya Serebryany7f4227d2015-08-05 18:23:01 +0000322and several libc functions (``memcmp``, ``strcmp``, ``strncmp``, etc).
Kostya Serebryanyb17e2982015-07-31 21:48:10 +0000323It will later use those recorded inputs during mutations.
324
325This mode can be combined with DataFlowSanitizer_ to achieve better sensitivity.
326
Kostya Serebryany6bd016b2015-04-10 05:44:43 +0000327AFL compatibility
328-----------------
329LibFuzzer can be used in parallel with AFL_ on the same test corpus.
330Both fuzzers expect the test corpus to reside in a directory, one file per input.
331You can run both fuzzers on the same corpus in parallel::
332
333 ./afl-fuzz -i testcase_dir -o findings_dir /path/to/program -r @@
334 ./llvm-fuzz testcase_dir findings_dir # Will write new tests to testcase_dir
335
336Periodically restart both fuzzers so that they can use each other's findings.
Kostya Serebryany79677382015-03-31 21:39:38 +0000337
Kostya Serebryanycd073d52015-04-10 06:32:29 +0000338How good is my fuzzer?
339----------------------
340
Kostya Serebryany566bc5a2015-05-06 22:19:00 +0000341Once you implement your target function ``LLVMFuzzerTestOneInput`` and fuzz it to death,
Kostya Serebryanycd073d52015-04-10 06:32:29 +0000342you will want to know whether the function or the corpus can be improved further.
343One easy to use metric is, of course, code coverage.
344You can get the coverage for your corpus like this::
345
Kostya Serebryany7ead9262016-03-12 03:11:27 +0000346 ASAN_OPTIONS=coverage=1 ./fuzzer CORPUS_DIR -runs=0
Kostya Serebryanycd073d52015-04-10 06:32:29 +0000347
348This will run all the tests in the CORPUS_DIR but will not generate any new tests
349and dump covered PCs to disk before exiting.
350Then you can subtract the set of covered PCs from the set of all instrumented PCs in the binary,
351see SanitizerCoverage_ for details.
352
Kostya Serebryany926b9bd2015-05-22 22:43:05 +0000353User-supplied mutators
354----------------------
355
356LibFuzzer allows to use custom (user-supplied) mutators,
357see FuzzerInterface.h_
358
Kostya Serebryanyaca76962016-01-16 01:23:12 +0000359Startup initialization
360----------------------
361If the library being tested needs to be initialized, there are several options.
362
363The simplest way is to have a statically initialized global object::
364
365 static bool Initialized = DoInitialization();
366
367Alternatively, you may define an optional init function and it will receive
368the program arguments that you can read and modify::
369
370 extern "C" int LLVMFuzzerInitialize(int *argc, char ***argv) {
371 ReadAndMaybeModify(argc, argv);
372 return 0;
373 }
374
Kostya Serebryanyaca76962016-01-16 01:23:12 +0000375Try to avoid initialization inside the target function itself as
376it will skew the coverage data. Don't do this::
377
378 extern "C" int LLVMFuzzerTestOneInput(...) {
379 static bool initialized = false;
380 if (!initialized) {
381 ...
382 }
383 }
384
Kostya Serebryany79677382015-03-31 21:39:38 +0000385Fuzzing components of LLVM
386==========================
Kostya Serebryanyd11dc172016-03-12 02:56:25 +0000387.. contents::
388 :local:
389 :depth: 1
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000390
391clang-format-fuzzer
392-------------------
393The inputs are random pieces of C++-like text.
394
395Build (make sure to use fresh clang as the host compiler)::
396
397 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
398 ninja clang-format-fuzzer
399 mkdir CORPUS_DIR
400 ./bin/clang-format-fuzzer CORPUS_DIR
401
402Optionally build other kinds of binaries (asan+Debug, msan, ubsan, etc).
403
Kostya Serebryany79677382015-03-31 21:39:38 +0000404Tracking bug: https://llvm.org/bugs/show_bug.cgi?id=23052
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000405
Kostya Serebryany79677382015-03-31 21:39:38 +0000406clang-fuzzer
407------------
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000408
Kostya Serebryany866e0d12015-09-02 22:44:46 +0000409The behavior is very similar to ``clang-format-fuzzer``.
Kostya Serebryany79677382015-03-31 21:39:38 +0000410
411Tracking bug: https://llvm.org/bugs/show_bug.cgi?id=23057
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000412
Kostya Serebryanyb98e3272015-08-31 18:57:24 +0000413llvm-as-fuzzer
414--------------
415
416Tracking bug: https://llvm.org/bugs/show_bug.cgi?id=24639
417
Daniel Sanders5151b202015-09-18 10:47:45 +0000418llvm-mc-fuzzer
419--------------
420
421This tool fuzzes the MC layer. Currently it is only able to fuzz the
422disassembler but it is hoped that assembly, and round-trip verification will be
423added in future.
424
425When run in dissassembly mode, the inputs are opcodes to be disassembled. The
426fuzzer will consume as many instructions as possible and will stop when it
427finds an invalid instruction or runs out of data.
428
Daniel Sanders4fe1c8b2015-09-26 17:09:01 +0000429Please note that the command line interface differs slightly from that of other
430fuzzers. The fuzzer arguments should follow ``--fuzzer-args`` and should have
431a single dash, while other arguments control the operation mode and target in a
432similar manner to ``llvm-mc`` and should have two dashes. For example::
Daniel Sanders5151b202015-09-18 10:47:45 +0000433
Daniel Sanders4fe1c8b2015-09-26 17:09:01 +0000434 llvm-mc-fuzzer --triple=aarch64-linux-gnu --disassemble --fuzzer-args -max_len=4 -jobs=10
Daniel Sanders5151b202015-09-18 10:47:45 +0000435
Kostya Serebryanyfb2f3312015-05-13 22:42:28 +0000436Buildbot
437--------
438
439We have a buildbot that runs the above fuzzers for LLVM components
44024/7/365 at http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-fuzzer .
441
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000442FAQ
443=========================
444
Kostya Serebryany241fb612016-03-12 03:23:02 +0000445Q. Why libFuzzer does not use any of the LLVM support?
446------------------------------------------------------
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000447
448There are two reasons.
449
450First, we want this library to be used outside of the LLVM w/o users having to
451build the rest of LLVM. This may sound unconvincing for many LLVM folks,
452but in practice the need for building the whole LLVM frightens many potential
453users -- and we want more users to use this code.
454
455Second, there is a subtle technical reason not to rely on the rest of LLVM, or
456any other large body of code (maybe not even STL). When coverage instrumentation
457is enabled, it will also instrument the LLVM support code which will blow up the
458coverage set of the process (since the fuzzer is in-process). In other words, by
459using more external dependencies we will slow down the fuzzer while the main
460reason for it to exist is extreme speed.
461
462Q. What about Windows then? The Fuzzer contains code that does not build on Windows.
463------------------------------------------------------------------------------------
464
Kostya Serebryany241fb612016-03-12 03:23:02 +0000465Volunteers are welcome.
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000466
467Q. When this Fuzzer is not a good solution for a problem?
468---------------------------------------------------------
469
470* If the test inputs are validated by the target library and the validator
Kostya Serebryany241fb612016-03-12 03:23:02 +0000471 asserts/crashes on invalid inputs, in-process fuzzing is not applicable.
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000472* Bugs in the target library may accumulate w/o being detected. E.g. a memory
473 corruption that goes undetected at first and then leads to a crash while
474 testing another input. This is why it is highly recommended to run this
475 in-process fuzzer with all sanitizers to detect most bugs on the spot.
476* It is harder to protect the in-process fuzzer from excessive memory
477 consumption and infinite loops in the target library (still possible).
478* The target library should not have significant global state that is not
479 reset between the runs.
480* Many interesting target libs are not designed in a way that supports
481 the in-process fuzzer interface (e.g. require a file path instead of a
482 byte array).
483* If a single test run takes a considerable fraction of a second (or
484 more) the speed benefit from the in-process fuzzer is negligible.
485* If the target library runs persistent threads (that outlive
486 execution of one test) the fuzzing results will be unreliable.
487
488Q. So, what exactly this Fuzzer is good for?
489--------------------------------------------
490
491This Fuzzer might be a good choice for testing libraries that have relatively
Kostya Serebryany241fb612016-03-12 03:23:02 +0000492small inputs, each input takes < 10ms to run, and the library code is not expected
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000493to crash on invalid inputs.
Kostya Serebryany241fb612016-03-12 03:23:02 +0000494Examples: regular expression matchers, text or binary format parsers, compression,
495network, crypto.
Kostya Serebryany35ce8632015-03-30 23:05:30 +0000496
Kostya Serebryanyfab4fba2015-08-11 01:53:45 +0000497Trophies
498========
499* GLIBC: https://sourceware.org/glibc/wiki/FuzzingLibc
Kostya Serebryanyfdf44182015-08-11 04:16:37 +0000500
Kostya Serebryanyfab4fba2015-08-11 01:53:45 +0000501* MUSL LIBC:
Kostya Serebryanyfdf44182015-08-11 04:16:37 +0000502
503 * http://git.musl-libc.org/cgit/musl/commit/?id=39dfd58417ef642307d90306e1c7e50aaec5a35c
504 * http://www.openwall.com/lists/oss-security/2015/03/30/3
505
Kostya Serebryany928eb332015-10-12 18:15:42 +0000506* `pugixml <https://github.com/zeux/pugixml/issues/39>`_
Kostya Serebryanyfdf44182015-08-11 04:16:37 +0000507
Kostya Serebryany45dac2a2015-10-10 02:14:18 +0000508* PCRE: Search for "LLVM fuzzer" in http://vcs.pcre.org/pcre2/code/trunk/ChangeLog?view=markup;
Kostya Serebryany928eb332015-10-12 18:15:42 +0000509 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 +0000510
Kostya Serebryany928eb332015-10-12 18:15:42 +0000511* `ICU <http://bugs.icu-project.org/trac/ticket/11838>`_
Kostya Serebryanyed483772015-08-11 20:34:48 +0000512
Kostya Serebryany928eb332015-10-12 18:15:42 +0000513* `Freetype <https://savannah.nongnu.org/search/?words=LibFuzzer&type_of_search=bugs&Search=Search&exact=1#options>`_
Kostya Serebryany62921282015-09-11 16:34:14 +0000514
Kostya Serebryany928eb332015-10-12 18:15:42 +0000515* `Harfbuzz <https://github.com/behdad/harfbuzz/issues/139>`_
516
Kostya Serebryany240a1592015-11-11 05:25:24 +0000517* `SQLite <http://www3.sqlite.org/cgi/src/info/088009efdd56160b>`_
Kostya Serebryany65e71262015-11-11 05:20:55 +0000518
Kostya Serebryany12fa3b52015-11-13 02:44:16 +0000519* `Python <http://bugs.python.org/issue25388>`_
520
Kostya Serebryany2cf90822016-03-19 01:05:33 +0000521* OpenSSL/BoringSSL: `[1] <https://boringssl.googlesource.com/boringssl/+/cb852981cd61733a7a1ae4fd8755b7ff950e857d>`_ `[2] <https://openssl.org/news/secadv/20160301.txt>`_ `[3] <https://boringssl.googlesource.com/boringssl/+/2b07fa4b22198ac02e0cee8f37f3337c3dba91bc>`_ `[4] <https://boringssl.googlesource.com/boringssl/+/6b6e0b20893e2be0e68af605a60ffa2cbb0ffa64>`_
Kostya Serebryany064a6722015-12-05 02:23:49 +0000522
Kostya Serebryany928eb332015-10-12 18:15:42 +0000523* `Libxml2
524 <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 +0000525
Kostya Serebryany240a1592015-11-11 05:25:24 +0000526* `Linux Kernel's BPF verifier <https://github.com/iovisor/bpf-fuzzer>`_
Kostya Serebryany62921282015-09-11 16:34:14 +0000527
Kostya Serebryany240a1592015-11-11 05:25:24 +0000528* 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 +0000529
Kostya Serebryany79677382015-03-31 21:39:38 +0000530.. _pcre2: http://www.pcre.org/
531
532.. _AFL: http://lcamtuf.coredump.cx/afl/
533
Alexey Samsonov675e5392015-04-27 22:50:06 +0000534.. _SanitizerCoverage: http://clang.llvm.org/docs/SanitizerCoverage.html
Kostya Serebryanyb17e2982015-07-31 21:48:10 +0000535.. _SanitizerCoverageTraceDataFlow: http://clang.llvm.org/docs/SanitizerCoverage.html#tracing-data-flow
536.. _DataFlowSanitizer: http://clang.llvm.org/docs/DataFlowSanitizer.html
Kostya Serebryany5e593a42015-04-08 06:16:11 +0000537
538.. _Heartbleed: http://en.wikipedia.org/wiki/Heartbleed
Kostya Serebryany926b9bd2015-05-22 22:43:05 +0000539
540.. _FuzzerInterface.h: https://github.com/llvm-mirror/llvm/blob/master/lib/Fuzzer/FuzzerInterface.h