blob: 5e5ddc127eeed02bd7791b9cd235877f774b4810 [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 Samsonov4f319cc2014-07-02 16:54:41 +000019#include "llvm/ADT/DenseSet.h"
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +000020#include "llvm/ADT/DepthFirstIterator.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000021#include "llvm/ADT/SmallSet.h"
22#include "llvm/ADT/SmallString.h"
23#include "llvm/ADT/SmallVector.h"
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +000024#include "llvm/ADT/Statistic.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000025#include "llvm/ADT/StringExtras.h"
Evgeniy Stepanov617232f2012-05-23 11:52:12 +000026#include "llvm/ADT/Triple.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000027#include "llvm/IR/CallSite.h"
Chandler Carruth12664a02014-03-06 00:22:06 +000028#include "llvm/IR/DIBuilder.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000029#include "llvm/IR/DataLayout.h"
30#include "llvm/IR/Function.h"
31#include "llvm/IR/IRBuilder.h"
32#include "llvm/IR/InlineAsm.h"
Chandler Carruth7da14f12014-03-06 03:23:41 +000033#include "llvm/IR/InstVisitor.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000034#include "llvm/IR/IntrinsicInst.h"
35#include "llvm/IR/LLVMContext.h"
Kostya Serebryany714c67c2014-01-17 11:00:30 +000036#include "llvm/IR/MDBuilder.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000037#include "llvm/IR/Module.h"
38#include "llvm/IR/Type.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000039#include "llvm/Support/CommandLine.h"
40#include "llvm/Support/DataTypes.h"
41#include "llvm/Support/Debug.h"
Kostya Serebryany9e62b302013-06-03 14:46:56 +000042#include "llvm/Support/Endian.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"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000048#include <algorithm>
Chandler Carruthed0881b2012-12-03 16:50:05 +000049#include <string>
Rafael Espindolaa6e9c3e2014-06-12 17:38:55 +000050#include <system_error>
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000051
52using namespace llvm;
53
Chandler Carruth964daaa2014-04-22 02:55:47 +000054#define DEBUG_TYPE "asan"
55
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000056static const uint64_t kDefaultShadowScale = 3;
57static const uint64_t kDefaultShadowOffset32 = 1ULL << 29;
Alexander Potapenkoa51e4832014-04-23 17:14:45 +000058static const uint64_t kIOSShadowOffset32 = 1ULL << 30;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000059static const uint64_t kDefaultShadowOffset64 = 1ULL << 44;
Kostya Serebryanycc92c792014-02-24 13:40:24 +000060static const uint64_t kSmallX86_64ShadowOffset = 0x7FFF8000; // < 2G.
Kostya Serebryany4766fe62013-01-23 12:54:55 +000061static const uint64_t kPPC64_ShadowOffset64 = 1ULL << 41;
Kostya Serebryany9e62b302013-06-03 14:46:56 +000062static const uint64_t kMIPS32_ShadowOffset32 = 0x0aaa8000;
Kostya Serebryany8baa3862014-02-10 07:37:04 +000063static const uint64_t kFreeBSD_ShadowOffset32 = 1ULL << 30;
64static const uint64_t kFreeBSD_ShadowOffset64 = 1ULL << 46;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000065
Kostya Serebryany6805de52013-09-10 13:16:56 +000066static const size_t kMinStackMallocSize = 1 << 6; // 64B
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000067static const size_t kMaxStackMallocSize = 1 << 16; // 64K
68static const uintptr_t kCurrentStackFrameMagic = 0x41B58AB3;
69static const uintptr_t kRetiredStackFrameMagic = 0x45E0360E;
70
Craig Topperd3a34f82013-07-16 01:17:10 +000071static const char *const kAsanModuleCtorName = "asan.module_ctor";
72static const char *const kAsanModuleDtorName = "asan.module_dtor";
Alexey Samsonov1f647502014-05-29 01:10:14 +000073static const int kAsanCtorAndDtorPriority = 1;
Craig Topperd3a34f82013-07-16 01:17:10 +000074static const char *const kAsanReportErrorTemplate = "__asan_report_";
75static const char *const kAsanReportLoadN = "__asan_report_load_n";
76static const char *const kAsanReportStoreN = "__asan_report_store_n";
77static const char *const kAsanRegisterGlobalsName = "__asan_register_globals";
Alexey Samsonovf52b7172013-08-05 13:19:49 +000078static const char *const kAsanUnregisterGlobalsName =
79 "__asan_unregister_globals";
Craig Topperd3a34f82013-07-16 01:17:10 +000080static const char *const kAsanPoisonGlobalsName = "__asan_before_dynamic_init";
81static const char *const kAsanUnpoisonGlobalsName = "__asan_after_dynamic_init";
Alexey Samsonov4f319cc2014-07-02 16:54:41 +000082static const char *const kAsanInitName = "__asan_init_v4";
Evgeniy Stepanov47b1a952014-05-27 12:39:31 +000083static const char *const kAsanCovModuleInitName = "__sanitizer_cov_module_init";
Bob Wilsonda4147c2013-11-15 07:16:09 +000084static const char *const kAsanCovName = "__sanitizer_cov";
Kostya Serebryany796f6552014-02-27 12:45:36 +000085static const char *const kAsanPtrCmp = "__sanitizer_ptr_cmp";
86static const char *const kAsanPtrSub = "__sanitizer_ptr_sub";
Craig Topperd3a34f82013-07-16 01:17:10 +000087static const char *const kAsanHandleNoReturnName = "__asan_handle_no_return";
Kostya Serebryany6805de52013-09-10 13:16:56 +000088static const int kMaxAsanStackMallocSizeClass = 10;
89static const char *const kAsanStackMallocNameTemplate = "__asan_stack_malloc_";
90static const char *const kAsanStackFreeNameTemplate = "__asan_stack_free_";
Craig Topperd3a34f82013-07-16 01:17:10 +000091static const char *const kAsanGenPrefix = "__asan_gen_";
92static const char *const kAsanPoisonStackMemoryName =
93 "__asan_poison_stack_memory";
94static const char *const kAsanUnpoisonStackMemoryName =
Alexey Samsonov261177a2012-12-04 01:34:23 +000095 "__asan_unpoison_stack_memory";
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000096
Kostya Serebryanyf3223822013-09-18 14:07:14 +000097static const char *const kAsanOptionDetectUAR =
98 "__asan_option_detect_stack_use_after_return";
99
David Blaikieeacc2872013-09-18 00:11:27 +0000100#ifndef NDEBUG
Kostya Serebryanybc86efb2013-09-17 12:14:50 +0000101static const int kAsanStackAfterReturnMagic = 0xf5;
David Blaikieeacc2872013-09-18 00:11:27 +0000102#endif
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000103
Kostya Serebryany874dae62012-07-16 16:15:40 +0000104// Accesses sizes are powers of two: 1, 2, 4, 8, 16.
105static const size_t kNumberOfAccessSizes = 5;
106
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000107// Command-line flags.
108
109// This flag may need to be replaced with -f[no-]asan-reads.
110static cl::opt<bool> ClInstrumentReads("asan-instrument-reads",
111 cl::desc("instrument read instructions"), cl::Hidden, cl::init(true));
112static cl::opt<bool> ClInstrumentWrites("asan-instrument-writes",
113 cl::desc("instrument write instructions"), cl::Hidden, cl::init(true));
Kostya Serebryany90241602012-05-30 09:04:06 +0000114static cl::opt<bool> ClInstrumentAtomics("asan-instrument-atomics",
115 cl::desc("instrument atomic instructions (rmw, cmpxchg)"),
116 cl::Hidden, cl::init(true));
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000117static cl::opt<bool> ClAlwaysSlowPath("asan-always-slow-path",
118 cl::desc("use instrumentation with slow path for all accesses"),
119 cl::Hidden, cl::init(false));
Kostya Serebryany874dae62012-07-16 16:15:40 +0000120// This flag limits the number of instructions to be instrumented
Kostya Serebryanyc387ca72012-06-28 09:34:41 +0000121// in any given BB. Normally, this should be set to unlimited (INT_MAX),
122// but due to http://llvm.org/bugs/show_bug.cgi?id=12652 we temporary
123// set it to 10000.
124static cl::opt<int> ClMaxInsnsToInstrumentPerBB("asan-max-ins-per-bb",
125 cl::init(10000),
126 cl::desc("maximal number of instructions to instrument in any given BB"),
127 cl::Hidden);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000128// This flag may need to be replaced with -f[no]asan-stack.
129static cl::opt<bool> ClStack("asan-stack",
130 cl::desc("Handle stack memory"), cl::Hidden, cl::init(true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000131static cl::opt<bool> ClUseAfterReturn("asan-use-after-return",
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000132 cl::desc("Check return-after-free"), cl::Hidden, cl::init(true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000133// This flag may need to be replaced with -f[no]asan-globals.
134static cl::opt<bool> ClGlobals("asan-globals",
135 cl::desc("Handle global objects"), cl::Hidden, cl::init(true));
Kostya Serebryany714c67c2014-01-17 11:00:30 +0000136static cl::opt<int> ClCoverage("asan-coverage",
137 cl::desc("ASan coverage. 0: none, 1: entry block, 2: all blocks"),
138 cl::Hidden, cl::init(false));
Kostya Serebryany22e88102014-04-18 08:02:42 +0000139static cl::opt<int> ClCoverageBlockThreshold("asan-coverage-block-threshold",
140 cl::desc("Add coverage instrumentation only to the entry block if there "
141 "are more than this number of blocks."),
142 cl::Hidden, cl::init(1500));
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000143static cl::opt<bool> ClInitializers("asan-initialization-order",
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000144 cl::desc("Handle C++ initializer order"), cl::Hidden, cl::init(true));
Kostya Serebryany796f6552014-02-27 12:45:36 +0000145static cl::opt<bool> ClInvalidPointerPairs("asan-detect-invalid-pointer-pair",
146 cl::desc("Instrument <, <=, >, >=, - with pointer operands"),
Kostya Serebryanyec346652014-02-27 12:56:20 +0000147 cl::Hidden, cl::init(false));
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000148static cl::opt<unsigned> ClRealignStack("asan-realign-stack",
149 cl::desc("Realign stack to the value of this flag (power of two)"),
150 cl::Hidden, cl::init(32));
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000151static cl::opt<int> ClInstrumentationWithCallsThreshold(
152 "asan-instrumentation-with-call-threshold",
153 cl::desc("If the function being instrumented contains more than "
154 "this number of memory accesses, use callbacks instead of "
155 "inline checks (-1 means never use callbacks)."),
Kostya Serebryany4d237a82014-05-26 11:57:16 +0000156 cl::Hidden, cl::init(7000));
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000157static cl::opt<std::string> ClMemoryAccessCallbackPrefix(
158 "asan-memory-access-callback-prefix",
159 cl::desc("Prefix for memory access callbacks"), cl::Hidden,
160 cl::init("__asan_"));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000161
Kostya Serebryany9f5213f2013-06-26 09:18:17 +0000162// This is an experimental feature that will allow to choose between
163// instrumented and non-instrumented code at link-time.
164// If this option is on, just before instrumenting a function we create its
165// clone; if the function is not changed by asan the clone is deleted.
166// If we end up with a clone, we put the instrumented function into a section
167// called "ASAN" and the uninstrumented function into a section called "NOASAN".
168//
169// This is still a prototype, we need to figure out a way to keep two copies of
170// a function so that the linker can easily choose one of them.
171static cl::opt<bool> ClKeepUninstrumented("asan-keep-uninstrumented-functions",
172 cl::desc("Keep uninstrumented copies of functions"),
173 cl::Hidden, cl::init(false));
174
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000175// These flags allow to change the shadow mapping.
176// The shadow mapping looks like
177// Shadow = (Mem >> scale) + (1 << offset_log)
178static cl::opt<int> ClMappingScale("asan-mapping-scale",
179 cl::desc("scale of asan shadow mapping"), cl::Hidden, cl::init(0));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000180
181// Optimization flags. Not user visible, used mostly for testing
182// and benchmarking the tool.
183static cl::opt<bool> ClOpt("asan-opt",
184 cl::desc("Optimize instrumentation"), cl::Hidden, cl::init(true));
185static cl::opt<bool> ClOptSameTemp("asan-opt-same-temp",
186 cl::desc("Instrument the same temp just once"), cl::Hidden,
187 cl::init(true));
188static cl::opt<bool> ClOptGlobals("asan-opt-globals",
189 cl::desc("Don't instrument scalar globals"), cl::Hidden, cl::init(true));
190
Alexey Samsonovdf624522012-11-29 18:14:24 +0000191static cl::opt<bool> ClCheckLifetime("asan-check-lifetime",
192 cl::desc("Use llvm.lifetime intrinsics to insert extra checks"),
193 cl::Hidden, cl::init(false));
194
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000195// Debug flags.
196static cl::opt<int> ClDebug("asan-debug", cl::desc("debug"), cl::Hidden,
197 cl::init(0));
198static cl::opt<int> ClDebugStack("asan-debug-stack", cl::desc("debug stack"),
199 cl::Hidden, cl::init(0));
200static cl::opt<std::string> ClDebugFunc("asan-debug-func",
201 cl::Hidden, cl::desc("Debug func"));
202static cl::opt<int> ClDebugMin("asan-debug-min", cl::desc("Debug min inst"),
203 cl::Hidden, cl::init(-1));
204static cl::opt<int> ClDebugMax("asan-debug-max", cl::desc("Debug man inst"),
205 cl::Hidden, cl::init(-1));
206
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000207STATISTIC(NumInstrumentedReads, "Number of instrumented reads");
208STATISTIC(NumInstrumentedWrites, "Number of instrumented writes");
209STATISTIC(NumOptimizedAccessesToGlobalArray,
210 "Number of optimized accesses to global arrays");
211STATISTIC(NumOptimizedAccessesToGlobalVar,
212 "Number of optimized accesses to global vars");
213
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000214namespace {
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000215/// Frontend-provided metadata for global variables.
216class GlobalsMetadata {
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000217 public:
Alexey Samsonov0c5ecdd2014-07-02 20:25:42 +0000218 GlobalsMetadata() : inited_(false) {}
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000219 void init(Module& M) {
220 assert(!inited_);
221 inited_ = true;
222 NamedMDNode *Globals = M.getNamedMetadata("llvm.asan.globals");
223 if (!Globals)
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000224 return;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000225 for (auto MDN : Globals->operands()) {
226 // Format of the metadata node for the global:
227 // {
228 // global,
229 // source_location,
230 // i1 is_dynamically_initialized,
231 // i1 is_blacklisted
232 // }
233 assert(MDN->getNumOperands() == 4);
234 Value *V = MDN->getOperand(0);
235 // The optimizer may optimize away a global entirely.
236 if (!V)
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000237 continue;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000238 GlobalVariable *GV = cast<GlobalVariable>(V);
239 if (Value *Loc = MDN->getOperand(1)) {
240 GlobalVariable *GVLoc = cast<GlobalVariable>(Loc);
241 // We may already know the source location for GV, if it was merged
242 // with another global.
243 if (SourceLocation.insert(std::make_pair(GV, GVLoc)).second)
244 addSourceLocationGlobal(GVLoc);
245 }
246 ConstantInt *IsDynInit = cast<ConstantInt>(MDN->getOperand(2));
247 if (IsDynInit->isOne())
248 DynInitGlobals.insert(GV);
249 ConstantInt *IsBlacklisted = cast<ConstantInt>(MDN->getOperand(3));
250 if (IsBlacklisted->isOne())
251 BlacklistedGlobals.insert(GV);
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000252 }
253 }
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000254
255 GlobalVariable *getSourceLocation(GlobalVariable *G) const {
256 auto Pos = SourceLocation.find(G);
257 return (Pos != SourceLocation.end()) ? Pos->second : nullptr;
258 }
259
260 /// Check if the global is dynamically initialized.
261 bool isDynInit(GlobalVariable *G) const {
262 return DynInitGlobals.count(G);
263 }
264
265 /// Check if the global was blacklisted.
266 bool isBlacklisted(GlobalVariable *G) const {
267 return BlacklistedGlobals.count(G);
268 }
269
270 /// Check if the global was generated to describe source location of another
271 /// global (we don't want to instrument them).
272 bool isSourceLocationGlobal(GlobalVariable *G) const {
273 return LocationGlobals.count(G);
274 }
275
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000276 private:
Alexey Samsonov0c5ecdd2014-07-02 20:25:42 +0000277 bool inited_;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000278 DenseMap<GlobalVariable*, GlobalVariable*> SourceLocation;
279 DenseSet<GlobalVariable*> DynInitGlobals;
280 DenseSet<GlobalVariable*> BlacklistedGlobals;
281 DenseSet<GlobalVariable*> LocationGlobals;
282
283 void addSourceLocationGlobal(GlobalVariable *SourceLocGV) {
284 // Source location global is a struct with layout:
285 // {
286 // filename,
287 // i32 line_number,
288 // i32 column_number,
289 // }
290 LocationGlobals.insert(SourceLocGV);
291 ConstantStruct *Contents =
292 cast<ConstantStruct>(SourceLocGV->getInitializer());
293 GlobalVariable *FilenameGV = cast<GlobalVariable>(Contents->getOperand(0));
294 LocationGlobals.insert(FilenameGV);
295 }
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000296};
297
Alexey Samsonov1345d352013-01-16 13:23:28 +0000298/// This struct defines the shadow mapping using the rule:
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000299/// shadow = (mem >> Scale) ADD-or-OR Offset.
Alexey Samsonov1345d352013-01-16 13:23:28 +0000300struct ShadowMapping {
301 int Scale;
302 uint64_t Offset;
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000303 bool OrShadowOffset;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000304};
305
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000306static ShadowMapping getShadowMapping(const Module &M, int LongSize) {
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000307 llvm::Triple TargetTriple(M.getTargetTriple());
308 bool IsAndroid = TargetTriple.getEnvironment() == llvm::Triple::Android;
Alexander Potapenkoa51e4832014-04-23 17:14:45 +0000309 bool IsIOS = TargetTriple.getOS() == llvm::Triple::IOS;
Kostya Serebryany8baa3862014-02-10 07:37:04 +0000310 bool IsFreeBSD = TargetTriple.getOS() == llvm::Triple::FreeBSD;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000311 bool IsLinux = TargetTriple.getOS() == llvm::Triple::Linux;
Bill Schmidt0a9170d2013-07-26 01:35:43 +0000312 bool IsPPC64 = TargetTriple.getArch() == llvm::Triple::ppc64 ||
313 TargetTriple.getArch() == llvm::Triple::ppc64le;
Kostya Serebryanybe733372013-02-12 11:11:02 +0000314 bool IsX86_64 = TargetTriple.getArch() == llvm::Triple::x86_64;
Kostya Serebryany9e62b302013-06-03 14:46:56 +0000315 bool IsMIPS32 = TargetTriple.getArch() == llvm::Triple::mips ||
316 TargetTriple.getArch() == llvm::Triple::mipsel;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000317
318 ShadowMapping Mapping;
319
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000320 if (LongSize == 32) {
321 if (IsAndroid)
322 Mapping.Offset = 0;
323 else if (IsMIPS32)
324 Mapping.Offset = kMIPS32_ShadowOffset32;
325 else if (IsFreeBSD)
326 Mapping.Offset = kFreeBSD_ShadowOffset32;
Alexander Potapenkoa51e4832014-04-23 17:14:45 +0000327 else if (IsIOS)
328 Mapping.Offset = kIOSShadowOffset32;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000329 else
330 Mapping.Offset = kDefaultShadowOffset32;
331 } else { // LongSize == 64
332 if (IsPPC64)
333 Mapping.Offset = kPPC64_ShadowOffset64;
334 else if (IsFreeBSD)
335 Mapping.Offset = kFreeBSD_ShadowOffset64;
336 else if (IsLinux && IsX86_64)
337 Mapping.Offset = kSmallX86_64ShadowOffset;
338 else
339 Mapping.Offset = kDefaultShadowOffset64;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000340 }
341
342 Mapping.Scale = kDefaultShadowScale;
343 if (ClMappingScale) {
344 Mapping.Scale = ClMappingScale;
345 }
346
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000347 // OR-ing shadow offset if more efficient (at least on x86) if the offset
348 // is a power of two, but on ppc64 we have to use add since the shadow
349 // offset is not necessary 1/8-th of the address space.
350 Mapping.OrShadowOffset = !IsPPC64 && !(Mapping.Offset & (Mapping.Offset - 1));
351
Alexey Samsonov1345d352013-01-16 13:23:28 +0000352 return Mapping;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000353}
354
Alexey Samsonov1345d352013-01-16 13:23:28 +0000355static size_t RedzoneSizeForScale(int MappingScale) {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000356 // Redzone used for stack and globals is at least 32 bytes.
357 // For scales 6 and 7, the redzone has to be 64 and 128 bytes respectively.
Alexey Samsonov1345d352013-01-16 13:23:28 +0000358 return std::max(32U, 1U << MappingScale);
Kostya Serebryany20a79972012-11-22 03:18:50 +0000359}
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000360
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000361/// AddressSanitizer: instrument the code in module to find memory bugs.
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000362struct AddressSanitizer : public FunctionPass {
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000363 AddressSanitizer() : FunctionPass(ID) {}
Craig Topper3e4c6972014-03-05 09:10:37 +0000364 const char *getPassName() const override {
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000365 return "AddressSanitizerFunctionPass";
366 }
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000367 void instrumentMop(Instruction *I, bool UseCalls);
Kostya Serebryany796f6552014-02-27 12:45:36 +0000368 void instrumentPointerComparisonOrSubtraction(Instruction *I);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000369 void instrumentAddress(Instruction *OrigIns, Instruction *InsertBefore,
370 Value *Addr, uint32_t TypeSize, bool IsWrite,
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000371 Value *SizeArgument, bool UseCalls);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000372 Value *createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
373 Value *ShadowValue, uint32_t TypeSize);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000374 Instruction *generateCrashCode(Instruction *InsertBefore, Value *Addr,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000375 bool IsWrite, size_t AccessSizeIndex,
376 Value *SizeArgument);
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000377 void instrumentMemIntrinsic(MemIntrinsic *MI);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000378 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB);
Craig Topper3e4c6972014-03-05 09:10:37 +0000379 bool runOnFunction(Function &F) override;
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +0000380 bool maybeInsertAsanInitAtFunctionEntry(Function &F);
Craig Topper3e4c6972014-03-05 09:10:37 +0000381 bool doInitialization(Module &M) override;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000382 static char ID; // Pass identification, replacement for typeid
383
384 private:
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000385 void initializeCallbacks(Module &M);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000386
Kostya Serebryany1cdc6e92011-11-18 01:41:06 +0000387 bool LooksLikeCodeInBug11395(Instruction *I);
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000388 bool GlobalIsLinkerInitialized(GlobalVariable *G);
Kostya Serebryany714c67c2014-01-17 11:00:30 +0000389 bool InjectCoverage(Function &F, const ArrayRef<BasicBlock*> AllBlocks);
390 void InjectCoverageAtBlock(Function &F, BasicBlock &BB);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000391
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000392 LLVMContext *C;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000393 const DataLayout *DL;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000394 int LongSize;
395 Type *IntptrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000396 ShadowMapping Mapping;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000397 Function *AsanCtorFunction;
398 Function *AsanInitFunction;
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000399 Function *AsanHandleNoReturnFunc;
Bob Wilsonda4147c2013-11-15 07:16:09 +0000400 Function *AsanCovFunction;
Kostya Serebryany796f6552014-02-27 12:45:36 +0000401 Function *AsanPtrCmpFunction, *AsanPtrSubFunction;
Kostya Serebryany4273bb02012-07-16 14:09:42 +0000402 // This array is indexed by AccessIsWrite and log2(AccessSize).
403 Function *AsanErrorCallback[2][kNumberOfAccessSizes];
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000404 Function *AsanMemoryAccessCallback[2][kNumberOfAccessSizes];
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000405 // This array is indexed by AccessIsWrite.
Kostya Serebryany86332c02014-04-21 07:10:43 +0000406 Function *AsanErrorCallbackSized[2],
407 *AsanMemoryAccessCallbackSized[2];
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000408 Function *AsanMemmove, *AsanMemcpy, *AsanMemset;
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000409 InlineAsm *EmptyAsm;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000410 GlobalsMetadata GlobalsMD;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000411
412 friend struct FunctionStackPoisoner;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000413};
Kostya Serebryany874dae62012-07-16 16:15:40 +0000414
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000415class AddressSanitizerModule : public ModulePass {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000416 public:
Alexey Samsonovc94285a2014-07-08 00:50:49 +0000417 AddressSanitizerModule() : ModulePass(ID) {}
Craig Topper3e4c6972014-03-05 09:10:37 +0000418 bool runOnModule(Module &M) override;
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000419 static char ID; // Pass identification, replacement for typeid
Craig Topper3e4c6972014-03-05 09:10:37 +0000420 const char *getPassName() const override {
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000421 return "AddressSanitizerModule";
422 }
Alexey Samsonov261177a2012-12-04 01:34:23 +0000423
Kostya Serebryany20a79972012-11-22 03:18:50 +0000424 private:
Alexey Samsonov788381b2012-12-25 12:28:20 +0000425 void initializeCallbacks(Module &M);
426
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +0000427 bool InstrumentGlobals(IRBuilder<> &IRB, Module &M);
Kostya Serebryany20a79972012-11-22 03:18:50 +0000428 bool ShouldInstrumentGlobal(GlobalVariable *G);
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000429 void poisonOneInitializer(Function &GlobalInit, GlobalValue *ModuleName);
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000430 void createInitializerPoisonCalls(Module &M, GlobalValue *ModuleName);
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000431 size_t MinRedzoneSizeForGlobal() const {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000432 return RedzoneSizeForScale(Mapping.Scale);
433 }
Kostya Serebryany20a79972012-11-22 03:18:50 +0000434
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000435 GlobalsMetadata GlobalsMD;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000436 Type *IntptrTy;
437 LLVMContext *C;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000438 const DataLayout *DL;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000439 ShadowMapping Mapping;
Alexey Samsonov788381b2012-12-25 12:28:20 +0000440 Function *AsanPoisonGlobals;
441 Function *AsanUnpoisonGlobals;
442 Function *AsanRegisterGlobals;
443 Function *AsanUnregisterGlobals;
Evgeniy Stepanov47b1a952014-05-27 12:39:31 +0000444 Function *AsanCovModuleInit;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000445};
446
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000447// Stack poisoning does not play well with exception handling.
448// When an exception is thrown, we essentially bypass the code
449// that unpoisones the stack. This is why the run-time library has
450// to intercept __cxa_throw (as well as longjmp, etc) and unpoison the entire
451// stack in the interceptor. This however does not work inside the
452// actual function which catches the exception. Most likely because the
453// compiler hoists the load of the shadow value somewhere too high.
454// This causes asan to report a non-existing bug on 453.povray.
455// It sounds like an LLVM bug.
456struct FunctionStackPoisoner : public InstVisitor<FunctionStackPoisoner> {
457 Function &F;
458 AddressSanitizer &ASan;
459 DIBuilder DIB;
460 LLVMContext *C;
461 Type *IntptrTy;
462 Type *IntptrPtrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000463 ShadowMapping Mapping;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000464
465 SmallVector<AllocaInst*, 16> AllocaVec;
466 SmallVector<Instruction*, 8> RetVec;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000467 unsigned StackAlignment;
468
Kostya Serebryany6805de52013-09-10 13:16:56 +0000469 Function *AsanStackMallocFunc[kMaxAsanStackMallocSizeClass + 1],
470 *AsanStackFreeFunc[kMaxAsanStackMallocSizeClass + 1];
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000471 Function *AsanPoisonStackMemoryFunc, *AsanUnpoisonStackMemoryFunc;
472
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000473 // Stores a place and arguments of poisoning/unpoisoning call for alloca.
474 struct AllocaPoisonCall {
475 IntrinsicInst *InsBefore;
Alexey Samsonova788b942013-11-18 14:53:55 +0000476 AllocaInst *AI;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000477 uint64_t Size;
478 bool DoPoison;
479 };
480 SmallVector<AllocaPoisonCall, 8> AllocaPoisonCallVec;
481
482 // Maps Value to an AllocaInst from which the Value is originated.
483 typedef DenseMap<Value*, AllocaInst*> AllocaForValueMapTy;
484 AllocaForValueMapTy AllocaForValue;
485
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000486 FunctionStackPoisoner(Function &F, AddressSanitizer &ASan)
487 : F(F), ASan(ASan), DIB(*F.getParent()), C(ASan.C),
488 IntptrTy(ASan.IntptrTy), IntptrPtrTy(PointerType::get(IntptrTy, 0)),
Alexey Samsonov1345d352013-01-16 13:23:28 +0000489 Mapping(ASan.Mapping),
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000490 StackAlignment(1 << Mapping.Scale) {}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000491
492 bool runOnFunction() {
493 if (!ClStack) return false;
494 // Collect alloca, ret, lifetime instructions etc.
David Blaikieceec2bd2014-04-11 01:50:01 +0000495 for (BasicBlock *BB : depth_first(&F.getEntryBlock()))
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000496 visit(*BB);
David Blaikieceec2bd2014-04-11 01:50:01 +0000497
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000498 if (AllocaVec.empty()) return false;
499
500 initializeCallbacks(*F.getParent());
501
502 poisonStack();
503
504 if (ClDebugStack) {
505 DEBUG(dbgs() << F);
506 }
507 return true;
508 }
509
510 // Finds all static Alloca instructions and puts
511 // poisoned red zones around all of them.
512 // Then unpoison everything back before the function returns.
513 void poisonStack();
514
515 // ----------------------- Visitors.
516 /// \brief Collect all Ret instructions.
517 void visitReturnInst(ReturnInst &RI) {
518 RetVec.push_back(&RI);
519 }
520
521 /// \brief Collect Alloca instructions we want (and can) handle.
522 void visitAllocaInst(AllocaInst &AI) {
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000523 if (!isInterestingAlloca(AI)) return;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000524
525 StackAlignment = std::max(StackAlignment, AI.getAlignment());
526 AllocaVec.push_back(&AI);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000527 }
528
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000529 /// \brief Collect lifetime intrinsic calls to check for use-after-scope
530 /// errors.
531 void visitIntrinsicInst(IntrinsicInst &II) {
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000532 if (!ClCheckLifetime) return;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000533 Intrinsic::ID ID = II.getIntrinsicID();
534 if (ID != Intrinsic::lifetime_start &&
535 ID != Intrinsic::lifetime_end)
536 return;
537 // Found lifetime intrinsic, add ASan instrumentation if necessary.
538 ConstantInt *Size = dyn_cast<ConstantInt>(II.getArgOperand(0));
539 // If size argument is undefined, don't do anything.
540 if (Size->isMinusOne()) return;
541 // Check that size doesn't saturate uint64_t and can
542 // be stored in IntptrTy.
543 const uint64_t SizeValue = Size->getValue().getLimitedValue();
544 if (SizeValue == ~0ULL ||
545 !ConstantInt::isValueValidForType(IntptrTy, SizeValue))
546 return;
547 // Find alloca instruction that corresponds to llvm.lifetime argument.
548 AllocaInst *AI = findAllocaForValue(II.getArgOperand(1));
549 if (!AI) return;
550 bool DoPoison = (ID == Intrinsic::lifetime_end);
Alexey Samsonova788b942013-11-18 14:53:55 +0000551 AllocaPoisonCall APC = {&II, AI, SizeValue, DoPoison};
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000552 AllocaPoisonCallVec.push_back(APC);
553 }
554
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000555 // ---------------------- Helpers.
556 void initializeCallbacks(Module &M);
557
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000558 // Check if we want (and can) handle this alloca.
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000559 bool isInterestingAlloca(AllocaInst &AI) const {
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000560 return (!AI.isArrayAllocation() && AI.isStaticAlloca() &&
561 AI.getAllocatedType()->isSized() &&
562 // alloca() may be called with 0 size, ignore it.
563 getAllocaSizeInBytes(&AI) > 0);
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000564 }
565
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000566 uint64_t getAllocaSizeInBytes(AllocaInst *AI) const {
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000567 Type *Ty = AI->getAllocatedType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000568 uint64_t SizeInBytes = ASan.DL->getTypeAllocSize(Ty);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000569 return SizeInBytes;
570 }
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000571 /// Finds alloca where the value comes from.
572 AllocaInst *findAllocaForValue(Value *V);
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000573 void poisonRedZones(const ArrayRef<uint8_t> ShadowBytes, IRBuilder<> &IRB,
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000574 Value *ShadowBase, bool DoPoison);
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000575 void poisonAlloca(Value *V, uint64_t Size, IRBuilder<> &IRB, bool DoPoison);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +0000576
577 void SetShadowToStackAfterReturnInlined(IRBuilder<> &IRB, Value *ShadowBase,
578 int Size);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000579};
580
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000581} // namespace
582
583char AddressSanitizer::ID = 0;
584INITIALIZE_PASS(AddressSanitizer, "asan",
585 "AddressSanitizer: detects use-after-free and out-of-bounds bugs.",
586 false, false)
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000587FunctionPass *llvm::createAddressSanitizerFunctionPass() {
588 return new AddressSanitizer();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000589}
590
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000591char AddressSanitizerModule::ID = 0;
592INITIALIZE_PASS(AddressSanitizerModule, "asan-module",
593 "AddressSanitizer: detects use-after-free and out-of-bounds bugs."
594 "ModulePass", false, false)
Alexey Samsonovc94285a2014-07-08 00:50:49 +0000595ModulePass *llvm::createAddressSanitizerModulePass() {
596 return new AddressSanitizerModule();
Alexander Potapenkoc94cf8f2012-01-23 11:22:43 +0000597}
598
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000599static size_t TypeSizeToSizeIndex(uint32_t TypeSize) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000600 size_t Res = countTrailingZeros(TypeSize / 8);
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000601 assert(Res < kNumberOfAccessSizes);
602 return Res;
603}
604
Bill Wendling58f8cef2013-08-06 22:52:42 +0000605// \brief Create a constant for Str so that we can pass it to the run-time lib.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000606static GlobalVariable *createPrivateGlobalForString(
607 Module &M, StringRef Str, bool AllowMerging) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000608 Constant *StrConst = ConstantDataArray::getString(M.getContext(), Str);
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000609 // We use private linkage for module-local strings. If they can be merged
610 // with another one, we set the unnamed_addr attribute.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000611 GlobalVariable *GV =
612 new GlobalVariable(M, StrConst->getType(), true,
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000613 GlobalValue::PrivateLinkage, StrConst, kAsanGenPrefix);
614 if (AllowMerging)
615 GV->setUnnamedAddr(true);
Kostya Serebryany10cc12f2013-03-18 09:38:39 +0000616 GV->setAlignment(1); // Strings may not be merged w/o setting align 1.
617 return GV;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000618}
619
620static bool GlobalWasGeneratedByAsan(GlobalVariable *G) {
621 return G->getName().find(kAsanGenPrefix) == 0;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000622}
623
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000624Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) {
625 // Shadow >> scale
Alexey Samsonov1345d352013-01-16 13:23:28 +0000626 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale);
627 if (Mapping.Offset == 0)
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000628 return Shadow;
629 // (Shadow >> scale) | offset
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000630 if (Mapping.OrShadowOffset)
631 return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
632 else
633 return IRB.CreateAdd(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000634}
635
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000636// Instrument memset/memmove/memcpy
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000637void AddressSanitizer::instrumentMemIntrinsic(MemIntrinsic *MI) {
638 IRBuilder<> IRB(MI);
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000639 if (isa<MemTransferInst>(MI)) {
Evgeniy Stepanoved31ca42014-05-14 10:56:19 +0000640 IRB.CreateCall3(
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000641 isa<MemMoveInst>(MI) ? AsanMemmove : AsanMemcpy,
642 IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()),
643 IRB.CreatePointerCast(MI->getOperand(1), IRB.getInt8PtrTy()),
644 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false));
645 } else if (isa<MemSetInst>(MI)) {
Evgeniy Stepanoved31ca42014-05-14 10:56:19 +0000646 IRB.CreateCall3(
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000647 AsanMemset,
648 IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()),
649 IRB.CreateIntCast(MI->getOperand(1), IRB.getInt32Ty(), false),
650 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000651 }
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000652 MI->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000653}
654
Kostya Serebryany90241602012-05-30 09:04:06 +0000655// If I is an interesting memory access, return the PointerOperand
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000656// and set IsWrite/Alignment. Otherwise return NULL.
657static Value *isInterestingMemoryAccess(Instruction *I, bool *IsWrite,
658 unsigned *Alignment) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000659 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000660 if (!ClInstrumentReads) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000661 *IsWrite = false;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000662 *Alignment = LI->getAlignment();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000663 return LI->getPointerOperand();
664 }
Kostya Serebryany90241602012-05-30 09:04:06 +0000665 if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000666 if (!ClInstrumentWrites) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000667 *IsWrite = true;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000668 *Alignment = SI->getAlignment();
Kostya Serebryany90241602012-05-30 09:04:06 +0000669 return SI->getPointerOperand();
670 }
671 if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000672 if (!ClInstrumentAtomics) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000673 *IsWrite = true;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000674 *Alignment = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +0000675 return RMW->getPointerOperand();
676 }
677 if (AtomicCmpXchgInst *XCHG = dyn_cast<AtomicCmpXchgInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000678 if (!ClInstrumentAtomics) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000679 *IsWrite = true;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000680 *Alignment = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +0000681 return XCHG->getPointerOperand();
682 }
Craig Topperf40110f2014-04-25 05:29:35 +0000683 return nullptr;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000684}
685
Kostya Serebryany796f6552014-02-27 12:45:36 +0000686static bool isPointerOperand(Value *V) {
687 return V->getType()->isPointerTy() || isa<PtrToIntInst>(V);
688}
689
690// This is a rough heuristic; it may cause both false positives and
691// false negatives. The proper implementation requires cooperation with
692// the frontend.
693static bool isInterestingPointerComparisonOrSubtraction(Instruction *I) {
694 if (ICmpInst *Cmp = dyn_cast<ICmpInst>(I)) {
695 if (!Cmp->isRelational())
696 return false;
697 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) {
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +0000698 if (BO->getOpcode() != Instruction::Sub)
Kostya Serebryany796f6552014-02-27 12:45:36 +0000699 return false;
700 } else {
701 return false;
702 }
703 if (!isPointerOperand(I->getOperand(0)) ||
704 !isPointerOperand(I->getOperand(1)))
705 return false;
706 return true;
707}
708
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000709bool AddressSanitizer::GlobalIsLinkerInitialized(GlobalVariable *G) {
710 // If a global variable does not have dynamic initialization we don't
711 // have to instrument it. However, if a global does not have initializer
712 // at all, we assume it has dynamic initializer (in other TU).
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000713 return G->hasInitializer() && !GlobalsMD.isDynInit(G);
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000714}
715
Kostya Serebryany796f6552014-02-27 12:45:36 +0000716void
717AddressSanitizer::instrumentPointerComparisonOrSubtraction(Instruction *I) {
718 IRBuilder<> IRB(I);
719 Function *F = isa<ICmpInst>(I) ? AsanPtrCmpFunction : AsanPtrSubFunction;
720 Value *Param[2] = {I->getOperand(0), I->getOperand(1)};
721 for (int i = 0; i < 2; i++) {
722 if (Param[i]->getType()->isPointerTy())
723 Param[i] = IRB.CreatePointerCast(Param[i], IntptrTy);
724 }
725 IRB.CreateCall2(F, Param[0], Param[1]);
726}
727
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000728void AddressSanitizer::instrumentMop(Instruction *I, bool UseCalls) {
Axel Naumann4a127062012-09-17 14:20:57 +0000729 bool IsWrite = false;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000730 unsigned Alignment = 0;
731 Value *Addr = isInterestingMemoryAccess(I, &IsWrite, &Alignment);
Kostya Serebryany90241602012-05-30 09:04:06 +0000732 assert(Addr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000733 if (ClOpt && ClOptGlobals) {
734 if (GlobalVariable *G = dyn_cast<GlobalVariable>(Addr)) {
735 // If initialization order checking is disabled, a simple access to a
736 // dynamically initialized global is always valid.
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000737 if (!ClInitializers || GlobalIsLinkerInitialized(G)) {
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000738 NumOptimizedAccessesToGlobalVar++;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000739 return;
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000740 }
741 }
742 ConstantExpr *CE = dyn_cast<ConstantExpr>(Addr);
743 if (CE && CE->isGEPWithNoNotionalOverIndexing()) {
744 if (GlobalVariable *G = dyn_cast<GlobalVariable>(CE->getOperand(0))) {
745 if (CE->getOperand(1)->isNullValue() && GlobalIsLinkerInitialized(G)) {
746 NumOptimizedAccessesToGlobalArray++;
747 return;
748 }
749 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000750 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000751 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000752
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000753 Type *OrigPtrTy = Addr->getType();
754 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType();
755
756 assert(OrigTy->isSized());
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000757 uint32_t TypeSize = DL->getTypeStoreSizeInBits(OrigTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000758
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000759 assert((TypeSize % 8) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000760
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000761 if (IsWrite)
762 NumInstrumentedWrites++;
763 else
764 NumInstrumentedReads++;
765
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000766 unsigned Granularity = 1 << Mapping.Scale;
767 // Instrument a 1-, 2-, 4-, 8-, or 16- byte access with one check
768 // if the data is properly aligned.
769 if ((TypeSize == 8 || TypeSize == 16 || TypeSize == 32 || TypeSize == 64 ||
770 TypeSize == 128) &&
771 (Alignment >= Granularity || Alignment == 0 || Alignment >= TypeSize / 8))
Craig Topperf40110f2014-04-25 05:29:35 +0000772 return instrumentAddress(I, I, Addr, TypeSize, IsWrite, nullptr, UseCalls);
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000773 // Instrument unusual size or unusual alignment.
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000774 // We can not do it with a single check, so we do 1-byte check for the first
775 // and the last bytes. We call __asan_report_*_n(addr, real_size) to be able
776 // to report the actual access size.
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000777 IRBuilder<> IRB(I);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000778 Value *Size = ConstantInt::get(IntptrTy, TypeSize / 8);
Kostya Serebryanyc9a2c172014-04-22 11:19:45 +0000779 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
780 if (UseCalls) {
Evgeniy Stepanoved31ca42014-05-14 10:56:19 +0000781 IRB.CreateCall2(AsanMemoryAccessCallbackSized[IsWrite], AddrLong, Size);
Kostya Serebryanyc9a2c172014-04-22 11:19:45 +0000782 } else {
783 Value *LastByte = IRB.CreateIntToPtr(
784 IRB.CreateAdd(AddrLong, ConstantInt::get(IntptrTy, TypeSize / 8 - 1)),
785 OrigPtrTy);
786 instrumentAddress(I, I, Addr, 8, IsWrite, Size, false);
787 instrumentAddress(I, I, LastByte, 8, IsWrite, Size, false);
788 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000789}
790
Alexander Potapenko056e27e2012-04-23 10:47:31 +0000791// Validate the result of Module::getOrInsertFunction called for an interface
792// function of AddressSanitizer. If the instrumented module defines a function
793// with the same name, their prototypes must match, otherwise
794// getOrInsertFunction returns a bitcast.
Kostya Serebryany20a79972012-11-22 03:18:50 +0000795static Function *checkInterfaceFunction(Constant *FuncOrBitcast) {
Alexander Potapenko056e27e2012-04-23 10:47:31 +0000796 if (isa<Function>(FuncOrBitcast)) return cast<Function>(FuncOrBitcast);
797 FuncOrBitcast->dump();
798 report_fatal_error("trying to redefine an AddressSanitizer "
799 "interface function");
800}
801
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000802Instruction *AddressSanitizer::generateCrashCode(
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000803 Instruction *InsertBefore, Value *Addr,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000804 bool IsWrite, size_t AccessSizeIndex, Value *SizeArgument) {
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000805 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000806 CallInst *Call = SizeArgument
807 ? IRB.CreateCall2(AsanErrorCallbackSized[IsWrite], Addr, SizeArgument)
808 : IRB.CreateCall(AsanErrorCallback[IsWrite][AccessSizeIndex], Addr);
809
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000810 // We don't do Call->setDoesNotReturn() because the BB already has
811 // UnreachableInst at the end.
812 // This EmptyAsm is required to avoid callback merge.
813 IRB.CreateCall(EmptyAsm);
Kostya Serebryany3411f2e2012-01-06 18:09:21 +0000814 return Call;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000815}
816
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000817Value *AddressSanitizer::createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
Kostya Serebryany874dae62012-07-16 16:15:40 +0000818 Value *ShadowValue,
819 uint32_t TypeSize) {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000820 size_t Granularity = 1 << Mapping.Scale;
Kostya Serebryany874dae62012-07-16 16:15:40 +0000821 // Addr & (Granularity - 1)
822 Value *LastAccessedByte = IRB.CreateAnd(
823 AddrLong, ConstantInt::get(IntptrTy, Granularity - 1));
824 // (Addr & (Granularity - 1)) + size - 1
825 if (TypeSize / 8 > 1)
826 LastAccessedByte = IRB.CreateAdd(
827 LastAccessedByte, ConstantInt::get(IntptrTy, TypeSize / 8 - 1));
828 // (uint8_t) ((Addr & (Granularity-1)) + size - 1)
829 LastAccessedByte = IRB.CreateIntCast(
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000830 LastAccessedByte, ShadowValue->getType(), false);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000831 // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue
832 return IRB.CreateICmpSGE(LastAccessedByte, ShadowValue);
833}
834
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000835void AddressSanitizer::instrumentAddress(Instruction *OrigIns,
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000836 Instruction *InsertBefore, Value *Addr,
837 uint32_t TypeSize, bool IsWrite,
838 Value *SizeArgument, bool UseCalls) {
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000839 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000840 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000841 size_t AccessSizeIndex = TypeSizeToSizeIndex(TypeSize);
842
843 if (UseCalls) {
Kostya Serebryany94f57d192014-04-21 10:28:13 +0000844 IRB.CreateCall(AsanMemoryAccessCallback[IsWrite][AccessSizeIndex],
845 AddrLong);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000846 return;
847 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000848
849 Type *ShadowTy = IntegerType::get(
Alexey Samsonov1345d352013-01-16 13:23:28 +0000850 *C, std::max(8U, TypeSize >> Mapping.Scale));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000851 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0);
852 Value *ShadowPtr = memToShadow(AddrLong, IRB);
853 Value *CmpVal = Constant::getNullValue(ShadowTy);
854 Value *ShadowValue = IRB.CreateLoad(
855 IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy));
856
857 Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal);
Alexey Samsonov1345d352013-01-16 13:23:28 +0000858 size_t Granularity = 1 << Mapping.Scale;
Craig Topperf40110f2014-04-25 05:29:35 +0000859 TerminatorInst *CrashTerm = nullptr;
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000860
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000861 if (ClAlwaysSlowPath || (TypeSize < 8 * Granularity)) {
Evgeniy Stepanov8eb77d82012-10-19 10:48:31 +0000862 TerminatorInst *CheckTerm =
Evgeniy Stepanova9164e92013-12-19 13:29:56 +0000863 SplitBlockAndInsertIfThen(Cmp, InsertBefore, false);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000864 assert(dyn_cast<BranchInst>(CheckTerm)->isUnconditional());
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000865 BasicBlock *NextBB = CheckTerm->getSuccessor(0);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000866 IRB.SetInsertPoint(CheckTerm);
867 Value *Cmp2 = createSlowPathCmp(IRB, AddrLong, ShadowValue, TypeSize);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000868 BasicBlock *CrashBlock =
869 BasicBlock::Create(*C, "", NextBB->getParent(), NextBB);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000870 CrashTerm = new UnreachableInst(*C, CrashBlock);
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000871 BranchInst *NewTerm = BranchInst::Create(CrashBlock, NextBB, Cmp2);
872 ReplaceInstWithInst(CheckTerm, NewTerm);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000873 } else {
Evgeniy Stepanova9164e92013-12-19 13:29:56 +0000874 CrashTerm = SplitBlockAndInsertIfThen(Cmp, InsertBefore, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000875 }
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000876
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000877 Instruction *Crash = generateCrashCode(
878 CrashTerm, AddrLong, IsWrite, AccessSizeIndex, SizeArgument);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000879 Crash->setDebugLoc(OrigIns->getDebugLoc());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000880}
881
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000882void AddressSanitizerModule::poisonOneInitializer(Function &GlobalInit,
883 GlobalValue *ModuleName) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000884 // Set up the arguments to our poison/unpoison functions.
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000885 IRBuilder<> IRB(GlobalInit.begin()->getFirstInsertionPt());
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000886
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000887 // Add a call to poison all external globals before the given function starts.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000888 Value *ModuleNameAddr = ConstantExpr::getPointerCast(ModuleName, IntptrTy);
889 IRB.CreateCall(AsanPoisonGlobals, ModuleNameAddr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000890
891 // Add calls to unpoison all globals before each return instruction.
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000892 for (auto &BB : GlobalInit.getBasicBlockList())
893 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB.getTerminator()))
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000894 CallInst::Create(AsanUnpoisonGlobals, "", RI);
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000895}
896
897void AddressSanitizerModule::createInitializerPoisonCalls(
898 Module &M, GlobalValue *ModuleName) {
899 GlobalVariable *GV = M.getGlobalVariable("llvm.global_ctors");
900
901 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
902 for (Use &OP : CA->operands()) {
903 if (isa<ConstantAggregateZero>(OP))
904 continue;
905 ConstantStruct *CS = cast<ConstantStruct>(OP);
906
907 // Must have a function or null ptr.
908 // (CS->getOperand(0) is the init priority.)
909 if (Function* F = dyn_cast<Function>(CS->getOperand(1))) {
910 if (F->getName() != kAsanModuleCtorName)
911 poisonOneInitializer(*F, ModuleName);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000912 }
913 }
914}
915
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000916bool AddressSanitizerModule::ShouldInstrumentGlobal(GlobalVariable *G) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000917 Type *Ty = cast<PointerType>(G->getType())->getElementType();
Kostya Serebryany20343352012-10-17 13:40:06 +0000918 DEBUG(dbgs() << "GLOBAL: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000919
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000920 if (GlobalsMD.isBlacklisted(G)) return false;
921 if (GlobalsMD.isSourceLocationGlobal(G)) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000922 if (!Ty->isSized()) return false;
923 if (!G->hasInitializer()) return false;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000924 if (GlobalWasGeneratedByAsan(G)) return false; // Our own global.
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000925 // Touch only those globals that will not be defined in other modules.
Timur Iskhodzhanove40fb372014-07-09 08:35:33 +0000926 // Don't handle ODR linkage types and COMDATs since other modules may be built
927 // without ASan.
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000928 if (G->getLinkage() != GlobalVariable::ExternalLinkage &&
929 G->getLinkage() != GlobalVariable::PrivateLinkage &&
930 G->getLinkage() != GlobalVariable::InternalLinkage)
931 return false;
Timur Iskhodzhanove40fb372014-07-09 08:35:33 +0000932 if (G->hasComdat())
933 return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000934 // Two problems with thread-locals:
935 // - The address of the main thread's copy can't be computed at link-time.
936 // - Need to poison all copies, not just the main thread's one.
937 if (G->isThreadLocal())
938 return false;
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000939 // For now, just ignore this Global if the alignment is large.
940 if (G->getAlignment() > MinRedzoneSizeForGlobal()) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000941
942 // Ignore all the globals with the names starting with "\01L_OBJC_".
943 // Many of those are put into the .cstring section. The linker compresses
944 // that section by removing the spare \0s after the string terminator, so
945 // our redzones get broken.
946 if ((G->getName().find("\01L_OBJC_") == 0) ||
947 (G->getName().find("\01l_OBJC_") == 0)) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000948 DEBUG(dbgs() << "Ignoring \\01L_OBJC_* global: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000949 return false;
950 }
951
952 if (G->hasSection()) {
953 StringRef Section(G->getSection());
954 // Ignore the globals from the __OBJC section. The ObjC runtime assumes
955 // those conform to /usr/lib/objc/runtime.h, so we can't add redzones to
956 // them.
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000957 if (Section.startswith("__OBJC,") ||
958 Section.startswith("__DATA, __objc_")) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000959 DEBUG(dbgs() << "Ignoring ObjC runtime global: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000960 return false;
961 }
962 // See http://code.google.com/p/address-sanitizer/issues/detail?id=32
963 // Constant CFString instances are compiled in the following way:
964 // -- the string buffer is emitted into
965 // __TEXT,__cstring,cstring_literals
966 // -- the constant NSConstantString structure referencing that buffer
967 // is placed into __DATA,__cfstring
968 // Therefore there's no point in placing redzones into __DATA,__cfstring.
969 // Moreover, it causes the linker to crash on OS X 10.7
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000970 if (Section.startswith("__DATA,__cfstring")) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000971 DEBUG(dbgs() << "Ignoring CFString: " << *G << "\n");
972 return false;
973 }
974 // The linker merges the contents of cstring_literals and removes the
975 // trailing zeroes.
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000976 if (Section.startswith("__TEXT,__cstring,cstring_literals")) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000977 DEBUG(dbgs() << "Ignoring a cstring literal: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000978 return false;
979 }
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000980
981 // Callbacks put into the CRT initializer/terminator sections
982 // should not be instrumented.
983 // See https://code.google.com/p/address-sanitizer/issues/detail?id=305
984 // and http://msdn.microsoft.com/en-US/en-en/library/bb918180(v=vs.120).aspx
985 if (Section.startswith(".CRT")) {
986 DEBUG(dbgs() << "Ignoring a global initializer callback: " << *G << "\n");
987 return false;
988 }
989
Alexander Potapenko04969e82014-03-20 10:48:34 +0000990 // Globals from llvm.metadata aren't emitted, do not instrument them.
991 if (Section == "llvm.metadata") return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000992 }
993
994 return true;
995}
996
Alexey Samsonov788381b2012-12-25 12:28:20 +0000997void AddressSanitizerModule::initializeCallbacks(Module &M) {
998 IRBuilder<> IRB(*C);
999 // Declare our poisoning and unpoisoning functions.
1000 AsanPoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001001 kAsanPoisonGlobalsName, IRB.getVoidTy(), IntptrTy, NULL));
Alexey Samsonov788381b2012-12-25 12:28:20 +00001002 AsanPoisonGlobals->setLinkage(Function::ExternalLinkage);
1003 AsanUnpoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
1004 kAsanUnpoisonGlobalsName, IRB.getVoidTy(), NULL));
1005 AsanUnpoisonGlobals->setLinkage(Function::ExternalLinkage);
1006 // Declare functions that register/unregister globals.
1007 AsanRegisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
1008 kAsanRegisterGlobalsName, IRB.getVoidTy(),
1009 IntptrTy, IntptrTy, NULL));
1010 AsanRegisterGlobals->setLinkage(Function::ExternalLinkage);
1011 AsanUnregisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
1012 kAsanUnregisterGlobalsName,
1013 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1014 AsanUnregisterGlobals->setLinkage(Function::ExternalLinkage);
Evgeniy Stepanov47b1a952014-05-27 12:39:31 +00001015 AsanCovModuleInit = checkInterfaceFunction(M.getOrInsertFunction(
1016 kAsanCovModuleInitName,
1017 IRB.getVoidTy(), IntptrTy, NULL));
1018 AsanCovModuleInit->setLinkage(Function::ExternalLinkage);
Alexey Samsonov788381b2012-12-25 12:28:20 +00001019}
1020
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001021// This function replaces all global variables with new variables that have
1022// trailing redzones. It also creates a function that poisons
1023// redzones and inserts this function into llvm.global_ctors.
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001024bool AddressSanitizerModule::InstrumentGlobals(IRBuilder<> &IRB, Module &M) {
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001025 GlobalsMD.init(M);
Kostya Serebryany20a79972012-11-22 03:18:50 +00001026
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001027 SmallVector<GlobalVariable *, 16> GlobalsToChange;
1028
Alexey Samsonova02e6642014-05-29 18:40:48 +00001029 for (auto &G : M.globals()) {
1030 if (ShouldInstrumentGlobal(&G))
1031 GlobalsToChange.push_back(&G);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001032 }
1033
1034 size_t n = GlobalsToChange.size();
1035 if (n == 0) return false;
1036
1037 // A global is described by a structure
1038 // size_t beg;
1039 // size_t size;
1040 // size_t size_with_redzone;
1041 // const char *name;
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001042 // const char *module_name;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001043 // size_t has_dynamic_init;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001044 // void *source_location;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001045 // We initialize an array of such structures and pass it to a run-time call.
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001046 StructType *GlobalStructTy =
1047 StructType::get(IntptrTy, IntptrTy, IntptrTy, IntptrTy, IntptrTy,
1048 IntptrTy, IntptrTy, NULL);
Rafael Espindola44fee4e2013-10-01 13:32:03 +00001049 SmallVector<Constant *, 16> Initializers(n);
Kostya Serebryany20a79972012-11-22 03:18:50 +00001050
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001051 bool HasDynamicallyInitializedGlobals = false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001052
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001053 // We shouldn't merge same module names, as this string serves as unique
1054 // module ID in runtime.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001055 GlobalVariable *ModuleName = createPrivateGlobalForString(
1056 M, M.getModuleIdentifier(), /*AllowMerging*/false);
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001057
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001058 for (size_t i = 0; i < n; i++) {
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001059 static const uint64_t kMaxGlobalRedzone = 1 << 18;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001060 GlobalVariable *G = GlobalsToChange[i];
1061 PointerType *PtrTy = cast<PointerType>(G->getType());
1062 Type *Ty = PtrTy->getElementType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001063 uint64_t SizeInBytes = DL->getTypeAllocSize(Ty);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001064 uint64_t MinRZ = MinRedzoneSizeForGlobal();
Kostya Serebryany87191f62013-01-24 10:35:40 +00001065 // MinRZ <= RZ <= kMaxGlobalRedzone
1066 // and trying to make RZ to be ~ 1/4 of SizeInBytes.
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001067 uint64_t RZ = std::max(MinRZ,
Kostya Serebryany87191f62013-01-24 10:35:40 +00001068 std::min(kMaxGlobalRedzone,
1069 (SizeInBytes / MinRZ / 4) * MinRZ));
1070 uint64_t RightRedzoneSize = RZ;
1071 // Round up to MinRZ
1072 if (SizeInBytes % MinRZ)
1073 RightRedzoneSize += MinRZ - (SizeInBytes % MinRZ);
1074 assert(((RightRedzoneSize + SizeInBytes) % MinRZ) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001075 Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize);
1076
1077 StructType *NewTy = StructType::get(Ty, RightRedZoneTy, NULL);
1078 Constant *NewInitializer = ConstantStruct::get(
1079 NewTy, G->getInitializer(),
1080 Constant::getNullValue(RightRedZoneTy), NULL);
1081
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001082 GlobalVariable *Name =
1083 createPrivateGlobalForString(M, G->getName(), /*AllowMerging*/true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001084
1085 // Create a new global variable with enough space for a redzone.
Bill Wendling58f8cef2013-08-06 22:52:42 +00001086 GlobalValue::LinkageTypes Linkage = G->getLinkage();
1087 if (G->isConstant() && Linkage == GlobalValue::PrivateLinkage)
1088 Linkage = GlobalValue::InternalLinkage;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001089 GlobalVariable *NewGlobal = new GlobalVariable(
Bill Wendling58f8cef2013-08-06 22:52:42 +00001090 M, NewTy, G->isConstant(), Linkage,
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001091 NewInitializer, "", G, G->getThreadLocalMode());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001092 NewGlobal->copyAttributesFrom(G);
Kostya Serebryany87191f62013-01-24 10:35:40 +00001093 NewGlobal->setAlignment(MinRZ);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001094
1095 Value *Indices2[2];
1096 Indices2[0] = IRB.getInt32(0);
1097 Indices2[1] = IRB.getInt32(0);
1098
1099 G->replaceAllUsesWith(
Kostya Serebryany7471d132012-01-28 04:27:16 +00001100 ConstantExpr::getGetElementPtr(NewGlobal, Indices2, true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001101 NewGlobal->takeName(G);
1102 G->eraseFromParent();
1103
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001104 bool GlobalHasDynamicInitializer = GlobalsMD.isDynInit(G);
1105 GlobalVariable *SourceLoc = GlobalsMD.getSourceLocation(G);
1106
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001107 Initializers[i] = ConstantStruct::get(
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001108 GlobalStructTy, ConstantExpr::getPointerCast(NewGlobal, IntptrTy),
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001109 ConstantInt::get(IntptrTy, SizeInBytes),
1110 ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize),
1111 ConstantExpr::getPointerCast(Name, IntptrTy),
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001112 ConstantExpr::getPointerCast(ModuleName, IntptrTy),
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001113 ConstantInt::get(IntptrTy, GlobalHasDynamicInitializer),
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001114 SourceLoc ? ConstantExpr::getPointerCast(SourceLoc, IntptrTy)
1115 : ConstantInt::get(IntptrTy, 0),
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001116 NULL);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001117
Alexey Samsonove595e1a2014-06-13 17:53:44 +00001118 if (ClInitializers && GlobalHasDynamicInitializer)
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001119 HasDynamicallyInitializedGlobals = true;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001120
Kostya Serebryany20343352012-10-17 13:40:06 +00001121 DEBUG(dbgs() << "NEW GLOBAL: " << *NewGlobal << "\n");
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001122 }
1123
1124 ArrayType *ArrayOfGlobalStructTy = ArrayType::get(GlobalStructTy, n);
1125 GlobalVariable *AllGlobals = new GlobalVariable(
Bill Wendling58f8cef2013-08-06 22:52:42 +00001126 M, ArrayOfGlobalStructTy, false, GlobalVariable::InternalLinkage,
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001127 ConstantArray::get(ArrayOfGlobalStructTy, Initializers), "");
1128
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001129 // Create calls for poisoning before initializers run and unpoisoning after.
Alexey Samsonove595e1a2014-06-13 17:53:44 +00001130 if (HasDynamicallyInitializedGlobals)
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001131 createInitializerPoisonCalls(M, ModuleName);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001132 IRB.CreateCall2(AsanRegisterGlobals,
1133 IRB.CreatePointerCast(AllGlobals, IntptrTy),
1134 ConstantInt::get(IntptrTy, n));
1135
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001136 // We also need to unregister globals at the end, e.g. when a shared library
1137 // gets closed.
1138 Function *AsanDtorFunction = Function::Create(
1139 FunctionType::get(Type::getVoidTy(*C), false),
1140 GlobalValue::InternalLinkage, kAsanModuleDtorName, &M);
1141 BasicBlock *AsanDtorBB = BasicBlock::Create(*C, "", AsanDtorFunction);
1142 IRBuilder<> IRB_Dtor(ReturnInst::Create(*C, AsanDtorBB));
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001143 IRB_Dtor.CreateCall2(AsanUnregisterGlobals,
1144 IRB.CreatePointerCast(AllGlobals, IntptrTy),
1145 ConstantInt::get(IntptrTy, n));
Alexey Samsonov1f647502014-05-29 01:10:14 +00001146 appendToGlobalDtors(M, AsanDtorFunction, kAsanCtorAndDtorPriority);
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001147
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001148 DEBUG(dbgs() << M);
1149 return true;
1150}
1151
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001152bool AddressSanitizerModule::runOnModule(Module &M) {
1153 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
1154 if (!DLP)
1155 return false;
1156 DL = &DLP->getDataLayout();
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001157 C = &(M.getContext());
1158 int LongSize = DL->getPointerSizeInBits();
1159 IntptrTy = Type::getIntNTy(*C, LongSize);
1160 Mapping = getShadowMapping(M, LongSize);
1161 initializeCallbacks(M);
1162
1163 bool Changed = false;
1164
1165 Function *CtorFunc = M.getFunction(kAsanModuleCtorName);
1166 assert(CtorFunc);
1167 IRBuilder<> IRB(CtorFunc->getEntryBlock().getTerminator());
1168
1169 if (ClCoverage > 0) {
1170 Function *CovFunc = M.getFunction(kAsanCovName);
1171 int nCov = CovFunc ? CovFunc->getNumUses() : 0;
1172 IRB.CreateCall(AsanCovModuleInit, ConstantInt::get(IntptrTy, nCov));
1173 Changed = true;
1174 }
1175
Alexey Samsonovc94285a2014-07-08 00:50:49 +00001176 if (ClGlobals)
1177 Changed |= InstrumentGlobals(IRB, M);
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001178
1179 return Changed;
1180}
1181
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001182void AddressSanitizer::initializeCallbacks(Module &M) {
1183 IRBuilder<> IRB(*C);
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001184 // Create __asan_report* callbacks.
1185 for (size_t AccessIsWrite = 0; AccessIsWrite <= 1; AccessIsWrite++) {
1186 for (size_t AccessSizeIndex = 0; AccessSizeIndex < kNumberOfAccessSizes;
1187 AccessSizeIndex++) {
1188 // IsWrite and TypeSize are encoded in the function name.
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001189 std::string Suffix =
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001190 (AccessIsWrite ? "store" : "load") + itostr(1 << AccessSizeIndex);
Kostya Serebryany157a5152012-11-07 12:42:18 +00001191 AsanErrorCallback[AccessIsWrite][AccessSizeIndex] =
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001192 checkInterfaceFunction(
1193 M.getOrInsertFunction(kAsanReportErrorTemplate + Suffix,
1194 IRB.getVoidTy(), IntptrTy, NULL));
1195 AsanMemoryAccessCallback[AccessIsWrite][AccessSizeIndex] =
1196 checkInterfaceFunction(
1197 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + Suffix,
1198 IRB.getVoidTy(), IntptrTy, NULL));
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001199 }
1200 }
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +00001201 AsanErrorCallbackSized[0] = checkInterfaceFunction(M.getOrInsertFunction(
1202 kAsanReportLoadN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1203 AsanErrorCallbackSized[1] = checkInterfaceFunction(M.getOrInsertFunction(
1204 kAsanReportStoreN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001205
Kostya Serebryany86332c02014-04-21 07:10:43 +00001206 AsanMemoryAccessCallbackSized[0] = checkInterfaceFunction(
1207 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + "loadN",
1208 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1209 AsanMemoryAccessCallbackSized[1] = checkInterfaceFunction(
1210 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + "storeN",
1211 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1212
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00001213 AsanMemmove = checkInterfaceFunction(M.getOrInsertFunction(
1214 ClMemoryAccessCallbackPrefix + "memmove", IRB.getInt8PtrTy(),
1215 IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IntptrTy, NULL));
1216 AsanMemcpy = checkInterfaceFunction(M.getOrInsertFunction(
1217 ClMemoryAccessCallbackPrefix + "memcpy", IRB.getInt8PtrTy(),
1218 IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IntptrTy, NULL));
1219 AsanMemset = checkInterfaceFunction(M.getOrInsertFunction(
1220 ClMemoryAccessCallbackPrefix + "memset", IRB.getInt8PtrTy(),
1221 IRB.getInt8PtrTy(), IRB.getInt32Ty(), IntptrTy, NULL));
1222
1223 AsanHandleNoReturnFunc = checkInterfaceFunction(
1224 M.getOrInsertFunction(kAsanHandleNoReturnName, IRB.getVoidTy(), NULL));
Bob Wilsonda4147c2013-11-15 07:16:09 +00001225 AsanCovFunction = checkInterfaceFunction(M.getOrInsertFunction(
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001226 kAsanCovName, IRB.getVoidTy(), NULL));
Kostya Serebryany796f6552014-02-27 12:45:36 +00001227 AsanPtrCmpFunction = checkInterfaceFunction(M.getOrInsertFunction(
1228 kAsanPtrCmp, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1229 AsanPtrSubFunction = checkInterfaceFunction(M.getOrInsertFunction(
1230 kAsanPtrSub, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
Kostya Serebryanyf02c6062012-07-20 09:54:50 +00001231 // We insert an empty inline asm after __asan_report* to avoid callback merge.
1232 EmptyAsm = InlineAsm::get(FunctionType::get(IRB.getVoidTy(), false),
1233 StringRef(""), StringRef(""),
1234 /*hasSideEffects=*/true);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001235}
1236
1237// virtual
1238bool AddressSanitizer::doInitialization(Module &M) {
1239 // Initialize the private fields. No one has accessed them before.
Rafael Espindola93512512014-02-25 17:30:31 +00001240 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
1241 if (!DLP)
Evgeniy Stepanov119cb2e2014-04-23 12:51:32 +00001242 report_fatal_error("data layout missing");
Rafael Espindola93512512014-02-25 17:30:31 +00001243 DL = &DLP->getDataLayout();
1244
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001245 GlobalsMD.init(M);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001246
1247 C = &(M.getContext());
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001248 LongSize = DL->getPointerSizeInBits();
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001249 IntptrTy = Type::getIntNTy(*C, LongSize);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001250
1251 AsanCtorFunction = Function::Create(
1252 FunctionType::get(Type::getVoidTy(*C), false),
1253 GlobalValue::InternalLinkage, kAsanModuleCtorName, &M);
1254 BasicBlock *AsanCtorBB = BasicBlock::Create(*C, "", AsanCtorFunction);
1255 // call __asan_init in the module ctor.
1256 IRBuilder<> IRB(ReturnInst::Create(*C, AsanCtorBB));
1257 AsanInitFunction = checkInterfaceFunction(
1258 M.getOrInsertFunction(kAsanInitName, IRB.getVoidTy(), NULL));
1259 AsanInitFunction->setLinkage(Function::ExternalLinkage);
1260 IRB.CreateCall(AsanInitFunction);
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001261
Evgeniy Stepanov13665362014-01-16 10:19:12 +00001262 Mapping = getShadowMapping(M, LongSize);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001263
Alexey Samsonov1f647502014-05-29 01:10:14 +00001264 appendToGlobalCtors(M, AsanCtorFunction, kAsanCtorAndDtorPriority);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001265 return true;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001266}
1267
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001268bool AddressSanitizer::maybeInsertAsanInitAtFunctionEntry(Function &F) {
1269 // For each NSObject descendant having a +load method, this method is invoked
1270 // by the ObjC runtime before any of the static constructors is called.
1271 // Therefore we need to instrument such methods with a call to __asan_init
1272 // at the beginning in order to initialize our runtime before any access to
1273 // the shadow memory.
1274 // We cannot just ignore these methods, because they may call other
1275 // instrumented functions.
1276 if (F.getName().find(" load]") != std::string::npos) {
1277 IRBuilder<> IRB(F.begin()->begin());
1278 IRB.CreateCall(AsanInitFunction);
1279 return true;
1280 }
1281 return false;
1282}
1283
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001284void AddressSanitizer::InjectCoverageAtBlock(Function &F, BasicBlock &BB) {
1285 BasicBlock::iterator IP = BB.getFirstInsertionPt(), BE = BB.end();
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001286 // Skip static allocas at the top of the entry block so they don't become
1287 // dynamic when we split the block. If we used our optimized stack layout,
1288 // then there will only be one alloca and it will come first.
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001289 for (; IP != BE; ++IP) {
1290 AllocaInst *AI = dyn_cast<AllocaInst>(IP);
1291 if (!AI || !AI->isStaticAlloca())
1292 break;
1293 }
1294
Evgeniy Stepanov493df132014-06-05 14:34:45 +00001295 DebugLoc EntryLoc = IP->getDebugLoc().getFnDebugLoc(*C);
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001296 IRBuilder<> IRB(IP);
Evgeniy Stepanov493df132014-06-05 14:34:45 +00001297 IRB.SetCurrentDebugLocation(EntryLoc);
Bob Wilsonda4147c2013-11-15 07:16:09 +00001298 Type *Int8Ty = IRB.getInt8Ty();
1299 GlobalVariable *Guard = new GlobalVariable(
Kostya Serebryany0604c622013-11-15 09:52:05 +00001300 *F.getParent(), Int8Ty, false, GlobalValue::PrivateLinkage,
Bob Wilsonda4147c2013-11-15 07:16:09 +00001301 Constant::getNullValue(Int8Ty), "__asan_gen_cov_" + F.getName());
1302 LoadInst *Load = IRB.CreateLoad(Guard);
1303 Load->setAtomic(Monotonic);
1304 Load->setAlignment(1);
1305 Value *Cmp = IRB.CreateICmpEQ(Constant::getNullValue(Int8Ty), Load);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001306 Instruction *Ins = SplitBlockAndInsertIfThen(
1307 Cmp, IP, false, MDBuilder(*C).createBranchWeights(1, 100000));
Bob Wilsonda4147c2013-11-15 07:16:09 +00001308 IRB.SetInsertPoint(Ins);
Evgeniy Stepanov493df132014-06-05 14:34:45 +00001309 IRB.SetCurrentDebugLocation(EntryLoc);
Bob Wilsonda4147c2013-11-15 07:16:09 +00001310 // We pass &F to __sanitizer_cov. We could avoid this and rely on
1311 // GET_CALLER_PC, but having the PC of the first instruction is just nice.
Evgeniy Stepanov493df132014-06-05 14:34:45 +00001312 IRB.CreateCall(AsanCovFunction);
Bob Wilsonda4147c2013-11-15 07:16:09 +00001313 StoreInst *Store = IRB.CreateStore(ConstantInt::get(Int8Ty, 1), Guard);
1314 Store->setAtomic(Monotonic);
1315 Store->setAlignment(1);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001316}
1317
1318// Poor man's coverage that works with ASan.
1319// We create a Guard boolean variable with the same linkage
1320// as the function and inject this code into the entry block (-asan-coverage=1)
1321// or all blocks (-asan-coverage=2):
1322// if (*Guard) {
1323// __sanitizer_cov(&F);
1324// *Guard = 1;
1325// }
1326// The accesses to Guard are atomic. The rest of the logic is
1327// in __sanitizer_cov (it's fine to call it more than once).
1328//
1329// This coverage implementation provides very limited data:
1330// it only tells if a given function (block) was ever executed.
1331// No counters, no per-edge data.
1332// But for many use cases this is what we need and the added slowdown
1333// is negligible. This simple implementation will probably be obsoleted
1334// by the upcoming Clang-based coverage implementation.
1335// By having it here and now we hope to
1336// a) get the functionality to users earlier and
1337// b) collect usage statistics to help improve Clang coverage design.
1338bool AddressSanitizer::InjectCoverage(Function &F,
1339 const ArrayRef<BasicBlock *> AllBlocks) {
1340 if (!ClCoverage) return false;
1341
Kostya Serebryany22e88102014-04-18 08:02:42 +00001342 if (ClCoverage == 1 ||
1343 (unsigned)ClCoverageBlockThreshold < AllBlocks.size()) {
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001344 InjectCoverageAtBlock(F, F.getEntryBlock());
1345 } else {
Alexey Samsonova02e6642014-05-29 18:40:48 +00001346 for (auto BB : AllBlocks)
1347 InjectCoverageAtBlock(F, *BB);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001348 }
Bob Wilsonda4147c2013-11-15 07:16:09 +00001349 return true;
1350}
1351
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001352bool AddressSanitizer::runOnFunction(Function &F) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001353 if (&F == AsanCtorFunction) return false;
Kostya Serebryany6b5b58d2013-03-18 07:33:49 +00001354 if (F.getLinkage() == GlobalValue::AvailableExternallyLinkage) return false;
Kostya Serebryany20343352012-10-17 13:40:06 +00001355 DEBUG(dbgs() << "ASAN instrumenting:\n" << F << "\n");
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001356 initializeCallbacks(*F.getParent());
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001357
Kostya Serebryanycf880b92013-02-26 06:58:09 +00001358 // If needed, insert __asan_init before checking for SanitizeAddress attr.
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001359 maybeInsertAsanInitAtFunctionEntry(F);
1360
Alexey Samsonov6d8bab82014-06-02 18:08:27 +00001361 if (!F.hasFnAttribute(Attribute::SanitizeAddress))
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001362 return false;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001363
1364 if (!ClDebugFunc.empty() && ClDebugFunc != F.getName())
1365 return false;
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001366
1367 // We want to instrument every address only once per basic block (unless there
1368 // are calls between uses).
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001369 SmallSet<Value*, 16> TempsToInstrument;
1370 SmallVector<Instruction*, 16> ToInstrument;
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001371 SmallVector<Instruction*, 8> NoReturnCalls;
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001372 SmallVector<BasicBlock*, 16> AllBlocks;
Kostya Serebryany796f6552014-02-27 12:45:36 +00001373 SmallVector<Instruction*, 16> PointerComparisonsOrSubtracts;
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001374 int NumAllocas = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +00001375 bool IsWrite;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00001376 unsigned Alignment;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001377
1378 // Fill the set of memory operations to instrument.
Alexey Samsonova02e6642014-05-29 18:40:48 +00001379 for (auto &BB : F) {
1380 AllBlocks.push_back(&BB);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001381 TempsToInstrument.clear();
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001382 int NumInsnsPerBB = 0;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001383 for (auto &Inst : BB) {
1384 if (LooksLikeCodeInBug11395(&Inst)) return false;
1385 if (Value *Addr =
1386 isInterestingMemoryAccess(&Inst, &IsWrite, &Alignment)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001387 if (ClOpt && ClOptSameTemp) {
1388 if (!TempsToInstrument.insert(Addr))
1389 continue; // We've seen this temp in the current BB.
1390 }
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +00001391 } else if (ClInvalidPointerPairs &&
Alexey Samsonova02e6642014-05-29 18:40:48 +00001392 isInterestingPointerComparisonOrSubtraction(&Inst)) {
1393 PointerComparisonsOrSubtracts.push_back(&Inst);
Kostya Serebryany796f6552014-02-27 12:45:36 +00001394 continue;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001395 } else if (isa<MemIntrinsic>(Inst)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001396 // ok, take it.
1397 } else {
Alexey Samsonova02e6642014-05-29 18:40:48 +00001398 if (isa<AllocaInst>(Inst))
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001399 NumAllocas++;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001400 CallSite CS(&Inst);
Kostya Serebryany699ac282013-02-20 12:35:15 +00001401 if (CS) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001402 // A call inside BB.
1403 TempsToInstrument.clear();
Kostya Serebryany699ac282013-02-20 12:35:15 +00001404 if (CS.doesNotReturn())
1405 NoReturnCalls.push_back(CS.getInstruction());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001406 }
1407 continue;
1408 }
Alexey Samsonova02e6642014-05-29 18:40:48 +00001409 ToInstrument.push_back(&Inst);
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001410 NumInsnsPerBB++;
1411 if (NumInsnsPerBB >= ClMaxInsnsToInstrumentPerBB)
1412 break;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001413 }
1414 }
1415
Craig Topperf40110f2014-04-25 05:29:35 +00001416 Function *UninstrumentedDuplicate = nullptr;
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001417 bool LikelyToInstrument =
1418 !NoReturnCalls.empty() || !ToInstrument.empty() || (NumAllocas > 0);
1419 if (ClKeepUninstrumented && LikelyToInstrument) {
1420 ValueToValueMapTy VMap;
1421 UninstrumentedDuplicate = CloneFunction(&F, VMap, false);
1422 UninstrumentedDuplicate->removeFnAttr(Attribute::SanitizeAddress);
1423 UninstrumentedDuplicate->setName("NOASAN_" + F.getName());
1424 F.getParent()->getFunctionList().push_back(UninstrumentedDuplicate);
1425 }
1426
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001427 bool UseCalls = false;
1428 if (ClInstrumentationWithCallsThreshold >= 0 &&
1429 ToInstrument.size() > (unsigned)ClInstrumentationWithCallsThreshold)
1430 UseCalls = true;
1431
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001432 // Instrument.
1433 int NumInstrumented = 0;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001434 for (auto Inst : ToInstrument) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001435 if (ClDebugMin < 0 || ClDebugMax < 0 ||
1436 (NumInstrumented >= ClDebugMin && NumInstrumented <= ClDebugMax)) {
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00001437 if (isInterestingMemoryAccess(Inst, &IsWrite, &Alignment))
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001438 instrumentMop(Inst, UseCalls);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001439 else
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00001440 instrumentMemIntrinsic(cast<MemIntrinsic>(Inst));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001441 }
1442 NumInstrumented++;
1443 }
1444
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001445 FunctionStackPoisoner FSP(F, *this);
1446 bool ChangedStack = FSP.runOnFunction();
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001447
1448 // We must unpoison the stack before every NoReturn call (throw, _exit, etc).
1449 // See e.g. http://code.google.com/p/address-sanitizer/issues/detail?id=37
Alexey Samsonova02e6642014-05-29 18:40:48 +00001450 for (auto CI : NoReturnCalls) {
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001451 IRBuilder<> IRB(CI);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001452 IRB.CreateCall(AsanHandleNoReturnFunc);
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001453 }
1454
Alexey Samsonova02e6642014-05-29 18:40:48 +00001455 for (auto Inst : PointerComparisonsOrSubtracts) {
1456 instrumentPointerComparisonOrSubtraction(Inst);
Kostya Serebryany796f6552014-02-27 12:45:36 +00001457 NumInstrumented++;
1458 }
1459
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001460 bool res = NumInstrumented > 0 || ChangedStack || !NoReturnCalls.empty();
Bob Wilsonda4147c2013-11-15 07:16:09 +00001461
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001462 if (InjectCoverage(F, AllBlocks))
Bob Wilsonda4147c2013-11-15 07:16:09 +00001463 res = true;
1464
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001465 DEBUG(dbgs() << "ASAN done instrumenting: " << res << " " << F << "\n");
1466
1467 if (ClKeepUninstrumented) {
1468 if (!res) {
1469 // No instrumentation is done, no need for the duplicate.
1470 if (UninstrumentedDuplicate)
1471 UninstrumentedDuplicate->eraseFromParent();
1472 } else {
1473 // The function was instrumented. We must have the duplicate.
1474 assert(UninstrumentedDuplicate);
1475 UninstrumentedDuplicate->setSection("NOASAN");
1476 assert(!F.hasSection());
1477 F.setSection("ASAN");
1478 }
1479 }
1480
1481 return res;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001482}
1483
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001484// Workaround for bug 11395: we don't want to instrument stack in functions
1485// with large assembly blobs (32-bit only), otherwise reg alloc may crash.
1486// FIXME: remove once the bug 11395 is fixed.
1487bool AddressSanitizer::LooksLikeCodeInBug11395(Instruction *I) {
1488 if (LongSize != 32) return false;
1489 CallInst *CI = dyn_cast<CallInst>(I);
1490 if (!CI || !CI->isInlineAsm()) return false;
1491 if (CI->getNumArgOperands() <= 5) return false;
1492 // We have inline assembly with quite a few arguments.
1493 return true;
1494}
1495
1496void FunctionStackPoisoner::initializeCallbacks(Module &M) {
1497 IRBuilder<> IRB(*C);
Kostya Serebryany6805de52013-09-10 13:16:56 +00001498 for (int i = 0; i <= kMaxAsanStackMallocSizeClass; i++) {
1499 std::string Suffix = itostr(i);
1500 AsanStackMallocFunc[i] = checkInterfaceFunction(
1501 M.getOrInsertFunction(kAsanStackMallocNameTemplate + Suffix, IntptrTy,
1502 IntptrTy, IntptrTy, NULL));
1503 AsanStackFreeFunc[i] = checkInterfaceFunction(M.getOrInsertFunction(
1504 kAsanStackFreeNameTemplate + Suffix, IRB.getVoidTy(), IntptrTy,
1505 IntptrTy, IntptrTy, NULL));
1506 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001507 AsanPoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1508 kAsanPoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1509 AsanUnpoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1510 kAsanUnpoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1511}
1512
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001513void
1514FunctionStackPoisoner::poisonRedZones(const ArrayRef<uint8_t> ShadowBytes,
1515 IRBuilder<> &IRB, Value *ShadowBase,
1516 bool DoPoison) {
1517 size_t n = ShadowBytes.size();
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001518 size_t i = 0;
1519 // We need to (un)poison n bytes of stack shadow. Poison as many as we can
1520 // using 64-bit stores (if we are on 64-bit arch), then poison the rest
1521 // with 32-bit stores, then with 16-byte stores, then with 8-byte stores.
1522 for (size_t LargeStoreSizeInBytes = ASan.LongSize / 8;
1523 LargeStoreSizeInBytes != 0; LargeStoreSizeInBytes /= 2) {
1524 for (; i + LargeStoreSizeInBytes - 1 < n; i += LargeStoreSizeInBytes) {
1525 uint64_t Val = 0;
1526 for (size_t j = 0; j < LargeStoreSizeInBytes; j++) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001527 if (ASan.DL->isLittleEndian())
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001528 Val |= (uint64_t)ShadowBytes[i + j] << (8 * j);
1529 else
1530 Val = (Val << 8) | ShadowBytes[i + j];
1531 }
1532 if (!Val) continue;
1533 Value *Ptr = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1534 Type *StoreTy = Type::getIntNTy(*C, LargeStoreSizeInBytes * 8);
1535 Value *Poison = ConstantInt::get(StoreTy, DoPoison ? Val : 0);
1536 IRB.CreateStore(Poison, IRB.CreateIntToPtr(Ptr, StoreTy->getPointerTo()));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001537 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001538 }
1539}
1540
Kostya Serebryany6805de52013-09-10 13:16:56 +00001541// Fake stack allocator (asan_fake_stack.h) has 11 size classes
1542// for every power of 2 from kMinStackMallocSize to kMaxAsanStackMallocSizeClass
1543static int StackMallocSizeClass(uint64_t LocalStackSize) {
1544 assert(LocalStackSize <= kMaxStackMallocSize);
1545 uint64_t MaxSize = kMinStackMallocSize;
1546 for (int i = 0; ; i++, MaxSize *= 2)
1547 if (LocalStackSize <= MaxSize)
1548 return i;
1549 llvm_unreachable("impossible LocalStackSize");
1550}
1551
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001552// Set Size bytes starting from ShadowBase to kAsanStackAfterReturnMagic.
1553// We can not use MemSet intrinsic because it may end up calling the actual
1554// memset. Size is a multiple of 8.
1555// Currently this generates 8-byte stores on x86_64; it may be better to
1556// generate wider stores.
1557void FunctionStackPoisoner::SetShadowToStackAfterReturnInlined(
1558 IRBuilder<> &IRB, Value *ShadowBase, int Size) {
1559 assert(!(Size % 8));
1560 assert(kAsanStackAfterReturnMagic == 0xf5);
1561 for (int i = 0; i < Size; i += 8) {
1562 Value *p = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1563 IRB.CreateStore(ConstantInt::get(IRB.getInt64Ty(), 0xf5f5f5f5f5f5f5f5ULL),
1564 IRB.CreateIntToPtr(p, IRB.getInt64Ty()->getPointerTo()));
1565 }
1566}
1567
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001568static DebugLoc getFunctionEntryDebugLocation(Function &F) {
Alexey Samsonova02e6642014-05-29 18:40:48 +00001569 for (const auto &Inst : F.getEntryBlock())
1570 if (!isa<AllocaInst>(Inst))
1571 return Inst.getDebugLoc();
1572 return DebugLoc();
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001573}
1574
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001575void FunctionStackPoisoner::poisonStack() {
Kostya Serebryany6805de52013-09-10 13:16:56 +00001576 int StackMallocIdx = -1;
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001577 DebugLoc EntryDebugLocation = getFunctionEntryDebugLocation(F);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001578
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001579 assert(AllocaVec.size() > 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001580 Instruction *InsBefore = AllocaVec[0];
1581 IRBuilder<> IRB(InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001582 IRB.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001583
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001584 SmallVector<ASanStackVariableDescription, 16> SVD;
1585 SVD.reserve(AllocaVec.size());
Alexey Samsonova02e6642014-05-29 18:40:48 +00001586 for (AllocaInst *AI : AllocaVec) {
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001587 ASanStackVariableDescription D = { AI->getName().data(),
1588 getAllocaSizeInBytes(AI),
1589 AI->getAlignment(), AI, 0};
1590 SVD.push_back(D);
1591 }
1592 // Minimal header size (left redzone) is 4 pointers,
1593 // i.e. 32 bytes on 64-bit platforms and 16 bytes in 32-bit platforms.
1594 size_t MinHeaderSize = ASan.LongSize / 2;
1595 ASanStackFrameLayout L;
1596 ComputeASanStackFrameLayout(SVD, 1UL << Mapping.Scale, MinHeaderSize, &L);
1597 DEBUG(dbgs() << L.DescriptionString << " --- " << L.FrameSize << "\n");
1598 uint64_t LocalStackSize = L.FrameSize;
1599 bool DoStackMalloc =
Alexey Samsonove595e1a2014-06-13 17:53:44 +00001600 ClUseAfterReturn && LocalStackSize <= kMaxStackMallocSize;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001601
1602 Type *ByteArrayTy = ArrayType::get(IRB.getInt8Ty(), LocalStackSize);
1603 AllocaInst *MyAlloca =
1604 new AllocaInst(ByteArrayTy, "MyAlloca", InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001605 MyAlloca->setDebugLoc(EntryDebugLocation);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001606 assert((ClRealignStack & (ClRealignStack - 1)) == 0);
1607 size_t FrameAlignment = std::max(L.FrameAlignment, (size_t)ClRealignStack);
1608 MyAlloca->setAlignment(FrameAlignment);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001609 assert(MyAlloca->isStaticAlloca());
1610 Value *OrigStackBase = IRB.CreatePointerCast(MyAlloca, IntptrTy);
1611 Value *LocalStackBase = OrigStackBase;
1612
1613 if (DoStackMalloc) {
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001614 // LocalStackBase = OrigStackBase
1615 // if (__asan_option_detect_stack_use_after_return)
1616 // LocalStackBase = __asan_stack_malloc_N(LocalStackBase, OrigStackBase);
Kostya Serebryany6805de52013-09-10 13:16:56 +00001617 StackMallocIdx = StackMallocSizeClass(LocalStackSize);
1618 assert(StackMallocIdx <= kMaxAsanStackMallocSizeClass);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001619 Constant *OptionDetectUAR = F.getParent()->getOrInsertGlobal(
1620 kAsanOptionDetectUAR, IRB.getInt32Ty());
1621 Value *Cmp = IRB.CreateICmpNE(IRB.CreateLoad(OptionDetectUAR),
1622 Constant::getNullValue(IRB.getInt32Ty()));
Evgeniy Stepanova9164e92013-12-19 13:29:56 +00001623 Instruction *Term = SplitBlockAndInsertIfThen(Cmp, InsBefore, false);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001624 BasicBlock *CmpBlock = cast<Instruction>(Cmp)->getParent();
1625 IRBuilder<> IRBIf(Term);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001626 IRBIf.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001627 LocalStackBase = IRBIf.CreateCall2(
1628 AsanStackMallocFunc[StackMallocIdx],
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001629 ConstantInt::get(IntptrTy, LocalStackSize), OrigStackBase);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001630 BasicBlock *SetBlock = cast<Instruction>(LocalStackBase)->getParent();
1631 IRB.SetInsertPoint(InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001632 IRB.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001633 PHINode *Phi = IRB.CreatePHI(IntptrTy, 2);
1634 Phi->addIncoming(OrigStackBase, CmpBlock);
1635 Phi->addIncoming(LocalStackBase, SetBlock);
1636 LocalStackBase = Phi;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001637 }
1638
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001639 // Insert poison calls for lifetime intrinsics for alloca.
1640 bool HavePoisonedAllocas = false;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001641 for (const auto &APC : AllocaPoisonCallVec) {
Alexey Samsonova788b942013-11-18 14:53:55 +00001642 assert(APC.InsBefore);
1643 assert(APC.AI);
1644 IRBuilder<> IRB(APC.InsBefore);
1645 poisonAlloca(APC.AI, APC.Size, IRB, APC.DoPoison);
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001646 HavePoisonedAllocas |= APC.DoPoison;
1647 }
1648
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001649 // Replace Alloca instructions with base+offset.
Alexey Samsonova02e6642014-05-29 18:40:48 +00001650 for (const auto &Desc : SVD) {
1651 AllocaInst *AI = Desc.AI;
Alexey Samsonov261177a2012-12-04 01:34:23 +00001652 Value *NewAllocaPtr = IRB.CreateIntToPtr(
Alexey Samsonova02e6642014-05-29 18:40:48 +00001653 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, Desc.Offset)),
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001654 AI->getType());
Alexey Samsonov3d43b632012-12-12 14:31:53 +00001655 replaceDbgDeclareForAlloca(AI, NewAllocaPtr, DIB);
Alexey Samsonov261177a2012-12-04 01:34:23 +00001656 AI->replaceAllUsesWith(NewAllocaPtr);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001657 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001658
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001659 // The left-most redzone has enough space for at least 4 pointers.
1660 // Write the Magic value to redzone[0].
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001661 Value *BasePlus0 = IRB.CreateIntToPtr(LocalStackBase, IntptrPtrTy);
1662 IRB.CreateStore(ConstantInt::get(IntptrTy, kCurrentStackFrameMagic),
1663 BasePlus0);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001664 // Write the frame description constant to redzone[1].
1665 Value *BasePlus1 = IRB.CreateIntToPtr(
1666 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, ASan.LongSize/8)),
1667 IntptrPtrTy);
Alexey Samsonov9bdb63a2012-11-02 12:20:34 +00001668 GlobalVariable *StackDescriptionGlobal =
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001669 createPrivateGlobalForString(*F.getParent(), L.DescriptionString,
1670 /*AllowMerging*/true);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001671 Value *Description = IRB.CreatePointerCast(StackDescriptionGlobal,
1672 IntptrTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001673 IRB.CreateStore(Description, BasePlus1);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001674 // Write the PC to redzone[2].
1675 Value *BasePlus2 = IRB.CreateIntToPtr(
1676 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy,
1677 2 * ASan.LongSize/8)),
1678 IntptrPtrTy);
1679 IRB.CreateStore(IRB.CreatePointerCast(&F, IntptrTy), BasePlus2);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001680
1681 // Poison the stack redzones at the entry.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001682 Value *ShadowBase = ASan.memToShadow(LocalStackBase, IRB);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001683 poisonRedZones(L.ShadowBytes, IRB, ShadowBase, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001684
Kostya Serebryany530e2072013-12-23 14:15:08 +00001685 // (Un)poison the stack before all ret instructions.
Alexey Samsonova02e6642014-05-29 18:40:48 +00001686 for (auto Ret : RetVec) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001687 IRBuilder<> IRBRet(Ret);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001688 // Mark the current frame as retired.
1689 IRBRet.CreateStore(ConstantInt::get(IntptrTy, kRetiredStackFrameMagic),
1690 BasePlus0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001691 if (DoStackMalloc) {
Kostya Serebryany6805de52013-09-10 13:16:56 +00001692 assert(StackMallocIdx >= 0);
Kostya Serebryany530e2072013-12-23 14:15:08 +00001693 // if LocalStackBase != OrigStackBase:
1694 // // In use-after-return mode, poison the whole stack frame.
1695 // if StackMallocIdx <= 4
1696 // // For small sizes inline the whole thing:
1697 // memset(ShadowBase, kAsanStackAfterReturnMagic, ShadowSize);
1698 // **SavedFlagPtr(LocalStackBase) = 0
1699 // else
1700 // __asan_stack_free_N(LocalStackBase, OrigStackBase)
1701 // else
1702 // <This is not a fake stack; unpoison the redzones>
1703 Value *Cmp = IRBRet.CreateICmpNE(LocalStackBase, OrigStackBase);
1704 TerminatorInst *ThenTerm, *ElseTerm;
1705 SplitBlockAndInsertIfThenElse(Cmp, Ret, &ThenTerm, &ElseTerm);
1706
1707 IRBuilder<> IRBPoison(ThenTerm);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001708 if (StackMallocIdx <= 4) {
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001709 int ClassSize = kMinStackMallocSize << StackMallocIdx;
1710 SetShadowToStackAfterReturnInlined(IRBPoison, ShadowBase,
1711 ClassSize >> Mapping.Scale);
1712 Value *SavedFlagPtrPtr = IRBPoison.CreateAdd(
1713 LocalStackBase,
1714 ConstantInt::get(IntptrTy, ClassSize - ASan.LongSize / 8));
1715 Value *SavedFlagPtr = IRBPoison.CreateLoad(
1716 IRBPoison.CreateIntToPtr(SavedFlagPtrPtr, IntptrPtrTy));
1717 IRBPoison.CreateStore(
1718 Constant::getNullValue(IRBPoison.getInt8Ty()),
1719 IRBPoison.CreateIntToPtr(SavedFlagPtr, IRBPoison.getInt8PtrTy()));
1720 } else {
1721 // For larger frames call __asan_stack_free_*.
Kostya Serebryany530e2072013-12-23 14:15:08 +00001722 IRBPoison.CreateCall3(AsanStackFreeFunc[StackMallocIdx], LocalStackBase,
1723 ConstantInt::get(IntptrTy, LocalStackSize),
1724 OrigStackBase);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001725 }
Kostya Serebryany530e2072013-12-23 14:15:08 +00001726
1727 IRBuilder<> IRBElse(ElseTerm);
1728 poisonRedZones(L.ShadowBytes, IRBElse, ShadowBase, false);
Alexey Samsonov261177a2012-12-04 01:34:23 +00001729 } else if (HavePoisonedAllocas) {
1730 // If we poisoned some allocas in llvm.lifetime analysis,
1731 // unpoison whole stack frame now.
1732 assert(LocalStackBase == OrigStackBase);
1733 poisonAlloca(LocalStackBase, LocalStackSize, IRBRet, false);
Kostya Serebryany530e2072013-12-23 14:15:08 +00001734 } else {
1735 poisonRedZones(L.ShadowBytes, IRBRet, ShadowBase, false);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001736 }
1737 }
1738
Kostya Serebryany09959942012-10-19 06:20:53 +00001739 // We are done. Remove the old unused alloca instructions.
Alexey Samsonova02e6642014-05-29 18:40:48 +00001740 for (auto AI : AllocaVec)
1741 AI->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001742}
Alexey Samsonov261177a2012-12-04 01:34:23 +00001743
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001744void FunctionStackPoisoner::poisonAlloca(Value *V, uint64_t Size,
Jakub Staszak23ec6a92013-08-09 20:53:48 +00001745 IRBuilder<> &IRB, bool DoPoison) {
Alexey Samsonov261177a2012-12-04 01:34:23 +00001746 // For now just insert the call to ASan runtime.
1747 Value *AddrArg = IRB.CreatePointerCast(V, IntptrTy);
1748 Value *SizeArg = ConstantInt::get(IntptrTy, Size);
1749 IRB.CreateCall2(DoPoison ? AsanPoisonStackMemoryFunc
1750 : AsanUnpoisonStackMemoryFunc,
1751 AddrArg, SizeArg);
1752}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001753
1754// Handling llvm.lifetime intrinsics for a given %alloca:
1755// (1) collect all llvm.lifetime.xxx(%size, %value) describing the alloca.
1756// (2) if %size is constant, poison memory for llvm.lifetime.end (to detect
1757// invalid accesses) and unpoison it for llvm.lifetime.start (the memory
1758// could be poisoned by previous llvm.lifetime.end instruction, as the
1759// variable may go in and out of scope several times, e.g. in loops).
1760// (3) if we poisoned at least one %alloca in a function,
1761// unpoison the whole stack frame at function exit.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001762
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001763AllocaInst *FunctionStackPoisoner::findAllocaForValue(Value *V) {
1764 if (AllocaInst *AI = dyn_cast<AllocaInst>(V))
1765 // We're intested only in allocas we can handle.
Craig Topperf40110f2014-04-25 05:29:35 +00001766 return isInterestingAlloca(*AI) ? AI : nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001767 // See if we've already calculated (or started to calculate) alloca for a
1768 // given value.
1769 AllocaForValueMapTy::iterator I = AllocaForValue.find(V);
1770 if (I != AllocaForValue.end())
1771 return I->second;
1772 // Store 0 while we're calculating alloca for value V to avoid
1773 // infinite recursion if the value references itself.
Craig Topperf40110f2014-04-25 05:29:35 +00001774 AllocaForValue[V] = nullptr;
1775 AllocaInst *Res = nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001776 if (CastInst *CI = dyn_cast<CastInst>(V))
1777 Res = findAllocaForValue(CI->getOperand(0));
1778 else if (PHINode *PN = dyn_cast<PHINode>(V)) {
1779 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1780 Value *IncValue = PN->getIncomingValue(i);
1781 // Allow self-referencing phi-nodes.
1782 if (IncValue == PN) continue;
1783 AllocaInst *IncValueAI = findAllocaForValue(IncValue);
1784 // AI for incoming values should exist and should all be equal.
Craig Topperf40110f2014-04-25 05:29:35 +00001785 if (IncValueAI == nullptr || (Res != nullptr && IncValueAI != Res))
1786 return nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001787 Res = IncValueAI;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001788 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001789 }
Craig Topperf40110f2014-04-25 05:29:35 +00001790 if (Res)
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001791 AllocaForValue[V] = Res;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001792 return Res;
1793}