Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 1 | //===- AddressSanitizer.cpp - memory error detector -----------------------===// |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file is a part of AddressSanitizer, an address sanity checker. |
| 10 | // Details of the algorithm: |
Hans Wennborg | 08b34a0 | 2017-11-13 23:47:58 +0000 | [diff] [blame] | 11 | // https://github.com/google/sanitizers/wiki/AddressSanitizerAlgorithm |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 15 | #include "llvm/Transforms/Instrumentation/AddressSanitizer.h" |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/ArrayRef.h" |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/DenseMap.h" |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/DepthFirstIterator.h" |
Florian Hahn | a1cc848 | 2018-06-12 11:16:56 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/SmallPtrSet.h" |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/SmallVector.h" |
Kostya Serebryany | d3d23be | 2013-10-16 14:06:14 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/Statistic.h" |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/StringExtras.h" |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/StringRef.h" |
Evgeniy Stepanov | 617232f | 2012-05-23 11:52:12 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/Triple.h" |
Vitaly Buka | 74443f0 | 2017-07-18 22:28:03 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/Twine.h" |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 26 | #include "llvm/Analysis/MemoryBuiltins.h" |
| 27 | #include "llvm/Analysis/TargetLibraryInfo.h" |
| 28 | #include "llvm/Analysis/ValueTracking.h" |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 29 | #include "llvm/BinaryFormat/MachO.h" |
Vitaly Buka | 74443f0 | 2017-07-18 22:28:03 +0000 | [diff] [blame] | 30 | #include "llvm/IR/Argument.h" |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 31 | #include "llvm/IR/Attributes.h" |
| 32 | #include "llvm/IR/BasicBlock.h" |
Chandler Carruth | 219b89b | 2014-03-04 11:01:28 +0000 | [diff] [blame] | 33 | #include "llvm/IR/CallSite.h" |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 34 | #include "llvm/IR/Comdat.h" |
| 35 | #include "llvm/IR/Constant.h" |
| 36 | #include "llvm/IR/Constants.h" |
Chandler Carruth | 12664a0 | 2014-03-06 00:22:06 +0000 | [diff] [blame] | 37 | #include "llvm/IR/DIBuilder.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 38 | #include "llvm/IR/DataLayout.h" |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 39 | #include "llvm/IR/DebugInfoMetadata.h" |
| 40 | #include "llvm/IR/DebugLoc.h" |
| 41 | #include "llvm/IR/DerivedTypes.h" |
Yury Gribov | 3ae427d | 2014-12-01 08:47:58 +0000 | [diff] [blame] | 42 | #include "llvm/IR/Dominators.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 43 | #include "llvm/IR/Function.h" |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 44 | #include "llvm/IR/GlobalAlias.h" |
| 45 | #include "llvm/IR/GlobalValue.h" |
| 46 | #include "llvm/IR/GlobalVariable.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 47 | #include "llvm/IR/IRBuilder.h" |
| 48 | #include "llvm/IR/InlineAsm.h" |
Chandler Carruth | 7da14f1 | 2014-03-06 03:23:41 +0000 | [diff] [blame] | 49 | #include "llvm/IR/InstVisitor.h" |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 50 | #include "llvm/IR/InstrTypes.h" |
| 51 | #include "llvm/IR/Instruction.h" |
| 52 | #include "llvm/IR/Instructions.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 53 | #include "llvm/IR/IntrinsicInst.h" |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 54 | #include "llvm/IR/Intrinsics.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 55 | #include "llvm/IR/LLVMContext.h" |
Kostya Serebryany | 714c67c | 2014-01-17 11:00:30 +0000 | [diff] [blame] | 56 | #include "llvm/IR/MDBuilder.h" |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 57 | #include "llvm/IR/Metadata.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 58 | #include "llvm/IR/Module.h" |
| 59 | #include "llvm/IR/Type.h" |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 60 | #include "llvm/IR/Use.h" |
| 61 | #include "llvm/IR/Value.h" |
Kuba Brecka | 1001bb5 | 2014-12-05 22:19:18 +0000 | [diff] [blame] | 62 | #include "llvm/MC/MCSectionMachO.h" |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 63 | #include "llvm/Pass.h" |
| 64 | #include "llvm/Support/Casting.h" |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 65 | #include "llvm/Support/CommandLine.h" |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 66 | #include "llvm/Support/Debug.h" |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 67 | #include "llvm/Support/ErrorHandling.h" |
| 68 | #include "llvm/Support/MathExtras.h" |
Vitaly Buka | 74443f0 | 2017-07-18 22:28:03 +0000 | [diff] [blame] | 69 | #include "llvm/Support/ScopedPrinter.h" |
Benjamin Kramer | 799003b | 2015-03-23 19:32:43 +0000 | [diff] [blame] | 70 | #include "llvm/Support/raw_ostream.h" |
Mehdi Amini | b550cb1 | 2016-04-18 09:17:29 +0000 | [diff] [blame] | 71 | #include "llvm/Transforms/Instrumentation.h" |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 72 | #include "llvm/Transforms/Utils/ASanStackFrameLayout.h" |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 73 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 74 | #include "llvm/Transforms/Utils/Local.h" |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 75 | #include "llvm/Transforms/Utils/ModuleUtils.h" |
Anna Zaks | 8ed1d81 | 2015-02-27 03:12:36 +0000 | [diff] [blame] | 76 | #include "llvm/Transforms/Utils/PromoteMemToReg.h" |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 77 | #include <algorithm> |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 78 | #include <cassert> |
| 79 | #include <cstddef> |
| 80 | #include <cstdint> |
Vitaly Buka | 3455b9b | 2016-08-20 18:34:39 +0000 | [diff] [blame] | 81 | #include <iomanip> |
Vitaly Buka | 793913c | 2016-08-29 18:17:21 +0000 | [diff] [blame] | 82 | #include <limits> |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 83 | #include <memory> |
Vitaly Buka | 3455b9b | 2016-08-20 18:34:39 +0000 | [diff] [blame] | 84 | #include <sstream> |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 85 | #include <string> |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 86 | #include <tuple> |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 87 | |
| 88 | using namespace llvm; |
| 89 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 90 | #define DEBUG_TYPE "asan" |
| 91 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 92 | static const uint64_t kDefaultShadowScale = 3; |
| 93 | static const uint64_t kDefaultShadowOffset32 = 1ULL << 29; |
| 94 | static const uint64_t kDefaultShadowOffset64 = 1ULL << 44; |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 95 | static const uint64_t kDynamicShadowSentinel = |
| 96 | std::numeric_limits<uint64_t>::max(); |
Walter Lee | 8f1545c | 2017-11-16 17:03:00 +0000 | [diff] [blame] | 97 | static const uint64_t kSmallX86_64ShadowOffsetBase = 0x7FFFFFFF; // < 2G. |
| 98 | static const uint64_t kSmallX86_64ShadowOffsetAlignMask = ~0xFFFULL; |
Alexander Potapenko | b9b73ef | 2015-06-19 12:19:07 +0000 | [diff] [blame] | 99 | static const uint64_t kLinuxKasan_ShadowOffset64 = 0xdffffc0000000000; |
Bill Seurer | 957a076 | 2017-12-07 22:53:33 +0000 | [diff] [blame] | 100 | static const uint64_t kPPC64_ShadowOffset64 = 1ULL << 44; |
Marcin Koscielnicki | 57290f9 | 2016-04-30 09:57:34 +0000 | [diff] [blame] | 101 | static const uint64_t kSystemZ_ShadowOffset64 = 1ULL << 52; |
Kostya Serebryany | c5bd981 | 2014-11-04 19:46:15 +0000 | [diff] [blame] | 102 | static const uint64_t kMIPS32_ShadowOffset32 = 0x0aaa0000; |
Kumar Sukhani | 9559a5c | 2015-01-31 10:43:18 +0000 | [diff] [blame] | 103 | static const uint64_t kMIPS64_ShadowOffset64 = 1ULL << 37; |
Renato Golin | af21372 | 2015-02-03 11:20:45 +0000 | [diff] [blame] | 104 | static const uint64_t kAArch64_ShadowOffset64 = 1ULL << 36; |
Kostya Serebryany | 8baa386 | 2014-02-10 07:37:04 +0000 | [diff] [blame] | 105 | static const uint64_t kFreeBSD_ShadowOffset32 = 1ULL << 30; |
| 106 | static const uint64_t kFreeBSD_ShadowOffset64 = 1ULL << 46; |
Kamil Rytarowski | 02c432a | 2018-05-11 00:58:01 +0000 | [diff] [blame] | 107 | static const uint64_t kNetBSD_ShadowOffset32 = 1ULL << 30; |
Kamil Rytarowski | a9f404f8 | 2017-08-28 22:13:52 +0000 | [diff] [blame] | 108 | static const uint64_t kNetBSD_ShadowOffset64 = 1ULL << 46; |
Kamil Rytarowski | 15ae738 | 2018-12-15 16:32:41 +0000 | [diff] [blame] | 109 | static const uint64_t kNetBSDKasan_ShadowOffset64 = 0xdfff900000000000; |
Filipe Cabecinhas | 33dd486 | 2017-02-23 17:10:28 +0000 | [diff] [blame] | 110 | static const uint64_t kPS4CPU_ShadowOffset64 = 1ULL << 40; |
Timur Iskhodzhanov | b4b6b74 | 2015-01-22 12:24:21 +0000 | [diff] [blame] | 111 | static const uint64_t kWindowsShadowOffset32 = 3ULL << 28; |
Guanzhong Chen | 9aad997 | 2019-06-26 20:16:14 +0000 | [diff] [blame] | 112 | static const uint64_t kEmscriptenShadowOffset = 0; |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 113 | |
Walter Lee | cdbb207 | 2018-05-18 04:10:38 +0000 | [diff] [blame] | 114 | static const uint64_t kMyriadShadowScale = 5; |
| 115 | static const uint64_t kMyriadMemoryOffset32 = 0x80000000ULL; |
| 116 | static const uint64_t kMyriadMemorySize32 = 0x20000000ULL; |
| 117 | static const uint64_t kMyriadTagShift = 29; |
| 118 | static const uint64_t kMyriadDDRTag = 4; |
| 119 | static const uint64_t kMyriadCacheBitMask32 = 0x40000000ULL; |
| 120 | |
Etienne Bergeron | 0ca0568 | 2016-09-30 17:46:32 +0000 | [diff] [blame] | 121 | // The shadow memory space is dynamically allocated. |
| 122 | static const uint64_t kWindowsShadowOffset64 = kDynamicShadowSentinel; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 123 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 124 | static const size_t kMinStackMallocSize = 1 << 6; // 64B |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 125 | static const size_t kMaxStackMallocSize = 1 << 16; // 64K |
| 126 | static const uintptr_t kCurrentStackFrameMagic = 0x41B58AB3; |
| 127 | static const uintptr_t kRetiredStackFrameMagic = 0x45E0360E; |
| 128 | |
Craig Topper | d3a34f8 | 2013-07-16 01:17:10 +0000 | [diff] [blame] | 129 | static const char *const kAsanModuleCtorName = "asan.module_ctor"; |
| 130 | static const char *const kAsanModuleDtorName = "asan.module_dtor"; |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 131 | static const uint64_t kAsanCtorAndDtorPriority = 1; |
Guanzhong Chen | b3292a8 | 2019-08-06 21:52:58 +0000 | [diff] [blame] | 132 | // On Emscripten, the system needs more than one priorities for constructors. |
| 133 | static const uint64_t kAsanEmscriptenCtorAndDtorPriority = 50; |
Craig Topper | d3a34f8 | 2013-07-16 01:17:10 +0000 | [diff] [blame] | 134 | static const char *const kAsanReportErrorTemplate = "__asan_report_"; |
Craig Topper | d3a34f8 | 2013-07-16 01:17:10 +0000 | [diff] [blame] | 135 | static const char *const kAsanRegisterGlobalsName = "__asan_register_globals"; |
Alexey Samsonov | f52b717 | 2013-08-05 13:19:49 +0000 | [diff] [blame] | 136 | static const char *const kAsanUnregisterGlobalsName = |
| 137 | "__asan_unregister_globals"; |
Ryan Govostes | 653f9d0 | 2016-03-28 20:28:57 +0000 | [diff] [blame] | 138 | static const char *const kAsanRegisterImageGlobalsName = |
| 139 | "__asan_register_image_globals"; |
| 140 | static const char *const kAsanUnregisterImageGlobalsName = |
| 141 | "__asan_unregister_image_globals"; |
Evgeniy Stepanov | 964f466 | 2017-04-27 20:27:27 +0000 | [diff] [blame] | 142 | static const char *const kAsanRegisterElfGlobalsName = |
| 143 | "__asan_register_elf_globals"; |
| 144 | static const char *const kAsanUnregisterElfGlobalsName = |
| 145 | "__asan_unregister_elf_globals"; |
Craig Topper | d3a34f8 | 2013-07-16 01:17:10 +0000 | [diff] [blame] | 146 | static const char *const kAsanPoisonGlobalsName = "__asan_before_dynamic_init"; |
| 147 | static const char *const kAsanUnpoisonGlobalsName = "__asan_after_dynamic_init"; |
Kuba Brecka | 45dbffd | 2015-07-23 10:54:06 +0000 | [diff] [blame] | 148 | static const char *const kAsanInitName = "__asan_init"; |
Evgeniy Stepanov | 8e7018d | 2017-11-20 17:41:57 +0000 | [diff] [blame] | 149 | static const char *const kAsanVersionCheckNamePrefix = |
| 150 | "__asan_version_mismatch_check_v"; |
Kostya Serebryany | 796f655 | 2014-02-27 12:45:36 +0000 | [diff] [blame] | 151 | static const char *const kAsanPtrCmp = "__sanitizer_ptr_cmp"; |
| 152 | static const char *const kAsanPtrSub = "__sanitizer_ptr_sub"; |
Craig Topper | d3a34f8 | 2013-07-16 01:17:10 +0000 | [diff] [blame] | 153 | static const char *const kAsanHandleNoReturnName = "__asan_handle_no_return"; |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 154 | static const int kMaxAsanStackMallocSizeClass = 10; |
Kostya Serebryany | 6805de5 | 2013-09-10 13:16:56 +0000 | [diff] [blame] | 155 | static const char *const kAsanStackMallocNameTemplate = "__asan_stack_malloc_"; |
| 156 | static const char *const kAsanStackFreeNameTemplate = "__asan_stack_free_"; |
Peter Collingbourne | 4a653fa | 2018-07-18 22:23:14 +0000 | [diff] [blame] | 157 | static const char *const kAsanGenPrefix = "___asan_gen_"; |
Maxim Ostapenko | b1e3f60 | 2016-02-08 08:30:57 +0000 | [diff] [blame] | 158 | static const char *const kODRGenPrefix = "__odr_asan_gen_"; |
Kostya Serebryany | cb45b12 | 2014-11-19 00:22:58 +0000 | [diff] [blame] | 159 | static const char *const kSanCovGenPrefix = "__sancov_gen_"; |
Vitaly Buka | 3455b9b | 2016-08-20 18:34:39 +0000 | [diff] [blame] | 160 | static const char *const kAsanSetShadowPrefix = "__asan_set_shadow_"; |
Craig Topper | d3a34f8 | 2013-07-16 01:17:10 +0000 | [diff] [blame] | 161 | static const char *const kAsanPoisonStackMemoryName = |
| 162 | "__asan_poison_stack_memory"; |
| 163 | static const char *const kAsanUnpoisonStackMemoryName = |
Alexey Samsonov | 261177a | 2012-12-04 01:34:23 +0000 | [diff] [blame] | 164 | "__asan_unpoison_stack_memory"; |
Evgeniy Stepanov | 964f466 | 2017-04-27 20:27:27 +0000 | [diff] [blame] | 165 | |
| 166 | // ASan version script has __asan_* wildcard. Triple underscore prevents a |
| 167 | // linker (gold) warning about attempting to export a local symbol. |
Ryan Govostes | 653f9d0 | 2016-03-28 20:28:57 +0000 | [diff] [blame] | 168 | static const char *const kAsanGlobalsRegisteredFlagName = |
Evgeniy Stepanov | 964f466 | 2017-04-27 20:27:27 +0000 | [diff] [blame] | 169 | "___asan_globals_registered"; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 170 | |
Vitaly Buka | 7b8ed4f | 2016-06-02 00:06:42 +0000 | [diff] [blame] | 171 | static const char *const kAsanOptionDetectUseAfterReturn = |
Kostya Serebryany | f322382 | 2013-09-18 14:07:14 +0000 | [diff] [blame] | 172 | "__asan_option_detect_stack_use_after_return"; |
| 173 | |
Etienne Bergeron | 0ca0568 | 2016-09-30 17:46:32 +0000 | [diff] [blame] | 174 | static const char *const kAsanShadowMemoryDynamicAddress = |
| 175 | "__asan_shadow_memory_dynamic_address"; |
| 176 | |
Alexander Potapenko | f90556e | 2015-06-12 11:27:06 +0000 | [diff] [blame] | 177 | static const char *const kAsanAllocaPoison = "__asan_alloca_poison"; |
| 178 | static const char *const kAsanAllocasUnpoison = "__asan_allocas_unpoison"; |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 179 | |
Kostya Serebryany | 874dae6 | 2012-07-16 16:15:40 +0000 | [diff] [blame] | 180 | // Accesses sizes are powers of two: 1, 2, 4, 8, 16. |
| 181 | static const size_t kNumberOfAccessSizes = 5; |
| 182 | |
Yury Gribov | 55441bb | 2014-11-21 10:29:50 +0000 | [diff] [blame] | 183 | static const unsigned kAllocaRzSize = 32; |
Yury Gribov | 55441bb | 2014-11-21 10:29:50 +0000 | [diff] [blame] | 184 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 185 | // Command-line flags. |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 186 | |
Alexander Potapenko | b9b73ef | 2015-06-19 12:19:07 +0000 | [diff] [blame] | 187 | static cl::opt<bool> ClEnableKasan( |
| 188 | "asan-kernel", cl::desc("Enable KernelAddressSanitizer instrumentation"), |
| 189 | cl::Hidden, cl::init(false)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 190 | |
Yury Gribov | d773198 | 2015-11-11 10:36:49 +0000 | [diff] [blame] | 191 | static cl::opt<bool> ClRecover( |
| 192 | "asan-recover", |
| 193 | cl::desc("Enable recovery mode (continue-after-error)."), |
| 194 | cl::Hidden, cl::init(false)); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 195 | |
Julian Lettner | 3ae9b9d | 2019-08-28 20:40:55 +0000 | [diff] [blame] | 196 | static cl::opt<bool> ClInsertVersionCheck( |
| 197 | "asan-guard-against-version-mismatch", |
| 198 | cl::desc("Guard against compiler/runtime version mismatch."), |
| 199 | cl::Hidden, cl::init(true)); |
| 200 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 201 | // This flag may need to be replaced with -f[no-]asan-reads. |
| 202 | static cl::opt<bool> ClInstrumentReads("asan-instrument-reads", |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 203 | cl::desc("instrument read instructions"), |
| 204 | cl::Hidden, cl::init(true)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 205 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 206 | static cl::opt<bool> ClInstrumentWrites( |
| 207 | "asan-instrument-writes", cl::desc("instrument write instructions"), |
| 208 | cl::Hidden, cl::init(true)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 209 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 210 | static cl::opt<bool> ClInstrumentAtomics( |
| 211 | "asan-instrument-atomics", |
| 212 | cl::desc("instrument atomic instructions (rmw, cmpxchg)"), cl::Hidden, |
| 213 | cl::init(true)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 214 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 215 | static cl::opt<bool> ClAlwaysSlowPath( |
| 216 | "asan-always-slow-path", |
| 217 | cl::desc("use instrumentation with slow path for all accesses"), cl::Hidden, |
| 218 | cl::init(false)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 219 | |
Etienne Bergeron | 0ca0568 | 2016-09-30 17:46:32 +0000 | [diff] [blame] | 220 | static cl::opt<bool> ClForceDynamicShadow( |
| 221 | "asan-force-dynamic-shadow", |
| 222 | cl::desc("Load shadow address into a local variable for each function"), |
| 223 | cl::Hidden, cl::init(false)); |
| 224 | |
Evgeniy Stepanov | 8e7018d | 2017-11-20 17:41:57 +0000 | [diff] [blame] | 225 | static cl::opt<bool> |
| 226 | ClWithIfunc("asan-with-ifunc", |
| 227 | cl::desc("Access dynamic shadow through an ifunc global on " |
| 228 | "platforms that support this"), |
| 229 | cl::Hidden, cl::init(true)); |
| 230 | |
| 231 | static cl::opt<bool> ClWithIfuncSuppressRemat( |
| 232 | "asan-with-ifunc-suppress-remat", |
| 233 | cl::desc("Suppress rematerialization of dynamic shadow address by passing " |
| 234 | "it through inline asm in prologue."), |
| 235 | cl::Hidden, cl::init(true)); |
| 236 | |
Kostya Serebryany | 874dae6 | 2012-07-16 16:15:40 +0000 | [diff] [blame] | 237 | // This flag limits the number of instructions to be instrumented |
Kostya Serebryany | c387ca7 | 2012-06-28 09:34:41 +0000 | [diff] [blame] | 238 | // in any given BB. Normally, this should be set to unlimited (INT_MAX), |
| 239 | // but due to http://llvm.org/bugs/show_bug.cgi?id=12652 we temporary |
| 240 | // set it to 10000. |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 241 | static cl::opt<int> ClMaxInsnsToInstrumentPerBB( |
| 242 | "asan-max-ins-per-bb", cl::init(10000), |
| 243 | cl::desc("maximal number of instructions to instrument in any given BB"), |
| 244 | cl::Hidden); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 245 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 246 | // This flag may need to be replaced with -f[no]asan-stack. |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 247 | static cl::opt<bool> ClStack("asan-stack", cl::desc("Handle stack memory"), |
| 248 | cl::Hidden, cl::init(true)); |
Vitaly Buka | 1f9e135 | 2016-08-20 20:23:50 +0000 | [diff] [blame] | 249 | static cl::opt<uint32_t> ClMaxInlinePoisoningSize( |
| 250 | "asan-max-inline-poisoning-size", |
| 251 | cl::desc( |
| 252 | "Inline shadow poisoning for blocks up to the given size in bytes."), |
| 253 | cl::Hidden, cl::init(64)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 254 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 255 | static cl::opt<bool> ClUseAfterReturn("asan-use-after-return", |
Mike Aizatsky | 243b71f | 2016-04-21 22:00:13 +0000 | [diff] [blame] | 256 | cl::desc("Check stack-use-after-return"), |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 257 | cl::Hidden, cl::init(true)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 258 | |
Vitaly Buka | 74443f0 | 2017-07-18 22:28:03 +0000 | [diff] [blame] | 259 | static cl::opt<bool> ClRedzoneByvalArgs("asan-redzone-byval-args", |
| 260 | cl::desc("Create redzones for byval " |
| 261 | "arguments (extra copy " |
| 262 | "required)"), cl::Hidden, |
| 263 | cl::init(true)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 264 | |
Kostya Serebryany | a83bfea | 2016-04-20 20:02:58 +0000 | [diff] [blame] | 265 | static cl::opt<bool> ClUseAfterScope("asan-use-after-scope", |
| 266 | cl::desc("Check stack-use-after-scope"), |
| 267 | cl::Hidden, cl::init(false)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 268 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 269 | // This flag may need to be replaced with -f[no]asan-globals. |
| 270 | static cl::opt<bool> ClGlobals("asan-globals", |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 271 | cl::desc("Handle global objects"), cl::Hidden, |
| 272 | cl::init(true)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 273 | |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 274 | static cl::opt<bool> ClInitializers("asan-initialization-order", |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 275 | cl::desc("Handle C++ initializer order"), |
| 276 | cl::Hidden, cl::init(true)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 277 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 278 | static cl::opt<bool> ClInvalidPointerPairs( |
| 279 | "asan-detect-invalid-pointer-pair", |
| 280 | cl::desc("Instrument <, <=, >, >=, - with pointer operands"), cl::Hidden, |
| 281 | cl::init(false)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 282 | |
Pierre Gousseau | a833c2b | 2019-03-28 10:51:24 +0000 | [diff] [blame] | 283 | static cl::opt<bool> ClInvalidPointerCmp( |
| 284 | "asan-detect-invalid-pointer-cmp", |
| 285 | cl::desc("Instrument <, <=, >, >= with pointer operands"), cl::Hidden, |
| 286 | cl::init(false)); |
| 287 | |
| 288 | static cl::opt<bool> ClInvalidPointerSub( |
| 289 | "asan-detect-invalid-pointer-sub", |
| 290 | cl::desc("Instrument - operations with pointer operands"), cl::Hidden, |
| 291 | cl::init(false)); |
| 292 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 293 | static cl::opt<unsigned> ClRealignStack( |
| 294 | "asan-realign-stack", |
| 295 | cl::desc("Realign stack to the value of this flag (power of two)"), |
| 296 | cl::Hidden, cl::init(32)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 297 | |
Kostya Serebryany | 0c02d26 | 2014-04-16 12:12:19 +0000 | [diff] [blame] | 298 | static cl::opt<int> ClInstrumentationWithCallsThreshold( |
| 299 | "asan-instrumentation-with-call-threshold", |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 300 | cl::desc( |
| 301 | "If the function being instrumented contains more than " |
| 302 | "this number of memory accesses, use callbacks instead of " |
| 303 | "inline checks (-1 means never use callbacks)."), |
| 304 | cl::Hidden, cl::init(7000)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 305 | |
Kostya Serebryany | 0c02d26 | 2014-04-16 12:12:19 +0000 | [diff] [blame] | 306 | static cl::opt<std::string> ClMemoryAccessCallbackPrefix( |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 307 | "asan-memory-access-callback-prefix", |
| 308 | cl::desc("Prefix for memory access callbacks"), cl::Hidden, |
| 309 | cl::init("__asan_")); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 310 | |
Vitaly Buka | 5b4f121 | 2016-08-20 17:22:27 +0000 | [diff] [blame] | 311 | static cl::opt<bool> |
| 312 | ClInstrumentDynamicAllocas("asan-instrument-dynamic-allocas", |
| 313 | cl::desc("instrument dynamic allocas"), |
| 314 | cl::Hidden, cl::init(true)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 315 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 316 | static cl::opt<bool> ClSkipPromotableAllocas( |
| 317 | "asan-skip-promotable-allocas", |
| 318 | cl::desc("Do not instrument promotable allocas"), cl::Hidden, |
| 319 | cl::init(true)); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 320 | |
| 321 | // These flags allow to change the shadow mapping. |
| 322 | // The shadow mapping looks like |
Ryan Govostes | 3f37df0 | 2016-05-06 10:25:22 +0000 | [diff] [blame] | 323 | // Shadow = (Mem >> scale) + offset |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 324 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 325 | static cl::opt<int> ClMappingScale("asan-mapping-scale", |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 326 | cl::desc("scale of asan shadow mapping"), |
| 327 | cl::Hidden, cl::init(0)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 328 | |
Fangrui Song | b5f3984 | 2019-04-24 02:40:20 +0000 | [diff] [blame] | 329 | static cl::opt<uint64_t> |
| 330 | ClMappingOffset("asan-mapping-offset", |
| 331 | cl::desc("offset of asan shadow mapping [EXPERIMENTAL]"), |
| 332 | cl::Hidden, cl::init(0)); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 333 | |
| 334 | // Optimization flags. Not user visible, used mostly for testing |
| 335 | // and benchmarking the tool. |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 336 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 337 | static cl::opt<bool> ClOpt("asan-opt", cl::desc("Optimize instrumentation"), |
| 338 | cl::Hidden, cl::init(true)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 339 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 340 | static cl::opt<bool> ClOptSameTemp( |
| 341 | "asan-opt-same-temp", cl::desc("Instrument the same temp just once"), |
| 342 | cl::Hidden, cl::init(true)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 343 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 344 | static cl::opt<bool> ClOptGlobals("asan-opt-globals", |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 345 | cl::desc("Don't instrument scalar globals"), |
| 346 | cl::Hidden, cl::init(true)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 347 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 348 | static cl::opt<bool> ClOptStack( |
| 349 | "asan-opt-stack", cl::desc("Don't instrument scalar stack variables"), |
| 350 | cl::Hidden, cl::init(false)); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 351 | |
Alexey Samsonov | 4b7f413 | 2014-12-11 21:53:03 +0000 | [diff] [blame] | 352 | static cl::opt<bool> ClDynamicAllocaStack( |
| 353 | "asan-stack-dynamic-alloca", |
| 354 | cl::desc("Use dynamic alloca to represent stack variables"), cl::Hidden, |
Alexey Samsonov | 19763c4 | 2015-02-05 19:39:20 +0000 | [diff] [blame] | 355 | cl::init(true)); |
Alexey Samsonov | 4b7f413 | 2014-12-11 21:53:03 +0000 | [diff] [blame] | 356 | |
Dmitry Vyukov | 618d580 | 2015-03-17 16:59:19 +0000 | [diff] [blame] | 357 | static cl::opt<uint32_t> ClForceExperiment( |
| 358 | "asan-force-experiment", |
| 359 | cl::desc("Force optimization experiment (for testing)"), cl::Hidden, |
| 360 | cl::init(0)); |
| 361 | |
Maxim Ostapenko | b1e3f60 | 2016-02-08 08:30:57 +0000 | [diff] [blame] | 362 | static cl::opt<bool> |
Vitaly Buka | d6bab09 | 2018-12-04 23:17:41 +0000 | [diff] [blame] | 363 | ClUsePrivateAlias("asan-use-private-alias", |
| 364 | cl::desc("Use private aliases for global variables"), |
| 365 | cl::Hidden, cl::init(false)); |
| 366 | |
| 367 | static cl::opt<bool> |
| 368 | ClUseOdrIndicator("asan-use-odr-indicator", |
| 369 | cl::desc("Use odr indicators to improve ODR reporting"), |
| 370 | cl::Hidden, cl::init(false)); |
Maxim Ostapenko | b1e3f60 | 2016-02-08 08:30:57 +0000 | [diff] [blame] | 371 | |
Ryan Govostes | e51401b | 2016-07-05 21:53:08 +0000 | [diff] [blame] | 372 | static cl::opt<bool> |
Evgeniy Stepanov | 9e53608 | 2017-04-24 19:34:13 +0000 | [diff] [blame] | 373 | ClUseGlobalsGC("asan-globals-live-support", |
| 374 | cl::desc("Use linker features to support dead " |
| 375 | "code stripping of globals"), |
| 376 | cl::Hidden, cl::init(true)); |
Ryan Govostes | e51401b | 2016-07-05 21:53:08 +0000 | [diff] [blame] | 377 | |
Evgeniy Stepanov | 716f0ff22 | 2017-04-27 20:27:23 +0000 | [diff] [blame] | 378 | // This is on by default even though there is a bug in gold: |
| 379 | // https://sourceware.org/bugzilla/show_bug.cgi?id=19002 |
| 380 | static cl::opt<bool> |
| 381 | ClWithComdat("asan-with-comdat", |
| 382 | cl::desc("Place ASan constructors in comdat sections"), |
| 383 | cl::Hidden, cl::init(true)); |
| 384 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 385 | // Debug flags. |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 386 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 387 | static cl::opt<int> ClDebug("asan-debug", cl::desc("debug"), cl::Hidden, |
| 388 | cl::init(0)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 389 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 390 | static cl::opt<int> ClDebugStack("asan-debug-stack", cl::desc("debug stack"), |
| 391 | cl::Hidden, cl::init(0)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 392 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 393 | static cl::opt<std::string> ClDebugFunc("asan-debug-func", cl::Hidden, |
| 394 | cl::desc("Debug func")); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 395 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 396 | static cl::opt<int> ClDebugMin("asan-debug-min", cl::desc("Debug min inst"), |
| 397 | cl::Hidden, cl::init(-1)); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 398 | |
Etienne Bergeron | 7f0e315 | 2016-09-22 14:57:24 +0000 | [diff] [blame] | 399 | static cl::opt<int> ClDebugMax("asan-debug-max", cl::desc("Debug max inst"), |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 400 | cl::Hidden, cl::init(-1)); |
| 401 | |
Kostya Serebryany | d3d23be | 2013-10-16 14:06:14 +0000 | [diff] [blame] | 402 | STATISTIC(NumInstrumentedReads, "Number of instrumented reads"); |
| 403 | STATISTIC(NumInstrumentedWrites, "Number of instrumented writes"); |
Kostya Serebryany | d3d23be | 2013-10-16 14:06:14 +0000 | [diff] [blame] | 404 | STATISTIC(NumOptimizedAccessesToGlobalVar, |
| 405 | "Number of optimized accesses to global vars"); |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 406 | STATISTIC(NumOptimizedAccessesToStackVar, |
| 407 | "Number of optimized accesses to stack vars"); |
Kostya Serebryany | d3d23be | 2013-10-16 14:06:14 +0000 | [diff] [blame] | 408 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 409 | namespace { |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 410 | |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 411 | /// This struct defines the shadow mapping using the rule: |
Kostya Serebryany | 4766fe6 | 2013-01-23 12:54:55 +0000 | [diff] [blame] | 412 | /// shadow = (mem >> Scale) ADD-or-OR Offset. |
Evgeniy Stepanov | 8e7018d | 2017-11-20 17:41:57 +0000 | [diff] [blame] | 413 | /// If InGlobal is true, then |
| 414 | /// extern char __asan_shadow[]; |
| 415 | /// shadow = (mem >> Scale) + &__asan_shadow |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 416 | struct ShadowMapping { |
| 417 | int Scale; |
| 418 | uint64_t Offset; |
Kostya Serebryany | 4766fe6 | 2013-01-23 12:54:55 +0000 | [diff] [blame] | 419 | bool OrShadowOffset; |
Evgeniy Stepanov | 8e7018d | 2017-11-20 17:41:57 +0000 | [diff] [blame] | 420 | bool InGlobal; |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 421 | }; |
| 422 | |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 423 | } // end anonymous namespace |
| 424 | |
Alexander Potapenko | b9b73ef | 2015-06-19 12:19:07 +0000 | [diff] [blame] | 425 | static ShadowMapping getShadowMapping(Triple &TargetTriple, int LongSize, |
| 426 | bool IsKasan) { |
Evgeniy Stepanov | 5fe279e | 2015-10-08 21:21:24 +0000 | [diff] [blame] | 427 | bool IsAndroid = TargetTriple.isAndroid(); |
Anna Zaks | 3b50e70 | 2016-02-02 22:05:07 +0000 | [diff] [blame] | 428 | bool IsIOS = TargetTriple.isiOS() || TargetTriple.isWatchOS(); |
Simon Pilgrim | a279410 | 2014-11-22 19:12:10 +0000 | [diff] [blame] | 429 | bool IsFreeBSD = TargetTriple.isOSFreeBSD(); |
Kamil Rytarowski | a9f404f8 | 2017-08-28 22:13:52 +0000 | [diff] [blame] | 430 | bool IsNetBSD = TargetTriple.isOSNetBSD(); |
Filipe Cabecinhas | 33dd486 | 2017-02-23 17:10:28 +0000 | [diff] [blame] | 431 | bool IsPS4CPU = TargetTriple.isPS4CPU(); |
Simon Pilgrim | a279410 | 2014-11-22 19:12:10 +0000 | [diff] [blame] | 432 | bool IsLinux = TargetTriple.isOSLinux(); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 433 | bool IsPPC64 = TargetTriple.getArch() == Triple::ppc64 || |
| 434 | TargetTriple.getArch() == Triple::ppc64le; |
| 435 | bool IsSystemZ = TargetTriple.getArch() == Triple::systemz; |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 436 | bool IsX86_64 = TargetTriple.getArch() == Triple::x86_64; |
Alexander Richardson | 85e200e | 2018-06-25 16:49:20 +0000 | [diff] [blame] | 437 | bool IsMIPS32 = TargetTriple.isMIPS32(); |
| 438 | bool IsMIPS64 = TargetTriple.isMIPS64(); |
Evgeniy Stepanov | 8e7018d | 2017-11-20 17:41:57 +0000 | [diff] [blame] | 439 | bool IsArmOrThumb = TargetTriple.isARM() || TargetTriple.isThumb(); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 440 | bool IsAArch64 = TargetTriple.getArch() == Triple::aarch64; |
Timur Iskhodzhanov | 00ede84 | 2015-01-12 17:38:58 +0000 | [diff] [blame] | 441 | bool IsWindows = TargetTriple.isOSWindows(); |
Petr Hosek | 6f16857 | 2017-02-27 22:49:37 +0000 | [diff] [blame] | 442 | bool IsFuchsia = TargetTriple.isOSFuchsia(); |
Walter Lee | cdbb207 | 2018-05-18 04:10:38 +0000 | [diff] [blame] | 443 | bool IsMyriad = TargetTriple.getVendor() == llvm::Triple::Myriad; |
Guanzhong Chen | 9aad997 | 2019-06-26 20:16:14 +0000 | [diff] [blame] | 444 | bool IsEmscripten = TargetTriple.isOSEmscripten(); |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 445 | |
| 446 | ShadowMapping Mapping; |
| 447 | |
Walter Lee | cdbb207 | 2018-05-18 04:10:38 +0000 | [diff] [blame] | 448 | Mapping.Scale = IsMyriad ? kMyriadShadowScale : kDefaultShadowScale; |
Walter Lee | 8f1545c | 2017-11-16 17:03:00 +0000 | [diff] [blame] | 449 | if (ClMappingScale.getNumOccurrences() > 0) { |
| 450 | Mapping.Scale = ClMappingScale; |
| 451 | } |
| 452 | |
Evgeniy Stepanov | 4d81f86 | 2015-07-29 18:22:25 +0000 | [diff] [blame] | 453 | if (LongSize == 32) { |
Evgeniy Stepanov | 4d81f86 | 2015-07-29 18:22:25 +0000 | [diff] [blame] | 454 | if (IsAndroid) |
Evgeniy Stepanov | 8e7018d | 2017-11-20 17:41:57 +0000 | [diff] [blame] | 455 | Mapping.Offset = kDynamicShadowSentinel; |
Evgeniy Stepanov | 4d81f86 | 2015-07-29 18:22:25 +0000 | [diff] [blame] | 456 | else if (IsMIPS32) |
Kostya Serebryany | cc92c79 | 2014-02-24 13:40:24 +0000 | [diff] [blame] | 457 | Mapping.Offset = kMIPS32_ShadowOffset32; |
| 458 | else if (IsFreeBSD) |
| 459 | Mapping.Offset = kFreeBSD_ShadowOffset32; |
Kamil Rytarowski | 02c432a | 2018-05-11 00:58:01 +0000 | [diff] [blame] | 460 | else if (IsNetBSD) |
| 461 | Mapping.Offset = kNetBSD_ShadowOffset32; |
Alexander Potapenko | a51e483 | 2014-04-23 17:14:45 +0000 | [diff] [blame] | 462 | else if (IsIOS) |
Julian Lettner | 19c4d66 | 2019-06-21 21:01:39 +0000 | [diff] [blame] | 463 | Mapping.Offset = kDynamicShadowSentinel; |
Timur Iskhodzhanov | 00ede84 | 2015-01-12 17:38:58 +0000 | [diff] [blame] | 464 | else if (IsWindows) |
| 465 | Mapping.Offset = kWindowsShadowOffset32; |
Guanzhong Chen | 9aad997 | 2019-06-26 20:16:14 +0000 | [diff] [blame] | 466 | else if (IsEmscripten) |
| 467 | Mapping.Offset = kEmscriptenShadowOffset; |
Walter Lee | cdbb207 | 2018-05-18 04:10:38 +0000 | [diff] [blame] | 468 | else if (IsMyriad) { |
| 469 | uint64_t ShadowOffset = (kMyriadMemoryOffset32 + kMyriadMemorySize32 - |
| 470 | (kMyriadMemorySize32 >> Mapping.Scale)); |
| 471 | Mapping.Offset = ShadowOffset - (kMyriadMemoryOffset32 >> Mapping.Scale); |
| 472 | } |
Kostya Serebryany | cc92c79 | 2014-02-24 13:40:24 +0000 | [diff] [blame] | 473 | else |
| 474 | Mapping.Offset = kDefaultShadowOffset32; |
| 475 | } else { // LongSize == 64 |
Petr Hosek | 6f16857 | 2017-02-27 22:49:37 +0000 | [diff] [blame] | 476 | // Fuchsia is always PIE, which means that the beginning of the address |
| 477 | // space is always available. |
| 478 | if (IsFuchsia) |
| 479 | Mapping.Offset = 0; |
| 480 | else if (IsPPC64) |
Kostya Serebryany | cc92c79 | 2014-02-24 13:40:24 +0000 | [diff] [blame] | 481 | Mapping.Offset = kPPC64_ShadowOffset64; |
Marcin Koscielnicki | 57290f9 | 2016-04-30 09:57:34 +0000 | [diff] [blame] | 482 | else if (IsSystemZ) |
| 483 | Mapping.Offset = kSystemZ_ShadowOffset64; |
John Baldwin | c5d7e04 | 2018-08-01 22:51:13 +0000 | [diff] [blame] | 484 | else if (IsFreeBSD && !IsMIPS64) |
Kostya Serebryany | cc92c79 | 2014-02-24 13:40:24 +0000 | [diff] [blame] | 485 | Mapping.Offset = kFreeBSD_ShadowOffset64; |
Kamil Rytarowski | 15ae738 | 2018-12-15 16:32:41 +0000 | [diff] [blame] | 486 | else if (IsNetBSD) { |
| 487 | if (IsKasan) |
| 488 | Mapping.Offset = kNetBSDKasan_ShadowOffset64; |
| 489 | else |
| 490 | Mapping.Offset = kNetBSD_ShadowOffset64; |
| 491 | } else if (IsPS4CPU) |
Filipe Cabecinhas | 33dd486 | 2017-02-23 17:10:28 +0000 | [diff] [blame] | 492 | Mapping.Offset = kPS4CPU_ShadowOffset64; |
Alexander Potapenko | b9b73ef | 2015-06-19 12:19:07 +0000 | [diff] [blame] | 493 | else if (IsLinux && IsX86_64) { |
| 494 | if (IsKasan) |
| 495 | Mapping.Offset = kLinuxKasan_ShadowOffset64; |
| 496 | else |
Walter Lee | 8f1545c | 2017-11-16 17:03:00 +0000 | [diff] [blame] | 497 | Mapping.Offset = (kSmallX86_64ShadowOffsetBase & |
| 498 | (kSmallX86_64ShadowOffsetAlignMask << Mapping.Scale)); |
Etienne Bergeron | 70684f9 | 2016-06-21 15:07:29 +0000 | [diff] [blame] | 499 | } else if (IsWindows && IsX86_64) { |
| 500 | Mapping.Offset = kWindowsShadowOffset64; |
Alexander Potapenko | b9b73ef | 2015-06-19 12:19:07 +0000 | [diff] [blame] | 501 | } else if (IsMIPS64) |
Kostya Serebryany | 231bd08 | 2014-11-11 23:02:57 +0000 | [diff] [blame] | 502 | Mapping.Offset = kMIPS64_ShadowOffset64; |
Anna Zaks | 3b50e70 | 2016-02-02 22:05:07 +0000 | [diff] [blame] | 503 | else if (IsIOS) |
Julian Lettner | 19c4d66 | 2019-06-21 21:01:39 +0000 | [diff] [blame] | 504 | Mapping.Offset = kDynamicShadowSentinel; |
Renato Golin | af21372 | 2015-02-03 11:20:45 +0000 | [diff] [blame] | 505 | else if (IsAArch64) |
| 506 | Mapping.Offset = kAArch64_ShadowOffset64; |
Kostya Serebryany | cc92c79 | 2014-02-24 13:40:24 +0000 | [diff] [blame] | 507 | else |
| 508 | Mapping.Offset = kDefaultShadowOffset64; |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 509 | } |
| 510 | |
Etienne Bergeron | 0ca0568 | 2016-09-30 17:46:32 +0000 | [diff] [blame] | 511 | if (ClForceDynamicShadow) { |
| 512 | Mapping.Offset = kDynamicShadowSentinel; |
| 513 | } |
| 514 | |
Ryan Govostes | 3f37df0 | 2016-05-06 10:25:22 +0000 | [diff] [blame] | 515 | if (ClMappingOffset.getNumOccurrences() > 0) { |
| 516 | Mapping.Offset = ClMappingOffset; |
| 517 | } |
| 518 | |
Kostya Serebryany | cc92c79 | 2014-02-24 13:40:24 +0000 | [diff] [blame] | 519 | // OR-ing shadow offset if more efficient (at least on x86) if the offset |
| 520 | // is a power of two, but on ppc64 we have to use add since the shadow |
Marcin Koscielnicki | 57290f9 | 2016-04-30 09:57:34 +0000 | [diff] [blame] | 521 | // offset is not necessary 1/8-th of the address space. On SystemZ, |
| 522 | // we could OR the constant in a single instruction, but it's more |
| 523 | // efficient to load it once and use indexed addressing. |
Filipe Cabecinhas | 33dd486 | 2017-02-23 17:10:28 +0000 | [diff] [blame] | 524 | Mapping.OrShadowOffset = !IsAArch64 && !IsPPC64 && !IsSystemZ && !IsPS4CPU && |
| 525 | !(Mapping.Offset & (Mapping.Offset - 1)) && |
| 526 | Mapping.Offset != kDynamicShadowSentinel; |
Evgeniy Stepanov | 8e7018d | 2017-11-20 17:41:57 +0000 | [diff] [blame] | 527 | bool IsAndroidWithIfuncSupport = |
| 528 | IsAndroid && !TargetTriple.isAndroidVersionLT(21); |
| 529 | Mapping.InGlobal = ClWithIfunc && IsAndroidWithIfuncSupport && IsArmOrThumb; |
Kostya Serebryany | cc92c79 | 2014-02-24 13:40:24 +0000 | [diff] [blame] | 530 | |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 531 | return Mapping; |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 532 | } |
| 533 | |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 534 | static size_t RedzoneSizeForScale(int MappingScale) { |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 535 | // Redzone used for stack and globals is at least 32 bytes. |
| 536 | // 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] | 537 | return std::max(32U, 1U << MappingScale); |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 538 | } |
Kostya Serebryany | b3bd605 | 2012-11-20 13:00:01 +0000 | [diff] [blame] | 539 | |
Guanzhong Chen | b3292a8 | 2019-08-06 21:52:58 +0000 | [diff] [blame] | 540 | static uint64_t GetCtorAndDtorPriority(Triple &TargetTriple) { |
| 541 | if (TargetTriple.isOSEmscripten()) { |
| 542 | return kAsanEmscriptenCtorAndDtorPriority; |
| 543 | } else { |
| 544 | return kAsanCtorAndDtorPriority; |
| 545 | } |
| 546 | } |
| 547 | |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 548 | namespace { |
| 549 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 550 | /// Module analysis for getting various metadata about the module. |
| 551 | class ASanGlobalsMetadataWrapperPass : public ModulePass { |
| 552 | public: |
Leonard Chan | eebecb3 | 2018-10-26 22:51:51 +0000 | [diff] [blame] | 553 | static char ID; |
| 554 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 555 | ASanGlobalsMetadataWrapperPass() : ModulePass(ID) { |
| 556 | initializeASanGlobalsMetadataWrapperPassPass( |
| 557 | *PassRegistry::getPassRegistry()); |
| 558 | } |
| 559 | |
| 560 | bool runOnModule(Module &M) override { |
| 561 | GlobalsMD = GlobalsMetadata(M); |
| 562 | return false; |
Leonard Chan | eebecb3 | 2018-10-26 22:51:51 +0000 | [diff] [blame] | 563 | } |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 564 | |
Leonard Chan | eebecb3 | 2018-10-26 22:51:51 +0000 | [diff] [blame] | 565 | StringRef getPassName() const override { |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 566 | return "ASanGlobalsMetadataWrapperPass"; |
Leonard Chan | eebecb3 | 2018-10-26 22:51:51 +0000 | [diff] [blame] | 567 | } |
| 568 | |
| 569 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 570 | AU.setPreservesAll(); |
| 571 | } |
| 572 | |
| 573 | GlobalsMetadata &getGlobalsMD() { return GlobalsMD; } |
| 574 | |
| 575 | private: |
| 576 | GlobalsMetadata GlobalsMD; |
| 577 | }; |
| 578 | |
| 579 | char ASanGlobalsMetadataWrapperPass::ID = 0; |
| 580 | |
| 581 | /// AddressSanitizer: instrument the code in module to find memory bugs. |
| 582 | struct AddressSanitizer { |
| 583 | AddressSanitizer(Module &M, GlobalsMetadata &GlobalsMD, |
| 584 | bool CompileKernel = false, bool Recover = false, |
| 585 | bool UseAfterScope = false) |
| 586 | : UseAfterScope(UseAfterScope || ClUseAfterScope), GlobalsMD(GlobalsMD) { |
| 587 | this->Recover = ClRecover.getNumOccurrences() > 0 ? ClRecover : Recover; |
| 588 | this->CompileKernel = |
| 589 | ClEnableKasan.getNumOccurrences() > 0 ? ClEnableKasan : CompileKernel; |
| 590 | |
| 591 | C = &(M.getContext()); |
| 592 | LongSize = M.getDataLayout().getPointerSizeInBits(); |
| 593 | IntptrTy = Type::getIntNTy(*C, LongSize); |
| 594 | TargetTriple = Triple(M.getTargetTriple()); |
| 595 | |
| 596 | Mapping = getShadowMapping(TargetTriple, LongSize, this->CompileKernel); |
Yury Gribov | 3ae427d | 2014-12-01 08:47:58 +0000 | [diff] [blame] | 597 | } |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 598 | |
Vitaly Buka | 21a9e57 | 2016-07-28 22:50:50 +0000 | [diff] [blame] | 599 | uint64_t getAllocaSizeInBytes(const AllocaInst &AI) const { |
Kuba Brecka | 7d03ce4 | 2016-06-27 15:57:08 +0000 | [diff] [blame] | 600 | uint64_t ArraySize = 1; |
Vitaly Buka | 21a9e57 | 2016-07-28 22:50:50 +0000 | [diff] [blame] | 601 | if (AI.isArrayAllocation()) { |
| 602 | const ConstantInt *CI = dyn_cast<ConstantInt>(AI.getArraySize()); |
Kuba Brecka | 7d03ce4 | 2016-06-27 15:57:08 +0000 | [diff] [blame] | 603 | assert(CI && "non-constant array size"); |
| 604 | ArraySize = CI->getZExtValue(); |
| 605 | } |
Vitaly Buka | 21a9e57 | 2016-07-28 22:50:50 +0000 | [diff] [blame] | 606 | Type *Ty = AI.getAllocatedType(); |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 607 | uint64_t SizeInBytes = |
Vitaly Buka | 21a9e57 | 2016-07-28 22:50:50 +0000 | [diff] [blame] | 608 | AI.getModule()->getDataLayout().getTypeAllocSize(Ty); |
Kuba Brecka | 7d03ce4 | 2016-06-27 15:57:08 +0000 | [diff] [blame] | 609 | return SizeInBytes * ArraySize; |
Anna Zaks | 8ed1d81 | 2015-02-27 03:12:36 +0000 | [diff] [blame] | 610 | } |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 611 | |
Anna Zaks | 8ed1d81 | 2015-02-27 03:12:36 +0000 | [diff] [blame] | 612 | /// Check if we want (and can) handle this alloca. |
Vitaly Buka | 21a9e57 | 2016-07-28 22:50:50 +0000 | [diff] [blame] | 613 | bool isInterestingAlloca(const AllocaInst &AI); |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 614 | |
Anna Zaks | 8ed1d81 | 2015-02-27 03:12:36 +0000 | [diff] [blame] | 615 | /// If it is an interesting memory access, return the PointerOperand |
| 616 | /// and set IsWrite/Alignment. Otherwise return nullptr. |
Filipe Cabecinhas | ec350b7 | 2016-11-15 22:37:30 +0000 | [diff] [blame] | 617 | /// MaybeMask is an output parameter for the mask Value, if we're looking at a |
| 618 | /// masked load/store. |
Anna Zaks | 8ed1d81 | 2015-02-27 03:12:36 +0000 | [diff] [blame] | 619 | Value *isInterestingMemoryAccess(Instruction *I, bool *IsWrite, |
Filipe Cabecinhas | ec350b7 | 2016-11-15 22:37:30 +0000 | [diff] [blame] | 620 | uint64_t *TypeSize, unsigned *Alignment, |
| 621 | Value **MaybeMask = nullptr); |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 622 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 623 | void instrumentMop(ObjectSizeOffsetVisitor &ObjSizeVis, Instruction *I, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 624 | bool UseCalls, const DataLayout &DL); |
Kostya Serebryany | 796f655 | 2014-02-27 12:45:36 +0000 | [diff] [blame] | 625 | void instrumentPointerComparisonOrSubtraction(Instruction *I); |
Kostya Serebryany | 3ece9bea | 2013-02-19 11:29:21 +0000 | [diff] [blame] | 626 | void instrumentAddress(Instruction *OrigIns, Instruction *InsertBefore, |
| 627 | Value *Addr, uint32_t TypeSize, bool IsWrite, |
Dmitry Vyukov | 618d580 | 2015-03-17 16:59:19 +0000 | [diff] [blame] | 628 | Value *SizeArgument, bool UseCalls, uint32_t Exp); |
Filipe Cabecinhas | 4647b74 | 2017-01-06 15:24:51 +0000 | [diff] [blame] | 629 | void instrumentUnusualSizeOrAlignment(Instruction *I, |
| 630 | Instruction *InsertBefore, Value *Addr, |
Dmitry Vyukov | 618d580 | 2015-03-17 16:59:19 +0000 | [diff] [blame] | 631 | uint32_t TypeSize, bool IsWrite, |
| 632 | Value *SizeArgument, bool UseCalls, |
| 633 | uint32_t Exp); |
Kostya Serebryany | 874dae6 | 2012-07-16 16:15:40 +0000 | [diff] [blame] | 634 | Value *createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong, |
| 635 | Value *ShadowValue, uint32_t TypeSize); |
Kostya Serebryany | fda7a13 | 2012-08-14 14:04:51 +0000 | [diff] [blame] | 636 | Instruction *generateCrashCode(Instruction *InsertBefore, Value *Addr, |
Kostya Serebryany | 3ece9bea | 2013-02-19 11:29:21 +0000 | [diff] [blame] | 637 | bool IsWrite, size_t AccessSizeIndex, |
Dmitry Vyukov | 618d580 | 2015-03-17 16:59:19 +0000 | [diff] [blame] | 638 | Value *SizeArgument, uint32_t Exp); |
Kostya Serebryany | 94c81ca | 2014-04-21 11:50:42 +0000 | [diff] [blame] | 639 | void instrumentMemIntrinsic(MemIntrinsic *MI); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 640 | Value *memToShadow(Value *Shadow, IRBuilder<> &IRB); |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 641 | bool instrumentFunction(Function &F, const TargetLibraryInfo *TLI); |
Kostya Serebryany | 22ddcfd | 2012-01-30 23:50:10 +0000 | [diff] [blame] | 642 | bool maybeInsertAsanInitAtFunctionEntry(Function &F); |
Etienne Bergeron | 0ca0568 | 2016-09-30 17:46:32 +0000 | [diff] [blame] | 643 | void maybeInsertDynamicShadowAtFunctionEntry(Function &F); |
Reid Kleckner | 2f90755 | 2015-07-21 17:40:14 +0000 | [diff] [blame] | 644 | void markEscapedLocalAllocas(Function &F); |
Yury Gribov | 3ae427d | 2014-12-01 08:47:58 +0000 | [diff] [blame] | 645 | |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 646 | private: |
| 647 | friend struct FunctionStackPoisoner; |
| 648 | |
Kostya Serebryany | 4b929da | 2012-11-29 09:54:21 +0000 | [diff] [blame] | 649 | void initializeCallbacks(Module &M); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 650 | |
Kostya Serebryany | 1cdc6e9 | 2011-11-18 01:41:06 +0000 | [diff] [blame] | 651 | bool LooksLikeCodeInBug11395(Instruction *I); |
Kostya Serebryany | d3d23be | 2013-10-16 14:06:14 +0000 | [diff] [blame] | 652 | bool GlobalIsLinkerInitialized(GlobalVariable *G); |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 653 | bool isSafeAccess(ObjectSizeOffsetVisitor &ObjSizeVis, Value *Addr, |
| 654 | uint64_t TypeSize) const; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 655 | |
Reid Kleckner | 2f90755 | 2015-07-21 17:40:14 +0000 | [diff] [blame] | 656 | /// Helper to cleanup per-function state. |
| 657 | struct FunctionStateRAII { |
| 658 | AddressSanitizer *Pass; |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 659 | |
Reid Kleckner | 2f90755 | 2015-07-21 17:40:14 +0000 | [diff] [blame] | 660 | FunctionStateRAII(AddressSanitizer *Pass) : Pass(Pass) { |
| 661 | assert(Pass->ProcessedAllocas.empty() && |
| 662 | "last pass forgot to clear cache"); |
Etienne Bergeron | 0ca0568 | 2016-09-30 17:46:32 +0000 | [diff] [blame] | 663 | assert(!Pass->LocalDynamicShadow); |
Reid Kleckner | 2f90755 | 2015-07-21 17:40:14 +0000 | [diff] [blame] | 664 | } |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 665 | |
Etienne Bergeron | 0ca0568 | 2016-09-30 17:46:32 +0000 | [diff] [blame] | 666 | ~FunctionStateRAII() { |
| 667 | Pass->LocalDynamicShadow = nullptr; |
| 668 | Pass->ProcessedAllocas.clear(); |
| 669 | } |
Reid Kleckner | 2f90755 | 2015-07-21 17:40:14 +0000 | [diff] [blame] | 670 | }; |
| 671 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 672 | LLVMContext *C; |
Kuba Brecka | 1001bb5 | 2014-12-05 22:19:18 +0000 | [diff] [blame] | 673 | Triple TargetTriple; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 674 | int LongSize; |
Alexander Potapenko | b9b73ef | 2015-06-19 12:19:07 +0000 | [diff] [blame] | 675 | bool CompileKernel; |
Yury Gribov | d773198 | 2015-11-11 10:36:49 +0000 | [diff] [blame] | 676 | bool Recover; |
Vitaly Buka | 1e75fa4 | 2016-05-27 22:55:10 +0000 | [diff] [blame] | 677 | bool UseAfterScope; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 678 | Type *IntptrTy; |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 679 | ShadowMapping Mapping; |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 680 | FunctionCallee AsanHandleNoReturnFunc; |
| 681 | FunctionCallee AsanPtrCmpFunction, AsanPtrSubFunction; |
Evgeniy Stepanov | 8e7018d | 2017-11-20 17:41:57 +0000 | [diff] [blame] | 682 | Constant *AsanShadowGlobal; |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 683 | |
| 684 | // These arrays is indexed by AccessIsWrite, Experiment and log2(AccessSize). |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 685 | FunctionCallee AsanErrorCallback[2][2][kNumberOfAccessSizes]; |
| 686 | FunctionCallee AsanMemoryAccessCallback[2][2][kNumberOfAccessSizes]; |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 687 | |
| 688 | // These arrays is indexed by AccessIsWrite and Experiment. |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 689 | FunctionCallee AsanErrorCallbackSized[2][2]; |
| 690 | FunctionCallee AsanMemoryAccessCallbackSized[2][2]; |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 691 | |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 692 | FunctionCallee AsanMemmove, AsanMemcpy, AsanMemset; |
Kostya Serebryany | f02c606 | 2012-07-20 09:54:50 +0000 | [diff] [blame] | 693 | InlineAsm *EmptyAsm; |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 694 | Value *LocalDynamicShadow = nullptr; |
Alexey Samsonov | 4f319cc | 2014-07-02 16:54:41 +0000 | [diff] [blame] | 695 | GlobalsMetadata GlobalsMD; |
Vitaly Buka | 21a9e57 | 2016-07-28 22:50:50 +0000 | [diff] [blame] | 696 | DenseMap<const AllocaInst *, bool> ProcessedAllocas; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 697 | }; |
Kostya Serebryany | 874dae6 | 2012-07-16 16:15:40 +0000 | [diff] [blame] | 698 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 699 | class AddressSanitizerLegacyPass : public FunctionPass { |
Evgeniy Stepanov | 9e53608 | 2017-04-24 19:34:13 +0000 | [diff] [blame] | 700 | public: |
Leonard Chan | eebecb3 | 2018-10-26 22:51:51 +0000 | [diff] [blame] | 701 | static char ID; |
| 702 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 703 | explicit AddressSanitizerLegacyPass(bool CompileKernel = false, |
| 704 | bool Recover = false, |
| 705 | bool UseAfterScope = false) |
| 706 | : FunctionPass(ID), CompileKernel(CompileKernel), Recover(Recover), |
| 707 | UseAfterScope(UseAfterScope) { |
| 708 | initializeAddressSanitizerLegacyPassPass(*PassRegistry::getPassRegistry()); |
| 709 | } |
| 710 | |
| 711 | StringRef getPassName() const override { |
| 712 | return "AddressSanitizerFunctionPass"; |
| 713 | } |
| 714 | |
| 715 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
| 716 | AU.addRequired<ASanGlobalsMetadataWrapperPass>(); |
| 717 | AU.addRequired<TargetLibraryInfoWrapperPass>(); |
| 718 | } |
| 719 | |
| 720 | bool runOnFunction(Function &F) override { |
| 721 | GlobalsMetadata &GlobalsMD = |
| 722 | getAnalysis<ASanGlobalsMetadataWrapperPass>().getGlobalsMD(); |
| 723 | const TargetLibraryInfo *TLI = |
| 724 | &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(); |
| 725 | AddressSanitizer ASan(*F.getParent(), GlobalsMD, CompileKernel, Recover, |
| 726 | UseAfterScope); |
| 727 | return ASan.instrumentFunction(F, TLI); |
| 728 | } |
| 729 | |
| 730 | private: |
| 731 | bool CompileKernel; |
| 732 | bool Recover; |
| 733 | bool UseAfterScope; |
| 734 | }; |
| 735 | |
| 736 | class ModuleAddressSanitizer { |
| 737 | public: |
| 738 | ModuleAddressSanitizer(Module &M, GlobalsMetadata &GlobalsMD, |
| 739 | bool CompileKernel = false, bool Recover = false, |
| 740 | bool UseGlobalsGC = true, bool UseOdrIndicator = false) |
| 741 | : GlobalsMD(GlobalsMD), UseGlobalsGC(UseGlobalsGC && ClUseGlobalsGC), |
Vitaly Buka | 8076c57 | 2018-12-05 01:44:31 +0000 | [diff] [blame] | 742 | // Enable aliases as they should have no downside with ODR indicators. |
| 743 | UsePrivateAlias(UseOdrIndicator || ClUsePrivateAlias), |
| 744 | UseOdrIndicator(UseOdrIndicator || ClUseOdrIndicator), |
Evgeniy Stepanov | b56012b | 2017-05-15 20:43:42 +0000 | [diff] [blame] | 745 | // Not a typo: ClWithComdat is almost completely pointless without |
| 746 | // ClUseGlobalsGC (because then it only works on modules without |
| 747 | // globals, which are rare); it is a prerequisite for ClUseGlobalsGC; |
| 748 | // and both suffer from gold PR19002 for which UseGlobalsGC constructor |
| 749 | // argument is designed as workaround. Therefore, disable both |
| 750 | // ClWithComdat and ClUseGlobalsGC unless the frontend says it's ok to |
| 751 | // do globals-gc. |
Andrey Konovalov | 1ba9d9c | 2018-04-13 18:05:21 +0000 | [diff] [blame] | 752 | UseCtorComdat(UseGlobalsGC && ClWithComdat) { |
Vitaly Buka | 8076c57 | 2018-12-05 01:44:31 +0000 | [diff] [blame] | 753 | this->Recover = ClRecover.getNumOccurrences() > 0 ? ClRecover : Recover; |
| 754 | this->CompileKernel = |
| 755 | ClEnableKasan.getNumOccurrences() > 0 ? ClEnableKasan : CompileKernel; |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 756 | |
| 757 | C = &(M.getContext()); |
| 758 | int LongSize = M.getDataLayout().getPointerSizeInBits(); |
| 759 | IntptrTy = Type::getIntNTy(*C, LongSize); |
| 760 | TargetTriple = Triple(M.getTargetTriple()); |
| 761 | Mapping = getShadowMapping(TargetTriple, LongSize, this->CompileKernel); |
Vitaly Buka | 537cfc0 | 2018-12-04 00:36:14 +0000 | [diff] [blame] | 762 | } |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 763 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 764 | bool instrumentModule(Module &); |
Alexey Samsonov | 261177a | 2012-12-04 01:34:23 +0000 | [diff] [blame] | 765 | |
Mehdi Amini | 117296c | 2016-10-01 02:56:57 +0000 | [diff] [blame] | 766 | private: |
Alexey Samsonov | 788381b | 2012-12-25 12:28:20 +0000 | [diff] [blame] | 767 | void initializeCallbacks(Module &M); |
| 768 | |
Evgeniy Stepanov | 716f0ff22 | 2017-04-27 20:27:23 +0000 | [diff] [blame] | 769 | bool InstrumentGlobals(IRBuilder<> &IRB, Module &M, bool *CtorComdat); |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 770 | void InstrumentGlobalsCOFF(IRBuilder<> &IRB, Module &M, |
| 771 | ArrayRef<GlobalVariable *> ExtendedGlobals, |
| 772 | ArrayRef<Constant *> MetadataInitializers); |
Evgeniy Stepanov | 964f466 | 2017-04-27 20:27:27 +0000 | [diff] [blame] | 773 | void InstrumentGlobalsELF(IRBuilder<> &IRB, Module &M, |
| 774 | ArrayRef<GlobalVariable *> ExtendedGlobals, |
| 775 | ArrayRef<Constant *> MetadataInitializers, |
| 776 | const std::string &UniqueModuleId); |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 777 | void InstrumentGlobalsMachO(IRBuilder<> &IRB, Module &M, |
| 778 | ArrayRef<GlobalVariable *> ExtendedGlobals, |
| 779 | ArrayRef<Constant *> MetadataInitializers); |
| 780 | void |
| 781 | InstrumentGlobalsWithMetadataArray(IRBuilder<> &IRB, Module &M, |
| 782 | ArrayRef<GlobalVariable *> ExtendedGlobals, |
| 783 | ArrayRef<Constant *> MetadataInitializers); |
| 784 | |
| 785 | GlobalVariable *CreateMetadataGlobal(Module &M, Constant *Initializer, |
| 786 | StringRef OriginalName); |
Evgeniy Stepanov | 964f466 | 2017-04-27 20:27:27 +0000 | [diff] [blame] | 787 | void SetComdatForGlobalMetadata(GlobalVariable *G, GlobalVariable *Metadata, |
| 788 | StringRef InternalSuffix); |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 789 | IRBuilder<> CreateAsanModuleDtor(Module &M); |
| 790 | |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 791 | bool ShouldInstrumentGlobal(GlobalVariable *G); |
Ryan Govostes | 653f9d0 | 2016-03-28 20:28:57 +0000 | [diff] [blame] | 792 | bool ShouldUseMachOGlobalsSection() const; |
Reid Kleckner | 01660a3 | 2016-11-21 20:40:37 +0000 | [diff] [blame] | 793 | StringRef getGlobalMetadataSection() const; |
Alexey Samsonov | 96e239f | 2014-05-29 00:51:15 +0000 | [diff] [blame] | 794 | void poisonOneInitializer(Function &GlobalInit, GlobalValue *ModuleName); |
Alexey Samsonov | e1e26bf | 2013-03-26 13:05:41 +0000 | [diff] [blame] | 795 | void createInitializerPoisonCalls(Module &M, GlobalValue *ModuleName); |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 796 | size_t MinRedzoneSizeForGlobal() const { |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 797 | return RedzoneSizeForScale(Mapping.Scale); |
| 798 | } |
Evgeniy Stepanov | 8e7018d | 2017-11-20 17:41:57 +0000 | [diff] [blame] | 799 | int GetAsanVersion(const Module &M) const; |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 800 | |
Alexey Samsonov | 4f319cc | 2014-07-02 16:54:41 +0000 | [diff] [blame] | 801 | GlobalsMetadata GlobalsMD; |
Alexander Potapenko | b9b73ef | 2015-06-19 12:19:07 +0000 | [diff] [blame] | 802 | bool CompileKernel; |
Yury Gribov | d773198 | 2015-11-11 10:36:49 +0000 | [diff] [blame] | 803 | bool Recover; |
Evgeniy Stepanov | 9e53608 | 2017-04-24 19:34:13 +0000 | [diff] [blame] | 804 | bool UseGlobalsGC; |
Vitaly Buka | 8076c57 | 2018-12-05 01:44:31 +0000 | [diff] [blame] | 805 | bool UsePrivateAlias; |
| 806 | bool UseOdrIndicator; |
Evgeniy Stepanov | b56012b | 2017-05-15 20:43:42 +0000 | [diff] [blame] | 807 | bool UseCtorComdat; |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 808 | Type *IntptrTy; |
| 809 | LLVMContext *C; |
Kuba Brecka | 1001bb5 | 2014-12-05 22:19:18 +0000 | [diff] [blame] | 810 | Triple TargetTriple; |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 811 | ShadowMapping Mapping; |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 812 | FunctionCallee AsanPoisonGlobals; |
| 813 | FunctionCallee AsanUnpoisonGlobals; |
| 814 | FunctionCallee AsanRegisterGlobals; |
| 815 | FunctionCallee AsanUnregisterGlobals; |
| 816 | FunctionCallee AsanRegisterImageGlobals; |
| 817 | FunctionCallee AsanUnregisterImageGlobals; |
| 818 | FunctionCallee AsanRegisterElfGlobals; |
| 819 | FunctionCallee AsanUnregisterElfGlobals; |
Evgeniy Stepanov | 716f0ff22 | 2017-04-27 20:27:23 +0000 | [diff] [blame] | 820 | |
| 821 | Function *AsanCtorFunction = nullptr; |
| 822 | Function *AsanDtorFunction = nullptr; |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 823 | }; |
| 824 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 825 | class ModuleAddressSanitizerLegacyPass : public ModulePass { |
| 826 | public: |
| 827 | static char ID; |
| 828 | |
| 829 | explicit ModuleAddressSanitizerLegacyPass(bool CompileKernel = false, |
| 830 | bool Recover = false, |
| 831 | bool UseGlobalGC = true, |
| 832 | bool UseOdrIndicator = false) |
| 833 | : ModulePass(ID), CompileKernel(CompileKernel), Recover(Recover), |
| 834 | UseGlobalGC(UseGlobalGC), UseOdrIndicator(UseOdrIndicator) { |
| 835 | initializeModuleAddressSanitizerLegacyPassPass( |
| 836 | *PassRegistry::getPassRegistry()); |
| 837 | } |
| 838 | |
| 839 | StringRef getPassName() const override { return "ModuleAddressSanitizer"; } |
| 840 | |
| 841 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
| 842 | AU.addRequired<ASanGlobalsMetadataWrapperPass>(); |
| 843 | } |
| 844 | |
| 845 | bool runOnModule(Module &M) override { |
| 846 | GlobalsMetadata &GlobalsMD = |
| 847 | getAnalysis<ASanGlobalsMetadataWrapperPass>().getGlobalsMD(); |
| 848 | ModuleAddressSanitizer ASanModule(M, GlobalsMD, CompileKernel, Recover, |
| 849 | UseGlobalGC, UseOdrIndicator); |
| 850 | return ASanModule.instrumentModule(M); |
| 851 | } |
| 852 | |
| 853 | private: |
| 854 | bool CompileKernel; |
| 855 | bool Recover; |
| 856 | bool UseGlobalGC; |
| 857 | bool UseOdrIndicator; |
| 858 | }; |
| 859 | |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 860 | // Stack poisoning does not play well with exception handling. |
| 861 | // When an exception is thrown, we essentially bypass the code |
| 862 | // that unpoisones the stack. This is why the run-time library has |
| 863 | // to intercept __cxa_throw (as well as longjmp, etc) and unpoison the entire |
| 864 | // stack in the interceptor. This however does not work inside the |
| 865 | // actual function which catches the exception. Most likely because the |
| 866 | // compiler hoists the load of the shadow value somewhere too high. |
| 867 | // This causes asan to report a non-existing bug on 453.povray. |
| 868 | // It sounds like an LLVM bug. |
| 869 | struct FunctionStackPoisoner : public InstVisitor<FunctionStackPoisoner> { |
| 870 | Function &F; |
| 871 | AddressSanitizer &ASan; |
| 872 | DIBuilder DIB; |
| 873 | LLVMContext *C; |
| 874 | Type *IntptrTy; |
| 875 | Type *IntptrPtrTy; |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 876 | ShadowMapping Mapping; |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 877 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 878 | SmallVector<AllocaInst *, 16> AllocaVec; |
Kuba Brecka | a49dcbb | 2016-11-08 21:30:41 +0000 | [diff] [blame] | 879 | SmallVector<AllocaInst *, 16> StaticAllocasToMoveUp; |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 880 | SmallVector<Instruction *, 8> RetVec; |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 881 | unsigned StackAlignment; |
| 882 | |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 883 | FunctionCallee AsanStackMallocFunc[kMaxAsanStackMallocSizeClass + 1], |
| 884 | AsanStackFreeFunc[kMaxAsanStackMallocSizeClass + 1]; |
| 885 | FunctionCallee AsanSetShadowFunc[0x100] = {}; |
| 886 | FunctionCallee AsanPoisonStackMemoryFunc, AsanUnpoisonStackMemoryFunc; |
| 887 | FunctionCallee AsanAllocaPoisonFunc, AsanAllocasUnpoisonFunc; |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 888 | |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 889 | // Stores a place and arguments of poisoning/unpoisoning call for alloca. |
| 890 | struct AllocaPoisonCall { |
| 891 | IntrinsicInst *InsBefore; |
Alexey Samsonov | a788b94 | 2013-11-18 14:53:55 +0000 | [diff] [blame] | 892 | AllocaInst *AI; |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 893 | uint64_t Size; |
| 894 | bool DoPoison; |
| 895 | }; |
Vitaly Buka | 5b4f121 | 2016-08-20 17:22:27 +0000 | [diff] [blame] | 896 | SmallVector<AllocaPoisonCall, 8> DynamicAllocaPoisonCallVec; |
| 897 | SmallVector<AllocaPoisonCall, 8> StaticAllocaPoisonCallVec; |
Hans Wennborg | 6ae0577 | 2019-04-16 07:54:20 +0000 | [diff] [blame] | 898 | bool HasUntracedLifetimeIntrinsic = false; |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 899 | |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 900 | SmallVector<AllocaInst *, 1> DynamicAllocaVec; |
| 901 | SmallVector<IntrinsicInst *, 1> StackRestoreVec; |
| 902 | AllocaInst *DynamicAllocaLayout = nullptr; |
Reid Kleckner | 2f90755 | 2015-07-21 17:40:14 +0000 | [diff] [blame] | 903 | IntrinsicInst *LocalEscapeCall = nullptr; |
Yury Gribov | 55441bb | 2014-11-21 10:29:50 +0000 | [diff] [blame] | 904 | |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 905 | // Maps Value to an AllocaInst from which the Value is originated. |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 906 | using AllocaForValueMapTy = DenseMap<Value *, AllocaInst *>; |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 907 | AllocaForValueMapTy AllocaForValue; |
| 908 | |
Alexey Samsonov | 869a5ff | 2015-07-29 19:36:08 +0000 | [diff] [blame] | 909 | bool HasNonEmptyInlineAsm = false; |
| 910 | bool HasReturnsTwiceCall = false; |
Alexey Samsonov | 4b7f413 | 2014-12-11 21:53:03 +0000 | [diff] [blame] | 911 | std::unique_ptr<CallInst> EmptyInlineAsm; |
| 912 | |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 913 | FunctionStackPoisoner(Function &F, AddressSanitizer &ASan) |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 914 | : F(F), ASan(ASan), DIB(*F.getParent(), /*AllowUnresolved*/ false), |
| 915 | C(ASan.C), IntptrTy(ASan.IntptrTy), |
| 916 | IntptrPtrTy(PointerType::get(IntptrTy, 0)), Mapping(ASan.Mapping), |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 917 | StackAlignment(1 << Mapping.Scale), |
Alexey Samsonov | 4b7f413 | 2014-12-11 21:53:03 +0000 | [diff] [blame] | 918 | EmptyInlineAsm(CallInst::Create(ASan.EmptyAsm)) {} |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 919 | |
| 920 | bool runOnFunction() { |
| 921 | if (!ClStack) return false; |
Vitaly Buka | 74443f0 | 2017-07-18 22:28:03 +0000 | [diff] [blame] | 922 | |
Matt Morehouse | 49e5aca | 2017-08-09 17:59:43 +0000 | [diff] [blame] | 923 | if (ClRedzoneByvalArgs) |
Vitaly Buka | 629047de | 2017-08-07 07:12:34 +0000 | [diff] [blame] | 924 | copyArgsPassedByValToAllocas(); |
Vitaly Buka | 74443f0 | 2017-07-18 22:28:03 +0000 | [diff] [blame] | 925 | |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 926 | // Collect alloca, ret, lifetime instructions etc. |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 927 | for (BasicBlock *BB : depth_first(&F.getEntryBlock())) visit(*BB); |
David Blaikie | ceec2bd | 2014-04-11 01:50:01 +0000 | [diff] [blame] | 928 | |
Yury Gribov | 55441bb | 2014-11-21 10:29:50 +0000 | [diff] [blame] | 929 | if (AllocaVec.empty() && DynamicAllocaVec.empty()) return false; |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 930 | |
| 931 | initializeCallbacks(*F.getParent()); |
| 932 | |
Hans Wennborg | 6ae0577 | 2019-04-16 07:54:20 +0000 | [diff] [blame] | 933 | if (HasUntracedLifetimeIntrinsic) { |
| 934 | // If there are lifetime intrinsics which couldn't be traced back to an |
| 935 | // alloca, we may not know exactly when a variable enters scope, and |
| 936 | // therefore should "fail safe" by not poisoning them. |
| 937 | StaticAllocaPoisonCallVec.clear(); |
| 938 | DynamicAllocaPoisonCallVec.clear(); |
| 939 | } |
| 940 | |
Vitaly Buka | 5b4f121 | 2016-08-20 17:22:27 +0000 | [diff] [blame] | 941 | processDynamicAllocas(); |
| 942 | processStaticAllocas(); |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 943 | |
| 944 | if (ClDebugStack) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 945 | LLVM_DEBUG(dbgs() << F); |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 946 | } |
| 947 | return true; |
| 948 | } |
| 949 | |
Vitaly Buka | 74443f0 | 2017-07-18 22:28:03 +0000 | [diff] [blame] | 950 | // Arguments marked with the "byval" attribute are implicitly copied without |
| 951 | // using an alloca instruction. To produce redzones for those arguments, we |
| 952 | // copy them a second time into memory allocated with an alloca instruction. |
| 953 | void copyArgsPassedByValToAllocas(); |
| 954 | |
Yury Gribov | 55441bb | 2014-11-21 10:29:50 +0000 | [diff] [blame] | 955 | // Finds all Alloca instructions and puts |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 956 | // poisoned red zones around all of them. |
| 957 | // Then unpoison everything back before the function returns. |
Vitaly Buka | 5b4f121 | 2016-08-20 17:22:27 +0000 | [diff] [blame] | 958 | void processStaticAllocas(); |
| 959 | void processDynamicAllocas(); |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 960 | |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 961 | void createDynamicAllocasInitStorage(); |
| 962 | |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 963 | // ----------------------- Visitors. |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 964 | /// Collect all Ret instructions. |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 965 | void visitReturnInst(ReturnInst &RI) { RetVec.push_back(&RI); } |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 966 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 967 | /// Collect all Resume instructions. |
Vitaly Buka | e3a032a | 2016-07-22 22:04:38 +0000 | [diff] [blame] | 968 | void visitResumeInst(ResumeInst &RI) { RetVec.push_back(&RI); } |
| 969 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 970 | /// Collect all CatchReturnInst instructions. |
Vitaly Buka | e3a032a | 2016-07-22 22:04:38 +0000 | [diff] [blame] | 971 | void visitCleanupReturnInst(CleanupReturnInst &CRI) { RetVec.push_back(&CRI); } |
| 972 | |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 973 | void unpoisonDynamicAllocasBeforeInst(Instruction *InstBefore, |
| 974 | Value *SavedStack) { |
| 975 | IRBuilder<> IRB(InstBefore); |
Yury Gribov | 6ff0a66 | 2015-12-04 09:19:14 +0000 | [diff] [blame] | 976 | Value *DynamicAreaPtr = IRB.CreatePtrToInt(SavedStack, IntptrTy); |
| 977 | // When we insert _asan_allocas_unpoison before @llvm.stackrestore, we |
| 978 | // need to adjust extracted SP to compute the address of the most recent |
| 979 | // alloca. We have a special @llvm.get.dynamic.area.offset intrinsic for |
| 980 | // this purpose. |
| 981 | if (!isa<ReturnInst>(InstBefore)) { |
| 982 | Function *DynamicAreaOffsetFunc = Intrinsic::getDeclaration( |
| 983 | InstBefore->getModule(), Intrinsic::get_dynamic_area_offset, |
| 984 | {IntptrTy}); |
| 985 | |
| 986 | Value *DynamicAreaOffset = IRB.CreateCall(DynamicAreaOffsetFunc, {}); |
| 987 | |
| 988 | DynamicAreaPtr = IRB.CreateAdd(IRB.CreatePtrToInt(SavedStack, IntptrTy), |
| 989 | DynamicAreaOffset); |
| 990 | } |
| 991 | |
James Y Knight | 14359ef | 2019-02-01 20:44:24 +0000 | [diff] [blame] | 992 | IRB.CreateCall( |
| 993 | AsanAllocasUnpoisonFunc, |
| 994 | {IRB.CreateLoad(IntptrTy, DynamicAllocaLayout), DynamicAreaPtr}); |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 995 | } |
| 996 | |
Yury Gribov | 55441bb | 2014-11-21 10:29:50 +0000 | [diff] [blame] | 997 | // Unpoison dynamic allocas redzones. |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 998 | void unpoisonDynamicAllocas() { |
| 999 | for (auto &Ret : RetVec) |
| 1000 | unpoisonDynamicAllocasBeforeInst(Ret, DynamicAllocaLayout); |
Yury Gribov | 55441bb | 2014-11-21 10:29:50 +0000 | [diff] [blame] | 1001 | |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 1002 | for (auto &StackRestoreInst : StackRestoreVec) |
| 1003 | unpoisonDynamicAllocasBeforeInst(StackRestoreInst, |
| 1004 | StackRestoreInst->getOperand(0)); |
Yury Gribov | 55441bb | 2014-11-21 10:29:50 +0000 | [diff] [blame] | 1005 | } |
| 1006 | |
Yury Gribov | 55441bb | 2014-11-21 10:29:50 +0000 | [diff] [blame] | 1007 | // Deploy and poison redzones around dynamic alloca call. To do this, we |
| 1008 | // should replace this call with another one with changed parameters and |
| 1009 | // replace all its uses with new address, so |
| 1010 | // addr = alloca type, old_size, align |
| 1011 | // is replaced by |
| 1012 | // new_size = (old_size + additional_size) * sizeof(type) |
| 1013 | // tmp = alloca i8, new_size, max(align, 32) |
| 1014 | // addr = tmp + 32 (first 32 bytes are for the left redzone). |
| 1015 | // Additional_size is added to make new memory allocation contain not only |
| 1016 | // requested memory, but also left, partial and right redzones. |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 1017 | void handleDynamicAllocaCall(AllocaInst *AI); |
Yury Gribov | 55441bb | 2014-11-21 10:29:50 +0000 | [diff] [blame] | 1018 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 1019 | /// Collect Alloca instructions we want (and can) handle. |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 1020 | void visitAllocaInst(AllocaInst &AI) { |
Kuba Brecka | 37a5ffa | 2015-07-17 06:29:57 +0000 | [diff] [blame] | 1021 | if (!ASan.isInterestingAlloca(AI)) { |
Kuba Brecka | a49dcbb | 2016-11-08 21:30:41 +0000 | [diff] [blame] | 1022 | if (AI.isStaticAlloca()) { |
| 1023 | // Skip over allocas that are present *before* the first instrumented |
| 1024 | // alloca, we don't want to move those around. |
| 1025 | if (AllocaVec.empty()) |
| 1026 | return; |
| 1027 | |
| 1028 | StaticAllocasToMoveUp.push_back(&AI); |
| 1029 | } |
Kuba Brecka | 37a5ffa | 2015-07-17 06:29:57 +0000 | [diff] [blame] | 1030 | return; |
| 1031 | } |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 1032 | |
| 1033 | StackAlignment = std::max(StackAlignment, AI.getAlignment()); |
Kuba Brecka | 7d03ce4 | 2016-06-27 15:57:08 +0000 | [diff] [blame] | 1034 | if (!AI.isStaticAlloca()) |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 1035 | DynamicAllocaVec.push_back(&AI); |
Yury Gribov | 55441bb | 2014-11-21 10:29:50 +0000 | [diff] [blame] | 1036 | else |
| 1037 | AllocaVec.push_back(&AI); |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 1038 | } |
| 1039 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 1040 | /// Collect lifetime intrinsic calls to check for use-after-scope |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 1041 | /// errors. |
| 1042 | void visitIntrinsicInst(IntrinsicInst &II) { |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 1043 | Intrinsic::ID ID = II.getIntrinsicID(); |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 1044 | if (ID == Intrinsic::stackrestore) StackRestoreVec.push_back(&II); |
Reid Kleckner | 2f90755 | 2015-07-21 17:40:14 +0000 | [diff] [blame] | 1045 | if (ID == Intrinsic::localescape) LocalEscapeCall = &II; |
Vitaly Buka | 1e75fa4 | 2016-05-27 22:55:10 +0000 | [diff] [blame] | 1046 | if (!ASan.UseAfterScope) |
| 1047 | return; |
Vedant Kumar | b264d69 | 2018-12-21 21:49:40 +0000 | [diff] [blame] | 1048 | if (!II.isLifetimeStartOrEnd()) |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 1049 | return; |
| 1050 | // Found lifetime intrinsic, add ASan instrumentation if necessary. |
| 1051 | ConstantInt *Size = dyn_cast<ConstantInt>(II.getArgOperand(0)); |
| 1052 | // If size argument is undefined, don't do anything. |
| 1053 | if (Size->isMinusOne()) return; |
| 1054 | // Check that size doesn't saturate uint64_t and can |
| 1055 | // be stored in IntptrTy. |
| 1056 | const uint64_t SizeValue = Size->getValue().getLimitedValue(); |
| 1057 | if (SizeValue == ~0ULL || |
| 1058 | !ConstantInt::isValueValidForType(IntptrTy, SizeValue)) |
| 1059 | return; |
| 1060 | // Find alloca instruction that corresponds to llvm.lifetime argument. |
Alexander Potapenko | 6a63e5a | 2019-04-15 08:59:56 +0000 | [diff] [blame] | 1061 | AllocaInst *AI = |
| 1062 | llvm::findAllocaForValue(II.getArgOperand(1), AllocaForValue); |
Hans Wennborg | 6ae0577 | 2019-04-16 07:54:20 +0000 | [diff] [blame] | 1063 | if (!AI) { |
| 1064 | HasUntracedLifetimeIntrinsic = true; |
| 1065 | return; |
| 1066 | } |
Alexander Potapenko | 6a63e5a | 2019-04-15 08:59:56 +0000 | [diff] [blame] | 1067 | // We're interested only in allocas we can handle. |
Hans Wennborg | 6ae0577 | 2019-04-16 07:54:20 +0000 | [diff] [blame] | 1068 | if (!ASan.isInterestingAlloca(*AI)) |
Vitaly Buka | b451f1b | 2016-06-09 23:31:59 +0000 | [diff] [blame] | 1069 | return; |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 1070 | bool DoPoison = (ID == Intrinsic::lifetime_end); |
Alexey Samsonov | a788b94 | 2013-11-18 14:53:55 +0000 | [diff] [blame] | 1071 | AllocaPoisonCall APC = {&II, AI, SizeValue, DoPoison}; |
Vitaly Buka | 5b4f121 | 2016-08-20 17:22:27 +0000 | [diff] [blame] | 1072 | if (AI->isStaticAlloca()) |
| 1073 | StaticAllocaPoisonCallVec.push_back(APC); |
| 1074 | else if (ClInstrumentDynamicAllocas) |
| 1075 | DynamicAllocaPoisonCallVec.push_back(APC); |
Alexey Samsonov | 29dd7f2 | 2012-12-27 08:50:58 +0000 | [diff] [blame] | 1076 | } |
| 1077 | |
Alexey Samsonov | 869a5ff | 2015-07-29 19:36:08 +0000 | [diff] [blame] | 1078 | void visitCallSite(CallSite CS) { |
| 1079 | Instruction *I = CS.getInstruction(); |
| 1080 | if (CallInst *CI = dyn_cast<CallInst>(I)) { |
Evgeniy Stepanov | 8e7018d | 2017-11-20 17:41:57 +0000 | [diff] [blame] | 1081 | HasNonEmptyInlineAsm |= CI->isInlineAsm() && |
| 1082 | !CI->isIdenticalTo(EmptyInlineAsm.get()) && |
| 1083 | I != ASan.LocalDynamicShadow; |
Alexey Samsonov | 869a5ff | 2015-07-29 19:36:08 +0000 | [diff] [blame] | 1084 | HasReturnsTwiceCall |= CI->canReturnTwice(); |
| 1085 | } |
Alexey Samsonov | 4b7f413 | 2014-12-11 21:53:03 +0000 | [diff] [blame] | 1086 | } |
| 1087 | |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 1088 | // ---------------------- Helpers. |
| 1089 | void initializeCallbacks(Module &M); |
| 1090 | |
Vitaly Buka | 793913c | 2016-08-29 18:17:21 +0000 | [diff] [blame] | 1091 | // Copies bytes from ShadowBytes into shadow memory for indexes where |
| 1092 | // ShadowMask is not zero. If ShadowMask[i] is zero, we assume that |
| 1093 | // ShadowBytes[i] is constantly zero and doesn't need to be overwritten. |
| 1094 | void copyToShadow(ArrayRef<uint8_t> ShadowMask, ArrayRef<uint8_t> ShadowBytes, |
| 1095 | IRBuilder<> &IRB, Value *ShadowBase); |
| 1096 | void copyToShadow(ArrayRef<uint8_t> ShadowMask, ArrayRef<uint8_t> ShadowBytes, |
| 1097 | size_t Begin, size_t End, IRBuilder<> &IRB, |
| 1098 | Value *ShadowBase); |
| 1099 | void copyToShadowInline(ArrayRef<uint8_t> ShadowMask, |
| 1100 | ArrayRef<uint8_t> ShadowBytes, size_t Begin, |
| 1101 | size_t End, IRBuilder<> &IRB, Value *ShadowBase); |
| 1102 | |
Jakub Staszak | 23ec6a9 | 2013-08-09 20:53:48 +0000 | [diff] [blame] | 1103 | void poisonAlloca(Value *V, uint64_t Size, IRBuilder<> &IRB, bool DoPoison); |
Kostya Serebryany | bc86efb | 2013-09-17 12:14:50 +0000 | [diff] [blame] | 1104 | |
Alexey Samsonov | 4b7f413 | 2014-12-11 21:53:03 +0000 | [diff] [blame] | 1105 | Value *createAllocaForLayout(IRBuilder<> &IRB, const ASanStackFrameLayout &L, |
| 1106 | bool Dynamic); |
| 1107 | PHINode *createPHI(IRBuilder<> &IRB, Value *Cond, Value *ValueIfTrue, |
| 1108 | Instruction *ThenTerm, Value *ValueIfFalse); |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 1109 | }; |
| 1110 | |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 1111 | } // end anonymous namespace |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1112 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 1113 | void LocationMetadata::parse(MDNode *MDN) { |
| 1114 | assert(MDN->getNumOperands() == 3); |
| 1115 | MDString *DIFilename = cast<MDString>(MDN->getOperand(0)); |
| 1116 | Filename = DIFilename->getString(); |
| 1117 | LineNo = mdconst::extract<ConstantInt>(MDN->getOperand(1))->getLimitedValue(); |
| 1118 | ColumnNo = |
| 1119 | mdconst::extract<ConstantInt>(MDN->getOperand(2))->getLimitedValue(); |
| 1120 | } |
| 1121 | |
| 1122 | // FIXME: It would be cleaner to instead attach relevant metadata to the globals |
| 1123 | // we want to sanitize instead and reading this metadata on each pass over a |
| 1124 | // function instead of reading module level metadata at first. |
| 1125 | GlobalsMetadata::GlobalsMetadata(Module &M) { |
| 1126 | NamedMDNode *Globals = M.getNamedMetadata("llvm.asan.globals"); |
| 1127 | if (!Globals) |
| 1128 | return; |
| 1129 | for (auto MDN : Globals->operands()) { |
| 1130 | // Metadata node contains the global and the fields of "Entry". |
| 1131 | assert(MDN->getNumOperands() == 5); |
| 1132 | auto *V = mdconst::extract_or_null<Constant>(MDN->getOperand(0)); |
| 1133 | // The optimizer may optimize away a global entirely. |
| 1134 | if (!V) |
| 1135 | continue; |
| 1136 | auto *StrippedV = V->stripPointerCasts(); |
| 1137 | auto *GV = dyn_cast<GlobalVariable>(StrippedV); |
| 1138 | if (!GV) |
| 1139 | continue; |
| 1140 | // We can already have an entry for GV if it was merged with another |
| 1141 | // global. |
| 1142 | Entry &E = Entries[GV]; |
| 1143 | if (auto *Loc = cast_or_null<MDNode>(MDN->getOperand(1))) |
| 1144 | E.SourceLoc.parse(Loc); |
| 1145 | if (auto *Name = cast_or_null<MDString>(MDN->getOperand(2))) |
| 1146 | E.Name = Name->getString(); |
| 1147 | ConstantInt *IsDynInit = mdconst::extract<ConstantInt>(MDN->getOperand(3)); |
| 1148 | E.IsDynInit |= IsDynInit->isOne(); |
| 1149 | ConstantInt *IsBlacklisted = |
| 1150 | mdconst::extract<ConstantInt>(MDN->getOperand(4)); |
| 1151 | E.IsBlacklisted |= IsBlacklisted->isOne(); |
| 1152 | } |
| 1153 | } |
| 1154 | |
| 1155 | AnalysisKey ASanGlobalsMetadataAnalysis::Key; |
| 1156 | |
| 1157 | GlobalsMetadata ASanGlobalsMetadataAnalysis::run(Module &M, |
| 1158 | ModuleAnalysisManager &AM) { |
| 1159 | return GlobalsMetadata(M); |
| 1160 | } |
| 1161 | |
| 1162 | AddressSanitizerPass::AddressSanitizerPass(bool CompileKernel, bool Recover, |
| 1163 | bool UseAfterScope) |
| 1164 | : CompileKernel(CompileKernel), Recover(Recover), |
| 1165 | UseAfterScope(UseAfterScope) {} |
| 1166 | |
| 1167 | PreservedAnalyses AddressSanitizerPass::run(Function &F, |
| 1168 | AnalysisManager<Function> &AM) { |
| 1169 | auto &MAMProxy = AM.getResult<ModuleAnalysisManagerFunctionProxy>(F); |
| 1170 | auto &MAM = MAMProxy.getManager(); |
| 1171 | Module &M = *F.getParent(); |
| 1172 | if (auto *R = MAM.getCachedResult<ASanGlobalsMetadataAnalysis>(M)) { |
| 1173 | const TargetLibraryInfo *TLI = &AM.getResult<TargetLibraryAnalysis>(F); |
| 1174 | AddressSanitizer Sanitizer(M, *R, CompileKernel, Recover, UseAfterScope); |
| 1175 | if (Sanitizer.instrumentFunction(F, TLI)) |
| 1176 | return PreservedAnalyses::none(); |
| 1177 | return PreservedAnalyses::all(); |
| 1178 | } |
| 1179 | |
| 1180 | report_fatal_error( |
| 1181 | "The ASanGlobalsMetadataAnalysis is required to run before " |
| 1182 | "AddressSanitizer can run"); |
| 1183 | return PreservedAnalyses::all(); |
| 1184 | } |
| 1185 | |
| 1186 | ModuleAddressSanitizerPass::ModuleAddressSanitizerPass(bool CompileKernel, |
| 1187 | bool Recover, |
| 1188 | bool UseGlobalGC, |
| 1189 | bool UseOdrIndicator) |
| 1190 | : CompileKernel(CompileKernel), Recover(Recover), UseGlobalGC(UseGlobalGC), |
| 1191 | UseOdrIndicator(UseOdrIndicator) {} |
| 1192 | |
| 1193 | PreservedAnalyses ModuleAddressSanitizerPass::run(Module &M, |
| 1194 | AnalysisManager<Module> &AM) { |
| 1195 | GlobalsMetadata &GlobalsMD = AM.getResult<ASanGlobalsMetadataAnalysis>(M); |
| 1196 | ModuleAddressSanitizer Sanitizer(M, GlobalsMD, CompileKernel, Recover, |
| 1197 | UseGlobalGC, UseOdrIndicator); |
| 1198 | if (Sanitizer.instrumentModule(M)) |
| 1199 | return PreservedAnalyses::none(); |
| 1200 | return PreservedAnalyses::all(); |
| 1201 | } |
| 1202 | |
| 1203 | INITIALIZE_PASS(ASanGlobalsMetadataWrapperPass, "asan-globals-md", |
| 1204 | "Read metadata to mark which globals should be instrumented " |
| 1205 | "when running ASan.", |
Clement Courbet | c6e768f | 2019-02-14 12:10:49 +0000 | [diff] [blame] | 1206 | false, true) |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 1207 | |
| 1208 | char AddressSanitizerLegacyPass::ID = 0; |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 1209 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1210 | INITIALIZE_PASS_BEGIN( |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 1211 | AddressSanitizerLegacyPass, "asan", |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1212 | "AddressSanitizer: detects use-after-free and out-of-bounds bugs.", false, |
| 1213 | false) |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 1214 | INITIALIZE_PASS_DEPENDENCY(ASanGlobalsMetadataWrapperPass) |
Keno Fischer | a010cfa | 2015-10-20 10:13:55 +0000 | [diff] [blame] | 1215 | INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass) |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1216 | INITIALIZE_PASS_END( |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 1217 | AddressSanitizerLegacyPass, "asan", |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1218 | "AddressSanitizer: detects use-after-free and out-of-bounds bugs.", false, |
| 1219 | false) |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 1220 | |
Yury Gribov | d773198 | 2015-11-11 10:36:49 +0000 | [diff] [blame] | 1221 | FunctionPass *llvm::createAddressSanitizerFunctionPass(bool CompileKernel, |
Vitaly Buka | 1e75fa4 | 2016-05-27 22:55:10 +0000 | [diff] [blame] | 1222 | bool Recover, |
| 1223 | bool UseAfterScope) { |
Yury Gribov | d773198 | 2015-11-11 10:36:49 +0000 | [diff] [blame] | 1224 | assert(!CompileKernel || Recover); |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 1225 | return new AddressSanitizerLegacyPass(CompileKernel, Recover, UseAfterScope); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1226 | } |
| 1227 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 1228 | char ModuleAddressSanitizerLegacyPass::ID = 0; |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 1229 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1230 | INITIALIZE_PASS( |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 1231 | ModuleAddressSanitizerLegacyPass, "asan-module", |
Kostya Serebryany | dfe9e79 | 2012-11-28 10:31:36 +0000 | [diff] [blame] | 1232 | "AddressSanitizer: detects use-after-free and out-of-bounds bugs." |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1233 | "ModulePass", |
| 1234 | false, false) |
Eugene Zelenko | bff0ef0 | 2017-10-19 22:07:16 +0000 | [diff] [blame] | 1235 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 1236 | ModulePass *llvm::createModuleAddressSanitizerLegacyPassPass( |
| 1237 | bool CompileKernel, bool Recover, bool UseGlobalsGC, bool UseOdrIndicator) { |
Yury Gribov | d773198 | 2015-11-11 10:36:49 +0000 | [diff] [blame] | 1238 | assert(!CompileKernel || Recover); |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 1239 | return new ModuleAddressSanitizerLegacyPass(CompileKernel, Recover, |
| 1240 | UseGlobalsGC, UseOdrIndicator); |
Alexander Potapenko | c94cf8f | 2012-01-23 11:22:43 +0000 | [diff] [blame] | 1241 | } |
| 1242 | |
Kostya Serebryany | c4ce5df | 2012-07-16 17:12:07 +0000 | [diff] [blame] | 1243 | static size_t TypeSizeToSizeIndex(uint32_t TypeSize) { |
Michael J. Spencer | df1ecbd7 | 2013-05-24 22:23:49 +0000 | [diff] [blame] | 1244 | size_t Res = countTrailingZeros(TypeSize / 8); |
Kostya Serebryany | c4ce5df | 2012-07-16 17:12:07 +0000 | [diff] [blame] | 1245 | assert(Res < kNumberOfAccessSizes); |
| 1246 | return Res; |
| 1247 | } |
| 1248 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 1249 | /// Create a global describing a source location. |
Alexey Samsonov | d9ad5ce | 2014-08-02 00:35:50 +0000 | [diff] [blame] | 1250 | static GlobalVariable *createPrivateGlobalForSourceLoc(Module &M, |
| 1251 | LocationMetadata MD) { |
| 1252 | Constant *LocData[] = { |
Kostya Serebryany | d891ac9 | 2018-10-11 23:03:27 +0000 | [diff] [blame] | 1253 | createPrivateGlobalForString(M, MD.Filename, true, kAsanGenPrefix), |
Alexey Samsonov | d9ad5ce | 2014-08-02 00:35:50 +0000 | [diff] [blame] | 1254 | ConstantInt::get(Type::getInt32Ty(M.getContext()), MD.LineNo), |
| 1255 | ConstantInt::get(Type::getInt32Ty(M.getContext()), MD.ColumnNo), |
| 1256 | }; |
| 1257 | auto LocStruct = ConstantStruct::getAnon(LocData); |
| 1258 | auto GV = new GlobalVariable(M, LocStruct->getType(), true, |
| 1259 | GlobalValue::PrivateLinkage, LocStruct, |
| 1260 | kAsanGenPrefix); |
Peter Collingbourne | 96efdd6 | 2016-06-14 21:01:22 +0000 | [diff] [blame] | 1261 | GV->setUnnamedAddr(GlobalValue::UnnamedAddr::Global); |
Alexey Samsonov | d9ad5ce | 2014-08-02 00:35:50 +0000 | [diff] [blame] | 1262 | return GV; |
| 1263 | } |
| 1264 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 1265 | /// Check if \p G has been created by a trusted compiler pass. |
Vedant Kumar | f5ac6d4 | 2016-06-22 17:30:58 +0000 | [diff] [blame] | 1266 | static bool GlobalWasGeneratedByCompiler(GlobalVariable *G) { |
Reid Kleckner | 85a8c12 | 2018-08-20 23:35:45 +0000 | [diff] [blame] | 1267 | // Do not instrument @llvm.global_ctors, @llvm.used, etc. |
| 1268 | if (G->getName().startswith("llvm.")) |
| 1269 | return true; |
| 1270 | |
Vedant Kumar | f5ac6d4 | 2016-06-22 17:30:58 +0000 | [diff] [blame] | 1271 | // Do not instrument asan globals. |
| 1272 | if (G->getName().startswith(kAsanGenPrefix) || |
| 1273 | G->getName().startswith(kSanCovGenPrefix) || |
| 1274 | G->getName().startswith(kODRGenPrefix)) |
| 1275 | return true; |
| 1276 | |
| 1277 | // Do not instrument gcov counter arrays. |
| 1278 | if (G->getName() == "__llvm_gcov_ctr") |
| 1279 | return true; |
| 1280 | |
| 1281 | return false; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1282 | } |
| 1283 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1284 | Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) { |
| 1285 | // Shadow >> scale |
Alexey Samsonov | 1345d35 | 2013-01-16 13:23:28 +0000 | [diff] [blame] | 1286 | Shadow = IRB.CreateLShr(Shadow, Mapping.Scale); |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1287 | if (Mapping.Offset == 0) return Shadow; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1288 | // (Shadow >> scale) | offset |
Etienne Bergeron | 0ca0568 | 2016-09-30 17:46:32 +0000 | [diff] [blame] | 1289 | Value *ShadowBase; |
| 1290 | if (LocalDynamicShadow) |
| 1291 | ShadowBase = LocalDynamicShadow; |
Etienne Bergeron | 6ba5176 | 2016-09-19 15:58:38 +0000 | [diff] [blame] | 1292 | else |
Etienne Bergeron | 0ca0568 | 2016-09-30 17:46:32 +0000 | [diff] [blame] | 1293 | ShadowBase = ConstantInt::get(IntptrTy, Mapping.Offset); |
| 1294 | if (Mapping.OrShadowOffset) |
| 1295 | return IRB.CreateOr(Shadow, ShadowBase); |
| 1296 | else |
| 1297 | return IRB.CreateAdd(Shadow, ShadowBase); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1298 | } |
| 1299 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1300 | // Instrument memset/memmove/memcpy |
Kostya Serebryany | 94c81ca | 2014-04-21 11:50:42 +0000 | [diff] [blame] | 1301 | void AddressSanitizer::instrumentMemIntrinsic(MemIntrinsic *MI) { |
| 1302 | IRBuilder<> IRB(MI); |
Kostya Serebryany | 94c81ca | 2014-04-21 11:50:42 +0000 | [diff] [blame] | 1303 | if (isa<MemTransferInst>(MI)) { |
David Blaikie | ff6409d | 2015-05-18 22:13:54 +0000 | [diff] [blame] | 1304 | IRB.CreateCall( |
Kostya Serebryany | 94c81ca | 2014-04-21 11:50:42 +0000 | [diff] [blame] | 1305 | isa<MemMoveInst>(MI) ? AsanMemmove : AsanMemcpy, |
David Blaikie | ff6409d | 2015-05-18 22:13:54 +0000 | [diff] [blame] | 1306 | {IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()), |
| 1307 | IRB.CreatePointerCast(MI->getOperand(1), IRB.getInt8PtrTy()), |
| 1308 | IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false)}); |
Kostya Serebryany | 94c81ca | 2014-04-21 11:50:42 +0000 | [diff] [blame] | 1309 | } else if (isa<MemSetInst>(MI)) { |
David Blaikie | ff6409d | 2015-05-18 22:13:54 +0000 | [diff] [blame] | 1310 | IRB.CreateCall( |
Kostya Serebryany | 94c81ca | 2014-04-21 11:50:42 +0000 | [diff] [blame] | 1311 | AsanMemset, |
David Blaikie | ff6409d | 2015-05-18 22:13:54 +0000 | [diff] [blame] | 1312 | {IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()), |
| 1313 | IRB.CreateIntCast(MI->getOperand(1), IRB.getInt32Ty(), false), |
| 1314 | IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false)}); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1315 | } |
Kostya Serebryany | 94c81ca | 2014-04-21 11:50:42 +0000 | [diff] [blame] | 1316 | MI->eraseFromParent(); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1317 | } |
| 1318 | |
Anna Zaks | 8ed1d81 | 2015-02-27 03:12:36 +0000 | [diff] [blame] | 1319 | /// Check if we want (and can) handle this alloca. |
Vitaly Buka | 21a9e57 | 2016-07-28 22:50:50 +0000 | [diff] [blame] | 1320 | bool AddressSanitizer::isInterestingAlloca(const AllocaInst &AI) { |
Anna Zaks | bf28d3a | 2015-03-27 18:52:01 +0000 | [diff] [blame] | 1321 | auto PreviouslySeenAllocaInfo = ProcessedAllocas.find(&AI); |
| 1322 | |
| 1323 | if (PreviouslySeenAllocaInfo != ProcessedAllocas.end()) |
| 1324 | return PreviouslySeenAllocaInfo->getSecond(); |
| 1325 | |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 1326 | bool IsInteresting = |
| 1327 | (AI.getAllocatedType()->isSized() && |
| 1328 | // alloca() may be called with 0 size, ignore it. |
Vitaly Buka | 21a9e57 | 2016-07-28 22:50:50 +0000 | [diff] [blame] | 1329 | ((!AI.isStaticAlloca()) || getAllocaSizeInBytes(AI) > 0) && |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 1330 | // We are only interested in allocas not promotable to registers. |
| 1331 | // Promotable allocas are common under -O0. |
Alexey Samsonov | 55fda1b | 2015-11-05 21:18:41 +0000 | [diff] [blame] | 1332 | (!ClSkipPromotableAllocas || !isAllocaPromotable(&AI)) && |
| 1333 | // inalloca allocas are not treated as static, and we don't want |
| 1334 | // dynamic alloca instrumentation for them as well. |
Arnold Schwaighofer | 8d61e00 | 2017-02-15 20:43:43 +0000 | [diff] [blame] | 1335 | !AI.isUsedWithInAlloca() && |
| 1336 | // swifterror allocas are register promoted by ISel |
| 1337 | !AI.isSwiftError()); |
Anna Zaks | bf28d3a | 2015-03-27 18:52:01 +0000 | [diff] [blame] | 1338 | |
| 1339 | ProcessedAllocas[&AI] = IsInteresting; |
| 1340 | return IsInteresting; |
Anna Zaks | 8ed1d81 | 2015-02-27 03:12:36 +0000 | [diff] [blame] | 1341 | } |
| 1342 | |
Anna Zaks | 8ed1d81 | 2015-02-27 03:12:36 +0000 | [diff] [blame] | 1343 | Value *AddressSanitizer::isInterestingMemoryAccess(Instruction *I, |
| 1344 | bool *IsWrite, |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1345 | uint64_t *TypeSize, |
Filipe Cabecinhas | ec350b7 | 2016-11-15 22:37:30 +0000 | [diff] [blame] | 1346 | unsigned *Alignment, |
| 1347 | Value **MaybeMask) { |
Alexey Samsonov | 535b6f9 | 2014-07-17 18:48:12 +0000 | [diff] [blame] | 1348 | // Skip memory accesses inserted by another instrumentation. |
Philip Reames | 27820f9 | 2019-09-04 17:28:48 +0000 | [diff] [blame^] | 1349 | if (I->hasMetadata("nosanitize")) return nullptr; |
Anna Zaks | 8ed1d81 | 2015-02-27 03:12:36 +0000 | [diff] [blame] | 1350 | |
Etienne Bergeron | 0ca0568 | 2016-09-30 17:46:32 +0000 | [diff] [blame] | 1351 | // Do not instrument the load fetching the dynamic shadow address. |
| 1352 | if (LocalDynamicShadow == I) |
| 1353 | return nullptr; |
| 1354 | |
Anna Zaks | 8ed1d81 | 2015-02-27 03:12:36 +0000 | [diff] [blame] | 1355 | Value *PtrOperand = nullptr; |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1356 | const DataLayout &DL = I->getModule()->getDataLayout(); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1357 | if (LoadInst *LI = dyn_cast<LoadInst>(I)) { |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1358 | if (!ClInstrumentReads) return nullptr; |
Kostya Serebryany | 9024160 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 1359 | *IsWrite = false; |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1360 | *TypeSize = DL.getTypeStoreSizeInBits(LI->getType()); |
Kostya Serebryany | c7895a8 | 2014-05-23 11:52:07 +0000 | [diff] [blame] | 1361 | *Alignment = LI->getAlignment(); |
Anna Zaks | 8ed1d81 | 2015-02-27 03:12:36 +0000 | [diff] [blame] | 1362 | PtrOperand = LI->getPointerOperand(); |
| 1363 | } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) { |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1364 | if (!ClInstrumentWrites) return nullptr; |
Kostya Serebryany | 9024160 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 1365 | *IsWrite = true; |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1366 | *TypeSize = DL.getTypeStoreSizeInBits(SI->getValueOperand()->getType()); |
Kostya Serebryany | c7895a8 | 2014-05-23 11:52:07 +0000 | [diff] [blame] | 1367 | *Alignment = SI->getAlignment(); |
Anna Zaks | 8ed1d81 | 2015-02-27 03:12:36 +0000 | [diff] [blame] | 1368 | PtrOperand = SI->getPointerOperand(); |
| 1369 | } else if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(I)) { |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1370 | if (!ClInstrumentAtomics) return nullptr; |
Kostya Serebryany | 9024160 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 1371 | *IsWrite = true; |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1372 | *TypeSize = DL.getTypeStoreSizeInBits(RMW->getValOperand()->getType()); |
Kostya Serebryany | c7895a8 | 2014-05-23 11:52:07 +0000 | [diff] [blame] | 1373 | *Alignment = 0; |
Anna Zaks | 8ed1d81 | 2015-02-27 03:12:36 +0000 | [diff] [blame] | 1374 | PtrOperand = RMW->getPointerOperand(); |
| 1375 | } else if (AtomicCmpXchgInst *XCHG = dyn_cast<AtomicCmpXchgInst>(I)) { |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1376 | if (!ClInstrumentAtomics) return nullptr; |
Kostya Serebryany | 9024160 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 1377 | *IsWrite = true; |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1378 | *TypeSize = DL.getTypeStoreSizeInBits(XCHG->getCompareOperand()->getType()); |
Kostya Serebryany | c7895a8 | 2014-05-23 11:52:07 +0000 | [diff] [blame] | 1379 | *Alignment = 0; |
Anna Zaks | 8ed1d81 | 2015-02-27 03:12:36 +0000 | [diff] [blame] | 1380 | PtrOperand = XCHG->getPointerOperand(); |
Filipe Cabecinhas | ec350b7 | 2016-11-15 22:37:30 +0000 | [diff] [blame] | 1381 | } else if (auto CI = dyn_cast<CallInst>(I)) { |
| 1382 | auto *F = dyn_cast<Function>(CI->getCalledValue()); |
| 1383 | if (F && (F->getName().startswith("llvm.masked.load.") || |
| 1384 | F->getName().startswith("llvm.masked.store."))) { |
| 1385 | unsigned OpOffset = 0; |
| 1386 | if (F->getName().startswith("llvm.masked.store.")) { |
Filipe Cabecinhas | 1e69017 | 2016-12-14 21:56:59 +0000 | [diff] [blame] | 1387 | if (!ClInstrumentWrites) |
| 1388 | return nullptr; |
Filipe Cabecinhas | ec350b7 | 2016-11-15 22:37:30 +0000 | [diff] [blame] | 1389 | // Masked store has an initial operand for the value. |
| 1390 | OpOffset = 1; |
| 1391 | *IsWrite = true; |
| 1392 | } else { |
Filipe Cabecinhas | 1e69017 | 2016-12-14 21:56:59 +0000 | [diff] [blame] | 1393 | if (!ClInstrumentReads) |
| 1394 | return nullptr; |
Filipe Cabecinhas | ec350b7 | 2016-11-15 22:37:30 +0000 | [diff] [blame] | 1395 | *IsWrite = false; |
| 1396 | } |
Filipe Cabecinhas | 4647b74 | 2017-01-06 15:24:51 +0000 | [diff] [blame] | 1397 | |
| 1398 | auto BasePtr = CI->getOperand(0 + OpOffset); |
| 1399 | auto Ty = cast<PointerType>(BasePtr->getType())->getElementType(); |
| 1400 | *TypeSize = DL.getTypeStoreSizeInBits(Ty); |
| 1401 | if (auto AlignmentConstant = |
| 1402 | dyn_cast<ConstantInt>(CI->getOperand(1 + OpOffset))) |
| 1403 | *Alignment = (unsigned)AlignmentConstant->getZExtValue(); |
| 1404 | else |
| 1405 | *Alignment = 1; // No alignment guarantees. We probably got Undef |
| 1406 | if (MaybeMask) |
| 1407 | *MaybeMask = CI->getOperand(2 + OpOffset); |
| 1408 | PtrOperand = BasePtr; |
Filipe Cabecinhas | ec350b7 | 2016-11-15 22:37:30 +0000 | [diff] [blame] | 1409 | } |
Kostya Serebryany | 9024160 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 1410 | } |
Anna Zaks | 8ed1d81 | 2015-02-27 03:12:36 +0000 | [diff] [blame] | 1411 | |
Anna Zaks | 644d9d3 | 2016-06-22 00:15:52 +0000 | [diff] [blame] | 1412 | if (PtrOperand) { |
Arnold Schwaighofer | 8d61e00 | 2017-02-15 20:43:43 +0000 | [diff] [blame] | 1413 | // Do not instrument acesses from different address spaces; we cannot deal |
| 1414 | // with them. |
Anna Zaks | 644d9d3 | 2016-06-22 00:15:52 +0000 | [diff] [blame] | 1415 | Type *PtrTy = cast<PointerType>(PtrOperand->getType()->getScalarType()); |
| 1416 | if (PtrTy->getPointerAddressSpace() != 0) |
| 1417 | return nullptr; |
Arnold Schwaighofer | 8d61e00 | 2017-02-15 20:43:43 +0000 | [diff] [blame] | 1418 | |
| 1419 | // Ignore swifterror addresses. |
| 1420 | // swifterror memory addresses are mem2reg promoted by instruction |
| 1421 | // selection. As such they cannot have regular uses like an instrumentation |
| 1422 | // function and it makes no sense to track them as memory. |
| 1423 | if (PtrOperand->isSwiftError()) |
| 1424 | return nullptr; |
Anna Zaks | 644d9d3 | 2016-06-22 00:15:52 +0000 | [diff] [blame] | 1425 | } |
| 1426 | |
Anna Zaks | 8ed1d81 | 2015-02-27 03:12:36 +0000 | [diff] [blame] | 1427 | // Treat memory accesses to promotable allocas as non-interesting since they |
| 1428 | // will not cause memory violations. This greatly speeds up the instrumented |
| 1429 | // executable at -O0. |
| 1430 | if (ClSkipPromotableAllocas) |
| 1431 | if (auto AI = dyn_cast_or_null<AllocaInst>(PtrOperand)) |
| 1432 | return isInterestingAlloca(*AI) ? AI : nullptr; |
| 1433 | |
| 1434 | return PtrOperand; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1435 | } |
| 1436 | |
Kostya Serebryany | 796f655 | 2014-02-27 12:45:36 +0000 | [diff] [blame] | 1437 | static bool isPointerOperand(Value *V) { |
| 1438 | return V->getType()->isPointerTy() || isa<PtrToIntInst>(V); |
| 1439 | } |
| 1440 | |
| 1441 | // This is a rough heuristic; it may cause both false positives and |
| 1442 | // false negatives. The proper implementation requires cooperation with |
| 1443 | // the frontend. |
Pierre Gousseau | a833c2b | 2019-03-28 10:51:24 +0000 | [diff] [blame] | 1444 | static bool isInterestingPointerComparison(Instruction *I) { |
Kostya Serebryany | 796f655 | 2014-02-27 12:45:36 +0000 | [diff] [blame] | 1445 | if (ICmpInst *Cmp = dyn_cast<ICmpInst>(I)) { |
Pierre Gousseau | a833c2b | 2019-03-28 10:51:24 +0000 | [diff] [blame] | 1446 | if (!Cmp->isRelational()) |
| 1447 | return false; |
| 1448 | } else { |
| 1449 | return false; |
| 1450 | } |
| 1451 | return isPointerOperand(I->getOperand(0)) && |
| 1452 | isPointerOperand(I->getOperand(1)); |
| 1453 | } |
| 1454 | |
| 1455 | // This is a rough heuristic; it may cause both false positives and |
| 1456 | // false negatives. The proper implementation requires cooperation with |
| 1457 | // the frontend. |
| 1458 | static bool isInterestingPointerSubtraction(Instruction *I) { |
| 1459 | if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) { |
| 1460 | if (BO->getOpcode() != Instruction::Sub) |
| 1461 | return false; |
Kostya Serebryany | 796f655 | 2014-02-27 12:45:36 +0000 | [diff] [blame] | 1462 | } else { |
| 1463 | return false; |
| 1464 | } |
Alexey Samsonov | 145b0fd | 2015-10-26 18:06:40 +0000 | [diff] [blame] | 1465 | return isPointerOperand(I->getOperand(0)) && |
| 1466 | isPointerOperand(I->getOperand(1)); |
Kostya Serebryany | 796f655 | 2014-02-27 12:45:36 +0000 | [diff] [blame] | 1467 | } |
| 1468 | |
Kostya Serebryany | d3d23be | 2013-10-16 14:06:14 +0000 | [diff] [blame] | 1469 | bool AddressSanitizer::GlobalIsLinkerInitialized(GlobalVariable *G) { |
| 1470 | // If a global variable does not have dynamic initialization we don't |
| 1471 | // have to instrument it. However, if a global does not have initializer |
| 1472 | // at all, we assume it has dynamic initializer (in other TU). |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 1473 | // |
| 1474 | // FIXME: Metadata should be attched directly to the global directly instead |
| 1475 | // of being added to llvm.asan.globals. |
Alexey Samsonov | 08f022a | 2014-07-11 22:36:02 +0000 | [diff] [blame] | 1476 | return G->hasInitializer() && !GlobalsMD.get(G).IsDynInit; |
Kostya Serebryany | d3d23be | 2013-10-16 14:06:14 +0000 | [diff] [blame] | 1477 | } |
| 1478 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1479 | void AddressSanitizer::instrumentPointerComparisonOrSubtraction( |
| 1480 | Instruction *I) { |
Kostya Serebryany | 796f655 | 2014-02-27 12:45:36 +0000 | [diff] [blame] | 1481 | IRBuilder<> IRB(I); |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 1482 | FunctionCallee F = isa<ICmpInst>(I) ? AsanPtrCmpFunction : AsanPtrSubFunction; |
Kostya Serebryany | 796f655 | 2014-02-27 12:45:36 +0000 | [diff] [blame] | 1483 | Value *Param[2] = {I->getOperand(0), I->getOperand(1)}; |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 1484 | for (Value *&i : Param) { |
| 1485 | if (i->getType()->isPointerTy()) |
| 1486 | i = IRB.CreatePointerCast(i, IntptrTy); |
Kostya Serebryany | 796f655 | 2014-02-27 12:45:36 +0000 | [diff] [blame] | 1487 | } |
David Blaikie | ff6409d | 2015-05-18 22:13:54 +0000 | [diff] [blame] | 1488 | IRB.CreateCall(F, Param); |
Kostya Serebryany | 796f655 | 2014-02-27 12:45:36 +0000 | [diff] [blame] | 1489 | } |
| 1490 | |
Filipe Cabecinhas | ec350b7 | 2016-11-15 22:37:30 +0000 | [diff] [blame] | 1491 | static void doInstrumentAddress(AddressSanitizer *Pass, Instruction *I, |
Filipe Cabecinhas | 4647b74 | 2017-01-06 15:24:51 +0000 | [diff] [blame] | 1492 | Instruction *InsertBefore, Value *Addr, |
| 1493 | unsigned Alignment, unsigned Granularity, |
| 1494 | uint32_t TypeSize, bool IsWrite, |
| 1495 | Value *SizeArgument, bool UseCalls, |
| 1496 | uint32_t Exp) { |
Filipe Cabecinhas | ec350b7 | 2016-11-15 22:37:30 +0000 | [diff] [blame] | 1497 | // Instrument a 1-, 2-, 4-, 8-, or 16- byte access with one check |
| 1498 | // if the data is properly aligned. |
| 1499 | if ((TypeSize == 8 || TypeSize == 16 || TypeSize == 32 || TypeSize == 64 || |
| 1500 | TypeSize == 128) && |
| 1501 | (Alignment >= Granularity || Alignment == 0 || Alignment >= TypeSize / 8)) |
Filipe Cabecinhas | 4647b74 | 2017-01-06 15:24:51 +0000 | [diff] [blame] | 1502 | return Pass->instrumentAddress(I, InsertBefore, Addr, TypeSize, IsWrite, |
| 1503 | nullptr, UseCalls, Exp); |
| 1504 | Pass->instrumentUnusualSizeOrAlignment(I, InsertBefore, Addr, TypeSize, |
| 1505 | IsWrite, nullptr, UseCalls, Exp); |
Filipe Cabecinhas | ec350b7 | 2016-11-15 22:37:30 +0000 | [diff] [blame] | 1506 | } |
| 1507 | |
| 1508 | static void instrumentMaskedLoadOrStore(AddressSanitizer *Pass, |
| 1509 | const DataLayout &DL, Type *IntptrTy, |
Filipe Cabecinhas | 4647b74 | 2017-01-06 15:24:51 +0000 | [diff] [blame] | 1510 | Value *Mask, Instruction *I, |
Filipe Cabecinhas | ec350b7 | 2016-11-15 22:37:30 +0000 | [diff] [blame] | 1511 | Value *Addr, unsigned Alignment, |
| 1512 | unsigned Granularity, uint32_t TypeSize, |
| 1513 | bool IsWrite, Value *SizeArgument, |
| 1514 | bool UseCalls, uint32_t Exp) { |
| 1515 | auto *VTy = cast<PointerType>(Addr->getType())->getElementType(); |
| 1516 | uint64_t ElemTypeSize = DL.getTypeStoreSizeInBits(VTy->getScalarType()); |
| 1517 | unsigned Num = VTy->getVectorNumElements(); |
| 1518 | auto Zero = ConstantInt::get(IntptrTy, 0); |
| 1519 | for (unsigned Idx = 0; Idx < Num; ++Idx) { |
Filipe Cabecinhas | 4647b74 | 2017-01-06 15:24:51 +0000 | [diff] [blame] | 1520 | Value *InstrumentedAddress = nullptr; |
| 1521 | Instruction *InsertBefore = I; |
| 1522 | if (auto *Vector = dyn_cast<ConstantVector>(Mask)) { |
| 1523 | // dyn_cast as we might get UndefValue |
| 1524 | if (auto *Masked = dyn_cast<ConstantInt>(Vector->getOperand(Idx))) { |
Craig Topper | 79ab643 | 2017-07-06 18:39:47 +0000 | [diff] [blame] | 1525 | if (Masked->isZero()) |
Filipe Cabecinhas | 4647b74 | 2017-01-06 15:24:51 +0000 | [diff] [blame] | 1526 | // Mask is constant false, so no instrumentation needed. |
| 1527 | continue; |
| 1528 | // If we have a true or undef value, fall through to doInstrumentAddress |
| 1529 | // with InsertBefore == I |
| 1530 | } |
| 1531 | } else { |
Filipe Cabecinhas | ec350b7 | 2016-11-15 22:37:30 +0000 | [diff] [blame] | 1532 | IRBuilder<> IRB(I); |
Filipe Cabecinhas | 4647b74 | 2017-01-06 15:24:51 +0000 | [diff] [blame] | 1533 | Value *MaskElem = IRB.CreateExtractElement(Mask, Idx); |
Chandler Carruth | 4a2d58e | 2018-10-15 09:34:05 +0000 | [diff] [blame] | 1534 | Instruction *ThenTerm = SplitBlockAndInsertIfThen(MaskElem, I, false); |
Filipe Cabecinhas | 4647b74 | 2017-01-06 15:24:51 +0000 | [diff] [blame] | 1535 | InsertBefore = ThenTerm; |
Filipe Cabecinhas | ec350b7 | 2016-11-15 22:37:30 +0000 | [diff] [blame] | 1536 | } |
Filipe Cabecinhas | 4647b74 | 2017-01-06 15:24:51 +0000 | [diff] [blame] | 1537 | |
| 1538 | IRBuilder<> IRB(InsertBefore); |
| 1539 | InstrumentedAddress = |
James Y Knight | 7716075 | 2019-02-01 20:44:47 +0000 | [diff] [blame] | 1540 | IRB.CreateGEP(VTy, Addr, {Zero, ConstantInt::get(IntptrTy, Idx)}); |
Filipe Cabecinhas | 4647b74 | 2017-01-06 15:24:51 +0000 | [diff] [blame] | 1541 | doInstrumentAddress(Pass, I, InsertBefore, InstrumentedAddress, Alignment, |
| 1542 | Granularity, ElemTypeSize, IsWrite, SizeArgument, |
| 1543 | UseCalls, Exp); |
Filipe Cabecinhas | ec350b7 | 2016-11-15 22:37:30 +0000 | [diff] [blame] | 1544 | } |
| 1545 | } |
| 1546 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1547 | void AddressSanitizer::instrumentMop(ObjectSizeOffsetVisitor &ObjSizeVis, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1548 | Instruction *I, bool UseCalls, |
| 1549 | const DataLayout &DL) { |
Axel Naumann | 4a12706 | 2012-09-17 14:20:57 +0000 | [diff] [blame] | 1550 | bool IsWrite = false; |
Kostya Serebryany | c7895a8 | 2014-05-23 11:52:07 +0000 | [diff] [blame] | 1551 | unsigned Alignment = 0; |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1552 | uint64_t TypeSize = 0; |
Filipe Cabecinhas | ec350b7 | 2016-11-15 22:37:30 +0000 | [diff] [blame] | 1553 | Value *MaybeMask = nullptr; |
| 1554 | Value *Addr = |
| 1555 | isInterestingMemoryAccess(I, &IsWrite, &TypeSize, &Alignment, &MaybeMask); |
Kostya Serebryany | 9024160 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 1556 | assert(Addr); |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1557 | |
Dmitry Vyukov | 618d580 | 2015-03-17 16:59:19 +0000 | [diff] [blame] | 1558 | // Optimization experiments. |
| 1559 | // The experiments can be used to evaluate potential optimizations that remove |
| 1560 | // instrumentation (assess false negatives). Instead of completely removing |
| 1561 | // some instrumentation, you set Exp to a non-zero value (mask of optimization |
| 1562 | // experiments that want to remove instrumentation of this instruction). |
| 1563 | // If Exp is non-zero, this pass will emit special calls into runtime |
| 1564 | // (e.g. __asan_report_exp_load1 instead of __asan_report_load1). These calls |
| 1565 | // make runtime terminate the program in a special way (with a different |
| 1566 | // exit status). Then you run the new compiler on a buggy corpus, collect |
| 1567 | // the special terminations (ideally, you don't see them at all -- no false |
| 1568 | // negatives) and make the decision on the optimization. |
| 1569 | uint32_t Exp = ClForceExperiment; |
| 1570 | |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 1571 | if (ClOpt && ClOptGlobals) { |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1572 | // If initialization order checking is disabled, a simple access to a |
| 1573 | // dynamically initialized global is always valid. |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1574 | GlobalVariable *G = dyn_cast<GlobalVariable>(GetUnderlyingObject(Addr, DL)); |
Hans Wennborg | 083ca9b | 2015-10-06 23:24:35 +0000 | [diff] [blame] | 1575 | if (G && (!ClInitializers || GlobalIsLinkerInitialized(G)) && |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1576 | isSafeAccess(ObjSizeVis, Addr, TypeSize)) { |
| 1577 | NumOptimizedAccessesToGlobalVar++; |
| 1578 | return; |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 1579 | } |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1580 | } |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 1581 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1582 | if (ClOpt && ClOptStack) { |
| 1583 | // A direct inbounds access to a stack variable is always valid. |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1584 | if (isa<AllocaInst>(GetUnderlyingObject(Addr, DL)) && |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1585 | isSafeAccess(ObjSizeVis, Addr, TypeSize)) { |
| 1586 | NumOptimizedAccessesToStackVar++; |
| 1587 | return; |
| 1588 | } |
| 1589 | } |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1590 | |
Kostya Serebryany | d3d23be | 2013-10-16 14:06:14 +0000 | [diff] [blame] | 1591 | if (IsWrite) |
| 1592 | NumInstrumentedWrites++; |
| 1593 | else |
| 1594 | NumInstrumentedReads++; |
| 1595 | |
Kostya Serebryany | c7895a8 | 2014-05-23 11:52:07 +0000 | [diff] [blame] | 1596 | unsigned Granularity = 1 << Mapping.Scale; |
Filipe Cabecinhas | ec350b7 | 2016-11-15 22:37:30 +0000 | [diff] [blame] | 1597 | if (MaybeMask) { |
Filipe Cabecinhas | 4647b74 | 2017-01-06 15:24:51 +0000 | [diff] [blame] | 1598 | instrumentMaskedLoadOrStore(this, DL, IntptrTy, MaybeMask, I, Addr, |
| 1599 | Alignment, Granularity, TypeSize, IsWrite, |
| 1600 | nullptr, UseCalls, Exp); |
Filipe Cabecinhas | ec350b7 | 2016-11-15 22:37:30 +0000 | [diff] [blame] | 1601 | } else { |
Filipe Cabecinhas | 4647b74 | 2017-01-06 15:24:51 +0000 | [diff] [blame] | 1602 | doInstrumentAddress(this, I, I, Addr, Alignment, Granularity, TypeSize, |
Filipe Cabecinhas | ec350b7 | 2016-11-15 22:37:30 +0000 | [diff] [blame] | 1603 | IsWrite, nullptr, UseCalls, Exp); |
| 1604 | } |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1605 | } |
| 1606 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1607 | Instruction *AddressSanitizer::generateCrashCode(Instruction *InsertBefore, |
| 1608 | Value *Addr, bool IsWrite, |
| 1609 | size_t AccessSizeIndex, |
Dmitry Vyukov | 618d580 | 2015-03-17 16:59:19 +0000 | [diff] [blame] | 1610 | Value *SizeArgument, |
| 1611 | uint32_t Exp) { |
Kostya Serebryany | fda7a13 | 2012-08-14 14:04:51 +0000 | [diff] [blame] | 1612 | IRBuilder<> IRB(InsertBefore); |
Dmitry Vyukov | 618d580 | 2015-03-17 16:59:19 +0000 | [diff] [blame] | 1613 | Value *ExpVal = Exp == 0 ? nullptr : ConstantInt::get(IRB.getInt32Ty(), Exp); |
| 1614 | CallInst *Call = nullptr; |
| 1615 | if (SizeArgument) { |
| 1616 | if (Exp == 0) |
David Blaikie | ff6409d | 2015-05-18 22:13:54 +0000 | [diff] [blame] | 1617 | Call = IRB.CreateCall(AsanErrorCallbackSized[IsWrite][0], |
| 1618 | {Addr, SizeArgument}); |
Dmitry Vyukov | 618d580 | 2015-03-17 16:59:19 +0000 | [diff] [blame] | 1619 | else |
David Blaikie | ff6409d | 2015-05-18 22:13:54 +0000 | [diff] [blame] | 1620 | Call = IRB.CreateCall(AsanErrorCallbackSized[IsWrite][1], |
| 1621 | {Addr, SizeArgument, ExpVal}); |
Dmitry Vyukov | 618d580 | 2015-03-17 16:59:19 +0000 | [diff] [blame] | 1622 | } else { |
| 1623 | if (Exp == 0) |
| 1624 | Call = |
| 1625 | IRB.CreateCall(AsanErrorCallback[IsWrite][0][AccessSizeIndex], Addr); |
| 1626 | else |
David Blaikie | ff6409d | 2015-05-18 22:13:54 +0000 | [diff] [blame] | 1627 | Call = IRB.CreateCall(AsanErrorCallback[IsWrite][1][AccessSizeIndex], |
| 1628 | {Addr, ExpVal}); |
Dmitry Vyukov | 618d580 | 2015-03-17 16:59:19 +0000 | [diff] [blame] | 1629 | } |
Kostya Serebryany | 3ece9bea | 2013-02-19 11:29:21 +0000 | [diff] [blame] | 1630 | |
Kostya Serebryany | f02c606 | 2012-07-20 09:54:50 +0000 | [diff] [blame] | 1631 | // We don't do Call->setDoesNotReturn() because the BB already has |
| 1632 | // UnreachableInst at the end. |
| 1633 | // This EmptyAsm is required to avoid callback merge. |
David Blaikie | ff6409d | 2015-05-18 22:13:54 +0000 | [diff] [blame] | 1634 | IRB.CreateCall(EmptyAsm, {}); |
Kostya Serebryany | 3411f2e | 2012-01-06 18:09:21 +0000 | [diff] [blame] | 1635 | return Call; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1636 | } |
| 1637 | |
Kostya Serebryany | c4ce5df | 2012-07-16 17:12:07 +0000 | [diff] [blame] | 1638 | Value *AddressSanitizer::createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong, |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1639 | Value *ShadowValue, |
| 1640 | uint32_t TypeSize) { |
Aaron Ballman | ef0fe1e | 2016-03-30 21:30:00 +0000 | [diff] [blame] | 1641 | size_t Granularity = static_cast<size_t>(1) << Mapping.Scale; |
Kostya Serebryany | 874dae6 | 2012-07-16 16:15:40 +0000 | [diff] [blame] | 1642 | // Addr & (Granularity - 1) |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1643 | Value *LastAccessedByte = |
| 1644 | IRB.CreateAnd(AddrLong, ConstantInt::get(IntptrTy, Granularity - 1)); |
Kostya Serebryany | 874dae6 | 2012-07-16 16:15:40 +0000 | [diff] [blame] | 1645 | // (Addr & (Granularity - 1)) + size - 1 |
| 1646 | if (TypeSize / 8 > 1) |
| 1647 | LastAccessedByte = IRB.CreateAdd( |
| 1648 | LastAccessedByte, ConstantInt::get(IntptrTy, TypeSize / 8 - 1)); |
| 1649 | // (uint8_t) ((Addr & (Granularity-1)) + size - 1) |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1650 | LastAccessedByte = |
| 1651 | IRB.CreateIntCast(LastAccessedByte, ShadowValue->getType(), false); |
Kostya Serebryany | 874dae6 | 2012-07-16 16:15:40 +0000 | [diff] [blame] | 1652 | // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue |
| 1653 | return IRB.CreateICmpSGE(LastAccessedByte, ShadowValue); |
| 1654 | } |
| 1655 | |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 1656 | void AddressSanitizer::instrumentAddress(Instruction *OrigIns, |
Kostya Serebryany | 0c02d26 | 2014-04-16 12:12:19 +0000 | [diff] [blame] | 1657 | Instruction *InsertBefore, Value *Addr, |
| 1658 | uint32_t TypeSize, bool IsWrite, |
Dmitry Vyukov | 618d580 | 2015-03-17 16:59:19 +0000 | [diff] [blame] | 1659 | Value *SizeArgument, bool UseCalls, |
| 1660 | uint32_t Exp) { |
Walter Lee | cdbb207 | 2018-05-18 04:10:38 +0000 | [diff] [blame] | 1661 | bool IsMyriad = TargetTriple.getVendor() == llvm::Triple::Myriad; |
| 1662 | |
Kostya Serebryany | 3ece9bea | 2013-02-19 11:29:21 +0000 | [diff] [blame] | 1663 | IRBuilder<> IRB(InsertBefore); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1664 | Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy); |
Kostya Serebryany | 0c02d26 | 2014-04-16 12:12:19 +0000 | [diff] [blame] | 1665 | size_t AccessSizeIndex = TypeSizeToSizeIndex(TypeSize); |
| 1666 | |
| 1667 | if (UseCalls) { |
Dmitry Vyukov | 618d580 | 2015-03-17 16:59:19 +0000 | [diff] [blame] | 1668 | if (Exp == 0) |
| 1669 | IRB.CreateCall(AsanMemoryAccessCallback[IsWrite][0][AccessSizeIndex], |
| 1670 | AddrLong); |
| 1671 | else |
David Blaikie | ff6409d | 2015-05-18 22:13:54 +0000 | [diff] [blame] | 1672 | IRB.CreateCall(AsanMemoryAccessCallback[IsWrite][1][AccessSizeIndex], |
| 1673 | {AddrLong, ConstantInt::get(IRB.getInt32Ty(), Exp)}); |
Kostya Serebryany | 0c02d26 | 2014-04-16 12:12:19 +0000 | [diff] [blame] | 1674 | return; |
| 1675 | } |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1676 | |
Walter Lee | cdbb207 | 2018-05-18 04:10:38 +0000 | [diff] [blame] | 1677 | if (IsMyriad) { |
| 1678 | // Strip the cache bit and do range check. |
| 1679 | // AddrLong &= ~kMyriadCacheBitMask32 |
| 1680 | AddrLong = IRB.CreateAnd(AddrLong, ~kMyriadCacheBitMask32); |
| 1681 | // Tag = AddrLong >> kMyriadTagShift |
| 1682 | Value *Tag = IRB.CreateLShr(AddrLong, kMyriadTagShift); |
| 1683 | // Tag == kMyriadDDRTag |
| 1684 | Value *TagCheck = |
| 1685 | IRB.CreateICmpEQ(Tag, ConstantInt::get(IntptrTy, kMyriadDDRTag)); |
| 1686 | |
Chandler Carruth | 4a2d58e | 2018-10-15 09:34:05 +0000 | [diff] [blame] | 1687 | Instruction *TagCheckTerm = |
| 1688 | SplitBlockAndInsertIfThen(TagCheck, InsertBefore, false, |
| 1689 | MDBuilder(*C).createBranchWeights(1, 100000)); |
Walter Lee | cdbb207 | 2018-05-18 04:10:38 +0000 | [diff] [blame] | 1690 | assert(cast<BranchInst>(TagCheckTerm)->isUnconditional()); |
| 1691 | IRB.SetInsertPoint(TagCheckTerm); |
| 1692 | InsertBefore = TagCheckTerm; |
| 1693 | } |
| 1694 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1695 | Type *ShadowTy = |
| 1696 | IntegerType::get(*C, std::max(8U, TypeSize >> Mapping.Scale)); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1697 | Type *ShadowPtrTy = PointerType::get(ShadowTy, 0); |
| 1698 | Value *ShadowPtr = memToShadow(AddrLong, IRB); |
| 1699 | Value *CmpVal = Constant::getNullValue(ShadowTy); |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1700 | Value *ShadowValue = |
James Y Knight | 14359ef | 2019-02-01 20:44:24 +0000 | [diff] [blame] | 1701 | IRB.CreateLoad(ShadowTy, IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy)); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1702 | |
| 1703 | Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal); |
Aaron Ballman | ef0fe1e | 2016-03-30 21:30:00 +0000 | [diff] [blame] | 1704 | size_t Granularity = 1ULL << Mapping.Scale; |
Chandler Carruth | 4a2d58e | 2018-10-15 09:34:05 +0000 | [diff] [blame] | 1705 | Instruction *CrashTerm = nullptr; |
Kostya Serebryany | fda7a13 | 2012-08-14 14:04:51 +0000 | [diff] [blame] | 1706 | |
Kostya Serebryany | 1e575ab | 2012-08-15 08:58:58 +0000 | [diff] [blame] | 1707 | if (ClAlwaysSlowPath || (TypeSize < 8 * Granularity)) { |
Kostya Serebryany | ad23852 | 2014-09-02 21:46:51 +0000 | [diff] [blame] | 1708 | // We use branch weights for the slow path check, to indicate that the slow |
| 1709 | // path is rarely taken. This seems to be the case for SPEC benchmarks. |
Chandler Carruth | 4a2d58e | 2018-10-15 09:34:05 +0000 | [diff] [blame] | 1710 | Instruction *CheckTerm = SplitBlockAndInsertIfThen( |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1711 | Cmp, InsertBefore, false, MDBuilder(*C).createBranchWeights(1, 100000)); |
Benjamin Kramer | 619c4e5 | 2015-04-10 11:24:51 +0000 | [diff] [blame] | 1712 | assert(cast<BranchInst>(CheckTerm)->isUnconditional()); |
Kostya Serebryany | f02c606 | 2012-07-20 09:54:50 +0000 | [diff] [blame] | 1713 | BasicBlock *NextBB = CheckTerm->getSuccessor(0); |
Kostya Serebryany | 874dae6 | 2012-07-16 16:15:40 +0000 | [diff] [blame] | 1714 | IRB.SetInsertPoint(CheckTerm); |
| 1715 | Value *Cmp2 = createSlowPathCmp(IRB, AddrLong, ShadowValue, TypeSize); |
Yury Gribov | d773198 | 2015-11-11 10:36:49 +0000 | [diff] [blame] | 1716 | if (Recover) { |
| 1717 | CrashTerm = SplitBlockAndInsertIfThen(Cmp2, CheckTerm, false); |
| 1718 | } else { |
| 1719 | BasicBlock *CrashBlock = |
Kostya Serebryany | b0e2506 | 2012-10-15 14:20:06 +0000 | [diff] [blame] | 1720 | BasicBlock::Create(*C, "", NextBB->getParent(), NextBB); |
Yury Gribov | d773198 | 2015-11-11 10:36:49 +0000 | [diff] [blame] | 1721 | CrashTerm = new UnreachableInst(*C, CrashBlock); |
| 1722 | BranchInst *NewTerm = BranchInst::Create(CrashBlock, NextBB, Cmp2); |
| 1723 | ReplaceInstWithInst(CheckTerm, NewTerm); |
| 1724 | } |
Kostya Serebryany | 874dae6 | 2012-07-16 16:15:40 +0000 | [diff] [blame] | 1725 | } else { |
Yury Gribov | d773198 | 2015-11-11 10:36:49 +0000 | [diff] [blame] | 1726 | CrashTerm = SplitBlockAndInsertIfThen(Cmp, InsertBefore, !Recover); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1727 | } |
Kostya Serebryany | fda7a13 | 2012-08-14 14:04:51 +0000 | [diff] [blame] | 1728 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1729 | Instruction *Crash = generateCrashCode(CrashTerm, AddrLong, IsWrite, |
Dmitry Vyukov | 618d580 | 2015-03-17 16:59:19 +0000 | [diff] [blame] | 1730 | AccessSizeIndex, SizeArgument, Exp); |
Kostya Serebryany | fda7a13 | 2012-08-14 14:04:51 +0000 | [diff] [blame] | 1731 | Crash->setDebugLoc(OrigIns->getDebugLoc()); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 1732 | } |
| 1733 | |
Dmitry Vyukov | 618d580 | 2015-03-17 16:59:19 +0000 | [diff] [blame] | 1734 | // Instrument unusual size or unusual alignment. |
| 1735 | // We can not do it with a single check, so we do 1-byte check for the first |
| 1736 | // and the last bytes. We call __asan_report_*_n(addr, real_size) to be able |
| 1737 | // to report the actual access size. |
| 1738 | void AddressSanitizer::instrumentUnusualSizeOrAlignment( |
Filipe Cabecinhas | 4647b74 | 2017-01-06 15:24:51 +0000 | [diff] [blame] | 1739 | Instruction *I, Instruction *InsertBefore, Value *Addr, uint32_t TypeSize, |
| 1740 | bool IsWrite, Value *SizeArgument, bool UseCalls, uint32_t Exp) { |
| 1741 | IRBuilder<> IRB(InsertBefore); |
Dmitry Vyukov | 618d580 | 2015-03-17 16:59:19 +0000 | [diff] [blame] | 1742 | Value *Size = ConstantInt::get(IntptrTy, TypeSize / 8); |
| 1743 | Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy); |
| 1744 | if (UseCalls) { |
| 1745 | if (Exp == 0) |
David Blaikie | ff6409d | 2015-05-18 22:13:54 +0000 | [diff] [blame] | 1746 | IRB.CreateCall(AsanMemoryAccessCallbackSized[IsWrite][0], |
| 1747 | {AddrLong, Size}); |
Dmitry Vyukov | 618d580 | 2015-03-17 16:59:19 +0000 | [diff] [blame] | 1748 | else |
David Blaikie | ff6409d | 2015-05-18 22:13:54 +0000 | [diff] [blame] | 1749 | IRB.CreateCall(AsanMemoryAccessCallbackSized[IsWrite][1], |
| 1750 | {AddrLong, Size, ConstantInt::get(IRB.getInt32Ty(), Exp)}); |
Dmitry Vyukov | 618d580 | 2015-03-17 16:59:19 +0000 | [diff] [blame] | 1751 | } else { |
| 1752 | Value *LastByte = IRB.CreateIntToPtr( |
| 1753 | IRB.CreateAdd(AddrLong, ConstantInt::get(IntptrTy, TypeSize / 8 - 1)), |
| 1754 | Addr->getType()); |
Filipe Cabecinhas | 4647b74 | 2017-01-06 15:24:51 +0000 | [diff] [blame] | 1755 | instrumentAddress(I, InsertBefore, Addr, 8, IsWrite, Size, false, Exp); |
| 1756 | instrumentAddress(I, InsertBefore, LastByte, 8, IsWrite, Size, false, Exp); |
Dmitry Vyukov | 618d580 | 2015-03-17 16:59:19 +0000 | [diff] [blame] | 1757 | } |
| 1758 | } |
| 1759 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 1760 | void ModuleAddressSanitizer::poisonOneInitializer(Function &GlobalInit, |
Alexey Samsonov | 96e239f | 2014-05-29 00:51:15 +0000 | [diff] [blame] | 1761 | GlobalValue *ModuleName) { |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 1762 | // Set up the arguments to our poison/unpoison functions. |
Duncan P. N. Exon Smith | e82c286 | 2015-10-13 17:39:10 +0000 | [diff] [blame] | 1763 | IRBuilder<> IRB(&GlobalInit.front(), |
| 1764 | GlobalInit.front().getFirstInsertionPt()); |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 1765 | |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 1766 | // 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] | 1767 | Value *ModuleNameAddr = ConstantExpr::getPointerCast(ModuleName, IntptrTy); |
| 1768 | IRB.CreateCall(AsanPoisonGlobals, ModuleNameAddr); |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 1769 | |
| 1770 | // Add calls to unpoison all globals before each return instruction. |
Alexey Samsonov | 96e239f | 2014-05-29 00:51:15 +0000 | [diff] [blame] | 1771 | for (auto &BB : GlobalInit.getBasicBlockList()) |
| 1772 | if (ReturnInst *RI = dyn_cast<ReturnInst>(BB.getTerminator())) |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 1773 | CallInst::Create(AsanUnpoisonGlobals, "", RI); |
Alexey Samsonov | 96e239f | 2014-05-29 00:51:15 +0000 | [diff] [blame] | 1774 | } |
| 1775 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 1776 | void ModuleAddressSanitizer::createInitializerPoisonCalls( |
Alexey Samsonov | 96e239f | 2014-05-29 00:51:15 +0000 | [diff] [blame] | 1777 | Module &M, GlobalValue *ModuleName) { |
| 1778 | GlobalVariable *GV = M.getGlobalVariable("llvm.global_ctors"); |
Evgeniy Stepanov | 716f0ff22 | 2017-04-27 20:27:23 +0000 | [diff] [blame] | 1779 | if (!GV) |
| 1780 | return; |
Alexey Samsonov | 96e239f | 2014-05-29 00:51:15 +0000 | [diff] [blame] | 1781 | |
Evgeniy Stepanov | 716f0ff22 | 2017-04-27 20:27:23 +0000 | [diff] [blame] | 1782 | ConstantArray *CA = dyn_cast<ConstantArray>(GV->getInitializer()); |
| 1783 | if (!CA) |
| 1784 | return; |
| 1785 | |
Alexey Samsonov | 96e239f | 2014-05-29 00:51:15 +0000 | [diff] [blame] | 1786 | for (Use &OP : CA->operands()) { |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1787 | if (isa<ConstantAggregateZero>(OP)) continue; |
Alexey Samsonov | 96e239f | 2014-05-29 00:51:15 +0000 | [diff] [blame] | 1788 | ConstantStruct *CS = cast<ConstantStruct>(OP); |
| 1789 | |
| 1790 | // Must have a function or null ptr. |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1791 | if (Function *F = dyn_cast<Function>(CS->getOperand(1))) { |
Kostya Serebryany | 34ddf87 | 2014-09-24 22:41:55 +0000 | [diff] [blame] | 1792 | if (F->getName() == kAsanModuleCtorName) continue; |
| 1793 | ConstantInt *Priority = dyn_cast<ConstantInt>(CS->getOperand(0)); |
| 1794 | // Don't instrument CTORs that will run before asan.module_ctor. |
Guanzhong Chen | b3292a8 | 2019-08-06 21:52:58 +0000 | [diff] [blame] | 1795 | if (Priority->getLimitedValue() <= GetCtorAndDtorPriority(TargetTriple)) |
| 1796 | continue; |
Kostya Serebryany | 34ddf87 | 2014-09-24 22:41:55 +0000 | [diff] [blame] | 1797 | poisonOneInitializer(*F, ModuleName); |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 1798 | } |
| 1799 | } |
| 1800 | } |
| 1801 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 1802 | bool ModuleAddressSanitizer::ShouldInstrumentGlobal(GlobalVariable *G) { |
Manuel Jacob | 5f6eaac | 2016-01-16 20:30:46 +0000 | [diff] [blame] | 1803 | Type *Ty = G->getValueType(); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1804 | LLVM_DEBUG(dbgs() << "GLOBAL: " << *G << "\n"); |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 1805 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 1806 | // FIXME: Metadata should be attched directly to the global directly instead |
| 1807 | // of being added to llvm.asan.globals. |
Alexey Samsonov | 08f022a | 2014-07-11 22:36:02 +0000 | [diff] [blame] | 1808 | if (GlobalsMD.get(G).IsBlacklisted) return false; |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 1809 | if (!Ty->isSized()) return false; |
| 1810 | if (!G->hasInitializer()) return false; |
Vedant Kumar | f5ac6d4 | 2016-06-22 17:30:58 +0000 | [diff] [blame] | 1811 | if (GlobalWasGeneratedByCompiler(G)) return false; // Our own globals. |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 1812 | // Two problems with thread-locals: |
| 1813 | // - The address of the main thread's copy can't be computed at link-time. |
| 1814 | // - Need to poison all copies, not just the main thread's one. |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1815 | if (G->isThreadLocal()) return false; |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 1816 | // For now, just ignore this Global if the alignment is large. |
| 1817 | if (G->getAlignment() > MinRedzoneSizeForGlobal()) return false; |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 1818 | |
Reid Kleckner | 85a8c12 | 2018-08-20 23:35:45 +0000 | [diff] [blame] | 1819 | // For non-COFF targets, only instrument globals known to be defined by this |
| 1820 | // TU. |
| 1821 | // FIXME: We can instrument comdat globals on ELF if we are using the |
| 1822 | // GC-friendly metadata scheme. |
| 1823 | if (!TargetTriple.isOSBinFormatCOFF()) { |
| 1824 | if (!G->hasExactDefinition() || G->hasComdat()) |
| 1825 | return false; |
| 1826 | } else { |
| 1827 | // On COFF, don't instrument non-ODR linkages. |
| 1828 | if (G->isInterposable()) |
| 1829 | return false; |
| 1830 | } |
| 1831 | |
| 1832 | // If a comdat is present, it must have a selection kind that implies ODR |
| 1833 | // semantics: no duplicates, any, or exact match. |
| 1834 | if (Comdat *C = G->getComdat()) { |
| 1835 | switch (C->getSelectionKind()) { |
| 1836 | case Comdat::Any: |
| 1837 | case Comdat::ExactMatch: |
| 1838 | case Comdat::NoDuplicates: |
| 1839 | break; |
| 1840 | case Comdat::Largest: |
| 1841 | case Comdat::SameSize: |
| 1842 | return false; |
| 1843 | } |
| 1844 | } |
| 1845 | |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 1846 | if (G->hasSection()) { |
Rafael Espindola | 83658d6 | 2016-05-11 18:21:59 +0000 | [diff] [blame] | 1847 | StringRef Section = G->getSection(); |
Kuba Brecka | 086e34b | 2014-12-05 21:32:46 +0000 | [diff] [blame] | 1848 | |
Anna Zaks | 1190460 | 2015-06-09 00:58:08 +0000 | [diff] [blame] | 1849 | // Globals from llvm.metadata aren't emitted, do not instrument them. |
| 1850 | if (Section == "llvm.metadata") return false; |
Anna Zaks | 785c075 | 2015-06-25 23:35:48 +0000 | [diff] [blame] | 1851 | // Do not instrument globals from special LLVM sections. |
Anna Zaks | 40148f1 | 2016-02-24 22:12:18 +0000 | [diff] [blame] | 1852 | if (Section.find("__llvm") != StringRef::npos || Section.find("__LLVM") != StringRef::npos) return false; |
Anna Zaks | 1190460 | 2015-06-09 00:58:08 +0000 | [diff] [blame] | 1853 | |
Alexey Samsonov | c1603b6 | 2015-09-15 23:05:48 +0000 | [diff] [blame] | 1854 | // Do not instrument function pointers to initialization and termination |
| 1855 | // routines: dynamic linker will not properly handle redzones. |
| 1856 | if (Section.startswith(".preinit_array") || |
| 1857 | Section.startswith(".init_array") || |
| 1858 | Section.startswith(".fini_array")) { |
| 1859 | return false; |
| 1860 | } |
| 1861 | |
Reid Kleckner | 12395b7 | 2018-06-13 20:47:21 +0000 | [diff] [blame] | 1862 | // On COFF, if the section name contains '$', it is highly likely that the |
| 1863 | // user is using section sorting to create an array of globals similar to |
| 1864 | // the way initialization callbacks are registered in .init_array and |
| 1865 | // .CRT$XCU. The ATL also registers things in .ATL$__[azm]. Adding redzones |
| 1866 | // to such globals is counterproductive, because the intent is that they |
| 1867 | // will form an array, and out-of-bounds accesses are expected. |
Hans Wennborg | 08b34a0 | 2017-11-13 23:47:58 +0000 | [diff] [blame] | 1868 | // See https://github.com/google/sanitizers/issues/305 |
Anna Zaks | 1190460 | 2015-06-09 00:58:08 +0000 | [diff] [blame] | 1869 | // and http://msdn.microsoft.com/en-US/en-en/library/bb918180(v=vs.120).aspx |
Reid Kleckner | 12395b7 | 2018-06-13 20:47:21 +0000 | [diff] [blame] | 1870 | if (TargetTriple.isOSBinFormatCOFF() && Section.contains('$')) { |
| 1871 | LLVM_DEBUG(dbgs() << "Ignoring global in sorted section (contains '$'): " |
| 1872 | << *G << "\n"); |
Anna Zaks | 1190460 | 2015-06-09 00:58:08 +0000 | [diff] [blame] | 1873 | return false; |
| 1874 | } |
| 1875 | |
Kuba Brecka | 1001bb5 | 2014-12-05 22:19:18 +0000 | [diff] [blame] | 1876 | if (TargetTriple.isOSBinFormatMachO()) { |
| 1877 | StringRef ParsedSegment, ParsedSection; |
| 1878 | unsigned TAA = 0, StubSize = 0; |
| 1879 | bool TAAParsed; |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 1880 | std::string ErrorCode = MCSectionMachO::ParseSectionSpecifier( |
| 1881 | Section, ParsedSegment, ParsedSection, TAA, TAAParsed, StubSize); |
Davide Italiano | c807f48 | 2015-11-19 21:50:08 +0000 | [diff] [blame] | 1882 | assert(ErrorCode.empty() && "Invalid section specifier."); |
Kuba Brecka | 1001bb5 | 2014-12-05 22:19:18 +0000 | [diff] [blame] | 1883 | |
| 1884 | // Ignore the globals from the __OBJC section. The ObjC runtime assumes |
| 1885 | // those conform to /usr/lib/objc/runtime.h, so we can't add redzones to |
| 1886 | // them. |
| 1887 | if (ParsedSegment == "__OBJC" || |
| 1888 | (ParsedSegment == "__DATA" && ParsedSection.startswith("__objc_"))) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1889 | LLVM_DEBUG(dbgs() << "Ignoring ObjC runtime global: " << *G << "\n"); |
Kuba Brecka | 1001bb5 | 2014-12-05 22:19:18 +0000 | [diff] [blame] | 1890 | return false; |
| 1891 | } |
Hans Wennborg | 08b34a0 | 2017-11-13 23:47:58 +0000 | [diff] [blame] | 1892 | // See https://github.com/google/sanitizers/issues/32 |
Kuba Brecka | 1001bb5 | 2014-12-05 22:19:18 +0000 | [diff] [blame] | 1893 | // Constant CFString instances are compiled in the following way: |
| 1894 | // -- the string buffer is emitted into |
| 1895 | // __TEXT,__cstring,cstring_literals |
| 1896 | // -- the constant NSConstantString structure referencing that buffer |
| 1897 | // is placed into __DATA,__cfstring |
| 1898 | // Therefore there's no point in placing redzones into __DATA,__cfstring. |
| 1899 | // Moreover, it causes the linker to crash on OS X 10.7 |
| 1900 | if (ParsedSegment == "__DATA" && ParsedSection == "__cfstring") { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1901 | LLVM_DEBUG(dbgs() << "Ignoring CFString: " << *G << "\n"); |
Kuba Brecka | 1001bb5 | 2014-12-05 22:19:18 +0000 | [diff] [blame] | 1902 | return false; |
| 1903 | } |
| 1904 | // The linker merges the contents of cstring_literals and removes the |
| 1905 | // trailing zeroes. |
| 1906 | if (ParsedSegment == "__TEXT" && (TAA & MachO::S_CSTRING_LITERALS)) { |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 1907 | LLVM_DEBUG(dbgs() << "Ignoring a cstring literal: " << *G << "\n"); |
Kuba Brecka | 1001bb5 | 2014-12-05 22:19:18 +0000 | [diff] [blame] | 1908 | return false; |
| 1909 | } |
| 1910 | } |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 1911 | } |
| 1912 | |
| 1913 | return true; |
| 1914 | } |
| 1915 | |
Ryan Govostes | 653f9d0 | 2016-03-28 20:28:57 +0000 | [diff] [blame] | 1916 | // On Mach-O platforms, we emit global metadata in a separate section of the |
| 1917 | // binary in order to allow the linker to properly dead strip. This is only |
| 1918 | // supported on recent versions of ld64. |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 1919 | bool ModuleAddressSanitizer::ShouldUseMachOGlobalsSection() const { |
Ryan Govostes | 653f9d0 | 2016-03-28 20:28:57 +0000 | [diff] [blame] | 1920 | if (!TargetTriple.isOSBinFormatMachO()) |
| 1921 | return false; |
| 1922 | |
| 1923 | if (TargetTriple.isMacOSX() && !TargetTriple.isMacOSXVersionLT(10, 11)) |
| 1924 | return true; |
| 1925 | if (TargetTriple.isiOS() /* or tvOS */ && !TargetTriple.isOSVersionLT(9)) |
Mike Aizatsky | 243b71f | 2016-04-21 22:00:13 +0000 | [diff] [blame] | 1926 | return true; |
Ryan Govostes | 653f9d0 | 2016-03-28 20:28:57 +0000 | [diff] [blame] | 1927 | if (TargetTriple.isWatchOS() && !TargetTriple.isOSVersionLT(2)) |
| 1928 | return true; |
| 1929 | |
| 1930 | return false; |
| 1931 | } |
| 1932 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 1933 | StringRef ModuleAddressSanitizer::getGlobalMetadataSection() const { |
Reid Kleckner | 01660a3 | 2016-11-21 20:40:37 +0000 | [diff] [blame] | 1934 | switch (TargetTriple.getObjectFormat()) { |
| 1935 | case Triple::COFF: return ".ASAN$GL"; |
| 1936 | case Triple::ELF: return "asan_globals"; |
| 1937 | case Triple::MachO: return "__DATA,__asan_globals,regular"; |
Hubert Tong | 2711e16 | 2019-07-19 08:46:18 +0000 | [diff] [blame] | 1938 | case Triple::Wasm: |
| 1939 | case Triple::XCOFF: |
| 1940 | report_fatal_error( |
| 1941 | "ModuleAddressSanitizer not implemented for object file format."); |
| 1942 | case Triple::UnknownObjectFormat: |
| 1943 | break; |
Reid Kleckner | 01660a3 | 2016-11-21 20:40:37 +0000 | [diff] [blame] | 1944 | } |
| 1945 | llvm_unreachable("unsupported object format"); |
| 1946 | } |
| 1947 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 1948 | void ModuleAddressSanitizer::initializeCallbacks(Module &M) { |
Alexey Samsonov | 788381b | 2012-12-25 12:28:20 +0000 | [diff] [blame] | 1949 | IRBuilder<> IRB(*C); |
Ryan Govostes | 653f9d0 | 2016-03-28 20:28:57 +0000 | [diff] [blame] | 1950 | |
Alexey Samsonov | 788381b | 2012-12-25 12:28:20 +0000 | [diff] [blame] | 1951 | // Declare our poisoning and unpoisoning functions. |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 1952 | AsanPoisonGlobals = |
| 1953 | M.getOrInsertFunction(kAsanPoisonGlobalsName, IRB.getVoidTy(), IntptrTy); |
| 1954 | AsanUnpoisonGlobals = |
| 1955 | M.getOrInsertFunction(kAsanUnpoisonGlobalsName, IRB.getVoidTy()); |
Ryan Govostes | 653f9d0 | 2016-03-28 20:28:57 +0000 | [diff] [blame] | 1956 | |
Alexey Samsonov | 788381b | 2012-12-25 12:28:20 +0000 | [diff] [blame] | 1957 | // Declare functions that register/unregister globals. |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 1958 | AsanRegisterGlobals = M.getOrInsertFunction( |
| 1959 | kAsanRegisterGlobalsName, IRB.getVoidTy(), IntptrTy, IntptrTy); |
| 1960 | AsanUnregisterGlobals = M.getOrInsertFunction( |
| 1961 | kAsanUnregisterGlobalsName, IRB.getVoidTy(), IntptrTy, IntptrTy); |
Ryan Govostes | 653f9d0 | 2016-03-28 20:28:57 +0000 | [diff] [blame] | 1962 | |
| 1963 | // Declare the functions that find globals in a shared object and then invoke |
| 1964 | // the (un)register function on them. |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 1965 | AsanRegisterImageGlobals = M.getOrInsertFunction( |
| 1966 | kAsanRegisterImageGlobalsName, IRB.getVoidTy(), IntptrTy); |
| 1967 | AsanUnregisterImageGlobals = M.getOrInsertFunction( |
| 1968 | kAsanUnregisterImageGlobalsName, IRB.getVoidTy(), IntptrTy); |
Mike Aizatsky | 243b71f | 2016-04-21 22:00:13 +0000 | [diff] [blame] | 1969 | |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 1970 | AsanRegisterElfGlobals = |
Evgeniy Stepanov | 964f466 | 2017-04-27 20:27:27 +0000 | [diff] [blame] | 1971 | M.getOrInsertFunction(kAsanRegisterElfGlobalsName, IRB.getVoidTy(), |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 1972 | IntptrTy, IntptrTy, IntptrTy); |
| 1973 | AsanUnregisterElfGlobals = |
Evgeniy Stepanov | 964f466 | 2017-04-27 20:27:27 +0000 | [diff] [blame] | 1974 | M.getOrInsertFunction(kAsanUnregisterElfGlobalsName, IRB.getVoidTy(), |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 1975 | IntptrTy, IntptrTy, IntptrTy); |
Alexey Samsonov | 788381b | 2012-12-25 12:28:20 +0000 | [diff] [blame] | 1976 | } |
| 1977 | |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 1978 | // Put the metadata and the instrumented global in the same group. This ensures |
| 1979 | // that the metadata is discarded if the instrumented global is discarded. |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 1980 | void ModuleAddressSanitizer::SetComdatForGlobalMetadata( |
Evgeniy Stepanov | 964f466 | 2017-04-27 20:27:27 +0000 | [diff] [blame] | 1981 | GlobalVariable *G, GlobalVariable *Metadata, StringRef InternalSuffix) { |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 1982 | Module &M = *G->getParent(); |
| 1983 | Comdat *C = G->getComdat(); |
| 1984 | if (!C) { |
| 1985 | if (!G->hasName()) { |
| 1986 | // If G is unnamed, it must be internal. Give it an artificial name |
| 1987 | // so we can put it in a comdat. |
| 1988 | assert(G->hasLocalLinkage()); |
| 1989 | G->setName(Twine(kAsanGenPrefix) + "_anon_global"); |
| 1990 | } |
Evgeniy Stepanov | 964f466 | 2017-04-27 20:27:27 +0000 | [diff] [blame] | 1991 | |
| 1992 | if (!InternalSuffix.empty() && G->hasLocalLinkage()) { |
| 1993 | std::string Name = G->getName(); |
| 1994 | Name += InternalSuffix; |
| 1995 | C = M.getOrInsertComdat(Name); |
| 1996 | } else { |
| 1997 | C = M.getOrInsertComdat(G->getName()); |
| 1998 | } |
| 1999 | |
Reid Kleckner | c212cc8 | 2017-10-31 16:16:08 +0000 | [diff] [blame] | 2000 | // Make this IMAGE_COMDAT_SELECT_NODUPLICATES on COFF. Also upgrade private |
| 2001 | // linkage to internal linkage so that a symbol table entry is emitted. This |
| 2002 | // is necessary in order to create the comdat group. |
| 2003 | if (TargetTriple.isOSBinFormatCOFF()) { |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 2004 | C->setSelectionKind(Comdat::NoDuplicates); |
Reid Kleckner | c212cc8 | 2017-10-31 16:16:08 +0000 | [diff] [blame] | 2005 | if (G->hasPrivateLinkage()) |
| 2006 | G->setLinkage(GlobalValue::InternalLinkage); |
| 2007 | } |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 2008 | G->setComdat(C); |
| 2009 | } |
| 2010 | |
| 2011 | assert(G->hasComdat()); |
| 2012 | Metadata->setComdat(G->getComdat()); |
| 2013 | } |
| 2014 | |
| 2015 | // Create a separate metadata global and put it in the appropriate ASan |
| 2016 | // global registration section. |
| 2017 | GlobalVariable * |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 2018 | ModuleAddressSanitizer::CreateMetadataGlobal(Module &M, Constant *Initializer, |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 2019 | StringRef OriginalName) { |
Evgeniy Stepanov | 90fd873 | 2017-04-11 22:28:13 +0000 | [diff] [blame] | 2020 | auto Linkage = TargetTriple.isOSBinFormatMachO() |
| 2021 | ? GlobalVariable::InternalLinkage |
| 2022 | : GlobalVariable::PrivateLinkage; |
| 2023 | GlobalVariable *Metadata = new GlobalVariable( |
| 2024 | M, Initializer->getType(), false, Linkage, Initializer, |
Peter Collingbourne | 6f0ecca | 2017-05-16 00:39:01 +0000 | [diff] [blame] | 2025 | Twine("__asan_global_") + GlobalValue::dropLLVMManglingEscape(OriginalName)); |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 2026 | Metadata->setSection(getGlobalMetadataSection()); |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 2027 | return Metadata; |
| 2028 | } |
| 2029 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 2030 | IRBuilder<> ModuleAddressSanitizer::CreateAsanModuleDtor(Module &M) { |
Evgeniy Stepanov | 716f0ff22 | 2017-04-27 20:27:23 +0000 | [diff] [blame] | 2031 | AsanDtorFunction = |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 2032 | Function::Create(FunctionType::get(Type::getVoidTy(*C), false), |
| 2033 | GlobalValue::InternalLinkage, kAsanModuleDtorName, &M); |
| 2034 | BasicBlock *AsanDtorBB = BasicBlock::Create(*C, "", AsanDtorFunction); |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 2035 | |
| 2036 | return IRBuilder<>(ReturnInst::Create(*C, AsanDtorBB)); |
| 2037 | } |
| 2038 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 2039 | void ModuleAddressSanitizer::InstrumentGlobalsCOFF( |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 2040 | IRBuilder<> &IRB, Module &M, ArrayRef<GlobalVariable *> ExtendedGlobals, |
| 2041 | ArrayRef<Constant *> MetadataInitializers) { |
| 2042 | assert(ExtendedGlobals.size() == MetadataInitializers.size()); |
Evgeniy Stepanov | f01c70f | 2017-01-12 23:26:20 +0000 | [diff] [blame] | 2043 | auto &DL = M.getDataLayout(); |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 2044 | |
| 2045 | for (size_t i = 0; i < ExtendedGlobals.size(); i++) { |
Evgeniy Stepanov | f01c70f | 2017-01-12 23:26:20 +0000 | [diff] [blame] | 2046 | Constant *Initializer = MetadataInitializers[i]; |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 2047 | GlobalVariable *G = ExtendedGlobals[i]; |
| 2048 | GlobalVariable *Metadata = |
Evgeniy Stepanov | f01c70f | 2017-01-12 23:26:20 +0000 | [diff] [blame] | 2049 | CreateMetadataGlobal(M, Initializer, G->getName()); |
| 2050 | |
| 2051 | // The MSVC linker always inserts padding when linking incrementally. We |
| 2052 | // cope with that by aligning each struct to its size, which must be a power |
| 2053 | // of two. |
| 2054 | unsigned SizeOfGlobalStruct = DL.getTypeAllocSize(Initializer->getType()); |
| 2055 | assert(isPowerOf2_32(SizeOfGlobalStruct) && |
| 2056 | "global metadata will not be padded appropriately"); |
| 2057 | Metadata->setAlignment(SizeOfGlobalStruct); |
| 2058 | |
Evgeniy Stepanov | 964f466 | 2017-04-27 20:27:27 +0000 | [diff] [blame] | 2059 | SetComdatForGlobalMetadata(G, Metadata, ""); |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 2060 | } |
| 2061 | } |
| 2062 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 2063 | void ModuleAddressSanitizer::InstrumentGlobalsELF( |
Evgeniy Stepanov | 964f466 | 2017-04-27 20:27:27 +0000 | [diff] [blame] | 2064 | IRBuilder<> &IRB, Module &M, ArrayRef<GlobalVariable *> ExtendedGlobals, |
| 2065 | ArrayRef<Constant *> MetadataInitializers, |
| 2066 | const std::string &UniqueModuleId) { |
| 2067 | assert(ExtendedGlobals.size() == MetadataInitializers.size()); |
| 2068 | |
| 2069 | SmallVector<GlobalValue *, 16> MetadataGlobals(ExtendedGlobals.size()); |
| 2070 | for (size_t i = 0; i < ExtendedGlobals.size(); i++) { |
| 2071 | GlobalVariable *G = ExtendedGlobals[i]; |
| 2072 | GlobalVariable *Metadata = |
| 2073 | CreateMetadataGlobal(M, MetadataInitializers[i], G->getName()); |
| 2074 | MDNode *MD = MDNode::get(M.getContext(), ValueAsMetadata::get(G)); |
| 2075 | Metadata->setMetadata(LLVMContext::MD_associated, MD); |
| 2076 | MetadataGlobals[i] = Metadata; |
| 2077 | |
| 2078 | SetComdatForGlobalMetadata(G, Metadata, UniqueModuleId); |
| 2079 | } |
| 2080 | |
| 2081 | // Update llvm.compiler.used, adding the new metadata globals. This is |
| 2082 | // needed so that during LTO these variables stay alive. |
| 2083 | if (!MetadataGlobals.empty()) |
| 2084 | appendToCompilerUsed(M, MetadataGlobals); |
| 2085 | |
| 2086 | // RegisteredFlag serves two purposes. First, we can pass it to dladdr() |
| 2087 | // to look up the loaded image that contains it. Second, we can store in it |
| 2088 | // whether registration has already occurred, to prevent duplicate |
| 2089 | // registration. |
| 2090 | // |
| 2091 | // Common linkage ensures that there is only one global per shared library. |
| 2092 | GlobalVariable *RegisteredFlag = new GlobalVariable( |
| 2093 | M, IntptrTy, false, GlobalVariable::CommonLinkage, |
| 2094 | ConstantInt::get(IntptrTy, 0), kAsanGlobalsRegisteredFlagName); |
| 2095 | RegisteredFlag->setVisibility(GlobalVariable::HiddenVisibility); |
| 2096 | |
| 2097 | // Create start and stop symbols. |
| 2098 | GlobalVariable *StartELFMetadata = new GlobalVariable( |
| 2099 | M, IntptrTy, false, GlobalVariable::ExternalWeakLinkage, nullptr, |
| 2100 | "__start_" + getGlobalMetadataSection()); |
| 2101 | StartELFMetadata->setVisibility(GlobalVariable::HiddenVisibility); |
| 2102 | GlobalVariable *StopELFMetadata = new GlobalVariable( |
| 2103 | M, IntptrTy, false, GlobalVariable::ExternalWeakLinkage, nullptr, |
| 2104 | "__stop_" + getGlobalMetadataSection()); |
| 2105 | StopELFMetadata->setVisibility(GlobalVariable::HiddenVisibility); |
| 2106 | |
| 2107 | // Create a call to register the globals with the runtime. |
| 2108 | IRB.CreateCall(AsanRegisterElfGlobals, |
| 2109 | {IRB.CreatePointerCast(RegisteredFlag, IntptrTy), |
| 2110 | IRB.CreatePointerCast(StartELFMetadata, IntptrTy), |
| 2111 | IRB.CreatePointerCast(StopELFMetadata, IntptrTy)}); |
| 2112 | |
| 2113 | // We also need to unregister globals at the end, e.g., when a shared library |
| 2114 | // gets closed. |
| 2115 | IRBuilder<> IRB_Dtor = CreateAsanModuleDtor(M); |
| 2116 | IRB_Dtor.CreateCall(AsanUnregisterElfGlobals, |
| 2117 | {IRB.CreatePointerCast(RegisteredFlag, IntptrTy), |
| 2118 | IRB.CreatePointerCast(StartELFMetadata, IntptrTy), |
| 2119 | IRB.CreatePointerCast(StopELFMetadata, IntptrTy)}); |
| 2120 | } |
| 2121 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 2122 | void ModuleAddressSanitizer::InstrumentGlobalsMachO( |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 2123 | IRBuilder<> &IRB, Module &M, ArrayRef<GlobalVariable *> ExtendedGlobals, |
| 2124 | ArrayRef<Constant *> MetadataInitializers) { |
| 2125 | assert(ExtendedGlobals.size() == MetadataInitializers.size()); |
| 2126 | |
| 2127 | // On recent Mach-O platforms, use a structure which binds the liveness of |
| 2128 | // the global variable to the metadata struct. Keep the list of "Liveness" GV |
| 2129 | // created to be added to llvm.compiler.used |
Serge Guelton | e38003f | 2017-05-09 19:31:13 +0000 | [diff] [blame] | 2130 | StructType *LivenessTy = StructType::get(IntptrTy, IntptrTy); |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 2131 | SmallVector<GlobalValue *, 16> LivenessGlobals(ExtendedGlobals.size()); |
| 2132 | |
| 2133 | for (size_t i = 0; i < ExtendedGlobals.size(); i++) { |
| 2134 | Constant *Initializer = MetadataInitializers[i]; |
| 2135 | GlobalVariable *G = ExtendedGlobals[i]; |
| 2136 | GlobalVariable *Metadata = |
| 2137 | CreateMetadataGlobal(M, Initializer, G->getName()); |
| 2138 | |
| 2139 | // On recent Mach-O platforms, we emit the global metadata in a way that |
| 2140 | // allows the linker to properly strip dead globals. |
Serge Guelton | e38003f | 2017-05-09 19:31:13 +0000 | [diff] [blame] | 2141 | auto LivenessBinder = |
| 2142 | ConstantStruct::get(LivenessTy, Initializer->getAggregateElement(0u), |
| 2143 | ConstantExpr::getPointerCast(Metadata, IntptrTy)); |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 2144 | GlobalVariable *Liveness = new GlobalVariable( |
| 2145 | M, LivenessTy, false, GlobalVariable::InternalLinkage, LivenessBinder, |
| 2146 | Twine("__asan_binder_") + G->getName()); |
| 2147 | Liveness->setSection("__DATA,__asan_liveness,regular,live_support"); |
| 2148 | LivenessGlobals[i] = Liveness; |
| 2149 | } |
| 2150 | |
| 2151 | // Update llvm.compiler.used, adding the new liveness globals. This is |
| 2152 | // needed so that during LTO these variables stay alive. The alternative |
| 2153 | // would be to have the linker handling the LTO symbols, but libLTO |
| 2154 | // current API does not expose access to the section for each symbol. |
| 2155 | if (!LivenessGlobals.empty()) |
| 2156 | appendToCompilerUsed(M, LivenessGlobals); |
| 2157 | |
| 2158 | // RegisteredFlag serves two purposes. First, we can pass it to dladdr() |
| 2159 | // to look up the loaded image that contains it. Second, we can store in it |
| 2160 | // whether registration has already occurred, to prevent duplicate |
| 2161 | // registration. |
| 2162 | // |
| 2163 | // common linkage ensures that there is only one global per shared library. |
| 2164 | GlobalVariable *RegisteredFlag = new GlobalVariable( |
| 2165 | M, IntptrTy, false, GlobalVariable::CommonLinkage, |
| 2166 | ConstantInt::get(IntptrTy, 0), kAsanGlobalsRegisteredFlagName); |
| 2167 | RegisteredFlag->setVisibility(GlobalVariable::HiddenVisibility); |
| 2168 | |
| 2169 | IRB.CreateCall(AsanRegisterImageGlobals, |
| 2170 | {IRB.CreatePointerCast(RegisteredFlag, IntptrTy)}); |
| 2171 | |
| 2172 | // We also need to unregister globals at the end, e.g., when a shared library |
| 2173 | // gets closed. |
| 2174 | IRBuilder<> IRB_Dtor = CreateAsanModuleDtor(M); |
| 2175 | IRB_Dtor.CreateCall(AsanUnregisterImageGlobals, |
| 2176 | {IRB.CreatePointerCast(RegisteredFlag, IntptrTy)}); |
| 2177 | } |
| 2178 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 2179 | void ModuleAddressSanitizer::InstrumentGlobalsWithMetadataArray( |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 2180 | IRBuilder<> &IRB, Module &M, ArrayRef<GlobalVariable *> ExtendedGlobals, |
| 2181 | ArrayRef<Constant *> MetadataInitializers) { |
| 2182 | assert(ExtendedGlobals.size() == MetadataInitializers.size()); |
| 2183 | unsigned N = ExtendedGlobals.size(); |
| 2184 | assert(N > 0); |
| 2185 | |
| 2186 | // On platforms that don't have a custom metadata section, we emit an array |
| 2187 | // of global metadata structures. |
| 2188 | ArrayType *ArrayOfGlobalStructTy = |
| 2189 | ArrayType::get(MetadataInitializers[0]->getType(), N); |
| 2190 | auto AllGlobals = new GlobalVariable( |
| 2191 | M, ArrayOfGlobalStructTy, false, GlobalVariable::InternalLinkage, |
| 2192 | ConstantArray::get(ArrayOfGlobalStructTy, MetadataInitializers), ""); |
Walter Lee | 2a2b69e | 2017-11-16 12:57:19 +0000 | [diff] [blame] | 2193 | if (Mapping.Scale > 3) |
| 2194 | AllGlobals->setAlignment(1ULL << Mapping.Scale); |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 2195 | |
| 2196 | IRB.CreateCall(AsanRegisterGlobals, |
| 2197 | {IRB.CreatePointerCast(AllGlobals, IntptrTy), |
| 2198 | ConstantInt::get(IntptrTy, N)}); |
| 2199 | |
| 2200 | // We also need to unregister globals at the end, e.g., when a shared library |
| 2201 | // gets closed. |
| 2202 | IRBuilder<> IRB_Dtor = CreateAsanModuleDtor(M); |
| 2203 | IRB_Dtor.CreateCall(AsanUnregisterGlobals, |
| 2204 | {IRB.CreatePointerCast(AllGlobals, IntptrTy), |
| 2205 | ConstantInt::get(IntptrTy, N)}); |
| 2206 | } |
| 2207 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2208 | // This function replaces all global variables with new variables that have |
| 2209 | // trailing redzones. It also creates a function that poisons |
| 2210 | // redzones and inserts this function into llvm.global_ctors. |
Evgeniy Stepanov | 716f0ff22 | 2017-04-27 20:27:23 +0000 | [diff] [blame] | 2211 | // Sets *CtorComdat to true if the global registration code emitted into the |
| 2212 | // asan constructor is comdat-compatible. |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 2213 | bool ModuleAddressSanitizer::InstrumentGlobals(IRBuilder<> &IRB, Module &M, |
| 2214 | bool *CtorComdat) { |
Evgeniy Stepanov | 716f0ff22 | 2017-04-27 20:27:23 +0000 | [diff] [blame] | 2215 | *CtorComdat = false; |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 2216 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2217 | SmallVector<GlobalVariable *, 16> GlobalsToChange; |
| 2218 | |
Alexey Samsonov | a02e664 | 2014-05-29 18:40:48 +0000 | [diff] [blame] | 2219 | for (auto &G : M.globals()) { |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 2220 | if (ShouldInstrumentGlobal(&G)) GlobalsToChange.push_back(&G); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2221 | } |
| 2222 | |
| 2223 | size_t n = GlobalsToChange.size(); |
Evgeniy Stepanov | 716f0ff22 | 2017-04-27 20:27:23 +0000 | [diff] [blame] | 2224 | if (n == 0) { |
| 2225 | *CtorComdat = true; |
| 2226 | return false; |
| 2227 | } |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2228 | |
Reid Kleckner | 7856583 | 2016-11-29 01:32:21 +0000 | [diff] [blame] | 2229 | auto &DL = M.getDataLayout(); |
Reid Kleckner | 01660a3 | 2016-11-21 20:40:37 +0000 | [diff] [blame] | 2230 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2231 | // A global is described by a structure |
| 2232 | // size_t beg; |
| 2233 | // size_t size; |
| 2234 | // size_t size_with_redzone; |
| 2235 | // const char *name; |
Kostya Serebryany | bd016bb | 2013-03-18 08:05:29 +0000 | [diff] [blame] | 2236 | // const char *module_name; |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 2237 | // size_t has_dynamic_init; |
Alexey Samsonov | 4f319cc | 2014-07-02 16:54:41 +0000 | [diff] [blame] | 2238 | // void *source_location; |
Maxim Ostapenko | b1e3f60 | 2016-02-08 08:30:57 +0000 | [diff] [blame] | 2239 | // size_t odr_indicator; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2240 | // We initialize an array of such structures and pass it to a run-time call. |
Alexey Samsonov | 4f319cc | 2014-07-02 16:54:41 +0000 | [diff] [blame] | 2241 | StructType *GlobalStructTy = |
| 2242 | StructType::get(IntptrTy, IntptrTy, IntptrTy, IntptrTy, IntptrTy, |
Serge Guelton | e38003f | 2017-05-09 19:31:13 +0000 | [diff] [blame] | 2243 | IntptrTy, IntptrTy, IntptrTy); |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 2244 | SmallVector<GlobalVariable *, 16> NewGlobals(n); |
| 2245 | SmallVector<Constant *, 16> Initializers(n); |
Kostya Serebryany | 20a7997 | 2012-11-22 03:18:50 +0000 | [diff] [blame] | 2246 | |
Alexey Samsonov | e1e26bf | 2013-03-26 13:05:41 +0000 | [diff] [blame] | 2247 | bool HasDynamicallyInitializedGlobals = false; |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 2248 | |
Alexey Samsonov | e1e26bf | 2013-03-26 13:05:41 +0000 | [diff] [blame] | 2249 | // We shouldn't merge same module names, as this string serves as unique |
| 2250 | // module ID in runtime. |
Alexander Potapenko | daf96ae | 2013-12-25 14:22:15 +0000 | [diff] [blame] | 2251 | GlobalVariable *ModuleName = createPrivateGlobalForString( |
Kostya Serebryany | d891ac9 | 2018-10-11 23:03:27 +0000 | [diff] [blame] | 2252 | M, M.getModuleIdentifier(), /*AllowMerging*/ false, kAsanGenPrefix); |
Kostya Serebryany | bd016bb | 2013-03-18 08:05:29 +0000 | [diff] [blame] | 2253 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2254 | for (size_t i = 0; i < n; i++) { |
Kostya Serebryany | e35d59a | 2013-01-24 10:43:50 +0000 | [diff] [blame] | 2255 | static const uint64_t kMaxGlobalRedzone = 1 << 18; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2256 | GlobalVariable *G = GlobalsToChange[i]; |
Alexey Samsonov | 15c9669 | 2014-07-12 00:42:52 +0000 | [diff] [blame] | 2257 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 2258 | // FIXME: Metadata should be attched directly to the global directly instead |
| 2259 | // of being added to llvm.asan.globals. |
Alexey Samsonov | 15c9669 | 2014-07-12 00:42:52 +0000 | [diff] [blame] | 2260 | auto MD = GlobalsMD.get(G); |
Maxim Ostapenko | b1e3f60 | 2016-02-08 08:30:57 +0000 | [diff] [blame] | 2261 | StringRef NameForGlobal = G->getName(); |
Alexey Samsonov | d9ad5ce | 2014-08-02 00:35:50 +0000 | [diff] [blame] | 2262 | // Create string holding the global name (use global name from metadata |
| 2263 | // if it's available, otherwise just write the name of global variable). |
| 2264 | GlobalVariable *Name = createPrivateGlobalForString( |
Maxim Ostapenko | b1e3f60 | 2016-02-08 08:30:57 +0000 | [diff] [blame] | 2265 | M, MD.Name.empty() ? NameForGlobal : MD.Name, |
Kostya Serebryany | d891ac9 | 2018-10-11 23:03:27 +0000 | [diff] [blame] | 2266 | /*AllowMerging*/ true, kAsanGenPrefix); |
Alexey Samsonov | 15c9669 | 2014-07-12 00:42:52 +0000 | [diff] [blame] | 2267 | |
Manuel Jacob | 5f6eaac | 2016-01-16 20:30:46 +0000 | [diff] [blame] | 2268 | Type *Ty = G->getValueType(); |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 2269 | uint64_t SizeInBytes = DL.getTypeAllocSize(Ty); |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 2270 | uint64_t MinRZ = MinRedzoneSizeForGlobal(); |
Kostya Serebryany | 87191f6 | 2013-01-24 10:35:40 +0000 | [diff] [blame] | 2271 | // MinRZ <= RZ <= kMaxGlobalRedzone |
| 2272 | // and trying to make RZ to be ~ 1/4 of SizeInBytes. |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 2273 | uint64_t RZ = std::max( |
| 2274 | MinRZ, std::min(kMaxGlobalRedzone, (SizeInBytes / MinRZ / 4) * MinRZ)); |
Kostya Serebryany | 87191f6 | 2013-01-24 10:35:40 +0000 | [diff] [blame] | 2275 | uint64_t RightRedzoneSize = RZ; |
| 2276 | // Round up to MinRZ |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 2277 | if (SizeInBytes % MinRZ) RightRedzoneSize += MinRZ - (SizeInBytes % MinRZ); |
Kostya Serebryany | 87191f6 | 2013-01-24 10:35:40 +0000 | [diff] [blame] | 2278 | assert(((RightRedzoneSize + SizeInBytes) % MinRZ) == 0); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2279 | Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize); |
| 2280 | |
Serge Guelton | e38003f | 2017-05-09 19:31:13 +0000 | [diff] [blame] | 2281 | StructType *NewTy = StructType::get(Ty, RightRedZoneTy); |
| 2282 | Constant *NewInitializer = ConstantStruct::get( |
| 2283 | NewTy, G->getInitializer(), Constant::getNullValue(RightRedZoneTy)); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2284 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2285 | // Create a new global variable with enough space for a redzone. |
Bill Wendling | 58f8cef | 2013-08-06 22:52:42 +0000 | [diff] [blame] | 2286 | GlobalValue::LinkageTypes Linkage = G->getLinkage(); |
| 2287 | if (G->isConstant() && Linkage == GlobalValue::PrivateLinkage) |
| 2288 | Linkage = GlobalValue::InternalLinkage; |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 2289 | GlobalVariable *NewGlobal = |
| 2290 | new GlobalVariable(M, NewTy, G->isConstant(), Linkage, NewInitializer, |
| 2291 | "", G, G->getThreadLocalMode()); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2292 | NewGlobal->copyAttributesFrom(G); |
Reid Kleckner | 85a8c12 | 2018-08-20 23:35:45 +0000 | [diff] [blame] | 2293 | NewGlobal->setComdat(G->getComdat()); |
Kostya Serebryany | 87191f6 | 2013-01-24 10:35:40 +0000 | [diff] [blame] | 2294 | NewGlobal->setAlignment(MinRZ); |
Vitaly Buka | d414e1b | 2018-12-20 00:30:18 +0000 | [diff] [blame] | 2295 | // Don't fold globals with redzones. ODR violation detector and redzone |
| 2296 | // poisoning implicitly creates a dependence on the global's address, so it |
| 2297 | // is no longer valid for it to be marked unnamed_addr. |
| 2298 | NewGlobal->setUnnamedAddr(GlobalValue::UnnamedAddr::None); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2299 | |
Kuba Brecka | a28c9e8 | 2016-10-31 18:51:58 +0000 | [diff] [blame] | 2300 | // Move null-terminated C strings to "__asan_cstring" section on Darwin. |
| 2301 | if (TargetTriple.isOSBinFormatMachO() && !G->hasSection() && |
| 2302 | G->isConstant()) { |
| 2303 | auto Seq = dyn_cast<ConstantDataSequential>(G->getInitializer()); |
| 2304 | if (Seq && Seq->isCString()) |
| 2305 | NewGlobal->setSection("__TEXT,__asan_cstring,regular"); |
| 2306 | } |
| 2307 | |
Adrian Prantl | 12fa3b3 | 2016-09-20 18:28:42 +0000 | [diff] [blame] | 2308 | // Transfer the debug info. The payload starts at offset zero so we can |
| 2309 | // copy the debug info over as is. |
Adrian Prantl | bceaaa9 | 2016-12-20 02:09:43 +0000 | [diff] [blame] | 2310 | SmallVector<DIGlobalVariableExpression *, 1> GVs; |
Adrian Prantl | 12fa3b3 | 2016-09-20 18:28:42 +0000 | [diff] [blame] | 2311 | G->getDebugInfo(GVs); |
| 2312 | for (auto *GV : GVs) |
| 2313 | NewGlobal->addDebugInfo(GV); |
| 2314 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2315 | Value *Indices2[2]; |
| 2316 | Indices2[0] = IRB.getInt32(0); |
| 2317 | Indices2[1] = IRB.getInt32(0); |
| 2318 | |
| 2319 | G->replaceAllUsesWith( |
David Blaikie | 4a2e73b | 2015-04-02 18:55:32 +0000 | [diff] [blame] | 2320 | ConstantExpr::getGetElementPtr(NewTy, NewGlobal, Indices2, true)); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2321 | NewGlobal->takeName(G); |
| 2322 | G->eraseFromParent(); |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 2323 | NewGlobals[i] = NewGlobal; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2324 | |
Alexey Samsonov | d9ad5ce | 2014-08-02 00:35:50 +0000 | [diff] [blame] | 2325 | Constant *SourceLoc; |
| 2326 | if (!MD.SourceLoc.empty()) { |
| 2327 | auto SourceLocGlobal = createPrivateGlobalForSourceLoc(M, MD.SourceLoc); |
| 2328 | SourceLoc = ConstantExpr::getPointerCast(SourceLocGlobal, IntptrTy); |
| 2329 | } else { |
| 2330 | SourceLoc = ConstantInt::get(IntptrTy, 0); |
| 2331 | } |
| 2332 | |
Maxim Ostapenko | b1e3f60 | 2016-02-08 08:30:57 +0000 | [diff] [blame] | 2333 | Constant *ODRIndicator = ConstantExpr::getNullValue(IRB.getInt8PtrTy()); |
| 2334 | GlobalValue *InstrumentedGlobal = NewGlobal; |
| 2335 | |
Kuba Brecka | a1ea64a | 2016-09-14 14:06:33 +0000 | [diff] [blame] | 2336 | bool CanUsePrivateAliases = |
Dan Gohman | 1209c7a | 2017-01-17 20:34:09 +0000 | [diff] [blame] | 2337 | TargetTriple.isOSBinFormatELF() || TargetTriple.isOSBinFormatMachO() || |
| 2338 | TargetTriple.isOSBinFormatWasm(); |
Vitaly Buka | 8076c57 | 2018-12-05 01:44:31 +0000 | [diff] [blame] | 2339 | if (CanUsePrivateAliases && UsePrivateAlias) { |
Maxim Ostapenko | b1e3f60 | 2016-02-08 08:30:57 +0000 | [diff] [blame] | 2340 | // Create local alias for NewGlobal to avoid crash on ODR between |
| 2341 | // instrumented and non-instrumented libraries. |
Vitaly Buka | d6bab09 | 2018-12-04 23:17:41 +0000 | [diff] [blame] | 2342 | InstrumentedGlobal = |
Vitaly Buka | 537cfc0 | 2018-12-04 00:36:14 +0000 | [diff] [blame] | 2343 | GlobalAlias::create(GlobalValue::PrivateLinkage, "", NewGlobal); |
Vitaly Buka | d6bab09 | 2018-12-04 23:17:41 +0000 | [diff] [blame] | 2344 | } |
Maxim Ostapenko | b1e3f60 | 2016-02-08 08:30:57 +0000 | [diff] [blame] | 2345 | |
Vitaly Buka | 07a55f2 | 2018-12-20 00:30:27 +0000 | [diff] [blame] | 2346 | // ODR should not happen for local linkage. |
| 2347 | if (NewGlobal->hasLocalLinkage()) { |
Vitaly Buka | a257639 | 2018-12-13 09:47:39 +0000 | [diff] [blame] | 2348 | ODRIndicator = ConstantExpr::getIntToPtr(ConstantInt::get(IntptrTy, -1), |
| 2349 | IRB.getInt8PtrTy()); |
| 2350 | } else if (UseOdrIndicator) { |
Maxim Ostapenko | b1e3f60 | 2016-02-08 08:30:57 +0000 | [diff] [blame] | 2351 | // With local aliases, we need to provide another externally visible |
| 2352 | // symbol __odr_asan_XXX to detect ODR violation. |
| 2353 | auto *ODRIndicatorSym = |
| 2354 | new GlobalVariable(M, IRB.getInt8Ty(), false, Linkage, |
| 2355 | Constant::getNullValue(IRB.getInt8Ty()), |
| 2356 | kODRGenPrefix + NameForGlobal, nullptr, |
| 2357 | NewGlobal->getThreadLocalMode()); |
| 2358 | |
| 2359 | // Set meaningful attributes for indicator symbol. |
| 2360 | ODRIndicatorSym->setVisibility(NewGlobal->getVisibility()); |
| 2361 | ODRIndicatorSym->setDLLStorageClass(NewGlobal->getDLLStorageClass()); |
| 2362 | ODRIndicatorSym->setAlignment(1); |
| 2363 | ODRIndicator = ODRIndicatorSym; |
Maxim Ostapenko | b1e3f60 | 2016-02-08 08:30:57 +0000 | [diff] [blame] | 2364 | } |
| 2365 | |
Reid Kleckner | 01660a3 | 2016-11-21 20:40:37 +0000 | [diff] [blame] | 2366 | Constant *Initializer = ConstantStruct::get( |
Maxim Ostapenko | b1e3f60 | 2016-02-08 08:30:57 +0000 | [diff] [blame] | 2367 | GlobalStructTy, |
| 2368 | ConstantExpr::getPointerCast(InstrumentedGlobal, IntptrTy), |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2369 | ConstantInt::get(IntptrTy, SizeInBytes), |
| 2370 | ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize), |
| 2371 | ConstantExpr::getPointerCast(Name, IntptrTy), |
Kostya Serebryany | bd016bb | 2013-03-18 08:05:29 +0000 | [diff] [blame] | 2372 | ConstantExpr::getPointerCast(ModuleName, IntptrTy), |
Maxim Ostapenko | b1e3f60 | 2016-02-08 08:30:57 +0000 | [diff] [blame] | 2373 | ConstantInt::get(IntptrTy, MD.IsDynInit), SourceLoc, |
Serge Guelton | e38003f | 2017-05-09 19:31:13 +0000 | [diff] [blame] | 2374 | ConstantExpr::getPointerCast(ODRIndicator, IntptrTy)); |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 2375 | |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 2376 | if (ClInitializers && MD.IsDynInit) HasDynamicallyInitializedGlobals = true; |
Kostya Serebryany | f4be019 | 2012-08-21 08:24:25 +0000 | [diff] [blame] | 2377 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2378 | LLVM_DEBUG(dbgs() << "NEW GLOBAL: " << *NewGlobal << "\n"); |
Reid Kleckner | 01660a3 | 2016-11-21 20:40:37 +0000 | [diff] [blame] | 2379 | |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 2380 | Initializers[i] = Initializer; |
| 2381 | } |
Reid Kleckner | 01660a3 | 2016-11-21 20:40:37 +0000 | [diff] [blame] | 2382 | |
Kuba Mracek | 8842da8 | 2018-03-08 21:02:18 +0000 | [diff] [blame] | 2383 | // Add instrumented globals to llvm.compiler.used list to avoid LTO from |
| 2384 | // ConstantMerge'ing them. |
| 2385 | SmallVector<GlobalValue *, 16> GlobalsToAddToUsedList; |
| 2386 | for (size_t i = 0; i < n; i++) { |
| 2387 | GlobalVariable *G = NewGlobals[i]; |
| 2388 | if (G->getName().empty()) continue; |
| 2389 | GlobalsToAddToUsedList.push_back(G); |
| 2390 | } |
| 2391 | appendToCompilerUsed(M, ArrayRef<GlobalValue *>(GlobalsToAddToUsedList)); |
| 2392 | |
Evgeniy Stepanov | 964f466 | 2017-04-27 20:27:27 +0000 | [diff] [blame] | 2393 | std::string ELFUniqueModuleId = |
| 2394 | (UseGlobalsGC && TargetTriple.isOSBinFormatELF()) ? getUniqueModuleId(&M) |
| 2395 | : ""; |
| 2396 | |
| 2397 | if (!ELFUniqueModuleId.empty()) { |
| 2398 | InstrumentGlobalsELF(IRB, M, NewGlobals, Initializers, ELFUniqueModuleId); |
| 2399 | *CtorComdat = true; |
| 2400 | } else if (UseGlobalsGC && TargetTriple.isOSBinFormatCOFF()) { |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 2401 | InstrumentGlobalsCOFF(IRB, M, NewGlobals, Initializers); |
Evgeniy Stepanov | 9e53608 | 2017-04-24 19:34:13 +0000 | [diff] [blame] | 2402 | } else if (UseGlobalsGC && ShouldUseMachOGlobalsSection()) { |
Evgeniy Stepanov | 5d31d08 | 2017-01-12 23:03:03 +0000 | [diff] [blame] | 2403 | InstrumentGlobalsMachO(IRB, M, NewGlobals, Initializers); |
| 2404 | } else { |
| 2405 | InstrumentGlobalsWithMetadataArray(IRB, M, NewGlobals, Initializers); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2406 | } |
| 2407 | |
Reid Kleckner | 01660a3 | 2016-11-21 20:40:37 +0000 | [diff] [blame] | 2408 | // Create calls for poisoning before initializers run and unpoisoning after. |
| 2409 | if (HasDynamicallyInitializedGlobals) |
| 2410 | createInitializerPoisonCalls(M, ModuleName); |
| 2411 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2412 | LLVM_DEBUG(dbgs() << M); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2413 | return true; |
| 2414 | } |
| 2415 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 2416 | int ModuleAddressSanitizer::GetAsanVersion(const Module &M) const { |
Evgeniy Stepanov | 8e7018d | 2017-11-20 17:41:57 +0000 | [diff] [blame] | 2417 | int LongSize = M.getDataLayout().getPointerSizeInBits(); |
| 2418 | bool isAndroid = Triple(M.getTargetTriple()).isAndroid(); |
| 2419 | int Version = 8; |
| 2420 | // 32-bit Android is one version ahead because of the switch to dynamic |
| 2421 | // shadow. |
| 2422 | Version += (LongSize == 32 && isAndroid); |
| 2423 | return Version; |
| 2424 | } |
| 2425 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 2426 | bool ModuleAddressSanitizer::instrumentModule(Module &M) { |
Evgeniy Stepanov | 19f75fc | 2014-06-03 14:16:00 +0000 | [diff] [blame] | 2427 | initializeCallbacks(M); |
| 2428 | |
Evgeniy Stepanov | 039af60 | 2017-04-06 19:55:09 +0000 | [diff] [blame] | 2429 | if (CompileKernel) |
| 2430 | return false; |
Alex Shlyapnikov | bbd5cc6 | 2017-03-27 23:11:50 +0000 | [diff] [blame] | 2431 | |
Evgeniy Stepanov | 716f0ff22 | 2017-04-27 20:27:23 +0000 | [diff] [blame] | 2432 | // Create a module constructor. A destructor is created lazily because not all |
| 2433 | // platforms, and not all modules need it. |
Julian Lettner | 3ae9b9d | 2019-08-28 20:40:55 +0000 | [diff] [blame] | 2434 | std::string AsanVersion = std::to_string(GetAsanVersion(M)); |
Evgeniy Stepanov | 8e7018d | 2017-11-20 17:41:57 +0000 | [diff] [blame] | 2435 | std::string VersionCheckName = |
Julian Lettner | 3ae9b9d | 2019-08-28 20:40:55 +0000 | [diff] [blame] | 2436 | ClInsertVersionCheck ? (kAsanVersionCheckNamePrefix + AsanVersion) : ""; |
Evgeniy Stepanov | 039af60 | 2017-04-06 19:55:09 +0000 | [diff] [blame] | 2437 | std::tie(AsanCtorFunction, std::ignore) = createSanitizerCtorAndInitFunctions( |
| 2438 | M, kAsanModuleCtorName, kAsanInitName, /*InitArgTypes=*/{}, |
Evgeniy Stepanov | 8e7018d | 2017-11-20 17:41:57 +0000 | [diff] [blame] | 2439 | /*InitArgs=*/{}, VersionCheckName); |
Evgeniy Stepanov | 039af60 | 2017-04-06 19:55:09 +0000 | [diff] [blame] | 2440 | |
Evgeniy Stepanov | 716f0ff22 | 2017-04-27 20:27:23 +0000 | [diff] [blame] | 2441 | bool CtorComdat = true; |
Evgeniy Stepanov | 039af60 | 2017-04-06 19:55:09 +0000 | [diff] [blame] | 2442 | bool Changed = false; |
Alexander Potapenko | b9b73ef | 2015-06-19 12:19:07 +0000 | [diff] [blame] | 2443 | // TODO(glider): temporarily disabled globals instrumentation for KASan. |
Evgeniy Stepanov | 039af60 | 2017-04-06 19:55:09 +0000 | [diff] [blame] | 2444 | if (ClGlobals) { |
| 2445 | IRBuilder<> IRB(AsanCtorFunction->getEntryBlock().getTerminator()); |
Evgeniy Stepanov | 716f0ff22 | 2017-04-27 20:27:23 +0000 | [diff] [blame] | 2446 | Changed |= InstrumentGlobals(IRB, M, &CtorComdat); |
| 2447 | } |
| 2448 | |
Guanzhong Chen | b3292a8 | 2019-08-06 21:52:58 +0000 | [diff] [blame] | 2449 | const uint64_t Priority = GetCtorAndDtorPriority(TargetTriple); |
| 2450 | |
Evgeniy Stepanov | 716f0ff22 | 2017-04-27 20:27:23 +0000 | [diff] [blame] | 2451 | // Put the constructor and destructor in comdat if both |
| 2452 | // (1) global instrumentation is not TU-specific |
| 2453 | // (2) target is ELF. |
Evgeniy Stepanov | b56012b | 2017-05-15 20:43:42 +0000 | [diff] [blame] | 2454 | if (UseCtorComdat && TargetTriple.isOSBinFormatELF() && CtorComdat) { |
Evgeniy Stepanov | 716f0ff22 | 2017-04-27 20:27:23 +0000 | [diff] [blame] | 2455 | AsanCtorFunction->setComdat(M.getOrInsertComdat(kAsanModuleCtorName)); |
Guanzhong Chen | b3292a8 | 2019-08-06 21:52:58 +0000 | [diff] [blame] | 2456 | appendToGlobalCtors(M, AsanCtorFunction, Priority, AsanCtorFunction); |
Evgeniy Stepanov | 716f0ff22 | 2017-04-27 20:27:23 +0000 | [diff] [blame] | 2457 | if (AsanDtorFunction) { |
| 2458 | AsanDtorFunction->setComdat(M.getOrInsertComdat(kAsanModuleDtorName)); |
Guanzhong Chen | b3292a8 | 2019-08-06 21:52:58 +0000 | [diff] [blame] | 2459 | appendToGlobalDtors(M, AsanDtorFunction, Priority, AsanDtorFunction); |
Evgeniy Stepanov | 716f0ff22 | 2017-04-27 20:27:23 +0000 | [diff] [blame] | 2460 | } |
| 2461 | } else { |
Guanzhong Chen | b3292a8 | 2019-08-06 21:52:58 +0000 | [diff] [blame] | 2462 | appendToGlobalCtors(M, AsanCtorFunction, Priority); |
Evgeniy Stepanov | 716f0ff22 | 2017-04-27 20:27:23 +0000 | [diff] [blame] | 2463 | if (AsanDtorFunction) |
Guanzhong Chen | b3292a8 | 2019-08-06 21:52:58 +0000 | [diff] [blame] | 2464 | appendToGlobalDtors(M, AsanDtorFunction, Priority); |
Alexander Potapenko | b9b73ef | 2015-06-19 12:19:07 +0000 | [diff] [blame] | 2465 | } |
Evgeniy Stepanov | 19f75fc | 2014-06-03 14:16:00 +0000 | [diff] [blame] | 2466 | |
| 2467 | return Changed; |
| 2468 | } |
| 2469 | |
Kostya Serebryany | 4b929da | 2012-11-29 09:54:21 +0000 | [diff] [blame] | 2470 | void AddressSanitizer::initializeCallbacks(Module &M) { |
| 2471 | IRBuilder<> IRB(*C); |
Kostya Serebryany | 4273bb0 | 2012-07-16 14:09:42 +0000 | [diff] [blame] | 2472 | // Create __asan_report* callbacks. |
Dmitry Vyukov | 618d580 | 2015-03-17 16:59:19 +0000 | [diff] [blame] | 2473 | // IsWrite, TypeSize and Exp are encoded in the function name. |
| 2474 | for (int Exp = 0; Exp < 2; Exp++) { |
| 2475 | for (size_t AccessIsWrite = 0; AccessIsWrite <= 1; AccessIsWrite++) { |
| 2476 | const std::string TypeStr = AccessIsWrite ? "store" : "load"; |
| 2477 | const std::string ExpStr = Exp ? "exp_" : ""; |
Yury Gribov | d773198 | 2015-11-11 10:36:49 +0000 | [diff] [blame] | 2478 | const std::string EndingStr = Recover ? "_noabort" : ""; |
Serge Guelton | 59a2d7b | 2017-04-11 15:01:18 +0000 | [diff] [blame] | 2479 | |
| 2480 | SmallVector<Type *, 3> Args2 = {IntptrTy, IntptrTy}; |
| 2481 | SmallVector<Type *, 2> Args1{1, IntptrTy}; |
| 2482 | if (Exp) { |
| 2483 | Type *ExpType = Type::getInt32Ty(*C); |
| 2484 | Args2.push_back(ExpType); |
| 2485 | Args1.push_back(ExpType); |
Dmitry Vyukov | 618d580 | 2015-03-17 16:59:19 +0000 | [diff] [blame] | 2486 | } |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 2487 | AsanErrorCallbackSized[AccessIsWrite][Exp] = M.getOrInsertFunction( |
| 2488 | kAsanReportErrorTemplate + ExpStr + TypeStr + "_n" + EndingStr, |
| 2489 | FunctionType::get(IRB.getVoidTy(), Args2, false)); |
Serge Guelton | 59a2d7b | 2017-04-11 15:01:18 +0000 | [diff] [blame] | 2490 | |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 2491 | AsanMemoryAccessCallbackSized[AccessIsWrite][Exp] = M.getOrInsertFunction( |
| 2492 | ClMemoryAccessCallbackPrefix + ExpStr + TypeStr + "N" + EndingStr, |
| 2493 | FunctionType::get(IRB.getVoidTy(), Args2, false)); |
Serge Guelton | 59a2d7b | 2017-04-11 15:01:18 +0000 | [diff] [blame] | 2494 | |
NAKAMURA Takumi | a1e97a7 | 2017-08-28 06:47:47 +0000 | [diff] [blame] | 2495 | for (size_t AccessSizeIndex = 0; AccessSizeIndex < kNumberOfAccessSizes; |
| 2496 | AccessSizeIndex++) { |
| 2497 | const std::string Suffix = TypeStr + itostr(1ULL << AccessSizeIndex); |
| 2498 | AsanErrorCallback[AccessIsWrite][Exp][AccessSizeIndex] = |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 2499 | M.getOrInsertFunction( |
NAKAMURA Takumi | a1e97a7 | 2017-08-28 06:47:47 +0000 | [diff] [blame] | 2500 | kAsanReportErrorTemplate + ExpStr + Suffix + EndingStr, |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 2501 | FunctionType::get(IRB.getVoidTy(), Args1, false)); |
Serge Guelton | 59a2d7b | 2017-04-11 15:01:18 +0000 | [diff] [blame] | 2502 | |
NAKAMURA Takumi | a1e97a7 | 2017-08-28 06:47:47 +0000 | [diff] [blame] | 2503 | AsanMemoryAccessCallback[AccessIsWrite][Exp][AccessSizeIndex] = |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 2504 | M.getOrInsertFunction( |
NAKAMURA Takumi | a1e97a7 | 2017-08-28 06:47:47 +0000 | [diff] [blame] | 2505 | ClMemoryAccessCallbackPrefix + ExpStr + Suffix + EndingStr, |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 2506 | FunctionType::get(IRB.getVoidTy(), Args1, false)); |
NAKAMURA Takumi | a1e97a7 | 2017-08-28 06:47:47 +0000 | [diff] [blame] | 2507 | } |
| 2508 | } |
Kostya Serebryany | 4273bb0 | 2012-07-16 14:09:42 +0000 | [diff] [blame] | 2509 | } |
Kostya Serebryany | 86332c0 | 2014-04-21 07:10:43 +0000 | [diff] [blame] | 2510 | |
Alexander Potapenko | b9b73ef | 2015-06-19 12:19:07 +0000 | [diff] [blame] | 2511 | const std::string MemIntrinCallbackPrefix = |
| 2512 | CompileKernel ? std::string("") : ClMemoryAccessCallbackPrefix; |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 2513 | AsanMemmove = M.getOrInsertFunction(MemIntrinCallbackPrefix + "memmove", |
| 2514 | IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), |
| 2515 | IRB.getInt8PtrTy(), IntptrTy); |
| 2516 | AsanMemcpy = M.getOrInsertFunction(MemIntrinCallbackPrefix + "memcpy", |
| 2517 | IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), |
| 2518 | IRB.getInt8PtrTy(), IntptrTy); |
| 2519 | AsanMemset = M.getOrInsertFunction(MemIntrinCallbackPrefix + "memset", |
| 2520 | IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), |
| 2521 | IRB.getInt32Ty(), IntptrTy); |
Kostya Serebryany | 94c81ca | 2014-04-21 11:50:42 +0000 | [diff] [blame] | 2522 | |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 2523 | AsanHandleNoReturnFunc = |
| 2524 | M.getOrInsertFunction(kAsanHandleNoReturnName, IRB.getVoidTy()); |
Kostya Serebryany | 4f8f0c5 | 2014-10-27 18:13:56 +0000 | [diff] [blame] | 2525 | |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 2526 | AsanPtrCmpFunction = |
| 2527 | M.getOrInsertFunction(kAsanPtrCmp, IRB.getVoidTy(), IntptrTy, IntptrTy); |
| 2528 | AsanPtrSubFunction = |
| 2529 | M.getOrInsertFunction(kAsanPtrSub, IRB.getVoidTy(), IntptrTy, IntptrTy); |
Kostya Serebryany | f02c606 | 2012-07-20 09:54:50 +0000 | [diff] [blame] | 2530 | // We insert an empty inline asm after __asan_report* to avoid callback merge. |
| 2531 | EmptyAsm = InlineAsm::get(FunctionType::get(IRB.getVoidTy(), false), |
| 2532 | StringRef(""), StringRef(""), |
| 2533 | /*hasSideEffects=*/true); |
Evgeniy Stepanov | 8e7018d | 2017-11-20 17:41:57 +0000 | [diff] [blame] | 2534 | if (Mapping.InGlobal) |
| 2535 | AsanShadowGlobal = M.getOrInsertGlobal("__asan_shadow", |
| 2536 | ArrayType::get(IRB.getInt8Ty(), 0)); |
Kostya Serebryany | 4b929da | 2012-11-29 09:54:21 +0000 | [diff] [blame] | 2537 | } |
| 2538 | |
Kostya Serebryany | 22ddcfd | 2012-01-30 23:50:10 +0000 | [diff] [blame] | 2539 | bool AddressSanitizer::maybeInsertAsanInitAtFunctionEntry(Function &F) { |
| 2540 | // For each NSObject descendant having a +load method, this method is invoked |
| 2541 | // by the ObjC runtime before any of the static constructors is called. |
| 2542 | // Therefore we need to instrument such methods with a call to __asan_init |
| 2543 | // at the beginning in order to initialize our runtime before any access to |
| 2544 | // the shadow memory. |
| 2545 | // We cannot just ignore these methods, because they may call other |
| 2546 | // instrumented functions. |
| 2547 | if (F.getName().find(" load]") != std::string::npos) { |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 2548 | FunctionCallee AsanInitFunction = |
Evgeniy Stepanov | 039af60 | 2017-04-06 19:55:09 +0000 | [diff] [blame] | 2549 | declareSanitizerInitFunction(*F.getParent(), kAsanInitName, {}); |
Duncan P. N. Exon Smith | e82c286 | 2015-10-13 17:39:10 +0000 | [diff] [blame] | 2550 | IRBuilder<> IRB(&F.front(), F.front().begin()); |
David Blaikie | ff6409d | 2015-05-18 22:13:54 +0000 | [diff] [blame] | 2551 | IRB.CreateCall(AsanInitFunction, {}); |
Kostya Serebryany | 22ddcfd | 2012-01-30 23:50:10 +0000 | [diff] [blame] | 2552 | return true; |
| 2553 | } |
| 2554 | return false; |
| 2555 | } |
| 2556 | |
Etienne Bergeron | 0ca0568 | 2016-09-30 17:46:32 +0000 | [diff] [blame] | 2557 | void AddressSanitizer::maybeInsertDynamicShadowAtFunctionEntry(Function &F) { |
| 2558 | // Generate code only when dynamic addressing is needed. |
Evgeniy Stepanov | cff19ee | 2017-11-15 00:11:51 +0000 | [diff] [blame] | 2559 | if (Mapping.Offset != kDynamicShadowSentinel) |
Etienne Bergeron | 0ca0568 | 2016-09-30 17:46:32 +0000 | [diff] [blame] | 2560 | return; |
| 2561 | |
| 2562 | IRBuilder<> IRB(&F.front().front()); |
Evgeniy Stepanov | 8e7018d | 2017-11-20 17:41:57 +0000 | [diff] [blame] | 2563 | if (Mapping.InGlobal) { |
| 2564 | if (ClWithIfuncSuppressRemat) { |
| 2565 | // An empty inline asm with input reg == output reg. |
| 2566 | // An opaque pointer-to-int cast, basically. |
| 2567 | InlineAsm *Asm = InlineAsm::get( |
| 2568 | FunctionType::get(IntptrTy, {AsanShadowGlobal->getType()}, false), |
| 2569 | StringRef(""), StringRef("=r,0"), |
| 2570 | /*hasSideEffects=*/false); |
| 2571 | LocalDynamicShadow = |
| 2572 | IRB.CreateCall(Asm, {AsanShadowGlobal}, ".asan.shadow"); |
| 2573 | } else { |
| 2574 | LocalDynamicShadow = |
| 2575 | IRB.CreatePointerCast(AsanShadowGlobal, IntptrTy, ".asan.shadow"); |
| 2576 | } |
| 2577 | } else { |
| 2578 | Value *GlobalDynamicAddress = F.getParent()->getOrInsertGlobal( |
| 2579 | kAsanShadowMemoryDynamicAddress, IntptrTy); |
James Y Knight | 14359ef | 2019-02-01 20:44:24 +0000 | [diff] [blame] | 2580 | LocalDynamicShadow = IRB.CreateLoad(IntptrTy, GlobalDynamicAddress); |
Evgeniy Stepanov | 8e7018d | 2017-11-20 17:41:57 +0000 | [diff] [blame] | 2581 | } |
Etienne Bergeron | 0ca0568 | 2016-09-30 17:46:32 +0000 | [diff] [blame] | 2582 | } |
| 2583 | |
Reid Kleckner | 2f90755 | 2015-07-21 17:40:14 +0000 | [diff] [blame] | 2584 | void AddressSanitizer::markEscapedLocalAllocas(Function &F) { |
| 2585 | // Find the one possible call to llvm.localescape and pre-mark allocas passed |
| 2586 | // to it as uninteresting. This assumes we haven't started processing allocas |
| 2587 | // yet. This check is done up front because iterating the use list in |
| 2588 | // isInterestingAlloca would be algorithmically slower. |
| 2589 | assert(ProcessedAllocas.empty() && "must process localescape before allocas"); |
| 2590 | |
| 2591 | // Try to get the declaration of llvm.localescape. If it's not in the module, |
| 2592 | // we can exit early. |
| 2593 | if (!F.getParent()->getFunction("llvm.localescape")) return; |
| 2594 | |
| 2595 | // Look for a call to llvm.localescape call in the entry block. It can't be in |
| 2596 | // any other block. |
| 2597 | for (Instruction &I : F.getEntryBlock()) { |
| 2598 | IntrinsicInst *II = dyn_cast<IntrinsicInst>(&I); |
| 2599 | if (II && II->getIntrinsicID() == Intrinsic::localescape) { |
| 2600 | // We found a call. Mark all the allocas passed in as uninteresting. |
| 2601 | for (Value *Arg : II->arg_operands()) { |
| 2602 | AllocaInst *AI = dyn_cast<AllocaInst>(Arg->stripPointerCasts()); |
| 2603 | assert(AI && AI->isStaticAlloca() && |
| 2604 | "non-static alloca arg to localescape"); |
| 2605 | ProcessedAllocas[AI] = false; |
| 2606 | } |
| 2607 | break; |
| 2608 | } |
| 2609 | } |
| 2610 | } |
| 2611 | |
Leonard Chan | 436fb2b | 2019-02-13 22:22:48 +0000 | [diff] [blame] | 2612 | bool AddressSanitizer::instrumentFunction(Function &F, |
| 2613 | const TargetLibraryInfo *TLI) { |
Kostya Serebryany | 6b5b58d | 2013-03-18 07:33:49 +0000 | [diff] [blame] | 2614 | if (F.getLinkage() == GlobalValue::AvailableExternallyLinkage) return false; |
Etienne Bergeron | 752f883 | 2016-09-14 17:18:37 +0000 | [diff] [blame] | 2615 | if (!ClDebugFunc.empty() && ClDebugFunc == F.getName()) return false; |
Etienne Bergeron | 52e4743 | 2016-09-15 15:35:59 +0000 | [diff] [blame] | 2616 | if (F.getName().startswith("__asan_")) return false; |
Yury Gribov | 3ae427d | 2014-12-01 08:47:58 +0000 | [diff] [blame] | 2617 | |
Etienne Bergeron | 78582b2 | 2016-09-15 15:45:05 +0000 | [diff] [blame] | 2618 | bool FunctionModified = false; |
| 2619 | |
Kostya Serebryany | cf880b9 | 2013-02-26 06:58:09 +0000 | [diff] [blame] | 2620 | // If needed, insert __asan_init before checking for SanitizeAddress attr. |
Etienne Bergeron | 752f883 | 2016-09-14 17:18:37 +0000 | [diff] [blame] | 2621 | // This function needs to be called even if the function body is not |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 2622 | // instrumented. |
Etienne Bergeron | 78582b2 | 2016-09-15 15:45:05 +0000 | [diff] [blame] | 2623 | if (maybeInsertAsanInitAtFunctionEntry(F)) |
| 2624 | FunctionModified = true; |
Fangrui Song | f78650a | 2018-07-30 19:41:25 +0000 | [diff] [blame] | 2625 | |
Etienne Bergeron | 752f883 | 2016-09-14 17:18:37 +0000 | [diff] [blame] | 2626 | // Leave if the function doesn't need instrumentation. |
Etienne Bergeron | 78582b2 | 2016-09-15 15:45:05 +0000 | [diff] [blame] | 2627 | if (!F.hasFnAttribute(Attribute::SanitizeAddress)) return FunctionModified; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2628 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2629 | LLVM_DEBUG(dbgs() << "ASAN instrumenting:\n" << F << "\n"); |
Etienne Bergeron | 752f883 | 2016-09-14 17:18:37 +0000 | [diff] [blame] | 2630 | |
| 2631 | initializeCallbacks(*F.getParent()); |
Bill Wendling | c9b22d7 | 2012-10-09 07:45:08 +0000 | [diff] [blame] | 2632 | |
Reid Kleckner | 2f90755 | 2015-07-21 17:40:14 +0000 | [diff] [blame] | 2633 | FunctionStateRAII CleanupObj(this); |
| 2634 | |
Etienne Bergeron | 0ca0568 | 2016-09-30 17:46:32 +0000 | [diff] [blame] | 2635 | maybeInsertDynamicShadowAtFunctionEntry(F); |
| 2636 | |
Reid Kleckner | 2f90755 | 2015-07-21 17:40:14 +0000 | [diff] [blame] | 2637 | // We can't instrument allocas used with llvm.localescape. Only static allocas |
| 2638 | // can be passed to that intrinsic. |
| 2639 | markEscapedLocalAllocas(F); |
| 2640 | |
Bill Wendling | c9b22d7 | 2012-10-09 07:45:08 +0000 | [diff] [blame] | 2641 | // We want to instrument every address only once per basic block (unless there |
| 2642 | // are calls between uses). |
Florian Hahn | a1cc848 | 2018-06-12 11:16:56 +0000 | [diff] [blame] | 2643 | SmallPtrSet<Value *, 16> TempsToInstrument; |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 2644 | SmallVector<Instruction *, 16> ToInstrument; |
| 2645 | SmallVector<Instruction *, 8> NoReturnCalls; |
| 2646 | SmallVector<BasicBlock *, 16> AllBlocks; |
| 2647 | SmallVector<Instruction *, 16> PointerComparisonsOrSubtracts; |
Kostya Serebryany | 9f5213f | 2013-06-26 09:18:17 +0000 | [diff] [blame] | 2648 | int NumAllocas = 0; |
Kostya Serebryany | 9024160 | 2012-05-30 09:04:06 +0000 | [diff] [blame] | 2649 | bool IsWrite; |
Kostya Serebryany | c7895a8 | 2014-05-23 11:52:07 +0000 | [diff] [blame] | 2650 | unsigned Alignment; |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 2651 | uint64_t TypeSize; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2652 | |
| 2653 | // Fill the set of memory operations to instrument. |
Alexey Samsonov | a02e664 | 2014-05-29 18:40:48 +0000 | [diff] [blame] | 2654 | for (auto &BB : F) { |
| 2655 | AllBlocks.push_back(&BB); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2656 | TempsToInstrument.clear(); |
Kostya Serebryany | c387ca7 | 2012-06-28 09:34:41 +0000 | [diff] [blame] | 2657 | int NumInsnsPerBB = 0; |
Alexey Samsonov | a02e664 | 2014-05-29 18:40:48 +0000 | [diff] [blame] | 2658 | for (auto &Inst : BB) { |
| 2659 | if (LooksLikeCodeInBug11395(&Inst)) return false; |
Filipe Cabecinhas | dd96887 | 2016-12-14 21:57:04 +0000 | [diff] [blame] | 2660 | Value *MaybeMask = nullptr; |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 2661 | if (Value *Addr = isInterestingMemoryAccess(&Inst, &IsWrite, &TypeSize, |
Filipe Cabecinhas | dd96887 | 2016-12-14 21:57:04 +0000 | [diff] [blame] | 2662 | &Alignment, &MaybeMask)) { |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2663 | if (ClOpt && ClOptSameTemp) { |
Filipe Cabecinhas | dd96887 | 2016-12-14 21:57:04 +0000 | [diff] [blame] | 2664 | // If we have a mask, skip instrumentation if we've already |
| 2665 | // instrumented the full object. But don't add to TempsToInstrument |
| 2666 | // because we might get another load/store with a different mask. |
| 2667 | if (MaybeMask) { |
| 2668 | if (TempsToInstrument.count(Addr)) |
| 2669 | continue; // We've seen this (whole) temp in the current BB. |
| 2670 | } else { |
| 2671 | if (!TempsToInstrument.insert(Addr).second) |
| 2672 | continue; // We've seen this temp in the current BB. |
| 2673 | } |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2674 | } |
Pierre Gousseau | a833c2b | 2019-03-28 10:51:24 +0000 | [diff] [blame] | 2675 | } else if (((ClInvalidPointerPairs || ClInvalidPointerCmp) && |
| 2676 | isInterestingPointerComparison(&Inst)) || |
| 2677 | ((ClInvalidPointerPairs || ClInvalidPointerSub) && |
| 2678 | isInterestingPointerSubtraction(&Inst))) { |
Alexey Samsonov | a02e664 | 2014-05-29 18:40:48 +0000 | [diff] [blame] | 2679 | PointerComparisonsOrSubtracts.push_back(&Inst); |
Kostya Serebryany | 796f655 | 2014-02-27 12:45:36 +0000 | [diff] [blame] | 2680 | continue; |
Alexey Samsonov | a02e664 | 2014-05-29 18:40:48 +0000 | [diff] [blame] | 2681 | } else if (isa<MemIntrinsic>(Inst)) { |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2682 | // ok, take it. |
| 2683 | } else { |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 2684 | if (isa<AllocaInst>(Inst)) NumAllocas++; |
Alexey Samsonov | a02e664 | 2014-05-29 18:40:48 +0000 | [diff] [blame] | 2685 | CallSite CS(&Inst); |
Kostya Serebryany | 699ac28 | 2013-02-20 12:35:15 +0000 | [diff] [blame] | 2686 | if (CS) { |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2687 | // A call inside BB. |
| 2688 | TempsToInstrument.clear(); |
Philip Reames | 27820f9 | 2019-09-04 17:28:48 +0000 | [diff] [blame^] | 2689 | if (CS.doesNotReturn() && !CS->hasMetadata("nosanitize")) |
Julian Lettner | f82d892 | 2019-02-02 02:05:16 +0000 | [diff] [blame] | 2690 | NoReturnCalls.push_back(CS.getInstruction()); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2691 | } |
Marcin Koscielnicki | 3feda22 | 2016-06-18 10:10:37 +0000 | [diff] [blame] | 2692 | if (CallInst *CI = dyn_cast<CallInst>(&Inst)) |
| 2693 | maybeMarkSanitizerLibraryCallNoBuiltin(CI, TLI); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2694 | continue; |
| 2695 | } |
Alexey Samsonov | a02e664 | 2014-05-29 18:40:48 +0000 | [diff] [blame] | 2696 | ToInstrument.push_back(&Inst); |
Kostya Serebryany | c387ca7 | 2012-06-28 09:34:41 +0000 | [diff] [blame] | 2697 | NumInsnsPerBB++; |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 2698 | if (NumInsnsPerBB >= ClMaxInsnsToInstrumentPerBB) break; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2699 | } |
| 2700 | } |
| 2701 | |
Alexander Potapenko | b9b73ef | 2015-06-19 12:19:07 +0000 | [diff] [blame] | 2702 | bool UseCalls = |
Alexander Potapenko | b9b73ef | 2015-06-19 12:19:07 +0000 | [diff] [blame] | 2703 | (ClInstrumentationWithCallsThreshold >= 0 && |
| 2704 | ToInstrument.size() > (unsigned)ClInstrumentationWithCallsThreshold); |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 2705 | const DataLayout &DL = F.getParent()->getDataLayout(); |
George Burgess IV | 56c7e88 | 2017-03-21 20:08:59 +0000 | [diff] [blame] | 2706 | ObjectSizeOpts ObjSizeOpts; |
| 2707 | ObjSizeOpts.RoundToAlign = true; |
| 2708 | ObjectSizeOffsetVisitor ObjSizeVis(DL, TLI, F.getContext(), ObjSizeOpts); |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 2709 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2710 | // Instrument. |
| 2711 | int NumInstrumented = 0; |
Alexey Samsonov | a02e664 | 2014-05-29 18:40:48 +0000 | [diff] [blame] | 2712 | for (auto Inst : ToInstrument) { |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2713 | if (ClDebugMin < 0 || ClDebugMax < 0 || |
| 2714 | (NumInstrumented >= ClDebugMin && NumInstrumented <= ClDebugMax)) { |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 2715 | if (isInterestingMemoryAccess(Inst, &IsWrite, &TypeSize, &Alignment)) |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 2716 | instrumentMop(ObjSizeVis, Inst, UseCalls, |
| 2717 | F.getParent()->getDataLayout()); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2718 | else |
Kostya Serebryany | 94c81ca | 2014-04-21 11:50:42 +0000 | [diff] [blame] | 2719 | instrumentMemIntrinsic(cast<MemIntrinsic>(Inst)); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2720 | } |
| 2721 | NumInstrumented++; |
| 2722 | } |
| 2723 | |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 2724 | FunctionStackPoisoner FSP(F, *this); |
| 2725 | bool ChangedStack = FSP.runOnFunction(); |
Kostya Serebryany | 154a54d | 2012-02-08 21:36:17 +0000 | [diff] [blame] | 2726 | |
Julian Lettner | f82d892 | 2019-02-02 02:05:16 +0000 | [diff] [blame] | 2727 | // We must unpoison the stack before NoReturn calls (throw, _exit, etc). |
Hans Wennborg | 08b34a0 | 2017-11-13 23:47:58 +0000 | [diff] [blame] | 2728 | // See e.g. https://github.com/google/sanitizers/issues/37 |
Alexey Samsonov | a02e664 | 2014-05-29 18:40:48 +0000 | [diff] [blame] | 2729 | for (auto CI : NoReturnCalls) { |
Kostya Serebryany | 154a54d | 2012-02-08 21:36:17 +0000 | [diff] [blame] | 2730 | IRBuilder<> IRB(CI); |
David Blaikie | ff6409d | 2015-05-18 22:13:54 +0000 | [diff] [blame] | 2731 | IRB.CreateCall(AsanHandleNoReturnFunc, {}); |
Kostya Serebryany | 154a54d | 2012-02-08 21:36:17 +0000 | [diff] [blame] | 2732 | } |
| 2733 | |
Alexey Samsonov | a02e664 | 2014-05-29 18:40:48 +0000 | [diff] [blame] | 2734 | for (auto Inst : PointerComparisonsOrSubtracts) { |
| 2735 | instrumentPointerComparisonOrSubtraction(Inst); |
Kostya Serebryany | 796f655 | 2014-02-27 12:45:36 +0000 | [diff] [blame] | 2736 | NumInstrumented++; |
| 2737 | } |
| 2738 | |
Etienne Bergeron | 78582b2 | 2016-09-15 15:45:05 +0000 | [diff] [blame] | 2739 | if (NumInstrumented > 0 || ChangedStack || !NoReturnCalls.empty()) |
| 2740 | FunctionModified = true; |
Bob Wilson | da4147c | 2013-11-15 07:16:09 +0000 | [diff] [blame] | 2741 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 2742 | LLVM_DEBUG(dbgs() << "ASAN done instrumenting: " << FunctionModified << " " |
| 2743 | << F << "\n"); |
Kostya Serebryany | 9f5213f | 2013-06-26 09:18:17 +0000 | [diff] [blame] | 2744 | |
Etienne Bergeron | 78582b2 | 2016-09-15 15:45:05 +0000 | [diff] [blame] | 2745 | return FunctionModified; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2746 | } |
| 2747 | |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 2748 | // Workaround for bug 11395: we don't want to instrument stack in functions |
| 2749 | // with large assembly blobs (32-bit only), otherwise reg alloc may crash. |
| 2750 | // FIXME: remove once the bug 11395 is fixed. |
| 2751 | bool AddressSanitizer::LooksLikeCodeInBug11395(Instruction *I) { |
| 2752 | if (LongSize != 32) return false; |
| 2753 | CallInst *CI = dyn_cast<CallInst>(I); |
| 2754 | if (!CI || !CI->isInlineAsm()) return false; |
| 2755 | if (CI->getNumArgOperands() <= 5) return false; |
| 2756 | // We have inline assembly with quite a few arguments. |
| 2757 | return true; |
| 2758 | } |
| 2759 | |
| 2760 | void FunctionStackPoisoner::initializeCallbacks(Module &M) { |
| 2761 | IRBuilder<> IRB(*C); |
Kostya Serebryany | 6805de5 | 2013-09-10 13:16:56 +0000 | [diff] [blame] | 2762 | for (int i = 0; i <= kMaxAsanStackMallocSizeClass; i++) { |
| 2763 | std::string Suffix = itostr(i); |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 2764 | AsanStackMallocFunc[i] = M.getOrInsertFunction( |
| 2765 | kAsanStackMallocNameTemplate + Suffix, IntptrTy, IntptrTy); |
| 2766 | AsanStackFreeFunc[i] = |
Alexey Samsonov | 4b7f413 | 2014-12-11 21:53:03 +0000 | [diff] [blame] | 2767 | M.getOrInsertFunction(kAsanStackFreeNameTemplate + Suffix, |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 2768 | IRB.getVoidTy(), IntptrTy, IntptrTy); |
Kostya Serebryany | 6805de5 | 2013-09-10 13:16:56 +0000 | [diff] [blame] | 2769 | } |
Vitaly Buka | 79b75d3 | 2016-06-09 23:05:35 +0000 | [diff] [blame] | 2770 | if (ASan.UseAfterScope) { |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 2771 | AsanPoisonStackMemoryFunc = M.getOrInsertFunction( |
| 2772 | kAsanPoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy); |
| 2773 | AsanUnpoisonStackMemoryFunc = M.getOrInsertFunction( |
| 2774 | kAsanUnpoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy); |
Vitaly Buka | 79b75d3 | 2016-06-09 23:05:35 +0000 | [diff] [blame] | 2775 | } |
| 2776 | |
Vitaly Buka | 8e1906e | 2016-10-18 18:04:59 +0000 | [diff] [blame] | 2777 | for (size_t Val : {0x00, 0xf1, 0xf2, 0xf3, 0xf5, 0xf8}) { |
| 2778 | std::ostringstream Name; |
| 2779 | Name << kAsanSetShadowPrefix; |
| 2780 | Name << std::setw(2) << std::setfill('0') << std::hex << Val; |
Mehdi Amini | db11fdf | 2017-04-06 20:23:57 +0000 | [diff] [blame] | 2781 | AsanSetShadowFunc[Val] = |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 2782 | M.getOrInsertFunction(Name.str(), IRB.getVoidTy(), IntptrTy, IntptrTy); |
Vitaly Buka | 3455b9b | 2016-08-20 18:34:39 +0000 | [diff] [blame] | 2783 | } |
| 2784 | |
James Y Knight | 1368022 | 2019-02-01 02:28:03 +0000 | [diff] [blame] | 2785 | AsanAllocaPoisonFunc = M.getOrInsertFunction( |
| 2786 | kAsanAllocaPoison, IRB.getVoidTy(), IntptrTy, IntptrTy); |
| 2787 | AsanAllocasUnpoisonFunc = M.getOrInsertFunction( |
| 2788 | kAsanAllocasUnpoison, IRB.getVoidTy(), IntptrTy, IntptrTy); |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 2789 | } |
| 2790 | |
Vitaly Buka | 793913c | 2016-08-29 18:17:21 +0000 | [diff] [blame] | 2791 | void FunctionStackPoisoner::copyToShadowInline(ArrayRef<uint8_t> ShadowMask, |
| 2792 | ArrayRef<uint8_t> ShadowBytes, |
| 2793 | size_t Begin, size_t End, |
| 2794 | IRBuilder<> &IRB, |
| 2795 | Value *ShadowBase) { |
Vitaly Buka | 1f9e135 | 2016-08-20 20:23:50 +0000 | [diff] [blame] | 2796 | if (Begin >= End) |
| 2797 | return; |
Vitaly Buka | 186280d | 2016-08-20 18:34:36 +0000 | [diff] [blame] | 2798 | |
| 2799 | const size_t LargestStoreSizeInBytes = |
| 2800 | std::min<size_t>(sizeof(uint64_t), ASan.LongSize / 8); |
| 2801 | |
| 2802 | const bool IsLittleEndian = F.getParent()->getDataLayout().isLittleEndian(); |
| 2803 | |
| 2804 | // Poison given range in shadow using larges store size with out leading and |
Vitaly Buka | 793913c | 2016-08-29 18:17:21 +0000 | [diff] [blame] | 2805 | // trailing zeros in ShadowMask. Zeros never change, so they need neither |
| 2806 | // poisoning nor up-poisoning. Still we don't mind if some of them get into a |
| 2807 | // middle of a store. |
Vitaly Buka | 1f9e135 | 2016-08-20 20:23:50 +0000 | [diff] [blame] | 2808 | for (size_t i = Begin; i < End;) { |
Vitaly Buka | 793913c | 2016-08-29 18:17:21 +0000 | [diff] [blame] | 2809 | if (!ShadowMask[i]) { |
| 2810 | assert(!ShadowBytes[i]); |
Vitaly Buka | 186280d | 2016-08-20 18:34:36 +0000 | [diff] [blame] | 2811 | ++i; |
| 2812 | continue; |
| 2813 | } |
| 2814 | |
| 2815 | size_t StoreSizeInBytes = LargestStoreSizeInBytes; |
| 2816 | // Fit store size into the range. |
| 2817 | while (StoreSizeInBytes > End - i) |
| 2818 | StoreSizeInBytes /= 2; |
| 2819 | |
| 2820 | // Minimize store size by trimming trailing zeros. |
Vitaly Buka | 793913c | 2016-08-29 18:17:21 +0000 | [diff] [blame] | 2821 | for (size_t j = StoreSizeInBytes - 1; j && !ShadowMask[i + j]; --j) { |
Vitaly Buka | 186280d | 2016-08-20 18:34:36 +0000 | [diff] [blame] | 2822 | while (j <= StoreSizeInBytes / 2) |
| 2823 | StoreSizeInBytes /= 2; |
| 2824 | } |
| 2825 | |
| 2826 | uint64_t Val = 0; |
Vitaly Buka | 793913c | 2016-08-29 18:17:21 +0000 | [diff] [blame] | 2827 | for (size_t j = 0; j < StoreSizeInBytes; j++) { |
| 2828 | if (IsLittleEndian) |
| 2829 | Val |= (uint64_t)ShadowBytes[i + j] << (8 * j); |
| 2830 | else |
| 2831 | Val = (Val << 8) | ShadowBytes[i + j]; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2832 | } |
Vitaly Buka | 186280d | 2016-08-20 18:34:36 +0000 | [diff] [blame] | 2833 | |
| 2834 | Value *Ptr = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i)); |
| 2835 | Value *Poison = IRB.getIntN(StoreSizeInBytes * 8, Val); |
Vitaly Buka | 0672a27 | 2016-08-22 04:16:14 +0000 | [diff] [blame] | 2836 | IRB.CreateAlignedStore( |
| 2837 | Poison, IRB.CreateIntToPtr(Ptr, Poison->getType()->getPointerTo()), 1); |
Vitaly Buka | 186280d | 2016-08-20 18:34:36 +0000 | [diff] [blame] | 2838 | |
| 2839 | i += StoreSizeInBytes; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2840 | } |
| 2841 | } |
| 2842 | |
Vitaly Buka | 793913c | 2016-08-29 18:17:21 +0000 | [diff] [blame] | 2843 | void FunctionStackPoisoner::copyToShadow(ArrayRef<uint8_t> ShadowMask, |
| 2844 | ArrayRef<uint8_t> ShadowBytes, |
| 2845 | IRBuilder<> &IRB, Value *ShadowBase) { |
| 2846 | copyToShadow(ShadowMask, ShadowBytes, 0, ShadowMask.size(), IRB, ShadowBase); |
| 2847 | } |
Vitaly Buka | 1f9e135 | 2016-08-20 20:23:50 +0000 | [diff] [blame] | 2848 | |
Vitaly Buka | 793913c | 2016-08-29 18:17:21 +0000 | [diff] [blame] | 2849 | void FunctionStackPoisoner::copyToShadow(ArrayRef<uint8_t> ShadowMask, |
| 2850 | ArrayRef<uint8_t> ShadowBytes, |
| 2851 | size_t Begin, size_t End, |
| 2852 | IRBuilder<> &IRB, Value *ShadowBase) { |
| 2853 | assert(ShadowMask.size() == ShadowBytes.size()); |
| 2854 | size_t Done = Begin; |
| 2855 | for (size_t i = Begin, j = Begin + 1; i < End; i = j++) { |
| 2856 | if (!ShadowMask[i]) { |
| 2857 | assert(!ShadowBytes[i]); |
Vitaly Buka | 1f9e135 | 2016-08-20 20:23:50 +0000 | [diff] [blame] | 2858 | continue; |
Vitaly Buka | 793913c | 2016-08-29 18:17:21 +0000 | [diff] [blame] | 2859 | } |
| 2860 | uint8_t Val = ShadowBytes[i]; |
Vitaly Buka | 1f9e135 | 2016-08-20 20:23:50 +0000 | [diff] [blame] | 2861 | if (!AsanSetShadowFunc[Val]) |
| 2862 | continue; |
| 2863 | |
| 2864 | // Skip same values. |
Vitaly Buka | 793913c | 2016-08-29 18:17:21 +0000 | [diff] [blame] | 2865 | for (; j < End && ShadowMask[j] && Val == ShadowBytes[j]; ++j) { |
Vitaly Buka | 1f9e135 | 2016-08-20 20:23:50 +0000 | [diff] [blame] | 2866 | } |
| 2867 | |
| 2868 | if (j - i >= ClMaxInlinePoisoningSize) { |
Vitaly Buka | 793913c | 2016-08-29 18:17:21 +0000 | [diff] [blame] | 2869 | copyToShadowInline(ShadowMask, ShadowBytes, Done, i, IRB, ShadowBase); |
Vitaly Buka | 1f9e135 | 2016-08-20 20:23:50 +0000 | [diff] [blame] | 2870 | IRB.CreateCall(AsanSetShadowFunc[Val], |
| 2871 | {IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i)), |
| 2872 | ConstantInt::get(IntptrTy, j - i)}); |
| 2873 | Done = j; |
| 2874 | } |
| 2875 | } |
| 2876 | |
Vitaly Buka | 793913c | 2016-08-29 18:17:21 +0000 | [diff] [blame] | 2877 | copyToShadowInline(ShadowMask, ShadowBytes, Done, End, IRB, ShadowBase); |
Vitaly Buka | 1f9e135 | 2016-08-20 20:23:50 +0000 | [diff] [blame] | 2878 | } |
| 2879 | |
Kostya Serebryany | 6805de5 | 2013-09-10 13:16:56 +0000 | [diff] [blame] | 2880 | // Fake stack allocator (asan_fake_stack.h) has 11 size classes |
| 2881 | // for every power of 2 from kMinStackMallocSize to kMaxAsanStackMallocSizeClass |
| 2882 | static int StackMallocSizeClass(uint64_t LocalStackSize) { |
| 2883 | assert(LocalStackSize <= kMaxStackMallocSize); |
| 2884 | uint64_t MaxSize = kMinStackMallocSize; |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 2885 | for (int i = 0;; i++, MaxSize *= 2) |
| 2886 | if (LocalStackSize <= MaxSize) return i; |
Kostya Serebryany | 6805de5 | 2013-09-10 13:16:56 +0000 | [diff] [blame] | 2887 | llvm_unreachable("impossible LocalStackSize"); |
| 2888 | } |
| 2889 | |
Vitaly Buka | 74443f0 | 2017-07-18 22:28:03 +0000 | [diff] [blame] | 2890 | void FunctionStackPoisoner::copyArgsPassedByValToAllocas() { |
Matt Morehouse | 49e5aca | 2017-08-09 17:59:43 +0000 | [diff] [blame] | 2891 | Instruction *CopyInsertPoint = &F.front().front(); |
| 2892 | if (CopyInsertPoint == ASan.LocalDynamicShadow) { |
| 2893 | // Insert after the dynamic shadow location is determined |
| 2894 | CopyInsertPoint = CopyInsertPoint->getNextNode(); |
| 2895 | assert(CopyInsertPoint); |
| 2896 | } |
| 2897 | IRBuilder<> IRB(CopyInsertPoint); |
Vitaly Buka | 74443f0 | 2017-07-18 22:28:03 +0000 | [diff] [blame] | 2898 | const DataLayout &DL = F.getParent()->getDataLayout(); |
| 2899 | for (Argument &Arg : F.args()) { |
| 2900 | if (Arg.hasByValAttr()) { |
| 2901 | Type *Ty = Arg.getType()->getPointerElementType(); |
| 2902 | unsigned Align = Arg.getParamAlignment(); |
| 2903 | if (Align == 0) Align = DL.getABITypeAlignment(Ty); |
| 2904 | |
Benjamin Kramer | 3a13ed6 | 2017-12-28 16:58:54 +0000 | [diff] [blame] | 2905 | AllocaInst *AI = IRB.CreateAlloca( |
| 2906 | Ty, nullptr, |
| 2907 | (Arg.hasName() ? Arg.getName() : "Arg" + Twine(Arg.getArgNo())) + |
| 2908 | ".byval"); |
Vitaly Buka | 74443f0 | 2017-07-18 22:28:03 +0000 | [diff] [blame] | 2909 | AI->setAlignment(Align); |
| 2910 | Arg.replaceAllUsesWith(AI); |
| 2911 | |
| 2912 | uint64_t AllocSize = DL.getTypeAllocSize(Ty); |
Daniel Neilson | a98d9d9 | 2018-02-08 21:26:12 +0000 | [diff] [blame] | 2913 | IRB.CreateMemCpy(AI, Align, &Arg, Align, AllocSize); |
Vitaly Buka | 74443f0 | 2017-07-18 22:28:03 +0000 | [diff] [blame] | 2914 | } |
| 2915 | } |
| 2916 | } |
| 2917 | |
Alexey Samsonov | 4b7f413 | 2014-12-11 21:53:03 +0000 | [diff] [blame] | 2918 | PHINode *FunctionStackPoisoner::createPHI(IRBuilder<> &IRB, Value *Cond, |
| 2919 | Value *ValueIfTrue, |
| 2920 | Instruction *ThenTerm, |
| 2921 | Value *ValueIfFalse) { |
| 2922 | PHINode *PHI = IRB.CreatePHI(IntptrTy, 2); |
| 2923 | BasicBlock *CondBlock = cast<Instruction>(Cond)->getParent(); |
| 2924 | PHI->addIncoming(ValueIfFalse, CondBlock); |
| 2925 | BasicBlock *ThenBlock = ThenTerm->getParent(); |
| 2926 | PHI->addIncoming(ValueIfTrue, ThenBlock); |
| 2927 | return PHI; |
| 2928 | } |
| 2929 | |
| 2930 | Value *FunctionStackPoisoner::createAllocaForLayout( |
| 2931 | IRBuilder<> &IRB, const ASanStackFrameLayout &L, bool Dynamic) { |
| 2932 | AllocaInst *Alloca; |
| 2933 | if (Dynamic) { |
| 2934 | Alloca = IRB.CreateAlloca(IRB.getInt8Ty(), |
| 2935 | ConstantInt::get(IRB.getInt64Ty(), L.FrameSize), |
| 2936 | "MyAlloca"); |
| 2937 | } else { |
| 2938 | Alloca = IRB.CreateAlloca(ArrayType::get(IRB.getInt8Ty(), L.FrameSize), |
| 2939 | nullptr, "MyAlloca"); |
| 2940 | assert(Alloca->isStaticAlloca()); |
| 2941 | } |
| 2942 | assert((ClRealignStack & (ClRealignStack - 1)) == 0); |
| 2943 | size_t FrameAlignment = std::max(L.FrameAlignment, (size_t)ClRealignStack); |
| 2944 | Alloca->setAlignment(FrameAlignment); |
| 2945 | return IRB.CreatePointerCast(Alloca, IntptrTy); |
| 2946 | } |
| 2947 | |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 2948 | void FunctionStackPoisoner::createDynamicAllocasInitStorage() { |
| 2949 | BasicBlock &FirstBB = *F.begin(); |
| 2950 | IRBuilder<> IRB(dyn_cast<Instruction>(FirstBB.begin())); |
| 2951 | DynamicAllocaLayout = IRB.CreateAlloca(IntptrTy, nullptr); |
| 2952 | IRB.CreateStore(Constant::getNullValue(IntptrTy), DynamicAllocaLayout); |
| 2953 | DynamicAllocaLayout->setAlignment(32); |
| 2954 | } |
| 2955 | |
Vitaly Buka | 5b4f121 | 2016-08-20 17:22:27 +0000 | [diff] [blame] | 2956 | void FunctionStackPoisoner::processDynamicAllocas() { |
| 2957 | if (!ClInstrumentDynamicAllocas || DynamicAllocaVec.empty()) { |
| 2958 | assert(DynamicAllocaPoisonCallVec.empty()); |
| 2959 | return; |
| 2960 | } |
Yury Gribov | 55441bb | 2014-11-21 10:29:50 +0000 | [diff] [blame] | 2961 | |
Vitaly Buka | 5b4f121 | 2016-08-20 17:22:27 +0000 | [diff] [blame] | 2962 | // Insert poison calls for lifetime intrinsics for dynamic allocas. |
| 2963 | for (const auto &APC : DynamicAllocaPoisonCallVec) { |
Alexey Samsonov | 8daaf8b | 2015-10-22 19:51:59 +0000 | [diff] [blame] | 2964 | assert(APC.InsBefore); |
| 2965 | assert(APC.AI); |
Vitaly Buka | b451f1b | 2016-06-09 23:31:59 +0000 | [diff] [blame] | 2966 | assert(ASan.isInterestingAlloca(*APC.AI)); |
Vitaly Buka | 5b4f121 | 2016-08-20 17:22:27 +0000 | [diff] [blame] | 2967 | assert(!APC.AI->isStaticAlloca()); |
Vitaly Buka | b451f1b | 2016-06-09 23:31:59 +0000 | [diff] [blame] | 2968 | |
Alexey Samsonov | 8daaf8b | 2015-10-22 19:51:59 +0000 | [diff] [blame] | 2969 | IRBuilder<> IRB(APC.InsBefore); |
| 2970 | poisonAlloca(APC.AI, APC.Size, IRB, APC.DoPoison); |
Vitaly Buka | b451f1b | 2016-06-09 23:31:59 +0000 | [diff] [blame] | 2971 | // Dynamic allocas will be unpoisoned unconditionally below in |
| 2972 | // unpoisonDynamicAllocas. |
| 2973 | // Flag that we need unpoison static allocas. |
Alexey Samsonov | 8daaf8b | 2015-10-22 19:51:59 +0000 | [diff] [blame] | 2974 | } |
| 2975 | |
Vitaly Buka | 5b4f121 | 2016-08-20 17:22:27 +0000 | [diff] [blame] | 2976 | // Handle dynamic allocas. |
| 2977 | createDynamicAllocasInitStorage(); |
| 2978 | for (auto &AI : DynamicAllocaVec) |
| 2979 | handleDynamicAllocaCall(AI); |
| 2980 | unpoisonDynamicAllocas(); |
| 2981 | } |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 2982 | |
Vitaly Buka | 5b4f121 | 2016-08-20 17:22:27 +0000 | [diff] [blame] | 2983 | void FunctionStackPoisoner::processStaticAllocas() { |
| 2984 | if (AllocaVec.empty()) { |
| 2985 | assert(StaticAllocaPoisonCallVec.empty()); |
| 2986 | return; |
Kuba Brecka | f5875d3 | 2015-02-24 09:47:05 +0000 | [diff] [blame] | 2987 | } |
Yury Gribov | 55441bb | 2014-11-21 10:29:50 +0000 | [diff] [blame] | 2988 | |
Kostya Serebryany | 6805de5 | 2013-09-10 13:16:56 +0000 | [diff] [blame] | 2989 | int StackMallocIdx = -1; |
Alexey Samsonov | 773e8c3 | 2015-06-26 00:00:47 +0000 | [diff] [blame] | 2990 | DebugLoc EntryDebugLocation; |
Pete Cooper | adebb93 | 2016-03-11 02:14:16 +0000 | [diff] [blame] | 2991 | if (auto SP = F.getSubprogram()) |
Alexey Samsonov | 773e8c3 | 2015-06-26 00:00:47 +0000 | [diff] [blame] | 2992 | EntryDebugLocation = DebugLoc::get(SP->getScopeLine(), 0, SP); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2993 | |
| 2994 | Instruction *InsBefore = AllocaVec[0]; |
| 2995 | IRBuilder<> IRB(InsBefore); |
Evgeniy Stepanov | aaf4bb2 | 2014-05-14 10:30:15 +0000 | [diff] [blame] | 2996 | IRB.SetCurrentDebugLocation(EntryDebugLocation); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 2997 | |
Kuba Brecka | 8ec94ea | 2015-07-22 10:25:38 +0000 | [diff] [blame] | 2998 | // Make sure non-instrumented allocas stay in the entry block. Otherwise, |
| 2999 | // debug info is broken, because only entry-block allocas are treated as |
| 3000 | // regular stack slots. |
| 3001 | auto InsBeforeB = InsBefore->getParent(); |
| 3002 | assert(InsBeforeB == &F.getEntryBlock()); |
Kuba Brecka | a49dcbb | 2016-11-08 21:30:41 +0000 | [diff] [blame] | 3003 | for (auto *AI : StaticAllocasToMoveUp) |
| 3004 | if (AI->getParent() == InsBeforeB) |
| 3005 | AI->moveBefore(InsBefore); |
Kuba Brecka | 37a5ffa | 2015-07-17 06:29:57 +0000 | [diff] [blame] | 3006 | |
Reid Kleckner | 2f90755 | 2015-07-21 17:40:14 +0000 | [diff] [blame] | 3007 | // If we have a call to llvm.localescape, keep it in the entry block. |
| 3008 | if (LocalEscapeCall) LocalEscapeCall->moveBefore(InsBefore); |
| 3009 | |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 3010 | SmallVector<ASanStackVariableDescription, 16> SVD; |
| 3011 | SVD.reserve(AllocaVec.size()); |
Alexey Samsonov | a02e664 | 2014-05-29 18:40:48 +0000 | [diff] [blame] | 3012 | for (AllocaInst *AI : AllocaVec) { |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 3013 | ASanStackVariableDescription D = {AI->getName().data(), |
Vitaly Buka | 21a9e57 | 2016-07-28 22:50:50 +0000 | [diff] [blame] | 3014 | ASan.getAllocaSizeInBytes(*AI), |
Vitaly Buka | d88e520 | 2016-10-18 23:29:41 +0000 | [diff] [blame] | 3015 | 0, |
Vitaly Buka | f9fd63a | 2016-08-20 16:48:24 +0000 | [diff] [blame] | 3016 | AI->getAlignment(), |
| 3017 | AI, |
Vitaly Buka | d88e520 | 2016-10-18 23:29:41 +0000 | [diff] [blame] | 3018 | 0, |
Vitaly Buka | f9fd63a | 2016-08-20 16:48:24 +0000 | [diff] [blame] | 3019 | 0}; |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 3020 | SVD.push_back(D); |
| 3021 | } |
Vitaly Buka | 5910a92 | 2016-10-18 23:29:52 +0000 | [diff] [blame] | 3022 | |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 3023 | // Minimal header size (left redzone) is 4 pointers, |
| 3024 | // i.e. 32 bytes on 64-bit platforms and 16 bytes in 32-bit platforms. |
Walter Lee | 2a2b69e | 2017-11-16 12:57:19 +0000 | [diff] [blame] | 3025 | size_t Granularity = 1ULL << Mapping.Scale; |
| 3026 | size_t MinHeaderSize = std::max((size_t)ASan.LongSize / 2, Granularity); |
Vitaly Buka | db331d8 | 2016-08-29 17:41:29 +0000 | [diff] [blame] | 3027 | const ASanStackFrameLayout &L = |
Walter Lee | 2a2b69e | 2017-11-16 12:57:19 +0000 | [diff] [blame] | 3028 | ComputeASanStackFrameLayout(SVD, Granularity, MinHeaderSize); |
Vitaly Buka | 793913c | 2016-08-29 18:17:21 +0000 | [diff] [blame] | 3029 | |
Vitaly Buka | 5910a92 | 2016-10-18 23:29:52 +0000 | [diff] [blame] | 3030 | // Build AllocaToSVDMap for ASanStackVariableDescription lookup. |
| 3031 | DenseMap<const AllocaInst *, ASanStackVariableDescription *> AllocaToSVDMap; |
| 3032 | for (auto &Desc : SVD) |
| 3033 | AllocaToSVDMap[Desc.AI] = &Desc; |
| 3034 | |
| 3035 | // Update SVD with information from lifetime intrinsics. |
| 3036 | for (const auto &APC : StaticAllocaPoisonCallVec) { |
| 3037 | assert(APC.InsBefore); |
| 3038 | assert(APC.AI); |
| 3039 | assert(ASan.isInterestingAlloca(*APC.AI)); |
| 3040 | assert(APC.AI->isStaticAlloca()); |
| 3041 | |
| 3042 | ASanStackVariableDescription &Desc = *AllocaToSVDMap[APC.AI]; |
| 3043 | Desc.LifetimeSize = Desc.Size; |
| 3044 | if (const DILocation *FnLoc = EntryDebugLocation.get()) { |
| 3045 | if (const DILocation *LifetimeLoc = APC.InsBefore->getDebugLoc().get()) { |
| 3046 | if (LifetimeLoc->getFile() == FnLoc->getFile()) |
| 3047 | if (unsigned Line = LifetimeLoc->getLine()) |
| 3048 | Desc.Line = std::min(Desc.Line ? Desc.Line : Line, Line); |
| 3049 | } |
| 3050 | } |
| 3051 | } |
| 3052 | |
| 3053 | auto DescriptionString = ComputeASanStackFrameDescription(SVD); |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 3054 | LLVM_DEBUG(dbgs() << DescriptionString << " --- " << L.FrameSize << "\n"); |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 3055 | uint64_t LocalStackSize = L.FrameSize; |
Alexander Potapenko | b9b73ef | 2015-06-19 12:19:07 +0000 | [diff] [blame] | 3056 | bool DoStackMalloc = ClUseAfterReturn && !ASan.CompileKernel && |
| 3057 | LocalStackSize <= kMaxStackMallocSize; |
Alexey Samsonov | 869a5ff | 2015-07-29 19:36:08 +0000 | [diff] [blame] | 3058 | bool DoDynamicAlloca = ClDynamicAllocaStack; |
| 3059 | // Don't do dynamic alloca or stack malloc if: |
| 3060 | // 1) There is inline asm: too often it makes assumptions on which registers |
| 3061 | // are available. |
| 3062 | // 2) There is a returns_twice call (typically setjmp), which is |
| 3063 | // optimization-hostile, and doesn't play well with introduced indirect |
| 3064 | // register-relative calculation of local variable addresses. |
| 3065 | DoDynamicAlloca &= !HasNonEmptyInlineAsm && !HasReturnsTwiceCall; |
| 3066 | DoStackMalloc &= !HasNonEmptyInlineAsm && !HasReturnsTwiceCall; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 3067 | |
Alexey Samsonov | 4b7f413 | 2014-12-11 21:53:03 +0000 | [diff] [blame] | 3068 | Value *StaticAlloca = |
| 3069 | DoDynamicAlloca ? nullptr : createAllocaForLayout(IRB, L, false); |
| 3070 | |
| 3071 | Value *FakeStack; |
| 3072 | Value *LocalStackBase; |
Adrian Prantl | 3c6c14d | 2017-12-11 20:43:21 +0000 | [diff] [blame] | 3073 | Value *LocalStackBaseAlloca; |
Petar Jovanovic | e85bbf5 | 2019-05-20 10:35:57 +0000 | [diff] [blame] | 3074 | uint8_t DIExprFlags = DIExpression::ApplyOffset; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 3075 | |
| 3076 | if (DoStackMalloc) { |
Adrian Prantl | 3c6c14d | 2017-12-11 20:43:21 +0000 | [diff] [blame] | 3077 | LocalStackBaseAlloca = |
| 3078 | IRB.CreateAlloca(IntptrTy, nullptr, "asan_local_stack_base"); |
Alexey Samsonov | 4b7f413 | 2014-12-11 21:53:03 +0000 | [diff] [blame] | 3079 | // void *FakeStack = __asan_option_detect_stack_use_after_return |
| 3080 | // ? __asan_stack_malloc_N(LocalStackSize) |
| 3081 | // : nullptr; |
| 3082 | // void *LocalStackBase = (FakeStack) ? FakeStack : alloca(LocalStackSize); |
Vitaly Buka | 7b8ed4f | 2016-06-02 00:06:42 +0000 | [diff] [blame] | 3083 | Constant *OptionDetectUseAfterReturn = F.getParent()->getOrInsertGlobal( |
| 3084 | kAsanOptionDetectUseAfterReturn, IRB.getInt32Ty()); |
James Y Knight | 14359ef | 2019-02-01 20:44:24 +0000 | [diff] [blame] | 3085 | Value *UseAfterReturnIsEnabled = IRB.CreateICmpNE( |
| 3086 | IRB.CreateLoad(IRB.getInt32Ty(), OptionDetectUseAfterReturn), |
| 3087 | Constant::getNullValue(IRB.getInt32Ty())); |
Alexey Samsonov | 4b7f413 | 2014-12-11 21:53:03 +0000 | [diff] [blame] | 3088 | Instruction *Term = |
Vitaly Buka | 7b8ed4f | 2016-06-02 00:06:42 +0000 | [diff] [blame] | 3089 | SplitBlockAndInsertIfThen(UseAfterReturnIsEnabled, InsBefore, false); |
Kostya Serebryany | f322382 | 2013-09-18 14:07:14 +0000 | [diff] [blame] | 3090 | IRBuilder<> IRBIf(Term); |
Evgeniy Stepanov | aaf4bb2 | 2014-05-14 10:30:15 +0000 | [diff] [blame] | 3091 | IRBIf.SetCurrentDebugLocation(EntryDebugLocation); |
Alexey Samsonov | 4b7f413 | 2014-12-11 21:53:03 +0000 | [diff] [blame] | 3092 | StackMallocIdx = StackMallocSizeClass(LocalStackSize); |
| 3093 | assert(StackMallocIdx <= kMaxAsanStackMallocSizeClass); |
| 3094 | Value *FakeStackValue = |
| 3095 | IRBIf.CreateCall(AsanStackMallocFunc[StackMallocIdx], |
| 3096 | ConstantInt::get(IntptrTy, LocalStackSize)); |
Kostya Serebryany | f322382 | 2013-09-18 14:07:14 +0000 | [diff] [blame] | 3097 | IRB.SetInsertPoint(InsBefore); |
Evgeniy Stepanov | aaf4bb2 | 2014-05-14 10:30:15 +0000 | [diff] [blame] | 3098 | IRB.SetCurrentDebugLocation(EntryDebugLocation); |
Vitaly Buka | 7b8ed4f | 2016-06-02 00:06:42 +0000 | [diff] [blame] | 3099 | FakeStack = createPHI(IRB, UseAfterReturnIsEnabled, FakeStackValue, Term, |
Alexey Samsonov | 4b7f413 | 2014-12-11 21:53:03 +0000 | [diff] [blame] | 3100 | ConstantInt::get(IntptrTy, 0)); |
| 3101 | |
| 3102 | Value *NoFakeStack = |
| 3103 | IRB.CreateICmpEQ(FakeStack, Constant::getNullValue(IntptrTy)); |
| 3104 | Term = SplitBlockAndInsertIfThen(NoFakeStack, InsBefore, false); |
| 3105 | IRBIf.SetInsertPoint(Term); |
| 3106 | IRBIf.SetCurrentDebugLocation(EntryDebugLocation); |
| 3107 | Value *AllocaValue = |
| 3108 | DoDynamicAlloca ? createAllocaForLayout(IRBIf, L, true) : StaticAlloca; |
Adrian Prantl | 3c6c14d | 2017-12-11 20:43:21 +0000 | [diff] [blame] | 3109 | |
Alexey Samsonov | 4b7f413 | 2014-12-11 21:53:03 +0000 | [diff] [blame] | 3110 | IRB.SetInsertPoint(InsBefore); |
| 3111 | IRB.SetCurrentDebugLocation(EntryDebugLocation); |
| 3112 | LocalStackBase = createPHI(IRB, NoFakeStack, AllocaValue, Term, FakeStack); |
Adrian Prantl | 3c6c14d | 2017-12-11 20:43:21 +0000 | [diff] [blame] | 3113 | IRB.SetCurrentDebugLocation(EntryDebugLocation); |
| 3114 | IRB.CreateStore(LocalStackBase, LocalStackBaseAlloca); |
Petar Jovanovic | e85bbf5 | 2019-05-20 10:35:57 +0000 | [diff] [blame] | 3115 | DIExprFlags |= DIExpression::DerefBefore; |
Alexey Samsonov | 4b7f413 | 2014-12-11 21:53:03 +0000 | [diff] [blame] | 3116 | } else { |
| 3117 | // void *FakeStack = nullptr; |
| 3118 | // void *LocalStackBase = alloca(LocalStackSize); |
| 3119 | FakeStack = ConstantInt::get(IntptrTy, 0); |
| 3120 | LocalStackBase = |
| 3121 | DoDynamicAlloca ? createAllocaForLayout(IRB, L, true) : StaticAlloca; |
Adrian Prantl | 3c6c14d | 2017-12-11 20:43:21 +0000 | [diff] [blame] | 3122 | LocalStackBaseAlloca = LocalStackBase; |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 3123 | } |
| 3124 | |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 3125 | // Replace Alloca instructions with base+offset. |
Alexey Samsonov | a02e664 | 2014-05-29 18:40:48 +0000 | [diff] [blame] | 3126 | for (const auto &Desc : SVD) { |
| 3127 | AllocaInst *AI = Desc.AI; |
Petar Jovanovic | e85bbf5 | 2019-05-20 10:35:57 +0000 | [diff] [blame] | 3128 | replaceDbgDeclareForAlloca(AI, LocalStackBaseAlloca, DIB, DIExprFlags, |
| 3129 | Desc.Offset); |
Alexey Samsonov | 261177a | 2012-12-04 01:34:23 +0000 | [diff] [blame] | 3130 | Value *NewAllocaPtr = IRB.CreateIntToPtr( |
Alexey Samsonov | a02e664 | 2014-05-29 18:40:48 +0000 | [diff] [blame] | 3131 | IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, Desc.Offset)), |
Kostya Serebryany | 4fb7801 | 2013-12-06 09:00:17 +0000 | [diff] [blame] | 3132 | AI->getType()); |
Alexey Samsonov | 261177a | 2012-12-04 01:34:23 +0000 | [diff] [blame] | 3133 | AI->replaceAllUsesWith(NewAllocaPtr); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 3134 | } |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 3135 | |
Kostya Serebryany | cdd35a9 | 2013-03-22 10:37:20 +0000 | [diff] [blame] | 3136 | // The left-most redzone has enough space for at least 4 pointers. |
| 3137 | // Write the Magic value to redzone[0]. |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 3138 | Value *BasePlus0 = IRB.CreateIntToPtr(LocalStackBase, IntptrPtrTy); |
| 3139 | IRB.CreateStore(ConstantInt::get(IntptrTy, kCurrentStackFrameMagic), |
| 3140 | BasePlus0); |
Kostya Serebryany | cdd35a9 | 2013-03-22 10:37:20 +0000 | [diff] [blame] | 3141 | // Write the frame description constant to redzone[1]. |
| 3142 | Value *BasePlus1 = IRB.CreateIntToPtr( |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 3143 | IRB.CreateAdd(LocalStackBase, |
| 3144 | ConstantInt::get(IntptrTy, ASan.LongSize / 8)), |
| 3145 | IntptrPtrTy); |
Alexey Samsonov | 9bdb63a | 2012-11-02 12:20:34 +0000 | [diff] [blame] | 3146 | GlobalVariable *StackDescriptionGlobal = |
Vitaly Buka | 5910a92 | 2016-10-18 23:29:52 +0000 | [diff] [blame] | 3147 | createPrivateGlobalForString(*F.getParent(), DescriptionString, |
Kostya Serebryany | d891ac9 | 2018-10-11 23:03:27 +0000 | [diff] [blame] | 3148 | /*AllowMerging*/ true, kAsanGenPrefix); |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 3149 | Value *Description = IRB.CreatePointerCast(StackDescriptionGlobal, IntptrTy); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 3150 | IRB.CreateStore(Description, BasePlus1); |
Kostya Serebryany | cdd35a9 | 2013-03-22 10:37:20 +0000 | [diff] [blame] | 3151 | // Write the PC to redzone[2]. |
| 3152 | Value *BasePlus2 = IRB.CreateIntToPtr( |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 3153 | IRB.CreateAdd(LocalStackBase, |
| 3154 | ConstantInt::get(IntptrTy, 2 * ASan.LongSize / 8)), |
| 3155 | IntptrPtrTy); |
Kostya Serebryany | cdd35a9 | 2013-03-22 10:37:20 +0000 | [diff] [blame] | 3156 | IRB.CreateStore(IRB.CreatePointerCast(&F, IntptrTy), BasePlus2); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 3157 | |
Vitaly Buka | 793913c | 2016-08-29 18:17:21 +0000 | [diff] [blame] | 3158 | const auto &ShadowAfterScope = GetShadowBytesAfterScope(SVD, L); |
| 3159 | |
| 3160 | // Poison the stack red zones at the entry. |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 3161 | Value *ShadowBase = ASan.memToShadow(LocalStackBase, IRB); |
Vitaly Buka | 793913c | 2016-08-29 18:17:21 +0000 | [diff] [blame] | 3162 | // As mask we must use most poisoned case: red zones and after scope. |
| 3163 | // As bytes we can use either the same or just red zones only. |
| 3164 | copyToShadow(ShadowAfterScope, ShadowAfterScope, IRB, ShadowBase); |
| 3165 | |
Vitaly Buka | 8e1906e | 2016-10-18 18:04:59 +0000 | [diff] [blame] | 3166 | if (!StaticAllocaPoisonCallVec.empty()) { |
Vitaly Buka | 793913c | 2016-08-29 18:17:21 +0000 | [diff] [blame] | 3167 | const auto &ShadowInScope = GetShadowBytes(SVD, L); |
| 3168 | |
| 3169 | // Poison static allocas near lifetime intrinsics. |
| 3170 | for (const auto &APC : StaticAllocaPoisonCallVec) { |
Vitaly Buka | 5910a92 | 2016-10-18 23:29:52 +0000 | [diff] [blame] | 3171 | const ASanStackVariableDescription &Desc = *AllocaToSVDMap[APC.AI]; |
Vitaly Buka | 793913c | 2016-08-29 18:17:21 +0000 | [diff] [blame] | 3172 | assert(Desc.Offset % L.Granularity == 0); |
| 3173 | size_t Begin = Desc.Offset / L.Granularity; |
| 3174 | size_t End = Begin + (APC.Size + L.Granularity - 1) / L.Granularity; |
| 3175 | |
| 3176 | IRBuilder<> IRB(APC.InsBefore); |
| 3177 | copyToShadow(ShadowAfterScope, |
| 3178 | APC.DoPoison ? ShadowAfterScope : ShadowInScope, Begin, End, |
| 3179 | IRB, ShadowBase); |
| 3180 | } |
| 3181 | } |
| 3182 | |
| 3183 | SmallVector<uint8_t, 64> ShadowClean(ShadowAfterScope.size(), 0); |
Vitaly Buka | 793913c | 2016-08-29 18:17:21 +0000 | [diff] [blame] | 3184 | SmallVector<uint8_t, 64> ShadowAfterReturn; |
Vitaly Buka | 186280d | 2016-08-20 18:34:36 +0000 | [diff] [blame] | 3185 | |
Kostya Serebryany | 530e207 | 2013-12-23 14:15:08 +0000 | [diff] [blame] | 3186 | // (Un)poison the stack before all ret instructions. |
Alexey Samsonov | a02e664 | 2014-05-29 18:40:48 +0000 | [diff] [blame] | 3187 | for (auto Ret : RetVec) { |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 3188 | IRBuilder<> IRBRet(Ret); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 3189 | // Mark the current frame as retired. |
| 3190 | IRBRet.CreateStore(ConstantInt::get(IntptrTy, kRetiredStackFrameMagic), |
| 3191 | BasePlus0); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 3192 | if (DoStackMalloc) { |
Kostya Serebryany | 6805de5 | 2013-09-10 13:16:56 +0000 | [diff] [blame] | 3193 | assert(StackMallocIdx >= 0); |
Alexey Samsonov | 4b7f413 | 2014-12-11 21:53:03 +0000 | [diff] [blame] | 3194 | // if FakeStack != 0 // LocalStackBase == FakeStack |
Kostya Serebryany | 530e207 | 2013-12-23 14:15:08 +0000 | [diff] [blame] | 3195 | // // In use-after-return mode, poison the whole stack frame. |
| 3196 | // if StackMallocIdx <= 4 |
| 3197 | // // For small sizes inline the whole thing: |
| 3198 | // memset(ShadowBase, kAsanStackAfterReturnMagic, ShadowSize); |
Alexey Samsonov | 4b7f413 | 2014-12-11 21:53:03 +0000 | [diff] [blame] | 3199 | // **SavedFlagPtr(FakeStack) = 0 |
Kostya Serebryany | 530e207 | 2013-12-23 14:15:08 +0000 | [diff] [blame] | 3200 | // else |
Alexey Samsonov | 4b7f413 | 2014-12-11 21:53:03 +0000 | [diff] [blame] | 3201 | // __asan_stack_free_N(FakeStack, LocalStackSize) |
Kostya Serebryany | 530e207 | 2013-12-23 14:15:08 +0000 | [diff] [blame] | 3202 | // else |
| 3203 | // <This is not a fake stack; unpoison the redzones> |
Alexey Samsonov | 4b7f413 | 2014-12-11 21:53:03 +0000 | [diff] [blame] | 3204 | Value *Cmp = |
| 3205 | IRBRet.CreateICmpNE(FakeStack, Constant::getNullValue(IntptrTy)); |
Chandler Carruth | 4a2d58e | 2018-10-15 09:34:05 +0000 | [diff] [blame] | 3206 | Instruction *ThenTerm, *ElseTerm; |
Kostya Serebryany | 530e207 | 2013-12-23 14:15:08 +0000 | [diff] [blame] | 3207 | SplitBlockAndInsertIfThenElse(Cmp, Ret, &ThenTerm, &ElseTerm); |
| 3208 | |
| 3209 | IRBuilder<> IRBPoison(ThenTerm); |
Kostya Serebryany | bc86efb | 2013-09-17 12:14:50 +0000 | [diff] [blame] | 3210 | if (StackMallocIdx <= 4) { |
Kostya Serebryany | bc86efb | 2013-09-17 12:14:50 +0000 | [diff] [blame] | 3211 | int ClassSize = kMinStackMallocSize << StackMallocIdx; |
Vitaly Buka | 793913c | 2016-08-29 18:17:21 +0000 | [diff] [blame] | 3212 | ShadowAfterReturn.resize(ClassSize / L.Granularity, |
| 3213 | kAsanStackUseAfterReturnMagic); |
| 3214 | copyToShadow(ShadowAfterReturn, ShadowAfterReturn, IRBPoison, |
| 3215 | ShadowBase); |
Kostya Serebryany | bc86efb | 2013-09-17 12:14:50 +0000 | [diff] [blame] | 3216 | Value *SavedFlagPtrPtr = IRBPoison.CreateAdd( |
Alexey Samsonov | 4b7f413 | 2014-12-11 21:53:03 +0000 | [diff] [blame] | 3217 | FakeStack, |
Kostya Serebryany | bc86efb | 2013-09-17 12:14:50 +0000 | [diff] [blame] | 3218 | ConstantInt::get(IntptrTy, ClassSize - ASan.LongSize / 8)); |
| 3219 | Value *SavedFlagPtr = IRBPoison.CreateLoad( |
James Y Knight | 14359ef | 2019-02-01 20:44:24 +0000 | [diff] [blame] | 3220 | IntptrTy, IRBPoison.CreateIntToPtr(SavedFlagPtrPtr, IntptrPtrTy)); |
Kostya Serebryany | bc86efb | 2013-09-17 12:14:50 +0000 | [diff] [blame] | 3221 | IRBPoison.CreateStore( |
| 3222 | Constant::getNullValue(IRBPoison.getInt8Ty()), |
| 3223 | IRBPoison.CreateIntToPtr(SavedFlagPtr, IRBPoison.getInt8PtrTy())); |
| 3224 | } else { |
| 3225 | // For larger frames call __asan_stack_free_*. |
David Blaikie | ff6409d | 2015-05-18 22:13:54 +0000 | [diff] [blame] | 3226 | IRBPoison.CreateCall( |
| 3227 | AsanStackFreeFunc[StackMallocIdx], |
| 3228 | {FakeStack, ConstantInt::get(IntptrTy, LocalStackSize)}); |
Kostya Serebryany | bc86efb | 2013-09-17 12:14:50 +0000 | [diff] [blame] | 3229 | } |
Kostya Serebryany | 530e207 | 2013-12-23 14:15:08 +0000 | [diff] [blame] | 3230 | |
| 3231 | IRBuilder<> IRBElse(ElseTerm); |
Vitaly Buka | 8e1906e | 2016-10-18 18:04:59 +0000 | [diff] [blame] | 3232 | copyToShadow(ShadowAfterScope, ShadowClean, IRBElse, ShadowBase); |
Kostya Serebryany | 530e207 | 2013-12-23 14:15:08 +0000 | [diff] [blame] | 3233 | } else { |
Vitaly Buka | 8e1906e | 2016-10-18 18:04:59 +0000 | [diff] [blame] | 3234 | copyToShadow(ShadowAfterScope, ShadowClean, IRBRet, ShadowBase); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 3235 | } |
| 3236 | } |
| 3237 | |
Kostya Serebryany | 0995994 | 2012-10-19 06:20:53 +0000 | [diff] [blame] | 3238 | // We are done. Remove the old unused alloca instructions. |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 3239 | for (auto AI : AllocaVec) AI->eraseFromParent(); |
Kostya Serebryany | 6e6b03e | 2011-11-16 01:35:23 +0000 | [diff] [blame] | 3240 | } |
Alexey Samsonov | 261177a | 2012-12-04 01:34:23 +0000 | [diff] [blame] | 3241 | |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 3242 | void FunctionStackPoisoner::poisonAlloca(Value *V, uint64_t Size, |
Jakub Staszak | 23ec6a9 | 2013-08-09 20:53:48 +0000 | [diff] [blame] | 3243 | IRBuilder<> &IRB, bool DoPoison) { |
Alexey Samsonov | 261177a | 2012-12-04 01:34:23 +0000 | [diff] [blame] | 3244 | // For now just insert the call to ASan runtime. |
| 3245 | Value *AddrArg = IRB.CreatePointerCast(V, IntptrTy); |
| 3246 | Value *SizeArg = ConstantInt::get(IntptrTy, Size); |
Alexander Potapenko | f90556e | 2015-06-12 11:27:06 +0000 | [diff] [blame] | 3247 | IRB.CreateCall( |
| 3248 | DoPoison ? AsanPoisonStackMemoryFunc : AsanUnpoisonStackMemoryFunc, |
| 3249 | {AddrArg, SizeArg}); |
Alexey Samsonov | 261177a | 2012-12-04 01:34:23 +0000 | [diff] [blame] | 3250 | } |
Alexey Samsonov | 1e3f7ba | 2012-12-25 12:04:36 +0000 | [diff] [blame] | 3251 | |
| 3252 | // Handling llvm.lifetime intrinsics for a given %alloca: |
| 3253 | // (1) collect all llvm.lifetime.xxx(%size, %value) describing the alloca. |
| 3254 | // (2) if %size is constant, poison memory for llvm.lifetime.end (to detect |
| 3255 | // invalid accesses) and unpoison it for llvm.lifetime.start (the memory |
| 3256 | // could be poisoned by previous llvm.lifetime.end instruction, as the |
| 3257 | // variable may go in and out of scope several times, e.g. in loops). |
| 3258 | // (3) if we poisoned at least one %alloca in a function, |
| 3259 | // unpoison the whole stack frame at function exit. |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 3260 | void FunctionStackPoisoner::handleDynamicAllocaCall(AllocaInst *AI) { |
Yury Gribov | 55441bb | 2014-11-21 10:29:50 +0000 | [diff] [blame] | 3261 | IRBuilder<> IRB(AI); |
| 3262 | |
Yury Gribov | 55441bb | 2014-11-21 10:29:50 +0000 | [diff] [blame] | 3263 | const unsigned Align = std::max(kAllocaRzSize, AI->getAlignment()); |
| 3264 | const uint64_t AllocaRedzoneMask = kAllocaRzSize - 1; |
| 3265 | |
| 3266 | Value *Zero = Constant::getNullValue(IntptrTy); |
| 3267 | Value *AllocaRzSize = ConstantInt::get(IntptrTy, kAllocaRzSize); |
| 3268 | Value *AllocaRzMask = ConstantInt::get(IntptrTy, AllocaRedzoneMask); |
Yury Gribov | 55441bb | 2014-11-21 10:29:50 +0000 | [diff] [blame] | 3269 | |
| 3270 | // Since we need to extend alloca with additional memory to locate |
| 3271 | // redzones, and OldSize is number of allocated blocks with |
| 3272 | // ElementSize size, get allocated memory size in bytes by |
| 3273 | // OldSize * ElementSize. |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 3274 | const unsigned ElementSize = |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 3275 | F.getParent()->getDataLayout().getTypeAllocSize(AI->getAllocatedType()); |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 3276 | Value *OldSize = |
| 3277 | IRB.CreateMul(IRB.CreateIntCast(AI->getArraySize(), IntptrTy, false), |
| 3278 | ConstantInt::get(IntptrTy, ElementSize)); |
Yury Gribov | 55441bb | 2014-11-21 10:29:50 +0000 | [diff] [blame] | 3279 | |
| 3280 | // PartialSize = OldSize % 32 |
| 3281 | Value *PartialSize = IRB.CreateAnd(OldSize, AllocaRzMask); |
| 3282 | |
| 3283 | // Misalign = kAllocaRzSize - PartialSize; |
| 3284 | Value *Misalign = IRB.CreateSub(AllocaRzSize, PartialSize); |
| 3285 | |
| 3286 | // PartialPadding = Misalign != kAllocaRzSize ? Misalign : 0; |
| 3287 | Value *Cond = IRB.CreateICmpNE(Misalign, AllocaRzSize); |
| 3288 | Value *PartialPadding = IRB.CreateSelect(Cond, Misalign, Zero); |
| 3289 | |
| 3290 | // AdditionalChunkSize = Align + PartialPadding + kAllocaRzSize |
| 3291 | // Align is added to locate left redzone, PartialPadding for possible |
| 3292 | // partial redzone and kAllocaRzSize for right redzone respectively. |
| 3293 | Value *AdditionalChunkSize = IRB.CreateAdd( |
| 3294 | ConstantInt::get(IntptrTy, Align + kAllocaRzSize), PartialPadding); |
| 3295 | |
| 3296 | Value *NewSize = IRB.CreateAdd(OldSize, AdditionalChunkSize); |
| 3297 | |
| 3298 | // Insert new alloca with new NewSize and Align params. |
| 3299 | AllocaInst *NewAlloca = IRB.CreateAlloca(IRB.getInt8Ty(), NewSize); |
| 3300 | NewAlloca->setAlignment(Align); |
| 3301 | |
| 3302 | // NewAddress = Address + Align |
| 3303 | Value *NewAddress = IRB.CreateAdd(IRB.CreatePtrToInt(NewAlloca, IntptrTy), |
| 3304 | ConstantInt::get(IntptrTy, Align)); |
| 3305 | |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 3306 | // Insert __asan_alloca_poison call for new created alloca. |
Yury Gribov | 781bce2 | 2015-05-28 08:03:28 +0000 | [diff] [blame] | 3307 | IRB.CreateCall(AsanAllocaPoisonFunc, {NewAddress, OldSize}); |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 3308 | |
| 3309 | // Store the last alloca's address to DynamicAllocaLayout. We'll need this |
| 3310 | // for unpoisoning stuff. |
| 3311 | IRB.CreateStore(IRB.CreatePtrToInt(NewAlloca, IntptrTy), DynamicAllocaLayout); |
| 3312 | |
Yury Gribov | 55441bb | 2014-11-21 10:29:50 +0000 | [diff] [blame] | 3313 | Value *NewAddressPtr = IRB.CreateIntToPtr(NewAddress, AI->getType()); |
| 3314 | |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 3315 | // Replace all uses of AddessReturnedByAlloca with NewAddressPtr. |
Yury Gribov | 55441bb | 2014-11-21 10:29:50 +0000 | [diff] [blame] | 3316 | AI->replaceAllUsesWith(NewAddressPtr); |
| 3317 | |
Yury Gribov | 98b1859 | 2015-05-28 07:51:49 +0000 | [diff] [blame] | 3318 | // We are done. Erase old alloca from parent. |
Yury Gribov | 55441bb | 2014-11-21 10:29:50 +0000 | [diff] [blame] | 3319 | AI->eraseFromParent(); |
| 3320 | } |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 3321 | |
| 3322 | // isSafeAccess returns true if Addr is always inbounds with respect to its |
| 3323 | // base object. For example, it is a field access or an array access with |
| 3324 | // constant inbounds index. |
| 3325 | bool AddressSanitizer::isSafeAccess(ObjectSizeOffsetVisitor &ObjSizeVis, |
| 3326 | Value *Addr, uint64_t TypeSize) const { |
| 3327 | SizeOffsetType SizeOffset = ObjSizeVis.compute(Addr); |
| 3328 | if (!ObjSizeVis.bothKnown(SizeOffset)) return false; |
Dmitry Vyukov | ee84238 | 2015-03-16 08:04:26 +0000 | [diff] [blame] | 3329 | uint64_t Size = SizeOffset.first.getZExtValue(); |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 3330 | int64_t Offset = SizeOffset.second.getSExtValue(); |
| 3331 | // Three checks are required to ensure safety: |
| 3332 | // . Offset >= 0 (since the offset is given from the base ptr) |
| 3333 | // . Size >= Offset (unsigned) |
| 3334 | // . Size - Offset >= NeededSize (unsigned) |
Dmitry Vyukov | ee84238 | 2015-03-16 08:04:26 +0000 | [diff] [blame] | 3335 | return Offset >= 0 && Size >= uint64_t(Offset) && |
| 3336 | Size - uint64_t(Offset) >= TypeSize / 8; |
Dmitry Vyukov | b37b95e | 2015-03-04 13:27:53 +0000 | [diff] [blame] | 3337 | } |