]> granicus.if.org Git - llvm/commitdiff
[llvm-special-case-list-fuzzer] Add fuzz target.
authorMatt Morehouse <mascasa@google.com>
Tue, 17 Oct 2017 17:43:34 +0000 (17:43 +0000)
committerMatt Morehouse <mascasa@google.com>
Tue, 17 Oct 2017 17:43:34 +0000 (17:43 +0000)
Summary: Create a fuzzer for sanitizer blacklists.

Patch by: hctim

Reviewers: morehouse

Reviewed By: morehouse

Subscribers: llvm-commits, mgorny, kcc

Differential Revision: https://review.llvm.org/D38981

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@316014 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-special-case-list-fuzzer/CMakeLists.txt [new file with mode: 0644]
tools/llvm-special-case-list-fuzzer/DummySpecialCaseListFuzzer.cpp [new file with mode: 0644]
tools/llvm-special-case-list-fuzzer/special-case-list-fuzzer.cpp [new file with mode: 0644]

diff --git a/tools/llvm-special-case-list-fuzzer/CMakeLists.txt b/tools/llvm-special-case-list-fuzzer/CMakeLists.txt
new file mode 100644 (file)
index 0000000..f4ebf7a
--- /dev/null
@@ -0,0 +1,8 @@
+set(LLVM_LINK_COMPONENTS
+  Support
+  FuzzMutate
+)
+
+add_llvm_fuzzer(llvm-special-case-list-fuzzer
+  special-case-list-fuzzer.cpp
+  DUMMY_MAIN DummySpecialCaseListFuzzer.cpp)
diff --git a/tools/llvm-special-case-list-fuzzer/DummySpecialCaseListFuzzer.cpp b/tools/llvm-special-case-list-fuzzer/DummySpecialCaseListFuzzer.cpp
new file mode 100644 (file)
index 0000000..e447419
--- /dev/null
@@ -0,0 +1,19 @@
+//===--- DummySpecialCaseListFuzzer.cpp -----------------------------------===//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// Implementation of main so we can build and test without linking libFuzzer.
+//
+//===----------------------------------------------------------------------===//
+
+#include "llvm/FuzzMutate/FuzzerCLI.h"
+
+extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
+int main(int argc, char *argv[]) {
+  return llvm::runFuzzerOnInputs(argc, argv, LLVMFuzzerTestOneInput);
+}
diff --git a/tools/llvm-special-case-list-fuzzer/special-case-list-fuzzer.cpp b/tools/llvm-special-case-list-fuzzer/special-case-list-fuzzer.cpp
new file mode 100644 (file)
index 0000000..e7e310b
--- /dev/null
@@ -0,0 +1,26 @@
+//===--- special-case-list-fuzzer.cpp - Fuzzer for special case lists -----===//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#include "llvm/Support/MemoryBuffer.h"
+#include "llvm/Support/SpecialCaseList.h"
+
+#include <cstdlib>
+
+extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
+  std::unique_ptr<llvm::MemoryBuffer> Buf = llvm::MemoryBuffer::getMemBuffer(
+      llvm::StringRef(reinterpret_cast<const char *>(Data), Size), "", false);
+
+  if (!Buf)
+    return 0;
+
+  std::string Error;
+  llvm::SpecialCaseList::create(Buf.get(), Error);
+
+  return 0;
+}