27 lines
864 B
C++
27 lines
864 B
C++
// 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 <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#include <fuzzer/FuzzedDataProvider.h>
|
|
|
|
#include <vector>
|
|
|
|
#include "net/websockets/websocket_frame_parser.h"
|
|
|
|
// Entry point for LibFuzzer.
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
|
|
FuzzedDataProvider fuzzed_data_provider(data, size);
|
|
net::WebSocketFrameParser parser;
|
|
std::vector<std::unique_ptr<net::WebSocketFrameChunk>> frame_chunks;
|
|
while (fuzzed_data_provider.remaining_bytes() > 0) {
|
|
size_t chunk_size = fuzzed_data_provider.ConsumeIntegralInRange(1, 32);
|
|
std::vector<char> chunk =
|
|
fuzzed_data_provider.ConsumeBytes<char>(chunk_size);
|
|
parser.Decode(chunk.data(), chunk.size(), &frame_chunks);
|
|
}
|
|
return 0;
|
|
}
|