1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
#include <cstddef>
#include <cstdint>
#include <glaze/glaze.hpp>
#include <vector>
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size)
{
// non-null terminated
{
const std::vector<char> buffer{Data, Data + Size};
static constexpr glz::opts opts{.null_terminated = false};
glz::generic json{};
auto ec = glz::read<opts>(json, buffer);
if (!ec) {
[[maybe_unused]] auto s = json.size();
}
}
// use a vector with null termination instead of a std::string to avoid
// small string optimization to hide bounds problems
std::vector<char> buffer{Data, Data + Size};
buffer.push_back('\0');
// const qualified input buffer
{
const auto& input = buffer;
glz::generic json{};
auto ec = glz::read_json(json, input);
if (!ec) {
[[maybe_unused]] auto s = json.size();
}
}
// non-const input buffer
{
glz::generic json{};
auto ec = glz::read_json(json, buffer);
if (!ec) {
[[maybe_unused]] auto s = json.size();
}
}
return 0;
}
|