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