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