Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add fuzzing to to_chars for floats #187

Merged
merged 6 commits into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions fuzzing/fuzz_to_chars_float.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
// Copyright 2024 Matt Borland
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt

#include <boost/charconv.hpp>
#include <boost/core/detail/string_view.hpp>
#include <iostream>
#include <exception>

extern "C" int LLVMFuzzerTestOneInput(const std::uint8_t* data, std::size_t size)
{
try
{
auto c_data = reinterpret_cast<const char*>(data);

const auto formats = {boost::charconv::chars_format::general,
boost::charconv::chars_format::fixed,
boost::charconv::chars_format::scientific,
boost::charconv::chars_format::hex};

for (const auto format : formats)
{
char buffer[20]; // Small enough it should encounter overflows

float f_val {};
boost::charconv::from_chars(c_data, c_data + size, f_val, format);
boost::charconv::to_chars(buffer, buffer + sizeof(buffer), f_val, format);

double val {};
boost::charconv::from_chars(c_data, c_data + size, val, format);
boost::charconv::to_chars(buffer, buffer + sizeof(buffer), val, format);

#if BOOST_CHARCONV_LDBL_BITS == 64
long double ld_val {};
boost::charconv::from_chars(c_data, c_data + size, ld_val, format);
boost::charconv::to_chars(buffer, buffer + sizeof(buffer), ld_val, format);
#endif

// Also try with precisions
for (int precision = -1; precision < 10; ++precision)
{
boost::charconv::to_chars(buffer, buffer + sizeof(buffer), f_val, format, precision);
boost::charconv::to_chars(buffer, buffer + sizeof(buffer), val, format, precision);
#if BOOST_CHARCONV_LDBL_BITS == 64
boost::charconv::to_chars(buffer, buffer + sizeof(buffer), ld_val, format, precision);
#endif
}
}
}
catch(...)
{
std::cerr << "Error with: " << data << std::endl;
std::terminate();
}

return 0;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
BBBBBÿÿÿBBBBBBBBÿÿÿÿÿÿÿÿBBBBBBÿ
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
es
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1999009
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
333333333333333ÿ
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
111111111111111!1111111111111111111[ß
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3333;;33
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
66666666666666666666;;
Loading
Loading