121
|
1 ================================
|
|
2 Fuzzing LLVM libraries and tools
|
|
3 ================================
|
|
4
|
|
5 .. contents::
|
|
6 :local:
|
|
7 :depth: 2
|
|
8
|
|
9 Introduction
|
|
10 ============
|
|
11
|
|
12 The LLVM tree includes a number of fuzzers for various components. These are
|
|
13 built on top of :doc:`LibFuzzer <LibFuzzer>`.
|
|
14
|
|
15
|
|
16 Available Fuzzers
|
|
17 =================
|
|
18
|
|
19 clang-fuzzer
|
|
20 ------------
|
|
21
|
|
22 A |generic fuzzer| that tries to compile textual input as C++ code. Some of the
|
|
23 bugs this fuzzer has reported are `on bugzilla`__ and `on OSS Fuzz's
|
|
24 tracker`__.
|
|
25
|
|
26 __ https://llvm.org/pr23057
|
|
27 __ https://bugs.chromium.org/p/oss-fuzz/issues/list?q=proj-llvm+clang-fuzzer
|
|
28
|
|
29 clang-proto-fuzzer
|
|
30 ------------------
|
|
31
|
|
32 A |protobuf fuzzer| that compiles valid C++ programs generated from a protobuf
|
|
33 class that describes a subset of the C++ language.
|
|
34
|
|
35 This fuzzer accepts clang command line options after `ignore_remaining_args=1`.
|
|
36 For example, the following command will fuzz clang with a higher optimization
|
|
37 level:
|
|
38
|
|
39 .. code-block:: shell
|
|
40
|
|
41 % bin/clang-proto-fuzzer <corpus-dir> -ignore_remaining_args=1 -O3
|
|
42
|
|
43 clang-format-fuzzer
|
|
44 -------------------
|
|
45
|
|
46 A |generic fuzzer| that runs clang-format_ on C++ text fragments. Some of the
|
|
47 bugs this fuzzer has reported are `on bugzilla`__
|
|
48 and `on OSS Fuzz's tracker`__.
|
|
49
|
|
50 .. _clang-format: https://clang.llvm.org/docs/ClangFormat.html
|
|
51 __ https://llvm.org/pr23052
|
|
52 __ https://bugs.chromium.org/p/oss-fuzz/issues/list?q=proj-llvm+clang-format-fuzzer
|
|
53
|
|
54 llvm-as-fuzzer
|
|
55 --------------
|
|
56
|
|
57 A |generic fuzzer| that tries to parse text as :doc:`LLVM assembly <LangRef>`.
|
|
58 Some of the bugs this fuzzer has reported are `on bugzilla`__.
|
|
59
|
|
60 __ https://llvm.org/pr24639
|
|
61
|
|
62 llvm-dwarfdump-fuzzer
|
|
63 ---------------------
|
|
64
|
|
65 A |generic fuzzer| that interprets inputs as object files and runs
|
|
66 :doc:`llvm-dwarfdump <CommandGuide/llvm-dwarfdump>` on them. Some of the bugs
|
|
67 this fuzzer has reported are `on OSS Fuzz's tracker`__
|
|
68
|
|
69 __ https://bugs.chromium.org/p/oss-fuzz/issues/list?q=proj-llvm+llvm-dwarfdump-fuzzer
|
|
70
|
|
71 llvm-demangle-fuzzer
|
|
72 ---------------------
|
|
73
|
|
74 A |generic fuzzer| for the Itanium demangler used in various LLVM tools. We've
|
|
75 fuzzed __cxa_demangle to death, why not fuzz LLVM's implementation of the same
|
|
76 function!
|
|
77
|
|
78 llvm-isel-fuzzer
|
|
79 ----------------
|
|
80
|
|
81 A |LLVM IR fuzzer| aimed at finding bugs in instruction selection.
|
|
82
|
|
83 This fuzzer accepts flags after `ignore_remaining_args=1`. The flags match
|
|
84 those of :doc:`llc <CommandGuide/llc>` and the triple is required. For example,
|
|
85 the following command would fuzz AArch64 with :doc:`GlobalISel`:
|
|
86
|
|
87 .. code-block:: shell
|
|
88
|
|
89 % bin/llvm-isel-fuzzer <corpus-dir> -ignore_remaining_args=1 -mtriple aarch64 -global-isel -O0
|
|
90
|
|
91 Some flags can also be specified in the binary name itself in order to support
|
|
92 OSS Fuzz, which has trouble with required arguments. To do this, you can copy
|
|
93 or move ``llvm-isel-fuzzer`` to ``llvm-isel-fuzzer--x-y-z``, separating options
|
|
94 from the binary name using "--". The valid options are architecture names
|
|
95 (``aarch64``, ``x86_64``), optimization levels (``O0``, ``O2``), or specific
|
|
96 keywords, like ``gisel`` for enabling global instruction selection. In this
|
|
97 mode, the same example could be run like so:
|
|
98
|
|
99 .. code-block:: shell
|
|
100
|
|
101 % bin/llvm-isel-fuzzer--aarch64-O0-gisel <corpus-dir>
|
|
102
|
|
103 llvm-mc-assemble-fuzzer
|
|
104 -----------------------
|
|
105
|
|
106 A |generic fuzzer| that fuzzes the MC layer's assemblers by treating inputs as
|
|
107 target specific assembly.
|
|
108
|
|
109 Note that this fuzzer has an unusual command line interface which is not fully
|
|
110 compatible with all of libFuzzer's features. Fuzzer arguments must be passed
|
|
111 after ``--fuzzer-args``, and any ``llc`` flags must use two dashes. For
|
|
112 example, to fuzz the AArch64 assembler you might use the following command:
|
|
113
|
|
114 .. code-block:: console
|
|
115
|
|
116 llvm-mc-fuzzer --triple=aarch64-linux-gnu --fuzzer-args -max_len=4
|
|
117
|
|
118 This scheme will likely change in the future.
|
|
119
|
|
120 llvm-mc-disassemble-fuzzer
|
|
121 --------------------------
|
|
122
|
|
123 A |generic fuzzer| that fuzzes the MC layer's disassemblers by treating inputs
|
|
124 as assembled binary data.
|
|
125
|
|
126 Note that this fuzzer has an unusual command line interface which is not fully
|
|
127 compatible with all of libFuzzer's features. See the notes above about
|
|
128 ``llvm-mc-assemble-fuzzer`` for details.
|
|
129
|
|
130
|
|
131 .. |generic fuzzer| replace:: :ref:`generic fuzzer <fuzzing-llvm-generic>`
|
|
132 .. |protobuf fuzzer|
|
|
133 replace:: :ref:`libprotobuf-mutator based fuzzer <fuzzing-llvm-protobuf>`
|
|
134 .. |LLVM IR fuzzer|
|
|
135 replace:: :ref:`structured LLVM IR fuzzer <fuzzing-llvm-ir>`
|
|
136
|
|
137
|
|
138 Mutators and Input Generators
|
|
139 =============================
|
|
140
|
|
141 The inputs for a fuzz target are generated via random mutations of a
|
|
142 :ref:`corpus <libfuzzer-corpus>`. There are a few options for the kinds of
|
|
143 mutations that a fuzzer in LLVM might want.
|
|
144
|
|
145 .. _fuzzing-llvm-generic:
|
|
146
|
|
147 Generic Random Fuzzing
|
|
148 ----------------------
|
|
149
|
|
150 The most basic form of input mutation is to use the built in mutators of
|
|
151 LibFuzzer. These simply treat the input corpus as a bag of bits and make random
|
|
152 mutations. This type of fuzzer is good for stressing the surface layers of a
|
|
153 program, and is good at testing things like lexers, parsers, or binary
|
|
154 protocols.
|
|
155
|
|
156 Some of the in-tree fuzzers that use this type of mutator are `clang-fuzzer`_,
|
|
157 `clang-format-fuzzer`_, `llvm-as-fuzzer`_, `llvm-dwarfdump-fuzzer`_,
|
|
158 `llvm-mc-assemble-fuzzer`_, and `llvm-mc-disassemble-fuzzer`_.
|
|
159
|
|
160 .. _fuzzing-llvm-protobuf:
|
|
161
|
|
162 Structured Fuzzing using ``libprotobuf-mutator``
|
|
163 ------------------------------------------------
|
|
164
|
|
165 We can use libprotobuf-mutator_ in order to perform structured fuzzing and
|
|
166 stress deeper layers of programs. This works by defining a protobuf class that
|
|
167 translates arbitrary data into structurally interesting input. Specifically, we
|
|
168 use this to work with a subset of the C++ language and perform mutations that
|
|
169 produce valid C++ programs in order to exercise parts of clang that are more
|
|
170 interesting than parser error handling.
|
|
171
|
|
172 To build this kind of fuzzer you need `protobuf`_ and its dependencies
|
|
173 installed, and you need to specify some extra flags when configuring the build
|
|
174 with :doc:`CMake <CMake>`. For example, `clang-proto-fuzzer`_ can be enabled by
|
|
175 adding ``-DCLANG_ENABLE_PROTO_FUZZER=ON`` to the flags described in
|
|
176 :ref:`building-fuzzers`.
|
|
177
|
|
178 The only in-tree fuzzer that uses ``libprotobuf-mutator`` today is
|
|
179 `clang-proto-fuzzer`_.
|
|
180
|
|
181 .. _libprotobuf-mutator: https://github.com/google/libprotobuf-mutator
|
|
182 .. _protobuf: https://github.com/google/protobuf
|
|
183
|
|
184 .. _fuzzing-llvm-ir:
|
|
185
|
|
186 Structured Fuzzing of LLVM IR
|
|
187 -----------------------------
|
|
188
|
|
189 We also use a more direct form of structured fuzzing for fuzzers that take
|
|
190 :doc:`LLVM IR <LangRef>` as input. This is achieved through the ``FuzzMutate``
|
|
191 library, which was `discussed at EuroLLVM 2017`_.
|
|
192
|
|
193 The ``FuzzMutate`` library is used to structurally fuzz backends in
|
|
194 `llvm-isel-fuzzer`_.
|
|
195
|
|
196 .. _discussed at EuroLLVM 2017: https://www.youtube.com/watch?v=UBbQ_s6hNgg
|
|
197
|
|
198
|
|
199 Building and Running
|
|
200 ====================
|
|
201
|
|
202 .. _building-fuzzers:
|
|
203
|
|
204 Configuring LLVM to Build Fuzzers
|
|
205 ---------------------------------
|
|
206
|
|
207 Fuzzers will be built and linked to libFuzzer by default as long as you build
|
|
208 LLVM with sanitizer coverage enabled. You would typically also enable at least
|
|
209 one sanitizer to find bugs faster. The most common way to build the fuzzers is
|
|
210 by adding the following two flags to your CMake invocation:
|
|
211 ``-DLLVM_USE_SANITIZER=Address -DLLVM_USE_SANITIZE_COVERAGE=On``.
|
|
212
|
|
213 .. note:: If you have ``compiler-rt`` checked out in an LLVM tree when building
|
|
214 with sanitizers, you'll want to specify ``-DLLVM_BUILD_RUNTIME=Off``
|
|
215 to avoid building the sanitizers themselves with sanitizers enabled.
|
|
216
|
|
217 Continuously Running and Finding Bugs
|
|
218 -------------------------------------
|
|
219
|
|
220 There used to be a public buildbot running LLVM fuzzers continuously, and while
|
|
221 this did find issues, it didn't have a very good way to report problems in an
|
|
222 actionable way. Because of this, we're moving towards using `OSS Fuzz`_ more
|
|
223 instead.
|
|
224
|
|
225 You can browse the `LLVM project issue list`_ for the bugs found by
|
|
226 `LLVM on OSS Fuzz`_. These are also mailed to the `llvm-bugs mailing
|
|
227 list`_.
|
|
228
|
|
229 .. _OSS Fuzz: https://github.com/google/oss-fuzz
|
|
230 .. _LLVM project issue list:
|
|
231 https://bugs.chromium.org/p/oss-fuzz/issues/list?q=Proj-llvm
|
|
232 .. _LLVM on OSS Fuzz:
|
|
233 https://github.com/google/oss-fuzz/blob/master/projects/llvm
|
|
234 .. _llvm-bugs mailing list:
|
|
235 http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
|
|
236
|
|
237
|
|
238 Utilities for Writing Fuzzers
|
|
239 =============================
|
|
240
|
|
241 There are some utilities available for writing fuzzers in LLVM.
|
|
242
|
|
243 Some helpers for handling the command line interface are available in
|
|
244 ``include/llvm/FuzzMutate/FuzzerCLI.h``, including functions to parse command
|
|
245 line options in a consistent way and to implement standalone main functions so
|
|
246 your fuzzer can be built and tested when not built against libFuzzer.
|
|
247
|
|
248 There is also some handling of the CMake config for fuzzers, where you should
|
|
249 use the ``add_llvm_fuzzer`` to set up fuzzer targets. This function works
|
|
250 similarly to functions such as ``add_llvm_tool``, but they take care of linking
|
|
251 to LibFuzzer when appropriate and can be passed the ``DUMMY_MAIN`` argument to
|
|
252 enable standalone testing.
|