mirror of
https://github.com/CLIUtils/CLI11.git
synced 2025-04-30 04:33:53 +00:00
This is the next phase of the fuzzer. It runs a round trip and makes sure that the config files generated by the app will load into the same results, to test full round trip on the config files. Issues fixed - fix a bug in the string escape code caught by initial round trip tests - resolve inconsistencies in handling of {} for empty vector indication between config and cli parsing --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
64 lines
2.0 KiB
C++
64 lines
2.0 KiB
C++
// Copyright (c) 2017-2024, University of Cincinnati, developed by Henry Schreiner
|
|
// under NSF AWARD 1414736 and by the respective contributors.
|
|
// All rights reserved.
|
|
//
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
#include "fuzzApp.hpp"
|
|
#include <CLI/CLI.hpp>
|
|
#include <cstring>
|
|
#include <exception>
|
|
#include <string>
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
|
|
if(Size == 0) {
|
|
return 0;
|
|
}
|
|
std::string parseString(reinterpret_cast<const char *>(Data), Size);
|
|
std::string optionString;
|
|
std::string flagString;
|
|
if(parseString.size() > 25) {
|
|
optionString = parseString.substr(0, 25);
|
|
parseString.erase(0, 25);
|
|
}
|
|
if(parseString.size() > 25) {
|
|
flagString = parseString.substr(0, 25);
|
|
parseString.erase(0, 25);
|
|
}
|
|
CLI::FuzzApp fuzzdata;
|
|
CLI::FuzzApp fuzzdata2;
|
|
auto app = fuzzdata.generateApp();
|
|
auto app2 = fuzzdata2.generateApp();
|
|
try {
|
|
if(!optionString.empty()) {
|
|
app->add_option(optionString, fuzzdata.buffer);
|
|
app2->add_option(optionString, fuzzdata2.buffer);
|
|
}
|
|
if(!flagString.empty()) {
|
|
app->add_flag(flagString, fuzzdata.intbuffer);
|
|
app2->add_flag(flagString, fuzzdata2.intbuffer);
|
|
}
|
|
} catch(const CLI::ConstructionError &e) {
|
|
return 0; // Non-zero return values are reserved for future use.
|
|
}
|
|
|
|
try {
|
|
app->parse(parseString);
|
|
|
|
} catch(const CLI::ParseError &e) {
|
|
//(app)->exit(e);
|
|
// this just indicates we caught an error known by CLI
|
|
return 0; // Non-zero return values are reserved for future use.
|
|
}
|
|
// should be able to write the config to a file and read from it again
|
|
std::string configOut = app->config_to_str();
|
|
app->clear();
|
|
std::stringstream out(configOut);
|
|
app2->parse_from_stream(out);
|
|
auto result = fuzzdata2.compare(fuzzdata);
|
|
if(!result) {
|
|
throw CLI::ValidationError("fuzzer", "file input results don't match parse results");
|
|
}
|
|
return 0;
|
|
}
|