blob: ed17ba672fd9980a8989677d26710c7e4f654cc1 [file] [log] [blame]
// Copyright 2021 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <base/bind.h>
#include <base/logging.h>
#include <fuzzer/FuzzedDataProvider.h>
#include "shill/net/attribute_list.h"
#include "shill/net/byte_string.h"
#include "shill/net/netlink_attribute.h"
namespace shill {
class Environment {
public:
Environment() { logging::SetMinLogLevel(logging::LOGGING_FATAL); }
};
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
static Environment env;
FuzzedDataProvider provider(data, size);
size_t offset = provider.ConsumeIntegral<size_t>();
int log_level = provider.ConsumeIntegralInRange<int>(0, 8);
int indent = provider.ConsumeIntegralInRange<int>(0, 1024);
ByteString payload(provider.ConsumeRemainingBytes<uint8_t>());
AttributeListRefPtr attributes(new AttributeList);
attributes->Decode(payload, offset,
base::Bind(&NetlinkAttribute::NewControlAttributeFromId));
attributes->Encode();
attributes->Print(log_level, indent);
return 0;
}
} // namespace shill