OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 #include "webrtc/base/logging.h" | |
11 | 10 |
12 // This file is intended to provide a common interface for fuzzing functions, so | 11 // This file is intended to provide a common interface for fuzzing functions, so |
13 // whether we're running fuzzing under libFuzzer or DrFuzz the webrtc functions | 12 // whether we're running fuzzing under libFuzzer or DrFuzz the webrtc functions |
14 // can remain the same. | 13 // can remain the same. |
15 // TODO(pbos): Implement FuzzOneInput() for more than one platform (currently | 14 // TODO(pbos): Implement FuzzOneInput() for more than one platform (currently |
16 // libFuzzer). | 15 // libFuzzer). |
17 | 16 |
17 #include "webrtc/base/logging.h" | |
18 | |
19 namespace { | |
20 bool g_initialized = false; | |
21 void InitializeWebRtcFuzzDefaults() { | |
22 if (g_initialized) | |
23 return; | |
24 // Remove default logging to prevent huge slowdowns. | |
25 // TODO(pbos): Disable in Chromium: http://crbug.com/561667 | |
26 #if !defined(WEBRTC_CHROMIUM_BUILD) | |
Henrik Grunell WebRTC
2015/11/26 12:06:00
Do you plan to modify this function when disabling
pbos-webrtc
2015/11/26 12:23:42
This exact code should work in Chromium, but curre
Henrik Grunell WebRTC
2015/11/26 12:59:58
I see. It wasn't really clear reading the todo. :)
| |
27 rtc::LogMessage::LogToDebug(rtc::LS_NONE); | |
28 #endif // !defined(WEBRTC_CHROMIUM_BUILD) | |
29 g_initialized = true; | |
30 } | |
31 } | |
32 | |
18 namespace webrtc { | 33 namespace webrtc { |
19 extern void FuzzOneInput(const uint8_t* data, size_t size); | 34 extern void FuzzOneInput(const uint8_t* data, size_t size); |
20 } // namespace webrtc | 35 } // namespace webrtc |
21 | 36 |
22 extern "C" int LLVMFuzzerTestOneInput(const unsigned char *data, size_t size) { | 37 extern "C" int LLVMFuzzerTestOneInput(const unsigned char *data, size_t size) { |
23 // TODO(pbos): Figure out whether this can be moved to common startup code and | 38 InitializeWebRtcFuzzDefaults(); |
24 // not be done per-input. | |
25 // Remove default logging to prevent huge slowdowns. | |
26 rtc::LogMessage::LogToDebug(rtc::LS_NONE); | |
27 webrtc::FuzzOneInput(data, size); | 39 webrtc::FuzzOneInput(data, size); |
28 return 0; | 40 return 0; |
29 } | 41 } |
OLD | NEW |