blob: 05dec8b5b834d2665a7bcd5705445d0b689d8f93 [file] [log] [blame]
Alexey Samsonovb7dd3292014-07-09 19:40:08 +00001//===--- SanitizerBlacklist.cpp - Blacklist for sanitizers ----------------===//
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// User-provided blacklist used to disable/alter instrumentation done in
11// sanitizers.
12//
13//===----------------------------------------------------------------------===//
Alexey Samsonov8d043e82014-10-15 19:57:45 +000014#include "clang/Basic/SanitizerBlacklist.h"
Alexey Samsonovb7dd3292014-07-09 19:40:08 +000015#include "llvm/IR/Function.h"
16#include "llvm/IR/GlobalValue.h"
17#include "llvm/IR/Module.h"
18
19using namespace clang;
Alexey Samsonovb7dd3292014-07-09 19:40:08 +000020
21static StringRef GetGlobalTypeString(const llvm::GlobalValue &G) {
22 // Types of GlobalVariables are always pointer types.
23 llvm::Type *GType = G.getType()->getElementType();
24 // For now we support blacklisting struct types only.
25 if (llvm::StructType *SGType = dyn_cast<llvm::StructType>(GType)) {
26 if (!SGType->isLiteral())
27 return SGType->getName();
28 }
29 return "<unknown type>";
30}
31
Alexey Samsonov0b15e342014-10-15 22:17:27 +000032SanitizerBlacklist::SanitizerBlacklist(const std::string &BlacklistPath)
33 : SCL(llvm::SpecialCaseList::createOrDie(BlacklistPath)) {}
34
Alexey Samsonovb7dd3292014-07-09 19:40:08 +000035bool SanitizerBlacklist::isIn(const llvm::Module &M,
Craig Topperbf3e3272014-08-30 16:55:52 +000036 StringRef Category) const {
Alexey Samsonovb7dd3292014-07-09 19:40:08 +000037 return SCL->inSection("src", M.getModuleIdentifier(), Category);
38}
39
40bool SanitizerBlacklist::isIn(const llvm::Function &F) const {
41 return isIn(*F.getParent()) ||
42 SCL->inSection("fun", F.getName(), "");
43}
44
45bool SanitizerBlacklist::isIn(const llvm::GlobalVariable &G,
Craig Topperbf3e3272014-08-30 16:55:52 +000046 StringRef Category) const {
Alexey Samsonovb7dd3292014-07-09 19:40:08 +000047 return isIn(*G.getParent(), Category) ||
48 SCL->inSection("global", G.getName(), Category) ||
49 SCL->inSection("type", GetGlobalTypeString(G), Category);
50}
Alexey Samsonov84856012014-07-10 22:34:19 +000051
52bool SanitizerBlacklist::isBlacklistedType(StringRef MangledTypeName) const {
53 return SCL->inSection("type", MangledTypeName);
54}