blob: 54f71de455b08de94913c22f360d6f43def909cf [file]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/feedback/redaction_tool/redaction_tool.h"
#include <fuzzer/FuzzedDataProvider.h>
#include <stddef.h>
#include <stdint.h>
#include <string>
#include <vector>
#include "base/compiler_specific.h"
#include "base/containers/heap_array.h"
namespace {
constexpr int kArbitraryMaxNameLength = 4096;
} // namespace
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
FuzzedDataProvider provider(data, size);
int first_party_extension_id_count = provider.ConsumeIntegralInRange(-1, 50);
// This is the storage for the strings inside
// `unowned_first_party_extension_ids`. This is to make sure the
// char *'s we pass to the RedactionTool constructor are deleted
// correctly -- they must be deleted after redactor is destructed, but
// not leaked.
std::vector<std::string> first_party_extension_id_store;
// The first_party_extension_ids we pass to the RedactionTool constructor.
// This owns the array but not the pointed-to strings. Note that if
// first_party_extension_id_count is -1, this is not set so we pass nullptr to
// the constructor; that's deliberate.
base::HeapArray<const char*> unowned_first_party_extension_ids;
if (first_party_extension_id_count >= 0) {
first_party_extension_id_store.reserve(first_party_extension_id_count);
unowned_first_party_extension_ids = base::HeapArray<const char*>::WithSize(
first_party_extension_id_count + 1);
for (int i = 0; i < first_party_extension_id_count; ++i) {
first_party_extension_id_store.emplace_back(
provider.ConsumeRandomLengthString(kArbitraryMaxNameLength));
unowned_first_party_extension_ids[i] =
first_party_extension_id_store[i].c_str();
}
unowned_first_party_extension_ids[first_party_extension_id_count] = nullptr;
}
redaction::RedactionTool redactor(
unowned_first_party_extension_ids.as_span());
redactor.EnableCreditCardRedaction(true);
redactor.Redact(provider.ConsumeRemainingBytesAsString());
return 0;
}