2015-01-30 00:58:29 +08:00
|
|
|
//===- FuzzerLoop.cpp - Fuzzer's main loop --------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Fuzzer's main loop.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "FuzzerInternal.h"
|
2015-02-04 03:42:05 +08:00
|
|
|
#include <sanitizer/coverage_interface.h>
|
2015-01-30 00:58:29 +08:00
|
|
|
#include <algorithm>
|
|
|
|
|
2015-10-17 07:04:31 +08:00
|
|
|
extern "C" {
|
|
|
|
__attribute__((weak)) void __sanitizer_print_stack_trace();
|
|
|
|
}
|
|
|
|
|
2015-01-30 00:58:29 +08:00
|
|
|
namespace fuzzer {
|
2015-10-17 06:47:20 +08:00
|
|
|
static const size_t kMaxUnitSizeToPrint = 256;
|
2015-01-30 00:58:29 +08:00
|
|
|
|
2015-04-01 04:13:20 +08:00
|
|
|
// Only one Fuzzer per process.
|
|
|
|
static Fuzzer *F;
|
|
|
|
|
2015-05-23 06:35:31 +08:00
|
|
|
Fuzzer::Fuzzer(UserSuppliedFuzzer &USF, FuzzingOptions Options)
|
|
|
|
: USF(USF), Options(Options) {
|
2015-04-01 04:13:20 +08:00
|
|
|
SetDeathCallback();
|
2015-05-12 05:16:27 +08:00
|
|
|
InitializeTraceState();
|
2015-04-01 04:13:20 +08:00
|
|
|
assert(!F);
|
|
|
|
F = this;
|
|
|
|
}
|
2015-01-30 00:58:29 +08:00
|
|
|
|
|
|
|
void Fuzzer::SetDeathCallback() {
|
2015-04-01 04:13:20 +08:00
|
|
|
__sanitizer_set_death_callback(StaticDeathCallback);
|
|
|
|
}
|
|
|
|
|
2015-10-23 05:48:09 +08:00
|
|
|
void Fuzzer::PrintUnitInASCII(const Unit &U, const char *PrintAfter) {
|
|
|
|
PrintASCII(U, PrintAfter);
|
2015-04-01 04:13:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Fuzzer::StaticDeathCallback() {
|
|
|
|
assert(F);
|
|
|
|
F->DeathCallback();
|
2015-01-30 00:58:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Fuzzer::DeathCallback() {
|
2015-05-23 09:22:35 +08:00
|
|
|
Printf("DEATH:\n");
|
2015-10-09 12:03:14 +08:00
|
|
|
if (CurrentUnit.size() <= kMaxUnitSizeToPrint) {
|
|
|
|
Print(CurrentUnit, "\n");
|
2015-10-23 05:48:09 +08:00
|
|
|
PrintUnitInASCII(CurrentUnit, "\n");
|
2015-10-09 12:03:14 +08:00
|
|
|
}
|
2015-07-24 02:37:22 +08:00
|
|
|
WriteUnitToFileWithPrefix(CurrentUnit, "crash-");
|
2015-01-30 00:58:29 +08:00
|
|
|
}
|
|
|
|
|
2015-04-01 04:13:20 +08:00
|
|
|
void Fuzzer::StaticAlarmCallback() {
|
|
|
|
assert(F);
|
|
|
|
F->AlarmCallback();
|
|
|
|
}
|
|
|
|
|
2015-01-30 00:58:29 +08:00
|
|
|
void Fuzzer::AlarmCallback() {
|
2015-05-20 06:12:57 +08:00
|
|
|
assert(Options.UnitTimeoutSec > 0);
|
2015-01-30 00:58:29 +08:00
|
|
|
size_t Seconds =
|
|
|
|
duration_cast<seconds>(system_clock::now() - UnitStartTime).count();
|
2015-05-20 06:12:57 +08:00
|
|
|
if (Seconds == 0) return;
|
|
|
|
if (Options.Verbosity >= 2)
|
2015-05-23 09:22:35 +08:00
|
|
|
Printf("AlarmCallback %zd\n", Seconds);
|
2015-05-20 06:12:57 +08:00
|
|
|
if (Seconds >= (size_t)Options.UnitTimeoutSec) {
|
2015-05-23 09:22:35 +08:00
|
|
|
Printf("ALARM: working on the last Unit for %zd seconds\n", Seconds);
|
2015-05-27 04:57:47 +08:00
|
|
|
Printf(" and the timeout value is %d (use -timeout=N to change)\n",
|
|
|
|
Options.UnitTimeoutSec);
|
2015-10-09 12:03:14 +08:00
|
|
|
if (CurrentUnit.size() <= kMaxUnitSizeToPrint) {
|
2015-08-01 06:07:17 +08:00
|
|
|
Print(CurrentUnit, "\n");
|
2015-10-23 05:48:09 +08:00
|
|
|
PrintUnitInASCII(CurrentUnit, "\n");
|
2015-10-09 12:03:14 +08:00
|
|
|
}
|
2015-07-24 02:37:22 +08:00
|
|
|
WriteUnitToFileWithPrefix(CurrentUnit, "timeout-");
|
2015-10-17 07:04:31 +08:00
|
|
|
Printf("==%d== ERROR: libFuzzer: timeout after %d seconds\n", GetPid(),
|
|
|
|
Seconds);
|
|
|
|
if (__sanitizer_print_stack_trace)
|
|
|
|
__sanitizer_print_stack_trace();
|
|
|
|
Printf("SUMMARY: libFuzzer: timeout\n");
|
2015-05-20 06:12:57 +08:00
|
|
|
exit(1);
|
2015-01-30 00:58:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-31 06:44:03 +08:00
|
|
|
void Fuzzer::PrintStats(const char *Where, size_t Cov, const char *End) {
|
|
|
|
if (!Options.Verbosity) return;
|
|
|
|
size_t Seconds = secondsSinceProcessStartUp();
|
|
|
|
size_t ExecPerSec = (Seconds ? TotalNumberOfRuns / Seconds : 0);
|
2015-10-23 06:50:47 +08:00
|
|
|
Printf("#%zd\t%s", TotalNumberOfRuns, Where);
|
|
|
|
Printf(" cov: %zd", Cov);
|
|
|
|
if (auto TB = TotalBits())
|
|
|
|
Printf(" bits: %zd", TB);
|
|
|
|
Printf(" units: %zd exec/s: %zd", Corpus.size(), ExecPerSec);
|
2015-08-12 09:55:37 +08:00
|
|
|
if (TotalNumberOfExecutedTraceBasedMutations)
|
|
|
|
Printf(" tbm: %zd", TotalNumberOfExecutedTraceBasedMutations);
|
|
|
|
Printf("%s", End);
|
2015-03-31 06:44:03 +08:00
|
|
|
}
|
|
|
|
|
2015-05-09 05:30:55 +08:00
|
|
|
void Fuzzer::RereadOutputCorpus() {
|
|
|
|
if (Options.OutputCorpus.empty()) return;
|
|
|
|
std::vector<Unit> AdditionalCorpus;
|
|
|
|
ReadDirToVectorOfUnits(Options.OutputCorpus.c_str(), &AdditionalCorpus,
|
|
|
|
&EpochOfLastReadOfOutputCorpus);
|
|
|
|
if (Corpus.empty()) {
|
|
|
|
Corpus = AdditionalCorpus;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!Options.Reload) return;
|
2015-05-20 06:12:57 +08:00
|
|
|
if (Options.Verbosity >= 2)
|
2015-05-23 09:22:35 +08:00
|
|
|
Printf("Reload: read %zd new units.\n", AdditionalCorpus.size());
|
2015-05-09 05:30:55 +08:00
|
|
|
for (auto &X : AdditionalCorpus) {
|
|
|
|
if (X.size() > (size_t)Options.MaxLen)
|
|
|
|
X.resize(Options.MaxLen);
|
2015-05-19 09:06:07 +08:00
|
|
|
if (UnitHashesAddedToCorpus.insert(Hash(X)).second) {
|
2015-05-09 05:30:55 +08:00
|
|
|
CurrentUnit.clear();
|
|
|
|
CurrentUnit.insert(CurrentUnit.begin(), X.begin(), X.end());
|
2015-10-23 06:50:47 +08:00
|
|
|
if (RunOne(CurrentUnit)) {
|
2015-05-19 09:06:07 +08:00
|
|
|
Corpus.push_back(X);
|
|
|
|
if (Options.Verbosity >= 1)
|
2015-10-23 06:50:47 +08:00
|
|
|
PrintStats("RELOAD", LastRecordedBlockCoverage);
|
2015-05-19 09:06:07 +08:00
|
|
|
}
|
2015-05-09 05:30:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-30 00:58:29 +08:00
|
|
|
void Fuzzer::ShuffleAndMinimize() {
|
2015-07-24 09:06:40 +08:00
|
|
|
bool PreferSmall = (Options.PreferSmallDuringInitialShuffle == 1 ||
|
|
|
|
(Options.PreferSmallDuringInitialShuffle == -1 &&
|
|
|
|
USF.GetRand().RandBool()));
|
2015-01-30 00:58:29 +08:00
|
|
|
if (Options.Verbosity)
|
2015-05-23 09:22:35 +08:00
|
|
|
Printf("PreferSmall: %d\n", PreferSmall);
|
2015-03-31 06:44:03 +08:00
|
|
|
PrintStats("READ ", 0);
|
2015-01-30 00:58:29 +08:00
|
|
|
std::vector<Unit> NewCorpus;
|
2015-10-17 12:38:26 +08:00
|
|
|
if (Options.ShuffleAtStartUp) {
|
|
|
|
std::random_shuffle(Corpus.begin(), Corpus.end(), USF.GetRand());
|
|
|
|
if (PreferSmall)
|
|
|
|
std::stable_sort(
|
|
|
|
Corpus.begin(), Corpus.end(),
|
|
|
|
[](const Unit &A, const Unit &B) { return A.size() < B.size(); });
|
|
|
|
}
|
2015-01-30 00:58:29 +08:00
|
|
|
Unit &U = CurrentUnit;
|
|
|
|
for (const auto &C : Corpus) {
|
|
|
|
for (size_t First = 0; First < 1; First++) {
|
|
|
|
U.clear();
|
|
|
|
size_t Last = std::min(First + Options.MaxLen, C.size());
|
|
|
|
U.insert(U.begin(), C.begin() + First, C.begin() + Last);
|
2015-09-03 03:08:08 +08:00
|
|
|
if (Options.OnlyASCII)
|
|
|
|
ToASCII(U);
|
2015-10-23 06:50:47 +08:00
|
|
|
if (RunOne(U)) {
|
2015-01-30 00:58:29 +08:00
|
|
|
NewCorpus.push_back(U);
|
|
|
|
if (Options.Verbosity >= 2)
|
2015-10-23 06:50:47 +08:00
|
|
|
Printf("NEW0: %zd L %zd\n", LastRecordedBlockCoverage, U.size());
|
2015-01-30 00:58:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Corpus = NewCorpus;
|
2015-05-19 09:06:07 +08:00
|
|
|
for (auto &X : Corpus)
|
|
|
|
UnitHashesAddedToCorpus.insert(Hash(X));
|
2015-10-23 06:50:47 +08:00
|
|
|
PrintStats("INITED", LastRecordedBlockCoverage);
|
2015-01-30 00:58:29 +08:00
|
|
|
}
|
|
|
|
|
2015-10-23 06:50:47 +08:00
|
|
|
bool Fuzzer::RunOne(const Unit &U) {
|
2015-01-30 00:58:29 +08:00
|
|
|
UnitStartTime = system_clock::now();
|
|
|
|
TotalNumberOfRuns++;
|
2015-10-23 06:50:47 +08:00
|
|
|
|
|
|
|
PrepareCoverageBeforeRun();
|
|
|
|
ExecuteCallback(U);
|
|
|
|
bool Res = CheckCoverageAfterRun();
|
|
|
|
|
2015-03-31 07:04:35 +08:00
|
|
|
auto UnitStopTime = system_clock::now();
|
|
|
|
auto TimeOfUnit =
|
|
|
|
duration_cast<seconds>(UnitStopTime - UnitStartTime).count();
|
2015-10-23 06:50:47 +08:00
|
|
|
if (!(TotalNumberOfRuns & (TotalNumberOfRuns - 1)) && Options.Verbosity)
|
|
|
|
PrintStats("pulse ", LastRecordedBlockCoverage);
|
2015-08-06 05:43:48 +08:00
|
|
|
if (TimeOfUnit > TimeOfLongestUnitInSeconds &&
|
|
|
|
TimeOfUnit >= Options.ReportSlowUnits) {
|
2015-03-31 07:04:35 +08:00
|
|
|
TimeOfLongestUnitInSeconds = TimeOfUnit;
|
2015-08-06 05:43:48 +08:00
|
|
|
Printf("Slowest unit: %zd s:\n", TimeOfLongestUnitInSeconds);
|
|
|
|
WriteUnitToFileWithPrefix(U, "slow-unit-");
|
2015-03-31 07:04:35 +08:00
|
|
|
}
|
|
|
|
return Res;
|
2015-01-30 07:01:07 +08:00
|
|
|
}
|
|
|
|
|
2015-08-11 09:44:42 +08:00
|
|
|
void Fuzzer::RunOneAndUpdateCorpus(Unit &U) {
|
2015-05-08 02:32:29 +08:00
|
|
|
if (TotalNumberOfRuns >= Options.MaxNumberOfRuns)
|
|
|
|
return;
|
2015-08-11 09:44:42 +08:00
|
|
|
if (Options.OnlyASCII)
|
|
|
|
ToASCII(U);
|
2015-10-23 06:50:47 +08:00
|
|
|
if (RunOne(U))
|
|
|
|
ReportNewCoverage(U);
|
2015-05-08 02:32:29 +08:00
|
|
|
}
|
|
|
|
|
2015-04-01 04:13:20 +08:00
|
|
|
void Fuzzer::ExecuteCallback(const Unit &U) {
|
2015-10-23 05:48:09 +08:00
|
|
|
int Res = USF.TargetFunction(U.data(), U.size());
|
|
|
|
(void)Res;
|
2015-10-03 07:34:06 +08:00
|
|
|
assert(Res == 0);
|
2015-04-01 04:13:20 +08:00
|
|
|
}
|
|
|
|
|
2015-10-23 06:50:47 +08:00
|
|
|
size_t Fuzzer::RecordBlockCoverage() {
|
|
|
|
return LastRecordedBlockCoverage = __sanitizer_get_total_unique_coverage();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Fuzzer::PrepareCoverageBeforeRun() {
|
[sanitizer/coverage] Add AFL-style coverage counters (search heuristic for fuzzing).
Introduce -mllvm -sanitizer-coverage-8bit-counters=1
which adds imprecise thread-unfriendly 8-bit coverage counters.
The run-time library maps these 8-bit counters to 8-bit bitsets in the same way
AFL (http://lcamtuf.coredump.cx/afl/technical_details.txt) does:
counter values are divided into 8 ranges and based on the counter
value one of the bits in the bitset is set.
The AFL ranges are used here: 1, 2, 3, 4-7, 8-15, 16-31, 32-127, 128+.
These counters provide a search heuristic for single-threaded
coverage-guided fuzzers, we do not expect them to be useful for other purposes.
Depending on the value of -fsanitize-coverage=[123] flag,
these counters will be added to the function entry blocks (=1),
every basic block (=2), or every edge (=3).
Use these counters as an optional search heuristic in the Fuzzer library.
Add a test where this heuristic is critical.
llvm-svn: 231166
2015-03-04 07:27:02 +08:00
|
|
|
if (Options.UseCounters) {
|
2015-10-23 06:50:47 +08:00
|
|
|
size_t NumCounters = __sanitizer_get_number_of_counters();
|
[sanitizer/coverage] Add AFL-style coverage counters (search heuristic for fuzzing).
Introduce -mllvm -sanitizer-coverage-8bit-counters=1
which adds imprecise thread-unfriendly 8-bit coverage counters.
The run-time library maps these 8-bit counters to 8-bit bitsets in the same way
AFL (http://lcamtuf.coredump.cx/afl/technical_details.txt) does:
counter values are divided into 8 ranges and based on the counter
value one of the bits in the bitset is set.
The AFL ranges are used here: 1, 2, 3, 4-7, 8-15, 16-31, 32-127, 128+.
These counters provide a search heuristic for single-threaded
coverage-guided fuzzers, we do not expect them to be useful for other purposes.
Depending on the value of -fsanitize-coverage=[123] flag,
these counters will be added to the function entry blocks (=1),
every basic block (=2), or every edge (=3).
Use these counters as an optional search heuristic in the Fuzzer library.
Add a test where this heuristic is critical.
llvm-svn: 231166
2015-03-04 07:27:02 +08:00
|
|
|
CounterBitmap.resize(NumCounters);
|
|
|
|
__sanitizer_update_counter_bitset_and_clear_counters(0);
|
|
|
|
}
|
2015-10-23 06:50:47 +08:00
|
|
|
RecordBlockCoverage();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Fuzzer::CheckCoverageAfterRun() {
|
|
|
|
size_t OldCoverage = LastRecordedBlockCoverage;
|
|
|
|
size_t NewCoverage = RecordBlockCoverage();
|
[sanitizer/coverage] Add AFL-style coverage counters (search heuristic for fuzzing).
Introduce -mllvm -sanitizer-coverage-8bit-counters=1
which adds imprecise thread-unfriendly 8-bit coverage counters.
The run-time library maps these 8-bit counters to 8-bit bitsets in the same way
AFL (http://lcamtuf.coredump.cx/afl/technical_details.txt) does:
counter values are divided into 8 ranges and based on the counter
value one of the bits in the bitset is set.
The AFL ranges are used here: 1, 2, 3, 4-7, 8-15, 16-31, 32-127, 128+.
These counters provide a search heuristic for single-threaded
coverage-guided fuzzers, we do not expect them to be useful for other purposes.
Depending on the value of -fsanitize-coverage=[123] flag,
these counters will be added to the function entry blocks (=1),
every basic block (=2), or every edge (=3).
Use these counters as an optional search heuristic in the Fuzzer library.
Add a test where this heuristic is critical.
llvm-svn: 231166
2015-03-04 07:27:02 +08:00
|
|
|
size_t NumNewBits = 0;
|
|
|
|
if (Options.UseCounters)
|
|
|
|
NumNewBits = __sanitizer_update_counter_bitset_and_clear_counters(
|
|
|
|
CounterBitmap.data());
|
2015-10-23 06:50:47 +08:00
|
|
|
return NewCoverage > OldCoverage || NumNewBits;
|
2015-01-30 00:58:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Fuzzer::WriteToOutputCorpus(const Unit &U) {
|
|
|
|
if (Options.OutputCorpus.empty()) return;
|
|
|
|
std::string Path = DirPlusFile(Options.OutputCorpus, Hash(U));
|
|
|
|
WriteToFile(U, Path);
|
|
|
|
if (Options.Verbosity >= 2)
|
2015-05-23 09:22:35 +08:00
|
|
|
Printf("Written to %s\n", Path.c_str());
|
2015-09-03 03:08:08 +08:00
|
|
|
assert(!Options.OnlyASCII || IsASCII(U));
|
2015-01-30 00:58:29 +08:00
|
|
|
}
|
|
|
|
|
2015-07-24 02:37:22 +08:00
|
|
|
void Fuzzer::WriteUnitToFileWithPrefix(const Unit &U, const char *Prefix) {
|
2015-10-17 06:41:47 +08:00
|
|
|
if (!Options.SaveArtifacts)
|
|
|
|
return;
|
2015-10-09 11:57:59 +08:00
|
|
|
std::string Path = Options.ArtifactPrefix + Prefix + Hash(U);
|
2015-01-30 00:58:29 +08:00
|
|
|
WriteToFile(U, Path);
|
2015-10-09 11:57:59 +08:00
|
|
|
Printf("artifact_prefix='%s'; Test unit written to %s\n",
|
|
|
|
Options.ArtifactPrefix.c_str(), Path.c_str());
|
2015-08-01 06:07:17 +08:00
|
|
|
if (U.size() <= kMaxUnitSizeToPrint) {
|
|
|
|
Printf("Base64: ");
|
|
|
|
PrintFileAsBase64(Path);
|
|
|
|
}
|
2015-01-30 00:58:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Fuzzer::SaveCorpus() {
|
|
|
|
if (Options.OutputCorpus.empty()) return;
|
|
|
|
for (const auto &U : Corpus)
|
|
|
|
WriteToFile(U, DirPlusFile(Options.OutputCorpus, Hash(U)));
|
|
|
|
if (Options.Verbosity)
|
2015-05-23 09:22:35 +08:00
|
|
|
Printf("Written corpus of %zd files to %s\n", Corpus.size(),
|
|
|
|
Options.OutputCorpus.c_str());
|
2015-01-30 00:58:29 +08:00
|
|
|
}
|
|
|
|
|
2015-10-23 06:50:47 +08:00
|
|
|
void Fuzzer::ReportNewCoverage(const Unit &U) {
|
2015-05-08 02:32:29 +08:00
|
|
|
Corpus.push_back(U);
|
2015-05-19 09:06:07 +08:00
|
|
|
UnitHashesAddedToCorpus.insert(Hash(U));
|
2015-10-23 06:50:47 +08:00
|
|
|
PrintStats("NEW ", LastRecordedBlockCoverage, "");
|
2015-05-08 02:32:29 +08:00
|
|
|
if (Options.Verbosity) {
|
2015-05-23 09:22:35 +08:00
|
|
|
Printf(" L: %zd", U.size());
|
2015-05-08 02:32:29 +08:00
|
|
|
if (U.size() < 30) {
|
2015-05-23 09:22:35 +08:00
|
|
|
Printf(" ");
|
2015-10-23 05:48:09 +08:00
|
|
|
PrintUnitInASCII(U, "\t");
|
2015-05-08 02:32:29 +08:00
|
|
|
Print(U);
|
|
|
|
}
|
2015-05-23 09:22:35 +08:00
|
|
|
Printf("\n");
|
2015-05-08 02:32:29 +08:00
|
|
|
}
|
|
|
|
WriteToOutputCorpus(U);
|
|
|
|
if (Options.ExitOnFirst)
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Fuzzer::MutateAndTestOne(Unit *U) {
|
2015-02-05 03:10:20 +08:00
|
|
|
for (int i = 0; i < Options.MutateDepth; i++) {
|
2015-05-08 05:02:11 +08:00
|
|
|
StartTraceRecording();
|
2015-05-23 06:35:31 +08:00
|
|
|
size_t Size = U->size();
|
|
|
|
U->resize(Options.MaxLen);
|
|
|
|
size_t NewSize = USF.Mutate(U->data(), Size, U->size());
|
2015-05-31 01:33:13 +08:00
|
|
|
assert(NewSize > 0 && "Mutator returned empty unit");
|
|
|
|
assert(NewSize <= (size_t)Options.MaxLen &&
|
|
|
|
"Mutator return overisized unit");
|
2015-05-23 06:35:31 +08:00
|
|
|
U->resize(NewSize);
|
2015-05-08 02:32:29 +08:00
|
|
|
RunOneAndUpdateCorpus(*U);
|
2015-05-08 05:02:11 +08:00
|
|
|
size_t NumTraceBasedMutations = StopTraceRecording();
|
2015-08-12 09:55:37 +08:00
|
|
|
size_t TBMWidth =
|
|
|
|
std::min((size_t)Options.TBMWidth, NumTraceBasedMutations);
|
|
|
|
size_t TBMDepth =
|
|
|
|
std::min((size_t)Options.TBMDepth, NumTraceBasedMutations);
|
|
|
|
Unit BackUp = *U;
|
|
|
|
for (size_t w = 0; w < TBMWidth; w++) {
|
|
|
|
*U = BackUp;
|
|
|
|
for (size_t d = 0; d < TBMDepth; d++) {
|
|
|
|
TotalNumberOfExecutedTraceBasedMutations++;
|
|
|
|
ApplyTraceBasedMutation(USF.GetRand()(NumTraceBasedMutations), U);
|
|
|
|
RunOneAndUpdateCorpus(*U);
|
|
|
|
}
|
2015-05-08 05:02:11 +08:00
|
|
|
}
|
2015-01-30 00:58:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-09 01:30:35 +08:00
|
|
|
void Fuzzer::Loop() {
|
2015-09-04 08:12:11 +08:00
|
|
|
for (auto &U: Options.Dictionary)
|
|
|
|
USF.GetMD().AddWordToDictionary(U.data(), U.size());
|
|
|
|
|
2015-09-09 01:30:35 +08:00
|
|
|
while (true) {
|
2015-02-05 06:20:09 +08:00
|
|
|
for (size_t J1 = 0; J1 < Corpus.size(); J1++) {
|
2015-05-19 05:34:20 +08:00
|
|
|
SyncCorpus();
|
2015-05-09 05:30:55 +08:00
|
|
|
RereadOutputCorpus();
|
2015-02-05 06:20:09 +08:00
|
|
|
if (TotalNumberOfRuns >= Options.MaxNumberOfRuns)
|
2015-05-08 02:32:29 +08:00
|
|
|
return;
|
2015-10-03 04:47:55 +08:00
|
|
|
if (Options.MaxTotalTimeSec > 0 &&
|
|
|
|
secondsSinceProcessStartUp() >
|
|
|
|
static_cast<size_t>(Options.MaxTotalTimeSec))
|
|
|
|
return;
|
2015-02-05 06:20:09 +08:00
|
|
|
CurrentUnit = Corpus[J1];
|
2015-09-11 08:20:58 +08:00
|
|
|
// Optionally, cross with another unit.
|
|
|
|
if (Options.DoCrossOver && USF.GetRand().RandBool()) {
|
|
|
|
size_t J2 = USF.GetRand()(Corpus.size());
|
|
|
|
if (!Corpus[J1].empty() && !Corpus[J2].empty()) {
|
|
|
|
assert(!Corpus[J2].empty());
|
2015-05-23 06:35:31 +08:00
|
|
|
CurrentUnit.resize(Options.MaxLen);
|
|
|
|
size_t NewSize = USF.CrossOver(
|
|
|
|
Corpus[J1].data(), Corpus[J1].size(), Corpus[J2].data(),
|
|
|
|
Corpus[J2].size(), CurrentUnit.data(), CurrentUnit.size());
|
2015-05-31 01:33:13 +08:00
|
|
|
assert(NewSize > 0 && "CrossOver returned empty unit");
|
|
|
|
assert(NewSize <= (size_t)Options.MaxLen &&
|
2015-09-11 08:20:58 +08:00
|
|
|
"CrossOver returned overisized unit");
|
2015-05-23 06:35:31 +08:00
|
|
|
CurrentUnit.resize(NewSize);
|
2015-01-30 00:58:29 +08:00
|
|
|
}
|
|
|
|
}
|
2015-09-11 08:20:58 +08:00
|
|
|
// Perform several mutations and runs.
|
|
|
|
MutateAndTestOne(&CurrentUnit);
|
2015-01-30 00:58:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-19 05:34:20 +08:00
|
|
|
void Fuzzer::SyncCorpus() {
|
|
|
|
if (Options.SyncCommand.empty() || Options.OutputCorpus.empty()) return;
|
|
|
|
auto Now = system_clock::now();
|
|
|
|
if (duration_cast<seconds>(Now - LastExternalSync).count() <
|
|
|
|
Options.SyncTimeout)
|
|
|
|
return;
|
|
|
|
LastExternalSync = Now;
|
|
|
|
ExecuteCommand(Options.SyncCommand + " " + Options.OutputCorpus);
|
|
|
|
}
|
|
|
|
|
2015-01-30 00:58:29 +08:00
|
|
|
} // namespace fuzzer
|