Kostya Serebryany | 6e6b03e | 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 | |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 18 | #include "llvm/Transforms/Instrumentation.h" |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/ArrayRef.h" |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/DenseMap.h" |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/DepthFirstIterator.h" |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/OwningPtr.h" |
| 23 | #include "llvm/ADT/SmallSet.h" |
| 24 | #include "llvm/ADT/SmallString.h" |
| 25 | #include "llvm/ADT/SmallVector.h" |
Kostya Serebryany | d3d23be | 2013-10-16 14:06:14 +0000 | [diff] [blame] | 26 | #include "llvm/ADT/Statistic.h" |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 27 | #include "llvm/ADT/StringExtras.h" |
Evgeniy Stepanov | 617232f | 2012-05-23 11:52:12 +0000 | [diff] [blame] | 28 | #include "llvm/ADT/Triple.h" |
Alexey Samsonov | 3d43b63 | 2012-12-12 14:31:53 +0000 | [diff] [blame] | 29 | #include "llvm/DIBuilder.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 30 | #include "llvm/IR/DataLayout.h" |
| 31 | #include "llvm/IR/Function.h" |
| 32 | #include "llvm/IR/IRBuilder.h" |
| 33 | #include "llvm/IR/InlineAsm.h" |
| 34 | #include "llvm/IR/IntrinsicInst.h" |
| 35 | #include "llvm/IR/LLVMContext.h" |
| 36 | #include "llvm/IR/Module.h" |
| 37 | #include "llvm/IR/Type.h" |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 38 | #include "llvm/InstVisitor.h" |
Kostya Serebryany | 699ac28 | 2013-02-20 12:35:15 +0000 | [diff] [blame] | 39 | #include "llvm/Support/CallSite.h" |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 40 | #include "llvm/Support/CommandLine.h" |
| 41 | #include "llvm/Support/DataTypes.h" |
| 42 | #include "llvm/Support/Debug.h" |
Kostya Serebryany | 9e62b30 | 2013-06-03 14:46:56 +0000 | [diff] [blame] | 43 | #include "llvm/Support/Endian.h" |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 44 | #include "llvm/Support/system_error.h" |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 45 | #include "llvm/Transforms/Utils/ASanStackFrameLayout.h" |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 46 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
Kostya Serebryany | 9f5213f | 2013-06-26 09:18:17 +0000 | [diff] [blame] | 47 | #include "llvm/Transforms/Utils/Cloning.h" |
Alexey Samsonov | 3d43b63 | 2012-12-12 14:31:53 +0000 | [diff] [blame] | 48 | #include "llvm/Transforms/Utils/Local.h" |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 49 | #include "llvm/Transforms/Utils/ModuleUtils.h" |
Peter Collingbourne | 015370e | 2013-07-09 22:02:49 +0000 | [diff] [blame] | 50 | #include "llvm/Transforms/Utils/SpecialCaseList.h" |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 51 | #include <algorithm> |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 52 | #include <string> |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 53 | |
| 54 | using namespace llvm; |
| 55 | |
| 56 | static const uint64_t kDefaultShadowScale = 3; |
| 57 | static const uint64_t kDefaultShadowOffset32 = 1ULL << 29; |
| 58 | static const uint64_t kDefaultShadowOffset64 = 1ULL << 44; |
Kostya Serebryany | c5f44bc | 2013-02-11 14:36:01 +0000 | [diff] [blame] | 59 | static const uint64_t kDefaultShort64bitShadowOffset = 0x7FFF8000; // < 2G. |
Kostya Serebryany | 4766fe6 | 2013-01-23 12:54:55 +0000 | [diff] [blame] | 60 | static const uint64_t kPPC64_ShadowOffset64 = 1ULL << 41; |
Kostya Serebryany | 9e62b30 | 2013-06-03 14:46:56 +0000 | [diff] [blame] | 61 | static const uint64_t kMIPS32_ShadowOffset32 = 0x0aaa8000; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 62 | |
Kostya Serebryany | 6805de5 | 2013-09-10 13:16:56 +0000 | [diff] [blame] | 63 | static const size_t kMinStackMallocSize = 1 << 6; // 64B |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 64 | static const size_t kMaxStackMallocSize = 1 << 16; // 64K |
| 65 | static const uintptr_t kCurrentStackFrameMagic = 0x41B58AB3; |
| 66 | static const uintptr_t kRetiredStackFrameMagic = 0x45E0360E; |
| 67 | |
Craig Topper | d3a34f8 | 2013-07-16 01:17:10 +0000 | [diff] [blame] | 68 | static const char *const kAsanModuleCtorName = "asan.module_ctor"; |
| 69 | static const char *const kAsanModuleDtorName = "asan.module_dtor"; |
| 70 | static const int kAsanCtorAndCtorPriority = 1; |
| 71 | static const char *const kAsanReportErrorTemplate = "__asan_report_"; |
| 72 | static const char *const kAsanReportLoadN = "__asan_report_load_n"; |
| 73 | static const char *const kAsanReportStoreN = "__asan_report_store_n"; |
| 74 | static const char *const kAsanRegisterGlobalsName = "__asan_register_globals"; |
Alexey Samsonov | f52b717 | 2013-08-05 13:19:49 +0000 | [diff] [blame] | 75 | static const char *const kAsanUnregisterGlobalsName = |
| 76 | "__asan_unregister_globals"; |
Craig Topper | d3a34f8 | 2013-07-16 01:17:10 +0000 | [diff] [blame] | 77 | static const char *const kAsanPoisonGlobalsName = "__asan_before_dynamic_init"; |
| 78 | static const char *const kAsanUnpoisonGlobalsName = "__asan_after_dynamic_init"; |
| 79 | static const char *const kAsanInitName = "__asan_init_v3"; |
Bob Wilson | da4147c | 2013-11-15 07:16:09 +0000 | [diff] [blame] | 80 | static const char *const kAsanCovName = "__sanitizer_cov"; |
Craig Topper | d3a34f8 | 2013-07-16 01:17:10 +0000 | [diff] [blame] | 81 | static const char *const kAsanHandleNoReturnName = "__asan_handle_no_return"; |
| 82 | static const char *const kAsanMappingOffsetName = "__asan_mapping_offset"; |
| 83 | static const char *const kAsanMappingScaleName = "__asan_mapping_scale"; |
Kostya Serebryany | 6805de5 | 2013-09-10 13:16:56 +0000 | [diff] [blame] | 84 | static const int kMaxAsanStackMallocSizeClass = 10; |
| 85 | static const char *const kAsanStackMallocNameTemplate = "__asan_stack_malloc_"; |
| 86 | static const char *const kAsanStackFreeNameTemplate = "__asan_stack_free_"; |
Craig Topper | d3a34f8 | 2013-07-16 01:17:10 +0000 | [diff] [blame] | 87 | static const char *const kAsanGenPrefix = "__asan_gen_"; |
| 88 | static const char *const kAsanPoisonStackMemoryName = |
| 89 | "__asan_poison_stack_memory"; |
| 90 | static const char *const kAsanUnpoisonStackMemoryName = |
Alexey Samsonov | 261177a | 2012-12-04 01:34:23 +0000 | [diff] [blame] | 91 | "__asan_unpoison_stack_memory"; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 92 | |
Kostya Serebryany | f322382 | 2013-09-18 14:07:14 +0000 | [diff] [blame] | 93 | static const char *const kAsanOptionDetectUAR = |
| 94 | "__asan_option_detect_stack_use_after_return"; |
| 95 | |
David Blaikie | eacc287 | 2013-09-18 00:11:27 +0000 | [diff] [blame] | 96 | #ifndef NDEBUG |
Kostya Serebryany | bc86efb | 2013-09-17 12:14:50 +0000 | [diff] [blame] | 97 | static const int kAsanStackAfterReturnMagic = 0xf5; |
David Blaikie | eacc287 | 2013-09-18 00:11:27 +0000 | [diff] [blame] | 98 | #endif |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 99 | |
Kostya Serebryany | 874dae6 | 2012-07-16 16:15:40 +0000 | [diff] [blame] | 100 | // Accesses sizes are powers of two: 1, 2, 4, 8, 16. |
| 101 | static const size_t kNumberOfAccessSizes = 5; |
| 102 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 103 | // Command-line flags. |
| 104 | |
| 105 | // This flag may need to be replaced with -f[no-]asan-reads. |
| 106 | static cl::opt<bool> ClInstrumentReads("asan-instrument-reads", |
| 107 | cl::desc("instrument read instructions"), cl::Hidden, cl::init(true)); |
| 108 | static cl::opt<bool> ClInstrumentWrites("asan-instrument-writes", |
| 109 | cl::desc("instrument write instructions"), cl::Hidden, cl::init(true)); |
Kostya Serebryany | 9024160 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 110 | static cl::opt<bool> ClInstrumentAtomics("asan-instrument-atomics", |
| 111 | cl::desc("instrument atomic instructions (rmw, cmpxchg)"), |
| 112 | cl::Hidden, cl::init(true)); |
Kostya Serebryany | 1e575ab | 2012-08-15 08:58:58 +0000 | [diff] [blame] | 113 | static cl::opt<bool> ClAlwaysSlowPath("asan-always-slow-path", |
| 114 | cl::desc("use instrumentation with slow path for all accesses"), |
| 115 | cl::Hidden, cl::init(false)); |
Kostya Serebryany | 874dae6 | 2012-07-16 16:15:40 +0000 | [diff] [blame] | 116 | // This flag limits the number of instructions to be instrumented |
Kostya Serebryany | c387ca7 | 2012-06-28 09:34:41 +0000 | [diff] [blame] | 117 | // in any given BB. Normally, this should be set to unlimited (INT_MAX), |
| 118 | // but due to http://llvm.org/bugs/show_bug.cgi?id=12652 we temporary |
| 119 | // set it to 10000. |
| 120 | static cl::opt<int> ClMaxInsnsToInstrumentPerBB("asan-max-ins-per-bb", |
| 121 | cl::init(10000), |
| 122 | cl::desc("maximal number of instructions to instrument in any given BB"), |
| 123 | cl::Hidden); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 124 | // This flag may need to be replaced with -f[no]asan-stack. |
| 125 | static cl::opt<bool> ClStack("asan-stack", |
| 126 | cl::desc("Handle stack memory"), cl::Hidden, cl::init(true)); |
| 127 | // This flag may need to be replaced with -f[no]asan-use-after-return. |
| 128 | static cl::opt<bool> ClUseAfterReturn("asan-use-after-return", |
| 129 | cl::desc("Check return-after-free"), cl::Hidden, cl::init(false)); |
| 130 | // This flag may need to be replaced with -f[no]asan-globals. |
| 131 | static cl::opt<bool> ClGlobals("asan-globals", |
| 132 | cl::desc("Handle global objects"), cl::Hidden, cl::init(true)); |
Bob Wilson | da4147c | 2013-11-15 07:16:09 +0000 | [diff] [blame] | 133 | static cl::opt<bool> ClCoverage("asan-coverage", |
| 134 | cl::desc("ASan coverage"), cl::Hidden, cl::init(false)); |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 135 | static cl::opt<bool> ClInitializers("asan-initialization-order", |
| 136 | cl::desc("Handle C++ initializer order"), cl::Hidden, cl::init(false)); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 137 | static cl::opt<bool> ClMemIntrin("asan-memintrin", |
| 138 | cl::desc("Handle memset/memcpy/memmove"), cl::Hidden, cl::init(true)); |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 139 | static cl::opt<unsigned> ClRealignStack("asan-realign-stack", |
| 140 | cl::desc("Realign stack to the value of this flag (power of two)"), |
| 141 | cl::Hidden, cl::init(32)); |
Alexey Samsonov | ef51c3f | 2012-12-03 19:09:26 +0000 | [diff] [blame] | 142 | static cl::opt<std::string> ClBlacklistFile("asan-blacklist", |
| 143 | cl::desc("File containing the list of objects to ignore " |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 144 | "during instrumentation"), cl::Hidden); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 145 | |
Kostya Serebryany | 9f5213f | 2013-06-26 09:18:17 +0000 | [diff] [blame] | 146 | // This is an experimental feature that will allow to choose between |
| 147 | // instrumented and non-instrumented code at link-time. |
| 148 | // If this option is on, just before instrumenting a function we create its |
| 149 | // clone; if the function is not changed by asan the clone is deleted. |
| 150 | // If we end up with a clone, we put the instrumented function into a section |
| 151 | // called "ASAN" and the uninstrumented function into a section called "NOASAN". |
| 152 | // |
| 153 | // This is still a prototype, we need to figure out a way to keep two copies of |
| 154 | // a function so that the linker can easily choose one of them. |
| 155 | static cl::opt<bool> ClKeepUninstrumented("asan-keep-uninstrumented-functions", |
| 156 | cl::desc("Keep uninstrumented copies of functions"), |
| 157 | cl::Hidden, cl::init(false)); |
| 158 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 159 | // These flags allow to change the shadow mapping. |
| 160 | // The shadow mapping looks like |
| 161 | // Shadow = (Mem >> scale) + (1 << offset_log) |
| 162 | static cl::opt<int> ClMappingScale("asan-mapping-scale", |
| 163 | cl::desc("scale of asan shadow mapping"), cl::Hidden, cl::init(0)); |
| 164 | static cl::opt<int> ClMappingOffsetLog("asan-mapping-offset-log", |
| 165 | cl::desc("offset of asan shadow mapping"), cl::Hidden, cl::init(-1)); |
Kostya Serebryany | c5f44bc | 2013-02-11 14:36:01 +0000 | [diff] [blame] | 166 | static cl::opt<bool> ClShort64BitOffset("asan-short-64bit-mapping-offset", |
| 167 | cl::desc("Use short immediate constant as the mapping offset for 64bit"), |
Kostya Serebryany | be73337 | 2013-02-12 11:11:02 +0000 | [diff] [blame] | 168 | cl::Hidden, cl::init(true)); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 169 | |
| 170 | // Optimization flags. Not user visible, used mostly for testing |
| 171 | // and benchmarking the tool. |
| 172 | static cl::opt<bool> ClOpt("asan-opt", |
| 173 | cl::desc("Optimize instrumentation"), cl::Hidden, cl::init(true)); |
| 174 | static cl::opt<bool> ClOptSameTemp("asan-opt-same-temp", |
| 175 | cl::desc("Instrument the same temp just once"), cl::Hidden, |
| 176 | cl::init(true)); |
| 177 | static cl::opt<bool> ClOptGlobals("asan-opt-globals", |
| 178 | cl::desc("Don't instrument scalar globals"), cl::Hidden, cl::init(true)); |
| 179 | |
Alexey Samsonov | df62452 | 2012-11-29 18:14:24 +0000 | [diff] [blame] | 180 | static cl::opt<bool> ClCheckLifetime("asan-check-lifetime", |
| 181 | cl::desc("Use llvm.lifetime intrinsics to insert extra checks"), |
| 182 | cl::Hidden, cl::init(false)); |
| 183 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 184 | // Debug flags. |
| 185 | static cl::opt<int> ClDebug("asan-debug", cl::desc("debug"), cl::Hidden, |
| 186 | cl::init(0)); |
| 187 | static cl::opt<int> ClDebugStack("asan-debug-stack", cl::desc("debug stack"), |
| 188 | cl::Hidden, cl::init(0)); |
| 189 | static cl::opt<std::string> ClDebugFunc("asan-debug-func", |
| 190 | cl::Hidden, cl::desc("Debug func")); |
| 191 | static cl::opt<int> ClDebugMin("asan-debug-min", cl::desc("Debug min inst"), |
| 192 | cl::Hidden, cl::init(-1)); |
| 193 | static cl::opt<int> ClDebugMax("asan-debug-max", cl::desc("Debug man inst"), |
| 194 | cl::Hidden, cl::init(-1)); |
| 195 | |
Kostya Serebryany | d3d23be | 2013-10-16 14:06:14 +0000 | [diff] [blame] | 196 | STATISTIC(NumInstrumentedReads, "Number of instrumented reads"); |
| 197 | STATISTIC(NumInstrumentedWrites, "Number of instrumented writes"); |
| 198 | STATISTIC(NumOptimizedAccessesToGlobalArray, |
| 199 | "Number of optimized accesses to global arrays"); |
| 200 | STATISTIC(NumOptimizedAccessesToGlobalVar, |
| 201 | "Number of optimized accesses to global vars"); |
| 202 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 203 | namespace { |
Kostya Serebryany | b3bd605 | 2012-11-20 13:00:01 +0000 | [diff] [blame] | 204 | /// A set of dynamically initialized globals extracted from metadata. |
| 205 | class SetOfDynamicallyInitializedGlobals { |
| 206 | public: |
| 207 | void Init(Module& M) { |
| 208 | // Clang generates metadata identifying all dynamically initialized globals. |
| 209 | NamedMDNode *DynamicGlobals = |
| 210 | M.getNamedMetadata("llvm.asan.dynamically_initialized_globals"); |
| 211 | if (!DynamicGlobals) |
| 212 | return; |
| 213 | for (int i = 0, n = DynamicGlobals->getNumOperands(); i < n; ++i) { |
| 214 | MDNode *MDN = DynamicGlobals->getOperand(i); |
| 215 | assert(MDN->getNumOperands() == 1); |
| 216 | Value *VG = MDN->getOperand(0); |
| 217 | // The optimizer may optimize away a global entirely, in which case we |
| 218 | // cannot instrument access to it. |
| 219 | if (!VG) |
| 220 | continue; |
| 221 | DynInitGlobals.insert(cast<GlobalVariable>(VG)); |
| 222 | } |
| 223 | } |
| 224 | bool Contains(GlobalVariable *G) { return DynInitGlobals.count(G) != 0; } |
| 225 | private: |
| 226 | SmallSet<GlobalValue*, 32> DynInitGlobals; |
| 227 | }; |
| 228 | |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 229 | /// This struct defines the shadow mapping using the rule: |
Kostya Serebryany | 4766fe6 | 2013-01-23 12:54:55 +0000 | [diff] [blame] | 230 | /// shadow = (mem >> Scale) ADD-or-OR Offset. |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 231 | struct ShadowMapping { |
| 232 | int Scale; |
| 233 | uint64_t Offset; |
Kostya Serebryany | 4766fe6 | 2013-01-23 12:54:55 +0000 | [diff] [blame] | 234 | bool OrShadowOffset; |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 235 | }; |
| 236 | |
Alexey Samsonov | 347bcd3 | 2013-01-17 11:12:32 +0000 | [diff] [blame] | 237 | static ShadowMapping getShadowMapping(const Module &M, int LongSize, |
| 238 | bool ZeroBaseShadow) { |
| 239 | llvm::Triple TargetTriple(M.getTargetTriple()); |
| 240 | bool IsAndroid = TargetTriple.getEnvironment() == llvm::Triple::Android; |
Alexander Potapenko | 259e812 | 2013-02-12 12:41:12 +0000 | [diff] [blame] | 241 | bool IsMacOSX = TargetTriple.getOS() == llvm::Triple::MacOSX; |
Bill Schmidt | 0a9170d | 2013-07-26 01:35:43 +0000 | [diff] [blame] | 242 | bool IsPPC64 = TargetTriple.getArch() == llvm::Triple::ppc64 || |
| 243 | TargetTriple.getArch() == llvm::Triple::ppc64le; |
Kostya Serebryany | be73337 | 2013-02-12 11:11:02 +0000 | [diff] [blame] | 244 | bool IsX86_64 = TargetTriple.getArch() == llvm::Triple::x86_64; |
Kostya Serebryany | 9e62b30 | 2013-06-03 14:46:56 +0000 | [diff] [blame] | 245 | bool IsMIPS32 = TargetTriple.getArch() == llvm::Triple::mips || |
| 246 | TargetTriple.getArch() == llvm::Triple::mipsel; |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 247 | |
| 248 | ShadowMapping Mapping; |
| 249 | |
Kostya Serebryany | 4766fe6 | 2013-01-23 12:54:55 +0000 | [diff] [blame] | 250 | // OR-ing shadow offset if more efficient (at least on x86), |
| 251 | // but on ppc64 we have to use add since the shadow offset is not neccesary |
| 252 | // 1/8-th of the address space. |
Kostya Serebryany | c5f44bc | 2013-02-11 14:36:01 +0000 | [diff] [blame] | 253 | Mapping.OrShadowOffset = !IsPPC64 && !ClShort64BitOffset; |
Kostya Serebryany | 4766fe6 | 2013-01-23 12:54:55 +0000 | [diff] [blame] | 254 | |
Alexey Samsonov | 347bcd3 | 2013-01-17 11:12:32 +0000 | [diff] [blame] | 255 | Mapping.Offset = (IsAndroid || ZeroBaseShadow) ? 0 : |
Kostya Serebryany | 9e62b30 | 2013-06-03 14:46:56 +0000 | [diff] [blame] | 256 | (LongSize == 32 ? |
| 257 | (IsMIPS32 ? kMIPS32_ShadowOffset32 : kDefaultShadowOffset32) : |
Kostya Serebryany | 4766fe6 | 2013-01-23 12:54:55 +0000 | [diff] [blame] | 258 | IsPPC64 ? kPPC64_ShadowOffset64 : kDefaultShadowOffset64); |
Alexander Potapenko | 259e812 | 2013-02-12 12:41:12 +0000 | [diff] [blame] | 259 | if (!ZeroBaseShadow && ClShort64BitOffset && IsX86_64 && !IsMacOSX) { |
Kostya Serebryany | be73337 | 2013-02-12 11:11:02 +0000 | [diff] [blame] | 260 | assert(LongSize == 64); |
Kostya Serebryany | c5f44bc | 2013-02-11 14:36:01 +0000 | [diff] [blame] | 261 | Mapping.Offset = kDefaultShort64bitShadowOffset; |
Kostya Serebryany | caf11af | 2013-02-13 05:14:12 +0000 | [diff] [blame] | 262 | } |
| 263 | if (!ZeroBaseShadow && ClMappingOffsetLog >= 0) { |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 264 | // Zero offset log is the special case. |
| 265 | Mapping.Offset = (ClMappingOffsetLog == 0) ? 0 : 1ULL << ClMappingOffsetLog; |
| 266 | } |
| 267 | |
| 268 | Mapping.Scale = kDefaultShadowScale; |
| 269 | if (ClMappingScale) { |
| 270 | Mapping.Scale = ClMappingScale; |
| 271 | } |
| 272 | |
| 273 | return Mapping; |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 274 | } |
| 275 | |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 276 | static size_t RedzoneSizeForScale(int MappingScale) { |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 277 | // Redzone used for stack and globals is at least 32 bytes. |
| 278 | // For scales 6 and 7, the redzone has to be 64 and 128 bytes respectively. |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 279 | return std::max(32U, 1U << MappingScale); |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 280 | } |
Kostya Serebryany | b3bd605 | 2012-11-20 13:00:01 +0000 | [diff] [blame] | 281 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 282 | /// AddressSanitizer: instrument the code in module to find memory bugs. |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 283 | struct AddressSanitizer : public FunctionPass { |
Alexey Samsonov | 819eddc | 2013-03-14 12:38:58 +0000 | [diff] [blame] | 284 | AddressSanitizer(bool CheckInitOrder = true, |
Alexey Samsonov | df62452 | 2012-11-29 18:14:24 +0000 | [diff] [blame] | 285 | bool CheckUseAfterReturn = false, |
Alexey Samsonov | ef51c3f | 2012-12-03 19:09:26 +0000 | [diff] [blame] | 286 | bool CheckLifetime = false, |
Alexey Samsonov | 347bcd3 | 2013-01-17 11:12:32 +0000 | [diff] [blame] | 287 | StringRef BlacklistFile = StringRef(), |
| 288 | bool ZeroBaseShadow = false) |
Alexey Samsonov | df62452 | 2012-11-29 18:14:24 +0000 | [diff] [blame] | 289 | : FunctionPass(ID), |
| 290 | CheckInitOrder(CheckInitOrder || ClInitializers), |
| 291 | CheckUseAfterReturn(CheckUseAfterReturn || ClUseAfterReturn), |
Alexey Samsonov | ef51c3f | 2012-12-03 19:09:26 +0000 | [diff] [blame] | 292 | CheckLifetime(CheckLifetime || ClCheckLifetime), |
| 293 | BlacklistFile(BlacklistFile.empty() ? ClBlacklistFile |
Alexey Samsonov | 347bcd3 | 2013-01-17 11:12:32 +0000 | [diff] [blame] | 294 | : BlacklistFile), |
| 295 | ZeroBaseShadow(ZeroBaseShadow) {} |
Kostya Serebryany | dfe9e79 | 2012-11-28 10:31:36 +0000 | [diff] [blame] | 296 | virtual const char *getPassName() const { |
| 297 | return "AddressSanitizerFunctionPass"; |
| 298 | } |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 299 | void instrumentMop(Instruction *I); |
Kostya Serebryany | 3ece9bea | 2013-02-19 11:29:21 +0000 | [diff] [blame] | 300 | void instrumentAddress(Instruction *OrigIns, Instruction *InsertBefore, |
| 301 | Value *Addr, uint32_t TypeSize, bool IsWrite, |
| 302 | Value *SizeArgument); |
Kostya Serebryany | 874dae6 | 2012-07-16 16:15:40 +0000 | [diff] [blame] | 303 | Value *createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong, |
| 304 | Value *ShadowValue, uint32_t TypeSize); |
Kostya Serebryany | fda7a13 | 2012-08-14 14:04:51 +0000 | [diff] [blame] | 305 | Instruction *generateCrashCode(Instruction *InsertBefore, Value *Addr, |
Kostya Serebryany | 3ece9bea | 2013-02-19 11:29:21 +0000 | [diff] [blame] | 306 | bool IsWrite, size_t AccessSizeIndex, |
| 307 | Value *SizeArgument); |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 308 | bool instrumentMemIntrinsic(MemIntrinsic *MI); |
| 309 | void instrumentMemIntrinsicParam(Instruction *OrigIns, Value *Addr, |
Kostya Serebryany | 874dae6 | 2012-07-16 16:15:40 +0000 | [diff] [blame] | 310 | Value *Size, |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 311 | Instruction *InsertBefore, bool IsWrite); |
| 312 | Value *memToShadow(Value *Shadow, IRBuilder<> &IRB); |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 313 | bool runOnFunction(Function &F); |
Kostya Serebryany | 22ddcfd | 2012-01-30 23:50:10 +0000 | [diff] [blame] | 314 | bool maybeInsertAsanInitAtFunctionEntry(Function &F); |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 315 | void emitShadowMapping(Module &M, IRBuilder<> &IRB) const; |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 316 | virtual bool doInitialization(Module &M); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 317 | static char ID; // Pass identification, replacement for typeid |
| 318 | |
| 319 | private: |
Kostya Serebryany | 4b929da | 2012-11-29 09:54:21 +0000 | [diff] [blame] | 320 | void initializeCallbacks(Module &M); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 321 | |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 322 | bool ShouldInstrumentGlobal(GlobalVariable *G); |
Kostya Serebryany | 1cdc6e9 | 2011-11-18 01:41:06 +0000 | [diff] [blame] | 323 | bool LooksLikeCodeInBug11395(Instruction *I); |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 324 | void FindDynamicInitializers(Module &M); |
Kostya Serebryany | d3d23be | 2013-10-16 14:06:14 +0000 | [diff] [blame] | 325 | bool GlobalIsLinkerInitialized(GlobalVariable *G); |
Bob Wilson | da4147c | 2013-11-15 07:16:09 +0000 | [diff] [blame] | 326 | bool InjectCoverage(Function &F); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 327 | |
Alexey Samsonov | df62452 | 2012-11-29 18:14:24 +0000 | [diff] [blame] | 328 | bool CheckInitOrder; |
| 329 | bool CheckUseAfterReturn; |
| 330 | bool CheckLifetime; |
Alexey Samsonov | 347bcd3 | 2013-01-17 11:12:32 +0000 | [diff] [blame] | 331 | SmallString<64> BlacklistFile; |
| 332 | bool ZeroBaseShadow; |
| 333 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 334 | LLVMContext *C; |
Micah Villmow | cdfe20b | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 335 | DataLayout *TD; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 336 | int LongSize; |
| 337 | Type *IntptrTy; |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 338 | ShadowMapping Mapping; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 339 | Function *AsanCtorFunction; |
| 340 | Function *AsanInitFunction; |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 341 | Function *AsanHandleNoReturnFunc; |
Bob Wilson | da4147c | 2013-11-15 07:16:09 +0000 | [diff] [blame] | 342 | Function *AsanCovFunction; |
Peter Collingbourne | 015370e | 2013-07-09 22:02:49 +0000 | [diff] [blame] | 343 | OwningPtr<SpecialCaseList> BL; |
Kostya Serebryany | 4273bb0 | 2012-07-16 14:09:42 +0000 | [diff] [blame] | 344 | // This array is indexed by AccessIsWrite and log2(AccessSize). |
| 345 | Function *AsanErrorCallback[2][kNumberOfAccessSizes]; |
Kostya Serebryany | 3ece9bea | 2013-02-19 11:29:21 +0000 | [diff] [blame] | 346 | // This array is indexed by AccessIsWrite. |
| 347 | Function *AsanErrorCallbackSized[2]; |
Kostya Serebryany | f02c606 | 2012-07-20 09:54:50 +0000 | [diff] [blame] | 348 | InlineAsm *EmptyAsm; |
Kostya Serebryany | b3bd605 | 2012-11-20 13:00:01 +0000 | [diff] [blame] | 349 | SetOfDynamicallyInitializedGlobals DynamicallyInitializedGlobals; |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 350 | |
| 351 | friend struct FunctionStackPoisoner; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 352 | }; |
Kostya Serebryany | 874dae6 | 2012-07-16 16:15:40 +0000 | [diff] [blame] | 353 | |
Kostya Serebryany | dfe9e79 | 2012-11-28 10:31:36 +0000 | [diff] [blame] | 354 | class AddressSanitizerModule : public ModulePass { |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 355 | public: |
Alexey Samsonov | 819eddc | 2013-03-14 12:38:58 +0000 | [diff] [blame] | 356 | AddressSanitizerModule(bool CheckInitOrder = true, |
Alexey Samsonov | 347bcd3 | 2013-01-17 11:12:32 +0000 | [diff] [blame] | 357 | StringRef BlacklistFile = StringRef(), |
| 358 | bool ZeroBaseShadow = false) |
Alexey Samsonov | df62452 | 2012-11-29 18:14:24 +0000 | [diff] [blame] | 359 | : ModulePass(ID), |
Alexey Samsonov | ef51c3f | 2012-12-03 19:09:26 +0000 | [diff] [blame] | 360 | CheckInitOrder(CheckInitOrder || ClInitializers), |
| 361 | BlacklistFile(BlacklistFile.empty() ? ClBlacklistFile |
Alexey Samsonov | 347bcd3 | 2013-01-17 11:12:32 +0000 | [diff] [blame] | 362 | : BlacklistFile), |
| 363 | ZeroBaseShadow(ZeroBaseShadow) {} |
Kostya Serebryany | dfe9e79 | 2012-11-28 10:31:36 +0000 | [diff] [blame] | 364 | bool runOnModule(Module &M); |
| 365 | static char ID; // Pass identification, replacement for typeid |
Kostya Serebryany | dfe9e79 | 2012-11-28 10:31:36 +0000 | [diff] [blame] | 366 | virtual const char *getPassName() const { |
| 367 | return "AddressSanitizerModule"; |
| 368 | } |
Alexey Samsonov | 261177a | 2012-12-04 01:34:23 +0000 | [diff] [blame] | 369 | |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 370 | private: |
Alexey Samsonov | 788381b | 2012-12-25 12:28:20 +0000 | [diff] [blame] | 371 | void initializeCallbacks(Module &M); |
| 372 | |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 373 | bool ShouldInstrumentGlobal(GlobalVariable *G); |
Alexey Samsonov | e1e26bf | 2013-03-26 13:05:41 +0000 | [diff] [blame] | 374 | void createInitializerPoisonCalls(Module &M, GlobalValue *ModuleName); |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 375 | size_t MinRedzoneSizeForGlobal() const { |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 376 | return RedzoneSizeForScale(Mapping.Scale); |
| 377 | } |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 378 | |
Alexey Samsonov | df62452 | 2012-11-29 18:14:24 +0000 | [diff] [blame] | 379 | bool CheckInitOrder; |
Alexey Samsonov | ef51c3f | 2012-12-03 19:09:26 +0000 | [diff] [blame] | 380 | SmallString<64> BlacklistFile; |
Alexey Samsonov | 347bcd3 | 2013-01-17 11:12:32 +0000 | [diff] [blame] | 381 | bool ZeroBaseShadow; |
| 382 | |
Peter Collingbourne | 015370e | 2013-07-09 22:02:49 +0000 | [diff] [blame] | 383 | OwningPtr<SpecialCaseList> BL; |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 384 | SetOfDynamicallyInitializedGlobals DynamicallyInitializedGlobals; |
| 385 | Type *IntptrTy; |
| 386 | LLVMContext *C; |
Kostya Serebryany | dfe9e79 | 2012-11-28 10:31:36 +0000 | [diff] [blame] | 387 | DataLayout *TD; |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 388 | ShadowMapping Mapping; |
Alexey Samsonov | 788381b | 2012-12-25 12:28:20 +0000 | [diff] [blame] | 389 | Function *AsanPoisonGlobals; |
| 390 | Function *AsanUnpoisonGlobals; |
| 391 | Function *AsanRegisterGlobals; |
| 392 | Function *AsanUnregisterGlobals; |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 393 | }; |
| 394 | |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 395 | // Stack poisoning does not play well with exception handling. |
| 396 | // When an exception is thrown, we essentially bypass the code |
| 397 | // that unpoisones the stack. This is why the run-time library has |
| 398 | // to intercept __cxa_throw (as well as longjmp, etc) and unpoison the entire |
| 399 | // stack in the interceptor. This however does not work inside the |
| 400 | // actual function which catches the exception. Most likely because the |
| 401 | // compiler hoists the load of the shadow value somewhere too high. |
| 402 | // This causes asan to report a non-existing bug on 453.povray. |
| 403 | // It sounds like an LLVM bug. |
| 404 | struct FunctionStackPoisoner : public InstVisitor<FunctionStackPoisoner> { |
| 405 | Function &F; |
| 406 | AddressSanitizer &ASan; |
| 407 | DIBuilder DIB; |
| 408 | LLVMContext *C; |
| 409 | Type *IntptrTy; |
| 410 | Type *IntptrPtrTy; |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 411 | ShadowMapping Mapping; |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 412 | |
| 413 | SmallVector<AllocaInst*, 16> AllocaVec; |
| 414 | SmallVector<Instruction*, 8> RetVec; |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 415 | unsigned StackAlignment; |
| 416 | |
Kostya Serebryany | 6805de5 | 2013-09-10 13:16:56 +0000 | [diff] [blame] | 417 | Function *AsanStackMallocFunc[kMaxAsanStackMallocSizeClass + 1], |
| 418 | *AsanStackFreeFunc[kMaxAsanStackMallocSizeClass + 1]; |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 419 | Function *AsanPoisonStackMemoryFunc, *AsanUnpoisonStackMemoryFunc; |
| 420 | |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 421 | // Stores a place and arguments of poisoning/unpoisoning call for alloca. |
| 422 | struct AllocaPoisonCall { |
| 423 | IntrinsicInst *InsBefore; |
Alexey Samsonov | a788b94 | 2013-11-18 14:53:55 +0000 | [diff] [blame] | 424 | AllocaInst *AI; |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 425 | uint64_t Size; |
| 426 | bool DoPoison; |
| 427 | }; |
| 428 | SmallVector<AllocaPoisonCall, 8> AllocaPoisonCallVec; |
| 429 | |
| 430 | // Maps Value to an AllocaInst from which the Value is originated. |
| 431 | typedef DenseMap<Value*, AllocaInst*> AllocaForValueMapTy; |
| 432 | AllocaForValueMapTy AllocaForValue; |
| 433 | |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 434 | FunctionStackPoisoner(Function &F, AddressSanitizer &ASan) |
| 435 | : F(F), ASan(ASan), DIB(*F.getParent()), C(ASan.C), |
| 436 | IntptrTy(ASan.IntptrTy), IntptrPtrTy(PointerType::get(IntptrTy, 0)), |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 437 | Mapping(ASan.Mapping), |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 438 | StackAlignment(1 << Mapping.Scale) {} |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 439 | |
| 440 | bool runOnFunction() { |
| 441 | if (!ClStack) return false; |
| 442 | // Collect alloca, ret, lifetime instructions etc. |
| 443 | for (df_iterator<BasicBlock*> DI = df_begin(&F.getEntryBlock()), |
| 444 | DE = df_end(&F.getEntryBlock()); DI != DE; ++DI) { |
| 445 | BasicBlock *BB = *DI; |
| 446 | visit(*BB); |
| 447 | } |
| 448 | if (AllocaVec.empty()) return false; |
| 449 | |
| 450 | initializeCallbacks(*F.getParent()); |
| 451 | |
| 452 | poisonStack(); |
| 453 | |
| 454 | if (ClDebugStack) { |
| 455 | DEBUG(dbgs() << F); |
| 456 | } |
| 457 | return true; |
| 458 | } |
| 459 | |
| 460 | // Finds all static Alloca instructions and puts |
| 461 | // poisoned red zones around all of them. |
| 462 | // Then unpoison everything back before the function returns. |
| 463 | void poisonStack(); |
| 464 | |
| 465 | // ----------------------- Visitors. |
| 466 | /// \brief Collect all Ret instructions. |
| 467 | void visitReturnInst(ReturnInst &RI) { |
| 468 | RetVec.push_back(&RI); |
| 469 | } |
| 470 | |
| 471 | /// \brief Collect Alloca instructions we want (and can) handle. |
| 472 | void visitAllocaInst(AllocaInst &AI) { |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 473 | if (!isInterestingAlloca(AI)) return; |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 474 | |
| 475 | StackAlignment = std::max(StackAlignment, AI.getAlignment()); |
| 476 | AllocaVec.push_back(&AI); |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 477 | } |
| 478 | |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 479 | /// \brief Collect lifetime intrinsic calls to check for use-after-scope |
| 480 | /// errors. |
| 481 | void visitIntrinsicInst(IntrinsicInst &II) { |
| 482 | if (!ASan.CheckLifetime) return; |
| 483 | Intrinsic::ID ID = II.getIntrinsicID(); |
| 484 | if (ID != Intrinsic::lifetime_start && |
| 485 | ID != Intrinsic::lifetime_end) |
| 486 | return; |
| 487 | // Found lifetime intrinsic, add ASan instrumentation if necessary. |
| 488 | ConstantInt *Size = dyn_cast<ConstantInt>(II.getArgOperand(0)); |
| 489 | // If size argument is undefined, don't do anything. |
| 490 | if (Size->isMinusOne()) return; |
| 491 | // Check that size doesn't saturate uint64_t and can |
| 492 | // be stored in IntptrTy. |
| 493 | const uint64_t SizeValue = Size->getValue().getLimitedValue(); |
| 494 | if (SizeValue == ~0ULL || |
| 495 | !ConstantInt::isValueValidForType(IntptrTy, SizeValue)) |
| 496 | return; |
| 497 | // Find alloca instruction that corresponds to llvm.lifetime argument. |
| 498 | AllocaInst *AI = findAllocaForValue(II.getArgOperand(1)); |
| 499 | if (!AI) return; |
| 500 | bool DoPoison = (ID == Intrinsic::lifetime_end); |
Alexey Samsonov | a788b94 | 2013-11-18 14:53:55 +0000 | [diff] [blame] | 501 | AllocaPoisonCall APC = {&II, AI, SizeValue, DoPoison}; |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 502 | AllocaPoisonCallVec.push_back(APC); |
| 503 | } |
| 504 | |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 505 | // ---------------------- Helpers. |
| 506 | void initializeCallbacks(Module &M); |
| 507 | |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 508 | // Check if we want (and can) handle this alloca. |
Jakub Staszak | 23ec6a9 | 2013-08-09 20:53:48 +0000 | [diff] [blame] | 509 | bool isInterestingAlloca(AllocaInst &AI) const { |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 510 | return (!AI.isArrayAllocation() && AI.isStaticAlloca() && |
| 511 | AI.getAllocatedType()->isSized() && |
| 512 | // alloca() may be called with 0 size, ignore it. |
| 513 | getAllocaSizeInBytes(&AI) > 0); |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 514 | } |
| 515 | |
Jakub Staszak | 23ec6a9 | 2013-08-09 20:53:48 +0000 | [diff] [blame] | 516 | uint64_t getAllocaSizeInBytes(AllocaInst *AI) const { |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 517 | Type *Ty = AI->getAllocatedType(); |
| 518 | uint64_t SizeInBytes = ASan.TD->getTypeAllocSize(Ty); |
| 519 | return SizeInBytes; |
| 520 | } |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 521 | /// Finds alloca where the value comes from. |
| 522 | AllocaInst *findAllocaForValue(Value *V); |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 523 | void poisonRedZones(const ArrayRef<uint8_t> ShadowBytes, IRBuilder<> &IRB, |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 524 | Value *ShadowBase, bool DoPoison); |
Jakub Staszak | 23ec6a9 | 2013-08-09 20:53:48 +0000 | [diff] [blame] | 525 | void poisonAlloca(Value *V, uint64_t Size, IRBuilder<> &IRB, bool DoPoison); |
Kostya Serebryany | bc86efb | 2013-09-17 12:14:50 +0000 | [diff] [blame] | 526 | |
| 527 | void SetShadowToStackAfterReturnInlined(IRBuilder<> &IRB, Value *ShadowBase, |
| 528 | int Size); |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 529 | }; |
| 530 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 531 | } // namespace |
| 532 | |
| 533 | char AddressSanitizer::ID = 0; |
| 534 | INITIALIZE_PASS(AddressSanitizer, "asan", |
| 535 | "AddressSanitizer: detects use-after-free and out-of-bounds bugs.", |
| 536 | false, false) |
Alexey Samsonov | df62452 | 2012-11-29 18:14:24 +0000 | [diff] [blame] | 537 | FunctionPass *llvm::createAddressSanitizerFunctionPass( |
Alexey Samsonov | ef51c3f | 2012-12-03 19:09:26 +0000 | [diff] [blame] | 538 | bool CheckInitOrder, bool CheckUseAfterReturn, bool CheckLifetime, |
Alexey Samsonov | 347bcd3 | 2013-01-17 11:12:32 +0000 | [diff] [blame] | 539 | StringRef BlacklistFile, bool ZeroBaseShadow) { |
Alexey Samsonov | df62452 | 2012-11-29 18:14:24 +0000 | [diff] [blame] | 540 | return new AddressSanitizer(CheckInitOrder, CheckUseAfterReturn, |
Alexey Samsonov | 347bcd3 | 2013-01-17 11:12:32 +0000 | [diff] [blame] | 541 | CheckLifetime, BlacklistFile, ZeroBaseShadow); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 542 | } |
| 543 | |
Kostya Serebryany | dfe9e79 | 2012-11-28 10:31:36 +0000 | [diff] [blame] | 544 | char AddressSanitizerModule::ID = 0; |
| 545 | INITIALIZE_PASS(AddressSanitizerModule, "asan-module", |
| 546 | "AddressSanitizer: detects use-after-free and out-of-bounds bugs." |
| 547 | "ModulePass", false, false) |
Alexey Samsonov | ef51c3f | 2012-12-03 19:09:26 +0000 | [diff] [blame] | 548 | ModulePass *llvm::createAddressSanitizerModulePass( |
Alexey Samsonov | 347bcd3 | 2013-01-17 11:12:32 +0000 | [diff] [blame] | 549 | bool CheckInitOrder, StringRef BlacklistFile, bool ZeroBaseShadow) { |
| 550 | return new AddressSanitizerModule(CheckInitOrder, BlacklistFile, |
| 551 | ZeroBaseShadow); |
Alexander Potapenko | c94cf8f | 2012-01-23 11:22:43 +0000 | [diff] [blame] | 552 | } |
| 553 | |
Kostya Serebryany | c4ce5df | 2012-07-16 17:12:07 +0000 | [diff] [blame] | 554 | static size_t TypeSizeToSizeIndex(uint32_t TypeSize) { |
Michael J. Spencer | df1ecbd7 | 2013-05-24 22:23:49 +0000 | [diff] [blame] | 555 | size_t Res = countTrailingZeros(TypeSize / 8); |
Kostya Serebryany | c4ce5df | 2012-07-16 17:12:07 +0000 | [diff] [blame] | 556 | assert(Res < kNumberOfAccessSizes); |
| 557 | return Res; |
| 558 | } |
| 559 | |
Bill Wendling | 58f8cef | 2013-08-06 22:52:42 +0000 | [diff] [blame] | 560 | // \brief Create a constant for Str so that we can pass it to the run-time lib. |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 561 | static GlobalVariable *createPrivateGlobalForString(Module &M, StringRef Str) { |
Chris Lattner | cf9e8f6 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 562 | Constant *StrConst = ConstantDataArray::getString(M.getContext(), Str); |
Kostya Serebryany | 10cc12f | 2013-03-18 09:38:39 +0000 | [diff] [blame] | 563 | GlobalVariable *GV = new GlobalVariable(M, StrConst->getType(), true, |
Bill Wendling | 58f8cef | 2013-08-06 22:52:42 +0000 | [diff] [blame] | 564 | GlobalValue::InternalLinkage, StrConst, |
Kostya Serebryany | 139a937 | 2012-11-20 14:16:08 +0000 | [diff] [blame] | 565 | kAsanGenPrefix); |
Kostya Serebryany | 10cc12f | 2013-03-18 09:38:39 +0000 | [diff] [blame] | 566 | GV->setUnnamedAddr(true); // Ok to merge these. |
| 567 | GV->setAlignment(1); // Strings may not be merged w/o setting align 1. |
| 568 | return GV; |
Kostya Serebryany | 139a937 | 2012-11-20 14:16:08 +0000 | [diff] [blame] | 569 | } |
| 570 | |
| 571 | static bool GlobalWasGeneratedByAsan(GlobalVariable *G) { |
| 572 | return G->getName().find(kAsanGenPrefix) == 0; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 573 | } |
| 574 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 575 | Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) { |
| 576 | // Shadow >> scale |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 577 | Shadow = IRB.CreateLShr(Shadow, Mapping.Scale); |
| 578 | if (Mapping.Offset == 0) |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 579 | return Shadow; |
| 580 | // (Shadow >> scale) | offset |
Kostya Serebryany | 4766fe6 | 2013-01-23 12:54:55 +0000 | [diff] [blame] | 581 | if (Mapping.OrShadowOffset) |
| 582 | return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset)); |
| 583 | else |
| 584 | return IRB.CreateAdd(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset)); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 585 | } |
| 586 | |
Kostya Serebryany | 874dae6 | 2012-07-16 16:15:40 +0000 | [diff] [blame] | 587 | void AddressSanitizer::instrumentMemIntrinsicParam( |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 588 | Instruction *OrigIns, |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 589 | Value *Addr, Value *Size, Instruction *InsertBefore, bool IsWrite) { |
Kostya Serebryany | 3ece9bea | 2013-02-19 11:29:21 +0000 | [diff] [blame] | 590 | IRBuilder<> IRB(InsertBefore); |
| 591 | if (Size->getType() != IntptrTy) |
| 592 | Size = IRB.CreateIntCast(Size, IntptrTy, false); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 593 | // Check the first byte. |
Kostya Serebryany | 3ece9bea | 2013-02-19 11:29:21 +0000 | [diff] [blame] | 594 | instrumentAddress(OrigIns, InsertBefore, Addr, 8, IsWrite, Size); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 595 | // Check the last byte. |
Kostya Serebryany | 3ece9bea | 2013-02-19 11:29:21 +0000 | [diff] [blame] | 596 | IRB.SetInsertPoint(InsertBefore); |
| 597 | Value *SizeMinusOne = IRB.CreateSub(Size, ConstantInt::get(IntptrTy, 1)); |
| 598 | Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy); |
| 599 | Value *AddrLast = IRB.CreateAdd(AddrLong, SizeMinusOne); |
| 600 | instrumentAddress(OrigIns, InsertBefore, AddrLast, 8, IsWrite, Size); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 601 | } |
| 602 | |
| 603 | // Instrument memset/memmove/memcpy |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 604 | bool AddressSanitizer::instrumentMemIntrinsic(MemIntrinsic *MI) { |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 605 | Value *Dst = MI->getDest(); |
| 606 | MemTransferInst *MemTran = dyn_cast<MemTransferInst>(MI); |
Kostya Serebryany | c4ce5df | 2012-07-16 17:12:07 +0000 | [diff] [blame] | 607 | Value *Src = MemTran ? MemTran->getSource() : 0; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 608 | Value *Length = MI->getLength(); |
| 609 | |
| 610 | Constant *ConstLength = dyn_cast<Constant>(Length); |
| 611 | Instruction *InsertBefore = MI; |
| 612 | if (ConstLength) { |
| 613 | if (ConstLength->isNullValue()) return false; |
| 614 | } else { |
| 615 | // The size is not a constant so it could be zero -- check at run-time. |
| 616 | IRBuilder<> IRB(InsertBefore); |
| 617 | |
| 618 | Value *Cmp = IRB.CreateICmpNE(Length, |
Kostya Serebryany | eeaf688 | 2012-07-02 11:42:29 +0000 | [diff] [blame] | 619 | Constant::getNullValue(Length->getType())); |
Evgeniy Stepanov | a9164e9 | 2013-12-19 13:29:56 +0000 | [diff] [blame] | 620 | InsertBefore = SplitBlockAndInsertIfThen(Cmp, InsertBefore, false); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 621 | } |
| 622 | |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 623 | instrumentMemIntrinsicParam(MI, Dst, Length, InsertBefore, true); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 624 | if (Src) |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 625 | instrumentMemIntrinsicParam(MI, Src, Length, InsertBefore, false); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 626 | return true; |
| 627 | } |
| 628 | |
Kostya Serebryany | 9024160 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 629 | // If I is an interesting memory access, return the PointerOperand |
| 630 | // and set IsWrite. Otherwise return NULL. |
| 631 | static Value *isInterestingMemoryAccess(Instruction *I, bool *IsWrite) { |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 632 | if (LoadInst *LI = dyn_cast<LoadInst>(I)) { |
Kostya Serebryany | 9024160 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 633 | if (!ClInstrumentReads) return NULL; |
| 634 | *IsWrite = false; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 635 | return LI->getPointerOperand(); |
| 636 | } |
Kostya Serebryany | 9024160 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 637 | if (StoreInst *SI = dyn_cast<StoreInst>(I)) { |
| 638 | if (!ClInstrumentWrites) return NULL; |
| 639 | *IsWrite = true; |
| 640 | return SI->getPointerOperand(); |
| 641 | } |
| 642 | if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(I)) { |
| 643 | if (!ClInstrumentAtomics) return NULL; |
| 644 | *IsWrite = true; |
| 645 | return RMW->getPointerOperand(); |
| 646 | } |
| 647 | if (AtomicCmpXchgInst *XCHG = dyn_cast<AtomicCmpXchgInst>(I)) { |
| 648 | if (!ClInstrumentAtomics) return NULL; |
| 649 | *IsWrite = true; |
| 650 | return XCHG->getPointerOperand(); |
| 651 | } |
| 652 | return NULL; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 653 | } |
| 654 | |
Kostya Serebryany | d3d23be | 2013-10-16 14:06:14 +0000 | [diff] [blame] | 655 | bool AddressSanitizer::GlobalIsLinkerInitialized(GlobalVariable *G) { |
| 656 | // If a global variable does not have dynamic initialization we don't |
| 657 | // have to instrument it. However, if a global does not have initializer |
| 658 | // at all, we assume it has dynamic initializer (in other TU). |
| 659 | return G->hasInitializer() && !DynamicallyInitializedGlobals.Contains(G); |
| 660 | } |
| 661 | |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 662 | void AddressSanitizer::instrumentMop(Instruction *I) { |
Axel Naumann | 4a12706 | 2012-09-17 14:20:57 +0000 | [diff] [blame] | 663 | bool IsWrite = false; |
Kostya Serebryany | 9024160 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 664 | Value *Addr = isInterestingMemoryAccess(I, &IsWrite); |
| 665 | assert(Addr); |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 666 | if (ClOpt && ClOptGlobals) { |
| 667 | if (GlobalVariable *G = dyn_cast<GlobalVariable>(Addr)) { |
| 668 | // If initialization order checking is disabled, a simple access to a |
| 669 | // dynamically initialized global is always valid. |
Kostya Serebryany | d3d23be | 2013-10-16 14:06:14 +0000 | [diff] [blame] | 670 | if (!CheckInitOrder || GlobalIsLinkerInitialized(G)) { |
| 671 | NumOptimizedAccessesToGlobalVar++; |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 672 | return; |
Kostya Serebryany | d3d23be | 2013-10-16 14:06:14 +0000 | [diff] [blame] | 673 | } |
| 674 | } |
| 675 | ConstantExpr *CE = dyn_cast<ConstantExpr>(Addr); |
| 676 | if (CE && CE->isGEPWithNoNotionalOverIndexing()) { |
| 677 | if (GlobalVariable *G = dyn_cast<GlobalVariable>(CE->getOperand(0))) { |
| 678 | if (CE->getOperand(1)->isNullValue() && GlobalIsLinkerInitialized(G)) { |
| 679 | NumOptimizedAccessesToGlobalArray++; |
| 680 | return; |
| 681 | } |
| 682 | } |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 683 | } |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 684 | } |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 685 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 686 | Type *OrigPtrTy = Addr->getType(); |
| 687 | Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType(); |
| 688 | |
| 689 | assert(OrigTy->isSized()); |
Kostya Serebryany | 7ca384b | 2013-02-18 13:47:02 +0000 | [diff] [blame] | 690 | uint32_t TypeSize = TD->getTypeStoreSizeInBits(OrigTy); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 691 | |
Kostya Serebryany | 3ece9bea | 2013-02-19 11:29:21 +0000 | [diff] [blame] | 692 | assert((TypeSize % 8) == 0); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 693 | |
Kostya Serebryany | d3d23be | 2013-10-16 14:06:14 +0000 | [diff] [blame] | 694 | if (IsWrite) |
| 695 | NumInstrumentedWrites++; |
| 696 | else |
| 697 | NumInstrumentedReads++; |
| 698 | |
Kostya Serebryany | 3ece9bea | 2013-02-19 11:29:21 +0000 | [diff] [blame] | 699 | // Instrument a 1-, 2-, 4-, 8-, or 16- byte access with one check. |
| 700 | if (TypeSize == 8 || TypeSize == 16 || |
| 701 | TypeSize == 32 || TypeSize == 64 || TypeSize == 128) |
| 702 | return instrumentAddress(I, I, Addr, TypeSize, IsWrite, 0); |
| 703 | // Instrument unusual size (but still multiple of 8). |
| 704 | // We can not do it with a single check, so we do 1-byte check for the first |
| 705 | // and the last bytes. We call __asan_report_*_n(addr, real_size) to be able |
| 706 | // to report the actual access size. |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 707 | IRBuilder<> IRB(I); |
Kostya Serebryany | 3ece9bea | 2013-02-19 11:29:21 +0000 | [diff] [blame] | 708 | Value *LastByte = IRB.CreateIntToPtr( |
| 709 | IRB.CreateAdd(IRB.CreatePointerCast(Addr, IntptrTy), |
| 710 | ConstantInt::get(IntptrTy, TypeSize / 8 - 1)), |
| 711 | OrigPtrTy); |
| 712 | Value *Size = ConstantInt::get(IntptrTy, TypeSize / 8); |
| 713 | instrumentAddress(I, I, Addr, 8, IsWrite, Size); |
| 714 | instrumentAddress(I, I, LastByte, 8, IsWrite, Size); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 715 | } |
| 716 | |
Alexander Potapenko | 056e27e | 2012-04-23 10:47:31 +0000 | [diff] [blame] | 717 | // Validate the result of Module::getOrInsertFunction called for an interface |
| 718 | // function of AddressSanitizer. If the instrumented module defines a function |
| 719 | // with the same name, their prototypes must match, otherwise |
| 720 | // getOrInsertFunction returns a bitcast. |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 721 | static Function *checkInterfaceFunction(Constant *FuncOrBitcast) { |
Alexander Potapenko | 056e27e | 2012-04-23 10:47:31 +0000 | [diff] [blame] | 722 | if (isa<Function>(FuncOrBitcast)) return cast<Function>(FuncOrBitcast); |
| 723 | FuncOrBitcast->dump(); |
| 724 | report_fatal_error("trying to redefine an AddressSanitizer " |
| 725 | "interface function"); |
| 726 | } |
| 727 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 728 | Instruction *AddressSanitizer::generateCrashCode( |
Kostya Serebryany | fda7a13 | 2012-08-14 14:04:51 +0000 | [diff] [blame] | 729 | Instruction *InsertBefore, Value *Addr, |
Kostya Serebryany | 3ece9bea | 2013-02-19 11:29:21 +0000 | [diff] [blame] | 730 | bool IsWrite, size_t AccessSizeIndex, Value *SizeArgument) { |
Kostya Serebryany | fda7a13 | 2012-08-14 14:04:51 +0000 | [diff] [blame] | 731 | IRBuilder<> IRB(InsertBefore); |
Kostya Serebryany | 3ece9bea | 2013-02-19 11:29:21 +0000 | [diff] [blame] | 732 | CallInst *Call = SizeArgument |
| 733 | ? IRB.CreateCall2(AsanErrorCallbackSized[IsWrite], Addr, SizeArgument) |
| 734 | : IRB.CreateCall(AsanErrorCallback[IsWrite][AccessSizeIndex], Addr); |
| 735 | |
Kostya Serebryany | f02c606 | 2012-07-20 09:54:50 +0000 | [diff] [blame] | 736 | // We don't do Call->setDoesNotReturn() because the BB already has |
| 737 | // UnreachableInst at the end. |
| 738 | // This EmptyAsm is required to avoid callback merge. |
| 739 | IRB.CreateCall(EmptyAsm); |
Kostya Serebryany | 3411f2e | 2012-01-06 18:09:21 +0000 | [diff] [blame] | 740 | return Call; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 741 | } |
| 742 | |
Kostya Serebryany | c4ce5df | 2012-07-16 17:12:07 +0000 | [diff] [blame] | 743 | Value *AddressSanitizer::createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong, |
Kostya Serebryany | 874dae6 | 2012-07-16 16:15:40 +0000 | [diff] [blame] | 744 | Value *ShadowValue, |
| 745 | uint32_t TypeSize) { |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 746 | size_t Granularity = 1 << Mapping.Scale; |
Kostya Serebryany | 874dae6 | 2012-07-16 16:15:40 +0000 | [diff] [blame] | 747 | // Addr & (Granularity - 1) |
| 748 | Value *LastAccessedByte = IRB.CreateAnd( |
| 749 | AddrLong, ConstantInt::get(IntptrTy, Granularity - 1)); |
| 750 | // (Addr & (Granularity - 1)) + size - 1 |
| 751 | if (TypeSize / 8 > 1) |
| 752 | LastAccessedByte = IRB.CreateAdd( |
| 753 | LastAccessedByte, ConstantInt::get(IntptrTy, TypeSize / 8 - 1)); |
| 754 | // (uint8_t) ((Addr & (Granularity-1)) + size - 1) |
| 755 | LastAccessedByte = IRB.CreateIntCast( |
Kostya Serebryany | 1e575ab | 2012-08-15 08:58:58 +0000 | [diff] [blame] | 756 | LastAccessedByte, ShadowValue->getType(), false); |
Kostya Serebryany | 874dae6 | 2012-07-16 16:15:40 +0000 | [diff] [blame] | 757 | // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue |
| 758 | return IRB.CreateICmpSGE(LastAccessedByte, ShadowValue); |
| 759 | } |
| 760 | |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 761 | void AddressSanitizer::instrumentAddress(Instruction *OrigIns, |
Kostya Serebryany | 3ece9bea | 2013-02-19 11:29:21 +0000 | [diff] [blame] | 762 | Instruction *InsertBefore, |
| 763 | Value *Addr, uint32_t TypeSize, |
| 764 | bool IsWrite, Value *SizeArgument) { |
| 765 | IRBuilder<> IRB(InsertBefore); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 766 | Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy); |
| 767 | |
| 768 | Type *ShadowTy = IntegerType::get( |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 769 | *C, std::max(8U, TypeSize >> Mapping.Scale)); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 770 | Type *ShadowPtrTy = PointerType::get(ShadowTy, 0); |
| 771 | Value *ShadowPtr = memToShadow(AddrLong, IRB); |
| 772 | Value *CmpVal = Constant::getNullValue(ShadowTy); |
| 773 | Value *ShadowValue = IRB.CreateLoad( |
| 774 | IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy)); |
| 775 | |
| 776 | Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal); |
Kostya Serebryany | 0f7a80d | 2012-08-13 14:08:46 +0000 | [diff] [blame] | 777 | size_t AccessSizeIndex = TypeSizeToSizeIndex(TypeSize); |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 778 | size_t Granularity = 1 << Mapping.Scale; |
Kostya Serebryany | fda7a13 | 2012-08-14 14:04:51 +0000 | [diff] [blame] | 779 | TerminatorInst *CrashTerm = 0; |
| 780 | |
Kostya Serebryany | 1e575ab | 2012-08-15 08:58:58 +0000 | [diff] [blame] | 781 | if (ClAlwaysSlowPath || (TypeSize < 8 * Granularity)) { |
Evgeniy Stepanov | 8eb77d8 | 2012-10-19 10:48:31 +0000 | [diff] [blame] | 782 | TerminatorInst *CheckTerm = |
Evgeniy Stepanov | a9164e9 | 2013-12-19 13:29:56 +0000 | [diff] [blame] | 783 | SplitBlockAndInsertIfThen(Cmp, InsertBefore, false); |
Kostya Serebryany | fda7a13 | 2012-08-14 14:04:51 +0000 | [diff] [blame] | 784 | assert(dyn_cast<BranchInst>(CheckTerm)->isUnconditional()); |
Kostya Serebryany | f02c606 | 2012-07-20 09:54:50 +0000 | [diff] [blame] | 785 | BasicBlock *NextBB = CheckTerm->getSuccessor(0); |
Kostya Serebryany | 874dae6 | 2012-07-16 16:15:40 +0000 | [diff] [blame] | 786 | IRB.SetInsertPoint(CheckTerm); |
| 787 | Value *Cmp2 = createSlowPathCmp(IRB, AddrLong, ShadowValue, TypeSize); |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 788 | BasicBlock *CrashBlock = |
| 789 | BasicBlock::Create(*C, "", NextBB->getParent(), NextBB); |
Kostya Serebryany | fda7a13 | 2012-08-14 14:04:51 +0000 | [diff] [blame] | 790 | CrashTerm = new UnreachableInst(*C, CrashBlock); |
Kostya Serebryany | f02c606 | 2012-07-20 09:54:50 +0000 | [diff] [blame] | 791 | BranchInst *NewTerm = BranchInst::Create(CrashBlock, NextBB, Cmp2); |
| 792 | ReplaceInstWithInst(CheckTerm, NewTerm); |
Kostya Serebryany | 874dae6 | 2012-07-16 16:15:40 +0000 | [diff] [blame] | 793 | } else { |
Evgeniy Stepanov | a9164e9 | 2013-12-19 13:29:56 +0000 | [diff] [blame] | 794 | CrashTerm = SplitBlockAndInsertIfThen(Cmp, InsertBefore, true); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 795 | } |
Kostya Serebryany | fda7a13 | 2012-08-14 14:04:51 +0000 | [diff] [blame] | 796 | |
Kostya Serebryany | 3ece9bea | 2013-02-19 11:29:21 +0000 | [diff] [blame] | 797 | Instruction *Crash = generateCrashCode( |
| 798 | CrashTerm, AddrLong, IsWrite, AccessSizeIndex, SizeArgument); |
Kostya Serebryany | fda7a13 | 2012-08-14 14:04:51 +0000 | [diff] [blame] | 799 | Crash->setDebugLoc(OrigIns->getDebugLoc()); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 800 | } |
| 801 | |
Kostya Serebryany | dfe9e79 | 2012-11-28 10:31:36 +0000 | [diff] [blame] | 802 | void AddressSanitizerModule::createInitializerPoisonCalls( |
Alexey Samsonov | e1e26bf | 2013-03-26 13:05:41 +0000 | [diff] [blame] | 803 | Module &M, GlobalValue *ModuleName) { |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 804 | // We do all of our poisoning and unpoisoning within _GLOBAL__I_a. |
| 805 | Function *GlobalInit = M.getFunction("_GLOBAL__I_a"); |
| 806 | // If that function is not present, this TU contains no globals, or they have |
| 807 | // all been optimized away |
| 808 | if (!GlobalInit) |
| 809 | return; |
| 810 | |
| 811 | // Set up the arguments to our poison/unpoison functions. |
| 812 | IRBuilder<> IRB(GlobalInit->begin()->getFirstInsertionPt()); |
| 813 | |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 814 | // Add a call to poison all external globals before the given function starts. |
Alexey Samsonov | e1e26bf | 2013-03-26 13:05:41 +0000 | [diff] [blame] | 815 | Value *ModuleNameAddr = ConstantExpr::getPointerCast(ModuleName, IntptrTy); |
| 816 | IRB.CreateCall(AsanPoisonGlobals, ModuleNameAddr); |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 817 | |
| 818 | // Add calls to unpoison all globals before each return instruction. |
| 819 | for (Function::iterator I = GlobalInit->begin(), E = GlobalInit->end(); |
| 820 | I != E; ++I) { |
| 821 | if (ReturnInst *RI = dyn_cast<ReturnInst>(I->getTerminator())) { |
| 822 | CallInst::Create(AsanUnpoisonGlobals, "", RI); |
| 823 | } |
| 824 | } |
| 825 | } |
| 826 | |
Kostya Serebryany | dfe9e79 | 2012-11-28 10:31:36 +0000 | [diff] [blame] | 827 | bool AddressSanitizerModule::ShouldInstrumentGlobal(GlobalVariable *G) { |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 828 | Type *Ty = cast<PointerType>(G->getType())->getElementType(); |
Kostya Serebryany | 2034335 | 2012-10-17 13:40:06 +0000 | [diff] [blame] | 829 | DEBUG(dbgs() << "GLOBAL: " << *G << "\n"); |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 830 | |
Kostya Serebryany | 2fa38f8 | 2012-09-05 07:29:56 +0000 | [diff] [blame] | 831 | if (BL->isIn(*G)) return false; |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 832 | if (!Ty->isSized()) return false; |
| 833 | if (!G->hasInitializer()) return false; |
Kostya Serebryany | 139a937 | 2012-11-20 14:16:08 +0000 | [diff] [blame] | 834 | if (GlobalWasGeneratedByAsan(G)) return false; // Our own global. |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 835 | // Touch only those globals that will not be defined in other modules. |
| 836 | // Don't handle ODR type linkages since other modules may be built w/o asan. |
| 837 | if (G->getLinkage() != GlobalVariable::ExternalLinkage && |
| 838 | G->getLinkage() != GlobalVariable::PrivateLinkage && |
| 839 | G->getLinkage() != GlobalVariable::InternalLinkage) |
| 840 | return false; |
| 841 | // Two problems with thread-locals: |
| 842 | // - The address of the main thread's copy can't be computed at link-time. |
| 843 | // - Need to poison all copies, not just the main thread's one. |
| 844 | if (G->isThreadLocal()) |
| 845 | return false; |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 846 | // For now, just ignore this Global if the alignment is large. |
| 847 | if (G->getAlignment() > MinRedzoneSizeForGlobal()) return false; |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 848 | |
| 849 | // Ignore all the globals with the names starting with "\01L_OBJC_". |
| 850 | // Many of those are put into the .cstring section. The linker compresses |
| 851 | // that section by removing the spare \0s after the string terminator, so |
| 852 | // our redzones get broken. |
| 853 | if ((G->getName().find("\01L_OBJC_") == 0) || |
| 854 | (G->getName().find("\01l_OBJC_") == 0)) { |
| 855 | DEBUG(dbgs() << "Ignoring \\01L_OBJC_* global: " << *G); |
| 856 | return false; |
| 857 | } |
| 858 | |
| 859 | if (G->hasSection()) { |
| 860 | StringRef Section(G->getSection()); |
| 861 | // Ignore the globals from the __OBJC section. The ObjC runtime assumes |
| 862 | // those conform to /usr/lib/objc/runtime.h, so we can't add redzones to |
| 863 | // them. |
| 864 | if ((Section.find("__OBJC,") == 0) || |
| 865 | (Section.find("__DATA, __objc_") == 0)) { |
| 866 | DEBUG(dbgs() << "Ignoring ObjC runtime global: " << *G); |
| 867 | return false; |
| 868 | } |
| 869 | // See http://code.google.com/p/address-sanitizer/issues/detail?id=32 |
| 870 | // Constant CFString instances are compiled in the following way: |
| 871 | // -- the string buffer is emitted into |
| 872 | // __TEXT,__cstring,cstring_literals |
| 873 | // -- the constant NSConstantString structure referencing that buffer |
| 874 | // is placed into __DATA,__cfstring |
| 875 | // Therefore there's no point in placing redzones into __DATA,__cfstring. |
| 876 | // Moreover, it causes the linker to crash on OS X 10.7 |
| 877 | if (Section.find("__DATA,__cfstring") == 0) { |
| 878 | DEBUG(dbgs() << "Ignoring CFString: " << *G); |
| 879 | return false; |
| 880 | } |
| 881 | } |
| 882 | |
| 883 | return true; |
| 884 | } |
| 885 | |
Alexey Samsonov | 788381b | 2012-12-25 12:28:20 +0000 | [diff] [blame] | 886 | void AddressSanitizerModule::initializeCallbacks(Module &M) { |
| 887 | IRBuilder<> IRB(*C); |
| 888 | // Declare our poisoning and unpoisoning functions. |
| 889 | AsanPoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction( |
Alexey Samsonov | e1e26bf | 2013-03-26 13:05:41 +0000 | [diff] [blame] | 890 | kAsanPoisonGlobalsName, IRB.getVoidTy(), IntptrTy, NULL)); |
Alexey Samsonov | 788381b | 2012-12-25 12:28:20 +0000 | [diff] [blame] | 891 | AsanPoisonGlobals->setLinkage(Function::ExternalLinkage); |
| 892 | AsanUnpoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction( |
| 893 | kAsanUnpoisonGlobalsName, IRB.getVoidTy(), NULL)); |
| 894 | AsanUnpoisonGlobals->setLinkage(Function::ExternalLinkage); |
| 895 | // Declare functions that register/unregister globals. |
| 896 | AsanRegisterGlobals = checkInterfaceFunction(M.getOrInsertFunction( |
| 897 | kAsanRegisterGlobalsName, IRB.getVoidTy(), |
| 898 | IntptrTy, IntptrTy, NULL)); |
| 899 | AsanRegisterGlobals->setLinkage(Function::ExternalLinkage); |
| 900 | AsanUnregisterGlobals = checkInterfaceFunction(M.getOrInsertFunction( |
| 901 | kAsanUnregisterGlobalsName, |
| 902 | IRB.getVoidTy(), IntptrTy, IntptrTy, NULL)); |
| 903 | AsanUnregisterGlobals->setLinkage(Function::ExternalLinkage); |
| 904 | } |
| 905 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 906 | // This function replaces all global variables with new variables that have |
| 907 | // trailing redzones. It also creates a function that poisons |
| 908 | // redzones and inserts this function into llvm.global_ctors. |
Kostya Serebryany | dfe9e79 | 2012-11-28 10:31:36 +0000 | [diff] [blame] | 909 | bool AddressSanitizerModule::runOnModule(Module &M) { |
| 910 | if (!ClGlobals) return false; |
| 911 | TD = getAnalysisIfAvailable<DataLayout>(); |
| 912 | if (!TD) |
| 913 | return false; |
Alexey Samsonov | e4b5fb8 | 2013-08-12 11:46:09 +0000 | [diff] [blame] | 914 | BL.reset(SpecialCaseList::createOrDie(BlacklistFile)); |
Alexey Samsonov | 9a956e8 | 2012-11-29 18:27:01 +0000 | [diff] [blame] | 915 | if (BL->isIn(M)) return false; |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 916 | C = &(M.getContext()); |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 917 | int LongSize = TD->getPointerSizeInBits(); |
| 918 | IntptrTy = Type::getIntNTy(*C, LongSize); |
Alexey Samsonov | 347bcd3 | 2013-01-17 11:12:32 +0000 | [diff] [blame] | 919 | Mapping = getShadowMapping(M, LongSize, ZeroBaseShadow); |
Alexey Samsonov | 788381b | 2012-12-25 12:28:20 +0000 | [diff] [blame] | 920 | initializeCallbacks(M); |
| 921 | DynamicallyInitializedGlobals.Init(M); |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 922 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 923 | SmallVector<GlobalVariable *, 16> GlobalsToChange; |
| 924 | |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 925 | for (Module::GlobalListType::iterator G = M.global_begin(), |
| 926 | E = M.global_end(); G != E; ++G) { |
| 927 | if (ShouldInstrumentGlobal(G)) |
| 928 | GlobalsToChange.push_back(G); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 929 | } |
| 930 | |
| 931 | size_t n = GlobalsToChange.size(); |
| 932 | if (n == 0) return false; |
| 933 | |
| 934 | // A global is described by a structure |
| 935 | // size_t beg; |
| 936 | // size_t size; |
| 937 | // size_t size_with_redzone; |
| 938 | // const char *name; |
Kostya Serebryany | bd016bb | 2013-03-18 08:05:29 +0000 | [diff] [blame] | 939 | // const char *module_name; |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 940 | // size_t has_dynamic_init; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 941 | // We initialize an array of such structures and pass it to a run-time call. |
| 942 | StructType *GlobalStructTy = StructType::get(IntptrTy, IntptrTy, |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 943 | IntptrTy, IntptrTy, |
Kostya Serebryany | bd016bb | 2013-03-18 08:05:29 +0000 | [diff] [blame] | 944 | IntptrTy, IntptrTy, NULL); |
Rafael Espindola | 44fee4e | 2013-10-01 13:32:03 +0000 | [diff] [blame] | 945 | SmallVector<Constant *, 16> Initializers(n); |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 946 | |
| 947 | Function *CtorFunc = M.getFunction(kAsanModuleCtorName); |
| 948 | assert(CtorFunc); |
| 949 | IRBuilder<> IRB(CtorFunc->getEntryBlock().getTerminator()); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 950 | |
Alexey Samsonov | e1e26bf | 2013-03-26 13:05:41 +0000 | [diff] [blame] | 951 | bool HasDynamicallyInitializedGlobals = false; |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 952 | |
Kostya Serebryany | bd016bb | 2013-03-18 08:05:29 +0000 | [diff] [blame] | 953 | GlobalVariable *ModuleName = createPrivateGlobalForString( |
| 954 | M, M.getModuleIdentifier()); |
Alexey Samsonov | e1e26bf | 2013-03-26 13:05:41 +0000 | [diff] [blame] | 955 | // We shouldn't merge same module names, as this string serves as unique |
| 956 | // module ID in runtime. |
| 957 | ModuleName->setUnnamedAddr(false); |
Kostya Serebryany | bd016bb | 2013-03-18 08:05:29 +0000 | [diff] [blame] | 958 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 959 | for (size_t i = 0; i < n; i++) { |
Kostya Serebryany | e35d59a | 2013-01-24 10:43:50 +0000 | [diff] [blame] | 960 | static const uint64_t kMaxGlobalRedzone = 1 << 18; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 961 | GlobalVariable *G = GlobalsToChange[i]; |
| 962 | PointerType *PtrTy = cast<PointerType>(G->getType()); |
| 963 | Type *Ty = PtrTy->getElementType(); |
Kostya Serebryany | 84a7f2e8 | 2012-03-21 15:28:50 +0000 | [diff] [blame] | 964 | uint64_t SizeInBytes = TD->getTypeAllocSize(Ty); |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 965 | uint64_t MinRZ = MinRedzoneSizeForGlobal(); |
Kostya Serebryany | 87191f6 | 2013-01-24 10:35:40 +0000 | [diff] [blame] | 966 | // MinRZ <= RZ <= kMaxGlobalRedzone |
| 967 | // and trying to make RZ to be ~ 1/4 of SizeInBytes. |
Kostya Serebryany | e35d59a | 2013-01-24 10:43:50 +0000 | [diff] [blame] | 968 | uint64_t RZ = std::max(MinRZ, |
Kostya Serebryany | 87191f6 | 2013-01-24 10:35:40 +0000 | [diff] [blame] | 969 | std::min(kMaxGlobalRedzone, |
| 970 | (SizeInBytes / MinRZ / 4) * MinRZ)); |
| 971 | uint64_t RightRedzoneSize = RZ; |
| 972 | // Round up to MinRZ |
| 973 | if (SizeInBytes % MinRZ) |
| 974 | RightRedzoneSize += MinRZ - (SizeInBytes % MinRZ); |
| 975 | assert(((RightRedzoneSize + SizeInBytes) % MinRZ) == 0); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 976 | Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize); |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 977 | // Determine whether this global should be poisoned in initialization. |
Kostya Serebryany | b3bd605 | 2012-11-20 13:00:01 +0000 | [diff] [blame] | 978 | bool GlobalHasDynamicInitializer = |
| 979 | DynamicallyInitializedGlobals.Contains(G); |
Kostya Serebryany | 2fa38f8 | 2012-09-05 07:29:56 +0000 | [diff] [blame] | 980 | // Don't check initialization order if this global is blacklisted. |
Peter Collingbourne | 49062a9 | 2013-07-09 22:03:17 +0000 | [diff] [blame] | 981 | GlobalHasDynamicInitializer &= !BL->isIn(*G, "init"); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 982 | |
| 983 | StructType *NewTy = StructType::get(Ty, RightRedZoneTy, NULL); |
| 984 | Constant *NewInitializer = ConstantStruct::get( |
| 985 | NewTy, G->getInitializer(), |
| 986 | Constant::getNullValue(RightRedZoneTy), NULL); |
| 987 | |
Kostya Serebryany | bd016bb | 2013-03-18 08:05:29 +0000 | [diff] [blame] | 988 | GlobalVariable *Name = createPrivateGlobalForString(M, G->getName()); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 989 | |
| 990 | // Create a new global variable with enough space for a redzone. |
Bill Wendling | 58f8cef | 2013-08-06 22:52:42 +0000 | [diff] [blame] | 991 | GlobalValue::LinkageTypes Linkage = G->getLinkage(); |
| 992 | if (G->isConstant() && Linkage == GlobalValue::PrivateLinkage) |
| 993 | Linkage = GlobalValue::InternalLinkage; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 994 | GlobalVariable *NewGlobal = new GlobalVariable( |
Bill Wendling | 58f8cef | 2013-08-06 22:52:42 +0000 | [diff] [blame] | 995 | M, NewTy, G->isConstant(), Linkage, |
Hans Wennborg | cbe34b4 | 2012-06-23 11:37:03 +0000 | [diff] [blame] | 996 | NewInitializer, "", G, G->getThreadLocalMode()); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 997 | NewGlobal->copyAttributesFrom(G); |
Kostya Serebryany | 87191f6 | 2013-01-24 10:35:40 +0000 | [diff] [blame] | 998 | NewGlobal->setAlignment(MinRZ); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 999 | |
| 1000 | Value *Indices2[2]; |
| 1001 | Indices2[0] = IRB.getInt32(0); |
| 1002 | Indices2[1] = IRB.getInt32(0); |
| 1003 | |
| 1004 | G->replaceAllUsesWith( |
Kostya Serebryany | 7471d13 | 2012-01-28 04:27:16 +0000 | [diff] [blame] | 1005 | ConstantExpr::getGetElementPtr(NewGlobal, Indices2, true)); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1006 | NewGlobal->takeName(G); |
| 1007 | G->eraseFromParent(); |
| 1008 | |
| 1009 | Initializers[i] = ConstantStruct::get( |
| 1010 | GlobalStructTy, |
| 1011 | ConstantExpr::getPointerCast(NewGlobal, IntptrTy), |
| 1012 | ConstantInt::get(IntptrTy, SizeInBytes), |
| 1013 | ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize), |
| 1014 | ConstantExpr::getPointerCast(Name, IntptrTy), |
Kostya Serebryany | bd016bb | 2013-03-18 08:05:29 +0000 | [diff] [blame] | 1015 | ConstantExpr::getPointerCast(ModuleName, IntptrTy), |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 1016 | ConstantInt::get(IntptrTy, GlobalHasDynamicInitializer), |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1017 | NULL); |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 1018 | |
| 1019 | // Populate the first and last globals declared in this TU. |
Alexey Samsonov | e1e26bf | 2013-03-26 13:05:41 +0000 | [diff] [blame] | 1020 | if (CheckInitOrder && GlobalHasDynamicInitializer) |
| 1021 | HasDynamicallyInitializedGlobals = true; |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 1022 | |
Kostya Serebryany | 2034335 | 2012-10-17 13:40:06 +0000 | [diff] [blame] | 1023 | DEBUG(dbgs() << "NEW GLOBAL: " << *NewGlobal << "\n"); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1024 | } |
| 1025 | |
| 1026 | ArrayType *ArrayOfGlobalStructTy = ArrayType::get(GlobalStructTy, n); |
| 1027 | GlobalVariable *AllGlobals = new GlobalVariable( |
Bill Wendling | 58f8cef | 2013-08-06 22:52:42 +0000 | [diff] [blame] | 1028 | M, ArrayOfGlobalStructTy, false, GlobalVariable::InternalLinkage, |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1029 | ConstantArray::get(ArrayOfGlobalStructTy, Initializers), ""); |
| 1030 | |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 1031 | // Create calls for poisoning before initializers run and unpoisoning after. |
Alexey Samsonov | e1e26bf | 2013-03-26 13:05:41 +0000 | [diff] [blame] | 1032 | if (CheckInitOrder && HasDynamicallyInitializedGlobals) |
| 1033 | createInitializerPoisonCalls(M, ModuleName); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1034 | IRB.CreateCall2(AsanRegisterGlobals, |
| 1035 | IRB.CreatePointerCast(AllGlobals, IntptrTy), |
| 1036 | ConstantInt::get(IntptrTy, n)); |
| 1037 | |
Kostya Serebryany | cd1aba8 | 2011-12-15 21:59:03 +0000 | [diff] [blame] | 1038 | // We also need to unregister globals at the end, e.g. when a shared library |
| 1039 | // gets closed. |
| 1040 | Function *AsanDtorFunction = Function::Create( |
| 1041 | FunctionType::get(Type::getVoidTy(*C), false), |
| 1042 | GlobalValue::InternalLinkage, kAsanModuleDtorName, &M); |
| 1043 | BasicBlock *AsanDtorBB = BasicBlock::Create(*C, "", AsanDtorFunction); |
| 1044 | IRBuilder<> IRB_Dtor(ReturnInst::Create(*C, AsanDtorBB)); |
Kostya Serebryany | cd1aba8 | 2011-12-15 21:59:03 +0000 | [diff] [blame] | 1045 | IRB_Dtor.CreateCall2(AsanUnregisterGlobals, |
| 1046 | IRB.CreatePointerCast(AllGlobals, IntptrTy), |
| 1047 | ConstantInt::get(IntptrTy, n)); |
| 1048 | appendToGlobalDtors(M, AsanDtorFunction, kAsanCtorAndCtorPriority); |
| 1049 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1050 | DEBUG(dbgs() << M); |
| 1051 | return true; |
| 1052 | } |
| 1053 | |
Kostya Serebryany | 4b929da | 2012-11-29 09:54:21 +0000 | [diff] [blame] | 1054 | void AddressSanitizer::initializeCallbacks(Module &M) { |
| 1055 | IRBuilder<> IRB(*C); |
Kostya Serebryany | 4273bb0 | 2012-07-16 14:09:42 +0000 | [diff] [blame] | 1056 | // Create __asan_report* callbacks. |
| 1057 | for (size_t AccessIsWrite = 0; AccessIsWrite <= 1; AccessIsWrite++) { |
| 1058 | for (size_t AccessSizeIndex = 0; AccessSizeIndex < kNumberOfAccessSizes; |
| 1059 | AccessSizeIndex++) { |
| 1060 | // IsWrite and TypeSize are encoded in the function name. |
| 1061 | std::string FunctionName = std::string(kAsanReportErrorTemplate) + |
| 1062 | (AccessIsWrite ? "store" : "load") + itostr(1 << AccessSizeIndex); |
Kostya Serebryany | 986b8da | 2012-07-17 11:04:12 +0000 | [diff] [blame] | 1063 | // If we are merging crash callbacks, they have two parameters. |
Kostya Serebryany | 157a515 | 2012-11-07 12:42:18 +0000 | [diff] [blame] | 1064 | AsanErrorCallback[AccessIsWrite][AccessSizeIndex] = |
| 1065 | checkInterfaceFunction(M.getOrInsertFunction( |
| 1066 | FunctionName, IRB.getVoidTy(), IntptrTy, NULL)); |
Kostya Serebryany | 4273bb0 | 2012-07-16 14:09:42 +0000 | [diff] [blame] | 1067 | } |
| 1068 | } |
Kostya Serebryany | 3ece9bea | 2013-02-19 11:29:21 +0000 | [diff] [blame] | 1069 | AsanErrorCallbackSized[0] = checkInterfaceFunction(M.getOrInsertFunction( |
| 1070 | kAsanReportLoadN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL)); |
| 1071 | AsanErrorCallbackSized[1] = checkInterfaceFunction(M.getOrInsertFunction( |
| 1072 | kAsanReportStoreN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL)); |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 1073 | |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 1074 | AsanHandleNoReturnFunc = checkInterfaceFunction(M.getOrInsertFunction( |
| 1075 | kAsanHandleNoReturnName, IRB.getVoidTy(), NULL)); |
Bob Wilson | da4147c | 2013-11-15 07:16:09 +0000 | [diff] [blame] | 1076 | AsanCovFunction = checkInterfaceFunction(M.getOrInsertFunction( |
| 1077 | kAsanCovName, IRB.getVoidTy(), IntptrTy, NULL)); |
Kostya Serebryany | f02c606 | 2012-07-20 09:54:50 +0000 | [diff] [blame] | 1078 | // We insert an empty inline asm after __asan_report* to avoid callback merge. |
| 1079 | EmptyAsm = InlineAsm::get(FunctionType::get(IRB.getVoidTy(), false), |
| 1080 | StringRef(""), StringRef(""), |
| 1081 | /*hasSideEffects=*/true); |
Kostya Serebryany | 4b929da | 2012-11-29 09:54:21 +0000 | [diff] [blame] | 1082 | } |
| 1083 | |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 1084 | void AddressSanitizer::emitShadowMapping(Module &M, IRBuilder<> &IRB) const { |
Alexey Samsonov | 347bcd3 | 2013-01-17 11:12:32 +0000 | [diff] [blame] | 1085 | // Tell the values of mapping offset and scale to the run-time. |
| 1086 | GlobalValue *asan_mapping_offset = |
| 1087 | new GlobalVariable(M, IntptrTy, true, GlobalValue::LinkOnceODRLinkage, |
| 1088 | ConstantInt::get(IntptrTy, Mapping.Offset), |
| 1089 | kAsanMappingOffsetName); |
| 1090 | // Read the global, otherwise it may be optimized away. |
| 1091 | IRB.CreateLoad(asan_mapping_offset, true); |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 1092 | |
Alexey Samsonov | 347bcd3 | 2013-01-17 11:12:32 +0000 | [diff] [blame] | 1093 | GlobalValue *asan_mapping_scale = |
| 1094 | new GlobalVariable(M, IntptrTy, true, GlobalValue::LinkOnceODRLinkage, |
| 1095 | ConstantInt::get(IntptrTy, Mapping.Scale), |
| 1096 | kAsanMappingScaleName); |
| 1097 | // Read the global, otherwise it may be optimized away. |
| 1098 | IRB.CreateLoad(asan_mapping_scale, true); |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 1099 | } |
| 1100 | |
Kostya Serebryany | 4b929da | 2012-11-29 09:54:21 +0000 | [diff] [blame] | 1101 | // virtual |
| 1102 | bool AddressSanitizer::doInitialization(Module &M) { |
| 1103 | // Initialize the private fields. No one has accessed them before. |
| 1104 | TD = getAnalysisIfAvailable<DataLayout>(); |
| 1105 | |
| 1106 | if (!TD) |
| 1107 | return false; |
Alexey Samsonov | e4b5fb8 | 2013-08-12 11:46:09 +0000 | [diff] [blame] | 1108 | BL.reset(SpecialCaseList::createOrDie(BlacklistFile)); |
Kostya Serebryany | 4b929da | 2012-11-29 09:54:21 +0000 | [diff] [blame] | 1109 | DynamicallyInitializedGlobals.Init(M); |
| 1110 | |
| 1111 | C = &(M.getContext()); |
| 1112 | LongSize = TD->getPointerSizeInBits(); |
| 1113 | IntptrTy = Type::getIntNTy(*C, LongSize); |
Kostya Serebryany | 4b929da | 2012-11-29 09:54:21 +0000 | [diff] [blame] | 1114 | |
| 1115 | AsanCtorFunction = Function::Create( |
| 1116 | FunctionType::get(Type::getVoidTy(*C), false), |
| 1117 | GlobalValue::InternalLinkage, kAsanModuleCtorName, &M); |
| 1118 | BasicBlock *AsanCtorBB = BasicBlock::Create(*C, "", AsanCtorFunction); |
| 1119 | // call __asan_init in the module ctor. |
| 1120 | IRBuilder<> IRB(ReturnInst::Create(*C, AsanCtorBB)); |
| 1121 | AsanInitFunction = checkInterfaceFunction( |
| 1122 | M.getOrInsertFunction(kAsanInitName, IRB.getVoidTy(), NULL)); |
| 1123 | AsanInitFunction->setLinkage(Function::ExternalLinkage); |
| 1124 | IRB.CreateCall(AsanInitFunction); |
Kostya Serebryany | 4273bb0 | 2012-07-16 14:09:42 +0000 | [diff] [blame] | 1125 | |
Alexey Samsonov | 347bcd3 | 2013-01-17 11:12:32 +0000 | [diff] [blame] | 1126 | Mapping = getShadowMapping(M, LongSize, ZeroBaseShadow); |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 1127 | emitShadowMapping(M, IRB); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1128 | |
Kostya Serebryany | cd1aba8 | 2011-12-15 21:59:03 +0000 | [diff] [blame] | 1129 | appendToGlobalCtors(M, AsanCtorFunction, kAsanCtorAndCtorPriority); |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 1130 | return true; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1131 | } |
| 1132 | |
Kostya Serebryany | 22ddcfd | 2012-01-30 23:50:10 +0000 | [diff] [blame] | 1133 | bool AddressSanitizer::maybeInsertAsanInitAtFunctionEntry(Function &F) { |
| 1134 | // For each NSObject descendant having a +load method, this method is invoked |
| 1135 | // by the ObjC runtime before any of the static constructors is called. |
| 1136 | // Therefore we need to instrument such methods with a call to __asan_init |
| 1137 | // at the beginning in order to initialize our runtime before any access to |
| 1138 | // the shadow memory. |
| 1139 | // We cannot just ignore these methods, because they may call other |
| 1140 | // instrumented functions. |
| 1141 | if (F.getName().find(" load]") != std::string::npos) { |
| 1142 | IRBuilder<> IRB(F.begin()->begin()); |
| 1143 | IRB.CreateCall(AsanInitFunction); |
| 1144 | return true; |
| 1145 | } |
| 1146 | return false; |
| 1147 | } |
| 1148 | |
Bob Wilson | da4147c | 2013-11-15 07:16:09 +0000 | [diff] [blame] | 1149 | // Poor man's coverage that works with ASan. |
| 1150 | // We create a Guard boolean variable with the same linkage |
| 1151 | // as the function and inject this code into the entry block: |
| 1152 | // if (*Guard) { |
| 1153 | // __sanitizer_cov(&F); |
| 1154 | // *Guard = 1; |
| 1155 | // } |
| 1156 | // The accesses to Guard are atomic. The rest of the logic is |
| 1157 | // in __sanitizer_cov (it's fine to call it more than once). |
| 1158 | // |
| 1159 | // This coverage implementation provides very limited data: |
| 1160 | // it only tells if a given function was ever executed. |
| 1161 | // No counters, no per-basic-block or per-edge data. |
| 1162 | // But for many use cases this is what we need and the added slowdown |
| 1163 | // is negligible. This simple implementation will probably be obsoleted |
| 1164 | // by the upcoming Clang-based coverage implementation. |
| 1165 | // By having it here and now we hope to |
| 1166 | // a) get the functionality to users earlier and |
| 1167 | // b) collect usage statistics to help improve Clang coverage design. |
| 1168 | bool AddressSanitizer::InjectCoverage(Function &F) { |
| 1169 | if (!ClCoverage) return false; |
Reid Kleckner | 30b2a9a | 2013-12-10 21:49:28 +0000 | [diff] [blame] | 1170 | |
| 1171 | // Skip static allocas at the top of the entry block so they don't become |
| 1172 | // dynamic when we split the block. If we used our optimized stack layout, |
| 1173 | // then there will only be one alloca and it will come first. |
| 1174 | BasicBlock &Entry = F.getEntryBlock(); |
| 1175 | BasicBlock::iterator IP = Entry.getFirstInsertionPt(), BE = Entry.end(); |
| 1176 | for (; IP != BE; ++IP) { |
| 1177 | AllocaInst *AI = dyn_cast<AllocaInst>(IP); |
| 1178 | if (!AI || !AI->isStaticAlloca()) |
| 1179 | break; |
| 1180 | } |
| 1181 | |
| 1182 | IRBuilder<> IRB(IP); |
Bob Wilson | da4147c | 2013-11-15 07:16:09 +0000 | [diff] [blame] | 1183 | Type *Int8Ty = IRB.getInt8Ty(); |
| 1184 | GlobalVariable *Guard = new GlobalVariable( |
Kostya Serebryany | 0604c62 | 2013-11-15 09:52:05 +0000 | [diff] [blame] | 1185 | *F.getParent(), Int8Ty, false, GlobalValue::PrivateLinkage, |
Bob Wilson | da4147c | 2013-11-15 07:16:09 +0000 | [diff] [blame] | 1186 | Constant::getNullValue(Int8Ty), "__asan_gen_cov_" + F.getName()); |
| 1187 | LoadInst *Load = IRB.CreateLoad(Guard); |
| 1188 | Load->setAtomic(Monotonic); |
| 1189 | Load->setAlignment(1); |
| 1190 | Value *Cmp = IRB.CreateICmpEQ(Constant::getNullValue(Int8Ty), Load); |
Evgeniy Stepanov | a9164e9 | 2013-12-19 13:29:56 +0000 | [diff] [blame] | 1191 | Instruction *Ins = SplitBlockAndInsertIfThen(Cmp, IP, false); |
Bob Wilson | da4147c | 2013-11-15 07:16:09 +0000 | [diff] [blame] | 1192 | IRB.SetInsertPoint(Ins); |
| 1193 | // We pass &F to __sanitizer_cov. We could avoid this and rely on |
| 1194 | // GET_CALLER_PC, but having the PC of the first instruction is just nice. |
| 1195 | IRB.CreateCall(AsanCovFunction, IRB.CreatePointerCast(&F, IntptrTy)); |
| 1196 | StoreInst *Store = IRB.CreateStore(ConstantInt::get(Int8Ty, 1), Guard); |
| 1197 | Store->setAtomic(Monotonic); |
| 1198 | Store->setAlignment(1); |
| 1199 | return true; |
| 1200 | } |
| 1201 | |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 1202 | bool AddressSanitizer::runOnFunction(Function &F) { |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1203 | if (BL->isIn(F)) return false; |
| 1204 | if (&F == AsanCtorFunction) return false; |
Kostya Serebryany | 6b5b58d | 2013-03-18 07:33:49 +0000 | [diff] [blame] | 1205 | if (F.getLinkage() == GlobalValue::AvailableExternallyLinkage) return false; |
Kostya Serebryany | 2034335 | 2012-10-17 13:40:06 +0000 | [diff] [blame] | 1206 | DEBUG(dbgs() << "ASAN instrumenting:\n" << F << "\n"); |
Kostya Serebryany | 4b929da | 2012-11-29 09:54:21 +0000 | [diff] [blame] | 1207 | initializeCallbacks(*F.getParent()); |
Kostya Serebryany | 22ddcfd | 2012-01-30 23:50:10 +0000 | [diff] [blame] | 1208 | |
Kostya Serebryany | cf880b9 | 2013-02-26 06:58:09 +0000 | [diff] [blame] | 1209 | // If needed, insert __asan_init before checking for SanitizeAddress attr. |
Kostya Serebryany | 22ddcfd | 2012-01-30 23:50:10 +0000 | [diff] [blame] | 1210 | maybeInsertAsanInitAtFunctionEntry(F); |
| 1211 | |
Kostya Serebryany | 9f5213f | 2013-06-26 09:18:17 +0000 | [diff] [blame] | 1212 | if (!F.hasFnAttribute(Attribute::SanitizeAddress)) |
Bill Wendling | c9b22d7 | 2012-10-09 07:45:08 +0000 | [diff] [blame] | 1213 | return false; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1214 | |
| 1215 | if (!ClDebugFunc.empty() && ClDebugFunc != F.getName()) |
| 1216 | return false; |
Bill Wendling | c9b22d7 | 2012-10-09 07:45:08 +0000 | [diff] [blame] | 1217 | |
| 1218 | // We want to instrument every address only once per basic block (unless there |
| 1219 | // are calls between uses). |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1220 | SmallSet<Value*, 16> TempsToInstrument; |
| 1221 | SmallVector<Instruction*, 16> ToInstrument; |
Kostya Serebryany | 154a54d | 2012-02-08 21:36:17 +0000 | [diff] [blame] | 1222 | SmallVector<Instruction*, 8> NoReturnCalls; |
Kostya Serebryany | 9f5213f | 2013-06-26 09:18:17 +0000 | [diff] [blame] | 1223 | int NumAllocas = 0; |
Kostya Serebryany | 9024160 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 1224 | bool IsWrite; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1225 | |
| 1226 | // Fill the set of memory operations to instrument. |
| 1227 | for (Function::iterator FI = F.begin(), FE = F.end(); |
| 1228 | FI != FE; ++FI) { |
| 1229 | TempsToInstrument.clear(); |
Kostya Serebryany | c387ca7 | 2012-06-28 09:34:41 +0000 | [diff] [blame] | 1230 | int NumInsnsPerBB = 0; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1231 | for (BasicBlock::iterator BI = FI->begin(), BE = FI->end(); |
| 1232 | BI != BE; ++BI) { |
Kostya Serebryany | 687d078 | 2012-01-11 18:15:23 +0000 | [diff] [blame] | 1233 | if (LooksLikeCodeInBug11395(BI)) return false; |
Kostya Serebryany | 9024160 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 1234 | if (Value *Addr = isInterestingMemoryAccess(BI, &IsWrite)) { |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1235 | if (ClOpt && ClOptSameTemp) { |
| 1236 | if (!TempsToInstrument.insert(Addr)) |
| 1237 | continue; // We've seen this temp in the current BB. |
| 1238 | } |
| 1239 | } else if (isa<MemIntrinsic>(BI) && ClMemIntrin) { |
| 1240 | // ok, take it. |
| 1241 | } else { |
Kostya Serebryany | 9f5213f | 2013-06-26 09:18:17 +0000 | [diff] [blame] | 1242 | if (isa<AllocaInst>(BI)) |
| 1243 | NumAllocas++; |
Kostya Serebryany | 699ac28 | 2013-02-20 12:35:15 +0000 | [diff] [blame] | 1244 | CallSite CS(BI); |
| 1245 | if (CS) { |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1246 | // A call inside BB. |
| 1247 | TempsToInstrument.clear(); |
Kostya Serebryany | 699ac28 | 2013-02-20 12:35:15 +0000 | [diff] [blame] | 1248 | if (CS.doesNotReturn()) |
| 1249 | NoReturnCalls.push_back(CS.getInstruction()); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1250 | } |
| 1251 | continue; |
| 1252 | } |
| 1253 | ToInstrument.push_back(BI); |
Kostya Serebryany | c387ca7 | 2012-06-28 09:34:41 +0000 | [diff] [blame] | 1254 | NumInsnsPerBB++; |
| 1255 | if (NumInsnsPerBB >= ClMaxInsnsToInstrumentPerBB) |
| 1256 | break; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1257 | } |
| 1258 | } |
| 1259 | |
Kostya Serebryany | 9f5213f | 2013-06-26 09:18:17 +0000 | [diff] [blame] | 1260 | Function *UninstrumentedDuplicate = 0; |
| 1261 | bool LikelyToInstrument = |
| 1262 | !NoReturnCalls.empty() || !ToInstrument.empty() || (NumAllocas > 0); |
| 1263 | if (ClKeepUninstrumented && LikelyToInstrument) { |
| 1264 | ValueToValueMapTy VMap; |
| 1265 | UninstrumentedDuplicate = CloneFunction(&F, VMap, false); |
| 1266 | UninstrumentedDuplicate->removeFnAttr(Attribute::SanitizeAddress); |
| 1267 | UninstrumentedDuplicate->setName("NOASAN_" + F.getName()); |
| 1268 | F.getParent()->getFunctionList().push_back(UninstrumentedDuplicate); |
| 1269 | } |
| 1270 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1271 | // Instrument. |
| 1272 | int NumInstrumented = 0; |
| 1273 | for (size_t i = 0, n = ToInstrument.size(); i != n; i++) { |
| 1274 | Instruction *Inst = ToInstrument[i]; |
| 1275 | if (ClDebugMin < 0 || ClDebugMax < 0 || |
| 1276 | (NumInstrumented >= ClDebugMin && NumInstrumented <= ClDebugMax)) { |
Kostya Serebryany | 9024160 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 1277 | if (isInterestingMemoryAccess(Inst, &IsWrite)) |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 1278 | instrumentMop(Inst); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1279 | else |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 1280 | instrumentMemIntrinsic(cast<MemIntrinsic>(Inst)); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1281 | } |
| 1282 | NumInstrumented++; |
| 1283 | } |
| 1284 | |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 1285 | FunctionStackPoisoner FSP(F, *this); |
| 1286 | bool ChangedStack = FSP.runOnFunction(); |
Kostya Serebryany | 154a54d | 2012-02-08 21:36:17 +0000 | [diff] [blame] | 1287 | |
| 1288 | // We must unpoison the stack before every NoReturn call (throw, _exit, etc). |
| 1289 | // See e.g. http://code.google.com/p/address-sanitizer/issues/detail?id=37 |
| 1290 | for (size_t i = 0, n = NoReturnCalls.size(); i != n; i++) { |
| 1291 | Instruction *CI = NoReturnCalls[i]; |
| 1292 | IRBuilder<> IRB(CI); |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 1293 | IRB.CreateCall(AsanHandleNoReturnFunc); |
Kostya Serebryany | 154a54d | 2012-02-08 21:36:17 +0000 | [diff] [blame] | 1294 | } |
| 1295 | |
Kostya Serebryany | 9f5213f | 2013-06-26 09:18:17 +0000 | [diff] [blame] | 1296 | bool res = NumInstrumented > 0 || ChangedStack || !NoReturnCalls.empty(); |
Bob Wilson | da4147c | 2013-11-15 07:16:09 +0000 | [diff] [blame] | 1297 | |
| 1298 | if (InjectCoverage(F)) |
| 1299 | res = true; |
| 1300 | |
Kostya Serebryany | 9f5213f | 2013-06-26 09:18:17 +0000 | [diff] [blame] | 1301 | DEBUG(dbgs() << "ASAN done instrumenting: " << res << " " << F << "\n"); |
| 1302 | |
| 1303 | if (ClKeepUninstrumented) { |
| 1304 | if (!res) { |
| 1305 | // No instrumentation is done, no need for the duplicate. |
| 1306 | if (UninstrumentedDuplicate) |
| 1307 | UninstrumentedDuplicate->eraseFromParent(); |
| 1308 | } else { |
| 1309 | // The function was instrumented. We must have the duplicate. |
| 1310 | assert(UninstrumentedDuplicate); |
| 1311 | UninstrumentedDuplicate->setSection("NOASAN"); |
| 1312 | assert(!F.hasSection()); |
| 1313 | F.setSection("ASAN"); |
| 1314 | } |
| 1315 | } |
| 1316 | |
| 1317 | return res; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1318 | } |
| 1319 | |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 1320 | // Workaround for bug 11395: we don't want to instrument stack in functions |
| 1321 | // with large assembly blobs (32-bit only), otherwise reg alloc may crash. |
| 1322 | // FIXME: remove once the bug 11395 is fixed. |
| 1323 | bool AddressSanitizer::LooksLikeCodeInBug11395(Instruction *I) { |
| 1324 | if (LongSize != 32) return false; |
| 1325 | CallInst *CI = dyn_cast<CallInst>(I); |
| 1326 | if (!CI || !CI->isInlineAsm()) return false; |
| 1327 | if (CI->getNumArgOperands() <= 5) return false; |
| 1328 | // We have inline assembly with quite a few arguments. |
| 1329 | return true; |
| 1330 | } |
| 1331 | |
| 1332 | void FunctionStackPoisoner::initializeCallbacks(Module &M) { |
| 1333 | IRBuilder<> IRB(*C); |
Kostya Serebryany | 6805de5 | 2013-09-10 13:16:56 +0000 | [diff] [blame] | 1334 | for (int i = 0; i <= kMaxAsanStackMallocSizeClass; i++) { |
| 1335 | std::string Suffix = itostr(i); |
| 1336 | AsanStackMallocFunc[i] = checkInterfaceFunction( |
| 1337 | M.getOrInsertFunction(kAsanStackMallocNameTemplate + Suffix, IntptrTy, |
| 1338 | IntptrTy, IntptrTy, NULL)); |
| 1339 | AsanStackFreeFunc[i] = checkInterfaceFunction(M.getOrInsertFunction( |
| 1340 | kAsanStackFreeNameTemplate + Suffix, IRB.getVoidTy(), IntptrTy, |
| 1341 | IntptrTy, IntptrTy, NULL)); |
| 1342 | } |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 1343 | AsanPoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction( |
| 1344 | kAsanPoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL)); |
| 1345 | AsanUnpoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction( |
| 1346 | kAsanUnpoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL)); |
| 1347 | } |
| 1348 | |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 1349 | void |
| 1350 | FunctionStackPoisoner::poisonRedZones(const ArrayRef<uint8_t> ShadowBytes, |
| 1351 | IRBuilder<> &IRB, Value *ShadowBase, |
| 1352 | bool DoPoison) { |
| 1353 | size_t n = ShadowBytes.size(); |
Kostya Serebryany | ff7bde1 | 2013-12-23 09:24:36 +0000 | [diff] [blame] | 1354 | size_t i = 0; |
| 1355 | // We need to (un)poison n bytes of stack shadow. Poison as many as we can |
| 1356 | // using 64-bit stores (if we are on 64-bit arch), then poison the rest |
| 1357 | // with 32-bit stores, then with 16-byte stores, then with 8-byte stores. |
| 1358 | for (size_t LargeStoreSizeInBytes = ASan.LongSize / 8; |
| 1359 | LargeStoreSizeInBytes != 0; LargeStoreSizeInBytes /= 2) { |
| 1360 | for (; i + LargeStoreSizeInBytes - 1 < n; i += LargeStoreSizeInBytes) { |
| 1361 | uint64_t Val = 0; |
| 1362 | for (size_t j = 0; j < LargeStoreSizeInBytes; j++) { |
| 1363 | if (ASan.TD->isLittleEndian()) |
| 1364 | Val |= (uint64_t)ShadowBytes[i + j] << (8 * j); |
| 1365 | else |
| 1366 | Val = (Val << 8) | ShadowBytes[i + j]; |
| 1367 | } |
| 1368 | if (!Val) continue; |
| 1369 | Value *Ptr = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i)); |
| 1370 | Type *StoreTy = Type::getIntNTy(*C, LargeStoreSizeInBytes * 8); |
| 1371 | Value *Poison = ConstantInt::get(StoreTy, DoPoison ? Val : 0); |
| 1372 | IRB.CreateStore(Poison, IRB.CreateIntToPtr(Ptr, StoreTy->getPointerTo())); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1373 | } |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1374 | } |
| 1375 | } |
| 1376 | |
Kostya Serebryany | 6805de5 | 2013-09-10 13:16:56 +0000 | [diff] [blame] | 1377 | // Fake stack allocator (asan_fake_stack.h) has 11 size classes |
| 1378 | // for every power of 2 from kMinStackMallocSize to kMaxAsanStackMallocSizeClass |
| 1379 | static int StackMallocSizeClass(uint64_t LocalStackSize) { |
| 1380 | assert(LocalStackSize <= kMaxStackMallocSize); |
| 1381 | uint64_t MaxSize = kMinStackMallocSize; |
| 1382 | for (int i = 0; ; i++, MaxSize *= 2) |
| 1383 | if (LocalStackSize <= MaxSize) |
| 1384 | return i; |
| 1385 | llvm_unreachable("impossible LocalStackSize"); |
| 1386 | } |
| 1387 | |
Kostya Serebryany | bc86efb | 2013-09-17 12:14:50 +0000 | [diff] [blame] | 1388 | // Set Size bytes starting from ShadowBase to kAsanStackAfterReturnMagic. |
| 1389 | // We can not use MemSet intrinsic because it may end up calling the actual |
| 1390 | // memset. Size is a multiple of 8. |
| 1391 | // Currently this generates 8-byte stores on x86_64; it may be better to |
| 1392 | // generate wider stores. |
| 1393 | void FunctionStackPoisoner::SetShadowToStackAfterReturnInlined( |
| 1394 | IRBuilder<> &IRB, Value *ShadowBase, int Size) { |
| 1395 | assert(!(Size % 8)); |
| 1396 | assert(kAsanStackAfterReturnMagic == 0xf5); |
| 1397 | for (int i = 0; i < Size; i += 8) { |
| 1398 | Value *p = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i)); |
| 1399 | IRB.CreateStore(ConstantInt::get(IRB.getInt64Ty(), 0xf5f5f5f5f5f5f5f5ULL), |
| 1400 | IRB.CreateIntToPtr(p, IRB.getInt64Ty()->getPointerTo())); |
| 1401 | } |
| 1402 | } |
| 1403 | |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 1404 | void FunctionStackPoisoner::poisonStack() { |
Kostya Serebryany | 6805de5 | 2013-09-10 13:16:56 +0000 | [diff] [blame] | 1405 | int StackMallocIdx = -1; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1406 | |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 1407 | assert(AllocaVec.size() > 0); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1408 | Instruction *InsBefore = AllocaVec[0]; |
| 1409 | IRBuilder<> IRB(InsBefore); |
| 1410 | |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 1411 | SmallVector<ASanStackVariableDescription, 16> SVD; |
| 1412 | SVD.reserve(AllocaVec.size()); |
| 1413 | for (size_t i = 0, n = AllocaVec.size(); i < n; i++) { |
| 1414 | AllocaInst *AI = AllocaVec[i]; |
| 1415 | ASanStackVariableDescription D = { AI->getName().data(), |
| 1416 | getAllocaSizeInBytes(AI), |
| 1417 | AI->getAlignment(), AI, 0}; |
| 1418 | SVD.push_back(D); |
| 1419 | } |
| 1420 | // Minimal header size (left redzone) is 4 pointers, |
| 1421 | // i.e. 32 bytes on 64-bit platforms and 16 bytes in 32-bit platforms. |
| 1422 | size_t MinHeaderSize = ASan.LongSize / 2; |
| 1423 | ASanStackFrameLayout L; |
| 1424 | ComputeASanStackFrameLayout(SVD, 1UL << Mapping.Scale, MinHeaderSize, &L); |
| 1425 | DEBUG(dbgs() << L.DescriptionString << " --- " << L.FrameSize << "\n"); |
| 1426 | uint64_t LocalStackSize = L.FrameSize; |
| 1427 | bool DoStackMalloc = |
| 1428 | ASan.CheckUseAfterReturn && LocalStackSize <= kMaxStackMallocSize; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1429 | |
| 1430 | Type *ByteArrayTy = ArrayType::get(IRB.getInt8Ty(), LocalStackSize); |
| 1431 | AllocaInst *MyAlloca = |
| 1432 | new AllocaInst(ByteArrayTy, "MyAlloca", InsBefore); |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 1433 | assert((ClRealignStack & (ClRealignStack - 1)) == 0); |
| 1434 | size_t FrameAlignment = std::max(L.FrameAlignment, (size_t)ClRealignStack); |
| 1435 | MyAlloca->setAlignment(FrameAlignment); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1436 | assert(MyAlloca->isStaticAlloca()); |
| 1437 | Value *OrigStackBase = IRB.CreatePointerCast(MyAlloca, IntptrTy); |
| 1438 | Value *LocalStackBase = OrigStackBase; |
| 1439 | |
| 1440 | if (DoStackMalloc) { |
Kostya Serebryany | f322382 | 2013-09-18 14:07:14 +0000 | [diff] [blame] | 1441 | // LocalStackBase = OrigStackBase |
| 1442 | // if (__asan_option_detect_stack_use_after_return) |
| 1443 | // LocalStackBase = __asan_stack_malloc_N(LocalStackBase, OrigStackBase); |
Kostya Serebryany | 6805de5 | 2013-09-10 13:16:56 +0000 | [diff] [blame] | 1444 | StackMallocIdx = StackMallocSizeClass(LocalStackSize); |
| 1445 | assert(StackMallocIdx <= kMaxAsanStackMallocSizeClass); |
Kostya Serebryany | f322382 | 2013-09-18 14:07:14 +0000 | [diff] [blame] | 1446 | Constant *OptionDetectUAR = F.getParent()->getOrInsertGlobal( |
| 1447 | kAsanOptionDetectUAR, IRB.getInt32Ty()); |
| 1448 | Value *Cmp = IRB.CreateICmpNE(IRB.CreateLoad(OptionDetectUAR), |
| 1449 | Constant::getNullValue(IRB.getInt32Ty())); |
Evgeniy Stepanov | a9164e9 | 2013-12-19 13:29:56 +0000 | [diff] [blame] | 1450 | Instruction *Term = SplitBlockAndInsertIfThen(Cmp, InsBefore, false); |
Kostya Serebryany | f322382 | 2013-09-18 14:07:14 +0000 | [diff] [blame] | 1451 | BasicBlock *CmpBlock = cast<Instruction>(Cmp)->getParent(); |
| 1452 | IRBuilder<> IRBIf(Term); |
| 1453 | LocalStackBase = IRBIf.CreateCall2( |
| 1454 | AsanStackMallocFunc[StackMallocIdx], |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1455 | ConstantInt::get(IntptrTy, LocalStackSize), OrigStackBase); |
Kostya Serebryany | f322382 | 2013-09-18 14:07:14 +0000 | [diff] [blame] | 1456 | BasicBlock *SetBlock = cast<Instruction>(LocalStackBase)->getParent(); |
| 1457 | IRB.SetInsertPoint(InsBefore); |
| 1458 | PHINode *Phi = IRB.CreatePHI(IntptrTy, 2); |
| 1459 | Phi->addIncoming(OrigStackBase, CmpBlock); |
| 1460 | Phi->addIncoming(LocalStackBase, SetBlock); |
| 1461 | LocalStackBase = Phi; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1462 | } |
| 1463 | |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 1464 | // Insert poison calls for lifetime intrinsics for alloca. |
| 1465 | bool HavePoisonedAllocas = false; |
| 1466 | for (size_t i = 0, n = AllocaPoisonCallVec.size(); i < n; i++) { |
| 1467 | const AllocaPoisonCall &APC = AllocaPoisonCallVec[i]; |
Alexey Samsonov | a788b94 | 2013-11-18 14:53:55 +0000 | [diff] [blame] | 1468 | assert(APC.InsBefore); |
| 1469 | assert(APC.AI); |
| 1470 | IRBuilder<> IRB(APC.InsBefore); |
| 1471 | poisonAlloca(APC.AI, APC.Size, IRB, APC.DoPoison); |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 1472 | HavePoisonedAllocas |= APC.DoPoison; |
| 1473 | } |
| 1474 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1475 | // Replace Alloca instructions with base+offset. |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 1476 | for (size_t i = 0, n = SVD.size(); i < n; i++) { |
| 1477 | AllocaInst *AI = SVD[i].AI; |
Alexey Samsonov | 261177a | 2012-12-04 01:34:23 +0000 | [diff] [blame] | 1478 | Value *NewAllocaPtr = IRB.CreateIntToPtr( |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 1479 | IRB.CreateAdd(LocalStackBase, |
| 1480 | ConstantInt::get(IntptrTy, SVD[i].Offset)), |
| 1481 | AI->getType()); |
Alexey Samsonov | 3d43b63 | 2012-12-12 14:31:53 +0000 | [diff] [blame] | 1482 | replaceDbgDeclareForAlloca(AI, NewAllocaPtr, DIB); |
Alexey Samsonov | 261177a | 2012-12-04 01:34:23 +0000 | [diff] [blame] | 1483 | AI->replaceAllUsesWith(NewAllocaPtr); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1484 | } |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1485 | |
Kostya Serebryany | cdd35a9 | 2013-03-22 10:37:20 +0000 | [diff] [blame] | 1486 | // The left-most redzone has enough space for at least 4 pointers. |
| 1487 | // Write the Magic value to redzone[0]. |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1488 | Value *BasePlus0 = IRB.CreateIntToPtr(LocalStackBase, IntptrPtrTy); |
| 1489 | IRB.CreateStore(ConstantInt::get(IntptrTy, kCurrentStackFrameMagic), |
| 1490 | BasePlus0); |
Kostya Serebryany | cdd35a9 | 2013-03-22 10:37:20 +0000 | [diff] [blame] | 1491 | // Write the frame description constant to redzone[1]. |
| 1492 | Value *BasePlus1 = IRB.CreateIntToPtr( |
| 1493 | IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, ASan.LongSize/8)), |
| 1494 | IntptrPtrTy); |
Alexey Samsonov | 9bdb63a | 2012-11-02 12:20:34 +0000 | [diff] [blame] | 1495 | GlobalVariable *StackDescriptionGlobal = |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 1496 | createPrivateGlobalForString(*F.getParent(), L.DescriptionString); |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 1497 | Value *Description = IRB.CreatePointerCast(StackDescriptionGlobal, |
| 1498 | IntptrTy); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1499 | IRB.CreateStore(Description, BasePlus1); |
Kostya Serebryany | cdd35a9 | 2013-03-22 10:37:20 +0000 | [diff] [blame] | 1500 | // Write the PC to redzone[2]. |
| 1501 | Value *BasePlus2 = IRB.CreateIntToPtr( |
| 1502 | IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, |
| 1503 | 2 * ASan.LongSize/8)), |
| 1504 | IntptrPtrTy); |
| 1505 | IRB.CreateStore(IRB.CreatePointerCast(&F, IntptrTy), BasePlus2); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1506 | |
| 1507 | // Poison the stack redzones at the entry. |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 1508 | Value *ShadowBase = ASan.memToShadow(LocalStackBase, IRB); |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 1509 | poisonRedZones(L.ShadowBytes, IRB, ShadowBase, true); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1510 | |
Kostya Serebryany | 530e207 | 2013-12-23 14:15:08 +0000 | [diff] [blame^] | 1511 | // (Un)poison the stack before all ret instructions. |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1512 | for (size_t i = 0, n = RetVec.size(); i < n; i++) { |
| 1513 | Instruction *Ret = RetVec[i]; |
| 1514 | IRBuilder<> IRBRet(Ret); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1515 | // Mark the current frame as retired. |
| 1516 | IRBRet.CreateStore(ConstantInt::get(IntptrTy, kRetiredStackFrameMagic), |
| 1517 | BasePlus0); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1518 | if (DoStackMalloc) { |
Kostya Serebryany | 6805de5 | 2013-09-10 13:16:56 +0000 | [diff] [blame] | 1519 | assert(StackMallocIdx >= 0); |
Kostya Serebryany | 530e207 | 2013-12-23 14:15:08 +0000 | [diff] [blame^] | 1520 | // if LocalStackBase != OrigStackBase: |
| 1521 | // // In use-after-return mode, poison the whole stack frame. |
| 1522 | // if StackMallocIdx <= 4 |
| 1523 | // // For small sizes inline the whole thing: |
| 1524 | // memset(ShadowBase, kAsanStackAfterReturnMagic, ShadowSize); |
| 1525 | // **SavedFlagPtr(LocalStackBase) = 0 |
| 1526 | // else |
| 1527 | // __asan_stack_free_N(LocalStackBase, OrigStackBase) |
| 1528 | // else |
| 1529 | // <This is not a fake stack; unpoison the redzones> |
| 1530 | Value *Cmp = IRBRet.CreateICmpNE(LocalStackBase, OrigStackBase); |
| 1531 | TerminatorInst *ThenTerm, *ElseTerm; |
| 1532 | SplitBlockAndInsertIfThenElse(Cmp, Ret, &ThenTerm, &ElseTerm); |
| 1533 | |
| 1534 | IRBuilder<> IRBPoison(ThenTerm); |
Kostya Serebryany | bc86efb | 2013-09-17 12:14:50 +0000 | [diff] [blame] | 1535 | if (StackMallocIdx <= 4) { |
Kostya Serebryany | bc86efb | 2013-09-17 12:14:50 +0000 | [diff] [blame] | 1536 | int ClassSize = kMinStackMallocSize << StackMallocIdx; |
| 1537 | SetShadowToStackAfterReturnInlined(IRBPoison, ShadowBase, |
| 1538 | ClassSize >> Mapping.Scale); |
| 1539 | Value *SavedFlagPtrPtr = IRBPoison.CreateAdd( |
| 1540 | LocalStackBase, |
| 1541 | ConstantInt::get(IntptrTy, ClassSize - ASan.LongSize / 8)); |
| 1542 | Value *SavedFlagPtr = IRBPoison.CreateLoad( |
| 1543 | IRBPoison.CreateIntToPtr(SavedFlagPtrPtr, IntptrPtrTy)); |
| 1544 | IRBPoison.CreateStore( |
| 1545 | Constant::getNullValue(IRBPoison.getInt8Ty()), |
| 1546 | IRBPoison.CreateIntToPtr(SavedFlagPtr, IRBPoison.getInt8PtrTy())); |
| 1547 | } else { |
| 1548 | // For larger frames call __asan_stack_free_*. |
Kostya Serebryany | 530e207 | 2013-12-23 14:15:08 +0000 | [diff] [blame^] | 1549 | IRBPoison.CreateCall3(AsanStackFreeFunc[StackMallocIdx], LocalStackBase, |
| 1550 | ConstantInt::get(IntptrTy, LocalStackSize), |
| 1551 | OrigStackBase); |
Kostya Serebryany | bc86efb | 2013-09-17 12:14:50 +0000 | [diff] [blame] | 1552 | } |
Kostya Serebryany | 530e207 | 2013-12-23 14:15:08 +0000 | [diff] [blame^] | 1553 | |
| 1554 | IRBuilder<> IRBElse(ElseTerm); |
| 1555 | poisonRedZones(L.ShadowBytes, IRBElse, ShadowBase, false); |
Alexey Samsonov | 261177a | 2012-12-04 01:34:23 +0000 | [diff] [blame] | 1556 | } else if (HavePoisonedAllocas) { |
| 1557 | // If we poisoned some allocas in llvm.lifetime analysis, |
| 1558 | // unpoison whole stack frame now. |
| 1559 | assert(LocalStackBase == OrigStackBase); |
| 1560 | poisonAlloca(LocalStackBase, LocalStackSize, IRBRet, false); |
Kostya Serebryany | 530e207 | 2013-12-23 14:15:08 +0000 | [diff] [blame^] | 1561 | } else { |
| 1562 | poisonRedZones(L.ShadowBytes, IRBRet, ShadowBase, false); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1563 | } |
| 1564 | } |
| 1565 | |
Kostya Serebryany | 0995994 | 2012-10-19 06:20:53 +0000 | [diff] [blame] | 1566 | // We are done. Remove the old unused alloca instructions. |
| 1567 | for (size_t i = 0, n = AllocaVec.size(); i < n; i++) |
| 1568 | AllocaVec[i]->eraseFromParent(); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1569 | } |
Alexey Samsonov | 261177a | 2012-12-04 01:34:23 +0000 | [diff] [blame] | 1570 | |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 1571 | void FunctionStackPoisoner::poisonAlloca(Value *V, uint64_t Size, |
Jakub Staszak | 23ec6a9 | 2013-08-09 20:53:48 +0000 | [diff] [blame] | 1572 | IRBuilder<> &IRB, bool DoPoison) { |
Alexey Samsonov | 261177a | 2012-12-04 01:34:23 +0000 | [diff] [blame] | 1573 | // For now just insert the call to ASan runtime. |
| 1574 | Value *AddrArg = IRB.CreatePointerCast(V, IntptrTy); |
| 1575 | Value *SizeArg = ConstantInt::get(IntptrTy, Size); |
| 1576 | IRB.CreateCall2(DoPoison ? AsanPoisonStackMemoryFunc |
| 1577 | : AsanUnpoisonStackMemoryFunc, |
| 1578 | AddrArg, SizeArg); |
| 1579 | } |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 1580 | |
| 1581 | // Handling llvm.lifetime intrinsics for a given %alloca: |
| 1582 | // (1) collect all llvm.lifetime.xxx(%size, %value) describing the alloca. |
| 1583 | // (2) if %size is constant, poison memory for llvm.lifetime.end (to detect |
| 1584 | // invalid accesses) and unpoison it for llvm.lifetime.start (the memory |
| 1585 | // could be poisoned by previous llvm.lifetime.end instruction, as the |
| 1586 | // variable may go in and out of scope several times, e.g. in loops). |
| 1587 | // (3) if we poisoned at least one %alloca in a function, |
| 1588 | // unpoison the whole stack frame at function exit. |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 1589 | |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 1590 | AllocaInst *FunctionStackPoisoner::findAllocaForValue(Value *V) { |
| 1591 | if (AllocaInst *AI = dyn_cast<AllocaInst>(V)) |
| 1592 | // We're intested only in allocas we can handle. |
| 1593 | return isInterestingAlloca(*AI) ? AI : 0; |
| 1594 | // See if we've already calculated (or started to calculate) alloca for a |
| 1595 | // given value. |
| 1596 | AllocaForValueMapTy::iterator I = AllocaForValue.find(V); |
| 1597 | if (I != AllocaForValue.end()) |
| 1598 | return I->second; |
| 1599 | // Store 0 while we're calculating alloca for value V to avoid |
| 1600 | // infinite recursion if the value references itself. |
| 1601 | AllocaForValue[V] = 0; |
| 1602 | AllocaInst *Res = 0; |
| 1603 | if (CastInst *CI = dyn_cast<CastInst>(V)) |
| 1604 | Res = findAllocaForValue(CI->getOperand(0)); |
| 1605 | else if (PHINode *PN = dyn_cast<PHINode>(V)) { |
| 1606 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) { |
| 1607 | Value *IncValue = PN->getIncomingValue(i); |
| 1608 | // Allow self-referencing phi-nodes. |
| 1609 | if (IncValue == PN) continue; |
| 1610 | AllocaInst *IncValueAI = findAllocaForValue(IncValue); |
| 1611 | // AI for incoming values should exist and should all be equal. |
| 1612 | if (IncValueAI == 0 || (Res != 0 && IncValueAI != Res)) |
| 1613 | return 0; |
| 1614 | Res = IncValueAI; |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 1615 | } |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 1616 | } |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 1617 | if (Res != 0) |
| 1618 | AllocaForValue[V] = Res; |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 1619 | return Res; |
| 1620 | } |