mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-14 20:26:05 +00:00

Summary: This is the follow-up patch to D37924. This change refactors clang to use the the newly added section headers in SpecialCaseList to specify which sanitizers blacklists entries should apply to, like so: [cfi-vcall] fun:*bad_vcall* [cfi-derived-cast|cfi-unrelated-cast] fun:*bad_cast* The SanitizerSpecialCaseList class has been added to allow querying by SanitizerMask, and SanitizerBlacklist and its downstream users have been updated to provide that information. Old blacklists not using sections will continue to function identically since the blacklist entries will be placed into a '[*]' section by default matching against all sanitizers. Reviewers: pcc, kcc, eugenis, vsk Reviewed By: eugenis Subscribers: dberris, cfe-commits, mgorny Differential Revision: https://reviews.llvm.org/D37925 llvm-svn: 314171
65 lines
2.1 KiB
C++
65 lines
2.1 KiB
C++
//===--- SanitizerSpecialCaseList.cpp - SCL for sanitizers ----------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// An extension of SpecialCaseList to allowing querying sections by
|
|
// SanitizerMask.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#include "clang/Basic/SanitizerSpecialCaseList.h"
|
|
|
|
using namespace clang;
|
|
|
|
std::unique_ptr<SanitizerSpecialCaseList>
|
|
SanitizerSpecialCaseList::create(const std::vector<std::string> &Paths,
|
|
std::string &Error) {
|
|
std::unique_ptr<clang::SanitizerSpecialCaseList> SSCL(
|
|
new SanitizerSpecialCaseList());
|
|
if (SSCL->createInternal(Paths, Error)) {
|
|
SSCL->createSanitizerSections();
|
|
return SSCL;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
std::unique_ptr<SanitizerSpecialCaseList>
|
|
SanitizerSpecialCaseList::createOrDie(const std::vector<std::string> &Paths) {
|
|
std::string Error;
|
|
if (auto SSCL = create(Paths, Error))
|
|
return SSCL;
|
|
llvm::report_fatal_error(Error);
|
|
}
|
|
|
|
void SanitizerSpecialCaseList::createSanitizerSections() {
|
|
for (auto &S : Sections) {
|
|
SanitizerMask Mask = 0;
|
|
|
|
#define SANITIZER(NAME, ID) \
|
|
if (S.SectionMatcher->match(NAME)) \
|
|
Mask |= SanitizerKind::ID;
|
|
#define SANITIZER_GROUP(NAME, ID, ALIAS) SANITIZER(NAME, ID)
|
|
|
|
#include "clang/Basic/Sanitizers.def"
|
|
#undef SANITIZER
|
|
#undef SANITIZER_GROUP
|
|
|
|
SanitizerSections.emplace_back(Mask, S.Entries);
|
|
}
|
|
}
|
|
|
|
bool SanitizerSpecialCaseList::inSection(SanitizerMask Mask, StringRef Prefix,
|
|
StringRef Query,
|
|
StringRef Category) const {
|
|
for (auto &S : SanitizerSections)
|
|
if ((S.Mask & Mask) &&
|
|
SpecialCaseList::inSection(S.Entries, Prefix, Query, Category))
|
|
return true;
|
|
|
|
return false;
|
|
}
|