mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
988580974c
Example of output: COVERAGE: COVERED: in DSO2(int) /pathto/DSO2.cpp:6 COVERED: in DSO2(int) /pathto/DSO2.cpp:8 COVERED: in DSO1(int) /pathto/DSO1.cpp:6 COVERED: in DSO1(int) /pathto/DSO1.cpp:8 COVERED: in LLVMFuzzerTestOneInput /pathto/DSOTestMain.cpp:16 COVERED: in LLVMFuzzerTestOneInput /pathto/DSOTestMain.cpp:19 COVERED: in LLVMFuzzerTestOneInput /pathto/DSOTestMain.cpp:25 COVERED: in LLVMFuzzerTestOneInput /pathto/DSOTestMain.cpp:26 MODULE_WITH_COVERAGE: /pathto/libLLVMFuzzer-DSO1.so UNCOVERED_LINE: in DSO1(int) /pathto/DSO1.cpp:9 UNCOVERED_FUNC: in Uncovered1() MODULE_WITH_COVERAGE: /pathto/libLLVMFuzzer-DSO2.so UNCOVERED_LINE: in DSO2(int) /pathto/DSO2.cpp:9 UNCOVERED_FUNC: in Uncovered2() MODULE_WITH_COVERAGE: /pathto/LLVMFuzzer-DSOTest UNCOVERED_LINE: in LLVMFuzzerTestOneInput /pathto/DSOTestMain.cpp:21 UNCOVERED_LINE: in LLVMFuzzerTestOneInput /pathto/DSOTestMain.cpp:27 UNCOVERED_FILE: /pathto/DSOTestExtra.cpp Several things are not perfect here: * we are using objdump+awk instead of sancov because sancov does not support DSOs yet. * this breaks in the presence of ASAN_OPTIONS=strip_path_prefix=... (need to implement another API to get the module name by PC) llvm-svn: 284554
129 lines
4.1 KiB
C++
129 lines
4.1 KiB
C++
//===- FuzzerDefs.h - Internal header for the Fuzzer ------------*- C++ -* ===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
// Basic definitions.
|
|
//===----------------------------------------------------------------------===//
|
|
#ifndef LLVM_FUZZER_DEFS_H
|
|
#define LLVM_FUZZER_DEFS_H
|
|
|
|
#include <cassert>
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
#include <cstring>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
// Platform detection.
|
|
#ifdef __linux__
|
|
#define LIBFUZZER_LINUX 1
|
|
#define LIBFUZZER_APPLE 0
|
|
#elif __APPLE__
|
|
#define LIBFUZZER_LINUX 0
|
|
#define LIBFUZZER_APPLE 1
|
|
#else
|
|
#error "Support for your platform has not been implemented"
|
|
#endif
|
|
|
|
#ifdef __x86_64
|
|
#define ATTRIBUTE_TARGET_POPCNT __attribute__((target("popcnt")))
|
|
#else
|
|
#define ATTRIBUTE_TARGET_POPCNT
|
|
#endif
|
|
|
|
namespace fuzzer {
|
|
|
|
template <class T> T Min(T a, T b) { return a < b ? a : b; }
|
|
template <class T> T Max(T a, T b) { return a > b ? a : b; }
|
|
|
|
class Random;
|
|
class Dictionary;
|
|
class DictionaryEntry;
|
|
class MutationDispatcher;
|
|
struct FuzzingOptions;
|
|
class InputCorpus;
|
|
struct InputInfo;
|
|
struct ExternalFunctions;
|
|
|
|
// Global interface to functions that may or may not be available.
|
|
extern ExternalFunctions *EF;
|
|
|
|
typedef std::vector<uint8_t> Unit;
|
|
typedef std::vector<Unit> UnitVector;
|
|
typedef int (*UserCallback)(const uint8_t *Data, size_t Size);
|
|
int FuzzerDriver(int *argc, char ***argv, UserCallback Callback);
|
|
|
|
bool IsFile(const std::string &Path);
|
|
long GetEpoch(const std::string &Path);
|
|
std::string FileToString(const std::string &Path);
|
|
Unit FileToVector(const std::string &Path, size_t MaxSize = 0,
|
|
bool ExitOnError = true);
|
|
void ReadDirToVectorOfUnits(const char *Path, std::vector<Unit> *V,
|
|
long *Epoch, size_t MaxSize, bool ExitOnError);
|
|
void WriteToFile(const Unit &U, const std::string &Path);
|
|
void CopyFileToErr(const std::string &Path);
|
|
void DeleteFile(const std::string &Path);
|
|
// Returns "Dir/FileName" or equivalent for the current OS.
|
|
std::string DirPlusFile(const std::string &DirPath,
|
|
const std::string &FileName);
|
|
|
|
void DupAndCloseStderr();
|
|
void CloseStdout();
|
|
void Printf(const char *Fmt, ...);
|
|
void PrintHexArray(const Unit &U, const char *PrintAfter = "");
|
|
void PrintHexArray(const uint8_t *Data, size_t Size,
|
|
const char *PrintAfter = "");
|
|
void PrintASCII(const uint8_t *Data, size_t Size, const char *PrintAfter = "");
|
|
void PrintASCII(const Unit &U, const char *PrintAfter = "");
|
|
|
|
void PrintPC(const char *SymbolizedFMT, const char *FallbackFMT, uintptr_t PC);
|
|
std::string DescribePC(const char *SymbolizedFMT, uintptr_t PC);
|
|
std::string Hash(const Unit &U);
|
|
void SetTimer(int Seconds);
|
|
void SetSigSegvHandler();
|
|
void SetSigBusHandler();
|
|
void SetSigAbrtHandler();
|
|
void SetSigIllHandler();
|
|
void SetSigFpeHandler();
|
|
void SetSigIntHandler();
|
|
void SetSigTermHandler();
|
|
std::string Base64(const Unit &U);
|
|
int ExecuteCommand(const std::string &Command);
|
|
bool ExecuteCommandAndReadOutput(const std::string &Command, std::string *Out);
|
|
|
|
size_t GetPeakRSSMb();
|
|
|
|
// Private copy of SHA1 implementation.
|
|
static const int kSHA1NumBytes = 20;
|
|
// Computes SHA1 hash of 'Len' bytes in 'Data', writes kSHA1NumBytes to 'Out'.
|
|
void ComputeSHA1(const uint8_t *Data, size_t Len, uint8_t *Out);
|
|
std::string Sha1ToString(const uint8_t Sha1[kSHA1NumBytes]);
|
|
|
|
// Changes U to contain only ASCII (isprint+isspace) characters.
|
|
// Returns true iff U has been changed.
|
|
bool ToASCII(uint8_t *Data, size_t Size);
|
|
bool IsASCII(const Unit &U);
|
|
bool IsASCII(const uint8_t *Data, size_t Size);
|
|
|
|
int NumberOfCpuCores();
|
|
int GetPid();
|
|
void SleepSeconds(int Seconds);
|
|
|
|
|
|
struct ScopedDoingMyOwnMemmem {
|
|
ScopedDoingMyOwnMemmem();
|
|
~ScopedDoingMyOwnMemmem();
|
|
};
|
|
|
|
inline uint8_t Bswap(uint8_t x) { return x; }
|
|
inline uint16_t Bswap(uint16_t x) { return __builtin_bswap16(x); }
|
|
inline uint32_t Bswap(uint32_t x) { return __builtin_bswap32(x); }
|
|
inline uint64_t Bswap(uint64_t x) { return __builtin_bswap64(x); }
|
|
|
|
} // namespace fuzzer
|
|
#endif // LLVM_FUZZER_DEFS_H
|