34#if defined(PROVIDE_FUZZ_MAIN_FUNCTION) && defined(__AFL_FUZZ_INIT)
47static std::vector<const char*>
g_args;
49static void SetArgs(
int argc,
char** argv) {
50 for (
int i = 1; i < argc; ++i) {
53 if (strlen(argv[i]) > 2 && argv[i][0] ==
'-' && argv[i][1] ==
'-') {
70 static std::map<std::string_view, FuzzTarget> g_fuzz_targets;
71 return g_fuzz_targets;
106 CreateSock = [](int, int, int) -> std::unique_ptr<Sock> { std::terminate(); };
116 bool should_exit{
false};
117 if (std::getenv(
"PRINT_ALL_FUZZ_TARGETS_AND_ABORT")) {
119 if (
t.opts.hidden)
continue;
120 std::cout <<
name << std::endl;
124 if (
const char* out_path = std::getenv(
"WRITE_ALL_FUZZ_TARGETS_AND_ABORT")) {
125 std::cout <<
"Writing all fuzz target names to '" << out_path <<
"'." << std::endl;
126 std::ofstream out_stream{out_path, std::ios::binary};
128 if (
t.opts.hidden)
continue;
129 out_stream <<
name << std::endl;
136 if (
const auto* env_fuzz{std::getenv(
"FUZZ")}) {
138 static std::string g_copy{env_fuzz};
141 std::cerr <<
"Must select fuzz target with the FUZZ env var." << std::endl;
142 std::cerr <<
"Hint: Set the PRINT_ALL_FUZZ_TARGETS_AND_ABORT=1 env var to see all compiled targets." << std::endl;
143 std::exit(EXIT_FAILURE);
147 std::cerr <<
"No fuzz target compiled for " <<
g_fuzz_target <<
"." << std::endl;
148 std::exit(EXIT_FAILURE);
151 std::cerr <<
"Must compile with -DBUILD_FOR_FUZZING=ON to execute a fuzz target." << std::endl;
152 std::exit(EXIT_FAILURE);
156 it->second.opts.init();
161#if defined(PROVIDE_FUZZ_MAIN_FUNCTION)
162static bool read_stdin(std::vector<uint8_t>&
data)
164 std::istream::char_type buffer[1024];
165 std::streamsize length;
166 while ((std::cin.read(buffer, 1024), length = std::cin.gcount()) > 0) {
167 data.insert(
data.end(), buffer, buffer + length);
173#if defined(PROVIDE_FUZZ_MAIN_FUNCTION) && !defined(__AFL_LOOP)
174static bool read_file(
fs::path p, std::vector<uint8_t>&
data)
176 uint8_t buffer[1024];
178 if (f ==
nullptr)
return false;
180 const size_t length = fread(buffer,
sizeof(uint8_t),
sizeof(buffer), f);
181 if (ferror(f))
return false;
182 data.insert(
data.end(), buffer, buffer + length);
189#if defined(PROVIDE_FUZZ_MAIN_FUNCTION) && !defined(__AFL_LOOP)
191void signal_handler(
int signal)
193 if (signal == SIGABRT) {
194 std::cerr <<
"Error processing input " << g_input_path << std::endl;
196 std::cerr <<
"Unexpected signal " << signal <<
" received\n";
198 std::_Exit(EXIT_FAILURE);
217#if defined(PROVIDE_FUZZ_MAIN_FUNCTION)
218int main(
int argc,
char** argv)
224 const uint8_t* buffer = __AFL_FUZZ_TESTCASE_BUF;
225 while (__AFL_LOOP(100000)) {
226 size_t buffer_len = __AFL_FUZZ_TESTCASE_LEN;
230 std::vector<uint8_t> buffer;
232 if (!read_stdin(buffer)) {
238 std::signal(SIGABRT, signal_handler);
239 const auto start_time{Now<SteadySeconds>()};
241 for (
int i = 1; i < argc; ++i) {
243 if (fs::is_directory(input_path)) {
244 for (fs::directory_iterator it(input_path); it != fs::directory_iterator(); ++it) {
245 if (!fs::is_regular_file(it->path()))
continue;
246 g_input_path = it->
path();
247 Assert(read_file(it->path(), buffer));
253 g_input_path = input_path;
254 Assert(read_file(input_path, buffer));
260 const auto end_time{Now<SteadySeconds>()};
261 std::cout <<
g_fuzz_target <<
": succeeded against " << tested <<
" files in " <<
count_seconds(end_time - start_time) <<
"s." << std::endl;
int main(int argc, char **argv)
#define Assert(val)
Identity function.
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...
path(std::filesystem::path path)
void ResetCoverageCounters()
static void test_one_input(FuzzBufferType buffer)
void FuzzFrameworkRegisterTarget(std::string_view name, TypeTestOneInput target, FuzzTargetOptions opts)
const std::function< void(const std::string &)> G_TEST_LOG_FUN
This is connected to the logger.
static const TypeTestOneInput * g_test_one_input
static void SetArgs(int argc, char **argv)
const std::function< std::vector< const char * >()> G_TEST_COMMAND_LINE_ARGUMENTS
Retrieve the command line arguments.
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
int LLVMFuzzerInitialize(int *argc, char ***argv)
static std::string_view g_fuzz_target
static std::vector< const char * > g_args
A copy of the command line arguments that start with --.
const std::function< std::string()> G_TEST_GET_FULL_NAME
Retrieve the unit test name.
std::span< const uint8_t > FuzzBufferType
std::function< void(FuzzBufferType)> TypeTestOneInput
FILE * fopen(const fs::path &p, const char *mode)
std::function< std::unique_ptr< Sock >(int, int, int)> CreateSock
Socket factory.
std::vector< CNetAddr > WrappedGetAddrInfo(const std::string &name, bool allow_lookup)
Wrapper for getaddrinfo(3).
const TypeTestOneInput test_one_input
const FuzzTargetOptions opts
void SeedRandomStateForTest(SeedRand seedtype)
Seed the global RNG state for testing and log the seed value.
@ ZEROS
Seed with a compile time constant of zeros.
void SetMockTime(int64_t nMockTimeIn)
DEPRECATED Use SetMockTime with chrono type.
constexpr int64_t count_seconds(std::chrono::seconds t)