mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
Add fuzzer for Rust demangler
Reviewed By: dblaikie Differential Revision: https://reviews.llvm.org/D101823
This commit is contained in:
parent
00da536b13
commit
944986d882
10
tools/llvm-rust-demangle-fuzzer/CMakeLists.txt
Normal file
10
tools/llvm-rust-demangle-fuzzer/CMakeLists.txt
Normal file
@ -0,0 +1,10 @@
|
||||
set(LLVM_LINK_COMPONENTS
|
||||
Demangle
|
||||
FuzzMutate
|
||||
Support
|
||||
)
|
||||
|
||||
add_llvm_fuzzer(llvm-rust-demangle-fuzzer
|
||||
llvm-rust-demangle-fuzzer.cpp
|
||||
DUMMY_MAIN DummyDemanglerFuzzer.cpp
|
||||
)
|
18
tools/llvm-rust-demangle-fuzzer/DummyDemanglerFuzzer.cpp
Normal file
18
tools/llvm-rust-demangle-fuzzer/DummyDemanglerFuzzer.cpp
Normal file
@ -0,0 +1,18 @@
|
||||
//===-- DummyDemanglerFuzzer.cpp - Entry point to sanity check the fuzzer -===//
|
||||
//
|
||||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
||||
// See https://llvm.org/LICENSE.txt for license information.
|
||||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// 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);
|
||||
}
|
@ -0,0 +1,21 @@
|
||||
//===--- llvm-demangle-fuzzer.cpp - Fuzzer for the Rust Demangler ---------===//
|
||||
//
|
||||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
||||
// See https://llvm.org/LICENSE.txt for license information.
|
||||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/Demangle/Demangle.h"
|
||||
|
||||
#include <cstdint>
|
||||
#include <cstdlib>
|
||||
|
||||
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
|
||||
std::string NullTerminatedString((const char *)Data, Size);
|
||||
int Status = 0;
|
||||
char *Demangled = llvm::rustDemangle(NullTerminatedString.c_str(), nullptr,
|
||||
nullptr, &Status);
|
||||
std::free(Demangled);
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user