blob: ed4f999b88317bbd8639072e8e720418ba0eb89b [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;
58static const uint64_t kDefaultShadowOffset64 = 1ULL << 44;
Kostya Serebryanycc92c792014-02-24 13:40:24 +000059static const uint64_t kSmallX86_64ShadowOffset = 0x7FFF8000; // < 2G.
Kostya Serebryany4766fe62013-01-23 12:54:55 +000060static const uint64_t kPPC64_ShadowOffset64 = 1ULL << 41;
Kostya Serebryany9e62b302013-06-03 14:46:56 +000061static const uint64_t kMIPS32_ShadowOffset32 = 0x0aaa8000;
Kostya Serebryany8baa3862014-02-10 07:37:04 +000062static const uint64_t kFreeBSD_ShadowOffset32 = 1ULL << 30;
63static const uint64_t kFreeBSD_ShadowOffset64 = 1ULL << 46;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000064
Kostya Serebryany6805de52013-09-10 13:16:56 +000065static const size_t kMinStackMallocSize = 1 << 6; // 64B
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000066static const size_t kMaxStackMallocSize = 1 << 16; // 64K
67static const uintptr_t kCurrentStackFrameMagic = 0x41B58AB3;
68static const uintptr_t kRetiredStackFrameMagic = 0x45E0360E;
69
Craig Topperd3a34f82013-07-16 01:17:10 +000070static const char *const kAsanModuleCtorName = "asan.module_ctor";
71static const char *const kAsanModuleDtorName = "asan.module_dtor";
72static const int kAsanCtorAndCtorPriority = 1;
73static const char *const kAsanReportErrorTemplate = "__asan_report_";
74static const char *const kAsanReportLoadN = "__asan_report_load_n";
75static const char *const kAsanReportStoreN = "__asan_report_store_n";
76static const char *const kAsanRegisterGlobalsName = "__asan_register_globals";
Alexey Samsonovf52b7172013-08-05 13:19:49 +000077static const char *const kAsanUnregisterGlobalsName =
78 "__asan_unregister_globals";
Craig Topperd3a34f82013-07-16 01:17:10 +000079static const char *const kAsanPoisonGlobalsName = "__asan_before_dynamic_init";
80static const char *const kAsanUnpoisonGlobalsName = "__asan_after_dynamic_init";
81static const char *const kAsanInitName = "__asan_init_v3";
Bob Wilsonda4147c2013-11-15 07:16:09 +000082static const char *const kAsanCovName = "__sanitizer_cov";
Kostya Serebryany796f6552014-02-27 12:45:36 +000083static const char *const kAsanPtrCmp = "__sanitizer_ptr_cmp";
84static const char *const kAsanPtrSub = "__sanitizer_ptr_sub";
Craig Topperd3a34f82013-07-16 01:17:10 +000085static const char *const kAsanHandleNoReturnName = "__asan_handle_no_return";
Kostya Serebryany6805de52013-09-10 13:16:56 +000086static const int kMaxAsanStackMallocSizeClass = 10;
87static const char *const kAsanStackMallocNameTemplate = "__asan_stack_malloc_";
88static const char *const kAsanStackFreeNameTemplate = "__asan_stack_free_";
Craig Topperd3a34f82013-07-16 01:17:10 +000089static const char *const kAsanGenPrefix = "__asan_gen_";
90static const char *const kAsanPoisonStackMemoryName =
91 "__asan_poison_stack_memory";
92static const char *const kAsanUnpoisonStackMemoryName =
Alexey Samsonov261177a2012-12-04 01:34:23 +000093 "__asan_unpoison_stack_memory";
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000094
Kostya Serebryanyf3223822013-09-18 14:07:14 +000095static const char *const kAsanOptionDetectUAR =
96 "__asan_option_detect_stack_use_after_return";
97
David Blaikieeacc2872013-09-18 00:11:27 +000098#ifndef NDEBUG
Kostya Serebryanybc86efb2013-09-17 12:14:50 +000099static const int kAsanStackAfterReturnMagic = 0xf5;
David Blaikieeacc2872013-09-18 00:11:27 +0000100#endif
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000101
Kostya Serebryany874dae62012-07-16 16:15:40 +0000102// Accesses sizes are powers of two: 1, 2, 4, 8, 16.
103static const size_t kNumberOfAccessSizes = 5;
104
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000105// Command-line flags.
106
107// This flag may need to be replaced with -f[no-]asan-reads.
108static cl::opt<bool> ClInstrumentReads("asan-instrument-reads",
109 cl::desc("instrument read instructions"), cl::Hidden, cl::init(true));
110static cl::opt<bool> ClInstrumentWrites("asan-instrument-writes",
111 cl::desc("instrument write instructions"), cl::Hidden, cl::init(true));
Kostya Serebryany90241602012-05-30 09:04:06 +0000112static cl::opt<bool> ClInstrumentAtomics("asan-instrument-atomics",
113 cl::desc("instrument atomic instructions (rmw, cmpxchg)"),
114 cl::Hidden, cl::init(true));
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000115static cl::opt<bool> ClAlwaysSlowPath("asan-always-slow-path",
116 cl::desc("use instrumentation with slow path for all accesses"),
117 cl::Hidden, cl::init(false));
Kostya Serebryany874dae62012-07-16 16:15:40 +0000118// This flag limits the number of instructions to be instrumented
Kostya Serebryanyc387ca72012-06-28 09:34:41 +0000119// in any given BB. Normally, this should be set to unlimited (INT_MAX),
120// but due to http://llvm.org/bugs/show_bug.cgi?id=12652 we temporary
121// set it to 10000.
122static cl::opt<int> ClMaxInsnsToInstrumentPerBB("asan-max-ins-per-bb",
123 cl::init(10000),
124 cl::desc("maximal number of instructions to instrument in any given BB"),
125 cl::Hidden);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000126// This flag may need to be replaced with -f[no]asan-stack.
127static cl::opt<bool> ClStack("asan-stack",
128 cl::desc("Handle stack memory"), cl::Hidden, cl::init(true));
129// This flag may need to be replaced with -f[no]asan-use-after-return.
130static cl::opt<bool> ClUseAfterReturn("asan-use-after-return",
131 cl::desc("Check return-after-free"), cl::Hidden, cl::init(false));
132// This flag may need to be replaced with -f[no]asan-globals.
133static cl::opt<bool> ClGlobals("asan-globals",
134 cl::desc("Handle global objects"), cl::Hidden, cl::init(true));
Kostya Serebryany714c67c2014-01-17 11:00:30 +0000135static cl::opt<int> ClCoverage("asan-coverage",
136 cl::desc("ASan coverage. 0: none, 1: entry block, 2: all blocks"),
137 cl::Hidden, cl::init(false));
Kostya Serebryany22e88102014-04-18 08:02:42 +0000138static cl::opt<int> ClCoverageBlockThreshold("asan-coverage-block-threshold",
139 cl::desc("Add coverage instrumentation only to the entry block if there "
140 "are more than this number of blocks."),
141 cl::Hidden, cl::init(1500));
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000142static cl::opt<bool> ClInitializers("asan-initialization-order",
143 cl::desc("Handle C++ initializer order"), cl::Hidden, cl::init(false));
Kostya Serebryany796f6552014-02-27 12:45:36 +0000144static cl::opt<bool> ClInvalidPointerPairs("asan-detect-invalid-pointer-pair",
145 cl::desc("Instrument <, <=, >, >=, - with pointer operands"),
Kostya Serebryanyec346652014-02-27 12:56:20 +0000146 cl::Hidden, cl::init(false));
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000147static cl::opt<unsigned> ClRealignStack("asan-realign-stack",
148 cl::desc("Realign stack to the value of this flag (power of two)"),
149 cl::Hidden, cl::init(32));
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000150static cl::opt<std::string> ClBlacklistFile("asan-blacklist",
151 cl::desc("File containing the list of objects to ignore "
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000152 "during instrumentation"), cl::Hidden);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000153static cl::opt<int> ClInstrumentationWithCallsThreshold(
154 "asan-instrumentation-with-call-threshold",
155 cl::desc("If the function being instrumented contains more than "
156 "this number of memory accesses, use callbacks instead of "
157 "inline checks (-1 means never use callbacks)."),
Kostya Serebryany35e53832014-04-21 14:35:00 +0000158 cl::Hidden, cl::init(10000));
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000159static cl::opt<std::string> ClMemoryAccessCallbackPrefix(
160 "asan-memory-access-callback-prefix",
161 cl::desc("Prefix for memory access callbacks"), cl::Hidden,
162 cl::init("__asan_"));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000163
Kostya Serebryany9f5213f2013-06-26 09:18:17 +0000164// This is an experimental feature that will allow to choose between
165// instrumented and non-instrumented code at link-time.
166// If this option is on, just before instrumenting a function we create its
167// clone; if the function is not changed by asan the clone is deleted.
168// If we end up with a clone, we put the instrumented function into a section
169// called "ASAN" and the uninstrumented function into a section called "NOASAN".
170//
171// This is still a prototype, we need to figure out a way to keep two copies of
172// a function so that the linker can easily choose one of them.
173static cl::opt<bool> ClKeepUninstrumented("asan-keep-uninstrumented-functions",
174 cl::desc("Keep uninstrumented copies of functions"),
175 cl::Hidden, cl::init(false));
176
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000177// These flags allow to change the shadow mapping.
178// The shadow mapping looks like
179// Shadow = (Mem >> scale) + (1 << offset_log)
180static cl::opt<int> ClMappingScale("asan-mapping-scale",
181 cl::desc("scale of asan shadow mapping"), cl::Hidden, cl::init(0));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000182
183// Optimization flags. Not user visible, used mostly for testing
184// and benchmarking the tool.
185static cl::opt<bool> ClOpt("asan-opt",
186 cl::desc("Optimize instrumentation"), cl::Hidden, cl::init(true));
187static cl::opt<bool> ClOptSameTemp("asan-opt-same-temp",
188 cl::desc("Instrument the same temp just once"), cl::Hidden,
189 cl::init(true));
190static cl::opt<bool> ClOptGlobals("asan-opt-globals",
191 cl::desc("Don't instrument scalar globals"), cl::Hidden, cl::init(true));
192
Alexey Samsonovdf624522012-11-29 18:14:24 +0000193static cl::opt<bool> ClCheckLifetime("asan-check-lifetime",
194 cl::desc("Use llvm.lifetime intrinsics to insert extra checks"),
195 cl::Hidden, cl::init(false));
196
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000197// Debug flags.
198static cl::opt<int> ClDebug("asan-debug", cl::desc("debug"), cl::Hidden,
199 cl::init(0));
200static cl::opt<int> ClDebugStack("asan-debug-stack", cl::desc("debug stack"),
201 cl::Hidden, cl::init(0));
202static cl::opt<std::string> ClDebugFunc("asan-debug-func",
203 cl::Hidden, cl::desc("Debug func"));
204static cl::opt<int> ClDebugMin("asan-debug-min", cl::desc("Debug min inst"),
205 cl::Hidden, cl::init(-1));
206static cl::opt<int> ClDebugMax("asan-debug-max", cl::desc("Debug man inst"),
207 cl::Hidden, cl::init(-1));
208
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000209STATISTIC(NumInstrumentedReads, "Number of instrumented reads");
210STATISTIC(NumInstrumentedWrites, "Number of instrumented writes");
211STATISTIC(NumOptimizedAccessesToGlobalArray,
212 "Number of optimized accesses to global arrays");
213STATISTIC(NumOptimizedAccessesToGlobalVar,
214 "Number of optimized accesses to global vars");
215
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000216namespace {
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000217/// A set of dynamically initialized globals extracted from metadata.
218class SetOfDynamicallyInitializedGlobals {
219 public:
220 void Init(Module& M) {
221 // Clang generates metadata identifying all dynamically initialized globals.
222 NamedMDNode *DynamicGlobals =
223 M.getNamedMetadata("llvm.asan.dynamically_initialized_globals");
224 if (!DynamicGlobals)
225 return;
226 for (int i = 0, n = DynamicGlobals->getNumOperands(); i < n; ++i) {
227 MDNode *MDN = DynamicGlobals->getOperand(i);
228 assert(MDN->getNumOperands() == 1);
229 Value *VG = MDN->getOperand(0);
230 // The optimizer may optimize away a global entirely, in which case we
231 // cannot instrument access to it.
232 if (!VG)
233 continue;
234 DynInitGlobals.insert(cast<GlobalVariable>(VG));
235 }
236 }
237 bool Contains(GlobalVariable *G) { return DynInitGlobals.count(G) != 0; }
238 private:
239 SmallSet<GlobalValue*, 32> DynInitGlobals;
240};
241
Alexey Samsonov1345d352013-01-16 13:23:28 +0000242/// This struct defines the shadow mapping using the rule:
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000243/// shadow = (mem >> Scale) ADD-or-OR Offset.
Alexey Samsonov1345d352013-01-16 13:23:28 +0000244struct ShadowMapping {
245 int Scale;
246 uint64_t Offset;
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000247 bool OrShadowOffset;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000248};
249
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000250static ShadowMapping getShadowMapping(const Module &M, int LongSize) {
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000251 llvm::Triple TargetTriple(M.getTargetTriple());
252 bool IsAndroid = TargetTriple.getEnvironment() == llvm::Triple::Android;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000253 // bool IsMacOSX = TargetTriple.getOS() == llvm::Triple::MacOSX;
Kostya Serebryany8baa3862014-02-10 07:37:04 +0000254 bool IsFreeBSD = TargetTriple.getOS() == llvm::Triple::FreeBSD;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000255 bool IsLinux = TargetTriple.getOS() == llvm::Triple::Linux;
Bill Schmidt0a9170d2013-07-26 01:35:43 +0000256 bool IsPPC64 = TargetTriple.getArch() == llvm::Triple::ppc64 ||
257 TargetTriple.getArch() == llvm::Triple::ppc64le;
Kostya Serebryanybe733372013-02-12 11:11:02 +0000258 bool IsX86_64 = TargetTriple.getArch() == llvm::Triple::x86_64;
Kostya Serebryany9e62b302013-06-03 14:46:56 +0000259 bool IsMIPS32 = TargetTriple.getArch() == llvm::Triple::mips ||
260 TargetTriple.getArch() == llvm::Triple::mipsel;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000261
262 ShadowMapping Mapping;
263
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000264 if (LongSize == 32) {
265 if (IsAndroid)
266 Mapping.Offset = 0;
267 else if (IsMIPS32)
268 Mapping.Offset = kMIPS32_ShadowOffset32;
269 else if (IsFreeBSD)
270 Mapping.Offset = kFreeBSD_ShadowOffset32;
271 else
272 Mapping.Offset = kDefaultShadowOffset32;
273 } else { // LongSize == 64
274 if (IsPPC64)
275 Mapping.Offset = kPPC64_ShadowOffset64;
276 else if (IsFreeBSD)
277 Mapping.Offset = kFreeBSD_ShadowOffset64;
278 else if (IsLinux && IsX86_64)
279 Mapping.Offset = kSmallX86_64ShadowOffset;
280 else
281 Mapping.Offset = kDefaultShadowOffset64;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000282 }
283
284 Mapping.Scale = kDefaultShadowScale;
285 if (ClMappingScale) {
286 Mapping.Scale = ClMappingScale;
287 }
288
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000289 // OR-ing shadow offset if more efficient (at least on x86) if the offset
290 // is a power of two, but on ppc64 we have to use add since the shadow
291 // offset is not necessary 1/8-th of the address space.
292 Mapping.OrShadowOffset = !IsPPC64 && !(Mapping.Offset & (Mapping.Offset - 1));
293
Alexey Samsonov1345d352013-01-16 13:23:28 +0000294 return Mapping;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000295}
296
Alexey Samsonov1345d352013-01-16 13:23:28 +0000297static size_t RedzoneSizeForScale(int MappingScale) {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000298 // Redzone used for stack and globals is at least 32 bytes.
299 // For scales 6 and 7, the redzone has to be 64 and 128 bytes respectively.
Alexey Samsonov1345d352013-01-16 13:23:28 +0000300 return std::max(32U, 1U << MappingScale);
Kostya Serebryany20a79972012-11-22 03:18:50 +0000301}
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000302
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000303/// AddressSanitizer: instrument the code in module to find memory bugs.
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000304struct AddressSanitizer : public FunctionPass {
Alexey Samsonov819eddc2013-03-14 12:38:58 +0000305 AddressSanitizer(bool CheckInitOrder = true,
Alexey Samsonovdf624522012-11-29 18:14:24 +0000306 bool CheckUseAfterReturn = false,
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000307 bool CheckLifetime = false,
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000308 StringRef BlacklistFile = StringRef())
Alexey Samsonovdf624522012-11-29 18:14:24 +0000309 : FunctionPass(ID),
310 CheckInitOrder(CheckInitOrder || ClInitializers),
311 CheckUseAfterReturn(CheckUseAfterReturn || ClUseAfterReturn),
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000312 CheckLifetime(CheckLifetime || ClCheckLifetime),
313 BlacklistFile(BlacklistFile.empty() ? ClBlacklistFile
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000314 : BlacklistFile) {}
Craig Topper3e4c6972014-03-05 09:10:37 +0000315 const char *getPassName() const override {
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000316 return "AddressSanitizerFunctionPass";
317 }
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000318 void instrumentMop(Instruction *I, bool UseCalls);
Kostya Serebryany796f6552014-02-27 12:45:36 +0000319 void instrumentPointerComparisonOrSubtraction(Instruction *I);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000320 void instrumentAddress(Instruction *OrigIns, Instruction *InsertBefore,
321 Value *Addr, uint32_t TypeSize, bool IsWrite,
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000322 Value *SizeArgument, bool UseCalls);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000323 Value *createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
324 Value *ShadowValue, uint32_t TypeSize);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000325 Instruction *generateCrashCode(Instruction *InsertBefore, Value *Addr,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000326 bool IsWrite, size_t AccessSizeIndex,
327 Value *SizeArgument);
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000328 void instrumentMemIntrinsic(MemIntrinsic *MI);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000329 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB);
Craig Topper3e4c6972014-03-05 09:10:37 +0000330 bool runOnFunction(Function &F) override;
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +0000331 bool maybeInsertAsanInitAtFunctionEntry(Function &F);
Craig Topper3e4c6972014-03-05 09:10:37 +0000332 bool doInitialization(Module &M) override;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000333 static char ID; // Pass identification, replacement for typeid
334
335 private:
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000336 void initializeCallbacks(Module &M);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000337
Kostya Serebryany1cdc6e92011-11-18 01:41:06 +0000338 bool LooksLikeCodeInBug11395(Instruction *I);
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000339 bool GlobalIsLinkerInitialized(GlobalVariable *G);
Kostya Serebryany714c67c2014-01-17 11:00:30 +0000340 bool InjectCoverage(Function &F, const ArrayRef<BasicBlock*> AllBlocks);
341 void InjectCoverageAtBlock(Function &F, BasicBlock &BB);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000342
Alexey Samsonovdf624522012-11-29 18:14:24 +0000343 bool CheckInitOrder;
344 bool CheckUseAfterReturn;
345 bool CheckLifetime;
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000346 SmallString<64> BlacklistFile;
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000347
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000348 LLVMContext *C;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000349 const DataLayout *DL;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000350 int LongSize;
351 Type *IntptrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000352 ShadowMapping Mapping;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000353 Function *AsanCtorFunction;
354 Function *AsanInitFunction;
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000355 Function *AsanHandleNoReturnFunc;
Bob Wilsonda4147c2013-11-15 07:16:09 +0000356 Function *AsanCovFunction;
Kostya Serebryany796f6552014-02-27 12:45:36 +0000357 Function *AsanPtrCmpFunction, *AsanPtrSubFunction;
Ahmed Charles56440fd2014-03-06 05:51:42 +0000358 std::unique_ptr<SpecialCaseList> BL;
Kostya Serebryany4273bb02012-07-16 14:09:42 +0000359 // This array is indexed by AccessIsWrite and log2(AccessSize).
360 Function *AsanErrorCallback[2][kNumberOfAccessSizes];
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000361 Function *AsanMemoryAccessCallback[2][kNumberOfAccessSizes];
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000362 // This array is indexed by AccessIsWrite.
Kostya Serebryany86332c02014-04-21 07:10:43 +0000363 Function *AsanErrorCallbackSized[2],
364 *AsanMemoryAccessCallbackSized[2];
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000365 Function *AsanMemmove, *AsanMemcpy, *AsanMemset;
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000366 InlineAsm *EmptyAsm;
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000367 SetOfDynamicallyInitializedGlobals DynamicallyInitializedGlobals;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000368
369 friend struct FunctionStackPoisoner;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000370};
Kostya Serebryany874dae62012-07-16 16:15:40 +0000371
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000372class AddressSanitizerModule : public ModulePass {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000373 public:
Alexey Samsonov819eddc2013-03-14 12:38:58 +0000374 AddressSanitizerModule(bool CheckInitOrder = true,
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000375 StringRef BlacklistFile = StringRef())
Alexey Samsonovdf624522012-11-29 18:14:24 +0000376 : ModulePass(ID),
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000377 CheckInitOrder(CheckInitOrder || ClInitializers),
378 BlacklistFile(BlacklistFile.empty() ? ClBlacklistFile
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000379 : BlacklistFile) {}
Craig Topper3e4c6972014-03-05 09:10:37 +0000380 bool runOnModule(Module &M) override;
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000381 static char ID; // Pass identification, replacement for typeid
Craig Topper3e4c6972014-03-05 09:10:37 +0000382 const char *getPassName() const override {
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000383 return "AddressSanitizerModule";
384 }
Alexey Samsonov261177a2012-12-04 01:34:23 +0000385
Kostya Serebryany20a79972012-11-22 03:18:50 +0000386 private:
Alexey Samsonov788381b2012-12-25 12:28:20 +0000387 void initializeCallbacks(Module &M);
388
Kostya Serebryany20a79972012-11-22 03:18:50 +0000389 bool ShouldInstrumentGlobal(GlobalVariable *G);
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000390 void createInitializerPoisonCalls(Module &M, GlobalValue *ModuleName);
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000391 size_t MinRedzoneSizeForGlobal() const {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000392 return RedzoneSizeForScale(Mapping.Scale);
393 }
Kostya Serebryany20a79972012-11-22 03:18:50 +0000394
Alexey Samsonovdf624522012-11-29 18:14:24 +0000395 bool CheckInitOrder;
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000396 SmallString<64> BlacklistFile;
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000397
Ahmed Charles56440fd2014-03-06 05:51:42 +0000398 std::unique_ptr<SpecialCaseList> BL;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000399 SetOfDynamicallyInitializedGlobals DynamicallyInitializedGlobals;
400 Type *IntptrTy;
401 LLVMContext *C;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000402 const DataLayout *DL;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000403 ShadowMapping Mapping;
Alexey Samsonov788381b2012-12-25 12:28:20 +0000404 Function *AsanPoisonGlobals;
405 Function *AsanUnpoisonGlobals;
406 Function *AsanRegisterGlobals;
407 Function *AsanUnregisterGlobals;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000408};
409
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000410// Stack poisoning does not play well with exception handling.
411// When an exception is thrown, we essentially bypass the code
412// that unpoisones the stack. This is why the run-time library has
413// to intercept __cxa_throw (as well as longjmp, etc) and unpoison the entire
414// stack in the interceptor. This however does not work inside the
415// actual function which catches the exception. Most likely because the
416// compiler hoists the load of the shadow value somewhere too high.
417// This causes asan to report a non-existing bug on 453.povray.
418// It sounds like an LLVM bug.
419struct FunctionStackPoisoner : public InstVisitor<FunctionStackPoisoner> {
420 Function &F;
421 AddressSanitizer &ASan;
422 DIBuilder DIB;
423 LLVMContext *C;
424 Type *IntptrTy;
425 Type *IntptrPtrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000426 ShadowMapping Mapping;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000427
428 SmallVector<AllocaInst*, 16> AllocaVec;
429 SmallVector<Instruction*, 8> RetVec;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000430 unsigned StackAlignment;
431
Kostya Serebryany6805de52013-09-10 13:16:56 +0000432 Function *AsanStackMallocFunc[kMaxAsanStackMallocSizeClass + 1],
433 *AsanStackFreeFunc[kMaxAsanStackMallocSizeClass + 1];
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000434 Function *AsanPoisonStackMemoryFunc, *AsanUnpoisonStackMemoryFunc;
435
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000436 // Stores a place and arguments of poisoning/unpoisoning call for alloca.
437 struct AllocaPoisonCall {
438 IntrinsicInst *InsBefore;
Alexey Samsonova788b942013-11-18 14:53:55 +0000439 AllocaInst *AI;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000440 uint64_t Size;
441 bool DoPoison;
442 };
443 SmallVector<AllocaPoisonCall, 8> AllocaPoisonCallVec;
444
445 // Maps Value to an AllocaInst from which the Value is originated.
446 typedef DenseMap<Value*, AllocaInst*> AllocaForValueMapTy;
447 AllocaForValueMapTy AllocaForValue;
448
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000449 FunctionStackPoisoner(Function &F, AddressSanitizer &ASan)
450 : F(F), ASan(ASan), DIB(*F.getParent()), C(ASan.C),
451 IntptrTy(ASan.IntptrTy), IntptrPtrTy(PointerType::get(IntptrTy, 0)),
Alexey Samsonov1345d352013-01-16 13:23:28 +0000452 Mapping(ASan.Mapping),
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000453 StackAlignment(1 << Mapping.Scale) {}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000454
455 bool runOnFunction() {
456 if (!ClStack) return false;
457 // Collect alloca, ret, lifetime instructions etc.
David Blaikieceec2bd2014-04-11 01:50:01 +0000458 for (BasicBlock *BB : depth_first(&F.getEntryBlock()))
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000459 visit(*BB);
David Blaikieceec2bd2014-04-11 01:50:01 +0000460
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000461 if (AllocaVec.empty()) return false;
462
463 initializeCallbacks(*F.getParent());
464
465 poisonStack();
466
467 if (ClDebugStack) {
468 DEBUG(dbgs() << F);
469 }
470 return true;
471 }
472
473 // Finds all static Alloca instructions and puts
474 // poisoned red zones around all of them.
475 // Then unpoison everything back before the function returns.
476 void poisonStack();
477
478 // ----------------------- Visitors.
479 /// \brief Collect all Ret instructions.
480 void visitReturnInst(ReturnInst &RI) {
481 RetVec.push_back(&RI);
482 }
483
484 /// \brief Collect Alloca instructions we want (and can) handle.
485 void visitAllocaInst(AllocaInst &AI) {
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000486 if (!isInterestingAlloca(AI)) return;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000487
488 StackAlignment = std::max(StackAlignment, AI.getAlignment());
489 AllocaVec.push_back(&AI);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000490 }
491
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000492 /// \brief Collect lifetime intrinsic calls to check for use-after-scope
493 /// errors.
494 void visitIntrinsicInst(IntrinsicInst &II) {
495 if (!ASan.CheckLifetime) return;
496 Intrinsic::ID ID = II.getIntrinsicID();
497 if (ID != Intrinsic::lifetime_start &&
498 ID != Intrinsic::lifetime_end)
499 return;
500 // Found lifetime intrinsic, add ASan instrumentation if necessary.
501 ConstantInt *Size = dyn_cast<ConstantInt>(II.getArgOperand(0));
502 // If size argument is undefined, don't do anything.
503 if (Size->isMinusOne()) return;
504 // Check that size doesn't saturate uint64_t and can
505 // be stored in IntptrTy.
506 const uint64_t SizeValue = Size->getValue().getLimitedValue();
507 if (SizeValue == ~0ULL ||
508 !ConstantInt::isValueValidForType(IntptrTy, SizeValue))
509 return;
510 // Find alloca instruction that corresponds to llvm.lifetime argument.
511 AllocaInst *AI = findAllocaForValue(II.getArgOperand(1));
512 if (!AI) return;
513 bool DoPoison = (ID == Intrinsic::lifetime_end);
Alexey Samsonova788b942013-11-18 14:53:55 +0000514 AllocaPoisonCall APC = {&II, AI, SizeValue, DoPoison};
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000515 AllocaPoisonCallVec.push_back(APC);
516 }
517
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000518 // ---------------------- Helpers.
519 void initializeCallbacks(Module &M);
520
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000521 // Check if we want (and can) handle this alloca.
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000522 bool isInterestingAlloca(AllocaInst &AI) const {
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000523 return (!AI.isArrayAllocation() && AI.isStaticAlloca() &&
524 AI.getAllocatedType()->isSized() &&
525 // alloca() may be called with 0 size, ignore it.
526 getAllocaSizeInBytes(&AI) > 0);
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000527 }
528
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000529 uint64_t getAllocaSizeInBytes(AllocaInst *AI) const {
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000530 Type *Ty = AI->getAllocatedType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000531 uint64_t SizeInBytes = ASan.DL->getTypeAllocSize(Ty);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000532 return SizeInBytes;
533 }
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000534 /// Finds alloca where the value comes from.
535 AllocaInst *findAllocaForValue(Value *V);
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000536 void poisonRedZones(const ArrayRef<uint8_t> ShadowBytes, IRBuilder<> &IRB,
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000537 Value *ShadowBase, bool DoPoison);
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000538 void poisonAlloca(Value *V, uint64_t Size, IRBuilder<> &IRB, bool DoPoison);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +0000539
540 void SetShadowToStackAfterReturnInlined(IRBuilder<> &IRB, Value *ShadowBase,
541 int Size);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000542};
543
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000544} // namespace
545
546char AddressSanitizer::ID = 0;
547INITIALIZE_PASS(AddressSanitizer, "asan",
548 "AddressSanitizer: detects use-after-free and out-of-bounds bugs.",
549 false, false)
Alexey Samsonovdf624522012-11-29 18:14:24 +0000550FunctionPass *llvm::createAddressSanitizerFunctionPass(
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000551 bool CheckInitOrder, bool CheckUseAfterReturn, bool CheckLifetime,
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000552 StringRef BlacklistFile) {
Alexey Samsonovdf624522012-11-29 18:14:24 +0000553 return new AddressSanitizer(CheckInitOrder, CheckUseAfterReturn,
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000554 CheckLifetime, BlacklistFile);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000555}
556
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000557char AddressSanitizerModule::ID = 0;
558INITIALIZE_PASS(AddressSanitizerModule, "asan-module",
559 "AddressSanitizer: detects use-after-free and out-of-bounds bugs."
560 "ModulePass", false, false)
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000561ModulePass *llvm::createAddressSanitizerModulePass(
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000562 bool CheckInitOrder, StringRef BlacklistFile) {
563 return new AddressSanitizerModule(CheckInitOrder, BlacklistFile);
Alexander Potapenkoc94cf8f2012-01-23 11:22:43 +0000564}
565
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000566static size_t TypeSizeToSizeIndex(uint32_t TypeSize) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000567 size_t Res = countTrailingZeros(TypeSize / 8);
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000568 assert(Res < kNumberOfAccessSizes);
569 return Res;
570}
571
Bill Wendling58f8cef2013-08-06 22:52:42 +0000572// \brief Create a constant for Str so that we can pass it to the run-time lib.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000573static GlobalVariable *createPrivateGlobalForString(
574 Module &M, StringRef Str, bool AllowMerging) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000575 Constant *StrConst = ConstantDataArray::getString(M.getContext(), Str);
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000576 // We use private linkage for module-local strings. If they can be merged
577 // with another one, we set the unnamed_addr attribute.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000578 GlobalVariable *GV =
579 new GlobalVariable(M, StrConst->getType(), true,
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000580 GlobalValue::PrivateLinkage, StrConst, kAsanGenPrefix);
581 if (AllowMerging)
582 GV->setUnnamedAddr(true);
Kostya Serebryany10cc12f2013-03-18 09:38:39 +0000583 GV->setAlignment(1); // Strings may not be merged w/o setting align 1.
584 return GV;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000585}
586
587static bool GlobalWasGeneratedByAsan(GlobalVariable *G) {
588 return G->getName().find(kAsanGenPrefix) == 0;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000589}
590
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000591Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) {
592 // Shadow >> scale
Alexey Samsonov1345d352013-01-16 13:23:28 +0000593 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale);
594 if (Mapping.Offset == 0)
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000595 return Shadow;
596 // (Shadow >> scale) | offset
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000597 if (Mapping.OrShadowOffset)
598 return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
599 else
600 return IRB.CreateAdd(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000601}
602
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000603// Instrument memset/memmove/memcpy
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000604void AddressSanitizer::instrumentMemIntrinsic(MemIntrinsic *MI) {
605 IRBuilder<> IRB(MI);
606 Instruction *Call = 0;
607 if (isa<MemTransferInst>(MI)) {
608 Call = IRB.CreateCall3(
609 isa<MemMoveInst>(MI) ? AsanMemmove : AsanMemcpy,
610 IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()),
611 IRB.CreatePointerCast(MI->getOperand(1), IRB.getInt8PtrTy()),
612 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false));
613 } else if (isa<MemSetInst>(MI)) {
614 Call = IRB.CreateCall3(
615 AsanMemset,
616 IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()),
617 IRB.CreateIntCast(MI->getOperand(1), IRB.getInt32Ty(), false),
618 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000619 }
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000620 Call->setDebugLoc(MI->getDebugLoc());
621 MI->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000622}
623
Kostya Serebryany90241602012-05-30 09:04:06 +0000624// If I is an interesting memory access, return the PointerOperand
625// and set IsWrite. Otherwise return NULL.
626static Value *isInterestingMemoryAccess(Instruction *I, bool *IsWrite) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000627 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Kostya Serebryany90241602012-05-30 09:04:06 +0000628 if (!ClInstrumentReads) return NULL;
629 *IsWrite = false;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000630 return LI->getPointerOperand();
631 }
Kostya Serebryany90241602012-05-30 09:04:06 +0000632 if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
633 if (!ClInstrumentWrites) return NULL;
634 *IsWrite = true;
635 return SI->getPointerOperand();
636 }
637 if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(I)) {
638 if (!ClInstrumentAtomics) return NULL;
639 *IsWrite = true;
640 return RMW->getPointerOperand();
641 }
642 if (AtomicCmpXchgInst *XCHG = dyn_cast<AtomicCmpXchgInst>(I)) {
643 if (!ClInstrumentAtomics) return NULL;
644 *IsWrite = true;
645 return XCHG->getPointerOperand();
646 }
647 return NULL;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000648}
649
Kostya Serebryany796f6552014-02-27 12:45:36 +0000650static bool isPointerOperand(Value *V) {
651 return V->getType()->isPointerTy() || isa<PtrToIntInst>(V);
652}
653
654// This is a rough heuristic; it may cause both false positives and
655// false negatives. The proper implementation requires cooperation with
656// the frontend.
657static bool isInterestingPointerComparisonOrSubtraction(Instruction *I) {
658 if (ICmpInst *Cmp = dyn_cast<ICmpInst>(I)) {
659 if (!Cmp->isRelational())
660 return false;
661 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) {
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +0000662 if (BO->getOpcode() != Instruction::Sub)
Kostya Serebryany796f6552014-02-27 12:45:36 +0000663 return false;
664 } else {
665 return false;
666 }
667 if (!isPointerOperand(I->getOperand(0)) ||
668 !isPointerOperand(I->getOperand(1)))
669 return false;
670 return true;
671}
672
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000673bool AddressSanitizer::GlobalIsLinkerInitialized(GlobalVariable *G) {
674 // If a global variable does not have dynamic initialization we don't
675 // have to instrument it. However, if a global does not have initializer
676 // at all, we assume it has dynamic initializer (in other TU).
677 return G->hasInitializer() && !DynamicallyInitializedGlobals.Contains(G);
678}
679
Kostya Serebryany796f6552014-02-27 12:45:36 +0000680void
681AddressSanitizer::instrumentPointerComparisonOrSubtraction(Instruction *I) {
682 IRBuilder<> IRB(I);
683 Function *F = isa<ICmpInst>(I) ? AsanPtrCmpFunction : AsanPtrSubFunction;
684 Value *Param[2] = {I->getOperand(0), I->getOperand(1)};
685 for (int i = 0; i < 2; i++) {
686 if (Param[i]->getType()->isPointerTy())
687 Param[i] = IRB.CreatePointerCast(Param[i], IntptrTy);
688 }
689 IRB.CreateCall2(F, Param[0], Param[1]);
690}
691
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000692void AddressSanitizer::instrumentMop(Instruction *I, bool UseCalls) {
Axel Naumann4a127062012-09-17 14:20:57 +0000693 bool IsWrite = false;
Kostya Serebryany90241602012-05-30 09:04:06 +0000694 Value *Addr = isInterestingMemoryAccess(I, &IsWrite);
695 assert(Addr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000696 if (ClOpt && ClOptGlobals) {
697 if (GlobalVariable *G = dyn_cast<GlobalVariable>(Addr)) {
698 // If initialization order checking is disabled, a simple access to a
699 // dynamically initialized global is always valid.
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000700 if (!CheckInitOrder || GlobalIsLinkerInitialized(G)) {
701 NumOptimizedAccessesToGlobalVar++;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000702 return;
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000703 }
704 }
705 ConstantExpr *CE = dyn_cast<ConstantExpr>(Addr);
706 if (CE && CE->isGEPWithNoNotionalOverIndexing()) {
707 if (GlobalVariable *G = dyn_cast<GlobalVariable>(CE->getOperand(0))) {
708 if (CE->getOperand(1)->isNullValue() && GlobalIsLinkerInitialized(G)) {
709 NumOptimizedAccessesToGlobalArray++;
710 return;
711 }
712 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000713 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000714 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000715
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000716 Type *OrigPtrTy = Addr->getType();
717 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType();
718
719 assert(OrigTy->isSized());
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000720 uint32_t TypeSize = DL->getTypeStoreSizeInBits(OrigTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000721
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000722 assert((TypeSize % 8) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000723
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000724 if (IsWrite)
725 NumInstrumentedWrites++;
726 else
727 NumInstrumentedReads++;
728
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000729 // Instrument a 1-, 2-, 4-, 8-, or 16- byte access with one check.
730 if (TypeSize == 8 || TypeSize == 16 ||
731 TypeSize == 32 || TypeSize == 64 || TypeSize == 128)
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000732 return instrumentAddress(I, I, Addr, TypeSize, IsWrite, 0, UseCalls);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000733 // Instrument unusual size (but still multiple of 8).
734 // We can not do it with a single check, so we do 1-byte check for the first
735 // and the last bytes. We call __asan_report_*_n(addr, real_size) to be able
736 // to report the actual access size.
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000737 IRBuilder<> IRB(I);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000738 Value *Size = ConstantInt::get(IntptrTy, TypeSize / 8);
Kostya Serebryanyc9a2c172014-04-22 11:19:45 +0000739 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
740 if (UseCalls) {
741 CallInst *Check =
742 IRB.CreateCall2(AsanMemoryAccessCallbackSized[IsWrite], AddrLong, Size);
743 Check->setDebugLoc(I->getDebugLoc());
744 } else {
745 Value *LastByte = IRB.CreateIntToPtr(
746 IRB.CreateAdd(AddrLong, ConstantInt::get(IntptrTy, TypeSize / 8 - 1)),
747 OrigPtrTy);
748 instrumentAddress(I, I, Addr, 8, IsWrite, Size, false);
749 instrumentAddress(I, I, LastByte, 8, IsWrite, Size, false);
750 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000751}
752
Alexander Potapenko056e27e2012-04-23 10:47:31 +0000753// Validate the result of Module::getOrInsertFunction called for an interface
754// function of AddressSanitizer. If the instrumented module defines a function
755// with the same name, their prototypes must match, otherwise
756// getOrInsertFunction returns a bitcast.
Kostya Serebryany20a79972012-11-22 03:18:50 +0000757static Function *checkInterfaceFunction(Constant *FuncOrBitcast) {
Alexander Potapenko056e27e2012-04-23 10:47:31 +0000758 if (isa<Function>(FuncOrBitcast)) return cast<Function>(FuncOrBitcast);
759 FuncOrBitcast->dump();
760 report_fatal_error("trying to redefine an AddressSanitizer "
761 "interface function");
762}
763
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000764Instruction *AddressSanitizer::generateCrashCode(
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000765 Instruction *InsertBefore, Value *Addr,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000766 bool IsWrite, size_t AccessSizeIndex, Value *SizeArgument) {
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000767 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000768 CallInst *Call = SizeArgument
769 ? IRB.CreateCall2(AsanErrorCallbackSized[IsWrite], Addr, SizeArgument)
770 : IRB.CreateCall(AsanErrorCallback[IsWrite][AccessSizeIndex], Addr);
771
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000772 // We don't do Call->setDoesNotReturn() because the BB already has
773 // UnreachableInst at the end.
774 // This EmptyAsm is required to avoid callback merge.
775 IRB.CreateCall(EmptyAsm);
Kostya Serebryany3411f2e2012-01-06 18:09:21 +0000776 return Call;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000777}
778
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000779Value *AddressSanitizer::createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
Kostya Serebryany874dae62012-07-16 16:15:40 +0000780 Value *ShadowValue,
781 uint32_t TypeSize) {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000782 size_t Granularity = 1 << Mapping.Scale;
Kostya Serebryany874dae62012-07-16 16:15:40 +0000783 // Addr & (Granularity - 1)
784 Value *LastAccessedByte = IRB.CreateAnd(
785 AddrLong, ConstantInt::get(IntptrTy, Granularity - 1));
786 // (Addr & (Granularity - 1)) + size - 1
787 if (TypeSize / 8 > 1)
788 LastAccessedByte = IRB.CreateAdd(
789 LastAccessedByte, ConstantInt::get(IntptrTy, TypeSize / 8 - 1));
790 // (uint8_t) ((Addr & (Granularity-1)) + size - 1)
791 LastAccessedByte = IRB.CreateIntCast(
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000792 LastAccessedByte, ShadowValue->getType(), false);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000793 // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue
794 return IRB.CreateICmpSGE(LastAccessedByte, ShadowValue);
795}
796
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000797void AddressSanitizer::instrumentAddress(Instruction *OrigIns,
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000798 Instruction *InsertBefore, Value *Addr,
799 uint32_t TypeSize, bool IsWrite,
800 Value *SizeArgument, bool UseCalls) {
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000801 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000802 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000803 size_t AccessSizeIndex = TypeSizeToSizeIndex(TypeSize);
804
805 if (UseCalls) {
Kostya Serebryany94f57d192014-04-21 10:28:13 +0000806 IRB.CreateCall(AsanMemoryAccessCallback[IsWrite][AccessSizeIndex],
807 AddrLong);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000808 return;
809 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000810
811 Type *ShadowTy = IntegerType::get(
Alexey Samsonov1345d352013-01-16 13:23:28 +0000812 *C, std::max(8U, TypeSize >> Mapping.Scale));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000813 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0);
814 Value *ShadowPtr = memToShadow(AddrLong, IRB);
815 Value *CmpVal = Constant::getNullValue(ShadowTy);
816 Value *ShadowValue = IRB.CreateLoad(
817 IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy));
818
819 Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal);
Alexey Samsonov1345d352013-01-16 13:23:28 +0000820 size_t Granularity = 1 << Mapping.Scale;
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000821 TerminatorInst *CrashTerm = 0;
822
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000823 if (ClAlwaysSlowPath || (TypeSize < 8 * Granularity)) {
Evgeniy Stepanov8eb77d82012-10-19 10:48:31 +0000824 TerminatorInst *CheckTerm =
Evgeniy Stepanova9164e92013-12-19 13:29:56 +0000825 SplitBlockAndInsertIfThen(Cmp, InsertBefore, false);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000826 assert(dyn_cast<BranchInst>(CheckTerm)->isUnconditional());
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000827 BasicBlock *NextBB = CheckTerm->getSuccessor(0);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000828 IRB.SetInsertPoint(CheckTerm);
829 Value *Cmp2 = createSlowPathCmp(IRB, AddrLong, ShadowValue, TypeSize);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000830 BasicBlock *CrashBlock =
831 BasicBlock::Create(*C, "", NextBB->getParent(), NextBB);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000832 CrashTerm = new UnreachableInst(*C, CrashBlock);
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000833 BranchInst *NewTerm = BranchInst::Create(CrashBlock, NextBB, Cmp2);
834 ReplaceInstWithInst(CheckTerm, NewTerm);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000835 } else {
Evgeniy Stepanova9164e92013-12-19 13:29:56 +0000836 CrashTerm = SplitBlockAndInsertIfThen(Cmp, InsertBefore, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000837 }
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000838
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000839 Instruction *Crash = generateCrashCode(
840 CrashTerm, AddrLong, IsWrite, AccessSizeIndex, SizeArgument);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000841 Crash->setDebugLoc(OrigIns->getDebugLoc());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000842}
843
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000844void AddressSanitizerModule::createInitializerPoisonCalls(
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000845 Module &M, GlobalValue *ModuleName) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000846 // We do all of our poisoning and unpoisoning within _GLOBAL__I_a.
847 Function *GlobalInit = M.getFunction("_GLOBAL__I_a");
848 // If that function is not present, this TU contains no globals, or they have
849 // all been optimized away
850 if (!GlobalInit)
851 return;
852
853 // Set up the arguments to our poison/unpoison functions.
854 IRBuilder<> IRB(GlobalInit->begin()->getFirstInsertionPt());
855
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000856 // Add a call to poison all external globals before the given function starts.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000857 Value *ModuleNameAddr = ConstantExpr::getPointerCast(ModuleName, IntptrTy);
858 IRB.CreateCall(AsanPoisonGlobals, ModuleNameAddr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000859
860 // Add calls to unpoison all globals before each return instruction.
861 for (Function::iterator I = GlobalInit->begin(), E = GlobalInit->end();
862 I != E; ++I) {
863 if (ReturnInst *RI = dyn_cast<ReturnInst>(I->getTerminator())) {
864 CallInst::Create(AsanUnpoisonGlobals, "", RI);
865 }
866 }
867}
868
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000869bool AddressSanitizerModule::ShouldInstrumentGlobal(GlobalVariable *G) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000870 Type *Ty = cast<PointerType>(G->getType())->getElementType();
Kostya Serebryany20343352012-10-17 13:40:06 +0000871 DEBUG(dbgs() << "GLOBAL: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000872
Kostya Serebryany2fa38f82012-09-05 07:29:56 +0000873 if (BL->isIn(*G)) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000874 if (!Ty->isSized()) return false;
875 if (!G->hasInitializer()) return false;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000876 if (GlobalWasGeneratedByAsan(G)) return false; // Our own global.
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000877 // Touch only those globals that will not be defined in other modules.
878 // Don't handle ODR type linkages since other modules may be built w/o asan.
879 if (G->getLinkage() != GlobalVariable::ExternalLinkage &&
880 G->getLinkage() != GlobalVariable::PrivateLinkage &&
881 G->getLinkage() != GlobalVariable::InternalLinkage)
882 return false;
883 // Two problems with thread-locals:
884 // - The address of the main thread's copy can't be computed at link-time.
885 // - Need to poison all copies, not just the main thread's one.
886 if (G->isThreadLocal())
887 return false;
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000888 // For now, just ignore this Global if the alignment is large.
889 if (G->getAlignment() > MinRedzoneSizeForGlobal()) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000890
891 // Ignore all the globals with the names starting with "\01L_OBJC_".
892 // Many of those are put into the .cstring section. The linker compresses
893 // that section by removing the spare \0s after the string terminator, so
894 // our redzones get broken.
895 if ((G->getName().find("\01L_OBJC_") == 0) ||
896 (G->getName().find("\01l_OBJC_") == 0)) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000897 DEBUG(dbgs() << "Ignoring \\01L_OBJC_* global: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000898 return false;
899 }
900
901 if (G->hasSection()) {
902 StringRef Section(G->getSection());
903 // Ignore the globals from the __OBJC section. The ObjC runtime assumes
904 // those conform to /usr/lib/objc/runtime.h, so we can't add redzones to
905 // them.
906 if ((Section.find("__OBJC,") == 0) ||
907 (Section.find("__DATA, __objc_") == 0)) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000908 DEBUG(dbgs() << "Ignoring ObjC runtime global: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000909 return false;
910 }
911 // See http://code.google.com/p/address-sanitizer/issues/detail?id=32
912 // Constant CFString instances are compiled in the following way:
913 // -- the string buffer is emitted into
914 // __TEXT,__cstring,cstring_literals
915 // -- the constant NSConstantString structure referencing that buffer
916 // is placed into __DATA,__cfstring
917 // Therefore there's no point in placing redzones into __DATA,__cfstring.
918 // Moreover, it causes the linker to crash on OS X 10.7
919 if (Section.find("__DATA,__cfstring") == 0) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000920 DEBUG(dbgs() << "Ignoring CFString: " << *G << "\n");
921 return false;
922 }
923 // The linker merges the contents of cstring_literals and removes the
924 // trailing zeroes.
925 if (Section.find("__TEXT,__cstring,cstring_literals") == 0) {
926 DEBUG(dbgs() << "Ignoring a cstring literal: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000927 return false;
928 }
Alexander Potapenko04969e82014-03-20 10:48:34 +0000929 // Globals from llvm.metadata aren't emitted, do not instrument them.
930 if (Section == "llvm.metadata") return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000931 }
932
933 return true;
934}
935
Alexey Samsonov788381b2012-12-25 12:28:20 +0000936void AddressSanitizerModule::initializeCallbacks(Module &M) {
937 IRBuilder<> IRB(*C);
938 // Declare our poisoning and unpoisoning functions.
939 AsanPoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000940 kAsanPoisonGlobalsName, IRB.getVoidTy(), IntptrTy, NULL));
Alexey Samsonov788381b2012-12-25 12:28:20 +0000941 AsanPoisonGlobals->setLinkage(Function::ExternalLinkage);
942 AsanUnpoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
943 kAsanUnpoisonGlobalsName, IRB.getVoidTy(), NULL));
944 AsanUnpoisonGlobals->setLinkage(Function::ExternalLinkage);
945 // Declare functions that register/unregister globals.
946 AsanRegisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
947 kAsanRegisterGlobalsName, IRB.getVoidTy(),
948 IntptrTy, IntptrTy, NULL));
949 AsanRegisterGlobals->setLinkage(Function::ExternalLinkage);
950 AsanUnregisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
951 kAsanUnregisterGlobalsName,
952 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
953 AsanUnregisterGlobals->setLinkage(Function::ExternalLinkage);
954}
955
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000956// This function replaces all global variables with new variables that have
957// trailing redzones. It also creates a function that poisons
958// redzones and inserts this function into llvm.global_ctors.
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000959bool AddressSanitizerModule::runOnModule(Module &M) {
960 if (!ClGlobals) return false;
Rafael Espindola93512512014-02-25 17:30:31 +0000961
962 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
963 if (!DLP)
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000964 return false;
Rafael Espindola93512512014-02-25 17:30:31 +0000965 DL = &DLP->getDataLayout();
966
Alexey Samsonove4b5fb82013-08-12 11:46:09 +0000967 BL.reset(SpecialCaseList::createOrDie(BlacklistFile));
Alexey Samsonov9a956e82012-11-29 18:27:01 +0000968 if (BL->isIn(M)) return false;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000969 C = &(M.getContext());
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000970 int LongSize = DL->getPointerSizeInBits();
Alexey Samsonov1345d352013-01-16 13:23:28 +0000971 IntptrTy = Type::getIntNTy(*C, LongSize);
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000972 Mapping = getShadowMapping(M, LongSize);
Alexey Samsonov788381b2012-12-25 12:28:20 +0000973 initializeCallbacks(M);
974 DynamicallyInitializedGlobals.Init(M);
Kostya Serebryany20a79972012-11-22 03:18:50 +0000975
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000976 SmallVector<GlobalVariable *, 16> GlobalsToChange;
977
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000978 for (Module::GlobalListType::iterator G = M.global_begin(),
979 E = M.global_end(); G != E; ++G) {
980 if (ShouldInstrumentGlobal(G))
981 GlobalsToChange.push_back(G);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000982 }
983
984 size_t n = GlobalsToChange.size();
985 if (n == 0) return false;
986
987 // A global is described by a structure
988 // size_t beg;
989 // size_t size;
990 // size_t size_with_redzone;
991 // const char *name;
Kostya Serebryanybd016bb2013-03-18 08:05:29 +0000992 // const char *module_name;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000993 // size_t has_dynamic_init;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000994 // We initialize an array of such structures and pass it to a run-time call.
995 StructType *GlobalStructTy = StructType::get(IntptrTy, IntptrTy,
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000996 IntptrTy, IntptrTy,
Kostya Serebryanybd016bb2013-03-18 08:05:29 +0000997 IntptrTy, IntptrTy, NULL);
Rafael Espindola44fee4e2013-10-01 13:32:03 +0000998 SmallVector<Constant *, 16> Initializers(n);
Kostya Serebryany20a79972012-11-22 03:18:50 +0000999
1000 Function *CtorFunc = M.getFunction(kAsanModuleCtorName);
1001 assert(CtorFunc);
1002 IRBuilder<> IRB(CtorFunc->getEntryBlock().getTerminator());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001003
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001004 bool HasDynamicallyInitializedGlobals = false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001005
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001006 // We shouldn't merge same module names, as this string serves as unique
1007 // module ID in runtime.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001008 GlobalVariable *ModuleName = createPrivateGlobalForString(
1009 M, M.getModuleIdentifier(), /*AllowMerging*/false);
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001010
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001011 for (size_t i = 0; i < n; i++) {
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001012 static const uint64_t kMaxGlobalRedzone = 1 << 18;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001013 GlobalVariable *G = GlobalsToChange[i];
1014 PointerType *PtrTy = cast<PointerType>(G->getType());
1015 Type *Ty = PtrTy->getElementType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001016 uint64_t SizeInBytes = DL->getTypeAllocSize(Ty);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001017 uint64_t MinRZ = MinRedzoneSizeForGlobal();
Kostya Serebryany87191f62013-01-24 10:35:40 +00001018 // MinRZ <= RZ <= kMaxGlobalRedzone
1019 // and trying to make RZ to be ~ 1/4 of SizeInBytes.
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001020 uint64_t RZ = std::max(MinRZ,
Kostya Serebryany87191f62013-01-24 10:35:40 +00001021 std::min(kMaxGlobalRedzone,
1022 (SizeInBytes / MinRZ / 4) * MinRZ));
1023 uint64_t RightRedzoneSize = RZ;
1024 // Round up to MinRZ
1025 if (SizeInBytes % MinRZ)
1026 RightRedzoneSize += MinRZ - (SizeInBytes % MinRZ);
1027 assert(((RightRedzoneSize + SizeInBytes) % MinRZ) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001028 Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001029 // Determine whether this global should be poisoned in initialization.
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +00001030 bool GlobalHasDynamicInitializer =
1031 DynamicallyInitializedGlobals.Contains(G);
Kostya Serebryany2fa38f82012-09-05 07:29:56 +00001032 // Don't check initialization order if this global is blacklisted.
Peter Collingbourne49062a92013-07-09 22:03:17 +00001033 GlobalHasDynamicInitializer &= !BL->isIn(*G, "init");
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001034
1035 StructType *NewTy = StructType::get(Ty, RightRedZoneTy, NULL);
1036 Constant *NewInitializer = ConstantStruct::get(
1037 NewTy, G->getInitializer(),
1038 Constant::getNullValue(RightRedZoneTy), NULL);
1039
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001040 GlobalVariable *Name =
1041 createPrivateGlobalForString(M, G->getName(), /*AllowMerging*/true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001042
1043 // Create a new global variable with enough space for a redzone.
Bill Wendling58f8cef2013-08-06 22:52:42 +00001044 GlobalValue::LinkageTypes Linkage = G->getLinkage();
1045 if (G->isConstant() && Linkage == GlobalValue::PrivateLinkage)
1046 Linkage = GlobalValue::InternalLinkage;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001047 GlobalVariable *NewGlobal = new GlobalVariable(
Bill Wendling58f8cef2013-08-06 22:52:42 +00001048 M, NewTy, G->isConstant(), Linkage,
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001049 NewInitializer, "", G, G->getThreadLocalMode());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001050 NewGlobal->copyAttributesFrom(G);
Kostya Serebryany87191f62013-01-24 10:35:40 +00001051 NewGlobal->setAlignment(MinRZ);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001052
1053 Value *Indices2[2];
1054 Indices2[0] = IRB.getInt32(0);
1055 Indices2[1] = IRB.getInt32(0);
1056
1057 G->replaceAllUsesWith(
Kostya Serebryany7471d132012-01-28 04:27:16 +00001058 ConstantExpr::getGetElementPtr(NewGlobal, Indices2, true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001059 NewGlobal->takeName(G);
1060 G->eraseFromParent();
1061
1062 Initializers[i] = ConstantStruct::get(
1063 GlobalStructTy,
1064 ConstantExpr::getPointerCast(NewGlobal, IntptrTy),
1065 ConstantInt::get(IntptrTy, SizeInBytes),
1066 ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize),
1067 ConstantExpr::getPointerCast(Name, IntptrTy),
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001068 ConstantExpr::getPointerCast(ModuleName, IntptrTy),
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001069 ConstantInt::get(IntptrTy, GlobalHasDynamicInitializer),
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001070 NULL);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001071
1072 // Populate the first and last globals declared in this TU.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001073 if (CheckInitOrder && GlobalHasDynamicInitializer)
1074 HasDynamicallyInitializedGlobals = true;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001075
Kostya Serebryany20343352012-10-17 13:40:06 +00001076 DEBUG(dbgs() << "NEW GLOBAL: " << *NewGlobal << "\n");
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001077 }
1078
1079 ArrayType *ArrayOfGlobalStructTy = ArrayType::get(GlobalStructTy, n);
1080 GlobalVariable *AllGlobals = new GlobalVariable(
Bill Wendling58f8cef2013-08-06 22:52:42 +00001081 M, ArrayOfGlobalStructTy, false, GlobalVariable::InternalLinkage,
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001082 ConstantArray::get(ArrayOfGlobalStructTy, Initializers), "");
1083
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001084 // Create calls for poisoning before initializers run and unpoisoning after.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001085 if (CheckInitOrder && HasDynamicallyInitializedGlobals)
1086 createInitializerPoisonCalls(M, ModuleName);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001087 IRB.CreateCall2(AsanRegisterGlobals,
1088 IRB.CreatePointerCast(AllGlobals, IntptrTy),
1089 ConstantInt::get(IntptrTy, n));
1090
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001091 // We also need to unregister globals at the end, e.g. when a shared library
1092 // gets closed.
1093 Function *AsanDtorFunction = Function::Create(
1094 FunctionType::get(Type::getVoidTy(*C), false),
1095 GlobalValue::InternalLinkage, kAsanModuleDtorName, &M);
1096 BasicBlock *AsanDtorBB = BasicBlock::Create(*C, "", AsanDtorFunction);
1097 IRBuilder<> IRB_Dtor(ReturnInst::Create(*C, AsanDtorBB));
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001098 IRB_Dtor.CreateCall2(AsanUnregisterGlobals,
1099 IRB.CreatePointerCast(AllGlobals, IntptrTy),
1100 ConstantInt::get(IntptrTy, n));
1101 appendToGlobalDtors(M, AsanDtorFunction, kAsanCtorAndCtorPriority);
1102
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001103 DEBUG(dbgs() << M);
1104 return true;
1105}
1106
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001107void AddressSanitizer::initializeCallbacks(Module &M) {
1108 IRBuilder<> IRB(*C);
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001109 // Create __asan_report* callbacks.
1110 for (size_t AccessIsWrite = 0; AccessIsWrite <= 1; AccessIsWrite++) {
1111 for (size_t AccessSizeIndex = 0; AccessSizeIndex < kNumberOfAccessSizes;
1112 AccessSizeIndex++) {
1113 // IsWrite and TypeSize are encoded in the function name.
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001114 std::string Suffix =
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001115 (AccessIsWrite ? "store" : "load") + itostr(1 << AccessSizeIndex);
Kostya Serebryany157a5152012-11-07 12:42:18 +00001116 AsanErrorCallback[AccessIsWrite][AccessSizeIndex] =
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001117 checkInterfaceFunction(
1118 M.getOrInsertFunction(kAsanReportErrorTemplate + Suffix,
1119 IRB.getVoidTy(), IntptrTy, NULL));
1120 AsanMemoryAccessCallback[AccessIsWrite][AccessSizeIndex] =
1121 checkInterfaceFunction(
1122 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + Suffix,
1123 IRB.getVoidTy(), IntptrTy, NULL));
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001124 }
1125 }
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +00001126 AsanErrorCallbackSized[0] = checkInterfaceFunction(M.getOrInsertFunction(
1127 kAsanReportLoadN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1128 AsanErrorCallbackSized[1] = checkInterfaceFunction(M.getOrInsertFunction(
1129 kAsanReportStoreN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001130
Kostya Serebryany86332c02014-04-21 07:10:43 +00001131 AsanMemoryAccessCallbackSized[0] = checkInterfaceFunction(
1132 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + "loadN",
1133 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1134 AsanMemoryAccessCallbackSized[1] = checkInterfaceFunction(
1135 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + "storeN",
1136 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1137
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00001138 AsanMemmove = checkInterfaceFunction(M.getOrInsertFunction(
1139 ClMemoryAccessCallbackPrefix + "memmove", IRB.getInt8PtrTy(),
1140 IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IntptrTy, NULL));
1141 AsanMemcpy = checkInterfaceFunction(M.getOrInsertFunction(
1142 ClMemoryAccessCallbackPrefix + "memcpy", IRB.getInt8PtrTy(),
1143 IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IntptrTy, NULL));
1144 AsanMemset = checkInterfaceFunction(M.getOrInsertFunction(
1145 ClMemoryAccessCallbackPrefix + "memset", IRB.getInt8PtrTy(),
1146 IRB.getInt8PtrTy(), IRB.getInt32Ty(), IntptrTy, NULL));
1147
1148 AsanHandleNoReturnFunc = checkInterfaceFunction(
1149 M.getOrInsertFunction(kAsanHandleNoReturnName, IRB.getVoidTy(), NULL));
Bob Wilsonda4147c2013-11-15 07:16:09 +00001150 AsanCovFunction = checkInterfaceFunction(M.getOrInsertFunction(
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001151 kAsanCovName, IRB.getVoidTy(), NULL));
Kostya Serebryany796f6552014-02-27 12:45:36 +00001152 AsanPtrCmpFunction = checkInterfaceFunction(M.getOrInsertFunction(
1153 kAsanPtrCmp, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1154 AsanPtrSubFunction = checkInterfaceFunction(M.getOrInsertFunction(
1155 kAsanPtrSub, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
Kostya Serebryanyf02c6062012-07-20 09:54:50 +00001156 // We insert an empty inline asm after __asan_report* to avoid callback merge.
1157 EmptyAsm = InlineAsm::get(FunctionType::get(IRB.getVoidTy(), false),
1158 StringRef(""), StringRef(""),
1159 /*hasSideEffects=*/true);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001160}
1161
1162// virtual
1163bool AddressSanitizer::doInitialization(Module &M) {
1164 // Initialize the private fields. No one has accessed them before.
Rafael Espindola93512512014-02-25 17:30:31 +00001165 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
1166 if (!DLP)
Evgeniy Stepanov119cb2e2014-04-23 12:51:32 +00001167 report_fatal_error("data layout missing");
Rafael Espindola93512512014-02-25 17:30:31 +00001168 DL = &DLP->getDataLayout();
1169
Alexey Samsonove4b5fb82013-08-12 11:46:09 +00001170 BL.reset(SpecialCaseList::createOrDie(BlacklistFile));
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001171 DynamicallyInitializedGlobals.Init(M);
1172
1173 C = &(M.getContext());
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001174 LongSize = DL->getPointerSizeInBits();
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001175 IntptrTy = Type::getIntNTy(*C, LongSize);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001176
1177 AsanCtorFunction = Function::Create(
1178 FunctionType::get(Type::getVoidTy(*C), false),
1179 GlobalValue::InternalLinkage, kAsanModuleCtorName, &M);
1180 BasicBlock *AsanCtorBB = BasicBlock::Create(*C, "", AsanCtorFunction);
1181 // call __asan_init in the module ctor.
1182 IRBuilder<> IRB(ReturnInst::Create(*C, AsanCtorBB));
1183 AsanInitFunction = checkInterfaceFunction(
1184 M.getOrInsertFunction(kAsanInitName, IRB.getVoidTy(), NULL));
1185 AsanInitFunction->setLinkage(Function::ExternalLinkage);
1186 IRB.CreateCall(AsanInitFunction);
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001187
Evgeniy Stepanov13665362014-01-16 10:19:12 +00001188 Mapping = getShadowMapping(M, LongSize);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001189
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001190 appendToGlobalCtors(M, AsanCtorFunction, kAsanCtorAndCtorPriority);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001191 return true;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001192}
1193
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001194bool AddressSanitizer::maybeInsertAsanInitAtFunctionEntry(Function &F) {
1195 // For each NSObject descendant having a +load method, this method is invoked
1196 // by the ObjC runtime before any of the static constructors is called.
1197 // Therefore we need to instrument such methods with a call to __asan_init
1198 // at the beginning in order to initialize our runtime before any access to
1199 // the shadow memory.
1200 // We cannot just ignore these methods, because they may call other
1201 // instrumented functions.
1202 if (F.getName().find(" load]") != std::string::npos) {
1203 IRBuilder<> IRB(F.begin()->begin());
1204 IRB.CreateCall(AsanInitFunction);
1205 return true;
1206 }
1207 return false;
1208}
1209
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001210void AddressSanitizer::InjectCoverageAtBlock(Function &F, BasicBlock &BB) {
1211 BasicBlock::iterator IP = BB.getFirstInsertionPt(), BE = BB.end();
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001212 // Skip static allocas at the top of the entry block so they don't become
1213 // dynamic when we split the block. If we used our optimized stack layout,
1214 // then there will only be one alloca and it will come first.
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001215 for (; IP != BE; ++IP) {
1216 AllocaInst *AI = dyn_cast<AllocaInst>(IP);
1217 if (!AI || !AI->isStaticAlloca())
1218 break;
1219 }
1220
1221 IRBuilder<> IRB(IP);
Bob Wilsonda4147c2013-11-15 07:16:09 +00001222 Type *Int8Ty = IRB.getInt8Ty();
1223 GlobalVariable *Guard = new GlobalVariable(
Kostya Serebryany0604c622013-11-15 09:52:05 +00001224 *F.getParent(), Int8Ty, false, GlobalValue::PrivateLinkage,
Bob Wilsonda4147c2013-11-15 07:16:09 +00001225 Constant::getNullValue(Int8Ty), "__asan_gen_cov_" + F.getName());
1226 LoadInst *Load = IRB.CreateLoad(Guard);
1227 Load->setAtomic(Monotonic);
1228 Load->setAlignment(1);
1229 Value *Cmp = IRB.CreateICmpEQ(Constant::getNullValue(Int8Ty), Load);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001230 Instruction *Ins = SplitBlockAndInsertIfThen(
1231 Cmp, IP, false, MDBuilder(*C).createBranchWeights(1, 100000));
Bob Wilsonda4147c2013-11-15 07:16:09 +00001232 IRB.SetInsertPoint(Ins);
1233 // We pass &F to __sanitizer_cov. We could avoid this and rely on
1234 // GET_CALLER_PC, but having the PC of the first instruction is just nice.
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001235 Instruction *Call = IRB.CreateCall(AsanCovFunction);
1236 Call->setDebugLoc(IP->getDebugLoc());
Bob Wilsonda4147c2013-11-15 07:16:09 +00001237 StoreInst *Store = IRB.CreateStore(ConstantInt::get(Int8Ty, 1), Guard);
1238 Store->setAtomic(Monotonic);
1239 Store->setAlignment(1);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001240}
1241
1242// Poor man's coverage that works with ASan.
1243// We create a Guard boolean variable with the same linkage
1244// as the function and inject this code into the entry block (-asan-coverage=1)
1245// or all blocks (-asan-coverage=2):
1246// if (*Guard) {
1247// __sanitizer_cov(&F);
1248// *Guard = 1;
1249// }
1250// The accesses to Guard are atomic. The rest of the logic is
1251// in __sanitizer_cov (it's fine to call it more than once).
1252//
1253// This coverage implementation provides very limited data:
1254// it only tells if a given function (block) was ever executed.
1255// No counters, no per-edge data.
1256// But for many use cases this is what we need and the added slowdown
1257// is negligible. This simple implementation will probably be obsoleted
1258// by the upcoming Clang-based coverage implementation.
1259// By having it here and now we hope to
1260// a) get the functionality to users earlier and
1261// b) collect usage statistics to help improve Clang coverage design.
1262bool AddressSanitizer::InjectCoverage(Function &F,
1263 const ArrayRef<BasicBlock *> AllBlocks) {
1264 if (!ClCoverage) return false;
1265
Kostya Serebryany22e88102014-04-18 08:02:42 +00001266 if (ClCoverage == 1 ||
1267 (unsigned)ClCoverageBlockThreshold < AllBlocks.size()) {
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001268 InjectCoverageAtBlock(F, F.getEntryBlock());
1269 } else {
1270 for (size_t i = 0, n = AllBlocks.size(); i < n; i++)
1271 InjectCoverageAtBlock(F, *AllBlocks[i]);
1272 }
Bob Wilsonda4147c2013-11-15 07:16:09 +00001273 return true;
1274}
1275
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001276bool AddressSanitizer::runOnFunction(Function &F) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001277 if (BL->isIn(F)) return false;
1278 if (&F == AsanCtorFunction) return false;
Kostya Serebryany6b5b58d2013-03-18 07:33:49 +00001279 if (F.getLinkage() == GlobalValue::AvailableExternallyLinkage) return false;
Kostya Serebryany20343352012-10-17 13:40:06 +00001280 DEBUG(dbgs() << "ASAN instrumenting:\n" << F << "\n");
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001281 initializeCallbacks(*F.getParent());
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001282
Kostya Serebryanycf880b92013-02-26 06:58:09 +00001283 // If needed, insert __asan_init before checking for SanitizeAddress attr.
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001284 maybeInsertAsanInitAtFunctionEntry(F);
1285
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001286 if (!F.hasFnAttribute(Attribute::SanitizeAddress))
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001287 return false;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001288
1289 if (!ClDebugFunc.empty() && ClDebugFunc != F.getName())
1290 return false;
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001291
1292 // We want to instrument every address only once per basic block (unless there
1293 // are calls between uses).
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001294 SmallSet<Value*, 16> TempsToInstrument;
1295 SmallVector<Instruction*, 16> ToInstrument;
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001296 SmallVector<Instruction*, 8> NoReturnCalls;
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001297 SmallVector<BasicBlock*, 16> AllBlocks;
Kostya Serebryany796f6552014-02-27 12:45:36 +00001298 SmallVector<Instruction*, 16> PointerComparisonsOrSubtracts;
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001299 int NumAllocas = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +00001300 bool IsWrite;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001301
1302 // Fill the set of memory operations to instrument.
1303 for (Function::iterator FI = F.begin(), FE = F.end();
1304 FI != FE; ++FI) {
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001305 AllBlocks.push_back(FI);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001306 TempsToInstrument.clear();
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001307 int NumInsnsPerBB = 0;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001308 for (BasicBlock::iterator BI = FI->begin(), BE = FI->end();
1309 BI != BE; ++BI) {
Kostya Serebryany687d0782012-01-11 18:15:23 +00001310 if (LooksLikeCodeInBug11395(BI)) return false;
Kostya Serebryany90241602012-05-30 09:04:06 +00001311 if (Value *Addr = isInterestingMemoryAccess(BI, &IsWrite)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001312 if (ClOpt && ClOptSameTemp) {
1313 if (!TempsToInstrument.insert(Addr))
1314 continue; // We've seen this temp in the current BB.
1315 }
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +00001316 } else if (ClInvalidPointerPairs &&
Kostya Serebryany796f6552014-02-27 12:45:36 +00001317 isInterestingPointerComparisonOrSubtraction(BI)) {
1318 PointerComparisonsOrSubtracts.push_back(BI);
1319 continue;
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00001320 } else if (isa<MemIntrinsic>(BI)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001321 // ok, take it.
1322 } else {
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001323 if (isa<AllocaInst>(BI))
1324 NumAllocas++;
Kostya Serebryany699ac282013-02-20 12:35:15 +00001325 CallSite CS(BI);
1326 if (CS) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001327 // A call inside BB.
1328 TempsToInstrument.clear();
Kostya Serebryany699ac282013-02-20 12:35:15 +00001329 if (CS.doesNotReturn())
1330 NoReturnCalls.push_back(CS.getInstruction());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001331 }
1332 continue;
1333 }
1334 ToInstrument.push_back(BI);
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001335 NumInsnsPerBB++;
1336 if (NumInsnsPerBB >= ClMaxInsnsToInstrumentPerBB)
1337 break;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001338 }
1339 }
1340
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001341 Function *UninstrumentedDuplicate = 0;
1342 bool LikelyToInstrument =
1343 !NoReturnCalls.empty() || !ToInstrument.empty() || (NumAllocas > 0);
1344 if (ClKeepUninstrumented && LikelyToInstrument) {
1345 ValueToValueMapTy VMap;
1346 UninstrumentedDuplicate = CloneFunction(&F, VMap, false);
1347 UninstrumentedDuplicate->removeFnAttr(Attribute::SanitizeAddress);
1348 UninstrumentedDuplicate->setName("NOASAN_" + F.getName());
1349 F.getParent()->getFunctionList().push_back(UninstrumentedDuplicate);
1350 }
1351
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001352 bool UseCalls = false;
1353 if (ClInstrumentationWithCallsThreshold >= 0 &&
1354 ToInstrument.size() > (unsigned)ClInstrumentationWithCallsThreshold)
1355 UseCalls = true;
1356
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001357 // Instrument.
1358 int NumInstrumented = 0;
1359 for (size_t i = 0, n = ToInstrument.size(); i != n; i++) {
1360 Instruction *Inst = ToInstrument[i];
1361 if (ClDebugMin < 0 || ClDebugMax < 0 ||
1362 (NumInstrumented >= ClDebugMin && NumInstrumented <= ClDebugMax)) {
Kostya Serebryany90241602012-05-30 09:04:06 +00001363 if (isInterestingMemoryAccess(Inst, &IsWrite))
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001364 instrumentMop(Inst, UseCalls);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001365 else
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00001366 instrumentMemIntrinsic(cast<MemIntrinsic>(Inst));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001367 }
1368 NumInstrumented++;
1369 }
1370
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001371 FunctionStackPoisoner FSP(F, *this);
1372 bool ChangedStack = FSP.runOnFunction();
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001373
1374 // We must unpoison the stack before every NoReturn call (throw, _exit, etc).
1375 // See e.g. http://code.google.com/p/address-sanitizer/issues/detail?id=37
1376 for (size_t i = 0, n = NoReturnCalls.size(); i != n; i++) {
1377 Instruction *CI = NoReturnCalls[i];
1378 IRBuilder<> IRB(CI);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001379 IRB.CreateCall(AsanHandleNoReturnFunc);
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001380 }
1381
Kostya Serebryany796f6552014-02-27 12:45:36 +00001382 for (size_t i = 0, n = PointerComparisonsOrSubtracts.size(); i != n; i++) {
1383 instrumentPointerComparisonOrSubtraction(PointerComparisonsOrSubtracts[i]);
1384 NumInstrumented++;
1385 }
1386
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001387 bool res = NumInstrumented > 0 || ChangedStack || !NoReturnCalls.empty();
Bob Wilsonda4147c2013-11-15 07:16:09 +00001388
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001389 if (InjectCoverage(F, AllBlocks))
Bob Wilsonda4147c2013-11-15 07:16:09 +00001390 res = true;
1391
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001392 DEBUG(dbgs() << "ASAN done instrumenting: " << res << " " << F << "\n");
1393
1394 if (ClKeepUninstrumented) {
1395 if (!res) {
1396 // No instrumentation is done, no need for the duplicate.
1397 if (UninstrumentedDuplicate)
1398 UninstrumentedDuplicate->eraseFromParent();
1399 } else {
1400 // The function was instrumented. We must have the duplicate.
1401 assert(UninstrumentedDuplicate);
1402 UninstrumentedDuplicate->setSection("NOASAN");
1403 assert(!F.hasSection());
1404 F.setSection("ASAN");
1405 }
1406 }
1407
1408 return res;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001409}
1410
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001411// Workaround for bug 11395: we don't want to instrument stack in functions
1412// with large assembly blobs (32-bit only), otherwise reg alloc may crash.
1413// FIXME: remove once the bug 11395 is fixed.
1414bool AddressSanitizer::LooksLikeCodeInBug11395(Instruction *I) {
1415 if (LongSize != 32) return false;
1416 CallInst *CI = dyn_cast<CallInst>(I);
1417 if (!CI || !CI->isInlineAsm()) return false;
1418 if (CI->getNumArgOperands() <= 5) return false;
1419 // We have inline assembly with quite a few arguments.
1420 return true;
1421}
1422
1423void FunctionStackPoisoner::initializeCallbacks(Module &M) {
1424 IRBuilder<> IRB(*C);
Kostya Serebryany6805de52013-09-10 13:16:56 +00001425 for (int i = 0; i <= kMaxAsanStackMallocSizeClass; i++) {
1426 std::string Suffix = itostr(i);
1427 AsanStackMallocFunc[i] = checkInterfaceFunction(
1428 M.getOrInsertFunction(kAsanStackMallocNameTemplate + Suffix, IntptrTy,
1429 IntptrTy, IntptrTy, NULL));
1430 AsanStackFreeFunc[i] = checkInterfaceFunction(M.getOrInsertFunction(
1431 kAsanStackFreeNameTemplate + Suffix, IRB.getVoidTy(), IntptrTy,
1432 IntptrTy, IntptrTy, NULL));
1433 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001434 AsanPoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1435 kAsanPoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1436 AsanUnpoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1437 kAsanUnpoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1438}
1439
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001440void
1441FunctionStackPoisoner::poisonRedZones(const ArrayRef<uint8_t> ShadowBytes,
1442 IRBuilder<> &IRB, Value *ShadowBase,
1443 bool DoPoison) {
1444 size_t n = ShadowBytes.size();
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001445 size_t i = 0;
1446 // We need to (un)poison n bytes of stack shadow. Poison as many as we can
1447 // using 64-bit stores (if we are on 64-bit arch), then poison the rest
1448 // with 32-bit stores, then with 16-byte stores, then with 8-byte stores.
1449 for (size_t LargeStoreSizeInBytes = ASan.LongSize / 8;
1450 LargeStoreSizeInBytes != 0; LargeStoreSizeInBytes /= 2) {
1451 for (; i + LargeStoreSizeInBytes - 1 < n; i += LargeStoreSizeInBytes) {
1452 uint64_t Val = 0;
1453 for (size_t j = 0; j < LargeStoreSizeInBytes; j++) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001454 if (ASan.DL->isLittleEndian())
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001455 Val |= (uint64_t)ShadowBytes[i + j] << (8 * j);
1456 else
1457 Val = (Val << 8) | ShadowBytes[i + j];
1458 }
1459 if (!Val) continue;
1460 Value *Ptr = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1461 Type *StoreTy = Type::getIntNTy(*C, LargeStoreSizeInBytes * 8);
1462 Value *Poison = ConstantInt::get(StoreTy, DoPoison ? Val : 0);
1463 IRB.CreateStore(Poison, IRB.CreateIntToPtr(Ptr, StoreTy->getPointerTo()));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001464 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001465 }
1466}
1467
Kostya Serebryany6805de52013-09-10 13:16:56 +00001468// Fake stack allocator (asan_fake_stack.h) has 11 size classes
1469// for every power of 2 from kMinStackMallocSize to kMaxAsanStackMallocSizeClass
1470static int StackMallocSizeClass(uint64_t LocalStackSize) {
1471 assert(LocalStackSize <= kMaxStackMallocSize);
1472 uint64_t MaxSize = kMinStackMallocSize;
1473 for (int i = 0; ; i++, MaxSize *= 2)
1474 if (LocalStackSize <= MaxSize)
1475 return i;
1476 llvm_unreachable("impossible LocalStackSize");
1477}
1478
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001479// Set Size bytes starting from ShadowBase to kAsanStackAfterReturnMagic.
1480// We can not use MemSet intrinsic because it may end up calling the actual
1481// memset. Size is a multiple of 8.
1482// Currently this generates 8-byte stores on x86_64; it may be better to
1483// generate wider stores.
1484void FunctionStackPoisoner::SetShadowToStackAfterReturnInlined(
1485 IRBuilder<> &IRB, Value *ShadowBase, int Size) {
1486 assert(!(Size % 8));
1487 assert(kAsanStackAfterReturnMagic == 0xf5);
1488 for (int i = 0; i < Size; i += 8) {
1489 Value *p = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1490 IRB.CreateStore(ConstantInt::get(IRB.getInt64Ty(), 0xf5f5f5f5f5f5f5f5ULL),
1491 IRB.CreateIntToPtr(p, IRB.getInt64Ty()->getPointerTo()));
1492 }
1493}
1494
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001495void FunctionStackPoisoner::poisonStack() {
Kostya Serebryany6805de52013-09-10 13:16:56 +00001496 int StackMallocIdx = -1;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001497
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001498 assert(AllocaVec.size() > 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001499 Instruction *InsBefore = AllocaVec[0];
1500 IRBuilder<> IRB(InsBefore);
1501
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001502 SmallVector<ASanStackVariableDescription, 16> SVD;
1503 SVD.reserve(AllocaVec.size());
1504 for (size_t i = 0, n = AllocaVec.size(); i < n; i++) {
1505 AllocaInst *AI = AllocaVec[i];
1506 ASanStackVariableDescription D = { AI->getName().data(),
1507 getAllocaSizeInBytes(AI),
1508 AI->getAlignment(), AI, 0};
1509 SVD.push_back(D);
1510 }
1511 // Minimal header size (left redzone) is 4 pointers,
1512 // i.e. 32 bytes on 64-bit platforms and 16 bytes in 32-bit platforms.
1513 size_t MinHeaderSize = ASan.LongSize / 2;
1514 ASanStackFrameLayout L;
1515 ComputeASanStackFrameLayout(SVD, 1UL << Mapping.Scale, MinHeaderSize, &L);
1516 DEBUG(dbgs() << L.DescriptionString << " --- " << L.FrameSize << "\n");
1517 uint64_t LocalStackSize = L.FrameSize;
1518 bool DoStackMalloc =
1519 ASan.CheckUseAfterReturn && LocalStackSize <= kMaxStackMallocSize;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001520
1521 Type *ByteArrayTy = ArrayType::get(IRB.getInt8Ty(), LocalStackSize);
1522 AllocaInst *MyAlloca =
1523 new AllocaInst(ByteArrayTy, "MyAlloca", InsBefore);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001524 assert((ClRealignStack & (ClRealignStack - 1)) == 0);
1525 size_t FrameAlignment = std::max(L.FrameAlignment, (size_t)ClRealignStack);
1526 MyAlloca->setAlignment(FrameAlignment);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001527 assert(MyAlloca->isStaticAlloca());
1528 Value *OrigStackBase = IRB.CreatePointerCast(MyAlloca, IntptrTy);
1529 Value *LocalStackBase = OrigStackBase;
1530
1531 if (DoStackMalloc) {
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001532 // LocalStackBase = OrigStackBase
1533 // if (__asan_option_detect_stack_use_after_return)
1534 // LocalStackBase = __asan_stack_malloc_N(LocalStackBase, OrigStackBase);
Kostya Serebryany6805de52013-09-10 13:16:56 +00001535 StackMallocIdx = StackMallocSizeClass(LocalStackSize);
1536 assert(StackMallocIdx <= kMaxAsanStackMallocSizeClass);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001537 Constant *OptionDetectUAR = F.getParent()->getOrInsertGlobal(
1538 kAsanOptionDetectUAR, IRB.getInt32Ty());
1539 Value *Cmp = IRB.CreateICmpNE(IRB.CreateLoad(OptionDetectUAR),
1540 Constant::getNullValue(IRB.getInt32Ty()));
Evgeniy Stepanova9164e92013-12-19 13:29:56 +00001541 Instruction *Term = SplitBlockAndInsertIfThen(Cmp, InsBefore, false);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001542 BasicBlock *CmpBlock = cast<Instruction>(Cmp)->getParent();
1543 IRBuilder<> IRBIf(Term);
1544 LocalStackBase = IRBIf.CreateCall2(
1545 AsanStackMallocFunc[StackMallocIdx],
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001546 ConstantInt::get(IntptrTy, LocalStackSize), OrigStackBase);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001547 BasicBlock *SetBlock = cast<Instruction>(LocalStackBase)->getParent();
1548 IRB.SetInsertPoint(InsBefore);
1549 PHINode *Phi = IRB.CreatePHI(IntptrTy, 2);
1550 Phi->addIncoming(OrigStackBase, CmpBlock);
1551 Phi->addIncoming(LocalStackBase, SetBlock);
1552 LocalStackBase = Phi;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001553 }
1554
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001555 // Insert poison calls for lifetime intrinsics for alloca.
1556 bool HavePoisonedAllocas = false;
1557 for (size_t i = 0, n = AllocaPoisonCallVec.size(); i < n; i++) {
1558 const AllocaPoisonCall &APC = AllocaPoisonCallVec[i];
Alexey Samsonova788b942013-11-18 14:53:55 +00001559 assert(APC.InsBefore);
1560 assert(APC.AI);
1561 IRBuilder<> IRB(APC.InsBefore);
1562 poisonAlloca(APC.AI, APC.Size, IRB, APC.DoPoison);
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001563 HavePoisonedAllocas |= APC.DoPoison;
1564 }
1565
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001566 // Replace Alloca instructions with base+offset.
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001567 for (size_t i = 0, n = SVD.size(); i < n; i++) {
1568 AllocaInst *AI = SVD[i].AI;
Alexey Samsonov261177a2012-12-04 01:34:23 +00001569 Value *NewAllocaPtr = IRB.CreateIntToPtr(
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001570 IRB.CreateAdd(LocalStackBase,
1571 ConstantInt::get(IntptrTy, SVD[i].Offset)),
1572 AI->getType());
Alexey Samsonov3d43b632012-12-12 14:31:53 +00001573 replaceDbgDeclareForAlloca(AI, NewAllocaPtr, DIB);
Alexey Samsonov261177a2012-12-04 01:34:23 +00001574 AI->replaceAllUsesWith(NewAllocaPtr);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001575 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001576
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001577 // The left-most redzone has enough space for at least 4 pointers.
1578 // Write the Magic value to redzone[0].
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001579 Value *BasePlus0 = IRB.CreateIntToPtr(LocalStackBase, IntptrPtrTy);
1580 IRB.CreateStore(ConstantInt::get(IntptrTy, kCurrentStackFrameMagic),
1581 BasePlus0);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001582 // Write the frame description constant to redzone[1].
1583 Value *BasePlus1 = IRB.CreateIntToPtr(
1584 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, ASan.LongSize/8)),
1585 IntptrPtrTy);
Alexey Samsonov9bdb63a2012-11-02 12:20:34 +00001586 GlobalVariable *StackDescriptionGlobal =
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001587 createPrivateGlobalForString(*F.getParent(), L.DescriptionString,
1588 /*AllowMerging*/true);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001589 Value *Description = IRB.CreatePointerCast(StackDescriptionGlobal,
1590 IntptrTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001591 IRB.CreateStore(Description, BasePlus1);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001592 // Write the PC to redzone[2].
1593 Value *BasePlus2 = IRB.CreateIntToPtr(
1594 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy,
1595 2 * ASan.LongSize/8)),
1596 IntptrPtrTy);
1597 IRB.CreateStore(IRB.CreatePointerCast(&F, IntptrTy), BasePlus2);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001598
1599 // Poison the stack redzones at the entry.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001600 Value *ShadowBase = ASan.memToShadow(LocalStackBase, IRB);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001601 poisonRedZones(L.ShadowBytes, IRB, ShadowBase, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001602
Kostya Serebryany530e2072013-12-23 14:15:08 +00001603 // (Un)poison the stack before all ret instructions.
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001604 for (size_t i = 0, n = RetVec.size(); i < n; i++) {
1605 Instruction *Ret = RetVec[i];
1606 IRBuilder<> IRBRet(Ret);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001607 // Mark the current frame as retired.
1608 IRBRet.CreateStore(ConstantInt::get(IntptrTy, kRetiredStackFrameMagic),
1609 BasePlus0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001610 if (DoStackMalloc) {
Kostya Serebryany6805de52013-09-10 13:16:56 +00001611 assert(StackMallocIdx >= 0);
Kostya Serebryany530e2072013-12-23 14:15:08 +00001612 // if LocalStackBase != OrigStackBase:
1613 // // In use-after-return mode, poison the whole stack frame.
1614 // if StackMallocIdx <= 4
1615 // // For small sizes inline the whole thing:
1616 // memset(ShadowBase, kAsanStackAfterReturnMagic, ShadowSize);
1617 // **SavedFlagPtr(LocalStackBase) = 0
1618 // else
1619 // __asan_stack_free_N(LocalStackBase, OrigStackBase)
1620 // else
1621 // <This is not a fake stack; unpoison the redzones>
1622 Value *Cmp = IRBRet.CreateICmpNE(LocalStackBase, OrigStackBase);
1623 TerminatorInst *ThenTerm, *ElseTerm;
1624 SplitBlockAndInsertIfThenElse(Cmp, Ret, &ThenTerm, &ElseTerm);
1625
1626 IRBuilder<> IRBPoison(ThenTerm);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001627 if (StackMallocIdx <= 4) {
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001628 int ClassSize = kMinStackMallocSize << StackMallocIdx;
1629 SetShadowToStackAfterReturnInlined(IRBPoison, ShadowBase,
1630 ClassSize >> Mapping.Scale);
1631 Value *SavedFlagPtrPtr = IRBPoison.CreateAdd(
1632 LocalStackBase,
1633 ConstantInt::get(IntptrTy, ClassSize - ASan.LongSize / 8));
1634 Value *SavedFlagPtr = IRBPoison.CreateLoad(
1635 IRBPoison.CreateIntToPtr(SavedFlagPtrPtr, IntptrPtrTy));
1636 IRBPoison.CreateStore(
1637 Constant::getNullValue(IRBPoison.getInt8Ty()),
1638 IRBPoison.CreateIntToPtr(SavedFlagPtr, IRBPoison.getInt8PtrTy()));
1639 } else {
1640 // For larger frames call __asan_stack_free_*.
Kostya Serebryany530e2072013-12-23 14:15:08 +00001641 IRBPoison.CreateCall3(AsanStackFreeFunc[StackMallocIdx], LocalStackBase,
1642 ConstantInt::get(IntptrTy, LocalStackSize),
1643 OrigStackBase);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001644 }
Kostya Serebryany530e2072013-12-23 14:15:08 +00001645
1646 IRBuilder<> IRBElse(ElseTerm);
1647 poisonRedZones(L.ShadowBytes, IRBElse, ShadowBase, false);
Alexey Samsonov261177a2012-12-04 01:34:23 +00001648 } else if (HavePoisonedAllocas) {
1649 // If we poisoned some allocas in llvm.lifetime analysis,
1650 // unpoison whole stack frame now.
1651 assert(LocalStackBase == OrigStackBase);
1652 poisonAlloca(LocalStackBase, LocalStackSize, IRBRet, false);
Kostya Serebryany530e2072013-12-23 14:15:08 +00001653 } else {
1654 poisonRedZones(L.ShadowBytes, IRBRet, ShadowBase, false);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001655 }
1656 }
1657
Kostya Serebryany09959942012-10-19 06:20:53 +00001658 // We are done. Remove the old unused alloca instructions.
1659 for (size_t i = 0, n = AllocaVec.size(); i < n; i++)
1660 AllocaVec[i]->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001661}
Alexey Samsonov261177a2012-12-04 01:34:23 +00001662
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001663void FunctionStackPoisoner::poisonAlloca(Value *V, uint64_t Size,
Jakub Staszak23ec6a92013-08-09 20:53:48 +00001664 IRBuilder<> &IRB, bool DoPoison) {
Alexey Samsonov261177a2012-12-04 01:34:23 +00001665 // For now just insert the call to ASan runtime.
1666 Value *AddrArg = IRB.CreatePointerCast(V, IntptrTy);
1667 Value *SizeArg = ConstantInt::get(IntptrTy, Size);
1668 IRB.CreateCall2(DoPoison ? AsanPoisonStackMemoryFunc
1669 : AsanUnpoisonStackMemoryFunc,
1670 AddrArg, SizeArg);
1671}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001672
1673// Handling llvm.lifetime intrinsics for a given %alloca:
1674// (1) collect all llvm.lifetime.xxx(%size, %value) describing the alloca.
1675// (2) if %size is constant, poison memory for llvm.lifetime.end (to detect
1676// invalid accesses) and unpoison it for llvm.lifetime.start (the memory
1677// could be poisoned by previous llvm.lifetime.end instruction, as the
1678// variable may go in and out of scope several times, e.g. in loops).
1679// (3) if we poisoned at least one %alloca in a function,
1680// unpoison the whole stack frame at function exit.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001681
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001682AllocaInst *FunctionStackPoisoner::findAllocaForValue(Value *V) {
1683 if (AllocaInst *AI = dyn_cast<AllocaInst>(V))
1684 // We're intested only in allocas we can handle.
1685 return isInterestingAlloca(*AI) ? AI : 0;
1686 // See if we've already calculated (or started to calculate) alloca for a
1687 // given value.
1688 AllocaForValueMapTy::iterator I = AllocaForValue.find(V);
1689 if (I != AllocaForValue.end())
1690 return I->second;
1691 // Store 0 while we're calculating alloca for value V to avoid
1692 // infinite recursion if the value references itself.
1693 AllocaForValue[V] = 0;
1694 AllocaInst *Res = 0;
1695 if (CastInst *CI = dyn_cast<CastInst>(V))
1696 Res = findAllocaForValue(CI->getOperand(0));
1697 else if (PHINode *PN = dyn_cast<PHINode>(V)) {
1698 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1699 Value *IncValue = PN->getIncomingValue(i);
1700 // Allow self-referencing phi-nodes.
1701 if (IncValue == PN) continue;
1702 AllocaInst *IncValueAI = findAllocaForValue(IncValue);
1703 // AI for incoming values should exist and should all be equal.
1704 if (IncValueAI == 0 || (Res != 0 && IncValueAI != Res))
1705 return 0;
1706 Res = IncValueAI;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001707 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001708 }
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001709 if (Res != 0)
1710 AllocaForValue[V] = Res;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001711 return Res;
1712}