blob: f96ebc0d9dd1f0ef47e648ecb1d8863a9d0ca591 [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
32bool SanitizerBlacklist::isIn(const llvm::Module &M,
Craig Topperbf3e3272014-08-30 16:55:52 +000033 StringRef Category) const {
Alexey Samsonovb7dd3292014-07-09 19:40:08 +000034 return SCL->inSection("src", M.getModuleIdentifier(), Category);
35}
36
37bool SanitizerBlacklist::isIn(const llvm::Function &F) const {
38 return isIn(*F.getParent()) ||
39 SCL->inSection("fun", F.getName(), "");
40}
41
42bool SanitizerBlacklist::isIn(const llvm::GlobalVariable &G,
Craig Topperbf3e3272014-08-30 16:55:52 +000043 StringRef Category) const {
Alexey Samsonovb7dd3292014-07-09 19:40:08 +000044 return isIn(*G.getParent(), Category) ||
45 SCL->inSection("global", G.getName(), Category) ||
46 SCL->inSection("type", GetGlobalTypeString(G), Category);
47}
Alexey Samsonov84856012014-07-10 22:34:19 +000048
49bool SanitizerBlacklist::isBlacklistedType(StringRef MangledTypeName) const {
50 return SCL->inSection("type", MangledTypeName);
51}