webrtc_m130/test/fuzzers/flexfec_receiver_fuzzer.cc
Philipp Hancke 902bc24b6f iwyu test/fuzzers
Note that this needs to be done with a work directory that supports
fuzzer builds, otherwise IWYU will bail out with complaints about
find-bad-constructs and raw-ptr-plugin

Some manual work was required to resolve the TaskQueueFactory which
is forward-declared by environment which required a manual include
of the header file.

The DcSctp packet fuzzer was also updated use the
disable_checksum_verification option which was moved to the
DcSctpOptions struct.

vp9_encoder_references_fuzzer was trying to include libvpx includes
which had to be reverted.

BUG=webrtc:42226242

Change-Id: I9fdcf979e73fdee77106c4583faff21ca7abf19f
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/375840
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Danil Chapovalov <danilchap@webrtc.org>
Commit-Queue: Philipp Hancke <phancke@meta.com>
Cr-Commit-Position: refs/heads/main@{#43873}
2025-02-11 12:04:42 -08:00

76 lines
2.4 KiB
C++

/*
* Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include <cstddef>
#include <cstdint>
#include <cstring>
#include <memory>
#include "modules/rtp_rtcp/include/flexfec_receiver.h"
#include "modules/rtp_rtcp/include/recovered_packet_receiver.h"
#include "modules/rtp_rtcp/include/rtp_rtcp_defines.h"
#include "modules/rtp_rtcp/source/byte_io.h"
#include "modules/rtp_rtcp/source/rtp_packet_received.h"
namespace webrtc {
namespace {
class DummyCallback : public RecoveredPacketReceiver {
void OnRecoveredPacket(const RtpPacketReceived& packet) override {}
};
} // namespace
void FuzzOneInput(const uint8_t* data, size_t size) {
constexpr size_t kMinDataNeeded = 12;
if (size < kMinDataNeeded || size > 2000) {
return;
}
uint32_t flexfec_ssrc;
memcpy(&flexfec_ssrc, data + 0, 4);
uint16_t flexfec_seq_num;
memcpy(&flexfec_seq_num, data + 4, 2);
uint32_t media_ssrc;
memcpy(&media_ssrc, data + 6, 4);
uint16_t media_seq_num;
memcpy(&media_seq_num, data + 10, 2);
DummyCallback callback;
FlexfecReceiver receiver(flexfec_ssrc, media_ssrc, &callback);
std::unique_ptr<uint8_t[]> packet;
size_t packet_length;
size_t i = kMinDataNeeded;
while (i < size) {
packet_length = kRtpHeaderSize + data[i++];
packet = std::unique_ptr<uint8_t[]>(new uint8_t[packet_length]);
if (i + packet_length >= size) {
break;
}
memcpy(packet.get(), data + i, packet_length);
i += packet_length;
if (i < size && data[i++] % 2 == 0) {
// Simulate FlexFEC packet.
ByteWriter<uint16_t>::WriteBigEndian(packet.get() + 2, flexfec_seq_num++);
ByteWriter<uint32_t>::WriteBigEndian(packet.get() + 8, flexfec_ssrc);
} else {
// Simulate media packet.
ByteWriter<uint16_t>::WriteBigEndian(packet.get() + 2, media_seq_num++);
ByteWriter<uint32_t>::WriteBigEndian(packet.get() + 8, media_ssrc);
}
RtpPacketReceived parsed_packet;
if (parsed_packet.Parse(packet.get(), packet_length)) {
receiver.OnRtpPacket(parsed_packet);
}
}
}
} // namespace webrtc