Coverage Report

Created: 2025-10-10 06:44

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/immer/extra/fuzzer/fuzzer_input.hpp
Line
Count
Source
1
//
2
// immer: immutable data structures for C++
3
// Copyright (C) 2016, 2017, 2018 Juan Pedro Bolivar Puente
4
//
5
// This software is distributed under the Boost Software License, Version 1.0.
6
// See accompanying file LICENSE or copy at http://boost.org/LICENSE_1_0.txt
7
//
8
9
#pragma once
10
11
#include <cstdint>
12
#include <memory>
13
#include <stdexcept>
14
15
#if defined(__GNUC__) && (__GNUC__ == 9 || __GNUC__ == 8 || __GNUC__ == 10)
16
#define IMMER_DISABLE_FUZZER_DUE_TO_GCC_BUG 1
17
#endif
18
19
struct no_more_input : std::exception
20
{};
21
22
constexpr auto fuzzer_input_max_size = 1 << 16;
23
24
struct fuzzer_input
25
{
26
    const std::uint8_t* data_;
27
    std::size_t size_;
28
29
    const std::uint8_t* next(std::size_t size)
30
979k
    {
31
979k
        if (size_ < size)
32
0
            throw no_more_input{};
33
979k
        auto r = data_;
34
979k
        data_ += size;
35
979k
        size_ -= size;
36
979k
        return r;
37
979k
    }
38
39
    const std::uint8_t* next(std::size_t size, std::size_t align)
40
983k
    {
41
983k
        auto& p = const_cast<void*&>(reinterpret_cast<const void*&>(data_));
42
983k
        auto r  = std::align(align, size, p, size_);
43
983k
        if (r == nullptr)
44
4.22k
            throw no_more_input{};
45
979k
        return next(size);
46
983k
    }
47
48
    template <typename Fn>
49
    int run(Fn step)
50
4.22k
    {
51
4.22k
        if (size_ > fuzzer_input_max_size)
52
5
            return 0;
53
4.22k
        try {
54
184k
            while (step(*this))
55
180k
                continue;
56
4.22k
        } catch (const no_more_input&) {
57
4.22k
        };
58
4.22k
        return 0;
59
4.22k
    }
60
};
61
62
template <typename T>
63
const T& read(fuzzer_input& fz)
64
983k
{
65
983k
    return *reinterpret_cast<const T*>(fz.next(sizeof(T), alignof(T)));
66
983k
}
char const& read<char>(fuzzer_input&)
Line
Count
Source
64
849k
{
65
849k
    return *reinterpret_cast<const T*>(fz.next(sizeof(T), alignof(T)));
66
849k
}
unsigned long const& read<unsigned long>(fuzzer_input&)
Line
Count
Source
64
133k
{
65
133k
    return *reinterpret_cast<const T*>(fz.next(sizeof(T), alignof(T)));
66
133k
}
67
68
template <typename T, typename Cond>
69
T read(fuzzer_input& fz, Cond cond)
70
364k
{
71
364k
    auto x = read<T>(fz);
72
669k
    while (!cond(x))
73
304k
        x = read<T>(fz);
74
364k
    return x;
75
364k
}