Manuel Klimek | 667c152 | 2015-03-28 00:07:39 +0000 | [diff] [blame] | 1 | //===-- ClangFuzzer.cpp - Fuzz Clang --------------------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | /// |
| 10 | /// \file |
| 11 | /// \brief This file implements a function that runs Clang on a single |
| 12 | /// input. This function is then linked into the Fuzzer library. |
| 13 | /// |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
| 16 | #include "clang/Tooling/Tooling.h" |
| 17 | #include "clang/Frontend/FrontendActions.h" |
| 18 | #include "clang/Frontend/CompilerInstance.h" |
Mehdi Amini | 320a5a6 | 2016-07-18 20:33:09 +0000 | [diff] [blame] | 19 | #include "clang/Lex/PreprocessorOptions.h" |
Manuel Klimek | bea7dfb | 2015-03-28 00:42:36 +0000 | [diff] [blame] | 20 | #include "llvm/Option/Option.h" |
Manuel Klimek | 667c152 | 2015-03-28 00:07:39 +0000 | [diff] [blame] | 21 | |
| 22 | using namespace clang; |
| 23 | |
Kostya Serebryany | e39fec5 | 2015-10-02 23:34:37 +0000 | [diff] [blame] | 24 | extern "C" int LLVMFuzzerTestOneInput(uint8_t *data, size_t size) { |
Manuel Klimek | 667c152 | 2015-03-28 00:07:39 +0000 | [diff] [blame] | 25 | std::string s((const char *)data, size); |
Manuel Klimek | bea7dfb | 2015-03-28 00:42:36 +0000 | [diff] [blame] | 26 | llvm::opt::ArgStringList CC1Args; |
| 27 | CC1Args.push_back("-cc1"); |
Kostya Serebryany | 7862b01 | 2015-05-04 21:14:45 +0000 | [diff] [blame] | 28 | CC1Args.push_back("./test.cc"); |
Manuel Klimek | 667c152 | 2015-03-28 00:07:39 +0000 | [diff] [blame] | 29 | llvm::IntrusiveRefCntPtr<FileManager> Files( |
| 30 | new FileManager(FileSystemOptions())); |
Manuel Klimek | 667c152 | 2015-03-28 00:07:39 +0000 | [diff] [blame] | 31 | IgnoringDiagConsumer Diags; |
Manuel Klimek | bea7dfb | 2015-03-28 00:42:36 +0000 | [diff] [blame] | 32 | IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions(); |
| 33 | DiagnosticsEngine Diagnostics( |
| 34 | IntrusiveRefCntPtr<clang::DiagnosticIDs>(new DiagnosticIDs()), &*DiagOpts, |
| 35 | &Diags, false); |
| 36 | std::unique_ptr<clang::CompilerInvocation> Invocation( |
| 37 | tooling::newInvocation(&Diagnostics, CC1Args)); |
| 38 | std::unique_ptr<llvm::MemoryBuffer> Input = |
| 39 | llvm::MemoryBuffer::getMemBuffer(s); |
Kostya Serebryany | 7862b01 | 2015-05-04 21:14:45 +0000 | [diff] [blame] | 40 | Invocation->getPreprocessorOpts().addRemappedFile("./test.cc", Input.release()); |
Manuel Klimek | bea7dfb | 2015-03-28 00:42:36 +0000 | [diff] [blame] | 41 | std::unique_ptr<tooling::ToolAction> action( |
| 42 | tooling::newFrontendActionFactory<clang::SyntaxOnlyAction>()); |
Alexey Samsonov | 2f640d9 | 2015-06-25 20:21:59 +0000 | [diff] [blame] | 43 | std::shared_ptr<PCHContainerOperations> PCHContainerOps = |
Adrian Prantl | d5aae93 | 2015-07-17 04:07:47 +0000 | [diff] [blame] | 44 | std::make_shared<PCHContainerOperations>(); |
Alexey Samsonov | 2f640d9 | 2015-06-25 20:21:59 +0000 | [diff] [blame] | 45 | action->runInvocation(Invocation.release(), Files.get(), PCHContainerOps, |
| 46 | &Diags); |
Kostya Serebryany | e39fec5 | 2015-10-02 23:34:37 +0000 | [diff] [blame] | 47 | return 0; |
Manuel Klimek | 667c152 | 2015-03-28 00:07:39 +0000 | [diff] [blame] | 48 | } |