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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
|
//
// immer: immutable data structures for C++
// Copyright (C) 2016, 2017, 2018 Juan Pedro Bolivar Puente
//
// This software is distributed under the Boost Software License, Version 1.0.
// See accompanying file LICENSE or copy at http://boost.org/LICENSE_1_0.txt
//
#include "extra/fuzzer/fuzzer_input.hpp"
#include <array>
#include <catch2/catch_test_macros.hpp>
#include <immer/flex_vector.hpp>
#include <immer/flex_vector_transient.hpp>
#include <immer/heap/gc_heap.hpp>
#include <immer/refcount/no_refcount_policy.hpp>
#include <iostream>
#define IMMER_FUZZED_TRACE_ENABLE 0
#if IMMER_FUZZED_TRACE_ENABLE
#define IMMER_FUZZED_TRACE(...) std::cout << __VA_ARGS__ << std::endl;
#else
#define IMMER_FUZZED_TRACE(...)
#endif
using gc_memory = immer::memory_policy<immer::heap_policy<immer::gc_heap>,
immer::no_refcount_policy,
immer::default_lock_policy,
immer::gc_transience_policy,
false>;
namespace {
template <std::size_t VarCount = 4, unsigned Bits = 2>
int run_input(const std::uint8_t* data, std::size_t size)
{
using vector_t = immer::flex_vector<int, gc_memory, Bits, Bits>;
using transient_t = typename vector_t::transient_type;
using size_t = std::uint8_t;
auto vs = std::array<vector_t, VarCount>{};
auto ts = std::array<transient_t, VarCount>{};
#if IMMER_FUZZED_TRACE_ENABLE
std::cout << "/// new test run" << std::endl;
for (auto i = 0; i < VarCount; ++i)
std::cout << "auto v" << i << " = vector_t{};" << std::endl;
for (auto i = 0; i < VarCount; ++i)
std::cout << "auto t" << i << " = transient_t{};" << std::endl;
#endif
auto is_valid_var = [&](auto idx) { return idx >= 0 && idx < VarCount; };
auto is_valid_var_neq = [](auto other) {
return [=](auto idx) {
return idx >= 0 && idx < VarCount && idx != other;
};
};
auto is_valid_index = [](auto& v) {
return [&](auto idx) { return idx >= 0 && idx < v.size(); };
};
auto is_valid_size = [](auto& v) {
return [&](auto idx) { return idx >= 0 && idx <= v.size(); };
};
auto can_concat = [](auto&& v1, auto&& v2) {
using size_type = decltype(v1.size());
auto max = std::numeric_limits<size_type>::max() >> (Bits * 4);
return v1.size() < max && v2.size() < max;
};
return fuzzer_input{data, size}.run([&](auto& in) {
enum ops
{
op_transient,
op_persistent,
op_push_back,
op_update,
op_take,
op_drop,
op_concat,
op_push_back_mut,
op_update_mut,
op_take_mut,
op_drop_mut,
op_prepend_mut,
op_prepend_mut_move,
op_append_mut,
op_append_mut_move,
};
auto dst = read<std::uint8_t>(in, is_valid_var);
switch (read<char>(in)) {
case op_transient: {
auto src = read<std::uint8_t>(in, is_valid_var);
IMMER_FUZZED_TRACE("t" << +dst << " = v" << +src
<< ".transient();");
ts[dst] = vs[src].transient();
break;
}
case op_persistent: {
auto src = read<std::uint8_t>(in, is_valid_var);
IMMER_FUZZED_TRACE("v" << +dst << " = t" << +src
<< ".persistent();");
vs[dst] = ts[src].persistent();
break;
}
case op_push_back: {
auto src = read<std::uint8_t>(in, is_valid_var);
IMMER_FUZZED_TRACE("v" << +dst << " = v" << +src
<< ".push_back(42);");
vs[dst] = vs[src].push_back(42);
break;
}
case op_update: {
auto src = read<std::uint8_t>(in, is_valid_var);
auto idx = read<size_t>(in, is_valid_index(vs[src]));
IMMER_FUZZED_TRACE("v" << +dst << " = v" << +src << ".update("
<< +idx
<< ", [] (auto x) { return x + 1; });");
vs[dst] = vs[src].update(idx, [](auto x) { return x + 1; });
break;
}
case op_take: {
auto src = read<std::uint8_t>(in, is_valid_var);
auto idx = read<size_t>(in, is_valid_size(vs[src]));
IMMER_FUZZED_TRACE("v" << +dst << " = v" << +src << ".take(" << +idx
<< ");");
vs[dst] = vs[src].take(idx);
break;
}
case op_drop: {
auto src = read<std::uint8_t>(in, is_valid_var);
auto idx = read<size_t>(in, is_valid_size(vs[src]));
IMMER_FUZZED_TRACE("v" << +dst << " = v" << +src << ".take(" << +idx
<< ");");
vs[dst] = vs[src].drop(idx);
break;
}
case op_concat: {
auto src = read<std::uint8_t>(in, is_valid_var);
auto src2 = read<std::uint8_t>(in, is_valid_var);
if (can_concat(vs[src], vs[src2])) {
IMMER_FUZZED_TRACE("v" << +dst << " = v" << +src << " + v"
<< +src2 << ";");
vs[dst] = vs[src] + vs[src2];
}
break;
}
case op_push_back_mut: {
IMMER_FUZZED_TRACE("t" << +dst << ".push_back(13);");
ts[dst].push_back(13);
break;
}
case op_update_mut: {
auto idx = read<size_t>(in, is_valid_index(ts[dst]));
IMMER_FUZZED_TRACE("t" << +dst << ".update(" << +idx
<< ", [] (auto x) { return x + 1; });");
ts[dst].update(idx, [](auto x) { return x + 1; });
break;
}
case op_take_mut: {
auto idx = read<size_t>(in, is_valid_size(ts[dst]));
IMMER_FUZZED_TRACE("t" << +dst << ").take(" << +idx << ");");
ts[dst].take(idx);
break;
}
case op_prepend_mut: {
auto src = read<std::uint8_t>(in, is_valid_var_neq(dst));
if (can_concat(ts[dst], ts[src])) {
IMMER_FUZZED_TRACE("t" << +dst << ".prepend(t" << +src << ");");
ts[dst].prepend(ts[src]);
}
break;
}
case op_prepend_mut_move: {
auto src = read<std::uint8_t>(in, is_valid_var_neq(dst));
if (can_concat(ts[dst], ts[src])) {
IMMER_FUZZED_TRACE("t" << +dst << ".prepend(std::move(t" << +src
<< "));"
<< " t" << +src << " = {};");
ts[dst].prepend(std::move(ts[src]));
ts[src] = {};
}
break;
}
case op_append_mut: {
auto src = read<std::uint8_t>(in, is_valid_var_neq(dst));
if (can_concat(ts[dst], ts[src])) {
IMMER_FUZZED_TRACE("t" << +dst << ".append(t" << +src << ");");
ts[dst].append(ts[src]);
}
break;
}
case op_append_mut_move: {
auto src = read<std::uint8_t>(in, is_valid_var_neq(dst));
if (can_concat(ts[dst], ts[src])) {
IMMER_FUZZED_TRACE("t" << +dst << ".append(std::move(t" << +src
<< "));"
<< " t" << +src << " = {};");
ts[dst].append(std::move(ts[src]));
ts[src] = {};
}
break;
}
default:
break;
};
return true;
});
}
} // namespace
TEST_CASE("bug: concatenating transients")
{
// When concatenating two transients vectors the nodes from the
// argument become aliased in the result. As such, we need to
// reset the identitiy of the argument.
SECTION("simplified")
{
using vector_t = immer::flex_vector<int, gc_memory, 2, 2>;
auto t0 = vector_t{}.transient();
t0.push_back(42);
t0.push_back(42);
t0.push_back(42);
t0.push_back(42);
t0.push_back(42);
t0.push_back(42);
auto t1 = t0;
t1.append(t0);
t1.append(t0);
t0.append(t1);
t1.append(t0);
}
#if !IMMER_DISABLE_FUZZER_DUE_TO_GCC_BUG
SECTION("")
{
constexpr std::uint8_t input[] = {
0x2, 0x2, 0x2, 0x2, 0x29, 0x32, 0x0, 0x0, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x6, 0x2,
0x2, 0x2, 0x2, 0x2, 0x6, 0x2, 0x2, 0x2, 0x0, 0x38, 0x2,
0x0, 0x0, 0x2, 0x2, 0xd, 0x0, 0x0, 0x3b, 0xff, 0x3a, 0x2,
0xd, 0xd, 0x2, 0x0, 0x0, 0x10, 0xe, 0x0, 0xd, 0x0, 0x0,
0x2, 0x2, 0xd, 0x0, 0x1, 0x5,
};
CHECK(run_input(input, sizeof(input)) == 0);
}
#endif
}
TEST_CASE("bug: concatenating moved transients")
{
// A moved from concatenated transient is totally smashed, we can
// not do anything with it but reasign...
SECTION("simplified")
{
using vector_t = immer::flex_vector<int, gc_memory, 2, 2>;
using transient_t = typename vector_t::transient_type;
auto v0 = vector_t{};
auto t0 = transient_t{};
auto t2 = transient_t{};
v0 = v0.push_back(42);
t2 = v0.transient();
v0 = v0 + v0;
v0 = v0 + v0;
v0 = v0 + v0;
v0 = v0 + v0;
t0 = v0.transient();
t0 = v0.transient();
t0.append(std::move(t2));
t2 = {};
t2.append(std::move(t0));
}
#ifndef IMMER_DISABLE_FUZZER_DUE_TO_GCC_BUG
SECTION("")
{
constexpr std::uint8_t input[] = {
0x0, 0x2, 0x0, 0x2, 0x0, 0x0, 0x0, 0x6, 0x0, 0x0, 0x0,
0x6, 0x0, 0x0, 0x0, 0x9d, 0x0, 0x6, 0x0, 0x0, 0x0, 0x6,
0x0, 0x0, 0x0, 0x9d, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf7,
0xc5, 0x0, 0xa, 0xa, 0x0, 0xfa, 0xe7, 0xff, 0xe7, 0xff, 0x0,
0xe, 0x2, 0x9, 0x0, 0x28, 0x2, 0xe, 0x0, 0x0, 0x2, 0xd,
0x0, 0x0, 0x28, 0x0, 0xd, 0x2, 0x5, 0x0, 0x2,
};
CHECK(run_input(input, sizeof(input)) == 0);
}
#endif
SECTION("simplified")
{
using vector_t = immer::flex_vector<int, gc_memory, 2, 2>;
using transient_t = typename vector_t::transient_type;
auto v0 = vector_t{};
auto t0 = transient_t{};
auto t2 = transient_t{};
v0 = v0.push_back(42);
v0 = v0.push_back(42);
v0 = v0 + v0;
t0 = v0.transient();
t2.prepend(std::move(t0));
t0 = {};
t0 = v0.transient();
t0.push_back(13);
t2.append(std::move(t0));
t0 = {};
t0 = v0.transient();
t0.push_back(13);
t2.prepend(std::move(t0));
t0 = {};
}
#if !IMMER_DISABLE_FUZZER_DUE_TO_GCC_BUG
SECTION("")
{
return;
constexpr std::uint8_t input[] = {
0x0, 0x2, 0x0, 0x0, 0x2, 0xb7, 0x1, 0x36, 0x40, 0x0, 0x0,
0x0, 0x0, 0xb6, 0x0, 0x2, 0x0, 0x0, 0x6, 0xe, 0x0, 0x0,
0xfe, 0x0, 0x0, 0xff, 0x0, 0x2, 0xc, 0xff, 0xfc, 0x29, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x2, 0xe, 0xff, 0xfc, 0x29, 0x0,
0x0, 0x0, 0x0, 0x0, 0x7, 0x3, 0x0, 0x0, 0x2, 0xc, 0x2,
0xc, 0x0, 0xd, 0x0, 0x0, 0x0, 0x0, 0x25, 0x6,
};
CHECK(run_input(input, sizeof(input)) == 0);
}
#endif
}
TEST_CASE("bug: aegsdas")
{
SECTION("simplified")
{
using vector_t = immer::flex_vector<int, gc_memory, 2, 2>;
using transient_t = typename vector_t::transient_type;
auto v2 = vector_t{};
auto t0 = transient_t{};
auto t1 = transient_t{};
v2 = v2.push_back(42);
v2 = v2.push_back(42);
v2 = v2.push_back(42);
v2 = v2.push_back(42);
v2 = v2.push_back(42);
t0 = v2.transient();
t1.prepend(t0);
t1.prepend(t0);
t1.prepend(t0);
t0.prepend(std::move(t1));
t1 = {};
}
#ifndef IMMER_DISABLE_FUZZER_DUE_TO_GCC_BUG
SECTION("")
{
constexpr std::uint8_t input[] = {
0xff, 0xff, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2,
0x82, 0x2, 0x2, 0x2, 0x2, 0x2, 0x2, 0x0, 0x0, 0x3d, 0x0,
0x0, 0x0, 0x2, 0x84, 0x0, 0x3b, 0x1, 0xb, 0x0, 0xa, 0x1,
0xb, 0x0, 0x0, 0x3, 0x2, 0x0, 0x3b, 0x1, 0xb, 0x1, 0x0,
0x0, 0xc, 0xb, 0x1, 0x8, 0xff, 0xff, 0xfc, 0xfd, 0x0, 0x3b,
0x3, 0x2, 0x0, 0x3b, 0x1, 0x9, 0x1, 0x3b,
};
CHECK(run_input(input, sizeof(input)) == 0);
}
#endif
}
|