2
0
mirror of https://github.com/boostorg/mysql.git synced 2026-01-28 07:22:26 +00:00
Files
mysql/test/fuzzing/fuzz_utf8mb4.cpp
Anarthal (Rubén Pérez) 1ad51fc579 Character set clean-up
character_set::name is now a const char*, since NULL characters are not
   allowed by MySQL
character_set::next_char doesn't need to be noexcept
Removed noexcepts from next_char functions
Internal refactor
2024-06-24 17:10:12 +02:00

39 lines
1.0 KiB
C++

//
// Copyright (c) 2019-2024 Ruben Perez Hidalgo (rubenperez038 at gmail dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#include <boost/mysql/character_set.hpp>
#include <boost/mysql/impl/internal/call_next_char.hpp>
#include <cstddef>
#include <stdint.h>
using namespace boost::mysql;
static bool iterate_utf8mb4_string(const uint8_t* data, size_t size) noexcept
{
const char* it = reinterpret_cast<const char*>(data);
const char* last = it + size;
while (it < last)
{
std::size_t char_len = detail::call_next_char(utf8mb4_charset, it, last);
if (char_len == 0u)
return false; // Invalid character
it += char_len;
}
return true;
}
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
{
// Note: this code should never throw exceptions, for any kind of input
iterate_utf8mb4_string(data, size);
return 0;
}