blob: 291ad2ed47e5911dbea6a21eb1069a134a1f24cf [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";
73static const int kAsanCtorAndCtorPriority = 1;
74static 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";
Bob Wilsonda4147c2013-11-15 07:16:09 +000083static const char *const kAsanCovName = "__sanitizer_cov";
Kostya Serebryany796f6552014-02-27 12:45:36 +000084static const char *const kAsanPtrCmp = "__sanitizer_ptr_cmp";
85static const char *const kAsanPtrSub = "__sanitizer_ptr_sub";
Craig Topperd3a34f82013-07-16 01:17:10 +000086static const char *const kAsanHandleNoReturnName = "__asan_handle_no_return";
Kostya Serebryany6805de52013-09-10 13:16:56 +000087static const int kMaxAsanStackMallocSizeClass = 10;
88static const char *const kAsanStackMallocNameTemplate = "__asan_stack_malloc_";
89static const char *const kAsanStackFreeNameTemplate = "__asan_stack_free_";
Craig Topperd3a34f82013-07-16 01:17:10 +000090static const char *const kAsanGenPrefix = "__asan_gen_";
91static const char *const kAsanPoisonStackMemoryName =
92 "__asan_poison_stack_memory";
93static const char *const kAsanUnpoisonStackMemoryName =
Alexey Samsonov261177a2012-12-04 01:34:23 +000094 "__asan_unpoison_stack_memory";
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000095
Kostya Serebryanyf3223822013-09-18 14:07:14 +000096static const char *const kAsanOptionDetectUAR =
97 "__asan_option_detect_stack_use_after_return";
98
David Blaikieeacc2872013-09-18 00:11:27 +000099#ifndef NDEBUG
Kostya Serebryanybc86efb2013-09-17 12:14:50 +0000100static const int kAsanStackAfterReturnMagic = 0xf5;
David Blaikieeacc2872013-09-18 00:11:27 +0000101#endif
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000102
Kostya Serebryany874dae62012-07-16 16:15:40 +0000103// Accesses sizes are powers of two: 1, 2, 4, 8, 16.
104static const size_t kNumberOfAccessSizes = 5;
105
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000106// Command-line flags.
107
108// This flag may need to be replaced with -f[no-]asan-reads.
109static cl::opt<bool> ClInstrumentReads("asan-instrument-reads",
110 cl::desc("instrument read instructions"), cl::Hidden, cl::init(true));
111static cl::opt<bool> ClInstrumentWrites("asan-instrument-writes",
112 cl::desc("instrument write instructions"), cl::Hidden, cl::init(true));
Kostya Serebryany90241602012-05-30 09:04:06 +0000113static cl::opt<bool> ClInstrumentAtomics("asan-instrument-atomics",
114 cl::desc("instrument atomic instructions (rmw, cmpxchg)"),
115 cl::Hidden, cl::init(true));
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000116static cl::opt<bool> ClAlwaysSlowPath("asan-always-slow-path",
117 cl::desc("use instrumentation with slow path for all accesses"),
118 cl::Hidden, cl::init(false));
Kostya Serebryany874dae62012-07-16 16:15:40 +0000119// This flag limits the number of instructions to be instrumented
Kostya Serebryanyc387ca72012-06-28 09:34:41 +0000120// in any given BB. Normally, this should be set to unlimited (INT_MAX),
121// but due to http://llvm.org/bugs/show_bug.cgi?id=12652 we temporary
122// set it to 10000.
123static cl::opt<int> ClMaxInsnsToInstrumentPerBB("asan-max-ins-per-bb",
124 cl::init(10000),
125 cl::desc("maximal number of instructions to instrument in any given BB"),
126 cl::Hidden);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000127// This flag may need to be replaced with -f[no]asan-stack.
128static cl::opt<bool> ClStack("asan-stack",
129 cl::desc("Handle stack memory"), cl::Hidden, cl::init(true));
130// This flag may need to be replaced with -f[no]asan-use-after-return.
131static cl::opt<bool> ClUseAfterReturn("asan-use-after-return",
132 cl::desc("Check return-after-free"), cl::Hidden, cl::init(false));
133// This flag may need to be replaced with -f[no]asan-globals.
134static cl::opt<bool> ClGlobals("asan-globals",
135 cl::desc("Handle global objects"), cl::Hidden, cl::init(true));
Kostya Serebryany714c67c2014-01-17 11:00:30 +0000136static cl::opt<int> ClCoverage("asan-coverage",
137 cl::desc("ASan coverage. 0: none, 1: entry block, 2: all blocks"),
138 cl::Hidden, cl::init(false));
Kostya Serebryany22e88102014-04-18 08:02:42 +0000139static cl::opt<int> ClCoverageBlockThreshold("asan-coverage-block-threshold",
140 cl::desc("Add coverage instrumentation only to the entry block if there "
141 "are more than this number of blocks."),
142 cl::Hidden, cl::init(1500));
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000143static cl::opt<bool> ClInitializers("asan-initialization-order",
144 cl::desc("Handle C++ initializer order"), cl::Hidden, cl::init(false));
Kostya Serebryany796f6552014-02-27 12:45:36 +0000145static cl::opt<bool> ClInvalidPointerPairs("asan-detect-invalid-pointer-pair",
146 cl::desc("Instrument <, <=, >, >=, - with pointer operands"),
Kostya Serebryanyec346652014-02-27 12:56:20 +0000147 cl::Hidden, cl::init(false));
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000148static cl::opt<unsigned> ClRealignStack("asan-realign-stack",
149 cl::desc("Realign stack to the value of this flag (power of two)"),
150 cl::Hidden, cl::init(32));
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000151static cl::opt<std::string> ClBlacklistFile("asan-blacklist",
152 cl::desc("File containing the list of objects to ignore "
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000153 "during instrumentation"), cl::Hidden);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000154static cl::opt<int> ClInstrumentationWithCallsThreshold(
155 "asan-instrumentation-with-call-threshold",
156 cl::desc("If the function being instrumented contains more than "
157 "this number of memory accesses, use callbacks instead of "
158 "inline checks (-1 means never use callbacks)."),
Kostya Serebryany35e53832014-04-21 14:35:00 +0000159 cl::Hidden, cl::init(10000));
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000160static cl::opt<std::string> ClMemoryAccessCallbackPrefix(
161 "asan-memory-access-callback-prefix",
162 cl::desc("Prefix for memory access callbacks"), cl::Hidden,
163 cl::init("__asan_"));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000164
Kostya Serebryany9f5213f2013-06-26 09:18:17 +0000165// This is an experimental feature that will allow to choose between
166// instrumented and non-instrumented code at link-time.
167// If this option is on, just before instrumenting a function we create its
168// clone; if the function is not changed by asan the clone is deleted.
169// If we end up with a clone, we put the instrumented function into a section
170// called "ASAN" and the uninstrumented function into a section called "NOASAN".
171//
172// This is still a prototype, we need to figure out a way to keep two copies of
173// a function so that the linker can easily choose one of them.
174static cl::opt<bool> ClKeepUninstrumented("asan-keep-uninstrumented-functions",
175 cl::desc("Keep uninstrumented copies of functions"),
176 cl::Hidden, cl::init(false));
177
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000178// These flags allow to change the shadow mapping.
179// The shadow mapping looks like
180// Shadow = (Mem >> scale) + (1 << offset_log)
181static cl::opt<int> ClMappingScale("asan-mapping-scale",
182 cl::desc("scale of asan shadow mapping"), cl::Hidden, cl::init(0));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000183
184// Optimization flags. Not user visible, used mostly for testing
185// and benchmarking the tool.
186static cl::opt<bool> ClOpt("asan-opt",
187 cl::desc("Optimize instrumentation"), cl::Hidden, cl::init(true));
188static cl::opt<bool> ClOptSameTemp("asan-opt-same-temp",
189 cl::desc("Instrument the same temp just once"), cl::Hidden,
190 cl::init(true));
191static cl::opt<bool> ClOptGlobals("asan-opt-globals",
192 cl::desc("Don't instrument scalar globals"), cl::Hidden, cl::init(true));
193
Alexey Samsonovdf624522012-11-29 18:14:24 +0000194static cl::opt<bool> ClCheckLifetime("asan-check-lifetime",
195 cl::desc("Use llvm.lifetime intrinsics to insert extra checks"),
196 cl::Hidden, cl::init(false));
197
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000198// Debug flags.
199static cl::opt<int> ClDebug("asan-debug", cl::desc("debug"), cl::Hidden,
200 cl::init(0));
201static cl::opt<int> ClDebugStack("asan-debug-stack", cl::desc("debug stack"),
202 cl::Hidden, cl::init(0));
203static cl::opt<std::string> ClDebugFunc("asan-debug-func",
204 cl::Hidden, cl::desc("Debug func"));
205static cl::opt<int> ClDebugMin("asan-debug-min", cl::desc("Debug min inst"),
206 cl::Hidden, cl::init(-1));
207static cl::opt<int> ClDebugMax("asan-debug-max", cl::desc("Debug man inst"),
208 cl::Hidden, cl::init(-1));
209
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000210STATISTIC(NumInstrumentedReads, "Number of instrumented reads");
211STATISTIC(NumInstrumentedWrites, "Number of instrumented writes");
212STATISTIC(NumOptimizedAccessesToGlobalArray,
213 "Number of optimized accesses to global arrays");
214STATISTIC(NumOptimizedAccessesToGlobalVar,
215 "Number of optimized accesses to global vars");
216
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000217namespace {
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000218/// A set of dynamically initialized globals extracted from metadata.
219class SetOfDynamicallyInitializedGlobals {
220 public:
221 void Init(Module& M) {
222 // Clang generates metadata identifying all dynamically initialized globals.
223 NamedMDNode *DynamicGlobals =
224 M.getNamedMetadata("llvm.asan.dynamically_initialized_globals");
225 if (!DynamicGlobals)
226 return;
227 for (int i = 0, n = DynamicGlobals->getNumOperands(); i < n; ++i) {
228 MDNode *MDN = DynamicGlobals->getOperand(i);
229 assert(MDN->getNumOperands() == 1);
230 Value *VG = MDN->getOperand(0);
231 // The optimizer may optimize away a global entirely, in which case we
232 // cannot instrument access to it.
233 if (!VG)
234 continue;
235 DynInitGlobals.insert(cast<GlobalVariable>(VG));
236 }
237 }
238 bool Contains(GlobalVariable *G) { return DynInitGlobals.count(G) != 0; }
239 private:
240 SmallSet<GlobalValue*, 32> DynInitGlobals;
241};
242
Alexey 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 Samsonovef51c3f2012-12-03 19:09:26 +0000310 bool CheckLifetime = false,
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000311 StringRef BlacklistFile = StringRef())
Alexey Samsonovdf624522012-11-29 18:14:24 +0000312 : FunctionPass(ID),
313 CheckInitOrder(CheckInitOrder || ClInitializers),
314 CheckUseAfterReturn(CheckUseAfterReturn || ClUseAfterReturn),
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000315 CheckLifetime(CheckLifetime || ClCheckLifetime),
316 BlacklistFile(BlacklistFile.empty() ? ClBlacklistFile
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000317 : BlacklistFile) {}
Craig Topper3e4c6972014-03-05 09:10:37 +0000318 const char *getPassName() const override {
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000319 return "AddressSanitizerFunctionPass";
320 }
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000321 void instrumentMop(Instruction *I, bool UseCalls);
Kostya Serebryany796f6552014-02-27 12:45:36 +0000322 void instrumentPointerComparisonOrSubtraction(Instruction *I);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000323 void instrumentAddress(Instruction *OrigIns, Instruction *InsertBefore,
324 Value *Addr, uint32_t TypeSize, bool IsWrite,
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000325 Value *SizeArgument, bool UseCalls);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000326 Value *createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
327 Value *ShadowValue, uint32_t TypeSize);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000328 Instruction *generateCrashCode(Instruction *InsertBefore, Value *Addr,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000329 bool IsWrite, size_t AccessSizeIndex,
330 Value *SizeArgument);
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000331 void instrumentMemIntrinsic(MemIntrinsic *MI);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000332 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB);
Craig Topper3e4c6972014-03-05 09:10:37 +0000333 bool runOnFunction(Function &F) override;
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +0000334 bool maybeInsertAsanInitAtFunctionEntry(Function &F);
Craig Topper3e4c6972014-03-05 09:10:37 +0000335 bool doInitialization(Module &M) override;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000336 static char ID; // Pass identification, replacement for typeid
337
338 private:
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000339 void initializeCallbacks(Module &M);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000340
Kostya Serebryany1cdc6e92011-11-18 01:41:06 +0000341 bool LooksLikeCodeInBug11395(Instruction *I);
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000342 bool GlobalIsLinkerInitialized(GlobalVariable *G);
Kostya Serebryany714c67c2014-01-17 11:00:30 +0000343 bool InjectCoverage(Function &F, const ArrayRef<BasicBlock*> AllBlocks);
344 void InjectCoverageAtBlock(Function &F, BasicBlock &BB);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000345
Alexey Samsonovdf624522012-11-29 18:14:24 +0000346 bool CheckInitOrder;
347 bool CheckUseAfterReturn;
348 bool CheckLifetime;
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000349 SmallString<64> BlacklistFile;
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000350
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000351 LLVMContext *C;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000352 const DataLayout *DL;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000353 int LongSize;
354 Type *IntptrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000355 ShadowMapping Mapping;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000356 Function *AsanCtorFunction;
357 Function *AsanInitFunction;
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000358 Function *AsanHandleNoReturnFunc;
Bob Wilsonda4147c2013-11-15 07:16:09 +0000359 Function *AsanCovFunction;
Kostya Serebryany796f6552014-02-27 12:45:36 +0000360 Function *AsanPtrCmpFunction, *AsanPtrSubFunction;
Ahmed Charles56440fd2014-03-06 05:51:42 +0000361 std::unique_ptr<SpecialCaseList> BL;
Kostya Serebryany4273bb02012-07-16 14:09:42 +0000362 // This array is indexed by AccessIsWrite and log2(AccessSize).
363 Function *AsanErrorCallback[2][kNumberOfAccessSizes];
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000364 Function *AsanMemoryAccessCallback[2][kNumberOfAccessSizes];
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000365 // This array is indexed by AccessIsWrite.
Kostya Serebryany86332c02014-04-21 07:10:43 +0000366 Function *AsanErrorCallbackSized[2],
367 *AsanMemoryAccessCallbackSized[2];
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000368 Function *AsanMemmove, *AsanMemcpy, *AsanMemset;
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000369 InlineAsm *EmptyAsm;
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000370 SetOfDynamicallyInitializedGlobals DynamicallyInitializedGlobals;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000371
372 friend struct FunctionStackPoisoner;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000373};
Kostya Serebryany874dae62012-07-16 16:15:40 +0000374
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000375class AddressSanitizerModule : public ModulePass {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000376 public:
Alexey Samsonov819eddc2013-03-14 12:38:58 +0000377 AddressSanitizerModule(bool CheckInitOrder = true,
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000378 StringRef BlacklistFile = StringRef())
Alexey Samsonovdf624522012-11-29 18:14:24 +0000379 : ModulePass(ID),
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000380 CheckInitOrder(CheckInitOrder || ClInitializers),
381 BlacklistFile(BlacklistFile.empty() ? ClBlacklistFile
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000382 : BlacklistFile) {}
Craig Topper3e4c6972014-03-05 09:10:37 +0000383 bool runOnModule(Module &M) override;
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000384 static char ID; // Pass identification, replacement for typeid
Craig Topper3e4c6972014-03-05 09:10:37 +0000385 const char *getPassName() const override {
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000386 return "AddressSanitizerModule";
387 }
Alexey Samsonov261177a2012-12-04 01:34:23 +0000388
Kostya Serebryany20a79972012-11-22 03:18:50 +0000389 private:
Alexey Samsonov788381b2012-12-25 12:28:20 +0000390 void initializeCallbacks(Module &M);
391
Kostya Serebryany20a79972012-11-22 03:18:50 +0000392 bool ShouldInstrumentGlobal(GlobalVariable *G);
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000393 void createInitializerPoisonCalls(Module &M, GlobalValue *ModuleName);
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000394 size_t MinRedzoneSizeForGlobal() const {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000395 return RedzoneSizeForScale(Mapping.Scale);
396 }
Kostya Serebryany20a79972012-11-22 03:18:50 +0000397
Alexey Samsonovdf624522012-11-29 18:14:24 +0000398 bool CheckInitOrder;
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000399 SmallString<64> BlacklistFile;
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000400
Ahmed Charles56440fd2014-03-06 05:51:42 +0000401 std::unique_ptr<SpecialCaseList> BL;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000402 SetOfDynamicallyInitializedGlobals DynamicallyInitializedGlobals;
403 Type *IntptrTy;
404 LLVMContext *C;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000405 const DataLayout *DL;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000406 ShadowMapping Mapping;
Alexey Samsonov788381b2012-12-25 12:28:20 +0000407 Function *AsanPoisonGlobals;
408 Function *AsanUnpoisonGlobals;
409 Function *AsanRegisterGlobals;
410 Function *AsanUnregisterGlobals;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000411};
412
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000413// Stack poisoning does not play well with exception handling.
414// When an exception is thrown, we essentially bypass the code
415// that unpoisones the stack. This is why the run-time library has
416// to intercept __cxa_throw (as well as longjmp, etc) and unpoison the entire
417// stack in the interceptor. This however does not work inside the
418// actual function which catches the exception. Most likely because the
419// compiler hoists the load of the shadow value somewhere too high.
420// This causes asan to report a non-existing bug on 453.povray.
421// It sounds like an LLVM bug.
422struct FunctionStackPoisoner : public InstVisitor<FunctionStackPoisoner> {
423 Function &F;
424 AddressSanitizer &ASan;
425 DIBuilder DIB;
426 LLVMContext *C;
427 Type *IntptrTy;
428 Type *IntptrPtrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000429 ShadowMapping Mapping;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000430
431 SmallVector<AllocaInst*, 16> AllocaVec;
432 SmallVector<Instruction*, 8> RetVec;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000433 unsigned StackAlignment;
434
Kostya Serebryany6805de52013-09-10 13:16:56 +0000435 Function *AsanStackMallocFunc[kMaxAsanStackMallocSizeClass + 1],
436 *AsanStackFreeFunc[kMaxAsanStackMallocSizeClass + 1];
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000437 Function *AsanPoisonStackMemoryFunc, *AsanUnpoisonStackMemoryFunc;
438
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000439 // Stores a place and arguments of poisoning/unpoisoning call for alloca.
440 struct AllocaPoisonCall {
441 IntrinsicInst *InsBefore;
Alexey Samsonova788b942013-11-18 14:53:55 +0000442 AllocaInst *AI;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000443 uint64_t Size;
444 bool DoPoison;
445 };
446 SmallVector<AllocaPoisonCall, 8> AllocaPoisonCallVec;
447
448 // Maps Value to an AllocaInst from which the Value is originated.
449 typedef DenseMap<Value*, AllocaInst*> AllocaForValueMapTy;
450 AllocaForValueMapTy AllocaForValue;
451
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000452 FunctionStackPoisoner(Function &F, AddressSanitizer &ASan)
453 : F(F), ASan(ASan), DIB(*F.getParent()), C(ASan.C),
454 IntptrTy(ASan.IntptrTy), IntptrPtrTy(PointerType::get(IntptrTy, 0)),
Alexey Samsonov1345d352013-01-16 13:23:28 +0000455 Mapping(ASan.Mapping),
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000456 StackAlignment(1 << Mapping.Scale) {}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000457
458 bool runOnFunction() {
459 if (!ClStack) return false;
460 // Collect alloca, ret, lifetime instructions etc.
David Blaikieceec2bd2014-04-11 01:50:01 +0000461 for (BasicBlock *BB : depth_first(&F.getEntryBlock()))
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000462 visit(*BB);
David Blaikieceec2bd2014-04-11 01:50:01 +0000463
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000464 if (AllocaVec.empty()) return false;
465
466 initializeCallbacks(*F.getParent());
467
468 poisonStack();
469
470 if (ClDebugStack) {
471 DEBUG(dbgs() << F);
472 }
473 return true;
474 }
475
476 // Finds all static Alloca instructions and puts
477 // poisoned red zones around all of them.
478 // Then unpoison everything back before the function returns.
479 void poisonStack();
480
481 // ----------------------- Visitors.
482 /// \brief Collect all Ret instructions.
483 void visitReturnInst(ReturnInst &RI) {
484 RetVec.push_back(&RI);
485 }
486
487 /// \brief Collect Alloca instructions we want (and can) handle.
488 void visitAllocaInst(AllocaInst &AI) {
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000489 if (!isInterestingAlloca(AI)) return;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000490
491 StackAlignment = std::max(StackAlignment, AI.getAlignment());
492 AllocaVec.push_back(&AI);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000493 }
494
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000495 /// \brief Collect lifetime intrinsic calls to check for use-after-scope
496 /// errors.
497 void visitIntrinsicInst(IntrinsicInst &II) {
498 if (!ASan.CheckLifetime) return;
499 Intrinsic::ID ID = II.getIntrinsicID();
500 if (ID != Intrinsic::lifetime_start &&
501 ID != Intrinsic::lifetime_end)
502 return;
503 // Found lifetime intrinsic, add ASan instrumentation if necessary.
504 ConstantInt *Size = dyn_cast<ConstantInt>(II.getArgOperand(0));
505 // If size argument is undefined, don't do anything.
506 if (Size->isMinusOne()) return;
507 // Check that size doesn't saturate uint64_t and can
508 // be stored in IntptrTy.
509 const uint64_t SizeValue = Size->getValue().getLimitedValue();
510 if (SizeValue == ~0ULL ||
511 !ConstantInt::isValueValidForType(IntptrTy, SizeValue))
512 return;
513 // Find alloca instruction that corresponds to llvm.lifetime argument.
514 AllocaInst *AI = findAllocaForValue(II.getArgOperand(1));
515 if (!AI) return;
516 bool DoPoison = (ID == Intrinsic::lifetime_end);
Alexey Samsonova788b942013-11-18 14:53:55 +0000517 AllocaPoisonCall APC = {&II, AI, SizeValue, DoPoison};
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000518 AllocaPoisonCallVec.push_back(APC);
519 }
520
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000521 // ---------------------- Helpers.
522 void initializeCallbacks(Module &M);
523
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000524 // Check if we want (and can) handle this alloca.
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000525 bool isInterestingAlloca(AllocaInst &AI) const {
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000526 return (!AI.isArrayAllocation() && AI.isStaticAlloca() &&
527 AI.getAllocatedType()->isSized() &&
528 // alloca() may be called with 0 size, ignore it.
529 getAllocaSizeInBytes(&AI) > 0);
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000530 }
531
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000532 uint64_t getAllocaSizeInBytes(AllocaInst *AI) const {
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000533 Type *Ty = AI->getAllocatedType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000534 uint64_t SizeInBytes = ASan.DL->getTypeAllocSize(Ty);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000535 return SizeInBytes;
536 }
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000537 /// Finds alloca where the value comes from.
538 AllocaInst *findAllocaForValue(Value *V);
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000539 void poisonRedZones(const ArrayRef<uint8_t> ShadowBytes, IRBuilder<> &IRB,
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000540 Value *ShadowBase, bool DoPoison);
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000541 void poisonAlloca(Value *V, uint64_t Size, IRBuilder<> &IRB, bool DoPoison);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +0000542
543 void SetShadowToStackAfterReturnInlined(IRBuilder<> &IRB, Value *ShadowBase,
544 int Size);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000545};
546
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000547} // namespace
548
549char AddressSanitizer::ID = 0;
550INITIALIZE_PASS(AddressSanitizer, "asan",
551 "AddressSanitizer: detects use-after-free and out-of-bounds bugs.",
552 false, false)
Alexey Samsonovdf624522012-11-29 18:14:24 +0000553FunctionPass *llvm::createAddressSanitizerFunctionPass(
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000554 bool CheckInitOrder, bool CheckUseAfterReturn, bool CheckLifetime,
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000555 StringRef BlacklistFile) {
Alexey Samsonovdf624522012-11-29 18:14:24 +0000556 return new AddressSanitizer(CheckInitOrder, CheckUseAfterReturn,
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000557 CheckLifetime, BlacklistFile);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000558}
559
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000560char AddressSanitizerModule::ID = 0;
561INITIALIZE_PASS(AddressSanitizerModule, "asan-module",
562 "AddressSanitizer: detects use-after-free and out-of-bounds bugs."
563 "ModulePass", false, false)
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000564ModulePass *llvm::createAddressSanitizerModulePass(
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000565 bool CheckInitOrder, StringRef BlacklistFile) {
566 return new AddressSanitizerModule(CheckInitOrder, BlacklistFile);
Alexander Potapenkoc94cf8f2012-01-23 11:22:43 +0000567}
568
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000569static size_t TypeSizeToSizeIndex(uint32_t TypeSize) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000570 size_t Res = countTrailingZeros(TypeSize / 8);
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000571 assert(Res < kNumberOfAccessSizes);
572 return Res;
573}
574
Bill Wendling58f8cef2013-08-06 22:52:42 +0000575// \brief Create a constant for Str so that we can pass it to the run-time lib.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000576static GlobalVariable *createPrivateGlobalForString(
577 Module &M, StringRef Str, bool AllowMerging) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000578 Constant *StrConst = ConstantDataArray::getString(M.getContext(), Str);
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000579 // We use private linkage for module-local strings. If they can be merged
580 // with another one, we set the unnamed_addr attribute.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000581 GlobalVariable *GV =
582 new GlobalVariable(M, StrConst->getType(), true,
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000583 GlobalValue::PrivateLinkage, StrConst, kAsanGenPrefix);
584 if (AllowMerging)
585 GV->setUnnamedAddr(true);
Kostya Serebryany10cc12f2013-03-18 09:38:39 +0000586 GV->setAlignment(1); // Strings may not be merged w/o setting align 1.
587 return GV;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000588}
589
590static bool GlobalWasGeneratedByAsan(GlobalVariable *G) {
591 return G->getName().find(kAsanGenPrefix) == 0;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000592}
593
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000594Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) {
595 // Shadow >> scale
Alexey Samsonov1345d352013-01-16 13:23:28 +0000596 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale);
597 if (Mapping.Offset == 0)
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000598 return Shadow;
599 // (Shadow >> scale) | offset
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000600 if (Mapping.OrShadowOffset)
601 return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
602 else
603 return IRB.CreateAdd(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000604}
605
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000606// Instrument memset/memmove/memcpy
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000607void AddressSanitizer::instrumentMemIntrinsic(MemIntrinsic *MI) {
608 IRBuilder<> IRB(MI);
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000609 if (isa<MemTransferInst>(MI)) {
Evgeniy Stepanoved31ca42014-05-14 10:56:19 +0000610 IRB.CreateCall3(
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000611 isa<MemMoveInst>(MI) ? AsanMemmove : AsanMemcpy,
612 IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()),
613 IRB.CreatePointerCast(MI->getOperand(1), IRB.getInt8PtrTy()),
614 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false));
615 } else if (isa<MemSetInst>(MI)) {
Evgeniy Stepanoved31ca42014-05-14 10:56:19 +0000616 IRB.CreateCall3(
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000617 AsanMemset,
618 IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()),
619 IRB.CreateIntCast(MI->getOperand(1), IRB.getInt32Ty(), false),
620 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000621 }
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000622 MI->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000623}
624
Kostya Serebryany90241602012-05-30 09:04:06 +0000625// If I is an interesting memory access, return the PointerOperand
626// and set IsWrite. Otherwise return NULL.
627static Value *isInterestingMemoryAccess(Instruction *I, bool *IsWrite) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000628 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000629 if (!ClInstrumentReads) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000630 *IsWrite = false;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000631 return LI->getPointerOperand();
632 }
Kostya Serebryany90241602012-05-30 09:04:06 +0000633 if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000634 if (!ClInstrumentWrites) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000635 *IsWrite = true;
636 return SI->getPointerOperand();
637 }
638 if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000639 if (!ClInstrumentAtomics) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000640 *IsWrite = true;
641 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;
646 return XCHG->getPointerOperand();
647 }
Craig Topperf40110f2014-04-25 05:29:35 +0000648 return nullptr;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000649}
650
Kostya Serebryany796f6552014-02-27 12:45:36 +0000651static bool isPointerOperand(Value *V) {
652 return V->getType()->isPointerTy() || isa<PtrToIntInst>(V);
653}
654
655// This is a rough heuristic; it may cause both false positives and
656// false negatives. The proper implementation requires cooperation with
657// the frontend.
658static bool isInterestingPointerComparisonOrSubtraction(Instruction *I) {
659 if (ICmpInst *Cmp = dyn_cast<ICmpInst>(I)) {
660 if (!Cmp->isRelational())
661 return false;
662 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) {
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +0000663 if (BO->getOpcode() != Instruction::Sub)
Kostya Serebryany796f6552014-02-27 12:45:36 +0000664 return false;
665 } else {
666 return false;
667 }
668 if (!isPointerOperand(I->getOperand(0)) ||
669 !isPointerOperand(I->getOperand(1)))
670 return false;
671 return true;
672}
673
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000674bool AddressSanitizer::GlobalIsLinkerInitialized(GlobalVariable *G) {
675 // If a global variable does not have dynamic initialization we don't
676 // have to instrument it. However, if a global does not have initializer
677 // at all, we assume it has dynamic initializer (in other TU).
678 return G->hasInitializer() && !DynamicallyInitializedGlobals.Contains(G);
679}
680
Kostya Serebryany796f6552014-02-27 12:45:36 +0000681void
682AddressSanitizer::instrumentPointerComparisonOrSubtraction(Instruction *I) {
683 IRBuilder<> IRB(I);
684 Function *F = isa<ICmpInst>(I) ? AsanPtrCmpFunction : AsanPtrSubFunction;
685 Value *Param[2] = {I->getOperand(0), I->getOperand(1)};
686 for (int i = 0; i < 2; i++) {
687 if (Param[i]->getType()->isPointerTy())
688 Param[i] = IRB.CreatePointerCast(Param[i], IntptrTy);
689 }
690 IRB.CreateCall2(F, Param[0], Param[1]);
691}
692
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000693void AddressSanitizer::instrumentMop(Instruction *I, bool UseCalls) {
Axel Naumann4a127062012-09-17 14:20:57 +0000694 bool IsWrite = false;
Kostya Serebryany90241602012-05-30 09:04:06 +0000695 Value *Addr = isInterestingMemoryAccess(I, &IsWrite);
696 assert(Addr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000697 if (ClOpt && ClOptGlobals) {
698 if (GlobalVariable *G = dyn_cast<GlobalVariable>(Addr)) {
699 // If initialization order checking is disabled, a simple access to a
700 // dynamically initialized global is always valid.
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000701 if (!CheckInitOrder || GlobalIsLinkerInitialized(G)) {
702 NumOptimizedAccessesToGlobalVar++;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000703 return;
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000704 }
705 }
706 ConstantExpr *CE = dyn_cast<ConstantExpr>(Addr);
707 if (CE && CE->isGEPWithNoNotionalOverIndexing()) {
708 if (GlobalVariable *G = dyn_cast<GlobalVariable>(CE->getOperand(0))) {
709 if (CE->getOperand(1)->isNullValue() && GlobalIsLinkerInitialized(G)) {
710 NumOptimizedAccessesToGlobalArray++;
711 return;
712 }
713 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000714 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000715 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000716
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000717 Type *OrigPtrTy = Addr->getType();
718 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType();
719
720 assert(OrigTy->isSized());
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000721 uint32_t TypeSize = DL->getTypeStoreSizeInBits(OrigTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000722
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000723 assert((TypeSize % 8) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000724
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000725 if (IsWrite)
726 NumInstrumentedWrites++;
727 else
728 NumInstrumentedReads++;
729
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000730 // Instrument a 1-, 2-, 4-, 8-, or 16- byte access with one check.
731 if (TypeSize == 8 || TypeSize == 16 ||
732 TypeSize == 32 || TypeSize == 64 || TypeSize == 128)
Craig Topperf40110f2014-04-25 05:29:35 +0000733 return instrumentAddress(I, I, Addr, TypeSize, IsWrite, nullptr, UseCalls);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000734 // Instrument unusual size (but still multiple of 8).
735 // We can not do it with a single check, so we do 1-byte check for the first
736 // and the last bytes. We call __asan_report_*_n(addr, real_size) to be able
737 // to report the actual access size.
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000738 IRBuilder<> IRB(I);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000739 Value *Size = ConstantInt::get(IntptrTy, TypeSize / 8);
Kostya Serebryanyc9a2c172014-04-22 11:19:45 +0000740 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
741 if (UseCalls) {
Evgeniy Stepanoved31ca42014-05-14 10:56:19 +0000742 IRB.CreateCall2(AsanMemoryAccessCallbackSized[IsWrite], AddrLong, Size);
Kostya Serebryanyc9a2c172014-04-22 11:19:45 +0000743 } else {
744 Value *LastByte = IRB.CreateIntToPtr(
745 IRB.CreateAdd(AddrLong, ConstantInt::get(IntptrTy, TypeSize / 8 - 1)),
746 OrigPtrTy);
747 instrumentAddress(I, I, Addr, 8, IsWrite, Size, false);
748 instrumentAddress(I, I, LastByte, 8, IsWrite, Size, false);
749 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000750}
751
Alexander Potapenko056e27e2012-04-23 10:47:31 +0000752// Validate the result of Module::getOrInsertFunction called for an interface
753// function of AddressSanitizer. If the instrumented module defines a function
754// with the same name, their prototypes must match, otherwise
755// getOrInsertFunction returns a bitcast.
Kostya Serebryany20a79972012-11-22 03:18:50 +0000756static Function *checkInterfaceFunction(Constant *FuncOrBitcast) {
Alexander Potapenko056e27e2012-04-23 10:47:31 +0000757 if (isa<Function>(FuncOrBitcast)) return cast<Function>(FuncOrBitcast);
758 FuncOrBitcast->dump();
759 report_fatal_error("trying to redefine an AddressSanitizer "
760 "interface function");
761}
762
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000763Instruction *AddressSanitizer::generateCrashCode(
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000764 Instruction *InsertBefore, Value *Addr,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000765 bool IsWrite, size_t AccessSizeIndex, Value *SizeArgument) {
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000766 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000767 CallInst *Call = SizeArgument
768 ? IRB.CreateCall2(AsanErrorCallbackSized[IsWrite], Addr, SizeArgument)
769 : IRB.CreateCall(AsanErrorCallback[IsWrite][AccessSizeIndex], Addr);
770
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000771 // We don't do Call->setDoesNotReturn() because the BB already has
772 // UnreachableInst at the end.
773 // This EmptyAsm is required to avoid callback merge.
774 IRB.CreateCall(EmptyAsm);
Kostya Serebryany3411f2e2012-01-06 18:09:21 +0000775 return Call;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000776}
777
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000778Value *AddressSanitizer::createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
Kostya Serebryany874dae62012-07-16 16:15:40 +0000779 Value *ShadowValue,
780 uint32_t TypeSize) {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000781 size_t Granularity = 1 << Mapping.Scale;
Kostya Serebryany874dae62012-07-16 16:15:40 +0000782 // Addr & (Granularity - 1)
783 Value *LastAccessedByte = IRB.CreateAnd(
784 AddrLong, ConstantInt::get(IntptrTy, Granularity - 1));
785 // (Addr & (Granularity - 1)) + size - 1
786 if (TypeSize / 8 > 1)
787 LastAccessedByte = IRB.CreateAdd(
788 LastAccessedByte, ConstantInt::get(IntptrTy, TypeSize / 8 - 1));
789 // (uint8_t) ((Addr & (Granularity-1)) + size - 1)
790 LastAccessedByte = IRB.CreateIntCast(
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000791 LastAccessedByte, ShadowValue->getType(), false);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000792 // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue
793 return IRB.CreateICmpSGE(LastAccessedByte, ShadowValue);
794}
795
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000796void AddressSanitizer::instrumentAddress(Instruction *OrigIns,
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000797 Instruction *InsertBefore, Value *Addr,
798 uint32_t TypeSize, bool IsWrite,
799 Value *SizeArgument, bool UseCalls) {
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000800 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000801 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000802 size_t AccessSizeIndex = TypeSizeToSizeIndex(TypeSize);
803
804 if (UseCalls) {
Kostya Serebryany94f57d192014-04-21 10:28:13 +0000805 IRB.CreateCall(AsanMemoryAccessCallback[IsWrite][AccessSizeIndex],
806 AddrLong);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000807 return;
808 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000809
810 Type *ShadowTy = IntegerType::get(
Alexey Samsonov1345d352013-01-16 13:23:28 +0000811 *C, std::max(8U, TypeSize >> Mapping.Scale));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000812 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0);
813 Value *ShadowPtr = memToShadow(AddrLong, IRB);
814 Value *CmpVal = Constant::getNullValue(ShadowTy);
815 Value *ShadowValue = IRB.CreateLoad(
816 IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy));
817
818 Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal);
Alexey Samsonov1345d352013-01-16 13:23:28 +0000819 size_t Granularity = 1 << Mapping.Scale;
Craig Topperf40110f2014-04-25 05:29:35 +0000820 TerminatorInst *CrashTerm = nullptr;
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000821
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000822 if (ClAlwaysSlowPath || (TypeSize < 8 * Granularity)) {
Evgeniy Stepanov8eb77d82012-10-19 10:48:31 +0000823 TerminatorInst *CheckTerm =
Evgeniy Stepanova9164e92013-12-19 13:29:56 +0000824 SplitBlockAndInsertIfThen(Cmp, InsertBefore, false);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000825 assert(dyn_cast<BranchInst>(CheckTerm)->isUnconditional());
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000826 BasicBlock *NextBB = CheckTerm->getSuccessor(0);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000827 IRB.SetInsertPoint(CheckTerm);
828 Value *Cmp2 = createSlowPathCmp(IRB, AddrLong, ShadowValue, TypeSize);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000829 BasicBlock *CrashBlock =
830 BasicBlock::Create(*C, "", NextBB->getParent(), NextBB);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000831 CrashTerm = new UnreachableInst(*C, CrashBlock);
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000832 BranchInst *NewTerm = BranchInst::Create(CrashBlock, NextBB, Cmp2);
833 ReplaceInstWithInst(CheckTerm, NewTerm);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000834 } else {
Evgeniy Stepanova9164e92013-12-19 13:29:56 +0000835 CrashTerm = SplitBlockAndInsertIfThen(Cmp, InsertBefore, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000836 }
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000837
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000838 Instruction *Crash = generateCrashCode(
839 CrashTerm, AddrLong, IsWrite, AccessSizeIndex, SizeArgument);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000840 Crash->setDebugLoc(OrigIns->getDebugLoc());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000841}
842
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000843void AddressSanitizerModule::createInitializerPoisonCalls(
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000844 Module &M, GlobalValue *ModuleName) {
Nico Weberba8a99c2014-05-06 23:17:26 +0000845 // We do all of our poisoning and unpoisoning within a global constructor.
846 // These are called _GLOBAL__(sub_)?I_.*.
847 // TODO: Consider looking through the functions in
848 // M.getGlobalVariable("llvm.global_ctors") instead of using this stringly
849 // typed approach.
850 Function *GlobalInit = nullptr;
851 for (auto &F : M.getFunctionList()) {
852 StringRef FName = F.getName();
853
854 const char kGlobalPrefix[] = "_GLOBAL__";
855 if (!FName.startswith(kGlobalPrefix))
856 continue;
857 FName = FName.substr(strlen(kGlobalPrefix));
858
859 const char kOptionalSub[] = "sub_";
860 if (FName.startswith(kOptionalSub))
861 FName = FName.substr(strlen(kOptionalSub));
862
863 if (FName.startswith("I_")) {
864 GlobalInit = &F;
865 break;
866 }
867 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000868 // If that function is not present, this TU contains no globals, or they have
869 // all been optimized away
870 if (!GlobalInit)
871 return;
872
873 // Set up the arguments to our poison/unpoison functions.
874 IRBuilder<> IRB(GlobalInit->begin()->getFirstInsertionPt());
875
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000876 // Add a call to poison all external globals before the given function starts.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000877 Value *ModuleNameAddr = ConstantExpr::getPointerCast(ModuleName, IntptrTy);
878 IRB.CreateCall(AsanPoisonGlobals, ModuleNameAddr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000879
880 // Add calls to unpoison all globals before each return instruction.
881 for (Function::iterator I = GlobalInit->begin(), E = GlobalInit->end();
Nico Weberba8a99c2014-05-06 23:17:26 +0000882 I != E; ++I) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000883 if (ReturnInst *RI = dyn_cast<ReturnInst>(I->getTerminator())) {
884 CallInst::Create(AsanUnpoisonGlobals, "", RI);
885 }
886 }
887}
888
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000889bool AddressSanitizerModule::ShouldInstrumentGlobal(GlobalVariable *G) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000890 Type *Ty = cast<PointerType>(G->getType())->getElementType();
Kostya Serebryany20343352012-10-17 13:40:06 +0000891 DEBUG(dbgs() << "GLOBAL: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000892
Kostya Serebryany2fa38f82012-09-05 07:29:56 +0000893 if (BL->isIn(*G)) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000894 if (!Ty->isSized()) return false;
895 if (!G->hasInitializer()) return false;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000896 if (GlobalWasGeneratedByAsan(G)) return false; // Our own global.
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000897 // Touch only those globals that will not be defined in other modules.
898 // Don't handle ODR type linkages since other modules may be built w/o asan.
899 if (G->getLinkage() != GlobalVariable::ExternalLinkage &&
900 G->getLinkage() != GlobalVariable::PrivateLinkage &&
901 G->getLinkage() != GlobalVariable::InternalLinkage)
902 return false;
903 // Two problems with thread-locals:
904 // - The address of the main thread's copy can't be computed at link-time.
905 // - Need to poison all copies, not just the main thread's one.
906 if (G->isThreadLocal())
907 return false;
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000908 // For now, just ignore this Global if the alignment is large.
909 if (G->getAlignment() > MinRedzoneSizeForGlobal()) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000910
911 // Ignore all the globals with the names starting with "\01L_OBJC_".
912 // Many of those are put into the .cstring section. The linker compresses
913 // that section by removing the spare \0s after the string terminator, so
914 // our redzones get broken.
915 if ((G->getName().find("\01L_OBJC_") == 0) ||
916 (G->getName().find("\01l_OBJC_") == 0)) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000917 DEBUG(dbgs() << "Ignoring \\01L_OBJC_* global: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000918 return false;
919 }
920
921 if (G->hasSection()) {
922 StringRef Section(G->getSection());
923 // Ignore the globals from the __OBJC section. The ObjC runtime assumes
924 // those conform to /usr/lib/objc/runtime.h, so we can't add redzones to
925 // them.
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000926 if (Section.startswith("__OBJC,") ||
927 Section.startswith("__DATA, __objc_")) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000928 DEBUG(dbgs() << "Ignoring ObjC runtime global: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000929 return false;
930 }
931 // See http://code.google.com/p/address-sanitizer/issues/detail?id=32
932 // Constant CFString instances are compiled in the following way:
933 // -- the string buffer is emitted into
934 // __TEXT,__cstring,cstring_literals
935 // -- the constant NSConstantString structure referencing that buffer
936 // is placed into __DATA,__cfstring
937 // Therefore there's no point in placing redzones into __DATA,__cfstring.
938 // Moreover, it causes the linker to crash on OS X 10.7
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000939 if (Section.startswith("__DATA,__cfstring")) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000940 DEBUG(dbgs() << "Ignoring CFString: " << *G << "\n");
941 return false;
942 }
943 // The linker merges the contents of cstring_literals and removes the
944 // trailing zeroes.
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000945 if (Section.startswith("__TEXT,__cstring,cstring_literals")) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000946 DEBUG(dbgs() << "Ignoring a cstring literal: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000947 return false;
948 }
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000949
950 // Callbacks put into the CRT initializer/terminator sections
951 // should not be instrumented.
952 // See https://code.google.com/p/address-sanitizer/issues/detail?id=305
953 // and http://msdn.microsoft.com/en-US/en-en/library/bb918180(v=vs.120).aspx
954 if (Section.startswith(".CRT")) {
955 DEBUG(dbgs() << "Ignoring a global initializer callback: " << *G << "\n");
956 return false;
957 }
958
Alexander Potapenko04969e82014-03-20 10:48:34 +0000959 // Globals from llvm.metadata aren't emitted, do not instrument them.
960 if (Section == "llvm.metadata") return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000961 }
962
963 return true;
964}
965
Alexey Samsonov788381b2012-12-25 12:28:20 +0000966void AddressSanitizerModule::initializeCallbacks(Module &M) {
967 IRBuilder<> IRB(*C);
968 // Declare our poisoning and unpoisoning functions.
969 AsanPoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000970 kAsanPoisonGlobalsName, IRB.getVoidTy(), IntptrTy, NULL));
Alexey Samsonov788381b2012-12-25 12:28:20 +0000971 AsanPoisonGlobals->setLinkage(Function::ExternalLinkage);
972 AsanUnpoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
973 kAsanUnpoisonGlobalsName, IRB.getVoidTy(), NULL));
974 AsanUnpoisonGlobals->setLinkage(Function::ExternalLinkage);
975 // Declare functions that register/unregister globals.
976 AsanRegisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
977 kAsanRegisterGlobalsName, IRB.getVoidTy(),
978 IntptrTy, IntptrTy, NULL));
979 AsanRegisterGlobals->setLinkage(Function::ExternalLinkage);
980 AsanUnregisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
981 kAsanUnregisterGlobalsName,
982 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
983 AsanUnregisterGlobals->setLinkage(Function::ExternalLinkage);
984}
985
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000986// This function replaces all global variables with new variables that have
987// trailing redzones. It also creates a function that poisons
988// redzones and inserts this function into llvm.global_ctors.
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000989bool AddressSanitizerModule::runOnModule(Module &M) {
990 if (!ClGlobals) return false;
Rafael Espindola93512512014-02-25 17:30:31 +0000991
992 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
993 if (!DLP)
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000994 return false;
Rafael Espindola93512512014-02-25 17:30:31 +0000995 DL = &DLP->getDataLayout();
996
Alexey Samsonove4b5fb82013-08-12 11:46:09 +0000997 BL.reset(SpecialCaseList::createOrDie(BlacklistFile));
Alexey Samsonov9a956e82012-11-29 18:27:01 +0000998 if (BL->isIn(M)) return false;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000999 C = &(M.getContext());
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001000 int LongSize = DL->getPointerSizeInBits();
Alexey Samsonov1345d352013-01-16 13:23:28 +00001001 IntptrTy = Type::getIntNTy(*C, LongSize);
Evgeniy Stepanov13665362014-01-16 10:19:12 +00001002 Mapping = getShadowMapping(M, LongSize);
Alexey Samsonov788381b2012-12-25 12:28:20 +00001003 initializeCallbacks(M);
1004 DynamicallyInitializedGlobals.Init(M);
Kostya Serebryany20a79972012-11-22 03:18:50 +00001005
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001006 SmallVector<GlobalVariable *, 16> GlobalsToChange;
1007
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001008 for (Module::GlobalListType::iterator G = M.global_begin(),
1009 E = M.global_end(); G != E; ++G) {
1010 if (ShouldInstrumentGlobal(G))
1011 GlobalsToChange.push_back(G);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001012 }
1013
1014 size_t n = GlobalsToChange.size();
1015 if (n == 0) return false;
1016
1017 // A global is described by a structure
1018 // size_t beg;
1019 // size_t size;
1020 // size_t size_with_redzone;
1021 // const char *name;
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001022 // const char *module_name;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001023 // size_t has_dynamic_init;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001024 // We initialize an array of such structures and pass it to a run-time call.
1025 StructType *GlobalStructTy = StructType::get(IntptrTy, IntptrTy,
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001026 IntptrTy, IntptrTy,
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001027 IntptrTy, IntptrTy, NULL);
Rafael Espindola44fee4e2013-10-01 13:32:03 +00001028 SmallVector<Constant *, 16> Initializers(n);
Kostya Serebryany20a79972012-11-22 03:18:50 +00001029
1030 Function *CtorFunc = M.getFunction(kAsanModuleCtorName);
1031 assert(CtorFunc);
1032 IRBuilder<> IRB(CtorFunc->getEntryBlock().getTerminator());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001033
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001034 bool HasDynamicallyInitializedGlobals = false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001035
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001036 // We shouldn't merge same module names, as this string serves as unique
1037 // module ID in runtime.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001038 GlobalVariable *ModuleName = createPrivateGlobalForString(
1039 M, M.getModuleIdentifier(), /*AllowMerging*/false);
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001040
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001041 for (size_t i = 0; i < n; i++) {
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001042 static const uint64_t kMaxGlobalRedzone = 1 << 18;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001043 GlobalVariable *G = GlobalsToChange[i];
1044 PointerType *PtrTy = cast<PointerType>(G->getType());
1045 Type *Ty = PtrTy->getElementType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001046 uint64_t SizeInBytes = DL->getTypeAllocSize(Ty);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001047 uint64_t MinRZ = MinRedzoneSizeForGlobal();
Kostya Serebryany87191f62013-01-24 10:35:40 +00001048 // MinRZ <= RZ <= kMaxGlobalRedzone
1049 // and trying to make RZ to be ~ 1/4 of SizeInBytes.
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001050 uint64_t RZ = std::max(MinRZ,
Kostya Serebryany87191f62013-01-24 10:35:40 +00001051 std::min(kMaxGlobalRedzone,
1052 (SizeInBytes / MinRZ / 4) * MinRZ));
1053 uint64_t RightRedzoneSize = RZ;
1054 // Round up to MinRZ
1055 if (SizeInBytes % MinRZ)
1056 RightRedzoneSize += MinRZ - (SizeInBytes % MinRZ);
1057 assert(((RightRedzoneSize + SizeInBytes) % MinRZ) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001058 Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001059 // Determine whether this global should be poisoned in initialization.
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +00001060 bool GlobalHasDynamicInitializer =
1061 DynamicallyInitializedGlobals.Contains(G);
Kostya Serebryany2fa38f82012-09-05 07:29:56 +00001062 // Don't check initialization order if this global is blacklisted.
Peter Collingbourne49062a92013-07-09 22:03:17 +00001063 GlobalHasDynamicInitializer &= !BL->isIn(*G, "init");
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));
1131 appendToGlobalDtors(M, AsanDtorFunction, kAsanCtorAndCtorPriority);
1132
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
Alexey Samsonove4b5fb82013-08-12 11:46:09 +00001200 BL.reset(SpecialCaseList::createOrDie(BlacklistFile));
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001201 DynamicallyInitializedGlobals.Init(M);
1202
1203 C = &(M.getContext());
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001204 LongSize = DL->getPointerSizeInBits();
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001205 IntptrTy = Type::getIntNTy(*C, LongSize);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001206
1207 AsanCtorFunction = Function::Create(
1208 FunctionType::get(Type::getVoidTy(*C), false),
1209 GlobalValue::InternalLinkage, kAsanModuleCtorName, &M);
1210 BasicBlock *AsanCtorBB = BasicBlock::Create(*C, "", AsanCtorFunction);
1211 // call __asan_init in the module ctor.
1212 IRBuilder<> IRB(ReturnInst::Create(*C, AsanCtorBB));
1213 AsanInitFunction = checkInterfaceFunction(
1214 M.getOrInsertFunction(kAsanInitName, IRB.getVoidTy(), NULL));
1215 AsanInitFunction->setLinkage(Function::ExternalLinkage);
1216 IRB.CreateCall(AsanInitFunction);
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001217
Evgeniy Stepanov13665362014-01-16 10:19:12 +00001218 Mapping = getShadowMapping(M, LongSize);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001219
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001220 appendToGlobalCtors(M, AsanCtorFunction, kAsanCtorAndCtorPriority);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001221 return true;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001222}
1223
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001224bool AddressSanitizer::maybeInsertAsanInitAtFunctionEntry(Function &F) {
1225 // For each NSObject descendant having a +load method, this method is invoked
1226 // by the ObjC runtime before any of the static constructors is called.
1227 // Therefore we need to instrument such methods with a call to __asan_init
1228 // at the beginning in order to initialize our runtime before any access to
1229 // the shadow memory.
1230 // We cannot just ignore these methods, because they may call other
1231 // instrumented functions.
1232 if (F.getName().find(" load]") != std::string::npos) {
1233 IRBuilder<> IRB(F.begin()->begin());
1234 IRB.CreateCall(AsanInitFunction);
1235 return true;
1236 }
1237 return false;
1238}
1239
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001240void AddressSanitizer::InjectCoverageAtBlock(Function &F, BasicBlock &BB) {
1241 BasicBlock::iterator IP = BB.getFirstInsertionPt(), BE = BB.end();
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001242 // Skip static allocas at the top of the entry block so they don't become
1243 // dynamic when we split the block. If we used our optimized stack layout,
1244 // then there will only be one alloca and it will come first.
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001245 for (; IP != BE; ++IP) {
1246 AllocaInst *AI = dyn_cast<AllocaInst>(IP);
1247 if (!AI || !AI->isStaticAlloca())
1248 break;
1249 }
1250
1251 IRBuilder<> IRB(IP);
Bob Wilsonda4147c2013-11-15 07:16:09 +00001252 Type *Int8Ty = IRB.getInt8Ty();
1253 GlobalVariable *Guard = new GlobalVariable(
Kostya Serebryany0604c622013-11-15 09:52:05 +00001254 *F.getParent(), Int8Ty, false, GlobalValue::PrivateLinkage,
Bob Wilsonda4147c2013-11-15 07:16:09 +00001255 Constant::getNullValue(Int8Ty), "__asan_gen_cov_" + F.getName());
1256 LoadInst *Load = IRB.CreateLoad(Guard);
1257 Load->setAtomic(Monotonic);
1258 Load->setAlignment(1);
1259 Value *Cmp = IRB.CreateICmpEQ(Constant::getNullValue(Int8Ty), Load);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001260 Instruction *Ins = SplitBlockAndInsertIfThen(
1261 Cmp, IP, false, MDBuilder(*C).createBranchWeights(1, 100000));
Bob Wilsonda4147c2013-11-15 07:16:09 +00001262 IRB.SetInsertPoint(Ins);
1263 // We pass &F to __sanitizer_cov. We could avoid this and rely on
1264 // GET_CALLER_PC, but having the PC of the first instruction is just nice.
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001265 Instruction *Call = IRB.CreateCall(AsanCovFunction);
1266 Call->setDebugLoc(IP->getDebugLoc());
Bob Wilsonda4147c2013-11-15 07:16:09 +00001267 StoreInst *Store = IRB.CreateStore(ConstantInt::get(Int8Ty, 1), Guard);
1268 Store->setAtomic(Monotonic);
1269 Store->setAlignment(1);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001270}
1271
1272// Poor man's coverage that works with ASan.
1273// We create a Guard boolean variable with the same linkage
1274// as the function and inject this code into the entry block (-asan-coverage=1)
1275// or all blocks (-asan-coverage=2):
1276// if (*Guard) {
1277// __sanitizer_cov(&F);
1278// *Guard = 1;
1279// }
1280// The accesses to Guard are atomic. The rest of the logic is
1281// in __sanitizer_cov (it's fine to call it more than once).
1282//
1283// This coverage implementation provides very limited data:
1284// it only tells if a given function (block) was ever executed.
1285// No counters, no per-edge data.
1286// But for many use cases this is what we need and the added slowdown
1287// is negligible. This simple implementation will probably be obsoleted
1288// by the upcoming Clang-based coverage implementation.
1289// By having it here and now we hope to
1290// a) get the functionality to users earlier and
1291// b) collect usage statistics to help improve Clang coverage design.
1292bool AddressSanitizer::InjectCoverage(Function &F,
1293 const ArrayRef<BasicBlock *> AllBlocks) {
1294 if (!ClCoverage) return false;
1295
Kostya Serebryany22e88102014-04-18 08:02:42 +00001296 if (ClCoverage == 1 ||
1297 (unsigned)ClCoverageBlockThreshold < AllBlocks.size()) {
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001298 InjectCoverageAtBlock(F, F.getEntryBlock());
1299 } else {
1300 for (size_t i = 0, n = AllBlocks.size(); i < n; i++)
1301 InjectCoverageAtBlock(F, *AllBlocks[i]);
1302 }
Bob Wilsonda4147c2013-11-15 07:16:09 +00001303 return true;
1304}
1305
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001306bool AddressSanitizer::runOnFunction(Function &F) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001307 if (BL->isIn(F)) return false;
1308 if (&F == AsanCtorFunction) return false;
Kostya Serebryany6b5b58d2013-03-18 07:33:49 +00001309 if (F.getLinkage() == GlobalValue::AvailableExternallyLinkage) return false;
Kostya Serebryany20343352012-10-17 13:40:06 +00001310 DEBUG(dbgs() << "ASAN instrumenting:\n" << F << "\n");
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001311 initializeCallbacks(*F.getParent());
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001312
Kostya Serebryanycf880b92013-02-26 06:58:09 +00001313 // If needed, insert __asan_init before checking for SanitizeAddress attr.
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001314 maybeInsertAsanInitAtFunctionEntry(F);
1315
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001316 if (!F.hasFnAttribute(Attribute::SanitizeAddress))
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001317 return false;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001318
1319 if (!ClDebugFunc.empty() && ClDebugFunc != F.getName())
1320 return false;
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001321
1322 // We want to instrument every address only once per basic block (unless there
1323 // are calls between uses).
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001324 SmallSet<Value*, 16> TempsToInstrument;
1325 SmallVector<Instruction*, 16> ToInstrument;
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001326 SmallVector<Instruction*, 8> NoReturnCalls;
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001327 SmallVector<BasicBlock*, 16> AllBlocks;
Kostya Serebryany796f6552014-02-27 12:45:36 +00001328 SmallVector<Instruction*, 16> PointerComparisonsOrSubtracts;
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001329 int NumAllocas = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +00001330 bool IsWrite;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001331
1332 // Fill the set of memory operations to instrument.
1333 for (Function::iterator FI = F.begin(), FE = F.end();
1334 FI != FE; ++FI) {
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001335 AllBlocks.push_back(FI);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001336 TempsToInstrument.clear();
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001337 int NumInsnsPerBB = 0;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001338 for (BasicBlock::iterator BI = FI->begin(), BE = FI->end();
1339 BI != BE; ++BI) {
Kostya Serebryany687d0782012-01-11 18:15:23 +00001340 if (LooksLikeCodeInBug11395(BI)) return false;
Kostya Serebryany90241602012-05-30 09:04:06 +00001341 if (Value *Addr = isInterestingMemoryAccess(BI, &IsWrite)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001342 if (ClOpt && ClOptSameTemp) {
1343 if (!TempsToInstrument.insert(Addr))
1344 continue; // We've seen this temp in the current BB.
1345 }
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +00001346 } else if (ClInvalidPointerPairs &&
Kostya Serebryany796f6552014-02-27 12:45:36 +00001347 isInterestingPointerComparisonOrSubtraction(BI)) {
1348 PointerComparisonsOrSubtracts.push_back(BI);
1349 continue;
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00001350 } else if (isa<MemIntrinsic>(BI)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001351 // ok, take it.
1352 } else {
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001353 if (isa<AllocaInst>(BI))
1354 NumAllocas++;
Kostya Serebryany699ac282013-02-20 12:35:15 +00001355 CallSite CS(BI);
1356 if (CS) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001357 // A call inside BB.
1358 TempsToInstrument.clear();
Kostya Serebryany699ac282013-02-20 12:35:15 +00001359 if (CS.doesNotReturn())
1360 NoReturnCalls.push_back(CS.getInstruction());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001361 }
1362 continue;
1363 }
1364 ToInstrument.push_back(BI);
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001365 NumInsnsPerBB++;
1366 if (NumInsnsPerBB >= ClMaxInsnsToInstrumentPerBB)
1367 break;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001368 }
1369 }
1370
Craig Topperf40110f2014-04-25 05:29:35 +00001371 Function *UninstrumentedDuplicate = nullptr;
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001372 bool LikelyToInstrument =
1373 !NoReturnCalls.empty() || !ToInstrument.empty() || (NumAllocas > 0);
1374 if (ClKeepUninstrumented && LikelyToInstrument) {
1375 ValueToValueMapTy VMap;
1376 UninstrumentedDuplicate = CloneFunction(&F, VMap, false);
1377 UninstrumentedDuplicate->removeFnAttr(Attribute::SanitizeAddress);
1378 UninstrumentedDuplicate->setName("NOASAN_" + F.getName());
1379 F.getParent()->getFunctionList().push_back(UninstrumentedDuplicate);
1380 }
1381
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001382 bool UseCalls = false;
1383 if (ClInstrumentationWithCallsThreshold >= 0 &&
1384 ToInstrument.size() > (unsigned)ClInstrumentationWithCallsThreshold)
1385 UseCalls = true;
1386
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001387 // Instrument.
1388 int NumInstrumented = 0;
1389 for (size_t i = 0, n = ToInstrument.size(); i != n; i++) {
1390 Instruction *Inst = ToInstrument[i];
1391 if (ClDebugMin < 0 || ClDebugMax < 0 ||
1392 (NumInstrumented >= ClDebugMin && NumInstrumented <= ClDebugMax)) {
Kostya Serebryany90241602012-05-30 09:04:06 +00001393 if (isInterestingMemoryAccess(Inst, &IsWrite))
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001394 instrumentMop(Inst, UseCalls);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001395 else
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00001396 instrumentMemIntrinsic(cast<MemIntrinsic>(Inst));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001397 }
1398 NumInstrumented++;
1399 }
1400
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001401 FunctionStackPoisoner FSP(F, *this);
1402 bool ChangedStack = FSP.runOnFunction();
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001403
1404 // We must unpoison the stack before every NoReturn call (throw, _exit, etc).
1405 // See e.g. http://code.google.com/p/address-sanitizer/issues/detail?id=37
1406 for (size_t i = 0, n = NoReturnCalls.size(); i != n; i++) {
1407 Instruction *CI = NoReturnCalls[i];
1408 IRBuilder<> IRB(CI);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001409 IRB.CreateCall(AsanHandleNoReturnFunc);
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001410 }
1411
Kostya Serebryany796f6552014-02-27 12:45:36 +00001412 for (size_t i = 0, n = PointerComparisonsOrSubtracts.size(); i != n; i++) {
1413 instrumentPointerComparisonOrSubtraction(PointerComparisonsOrSubtracts[i]);
1414 NumInstrumented++;
1415 }
1416
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001417 bool res = NumInstrumented > 0 || ChangedStack || !NoReturnCalls.empty();
Bob Wilsonda4147c2013-11-15 07:16:09 +00001418
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001419 if (InjectCoverage(F, AllBlocks))
Bob Wilsonda4147c2013-11-15 07:16:09 +00001420 res = true;
1421
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001422 DEBUG(dbgs() << "ASAN done instrumenting: " << res << " " << F << "\n");
1423
1424 if (ClKeepUninstrumented) {
1425 if (!res) {
1426 // No instrumentation is done, no need for the duplicate.
1427 if (UninstrumentedDuplicate)
1428 UninstrumentedDuplicate->eraseFromParent();
1429 } else {
1430 // The function was instrumented. We must have the duplicate.
1431 assert(UninstrumentedDuplicate);
1432 UninstrumentedDuplicate->setSection("NOASAN");
1433 assert(!F.hasSection());
1434 F.setSection("ASAN");
1435 }
1436 }
1437
1438 return res;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001439}
1440
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001441// Workaround for bug 11395: we don't want to instrument stack in functions
1442// with large assembly blobs (32-bit only), otherwise reg alloc may crash.
1443// FIXME: remove once the bug 11395 is fixed.
1444bool AddressSanitizer::LooksLikeCodeInBug11395(Instruction *I) {
1445 if (LongSize != 32) return false;
1446 CallInst *CI = dyn_cast<CallInst>(I);
1447 if (!CI || !CI->isInlineAsm()) return false;
1448 if (CI->getNumArgOperands() <= 5) return false;
1449 // We have inline assembly with quite a few arguments.
1450 return true;
1451}
1452
1453void FunctionStackPoisoner::initializeCallbacks(Module &M) {
1454 IRBuilder<> IRB(*C);
Kostya Serebryany6805de52013-09-10 13:16:56 +00001455 for (int i = 0; i <= kMaxAsanStackMallocSizeClass; i++) {
1456 std::string Suffix = itostr(i);
1457 AsanStackMallocFunc[i] = checkInterfaceFunction(
1458 M.getOrInsertFunction(kAsanStackMallocNameTemplate + Suffix, IntptrTy,
1459 IntptrTy, IntptrTy, NULL));
1460 AsanStackFreeFunc[i] = checkInterfaceFunction(M.getOrInsertFunction(
1461 kAsanStackFreeNameTemplate + Suffix, IRB.getVoidTy(), IntptrTy,
1462 IntptrTy, IntptrTy, NULL));
1463 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001464 AsanPoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1465 kAsanPoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1466 AsanUnpoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1467 kAsanUnpoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1468}
1469
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001470void
1471FunctionStackPoisoner::poisonRedZones(const ArrayRef<uint8_t> ShadowBytes,
1472 IRBuilder<> &IRB, Value *ShadowBase,
1473 bool DoPoison) {
1474 size_t n = ShadowBytes.size();
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001475 size_t i = 0;
1476 // We need to (un)poison n bytes of stack shadow. Poison as many as we can
1477 // using 64-bit stores (if we are on 64-bit arch), then poison the rest
1478 // with 32-bit stores, then with 16-byte stores, then with 8-byte stores.
1479 for (size_t LargeStoreSizeInBytes = ASan.LongSize / 8;
1480 LargeStoreSizeInBytes != 0; LargeStoreSizeInBytes /= 2) {
1481 for (; i + LargeStoreSizeInBytes - 1 < n; i += LargeStoreSizeInBytes) {
1482 uint64_t Val = 0;
1483 for (size_t j = 0; j < LargeStoreSizeInBytes; j++) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001484 if (ASan.DL->isLittleEndian())
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001485 Val |= (uint64_t)ShadowBytes[i + j] << (8 * j);
1486 else
1487 Val = (Val << 8) | ShadowBytes[i + j];
1488 }
1489 if (!Val) continue;
1490 Value *Ptr = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1491 Type *StoreTy = Type::getIntNTy(*C, LargeStoreSizeInBytes * 8);
1492 Value *Poison = ConstantInt::get(StoreTy, DoPoison ? Val : 0);
1493 IRB.CreateStore(Poison, IRB.CreateIntToPtr(Ptr, StoreTy->getPointerTo()));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001494 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001495 }
1496}
1497
Kostya Serebryany6805de52013-09-10 13:16:56 +00001498// Fake stack allocator (asan_fake_stack.h) has 11 size classes
1499// for every power of 2 from kMinStackMallocSize to kMaxAsanStackMallocSizeClass
1500static int StackMallocSizeClass(uint64_t LocalStackSize) {
1501 assert(LocalStackSize <= kMaxStackMallocSize);
1502 uint64_t MaxSize = kMinStackMallocSize;
1503 for (int i = 0; ; i++, MaxSize *= 2)
1504 if (LocalStackSize <= MaxSize)
1505 return i;
1506 llvm_unreachable("impossible LocalStackSize");
1507}
1508
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001509// Set Size bytes starting from ShadowBase to kAsanStackAfterReturnMagic.
1510// We can not use MemSet intrinsic because it may end up calling the actual
1511// memset. Size is a multiple of 8.
1512// Currently this generates 8-byte stores on x86_64; it may be better to
1513// generate wider stores.
1514void FunctionStackPoisoner::SetShadowToStackAfterReturnInlined(
1515 IRBuilder<> &IRB, Value *ShadowBase, int Size) {
1516 assert(!(Size % 8));
1517 assert(kAsanStackAfterReturnMagic == 0xf5);
1518 for (int i = 0; i < Size; i += 8) {
1519 Value *p = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1520 IRB.CreateStore(ConstantInt::get(IRB.getInt64Ty(), 0xf5f5f5f5f5f5f5f5ULL),
1521 IRB.CreateIntToPtr(p, IRB.getInt64Ty()->getPointerTo()));
1522 }
1523}
1524
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001525static DebugLoc getFunctionEntryDebugLocation(Function &F) {
1526 BasicBlock::iterator I = F.getEntryBlock().begin(),
1527 E = F.getEntryBlock().end();
1528 for (; I != E; ++I)
1529 if (!isa<AllocaInst>(I))
1530 break;
1531 return I->getDebugLoc();
1532}
1533
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001534void FunctionStackPoisoner::poisonStack() {
Kostya Serebryany6805de52013-09-10 13:16:56 +00001535 int StackMallocIdx = -1;
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001536 DebugLoc EntryDebugLocation = getFunctionEntryDebugLocation(F);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001537
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001538 assert(AllocaVec.size() > 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001539 Instruction *InsBefore = AllocaVec[0];
1540 IRBuilder<> IRB(InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001541 IRB.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001542
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001543 SmallVector<ASanStackVariableDescription, 16> SVD;
1544 SVD.reserve(AllocaVec.size());
1545 for (size_t i = 0, n = AllocaVec.size(); i < n; i++) {
1546 AllocaInst *AI = AllocaVec[i];
1547 ASanStackVariableDescription D = { AI->getName().data(),
1548 getAllocaSizeInBytes(AI),
1549 AI->getAlignment(), AI, 0};
1550 SVD.push_back(D);
1551 }
1552 // Minimal header size (left redzone) is 4 pointers,
1553 // i.e. 32 bytes on 64-bit platforms and 16 bytes in 32-bit platforms.
1554 size_t MinHeaderSize = ASan.LongSize / 2;
1555 ASanStackFrameLayout L;
1556 ComputeASanStackFrameLayout(SVD, 1UL << Mapping.Scale, MinHeaderSize, &L);
1557 DEBUG(dbgs() << L.DescriptionString << " --- " << L.FrameSize << "\n");
1558 uint64_t LocalStackSize = L.FrameSize;
1559 bool DoStackMalloc =
1560 ASan.CheckUseAfterReturn && LocalStackSize <= kMaxStackMallocSize;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001561
1562 Type *ByteArrayTy = ArrayType::get(IRB.getInt8Ty(), LocalStackSize);
1563 AllocaInst *MyAlloca =
1564 new AllocaInst(ByteArrayTy, "MyAlloca", InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001565 MyAlloca->setDebugLoc(EntryDebugLocation);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001566 assert((ClRealignStack & (ClRealignStack - 1)) == 0);
1567 size_t FrameAlignment = std::max(L.FrameAlignment, (size_t)ClRealignStack);
1568 MyAlloca->setAlignment(FrameAlignment);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001569 assert(MyAlloca->isStaticAlloca());
1570 Value *OrigStackBase = IRB.CreatePointerCast(MyAlloca, IntptrTy);
1571 Value *LocalStackBase = OrigStackBase;
1572
1573 if (DoStackMalloc) {
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001574 // LocalStackBase = OrigStackBase
1575 // if (__asan_option_detect_stack_use_after_return)
1576 // LocalStackBase = __asan_stack_malloc_N(LocalStackBase, OrigStackBase);
Kostya Serebryany6805de52013-09-10 13:16:56 +00001577 StackMallocIdx = StackMallocSizeClass(LocalStackSize);
1578 assert(StackMallocIdx <= kMaxAsanStackMallocSizeClass);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001579 Constant *OptionDetectUAR = F.getParent()->getOrInsertGlobal(
1580 kAsanOptionDetectUAR, IRB.getInt32Ty());
1581 Value *Cmp = IRB.CreateICmpNE(IRB.CreateLoad(OptionDetectUAR),
1582 Constant::getNullValue(IRB.getInt32Ty()));
Evgeniy Stepanova9164e92013-12-19 13:29:56 +00001583 Instruction *Term = SplitBlockAndInsertIfThen(Cmp, InsBefore, false);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001584 BasicBlock *CmpBlock = cast<Instruction>(Cmp)->getParent();
1585 IRBuilder<> IRBIf(Term);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001586 IRBIf.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001587 LocalStackBase = IRBIf.CreateCall2(
1588 AsanStackMallocFunc[StackMallocIdx],
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001589 ConstantInt::get(IntptrTy, LocalStackSize), OrigStackBase);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001590 BasicBlock *SetBlock = cast<Instruction>(LocalStackBase)->getParent();
1591 IRB.SetInsertPoint(InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001592 IRB.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001593 PHINode *Phi = IRB.CreatePHI(IntptrTy, 2);
1594 Phi->addIncoming(OrigStackBase, CmpBlock);
1595 Phi->addIncoming(LocalStackBase, SetBlock);
1596 LocalStackBase = Phi;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001597 }
1598
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001599 // Insert poison calls for lifetime intrinsics for alloca.
1600 bool HavePoisonedAllocas = false;
1601 for (size_t i = 0, n = AllocaPoisonCallVec.size(); i < n; i++) {
1602 const AllocaPoisonCall &APC = AllocaPoisonCallVec[i];
Alexey Samsonova788b942013-11-18 14:53:55 +00001603 assert(APC.InsBefore);
1604 assert(APC.AI);
1605 IRBuilder<> IRB(APC.InsBefore);
1606 poisonAlloca(APC.AI, APC.Size, IRB, APC.DoPoison);
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001607 HavePoisonedAllocas |= APC.DoPoison;
1608 }
1609
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001610 // Replace Alloca instructions with base+offset.
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001611 for (size_t i = 0, n = SVD.size(); i < n; i++) {
1612 AllocaInst *AI = SVD[i].AI;
Alexey Samsonov261177a2012-12-04 01:34:23 +00001613 Value *NewAllocaPtr = IRB.CreateIntToPtr(
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001614 IRB.CreateAdd(LocalStackBase,
1615 ConstantInt::get(IntptrTy, SVD[i].Offset)),
1616 AI->getType());
Alexey Samsonov3d43b632012-12-12 14:31:53 +00001617 replaceDbgDeclareForAlloca(AI, NewAllocaPtr, DIB);
Alexey Samsonov261177a2012-12-04 01:34:23 +00001618 AI->replaceAllUsesWith(NewAllocaPtr);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001619 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001620
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001621 // The left-most redzone has enough space for at least 4 pointers.
1622 // Write the Magic value to redzone[0].
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001623 Value *BasePlus0 = IRB.CreateIntToPtr(LocalStackBase, IntptrPtrTy);
1624 IRB.CreateStore(ConstantInt::get(IntptrTy, kCurrentStackFrameMagic),
1625 BasePlus0);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001626 // Write the frame description constant to redzone[1].
1627 Value *BasePlus1 = IRB.CreateIntToPtr(
1628 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, ASan.LongSize/8)),
1629 IntptrPtrTy);
Alexey Samsonov9bdb63a2012-11-02 12:20:34 +00001630 GlobalVariable *StackDescriptionGlobal =
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001631 createPrivateGlobalForString(*F.getParent(), L.DescriptionString,
1632 /*AllowMerging*/true);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001633 Value *Description = IRB.CreatePointerCast(StackDescriptionGlobal,
1634 IntptrTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001635 IRB.CreateStore(Description, BasePlus1);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001636 // Write the PC to redzone[2].
1637 Value *BasePlus2 = IRB.CreateIntToPtr(
1638 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy,
1639 2 * ASan.LongSize/8)),
1640 IntptrPtrTy);
1641 IRB.CreateStore(IRB.CreatePointerCast(&F, IntptrTy), BasePlus2);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001642
1643 // Poison the stack redzones at the entry.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001644 Value *ShadowBase = ASan.memToShadow(LocalStackBase, IRB);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001645 poisonRedZones(L.ShadowBytes, IRB, ShadowBase, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001646
Kostya Serebryany530e2072013-12-23 14:15:08 +00001647 // (Un)poison the stack before all ret instructions.
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001648 for (size_t i = 0, n = RetVec.size(); i < n; i++) {
1649 Instruction *Ret = RetVec[i];
1650 IRBuilder<> IRBRet(Ret);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001651 // Mark the current frame as retired.
1652 IRBRet.CreateStore(ConstantInt::get(IntptrTy, kRetiredStackFrameMagic),
1653 BasePlus0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001654 if (DoStackMalloc) {
Kostya Serebryany6805de52013-09-10 13:16:56 +00001655 assert(StackMallocIdx >= 0);
Kostya Serebryany530e2072013-12-23 14:15:08 +00001656 // if LocalStackBase != OrigStackBase:
1657 // // In use-after-return mode, poison the whole stack frame.
1658 // if StackMallocIdx <= 4
1659 // // For small sizes inline the whole thing:
1660 // memset(ShadowBase, kAsanStackAfterReturnMagic, ShadowSize);
1661 // **SavedFlagPtr(LocalStackBase) = 0
1662 // else
1663 // __asan_stack_free_N(LocalStackBase, OrigStackBase)
1664 // else
1665 // <This is not a fake stack; unpoison the redzones>
1666 Value *Cmp = IRBRet.CreateICmpNE(LocalStackBase, OrigStackBase);
1667 TerminatorInst *ThenTerm, *ElseTerm;
1668 SplitBlockAndInsertIfThenElse(Cmp, Ret, &ThenTerm, &ElseTerm);
1669
1670 IRBuilder<> IRBPoison(ThenTerm);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001671 if (StackMallocIdx <= 4) {
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001672 int ClassSize = kMinStackMallocSize << StackMallocIdx;
1673 SetShadowToStackAfterReturnInlined(IRBPoison, ShadowBase,
1674 ClassSize >> Mapping.Scale);
1675 Value *SavedFlagPtrPtr = IRBPoison.CreateAdd(
1676 LocalStackBase,
1677 ConstantInt::get(IntptrTy, ClassSize - ASan.LongSize / 8));
1678 Value *SavedFlagPtr = IRBPoison.CreateLoad(
1679 IRBPoison.CreateIntToPtr(SavedFlagPtrPtr, IntptrPtrTy));
1680 IRBPoison.CreateStore(
1681 Constant::getNullValue(IRBPoison.getInt8Ty()),
1682 IRBPoison.CreateIntToPtr(SavedFlagPtr, IRBPoison.getInt8PtrTy()));
1683 } else {
1684 // For larger frames call __asan_stack_free_*.
Kostya Serebryany530e2072013-12-23 14:15:08 +00001685 IRBPoison.CreateCall3(AsanStackFreeFunc[StackMallocIdx], LocalStackBase,
1686 ConstantInt::get(IntptrTy, LocalStackSize),
1687 OrigStackBase);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001688 }
Kostya Serebryany530e2072013-12-23 14:15:08 +00001689
1690 IRBuilder<> IRBElse(ElseTerm);
1691 poisonRedZones(L.ShadowBytes, IRBElse, ShadowBase, false);
Alexey Samsonov261177a2012-12-04 01:34:23 +00001692 } else if (HavePoisonedAllocas) {
1693 // If we poisoned some allocas in llvm.lifetime analysis,
1694 // unpoison whole stack frame now.
1695 assert(LocalStackBase == OrigStackBase);
1696 poisonAlloca(LocalStackBase, LocalStackSize, IRBRet, false);
Kostya Serebryany530e2072013-12-23 14:15:08 +00001697 } else {
1698 poisonRedZones(L.ShadowBytes, IRBRet, ShadowBase, false);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001699 }
1700 }
1701
Kostya Serebryany09959942012-10-19 06:20:53 +00001702 // We are done. Remove the old unused alloca instructions.
1703 for (size_t i = 0, n = AllocaVec.size(); i < n; i++)
1704 AllocaVec[i]->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001705}
Alexey Samsonov261177a2012-12-04 01:34:23 +00001706
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001707void FunctionStackPoisoner::poisonAlloca(Value *V, uint64_t Size,
Jakub Staszak23ec6a92013-08-09 20:53:48 +00001708 IRBuilder<> &IRB, bool DoPoison) {
Alexey Samsonov261177a2012-12-04 01:34:23 +00001709 // For now just insert the call to ASan runtime.
1710 Value *AddrArg = IRB.CreatePointerCast(V, IntptrTy);
1711 Value *SizeArg = ConstantInt::get(IntptrTy, Size);
1712 IRB.CreateCall2(DoPoison ? AsanPoisonStackMemoryFunc
1713 : AsanUnpoisonStackMemoryFunc,
1714 AddrArg, SizeArg);
1715}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001716
1717// Handling llvm.lifetime intrinsics for a given %alloca:
1718// (1) collect all llvm.lifetime.xxx(%size, %value) describing the alloca.
1719// (2) if %size is constant, poison memory for llvm.lifetime.end (to detect
1720// invalid accesses) and unpoison it for llvm.lifetime.start (the memory
1721// could be poisoned by previous llvm.lifetime.end instruction, as the
1722// variable may go in and out of scope several times, e.g. in loops).
1723// (3) if we poisoned at least one %alloca in a function,
1724// unpoison the whole stack frame at function exit.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001725
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001726AllocaInst *FunctionStackPoisoner::findAllocaForValue(Value *V) {
1727 if (AllocaInst *AI = dyn_cast<AllocaInst>(V))
1728 // We're intested only in allocas we can handle.
Craig Topperf40110f2014-04-25 05:29:35 +00001729 return isInterestingAlloca(*AI) ? AI : nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001730 // See if we've already calculated (or started to calculate) alloca for a
1731 // given value.
1732 AllocaForValueMapTy::iterator I = AllocaForValue.find(V);
1733 if (I != AllocaForValue.end())
1734 return I->second;
1735 // Store 0 while we're calculating alloca for value V to avoid
1736 // infinite recursion if the value references itself.
Craig Topperf40110f2014-04-25 05:29:35 +00001737 AllocaForValue[V] = nullptr;
1738 AllocaInst *Res = nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001739 if (CastInst *CI = dyn_cast<CastInst>(V))
1740 Res = findAllocaForValue(CI->getOperand(0));
1741 else if (PHINode *PN = dyn_cast<PHINode>(V)) {
1742 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1743 Value *IncValue = PN->getIncomingValue(i);
1744 // Allow self-referencing phi-nodes.
1745 if (IncValue == PN) continue;
1746 AllocaInst *IncValueAI = findAllocaForValue(IncValue);
1747 // AI for incoming values should exist and should all be equal.
Craig Topperf40110f2014-04-25 05:29:35 +00001748 if (IncValueAI == nullptr || (Res != nullptr && IncValueAI != Res))
1749 return nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001750 Res = IncValueAI;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001751 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001752 }
Craig Topperf40110f2014-04-25 05:29:35 +00001753 if (Res)
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001754 AllocaForValue[V] = Res;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001755 return Res;
1756}