// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <fuzzer/FuzzedDataProvider.h>
#include <stddef.h>
#include <stdint.h>
#include <memory>
#include <vector>
#include "base/containers/span.h"
#include "base/files/file_path.h"
#include "base/logging.h"
#include "base/time/time.h"
#include "net/dns/dns_response.h"
#include "net/dns/record_parsed.h"
void InitLogging() {
// For debugging, it may be helpful to enable verbose logging by setting the
// minimum log level to (-LOGGING_FATAL).
logging::SetMinLogLevel(logging::LOGGING_FATAL);
logging::LoggingSettings settings;
settings.logging_dest =
logging::LOG_TO_SYSTEM_DEBUG_LOG | logging::LOG_TO_STDERR;
logging::InitLogging(settings);
}
// Entry point for LibFuzzer.
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data_ptr, size_t size) {
// SAFETY: libfuzzer provides a valid pointer and size pair.
auto data = UNSAFE_BUFFERS(base::span(data_ptr, size));
InitLogging();
FuzzedDataProvider data_provider(data.data(), data.size());
size_t num_records = data_provider.ConsumeIntegral<size_t>();
std::vector<uint8_t> packet = data_provider.ConsumeRemainingBytes<uint8_t>();
net::DnsRecordParser parser(packet, /*offset=*/0, num_records);
if (!parser.IsValid()) {
return 0;
}
base::Time time;
std::unique_ptr<const net::RecordParsed> record_parsed;
do {
record_parsed = net::RecordParsed::CreateFrom(&parser, time);
} while (record_parsed);
net::DnsResourceRecord record;
while (parser.ReadRecord(&record)) {
}
return 0;
}