Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1 | //===-- AddressSanitizer.cpp - memory error detector ------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file is a part of AddressSanitizer, an address sanity checker. |
| 11 | // Details of the algorithm: |
| 12 | // http://code.google.com/p/address-sanitizer/wiki/AddressSanitizerAlgorithm |
| 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
| 16 | #define DEBUG_TYPE "asan" |
| 17 | |
Kostya Serebryany | a1c4504 | 2012-03-14 23:22:10 +0000 | [diff] [blame] | 18 | #include "FunctionBlackList.h" |
Chandler Carruth | 06cb8ed | 2012-06-29 12:38:19 +0000 | [diff] [blame] | 19 | #include "llvm/Function.h" |
| 20 | #include "llvm/IRBuilder.h" |
| 21 | #include "llvm/IntrinsicInst.h" |
| 22 | #include "llvm/LLVMContext.h" |
| 23 | #include "llvm/Module.h" |
| 24 | #include "llvm/Type.h" |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/ArrayRef.h" |
| 26 | #include "llvm/ADT/OwningPtr.h" |
| 27 | #include "llvm/ADT/SmallSet.h" |
| 28 | #include "llvm/ADT/SmallString.h" |
| 29 | #include "llvm/ADT/SmallVector.h" |
| 30 | #include "llvm/ADT/StringExtras.h" |
Evgeniy Stepanov | 06fdbaa | 2012-05-23 11:52:12 +0000 | [diff] [blame] | 31 | #include "llvm/ADT/Triple.h" |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 32 | #include "llvm/Support/CommandLine.h" |
| 33 | #include "llvm/Support/DataTypes.h" |
| 34 | #include "llvm/Support/Debug.h" |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 35 | #include "llvm/Support/raw_ostream.h" |
| 36 | #include "llvm/Support/system_error.h" |
| 37 | #include "llvm/Target/TargetData.h" |
| 38 | #include "llvm/Target/TargetMachine.h" |
| 39 | #include "llvm/Transforms/Instrumentation.h" |
| 40 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
| 41 | #include "llvm/Transforms/Utils/ModuleUtils.h" |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 42 | |
| 43 | #include <string> |
| 44 | #include <algorithm> |
| 45 | |
| 46 | using namespace llvm; |
| 47 | |
| 48 | static const uint64_t kDefaultShadowScale = 3; |
| 49 | static const uint64_t kDefaultShadowOffset32 = 1ULL << 29; |
| 50 | static const uint64_t kDefaultShadowOffset64 = 1ULL << 44; |
Evgeniy Stepanov | 06fdbaa | 2012-05-23 11:52:12 +0000 | [diff] [blame] | 51 | static const uint64_t kDefaultShadowOffsetAndroid = 0; |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 52 | |
| 53 | static const size_t kMaxStackMallocSize = 1 << 16; // 64K |
| 54 | static const uintptr_t kCurrentStackFrameMagic = 0x41B58AB3; |
| 55 | static const uintptr_t kRetiredStackFrameMagic = 0x45E0360E; |
| 56 | |
| 57 | static const char *kAsanModuleCtorName = "asan.module_ctor"; |
Kostya Serebryany | 7bcfc99 | 2011-12-15 21:59:03 +0000 | [diff] [blame] | 58 | static const char *kAsanModuleDtorName = "asan.module_dtor"; |
| 59 | static const int kAsanCtorAndCtorPriority = 1; |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 60 | static const char *kAsanReportErrorTemplate = "__asan_report_"; |
| 61 | static const char *kAsanRegisterGlobalsName = "__asan_register_globals"; |
Kostya Serebryany | 7bcfc99 | 2011-12-15 21:59:03 +0000 | [diff] [blame] | 62 | static const char *kAsanUnregisterGlobalsName = "__asan_unregister_globals"; |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 63 | static const char *kAsanInitName = "__asan_init"; |
Kostya Serebryany | 95e3cf4 | 2012-02-08 21:36:17 +0000 | [diff] [blame] | 64 | static const char *kAsanHandleNoReturnName = "__asan_handle_no_return"; |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 65 | static const char *kAsanMappingOffsetName = "__asan_mapping_offset"; |
| 66 | static const char *kAsanMappingScaleName = "__asan_mapping_scale"; |
| 67 | static const char *kAsanStackMallocName = "__asan_stack_malloc"; |
| 68 | static const char *kAsanStackFreeName = "__asan_stack_free"; |
| 69 | |
| 70 | static const int kAsanStackLeftRedzoneMagic = 0xf1; |
| 71 | static const int kAsanStackMidRedzoneMagic = 0xf2; |
| 72 | static const int kAsanStackRightRedzoneMagic = 0xf3; |
| 73 | static const int kAsanStackPartialRedzoneMagic = 0xf4; |
| 74 | |
| 75 | // Command-line flags. |
| 76 | |
| 77 | // This flag may need to be replaced with -f[no-]asan-reads. |
| 78 | static cl::opt<bool> ClInstrumentReads("asan-instrument-reads", |
| 79 | cl::desc("instrument read instructions"), cl::Hidden, cl::init(true)); |
| 80 | static cl::opt<bool> ClInstrumentWrites("asan-instrument-writes", |
| 81 | cl::desc("instrument write instructions"), cl::Hidden, cl::init(true)); |
Kostya Serebryany | e6cf2e0 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 82 | static cl::opt<bool> ClInstrumentAtomics("asan-instrument-atomics", |
| 83 | cl::desc("instrument atomic instructions (rmw, cmpxchg)"), |
| 84 | cl::Hidden, cl::init(true)); |
Kostya Serebryany | 324cbb8 | 2012-06-28 09:34:41 +0000 | [diff] [blame] | 85 | // This flags limits the number of instructions to be instrumented |
| 86 | // in any given BB. Normally, this should be set to unlimited (INT_MAX), |
| 87 | // but due to http://llvm.org/bugs/show_bug.cgi?id=12652 we temporary |
| 88 | // set it to 10000. |
| 89 | static cl::opt<int> ClMaxInsnsToInstrumentPerBB("asan-max-ins-per-bb", |
| 90 | cl::init(10000), |
| 91 | cl::desc("maximal number of instructions to instrument in any given BB"), |
| 92 | cl::Hidden); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 93 | // This flag may need to be replaced with -f[no]asan-stack. |
| 94 | static cl::opt<bool> ClStack("asan-stack", |
| 95 | cl::desc("Handle stack memory"), cl::Hidden, cl::init(true)); |
| 96 | // This flag may need to be replaced with -f[no]asan-use-after-return. |
| 97 | static cl::opt<bool> ClUseAfterReturn("asan-use-after-return", |
| 98 | cl::desc("Check return-after-free"), cl::Hidden, cl::init(false)); |
| 99 | // This flag may need to be replaced with -f[no]asan-globals. |
| 100 | static cl::opt<bool> ClGlobals("asan-globals", |
| 101 | cl::desc("Handle global objects"), cl::Hidden, cl::init(true)); |
| 102 | static cl::opt<bool> ClMemIntrin("asan-memintrin", |
| 103 | cl::desc("Handle memset/memcpy/memmove"), cl::Hidden, cl::init(true)); |
| 104 | // This flag may need to be replaced with -fasan-blacklist. |
| 105 | static cl::opt<std::string> ClBlackListFile("asan-blacklist", |
| 106 | cl::desc("File containing the list of functions to ignore " |
| 107 | "during instrumentation"), cl::Hidden); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 108 | |
| 109 | // These flags allow to change the shadow mapping. |
| 110 | // The shadow mapping looks like |
| 111 | // Shadow = (Mem >> scale) + (1 << offset_log) |
| 112 | static cl::opt<int> ClMappingScale("asan-mapping-scale", |
| 113 | cl::desc("scale of asan shadow mapping"), cl::Hidden, cl::init(0)); |
| 114 | static cl::opt<int> ClMappingOffsetLog("asan-mapping-offset-log", |
| 115 | cl::desc("offset of asan shadow mapping"), cl::Hidden, cl::init(-1)); |
| 116 | |
| 117 | // Optimization flags. Not user visible, used mostly for testing |
| 118 | // and benchmarking the tool. |
| 119 | static cl::opt<bool> ClOpt("asan-opt", |
| 120 | cl::desc("Optimize instrumentation"), cl::Hidden, cl::init(true)); |
| 121 | static cl::opt<bool> ClOptSameTemp("asan-opt-same-temp", |
| 122 | cl::desc("Instrument the same temp just once"), cl::Hidden, |
| 123 | cl::init(true)); |
| 124 | static cl::opt<bool> ClOptGlobals("asan-opt-globals", |
| 125 | cl::desc("Don't instrument scalar globals"), cl::Hidden, cl::init(true)); |
| 126 | |
| 127 | // Debug flags. |
| 128 | static cl::opt<int> ClDebug("asan-debug", cl::desc("debug"), cl::Hidden, |
| 129 | cl::init(0)); |
| 130 | static cl::opt<int> ClDebugStack("asan-debug-stack", cl::desc("debug stack"), |
| 131 | cl::Hidden, cl::init(0)); |
| 132 | static cl::opt<std::string> ClDebugFunc("asan-debug-func", |
| 133 | cl::Hidden, cl::desc("Debug func")); |
| 134 | static cl::opt<int> ClDebugMin("asan-debug-min", cl::desc("Debug min inst"), |
| 135 | cl::Hidden, cl::init(-1)); |
| 136 | static cl::opt<int> ClDebugMax("asan-debug-max", cl::desc("Debug man inst"), |
| 137 | cl::Hidden, cl::init(-1)); |
| 138 | |
| 139 | namespace { |
| 140 | |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 141 | /// AddressSanitizer: instrument the code in module to find memory bugs. |
| 142 | struct AddressSanitizer : public ModulePass { |
| 143 | AddressSanitizer(); |
Alexander Potapenko | 2587804 | 2012-01-23 11:22:43 +0000 | [diff] [blame] | 144 | virtual const char *getPassName() const; |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 145 | void instrumentMop(Instruction *I); |
| 146 | void instrumentAddress(Instruction *OrigIns, IRBuilder<> &IRB, |
| 147 | Value *Addr, uint32_t TypeSize, bool IsWrite); |
| 148 | Instruction *generateCrashCode(IRBuilder<> &IRB, Value *Addr, |
| 149 | bool IsWrite, uint32_t TypeSize); |
| 150 | bool instrumentMemIntrinsic(MemIntrinsic *MI); |
| 151 | void instrumentMemIntrinsicParam(Instruction *OrigIns, Value *Addr, |
| 152 | Value *Size, |
| 153 | Instruction *InsertBefore, bool IsWrite); |
| 154 | Value *memToShadow(Value *Shadow, IRBuilder<> &IRB); |
| 155 | bool handleFunction(Module &M, Function &F); |
Kostya Serebryany | a1a8a32 | 2012-01-30 23:50:10 +0000 | [diff] [blame] | 156 | bool maybeInsertAsanInitAtFunctionEntry(Function &F); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 157 | bool poisonStackInFunction(Module &M, Function &F); |
| 158 | virtual bool runOnModule(Module &M); |
| 159 | bool insertGlobalRedzones(Module &M); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 160 | static char ID; // Pass identification, replacement for typeid |
| 161 | |
| 162 | private: |
| 163 | |
| 164 | uint64_t getAllocaSizeInBytes(AllocaInst *AI) { |
| 165 | Type *Ty = AI->getAllocatedType(); |
Evgeniy Stepanov | d8313be | 2012-03-02 10:41:08 +0000 | [diff] [blame] | 166 | uint64_t SizeInBytes = TD->getTypeAllocSize(Ty); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 167 | return SizeInBytes; |
| 168 | } |
| 169 | uint64_t getAlignedSize(uint64_t SizeInBytes) { |
| 170 | return ((SizeInBytes + RedzoneSize - 1) |
| 171 | / RedzoneSize) * RedzoneSize; |
| 172 | } |
| 173 | uint64_t getAlignedAllocaSize(AllocaInst *AI) { |
| 174 | uint64_t SizeInBytes = getAllocaSizeInBytes(AI); |
| 175 | return getAlignedSize(SizeInBytes); |
| 176 | } |
| 177 | |
Alexander Potapenko | 55cabae | 2012-04-23 10:47:31 +0000 | [diff] [blame] | 178 | Function *checkInterfaceFunction(Constant *FuncOrBitcast); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 179 | void PoisonStack(const ArrayRef<AllocaInst*> &AllocaVec, IRBuilder<> IRB, |
| 180 | Value *ShadowBase, bool DoPoison); |
Kostya Serebryany | 5a3a9c9 | 2011-11-18 01:41:06 +0000 | [diff] [blame] | 181 | bool LooksLikeCodeInBug11395(Instruction *I); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 182 | |
| 183 | Module *CurrentModule; |
| 184 | LLVMContext *C; |
| 185 | TargetData *TD; |
| 186 | uint64_t MappingOffset; |
| 187 | int MappingScale; |
| 188 | size_t RedzoneSize; |
| 189 | int LongSize; |
| 190 | Type *IntptrTy; |
| 191 | Type *IntptrPtrTy; |
| 192 | Function *AsanCtorFunction; |
| 193 | Function *AsanInitFunction; |
| 194 | Instruction *CtorInsertBefore; |
Kostya Serebryany | a1c4504 | 2012-03-14 23:22:10 +0000 | [diff] [blame] | 195 | OwningPtr<FunctionBlackList> BL; |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 196 | }; |
| 197 | } // namespace |
| 198 | |
| 199 | char AddressSanitizer::ID = 0; |
| 200 | INITIALIZE_PASS(AddressSanitizer, "asan", |
| 201 | "AddressSanitizer: detects use-after-free and out-of-bounds bugs.", |
| 202 | false, false) |
| 203 | AddressSanitizer::AddressSanitizer() : ModulePass(ID) { } |
| 204 | ModulePass *llvm::createAddressSanitizerPass() { |
| 205 | return new AddressSanitizer(); |
| 206 | } |
| 207 | |
Alexander Potapenko | 2587804 | 2012-01-23 11:22:43 +0000 | [diff] [blame] | 208 | const char *AddressSanitizer::getPassName() const { |
| 209 | return "AddressSanitizer"; |
| 210 | } |
| 211 | |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 212 | // Create a constant for Str so that we can pass it to the run-time lib. |
| 213 | static GlobalVariable *createPrivateGlobalForString(Module &M, StringRef Str) { |
Chris Lattner | 18c7f80 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 214 | Constant *StrConst = ConstantDataArray::getString(M.getContext(), Str); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 215 | return new GlobalVariable(M, StrConst->getType(), true, |
| 216 | GlobalValue::PrivateLinkage, StrConst, ""); |
| 217 | } |
| 218 | |
| 219 | // Split the basic block and insert an if-then code. |
| 220 | // Before: |
| 221 | // Head |
Kostya Serebryany | 56139bc | 2012-07-02 11:42:29 +0000 | [diff] [blame] | 222 | // Cmp |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 223 | // Tail |
| 224 | // After: |
| 225 | // Head |
| 226 | // if (Cmp) |
Kostya Serebryany | 56139bc | 2012-07-02 11:42:29 +0000 | [diff] [blame] | 227 | // ThenBlock |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 228 | // Tail |
| 229 | // |
Kostya Serebryany | 56139bc | 2012-07-02 11:42:29 +0000 | [diff] [blame] | 230 | // Returns the ThenBlock's terminator. |
| 231 | static BranchInst *splitBlockAndInsertIfThen(Value *Cmp) { |
| 232 | Instruction *SplitBefore = cast<Instruction>(Cmp)->getNextNode(); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 233 | |
Chandler Carruth | c3c8db9 | 2012-07-16 08:58:53 +0000 | [diff] [blame^] | 234 | // Create three basic blocks, with the middle block empty, by splitting twice. |
| 235 | BasicBlock *Head = SplitBefore->getParent(); |
| 236 | BasicBlock *Then = Head->splitBasicBlock(SplitBefore); |
| 237 | BasicBlock *Tail = Then->splitBasicBlock(SplitBefore); |
| 238 | |
| 239 | TerminatorInst *HeadOldTerm = Head->getTerminator(); |
| 240 | IRBuilder<>(HeadOldTerm).CreateCondBr(Cmp, Then, Tail); |
| 241 | HeadOldTerm->eraseFromParent(); |
| 242 | |
| 243 | return cast<BranchInst>(Then->getTerminator()); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) { |
| 247 | // Shadow >> scale |
| 248 | Shadow = IRB.CreateLShr(Shadow, MappingScale); |
| 249 | if (MappingOffset == 0) |
| 250 | return Shadow; |
| 251 | // (Shadow >> scale) | offset |
| 252 | return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy, |
| 253 | MappingOffset)); |
| 254 | } |
| 255 | |
| 256 | void AddressSanitizer::instrumentMemIntrinsicParam(Instruction *OrigIns, |
| 257 | Value *Addr, Value *Size, Instruction *InsertBefore, bool IsWrite) { |
| 258 | // Check the first byte. |
| 259 | { |
| 260 | IRBuilder<> IRB(InsertBefore); |
| 261 | instrumentAddress(OrigIns, IRB, Addr, 8, IsWrite); |
| 262 | } |
| 263 | // Check the last byte. |
| 264 | { |
| 265 | IRBuilder<> IRB(InsertBefore); |
| 266 | Value *SizeMinusOne = IRB.CreateSub( |
| 267 | Size, ConstantInt::get(Size->getType(), 1)); |
| 268 | SizeMinusOne = IRB.CreateIntCast(SizeMinusOne, IntptrTy, false); |
| 269 | Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy); |
| 270 | Value *AddrPlusSizeMinisOne = IRB.CreateAdd(AddrLong, SizeMinusOne); |
| 271 | instrumentAddress(OrigIns, IRB, AddrPlusSizeMinisOne, 8, IsWrite); |
| 272 | } |
| 273 | } |
| 274 | |
| 275 | // Instrument memset/memmove/memcpy |
| 276 | bool AddressSanitizer::instrumentMemIntrinsic(MemIntrinsic *MI) { |
| 277 | Value *Dst = MI->getDest(); |
| 278 | MemTransferInst *MemTran = dyn_cast<MemTransferInst>(MI); |
| 279 | Value *Src = MemTran ? MemTran->getSource() : NULL; |
| 280 | Value *Length = MI->getLength(); |
| 281 | |
| 282 | Constant *ConstLength = dyn_cast<Constant>(Length); |
| 283 | Instruction *InsertBefore = MI; |
| 284 | if (ConstLength) { |
| 285 | if (ConstLength->isNullValue()) return false; |
| 286 | } else { |
| 287 | // The size is not a constant so it could be zero -- check at run-time. |
| 288 | IRBuilder<> IRB(InsertBefore); |
| 289 | |
| 290 | Value *Cmp = IRB.CreateICmpNE(Length, |
Kostya Serebryany | 56139bc | 2012-07-02 11:42:29 +0000 | [diff] [blame] | 291 | Constant::getNullValue(Length->getType())); |
| 292 | InsertBefore = splitBlockAndInsertIfThen(Cmp); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | instrumentMemIntrinsicParam(MI, Dst, Length, InsertBefore, true); |
| 296 | if (Src) |
| 297 | instrumentMemIntrinsicParam(MI, Src, Length, InsertBefore, false); |
| 298 | return true; |
| 299 | } |
| 300 | |
Kostya Serebryany | e6cf2e0 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 301 | // If I is an interesting memory access, return the PointerOperand |
| 302 | // and set IsWrite. Otherwise return NULL. |
| 303 | static Value *isInterestingMemoryAccess(Instruction *I, bool *IsWrite) { |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 304 | if (LoadInst *LI = dyn_cast<LoadInst>(I)) { |
Kostya Serebryany | e6cf2e0 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 305 | if (!ClInstrumentReads) return NULL; |
| 306 | *IsWrite = false; |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 307 | return LI->getPointerOperand(); |
| 308 | } |
Kostya Serebryany | e6cf2e0 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 309 | if (StoreInst *SI = dyn_cast<StoreInst>(I)) { |
| 310 | if (!ClInstrumentWrites) return NULL; |
| 311 | *IsWrite = true; |
| 312 | return SI->getPointerOperand(); |
| 313 | } |
| 314 | if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(I)) { |
| 315 | if (!ClInstrumentAtomics) return NULL; |
| 316 | *IsWrite = true; |
| 317 | return RMW->getPointerOperand(); |
| 318 | } |
| 319 | if (AtomicCmpXchgInst *XCHG = dyn_cast<AtomicCmpXchgInst>(I)) { |
| 320 | if (!ClInstrumentAtomics) return NULL; |
| 321 | *IsWrite = true; |
| 322 | return XCHG->getPointerOperand(); |
| 323 | } |
| 324 | return NULL; |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 325 | } |
| 326 | |
| 327 | void AddressSanitizer::instrumentMop(Instruction *I) { |
Kostya Serebryany | e6cf2e0 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 328 | bool IsWrite; |
| 329 | Value *Addr = isInterestingMemoryAccess(I, &IsWrite); |
| 330 | assert(Addr); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 331 | if (ClOpt && ClOptGlobals && isa<GlobalVariable>(Addr)) { |
| 332 | // We are accessing a global scalar variable. Nothing to catch here. |
| 333 | return; |
| 334 | } |
| 335 | Type *OrigPtrTy = Addr->getType(); |
| 336 | Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType(); |
| 337 | |
| 338 | assert(OrigTy->isSized()); |
| 339 | uint32_t TypeSize = TD->getTypeStoreSizeInBits(OrigTy); |
| 340 | |
| 341 | if (TypeSize != 8 && TypeSize != 16 && |
| 342 | TypeSize != 32 && TypeSize != 64 && TypeSize != 128) { |
| 343 | // Ignore all unusual sizes. |
| 344 | return; |
| 345 | } |
| 346 | |
| 347 | IRBuilder<> IRB(I); |
| 348 | instrumentAddress(I, IRB, Addr, TypeSize, IsWrite); |
| 349 | } |
| 350 | |
Alexander Potapenko | 55cabae | 2012-04-23 10:47:31 +0000 | [diff] [blame] | 351 | // Validate the result of Module::getOrInsertFunction called for an interface |
| 352 | // function of AddressSanitizer. If the instrumented module defines a function |
| 353 | // with the same name, their prototypes must match, otherwise |
| 354 | // getOrInsertFunction returns a bitcast. |
| 355 | Function *AddressSanitizer::checkInterfaceFunction(Constant *FuncOrBitcast) { |
| 356 | if (isa<Function>(FuncOrBitcast)) return cast<Function>(FuncOrBitcast); |
| 357 | FuncOrBitcast->dump(); |
| 358 | report_fatal_error("trying to redefine an AddressSanitizer " |
| 359 | "interface function"); |
| 360 | } |
| 361 | |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 362 | Instruction *AddressSanitizer::generateCrashCode( |
| 363 | IRBuilder<> &IRB, Value *Addr, bool IsWrite, uint32_t TypeSize) { |
Kostya Serebryany | 3c7faae | 2012-01-06 18:09:21 +0000 | [diff] [blame] | 364 | // IsWrite and TypeSize are encoded in the function name. |
| 365 | std::string FunctionName = std::string(kAsanReportErrorTemplate) + |
| 366 | (IsWrite ? "store" : "load") + itostr(TypeSize / 8); |
| 367 | Value *ReportWarningFunc = CurrentModule->getOrInsertFunction( |
| 368 | FunctionName, IRB.getVoidTy(), IntptrTy, NULL); |
| 369 | CallInst *Call = IRB.CreateCall(ReportWarningFunc, Addr); |
| 370 | Call->setDoesNotReturn(); |
| 371 | return Call; |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 372 | } |
| 373 | |
| 374 | void AddressSanitizer::instrumentAddress(Instruction *OrigIns, |
| 375 | IRBuilder<> &IRB, Value *Addr, |
| 376 | uint32_t TypeSize, bool IsWrite) { |
| 377 | Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy); |
| 378 | |
| 379 | Type *ShadowTy = IntegerType::get( |
| 380 | *C, std::max(8U, TypeSize >> MappingScale)); |
| 381 | Type *ShadowPtrTy = PointerType::get(ShadowTy, 0); |
| 382 | Value *ShadowPtr = memToShadow(AddrLong, IRB); |
| 383 | Value *CmpVal = Constant::getNullValue(ShadowTy); |
| 384 | Value *ShadowValue = IRB.CreateLoad( |
| 385 | IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy)); |
| 386 | |
| 387 | Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal); |
| 388 | |
Kostya Serebryany | 56139bc | 2012-07-02 11:42:29 +0000 | [diff] [blame] | 389 | Instruction *CheckTerm = splitBlockAndInsertIfThen(Cmp); |
Chandler Carruth | c3c8db9 | 2012-07-16 08:58:53 +0000 | [diff] [blame^] | 390 | IRB.SetInsertPoint(CheckTerm); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 391 | |
| 392 | size_t Granularity = 1 << MappingScale; |
| 393 | if (TypeSize < 8 * Granularity) { |
| 394 | // Addr & (Granularity - 1) |
Chandler Carruth | c3c8db9 | 2012-07-16 08:58:53 +0000 | [diff] [blame^] | 395 | Value *LastAccessedByte = IRB.CreateAnd( |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 396 | AddrLong, ConstantInt::get(IntptrTy, Granularity - 1)); |
| 397 | // (Addr & (Granularity - 1)) + size - 1 |
Kostya Serebryany | 3f11998 | 2012-04-27 10:04:53 +0000 | [diff] [blame] | 398 | if (TypeSize / 8 > 1) |
Chandler Carruth | c3c8db9 | 2012-07-16 08:58:53 +0000 | [diff] [blame^] | 399 | LastAccessedByte = IRB.CreateAdd( |
Kostya Serebryany | 3f11998 | 2012-04-27 10:04:53 +0000 | [diff] [blame] | 400 | LastAccessedByte, ConstantInt::get(IntptrTy, TypeSize / 8 - 1)); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 401 | // (uint8_t) ((Addr & (Granularity-1)) + size - 1) |
Chandler Carruth | c3c8db9 | 2012-07-16 08:58:53 +0000 | [diff] [blame^] | 402 | LastAccessedByte = IRB.CreateIntCast( |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 403 | LastAccessedByte, IRB.getInt8Ty(), false); |
| 404 | // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue |
Chandler Carruth | c3c8db9 | 2012-07-16 08:58:53 +0000 | [diff] [blame^] | 405 | Value *Cmp2 = IRB.CreateICmpSGE(LastAccessedByte, ShadowValue); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 406 | |
Kostya Serebryany | 56139bc | 2012-07-02 11:42:29 +0000 | [diff] [blame] | 407 | CheckTerm = splitBlockAndInsertIfThen(Cmp2); |
Chandler Carruth | c3c8db9 | 2012-07-16 08:58:53 +0000 | [diff] [blame^] | 408 | IRB.SetInsertPoint(CheckTerm); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 409 | } |
| 410 | |
Chandler Carruth | c3c8db9 | 2012-07-16 08:58:53 +0000 | [diff] [blame^] | 411 | Instruction *Crash = generateCrashCode(IRB, AddrLong, IsWrite, TypeSize); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 412 | Crash->setDebugLoc(OrigIns->getDebugLoc()); |
Kostya Serebryany | cc1d856 | 2011-12-01 18:54:53 +0000 | [diff] [blame] | 413 | ReplaceInstWithInst(CheckTerm, new UnreachableInst(*C)); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 414 | } |
| 415 | |
| 416 | // This function replaces all global variables with new variables that have |
| 417 | // trailing redzones. It also creates a function that poisons |
| 418 | // redzones and inserts this function into llvm.global_ctors. |
| 419 | bool AddressSanitizer::insertGlobalRedzones(Module &M) { |
| 420 | SmallVector<GlobalVariable *, 16> GlobalsToChange; |
| 421 | |
| 422 | for (Module::GlobalListType::iterator G = M.getGlobalList().begin(), |
| 423 | E = M.getGlobalList().end(); G != E; ++G) { |
| 424 | Type *Ty = cast<PointerType>(G->getType())->getElementType(); |
| 425 | DEBUG(dbgs() << "GLOBAL: " << *G); |
| 426 | |
| 427 | if (!Ty->isSized()) continue; |
| 428 | if (!G->hasInitializer()) continue; |
Kostya Serebryany | 7cf2a04 | 2011-11-17 23:14:59 +0000 | [diff] [blame] | 429 | // Touch only those globals that will not be defined in other modules. |
| 430 | // Don't handle ODR type linkages since other modules may be built w/o asan. |
Kostya Serebryany | 2e7fb2f | 2011-11-17 23:37:53 +0000 | [diff] [blame] | 431 | if (G->getLinkage() != GlobalVariable::ExternalLinkage && |
| 432 | G->getLinkage() != GlobalVariable::PrivateLinkage && |
| 433 | G->getLinkage() != GlobalVariable::InternalLinkage) |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 434 | continue; |
Kostya Serebryany | d2703de | 2011-11-23 02:10:54 +0000 | [diff] [blame] | 435 | // Two problems with thread-locals: |
| 436 | // - The address of the main thread's copy can't be computed at link-time. |
| 437 | // - Need to poison all copies, not just the main thread's one. |
| 438 | if (G->isThreadLocal()) |
| 439 | continue; |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 440 | // For now, just ignore this Alloca if the alignment is large. |
| 441 | if (G->getAlignment() > RedzoneSize) continue; |
| 442 | |
| 443 | // Ignore all the globals with the names starting with "\01L_OBJC_". |
| 444 | // Many of those are put into the .cstring section. The linker compresses |
| 445 | // that section by removing the spare \0s after the string terminator, so |
| 446 | // our redzones get broken. |
| 447 | if ((G->getName().find("\01L_OBJC_") == 0) || |
| 448 | (G->getName().find("\01l_OBJC_") == 0)) { |
| 449 | DEBUG(dbgs() << "Ignoring \\01L_OBJC_* global: " << *G); |
| 450 | continue; |
| 451 | } |
| 452 | |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 453 | if (G->hasSection()) { |
| 454 | StringRef Section(G->getSection()); |
Alexander Potapenko | 8375bc9 | 2012-01-30 10:40:22 +0000 | [diff] [blame] | 455 | // Ignore the globals from the __OBJC section. The ObjC runtime assumes |
| 456 | // those conform to /usr/lib/objc/runtime.h, so we can't add redzones to |
| 457 | // them. |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 458 | if ((Section.find("__OBJC,") == 0) || |
| 459 | (Section.find("__DATA, __objc_") == 0)) { |
| 460 | DEBUG(dbgs() << "Ignoring ObjC runtime global: " << *G); |
| 461 | continue; |
| 462 | } |
Alexander Potapenko | 8375bc9 | 2012-01-30 10:40:22 +0000 | [diff] [blame] | 463 | // See http://code.google.com/p/address-sanitizer/issues/detail?id=32 |
| 464 | // Constant CFString instances are compiled in the following way: |
| 465 | // -- the string buffer is emitted into |
| 466 | // __TEXT,__cstring,cstring_literals |
| 467 | // -- the constant NSConstantString structure referencing that buffer |
| 468 | // is placed into __DATA,__cfstring |
| 469 | // Therefore there's no point in placing redzones into __DATA,__cfstring. |
| 470 | // Moreover, it causes the linker to crash on OS X 10.7 |
| 471 | if (Section.find("__DATA,__cfstring") == 0) { |
| 472 | DEBUG(dbgs() << "Ignoring CFString: " << *G); |
| 473 | continue; |
| 474 | } |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 475 | } |
| 476 | |
| 477 | GlobalsToChange.push_back(G); |
| 478 | } |
| 479 | |
| 480 | size_t n = GlobalsToChange.size(); |
| 481 | if (n == 0) return false; |
| 482 | |
| 483 | // A global is described by a structure |
| 484 | // size_t beg; |
| 485 | // size_t size; |
| 486 | // size_t size_with_redzone; |
| 487 | // const char *name; |
| 488 | // We initialize an array of such structures and pass it to a run-time call. |
| 489 | StructType *GlobalStructTy = StructType::get(IntptrTy, IntptrTy, |
| 490 | IntptrTy, IntptrTy, NULL); |
| 491 | SmallVector<Constant *, 16> Initializers(n); |
| 492 | |
| 493 | IRBuilder<> IRB(CtorInsertBefore); |
| 494 | |
| 495 | for (size_t i = 0; i < n; i++) { |
| 496 | GlobalVariable *G = GlobalsToChange[i]; |
| 497 | PointerType *PtrTy = cast<PointerType>(G->getType()); |
| 498 | Type *Ty = PtrTy->getElementType(); |
Kostya Serebryany | 208a4ff | 2012-03-21 15:28:50 +0000 | [diff] [blame] | 499 | uint64_t SizeInBytes = TD->getTypeAllocSize(Ty); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 500 | uint64_t RightRedzoneSize = RedzoneSize + |
| 501 | (RedzoneSize - (SizeInBytes % RedzoneSize)); |
| 502 | Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize); |
| 503 | |
| 504 | StructType *NewTy = StructType::get(Ty, RightRedZoneTy, NULL); |
| 505 | Constant *NewInitializer = ConstantStruct::get( |
| 506 | NewTy, G->getInitializer(), |
| 507 | Constant::getNullValue(RightRedZoneTy), NULL); |
| 508 | |
Kostya Serebryany | a4b2b1d | 2011-12-15 22:55:55 +0000 | [diff] [blame] | 509 | SmallString<2048> DescriptionOfGlobal = G->getName(); |
| 510 | DescriptionOfGlobal += " ("; |
| 511 | DescriptionOfGlobal += M.getModuleIdentifier(); |
| 512 | DescriptionOfGlobal += ")"; |
| 513 | GlobalVariable *Name = createPrivateGlobalForString(M, DescriptionOfGlobal); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 514 | |
| 515 | // Create a new global variable with enough space for a redzone. |
| 516 | GlobalVariable *NewGlobal = new GlobalVariable( |
| 517 | M, NewTy, G->isConstant(), G->getLinkage(), |
Hans Wennborg | ce718ff | 2012-06-23 11:37:03 +0000 | [diff] [blame] | 518 | NewInitializer, "", G, G->getThreadLocalMode()); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 519 | NewGlobal->copyAttributesFrom(G); |
| 520 | NewGlobal->setAlignment(RedzoneSize); |
| 521 | |
| 522 | Value *Indices2[2]; |
| 523 | Indices2[0] = IRB.getInt32(0); |
| 524 | Indices2[1] = IRB.getInt32(0); |
| 525 | |
| 526 | G->replaceAllUsesWith( |
Kostya Serebryany | f1639ab | 2012-01-28 04:27:16 +0000 | [diff] [blame] | 527 | ConstantExpr::getGetElementPtr(NewGlobal, Indices2, true)); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 528 | NewGlobal->takeName(G); |
| 529 | G->eraseFromParent(); |
| 530 | |
| 531 | Initializers[i] = ConstantStruct::get( |
| 532 | GlobalStructTy, |
| 533 | ConstantExpr::getPointerCast(NewGlobal, IntptrTy), |
| 534 | ConstantInt::get(IntptrTy, SizeInBytes), |
| 535 | ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize), |
| 536 | ConstantExpr::getPointerCast(Name, IntptrTy), |
| 537 | NULL); |
| 538 | DEBUG(dbgs() << "NEW GLOBAL:\n" << *NewGlobal); |
| 539 | } |
| 540 | |
| 541 | ArrayType *ArrayOfGlobalStructTy = ArrayType::get(GlobalStructTy, n); |
| 542 | GlobalVariable *AllGlobals = new GlobalVariable( |
| 543 | M, ArrayOfGlobalStructTy, false, GlobalVariable::PrivateLinkage, |
| 544 | ConstantArray::get(ArrayOfGlobalStructTy, Initializers), ""); |
| 545 | |
Alexander Potapenko | 55cabae | 2012-04-23 10:47:31 +0000 | [diff] [blame] | 546 | Function *AsanRegisterGlobals = checkInterfaceFunction(M.getOrInsertFunction( |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 547 | kAsanRegisterGlobalsName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL)); |
| 548 | AsanRegisterGlobals->setLinkage(Function::ExternalLinkage); |
| 549 | |
| 550 | IRB.CreateCall2(AsanRegisterGlobals, |
| 551 | IRB.CreatePointerCast(AllGlobals, IntptrTy), |
| 552 | ConstantInt::get(IntptrTy, n)); |
| 553 | |
Kostya Serebryany | 7bcfc99 | 2011-12-15 21:59:03 +0000 | [diff] [blame] | 554 | // We also need to unregister globals at the end, e.g. when a shared library |
| 555 | // gets closed. |
| 556 | Function *AsanDtorFunction = Function::Create( |
| 557 | FunctionType::get(Type::getVoidTy(*C), false), |
| 558 | GlobalValue::InternalLinkage, kAsanModuleDtorName, &M); |
| 559 | BasicBlock *AsanDtorBB = BasicBlock::Create(*C, "", AsanDtorFunction); |
| 560 | IRBuilder<> IRB_Dtor(ReturnInst::Create(*C, AsanDtorBB)); |
Alexander Potapenko | 55cabae | 2012-04-23 10:47:31 +0000 | [diff] [blame] | 561 | Function *AsanUnregisterGlobals = |
| 562 | checkInterfaceFunction(M.getOrInsertFunction( |
| 563 | kAsanUnregisterGlobalsName, |
| 564 | IRB.getVoidTy(), IntptrTy, IntptrTy, NULL)); |
Kostya Serebryany | 7bcfc99 | 2011-12-15 21:59:03 +0000 | [diff] [blame] | 565 | AsanUnregisterGlobals->setLinkage(Function::ExternalLinkage); |
| 566 | |
| 567 | IRB_Dtor.CreateCall2(AsanUnregisterGlobals, |
| 568 | IRB.CreatePointerCast(AllGlobals, IntptrTy), |
| 569 | ConstantInt::get(IntptrTy, n)); |
| 570 | appendToGlobalDtors(M, AsanDtorFunction, kAsanCtorAndCtorPriority); |
| 571 | |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 572 | DEBUG(dbgs() << M); |
| 573 | return true; |
| 574 | } |
| 575 | |
| 576 | // virtual |
| 577 | bool AddressSanitizer::runOnModule(Module &M) { |
| 578 | // Initialize the private fields. No one has accessed them before. |
| 579 | TD = getAnalysisIfAvailable<TargetData>(); |
| 580 | if (!TD) |
| 581 | return false; |
Kostya Serebryany | a1c4504 | 2012-03-14 23:22:10 +0000 | [diff] [blame] | 582 | BL.reset(new FunctionBlackList(ClBlackListFile)); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 583 | |
| 584 | CurrentModule = &M; |
| 585 | C = &(M.getContext()); |
| 586 | LongSize = TD->getPointerSizeInBits(); |
| 587 | IntptrTy = Type::getIntNTy(*C, LongSize); |
| 588 | IntptrPtrTy = PointerType::get(IntptrTy, 0); |
| 589 | |
| 590 | AsanCtorFunction = Function::Create( |
| 591 | FunctionType::get(Type::getVoidTy(*C), false), |
| 592 | GlobalValue::InternalLinkage, kAsanModuleCtorName, &M); |
| 593 | BasicBlock *AsanCtorBB = BasicBlock::Create(*C, "", AsanCtorFunction); |
| 594 | CtorInsertBefore = ReturnInst::Create(*C, AsanCtorBB); |
| 595 | |
| 596 | // call __asan_init in the module ctor. |
| 597 | IRBuilder<> IRB(CtorInsertBefore); |
Alexander Potapenko | 55cabae | 2012-04-23 10:47:31 +0000 | [diff] [blame] | 598 | AsanInitFunction = checkInterfaceFunction( |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 599 | M.getOrInsertFunction(kAsanInitName, IRB.getVoidTy(), NULL)); |
| 600 | AsanInitFunction->setLinkage(Function::ExternalLinkage); |
| 601 | IRB.CreateCall(AsanInitFunction); |
| 602 | |
Evgeniy Stepanov | 06fdbaa | 2012-05-23 11:52:12 +0000 | [diff] [blame] | 603 | llvm::Triple targetTriple(M.getTargetTriple()); |
| 604 | bool isAndroid = targetTriple.getEnvironment() == llvm::Triple::ANDROIDEABI; |
| 605 | |
| 606 | MappingOffset = isAndroid ? kDefaultShadowOffsetAndroid : |
| 607 | (LongSize == 32 ? kDefaultShadowOffset32 : kDefaultShadowOffset64); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 608 | if (ClMappingOffsetLog >= 0) { |
| 609 | if (ClMappingOffsetLog == 0) { |
| 610 | // special case |
| 611 | MappingOffset = 0; |
| 612 | } else { |
| 613 | MappingOffset = 1ULL << ClMappingOffsetLog; |
| 614 | } |
| 615 | } |
| 616 | MappingScale = kDefaultShadowScale; |
| 617 | if (ClMappingScale) { |
| 618 | MappingScale = ClMappingScale; |
| 619 | } |
| 620 | // Redzone used for stack and globals is at least 32 bytes. |
| 621 | // For scales 6 and 7, the redzone has to be 64 and 128 bytes respectively. |
| 622 | RedzoneSize = std::max(32, (int)(1 << MappingScale)); |
| 623 | |
| 624 | bool Res = false; |
| 625 | |
| 626 | if (ClGlobals) |
| 627 | Res |= insertGlobalRedzones(M); |
| 628 | |
Kostya Serebryany | 8c0134a | 2012-03-19 16:40:35 +0000 | [diff] [blame] | 629 | if (ClMappingOffsetLog >= 0) { |
| 630 | // Tell the run-time the current values of mapping offset and scale. |
| 631 | GlobalValue *asan_mapping_offset = |
| 632 | new GlobalVariable(M, IntptrTy, true, GlobalValue::LinkOnceODRLinkage, |
| 633 | ConstantInt::get(IntptrTy, MappingOffset), |
| 634 | kAsanMappingOffsetName); |
| 635 | // Read the global, otherwise it may be optimized away. |
| 636 | IRB.CreateLoad(asan_mapping_offset, true); |
| 637 | } |
| 638 | if (ClMappingScale) { |
| 639 | GlobalValue *asan_mapping_scale = |
| 640 | new GlobalVariable(M, IntptrTy, true, GlobalValue::LinkOnceODRLinkage, |
| 641 | ConstantInt::get(IntptrTy, MappingScale), |
| 642 | kAsanMappingScaleName); |
| 643 | // Read the global, otherwise it may be optimized away. |
| 644 | IRB.CreateLoad(asan_mapping_scale, true); |
| 645 | } |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 646 | |
| 647 | |
| 648 | for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) { |
| 649 | if (F->isDeclaration()) continue; |
| 650 | Res |= handleFunction(M, *F); |
| 651 | } |
| 652 | |
Kostya Serebryany | 7bcfc99 | 2011-12-15 21:59:03 +0000 | [diff] [blame] | 653 | appendToGlobalCtors(M, AsanCtorFunction, kAsanCtorAndCtorPriority); |
Kostya Serebryany | 9b02741 | 2011-12-12 18:01:46 +0000 | [diff] [blame] | 654 | |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 655 | return Res; |
| 656 | } |
| 657 | |
Kostya Serebryany | a1a8a32 | 2012-01-30 23:50:10 +0000 | [diff] [blame] | 658 | bool AddressSanitizer::maybeInsertAsanInitAtFunctionEntry(Function &F) { |
| 659 | // For each NSObject descendant having a +load method, this method is invoked |
| 660 | // by the ObjC runtime before any of the static constructors is called. |
| 661 | // Therefore we need to instrument such methods with a call to __asan_init |
| 662 | // at the beginning in order to initialize our runtime before any access to |
| 663 | // the shadow memory. |
| 664 | // We cannot just ignore these methods, because they may call other |
| 665 | // instrumented functions. |
| 666 | if (F.getName().find(" load]") != std::string::npos) { |
| 667 | IRBuilder<> IRB(F.begin()->begin()); |
| 668 | IRB.CreateCall(AsanInitFunction); |
| 669 | return true; |
| 670 | } |
| 671 | return false; |
| 672 | } |
| 673 | |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 674 | bool AddressSanitizer::handleFunction(Module &M, Function &F) { |
| 675 | if (BL->isIn(F)) return false; |
| 676 | if (&F == AsanCtorFunction) return false; |
Kostya Serebryany | a1a8a32 | 2012-01-30 23:50:10 +0000 | [diff] [blame] | 677 | |
| 678 | // If needed, insert __asan_init before checking for AddressSafety attr. |
| 679 | maybeInsertAsanInitAtFunctionEntry(F); |
| 680 | |
Kostya Serebryany | 0307b9a | 2012-01-24 19:34:43 +0000 | [diff] [blame] | 681 | if (!F.hasFnAttr(Attribute::AddressSafety)) return false; |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 682 | |
| 683 | if (!ClDebugFunc.empty() && ClDebugFunc != F.getName()) |
| 684 | return false; |
| 685 | // We want to instrument every address only once per basic block |
| 686 | // (unless there are calls between uses). |
| 687 | SmallSet<Value*, 16> TempsToInstrument; |
| 688 | SmallVector<Instruction*, 16> ToInstrument; |
Kostya Serebryany | 95e3cf4 | 2012-02-08 21:36:17 +0000 | [diff] [blame] | 689 | SmallVector<Instruction*, 8> NoReturnCalls; |
Kostya Serebryany | e6cf2e0 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 690 | bool IsWrite; |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 691 | |
| 692 | // Fill the set of memory operations to instrument. |
| 693 | for (Function::iterator FI = F.begin(), FE = F.end(); |
| 694 | FI != FE; ++FI) { |
| 695 | TempsToInstrument.clear(); |
Kostya Serebryany | 324cbb8 | 2012-06-28 09:34:41 +0000 | [diff] [blame] | 696 | int NumInsnsPerBB = 0; |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 697 | for (BasicBlock::iterator BI = FI->begin(), BE = FI->end(); |
| 698 | BI != BE; ++BI) { |
Kostya Serebryany | bcb55ce | 2012-01-11 18:15:23 +0000 | [diff] [blame] | 699 | if (LooksLikeCodeInBug11395(BI)) return false; |
Kostya Serebryany | e6cf2e0 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 700 | if (Value *Addr = isInterestingMemoryAccess(BI, &IsWrite)) { |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 701 | if (ClOpt && ClOptSameTemp) { |
| 702 | if (!TempsToInstrument.insert(Addr)) |
| 703 | continue; // We've seen this temp in the current BB. |
| 704 | } |
| 705 | } else if (isa<MemIntrinsic>(BI) && ClMemIntrin) { |
| 706 | // ok, take it. |
| 707 | } else { |
Kostya Serebryany | 95e3cf4 | 2012-02-08 21:36:17 +0000 | [diff] [blame] | 708 | if (CallInst *CI = dyn_cast<CallInst>(BI)) { |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 709 | // A call inside BB. |
| 710 | TempsToInstrument.clear(); |
Kostya Serebryany | 95e3cf4 | 2012-02-08 21:36:17 +0000 | [diff] [blame] | 711 | if (CI->doesNotReturn()) { |
| 712 | NoReturnCalls.push_back(CI); |
| 713 | } |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 714 | } |
| 715 | continue; |
| 716 | } |
| 717 | ToInstrument.push_back(BI); |
Kostya Serebryany | 324cbb8 | 2012-06-28 09:34:41 +0000 | [diff] [blame] | 718 | NumInsnsPerBB++; |
| 719 | if (NumInsnsPerBB >= ClMaxInsnsToInstrumentPerBB) |
| 720 | break; |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 721 | } |
| 722 | } |
| 723 | |
| 724 | // Instrument. |
| 725 | int NumInstrumented = 0; |
| 726 | for (size_t i = 0, n = ToInstrument.size(); i != n; i++) { |
| 727 | Instruction *Inst = ToInstrument[i]; |
| 728 | if (ClDebugMin < 0 || ClDebugMax < 0 || |
| 729 | (NumInstrumented >= ClDebugMin && NumInstrumented <= ClDebugMax)) { |
Kostya Serebryany | e6cf2e0 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 730 | if (isInterestingMemoryAccess(Inst, &IsWrite)) |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 731 | instrumentMop(Inst); |
| 732 | else |
| 733 | instrumentMemIntrinsic(cast<MemIntrinsic>(Inst)); |
| 734 | } |
| 735 | NumInstrumented++; |
| 736 | } |
| 737 | |
| 738 | DEBUG(dbgs() << F); |
| 739 | |
| 740 | bool ChangedStack = poisonStackInFunction(M, F); |
Kostya Serebryany | 95e3cf4 | 2012-02-08 21:36:17 +0000 | [diff] [blame] | 741 | |
| 742 | // We must unpoison the stack before every NoReturn call (throw, _exit, etc). |
| 743 | // See e.g. http://code.google.com/p/address-sanitizer/issues/detail?id=37 |
| 744 | for (size_t i = 0, n = NoReturnCalls.size(); i != n; i++) { |
| 745 | Instruction *CI = NoReturnCalls[i]; |
| 746 | IRBuilder<> IRB(CI); |
| 747 | IRB.CreateCall(M.getOrInsertFunction(kAsanHandleNoReturnName, |
| 748 | IRB.getVoidTy(), NULL)); |
| 749 | } |
| 750 | |
| 751 | return NumInstrumented > 0 || ChangedStack || !NoReturnCalls.empty(); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 752 | } |
| 753 | |
| 754 | static uint64_t ValueForPoison(uint64_t PoisonByte, size_t ShadowRedzoneSize) { |
| 755 | if (ShadowRedzoneSize == 1) return PoisonByte; |
| 756 | if (ShadowRedzoneSize == 2) return (PoisonByte << 8) + PoisonByte; |
| 757 | if (ShadowRedzoneSize == 4) |
| 758 | return (PoisonByte << 24) + (PoisonByte << 16) + |
| 759 | (PoisonByte << 8) + (PoisonByte); |
Craig Topper | 8581438 | 2012-02-07 05:05:23 +0000 | [diff] [blame] | 760 | llvm_unreachable("ShadowRedzoneSize is either 1, 2 or 4"); |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 761 | } |
| 762 | |
| 763 | static void PoisonShadowPartialRightRedzone(uint8_t *Shadow, |
| 764 | size_t Size, |
| 765 | size_t RedzoneSize, |
| 766 | size_t ShadowGranularity, |
| 767 | uint8_t Magic) { |
| 768 | for (size_t i = 0; i < RedzoneSize; |
| 769 | i+= ShadowGranularity, Shadow++) { |
| 770 | if (i + ShadowGranularity <= Size) { |
| 771 | *Shadow = 0; // fully addressable |
| 772 | } else if (i >= Size) { |
| 773 | *Shadow = Magic; // unaddressable |
| 774 | } else { |
| 775 | *Shadow = Size - i; // first Size-i bytes are addressable |
| 776 | } |
| 777 | } |
| 778 | } |
| 779 | |
| 780 | void AddressSanitizer::PoisonStack(const ArrayRef<AllocaInst*> &AllocaVec, |
| 781 | IRBuilder<> IRB, |
| 782 | Value *ShadowBase, bool DoPoison) { |
| 783 | size_t ShadowRZSize = RedzoneSize >> MappingScale; |
| 784 | assert(ShadowRZSize >= 1 && ShadowRZSize <= 4); |
| 785 | Type *RZTy = Type::getIntNTy(*C, ShadowRZSize * 8); |
| 786 | Type *RZPtrTy = PointerType::get(RZTy, 0); |
| 787 | |
| 788 | Value *PoisonLeft = ConstantInt::get(RZTy, |
| 789 | ValueForPoison(DoPoison ? kAsanStackLeftRedzoneMagic : 0LL, ShadowRZSize)); |
| 790 | Value *PoisonMid = ConstantInt::get(RZTy, |
| 791 | ValueForPoison(DoPoison ? kAsanStackMidRedzoneMagic : 0LL, ShadowRZSize)); |
| 792 | Value *PoisonRight = ConstantInt::get(RZTy, |
| 793 | ValueForPoison(DoPoison ? kAsanStackRightRedzoneMagic : 0LL, ShadowRZSize)); |
| 794 | |
| 795 | // poison the first red zone. |
| 796 | IRB.CreateStore(PoisonLeft, IRB.CreateIntToPtr(ShadowBase, RZPtrTy)); |
| 797 | |
| 798 | // poison all other red zones. |
| 799 | uint64_t Pos = RedzoneSize; |
| 800 | for (size_t i = 0, n = AllocaVec.size(); i < n; i++) { |
| 801 | AllocaInst *AI = AllocaVec[i]; |
| 802 | uint64_t SizeInBytes = getAllocaSizeInBytes(AI); |
| 803 | uint64_t AlignedSize = getAlignedAllocaSize(AI); |
| 804 | assert(AlignedSize - SizeInBytes < RedzoneSize); |
| 805 | Value *Ptr = NULL; |
| 806 | |
| 807 | Pos += AlignedSize; |
| 808 | |
| 809 | assert(ShadowBase->getType() == IntptrTy); |
| 810 | if (SizeInBytes < AlignedSize) { |
| 811 | // Poison the partial redzone at right |
| 812 | Ptr = IRB.CreateAdd( |
| 813 | ShadowBase, ConstantInt::get(IntptrTy, |
| 814 | (Pos >> MappingScale) - ShadowRZSize)); |
| 815 | size_t AddressableBytes = RedzoneSize - (AlignedSize - SizeInBytes); |
| 816 | uint32_t Poison = 0; |
| 817 | if (DoPoison) { |
| 818 | PoisonShadowPartialRightRedzone((uint8_t*)&Poison, AddressableBytes, |
| 819 | RedzoneSize, |
| 820 | 1ULL << MappingScale, |
| 821 | kAsanStackPartialRedzoneMagic); |
| 822 | } |
| 823 | Value *PartialPoison = ConstantInt::get(RZTy, Poison); |
| 824 | IRB.CreateStore(PartialPoison, IRB.CreateIntToPtr(Ptr, RZPtrTy)); |
| 825 | } |
| 826 | |
| 827 | // Poison the full redzone at right. |
| 828 | Ptr = IRB.CreateAdd(ShadowBase, |
| 829 | ConstantInt::get(IntptrTy, Pos >> MappingScale)); |
| 830 | Value *Poison = i == AllocaVec.size() - 1 ? PoisonRight : PoisonMid; |
| 831 | IRB.CreateStore(Poison, IRB.CreateIntToPtr(Ptr, RZPtrTy)); |
| 832 | |
| 833 | Pos += RedzoneSize; |
| 834 | } |
| 835 | } |
| 836 | |
Kostya Serebryany | 5a3a9c9 | 2011-11-18 01:41:06 +0000 | [diff] [blame] | 837 | // Workaround for bug 11395: we don't want to instrument stack in functions |
| 838 | // with large assembly blobs (32-bit only), otherwise reg alloc may crash. |
Kostya Serebryany | d2703de | 2011-11-23 02:10:54 +0000 | [diff] [blame] | 839 | // FIXME: remove once the bug 11395 is fixed. |
Kostya Serebryany | 5a3a9c9 | 2011-11-18 01:41:06 +0000 | [diff] [blame] | 840 | bool AddressSanitizer::LooksLikeCodeInBug11395(Instruction *I) { |
| 841 | if (LongSize != 32) return false; |
| 842 | CallInst *CI = dyn_cast<CallInst>(I); |
| 843 | if (!CI || !CI->isInlineAsm()) return false; |
| 844 | if (CI->getNumArgOperands() <= 5) return false; |
| 845 | // We have inline assembly with quite a few arguments. |
| 846 | return true; |
| 847 | } |
| 848 | |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 849 | // Find all static Alloca instructions and put |
| 850 | // poisoned red zones around all of them. |
| 851 | // Then unpoison everything back before the function returns. |
| 852 | // |
| 853 | // Stack poisoning does not play well with exception handling. |
| 854 | // When an exception is thrown, we essentially bypass the code |
| 855 | // that unpoisones the stack. This is why the run-time library has |
| 856 | // to intercept __cxa_throw (as well as longjmp, etc) and unpoison the entire |
| 857 | // stack in the interceptor. This however does not work inside the |
| 858 | // actual function which catches the exception. Most likely because the |
| 859 | // compiler hoists the load of the shadow value somewhere too high. |
| 860 | // This causes asan to report a non-existing bug on 453.povray. |
| 861 | // It sounds like an LLVM bug. |
| 862 | bool AddressSanitizer::poisonStackInFunction(Module &M, Function &F) { |
| 863 | if (!ClStack) return false; |
| 864 | SmallVector<AllocaInst*, 16> AllocaVec; |
| 865 | SmallVector<Instruction*, 8> RetVec; |
| 866 | uint64_t TotalSize = 0; |
| 867 | |
| 868 | // Filter out Alloca instructions we want (and can) handle. |
| 869 | // Collect Ret instructions. |
| 870 | for (Function::iterator FI = F.begin(), FE = F.end(); |
| 871 | FI != FE; ++FI) { |
| 872 | BasicBlock &BB = *FI; |
| 873 | for (BasicBlock::iterator BI = BB.begin(), BE = BB.end(); |
| 874 | BI != BE; ++BI) { |
Kostya Serebryany | 800e03f | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 875 | if (isa<ReturnInst>(BI)) { |
| 876 | RetVec.push_back(BI); |
| 877 | continue; |
| 878 | } |
| 879 | |
| 880 | AllocaInst *AI = dyn_cast<AllocaInst>(BI); |
| 881 | if (!AI) continue; |
| 882 | if (AI->isArrayAllocation()) continue; |
| 883 | if (!AI->isStaticAlloca()) continue; |
| 884 | if (!AI->getAllocatedType()->isSized()) continue; |
| 885 | if (AI->getAlignment() > RedzoneSize) continue; |
| 886 | AllocaVec.push_back(AI); |
| 887 | uint64_t AlignedSize = getAlignedAllocaSize(AI); |
| 888 | TotalSize += AlignedSize; |
| 889 | } |
| 890 | } |
| 891 | |
| 892 | if (AllocaVec.empty()) return false; |
| 893 | |
| 894 | uint64_t LocalStackSize = TotalSize + (AllocaVec.size() + 1) * RedzoneSize; |
| 895 | |
| 896 | bool DoStackMalloc = ClUseAfterReturn |
| 897 | && LocalStackSize <= kMaxStackMallocSize; |
| 898 | |
| 899 | Instruction *InsBefore = AllocaVec[0]; |
| 900 | IRBuilder<> IRB(InsBefore); |
| 901 | |
| 902 | |
| 903 | Type *ByteArrayTy = ArrayType::get(IRB.getInt8Ty(), LocalStackSize); |
| 904 | AllocaInst *MyAlloca = |
| 905 | new AllocaInst(ByteArrayTy, "MyAlloca", InsBefore); |
| 906 | MyAlloca->setAlignment(RedzoneSize); |
| 907 | assert(MyAlloca->isStaticAlloca()); |
| 908 | Value *OrigStackBase = IRB.CreatePointerCast(MyAlloca, IntptrTy); |
| 909 | Value *LocalStackBase = OrigStackBase; |
| 910 | |
| 911 | if (DoStackMalloc) { |
| 912 | Value *AsanStackMallocFunc = M.getOrInsertFunction( |
| 913 | kAsanStackMallocName, IntptrTy, IntptrTy, IntptrTy, NULL); |
| 914 | LocalStackBase = IRB.CreateCall2(AsanStackMallocFunc, |
| 915 | ConstantInt::get(IntptrTy, LocalStackSize), OrigStackBase); |
| 916 | } |
| 917 | |
| 918 | // This string will be parsed by the run-time (DescribeStackAddress). |
| 919 | SmallString<2048> StackDescriptionStorage; |
| 920 | raw_svector_ostream StackDescription(StackDescriptionStorage); |
| 921 | StackDescription << F.getName() << " " << AllocaVec.size() << " "; |
| 922 | |
| 923 | uint64_t Pos = RedzoneSize; |
| 924 | // Replace Alloca instructions with base+offset. |
| 925 | for (size_t i = 0, n = AllocaVec.size(); i < n; i++) { |
| 926 | AllocaInst *AI = AllocaVec[i]; |
| 927 | uint64_t SizeInBytes = getAllocaSizeInBytes(AI); |
| 928 | StringRef Name = AI->getName(); |
| 929 | StackDescription << Pos << " " << SizeInBytes << " " |
| 930 | << Name.size() << " " << Name << " "; |
| 931 | uint64_t AlignedSize = getAlignedAllocaSize(AI); |
| 932 | assert((AlignedSize % RedzoneSize) == 0); |
| 933 | AI->replaceAllUsesWith( |
| 934 | IRB.CreateIntToPtr( |
| 935 | IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, Pos)), |
| 936 | AI->getType())); |
| 937 | Pos += AlignedSize + RedzoneSize; |
| 938 | } |
| 939 | assert(Pos == LocalStackSize); |
| 940 | |
| 941 | // Write the Magic value and the frame description constant to the redzone. |
| 942 | Value *BasePlus0 = IRB.CreateIntToPtr(LocalStackBase, IntptrPtrTy); |
| 943 | IRB.CreateStore(ConstantInt::get(IntptrTy, kCurrentStackFrameMagic), |
| 944 | BasePlus0); |
| 945 | Value *BasePlus1 = IRB.CreateAdd(LocalStackBase, |
| 946 | ConstantInt::get(IntptrTy, LongSize/8)); |
| 947 | BasePlus1 = IRB.CreateIntToPtr(BasePlus1, IntptrPtrTy); |
| 948 | Value *Description = IRB.CreatePointerCast( |
| 949 | createPrivateGlobalForString(M, StackDescription.str()), |
| 950 | IntptrTy); |
| 951 | IRB.CreateStore(Description, BasePlus1); |
| 952 | |
| 953 | // Poison the stack redzones at the entry. |
| 954 | Value *ShadowBase = memToShadow(LocalStackBase, IRB); |
| 955 | PoisonStack(ArrayRef<AllocaInst*>(AllocaVec), IRB, ShadowBase, true); |
| 956 | |
| 957 | Value *AsanStackFreeFunc = NULL; |
| 958 | if (DoStackMalloc) { |
| 959 | AsanStackFreeFunc = M.getOrInsertFunction( |
| 960 | kAsanStackFreeName, IRB.getVoidTy(), |
| 961 | IntptrTy, IntptrTy, IntptrTy, NULL); |
| 962 | } |
| 963 | |
| 964 | // Unpoison the stack before all ret instructions. |
| 965 | for (size_t i = 0, n = RetVec.size(); i < n; i++) { |
| 966 | Instruction *Ret = RetVec[i]; |
| 967 | IRBuilder<> IRBRet(Ret); |
| 968 | |
| 969 | // Mark the current frame as retired. |
| 970 | IRBRet.CreateStore(ConstantInt::get(IntptrTy, kRetiredStackFrameMagic), |
| 971 | BasePlus0); |
| 972 | // Unpoison the stack. |
| 973 | PoisonStack(ArrayRef<AllocaInst*>(AllocaVec), IRBRet, ShadowBase, false); |
| 974 | |
| 975 | if (DoStackMalloc) { |
| 976 | IRBRet.CreateCall3(AsanStackFreeFunc, LocalStackBase, |
| 977 | ConstantInt::get(IntptrTy, LocalStackSize), |
| 978 | OrigStackBase); |
| 979 | } |
| 980 | } |
| 981 | |
| 982 | if (ClDebugStack) { |
| 983 | DEBUG(dbgs() << F); |
| 984 | } |
| 985 | |
| 986 | return true; |
| 987 | } |