blob: 81b2f2fe197e3f0c21b558d7cccf29d1b3d7be72 [file] [log] [blame]
Manuel Klimek667c1522015-03-28 00:07:39 +00001//===-- 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"
Manuel Klimekbea7dfb2015-03-28 00:42:36 +000019#include "llvm/Option/Option.h"
Manuel Klimek667c1522015-03-28 00:07:39 +000020
21using namespace clang;
22
Kostya Serebryany9ba68b32015-05-07 04:01:39 +000023extern "C" void LLVMFuzzerTestOneInput(uint8_t *data, size_t size) {
Manuel Klimek667c1522015-03-28 00:07:39 +000024 std::string s((const char *)data, size);
Manuel Klimekbea7dfb2015-03-28 00:42:36 +000025 llvm::opt::ArgStringList CC1Args;
26 CC1Args.push_back("-cc1");
Kostya Serebryany7862b012015-05-04 21:14:45 +000027 CC1Args.push_back("./test.cc");
Manuel Klimek667c1522015-03-28 00:07:39 +000028 llvm::IntrusiveRefCntPtr<FileManager> Files(
29 new FileManager(FileSystemOptions()));
Manuel Klimek667c1522015-03-28 00:07:39 +000030 IgnoringDiagConsumer Diags;
Manuel Klimekbea7dfb2015-03-28 00:42:36 +000031 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions();
32 DiagnosticsEngine Diagnostics(
33 IntrusiveRefCntPtr<clang::DiagnosticIDs>(new DiagnosticIDs()), &*DiagOpts,
34 &Diags, false);
35 std::unique_ptr<clang::CompilerInvocation> Invocation(
36 tooling::newInvocation(&Diagnostics, CC1Args));
37 std::unique_ptr<llvm::MemoryBuffer> Input =
38 llvm::MemoryBuffer::getMemBuffer(s);
Kostya Serebryany7862b012015-05-04 21:14:45 +000039 Invocation->getPreprocessorOpts().addRemappedFile("./test.cc", Input.release());
Manuel Klimekbea7dfb2015-03-28 00:42:36 +000040 std::unique_ptr<tooling::ToolAction> action(
41 tooling::newFrontendActionFactory<clang::SyntaxOnlyAction>());
Alexey Samsonov2f640d92015-06-25 20:21:59 +000042 std::shared_ptr<PCHContainerOperations> PCHContainerOps =
Adrian Prantld5aae932015-07-17 04:07:47 +000043 std::make_shared<PCHContainerOperations>();
Alexey Samsonov2f640d92015-06-25 20:21:59 +000044 action->runInvocation(Invocation.release(), Files.get(), PCHContainerOps,
45 &Diags);
Manuel Klimek667c1522015-03-28 00:07:39 +000046}