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