blob: 8798b650383b9a272ba34feb81f7d592353045db [file] [log] [blame]
Kostya Serebryany016852c2015-02-19 18:45:37 +00001//===- FuzzerInterface.h - Interface header for the Fuzzer ------*- C++ -* ===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9// Define the interface between the Fuzzer and the library being tested.
10//===----------------------------------------------------------------------===//
11
Kostya Serebryanyf3424592015-05-22 22:35:31 +000012// WARNING: keep the interface free of STL or any other header-based C++ lib,
13// to avoid bad interactions between the code used in the fuzzer and
14// the code used in the target function.
15
Kostya Serebryany016852c2015-02-19 18:45:37 +000016#ifndef LLVM_FUZZER_INTERFACE_H
17#define LLVM_FUZZER_INTERFACE_H
18
19#include <cstddef>
20#include <cstdint>
21
22namespace fuzzer {
23
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +000024typedef void (*UserCallback)(const uint8_t *Data, size_t Size);
25/** Simple C-like interface with a single user-supplied callback.
26
27Usage:
28
29#\code
Kostya Serebryanyf3424592015-05-22 22:35:31 +000030#include "FuzzerInterface.h"
31
32void LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
33 DoStuffWithData(Data, Size);
34}
35
36// Implement your own main() or use the one from FuzzerMain.cpp.
37int main(int argc, char **argv) {
38 InitializeMeIfNeeded();
39 return fuzzer::FuzzerDriver(argc, argv, LLVMFuzzerTestOneInput);
40}
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +000041#\endcode
42*/
Kostya Serebryany016852c2015-02-19 18:45:37 +000043int FuzzerDriver(int argc, char **argv, UserCallback Callback);
44
Kostya Serebryany404c69f2015-07-24 01:06:40 +000045class FuzzerRandomBase {
46 public:
47 FuzzerRandomBase(){}
48 virtual ~FuzzerRandomBase(){};
49 virtual void ResetSeed(int seed) = 0;
50 // Return a random number.
51 virtual size_t Rand() = 0;
52 // Return a random number in range [0,n).
Kostya Serebryanybf29ff22015-08-06 01:29:13 +000053 size_t operator()(size_t n) { return n ? Rand() % n : 0; }
Kostya Serebryany404c69f2015-07-24 01:06:40 +000054 bool RandBool() { return Rand() % 2; }
55};
56
57class FuzzerRandomLibc : public FuzzerRandomBase {
58 public:
59 FuzzerRandomLibc(int seed) { ResetSeed(seed); }
60 void ResetSeed(int seed) override;
61 ~FuzzerRandomLibc() override {}
62 size_t Rand() override;
63};
64
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +000065class MutationDispatcher {
66 public:
Kostya Serebryany7d211662015-09-04 00:12:11 +000067 MutationDispatcher(FuzzerRandomBase &Rand);
68 ~MutationDispatcher();
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +000069 /// Mutates data by shuffling bytes.
70 size_t Mutate_ShuffleBytes(uint8_t *Data, size_t Size, size_t MaxSize);
71 /// Mutates data by erasing a byte.
72 size_t Mutate_EraseByte(uint8_t *Data, size_t Size, size_t MaxSize);
73 /// Mutates data by inserting a byte.
74 size_t Mutate_InsertByte(uint8_t *Data, size_t Size, size_t MaxSize);
75 /// Mutates data by chanding one byte.
76 size_t Mutate_ChangeByte(uint8_t *Data, size_t Size, size_t MaxSize);
77 /// Mutates data by chanding one bit.
78 size_t Mutate_ChangeBit(uint8_t *Data, size_t Size, size_t MaxSize);
Kostya Serebryany242ca932015-08-06 19:19:55 +000079
Kostya Serebryany7d211662015-09-04 00:12:11 +000080 /// Mutates data by adding a word from the dictionary.
81 size_t Mutate_AddWordFromDictionary(uint8_t *Data, size_t Size,
82 size_t MaxSize);
83
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +000084 /// Applies one of the above mutations.
85 /// Returns the new size of data which could be up to MaxSize.
86 size_t Mutate(uint8_t *Data, size_t Size, size_t MaxSize);
Kostya Serebryany242ca932015-08-06 19:19:55 +000087
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +000088 /// Creates a cross-over of two pieces of Data, returns its size.
89 size_t CrossOver(const uint8_t *Data1, size_t Size1, const uint8_t *Data2,
90 size_t Size2, uint8_t *Out, size_t MaxOutSize);
Kostya Serebryany242ca932015-08-06 19:19:55 +000091
Kostya Serebryany7d211662015-09-04 00:12:11 +000092 void AddWordToDictionary(const uint8_t *Word, size_t Size);
93
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +000094 private:
95 FuzzerRandomBase &Rand;
Kostya Serebryany7d211662015-09-04 00:12:11 +000096 struct Impl;
97 Impl *MDImpl;
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +000098};
Kostya Serebryany242ca932015-08-06 19:19:55 +000099
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +0000100// For backward compatibility only, deprecated.
101static inline size_t Mutate(uint8_t *Data, size_t Size, size_t MaxSize,
102 FuzzerRandomBase &Rand) {
103 MutationDispatcher MD(Rand);
104 return MD.Mutate(Data, Size, MaxSize);
105}
Kostya Serebryany242ca932015-08-06 19:19:55 +0000106
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +0000107/** An abstract class that allows to use user-supplied mutators with libFuzzer.
108
109Usage:
110
111#\code
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000112#include "FuzzerInterface.h"
113class MyFuzzer : public fuzzer::UserSuppliedFuzzer {
114 public:
Kostya Serebryany404c69f2015-07-24 01:06:40 +0000115 MyFuzzer(fuzzer::FuzzerRandomBase *Rand);
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000116 // Must define the target function.
117 void TargetFunction(...) { ... }
118 // Optionally define the mutator.
119 size_t Mutate(...) { ... }
120 // Optionally define the CrossOver method.
121 size_t CrossOver(...) { ... }
122};
123
124int main(int argc, char **argv) {
125 MyFuzzer F;
126 fuzzer::FuzzerDriver(argc, argv, F);
127}
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +0000128#\endcode
129*/
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000130class UserSuppliedFuzzer {
131 public:
Kostya Serebryany404c69f2015-07-24 01:06:40 +0000132 UserSuppliedFuzzer(); // Deprecated, don't use.
133 UserSuppliedFuzzer(FuzzerRandomBase *Rand);
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +0000134 /// Executes the target function on 'Size' bytes of 'Data'.
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000135 virtual void TargetFunction(const uint8_t *Data, size_t Size) = 0;
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +0000136 /// Mutates 'Size' bytes of data in 'Data' inplace into up to 'MaxSize' bytes,
Kostya Serebryany2ea204e2015-05-30 17:33:13 +0000137 /// returns the new size of the data, which should be positive.
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000138 virtual size_t Mutate(uint8_t *Data, size_t Size, size_t MaxSize) {
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +0000139 return MD.Mutate(Data, Size, MaxSize);
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000140 }
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +0000141 /// Crosses 'Data1' and 'Data2', writes up to 'MaxOutSize' bytes into Out,
Kostya Serebryany2ea204e2015-05-30 17:33:13 +0000142 /// returns the number of bytes written, which should be positive.
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000143 virtual size_t CrossOver(const uint8_t *Data1, size_t Size1,
144 const uint8_t *Data2, size_t Size2,
145 uint8_t *Out, size_t MaxOutSize) {
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +0000146 return MD.CrossOver(Data1, Size1, Data2, Size2, Out, MaxOutSize);
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000147 }
Kostya Serebryany404c69f2015-07-24 01:06:40 +0000148 virtual ~UserSuppliedFuzzer();
149
150 FuzzerRandomBase &GetRand() { return *Rand; }
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000151
Kostya Serebryany7d211662015-09-04 00:12:11 +0000152 MutationDispatcher &GetMD() { return MD; }
153
Kostya Serebryany404c69f2015-07-24 01:06:40 +0000154 private:
155 bool OwnRand = false;
156 FuzzerRandomBase *Rand;
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +0000157 MutationDispatcher MD;
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000158};
159
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +0000160/// Runs the fuzzing with the UserSuppliedFuzzer.
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000161int FuzzerDriver(int argc, char **argv, UserSuppliedFuzzer &USF);
162
Kostya Serebryany016852c2015-02-19 18:45:37 +0000163} // namespace fuzzer
164
165#endif // LLVM_FUZZER_INTERFACE_H