You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
362 lines
12 KiB
362 lines
12 KiB
// Copyright 2022 The Centipede Authors.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
// TODO(ussuri): This module has become a catch-all for all sorts of utils.
|
|
// Split it by category.
|
|
|
|
#include "./centipede/util.h"
|
|
|
|
#include <sys/mman.h>
|
|
#include <unistd.h>
|
|
|
|
#include <algorithm>
|
|
#include <cctype>
|
|
#include <cmath>
|
|
#include <cstdint>
|
|
#include <cstdio> // NOLINT(popen)
|
|
#include <cstdlib>
|
|
#include <cstring>
|
|
#include <ctime>
|
|
#include <filesystem> // NOLINT
|
|
#include <fstream>
|
|
#include <functional>
|
|
#include <ios>
|
|
#include <queue>
|
|
#include <random>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <string_view>
|
|
#include <thread> // NOLINT: For thread::get_id() only.
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include "absl/base/attributes.h"
|
|
#include "absl/base/const_init.h"
|
|
#include "absl/base/nullability.h"
|
|
#include "absl/base/thread_annotations.h"
|
|
#include "absl/log/check.h"
|
|
#include "absl/strings/str_format.h"
|
|
#include "absl/strings/str_replace.h"
|
|
#include "absl/strings/str_split.h"
|
|
#include "absl/synchronization/mutex.h"
|
|
#include "absl/types/span.h"
|
|
#include "./centipede/feature.h"
|
|
#include "./common/defs.h"
|
|
#include "./common/hash.h"
|
|
#include "./common/logging.h"
|
|
#include "./common/remote_file.h"
|
|
|
|
namespace fuzztest::internal {
|
|
|
|
size_t GetRandomSeed(size_t seed) {
|
|
if (seed != 0) return seed;
|
|
return time(nullptr) + getpid() +
|
|
std::hash<std::thread::id>{}(std::this_thread::get_id());
|
|
}
|
|
|
|
std::string AsPrintableString(ByteSpan data, size_t max_len) {
|
|
std::ostringstream out;
|
|
size_t len = std::min(max_len, data.size());
|
|
for (size_t i = 0; i < len; ++i) {
|
|
const auto ch = data[i];
|
|
if (std::isprint(ch)) {
|
|
out << ch;
|
|
} else {
|
|
out << "\\x" << std::uppercase << std::hex << static_cast<uint32_t>(ch);
|
|
}
|
|
}
|
|
return out.str();
|
|
}
|
|
|
|
template <typename Container>
|
|
void ReadFromLocalFile(std::string_view file_path, Container &data) {
|
|
std::ifstream f(std::string{file_path});
|
|
if (!f) return;
|
|
f.seekg(0, std::ios_base::end);
|
|
auto size = f.tellg();
|
|
f.seekg(0, std::ios_base::beg);
|
|
CHECK_EQ(size % sizeof(data[0]), 0);
|
|
data.resize(size / sizeof(data[0]));
|
|
f.read(reinterpret_cast<char *>(data.data()), size);
|
|
CHECK(f) << "Failed to read from local file: " << VV(file_path) << VV(f.eof())
|
|
<< VV(f.bad()) << VV(f.fail()) << VV(size);
|
|
f.close();
|
|
}
|
|
|
|
void ReadFromLocalFile(std::string_view file_path, std::string &data) {
|
|
return ReadFromLocalFile<std::string>(file_path, data);
|
|
}
|
|
void ReadFromLocalFile(std::string_view file_path, ByteArray &data) {
|
|
return ReadFromLocalFile<ByteArray>(file_path, data);
|
|
}
|
|
void ReadFromLocalFile(std::string_view file_path, FeatureVec &data) {
|
|
return ReadFromLocalFile<FeatureVec>(file_path, data);
|
|
}
|
|
void ReadFromLocalFile(std::string_view file_path,
|
|
std::vector<uint32_t> &data) {
|
|
return ReadFromLocalFile<std::vector<uint32_t> &>(file_path, data);
|
|
}
|
|
|
|
void ClearLocalFileContents(std::string_view file_path) {
|
|
std::ofstream f(std::string{file_path}, std::ios::out | std::ios::trunc);
|
|
CHECK(f) << "Failed to clear the file: " << file_path;
|
|
}
|
|
|
|
void WriteToLocalFile(std::string_view file_path, ByteSpan data) {
|
|
std::ofstream f(std::string{file_path});
|
|
CHECK(f) << "Failed to open local file: " << file_path;
|
|
f.write(reinterpret_cast<const char *>(data.data()),
|
|
static_cast<int64_t>(data.size()));
|
|
CHECK(f) << "Failed to write to local file: " << file_path;
|
|
f.close();
|
|
}
|
|
|
|
void WriteToLocalFile(std::string_view file_path, std::string_view data) {
|
|
static_assert(sizeof(decltype(data)::value_type) == sizeof(uint8_t));
|
|
WriteToLocalFile(file_path, AsByteSpan(data));
|
|
}
|
|
|
|
void WriteToLocalFile(std::string_view file_path, const FeatureVec &data) {
|
|
WriteToLocalFile(file_path, AsByteSpan(data));
|
|
}
|
|
|
|
void WriteToLocalHashedFileInDir(std::string_view dir_path, ByteSpan data) {
|
|
if (dir_path.empty()) return;
|
|
std::string file_path = std::filesystem::path(dir_path).append(Hash(data));
|
|
WriteToLocalFile(file_path, data);
|
|
}
|
|
|
|
void WriteToRemoteHashedFileInDir(std::string_view dir_path, ByteSpan data) {
|
|
if (dir_path.empty()) return;
|
|
std::string file_path = std::filesystem::path(dir_path).append(Hash(data));
|
|
CHECK_OK(
|
|
RemoteFileSetContents(file_path, std::string(data.begin(), data.end())));
|
|
}
|
|
|
|
std::string HashOfFileContents(std::string_view file_path) {
|
|
if (file_path.empty()) return "";
|
|
std::string file_contents;
|
|
CHECK_OK(RemoteFileGetContents(file_path, file_contents));
|
|
return Hash(file_contents);
|
|
}
|
|
|
|
std::string ProcessAndThreadUniqueID(std::string_view prefix) {
|
|
// operator << is the only way to serialize std::this_thread::get_id().
|
|
std::ostringstream oss;
|
|
oss << prefix << getpid() << "-" << std::this_thread::get_id();
|
|
return oss.str();
|
|
}
|
|
|
|
std::string TemporaryLocalDirPath() {
|
|
const char *TMPDIR = getenv("TMPDIR");
|
|
std::string tmp = TMPDIR ? TMPDIR : "/tmp";
|
|
return std::filesystem::path(tmp).append(
|
|
ProcessAndThreadUniqueID("centipede-"));
|
|
}
|
|
|
|
// We need to maintain a global set of dirs that CreateLocalDirRemovedAtExit()
|
|
// was called with, so that we can remove all these dirs at exit.
|
|
ABSL_CONST_INIT static absl::Mutex dirs_to_delete_at_exit_mutex{
|
|
absl::kConstInit};
|
|
static std::vector<std::string> *dirs_to_delete_at_exit
|
|
ABSL_GUARDED_BY(dirs_to_delete_at_exit_mutex);
|
|
|
|
// Atexit handler added by CreateLocalDirRemovedAtExit().
|
|
// Deletes all dirs in dirs_to_delete_at_exit.
|
|
static void RemoveDirsAtExit() {
|
|
absl::MutexLock lock(&dirs_to_delete_at_exit_mutex);
|
|
for (auto &dir : *dirs_to_delete_at_exit) {
|
|
std::filesystem::remove_all(dir);
|
|
}
|
|
}
|
|
|
|
void CreateLocalDirRemovedAtExit(std::string_view path) {
|
|
// Safeguard against removing dirs not created by TemporaryLocalDirPath().
|
|
CHECK_NE(path.find("/centipede-"), std::string::npos);
|
|
// Create the dir.
|
|
std::filesystem::remove_all(path);
|
|
std::filesystem::create_directories(path);
|
|
// Add to dirs_to_delete_at_exit.
|
|
absl::MutexLock lock(&dirs_to_delete_at_exit_mutex);
|
|
if (!dirs_to_delete_at_exit) {
|
|
dirs_to_delete_at_exit = new std::vector<std::string>();
|
|
atexit(&RemoveDirsAtExit);
|
|
}
|
|
dirs_to_delete_at_exit->emplace_back(path);
|
|
}
|
|
|
|
ScopedFile::ScopedFile(std::string_view dir_path, std::string_view name)
|
|
: my_path_(std::filesystem::path(dir_path) / name) {}
|
|
|
|
ScopedFile::~ScopedFile() { std::filesystem::remove_all(my_path_); }
|
|
|
|
void AppendHashToArray(ByteArray &ba, std::string_view hash) {
|
|
CHECK_EQ(hash.size(), kHashLen);
|
|
ba.insert(ba.end(), hash.begin(), hash.end());
|
|
}
|
|
|
|
std::string ExtractHashFromArray(ByteArray &ba) {
|
|
CHECK_GE(ba.size(), kHashLen);
|
|
std::string res;
|
|
res.insert(res.end(), ba.end() - kHashLen, ba.end());
|
|
ba.resize(ba.size() - kHashLen);
|
|
return res;
|
|
}
|
|
|
|
ByteArray PackFeaturesAndHash(const ByteArray &data,
|
|
const FeatureVec &features) {
|
|
return PackFeaturesAndHashAsRawBytes(data, AsByteSpan(features));
|
|
}
|
|
|
|
ByteArray PackFeaturesAndHashAsRawBytes(const ByteArray &data,
|
|
ByteSpan features) {
|
|
ByteArray feature_bytes_with_hash(features.size() + kHashLen);
|
|
auto hash = Hash(data);
|
|
CHECK_EQ(hash.size(), kHashLen);
|
|
memcpy(feature_bytes_with_hash.data(), features.data(), features.size());
|
|
memcpy(feature_bytes_with_hash.data() + features.size(), hash.data(),
|
|
kHashLen);
|
|
return feature_bytes_with_hash;
|
|
}
|
|
|
|
std::string UnpackFeaturesAndHash(ByteSpan blob,
|
|
FeatureVec *absl_nonnull features) {
|
|
size_t features_len_in_bytes = blob.size() - kHashLen;
|
|
features->resize(features_len_in_bytes / sizeof(feature_t));
|
|
memcpy(features->data(), blob.data(), features_len_in_bytes);
|
|
|
|
std::string hash;
|
|
hash.insert(hash.end(), blob.end() - kHashLen, blob.end());
|
|
return hash;
|
|
}
|
|
|
|
// Returns a vector of string pairs that are used to replace special characters
|
|
// and hex values in ParseAFLDictionary.
|
|
static std::vector<std::pair<std::string, std::string>>
|
|
AFLDictionaryStringReplacements() {
|
|
std::vector<std::pair<std::string, std::string>> replacements;
|
|
replacements.emplace_back("\\\\", "\\");
|
|
replacements.emplace_back("\\r", "\r");
|
|
replacements.emplace_back("\\n", "\n");
|
|
replacements.emplace_back("\\t", "\t");
|
|
replacements.emplace_back("\\\"", "\"");
|
|
// Hex string replacements, lower and upper case.
|
|
for (int i = 0; i < 256; i++) {
|
|
replacements.emplace_back(absl::StrFormat("\\x%02x", i), std::string(1, i));
|
|
replacements.emplace_back(absl::StrFormat("\\x%02X", i), std::string(1, i));
|
|
}
|
|
return replacements;
|
|
}
|
|
|
|
bool ParseAFLDictionary(std::string_view dictionary_text,
|
|
std::vector<ByteArray> &dictionary_entries) {
|
|
auto replacements = AFLDictionaryStringReplacements();
|
|
dictionary_entries.clear();
|
|
// Check if the contents is ASCII.
|
|
for (char ch : dictionary_text) {
|
|
if (!std::isprint(ch) && !std::isspace(ch)) return false;
|
|
}
|
|
// Iterate over all lines.
|
|
for (auto line : absl::StrSplit(dictionary_text, '\n')) {
|
|
// [start, stop) are the offsets of the dictionary entry.
|
|
size_t start = 0;
|
|
// Skip leading spaces.
|
|
while (start < line.size() && isspace(line[start])) ++start;
|
|
// Skip empty line.
|
|
if (start == line.size()) continue;
|
|
// Skip comment line.
|
|
if (line[start] == '#') continue;
|
|
// Find the first "
|
|
while (start < line.size() && line[start] != '"') ++start;
|
|
if (start == line.size()) return false; // no opening "
|
|
++start; // skip the first "
|
|
size_t stop = line.size() - 1;
|
|
// Find the last "
|
|
while (stop > start && line[stop] != '"') --stop;
|
|
if (stop == start) return false; // no closing "
|
|
// Replace special characters and hex values.
|
|
std::string replaced = absl::StrReplaceAll(
|
|
std::string_view(line.data() + start, stop - start), replacements);
|
|
dictionary_entries.emplace_back(replaced.begin(), replaced.end());
|
|
}
|
|
return true;
|
|
}
|
|
|
|
std::vector<size_t> RandomWeightedSubset(absl::Span<const uint64_t> set,
|
|
size_t target_size, Rng &rng) {
|
|
std::vector<size_t> res;
|
|
|
|
// Collect indices of all zeros.
|
|
for (size_t i = 0, n = set.size(); i < n; ++i) {
|
|
if (set[i] == 0) res.push_back(i);
|
|
}
|
|
|
|
// Check how many more elements need to be removed to reach `target_size`.
|
|
if (set.size() - res.size() <= target_size) return res;
|
|
size_t to_remove = set.size() - res.size() - target_size;
|
|
|
|
// Pairs of index and floating point weight, ordered by weight.
|
|
struct index_and_weight {
|
|
size_t index;
|
|
double weight;
|
|
bool operator<(const index_and_weight &other) const {
|
|
return weight < other.weight;
|
|
}
|
|
};
|
|
|
|
// Similar to https://en.wikipedia.org/wiki/Reservoir_sampling#Algorithm_A-Res
|
|
// except that we pick elements to remove from the set.
|
|
// Invariant: queue contains up to `to_remove` smallest weights observed.
|
|
std::priority_queue<index_and_weight> queue;
|
|
std::uniform_real_distribution<double> unif(0, 1); // values in [0, 1).
|
|
for (size_t i = 0; i < set.size(); ++i) {
|
|
auto w = set[i];
|
|
if (w == 0) continue;
|
|
// The idea of using rand(0,1)^(1./w) is described in the link above.
|
|
index_and_weight iw{i, pow(unif(rng), 1. / w)};
|
|
|
|
if (queue.size() < to_remove) {
|
|
// queue is not full, add iw unconditionally.
|
|
queue.push(iw);
|
|
} else {
|
|
// queue is full. Swap the top of queue with iw if iw is smaller.
|
|
if (iw < queue.top()) {
|
|
queue.pop();
|
|
queue.push(iw);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Move elements from queue to res, and sort res.
|
|
while (!queue.empty()) {
|
|
res.push_back(queue.top().index);
|
|
queue.pop();
|
|
}
|
|
std::sort(res.begin(), res.end());
|
|
return res;
|
|
}
|
|
|
|
uint8_t *MmapNoReserve(size_t size) {
|
|
auto result = mmap(0, size, PROT_READ | PROT_WRITE,
|
|
MAP_PRIVATE | MAP_ANON | MAP_NORESERVE, -1, 0);
|
|
CHECK(result != MAP_FAILED);
|
|
return reinterpret_cast<uint8_t *>(result);
|
|
}
|
|
|
|
void Munmap(uint8_t *ptr, size_t size) {
|
|
auto result = munmap(ptr, size);
|
|
CHECK_EQ(result, 0);
|
|
}
|
|
|
|
} // namespace fuzztest::internal
|
|
|