blob: d3843a47d1c2e696c8284b4b5adfacf419ace91b [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:
67 MutationDispatcher(FuzzerRandomBase &Rand) : Rand(Rand) {}
68 /// Mutates data by shuffling bytes.
69 size_t Mutate_ShuffleBytes(uint8_t *Data, size_t Size, size_t MaxSize);
70 /// Mutates data by erasing a byte.
71 size_t Mutate_EraseByte(uint8_t *Data, size_t Size, size_t MaxSize);
72 /// Mutates data by inserting a byte.
73 size_t Mutate_InsertByte(uint8_t *Data, size_t Size, size_t MaxSize);
74 /// Mutates data by chanding one byte.
75 size_t Mutate_ChangeByte(uint8_t *Data, size_t Size, size_t MaxSize);
76 /// Mutates data by chanding one bit.
77 size_t Mutate_ChangeBit(uint8_t *Data, size_t Size, size_t MaxSize);
Kostya Serebryany242ca932015-08-06 19:19:55 +000078
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +000079 /// Applies one of the above mutations.
80 /// Returns the new size of data which could be up to MaxSize.
81 size_t Mutate(uint8_t *Data, size_t Size, size_t MaxSize);
Kostya Serebryany242ca932015-08-06 19:19:55 +000082
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +000083 /// Creates a cross-over of two pieces of Data, returns its size.
84 size_t CrossOver(const uint8_t *Data1, size_t Size1, const uint8_t *Data2,
85 size_t Size2, uint8_t *Out, size_t MaxOutSize);
Kostya Serebryany242ca932015-08-06 19:19:55 +000086
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +000087 private:
88 FuzzerRandomBase &Rand;
89};
Kostya Serebryany242ca932015-08-06 19:19:55 +000090
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +000091// For backward compatibility only, deprecated.
92static inline size_t Mutate(uint8_t *Data, size_t Size, size_t MaxSize,
93 FuzzerRandomBase &Rand) {
94 MutationDispatcher MD(Rand);
95 return MD.Mutate(Data, Size, MaxSize);
96}
Kostya Serebryany242ca932015-08-06 19:19:55 +000097
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +000098/** An abstract class that allows to use user-supplied mutators with libFuzzer.
99
100Usage:
101
102#\code
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000103#include "FuzzerInterface.h"
104class MyFuzzer : public fuzzer::UserSuppliedFuzzer {
105 public:
Kostya Serebryany404c69f2015-07-24 01:06:40 +0000106 MyFuzzer(fuzzer::FuzzerRandomBase *Rand);
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000107 // Must define the target function.
108 void TargetFunction(...) { ... }
109 // Optionally define the mutator.
110 size_t Mutate(...) { ... }
111 // Optionally define the CrossOver method.
112 size_t CrossOver(...) { ... }
113};
114
115int main(int argc, char **argv) {
116 MyFuzzer F;
117 fuzzer::FuzzerDriver(argc, argv, F);
118}
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +0000119#\endcode
120*/
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000121class UserSuppliedFuzzer {
122 public:
Kostya Serebryany404c69f2015-07-24 01:06:40 +0000123 UserSuppliedFuzzer(); // Deprecated, don't use.
124 UserSuppliedFuzzer(FuzzerRandomBase *Rand);
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +0000125 /// Executes the target function on 'Size' bytes of 'Data'.
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000126 virtual void TargetFunction(const uint8_t *Data, size_t Size) = 0;
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +0000127 /// Mutates 'Size' bytes of data in 'Data' inplace into up to 'MaxSize' bytes,
Kostya Serebryany2ea204e2015-05-30 17:33:13 +0000128 /// returns the new size of the data, which should be positive.
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000129 virtual size_t Mutate(uint8_t *Data, size_t Size, size_t MaxSize) {
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +0000130 return MD.Mutate(Data, Size, MaxSize);
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000131 }
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +0000132 /// Crosses 'Data1' and 'Data2', writes up to 'MaxOutSize' bytes into Out,
Kostya Serebryany2ea204e2015-05-30 17:33:13 +0000133 /// returns the number of bytes written, which should be positive.
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000134 virtual size_t CrossOver(const uint8_t *Data1, size_t Size1,
135 const uint8_t *Data2, size_t Size2,
136 uint8_t *Out, size_t MaxOutSize) {
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +0000137 return MD.CrossOver(Data1, Size1, Data2, Size2, Out, MaxOutSize);
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000138 }
Kostya Serebryany404c69f2015-07-24 01:06:40 +0000139 virtual ~UserSuppliedFuzzer();
140
141 FuzzerRandomBase &GetRand() { return *Rand; }
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000142
Kostya Serebryany404c69f2015-07-24 01:06:40 +0000143 private:
144 bool OwnRand = false;
145 FuzzerRandomBase *Rand;
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +0000146 MutationDispatcher MD;
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000147};
148
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +0000149/// Runs the fuzzing with the UserSuppliedFuzzer.
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000150int FuzzerDriver(int argc, char **argv, UserSuppliedFuzzer &USF);
151
Kostya Serebryany016852c2015-02-19 18:45:37 +0000152} // namespace fuzzer
153
154#endif // LLVM_FUZZER_INTERFACE_H