blob: c409c06eca191060644cdfa722a0972f608a72d3 [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>
Kostya Serebryanya938bcb2015-09-10 16:57:57 +000021#include <vector>
22#include <string>
Kostya Serebryany016852c2015-02-19 18:45:37 +000023
24namespace fuzzer {
25
Kostya Serebryany20bb5e72015-10-02 23:34:06 +000026/// Returns an int 0. Values other than zero are reserved for future.
27typedef int (*UserCallback)(const uint8_t *Data, size_t Size);
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +000028/** Simple C-like interface with a single user-supplied callback.
29
30Usage:
31
32#\code
Kostya Serebryanyf3424592015-05-22 22:35:31 +000033#include "FuzzerInterface.h"
34
Kostya Serebryany20bb5e72015-10-02 23:34:06 +000035int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
Kostya Serebryanyf3424592015-05-22 22:35:31 +000036 DoStuffWithData(Data, Size);
Kostya Serebryany20bb5e72015-10-02 23:34:06 +000037 return 0;
Kostya Serebryanyf3424592015-05-22 22:35:31 +000038}
39
40// Implement your own main() or use the one from FuzzerMain.cpp.
41int main(int argc, char **argv) {
42 InitializeMeIfNeeded();
43 return fuzzer::FuzzerDriver(argc, argv, LLVMFuzzerTestOneInput);
44}
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +000045#\endcode
46*/
Kostya Serebryany016852c2015-02-19 18:45:37 +000047int FuzzerDriver(int argc, char **argv, UserCallback Callback);
48
Kostya Serebryany404c69f2015-07-24 01:06:40 +000049class FuzzerRandomBase {
50 public:
51 FuzzerRandomBase(){}
52 virtual ~FuzzerRandomBase(){};
Mike Aizatskya1a5c692015-12-10 20:41:53 +000053 virtual void ResetSeed(unsigned int seed) = 0;
Kostya Serebryany404c69f2015-07-24 01:06:40 +000054 // Return a random number.
55 virtual size_t Rand() = 0;
56 // Return a random number in range [0,n).
Kostya Serebryanybf29ff22015-08-06 01:29:13 +000057 size_t operator()(size_t n) { return n ? Rand() % n : 0; }
Kostya Serebryany404c69f2015-07-24 01:06:40 +000058 bool RandBool() { return Rand() % 2; }
59};
60
61class FuzzerRandomLibc : public FuzzerRandomBase {
62 public:
Mike Aizatskya1a5c692015-12-10 20:41:53 +000063 FuzzerRandomLibc(unsigned int seed) { ResetSeed(seed); }
64 void ResetSeed(unsigned int seed) override;
Kostya Serebryany404c69f2015-07-24 01:06:40 +000065 ~FuzzerRandomLibc() override {}
66 size_t Rand() override;
67};
68
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +000069class MutationDispatcher {
70 public:
Kostya Serebryany7d211662015-09-04 00:12:11 +000071 MutationDispatcher(FuzzerRandomBase &Rand);
72 ~MutationDispatcher();
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +000073 /// Mutates data by shuffling bytes.
74 size_t Mutate_ShuffleBytes(uint8_t *Data, size_t Size, size_t MaxSize);
75 /// Mutates data by erasing a byte.
76 size_t Mutate_EraseByte(uint8_t *Data, size_t Size, size_t MaxSize);
77 /// Mutates data by inserting a byte.
78 size_t Mutate_InsertByte(uint8_t *Data, size_t Size, size_t MaxSize);
79 /// Mutates data by chanding one byte.
80 size_t Mutate_ChangeByte(uint8_t *Data, size_t Size, size_t MaxSize);
81 /// Mutates data by chanding one bit.
82 size_t Mutate_ChangeBit(uint8_t *Data, size_t Size, size_t MaxSize);
Kostya Serebryany242ca932015-08-06 19:19:55 +000083
Kostya Serebryany7d211662015-09-04 00:12:11 +000084 /// Mutates data by adding a word from the dictionary.
85 size_t Mutate_AddWordFromDictionary(uint8_t *Data, size_t Size,
86 size_t MaxSize);
87
Kostya Serebryany25425ad2015-09-08 17:19:31 +000088 size_t Mutate_ChangeASCIIInteger(uint8_t *Data, size_t Size, size_t MaxSize);
89
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +000090 /// Applies one of the above mutations.
91 /// Returns the new size of data which could be up to MaxSize.
92 size_t Mutate(uint8_t *Data, size_t Size, size_t MaxSize);
Kostya Serebryany242ca932015-08-06 19:19:55 +000093
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +000094 /// Creates a cross-over of two pieces of Data, returns its size.
95 size_t CrossOver(const uint8_t *Data1, size_t Size1, const uint8_t *Data2,
96 size_t Size2, uint8_t *Out, size_t MaxOutSize);
Kostya Serebryany242ca932015-08-06 19:19:55 +000097
Kostya Serebryany7d211662015-09-04 00:12:11 +000098 void AddWordToDictionary(const uint8_t *Word, size_t Size);
99
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +0000100 private:
101 FuzzerRandomBase &Rand;
Kostya Serebryany7d211662015-09-04 00:12:11 +0000102 struct Impl;
103 Impl *MDImpl;
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +0000104};
Kostya Serebryany242ca932015-08-06 19:19:55 +0000105
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +0000106// For backward compatibility only, deprecated.
107static inline size_t Mutate(uint8_t *Data, size_t Size, size_t MaxSize,
108 FuzzerRandomBase &Rand) {
109 MutationDispatcher MD(Rand);
110 return MD.Mutate(Data, Size, MaxSize);
111}
Kostya Serebryany242ca932015-08-06 19:19:55 +0000112
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +0000113/** An abstract class that allows to use user-supplied mutators with libFuzzer.
114
115Usage:
116
117#\code
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000118#include "FuzzerInterface.h"
119class MyFuzzer : public fuzzer::UserSuppliedFuzzer {
120 public:
Kostya Serebryany404c69f2015-07-24 01:06:40 +0000121 MyFuzzer(fuzzer::FuzzerRandomBase *Rand);
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000122 // Must define the target function.
Kostya Serebryany20bb5e72015-10-02 23:34:06 +0000123 int TargetFunction(...) { ...; return 0; }
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000124 // Optionally define the mutator.
125 size_t Mutate(...) { ... }
126 // Optionally define the CrossOver method.
127 size_t CrossOver(...) { ... }
128};
129
130int main(int argc, char **argv) {
131 MyFuzzer F;
132 fuzzer::FuzzerDriver(argc, argv, F);
133}
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +0000134#\endcode
135*/
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000136class UserSuppliedFuzzer {
137 public:
Kostya Serebryany404c69f2015-07-24 01:06:40 +0000138 UserSuppliedFuzzer(FuzzerRandomBase *Rand);
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +0000139 /// Executes the target function on 'Size' bytes of 'Data'.
Kostya Serebryany20bb5e72015-10-02 23:34:06 +0000140 virtual int TargetFunction(const uint8_t *Data, size_t Size) = 0;
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +0000141 /// Mutates 'Size' bytes of data in 'Data' inplace into up to 'MaxSize' bytes,
Kostya Serebryany2ea204e2015-05-30 17:33:13 +0000142 /// returns the new size of the data, which should be positive.
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000143 virtual size_t Mutate(uint8_t *Data, size_t Size, size_t MaxSize) {
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +0000144 return MD.Mutate(Data, Size, MaxSize);
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000145 }
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +0000146 /// Crosses 'Data1' and 'Data2', writes up to 'MaxOutSize' bytes into Out,
Kostya Serebryany2ea204e2015-05-30 17:33:13 +0000147 /// returns the number of bytes written, which should be positive.
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000148 virtual size_t CrossOver(const uint8_t *Data1, size_t Size1,
149 const uint8_t *Data2, size_t Size2,
150 uint8_t *Out, size_t MaxOutSize) {
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +0000151 return MD.CrossOver(Data1, Size1, Data2, Size2, Out, MaxOutSize);
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000152 }
Kostya Serebryany404c69f2015-07-24 01:06:40 +0000153 virtual ~UserSuppliedFuzzer();
154
155 FuzzerRandomBase &GetRand() { return *Rand; }
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000156
Kostya Serebryany7d211662015-09-04 00:12:11 +0000157 MutationDispatcher &GetMD() { return MD; }
158
Kostya Serebryany404c69f2015-07-24 01:06:40 +0000159 private:
160 bool OwnRand = false;
161 FuzzerRandomBase *Rand;
Kostya Serebryanyec2dcb12015-09-03 21:24:19 +0000162 MutationDispatcher MD;
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000163};
164
Kostya Serebryanye0d60ba2015-05-23 02:12:05 +0000165/// Runs the fuzzing with the UserSuppliedFuzzer.
Kostya Serebryanyf3424592015-05-22 22:35:31 +0000166int FuzzerDriver(int argc, char **argv, UserSuppliedFuzzer &USF);
167
Kostya Serebryanya938bcb2015-09-10 16:57:57 +0000168/// More C++-ish interface.
169int FuzzerDriver(const std::vector<std::string> &Args, UserSuppliedFuzzer &USF);
170int FuzzerDriver(const std::vector<std::string> &Args, UserCallback Callback);
171
Kostya Serebryany016852c2015-02-19 18:45:37 +0000172} // namespace fuzzer
173
174#endif // LLVM_FUZZER_INTERFACE_H