AddressSanitizer.cpp revision 800e03f59896ef4b26d988f1878370bb5aeec0d8
1800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//===-- AddressSanitizer.cpp - memory error detector ------------*- C++ -*-===//
2800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//
3800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//                     The LLVM Compiler Infrastructure
4800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//
5800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// This file is distributed under the University of Illinois Open Source
6800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// License. See LICENSE.TXT for details.
7800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//
8800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//===----------------------------------------------------------------------===//
9800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//
10800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// This file is a part of AddressSanitizer, an address sanity checker.
11800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Details of the algorithm:
12800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//  http://code.google.com/p/address-sanitizer/wiki/AddressSanitizerAlgorithm
13800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//
14800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//===----------------------------------------------------------------------===//
15800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
16800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#define DEBUG_TYPE "asan"
17800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
18800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/ADT/ArrayRef.h"
19800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/ADT/OwningPtr.h"
20800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/ADT/SmallSet.h"
21800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/ADT/SmallString.h"
22800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/ADT/SmallVector.h"
23800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/ADT/StringExtras.h"
24800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Function.h"
25800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/InlineAsm.h"
26800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/IntrinsicInst.h"
27800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/LLVMContext.h"
28800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Module.h"
29800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Support/CommandLine.h"
30800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Support/DataTypes.h"
31800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Support/Debug.h"
32800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Support/IRBuilder.h"
33800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Support/MemoryBuffer.h"
34800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Support/Regex.h"
35800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Support/raw_ostream.h"
36800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Support/system_error.h"
37800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Target/TargetData.h"
38800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Target/TargetMachine.h"
39800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Transforms/Instrumentation.h"
40800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Transforms/Utils/BasicBlockUtils.h"
41800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Transforms/Utils/ModuleUtils.h"
42800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Type.h"
43800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
44800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include <string>
45800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include <algorithm>
46800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
47800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanyusing namespace llvm;
48800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
49800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const uint64_t kDefaultShadowScale = 3;
50800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const uint64_t kDefaultShadowOffset32 = 1ULL << 29;
51800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const uint64_t kDefaultShadowOffset64 = 1ULL << 44;
52800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
53800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const size_t kMaxStackMallocSize = 1 << 16;  // 64K
54800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const uintptr_t kCurrentStackFrameMagic = 0x41B58AB3;
55800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const uintptr_t kRetiredStackFrameMagic = 0x45E0360E;
56800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
57800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const char *kAsanModuleCtorName = "asan.module_ctor";
58800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const char *kAsanReportErrorTemplate = "__asan_report_";
59800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const char *kAsanRegisterGlobalsName = "__asan_register_globals";
60800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const char *kAsanInitName = "__asan_init";
61800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const char *kAsanMappingOffsetName = "__asan_mapping_offset";
62800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const char *kAsanMappingScaleName = "__asan_mapping_scale";
63800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const char *kAsanStackMallocName = "__asan_stack_malloc";
64800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const char *kAsanStackFreeName = "__asan_stack_free";
65800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
66800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const int kAsanStackLeftRedzoneMagic = 0xf1;
67800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const int kAsanStackMidRedzoneMagic = 0xf2;
68800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const int kAsanStackRightRedzoneMagic = 0xf3;
69800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const int kAsanStackPartialRedzoneMagic = 0xf4;
70800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
71800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Command-line flags.
72800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
73800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// This flag may need to be replaced with -f[no-]asan-reads.
74800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<bool> ClInstrumentReads("asan-instrument-reads",
75800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("instrument read instructions"), cl::Hidden, cl::init(true));
76800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<bool> ClInstrumentWrites("asan-instrument-writes",
77800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("instrument write instructions"), cl::Hidden, cl::init(true));
78800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// This flag may need to be replaced with -f[no]asan-stack.
79800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<bool> ClStack("asan-stack",
80800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("Handle stack memory"), cl::Hidden, cl::init(true));
81800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// This flag may need to be replaced with -f[no]asan-use-after-return.
82800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<bool> ClUseAfterReturn("asan-use-after-return",
83800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("Check return-after-free"), cl::Hidden, cl::init(false));
84800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// This flag may need to be replaced with -f[no]asan-globals.
85800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<bool> ClGlobals("asan-globals",
86800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("Handle global objects"), cl::Hidden, cl::init(true));
87800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<bool> ClMemIntrin("asan-memintrin",
88800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("Handle memset/memcpy/memmove"), cl::Hidden, cl::init(true));
89800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// This flag may need to be replaced with -fasan-blacklist.
90800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<std::string>  ClBlackListFile("asan-blacklist",
91800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("File containing the list of functions to ignore "
92800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                "during instrumentation"), cl::Hidden);
93800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<bool> ClUseCall("asan-use-call",
94800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("Use function call to generate a crash"), cl::Hidden,
95800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::init(true));
96800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
97800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// These flags allow to change the shadow mapping.
98800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// The shadow mapping looks like
99800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//    Shadow = (Mem >> scale) + (1 << offset_log)
100800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<int> ClMappingScale("asan-mapping-scale",
101800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("scale of asan shadow mapping"), cl::Hidden, cl::init(0));
102800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<int> ClMappingOffsetLog("asan-mapping-offset-log",
103800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("offset of asan shadow mapping"), cl::Hidden, cl::init(-1));
104800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
105800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Optimization flags. Not user visible, used mostly for testing
106800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// and benchmarking the tool.
107800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<bool> ClOpt("asan-opt",
108800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("Optimize instrumentation"), cl::Hidden, cl::init(true));
109800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<bool> ClOptSameTemp("asan-opt-same-temp",
110800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("Instrument the same temp just once"), cl::Hidden,
111800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::init(true));
112800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<bool> ClOptGlobals("asan-opt-globals",
113800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("Don't instrument scalar globals"), cl::Hidden, cl::init(true));
114800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
115800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Debug flags.
116800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<int> ClDebug("asan-debug", cl::desc("debug"), cl::Hidden,
117800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                            cl::init(0));
118800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<int> ClDebugStack("asan-debug-stack", cl::desc("debug stack"),
119800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                 cl::Hidden, cl::init(0));
120800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<std::string> ClDebugFunc("asan-debug-func",
121800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                        cl::Hidden, cl::desc("Debug func"));
122800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<int> ClDebugMin("asan-debug-min", cl::desc("Debug min inst"),
123800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                               cl::Hidden, cl::init(-1));
124800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<int> ClDebugMax("asan-debug-max", cl::desc("Debug man inst"),
125800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                               cl::Hidden, cl::init(-1));
126800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
127800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanynamespace {
128800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
129800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Blacklisted functions are not instrumented.
130800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// The blacklist file contains one or more lines like this:
131800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// ---
132800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// fun:FunctionWildCard
133800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// ---
134800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// This is similar to the "ignore" feature of ThreadSanitizer.
135800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// http://code.google.com/p/data-race-test/wiki/ThreadSanitizerIgnores
136800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanyclass BlackList {
137800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany public:
138800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  BlackList(const std::string &Path);
139800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  bool isIn(const Function &F);
140800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany private:
141800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Regex *Functions;
142800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany};
143800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
144800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany/// AddressSanitizer: instrument the code in module to find memory bugs.
145800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystruct AddressSanitizer : public ModulePass {
146800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  AddressSanitizer();
147800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  void instrumentMop(Instruction *I);
148800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  void instrumentAddress(Instruction *OrigIns, IRBuilder<> &IRB,
149800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                         Value *Addr, uint32_t TypeSize, bool IsWrite);
150800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Instruction *generateCrashCode(IRBuilder<> &IRB, Value *Addr,
151800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                 bool IsWrite, uint32_t TypeSize);
152800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  bool instrumentMemIntrinsic(MemIntrinsic *MI);
153800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  void instrumentMemIntrinsicParam(Instruction *OrigIns, Value *Addr,
154800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                  Value *Size,
155800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                   Instruction *InsertBefore, bool IsWrite);
156800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *memToShadow(Value *Shadow, IRBuilder<> &IRB);
157800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  bool handleFunction(Module &M, Function &F);
158800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  bool poisonStackInFunction(Module &M, Function &F);
159800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  virtual bool runOnModule(Module &M);
160800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  bool insertGlobalRedzones(Module &M);
161800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  BranchInst *splitBlockAndInsertIfThen(Instruction *SplitBefore, Value *Cmp);
162800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  static char ID;  // Pass identification, replacement for typeid
163800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
164800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany private:
165800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
166800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint64_t getAllocaSizeInBytes(AllocaInst *AI) {
167800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Type *Ty = AI->getAllocatedType();
168800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    uint64_t SizeInBytes = TD->getTypeStoreSizeInBits(Ty) / 8;
169800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return SizeInBytes;
170800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
171800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint64_t getAlignedSize(uint64_t SizeInBytes) {
172800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return ((SizeInBytes + RedzoneSize - 1)
173800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany            / RedzoneSize) * RedzoneSize;
174800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
175800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint64_t getAlignedAllocaSize(AllocaInst *AI) {
176800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    uint64_t SizeInBytes = getAllocaSizeInBytes(AI);
177800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return getAlignedSize(SizeInBytes);
178800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
179800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
180800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  void PoisonStack(const ArrayRef<AllocaInst*> &AllocaVec, IRBuilder<> IRB,
181800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                   Value *ShadowBase, bool DoPoison);
182800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
183800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Module      *CurrentModule;
184800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  LLVMContext *C;
185800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  TargetData *TD;
186800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint64_t MappingOffset;
187800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  int MappingScale;
188800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  size_t RedzoneSize;
189800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  int LongSize;
190800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Type *IntptrTy;
191800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Type *IntptrPtrTy;
192800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Function *AsanCtorFunction;
193800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Function *AsanInitFunction;
194800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Instruction *CtorInsertBefore;
195800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  OwningPtr<BlackList> BL;
196800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany};
197800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}  // namespace
198800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
199800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanychar AddressSanitizer::ID = 0;
200800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya SerebryanyINITIALIZE_PASS(AddressSanitizer, "asan",
201800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "AddressSanitizer: detects use-after-free and out-of-bounds bugs.",
202800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    false, false)
203800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya SerebryanyAddressSanitizer::AddressSanitizer() : ModulePass(ID) { }
204800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya SerebryanyModulePass *llvm::createAddressSanitizerPass() {
205800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return new AddressSanitizer();
206800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
207800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
208800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Create a constant for Str so that we can pass it to the run-time lib.
209800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic GlobalVariable *createPrivateGlobalForString(Module &M, StringRef Str) {
210800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Constant *StrConst = ConstantArray::get(M.getContext(), Str);
211800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return new GlobalVariable(M, StrConst->getType(), true,
212800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                            GlobalValue::PrivateLinkage, StrConst, "");
213800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
214800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
215800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Split the basic block and insert an if-then code.
216800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Before:
217800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//   Head
218800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//   SplitBefore
219800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//   Tail
220800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// After:
221800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//   Head
222800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//   if (Cmp)
223800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//     NewBasicBlock
224800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//   SplitBefore
225800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//   Tail
226800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//
227800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Returns the NewBasicBlock's terminator.
228800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya SerebryanyBranchInst *AddressSanitizer::splitBlockAndInsertIfThen(
229800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Instruction *SplitBefore, Value *Cmp) {
230800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  BasicBlock *Head = SplitBefore->getParent();
231800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  BasicBlock *Tail = Head->splitBasicBlock(SplitBefore);
232800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  TerminatorInst *HeadOldTerm = Head->getTerminator();
233800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  BasicBlock *NewBasicBlock =
234800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      BasicBlock::Create(*C, "", Head->getParent());
235800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  BranchInst *HeadNewTerm = BranchInst::Create(/*ifTrue*/NewBasicBlock,
236800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                               /*ifFalse*/Tail,
237800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                               Cmp);
238800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  ReplaceInstWithInst(HeadOldTerm, HeadNewTerm);
239800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
240800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  BranchInst *CheckTerm = BranchInst::Create(Tail, NewBasicBlock);
241800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return CheckTerm;
242800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
243800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
244800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya SerebryanyValue *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) {
245800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Shadow >> scale
246800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Shadow = IRB.CreateLShr(Shadow, MappingScale);
247800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (MappingOffset == 0)
248800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return Shadow;
249800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // (Shadow >> scale) | offset
250800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy,
251800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                               MappingOffset));
252800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
253800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
254800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanyvoid AddressSanitizer::instrumentMemIntrinsicParam(Instruction *OrigIns,
255800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *Addr, Value *Size, Instruction *InsertBefore, bool IsWrite) {
256800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Check the first byte.
257800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  {
258800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    IRBuilder<> IRB(InsertBefore);
259800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    instrumentAddress(OrigIns, IRB, Addr, 8, IsWrite);
260800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
261800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Check the last byte.
262800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  {
263800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    IRBuilder<> IRB(InsertBefore);
264800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *SizeMinusOne = IRB.CreateSub(
265800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        Size, ConstantInt::get(Size->getType(), 1));
266800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    SizeMinusOne = IRB.CreateIntCast(SizeMinusOne, IntptrTy, false);
267800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
268800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *AddrPlusSizeMinisOne = IRB.CreateAdd(AddrLong, SizeMinusOne);
269800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    instrumentAddress(OrigIns, IRB, AddrPlusSizeMinisOne, 8, IsWrite);
270800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
271800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
272800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
273800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Instrument memset/memmove/memcpy
274800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanybool AddressSanitizer::instrumentMemIntrinsic(MemIntrinsic *MI) {
275800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *Dst = MI->getDest();
276800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  MemTransferInst *MemTran = dyn_cast<MemTransferInst>(MI);
277800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *Src = MemTran ? MemTran->getSource() : NULL;
278800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *Length = MI->getLength();
279800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
280800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Constant *ConstLength = dyn_cast<Constant>(Length);
281800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Instruction *InsertBefore = MI;
282800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (ConstLength) {
283800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (ConstLength->isNullValue()) return false;
284800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  } else {
285800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // The size is not a constant so it could be zero -- check at run-time.
286800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    IRBuilder<> IRB(InsertBefore);
287800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
288800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *Cmp = IRB.CreateICmpNE(Length,
289800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                   Constant::getNullValue(Length->getType()));
290800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    InsertBefore = splitBlockAndInsertIfThen(InsertBefore, Cmp);
291800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
292800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
293800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  instrumentMemIntrinsicParam(MI, Dst, Length, InsertBefore, true);
294800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (Src)
295800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    instrumentMemIntrinsicParam(MI, Src, Length, InsertBefore, false);
296800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return true;
297800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
298800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
299800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic Value *getLDSTOperand(Instruction *I) {
300800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
301800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return LI->getPointerOperand();
302800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
303800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return cast<StoreInst>(*I).getPointerOperand();
304800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
305800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
306800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanyvoid AddressSanitizer::instrumentMop(Instruction *I) {
307800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  int IsWrite = isa<StoreInst>(*I);
308800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *Addr = getLDSTOperand(I);
309800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (ClOpt && ClOptGlobals && isa<GlobalVariable>(Addr)) {
310800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // We are accessing a global scalar variable. Nothing to catch here.
311800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return;
312800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
313800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Type *OrigPtrTy = Addr->getType();
314800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType();
315800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
316800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  assert(OrigTy->isSized());
317800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint32_t TypeSize = TD->getTypeStoreSizeInBits(OrigTy);
318800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
319800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (TypeSize != 8  && TypeSize != 16 &&
320800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      TypeSize != 32 && TypeSize != 64 && TypeSize != 128) {
321800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // Ignore all unusual sizes.
322800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return;
323800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
324800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
325800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRBuilder<> IRB(I);
326800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  instrumentAddress(I, IRB, Addr, TypeSize, IsWrite);
327800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
328800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
329800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya SerebryanyInstruction *AddressSanitizer::generateCrashCode(
330800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    IRBuilder<> &IRB, Value *Addr, bool IsWrite, uint32_t TypeSize) {
331800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
332800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (ClUseCall) {
333800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // Here we use a call instead of arch-specific asm to report an error.
334800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // This is almost always slower (because the codegen needs to generate
335800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // prologue/epilogue for otherwise leaf functions) and generates more code.
336800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // This mode could be useful if we can not use SIGILL for some reason.
337800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    //
338800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // IsWrite and TypeSize are encoded in the function name.
339800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    std::string FunctionName = std::string(kAsanReportErrorTemplate) +
340800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        (IsWrite ? "store" : "load") + itostr(TypeSize / 8);
341800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *ReportWarningFunc = CurrentModule->getOrInsertFunction(
342800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        FunctionName, IRB.getVoidTy(), IntptrTy, NULL);
343800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    CallInst *Call = IRB.CreateCall(ReportWarningFunc, Addr);
344800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Call->setDoesNotReturn();
345800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return Call;
346800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
347800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
348800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint32_t LogOfSizeInBytes = CountTrailingZeros_32(TypeSize / 8);
349800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  assert(8U * (1 << LogOfSizeInBytes) == TypeSize);
350800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint8_t TelltaleValue = IsWrite * 8 + LogOfSizeInBytes;
351800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  assert(TelltaleValue < 16);
352800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
353800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Move the failing address to %rax/%eax
354800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  FunctionType *Fn1Ty = FunctionType::get(
355800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      IRB.getVoidTy(), ArrayRef<Type*>(IntptrTy), false);
356800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  const char *MovStr = LongSize == 32
357800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      ? "mov $0, %eax" : "mov $0, %rax";
358800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *AsmMov = InlineAsm::get(
359800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      Fn1Ty, StringRef(MovStr), StringRef("r"), true);
360800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRB.CreateCall(AsmMov, Addr);
361800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
362800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // crash with ud2; could use int3, but it is less friendly to gdb.
363800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // after ud2 put a 1-byte instruction that encodes the access type and size.
364800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
365800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  const char *TelltaleInsns[16] = {
366800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "push   %eax",  // 0x50
367800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "push   %ecx",  // 0x51
368800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "push   %edx",  // 0x52
369800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "push   %ebx",  // 0x53
370800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "push   %esp",  // 0x54
371800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "push   %ebp",  // 0x55
372800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "push   %esi",  // 0x56
373800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "push   %edi",  // 0x57
374800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "pop    %eax",  // 0x58
375800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "pop    %ecx",  // 0x59
376800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "pop    %edx",  // 0x5a
377800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "pop    %ebx",  // 0x5b
378800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "pop    %esp",  // 0x5c
379800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "pop    %ebp",  // 0x5d
380800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "pop    %esi",  // 0x5e
381800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "pop    %edi"   // 0x5f
382800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  };
383800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
384800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  std::string AsmStr = "ud2;";
385800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  AsmStr += TelltaleInsns[TelltaleValue];
386800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *MyAsm = InlineAsm::get(FunctionType::get(Type::getVoidTy(*C), false),
387800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                StringRef(AsmStr), StringRef(""), true);
388800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  CallInst *AsmCall = IRB.CreateCall(MyAsm);
389800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
390800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // This saves us one jump, but triggers a bug in RA (or somewhere else):
391800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // while building 483.xalancbmk the compiler goes into infinite loop in
392800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // llvm::SpillPlacement::iterate() / RAGreedy::growRegion
393800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // AsmCall->setDoesNotReturn();
394800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return AsmCall;
395800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
396800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
397800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanyvoid AddressSanitizer::instrumentAddress(Instruction *OrigIns,
398800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                         IRBuilder<> &IRB, Value *Addr,
399800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                         uint32_t TypeSize, bool IsWrite) {
400800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
401800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
402800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Type *ShadowTy  = IntegerType::get(
403800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      *C, std::max(8U, TypeSize >> MappingScale));
404800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Type *ShadowPtrTy = PointerType::get(ShadowTy, 0);
405800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *ShadowPtr = memToShadow(AddrLong, IRB);
406800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *CmpVal = Constant::getNullValue(ShadowTy);
407800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *ShadowValue = IRB.CreateLoad(
408800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy));
409800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
410800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal);
411800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
412800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Instruction *CheckTerm = splitBlockAndInsertIfThen(
413800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      cast<Instruction>(Cmp)->getNextNode(), Cmp);
414800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRBuilder<> IRB2(CheckTerm);
415800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
416800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  size_t Granularity = 1 << MappingScale;
417800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (TypeSize < 8 * Granularity) {
418800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // Addr & (Granularity - 1)
419800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *Lower3Bits = IRB2.CreateAnd(
420800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        AddrLong, ConstantInt::get(IntptrTy, Granularity - 1));
421800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // (Addr & (Granularity - 1)) + size - 1
422800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *LastAccessedByte = IRB2.CreateAdd(
423800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        Lower3Bits, ConstantInt::get(IntptrTy, TypeSize / 8 - 1));
424800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // (uint8_t) ((Addr & (Granularity-1)) + size - 1)
425800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    LastAccessedByte = IRB2.CreateIntCast(
426800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        LastAccessedByte, IRB.getInt8Ty(), false);
427800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue
428800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *Cmp2 = IRB2.CreateICmpSGE(LastAccessedByte, ShadowValue);
429800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
430800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    CheckTerm = splitBlockAndInsertIfThen(CheckTerm, Cmp2);
431800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
432800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
433800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRBuilder<> IRB1(CheckTerm);
434800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Instruction *Crash = generateCrashCode(IRB1, AddrLong, IsWrite, TypeSize);
435800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Crash->setDebugLoc(OrigIns->getDebugLoc());
436800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
437800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
438800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// This function replaces all global variables with new variables that have
439800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// trailing redzones. It also creates a function that poisons
440800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// redzones and inserts this function into llvm.global_ctors.
441800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanybool AddressSanitizer::insertGlobalRedzones(Module &M) {
442800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  SmallVector<GlobalVariable *, 16> GlobalsToChange;
443800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
444800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (Module::GlobalListType::iterator G = M.getGlobalList().begin(),
445800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       E = M.getGlobalList().end(); G != E; ++G) {
446800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Type *Ty = cast<PointerType>(G->getType())->getElementType();
447800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    DEBUG(dbgs() << "GLOBAL: " << *G);
448800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
449800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (!Ty->isSized()) continue;
450800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (!G->hasInitializer()) continue;
451800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (GlobalVariable::mayBeOverridden(G->getLinkage()) ||
452800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        G->getLinkage() == GlobalVariable::AppendingLinkage)
453800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      continue;
454800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // For now, just ignore this Alloca if the alignment is large.
455800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (G->getAlignment() > RedzoneSize) continue;
456800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
457800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // Ignore all the globals with the names starting with "\01L_OBJC_".
458800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // Many of those are put into the .cstring section. The linker compresses
459800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // that section by removing the spare \0s after the string terminator, so
460800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // our redzones get broken.
461800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if ((G->getName().find("\01L_OBJC_") == 0) ||
462800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        (G->getName().find("\01l_OBJC_") == 0)) {
463800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      DEBUG(dbgs() << "Ignoring \\01L_OBJC_* global: " << *G);
464800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      continue;
465800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    }
466800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
467800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // Ignore the globals from the __OBJC section. The ObjC runtime assumes
468800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // those conform to /usr/lib/objc/runtime.h, so we can't add redzones to
469800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // them.
470800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (G->hasSection()) {
471800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      StringRef Section(G->getSection());
472800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if ((Section.find("__OBJC,") == 0) ||
473800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany          (Section.find("__DATA, __objc_") == 0)) {
474800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        DEBUG(dbgs() << "Ignoring ObjC runtime global: " << *G);
475800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        continue;
476800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      }
477800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    }
478800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
479800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    GlobalsToChange.push_back(G);
480800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
481800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
482800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  size_t n = GlobalsToChange.size();
483800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (n == 0) return false;
484800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
485800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // A global is described by a structure
486800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  //   size_t beg;
487800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  //   size_t size;
488800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  //   size_t size_with_redzone;
489800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  //   const char *name;
490800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // We initialize an array of such structures and pass it to a run-time call.
491800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  StructType *GlobalStructTy = StructType::get(IntptrTy, IntptrTy,
492800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                               IntptrTy, IntptrTy, NULL);
493800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  SmallVector<Constant *, 16> Initializers(n);
494800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
495800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRBuilder<> IRB(CtorInsertBefore);
496800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
497800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (size_t i = 0; i < n; i++) {
498800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    GlobalVariable *G = GlobalsToChange[i];
499800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    PointerType *PtrTy = cast<PointerType>(G->getType());
500800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Type *Ty = PtrTy->getElementType();
501800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    uint64_t SizeInBytes = TD->getTypeStoreSizeInBits(Ty) / 8;
502800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    uint64_t RightRedzoneSize = RedzoneSize +
503800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        (RedzoneSize - (SizeInBytes % RedzoneSize));
504800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize);
505800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
506800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    StructType *NewTy = StructType::get(Ty, RightRedZoneTy, NULL);
507800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Constant *NewInitializer = ConstantStruct::get(
508800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        NewTy, G->getInitializer(),
509800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        Constant::getNullValue(RightRedZoneTy), NULL);
510800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
511800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    GlobalVariable *Name = createPrivateGlobalForString(M, G->getName());
512800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
513800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // Create a new global variable with enough space for a redzone.
514800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    GlobalVariable *NewGlobal = new GlobalVariable(
515800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        M, NewTy, G->isConstant(), G->getLinkage(),
516800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        NewInitializer, "", G, G->isThreadLocal());
517800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    NewGlobal->copyAttributesFrom(G);
518800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    NewGlobal->setAlignment(RedzoneSize);
519800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
520800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *Indices2[2];
521800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Indices2[0] = IRB.getInt32(0);
522800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Indices2[1] = IRB.getInt32(0);
523800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
524800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    G->replaceAllUsesWith(
525800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        ConstantExpr::getGetElementPtr(NewGlobal, Indices2, 2));
526800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    NewGlobal->takeName(G);
527800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    G->eraseFromParent();
528800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
529800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Initializers[i] = ConstantStruct::get(
530800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        GlobalStructTy,
531800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        ConstantExpr::getPointerCast(NewGlobal, IntptrTy),
532800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        ConstantInt::get(IntptrTy, SizeInBytes),
533800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize),
534800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        ConstantExpr::getPointerCast(Name, IntptrTy),
535800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        NULL);
536800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    DEBUG(dbgs() << "NEW GLOBAL:\n" << *NewGlobal);
537800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
538800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
539800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  ArrayType *ArrayOfGlobalStructTy = ArrayType::get(GlobalStructTy, n);
540800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  GlobalVariable *AllGlobals = new GlobalVariable(
541800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      M, ArrayOfGlobalStructTy, false, GlobalVariable::PrivateLinkage,
542800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      ConstantArray::get(ArrayOfGlobalStructTy, Initializers), "");
543800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
544800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Function *AsanRegisterGlobals = cast<Function>(M.getOrInsertFunction(
545800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      kAsanRegisterGlobalsName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
546800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  AsanRegisterGlobals->setLinkage(Function::ExternalLinkage);
547800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
548800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRB.CreateCall2(AsanRegisterGlobals,
549800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                  IRB.CreatePointerCast(AllGlobals, IntptrTy),
550800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                  ConstantInt::get(IntptrTy, n));
551800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
552800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  DEBUG(dbgs() << M);
553800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return true;
554800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
555800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
556800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// virtual
557800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanybool AddressSanitizer::runOnModule(Module &M) {
558800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Initialize the private fields. No one has accessed them before.
559800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  TD = getAnalysisIfAvailable<TargetData>();
560800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (!TD)
561800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return false;
562800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  BL.reset(new BlackList(ClBlackListFile));
563800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
564800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  CurrentModule = &M;
565800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  C = &(M.getContext());
566800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  LongSize = TD->getPointerSizeInBits();
567800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IntptrTy = Type::getIntNTy(*C, LongSize);
568800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IntptrPtrTy = PointerType::get(IntptrTy, 0);
569800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
570800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  AsanCtorFunction = Function::Create(
571800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      FunctionType::get(Type::getVoidTy(*C), false),
572800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      GlobalValue::InternalLinkage, kAsanModuleCtorName, &M);
573800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  BasicBlock *AsanCtorBB = BasicBlock::Create(*C, "", AsanCtorFunction);
574800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  CtorInsertBefore = ReturnInst::Create(*C, AsanCtorBB);
575800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
576800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // call __asan_init in the module ctor.
577800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRBuilder<> IRB(CtorInsertBefore);
578800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  AsanInitFunction = cast<Function>(
579800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      M.getOrInsertFunction(kAsanInitName, IRB.getVoidTy(), NULL));
580800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  AsanInitFunction->setLinkage(Function::ExternalLinkage);
581800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRB.CreateCall(AsanInitFunction);
582800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
583800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  MappingOffset = LongSize == 32
584800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      ? kDefaultShadowOffset32 : kDefaultShadowOffset64;
585800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (ClMappingOffsetLog >= 0) {
586800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (ClMappingOffsetLog == 0) {
587800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      // special case
588800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      MappingOffset = 0;
589800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    } else {
590800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      MappingOffset = 1ULL << ClMappingOffsetLog;
591800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    }
592800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
593800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  MappingScale = kDefaultShadowScale;
594800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (ClMappingScale) {
595800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    MappingScale = ClMappingScale;
596800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
597800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Redzone used for stack and globals is at least 32 bytes.
598800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // For scales 6 and 7, the redzone has to be 64 and 128 bytes respectively.
599800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  RedzoneSize = std::max(32, (int)(1 << MappingScale));
600800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
601800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  bool Res = false;
602800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
603800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (ClGlobals)
604800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Res |= insertGlobalRedzones(M);
605800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
606800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Tell the run-time the current values of mapping offset and scale.
607800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  GlobalValue *asan_mapping_offset =
608800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      new GlobalVariable(M, IntptrTy, true, GlobalValue::LinkOnceODRLinkage,
609800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                     ConstantInt::get(IntptrTy, MappingOffset),
610800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                     kAsanMappingOffsetName);
611800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  GlobalValue *asan_mapping_scale =
612800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      new GlobalVariable(M, IntptrTy, true, GlobalValue::LinkOnceODRLinkage,
613800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                         ConstantInt::get(IntptrTy, MappingScale),
614800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                         kAsanMappingScaleName);
615800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Read these globals, otherwise they may be optimized away.
616800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRB.CreateLoad(asan_mapping_scale, true);
617800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRB.CreateLoad(asan_mapping_offset, true);
618800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
619800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
620800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
621800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (F->isDeclaration()) continue;
622800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Res |= handleFunction(M, *F);
623800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
624800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
625800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  appendToGlobalCtors(M, AsanCtorFunction, 1 /*high priority*/);
626800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
627800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return Res;
628800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
629800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
630800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanybool AddressSanitizer::handleFunction(Module &M, Function &F) {
631800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (BL->isIn(F)) return false;
632800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (&F == AsanCtorFunction) return false;
633800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
634800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (!ClDebugFunc.empty() && ClDebugFunc != F.getName())
635800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return false;
636800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // We want to instrument every address only once per basic block
637800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // (unless there are calls between uses).
638800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  SmallSet<Value*, 16> TempsToInstrument;
639800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  SmallVector<Instruction*, 16> ToInstrument;
640800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
641800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Fill the set of memory operations to instrument.
642800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (Function::iterator FI = F.begin(), FE = F.end();
643800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       FI != FE; ++FI) {
644800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    TempsToInstrument.clear();
645800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    for (BasicBlock::iterator BI = FI->begin(), BE = FI->end();
646800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany         BI != BE; ++BI) {
647800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if ((isa<LoadInst>(BI) && ClInstrumentReads) ||
648800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany          (isa<StoreInst>(BI) && ClInstrumentWrites)) {
649800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        Value *Addr = getLDSTOperand(BI);
650800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        if (ClOpt && ClOptSameTemp) {
651800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany          if (!TempsToInstrument.insert(Addr))
652800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany            continue;  // We've seen this temp in the current BB.
653800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        }
654800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      } else if (isa<MemIntrinsic>(BI) && ClMemIntrin) {
655800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        // ok, take it.
656800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      } else {
657800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        if (isa<CallInst>(BI)) {
658800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany          // A call inside BB.
659800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany          TempsToInstrument.clear();
660800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        }
661800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        continue;
662800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      }
663800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      ToInstrument.push_back(BI);
664800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    }
665800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
666800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
667800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Instrument.
668800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  int NumInstrumented = 0;
669800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (size_t i = 0, n = ToInstrument.size(); i != n; i++) {
670800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Instruction *Inst = ToInstrument[i];
671800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (ClDebugMin < 0 || ClDebugMax < 0 ||
672800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        (NumInstrumented >= ClDebugMin && NumInstrumented <= ClDebugMax)) {
673800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if (isa<StoreInst>(Inst) || isa<LoadInst>(Inst))
674800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        instrumentMop(Inst);
675800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      else
676800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        instrumentMemIntrinsic(cast<MemIntrinsic>(Inst));
677800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    }
678800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    NumInstrumented++;
679800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
680800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
681800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  DEBUG(dbgs() << F);
682800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
683800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  bool ChangedStack = poisonStackInFunction(M, F);
684800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
685800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // For each NSObject descendant having a +load method, this method is invoked
686800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // by the ObjC runtime before any of the static constructors is called.
687800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Therefore we need to instrument such methods with a call to __asan_init
688800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // at the beginning in order to initialize our runtime before any access to
689800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // the shadow memory.
690800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // We cannot just ignore these methods, because they may call other
691800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // instrumented functions.
692800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (F.getName().find(" load]") != std::string::npos) {
693800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    IRBuilder<> IRB(F.begin()->begin());
694800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    IRB.CreateCall(AsanInitFunction);
695800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
696800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
697800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return NumInstrumented > 0 || ChangedStack;
698800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
699800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
700800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic uint64_t ValueForPoison(uint64_t PoisonByte, size_t ShadowRedzoneSize) {
701800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (ShadowRedzoneSize == 1) return PoisonByte;
702800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (ShadowRedzoneSize == 2) return (PoisonByte << 8) + PoisonByte;
703800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (ShadowRedzoneSize == 4)
704800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return (PoisonByte << 24) + (PoisonByte << 16) +
705800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        (PoisonByte << 8) + (PoisonByte);
706800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  assert(0 && "ShadowRedzoneSize is either 1, 2 or 4");
707800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return 0;
708800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
709800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
710800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic void PoisonShadowPartialRightRedzone(uint8_t *Shadow,
711800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                            size_t Size,
712800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                            size_t RedzoneSize,
713800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                            size_t ShadowGranularity,
714800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                            uint8_t Magic) {
715800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (size_t i = 0; i < RedzoneSize;
716800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       i+= ShadowGranularity, Shadow++) {
717800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (i + ShadowGranularity <= Size) {
718800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      *Shadow = 0;  // fully addressable
719800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    } else if (i >= Size) {
720800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      *Shadow = Magic;  // unaddressable
721800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    } else {
722800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      *Shadow = Size - i;  // first Size-i bytes are addressable
723800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    }
724800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
725800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
726800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
727800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanyvoid AddressSanitizer::PoisonStack(const ArrayRef<AllocaInst*> &AllocaVec,
728800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                   IRBuilder<> IRB,
729800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                   Value *ShadowBase, bool DoPoison) {
730800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  size_t ShadowRZSize = RedzoneSize >> MappingScale;
731800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  assert(ShadowRZSize >= 1 && ShadowRZSize <= 4);
732800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Type *RZTy = Type::getIntNTy(*C, ShadowRZSize * 8);
733800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Type *RZPtrTy = PointerType::get(RZTy, 0);
734800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
735800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *PoisonLeft  = ConstantInt::get(RZTy,
736800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    ValueForPoison(DoPoison ? kAsanStackLeftRedzoneMagic : 0LL, ShadowRZSize));
737800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *PoisonMid   = ConstantInt::get(RZTy,
738800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    ValueForPoison(DoPoison ? kAsanStackMidRedzoneMagic : 0LL, ShadowRZSize));
739800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *PoisonRight = ConstantInt::get(RZTy,
740800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    ValueForPoison(DoPoison ? kAsanStackRightRedzoneMagic : 0LL, ShadowRZSize));
741800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
742800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // poison the first red zone.
743800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRB.CreateStore(PoisonLeft, IRB.CreateIntToPtr(ShadowBase, RZPtrTy));
744800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
745800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // poison all other red zones.
746800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint64_t Pos = RedzoneSize;
747800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (size_t i = 0, n = AllocaVec.size(); i < n; i++) {
748800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    AllocaInst *AI = AllocaVec[i];
749800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    uint64_t SizeInBytes = getAllocaSizeInBytes(AI);
750800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    uint64_t AlignedSize = getAlignedAllocaSize(AI);
751800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    assert(AlignedSize - SizeInBytes < RedzoneSize);
752800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *Ptr = NULL;
753800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
754800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Pos += AlignedSize;
755800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
756800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    assert(ShadowBase->getType() == IntptrTy);
757800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (SizeInBytes < AlignedSize) {
758800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      // Poison the partial redzone at right
759800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      Ptr = IRB.CreateAdd(
760800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany          ShadowBase, ConstantInt::get(IntptrTy,
761800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                       (Pos >> MappingScale) - ShadowRZSize));
762800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      size_t AddressableBytes = RedzoneSize - (AlignedSize - SizeInBytes);
763800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      uint32_t Poison = 0;
764800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if (DoPoison) {
765800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        PoisonShadowPartialRightRedzone((uint8_t*)&Poison, AddressableBytes,
766800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                        RedzoneSize,
767800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                        1ULL << MappingScale,
768800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                        kAsanStackPartialRedzoneMagic);
769800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      }
770800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      Value *PartialPoison = ConstantInt::get(RZTy, Poison);
771800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      IRB.CreateStore(PartialPoison, IRB.CreateIntToPtr(Ptr, RZPtrTy));
772800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    }
773800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
774800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // Poison the full redzone at right.
775800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Ptr = IRB.CreateAdd(ShadowBase,
776800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                        ConstantInt::get(IntptrTy, Pos >> MappingScale));
777800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *Poison = i == AllocaVec.size() - 1 ? PoisonRight : PoisonMid;
778800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    IRB.CreateStore(Poison, IRB.CreateIntToPtr(Ptr, RZPtrTy));
779800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
780800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Pos += RedzoneSize;
781800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
782800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
783800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
784800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Find all static Alloca instructions and put
785800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// poisoned red zones around all of them.
786800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Then unpoison everything back before the function returns.
787800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//
788800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Stack poisoning does not play well with exception handling.
789800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// When an exception is thrown, we essentially bypass the code
790800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// that unpoisones the stack. This is why the run-time library has
791800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// to intercept __cxa_throw (as well as longjmp, etc) and unpoison the entire
792800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// stack in the interceptor. This however does not work inside the
793800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// actual function which catches the exception. Most likely because the
794800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// compiler hoists the load of the shadow value somewhere too high.
795800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// This causes asan to report a non-existing bug on 453.povray.
796800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// It sounds like an LLVM bug.
797800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanybool AddressSanitizer::poisonStackInFunction(Module &M, Function &F) {
798800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (!ClStack) return false;
799800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  SmallVector<AllocaInst*, 16> AllocaVec;
800800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  SmallVector<Instruction*, 8> RetVec;
801800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint64_t TotalSize = 0;
802800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
803800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Filter out Alloca instructions we want (and can) handle.
804800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Collect Ret instructions.
805800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (Function::iterator FI = F.begin(), FE = F.end();
806800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       FI != FE; ++FI) {
807800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    BasicBlock &BB = *FI;
808800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    for (BasicBlock::iterator BI = BB.begin(), BE = BB.end();
809800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany         BI != BE; ++BI) {
810800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if (isa<ReturnInst>(BI)) {
811800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany          RetVec.push_back(BI);
812800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany          continue;
813800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      }
814800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
815800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      AllocaInst *AI = dyn_cast<AllocaInst>(BI);
816800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if (!AI) continue;
817800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if (AI->isArrayAllocation()) continue;
818800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if (!AI->isStaticAlloca()) continue;
819800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if (!AI->getAllocatedType()->isSized()) continue;
820800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if (AI->getAlignment() > RedzoneSize) continue;
821800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      AllocaVec.push_back(AI);
822800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      uint64_t AlignedSize =  getAlignedAllocaSize(AI);
823800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      TotalSize += AlignedSize;
824800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    }
825800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
826800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
827800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (AllocaVec.empty()) return false;
828800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
829800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint64_t LocalStackSize = TotalSize + (AllocaVec.size() + 1) * RedzoneSize;
830800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
831800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  bool DoStackMalloc = ClUseAfterReturn
832800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      && LocalStackSize <= kMaxStackMallocSize;
833800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
834800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Instruction *InsBefore = AllocaVec[0];
835800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRBuilder<> IRB(InsBefore);
836800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
837800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
838800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Type *ByteArrayTy = ArrayType::get(IRB.getInt8Ty(), LocalStackSize);
839800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  AllocaInst *MyAlloca =
840800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      new AllocaInst(ByteArrayTy, "MyAlloca", InsBefore);
841800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  MyAlloca->setAlignment(RedzoneSize);
842800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  assert(MyAlloca->isStaticAlloca());
843800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *OrigStackBase = IRB.CreatePointerCast(MyAlloca, IntptrTy);
844800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *LocalStackBase = OrigStackBase;
845800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
846800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (DoStackMalloc) {
847800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *AsanStackMallocFunc = M.getOrInsertFunction(
848800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        kAsanStackMallocName, IntptrTy, IntptrTy, IntptrTy, NULL);
849800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    LocalStackBase = IRB.CreateCall2(AsanStackMallocFunc,
850800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        ConstantInt::get(IntptrTy, LocalStackSize), OrigStackBase);
851800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
852800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
853800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // This string will be parsed by the run-time (DescribeStackAddress).
854800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  SmallString<2048> StackDescriptionStorage;
855800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  raw_svector_ostream StackDescription(StackDescriptionStorage);
856800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  StackDescription << F.getName() << " " << AllocaVec.size() << " ";
857800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
858800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint64_t Pos = RedzoneSize;
859800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Replace Alloca instructions with base+offset.
860800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (size_t i = 0, n = AllocaVec.size(); i < n; i++) {
861800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    AllocaInst *AI = AllocaVec[i];
862800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    uint64_t SizeInBytes = getAllocaSizeInBytes(AI);
863800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    StringRef Name = AI->getName();
864800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    StackDescription << Pos << " " << SizeInBytes << " "
865800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                     << Name.size() << " " << Name << " ";
866800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    uint64_t AlignedSize = getAlignedAllocaSize(AI);
867800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    assert((AlignedSize % RedzoneSize) == 0);
868800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    AI->replaceAllUsesWith(
869800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        IRB.CreateIntToPtr(
870800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany            IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, Pos)),
871800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany            AI->getType()));
872800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Pos += AlignedSize + RedzoneSize;
873800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
874800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  assert(Pos == LocalStackSize);
875800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
876800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Write the Magic value and the frame description constant to the redzone.
877800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *BasePlus0 = IRB.CreateIntToPtr(LocalStackBase, IntptrPtrTy);
878800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRB.CreateStore(ConstantInt::get(IntptrTy, kCurrentStackFrameMagic),
879800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                  BasePlus0);
880800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *BasePlus1 = IRB.CreateAdd(LocalStackBase,
881800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                   ConstantInt::get(IntptrTy, LongSize/8));
882800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  BasePlus1 = IRB.CreateIntToPtr(BasePlus1, IntptrPtrTy);
883800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *Description = IRB.CreatePointerCast(
884800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      createPrivateGlobalForString(M, StackDescription.str()),
885800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      IntptrTy);
886800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRB.CreateStore(Description, BasePlus1);
887800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
888800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Poison the stack redzones at the entry.
889800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *ShadowBase = memToShadow(LocalStackBase, IRB);
890800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  PoisonStack(ArrayRef<AllocaInst*>(AllocaVec), IRB, ShadowBase, true);
891800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
892800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *AsanStackFreeFunc = NULL;
893800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (DoStackMalloc) {
894800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    AsanStackFreeFunc = M.getOrInsertFunction(
895800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        kAsanStackFreeName, IRB.getVoidTy(),
896800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        IntptrTy, IntptrTy, IntptrTy, NULL);
897800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
898800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
899800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Unpoison the stack before all ret instructions.
900800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (size_t i = 0, n = RetVec.size(); i < n; i++) {
901800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Instruction *Ret = RetVec[i];
902800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    IRBuilder<> IRBRet(Ret);
903800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
904800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // Mark the current frame as retired.
905800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    IRBRet.CreateStore(ConstantInt::get(IntptrTy, kRetiredStackFrameMagic),
906800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                       BasePlus0);
907800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // Unpoison the stack.
908800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    PoisonStack(ArrayRef<AllocaInst*>(AllocaVec), IRBRet, ShadowBase, false);
909800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
910800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (DoStackMalloc) {
911800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      IRBRet.CreateCall3(AsanStackFreeFunc, LocalStackBase,
912800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                         ConstantInt::get(IntptrTy, LocalStackSize),
913800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                         OrigStackBase);
914800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    }
915800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
916800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
917800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (ClDebugStack) {
918800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    DEBUG(dbgs() << F);
919800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
920800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
921800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return true;
922800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
923800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
924800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya SerebryanyBlackList::BlackList(const std::string &Path) {
925800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Functions = NULL;
926800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  const char *kFunPrefix = "fun:";
927800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (!ClBlackListFile.size()) return;
928800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  std::string Fun;
929800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
930800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  OwningPtr<MemoryBuffer> File;
931800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (error_code EC = MemoryBuffer::getFile(ClBlackListFile.c_str(), File)) {
932800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    errs() << EC.message();
933800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    exit(1);
934800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
935800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  MemoryBuffer *Buff = File.take();
936800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  const char *Data = Buff->getBufferStart();
937800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  size_t DataLen = Buff->getBufferSize();
938800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  SmallVector<StringRef, 16> Lines;
939800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  SplitString(StringRef(Data, DataLen), Lines, "\n\r");
940800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (size_t i = 0, numLines = Lines.size(); i < numLines; i++) {
941800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (Lines[i].startswith(kFunPrefix)) {
942800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      std::string ThisFunc = Lines[i].substr(strlen(kFunPrefix));
943800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if (Fun.size()) {
944800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        Fun += "|";
945800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      }
946800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      // add ThisFunc replacing * with .*
947800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      for (size_t j = 0, n = ThisFunc.size(); j < n; j++) {
948800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        if (ThisFunc[j] == '*')
949800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany          Fun += '.';
950800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        Fun += ThisFunc[j];
951800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      }
952800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    }
953800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
954800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (Fun.size()) {
955800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Functions = new Regex(Fun);
956800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
957800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
958800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
959800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanybool BlackList::isIn(const Function &F) {
960800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (Functions) {
961800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    bool Res = Functions->match(F.getName());
962800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return Res;
963800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
964800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return false;
965800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
966