Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(873)

Unified Diff: webrtc/test/fuzzers/rtp_header_fuzzer.cc

Issue 2062103002: Add a libfuzzer for RtpHeaderParser. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Update per code review Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/test/fuzzers/rtp_header_fuzzer.cc
diff --git a/webrtc/test/fuzzers/rtp_header_fuzzer.cc b/webrtc/test/fuzzers/rtp_header_fuzzer.cc
new file mode 100644
index 0000000000000000000000000000000000000000..95d090878835835726a11be01514761c4a3a8f8d
--- /dev/null
+++ b/webrtc/test/fuzzers/rtp_header_fuzzer.cc
@@ -0,0 +1,42 @@
+/*
+ * 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 <bitset>
+
+#include "webrtc/modules/rtp_rtcp/source/rtp_packet_received.h"
+#include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h"
+#include "webrtc/modules/rtp_rtcp/source/rtp_utility.h"
+
+namespace webrtc {
+void FuzzOneInput(const uint8_t* data, size_t size) {
+ if (size <= 1)
+ return;
+
+ // We decide which header extensions to register by reading one byte
+ // from the beginning of |data| and interpreting it as a bitmask
+ // over the RTPExtensionType enum. That byte shouldn't also be part
+ // of the packet, so we adjust |data| and |size| to remove it.
+ std::bitset<8> extensionMask(data[0]);
+ data++;
+ size--;
+
+ RtpPacketReceived::ExtensionManager extensions;
+ for (int i = 0; i < kNumberOfRtpHeaderExtensions; i++) {
+ if (extensionMask[i]) {
+ // We use i as the ID; it's used in negotiation so not relevant.
+ extensions.Register(static_cast<RTPExtensionType>(i), i);
+ }
+ }
+
+ RTPHeader rtp_header;
+ RtpUtility::RtpHeaderParser rtp_parser(data, size);
+ rtp_parser.Parse(&rtp_header, &extensions);
+}
+} // namespace webrtc
« webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h ('K') | « webrtc/test/fuzzers/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698