1========================================================
2LibFuzzer -- a library for coverage-guided fuzz testing.
3========================================================
4.. contents::
5   :local:
6   :depth: 1
7
8Introduction
9============
10
11libFuzzer -- library for in-process evolutionary fuzzing of other libraries.
12
13The 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=...
44
45
46As 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
55potentially much faster as it has no overhead for process start-up.
56It uses LLVM's SanitizerCoverage_ instrumentation to get in-process
57coverage-feedback
58
59The 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.
63
64Usage
65=====
66To run fuzzing pass 0 or more directories. New samples will be written into `dir1`, other directories will be read once during startup.::
67
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
74The 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).
78  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.
79  timeout                            	1200	Timeout in seconds (if positive). If one unit runs more than this number of seconds the process will abort.
80  timeout_exitcode                     77       Unless abort_on_timeout is set, use this exitcode on timeout.
81  max_total_time                        0       If positive, indicates the maximal total time in seconds to run the fuzzer.
82  help                               	0	Print help.
83  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.
84  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.
86  use_traces                            0       Experimental: use instruction traces
87  only_ascii                            0       If 1, generate only ASCII (isprint+isspace) inputs.
88  artifact_prefix                       ""      Write fuzzing artifacts (crash, timeout, or slow inputs) as $(artifact_prefix)file
89  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.
90  print_final_stats                     0       If 1, print statistics at exit.
91  close_fd_mask                         0       If 1, close stdout at startup; if 2, close stderr; if 3, close both.
92
93For the full list of flags run the fuzzer binary with ``-help=1``.
94
95Usage examples
96==============
97.. contents::
98   :local:
99   :depth: 1
100
101Toy example
102-----------
103
104A simple function that does something interesting if it receives the input "HI!"::
105
106  cat << EOF >> test_fuzzer.cc
107  #include <stdint.h>
108  #include <stddef.h>
109  extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
110    if (size > 0 && data[0] == 'H')
111      if (size > 1 && data[1] == 'I')
112         if (size > 2 && data[2] == '!')
113         __builtin_trap();
114    return 0;
115  }
116  EOF
117  # Build test_fuzzer.cc with asan and link against libFuzzer.a
118  clang++ -fsanitize=address -fsanitize-coverage=edge test_fuzzer.cc libFuzzer.a
119  # Run the fuzzer with no corpus.
120  ./a.out
121
122You 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
135
136PCRE2
137-----
138
139Here we show how to use libFuzzer on something real, yet simple: pcre2_::
140
141  COV_FLAGS=" -fsanitize-coverage=edge,indirect-calls,8bit-counters"
142  # Get PCRE2
143  svn co svn://vcs.exim.org/pcre2/code/trunk pcre
144  # 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)
146  # Build the fuzzing target function that does something interesting with PCRE2.
147  cat << EOF > pcre_fuzzer.cc
148  #include <string.h>
149  #include <stdint.h>
150  #include "pcre2posix.h"
151  extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
152    if (size < 1) return 0;
153    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;
162    return 0;
163  }
164  EOF
165  clang++ -g -fsanitize=address $COV_FLAGS -c -std=c++11  -I inst/include/ pcre_fuzzer.cc
166  # Link.
167  clang++ -g -fsanitize=address -Wl,--whole-archive inst/lib/*.a -Wl,-no-whole-archive libFuzzer.a pcre_fuzzer.o -o pcre_fuzzer
168
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
215By 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.
218
219If ``-workers=$M`` is not supplied, ``min($N,NumberOfCpuCore/2)`` will be used.
220
221Heartbleed
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
230  COV_FLAGS="-fsanitize-coverage=edge,indirect-calls" # -fsanitize-coverage=8bit-counters
231  (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>
243  #include <stdint.h>
244  #include <stddef.h>
245
246  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  }
257  extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
258    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);
267    return 0;
268  }
269  EOF
270  # Build the fuzzer.
271  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
286Note: a `similar fuzzer <https://boringssl.googlesource.com/boringssl/+/HEAD/FUZZING.md>`_
287is now a part of the boringssl source tree.
288
289Advanced features
290=================
291.. contents::
292   :local:
293   :depth: 1
294
295Dictionaries
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
315Data-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,
322and several libc functions (``memcmp``, ``strcmp``, ``strncmp``, etc).
323It will later use those recorded inputs during mutations.
324
325This mode can be combined with DataFlowSanitizer_ to achieve better sensitivity.
326
327AFL 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.
337
338How good is my fuzzer?
339----------------------
340
341Once you implement your target function ``LLVMFuzzerTestOneInput`` and fuzz it to death,
342you 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
346  ASAN_OPTIONS=coverage=1 ./fuzzer CORPUS_DIR -runs=0
347
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
353User-supplied mutators
354----------------------
355
356LibFuzzer allows to use custom (user-supplied) mutators,
357see FuzzerInterface.h_
358
359Startup 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
375Try 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
385Fuzzing components of LLVM
386==========================
387.. contents::
388   :local:
389   :depth: 1
390
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
404Tracking bug: https://llvm.org/bugs/show_bug.cgi?id=23052
405
406clang-fuzzer
407------------
408
409The behavior is very similar to ``clang-format-fuzzer``.
410
411Tracking bug: https://llvm.org/bugs/show_bug.cgi?id=23057
412
413llvm-as-fuzzer
414--------------
415
416Tracking bug: https://llvm.org/bugs/show_bug.cgi?id=24639
417
418llvm-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
429Please 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::
433
434  llvm-mc-fuzzer --triple=aarch64-linux-gnu --disassemble --fuzzer-args -max_len=4 -jobs=10
435
436Buildbot
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
442FAQ
443=========================
444
445Q. Why libFuzzer does not use any of the LLVM support?
446------------------------------------------------------
447
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
465Volunteers are welcome.
466
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
471  asserts/crashes on invalid inputs, in-process fuzzing is not applicable.
472* 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
492small inputs, each input takes < 10ms to run, and the library code is not expected
493to crash on invalid inputs.
494Examples: regular expression matchers, text or binary format parsers, compression,
495network, crypto.
496
497Trophies
498========
499* GLIBC: https://sourceware.org/glibc/wiki/FuzzingLibc
500
501* MUSL LIBC:
502
503  * http://git.musl-libc.org/cgit/musl/commit/?id=39dfd58417ef642307d90306e1c7e50aaec5a35c
504  * http://www.openwall.com/lists/oss-security/2015/03/30/3
505
506* `pugixml <https://github.com/zeux/pugixml/issues/39>`_
507
508* PCRE: Search for "LLVM fuzzer" in http://vcs.pcre.org/pcre2/code/trunk/ChangeLog?view=markup;
509  also in `bugzilla <https://bugs.exim.org/buglist.cgi?bug_status=__all__&content=libfuzzer&no_redirect=1&order=Importance&product=PCRE&query_format=specific>`_
510
511* `ICU <http://bugs.icu-project.org/trac/ticket/11838>`_
512
513* `Freetype <https://savannah.nongnu.org/search/?words=LibFuzzer&type_of_search=bugs&Search=Search&exact=1#options>`_
514
515* `Harfbuzz <https://github.com/behdad/harfbuzz/issues/139>`_
516
517* `SQLite <http://www3.sqlite.org/cgi/src/info/088009efdd56160b>`_
518
519* `Python <http://bugs.python.org/issue25388>`_
520
521* 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>`_
522
523* `Libxml2
524  <https://bugzilla.gnome.org/buglist.cgi?bug_status=__all__&content=libFuzzer&list_id=68957&order=Importance&product=libxml2&query_format=specific>`_
525
526* `Linux Kernel's BPF verifier <https://github.com/iovisor/bpf-fuzzer>`_
527
528* 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.
529
530.. _pcre2: http://www.pcre.org/
531
532.. _AFL: http://lcamtuf.coredump.cx/afl/
533
534.. _SanitizerCoverage: http://clang.llvm.org/docs/SanitizerCoverage.html
535.. _SanitizerCoverageTraceDataFlow: http://clang.llvm.org/docs/SanitizerCoverage.html#tracing-data-flow
536.. _DataFlowSanitizer: http://clang.llvm.org/docs/DataFlowSanitizer.html
537
538.. _Heartbleed: http://en.wikipedia.org/wiki/Heartbleed
539
540.. _FuzzerInterface.h: https://github.com/llvm-mirror/llvm/blob/master/lib/Fuzzer/FuzzerInterface.h
541