2013-07-10 00:03:17 +02:00
|
|
|
//===-- SpecialCaseList.cpp - special case list for sanitizers ------------===//
|
2012-03-15 00:22:10 +01:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2012-08-24 18:40:11 +02:00
|
|
|
// This is a utility class for instrumentation passes (like AddressSanitizer
|
|
|
|
// or ThreadSanitizer) to avoid instrumenting some functions or global
|
2013-07-10 00:03:17 +02:00
|
|
|
// variables, or to instrument some functions or global variables in a specific
|
|
|
|
// way, based on a user-supplied list.
|
2012-03-15 00:22:10 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-07-09 21:40:08 +02:00
|
|
|
#include "llvm/Support/SpecialCaseList.h"
|
2014-01-07 12:48:04 +01:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2012-03-15 00:22:10 +01:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
|
|
#include "llvm/Support/Regex.h"
|
2012-12-03 17:50:05 +01:00
|
|
|
#include <string>
|
2014-06-12 19:38:55 +02:00
|
|
|
#include <system_error>
|
2012-12-03 17:50:05 +01:00
|
|
|
#include <utility>
|
2012-03-15 00:22:10 +01:00
|
|
|
|
2017-09-26 00:11:11 +02:00
|
|
|
#include <stdio.h>
|
2012-03-15 00:22:10 +01:00
|
|
|
namespace llvm {
|
|
|
|
|
2017-09-26 00:11:11 +02:00
|
|
|
bool SpecialCaseList::Matcher::insert(std::string Regexp,
|
|
|
|
std::string &REError) {
|
2017-10-25 01:56:12 +02:00
|
|
|
if (Regexp.empty()) {
|
|
|
|
REError = "Supplied regexp was blank";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-09-26 00:11:11 +02:00
|
|
|
if (Regex::isLiteralERE(Regexp)) {
|
|
|
|
Strings.insert(Regexp);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
Trigrams.insert(Regexp);
|
|
|
|
|
|
|
|
// Replace * with .*
|
|
|
|
for (size_t pos = 0; (pos = Regexp.find('*', pos)) != std::string::npos;
|
|
|
|
pos += strlen(".*")) {
|
|
|
|
Regexp.replace(pos, strlen("*"), ".*");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that the regexp is valid.
|
|
|
|
Regex CheckRE(Regexp);
|
|
|
|
if (!CheckRE.isValid(REError))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!UncompiledRegEx.empty())
|
|
|
|
UncompiledRegEx += "|";
|
|
|
|
UncompiledRegEx += "^(" + Regexp + ")$";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpecialCaseList::Matcher::compile() {
|
|
|
|
if (!UncompiledRegEx.empty()) {
|
|
|
|
RegEx.reset(new Regex(UncompiledRegEx));
|
|
|
|
UncompiledRegEx.clear();
|
2013-08-05 19:48:04 +02:00
|
|
|
}
|
2017-09-26 00:11:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SpecialCaseList::Matcher::match(StringRef Query) const {
|
|
|
|
if (Strings.count(Query))
|
|
|
|
return true;
|
|
|
|
if (Trigrams.isDefinitelyOut(Query))
|
|
|
|
return false;
|
|
|
|
return RegEx && RegEx->match(Query);
|
|
|
|
}
|
2013-08-05 19:48:04 +02:00
|
|
|
|
2017-09-26 00:11:11 +02:00
|
|
|
SpecialCaseList::SpecialCaseList() : Sections(), IsCompiled(false) {}
|
2013-08-12 09:49:36 +02:00
|
|
|
|
2015-02-04 18:39:48 +01:00
|
|
|
std::unique_ptr<SpecialCaseList>
|
|
|
|
SpecialCaseList::create(const std::vector<std::string> &Paths,
|
|
|
|
std::string &Error) {
|
|
|
|
std::unique_ptr<SpecialCaseList> SCL(new SpecialCaseList());
|
2017-09-26 00:11:11 +02:00
|
|
|
if (SCL->createInternal(Paths, Error))
|
|
|
|
return SCL;
|
|
|
|
return nullptr;
|
2013-08-12 09:49:36 +02:00
|
|
|
}
|
|
|
|
|
2014-09-02 20:13:54 +02:00
|
|
|
std::unique_ptr<SpecialCaseList> SpecialCaseList::create(const MemoryBuffer *MB,
|
|
|
|
std::string &Error) {
|
2014-03-06 06:51:42 +01:00
|
|
|
std::unique_ptr<SpecialCaseList> SCL(new SpecialCaseList());
|
2017-09-26 00:11:11 +02:00
|
|
|
if (SCL->createInternal(MB, Error))
|
|
|
|
return SCL;
|
|
|
|
return nullptr;
|
2013-08-12 09:49:36 +02:00
|
|
|
}
|
|
|
|
|
2015-02-04 18:39:48 +01:00
|
|
|
std::unique_ptr<SpecialCaseList>
|
|
|
|
SpecialCaseList::createOrDie(const std::vector<std::string> &Paths) {
|
2013-08-12 13:46:09 +02:00
|
|
|
std::string Error;
|
2015-02-04 18:39:48 +01:00
|
|
|
if (auto SCL = create(Paths, Error))
|
2013-08-12 13:46:09 +02:00
|
|
|
return SCL;
|
|
|
|
report_fatal_error(Error);
|
|
|
|
}
|
|
|
|
|
2017-09-26 00:11:11 +02:00
|
|
|
bool SpecialCaseList::createInternal(const std::vector<std::string> &Paths,
|
|
|
|
std::string &Error) {
|
|
|
|
StringMap<size_t> Sections;
|
|
|
|
for (const auto &Path : Paths) {
|
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> FileOrErr =
|
|
|
|
MemoryBuffer::getFile(Path);
|
|
|
|
if (std::error_code EC = FileOrErr.getError()) {
|
|
|
|
Error = (Twine("can't open file '") + Path + "': " + EC.message()).str();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
std::string ParseError;
|
|
|
|
if (!parse(FileOrErr.get().get(), Sections, ParseError)) {
|
|
|
|
Error = (Twine("error parsing file '") + Path + "': " + ParseError).str();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compile();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SpecialCaseList::createInternal(const MemoryBuffer *MB,
|
|
|
|
std::string &Error) {
|
|
|
|
StringMap<size_t> Sections;
|
|
|
|
if (!parse(MB, Sections, Error))
|
|
|
|
return false;
|
|
|
|
compile();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SpecialCaseList::parse(const MemoryBuffer *MB,
|
|
|
|
StringMap<size_t> &SectionsMap,
|
|
|
|
std::string &Error) {
|
2012-08-24 18:40:11 +02:00
|
|
|
// Iterate through each line in the blacklist file.
|
2012-03-15 00:22:10 +01:00
|
|
|
SmallVector<StringRef, 16> Lines;
|
2013-07-10 00:03:09 +02:00
|
|
|
SplitString(MB->getBuffer(), Lines, "\n\r");
|
2017-09-26 00:11:11 +02:00
|
|
|
|
2013-08-12 09:49:36 +02:00
|
|
|
int LineNo = 1;
|
2017-09-26 00:11:11 +02:00
|
|
|
StringRef Section = "*";
|
2015-02-04 18:39:48 +01:00
|
|
|
for (auto I = Lines.begin(), E = Lines.end(); I != E; ++I, ++LineNo) {
|
2012-10-19 17:24:46 +02:00
|
|
|
// Ignore empty lines and lines starting with "#"
|
|
|
|
if (I->empty() || I->startswith("#"))
|
|
|
|
continue;
|
2017-09-26 00:11:11 +02:00
|
|
|
|
|
|
|
// Save section names
|
|
|
|
if (I->startswith("[")) {
|
|
|
|
if (!I->endswith("]")) {
|
|
|
|
Error = (Twine("malformed section header on line ") + Twine(LineNo) +
|
|
|
|
": " + *I).str();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Section = I->slice(1, I->size() - 1);
|
|
|
|
|
|
|
|
std::string REError;
|
|
|
|
Regex CheckRE(Section);
|
|
|
|
if (!CheckRE.isValid(REError)) {
|
|
|
|
Error =
|
|
|
|
(Twine("malformed regex for section ") + Section + ": '" + REError)
|
|
|
|
.str();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2012-08-24 18:40:11 +02:00
|
|
|
// Get our prefix and unparsed regexp.
|
|
|
|
std::pair<StringRef, StringRef> SplitLine = I->split(":");
|
|
|
|
StringRef Prefix = SplitLine.first;
|
2013-07-10 00:03:17 +02:00
|
|
|
if (SplitLine.second.empty()) {
|
2012-11-29 01:01:38 +01:00
|
|
|
// Missing ':' in the line.
|
2015-02-04 18:39:48 +01:00
|
|
|
Error = (Twine("malformed line ") + Twine(LineNo) + ": '" +
|
2013-08-12 09:49:36 +02:00
|
|
|
SplitLine.first + "'").str();
|
|
|
|
return false;
|
2012-11-29 01:01:38 +01:00
|
|
|
}
|
2012-08-24 18:40:11 +02:00
|
|
|
|
2013-07-10 00:03:17 +02:00
|
|
|
std::pair<StringRef, StringRef> SplitRegexp = SplitLine.second.split("=");
|
|
|
|
std::string Regexp = SplitRegexp.first;
|
|
|
|
StringRef Category = SplitRegexp.second;
|
|
|
|
|
2017-09-26 00:11:11 +02:00
|
|
|
// Create this section if it has not been seen before.
|
|
|
|
if (SectionsMap.find(Section) == SectionsMap.end()) {
|
|
|
|
std::unique_ptr<Matcher> M = make_unique<Matcher>();
|
|
|
|
std::string REError;
|
|
|
|
if (!M->insert(Section, REError)) {
|
|
|
|
Error = (Twine("malformed section ") + Section + ": '" + REError).str();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
M->compile();
|
|
|
|
|
|
|
|
SectionsMap[Section] = Sections.size();
|
|
|
|
Sections.emplace_back(std::move(M));
|
2012-03-15 00:22:10 +01:00
|
|
|
}
|
2012-08-24 18:40:11 +02:00
|
|
|
|
2017-09-26 00:11:11 +02:00
|
|
|
auto &Entry = Sections[SectionsMap[Section]].Entries[Prefix][Category];
|
2013-08-12 09:49:36 +02:00
|
|
|
std::string REError;
|
2017-09-26 00:11:11 +02:00
|
|
|
if (!Entry.insert(std::move(Regexp), REError)) {
|
2015-02-04 18:39:48 +01:00
|
|
|
Error = (Twine("malformed regex in line ") + Twine(LineNo) + ": '" +
|
2013-08-12 09:49:36 +02:00
|
|
|
SplitLine.second + "': " + REError).str();
|
|
|
|
return false;
|
2012-08-24 18:40:11 +02:00
|
|
|
}
|
2012-03-15 00:22:10 +01:00
|
|
|
}
|
2015-02-04 18:39:48 +01:00
|
|
|
return true;
|
|
|
|
}
|
2012-08-24 18:40:11 +02:00
|
|
|
|
2015-02-04 18:39:48 +01:00
|
|
|
void SpecialCaseList::compile() {
|
|
|
|
assert(!IsCompiled && "compile() should only be called once");
|
2017-09-26 00:11:11 +02:00
|
|
|
// Iterate through every section compiling regular expressions for every query
|
|
|
|
// and creating Section entries.
|
|
|
|
for (auto &Section : Sections)
|
|
|
|
for (auto &Prefix : Section.Entries)
|
|
|
|
for (auto &Category : Prefix.getValue())
|
|
|
|
Category.getValue().compile();
|
|
|
|
|
2015-02-04 18:39:48 +01:00
|
|
|
IsCompiled = true;
|
2012-03-15 00:22:10 +01:00
|
|
|
}
|
|
|
|
|
2014-07-10 05:55:02 +02:00
|
|
|
SpecialCaseList::~SpecialCaseList() {}
|
2012-08-24 18:40:11 +02:00
|
|
|
|
2017-09-26 00:11:11 +02:00
|
|
|
bool SpecialCaseList::inSection(StringRef Section, StringRef Prefix,
|
|
|
|
StringRef Query, StringRef Category) const {
|
2015-02-04 18:39:48 +01:00
|
|
|
assert(IsCompiled && "SpecialCaseList::compile() was not called!");
|
2017-09-26 00:11:11 +02:00
|
|
|
|
|
|
|
for (auto &SectionIter : Sections)
|
|
|
|
if (SectionIter.SectionMatcher->match(Section) &&
|
|
|
|
inSection(SectionIter.Entries, Prefix, Query, Category))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SpecialCaseList::inSection(const SectionEntries &Entries, StringRef Prefix,
|
|
|
|
StringRef Query, StringRef Category) const {
|
|
|
|
SectionEntries::const_iterator I = Entries.find(Prefix);
|
2012-11-29 01:01:38 +01:00
|
|
|
if (I == Entries.end()) return false;
|
2017-09-26 00:11:11 +02:00
|
|
|
StringMap<Matcher>::const_iterator II = I->second.find(Category);
|
2013-07-10 00:03:17 +02:00
|
|
|
if (II == I->second.end()) return false;
|
2012-11-29 01:01:38 +01:00
|
|
|
|
2013-08-05 19:48:04 +02:00
|
|
|
return II->getValue().match(Query);
|
2012-03-15 00:22:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace llvm
|