#include <stdint.h>
#include <memory>
#include <fuzzer/FuzzedDataProvider.h>
#include "base/functional/callback_helpers.h"
#include "base/logging.h"
#include "base/strings/string_piece.h"
#include "base/test/bind.h"
#include "remoting/base/protobuf_http_status.h"
#include "remoting/base/protobuf_http_stream_parser.h"
#include "third_party/protobuf/src/google/protobuf/stubs/logging.h"
class Environment {
public:
Environment() {
logging::SetMinLogLevel(logging::LOG_FATAL);
}
private:
google::protobuf::LogSilencer log_silencer_;
};
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
static Environment env;
FuzzedDataProvider provider(data, size);
std::unique_ptr<remoting::ProtobufHttpStreamParser> parser;
auto on_stream_closed = [&](const remoting::ProtobufHttpStatus&) {
parser.reset();
};
parser = std::make_unique<remoting::ProtobufHttpStreamParser>(
base::DoNothing(),
base::BindLambdaForTesting(on_stream_closed));
while (parser && provider.remaining_bytes() > 0) {
parser->Append(provider.ConsumeRandomLengthString());
}
return 0;
}