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 18 #include "llvm/ADT/ArrayRef.h" 19 #include "llvm/ADT/OwningPtr.h" 20 #include "llvm/ADT/SmallSet.h" 21 #include "llvm/ADT/SmallString.h" 22 #include "llvm/ADT/SmallVector.h" 23 #include "llvm/ADT/StringExtras.h" 24 #include "llvm/Function.h" 25 #include "llvm/InlineAsm.h" 26 #include "llvm/IntrinsicInst.h" 27 #include "llvm/LLVMContext.h" 28 #include "llvm/Module.h" 29 #include "llvm/Support/CommandLine.h" 30 #include "llvm/Support/DataTypes.h" 31 #include "llvm/Support/Debug.h" 32 #include "llvm/Support/IRBuilder.h" 33 #include "llvm/Support/MemoryBuffer.h" 34 #include "llvm/Support/Regex.h" 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" 42 #include "llvm/Type.h" 43 44 #include <string> 45 #include <algorithm> 46 47 using namespace llvm; 48 49 static const uint64_t kDefaultShadowScale = 3; 50 static const uint64_t kDefaultShadowOffset32 = 1ULL << 29; 51 static const uint64_t kDefaultShadowOffset64 = 1ULL << 44; 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"; 58 static const char *kAsanReportErrorTemplate = "__asan_report_"; 59 static const char *kAsanRegisterGlobalsName = "__asan_register_globals"; 60 static const char *kAsanInitName = "__asan_init"; 61 static const char *kAsanMappingOffsetName = "__asan_mapping_offset"; 62 static const char *kAsanMappingScaleName = "__asan_mapping_scale"; 63 static const char *kAsanStackMallocName = "__asan_stack_malloc"; 64 static const char *kAsanStackFreeName = "__asan_stack_free"; 65 66 static const int kAsanStackLeftRedzoneMagic = 0xf1; 67 static const int kAsanStackMidRedzoneMagic = 0xf2; 68 static const int kAsanStackRightRedzoneMagic = 0xf3; 69 static const int kAsanStackPartialRedzoneMagic = 0xf4; 70 71 // Command-line flags. 72 73 // This flag may need to be replaced with -f[no-]asan-reads. 74 static cl::opt<bool> ClInstrumentReads("asan-instrument-reads", 75 cl::desc("instrument read instructions"), cl::Hidden, cl::init(true)); 76 static cl::opt<bool> ClInstrumentWrites("asan-instrument-writes", 77 cl::desc("instrument write instructions"), cl::Hidden, cl::init(true)); 78 // This flag may need to be replaced with -f[no]asan-stack. 79 static cl::opt<bool> ClStack("asan-stack", 80 cl::desc("Handle stack memory"), cl::Hidden, cl::init(true)); 81 // This flag may need to be replaced with -f[no]asan-use-after-return. 82 static cl::opt<bool> ClUseAfterReturn("asan-use-after-return", 83 cl::desc("Check return-after-free"), cl::Hidden, cl::init(false)); 84 // This flag may need to be replaced with -f[no]asan-globals. 85 static cl::opt<bool> ClGlobals("asan-globals", 86 cl::desc("Handle global objects"), cl::Hidden, cl::init(true)); 87 static cl::opt<bool> ClMemIntrin("asan-memintrin", 88 cl::desc("Handle memset/memcpy/memmove"), cl::Hidden, cl::init(true)); 89 // This flag may need to be replaced with -fasan-blacklist. 90 static cl::opt<std::string> ClBlackListFile("asan-blacklist", 91 cl::desc("File containing the list of functions to ignore " 92 "during instrumentation"), cl::Hidden); 93 static cl::opt<bool> ClUseCall("asan-use-call", 94 cl::desc("Use function call to generate a crash"), cl::Hidden, 95 cl::init(true)); 96 97 // These flags allow to change the shadow mapping. 98 // The shadow mapping looks like 99 // Shadow = (Mem >> scale) + (1 << offset_log) 100 static cl::opt<int> ClMappingScale("asan-mapping-scale", 101 cl::desc("scale of asan shadow mapping"), cl::Hidden, cl::init(0)); 102 static cl::opt<int> ClMappingOffsetLog("asan-mapping-offset-log", 103 cl::desc("offset of asan shadow mapping"), cl::Hidden, cl::init(-1)); 104 105 // Optimization flags. Not user visible, used mostly for testing 106 // and benchmarking the tool. 107 static cl::opt<bool> ClOpt("asan-opt", 108 cl::desc("Optimize instrumentation"), cl::Hidden, cl::init(true)); 109 static cl::opt<bool> ClOptSameTemp("asan-opt-same-temp", 110 cl::desc("Instrument the same temp just once"), cl::Hidden, 111 cl::init(true)); 112 static cl::opt<bool> ClOptGlobals("asan-opt-globals", 113 cl::desc("Don't instrument scalar globals"), cl::Hidden, cl::init(true)); 114 115 // Debug flags. 116 static cl::opt<int> ClDebug("asan-debug", cl::desc("debug"), cl::Hidden, 117 cl::init(0)); 118 static cl::opt<int> ClDebugStack("asan-debug-stack", cl::desc("debug stack"), 119 cl::Hidden, cl::init(0)); 120 static cl::opt<std::string> ClDebugFunc("asan-debug-func", 121 cl::Hidden, cl::desc("Debug func")); 122 static cl::opt<int> ClDebugMin("asan-debug-min", cl::desc("Debug min inst"), 123 cl::Hidden, cl::init(-1)); 124 static cl::opt<int> ClDebugMax("asan-debug-max", cl::desc("Debug man inst"), 125 cl::Hidden, cl::init(-1)); 126 127 namespace { 128 129 // Blacklisted functions are not instrumented. 130 // The blacklist file contains one or more lines like this: 131 // --- 132 // fun:FunctionWildCard 133 // --- 134 // This is similar to the "ignore" feature of ThreadSanitizer. 135 // http://code.google.com/p/data-race-test/wiki/ThreadSanitizerIgnores 136 class BlackList { 137 public: 138 BlackList(const std::string &Path); 139 bool isIn(const Function &F); 140 private: 141 Regex *Functions; 142 }; 143 144 /// AddressSanitizer: instrument the code in module to find memory bugs. 145 struct AddressSanitizer : public ModulePass { 146 AddressSanitizer(); 147 void instrumentMop(Instruction *I); 148 void instrumentAddress(Instruction *OrigIns, IRBuilder<> &IRB, 149 Value *Addr, uint32_t TypeSize, bool IsWrite); 150 Instruction *generateCrashCode(IRBuilder<> &IRB, Value *Addr, 151 bool IsWrite, uint32_t TypeSize); 152 bool instrumentMemIntrinsic(MemIntrinsic *MI); 153 void instrumentMemIntrinsicParam(Instruction *OrigIns, Value *Addr, 154 Value *Size, 155 Instruction *InsertBefore, bool IsWrite); 156 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB); 157 bool handleFunction(Module &M, Function &F); 158 bool poisonStackInFunction(Module &M, Function &F); 159 virtual bool runOnModule(Module &M); 160 bool insertGlobalRedzones(Module &M); 161 BranchInst *splitBlockAndInsertIfThen(Instruction *SplitBefore, Value *Cmp); 162 static char ID; // Pass identification, replacement for typeid 163 164 private: 165 166 uint64_t getAllocaSizeInBytes(AllocaInst *AI) { 167 Type *Ty = AI->getAllocatedType(); 168 uint64_t SizeInBytes = TD->getTypeStoreSizeInBits(Ty) / 8; 169 return SizeInBytes; 170 } 171 uint64_t getAlignedSize(uint64_t SizeInBytes) { 172 return ((SizeInBytes + RedzoneSize - 1) 173 / RedzoneSize) * RedzoneSize; 174 } 175 uint64_t getAlignedAllocaSize(AllocaInst *AI) { 176 uint64_t SizeInBytes = getAllocaSizeInBytes(AI); 177 return getAlignedSize(SizeInBytes); 178 } 179 180 void PoisonStack(const ArrayRef<AllocaInst*> &AllocaVec, IRBuilder<> IRB, 181 Value *ShadowBase, bool DoPoison); 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; 195 OwningPtr<BlackList> BL; 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 208 // Create a constant for Str so that we can pass it to the run-time lib. 209 static GlobalVariable *createPrivateGlobalForString(Module &M, StringRef Str) { 210 Constant *StrConst = ConstantArray::get(M.getContext(), Str); 211 return new GlobalVariable(M, StrConst->getType(), true, 212 GlobalValue::PrivateLinkage, StrConst, ""); 213 } 214 215 // Split the basic block and insert an if-then code. 216 // Before: 217 // Head 218 // SplitBefore 219 // Tail 220 // After: 221 // Head 222 // if (Cmp) 223 // NewBasicBlock 224 // SplitBefore 225 // Tail 226 // 227 // Returns the NewBasicBlock's terminator. 228 BranchInst *AddressSanitizer::splitBlockAndInsertIfThen( 229 Instruction *SplitBefore, Value *Cmp) { 230 BasicBlock *Head = SplitBefore->getParent(); 231 BasicBlock *Tail = Head->splitBasicBlock(SplitBefore); 232 TerminatorInst *HeadOldTerm = Head->getTerminator(); 233 BasicBlock *NewBasicBlock = 234 BasicBlock::Create(*C, "", Head->getParent()); 235 BranchInst *HeadNewTerm = BranchInst::Create(/*ifTrue*/NewBasicBlock, 236 /*ifFalse*/Tail, 237 Cmp); 238 ReplaceInstWithInst(HeadOldTerm, HeadNewTerm); 239 240 BranchInst *CheckTerm = BranchInst::Create(Tail, NewBasicBlock); 241 return CheckTerm; 242 } 243 244 Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) { 245 // Shadow >> scale 246 Shadow = IRB.CreateLShr(Shadow, MappingScale); 247 if (MappingOffset == 0) 248 return Shadow; 249 // (Shadow >> scale) | offset 250 return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy, 251 MappingOffset)); 252 } 253 254 void AddressSanitizer::instrumentMemIntrinsicParam(Instruction *OrigIns, 255 Value *Addr, Value *Size, Instruction *InsertBefore, bool IsWrite) { 256 // Check the first byte. 257 { 258 IRBuilder<> IRB(InsertBefore); 259 instrumentAddress(OrigIns, IRB, Addr, 8, IsWrite); 260 } 261 // Check the last byte. 262 { 263 IRBuilder<> IRB(InsertBefore); 264 Value *SizeMinusOne = IRB.CreateSub( 265 Size, ConstantInt::get(Size->getType(), 1)); 266 SizeMinusOne = IRB.CreateIntCast(SizeMinusOne, IntptrTy, false); 267 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy); 268 Value *AddrPlusSizeMinisOne = IRB.CreateAdd(AddrLong, SizeMinusOne); 269 instrumentAddress(OrigIns, IRB, AddrPlusSizeMinisOne, 8, IsWrite); 270 } 271 } 272 273 // Instrument memset/memmove/memcpy 274 bool AddressSanitizer::instrumentMemIntrinsic(MemIntrinsic *MI) { 275 Value *Dst = MI->getDest(); 276 MemTransferInst *MemTran = dyn_cast<MemTransferInst>(MI); 277 Value *Src = MemTran ? MemTran->getSource() : NULL; 278 Value *Length = MI->getLength(); 279 280 Constant *ConstLength = dyn_cast<Constant>(Length); 281 Instruction *InsertBefore = MI; 282 if (ConstLength) { 283 if (ConstLength->isNullValue()) return false; 284 } else { 285 // The size is not a constant so it could be zero -- check at run-time. 286 IRBuilder<> IRB(InsertBefore); 287 288 Value *Cmp = IRB.CreateICmpNE(Length, 289 Constant::getNullValue(Length->getType())); 290 InsertBefore = splitBlockAndInsertIfThen(InsertBefore, Cmp); 291 } 292 293 instrumentMemIntrinsicParam(MI, Dst, Length, InsertBefore, true); 294 if (Src) 295 instrumentMemIntrinsicParam(MI, Src, Length, InsertBefore, false); 296 return true; 297 } 298 299 static Value *getLDSTOperand(Instruction *I) { 300 if (LoadInst *LI = dyn_cast<LoadInst>(I)) { 301 return LI->getPointerOperand(); 302 } 303 return cast<StoreInst>(*I).getPointerOperand(); 304 } 305 306 void AddressSanitizer::instrumentMop(Instruction *I) { 307 int IsWrite = isa<StoreInst>(*I); 308 Value *Addr = getLDSTOperand(I); 309 if (ClOpt && ClOptGlobals && isa<GlobalVariable>(Addr)) { 310 // We are accessing a global scalar variable. Nothing to catch here. 311 return; 312 } 313 Type *OrigPtrTy = Addr->getType(); 314 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType(); 315 316 assert(OrigTy->isSized()); 317 uint32_t TypeSize = TD->getTypeStoreSizeInBits(OrigTy); 318 319 if (TypeSize != 8 && TypeSize != 16 && 320 TypeSize != 32 && TypeSize != 64 && TypeSize != 128) { 321 // Ignore all unusual sizes. 322 return; 323 } 324 325 IRBuilder<> IRB(I); 326 instrumentAddress(I, IRB, Addr, TypeSize, IsWrite); 327 } 328 329 Instruction *AddressSanitizer::generateCrashCode( 330 IRBuilder<> &IRB, Value *Addr, bool IsWrite, uint32_t TypeSize) { 331 332 if (ClUseCall) { 333 // Here we use a call instead of arch-specific asm to report an error. 334 // This is almost always slower (because the codegen needs to generate 335 // prologue/epilogue for otherwise leaf functions) and generates more code. 336 // This mode could be useful if we can not use SIGILL for some reason. 337 // 338 // IsWrite and TypeSize are encoded in the function name. 339 std::string FunctionName = std::string(kAsanReportErrorTemplate) + 340 (IsWrite ? "store" : "load") + itostr(TypeSize / 8); 341 Value *ReportWarningFunc = CurrentModule->getOrInsertFunction( 342 FunctionName, IRB.getVoidTy(), IntptrTy, NULL); 343 CallInst *Call = IRB.CreateCall(ReportWarningFunc, Addr); 344 Call->setDoesNotReturn(); 345 return Call; 346 } 347 348 uint32_t LogOfSizeInBytes = CountTrailingZeros_32(TypeSize / 8); 349 assert(8U * (1 << LogOfSizeInBytes) == TypeSize); 350 uint8_t TelltaleValue = IsWrite * 8 + LogOfSizeInBytes; 351 assert(TelltaleValue < 16); 352 353 // Move the failing address to %rax/%eax 354 FunctionType *Fn1Ty = FunctionType::get( 355 IRB.getVoidTy(), ArrayRef<Type*>(IntptrTy), false); 356 const char *MovStr = LongSize == 32 357 ? "mov $0, %eax" : "mov $0, %rax"; 358 Value *AsmMov = InlineAsm::get( 359 Fn1Ty, StringRef(MovStr), StringRef("r"), true); 360 IRB.CreateCall(AsmMov, Addr); 361 362 // crash with ud2; could use int3, but it is less friendly to gdb. 363 // after ud2 put a 1-byte instruction that encodes the access type and size. 364 365 const char *TelltaleInsns[16] = { 366 "push %eax", // 0x50 367 "push %ecx", // 0x51 368 "push %edx", // 0x52 369 "push %ebx", // 0x53 370 "push %esp", // 0x54 371 "push %ebp", // 0x55 372 "push %esi", // 0x56 373 "push %edi", // 0x57 374 "pop %eax", // 0x58 375 "pop %ecx", // 0x59 376 "pop %edx", // 0x5a 377 "pop %ebx", // 0x5b 378 "pop %esp", // 0x5c 379 "pop %ebp", // 0x5d 380 "pop %esi", // 0x5e 381 "pop %edi" // 0x5f 382 }; 383 384 std::string AsmStr = "ud2;"; 385 AsmStr += TelltaleInsns[TelltaleValue]; 386 Value *MyAsm = InlineAsm::get(FunctionType::get(Type::getVoidTy(*C), false), 387 StringRef(AsmStr), StringRef(""), true); 388 CallInst *AsmCall = IRB.CreateCall(MyAsm); 389 390 // This saves us one jump, but triggers a bug in RA (or somewhere else): 391 // while building 483.xalancbmk the compiler goes into infinite loop in 392 // llvm::SpillPlacement::iterate() / RAGreedy::growRegion 393 // AsmCall->setDoesNotReturn(); 394 return AsmCall; 395 } 396 397 void AddressSanitizer::instrumentAddress(Instruction *OrigIns, 398 IRBuilder<> &IRB, Value *Addr, 399 uint32_t TypeSize, bool IsWrite) { 400 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy); 401 402 Type *ShadowTy = IntegerType::get( 403 *C, std::max(8U, TypeSize >> MappingScale)); 404 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0); 405 Value *ShadowPtr = memToShadow(AddrLong, IRB); 406 Value *CmpVal = Constant::getNullValue(ShadowTy); 407 Value *ShadowValue = IRB.CreateLoad( 408 IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy)); 409 410 Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal); 411 412 Instruction *CheckTerm = splitBlockAndInsertIfThen( 413 cast<Instruction>(Cmp)->getNextNode(), Cmp); 414 IRBuilder<> IRB2(CheckTerm); 415 416 size_t Granularity = 1 << MappingScale; 417 if (TypeSize < 8 * Granularity) { 418 // Addr & (Granularity - 1) 419 Value *Lower3Bits = IRB2.CreateAnd( 420 AddrLong, ConstantInt::get(IntptrTy, Granularity - 1)); 421 // (Addr & (Granularity - 1)) + size - 1 422 Value *LastAccessedByte = IRB2.CreateAdd( 423 Lower3Bits, ConstantInt::get(IntptrTy, TypeSize / 8 - 1)); 424 // (uint8_t) ((Addr & (Granularity-1)) + size - 1) 425 LastAccessedByte = IRB2.CreateIntCast( 426 LastAccessedByte, IRB.getInt8Ty(), false); 427 // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue 428 Value *Cmp2 = IRB2.CreateICmpSGE(LastAccessedByte, ShadowValue); 429 430 CheckTerm = splitBlockAndInsertIfThen(CheckTerm, Cmp2); 431 } 432 433 IRBuilder<> IRB1(CheckTerm); 434 Instruction *Crash = generateCrashCode(IRB1, AddrLong, IsWrite, TypeSize); 435 Crash->setDebugLoc(OrigIns->getDebugLoc()); 436 } 437 438 // This function replaces all global variables with new variables that have 439 // trailing redzones. It also creates a function that poisons 440 // redzones and inserts this function into llvm.global_ctors. 441 bool AddressSanitizer::insertGlobalRedzones(Module &M) { 442 SmallVector<GlobalVariable *, 16> GlobalsToChange; 443 444 for (Module::GlobalListType::iterator G = M.getGlobalList().begin(), 445 E = M.getGlobalList().end(); G != E; ++G) { 446 Type *Ty = cast<PointerType>(G->getType())->getElementType(); 447 DEBUG(dbgs() << "GLOBAL: " << *G); 448 449 if (!Ty->isSized()) continue; 450 if (!G->hasInitializer()) continue; 451 if (GlobalVariable::mayBeOverridden(G->getLinkage()) || 452 G->getLinkage() == GlobalVariable::AppendingLinkage) 453 continue; 454 // For now, just ignore this Alloca if the alignment is large. 455 if (G->getAlignment() > RedzoneSize) continue; 456 457 // Ignore all the globals with the names starting with "\01L_OBJC_". 458 // Many of those are put into the .cstring section. The linker compresses 459 // that section by removing the spare \0s after the string terminator, so 460 // our redzones get broken. 461 if ((G->getName().find("\01L_OBJC_") == 0) || 462 (G->getName().find("\01l_OBJC_") == 0)) { 463 DEBUG(dbgs() << "Ignoring \\01L_OBJC_* global: " << *G); 464 continue; 465 } 466 467 // Ignore the globals from the __OBJC section. The ObjC runtime assumes 468 // those conform to /usr/lib/objc/runtime.h, so we can't add redzones to 469 // them. 470 if (G->hasSection()) { 471 StringRef Section(G->getSection()); 472 if ((Section.find("__OBJC,") == 0) || 473 (Section.find("__DATA, __objc_") == 0)) { 474 DEBUG(dbgs() << "Ignoring ObjC runtime global: " << *G); 475 continue; 476 } 477 } 478 479 GlobalsToChange.push_back(G); 480 } 481 482 size_t n = GlobalsToChange.size(); 483 if (n == 0) return false; 484 485 // A global is described by a structure 486 // size_t beg; 487 // size_t size; 488 // size_t size_with_redzone; 489 // const char *name; 490 // We initialize an array of such structures and pass it to a run-time call. 491 StructType *GlobalStructTy = StructType::get(IntptrTy, IntptrTy, 492 IntptrTy, IntptrTy, NULL); 493 SmallVector<Constant *, 16> Initializers(n); 494 495 IRBuilder<> IRB(CtorInsertBefore); 496 497 for (size_t i = 0; i < n; i++) { 498 GlobalVariable *G = GlobalsToChange[i]; 499 PointerType *PtrTy = cast<PointerType>(G->getType()); 500 Type *Ty = PtrTy->getElementType(); 501 uint64_t SizeInBytes = TD->getTypeStoreSizeInBits(Ty) / 8; 502 uint64_t RightRedzoneSize = RedzoneSize + 503 (RedzoneSize - (SizeInBytes % RedzoneSize)); 504 Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize); 505 506 StructType *NewTy = StructType::get(Ty, RightRedZoneTy, NULL); 507 Constant *NewInitializer = ConstantStruct::get( 508 NewTy, G->getInitializer(), 509 Constant::getNullValue(RightRedZoneTy), NULL); 510 511 GlobalVariable *Name = createPrivateGlobalForString(M, G->getName()); 512 513 // Create a new global variable with enough space for a redzone. 514 GlobalVariable *NewGlobal = new GlobalVariable( 515 M, NewTy, G->isConstant(), G->getLinkage(), 516 NewInitializer, "", G, G->isThreadLocal()); 517 NewGlobal->copyAttributesFrom(G); 518 NewGlobal->setAlignment(RedzoneSize); 519 520 Value *Indices2[2]; 521 Indices2[0] = IRB.getInt32(0); 522 Indices2[1] = IRB.getInt32(0); 523 524 G->replaceAllUsesWith( 525 ConstantExpr::getGetElementPtr(NewGlobal, Indices2, 2)); 526 NewGlobal->takeName(G); 527 G->eraseFromParent(); 528 529 Initializers[i] = ConstantStruct::get( 530 GlobalStructTy, 531 ConstantExpr::getPointerCast(NewGlobal, IntptrTy), 532 ConstantInt::get(IntptrTy, SizeInBytes), 533 ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize), 534 ConstantExpr::getPointerCast(Name, IntptrTy), 535 NULL); 536 DEBUG(dbgs() << "NEW GLOBAL:\n" << *NewGlobal); 537 } 538 539 ArrayType *ArrayOfGlobalStructTy = ArrayType::get(GlobalStructTy, n); 540 GlobalVariable *AllGlobals = new GlobalVariable( 541 M, ArrayOfGlobalStructTy, false, GlobalVariable::PrivateLinkage, 542 ConstantArray::get(ArrayOfGlobalStructTy, Initializers), ""); 543 544 Function *AsanRegisterGlobals = cast<Function>(M.getOrInsertFunction( 545 kAsanRegisterGlobalsName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL)); 546 AsanRegisterGlobals->setLinkage(Function::ExternalLinkage); 547 548 IRB.CreateCall2(AsanRegisterGlobals, 549 IRB.CreatePointerCast(AllGlobals, IntptrTy), 550 ConstantInt::get(IntptrTy, n)); 551 552 DEBUG(dbgs() << M); 553 return true; 554 } 555 556 // virtual 557 bool AddressSanitizer::runOnModule(Module &M) { 558 // Initialize the private fields. No one has accessed them before. 559 TD = getAnalysisIfAvailable<TargetData>(); 560 if (!TD) 561 return false; 562 BL.reset(new BlackList(ClBlackListFile)); 563 564 CurrentModule = &M; 565 C = &(M.getContext()); 566 LongSize = TD->getPointerSizeInBits(); 567 IntptrTy = Type::getIntNTy(*C, LongSize); 568 IntptrPtrTy = PointerType::get(IntptrTy, 0); 569 570 AsanCtorFunction = Function::Create( 571 FunctionType::get(Type::getVoidTy(*C), false), 572 GlobalValue::InternalLinkage, kAsanModuleCtorName, &M); 573 BasicBlock *AsanCtorBB = BasicBlock::Create(*C, "", AsanCtorFunction); 574 CtorInsertBefore = ReturnInst::Create(*C, AsanCtorBB); 575 576 // call __asan_init in the module ctor. 577 IRBuilder<> IRB(CtorInsertBefore); 578 AsanInitFunction = cast<Function>( 579 M.getOrInsertFunction(kAsanInitName, IRB.getVoidTy(), NULL)); 580 AsanInitFunction->setLinkage(Function::ExternalLinkage); 581 IRB.CreateCall(AsanInitFunction); 582 583 MappingOffset = LongSize == 32 584 ? kDefaultShadowOffset32 : kDefaultShadowOffset64; 585 if (ClMappingOffsetLog >= 0) { 586 if (ClMappingOffsetLog == 0) { 587 // special case 588 MappingOffset = 0; 589 } else { 590 MappingOffset = 1ULL << ClMappingOffsetLog; 591 } 592 } 593 MappingScale = kDefaultShadowScale; 594 if (ClMappingScale) { 595 MappingScale = ClMappingScale; 596 } 597 // Redzone used for stack and globals is at least 32 bytes. 598 // For scales 6 and 7, the redzone has to be 64 and 128 bytes respectively. 599 RedzoneSize = std::max(32, (int)(1 << MappingScale)); 600 601 bool Res = false; 602 603 if (ClGlobals) 604 Res |= insertGlobalRedzones(M); 605 606 // Tell the run-time the current values of mapping offset and scale. 607 GlobalValue *asan_mapping_offset = 608 new GlobalVariable(M, IntptrTy, true, GlobalValue::LinkOnceODRLinkage, 609 ConstantInt::get(IntptrTy, MappingOffset), 610 kAsanMappingOffsetName); 611 GlobalValue *asan_mapping_scale = 612 new GlobalVariable(M, IntptrTy, true, GlobalValue::LinkOnceODRLinkage, 613 ConstantInt::get(IntptrTy, MappingScale), 614 kAsanMappingScaleName); 615 // Read these globals, otherwise they may be optimized away. 616 IRB.CreateLoad(asan_mapping_scale, true); 617 IRB.CreateLoad(asan_mapping_offset, true); 618 619 620 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) { 621 if (F->isDeclaration()) continue; 622 Res |= handleFunction(M, *F); 623 } 624 625 appendToGlobalCtors(M, AsanCtorFunction, 1 /*high priority*/); 626 627 return Res; 628 } 629 630 bool AddressSanitizer::handleFunction(Module &M, Function &F) { 631 if (BL->isIn(F)) return false; 632 if (&F == AsanCtorFunction) return false; 633 634 if (!ClDebugFunc.empty() && ClDebugFunc != F.getName()) 635 return false; 636 // We want to instrument every address only once per basic block 637 // (unless there are calls between uses). 638 SmallSet<Value*, 16> TempsToInstrument; 639 SmallVector<Instruction*, 16> ToInstrument; 640 641 // Fill the set of memory operations to instrument. 642 for (Function::iterator FI = F.begin(), FE = F.end(); 643 FI != FE; ++FI) { 644 TempsToInstrument.clear(); 645 for (BasicBlock::iterator BI = FI->begin(), BE = FI->end(); 646 BI != BE; ++BI) { 647 if ((isa<LoadInst>(BI) && ClInstrumentReads) || 648 (isa<StoreInst>(BI) && ClInstrumentWrites)) { 649 Value *Addr = getLDSTOperand(BI); 650 if (ClOpt && ClOptSameTemp) { 651 if (!TempsToInstrument.insert(Addr)) 652 continue; // We've seen this temp in the current BB. 653 } 654 } else if (isa<MemIntrinsic>(BI) && ClMemIntrin) { 655 // ok, take it. 656 } else { 657 if (isa<CallInst>(BI)) { 658 // A call inside BB. 659 TempsToInstrument.clear(); 660 } 661 continue; 662 } 663 ToInstrument.push_back(BI); 664 } 665 } 666 667 // Instrument. 668 int NumInstrumented = 0; 669 for (size_t i = 0, n = ToInstrument.size(); i != n; i++) { 670 Instruction *Inst = ToInstrument[i]; 671 if (ClDebugMin < 0 || ClDebugMax < 0 || 672 (NumInstrumented >= ClDebugMin && NumInstrumented <= ClDebugMax)) { 673 if (isa<StoreInst>(Inst) || isa<LoadInst>(Inst)) 674 instrumentMop(Inst); 675 else 676 instrumentMemIntrinsic(cast<MemIntrinsic>(Inst)); 677 } 678 NumInstrumented++; 679 } 680 681 DEBUG(dbgs() << F); 682 683 bool ChangedStack = poisonStackInFunction(M, F); 684 685 // For each NSObject descendant having a +load method, this method is invoked 686 // by the ObjC runtime before any of the static constructors is called. 687 // Therefore we need to instrument such methods with a call to __asan_init 688 // at the beginning in order to initialize our runtime before any access to 689 // the shadow memory. 690 // We cannot just ignore these methods, because they may call other 691 // instrumented functions. 692 if (F.getName().find(" load]") != std::string::npos) { 693 IRBuilder<> IRB(F.begin()->begin()); 694 IRB.CreateCall(AsanInitFunction); 695 } 696 697 return NumInstrumented > 0 || ChangedStack; 698 } 699 700 static uint64_t ValueForPoison(uint64_t PoisonByte, size_t ShadowRedzoneSize) { 701 if (ShadowRedzoneSize == 1) return PoisonByte; 702 if (ShadowRedzoneSize == 2) return (PoisonByte << 8) + PoisonByte; 703 if (ShadowRedzoneSize == 4) 704 return (PoisonByte << 24) + (PoisonByte << 16) + 705 (PoisonByte << 8) + (PoisonByte); 706 assert(0 && "ShadowRedzoneSize is either 1, 2 or 4"); 707 return 0; 708 } 709 710 static void PoisonShadowPartialRightRedzone(uint8_t *Shadow, 711 size_t Size, 712 size_t RedzoneSize, 713 size_t ShadowGranularity, 714 uint8_t Magic) { 715 for (size_t i = 0; i < RedzoneSize; 716 i+= ShadowGranularity, Shadow++) { 717 if (i + ShadowGranularity <= Size) { 718 *Shadow = 0; // fully addressable 719 } else if (i >= Size) { 720 *Shadow = Magic; // unaddressable 721 } else { 722 *Shadow = Size - i; // first Size-i bytes are addressable 723 } 724 } 725 } 726 727 void AddressSanitizer::PoisonStack(const ArrayRef<AllocaInst*> &AllocaVec, 728 IRBuilder<> IRB, 729 Value *ShadowBase, bool DoPoison) { 730 size_t ShadowRZSize = RedzoneSize >> MappingScale; 731 assert(ShadowRZSize >= 1 && ShadowRZSize <= 4); 732 Type *RZTy = Type::getIntNTy(*C, ShadowRZSize * 8); 733 Type *RZPtrTy = PointerType::get(RZTy, 0); 734 735 Value *PoisonLeft = ConstantInt::get(RZTy, 736 ValueForPoison(DoPoison ? kAsanStackLeftRedzoneMagic : 0LL, ShadowRZSize)); 737 Value *PoisonMid = ConstantInt::get(RZTy, 738 ValueForPoison(DoPoison ? kAsanStackMidRedzoneMagic : 0LL, ShadowRZSize)); 739 Value *PoisonRight = ConstantInt::get(RZTy, 740 ValueForPoison(DoPoison ? kAsanStackRightRedzoneMagic : 0LL, ShadowRZSize)); 741 742 // poison the first red zone. 743 IRB.CreateStore(PoisonLeft, IRB.CreateIntToPtr(ShadowBase, RZPtrTy)); 744 745 // poison all other red zones. 746 uint64_t Pos = RedzoneSize; 747 for (size_t i = 0, n = AllocaVec.size(); i < n; i++) { 748 AllocaInst *AI = AllocaVec[i]; 749 uint64_t SizeInBytes = getAllocaSizeInBytes(AI); 750 uint64_t AlignedSize = getAlignedAllocaSize(AI); 751 assert(AlignedSize - SizeInBytes < RedzoneSize); 752 Value *Ptr = NULL; 753 754 Pos += AlignedSize; 755 756 assert(ShadowBase->getType() == IntptrTy); 757 if (SizeInBytes < AlignedSize) { 758 // Poison the partial redzone at right 759 Ptr = IRB.CreateAdd( 760 ShadowBase, ConstantInt::get(IntptrTy, 761 (Pos >> MappingScale) - ShadowRZSize)); 762 size_t AddressableBytes = RedzoneSize - (AlignedSize - SizeInBytes); 763 uint32_t Poison = 0; 764 if (DoPoison) { 765 PoisonShadowPartialRightRedzone((uint8_t*)&Poison, AddressableBytes, 766 RedzoneSize, 767 1ULL << MappingScale, 768 kAsanStackPartialRedzoneMagic); 769 } 770 Value *PartialPoison = ConstantInt::get(RZTy, Poison); 771 IRB.CreateStore(PartialPoison, IRB.CreateIntToPtr(Ptr, RZPtrTy)); 772 } 773 774 // Poison the full redzone at right. 775 Ptr = IRB.CreateAdd(ShadowBase, 776 ConstantInt::get(IntptrTy, Pos >> MappingScale)); 777 Value *Poison = i == AllocaVec.size() - 1 ? PoisonRight : PoisonMid; 778 IRB.CreateStore(Poison, IRB.CreateIntToPtr(Ptr, RZPtrTy)); 779 780 Pos += RedzoneSize; 781 } 782 } 783 784 // Find all static Alloca instructions and put 785 // poisoned red zones around all of them. 786 // Then unpoison everything back before the function returns. 787 // 788 // Stack poisoning does not play well with exception handling. 789 // When an exception is thrown, we essentially bypass the code 790 // that unpoisones the stack. This is why the run-time library has 791 // to intercept __cxa_throw (as well as longjmp, etc) and unpoison the entire 792 // stack in the interceptor. This however does not work inside the 793 // actual function which catches the exception. Most likely because the 794 // compiler hoists the load of the shadow value somewhere too high. 795 // This causes asan to report a non-existing bug on 453.povray. 796 // It sounds like an LLVM bug. 797 bool AddressSanitizer::poisonStackInFunction(Module &M, Function &F) { 798 if (!ClStack) return false; 799 SmallVector<AllocaInst*, 16> AllocaVec; 800 SmallVector<Instruction*, 8> RetVec; 801 uint64_t TotalSize = 0; 802 803 // Filter out Alloca instructions we want (and can) handle. 804 // Collect Ret instructions. 805 for (Function::iterator FI = F.begin(), FE = F.end(); 806 FI != FE; ++FI) { 807 BasicBlock &BB = *FI; 808 for (BasicBlock::iterator BI = BB.begin(), BE = BB.end(); 809 BI != BE; ++BI) { 810 if (isa<ReturnInst>(BI)) { 811 RetVec.push_back(BI); 812 continue; 813 } 814 815 AllocaInst *AI = dyn_cast<AllocaInst>(BI); 816 if (!AI) continue; 817 if (AI->isArrayAllocation()) continue; 818 if (!AI->isStaticAlloca()) continue; 819 if (!AI->getAllocatedType()->isSized()) continue; 820 if (AI->getAlignment() > RedzoneSize) continue; 821 AllocaVec.push_back(AI); 822 uint64_t AlignedSize = getAlignedAllocaSize(AI); 823 TotalSize += AlignedSize; 824 } 825 } 826 827 if (AllocaVec.empty()) return false; 828 829 uint64_t LocalStackSize = TotalSize + (AllocaVec.size() + 1) * RedzoneSize; 830 831 bool DoStackMalloc = ClUseAfterReturn 832 && LocalStackSize <= kMaxStackMallocSize; 833 834 Instruction *InsBefore = AllocaVec[0]; 835 IRBuilder<> IRB(InsBefore); 836 837 838 Type *ByteArrayTy = ArrayType::get(IRB.getInt8Ty(), LocalStackSize); 839 AllocaInst *MyAlloca = 840 new AllocaInst(ByteArrayTy, "MyAlloca", InsBefore); 841 MyAlloca->setAlignment(RedzoneSize); 842 assert(MyAlloca->isStaticAlloca()); 843 Value *OrigStackBase = IRB.CreatePointerCast(MyAlloca, IntptrTy); 844 Value *LocalStackBase = OrigStackBase; 845 846 if (DoStackMalloc) { 847 Value *AsanStackMallocFunc = M.getOrInsertFunction( 848 kAsanStackMallocName, IntptrTy, IntptrTy, IntptrTy, NULL); 849 LocalStackBase = IRB.CreateCall2(AsanStackMallocFunc, 850 ConstantInt::get(IntptrTy, LocalStackSize), OrigStackBase); 851 } 852 853 // This string will be parsed by the run-time (DescribeStackAddress). 854 SmallString<2048> StackDescriptionStorage; 855 raw_svector_ostream StackDescription(StackDescriptionStorage); 856 StackDescription << F.getName() << " " << AllocaVec.size() << " "; 857 858 uint64_t Pos = RedzoneSize; 859 // Replace Alloca instructions with base+offset. 860 for (size_t i = 0, n = AllocaVec.size(); i < n; i++) { 861 AllocaInst *AI = AllocaVec[i]; 862 uint64_t SizeInBytes = getAllocaSizeInBytes(AI); 863 StringRef Name = AI->getName(); 864 StackDescription << Pos << " " << SizeInBytes << " " 865 << Name.size() << " " << Name << " "; 866 uint64_t AlignedSize = getAlignedAllocaSize(AI); 867 assert((AlignedSize % RedzoneSize) == 0); 868 AI->replaceAllUsesWith( 869 IRB.CreateIntToPtr( 870 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, Pos)), 871 AI->getType())); 872 Pos += AlignedSize + RedzoneSize; 873 } 874 assert(Pos == LocalStackSize); 875 876 // Write the Magic value and the frame description constant to the redzone. 877 Value *BasePlus0 = IRB.CreateIntToPtr(LocalStackBase, IntptrPtrTy); 878 IRB.CreateStore(ConstantInt::get(IntptrTy, kCurrentStackFrameMagic), 879 BasePlus0); 880 Value *BasePlus1 = IRB.CreateAdd(LocalStackBase, 881 ConstantInt::get(IntptrTy, LongSize/8)); 882 BasePlus1 = IRB.CreateIntToPtr(BasePlus1, IntptrPtrTy); 883 Value *Description = IRB.CreatePointerCast( 884 createPrivateGlobalForString(M, StackDescription.str()), 885 IntptrTy); 886 IRB.CreateStore(Description, BasePlus1); 887 888 // Poison the stack redzones at the entry. 889 Value *ShadowBase = memToShadow(LocalStackBase, IRB); 890 PoisonStack(ArrayRef<AllocaInst*>(AllocaVec), IRB, ShadowBase, true); 891 892 Value *AsanStackFreeFunc = NULL; 893 if (DoStackMalloc) { 894 AsanStackFreeFunc = M.getOrInsertFunction( 895 kAsanStackFreeName, IRB.getVoidTy(), 896 IntptrTy, IntptrTy, IntptrTy, NULL); 897 } 898 899 // Unpoison the stack before all ret instructions. 900 for (size_t i = 0, n = RetVec.size(); i < n; i++) { 901 Instruction *Ret = RetVec[i]; 902 IRBuilder<> IRBRet(Ret); 903 904 // Mark the current frame as retired. 905 IRBRet.CreateStore(ConstantInt::get(IntptrTy, kRetiredStackFrameMagic), 906 BasePlus0); 907 // Unpoison the stack. 908 PoisonStack(ArrayRef<AllocaInst*>(AllocaVec), IRBRet, ShadowBase, false); 909 910 if (DoStackMalloc) { 911 IRBRet.CreateCall3(AsanStackFreeFunc, LocalStackBase, 912 ConstantInt::get(IntptrTy, LocalStackSize), 913 OrigStackBase); 914 } 915 } 916 917 if (ClDebugStack) { 918 DEBUG(dbgs() << F); 919 } 920 921 return true; 922 } 923 924 BlackList::BlackList(const std::string &Path) { 925 Functions = NULL; 926 const char *kFunPrefix = "fun:"; 927 if (!ClBlackListFile.size()) return; 928 std::string Fun; 929 930 OwningPtr<MemoryBuffer> File; 931 if (error_code EC = MemoryBuffer::getFile(ClBlackListFile.c_str(), File)) { 932 errs() << EC.message(); 933 exit(1); 934 } 935 MemoryBuffer *Buff = File.take(); 936 const char *Data = Buff->getBufferStart(); 937 size_t DataLen = Buff->getBufferSize(); 938 SmallVector<StringRef, 16> Lines; 939 SplitString(StringRef(Data, DataLen), Lines, "\n\r"); 940 for (size_t i = 0, numLines = Lines.size(); i < numLines; i++) { 941 if (Lines[i].startswith(kFunPrefix)) { 942 std::string ThisFunc = Lines[i].substr(strlen(kFunPrefix)); 943 if (Fun.size()) { 944 Fun += "|"; 945 } 946 // add ThisFunc replacing * with .* 947 for (size_t j = 0, n = ThisFunc.size(); j < n; j++) { 948 if (ThisFunc[j] == '*') 949 Fun += '.'; 950 Fun += ThisFunc[j]; 951 } 952 } 953 } 954 if (Fun.size()) { 955 Functions = new Regex(Fun); 956 } 957 } 958 959 bool BlackList::isIn(const Function &F) { 960 if (Functions) { 961 bool Res = Functions->match(F.getName()); 962 return Res; 963 } 964 return false; 965 } 966