ldc/driver/cl_options_sanitizers.cpp
Johan Engelen 3b9665bac6
Add LeakSanitizer support with -fsanitize=leak (#4005)
* Add LeakSanitizer support

* Windows and FreeBSD do not support LSan yet

* Test LLVM >= 10 only with LSan
2022-06-26 20:12:38 +00:00

212 lines
6.8 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//===-- cl_options_sanitizers.cpp -------------------------------*- C++ -*-===//
//
// LDC the LLVM D compiler
//
// This file is distributed under the BSD-style LDC license. See the LICENSE
// file for details.
//
//===----------------------------------------------------------------------===//
//
// Creates and handles the -fsanitize=... and -fsanitize-coverage=...
// commandline options.
//
//===----------------------------------------------------------------------===//
#include "driver/cl_options_sanitizers.h"
#include "dmd/errors.h"
#include "dmd/declaration.h"
#include "dmd/dsymbol.h"
#include "dmd/mangle.h"
#include "llvm/ADT/StringSwitch.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/Support/SpecialCaseList.h"
#if LDC_LLVM_VER >= 1300
#include "llvm/Support/VirtualFileSystem.h"
#endif
namespace {
using namespace opts;
cl::list<std::string> fSanitize(
"fsanitize", cl::CommaSeparated,
cl::desc("Turn on runtime checks for various forms of undefined or "
"suspicious behavior."),
cl::value_desc("checks"));
cl::list<std::string> fSanitizeBlacklist(
"fsanitize-blacklist", cl::CommaSeparated,
cl::desc("Add <file> to the blacklist files for the sanitizers."),
cl::value_desc("file"));
std::unique_ptr<llvm::SpecialCaseList> sanitizerBlacklist;
cl::list<std::string> fSanitizeCoverage(
"fsanitize-coverage", cl::CommaSeparated,
cl::desc("Specify the type of coverage instrumentation for -fsanitize"),
cl::value_desc("type"));
llvm::SanitizerCoverageOptions sanitizerCoverageOptions;
SanitizerBits parseFSanitizeCmdlineParameter() {
SanitizerBits retval = 0;
for (const auto &name : fSanitize) {
SanitizerCheck check = parseSanitizerName(name, [&name] {
error(Loc(), "Unrecognized -fsanitize value '%s'.", name.c_str());
});
retval |= SanitizerBits(check);
}
return retval;
}
void parseFSanitizeCoverageParameter(llvm::StringRef name,
llvm::SanitizerCoverageOptions &opts) {
if (name == "func") {
opts.CoverageType = std::max(opts.CoverageType,
llvm::SanitizerCoverageOptions::SCK_Function);
} else if (name == "bb") {
opts.CoverageType =
std::max(opts.CoverageType, llvm::SanitizerCoverageOptions::SCK_BB);
} else if (name == "edge") {
opts.CoverageType =
std::max(opts.CoverageType, llvm::SanitizerCoverageOptions::SCK_Edge);
} else if (name == "indirect-calls") {
opts.IndirectCalls = true;
} else if (name == "trace-bb") {
opts.TraceBB = true;
}
else if (name == "trace-cmp") {
opts.TraceCmp = true;
}
else if (name == "trace-div") {
opts.TraceDiv = true;
}
else if (name == "trace-gep") {
opts.TraceGep = true;
}
else if (name == "8bit-counters") {
opts.Use8bitCounters = true;
}
else if (name == "trace-pc") {
opts.TracePC = true;
}
else if (name == "trace-pc-guard") {
opts.TracePCGuard = true;
}
else if (name == "inline-8bit-counters") {
opts.Inline8bitCounters = true;
}
else if (name == "no-prune") {
opts.NoPrune = true;
}
else if (name == "pc-table") {
opts.PCTable = true;
}
else {
error(Loc(), "Unrecognized -fsanitize-coverage option '%s'.", name.str().c_str());
}
}
void parseFSanitizeCoverageCmdlineParameter(llvm::SanitizerCoverageOptions &opts) {
for (const auto &name : fSanitizeCoverage) {
// Enable CoverageSanitizer when one or more -fsanitize-coverage parameters are passed
enabledSanitizers |= CoverageSanitizer;
parseFSanitizeCoverageParameter(name, opts);
}
}
} // anonymous namespace
namespace opts {
SanitizerBits enabledSanitizers = 0;
// Parse sanitizer name passed on commandline and return the corresponding
// sanitizer bits.
SanitizerCheck parseSanitizerName(llvm::StringRef name,
std::function<void()> actionUponError) {
SanitizerCheck parsedValue = llvm::StringSwitch<SanitizerCheck>(name)
.Case("address", AddressSanitizer)
.Case("fuzzer", FuzzSanitizer)
.Case("leak", LeakSanitizer)
.Case("memory", MemorySanitizer)
.Case("thread", ThreadSanitizer)
.Default(NoneSanitizer);
if (parsedValue == NoneSanitizer) {
actionUponError();
}
return parsedValue;
}
void initializeSanitizerOptionsFromCmdline()
{
enabledSanitizers |= parseFSanitizeCmdlineParameter();
auto &sancovOpts = sanitizerCoverageOptions;
// The Fuzz sanitizer implies -fsanitize-coverage=inline-8bit-counters,indirect-calls,trace-cmp,pc-table
if (isSanitizerEnabled(FuzzSanitizer)) {
enabledSanitizers |= CoverageSanitizer;
sancovOpts.Inline8bitCounters = true;
sancovOpts.PCTable = true;
sancovOpts.IndirectCalls = true;
sancovOpts.TraceCmp = true;
}
parseFSanitizeCoverageCmdlineParameter(sancovOpts);
// trace-pc/trace-pc-guard/inline-8bit-counters without specifying the
// insertion type implies edge
if ((sancovOpts.CoverageType == llvm::SanitizerCoverageOptions::SCK_None) &&
(sancovOpts.TracePC || sancovOpts.TracePCGuard ||
sancovOpts.Inline8bitCounters)) {
sancovOpts.CoverageType = llvm::SanitizerCoverageOptions::SCK_Edge;
}
if (isAnySanitizerEnabled() && !fSanitizeBlacklist.empty()) {
std::string loadError;
sanitizerBlacklist =
llvm::SpecialCaseList::create(fSanitizeBlacklist,
#if LDC_LLVM_VER >= 1000
*llvm::vfs::getRealFileSystem(),
#endif
loadError);
if (!sanitizerBlacklist)
error(Loc(), "-fsanitize-blacklist error: %s", loadError.c_str());
}
}
llvm::SanitizerCoverageOptions getSanitizerCoverageOptions() {
return sanitizerCoverageOptions;
}
// Output to `hash_os` all optimization settings that influence object code
// output and that are not observable in the IR before running LLVM passes. This
// is used to calculate the hash use for caching that uniquely identifies the
// object file output.
void outputSanitizerSettings(llvm::raw_ostream &hash_os) {
hash_os << SanitizerBits(enabledSanitizers);
hash_os.write(reinterpret_cast<char *>(&sanitizerCoverageOptions),
sizeof(sanitizerCoverageOptions));
}
bool functionIsInSanitizerBlacklist(FuncDeclaration *funcDecl) {
if (!sanitizerBlacklist)
return false;
auto funcName = mangleExact(funcDecl);
auto fileName = funcDecl->loc.filename;
// TODO: LLVM supports sections (e.g. "[address]") in the blacklist file to
// only blacklist a function for a particular sanitizer. We could make use of
// that too.
return sanitizerBlacklist->inSection(/*Section=*/"", "fun", funcName) ||
sanitizerBlacklist->inSection(/*Section=*/"", "src", fileName);
}
} // namespace opts