mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
763d4bc96b
llvm-svn: 282224
99 lines
3.1 KiB
C++
99 lines
3.1 KiB
C++
//===- FuzzerCorpus.h - Internal header for the Fuzzer ----------*- C++ -* ===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
// fuzzer::InputCorpus
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_FUZZER_CORPUS
|
|
#define LLVM_FUZZER_CORPUS
|
|
|
|
#include <random>
|
|
#include <unordered_set>
|
|
|
|
#include "FuzzerDefs.h"
|
|
#include "FuzzerRandom.h"
|
|
|
|
namespace fuzzer {
|
|
|
|
struct InputInfo {
|
|
Unit U; // The actual input data.
|
|
uint8_t Sha1[kSHA1NumBytes]; // Checksum.
|
|
// Stats.
|
|
uintptr_t NumExecutedMutations = 0;
|
|
uintptr_t NumSuccessfullMutations = 0;
|
|
};
|
|
|
|
class InputCorpus {
|
|
public:
|
|
InputCorpus() {
|
|
Inputs.reserve(1 << 14); // Avoid too many resizes.
|
|
}
|
|
size_t size() const { return Inputs.size(); }
|
|
bool empty() const { return Inputs.empty(); }
|
|
const Unit &operator[] (size_t Idx) const { return Inputs[Idx].U; }
|
|
void AddToCorpus(const Unit &U) {
|
|
uint8_t Hash[kSHA1NumBytes];
|
|
ComputeSHA1(U.data(), U.size(), Hash);
|
|
if (!Hashes.insert(Sha1ToString(Hash)).second) return;
|
|
Inputs.push_back(InputInfo());
|
|
InputInfo &II = Inputs.back();
|
|
II.U = U;
|
|
memcpy(II.Sha1, Hash, kSHA1NumBytes);
|
|
UpdateCorpusDistribution();
|
|
}
|
|
|
|
typedef const std::vector<InputInfo>::const_iterator ConstIter;
|
|
ConstIter begin() const { return Inputs.begin(); }
|
|
ConstIter end() const { return Inputs.end(); }
|
|
|
|
bool HasUnit(const Unit &U) { return Hashes.count(Hash(U)); }
|
|
InputInfo &ChooseUnitToMutate(Random &Rand) {
|
|
return Inputs[ChooseUnitIdxToMutate(Rand)];
|
|
};
|
|
|
|
// Returns an index of random unit from the corpus to mutate.
|
|
// Hypothesis: units added to the corpus last are more likely to be
|
|
// interesting. This function gives more weight to the more recent units.
|
|
size_t ChooseUnitIdxToMutate(Random &Rand) {
|
|
size_t Idx = static_cast<size_t>(CorpusDistribution(Rand.Get_mt19937()));
|
|
assert(Idx < Inputs.size());
|
|
return Idx;
|
|
}
|
|
|
|
void PrintStats() {
|
|
for (size_t i = 0; i < Inputs.size(); i++) {
|
|
const auto &II = Inputs[i];
|
|
Printf(" [%zd %s]\tsz: %zd\truns: %zd\tsucc: %zd\n", i,
|
|
Sha1ToString(II.Sha1).c_str(), II.U.size(),
|
|
II.NumExecutedMutations, II.NumSuccessfullMutations);
|
|
}
|
|
}
|
|
|
|
private:
|
|
|
|
// Updates the probability distribution for the units in the corpus.
|
|
// Must be called whenever the corpus or unit weights are changed.
|
|
void UpdateCorpusDistribution() {
|
|
size_t N = Inputs.size();
|
|
std::vector<double> Intervals(N + 1);
|
|
std::vector<double> Weights(N);
|
|
std::iota(Intervals.begin(), Intervals.end(), 0);
|
|
std::iota(Weights.begin(), Weights.end(), 1);
|
|
CorpusDistribution = std::piecewise_constant_distribution<double>(
|
|
Intervals.begin(), Intervals.end(), Weights.begin());
|
|
}
|
|
std::piecewise_constant_distribution<double> CorpusDistribution;
|
|
|
|
std::unordered_set<std::string> Hashes;
|
|
std::vector<InputInfo> Inputs;
|
|
};
|
|
|
|
} // namespace fuzzer
|
|
|
|
#endif // LLVM_FUZZER_CORPUS
|