1 //===- FuzzerDriver.cpp - FuzzerDriver function and flags -----------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
9 // FuzzerDriver and flag parsing.
10 //===----------------------------------------------------------------------===//
12 #include "FuzzerInterface.h"
13 #include "FuzzerInternal.h"
29 struct FlagDescription {
31 const char *Description;
38 #define FUZZER_FLAG_INT(Name, Default, Description) int Name;
39 #define FUZZER_FLAG_STRING(Name, Description) const char *Name;
40 #include "FuzzerFlags.def"
41 #undef FUZZER_FLAG_INT
42 #undef FUZZER_FLAG_STRING
45 static FlagDescription FlagDescriptions [] {
46 #define FUZZER_FLAG_INT(Name, Default, Description) \
47 { #Name, Description, Default, &Flags.Name, nullptr},
48 #define FUZZER_FLAG_STRING(Name, Description) \
49 { #Name, Description, 0, nullptr, &Flags.Name },
50 #include "FuzzerFlags.def"
51 #undef FUZZER_FLAG_INT
52 #undef FUZZER_FLAG_STRING
55 static const size_t kNumFlags =
56 sizeof(FlagDescriptions) / sizeof(FlagDescriptions[0]);
58 static std::vector<std::string> inputs;
59 static const char *ProgName;
61 static void PrintHelp() {
62 Printf("Usage: %s [-flag1=val1 [-flag2=val2 ...] ] [dir1 [dir2 ...] ]\n",
64 Printf("\nFlags: (strictly in form -flag=value)\n");
65 size_t MaxFlagLen = 0;
66 for (size_t F = 0; F < kNumFlags; F++)
67 MaxFlagLen = std::max(strlen(FlagDescriptions[F].Name), MaxFlagLen);
69 for (size_t F = 0; F < kNumFlags; F++) {
70 const auto &D = FlagDescriptions[F];
71 Printf(" %s", D.Name);
72 for (size_t i = 0, n = MaxFlagLen - strlen(D.Name); i < n; i++)
75 Printf("%d\t%s\n", D.Default, D.Description);
77 Printf("\nFlags starting with '--' will be ignored and "
78 "will be passed verbatim to subprocesses.\n");
81 static const char *FlagValue(const char *Param, const char *Name) {
82 size_t Len = strlen(Name);
83 if (Param[0] == '-' && strstr(Param + 1, Name) == Param + 1 &&
84 Param[Len + 1] == '=')
85 return &Param[Len + 2];
89 static bool ParseOneFlag(const char *Param) {
90 if (Param[0] != '-') return false;
91 if (Param[1] == '-') {
92 static bool PrintedWarning = false;
93 if (!PrintedWarning) {
94 PrintedWarning = true;
95 Printf("WARNING: libFuzzer ignores flags that start with '--'\n");
99 for (size_t F = 0; F < kNumFlags; F++) {
100 const char *Name = FlagDescriptions[F].Name;
101 const char *Str = FlagValue(Param, Name);
103 if (FlagDescriptions[F].IntFlag) {
104 int Val = std::stol(Str);
105 *FlagDescriptions[F].IntFlag = Val;
106 if (Flags.verbosity >= 2)
107 Printf("Flag: %s %d\n", Name, Val);;
109 } else if (FlagDescriptions[F].StrFlag) {
110 *FlagDescriptions[F].StrFlag = Str;
111 if (Flags.verbosity >= 2)
112 Printf("Flag: %s %s\n", Name, Str);
121 // We don't use any library to minimize dependencies.
122 static void ParseFlags(int argc, char **argv) {
123 for (size_t F = 0; F < kNumFlags; F++) {
124 if (FlagDescriptions[F].IntFlag)
125 *FlagDescriptions[F].IntFlag = FlagDescriptions[F].Default;
126 if (FlagDescriptions[F].StrFlag)
127 *FlagDescriptions[F].StrFlag = nullptr;
129 for (int A = 1; A < argc; A++) {
130 if (ParseOneFlag(argv[A])) continue;
131 inputs.push_back(argv[A]);
135 static std::mutex Mu;
137 static void PulseThread() {
139 std::this_thread::sleep_for(std::chrono::seconds(600));
140 std::lock_guard<std::mutex> Lock(Mu);
141 Printf("pulse...\n");
145 static void WorkerThread(const std::string &Cmd, std::atomic<int> *Counter,
146 int NumJobs, std::atomic<bool> *HasErrors) {
148 int C = (*Counter)++;
149 if (C >= NumJobs) break;
150 std::string Log = "fuzz-" + std::to_string(C) + ".log";
151 std::string ToRun = Cmd + " > " + Log + " 2>&1\n";
153 Printf("%s", ToRun.c_str());
154 int ExitCode = system(ToRun.c_str());
157 std::lock_guard<std::mutex> Lock(Mu);
158 Printf("================== Job %d exited with exit code %d ============\n",
160 fuzzer::CopyFileToErr(Log);
164 static int RunInMultipleProcesses(int argc, char **argv, int NumWorkers,
166 std::atomic<int> Counter(0);
167 std::atomic<bool> HasErrors(false);
169 for (int i = 0; i < argc; i++) {
170 if (FlagValue(argv[i], "jobs") || FlagValue(argv[i], "workers")) continue;
174 std::vector<std::thread> V;
175 std::thread Pulse(PulseThread);
177 for (int i = 0; i < NumWorkers; i++)
178 V.push_back(std::thread(WorkerThread, Cmd, &Counter, NumJobs, &HasErrors));
181 return HasErrors ? 1 : 0;
184 std::vector<std::string> ReadTokensFile(const char *TokensFilePath) {
185 if (!TokensFilePath) return {};
186 std::string TokensFileContents = FileToString(TokensFilePath);
187 std::istringstream ISS(TokensFileContents);
188 std::vector<std::string> Res = {std::istream_iterator<std::string>{ISS},
189 std::istream_iterator<std::string>{}};
196 int ApplyTokens(const Fuzzer &F, const char *InputFilePath) {
197 Unit U = FileToVector(InputFilePath);
198 auto T = F.SubstituteTokens(U);
200 Printf("%s", T.data());
204 int FuzzerDriver(int argc, char **argv, UserCallback Callback) {
205 SimpleUserSuppliedFuzzer SUSF(Callback);
206 return FuzzerDriver(argc, argv, SUSF);
209 int FuzzerDriver(int argc, char **argv, UserSuppliedFuzzer &USF) {
210 using namespace fuzzer;
213 ParseFlags(argc, argv);
219 if (Flags.jobs > 0 && Flags.workers == 0) {
220 Flags.workers = std::min(NumberOfCpuCores() / 2, Flags.jobs);
221 if (Flags.workers > 1)
222 Printf("Running %d workers\n", Flags.workers);
225 if (Flags.workers > 0 && Flags.jobs > 0)
226 return RunInMultipleProcesses(argc, argv, Flags.workers, Flags.jobs);
228 Fuzzer::FuzzingOptions Options;
229 Options.Verbosity = Flags.verbosity;
230 Options.MaxLen = Flags.max_len;
231 Options.UnitTimeoutSec = Flags.timeout;
232 Options.DoCrossOver = Flags.cross_over;
233 Options.MutateDepth = Flags.mutate_depth;
234 Options.ExitOnFirst = Flags.exit_on_first;
235 Options.UseCounters = Flags.use_counters;
236 Options.UseTraces = Flags.use_traces;
237 Options.UseFullCoverageSet = Flags.use_full_coverage_set;
238 Options.PreferSmallDuringInitialShuffle =
239 Flags.prefer_small_during_initial_shuffle;
240 Options.Tokens = ReadTokensFile(Flags.tokens);
241 Options.Reload = Flags.reload;
243 Options.MaxNumberOfRuns = Flags.runs;
245 Options.OutputCorpus = inputs[0];
246 if (Flags.sync_command)
247 Options.SyncCommand = Flags.sync_command;
248 Options.SyncTimeout = Flags.sync_timeout;
249 Fuzzer F(USF, Options);
251 if (Flags.apply_tokens)
252 return ApplyTokens(F, Flags.apply_tokens);
254 unsigned Seed = Flags.seed;
257 Seed = time(0) * 10000 + getpid();
259 Printf("Seed: %u\n", Seed);
263 if (Flags.timeout > 0)
264 SetTimer(Flags.timeout / 2 + 1);
266 if (Flags.verbosity >= 2) {
268 for (auto &T : Options.Tokens)
269 Printf("%s,", T.c_str());
273 F.RereadOutputCorpus();
274 for (auto &inp : inputs)
275 if (inp != Options.OutputCorpus)
276 F.ReadDir(inp, nullptr);
278 if (F.CorpusSize() == 0)
279 F.AddToCorpus(Unit()); // Can't fuzz empty corpus, so add an empty input.
280 F.ShuffleAndMinimize();
281 if (Flags.save_minimized_corpus)
283 F.Loop(Flags.iterations < 0 ? INT_MAX : Flags.iterations);
285 Printf("Done %d runs in %zd second(s)\n", F.getTotalNumberOfRuns(),
286 F.secondsSinceProcessStartUp());
291 } // namespace fuzzer