1
- This directory contains two utilities for fuzzing Clang: clang-fuzzer and
2
- clang-proto-fuzzer. Both use libFuzzer to generate inputs to clang via
3
- coverage-guided mutation.
1
+ This directory contains three utilities for fuzzing Clang: clang-fuzzer,
2
+ clang-objc-fuzzer, and clang- proto-fuzzer. All use libFuzzer to generate inputs
3
+ to clang via coverage-guided mutation.
4
4
5
- The two utilities differ, however, in how they structure inputs to Clang.
5
+ The three utilities differ, however, in how they structure inputs to Clang.
6
6
clang-fuzzer makes no attempt to generate valid C++ programs and is therefore
7
7
primarily useful for stressing the surface layers of Clang (i.e. lexer, parser).
8
+
9
+ clang-objc-fuzzer is similar but for Objective-C: it makes no attempt to
10
+ generate a valid Objective-C program.
11
+
8
12
clang-proto-fuzzer uses a protobuf class to describe a subset of the C++
9
13
language and then uses libprotobuf-mutator to mutate instantiations of that
10
14
class, producing valid C++ programs in the process. As a result,
11
15
clang-proto-fuzzer is better at stressing deeper layers of Clang and LLVM.
12
16
17
+ Some of the fuzzers have example corpuses inside the corpus_examples directory.
18
+
13
19
===================================
14
20
Building clang-fuzzer
15
21
===================================
@@ -35,6 +41,35 @@ Example:
35
41
bin/clang-fuzzer CORPUS_DIR
36
42
37
43
44
+ ===================================
45
+ Building clang-objc-fuzzer
46
+ ===================================
47
+ Within your LLVM build directory, run CMake with the following variable
48
+ definitions:
49
+ - CMAKE_C_COMPILER=clang
50
+ - CMAKE_CXX_COMPILER=clang++
51
+ - LLVM_USE_SANITIZE_COVERAGE=YES
52
+ - LLVM_USE_SANITIZER=Address
53
+
54
+ Then build the clang-objc-fuzzer target.
55
+
56
+ Example:
57
+ cd $LLVM_SOURCE_DIR
58
+ mkdir build && cd build
59
+ cmake .. -GNinja -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ \
60
+ -DLLVM_USE_SANITIZE_COVERAGE=YES -DLLVM_USE_SANITIZER=Address
61
+ ninja clang-objc-fuzzer
62
+
63
+ ======================
64
+ Running clang-objc-fuzzer
65
+ ======================
66
+ bin/clang-objc-fuzzer CORPUS_DIR
67
+
68
+ e.g. using the example objc corpus,
69
+
70
+ bin/clang-objc-fuzzer <path to corpus_examples/objc> <path to new directory to store corpus findings>
71
+
72
+
38
73
=======================================================
39
74
Building clang-proto-fuzzer (Linux-only instructions)
40
75
=======================================================
0 commit comments