blob: 8d2110833d06cc9d0c272b1f07e5e60db4c5c366 [file] [log] [blame]
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001//===-- AddressSanitizer.cpp - memory error detector ------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file is a part of AddressSanitizer, an address sanity checker.
11// Details of the algorithm:
12// http://code.google.com/p/address-sanitizer/wiki/AddressSanitizerAlgorithm
13//
14//===----------------------------------------------------------------------===//
15
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/Transforms/Instrumentation.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000017#include "llvm/ADT/ArrayRef.h"
Alexey Samsonov29dd7f22012-12-27 08:50:58 +000018#include "llvm/ADT/DenseMap.h"
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +000019#include "llvm/ADT/DepthFirstIterator.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000020#include "llvm/ADT/SmallSet.h"
21#include "llvm/ADT/SmallString.h"
22#include "llvm/ADT/SmallVector.h"
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +000023#include "llvm/ADT/Statistic.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000024#include "llvm/ADT/StringExtras.h"
Evgeniy Stepanov617232f2012-05-23 11:52:12 +000025#include "llvm/ADT/Triple.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000026#include "llvm/IR/CallSite.h"
Chandler Carruth12664a02014-03-06 00:22:06 +000027#include "llvm/IR/DIBuilder.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000028#include "llvm/IR/DataLayout.h"
29#include "llvm/IR/Function.h"
30#include "llvm/IR/IRBuilder.h"
31#include "llvm/IR/InlineAsm.h"
Chandler Carruth7da14f12014-03-06 03:23:41 +000032#include "llvm/IR/InstVisitor.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000033#include "llvm/IR/IntrinsicInst.h"
34#include "llvm/IR/LLVMContext.h"
Kostya Serebryany714c67c2014-01-17 11:00:30 +000035#include "llvm/IR/MDBuilder.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000036#include "llvm/IR/Module.h"
37#include "llvm/IR/Type.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000038#include "llvm/Support/CommandLine.h"
39#include "llvm/Support/DataTypes.h"
40#include "llvm/Support/Debug.h"
Kostya Serebryany9e62b302013-06-03 14:46:56 +000041#include "llvm/Support/Endian.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000042#include "llvm/Support/system_error.h"
Kostya Serebryany4fb78012013-12-06 09:00:17 +000043#include "llvm/Transforms/Utils/ASanStackFrameLayout.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000044#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Kostya Serebryany9f5213f2013-06-26 09:18:17 +000045#include "llvm/Transforms/Utils/Cloning.h"
Alexey Samsonov3d43b632012-12-12 14:31:53 +000046#include "llvm/Transforms/Utils/Local.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000047#include "llvm/Transforms/Utils/ModuleUtils.h"
Peter Collingbourne015370e2013-07-09 22:02:49 +000048#include "llvm/Transforms/Utils/SpecialCaseList.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000049#include <algorithm>
Chandler Carruthed0881b2012-12-03 16:50:05 +000050#include <string>
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000051
52using namespace llvm;
53
Chandler Carruth964daaa2014-04-22 02:55:47 +000054#define DEBUG_TYPE "asan"
55
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000056static const uint64_t kDefaultShadowScale = 3;
57static const uint64_t kDefaultShadowOffset32 = 1ULL << 29;
Alexander Potapenkoa51e4832014-04-23 17:14:45 +000058static const uint64_t kIOSShadowOffset32 = 1ULL << 30;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000059static const uint64_t kDefaultShadowOffset64 = 1ULL << 44;
Kostya Serebryanycc92c792014-02-24 13:40:24 +000060static const uint64_t kSmallX86_64ShadowOffset = 0x7FFF8000; // < 2G.
Kostya Serebryany4766fe62013-01-23 12:54:55 +000061static const uint64_t kPPC64_ShadowOffset64 = 1ULL << 41;
Kostya Serebryany9e62b302013-06-03 14:46:56 +000062static const uint64_t kMIPS32_ShadowOffset32 = 0x0aaa8000;
Kostya Serebryany8baa3862014-02-10 07:37:04 +000063static const uint64_t kFreeBSD_ShadowOffset32 = 1ULL << 30;
64static const uint64_t kFreeBSD_ShadowOffset64 = 1ULL << 46;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000065
Kostya Serebryany6805de52013-09-10 13:16:56 +000066static const size_t kMinStackMallocSize = 1 << 6; // 64B
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000067static const size_t kMaxStackMallocSize = 1 << 16; // 64K
68static const uintptr_t kCurrentStackFrameMagic = 0x41B58AB3;
69static const uintptr_t kRetiredStackFrameMagic = 0x45E0360E;
70
Craig Topperd3a34f82013-07-16 01:17:10 +000071static const char *const kAsanModuleCtorName = "asan.module_ctor";
72static const char *const kAsanModuleDtorName = "asan.module_dtor";
Alexey Samsonov1f647502014-05-29 01:10:14 +000073static const int kAsanCtorAndDtorPriority = 1;
Craig Topperd3a34f82013-07-16 01:17:10 +000074static const char *const kAsanReportErrorTemplate = "__asan_report_";
75static const char *const kAsanReportLoadN = "__asan_report_load_n";
76static const char *const kAsanReportStoreN = "__asan_report_store_n";
77static const char *const kAsanRegisterGlobalsName = "__asan_register_globals";
Alexey Samsonovf52b7172013-08-05 13:19:49 +000078static const char *const kAsanUnregisterGlobalsName =
79 "__asan_unregister_globals";
Craig Topperd3a34f82013-07-16 01:17:10 +000080static const char *const kAsanPoisonGlobalsName = "__asan_before_dynamic_init";
81static const char *const kAsanUnpoisonGlobalsName = "__asan_after_dynamic_init";
82static const char *const kAsanInitName = "__asan_init_v3";
Evgeniy Stepanov47b1a952014-05-27 12:39:31 +000083static const char *const kAsanCovModuleInitName = "__sanitizer_cov_module_init";
Bob Wilsonda4147c2013-11-15 07:16:09 +000084static const char *const kAsanCovName = "__sanitizer_cov";
Kostya Serebryany796f6552014-02-27 12:45:36 +000085static const char *const kAsanPtrCmp = "__sanitizer_ptr_cmp";
86static const char *const kAsanPtrSub = "__sanitizer_ptr_sub";
Craig Topperd3a34f82013-07-16 01:17:10 +000087static const char *const kAsanHandleNoReturnName = "__asan_handle_no_return";
Kostya Serebryany6805de52013-09-10 13:16:56 +000088static const int kMaxAsanStackMallocSizeClass = 10;
89static const char *const kAsanStackMallocNameTemplate = "__asan_stack_malloc_";
90static const char *const kAsanStackFreeNameTemplate = "__asan_stack_free_";
Craig Topperd3a34f82013-07-16 01:17:10 +000091static const char *const kAsanGenPrefix = "__asan_gen_";
92static const char *const kAsanPoisonStackMemoryName =
93 "__asan_poison_stack_memory";
94static const char *const kAsanUnpoisonStackMemoryName =
Alexey Samsonov261177a2012-12-04 01:34:23 +000095 "__asan_unpoison_stack_memory";
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000096
Kostya Serebryanyf3223822013-09-18 14:07:14 +000097static const char *const kAsanOptionDetectUAR =
98 "__asan_option_detect_stack_use_after_return";
99
David Blaikieeacc2872013-09-18 00:11:27 +0000100#ifndef NDEBUG
Kostya Serebryanybc86efb2013-09-17 12:14:50 +0000101static const int kAsanStackAfterReturnMagic = 0xf5;
David Blaikieeacc2872013-09-18 00:11:27 +0000102#endif
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000103
Kostya Serebryany874dae62012-07-16 16:15:40 +0000104// Accesses sizes are powers of two: 1, 2, 4, 8, 16.
105static const size_t kNumberOfAccessSizes = 5;
106
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000107// Command-line flags.
108
109// This flag may need to be replaced with -f[no-]asan-reads.
110static cl::opt<bool> ClInstrumentReads("asan-instrument-reads",
111 cl::desc("instrument read instructions"), cl::Hidden, cl::init(true));
112static cl::opt<bool> ClInstrumentWrites("asan-instrument-writes",
113 cl::desc("instrument write instructions"), cl::Hidden, cl::init(true));
Kostya Serebryany90241602012-05-30 09:04:06 +0000114static cl::opt<bool> ClInstrumentAtomics("asan-instrument-atomics",
115 cl::desc("instrument atomic instructions (rmw, cmpxchg)"),
116 cl::Hidden, cl::init(true));
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000117static cl::opt<bool> ClAlwaysSlowPath("asan-always-slow-path",
118 cl::desc("use instrumentation with slow path for all accesses"),
119 cl::Hidden, cl::init(false));
Kostya Serebryany874dae62012-07-16 16:15:40 +0000120// This flag limits the number of instructions to be instrumented
Kostya Serebryanyc387ca72012-06-28 09:34:41 +0000121// in any given BB. Normally, this should be set to unlimited (INT_MAX),
122// but due to http://llvm.org/bugs/show_bug.cgi?id=12652 we temporary
123// set it to 10000.
124static cl::opt<int> ClMaxInsnsToInstrumentPerBB("asan-max-ins-per-bb",
125 cl::init(10000),
126 cl::desc("maximal number of instructions to instrument in any given BB"),
127 cl::Hidden);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000128// This flag may need to be replaced with -f[no]asan-stack.
129static cl::opt<bool> ClStack("asan-stack",
130 cl::desc("Handle stack memory"), cl::Hidden, cl::init(true));
131// This flag may need to be replaced with -f[no]asan-use-after-return.
132static cl::opt<bool> ClUseAfterReturn("asan-use-after-return",
133 cl::desc("Check return-after-free"), cl::Hidden, cl::init(false));
134// This flag may need to be replaced with -f[no]asan-globals.
135static cl::opt<bool> ClGlobals("asan-globals",
136 cl::desc("Handle global objects"), cl::Hidden, cl::init(true));
Kostya Serebryany714c67c2014-01-17 11:00:30 +0000137static cl::opt<int> ClCoverage("asan-coverage",
138 cl::desc("ASan coverage. 0: none, 1: entry block, 2: all blocks"),
139 cl::Hidden, cl::init(false));
Kostya Serebryany22e88102014-04-18 08:02:42 +0000140static cl::opt<int> ClCoverageBlockThreshold("asan-coverage-block-threshold",
141 cl::desc("Add coverage instrumentation only to the entry block if there "
142 "are more than this number of blocks."),
143 cl::Hidden, cl::init(1500));
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000144static cl::opt<bool> ClInitializers("asan-initialization-order",
145 cl::desc("Handle C++ initializer order"), cl::Hidden, cl::init(false));
Kostya Serebryany796f6552014-02-27 12:45:36 +0000146static cl::opt<bool> ClInvalidPointerPairs("asan-detect-invalid-pointer-pair",
147 cl::desc("Instrument <, <=, >, >=, - with pointer operands"),
Kostya Serebryanyec346652014-02-27 12:56:20 +0000148 cl::Hidden, cl::init(false));
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000149static cl::opt<unsigned> ClRealignStack("asan-realign-stack",
150 cl::desc("Realign stack to the value of this flag (power of two)"),
151 cl::Hidden, cl::init(32));
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000152static cl::opt<std::string> ClBlacklistFile("asan-blacklist",
153 cl::desc("File containing the list of objects to ignore "
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000154 "during instrumentation"), cl::Hidden);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000155static cl::opt<int> ClInstrumentationWithCallsThreshold(
156 "asan-instrumentation-with-call-threshold",
157 cl::desc("If the function being instrumented contains more than "
158 "this number of memory accesses, use callbacks instead of "
159 "inline checks (-1 means never use callbacks)."),
Kostya Serebryany4d237a82014-05-26 11:57:16 +0000160 cl::Hidden, cl::init(7000));
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000161static cl::opt<std::string> ClMemoryAccessCallbackPrefix(
162 "asan-memory-access-callback-prefix",
163 cl::desc("Prefix for memory access callbacks"), cl::Hidden,
164 cl::init("__asan_"));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000165
Kostya Serebryany9f5213f2013-06-26 09:18:17 +0000166// This is an experimental feature that will allow to choose between
167// instrumented and non-instrumented code at link-time.
168// If this option is on, just before instrumenting a function we create its
169// clone; if the function is not changed by asan the clone is deleted.
170// If we end up with a clone, we put the instrumented function into a section
171// called "ASAN" and the uninstrumented function into a section called "NOASAN".
172//
173// This is still a prototype, we need to figure out a way to keep two copies of
174// a function so that the linker can easily choose one of them.
175static cl::opt<bool> ClKeepUninstrumented("asan-keep-uninstrumented-functions",
176 cl::desc("Keep uninstrumented copies of functions"),
177 cl::Hidden, cl::init(false));
178
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000179// These flags allow to change the shadow mapping.
180// The shadow mapping looks like
181// Shadow = (Mem >> scale) + (1 << offset_log)
182static cl::opt<int> ClMappingScale("asan-mapping-scale",
183 cl::desc("scale of asan shadow mapping"), cl::Hidden, cl::init(0));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000184
185// Optimization flags. Not user visible, used mostly for testing
186// and benchmarking the tool.
187static cl::opt<bool> ClOpt("asan-opt",
188 cl::desc("Optimize instrumentation"), cl::Hidden, cl::init(true));
189static cl::opt<bool> ClOptSameTemp("asan-opt-same-temp",
190 cl::desc("Instrument the same temp just once"), cl::Hidden,
191 cl::init(true));
192static cl::opt<bool> ClOptGlobals("asan-opt-globals",
193 cl::desc("Don't instrument scalar globals"), cl::Hidden, cl::init(true));
194
Alexey Samsonovdf624522012-11-29 18:14:24 +0000195static cl::opt<bool> ClCheckLifetime("asan-check-lifetime",
196 cl::desc("Use llvm.lifetime intrinsics to insert extra checks"),
197 cl::Hidden, cl::init(false));
198
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000199// Debug flags.
200static cl::opt<int> ClDebug("asan-debug", cl::desc("debug"), cl::Hidden,
201 cl::init(0));
202static cl::opt<int> ClDebugStack("asan-debug-stack", cl::desc("debug stack"),
203 cl::Hidden, cl::init(0));
204static cl::opt<std::string> ClDebugFunc("asan-debug-func",
205 cl::Hidden, cl::desc("Debug func"));
206static cl::opt<int> ClDebugMin("asan-debug-min", cl::desc("Debug min inst"),
207 cl::Hidden, cl::init(-1));
208static cl::opt<int> ClDebugMax("asan-debug-max", cl::desc("Debug man inst"),
209 cl::Hidden, cl::init(-1));
210
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000211STATISTIC(NumInstrumentedReads, "Number of instrumented reads");
212STATISTIC(NumInstrumentedWrites, "Number of instrumented writes");
213STATISTIC(NumOptimizedAccessesToGlobalArray,
214 "Number of optimized accesses to global arrays");
215STATISTIC(NumOptimizedAccessesToGlobalVar,
216 "Number of optimized accesses to global vars");
217
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000218namespace {
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000219/// A set of dynamically initialized globals extracted from metadata.
220class SetOfDynamicallyInitializedGlobals {
221 public:
222 void Init(Module& M) {
223 // Clang generates metadata identifying all dynamically initialized globals.
224 NamedMDNode *DynamicGlobals =
225 M.getNamedMetadata("llvm.asan.dynamically_initialized_globals");
226 if (!DynamicGlobals)
227 return;
Alexey Samsonova02e6642014-05-29 18:40:48 +0000228 for (const auto MDN : DynamicGlobals->operands()) {
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000229 assert(MDN->getNumOperands() == 1);
230 Value *VG = MDN->getOperand(0);
231 // The optimizer may optimize away a global entirely, in which case we
232 // cannot instrument access to it.
233 if (!VG)
234 continue;
235 DynInitGlobals.insert(cast<GlobalVariable>(VG));
236 }
237 }
238 bool Contains(GlobalVariable *G) { return DynInitGlobals.count(G) != 0; }
239 private:
240 SmallSet<GlobalValue*, 32> DynInitGlobals;
241};
242
Alexey Samsonov1345d352013-01-16 13:23:28 +0000243/// This struct defines the shadow mapping using the rule:
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000244/// shadow = (mem >> Scale) ADD-or-OR Offset.
Alexey Samsonov1345d352013-01-16 13:23:28 +0000245struct ShadowMapping {
246 int Scale;
247 uint64_t Offset;
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000248 bool OrShadowOffset;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000249};
250
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000251static ShadowMapping getShadowMapping(const Module &M, int LongSize) {
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000252 llvm::Triple TargetTriple(M.getTargetTriple());
253 bool IsAndroid = TargetTriple.getEnvironment() == llvm::Triple::Android;
Alexander Potapenkoa51e4832014-04-23 17:14:45 +0000254 bool IsIOS = TargetTriple.getOS() == llvm::Triple::IOS;
Kostya Serebryany8baa3862014-02-10 07:37:04 +0000255 bool IsFreeBSD = TargetTriple.getOS() == llvm::Triple::FreeBSD;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000256 bool IsLinux = TargetTriple.getOS() == llvm::Triple::Linux;
Bill Schmidt0a9170d2013-07-26 01:35:43 +0000257 bool IsPPC64 = TargetTriple.getArch() == llvm::Triple::ppc64 ||
258 TargetTriple.getArch() == llvm::Triple::ppc64le;
Kostya Serebryanybe733372013-02-12 11:11:02 +0000259 bool IsX86_64 = TargetTriple.getArch() == llvm::Triple::x86_64;
Kostya Serebryany9e62b302013-06-03 14:46:56 +0000260 bool IsMIPS32 = TargetTriple.getArch() == llvm::Triple::mips ||
261 TargetTriple.getArch() == llvm::Triple::mipsel;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000262
263 ShadowMapping Mapping;
264
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000265 if (LongSize == 32) {
266 if (IsAndroid)
267 Mapping.Offset = 0;
268 else if (IsMIPS32)
269 Mapping.Offset = kMIPS32_ShadowOffset32;
270 else if (IsFreeBSD)
271 Mapping.Offset = kFreeBSD_ShadowOffset32;
Alexander Potapenkoa51e4832014-04-23 17:14:45 +0000272 else if (IsIOS)
273 Mapping.Offset = kIOSShadowOffset32;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000274 else
275 Mapping.Offset = kDefaultShadowOffset32;
276 } else { // LongSize == 64
277 if (IsPPC64)
278 Mapping.Offset = kPPC64_ShadowOffset64;
279 else if (IsFreeBSD)
280 Mapping.Offset = kFreeBSD_ShadowOffset64;
281 else if (IsLinux && IsX86_64)
282 Mapping.Offset = kSmallX86_64ShadowOffset;
283 else
284 Mapping.Offset = kDefaultShadowOffset64;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000285 }
286
287 Mapping.Scale = kDefaultShadowScale;
288 if (ClMappingScale) {
289 Mapping.Scale = ClMappingScale;
290 }
291
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000292 // OR-ing shadow offset if more efficient (at least on x86) if the offset
293 // is a power of two, but on ppc64 we have to use add since the shadow
294 // offset is not necessary 1/8-th of the address space.
295 Mapping.OrShadowOffset = !IsPPC64 && !(Mapping.Offset & (Mapping.Offset - 1));
296
Alexey Samsonov1345d352013-01-16 13:23:28 +0000297 return Mapping;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000298}
299
Alexey Samsonov1345d352013-01-16 13:23:28 +0000300static size_t RedzoneSizeForScale(int MappingScale) {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000301 // Redzone used for stack and globals is at least 32 bytes.
302 // For scales 6 and 7, the redzone has to be 64 and 128 bytes respectively.
Alexey Samsonov1345d352013-01-16 13:23:28 +0000303 return std::max(32U, 1U << MappingScale);
Kostya Serebryany20a79972012-11-22 03:18:50 +0000304}
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000305
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000306/// AddressSanitizer: instrument the code in module to find memory bugs.
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000307struct AddressSanitizer : public FunctionPass {
Alexey Samsonov819eddc2013-03-14 12:38:58 +0000308 AddressSanitizer(bool CheckInitOrder = true,
Alexey Samsonovdf624522012-11-29 18:14:24 +0000309 bool CheckUseAfterReturn = false,
Alexey Samsonov6d8bab82014-06-02 18:08:27 +0000310 bool CheckLifetime = false)
Alexey Samsonovdf624522012-11-29 18:14:24 +0000311 : FunctionPass(ID),
312 CheckInitOrder(CheckInitOrder || ClInitializers),
313 CheckUseAfterReturn(CheckUseAfterReturn || ClUseAfterReturn),
Alexey Samsonov6d8bab82014-06-02 18:08:27 +0000314 CheckLifetime(CheckLifetime || ClCheckLifetime) {}
Craig Topper3e4c6972014-03-05 09:10:37 +0000315 const char *getPassName() const override {
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000316 return "AddressSanitizerFunctionPass";
317 }
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000318 void instrumentMop(Instruction *I, bool UseCalls);
Kostya Serebryany796f6552014-02-27 12:45:36 +0000319 void instrumentPointerComparisonOrSubtraction(Instruction *I);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000320 void instrumentAddress(Instruction *OrigIns, Instruction *InsertBefore,
321 Value *Addr, uint32_t TypeSize, bool IsWrite,
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000322 Value *SizeArgument, bool UseCalls);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000323 Value *createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
324 Value *ShadowValue, uint32_t TypeSize);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000325 Instruction *generateCrashCode(Instruction *InsertBefore, Value *Addr,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000326 bool IsWrite, size_t AccessSizeIndex,
327 Value *SizeArgument);
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000328 void instrumentMemIntrinsic(MemIntrinsic *MI);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000329 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB);
Craig Topper3e4c6972014-03-05 09:10:37 +0000330 bool runOnFunction(Function &F) override;
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +0000331 bool maybeInsertAsanInitAtFunctionEntry(Function &F);
Craig Topper3e4c6972014-03-05 09:10:37 +0000332 bool doInitialization(Module &M) override;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000333 static char ID; // Pass identification, replacement for typeid
334
335 private:
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000336 void initializeCallbacks(Module &M);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000337
Kostya Serebryany1cdc6e92011-11-18 01:41:06 +0000338 bool LooksLikeCodeInBug11395(Instruction *I);
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000339 bool GlobalIsLinkerInitialized(GlobalVariable *G);
Kostya Serebryany714c67c2014-01-17 11:00:30 +0000340 bool InjectCoverage(Function &F, const ArrayRef<BasicBlock*> AllBlocks);
341 void InjectCoverageAtBlock(Function &F, BasicBlock &BB);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000342
Alexey Samsonovdf624522012-11-29 18:14:24 +0000343 bool CheckInitOrder;
344 bool CheckUseAfterReturn;
345 bool CheckLifetime;
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000346
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000347 LLVMContext *C;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000348 const DataLayout *DL;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000349 int LongSize;
350 Type *IntptrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000351 ShadowMapping Mapping;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000352 Function *AsanCtorFunction;
353 Function *AsanInitFunction;
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000354 Function *AsanHandleNoReturnFunc;
Bob Wilsonda4147c2013-11-15 07:16:09 +0000355 Function *AsanCovFunction;
Kostya Serebryany796f6552014-02-27 12:45:36 +0000356 Function *AsanPtrCmpFunction, *AsanPtrSubFunction;
Kostya Serebryany4273bb02012-07-16 14:09:42 +0000357 // This array is indexed by AccessIsWrite and log2(AccessSize).
358 Function *AsanErrorCallback[2][kNumberOfAccessSizes];
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000359 Function *AsanMemoryAccessCallback[2][kNumberOfAccessSizes];
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000360 // This array is indexed by AccessIsWrite.
Kostya Serebryany86332c02014-04-21 07:10:43 +0000361 Function *AsanErrorCallbackSized[2],
362 *AsanMemoryAccessCallbackSized[2];
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000363 Function *AsanMemmove, *AsanMemcpy, *AsanMemset;
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000364 InlineAsm *EmptyAsm;
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000365 SetOfDynamicallyInitializedGlobals DynamicallyInitializedGlobals;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000366
367 friend struct FunctionStackPoisoner;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000368};
Kostya Serebryany874dae62012-07-16 16:15:40 +0000369
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000370class AddressSanitizerModule : public ModulePass {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000371 public:
Alexey Samsonov819eddc2013-03-14 12:38:58 +0000372 AddressSanitizerModule(bool CheckInitOrder = true,
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000373 StringRef BlacklistFile = StringRef())
Alexey Samsonovdf624522012-11-29 18:14:24 +0000374 : ModulePass(ID),
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000375 CheckInitOrder(CheckInitOrder || ClInitializers),
376 BlacklistFile(BlacklistFile.empty() ? ClBlacklistFile
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000377 : BlacklistFile) {}
Craig Topper3e4c6972014-03-05 09:10:37 +0000378 bool runOnModule(Module &M) override;
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000379 static char ID; // Pass identification, replacement for typeid
Craig Topper3e4c6972014-03-05 09:10:37 +0000380 const char *getPassName() const override {
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000381 return "AddressSanitizerModule";
382 }
Alexey Samsonov261177a2012-12-04 01:34:23 +0000383
Kostya Serebryany20a79972012-11-22 03:18:50 +0000384 private:
Alexey Samsonov788381b2012-12-25 12:28:20 +0000385 void initializeCallbacks(Module &M);
386
Kostya Serebryany20a79972012-11-22 03:18:50 +0000387 bool ShouldInstrumentGlobal(GlobalVariable *G);
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000388 void poisonOneInitializer(Function &GlobalInit, GlobalValue *ModuleName);
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000389 void createInitializerPoisonCalls(Module &M, GlobalValue *ModuleName);
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000390 size_t MinRedzoneSizeForGlobal() const {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000391 return RedzoneSizeForScale(Mapping.Scale);
392 }
Kostya Serebryany20a79972012-11-22 03:18:50 +0000393
Alexey Samsonovdf624522012-11-29 18:14:24 +0000394 bool CheckInitOrder;
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000395 SmallString<64> BlacklistFile;
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000396
Ahmed Charles56440fd2014-03-06 05:51:42 +0000397 std::unique_ptr<SpecialCaseList> BL;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000398 SetOfDynamicallyInitializedGlobals DynamicallyInitializedGlobals;
399 Type *IntptrTy;
400 LLVMContext *C;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000401 const DataLayout *DL;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000402 ShadowMapping Mapping;
Alexey Samsonov788381b2012-12-25 12:28:20 +0000403 Function *AsanPoisonGlobals;
404 Function *AsanUnpoisonGlobals;
405 Function *AsanRegisterGlobals;
406 Function *AsanUnregisterGlobals;
Evgeniy Stepanov47b1a952014-05-27 12:39:31 +0000407 Function *AsanCovModuleInit;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000408};
409
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000410// Stack poisoning does not play well with exception handling.
411// When an exception is thrown, we essentially bypass the code
412// that unpoisones the stack. This is why the run-time library has
413// to intercept __cxa_throw (as well as longjmp, etc) and unpoison the entire
414// stack in the interceptor. This however does not work inside the
415// actual function which catches the exception. Most likely because the
416// compiler hoists the load of the shadow value somewhere too high.
417// This causes asan to report a non-existing bug on 453.povray.
418// It sounds like an LLVM bug.
419struct FunctionStackPoisoner : public InstVisitor<FunctionStackPoisoner> {
420 Function &F;
421 AddressSanitizer &ASan;
422 DIBuilder DIB;
423 LLVMContext *C;
424 Type *IntptrTy;
425 Type *IntptrPtrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000426 ShadowMapping Mapping;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000427
428 SmallVector<AllocaInst*, 16> AllocaVec;
429 SmallVector<Instruction*, 8> RetVec;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000430 unsigned StackAlignment;
431
Kostya Serebryany6805de52013-09-10 13:16:56 +0000432 Function *AsanStackMallocFunc[kMaxAsanStackMallocSizeClass + 1],
433 *AsanStackFreeFunc[kMaxAsanStackMallocSizeClass + 1];
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000434 Function *AsanPoisonStackMemoryFunc, *AsanUnpoisonStackMemoryFunc;
435
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000436 // Stores a place and arguments of poisoning/unpoisoning call for alloca.
437 struct AllocaPoisonCall {
438 IntrinsicInst *InsBefore;
Alexey Samsonova788b942013-11-18 14:53:55 +0000439 AllocaInst *AI;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000440 uint64_t Size;
441 bool DoPoison;
442 };
443 SmallVector<AllocaPoisonCall, 8> AllocaPoisonCallVec;
444
445 // Maps Value to an AllocaInst from which the Value is originated.
446 typedef DenseMap<Value*, AllocaInst*> AllocaForValueMapTy;
447 AllocaForValueMapTy AllocaForValue;
448
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000449 FunctionStackPoisoner(Function &F, AddressSanitizer &ASan)
450 : F(F), ASan(ASan), DIB(*F.getParent()), C(ASan.C),
451 IntptrTy(ASan.IntptrTy), IntptrPtrTy(PointerType::get(IntptrTy, 0)),
Alexey Samsonov1345d352013-01-16 13:23:28 +0000452 Mapping(ASan.Mapping),
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000453 StackAlignment(1 << Mapping.Scale) {}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000454
455 bool runOnFunction() {
456 if (!ClStack) return false;
457 // Collect alloca, ret, lifetime instructions etc.
David Blaikieceec2bd2014-04-11 01:50:01 +0000458 for (BasicBlock *BB : depth_first(&F.getEntryBlock()))
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000459 visit(*BB);
David Blaikieceec2bd2014-04-11 01:50:01 +0000460
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000461 if (AllocaVec.empty()) return false;
462
463 initializeCallbacks(*F.getParent());
464
465 poisonStack();
466
467 if (ClDebugStack) {
468 DEBUG(dbgs() << F);
469 }
470 return true;
471 }
472
473 // Finds all static Alloca instructions and puts
474 // poisoned red zones around all of them.
475 // Then unpoison everything back before the function returns.
476 void poisonStack();
477
478 // ----------------------- Visitors.
479 /// \brief Collect all Ret instructions.
480 void visitReturnInst(ReturnInst &RI) {
481 RetVec.push_back(&RI);
482 }
483
484 /// \brief Collect Alloca instructions we want (and can) handle.
485 void visitAllocaInst(AllocaInst &AI) {
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000486 if (!isInterestingAlloca(AI)) return;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000487
488 StackAlignment = std::max(StackAlignment, AI.getAlignment());
489 AllocaVec.push_back(&AI);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000490 }
491
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000492 /// \brief Collect lifetime intrinsic calls to check for use-after-scope
493 /// errors.
494 void visitIntrinsicInst(IntrinsicInst &II) {
495 if (!ASan.CheckLifetime) return;
496 Intrinsic::ID ID = II.getIntrinsicID();
497 if (ID != Intrinsic::lifetime_start &&
498 ID != Intrinsic::lifetime_end)
499 return;
500 // Found lifetime intrinsic, add ASan instrumentation if necessary.
501 ConstantInt *Size = dyn_cast<ConstantInt>(II.getArgOperand(0));
502 // If size argument is undefined, don't do anything.
503 if (Size->isMinusOne()) return;
504 // Check that size doesn't saturate uint64_t and can
505 // be stored in IntptrTy.
506 const uint64_t SizeValue = Size->getValue().getLimitedValue();
507 if (SizeValue == ~0ULL ||
508 !ConstantInt::isValueValidForType(IntptrTy, SizeValue))
509 return;
510 // Find alloca instruction that corresponds to llvm.lifetime argument.
511 AllocaInst *AI = findAllocaForValue(II.getArgOperand(1));
512 if (!AI) return;
513 bool DoPoison = (ID == Intrinsic::lifetime_end);
Alexey Samsonova788b942013-11-18 14:53:55 +0000514 AllocaPoisonCall APC = {&II, AI, SizeValue, DoPoison};
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000515 AllocaPoisonCallVec.push_back(APC);
516 }
517
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000518 // ---------------------- Helpers.
519 void initializeCallbacks(Module &M);
520
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000521 // Check if we want (and can) handle this alloca.
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000522 bool isInterestingAlloca(AllocaInst &AI) const {
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000523 return (!AI.isArrayAllocation() && AI.isStaticAlloca() &&
524 AI.getAllocatedType()->isSized() &&
525 // alloca() may be called with 0 size, ignore it.
526 getAllocaSizeInBytes(&AI) > 0);
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000527 }
528
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000529 uint64_t getAllocaSizeInBytes(AllocaInst *AI) const {
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000530 Type *Ty = AI->getAllocatedType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000531 uint64_t SizeInBytes = ASan.DL->getTypeAllocSize(Ty);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000532 return SizeInBytes;
533 }
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000534 /// Finds alloca where the value comes from.
535 AllocaInst *findAllocaForValue(Value *V);
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000536 void poisonRedZones(const ArrayRef<uint8_t> ShadowBytes, IRBuilder<> &IRB,
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000537 Value *ShadowBase, bool DoPoison);
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000538 void poisonAlloca(Value *V, uint64_t Size, IRBuilder<> &IRB, bool DoPoison);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +0000539
540 void SetShadowToStackAfterReturnInlined(IRBuilder<> &IRB, Value *ShadowBase,
541 int Size);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000542};
543
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000544} // namespace
545
546char AddressSanitizer::ID = 0;
547INITIALIZE_PASS(AddressSanitizer, "asan",
548 "AddressSanitizer: detects use-after-free and out-of-bounds bugs.",
549 false, false)
Alexey Samsonovdf624522012-11-29 18:14:24 +0000550FunctionPass *llvm::createAddressSanitizerFunctionPass(
Alexey Samsonov6d8bab82014-06-02 18:08:27 +0000551 bool CheckInitOrder, bool CheckUseAfterReturn, bool CheckLifetime) {
Alexey Samsonovdf624522012-11-29 18:14:24 +0000552 return new AddressSanitizer(CheckInitOrder, CheckUseAfterReturn,
Alexey Samsonov6d8bab82014-06-02 18:08:27 +0000553 CheckLifetime);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000554}
555
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000556char AddressSanitizerModule::ID = 0;
557INITIALIZE_PASS(AddressSanitizerModule, "asan-module",
558 "AddressSanitizer: detects use-after-free and out-of-bounds bugs."
559 "ModulePass", false, false)
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000560ModulePass *llvm::createAddressSanitizerModulePass(
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000561 bool CheckInitOrder, StringRef BlacklistFile) {
562 return new AddressSanitizerModule(CheckInitOrder, BlacklistFile);
Alexander Potapenkoc94cf8f2012-01-23 11:22:43 +0000563}
564
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000565static size_t TypeSizeToSizeIndex(uint32_t TypeSize) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000566 size_t Res = countTrailingZeros(TypeSize / 8);
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000567 assert(Res < kNumberOfAccessSizes);
568 return Res;
569}
570
Bill Wendling58f8cef2013-08-06 22:52:42 +0000571// \brief Create a constant for Str so that we can pass it to the run-time lib.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000572static GlobalVariable *createPrivateGlobalForString(
573 Module &M, StringRef Str, bool AllowMerging) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000574 Constant *StrConst = ConstantDataArray::getString(M.getContext(), Str);
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000575 // We use private linkage for module-local strings. If they can be merged
576 // with another one, we set the unnamed_addr attribute.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000577 GlobalVariable *GV =
578 new GlobalVariable(M, StrConst->getType(), true,
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000579 GlobalValue::PrivateLinkage, StrConst, kAsanGenPrefix);
580 if (AllowMerging)
581 GV->setUnnamedAddr(true);
Kostya Serebryany10cc12f2013-03-18 09:38:39 +0000582 GV->setAlignment(1); // Strings may not be merged w/o setting align 1.
583 return GV;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000584}
585
586static bool GlobalWasGeneratedByAsan(GlobalVariable *G) {
587 return G->getName().find(kAsanGenPrefix) == 0;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000588}
589
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000590Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) {
591 // Shadow >> scale
Alexey Samsonov1345d352013-01-16 13:23:28 +0000592 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale);
593 if (Mapping.Offset == 0)
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000594 return Shadow;
595 // (Shadow >> scale) | offset
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000596 if (Mapping.OrShadowOffset)
597 return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
598 else
599 return IRB.CreateAdd(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000600}
601
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000602// Instrument memset/memmove/memcpy
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000603void AddressSanitizer::instrumentMemIntrinsic(MemIntrinsic *MI) {
604 IRBuilder<> IRB(MI);
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000605 if (isa<MemTransferInst>(MI)) {
Evgeniy Stepanoved31ca42014-05-14 10:56:19 +0000606 IRB.CreateCall3(
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000607 isa<MemMoveInst>(MI) ? AsanMemmove : AsanMemcpy,
608 IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()),
609 IRB.CreatePointerCast(MI->getOperand(1), IRB.getInt8PtrTy()),
610 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false));
611 } else if (isa<MemSetInst>(MI)) {
Evgeniy Stepanoved31ca42014-05-14 10:56:19 +0000612 IRB.CreateCall3(
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000613 AsanMemset,
614 IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()),
615 IRB.CreateIntCast(MI->getOperand(1), IRB.getInt32Ty(), false),
616 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000617 }
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000618 MI->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000619}
620
Kostya Serebryany90241602012-05-30 09:04:06 +0000621// If I is an interesting memory access, return the PointerOperand
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000622// and set IsWrite/Alignment. Otherwise return NULL.
623static Value *isInterestingMemoryAccess(Instruction *I, bool *IsWrite,
624 unsigned *Alignment) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000625 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000626 if (!ClInstrumentReads) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000627 *IsWrite = false;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000628 *Alignment = LI->getAlignment();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000629 return LI->getPointerOperand();
630 }
Kostya Serebryany90241602012-05-30 09:04:06 +0000631 if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000632 if (!ClInstrumentWrites) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000633 *IsWrite = true;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000634 *Alignment = SI->getAlignment();
Kostya Serebryany90241602012-05-30 09:04:06 +0000635 return SI->getPointerOperand();
636 }
637 if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000638 if (!ClInstrumentAtomics) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000639 *IsWrite = true;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000640 *Alignment = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +0000641 return RMW->getPointerOperand();
642 }
643 if (AtomicCmpXchgInst *XCHG = dyn_cast<AtomicCmpXchgInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000644 if (!ClInstrumentAtomics) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000645 *IsWrite = true;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000646 *Alignment = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +0000647 return XCHG->getPointerOperand();
648 }
Craig Topperf40110f2014-04-25 05:29:35 +0000649 return nullptr;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000650}
651
Kostya Serebryany796f6552014-02-27 12:45:36 +0000652static bool isPointerOperand(Value *V) {
653 return V->getType()->isPointerTy() || isa<PtrToIntInst>(V);
654}
655
656// This is a rough heuristic; it may cause both false positives and
657// false negatives. The proper implementation requires cooperation with
658// the frontend.
659static bool isInterestingPointerComparisonOrSubtraction(Instruction *I) {
660 if (ICmpInst *Cmp = dyn_cast<ICmpInst>(I)) {
661 if (!Cmp->isRelational())
662 return false;
663 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) {
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +0000664 if (BO->getOpcode() != Instruction::Sub)
Kostya Serebryany796f6552014-02-27 12:45:36 +0000665 return false;
666 } else {
667 return false;
668 }
669 if (!isPointerOperand(I->getOperand(0)) ||
670 !isPointerOperand(I->getOperand(1)))
671 return false;
672 return true;
673}
674
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000675bool AddressSanitizer::GlobalIsLinkerInitialized(GlobalVariable *G) {
676 // If a global variable does not have dynamic initialization we don't
677 // have to instrument it. However, if a global does not have initializer
678 // at all, we assume it has dynamic initializer (in other TU).
679 return G->hasInitializer() && !DynamicallyInitializedGlobals.Contains(G);
680}
681
Kostya Serebryany796f6552014-02-27 12:45:36 +0000682void
683AddressSanitizer::instrumentPointerComparisonOrSubtraction(Instruction *I) {
684 IRBuilder<> IRB(I);
685 Function *F = isa<ICmpInst>(I) ? AsanPtrCmpFunction : AsanPtrSubFunction;
686 Value *Param[2] = {I->getOperand(0), I->getOperand(1)};
687 for (int i = 0; i < 2; i++) {
688 if (Param[i]->getType()->isPointerTy())
689 Param[i] = IRB.CreatePointerCast(Param[i], IntptrTy);
690 }
691 IRB.CreateCall2(F, Param[0], Param[1]);
692}
693
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000694void AddressSanitizer::instrumentMop(Instruction *I, bool UseCalls) {
Axel Naumann4a127062012-09-17 14:20:57 +0000695 bool IsWrite = false;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000696 unsigned Alignment = 0;
697 Value *Addr = isInterestingMemoryAccess(I, &IsWrite, &Alignment);
Kostya Serebryany90241602012-05-30 09:04:06 +0000698 assert(Addr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000699 if (ClOpt && ClOptGlobals) {
700 if (GlobalVariable *G = dyn_cast<GlobalVariable>(Addr)) {
701 // If initialization order checking is disabled, a simple access to a
702 // dynamically initialized global is always valid.
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000703 if (!CheckInitOrder || GlobalIsLinkerInitialized(G)) {
704 NumOptimizedAccessesToGlobalVar++;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000705 return;
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000706 }
707 }
708 ConstantExpr *CE = dyn_cast<ConstantExpr>(Addr);
709 if (CE && CE->isGEPWithNoNotionalOverIndexing()) {
710 if (GlobalVariable *G = dyn_cast<GlobalVariable>(CE->getOperand(0))) {
711 if (CE->getOperand(1)->isNullValue() && GlobalIsLinkerInitialized(G)) {
712 NumOptimizedAccessesToGlobalArray++;
713 return;
714 }
715 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000716 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000717 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000718
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000719 Type *OrigPtrTy = Addr->getType();
720 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType();
721
722 assert(OrigTy->isSized());
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000723 uint32_t TypeSize = DL->getTypeStoreSizeInBits(OrigTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000724
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000725 assert((TypeSize % 8) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000726
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000727 if (IsWrite)
728 NumInstrumentedWrites++;
729 else
730 NumInstrumentedReads++;
731
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000732 unsigned Granularity = 1 << Mapping.Scale;
733 // Instrument a 1-, 2-, 4-, 8-, or 16- byte access with one check
734 // if the data is properly aligned.
735 if ((TypeSize == 8 || TypeSize == 16 || TypeSize == 32 || TypeSize == 64 ||
736 TypeSize == 128) &&
737 (Alignment >= Granularity || Alignment == 0 || Alignment >= TypeSize / 8))
Craig Topperf40110f2014-04-25 05:29:35 +0000738 return instrumentAddress(I, I, Addr, TypeSize, IsWrite, nullptr, UseCalls);
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000739 // Instrument unusual size or unusual alignment.
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000740 // We can not do it with a single check, so we do 1-byte check for the first
741 // and the last bytes. We call __asan_report_*_n(addr, real_size) to be able
742 // to report the actual access size.
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000743 IRBuilder<> IRB(I);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000744 Value *Size = ConstantInt::get(IntptrTy, TypeSize / 8);
Kostya Serebryanyc9a2c172014-04-22 11:19:45 +0000745 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
746 if (UseCalls) {
Evgeniy Stepanoved31ca42014-05-14 10:56:19 +0000747 IRB.CreateCall2(AsanMemoryAccessCallbackSized[IsWrite], AddrLong, Size);
Kostya Serebryanyc9a2c172014-04-22 11:19:45 +0000748 } else {
749 Value *LastByte = IRB.CreateIntToPtr(
750 IRB.CreateAdd(AddrLong, ConstantInt::get(IntptrTy, TypeSize / 8 - 1)),
751 OrigPtrTy);
752 instrumentAddress(I, I, Addr, 8, IsWrite, Size, false);
753 instrumentAddress(I, I, LastByte, 8, IsWrite, Size, false);
754 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000755}
756
Alexander Potapenko056e27e2012-04-23 10:47:31 +0000757// Validate the result of Module::getOrInsertFunction called for an interface
758// function of AddressSanitizer. If the instrumented module defines a function
759// with the same name, their prototypes must match, otherwise
760// getOrInsertFunction returns a bitcast.
Kostya Serebryany20a79972012-11-22 03:18:50 +0000761static Function *checkInterfaceFunction(Constant *FuncOrBitcast) {
Alexander Potapenko056e27e2012-04-23 10:47:31 +0000762 if (isa<Function>(FuncOrBitcast)) return cast<Function>(FuncOrBitcast);
763 FuncOrBitcast->dump();
764 report_fatal_error("trying to redefine an AddressSanitizer "
765 "interface function");
766}
767
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000768Instruction *AddressSanitizer::generateCrashCode(
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000769 Instruction *InsertBefore, Value *Addr,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000770 bool IsWrite, size_t AccessSizeIndex, Value *SizeArgument) {
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000771 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000772 CallInst *Call = SizeArgument
773 ? IRB.CreateCall2(AsanErrorCallbackSized[IsWrite], Addr, SizeArgument)
774 : IRB.CreateCall(AsanErrorCallback[IsWrite][AccessSizeIndex], Addr);
775
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000776 // We don't do Call->setDoesNotReturn() because the BB already has
777 // UnreachableInst at the end.
778 // This EmptyAsm is required to avoid callback merge.
779 IRB.CreateCall(EmptyAsm);
Kostya Serebryany3411f2e2012-01-06 18:09:21 +0000780 return Call;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000781}
782
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000783Value *AddressSanitizer::createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
Kostya Serebryany874dae62012-07-16 16:15:40 +0000784 Value *ShadowValue,
785 uint32_t TypeSize) {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000786 size_t Granularity = 1 << Mapping.Scale;
Kostya Serebryany874dae62012-07-16 16:15:40 +0000787 // Addr & (Granularity - 1)
788 Value *LastAccessedByte = IRB.CreateAnd(
789 AddrLong, ConstantInt::get(IntptrTy, Granularity - 1));
790 // (Addr & (Granularity - 1)) + size - 1
791 if (TypeSize / 8 > 1)
792 LastAccessedByte = IRB.CreateAdd(
793 LastAccessedByte, ConstantInt::get(IntptrTy, TypeSize / 8 - 1));
794 // (uint8_t) ((Addr & (Granularity-1)) + size - 1)
795 LastAccessedByte = IRB.CreateIntCast(
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000796 LastAccessedByte, ShadowValue->getType(), false);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000797 // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue
798 return IRB.CreateICmpSGE(LastAccessedByte, ShadowValue);
799}
800
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000801void AddressSanitizer::instrumentAddress(Instruction *OrigIns,
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000802 Instruction *InsertBefore, Value *Addr,
803 uint32_t TypeSize, bool IsWrite,
804 Value *SizeArgument, bool UseCalls) {
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000805 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000806 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000807 size_t AccessSizeIndex = TypeSizeToSizeIndex(TypeSize);
808
809 if (UseCalls) {
Kostya Serebryany94f57d192014-04-21 10:28:13 +0000810 IRB.CreateCall(AsanMemoryAccessCallback[IsWrite][AccessSizeIndex],
811 AddrLong);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000812 return;
813 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000814
815 Type *ShadowTy = IntegerType::get(
Alexey Samsonov1345d352013-01-16 13:23:28 +0000816 *C, std::max(8U, TypeSize >> Mapping.Scale));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000817 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0);
818 Value *ShadowPtr = memToShadow(AddrLong, IRB);
819 Value *CmpVal = Constant::getNullValue(ShadowTy);
820 Value *ShadowValue = IRB.CreateLoad(
821 IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy));
822
823 Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal);
Alexey Samsonov1345d352013-01-16 13:23:28 +0000824 size_t Granularity = 1 << Mapping.Scale;
Craig Topperf40110f2014-04-25 05:29:35 +0000825 TerminatorInst *CrashTerm = nullptr;
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000826
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000827 if (ClAlwaysSlowPath || (TypeSize < 8 * Granularity)) {
Evgeniy Stepanov8eb77d82012-10-19 10:48:31 +0000828 TerminatorInst *CheckTerm =
Evgeniy Stepanova9164e92013-12-19 13:29:56 +0000829 SplitBlockAndInsertIfThen(Cmp, InsertBefore, false);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000830 assert(dyn_cast<BranchInst>(CheckTerm)->isUnconditional());
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000831 BasicBlock *NextBB = CheckTerm->getSuccessor(0);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000832 IRB.SetInsertPoint(CheckTerm);
833 Value *Cmp2 = createSlowPathCmp(IRB, AddrLong, ShadowValue, TypeSize);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000834 BasicBlock *CrashBlock =
835 BasicBlock::Create(*C, "", NextBB->getParent(), NextBB);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000836 CrashTerm = new UnreachableInst(*C, CrashBlock);
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000837 BranchInst *NewTerm = BranchInst::Create(CrashBlock, NextBB, Cmp2);
838 ReplaceInstWithInst(CheckTerm, NewTerm);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000839 } else {
Evgeniy Stepanova9164e92013-12-19 13:29:56 +0000840 CrashTerm = SplitBlockAndInsertIfThen(Cmp, InsertBefore, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000841 }
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000842
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000843 Instruction *Crash = generateCrashCode(
844 CrashTerm, AddrLong, IsWrite, AccessSizeIndex, SizeArgument);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000845 Crash->setDebugLoc(OrigIns->getDebugLoc());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000846}
847
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000848void AddressSanitizerModule::poisonOneInitializer(Function &GlobalInit,
849 GlobalValue *ModuleName) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000850 // Set up the arguments to our poison/unpoison functions.
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000851 IRBuilder<> IRB(GlobalInit.begin()->getFirstInsertionPt());
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000852
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000853 // Add a call to poison all external globals before the given function starts.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000854 Value *ModuleNameAddr = ConstantExpr::getPointerCast(ModuleName, IntptrTy);
855 IRB.CreateCall(AsanPoisonGlobals, ModuleNameAddr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000856
857 // Add calls to unpoison all globals before each return instruction.
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000858 for (auto &BB : GlobalInit.getBasicBlockList())
859 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB.getTerminator()))
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000860 CallInst::Create(AsanUnpoisonGlobals, "", RI);
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000861}
862
863void AddressSanitizerModule::createInitializerPoisonCalls(
864 Module &M, GlobalValue *ModuleName) {
865 GlobalVariable *GV = M.getGlobalVariable("llvm.global_ctors");
866
867 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
868 for (Use &OP : CA->operands()) {
869 if (isa<ConstantAggregateZero>(OP))
870 continue;
871 ConstantStruct *CS = cast<ConstantStruct>(OP);
872
873 // Must have a function or null ptr.
874 // (CS->getOperand(0) is the init priority.)
875 if (Function* F = dyn_cast<Function>(CS->getOperand(1))) {
876 if (F->getName() != kAsanModuleCtorName)
877 poisonOneInitializer(*F, ModuleName);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000878 }
879 }
880}
881
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000882bool AddressSanitizerModule::ShouldInstrumentGlobal(GlobalVariable *G) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000883 Type *Ty = cast<PointerType>(G->getType())->getElementType();
Kostya Serebryany20343352012-10-17 13:40:06 +0000884 DEBUG(dbgs() << "GLOBAL: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000885
Kostya Serebryany2fa38f82012-09-05 07:29:56 +0000886 if (BL->isIn(*G)) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000887 if (!Ty->isSized()) return false;
888 if (!G->hasInitializer()) return false;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000889 if (GlobalWasGeneratedByAsan(G)) return false; // Our own global.
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000890 // Touch only those globals that will not be defined in other modules.
891 // Don't handle ODR type linkages since other modules may be built w/o asan.
892 if (G->getLinkage() != GlobalVariable::ExternalLinkage &&
893 G->getLinkage() != GlobalVariable::PrivateLinkage &&
894 G->getLinkage() != GlobalVariable::InternalLinkage)
895 return false;
896 // Two problems with thread-locals:
897 // - The address of the main thread's copy can't be computed at link-time.
898 // - Need to poison all copies, not just the main thread's one.
899 if (G->isThreadLocal())
900 return false;
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000901 // For now, just ignore this Global if the alignment is large.
902 if (G->getAlignment() > MinRedzoneSizeForGlobal()) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000903
904 // Ignore all the globals with the names starting with "\01L_OBJC_".
905 // Many of those are put into the .cstring section. The linker compresses
906 // that section by removing the spare \0s after the string terminator, so
907 // our redzones get broken.
908 if ((G->getName().find("\01L_OBJC_") == 0) ||
909 (G->getName().find("\01l_OBJC_") == 0)) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000910 DEBUG(dbgs() << "Ignoring \\01L_OBJC_* global: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000911 return false;
912 }
913
914 if (G->hasSection()) {
915 StringRef Section(G->getSection());
916 // Ignore the globals from the __OBJC section. The ObjC runtime assumes
917 // those conform to /usr/lib/objc/runtime.h, so we can't add redzones to
918 // them.
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000919 if (Section.startswith("__OBJC,") ||
920 Section.startswith("__DATA, __objc_")) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000921 DEBUG(dbgs() << "Ignoring ObjC runtime global: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000922 return false;
923 }
924 // See http://code.google.com/p/address-sanitizer/issues/detail?id=32
925 // Constant CFString instances are compiled in the following way:
926 // -- the string buffer is emitted into
927 // __TEXT,__cstring,cstring_literals
928 // -- the constant NSConstantString structure referencing that buffer
929 // is placed into __DATA,__cfstring
930 // Therefore there's no point in placing redzones into __DATA,__cfstring.
931 // Moreover, it causes the linker to crash on OS X 10.7
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000932 if (Section.startswith("__DATA,__cfstring")) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000933 DEBUG(dbgs() << "Ignoring CFString: " << *G << "\n");
934 return false;
935 }
936 // The linker merges the contents of cstring_literals and removes the
937 // trailing zeroes.
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000938 if (Section.startswith("__TEXT,__cstring,cstring_literals")) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000939 DEBUG(dbgs() << "Ignoring a cstring literal: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000940 return false;
941 }
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000942
943 // Callbacks put into the CRT initializer/terminator sections
944 // should not be instrumented.
945 // See https://code.google.com/p/address-sanitizer/issues/detail?id=305
946 // and http://msdn.microsoft.com/en-US/en-en/library/bb918180(v=vs.120).aspx
947 if (Section.startswith(".CRT")) {
948 DEBUG(dbgs() << "Ignoring a global initializer callback: " << *G << "\n");
949 return false;
950 }
951
Alexander Potapenko04969e82014-03-20 10:48:34 +0000952 // Globals from llvm.metadata aren't emitted, do not instrument them.
953 if (Section == "llvm.metadata") return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000954 }
955
956 return true;
957}
958
Alexey Samsonov788381b2012-12-25 12:28:20 +0000959void AddressSanitizerModule::initializeCallbacks(Module &M) {
960 IRBuilder<> IRB(*C);
961 // Declare our poisoning and unpoisoning functions.
962 AsanPoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000963 kAsanPoisonGlobalsName, IRB.getVoidTy(), IntptrTy, NULL));
Alexey Samsonov788381b2012-12-25 12:28:20 +0000964 AsanPoisonGlobals->setLinkage(Function::ExternalLinkage);
965 AsanUnpoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
966 kAsanUnpoisonGlobalsName, IRB.getVoidTy(), NULL));
967 AsanUnpoisonGlobals->setLinkage(Function::ExternalLinkage);
968 // Declare functions that register/unregister globals.
969 AsanRegisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
970 kAsanRegisterGlobalsName, IRB.getVoidTy(),
971 IntptrTy, IntptrTy, NULL));
972 AsanRegisterGlobals->setLinkage(Function::ExternalLinkage);
973 AsanUnregisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
974 kAsanUnregisterGlobalsName,
975 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
976 AsanUnregisterGlobals->setLinkage(Function::ExternalLinkage);
Evgeniy Stepanov47b1a952014-05-27 12:39:31 +0000977 AsanCovModuleInit = checkInterfaceFunction(M.getOrInsertFunction(
978 kAsanCovModuleInitName,
979 IRB.getVoidTy(), IntptrTy, NULL));
980 AsanCovModuleInit->setLinkage(Function::ExternalLinkage);
Alexey Samsonov788381b2012-12-25 12:28:20 +0000981}
982
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000983// This function replaces all global variables with new variables that have
984// trailing redzones. It also creates a function that poisons
985// redzones and inserts this function into llvm.global_ctors.
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000986bool AddressSanitizerModule::runOnModule(Module &M) {
987 if (!ClGlobals) return false;
Rafael Espindola93512512014-02-25 17:30:31 +0000988
989 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
990 if (!DLP)
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000991 return false;
Rafael Espindola93512512014-02-25 17:30:31 +0000992 DL = &DLP->getDataLayout();
993
Alexey Samsonove4b5fb82013-08-12 11:46:09 +0000994 BL.reset(SpecialCaseList::createOrDie(BlacklistFile));
Alexey Samsonov9a956e82012-11-29 18:27:01 +0000995 if (BL->isIn(M)) return false;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000996 C = &(M.getContext());
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000997 int LongSize = DL->getPointerSizeInBits();
Alexey Samsonov1345d352013-01-16 13:23:28 +0000998 IntptrTy = Type::getIntNTy(*C, LongSize);
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000999 Mapping = getShadowMapping(M, LongSize);
Alexey Samsonov788381b2012-12-25 12:28:20 +00001000 initializeCallbacks(M);
1001 DynamicallyInitializedGlobals.Init(M);
Kostya Serebryany20a79972012-11-22 03:18:50 +00001002
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001003 SmallVector<GlobalVariable *, 16> GlobalsToChange;
1004
Alexey Samsonova02e6642014-05-29 18:40:48 +00001005 for (auto &G : M.globals()) {
1006 if (ShouldInstrumentGlobal(&G))
1007 GlobalsToChange.push_back(&G);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001008 }
1009
Evgeniy Stepanov47b1a952014-05-27 12:39:31 +00001010 Function *CtorFunc = M.getFunction(kAsanModuleCtorName);
1011 assert(CtorFunc);
1012 IRBuilder<> IRB(CtorFunc->getEntryBlock().getTerminator());
1013
Evgeniy Stepanov386b58d2014-05-28 09:26:46 +00001014 if (ClCoverage > 0) {
1015 Function *CovFunc = M.getFunction(kAsanCovName);
1016 int nCov = CovFunc ? CovFunc->getNumUses() : 0;
1017 IRB.CreateCall(AsanCovModuleInit, ConstantInt::get(IntptrTy, nCov));
1018 }
Evgeniy Stepanov47b1a952014-05-27 12:39:31 +00001019
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001020 size_t n = GlobalsToChange.size();
1021 if (n == 0) return false;
1022
1023 // A global is described by a structure
1024 // size_t beg;
1025 // size_t size;
1026 // size_t size_with_redzone;
1027 // const char *name;
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001028 // const char *module_name;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001029 // size_t has_dynamic_init;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001030 // We initialize an array of such structures and pass it to a run-time call.
1031 StructType *GlobalStructTy = StructType::get(IntptrTy, IntptrTy,
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001032 IntptrTy, IntptrTy,
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001033 IntptrTy, IntptrTy, NULL);
Rafael Espindola44fee4e2013-10-01 13:32:03 +00001034 SmallVector<Constant *, 16> Initializers(n);
Kostya Serebryany20a79972012-11-22 03:18:50 +00001035
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001036 bool HasDynamicallyInitializedGlobals = false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001037
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001038 // We shouldn't merge same module names, as this string serves as unique
1039 // module ID in runtime.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001040 GlobalVariable *ModuleName = createPrivateGlobalForString(
1041 M, M.getModuleIdentifier(), /*AllowMerging*/false);
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001042
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001043 for (size_t i = 0; i < n; i++) {
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001044 static const uint64_t kMaxGlobalRedzone = 1 << 18;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001045 GlobalVariable *G = GlobalsToChange[i];
1046 PointerType *PtrTy = cast<PointerType>(G->getType());
1047 Type *Ty = PtrTy->getElementType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001048 uint64_t SizeInBytes = DL->getTypeAllocSize(Ty);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001049 uint64_t MinRZ = MinRedzoneSizeForGlobal();
Kostya Serebryany87191f62013-01-24 10:35:40 +00001050 // MinRZ <= RZ <= kMaxGlobalRedzone
1051 // and trying to make RZ to be ~ 1/4 of SizeInBytes.
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001052 uint64_t RZ = std::max(MinRZ,
Kostya Serebryany87191f62013-01-24 10:35:40 +00001053 std::min(kMaxGlobalRedzone,
1054 (SizeInBytes / MinRZ / 4) * MinRZ));
1055 uint64_t RightRedzoneSize = RZ;
1056 // Round up to MinRZ
1057 if (SizeInBytes % MinRZ)
1058 RightRedzoneSize += MinRZ - (SizeInBytes % MinRZ);
1059 assert(((RightRedzoneSize + SizeInBytes) % MinRZ) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001060 Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001061 // Determine whether this global should be poisoned in initialization.
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +00001062 bool GlobalHasDynamicInitializer =
1063 DynamicallyInitializedGlobals.Contains(G);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001064
1065 StructType *NewTy = StructType::get(Ty, RightRedZoneTy, NULL);
1066 Constant *NewInitializer = ConstantStruct::get(
1067 NewTy, G->getInitializer(),
1068 Constant::getNullValue(RightRedZoneTy), NULL);
1069
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001070 GlobalVariable *Name =
1071 createPrivateGlobalForString(M, G->getName(), /*AllowMerging*/true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001072
1073 // Create a new global variable with enough space for a redzone.
Bill Wendling58f8cef2013-08-06 22:52:42 +00001074 GlobalValue::LinkageTypes Linkage = G->getLinkage();
1075 if (G->isConstant() && Linkage == GlobalValue::PrivateLinkage)
1076 Linkage = GlobalValue::InternalLinkage;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001077 GlobalVariable *NewGlobal = new GlobalVariable(
Bill Wendling58f8cef2013-08-06 22:52:42 +00001078 M, NewTy, G->isConstant(), Linkage,
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001079 NewInitializer, "", G, G->getThreadLocalMode());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001080 NewGlobal->copyAttributesFrom(G);
Kostya Serebryany87191f62013-01-24 10:35:40 +00001081 NewGlobal->setAlignment(MinRZ);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001082
1083 Value *Indices2[2];
1084 Indices2[0] = IRB.getInt32(0);
1085 Indices2[1] = IRB.getInt32(0);
1086
1087 G->replaceAllUsesWith(
Kostya Serebryany7471d132012-01-28 04:27:16 +00001088 ConstantExpr::getGetElementPtr(NewGlobal, Indices2, true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001089 NewGlobal->takeName(G);
1090 G->eraseFromParent();
1091
1092 Initializers[i] = ConstantStruct::get(
1093 GlobalStructTy,
1094 ConstantExpr::getPointerCast(NewGlobal, IntptrTy),
1095 ConstantInt::get(IntptrTy, SizeInBytes),
1096 ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize),
1097 ConstantExpr::getPointerCast(Name, IntptrTy),
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001098 ConstantExpr::getPointerCast(ModuleName, IntptrTy),
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001099 ConstantInt::get(IntptrTy, GlobalHasDynamicInitializer),
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001100 NULL);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001101
1102 // Populate the first and last globals declared in this TU.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001103 if (CheckInitOrder && GlobalHasDynamicInitializer)
1104 HasDynamicallyInitializedGlobals = true;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001105
Kostya Serebryany20343352012-10-17 13:40:06 +00001106 DEBUG(dbgs() << "NEW GLOBAL: " << *NewGlobal << "\n");
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001107 }
1108
1109 ArrayType *ArrayOfGlobalStructTy = ArrayType::get(GlobalStructTy, n);
1110 GlobalVariable *AllGlobals = new GlobalVariable(
Bill Wendling58f8cef2013-08-06 22:52:42 +00001111 M, ArrayOfGlobalStructTy, false, GlobalVariable::InternalLinkage,
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001112 ConstantArray::get(ArrayOfGlobalStructTy, Initializers), "");
1113
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001114 // Create calls for poisoning before initializers run and unpoisoning after.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001115 if (CheckInitOrder && HasDynamicallyInitializedGlobals)
1116 createInitializerPoisonCalls(M, ModuleName);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001117 IRB.CreateCall2(AsanRegisterGlobals,
1118 IRB.CreatePointerCast(AllGlobals, IntptrTy),
1119 ConstantInt::get(IntptrTy, n));
1120
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001121 // We also need to unregister globals at the end, e.g. when a shared library
1122 // gets closed.
1123 Function *AsanDtorFunction = Function::Create(
1124 FunctionType::get(Type::getVoidTy(*C), false),
1125 GlobalValue::InternalLinkage, kAsanModuleDtorName, &M);
1126 BasicBlock *AsanDtorBB = BasicBlock::Create(*C, "", AsanDtorFunction);
1127 IRBuilder<> IRB_Dtor(ReturnInst::Create(*C, AsanDtorBB));
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001128 IRB_Dtor.CreateCall2(AsanUnregisterGlobals,
1129 IRB.CreatePointerCast(AllGlobals, IntptrTy),
1130 ConstantInt::get(IntptrTy, n));
Alexey Samsonov1f647502014-05-29 01:10:14 +00001131 appendToGlobalDtors(M, AsanDtorFunction, kAsanCtorAndDtorPriority);
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001132
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001133 DEBUG(dbgs() << M);
1134 return true;
1135}
1136
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001137void AddressSanitizer::initializeCallbacks(Module &M) {
1138 IRBuilder<> IRB(*C);
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001139 // Create __asan_report* callbacks.
1140 for (size_t AccessIsWrite = 0; AccessIsWrite <= 1; AccessIsWrite++) {
1141 for (size_t AccessSizeIndex = 0; AccessSizeIndex < kNumberOfAccessSizes;
1142 AccessSizeIndex++) {
1143 // IsWrite and TypeSize are encoded in the function name.
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001144 std::string Suffix =
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001145 (AccessIsWrite ? "store" : "load") + itostr(1 << AccessSizeIndex);
Kostya Serebryany157a5152012-11-07 12:42:18 +00001146 AsanErrorCallback[AccessIsWrite][AccessSizeIndex] =
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001147 checkInterfaceFunction(
1148 M.getOrInsertFunction(kAsanReportErrorTemplate + Suffix,
1149 IRB.getVoidTy(), IntptrTy, NULL));
1150 AsanMemoryAccessCallback[AccessIsWrite][AccessSizeIndex] =
1151 checkInterfaceFunction(
1152 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + Suffix,
1153 IRB.getVoidTy(), IntptrTy, NULL));
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001154 }
1155 }
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +00001156 AsanErrorCallbackSized[0] = checkInterfaceFunction(M.getOrInsertFunction(
1157 kAsanReportLoadN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1158 AsanErrorCallbackSized[1] = checkInterfaceFunction(M.getOrInsertFunction(
1159 kAsanReportStoreN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001160
Kostya Serebryany86332c02014-04-21 07:10:43 +00001161 AsanMemoryAccessCallbackSized[0] = checkInterfaceFunction(
1162 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + "loadN",
1163 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1164 AsanMemoryAccessCallbackSized[1] = checkInterfaceFunction(
1165 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + "storeN",
1166 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1167
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00001168 AsanMemmove = checkInterfaceFunction(M.getOrInsertFunction(
1169 ClMemoryAccessCallbackPrefix + "memmove", IRB.getInt8PtrTy(),
1170 IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IntptrTy, NULL));
1171 AsanMemcpy = checkInterfaceFunction(M.getOrInsertFunction(
1172 ClMemoryAccessCallbackPrefix + "memcpy", IRB.getInt8PtrTy(),
1173 IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IntptrTy, NULL));
1174 AsanMemset = checkInterfaceFunction(M.getOrInsertFunction(
1175 ClMemoryAccessCallbackPrefix + "memset", IRB.getInt8PtrTy(),
1176 IRB.getInt8PtrTy(), IRB.getInt32Ty(), IntptrTy, NULL));
1177
1178 AsanHandleNoReturnFunc = checkInterfaceFunction(
1179 M.getOrInsertFunction(kAsanHandleNoReturnName, IRB.getVoidTy(), NULL));
Bob Wilsonda4147c2013-11-15 07:16:09 +00001180 AsanCovFunction = checkInterfaceFunction(M.getOrInsertFunction(
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001181 kAsanCovName, IRB.getVoidTy(), NULL));
Kostya Serebryany796f6552014-02-27 12:45:36 +00001182 AsanPtrCmpFunction = checkInterfaceFunction(M.getOrInsertFunction(
1183 kAsanPtrCmp, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1184 AsanPtrSubFunction = checkInterfaceFunction(M.getOrInsertFunction(
1185 kAsanPtrSub, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
Kostya Serebryanyf02c6062012-07-20 09:54:50 +00001186 // We insert an empty inline asm after __asan_report* to avoid callback merge.
1187 EmptyAsm = InlineAsm::get(FunctionType::get(IRB.getVoidTy(), false),
1188 StringRef(""), StringRef(""),
1189 /*hasSideEffects=*/true);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001190}
1191
1192// virtual
1193bool AddressSanitizer::doInitialization(Module &M) {
1194 // Initialize the private fields. No one has accessed them before.
Rafael Espindola93512512014-02-25 17:30:31 +00001195 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
1196 if (!DLP)
Evgeniy Stepanov119cb2e2014-04-23 12:51:32 +00001197 report_fatal_error("data layout missing");
Rafael Espindola93512512014-02-25 17:30:31 +00001198 DL = &DLP->getDataLayout();
1199
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001200 DynamicallyInitializedGlobals.Init(M);
1201
1202 C = &(M.getContext());
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001203 LongSize = DL->getPointerSizeInBits();
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001204 IntptrTy = Type::getIntNTy(*C, LongSize);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001205
1206 AsanCtorFunction = Function::Create(
1207 FunctionType::get(Type::getVoidTy(*C), false),
1208 GlobalValue::InternalLinkage, kAsanModuleCtorName, &M);
1209 BasicBlock *AsanCtorBB = BasicBlock::Create(*C, "", AsanCtorFunction);
1210 // call __asan_init in the module ctor.
1211 IRBuilder<> IRB(ReturnInst::Create(*C, AsanCtorBB));
1212 AsanInitFunction = checkInterfaceFunction(
1213 M.getOrInsertFunction(kAsanInitName, IRB.getVoidTy(), NULL));
1214 AsanInitFunction->setLinkage(Function::ExternalLinkage);
1215 IRB.CreateCall(AsanInitFunction);
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001216
Evgeniy Stepanov13665362014-01-16 10:19:12 +00001217 Mapping = getShadowMapping(M, LongSize);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001218
Alexey Samsonov1f647502014-05-29 01:10:14 +00001219 appendToGlobalCtors(M, AsanCtorFunction, kAsanCtorAndDtorPriority);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001220 return true;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001221}
1222
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001223bool AddressSanitizer::maybeInsertAsanInitAtFunctionEntry(Function &F) {
1224 // For each NSObject descendant having a +load method, this method is invoked
1225 // by the ObjC runtime before any of the static constructors is called.
1226 // Therefore we need to instrument such methods with a call to __asan_init
1227 // at the beginning in order to initialize our runtime before any access to
1228 // the shadow memory.
1229 // We cannot just ignore these methods, because they may call other
1230 // instrumented functions.
1231 if (F.getName().find(" load]") != std::string::npos) {
1232 IRBuilder<> IRB(F.begin()->begin());
1233 IRB.CreateCall(AsanInitFunction);
1234 return true;
1235 }
1236 return false;
1237}
1238
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001239void AddressSanitizer::InjectCoverageAtBlock(Function &F, BasicBlock &BB) {
1240 BasicBlock::iterator IP = BB.getFirstInsertionPt(), BE = BB.end();
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001241 // Skip static allocas at the top of the entry block so they don't become
1242 // dynamic when we split the block. If we used our optimized stack layout,
1243 // then there will only be one alloca and it will come first.
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001244 for (; IP != BE; ++IP) {
1245 AllocaInst *AI = dyn_cast<AllocaInst>(IP);
1246 if (!AI || !AI->isStaticAlloca())
1247 break;
1248 }
1249
1250 IRBuilder<> IRB(IP);
Bob Wilsonda4147c2013-11-15 07:16:09 +00001251 Type *Int8Ty = IRB.getInt8Ty();
1252 GlobalVariable *Guard = new GlobalVariable(
Kostya Serebryany0604c622013-11-15 09:52:05 +00001253 *F.getParent(), Int8Ty, false, GlobalValue::PrivateLinkage,
Bob Wilsonda4147c2013-11-15 07:16:09 +00001254 Constant::getNullValue(Int8Ty), "__asan_gen_cov_" + F.getName());
1255 LoadInst *Load = IRB.CreateLoad(Guard);
1256 Load->setAtomic(Monotonic);
1257 Load->setAlignment(1);
1258 Value *Cmp = IRB.CreateICmpEQ(Constant::getNullValue(Int8Ty), Load);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001259 Instruction *Ins = SplitBlockAndInsertIfThen(
1260 Cmp, IP, false, MDBuilder(*C).createBranchWeights(1, 100000));
Bob Wilsonda4147c2013-11-15 07:16:09 +00001261 IRB.SetInsertPoint(Ins);
1262 // We pass &F to __sanitizer_cov. We could avoid this and rely on
1263 // GET_CALLER_PC, but having the PC of the first instruction is just nice.
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001264 Instruction *Call = IRB.CreateCall(AsanCovFunction);
1265 Call->setDebugLoc(IP->getDebugLoc());
Bob Wilsonda4147c2013-11-15 07:16:09 +00001266 StoreInst *Store = IRB.CreateStore(ConstantInt::get(Int8Ty, 1), Guard);
1267 Store->setAtomic(Monotonic);
1268 Store->setAlignment(1);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001269}
1270
1271// Poor man's coverage that works with ASan.
1272// We create a Guard boolean variable with the same linkage
1273// as the function and inject this code into the entry block (-asan-coverage=1)
1274// or all blocks (-asan-coverage=2):
1275// if (*Guard) {
1276// __sanitizer_cov(&F);
1277// *Guard = 1;
1278// }
1279// The accesses to Guard are atomic. The rest of the logic is
1280// in __sanitizer_cov (it's fine to call it more than once).
1281//
1282// This coverage implementation provides very limited data:
1283// it only tells if a given function (block) was ever executed.
1284// No counters, no per-edge data.
1285// But for many use cases this is what we need and the added slowdown
1286// is negligible. This simple implementation will probably be obsoleted
1287// by the upcoming Clang-based coverage implementation.
1288// By having it here and now we hope to
1289// a) get the functionality to users earlier and
1290// b) collect usage statistics to help improve Clang coverage design.
1291bool AddressSanitizer::InjectCoverage(Function &F,
1292 const ArrayRef<BasicBlock *> AllBlocks) {
1293 if (!ClCoverage) return false;
1294
Kostya Serebryany22e88102014-04-18 08:02:42 +00001295 if (ClCoverage == 1 ||
1296 (unsigned)ClCoverageBlockThreshold < AllBlocks.size()) {
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001297 InjectCoverageAtBlock(F, F.getEntryBlock());
1298 } else {
Alexey Samsonova02e6642014-05-29 18:40:48 +00001299 for (auto BB : AllBlocks)
1300 InjectCoverageAtBlock(F, *BB);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001301 }
Bob Wilsonda4147c2013-11-15 07:16:09 +00001302 return true;
1303}
1304
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001305bool AddressSanitizer::runOnFunction(Function &F) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001306 if (&F == AsanCtorFunction) return false;
Kostya Serebryany6b5b58d2013-03-18 07:33:49 +00001307 if (F.getLinkage() == GlobalValue::AvailableExternallyLinkage) return false;
Kostya Serebryany20343352012-10-17 13:40:06 +00001308 DEBUG(dbgs() << "ASAN instrumenting:\n" << F << "\n");
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001309 initializeCallbacks(*F.getParent());
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001310
Kostya Serebryanycf880b92013-02-26 06:58:09 +00001311 // If needed, insert __asan_init before checking for SanitizeAddress attr.
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001312 maybeInsertAsanInitAtFunctionEntry(F);
1313
Alexey Samsonov6d8bab82014-06-02 18:08:27 +00001314 if (!F.hasFnAttribute(Attribute::SanitizeAddress))
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001315 return false;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001316
1317 if (!ClDebugFunc.empty() && ClDebugFunc != F.getName())
1318 return false;
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001319
1320 // We want to instrument every address only once per basic block (unless there
1321 // are calls between uses).
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001322 SmallSet<Value*, 16> TempsToInstrument;
1323 SmallVector<Instruction*, 16> ToInstrument;
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001324 SmallVector<Instruction*, 8> NoReturnCalls;
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001325 SmallVector<BasicBlock*, 16> AllBlocks;
Kostya Serebryany796f6552014-02-27 12:45:36 +00001326 SmallVector<Instruction*, 16> PointerComparisonsOrSubtracts;
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001327 int NumAllocas = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +00001328 bool IsWrite;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00001329 unsigned Alignment;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001330
1331 // Fill the set of memory operations to instrument.
Alexey Samsonova02e6642014-05-29 18:40:48 +00001332 for (auto &BB : F) {
1333 AllBlocks.push_back(&BB);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001334 TempsToInstrument.clear();
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001335 int NumInsnsPerBB = 0;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001336 for (auto &Inst : BB) {
1337 if (LooksLikeCodeInBug11395(&Inst)) return false;
1338 if (Value *Addr =
1339 isInterestingMemoryAccess(&Inst, &IsWrite, &Alignment)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001340 if (ClOpt && ClOptSameTemp) {
1341 if (!TempsToInstrument.insert(Addr))
1342 continue; // We've seen this temp in the current BB.
1343 }
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +00001344 } else if (ClInvalidPointerPairs &&
Alexey Samsonova02e6642014-05-29 18:40:48 +00001345 isInterestingPointerComparisonOrSubtraction(&Inst)) {
1346 PointerComparisonsOrSubtracts.push_back(&Inst);
Kostya Serebryany796f6552014-02-27 12:45:36 +00001347 continue;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001348 } else if (isa<MemIntrinsic>(Inst)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001349 // ok, take it.
1350 } else {
Alexey Samsonova02e6642014-05-29 18:40:48 +00001351 if (isa<AllocaInst>(Inst))
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001352 NumAllocas++;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001353 CallSite CS(&Inst);
Kostya Serebryany699ac282013-02-20 12:35:15 +00001354 if (CS) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001355 // A call inside BB.
1356 TempsToInstrument.clear();
Kostya Serebryany699ac282013-02-20 12:35:15 +00001357 if (CS.doesNotReturn())
1358 NoReturnCalls.push_back(CS.getInstruction());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001359 }
1360 continue;
1361 }
Alexey Samsonova02e6642014-05-29 18:40:48 +00001362 ToInstrument.push_back(&Inst);
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001363 NumInsnsPerBB++;
1364 if (NumInsnsPerBB >= ClMaxInsnsToInstrumentPerBB)
1365 break;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001366 }
1367 }
1368
Craig Topperf40110f2014-04-25 05:29:35 +00001369 Function *UninstrumentedDuplicate = nullptr;
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001370 bool LikelyToInstrument =
1371 !NoReturnCalls.empty() || !ToInstrument.empty() || (NumAllocas > 0);
1372 if (ClKeepUninstrumented && LikelyToInstrument) {
1373 ValueToValueMapTy VMap;
1374 UninstrumentedDuplicate = CloneFunction(&F, VMap, false);
1375 UninstrumentedDuplicate->removeFnAttr(Attribute::SanitizeAddress);
1376 UninstrumentedDuplicate->setName("NOASAN_" + F.getName());
1377 F.getParent()->getFunctionList().push_back(UninstrumentedDuplicate);
1378 }
1379
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001380 bool UseCalls = false;
1381 if (ClInstrumentationWithCallsThreshold >= 0 &&
1382 ToInstrument.size() > (unsigned)ClInstrumentationWithCallsThreshold)
1383 UseCalls = true;
1384
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001385 // Instrument.
1386 int NumInstrumented = 0;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001387 for (auto Inst : ToInstrument) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001388 if (ClDebugMin < 0 || ClDebugMax < 0 ||
1389 (NumInstrumented >= ClDebugMin && NumInstrumented <= ClDebugMax)) {
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00001390 if (isInterestingMemoryAccess(Inst, &IsWrite, &Alignment))
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001391 instrumentMop(Inst, UseCalls);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001392 else
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00001393 instrumentMemIntrinsic(cast<MemIntrinsic>(Inst));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001394 }
1395 NumInstrumented++;
1396 }
1397
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001398 FunctionStackPoisoner FSP(F, *this);
1399 bool ChangedStack = FSP.runOnFunction();
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001400
1401 // We must unpoison the stack before every NoReturn call (throw, _exit, etc).
1402 // See e.g. http://code.google.com/p/address-sanitizer/issues/detail?id=37
Alexey Samsonova02e6642014-05-29 18:40:48 +00001403 for (auto CI : NoReturnCalls) {
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001404 IRBuilder<> IRB(CI);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001405 IRB.CreateCall(AsanHandleNoReturnFunc);
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001406 }
1407
Alexey Samsonova02e6642014-05-29 18:40:48 +00001408 for (auto Inst : PointerComparisonsOrSubtracts) {
1409 instrumentPointerComparisonOrSubtraction(Inst);
Kostya Serebryany796f6552014-02-27 12:45:36 +00001410 NumInstrumented++;
1411 }
1412
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001413 bool res = NumInstrumented > 0 || ChangedStack || !NoReturnCalls.empty();
Bob Wilsonda4147c2013-11-15 07:16:09 +00001414
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001415 if (InjectCoverage(F, AllBlocks))
Bob Wilsonda4147c2013-11-15 07:16:09 +00001416 res = true;
1417
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001418 DEBUG(dbgs() << "ASAN done instrumenting: " << res << " " << F << "\n");
1419
1420 if (ClKeepUninstrumented) {
1421 if (!res) {
1422 // No instrumentation is done, no need for the duplicate.
1423 if (UninstrumentedDuplicate)
1424 UninstrumentedDuplicate->eraseFromParent();
1425 } else {
1426 // The function was instrumented. We must have the duplicate.
1427 assert(UninstrumentedDuplicate);
1428 UninstrumentedDuplicate->setSection("NOASAN");
1429 assert(!F.hasSection());
1430 F.setSection("ASAN");
1431 }
1432 }
1433
1434 return res;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001435}
1436
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001437// Workaround for bug 11395: we don't want to instrument stack in functions
1438// with large assembly blobs (32-bit only), otherwise reg alloc may crash.
1439// FIXME: remove once the bug 11395 is fixed.
1440bool AddressSanitizer::LooksLikeCodeInBug11395(Instruction *I) {
1441 if (LongSize != 32) return false;
1442 CallInst *CI = dyn_cast<CallInst>(I);
1443 if (!CI || !CI->isInlineAsm()) return false;
1444 if (CI->getNumArgOperands() <= 5) return false;
1445 // We have inline assembly with quite a few arguments.
1446 return true;
1447}
1448
1449void FunctionStackPoisoner::initializeCallbacks(Module &M) {
1450 IRBuilder<> IRB(*C);
Kostya Serebryany6805de52013-09-10 13:16:56 +00001451 for (int i = 0; i <= kMaxAsanStackMallocSizeClass; i++) {
1452 std::string Suffix = itostr(i);
1453 AsanStackMallocFunc[i] = checkInterfaceFunction(
1454 M.getOrInsertFunction(kAsanStackMallocNameTemplate + Suffix, IntptrTy,
1455 IntptrTy, IntptrTy, NULL));
1456 AsanStackFreeFunc[i] = checkInterfaceFunction(M.getOrInsertFunction(
1457 kAsanStackFreeNameTemplate + Suffix, IRB.getVoidTy(), IntptrTy,
1458 IntptrTy, IntptrTy, NULL));
1459 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001460 AsanPoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1461 kAsanPoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1462 AsanUnpoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1463 kAsanUnpoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1464}
1465
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001466void
1467FunctionStackPoisoner::poisonRedZones(const ArrayRef<uint8_t> ShadowBytes,
1468 IRBuilder<> &IRB, Value *ShadowBase,
1469 bool DoPoison) {
1470 size_t n = ShadowBytes.size();
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001471 size_t i = 0;
1472 // We need to (un)poison n bytes of stack shadow. Poison as many as we can
1473 // using 64-bit stores (if we are on 64-bit arch), then poison the rest
1474 // with 32-bit stores, then with 16-byte stores, then with 8-byte stores.
1475 for (size_t LargeStoreSizeInBytes = ASan.LongSize / 8;
1476 LargeStoreSizeInBytes != 0; LargeStoreSizeInBytes /= 2) {
1477 for (; i + LargeStoreSizeInBytes - 1 < n; i += LargeStoreSizeInBytes) {
1478 uint64_t Val = 0;
1479 for (size_t j = 0; j < LargeStoreSizeInBytes; j++) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001480 if (ASan.DL->isLittleEndian())
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001481 Val |= (uint64_t)ShadowBytes[i + j] << (8 * j);
1482 else
1483 Val = (Val << 8) | ShadowBytes[i + j];
1484 }
1485 if (!Val) continue;
1486 Value *Ptr = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1487 Type *StoreTy = Type::getIntNTy(*C, LargeStoreSizeInBytes * 8);
1488 Value *Poison = ConstantInt::get(StoreTy, DoPoison ? Val : 0);
1489 IRB.CreateStore(Poison, IRB.CreateIntToPtr(Ptr, StoreTy->getPointerTo()));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001490 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001491 }
1492}
1493
Kostya Serebryany6805de52013-09-10 13:16:56 +00001494// Fake stack allocator (asan_fake_stack.h) has 11 size classes
1495// for every power of 2 from kMinStackMallocSize to kMaxAsanStackMallocSizeClass
1496static int StackMallocSizeClass(uint64_t LocalStackSize) {
1497 assert(LocalStackSize <= kMaxStackMallocSize);
1498 uint64_t MaxSize = kMinStackMallocSize;
1499 for (int i = 0; ; i++, MaxSize *= 2)
1500 if (LocalStackSize <= MaxSize)
1501 return i;
1502 llvm_unreachable("impossible LocalStackSize");
1503}
1504
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001505// Set Size bytes starting from ShadowBase to kAsanStackAfterReturnMagic.
1506// We can not use MemSet intrinsic because it may end up calling the actual
1507// memset. Size is a multiple of 8.
1508// Currently this generates 8-byte stores on x86_64; it may be better to
1509// generate wider stores.
1510void FunctionStackPoisoner::SetShadowToStackAfterReturnInlined(
1511 IRBuilder<> &IRB, Value *ShadowBase, int Size) {
1512 assert(!(Size % 8));
1513 assert(kAsanStackAfterReturnMagic == 0xf5);
1514 for (int i = 0; i < Size; i += 8) {
1515 Value *p = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1516 IRB.CreateStore(ConstantInt::get(IRB.getInt64Ty(), 0xf5f5f5f5f5f5f5f5ULL),
1517 IRB.CreateIntToPtr(p, IRB.getInt64Ty()->getPointerTo()));
1518 }
1519}
1520
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001521static DebugLoc getFunctionEntryDebugLocation(Function &F) {
Alexey Samsonova02e6642014-05-29 18:40:48 +00001522 for (const auto &Inst : F.getEntryBlock())
1523 if (!isa<AllocaInst>(Inst))
1524 return Inst.getDebugLoc();
1525 return DebugLoc();
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001526}
1527
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001528void FunctionStackPoisoner::poisonStack() {
Kostya Serebryany6805de52013-09-10 13:16:56 +00001529 int StackMallocIdx = -1;
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001530 DebugLoc EntryDebugLocation = getFunctionEntryDebugLocation(F);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001531
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001532 assert(AllocaVec.size() > 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001533 Instruction *InsBefore = AllocaVec[0];
1534 IRBuilder<> IRB(InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001535 IRB.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001536
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001537 SmallVector<ASanStackVariableDescription, 16> SVD;
1538 SVD.reserve(AllocaVec.size());
Alexey Samsonova02e6642014-05-29 18:40:48 +00001539 for (AllocaInst *AI : AllocaVec) {
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001540 ASanStackVariableDescription D = { AI->getName().data(),
1541 getAllocaSizeInBytes(AI),
1542 AI->getAlignment(), AI, 0};
1543 SVD.push_back(D);
1544 }
1545 // Minimal header size (left redzone) is 4 pointers,
1546 // i.e. 32 bytes on 64-bit platforms and 16 bytes in 32-bit platforms.
1547 size_t MinHeaderSize = ASan.LongSize / 2;
1548 ASanStackFrameLayout L;
1549 ComputeASanStackFrameLayout(SVD, 1UL << Mapping.Scale, MinHeaderSize, &L);
1550 DEBUG(dbgs() << L.DescriptionString << " --- " << L.FrameSize << "\n");
1551 uint64_t LocalStackSize = L.FrameSize;
1552 bool DoStackMalloc =
1553 ASan.CheckUseAfterReturn && LocalStackSize <= kMaxStackMallocSize;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001554
1555 Type *ByteArrayTy = ArrayType::get(IRB.getInt8Ty(), LocalStackSize);
1556 AllocaInst *MyAlloca =
1557 new AllocaInst(ByteArrayTy, "MyAlloca", InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001558 MyAlloca->setDebugLoc(EntryDebugLocation);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001559 assert((ClRealignStack & (ClRealignStack - 1)) == 0);
1560 size_t FrameAlignment = std::max(L.FrameAlignment, (size_t)ClRealignStack);
1561 MyAlloca->setAlignment(FrameAlignment);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001562 assert(MyAlloca->isStaticAlloca());
1563 Value *OrigStackBase = IRB.CreatePointerCast(MyAlloca, IntptrTy);
1564 Value *LocalStackBase = OrigStackBase;
1565
1566 if (DoStackMalloc) {
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001567 // LocalStackBase = OrigStackBase
1568 // if (__asan_option_detect_stack_use_after_return)
1569 // LocalStackBase = __asan_stack_malloc_N(LocalStackBase, OrigStackBase);
Kostya Serebryany6805de52013-09-10 13:16:56 +00001570 StackMallocIdx = StackMallocSizeClass(LocalStackSize);
1571 assert(StackMallocIdx <= kMaxAsanStackMallocSizeClass);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001572 Constant *OptionDetectUAR = F.getParent()->getOrInsertGlobal(
1573 kAsanOptionDetectUAR, IRB.getInt32Ty());
1574 Value *Cmp = IRB.CreateICmpNE(IRB.CreateLoad(OptionDetectUAR),
1575 Constant::getNullValue(IRB.getInt32Ty()));
Evgeniy Stepanova9164e92013-12-19 13:29:56 +00001576 Instruction *Term = SplitBlockAndInsertIfThen(Cmp, InsBefore, false);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001577 BasicBlock *CmpBlock = cast<Instruction>(Cmp)->getParent();
1578 IRBuilder<> IRBIf(Term);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001579 IRBIf.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001580 LocalStackBase = IRBIf.CreateCall2(
1581 AsanStackMallocFunc[StackMallocIdx],
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001582 ConstantInt::get(IntptrTy, LocalStackSize), OrigStackBase);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001583 BasicBlock *SetBlock = cast<Instruction>(LocalStackBase)->getParent();
1584 IRB.SetInsertPoint(InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001585 IRB.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001586 PHINode *Phi = IRB.CreatePHI(IntptrTy, 2);
1587 Phi->addIncoming(OrigStackBase, CmpBlock);
1588 Phi->addIncoming(LocalStackBase, SetBlock);
1589 LocalStackBase = Phi;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001590 }
1591
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001592 // Insert poison calls for lifetime intrinsics for alloca.
1593 bool HavePoisonedAllocas = false;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001594 for (const auto &APC : AllocaPoisonCallVec) {
Alexey Samsonova788b942013-11-18 14:53:55 +00001595 assert(APC.InsBefore);
1596 assert(APC.AI);
1597 IRBuilder<> IRB(APC.InsBefore);
1598 poisonAlloca(APC.AI, APC.Size, IRB, APC.DoPoison);
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001599 HavePoisonedAllocas |= APC.DoPoison;
1600 }
1601
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001602 // Replace Alloca instructions with base+offset.
Alexey Samsonova02e6642014-05-29 18:40:48 +00001603 for (const auto &Desc : SVD) {
1604 AllocaInst *AI = Desc.AI;
Alexey Samsonov261177a2012-12-04 01:34:23 +00001605 Value *NewAllocaPtr = IRB.CreateIntToPtr(
Alexey Samsonova02e6642014-05-29 18:40:48 +00001606 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, Desc.Offset)),
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001607 AI->getType());
Alexey Samsonov3d43b632012-12-12 14:31:53 +00001608 replaceDbgDeclareForAlloca(AI, NewAllocaPtr, DIB);
Alexey Samsonov261177a2012-12-04 01:34:23 +00001609 AI->replaceAllUsesWith(NewAllocaPtr);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001610 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001611
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001612 // The left-most redzone has enough space for at least 4 pointers.
1613 // Write the Magic value to redzone[0].
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001614 Value *BasePlus0 = IRB.CreateIntToPtr(LocalStackBase, IntptrPtrTy);
1615 IRB.CreateStore(ConstantInt::get(IntptrTy, kCurrentStackFrameMagic),
1616 BasePlus0);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001617 // Write the frame description constant to redzone[1].
1618 Value *BasePlus1 = IRB.CreateIntToPtr(
1619 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, ASan.LongSize/8)),
1620 IntptrPtrTy);
Alexey Samsonov9bdb63a2012-11-02 12:20:34 +00001621 GlobalVariable *StackDescriptionGlobal =
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001622 createPrivateGlobalForString(*F.getParent(), L.DescriptionString,
1623 /*AllowMerging*/true);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001624 Value *Description = IRB.CreatePointerCast(StackDescriptionGlobal,
1625 IntptrTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001626 IRB.CreateStore(Description, BasePlus1);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001627 // Write the PC to redzone[2].
1628 Value *BasePlus2 = IRB.CreateIntToPtr(
1629 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy,
1630 2 * ASan.LongSize/8)),
1631 IntptrPtrTy);
1632 IRB.CreateStore(IRB.CreatePointerCast(&F, IntptrTy), BasePlus2);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001633
1634 // Poison the stack redzones at the entry.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001635 Value *ShadowBase = ASan.memToShadow(LocalStackBase, IRB);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001636 poisonRedZones(L.ShadowBytes, IRB, ShadowBase, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001637
Kostya Serebryany530e2072013-12-23 14:15:08 +00001638 // (Un)poison the stack before all ret instructions.
Alexey Samsonova02e6642014-05-29 18:40:48 +00001639 for (auto Ret : RetVec) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001640 IRBuilder<> IRBRet(Ret);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001641 // Mark the current frame as retired.
1642 IRBRet.CreateStore(ConstantInt::get(IntptrTy, kRetiredStackFrameMagic),
1643 BasePlus0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001644 if (DoStackMalloc) {
Kostya Serebryany6805de52013-09-10 13:16:56 +00001645 assert(StackMallocIdx >= 0);
Kostya Serebryany530e2072013-12-23 14:15:08 +00001646 // if LocalStackBase != OrigStackBase:
1647 // // In use-after-return mode, poison the whole stack frame.
1648 // if StackMallocIdx <= 4
1649 // // For small sizes inline the whole thing:
1650 // memset(ShadowBase, kAsanStackAfterReturnMagic, ShadowSize);
1651 // **SavedFlagPtr(LocalStackBase) = 0
1652 // else
1653 // __asan_stack_free_N(LocalStackBase, OrigStackBase)
1654 // else
1655 // <This is not a fake stack; unpoison the redzones>
1656 Value *Cmp = IRBRet.CreateICmpNE(LocalStackBase, OrigStackBase);
1657 TerminatorInst *ThenTerm, *ElseTerm;
1658 SplitBlockAndInsertIfThenElse(Cmp, Ret, &ThenTerm, &ElseTerm);
1659
1660 IRBuilder<> IRBPoison(ThenTerm);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001661 if (StackMallocIdx <= 4) {
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001662 int ClassSize = kMinStackMallocSize << StackMallocIdx;
1663 SetShadowToStackAfterReturnInlined(IRBPoison, ShadowBase,
1664 ClassSize >> Mapping.Scale);
1665 Value *SavedFlagPtrPtr = IRBPoison.CreateAdd(
1666 LocalStackBase,
1667 ConstantInt::get(IntptrTy, ClassSize - ASan.LongSize / 8));
1668 Value *SavedFlagPtr = IRBPoison.CreateLoad(
1669 IRBPoison.CreateIntToPtr(SavedFlagPtrPtr, IntptrPtrTy));
1670 IRBPoison.CreateStore(
1671 Constant::getNullValue(IRBPoison.getInt8Ty()),
1672 IRBPoison.CreateIntToPtr(SavedFlagPtr, IRBPoison.getInt8PtrTy()));
1673 } else {
1674 // For larger frames call __asan_stack_free_*.
Kostya Serebryany530e2072013-12-23 14:15:08 +00001675 IRBPoison.CreateCall3(AsanStackFreeFunc[StackMallocIdx], LocalStackBase,
1676 ConstantInt::get(IntptrTy, LocalStackSize),
1677 OrigStackBase);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001678 }
Kostya Serebryany530e2072013-12-23 14:15:08 +00001679
1680 IRBuilder<> IRBElse(ElseTerm);
1681 poisonRedZones(L.ShadowBytes, IRBElse, ShadowBase, false);
Alexey Samsonov261177a2012-12-04 01:34:23 +00001682 } else if (HavePoisonedAllocas) {
1683 // If we poisoned some allocas in llvm.lifetime analysis,
1684 // unpoison whole stack frame now.
1685 assert(LocalStackBase == OrigStackBase);
1686 poisonAlloca(LocalStackBase, LocalStackSize, IRBRet, false);
Kostya Serebryany530e2072013-12-23 14:15:08 +00001687 } else {
1688 poisonRedZones(L.ShadowBytes, IRBRet, ShadowBase, false);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001689 }
1690 }
1691
Kostya Serebryany09959942012-10-19 06:20:53 +00001692 // We are done. Remove the old unused alloca instructions.
Alexey Samsonova02e6642014-05-29 18:40:48 +00001693 for (auto AI : AllocaVec)
1694 AI->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001695}
Alexey Samsonov261177a2012-12-04 01:34:23 +00001696
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001697void FunctionStackPoisoner::poisonAlloca(Value *V, uint64_t Size,
Jakub Staszak23ec6a92013-08-09 20:53:48 +00001698 IRBuilder<> &IRB, bool DoPoison) {
Alexey Samsonov261177a2012-12-04 01:34:23 +00001699 // For now just insert the call to ASan runtime.
1700 Value *AddrArg = IRB.CreatePointerCast(V, IntptrTy);
1701 Value *SizeArg = ConstantInt::get(IntptrTy, Size);
1702 IRB.CreateCall2(DoPoison ? AsanPoisonStackMemoryFunc
1703 : AsanUnpoisonStackMemoryFunc,
1704 AddrArg, SizeArg);
1705}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001706
1707// Handling llvm.lifetime intrinsics for a given %alloca:
1708// (1) collect all llvm.lifetime.xxx(%size, %value) describing the alloca.
1709// (2) if %size is constant, poison memory for llvm.lifetime.end (to detect
1710// invalid accesses) and unpoison it for llvm.lifetime.start (the memory
1711// could be poisoned by previous llvm.lifetime.end instruction, as the
1712// variable may go in and out of scope several times, e.g. in loops).
1713// (3) if we poisoned at least one %alloca in a function,
1714// unpoison the whole stack frame at function exit.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001715
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001716AllocaInst *FunctionStackPoisoner::findAllocaForValue(Value *V) {
1717 if (AllocaInst *AI = dyn_cast<AllocaInst>(V))
1718 // We're intested only in allocas we can handle.
Craig Topperf40110f2014-04-25 05:29:35 +00001719 return isInterestingAlloca(*AI) ? AI : nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001720 // See if we've already calculated (or started to calculate) alloca for a
1721 // given value.
1722 AllocaForValueMapTy::iterator I = AllocaForValue.find(V);
1723 if (I != AllocaForValue.end())
1724 return I->second;
1725 // Store 0 while we're calculating alloca for value V to avoid
1726 // infinite recursion if the value references itself.
Craig Topperf40110f2014-04-25 05:29:35 +00001727 AllocaForValue[V] = nullptr;
1728 AllocaInst *Res = nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001729 if (CastInst *CI = dyn_cast<CastInst>(V))
1730 Res = findAllocaForValue(CI->getOperand(0));
1731 else if (PHINode *PN = dyn_cast<PHINode>(V)) {
1732 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1733 Value *IncValue = PN->getIncomingValue(i);
1734 // Allow self-referencing phi-nodes.
1735 if (IncValue == PN) continue;
1736 AllocaInst *IncValueAI = findAllocaForValue(IncValue);
1737 // AI for incoming values should exist and should all be equal.
Craig Topperf40110f2014-04-25 05:29:35 +00001738 if (IncValueAI == nullptr || (Res != nullptr && IncValueAI != Res))
1739 return nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001740 Res = IncValueAI;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001741 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001742 }
Craig Topperf40110f2014-04-25 05:29:35 +00001743 if (Res)
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001744 AllocaForValue[V] = Res;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001745 return Res;
1746}