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