mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
a1f9d2420f
Previously, some fuzzers were generating an excessive amount of debug logging. This change explicitly disables debug logging for all fuzzers. This allows higher test throughput and makes the logs easier to read when fuzzing locally.
55 lines
1.4 KiB
C++
55 lines
1.4 KiB
C++
/*
|
|
* Copyright (c) 2022, Idan Horowitz <idan.horowitz@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/MemoryStream.h>
|
|
#include <AK/NonnullOwnPtr.h>
|
|
#include <LibArchive/TarStream.h>
|
|
#include <stdio.h>
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(uint8_t const* data, size_t size)
|
|
{
|
|
AK::set_debug_enabled(false);
|
|
|
|
auto input_stream_or_error = try_make<FixedMemoryStream>(ReadonlyBytes { data, size });
|
|
|
|
if (input_stream_or_error.is_error())
|
|
return 0;
|
|
|
|
auto tar_stream_or_error = Archive::TarInputStream::construct(input_stream_or_error.release_value());
|
|
|
|
if (tar_stream_or_error.is_error())
|
|
return 0;
|
|
|
|
auto tar_stream = tar_stream_or_error.release_value();
|
|
|
|
while (!tar_stream->finished()) {
|
|
auto const& header = tar_stream->header();
|
|
|
|
if (!header.content_is_like_extended_header()) {
|
|
if (tar_stream->advance().is_error())
|
|
return 0;
|
|
else
|
|
continue;
|
|
}
|
|
|
|
switch (header.type_flag()) {
|
|
case Archive::TarFileType::GlobalExtendedHeader:
|
|
case Archive::TarFileType::ExtendedHeader: {
|
|
auto result = tar_stream->for_each_extended_header([&](StringView, StringView) {});
|
|
if (result.is_error())
|
|
return 0;
|
|
break;
|
|
}
|
|
default:
|
|
return 0;
|
|
}
|
|
|
|
if (tar_stream->advance().is_error())
|
|
return 0;
|
|
}
|
|
|
|
return 0;
|
|
}
|