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
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40284755): Remove this and spanify to fix the errors.
#pragma allow_unsafe_buffers
#endif
#include "base/pickle.h"
#include <fuzzer/FuzzedDataProvider.h>
#include <string_view>
#include <tuple>
#include "base/containers/span.h"
namespace {
constexpr int kIterations = 16;
constexpr int kReadControlBytes = 32;
constexpr int kReadDataTypes = 17;
constexpr int kMaxReadLength = 1024;
constexpr int kMaxSkipBytes = 1024;
} // namespace
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
if (size < kReadControlBytes) {
return 0;
}
// Use the first kReadControlBytes bytes of the fuzzer input to control how
// the pickled data is read.
FuzzedDataProvider data_provider(data, kReadControlBytes);
data += kReadControlBytes;
size -= kReadControlBytes;
base::Pickle pickle =
base::Pickle::WithUnownedBuffer(UNSAFE_BUFFERS(base::span(data, size)));
base::PickleIterator iter(pickle);
for (int i = 0; i < kIterations; i++) {
uint8_t read_type = data_provider.ConsumeIntegral<uint8_t>();
switch (read_type % kReadDataTypes) {
case 0: {
bool result = 0;
std::ignore = iter.ReadBool(&result);
break;
}
case 1: {
int result = 0;
std::ignore = iter.ReadInt(&result);
break;
}
case 2: {
long result = 0;
std::ignore = iter.ReadLong(&result);
break;
}
case 3: {
uint16_t result = 0;
std::ignore = iter.ReadUInt16(&result);
break;
}
case 4: {
uint32_t result = 0;
std::ignore = iter.ReadUInt32(&result);
break;
}
case 5: {
int64_t result = 0;
std::ignore = iter.ReadInt64(&result);
break;
}
case 6: {
uint64_t result = 0;
std::ignore = iter.ReadUInt64(&result);
break;
}
case 7: {
float result = 0;
std::ignore = iter.ReadFloat(&result);
break;
}
case 8: {
double result = 0;
std::ignore = iter.ReadDouble(&result);
break;
}
case 9: {
std::string result;
std::ignore = iter.ReadString(&result);
break;
}
case 10: {
std::string_view result;
std::ignore = iter.ReadStringPiece(&result);
break;
}
case 11: {
std::u16string result;
std::ignore = iter.ReadString16(&result);
break;
}
case 12: {
std::u16string_view result;
std::ignore = iter.ReadStringPiece16(&result);
break;
}
case 13: {
const char* data_result = nullptr;
size_t length_result = 0;
std::ignore = iter.ReadData(&data_result, &length_result);
break;
}
case 14: {
const char* data_result = nullptr;
int read_length =
data_provider.ConsumeIntegralInRange(0, kMaxReadLength);
std::ignore =
iter.ReadBytes(&data_result, static_cast<size_t>(read_length));
break;
}
case 15: {
size_t result = 0;
std::ignore = iter.ReadLength(&result);
break;
}
case 16: {
std::ignore = iter.SkipBytes(static_cast<size_t>(
data_provider.ConsumeIntegralInRange(0, kMaxSkipBytes)));
break;
}
}
}
return 0;
}
|