blob: 49eccad1d974b29300b7dc22cab1f437dd8f1a7d [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 Serebryany351b0782014-09-03 22:37:37 +000043#include "llvm/Transforms/Scalar.h"
Kostya Serebryany4fb78012013-12-06 09:00:17 +000044#include "llvm/Transforms/Utils/ASanStackFrameLayout.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000045#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Kostya Serebryany9f5213f2013-06-26 09:18:17 +000046#include "llvm/Transforms/Utils/Cloning.h"
Alexey Samsonov3d43b632012-12-12 14:31:53 +000047#include "llvm/Transforms/Utils/Local.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000048#include "llvm/Transforms/Utils/ModuleUtils.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000049#include <algorithm>
Chandler Carruthed0881b2012-12-03 16:50:05 +000050#include <string>
Rafael Espindolaa6e9c3e2014-06-12 17:38:55 +000051#include <system_error>
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000052
53using namespace llvm;
54
Chandler Carruth964daaa2014-04-22 02:55:47 +000055#define DEBUG_TYPE "asan"
56
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000057static const uint64_t kDefaultShadowScale = 3;
58static const uint64_t kDefaultShadowOffset32 = 1ULL << 29;
Alexander Potapenkoa51e4832014-04-23 17:14:45 +000059static const uint64_t kIOSShadowOffset32 = 1ULL << 30;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000060static const uint64_t kDefaultShadowOffset64 = 1ULL << 44;
Kostya Serebryanycc92c792014-02-24 13:40:24 +000061static const uint64_t kSmallX86_64ShadowOffset = 0x7FFF8000; // < 2G.
Kostya Serebryany4766fe62013-01-23 12:54:55 +000062static const uint64_t kPPC64_ShadowOffset64 = 1ULL << 41;
Kostya Serebryanyc5bd9812014-11-04 19:46:15 +000063static const uint64_t kMIPS32_ShadowOffset32 = 0x0aaa0000;
Kostya Serebryany8baa3862014-02-10 07:37:04 +000064static const uint64_t kFreeBSD_ShadowOffset32 = 1ULL << 30;
65static const uint64_t kFreeBSD_ShadowOffset64 = 1ULL << 46;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000066
Kostya Serebryany6805de52013-09-10 13:16:56 +000067static const size_t kMinStackMallocSize = 1 << 6; // 64B
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000068static const size_t kMaxStackMallocSize = 1 << 16; // 64K
69static const uintptr_t kCurrentStackFrameMagic = 0x41B58AB3;
70static const uintptr_t kRetiredStackFrameMagic = 0x45E0360E;
71
Craig Topperd3a34f82013-07-16 01:17:10 +000072static const char *const kAsanModuleCtorName = "asan.module_ctor";
73static const char *const kAsanModuleDtorName = "asan.module_dtor";
Kostya Serebryany34ddf872014-09-24 22:41:55 +000074static const uint64_t kAsanCtorAndDtorPriority = 1;
Craig Topperd3a34f82013-07-16 01:17:10 +000075static const char *const kAsanReportErrorTemplate = "__asan_report_";
76static const char *const kAsanReportLoadN = "__asan_report_load_n";
77static const char *const kAsanReportStoreN = "__asan_report_store_n";
78static const char *const kAsanRegisterGlobalsName = "__asan_register_globals";
Alexey Samsonovf52b7172013-08-05 13:19:49 +000079static const char *const kAsanUnregisterGlobalsName =
80 "__asan_unregister_globals";
Craig Topperd3a34f82013-07-16 01:17:10 +000081static const char *const kAsanPoisonGlobalsName = "__asan_before_dynamic_init";
82static const char *const kAsanUnpoisonGlobalsName = "__asan_after_dynamic_init";
Alexey Samsonov4f319cc2014-07-02 16:54:41 +000083static const char *const kAsanInitName = "__asan_init_v4";
Evgeniy Stepanov47b1a952014-05-27 12:39:31 +000084static const char *const kAsanCovModuleInitName = "__sanitizer_cov_module_init";
Bob Wilsonda4147c2013-11-15 07:16:09 +000085static const char *const kAsanCovName = "__sanitizer_cov";
Kostya Serebryany4f8f0c52014-10-27 18:13:56 +000086static const char *const kAsanCovIndirCallName = "__sanitizer_cov_indir_call16";
Kostya Serebryany796f6552014-02-27 12:45:36 +000087static const char *const kAsanPtrCmp = "__sanitizer_ptr_cmp";
88static const char *const kAsanPtrSub = "__sanitizer_ptr_sub";
Craig Topperd3a34f82013-07-16 01:17:10 +000089static const char *const kAsanHandleNoReturnName = "__asan_handle_no_return";
Kostya Serebryany6805de52013-09-10 13:16:56 +000090static const int kMaxAsanStackMallocSizeClass = 10;
91static const char *const kAsanStackMallocNameTemplate = "__asan_stack_malloc_";
92static const char *const kAsanStackFreeNameTemplate = "__asan_stack_free_";
Craig Topperd3a34f82013-07-16 01:17:10 +000093static const char *const kAsanGenPrefix = "__asan_gen_";
94static const char *const kAsanPoisonStackMemoryName =
95 "__asan_poison_stack_memory";
96static const char *const kAsanUnpoisonStackMemoryName =
Alexey Samsonov261177a2012-12-04 01:34:23 +000097 "__asan_unpoison_stack_memory";
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000098
Kostya Serebryanyf3223822013-09-18 14:07:14 +000099static const char *const kAsanOptionDetectUAR =
100 "__asan_option_detect_stack_use_after_return";
101
David Blaikieeacc2872013-09-18 00:11:27 +0000102#ifndef NDEBUG
Kostya Serebryanybc86efb2013-09-17 12:14:50 +0000103static const int kAsanStackAfterReturnMagic = 0xf5;
David Blaikieeacc2872013-09-18 00:11:27 +0000104#endif
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000105
Kostya Serebryany874dae62012-07-16 16:15:40 +0000106// Accesses sizes are powers of two: 1, 2, 4, 8, 16.
107static const size_t kNumberOfAccessSizes = 5;
108
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000109// Command-line flags.
110
111// This flag may need to be replaced with -f[no-]asan-reads.
112static cl::opt<bool> ClInstrumentReads("asan-instrument-reads",
113 cl::desc("instrument read instructions"), cl::Hidden, cl::init(true));
114static cl::opt<bool> ClInstrumentWrites("asan-instrument-writes",
115 cl::desc("instrument write instructions"), cl::Hidden, cl::init(true));
Kostya Serebryany90241602012-05-30 09:04:06 +0000116static cl::opt<bool> ClInstrumentAtomics("asan-instrument-atomics",
117 cl::desc("instrument atomic instructions (rmw, cmpxchg)"),
118 cl::Hidden, cl::init(true));
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000119static cl::opt<bool> ClAlwaysSlowPath("asan-always-slow-path",
120 cl::desc("use instrumentation with slow path for all accesses"),
121 cl::Hidden, cl::init(false));
Kostya Serebryany874dae62012-07-16 16:15:40 +0000122// This flag limits the number of instructions to be instrumented
Kostya Serebryanyc387ca72012-06-28 09:34:41 +0000123// in any given BB. Normally, this should be set to unlimited (INT_MAX),
124// but due to http://llvm.org/bugs/show_bug.cgi?id=12652 we temporary
125// set it to 10000.
126static cl::opt<int> ClMaxInsnsToInstrumentPerBB("asan-max-ins-per-bb",
127 cl::init(10000),
128 cl::desc("maximal number of instructions to instrument in any given BB"),
129 cl::Hidden);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000130// This flag may need to be replaced with -f[no]asan-stack.
131static cl::opt<bool> ClStack("asan-stack",
132 cl::desc("Handle stack memory"), cl::Hidden, cl::init(true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000133static cl::opt<bool> ClUseAfterReturn("asan-use-after-return",
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000134 cl::desc("Check return-after-free"), cl::Hidden, cl::init(true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000135// This flag may need to be replaced with -f[no]asan-globals.
136static cl::opt<bool> ClGlobals("asan-globals",
137 cl::desc("Handle global objects"), cl::Hidden, cl::init(true));
Kostya Serebryany714c67c2014-01-17 11:00:30 +0000138static cl::opt<int> ClCoverage("asan-coverage",
Kostya Serebryany351b0782014-09-03 22:37:37 +0000139 cl::desc("ASan coverage. 0: none, 1: entry block, 2: all blocks, "
Kostya Serebryany4f8f0c52014-10-27 18:13:56 +0000140 "3: all blocks and critical edges, "
141 "4: above plus indirect calls"),
Kostya Serebryany714c67c2014-01-17 11:00:30 +0000142 cl::Hidden, cl::init(false));
Kostya Serebryany22e88102014-04-18 08:02:42 +0000143static cl::opt<int> ClCoverageBlockThreshold("asan-coverage-block-threshold",
144 cl::desc("Add coverage instrumentation only to the entry block if there "
145 "are more than this number of blocks."),
146 cl::Hidden, cl::init(1500));
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000147static cl::opt<bool> ClInitializers("asan-initialization-order",
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000148 cl::desc("Handle C++ initializer order"), cl::Hidden, cl::init(true));
Kostya Serebryany796f6552014-02-27 12:45:36 +0000149static cl::opt<bool> ClInvalidPointerPairs("asan-detect-invalid-pointer-pair",
150 cl::desc("Instrument <, <=, >, >=, - with pointer operands"),
Kostya Serebryanyec346652014-02-27 12:56:20 +0000151 cl::Hidden, cl::init(false));
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000152static cl::opt<unsigned> ClRealignStack("asan-realign-stack",
153 cl::desc("Realign stack to the value of this flag (power of two)"),
154 cl::Hidden, cl::init(32));
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000155static cl::opt<int> ClInstrumentationWithCallsThreshold(
156 "asan-instrumentation-with-call-threshold",
157 cl::desc("If the function being instrumented contains more than "
158 "this number of memory accesses, use callbacks instead of "
159 "inline checks (-1 means never use callbacks)."),
Kostya Serebryany4d237a82014-05-26 11:57:16 +0000160 cl::Hidden, cl::init(7000));
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000161static cl::opt<std::string> ClMemoryAccessCallbackPrefix(
162 "asan-memory-access-callback-prefix",
163 cl::desc("Prefix for memory access callbacks"), cl::Hidden,
164 cl::init("__asan_"));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000165
Kostya Serebryany9f5213f2013-06-26 09:18:17 +0000166// This is an experimental feature that will allow to choose between
167// instrumented and non-instrumented code at link-time.
168// If this option is on, just before instrumenting a function we create its
169// clone; if the function is not changed by asan the clone is deleted.
170// If we end up with a clone, we put the instrumented function into a section
171// called "ASAN" and the uninstrumented function into a section called "NOASAN".
172//
173// This is still a prototype, we need to figure out a way to keep two copies of
174// a function so that the linker can easily choose one of them.
175static cl::opt<bool> ClKeepUninstrumented("asan-keep-uninstrumented-functions",
176 cl::desc("Keep uninstrumented copies of functions"),
177 cl::Hidden, cl::init(false));
178
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000179// These flags allow to change the shadow mapping.
180// The shadow mapping looks like
181// Shadow = (Mem >> scale) + (1 << offset_log)
182static cl::opt<int> ClMappingScale("asan-mapping-scale",
183 cl::desc("scale of asan shadow mapping"), cl::Hidden, cl::init(0));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000184
185// Optimization flags. Not user visible, used mostly for testing
186// and benchmarking the tool.
187static cl::opt<bool> ClOpt("asan-opt",
188 cl::desc("Optimize instrumentation"), cl::Hidden, cl::init(true));
189static cl::opt<bool> ClOptSameTemp("asan-opt-same-temp",
190 cl::desc("Instrument the same temp just once"), cl::Hidden,
191 cl::init(true));
192static cl::opt<bool> ClOptGlobals("asan-opt-globals",
193 cl::desc("Don't instrument scalar globals"), cl::Hidden, cl::init(true));
194
Alexey Samsonovdf624522012-11-29 18:14:24 +0000195static cl::opt<bool> ClCheckLifetime("asan-check-lifetime",
196 cl::desc("Use llvm.lifetime intrinsics to insert extra checks"),
197 cl::Hidden, cl::init(false));
198
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000199// Debug flags.
200static cl::opt<int> ClDebug("asan-debug", cl::desc("debug"), cl::Hidden,
201 cl::init(0));
202static cl::opt<int> ClDebugStack("asan-debug-stack", cl::desc("debug stack"),
203 cl::Hidden, cl::init(0));
204static cl::opt<std::string> ClDebugFunc("asan-debug-func",
205 cl::Hidden, cl::desc("Debug func"));
206static cl::opt<int> ClDebugMin("asan-debug-min", cl::desc("Debug min inst"),
207 cl::Hidden, cl::init(-1));
208static cl::opt<int> ClDebugMax("asan-debug-max", cl::desc("Debug man inst"),
209 cl::Hidden, cl::init(-1));
210
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000211STATISTIC(NumInstrumentedReads, "Number of instrumented reads");
212STATISTIC(NumInstrumentedWrites, "Number of instrumented writes");
213STATISTIC(NumOptimizedAccessesToGlobalArray,
214 "Number of optimized accesses to global arrays");
215STATISTIC(NumOptimizedAccessesToGlobalVar,
216 "Number of optimized accesses to global vars");
217
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000218namespace {
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +0000219/// Frontend-provided metadata for source location.
220struct LocationMetadata {
221 StringRef Filename;
222 int LineNo;
223 int ColumnNo;
224
225 LocationMetadata() : Filename(), LineNo(0), ColumnNo(0) {}
226
227 bool empty() const { return Filename.empty(); }
228
229 void parse(MDNode *MDN) {
230 assert(MDN->getNumOperands() == 3);
231 MDString *MDFilename = cast<MDString>(MDN->getOperand(0));
232 Filename = MDFilename->getString();
233 LineNo = cast<ConstantInt>(MDN->getOperand(1))->getLimitedValue();
234 ColumnNo = cast<ConstantInt>(MDN->getOperand(2))->getLimitedValue();
235 }
236};
237
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000238/// Frontend-provided metadata for global variables.
239class GlobalsMetadata {
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000240 public:
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000241 struct Entry {
Alexey Samsonov15c96692014-07-12 00:42:52 +0000242 Entry()
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +0000243 : SourceLoc(), Name(), IsDynInit(false),
Alexey Samsonov15c96692014-07-12 00:42:52 +0000244 IsBlacklisted(false) {}
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +0000245 LocationMetadata SourceLoc;
246 StringRef Name;
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000247 bool IsDynInit;
248 bool IsBlacklisted;
249 };
250
Alexey Samsonov0c5ecdd2014-07-02 20:25:42 +0000251 GlobalsMetadata() : inited_(false) {}
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000252
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000253 void init(Module& M) {
254 assert(!inited_);
255 inited_ = true;
256 NamedMDNode *Globals = M.getNamedMetadata("llvm.asan.globals");
257 if (!Globals)
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000258 return;
Duncan P. N. Exon Smithc5754a62014-11-05 18:16:03 +0000259 for (const Value *MDV : Globals->operands()) {
260 const MDNode *MDN = cast<MDNode>(MDV);
261
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000262 // Metadata node contains the global and the fields of "Entry".
Alexey Samsonov15c96692014-07-12 00:42:52 +0000263 assert(MDN->getNumOperands() == 5);
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000264 Value *V = MDN->getOperand(0);
265 // The optimizer may optimize away a global entirely.
266 if (!V)
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000267 continue;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000268 GlobalVariable *GV = cast<GlobalVariable>(V);
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000269 // We can already have an entry for GV if it was merged with another
270 // global.
271 Entry &E = Entries[GV];
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +0000272 if (Value *Loc = MDN->getOperand(1))
273 E.SourceLoc.parse(cast<MDNode>(Loc));
Alexey Samsonov15c96692014-07-12 00:42:52 +0000274 if (Value *Name = MDN->getOperand(2)) {
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +0000275 MDString *MDName = cast<MDString>(Name);
276 E.Name = MDName->getString();
Alexey Samsonov15c96692014-07-12 00:42:52 +0000277 }
278 ConstantInt *IsDynInit = cast<ConstantInt>(MDN->getOperand(3));
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000279 E.IsDynInit |= IsDynInit->isOne();
Alexey Samsonov15c96692014-07-12 00:42:52 +0000280 ConstantInt *IsBlacklisted = cast<ConstantInt>(MDN->getOperand(4));
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000281 E.IsBlacklisted |= IsBlacklisted->isOne();
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000282 }
283 }
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000284
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000285 /// Returns metadata entry for a given global.
286 Entry get(GlobalVariable *G) const {
287 auto Pos = Entries.find(G);
288 return (Pos != Entries.end()) ? Pos->second : Entry();
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000289 }
290
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000291 private:
Alexey Samsonov0c5ecdd2014-07-02 20:25:42 +0000292 bool inited_;
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000293 DenseMap<GlobalVariable*, Entry> Entries;
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000294};
295
Alexey Samsonov1345d352013-01-16 13:23:28 +0000296/// This struct defines the shadow mapping using the rule:
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000297/// shadow = (mem >> Scale) ADD-or-OR Offset.
Alexey Samsonov1345d352013-01-16 13:23:28 +0000298struct ShadowMapping {
299 int Scale;
300 uint64_t Offset;
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000301 bool OrShadowOffset;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000302};
303
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000304static ShadowMapping getShadowMapping(const Module &M, int LongSize) {
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000305 llvm::Triple TargetTriple(M.getTargetTriple());
306 bool IsAndroid = TargetTriple.getEnvironment() == llvm::Triple::Android;
Bob Wilson9868d712014-10-09 05:43:30 +0000307 bool IsIOS = TargetTriple.isiOS();
Kostya Serebryany8baa3862014-02-10 07:37:04 +0000308 bool IsFreeBSD = TargetTriple.getOS() == llvm::Triple::FreeBSD;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000309 bool IsLinux = TargetTriple.getOS() == llvm::Triple::Linux;
Bill Schmidt0a9170d2013-07-26 01:35:43 +0000310 bool IsPPC64 = TargetTriple.getArch() == llvm::Triple::ppc64 ||
311 TargetTriple.getArch() == llvm::Triple::ppc64le;
Kostya Serebryanybe733372013-02-12 11:11:02 +0000312 bool IsX86_64 = TargetTriple.getArch() == llvm::Triple::x86_64;
Kostya Serebryany9e62b302013-06-03 14:46:56 +0000313 bool IsMIPS32 = TargetTriple.getArch() == llvm::Triple::mips ||
314 TargetTriple.getArch() == llvm::Triple::mipsel;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000315
316 ShadowMapping Mapping;
317
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000318 if (LongSize == 32) {
319 if (IsAndroid)
320 Mapping.Offset = 0;
321 else if (IsMIPS32)
322 Mapping.Offset = kMIPS32_ShadowOffset32;
323 else if (IsFreeBSD)
324 Mapping.Offset = kFreeBSD_ShadowOffset32;
Alexander Potapenkoa51e4832014-04-23 17:14:45 +0000325 else if (IsIOS)
326 Mapping.Offset = kIOSShadowOffset32;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000327 else
328 Mapping.Offset = kDefaultShadowOffset32;
329 } else { // LongSize == 64
330 if (IsPPC64)
331 Mapping.Offset = kPPC64_ShadowOffset64;
332 else if (IsFreeBSD)
333 Mapping.Offset = kFreeBSD_ShadowOffset64;
334 else if (IsLinux && IsX86_64)
335 Mapping.Offset = kSmallX86_64ShadowOffset;
336 else
337 Mapping.Offset = kDefaultShadowOffset64;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000338 }
339
340 Mapping.Scale = kDefaultShadowScale;
341 if (ClMappingScale) {
342 Mapping.Scale = ClMappingScale;
343 }
344
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000345 // OR-ing shadow offset if more efficient (at least on x86) if the offset
346 // is a power of two, but on ppc64 we have to use add since the shadow
347 // offset is not necessary 1/8-th of the address space.
348 Mapping.OrShadowOffset = !IsPPC64 && !(Mapping.Offset & (Mapping.Offset - 1));
349
Alexey Samsonov1345d352013-01-16 13:23:28 +0000350 return Mapping;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000351}
352
Alexey Samsonov1345d352013-01-16 13:23:28 +0000353static size_t RedzoneSizeForScale(int MappingScale) {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000354 // Redzone used for stack and globals is at least 32 bytes.
355 // For scales 6 and 7, the redzone has to be 64 and 128 bytes respectively.
Alexey Samsonov1345d352013-01-16 13:23:28 +0000356 return std::max(32U, 1U << MappingScale);
Kostya Serebryany20a79972012-11-22 03:18:50 +0000357}
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000358
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000359/// AddressSanitizer: instrument the code in module to find memory bugs.
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000360struct AddressSanitizer : public FunctionPass {
Kostya Serebryany351b0782014-09-03 22:37:37 +0000361 AddressSanitizer() : FunctionPass(ID) {
362 initializeBreakCriticalEdgesPass(*PassRegistry::getPassRegistry());
363 }
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
Kostya Serebryany351b0782014-09-03 22:37:37 +0000384 void getAnalysisUsage(AnalysisUsage &AU) const override {
385 if (ClCoverage >= 3)
386 AU.addRequiredID(BreakCriticalEdgesID);
387 }
388
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000389 private:
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000390 void initializeCallbacks(Module &M);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000391
Kostya Serebryany1cdc6e92011-11-18 01:41:06 +0000392 bool LooksLikeCodeInBug11395(Instruction *I);
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000393 bool GlobalIsLinkerInitialized(GlobalVariable *G);
Kostya Serebryany4f8f0c52014-10-27 18:13:56 +0000394 void InjectCoverageForIndirectCalls(Function &F,
395 ArrayRef<Instruction *> IndirCalls);
396 bool InjectCoverage(Function &F, ArrayRef<BasicBlock *> AllBlocks,
397 ArrayRef<Instruction *> IndirCalls);
Kostya Serebryany714c67c2014-01-17 11:00:30 +0000398 void InjectCoverageAtBlock(Function &F, BasicBlock &BB);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000399
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000400 LLVMContext *C;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000401 const DataLayout *DL;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000402 int LongSize;
403 Type *IntptrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000404 ShadowMapping Mapping;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000405 Function *AsanCtorFunction;
406 Function *AsanInitFunction;
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000407 Function *AsanHandleNoReturnFunc;
Bob Wilsonda4147c2013-11-15 07:16:09 +0000408 Function *AsanCovFunction;
Kostya Serebryany4f8f0c52014-10-27 18:13:56 +0000409 Function *AsanCovIndirCallFunction;
Kostya Serebryany796f6552014-02-27 12:45:36 +0000410 Function *AsanPtrCmpFunction, *AsanPtrSubFunction;
Kostya Serebryany4273bb02012-07-16 14:09:42 +0000411 // This array is indexed by AccessIsWrite and log2(AccessSize).
412 Function *AsanErrorCallback[2][kNumberOfAccessSizes];
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000413 Function *AsanMemoryAccessCallback[2][kNumberOfAccessSizes];
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000414 // This array is indexed by AccessIsWrite.
Kostya Serebryany86332c02014-04-21 07:10:43 +0000415 Function *AsanErrorCallbackSized[2],
416 *AsanMemoryAccessCallbackSized[2];
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000417 Function *AsanMemmove, *AsanMemcpy, *AsanMemset;
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000418 InlineAsm *EmptyAsm;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000419 GlobalsMetadata GlobalsMD;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000420
421 friend struct FunctionStackPoisoner;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000422};
Kostya Serebryany874dae62012-07-16 16:15:40 +0000423
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000424class AddressSanitizerModule : public ModulePass {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000425 public:
Alexey Samsonovc94285a2014-07-08 00:50:49 +0000426 AddressSanitizerModule() : ModulePass(ID) {}
Craig Topper3e4c6972014-03-05 09:10:37 +0000427 bool runOnModule(Module &M) override;
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000428 static char ID; // Pass identification, replacement for typeid
Craig Topper3e4c6972014-03-05 09:10:37 +0000429 const char *getPassName() const override {
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000430 return "AddressSanitizerModule";
431 }
Alexey Samsonov261177a2012-12-04 01:34:23 +0000432
Kostya Serebryany20a79972012-11-22 03:18:50 +0000433 private:
Alexey Samsonov788381b2012-12-25 12:28:20 +0000434 void initializeCallbacks(Module &M);
435
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +0000436 bool InstrumentGlobals(IRBuilder<> &IRB, Module &M);
Kostya Serebryany20a79972012-11-22 03:18:50 +0000437 bool ShouldInstrumentGlobal(GlobalVariable *G);
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000438 void poisonOneInitializer(Function &GlobalInit, GlobalValue *ModuleName);
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000439 void createInitializerPoisonCalls(Module &M, GlobalValue *ModuleName);
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000440 size_t MinRedzoneSizeForGlobal() const {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000441 return RedzoneSizeForScale(Mapping.Scale);
442 }
Kostya Serebryany20a79972012-11-22 03:18:50 +0000443
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000444 GlobalsMetadata GlobalsMD;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000445 Type *IntptrTy;
446 LLVMContext *C;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000447 const DataLayout *DL;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000448 ShadowMapping Mapping;
Alexey Samsonov788381b2012-12-25 12:28:20 +0000449 Function *AsanPoisonGlobals;
450 Function *AsanUnpoisonGlobals;
451 Function *AsanRegisterGlobals;
452 Function *AsanUnregisterGlobals;
Evgeniy Stepanov47b1a952014-05-27 12:39:31 +0000453 Function *AsanCovModuleInit;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000454};
455
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000456// Stack poisoning does not play well with exception handling.
457// When an exception is thrown, we essentially bypass the code
458// that unpoisones the stack. This is why the run-time library has
459// to intercept __cxa_throw (as well as longjmp, etc) and unpoison the entire
460// stack in the interceptor. This however does not work inside the
461// actual function which catches the exception. Most likely because the
462// compiler hoists the load of the shadow value somewhere too high.
463// This causes asan to report a non-existing bug on 453.povray.
464// It sounds like an LLVM bug.
465struct FunctionStackPoisoner : public InstVisitor<FunctionStackPoisoner> {
466 Function &F;
467 AddressSanitizer &ASan;
468 DIBuilder DIB;
469 LLVMContext *C;
470 Type *IntptrTy;
471 Type *IntptrPtrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000472 ShadowMapping Mapping;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000473
474 SmallVector<AllocaInst*, 16> AllocaVec;
475 SmallVector<Instruction*, 8> RetVec;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000476 unsigned StackAlignment;
477
Kostya Serebryany6805de52013-09-10 13:16:56 +0000478 Function *AsanStackMallocFunc[kMaxAsanStackMallocSizeClass + 1],
479 *AsanStackFreeFunc[kMaxAsanStackMallocSizeClass + 1];
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000480 Function *AsanPoisonStackMemoryFunc, *AsanUnpoisonStackMemoryFunc;
481
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000482 // Stores a place and arguments of poisoning/unpoisoning call for alloca.
483 struct AllocaPoisonCall {
484 IntrinsicInst *InsBefore;
Alexey Samsonova788b942013-11-18 14:53:55 +0000485 AllocaInst *AI;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000486 uint64_t Size;
487 bool DoPoison;
488 };
489 SmallVector<AllocaPoisonCall, 8> AllocaPoisonCallVec;
490
491 // Maps Value to an AllocaInst from which the Value is originated.
492 typedef DenseMap<Value*, AllocaInst*> AllocaForValueMapTy;
493 AllocaForValueMapTy AllocaForValue;
494
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000495 FunctionStackPoisoner(Function &F, AddressSanitizer &ASan)
496 : F(F), ASan(ASan), DIB(*F.getParent()), C(ASan.C),
497 IntptrTy(ASan.IntptrTy), IntptrPtrTy(PointerType::get(IntptrTy, 0)),
Alexey Samsonov1345d352013-01-16 13:23:28 +0000498 Mapping(ASan.Mapping),
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000499 StackAlignment(1 << Mapping.Scale) {}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000500
501 bool runOnFunction() {
502 if (!ClStack) return false;
503 // Collect alloca, ret, lifetime instructions etc.
David Blaikieceec2bd2014-04-11 01:50:01 +0000504 for (BasicBlock *BB : depth_first(&F.getEntryBlock()))
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000505 visit(*BB);
David Blaikieceec2bd2014-04-11 01:50:01 +0000506
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000507 if (AllocaVec.empty()) return false;
508
509 initializeCallbacks(*F.getParent());
510
511 poisonStack();
512
513 if (ClDebugStack) {
514 DEBUG(dbgs() << F);
515 }
516 return true;
517 }
518
519 // Finds all static Alloca instructions and puts
520 // poisoned red zones around all of them.
521 // Then unpoison everything back before the function returns.
522 void poisonStack();
523
524 // ----------------------- Visitors.
525 /// \brief Collect all Ret instructions.
526 void visitReturnInst(ReturnInst &RI) {
527 RetVec.push_back(&RI);
528 }
529
530 /// \brief Collect Alloca instructions we want (and can) handle.
531 void visitAllocaInst(AllocaInst &AI) {
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000532 if (!isInterestingAlloca(AI)) return;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000533
534 StackAlignment = std::max(StackAlignment, AI.getAlignment());
535 AllocaVec.push_back(&AI);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000536 }
537
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000538 /// \brief Collect lifetime intrinsic calls to check for use-after-scope
539 /// errors.
540 void visitIntrinsicInst(IntrinsicInst &II) {
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000541 if (!ClCheckLifetime) return;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000542 Intrinsic::ID ID = II.getIntrinsicID();
543 if (ID != Intrinsic::lifetime_start &&
544 ID != Intrinsic::lifetime_end)
545 return;
546 // Found lifetime intrinsic, add ASan instrumentation if necessary.
547 ConstantInt *Size = dyn_cast<ConstantInt>(II.getArgOperand(0));
548 // If size argument is undefined, don't do anything.
549 if (Size->isMinusOne()) return;
550 // Check that size doesn't saturate uint64_t and can
551 // be stored in IntptrTy.
552 const uint64_t SizeValue = Size->getValue().getLimitedValue();
553 if (SizeValue == ~0ULL ||
554 !ConstantInt::isValueValidForType(IntptrTy, SizeValue))
555 return;
556 // Find alloca instruction that corresponds to llvm.lifetime argument.
557 AllocaInst *AI = findAllocaForValue(II.getArgOperand(1));
558 if (!AI) return;
559 bool DoPoison = (ID == Intrinsic::lifetime_end);
Alexey Samsonova788b942013-11-18 14:53:55 +0000560 AllocaPoisonCall APC = {&II, AI, SizeValue, DoPoison};
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000561 AllocaPoisonCallVec.push_back(APC);
562 }
563
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000564 // ---------------------- Helpers.
565 void initializeCallbacks(Module &M);
566
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000567 // Check if we want (and can) handle this alloca.
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000568 bool isInterestingAlloca(AllocaInst &AI) const {
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000569 return (!AI.isArrayAllocation() && AI.isStaticAlloca() &&
570 AI.getAllocatedType()->isSized() &&
571 // alloca() may be called with 0 size, ignore it.
572 getAllocaSizeInBytes(&AI) > 0);
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000573 }
574
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000575 uint64_t getAllocaSizeInBytes(AllocaInst *AI) const {
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000576 Type *Ty = AI->getAllocatedType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000577 uint64_t SizeInBytes = ASan.DL->getTypeAllocSize(Ty);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000578 return SizeInBytes;
579 }
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000580 /// Finds alloca where the value comes from.
581 AllocaInst *findAllocaForValue(Value *V);
Craig Topper3af97222014-08-27 05:25:00 +0000582 void poisonRedZones(ArrayRef<uint8_t> ShadowBytes, IRBuilder<> &IRB,
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000583 Value *ShadowBase, bool DoPoison);
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000584 void poisonAlloca(Value *V, uint64_t Size, IRBuilder<> &IRB, bool DoPoison);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +0000585
586 void SetShadowToStackAfterReturnInlined(IRBuilder<> &IRB, Value *ShadowBase,
587 int Size);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000588};
589
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000590} // namespace
591
592char AddressSanitizer::ID = 0;
593INITIALIZE_PASS(AddressSanitizer, "asan",
594 "AddressSanitizer: detects use-after-free and out-of-bounds bugs.",
595 false, false)
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000596FunctionPass *llvm::createAddressSanitizerFunctionPass() {
597 return new AddressSanitizer();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000598}
599
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000600char AddressSanitizerModule::ID = 0;
601INITIALIZE_PASS(AddressSanitizerModule, "asan-module",
602 "AddressSanitizer: detects use-after-free and out-of-bounds bugs."
603 "ModulePass", false, false)
Alexey Samsonovc94285a2014-07-08 00:50:49 +0000604ModulePass *llvm::createAddressSanitizerModulePass() {
605 return new AddressSanitizerModule();
Alexander Potapenkoc94cf8f2012-01-23 11:22:43 +0000606}
607
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000608static size_t TypeSizeToSizeIndex(uint32_t TypeSize) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000609 size_t Res = countTrailingZeros(TypeSize / 8);
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000610 assert(Res < kNumberOfAccessSizes);
611 return Res;
612}
613
Bill Wendling58f8cef2013-08-06 22:52:42 +0000614// \brief Create a constant for Str so that we can pass it to the run-time lib.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000615static GlobalVariable *createPrivateGlobalForString(
616 Module &M, StringRef Str, bool AllowMerging) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000617 Constant *StrConst = ConstantDataArray::getString(M.getContext(), Str);
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000618 // We use private linkage for module-local strings. If they can be merged
619 // with another one, we set the unnamed_addr attribute.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000620 GlobalVariable *GV =
621 new GlobalVariable(M, StrConst->getType(), true,
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000622 GlobalValue::PrivateLinkage, StrConst, kAsanGenPrefix);
623 if (AllowMerging)
624 GV->setUnnamedAddr(true);
Kostya Serebryany10cc12f2013-03-18 09:38:39 +0000625 GV->setAlignment(1); // Strings may not be merged w/o setting align 1.
626 return GV;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000627}
628
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +0000629/// \brief Create a global describing a source location.
630static GlobalVariable *createPrivateGlobalForSourceLoc(Module &M,
631 LocationMetadata MD) {
632 Constant *LocData[] = {
633 createPrivateGlobalForString(M, MD.Filename, true),
634 ConstantInt::get(Type::getInt32Ty(M.getContext()), MD.LineNo),
635 ConstantInt::get(Type::getInt32Ty(M.getContext()), MD.ColumnNo),
636 };
637 auto LocStruct = ConstantStruct::getAnon(LocData);
638 auto GV = new GlobalVariable(M, LocStruct->getType(), true,
639 GlobalValue::PrivateLinkage, LocStruct,
640 kAsanGenPrefix);
641 GV->setUnnamedAddr(true);
642 return GV;
643}
644
Kostya Serebryany139a9372012-11-20 14:16:08 +0000645static bool GlobalWasGeneratedByAsan(GlobalVariable *G) {
646 return G->getName().find(kAsanGenPrefix) == 0;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000647}
648
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000649Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) {
650 // Shadow >> scale
Alexey Samsonov1345d352013-01-16 13:23:28 +0000651 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale);
652 if (Mapping.Offset == 0)
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000653 return Shadow;
654 // (Shadow >> scale) | offset
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000655 if (Mapping.OrShadowOffset)
656 return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
657 else
658 return IRB.CreateAdd(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000659}
660
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000661// Instrument memset/memmove/memcpy
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000662void AddressSanitizer::instrumentMemIntrinsic(MemIntrinsic *MI) {
663 IRBuilder<> IRB(MI);
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000664 if (isa<MemTransferInst>(MI)) {
Evgeniy Stepanoved31ca42014-05-14 10:56:19 +0000665 IRB.CreateCall3(
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000666 isa<MemMoveInst>(MI) ? AsanMemmove : AsanMemcpy,
667 IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()),
668 IRB.CreatePointerCast(MI->getOperand(1), IRB.getInt8PtrTy()),
669 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false));
670 } else if (isa<MemSetInst>(MI)) {
Evgeniy Stepanoved31ca42014-05-14 10:56:19 +0000671 IRB.CreateCall3(
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000672 AsanMemset,
673 IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()),
674 IRB.CreateIntCast(MI->getOperand(1), IRB.getInt32Ty(), false),
675 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000676 }
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000677 MI->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000678}
679
Kostya Serebryany90241602012-05-30 09:04:06 +0000680// If I is an interesting memory access, return the PointerOperand
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000681// and set IsWrite/Alignment. Otherwise return NULL.
682static Value *isInterestingMemoryAccess(Instruction *I, bool *IsWrite,
683 unsigned *Alignment) {
Alexey Samsonov535b6f92014-07-17 18:48:12 +0000684 // Skip memory accesses inserted by another instrumentation.
685 if (I->getMetadata("nosanitize"))
686 return nullptr;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000687 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000688 if (!ClInstrumentReads) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000689 *IsWrite = false;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000690 *Alignment = LI->getAlignment();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000691 return LI->getPointerOperand();
692 }
Kostya Serebryany90241602012-05-30 09:04:06 +0000693 if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000694 if (!ClInstrumentWrites) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000695 *IsWrite = true;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000696 *Alignment = SI->getAlignment();
Kostya Serebryany90241602012-05-30 09:04:06 +0000697 return SI->getPointerOperand();
698 }
699 if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000700 if (!ClInstrumentAtomics) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000701 *IsWrite = true;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000702 *Alignment = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +0000703 return RMW->getPointerOperand();
704 }
705 if (AtomicCmpXchgInst *XCHG = dyn_cast<AtomicCmpXchgInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000706 if (!ClInstrumentAtomics) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000707 *IsWrite = true;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000708 *Alignment = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +0000709 return XCHG->getPointerOperand();
710 }
Craig Topperf40110f2014-04-25 05:29:35 +0000711 return nullptr;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000712}
713
Kostya Serebryany796f6552014-02-27 12:45:36 +0000714static bool isPointerOperand(Value *V) {
715 return V->getType()->isPointerTy() || isa<PtrToIntInst>(V);
716}
717
718// This is a rough heuristic; it may cause both false positives and
719// false negatives. The proper implementation requires cooperation with
720// the frontend.
721static bool isInterestingPointerComparisonOrSubtraction(Instruction *I) {
722 if (ICmpInst *Cmp = dyn_cast<ICmpInst>(I)) {
723 if (!Cmp->isRelational())
724 return false;
725 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) {
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +0000726 if (BO->getOpcode() != Instruction::Sub)
Kostya Serebryany796f6552014-02-27 12:45:36 +0000727 return false;
728 } else {
729 return false;
730 }
731 if (!isPointerOperand(I->getOperand(0)) ||
732 !isPointerOperand(I->getOperand(1)))
733 return false;
734 return true;
735}
736
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000737bool AddressSanitizer::GlobalIsLinkerInitialized(GlobalVariable *G) {
738 // If a global variable does not have dynamic initialization we don't
739 // have to instrument it. However, if a global does not have initializer
740 // at all, we assume it has dynamic initializer (in other TU).
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000741 return G->hasInitializer() && !GlobalsMD.get(G).IsDynInit;
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000742}
743
Kostya Serebryany796f6552014-02-27 12:45:36 +0000744void
745AddressSanitizer::instrumentPointerComparisonOrSubtraction(Instruction *I) {
746 IRBuilder<> IRB(I);
747 Function *F = isa<ICmpInst>(I) ? AsanPtrCmpFunction : AsanPtrSubFunction;
748 Value *Param[2] = {I->getOperand(0), I->getOperand(1)};
749 for (int i = 0; i < 2; i++) {
750 if (Param[i]->getType()->isPointerTy())
751 Param[i] = IRB.CreatePointerCast(Param[i], IntptrTy);
752 }
753 IRB.CreateCall2(F, Param[0], Param[1]);
754}
755
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000756void AddressSanitizer::instrumentMop(Instruction *I, bool UseCalls) {
Axel Naumann4a127062012-09-17 14:20:57 +0000757 bool IsWrite = false;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000758 unsigned Alignment = 0;
759 Value *Addr = isInterestingMemoryAccess(I, &IsWrite, &Alignment);
Kostya Serebryany90241602012-05-30 09:04:06 +0000760 assert(Addr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000761 if (ClOpt && ClOptGlobals) {
762 if (GlobalVariable *G = dyn_cast<GlobalVariable>(Addr)) {
763 // If initialization order checking is disabled, a simple access to a
764 // dynamically initialized global is always valid.
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000765 if (!ClInitializers || GlobalIsLinkerInitialized(G)) {
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000766 NumOptimizedAccessesToGlobalVar++;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000767 return;
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000768 }
769 }
770 ConstantExpr *CE = dyn_cast<ConstantExpr>(Addr);
771 if (CE && CE->isGEPWithNoNotionalOverIndexing()) {
772 if (GlobalVariable *G = dyn_cast<GlobalVariable>(CE->getOperand(0))) {
773 if (CE->getOperand(1)->isNullValue() && GlobalIsLinkerInitialized(G)) {
774 NumOptimizedAccessesToGlobalArray++;
775 return;
776 }
777 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000778 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000779 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000780
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000781 Type *OrigPtrTy = Addr->getType();
782 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType();
783
784 assert(OrigTy->isSized());
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000785 uint32_t TypeSize = DL->getTypeStoreSizeInBits(OrigTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000786
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000787 assert((TypeSize % 8) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000788
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000789 if (IsWrite)
790 NumInstrumentedWrites++;
791 else
792 NumInstrumentedReads++;
793
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000794 unsigned Granularity = 1 << Mapping.Scale;
795 // Instrument a 1-, 2-, 4-, 8-, or 16- byte access with one check
796 // if the data is properly aligned.
797 if ((TypeSize == 8 || TypeSize == 16 || TypeSize == 32 || TypeSize == 64 ||
798 TypeSize == 128) &&
799 (Alignment >= Granularity || Alignment == 0 || Alignment >= TypeSize / 8))
Craig Topperf40110f2014-04-25 05:29:35 +0000800 return instrumentAddress(I, I, Addr, TypeSize, IsWrite, nullptr, UseCalls);
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000801 // Instrument unusual size or unusual alignment.
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000802 // We can not do it with a single check, so we do 1-byte check for the first
803 // and the last bytes. We call __asan_report_*_n(addr, real_size) to be able
804 // to report the actual access size.
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000805 IRBuilder<> IRB(I);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000806 Value *Size = ConstantInt::get(IntptrTy, TypeSize / 8);
Kostya Serebryanyc9a2c172014-04-22 11:19:45 +0000807 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
808 if (UseCalls) {
Evgeniy Stepanoved31ca42014-05-14 10:56:19 +0000809 IRB.CreateCall2(AsanMemoryAccessCallbackSized[IsWrite], AddrLong, Size);
Kostya Serebryanyc9a2c172014-04-22 11:19:45 +0000810 } else {
811 Value *LastByte = IRB.CreateIntToPtr(
812 IRB.CreateAdd(AddrLong, ConstantInt::get(IntptrTy, TypeSize / 8 - 1)),
813 OrigPtrTy);
814 instrumentAddress(I, I, Addr, 8, IsWrite, Size, false);
815 instrumentAddress(I, I, LastByte, 8, IsWrite, Size, false);
816 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000817}
818
Alexander Potapenko056e27e2012-04-23 10:47:31 +0000819// Validate the result of Module::getOrInsertFunction called for an interface
820// function of AddressSanitizer. If the instrumented module defines a function
821// with the same name, their prototypes must match, otherwise
822// getOrInsertFunction returns a bitcast.
Kostya Serebryany20a79972012-11-22 03:18:50 +0000823static Function *checkInterfaceFunction(Constant *FuncOrBitcast) {
Alexander Potapenko056e27e2012-04-23 10:47:31 +0000824 if (isa<Function>(FuncOrBitcast)) return cast<Function>(FuncOrBitcast);
825 FuncOrBitcast->dump();
826 report_fatal_error("trying to redefine an AddressSanitizer "
827 "interface function");
828}
829
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000830Instruction *AddressSanitizer::generateCrashCode(
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000831 Instruction *InsertBefore, Value *Addr,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000832 bool IsWrite, size_t AccessSizeIndex, Value *SizeArgument) {
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000833 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000834 CallInst *Call = SizeArgument
835 ? IRB.CreateCall2(AsanErrorCallbackSized[IsWrite], Addr, SizeArgument)
836 : IRB.CreateCall(AsanErrorCallback[IsWrite][AccessSizeIndex], Addr);
837
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000838 // We don't do Call->setDoesNotReturn() because the BB already has
839 // UnreachableInst at the end.
840 // This EmptyAsm is required to avoid callback merge.
841 IRB.CreateCall(EmptyAsm);
Kostya Serebryany3411f2e2012-01-06 18:09:21 +0000842 return Call;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000843}
844
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000845Value *AddressSanitizer::createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
Kostya Serebryany874dae62012-07-16 16:15:40 +0000846 Value *ShadowValue,
847 uint32_t TypeSize) {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000848 size_t Granularity = 1 << Mapping.Scale;
Kostya Serebryany874dae62012-07-16 16:15:40 +0000849 // Addr & (Granularity - 1)
850 Value *LastAccessedByte = IRB.CreateAnd(
851 AddrLong, ConstantInt::get(IntptrTy, Granularity - 1));
852 // (Addr & (Granularity - 1)) + size - 1
853 if (TypeSize / 8 > 1)
854 LastAccessedByte = IRB.CreateAdd(
855 LastAccessedByte, ConstantInt::get(IntptrTy, TypeSize / 8 - 1));
856 // (uint8_t) ((Addr & (Granularity-1)) + size - 1)
857 LastAccessedByte = IRB.CreateIntCast(
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000858 LastAccessedByte, ShadowValue->getType(), false);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000859 // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue
860 return IRB.CreateICmpSGE(LastAccessedByte, ShadowValue);
861}
862
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000863void AddressSanitizer::instrumentAddress(Instruction *OrigIns,
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000864 Instruction *InsertBefore, Value *Addr,
865 uint32_t TypeSize, bool IsWrite,
866 Value *SizeArgument, bool UseCalls) {
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000867 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000868 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000869 size_t AccessSizeIndex = TypeSizeToSizeIndex(TypeSize);
870
871 if (UseCalls) {
Kostya Serebryany94f57d192014-04-21 10:28:13 +0000872 IRB.CreateCall(AsanMemoryAccessCallback[IsWrite][AccessSizeIndex],
873 AddrLong);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000874 return;
875 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000876
877 Type *ShadowTy = IntegerType::get(
Alexey Samsonov1345d352013-01-16 13:23:28 +0000878 *C, std::max(8U, TypeSize >> Mapping.Scale));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000879 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0);
880 Value *ShadowPtr = memToShadow(AddrLong, IRB);
881 Value *CmpVal = Constant::getNullValue(ShadowTy);
882 Value *ShadowValue = IRB.CreateLoad(
883 IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy));
884
885 Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal);
Alexey Samsonov1345d352013-01-16 13:23:28 +0000886 size_t Granularity = 1 << Mapping.Scale;
Craig Topperf40110f2014-04-25 05:29:35 +0000887 TerminatorInst *CrashTerm = nullptr;
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000888
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000889 if (ClAlwaysSlowPath || (TypeSize < 8 * Granularity)) {
Kostya Serebryanyad238522014-09-02 21:46:51 +0000890 // We use branch weights for the slow path check, to indicate that the slow
891 // path is rarely taken. This seems to be the case for SPEC benchmarks.
Evgeniy Stepanov8eb77d82012-10-19 10:48:31 +0000892 TerminatorInst *CheckTerm =
Kostya Serebryanyad238522014-09-02 21:46:51 +0000893 SplitBlockAndInsertIfThen(Cmp, InsertBefore, false,
894 MDBuilder(*C).createBranchWeights(1, 100000));
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000895 assert(dyn_cast<BranchInst>(CheckTerm)->isUnconditional());
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000896 BasicBlock *NextBB = CheckTerm->getSuccessor(0);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000897 IRB.SetInsertPoint(CheckTerm);
898 Value *Cmp2 = createSlowPathCmp(IRB, AddrLong, ShadowValue, TypeSize);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000899 BasicBlock *CrashBlock =
900 BasicBlock::Create(*C, "", NextBB->getParent(), NextBB);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000901 CrashTerm = new UnreachableInst(*C, CrashBlock);
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000902 BranchInst *NewTerm = BranchInst::Create(CrashBlock, NextBB, Cmp2);
903 ReplaceInstWithInst(CheckTerm, NewTerm);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000904 } else {
Evgeniy Stepanova9164e92013-12-19 13:29:56 +0000905 CrashTerm = SplitBlockAndInsertIfThen(Cmp, InsertBefore, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000906 }
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000907
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000908 Instruction *Crash = generateCrashCode(
909 CrashTerm, AddrLong, IsWrite, AccessSizeIndex, SizeArgument);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000910 Crash->setDebugLoc(OrigIns->getDebugLoc());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000911}
912
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000913void AddressSanitizerModule::poisonOneInitializer(Function &GlobalInit,
914 GlobalValue *ModuleName) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000915 // Set up the arguments to our poison/unpoison functions.
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000916 IRBuilder<> IRB(GlobalInit.begin()->getFirstInsertionPt());
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000917
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000918 // Add a call to poison all external globals before the given function starts.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000919 Value *ModuleNameAddr = ConstantExpr::getPointerCast(ModuleName, IntptrTy);
920 IRB.CreateCall(AsanPoisonGlobals, ModuleNameAddr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000921
922 // Add calls to unpoison all globals before each return instruction.
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000923 for (auto &BB : GlobalInit.getBasicBlockList())
924 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB.getTerminator()))
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000925 CallInst::Create(AsanUnpoisonGlobals, "", RI);
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000926}
927
928void AddressSanitizerModule::createInitializerPoisonCalls(
929 Module &M, GlobalValue *ModuleName) {
930 GlobalVariable *GV = M.getGlobalVariable("llvm.global_ctors");
931
932 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
933 for (Use &OP : CA->operands()) {
934 if (isa<ConstantAggregateZero>(OP))
935 continue;
936 ConstantStruct *CS = cast<ConstantStruct>(OP);
937
938 // Must have a function or null ptr.
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000939 if (Function* F = dyn_cast<Function>(CS->getOperand(1))) {
Kostya Serebryany34ddf872014-09-24 22:41:55 +0000940 if (F->getName() == kAsanModuleCtorName) continue;
941 ConstantInt *Priority = dyn_cast<ConstantInt>(CS->getOperand(0));
942 // Don't instrument CTORs that will run before asan.module_ctor.
943 if (Priority->getLimitedValue() <= kAsanCtorAndDtorPriority) continue;
944 poisonOneInitializer(*F, ModuleName);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000945 }
946 }
947}
948
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000949bool AddressSanitizerModule::ShouldInstrumentGlobal(GlobalVariable *G) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000950 Type *Ty = cast<PointerType>(G->getType())->getElementType();
Kostya Serebryany20343352012-10-17 13:40:06 +0000951 DEBUG(dbgs() << "GLOBAL: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000952
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000953 if (GlobalsMD.get(G).IsBlacklisted) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000954 if (!Ty->isSized()) return false;
955 if (!G->hasInitializer()) return false;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000956 if (GlobalWasGeneratedByAsan(G)) return false; // Our own global.
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000957 // Touch only those globals that will not be defined in other modules.
Timur Iskhodzhanove40fb372014-07-09 08:35:33 +0000958 // Don't handle ODR linkage types and COMDATs since other modules may be built
959 // without ASan.
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000960 if (G->getLinkage() != GlobalVariable::ExternalLinkage &&
961 G->getLinkage() != GlobalVariable::PrivateLinkage &&
962 G->getLinkage() != GlobalVariable::InternalLinkage)
963 return false;
Timur Iskhodzhanove40fb372014-07-09 08:35:33 +0000964 if (G->hasComdat())
965 return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000966 // Two problems with thread-locals:
967 // - The address of the main thread's copy can't be computed at link-time.
968 // - Need to poison all copies, not just the main thread's one.
969 if (G->isThreadLocal())
970 return false;
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000971 // For now, just ignore this Global if the alignment is large.
972 if (G->getAlignment() > MinRedzoneSizeForGlobal()) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000973
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000974 if (G->hasSection()) {
975 StringRef Section(G->getSection());
976 // Ignore the globals from the __OBJC section. The ObjC runtime assumes
977 // those conform to /usr/lib/objc/runtime.h, so we can't add redzones to
978 // them.
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000979 if (Section.startswith("__OBJC,") ||
980 Section.startswith("__DATA, __objc_")) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000981 DEBUG(dbgs() << "Ignoring ObjC runtime global: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000982 return false;
983 }
984 // See http://code.google.com/p/address-sanitizer/issues/detail?id=32
985 // Constant CFString instances are compiled in the following way:
986 // -- the string buffer is emitted into
987 // __TEXT,__cstring,cstring_literals
988 // -- the constant NSConstantString structure referencing that buffer
989 // is placed into __DATA,__cfstring
990 // Therefore there's no point in placing redzones into __DATA,__cfstring.
991 // Moreover, it causes the linker to crash on OS X 10.7
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000992 if (Section.startswith("__DATA,__cfstring")) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000993 DEBUG(dbgs() << "Ignoring CFString: " << *G << "\n");
994 return false;
995 }
996 // The linker merges the contents of cstring_literals and removes the
997 // trailing zeroes.
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000998 if (Section.startswith("__TEXT,__cstring,cstring_literals")) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000999 DEBUG(dbgs() << "Ignoring a cstring literal: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001000 return false;
1001 }
Rafael Espindolab7a45052014-11-06 20:01:34 +00001002 if (Section.startswith("__TEXT,__objc_methname,cstring_literals")) {
1003 DEBUG(dbgs() << "Ignoring objc_methname cstring global: " << *G << "\n");
1004 return false;
1005 }
1006
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +00001007
1008 // Callbacks put into the CRT initializer/terminator sections
1009 // should not be instrumented.
1010 // See https://code.google.com/p/address-sanitizer/issues/detail?id=305
1011 // and http://msdn.microsoft.com/en-US/en-en/library/bb918180(v=vs.120).aspx
1012 if (Section.startswith(".CRT")) {
1013 DEBUG(dbgs() << "Ignoring a global initializer callback: " << *G << "\n");
1014 return false;
1015 }
1016
Alexander Potapenko04969e82014-03-20 10:48:34 +00001017 // Globals from llvm.metadata aren't emitted, do not instrument them.
1018 if (Section == "llvm.metadata") return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001019 }
1020
1021 return true;
1022}
1023
Alexey Samsonov788381b2012-12-25 12:28:20 +00001024void AddressSanitizerModule::initializeCallbacks(Module &M) {
1025 IRBuilder<> IRB(*C);
1026 // Declare our poisoning and unpoisoning functions.
1027 AsanPoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001028 kAsanPoisonGlobalsName, IRB.getVoidTy(), IntptrTy, NULL));
Alexey Samsonov788381b2012-12-25 12:28:20 +00001029 AsanPoisonGlobals->setLinkage(Function::ExternalLinkage);
1030 AsanUnpoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
1031 kAsanUnpoisonGlobalsName, IRB.getVoidTy(), NULL));
1032 AsanUnpoisonGlobals->setLinkage(Function::ExternalLinkage);
1033 // Declare functions that register/unregister globals.
1034 AsanRegisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
1035 kAsanRegisterGlobalsName, IRB.getVoidTy(),
1036 IntptrTy, IntptrTy, NULL));
1037 AsanRegisterGlobals->setLinkage(Function::ExternalLinkage);
1038 AsanUnregisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
1039 kAsanUnregisterGlobalsName,
1040 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1041 AsanUnregisterGlobals->setLinkage(Function::ExternalLinkage);
Evgeniy Stepanov47b1a952014-05-27 12:39:31 +00001042 AsanCovModuleInit = checkInterfaceFunction(M.getOrInsertFunction(
1043 kAsanCovModuleInitName,
1044 IRB.getVoidTy(), IntptrTy, NULL));
1045 AsanCovModuleInit->setLinkage(Function::ExternalLinkage);
Alexey Samsonov788381b2012-12-25 12:28:20 +00001046}
1047
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001048// This function replaces all global variables with new variables that have
1049// trailing redzones. It also creates a function that poisons
1050// redzones and inserts this function into llvm.global_ctors.
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001051bool AddressSanitizerModule::InstrumentGlobals(IRBuilder<> &IRB, Module &M) {
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001052 GlobalsMD.init(M);
Kostya Serebryany20a79972012-11-22 03:18:50 +00001053
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001054 SmallVector<GlobalVariable *, 16> GlobalsToChange;
1055
Alexey Samsonova02e6642014-05-29 18:40:48 +00001056 for (auto &G : M.globals()) {
1057 if (ShouldInstrumentGlobal(&G))
1058 GlobalsToChange.push_back(&G);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001059 }
1060
1061 size_t n = GlobalsToChange.size();
1062 if (n == 0) return false;
1063
1064 // A global is described by a structure
1065 // size_t beg;
1066 // size_t size;
1067 // size_t size_with_redzone;
1068 // const char *name;
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001069 // const char *module_name;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001070 // size_t has_dynamic_init;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001071 // void *source_location;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001072 // We initialize an array of such structures and pass it to a run-time call.
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001073 StructType *GlobalStructTy =
1074 StructType::get(IntptrTy, IntptrTy, IntptrTy, IntptrTy, IntptrTy,
1075 IntptrTy, IntptrTy, NULL);
Rafael Espindola44fee4e2013-10-01 13:32:03 +00001076 SmallVector<Constant *, 16> Initializers(n);
Kostya Serebryany20a79972012-11-22 03:18:50 +00001077
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001078 bool HasDynamicallyInitializedGlobals = false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001079
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001080 // We shouldn't merge same module names, as this string serves as unique
1081 // module ID in runtime.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001082 GlobalVariable *ModuleName = createPrivateGlobalForString(
1083 M, M.getModuleIdentifier(), /*AllowMerging*/false);
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001084
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001085 for (size_t i = 0; i < n; i++) {
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001086 static const uint64_t kMaxGlobalRedzone = 1 << 18;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001087 GlobalVariable *G = GlobalsToChange[i];
Alexey Samsonov15c96692014-07-12 00:42:52 +00001088
1089 auto MD = GlobalsMD.get(G);
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +00001090 // Create string holding the global name (use global name from metadata
1091 // if it's available, otherwise just write the name of global variable).
1092 GlobalVariable *Name = createPrivateGlobalForString(
1093 M, MD.Name.empty() ? G->getName() : MD.Name,
1094 /*AllowMerging*/ true);
Alexey Samsonov15c96692014-07-12 00:42:52 +00001095
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001096 PointerType *PtrTy = cast<PointerType>(G->getType());
1097 Type *Ty = PtrTy->getElementType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001098 uint64_t SizeInBytes = DL->getTypeAllocSize(Ty);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001099 uint64_t MinRZ = MinRedzoneSizeForGlobal();
Kostya Serebryany87191f62013-01-24 10:35:40 +00001100 // MinRZ <= RZ <= kMaxGlobalRedzone
1101 // and trying to make RZ to be ~ 1/4 of SizeInBytes.
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001102 uint64_t RZ = std::max(MinRZ,
Kostya Serebryany87191f62013-01-24 10:35:40 +00001103 std::min(kMaxGlobalRedzone,
1104 (SizeInBytes / MinRZ / 4) * MinRZ));
1105 uint64_t RightRedzoneSize = RZ;
1106 // Round up to MinRZ
1107 if (SizeInBytes % MinRZ)
1108 RightRedzoneSize += MinRZ - (SizeInBytes % MinRZ);
1109 assert(((RightRedzoneSize + SizeInBytes) % MinRZ) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001110 Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize);
1111
1112 StructType *NewTy = StructType::get(Ty, RightRedZoneTy, NULL);
1113 Constant *NewInitializer = ConstantStruct::get(
1114 NewTy, G->getInitializer(),
1115 Constant::getNullValue(RightRedZoneTy), NULL);
1116
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001117 // Create a new global variable with enough space for a redzone.
Bill Wendling58f8cef2013-08-06 22:52:42 +00001118 GlobalValue::LinkageTypes Linkage = G->getLinkage();
1119 if (G->isConstant() && Linkage == GlobalValue::PrivateLinkage)
1120 Linkage = GlobalValue::InternalLinkage;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001121 GlobalVariable *NewGlobal = new GlobalVariable(
Bill Wendling58f8cef2013-08-06 22:52:42 +00001122 M, NewTy, G->isConstant(), Linkage,
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001123 NewInitializer, "", G, G->getThreadLocalMode());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001124 NewGlobal->copyAttributesFrom(G);
Kostya Serebryany87191f62013-01-24 10:35:40 +00001125 NewGlobal->setAlignment(MinRZ);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001126
1127 Value *Indices2[2];
1128 Indices2[0] = IRB.getInt32(0);
1129 Indices2[1] = IRB.getInt32(0);
1130
1131 G->replaceAllUsesWith(
Kostya Serebryany7471d132012-01-28 04:27:16 +00001132 ConstantExpr::getGetElementPtr(NewGlobal, Indices2, true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001133 NewGlobal->takeName(G);
1134 G->eraseFromParent();
1135
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +00001136 Constant *SourceLoc;
1137 if (!MD.SourceLoc.empty()) {
1138 auto SourceLocGlobal = createPrivateGlobalForSourceLoc(M, MD.SourceLoc);
1139 SourceLoc = ConstantExpr::getPointerCast(SourceLocGlobal, IntptrTy);
1140 } else {
1141 SourceLoc = ConstantInt::get(IntptrTy, 0);
1142 }
1143
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001144 Initializers[i] = ConstantStruct::get(
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001145 GlobalStructTy, ConstantExpr::getPointerCast(NewGlobal, IntptrTy),
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001146 ConstantInt::get(IntptrTy, SizeInBytes),
1147 ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize),
1148 ConstantExpr::getPointerCast(Name, IntptrTy),
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001149 ConstantExpr::getPointerCast(ModuleName, IntptrTy),
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +00001150 ConstantInt::get(IntptrTy, MD.IsDynInit), SourceLoc, NULL);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001151
Alexey Samsonov08f022a2014-07-11 22:36:02 +00001152 if (ClInitializers && MD.IsDynInit)
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001153 HasDynamicallyInitializedGlobals = true;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001154
Kostya Serebryany20343352012-10-17 13:40:06 +00001155 DEBUG(dbgs() << "NEW GLOBAL: " << *NewGlobal << "\n");
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001156 }
1157
1158 ArrayType *ArrayOfGlobalStructTy = ArrayType::get(GlobalStructTy, n);
1159 GlobalVariable *AllGlobals = new GlobalVariable(
Bill Wendling58f8cef2013-08-06 22:52:42 +00001160 M, ArrayOfGlobalStructTy, false, GlobalVariable::InternalLinkage,
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001161 ConstantArray::get(ArrayOfGlobalStructTy, Initializers), "");
1162
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001163 // Create calls for poisoning before initializers run and unpoisoning after.
Alexey Samsonove595e1a2014-06-13 17:53:44 +00001164 if (HasDynamicallyInitializedGlobals)
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001165 createInitializerPoisonCalls(M, ModuleName);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001166 IRB.CreateCall2(AsanRegisterGlobals,
1167 IRB.CreatePointerCast(AllGlobals, IntptrTy),
1168 ConstantInt::get(IntptrTy, n));
1169
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001170 // We also need to unregister globals at the end, e.g. when a shared library
1171 // gets closed.
1172 Function *AsanDtorFunction = Function::Create(
1173 FunctionType::get(Type::getVoidTy(*C), false),
1174 GlobalValue::InternalLinkage, kAsanModuleDtorName, &M);
1175 BasicBlock *AsanDtorBB = BasicBlock::Create(*C, "", AsanDtorFunction);
1176 IRBuilder<> IRB_Dtor(ReturnInst::Create(*C, AsanDtorBB));
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001177 IRB_Dtor.CreateCall2(AsanUnregisterGlobals,
1178 IRB.CreatePointerCast(AllGlobals, IntptrTy),
1179 ConstantInt::get(IntptrTy, n));
Alexey Samsonov1f647502014-05-29 01:10:14 +00001180 appendToGlobalDtors(M, AsanDtorFunction, kAsanCtorAndDtorPriority);
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001181
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001182 DEBUG(dbgs() << M);
1183 return true;
1184}
1185
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001186bool AddressSanitizerModule::runOnModule(Module &M) {
1187 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
1188 if (!DLP)
1189 return false;
1190 DL = &DLP->getDataLayout();
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001191 C = &(M.getContext());
1192 int LongSize = DL->getPointerSizeInBits();
1193 IntptrTy = Type::getIntNTy(*C, LongSize);
1194 Mapping = getShadowMapping(M, LongSize);
1195 initializeCallbacks(M);
1196
1197 bool Changed = false;
1198
1199 Function *CtorFunc = M.getFunction(kAsanModuleCtorName);
1200 assert(CtorFunc);
1201 IRBuilder<> IRB(CtorFunc->getEntryBlock().getTerminator());
1202
1203 if (ClCoverage > 0) {
1204 Function *CovFunc = M.getFunction(kAsanCovName);
1205 int nCov = CovFunc ? CovFunc->getNumUses() : 0;
1206 IRB.CreateCall(AsanCovModuleInit, ConstantInt::get(IntptrTy, nCov));
1207 Changed = true;
1208 }
1209
Alexey Samsonovc94285a2014-07-08 00:50:49 +00001210 if (ClGlobals)
1211 Changed |= InstrumentGlobals(IRB, M);
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001212
1213 return Changed;
1214}
1215
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001216void AddressSanitizer::initializeCallbacks(Module &M) {
1217 IRBuilder<> IRB(*C);
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001218 // Create __asan_report* callbacks.
1219 for (size_t AccessIsWrite = 0; AccessIsWrite <= 1; AccessIsWrite++) {
1220 for (size_t AccessSizeIndex = 0; AccessSizeIndex < kNumberOfAccessSizes;
1221 AccessSizeIndex++) {
1222 // IsWrite and TypeSize are encoded in the function name.
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001223 std::string Suffix =
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001224 (AccessIsWrite ? "store" : "load") + itostr(1 << AccessSizeIndex);
Kostya Serebryany157a5152012-11-07 12:42:18 +00001225 AsanErrorCallback[AccessIsWrite][AccessSizeIndex] =
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001226 checkInterfaceFunction(
1227 M.getOrInsertFunction(kAsanReportErrorTemplate + Suffix,
1228 IRB.getVoidTy(), IntptrTy, NULL));
1229 AsanMemoryAccessCallback[AccessIsWrite][AccessSizeIndex] =
1230 checkInterfaceFunction(
1231 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + Suffix,
1232 IRB.getVoidTy(), IntptrTy, NULL));
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001233 }
1234 }
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +00001235 AsanErrorCallbackSized[0] = checkInterfaceFunction(M.getOrInsertFunction(
1236 kAsanReportLoadN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1237 AsanErrorCallbackSized[1] = checkInterfaceFunction(M.getOrInsertFunction(
1238 kAsanReportStoreN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001239
Kostya Serebryany86332c02014-04-21 07:10:43 +00001240 AsanMemoryAccessCallbackSized[0] = checkInterfaceFunction(
1241 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + "loadN",
1242 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1243 AsanMemoryAccessCallbackSized[1] = checkInterfaceFunction(
1244 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + "storeN",
1245 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1246
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00001247 AsanMemmove = checkInterfaceFunction(M.getOrInsertFunction(
1248 ClMemoryAccessCallbackPrefix + "memmove", IRB.getInt8PtrTy(),
1249 IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IntptrTy, NULL));
1250 AsanMemcpy = checkInterfaceFunction(M.getOrInsertFunction(
1251 ClMemoryAccessCallbackPrefix + "memcpy", IRB.getInt8PtrTy(),
1252 IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IntptrTy, NULL));
1253 AsanMemset = checkInterfaceFunction(M.getOrInsertFunction(
1254 ClMemoryAccessCallbackPrefix + "memset", IRB.getInt8PtrTy(),
1255 IRB.getInt8PtrTy(), IRB.getInt32Ty(), IntptrTy, NULL));
1256
1257 AsanHandleNoReturnFunc = checkInterfaceFunction(
1258 M.getOrInsertFunction(kAsanHandleNoReturnName, IRB.getVoidTy(), NULL));
Bob Wilsonda4147c2013-11-15 07:16:09 +00001259 AsanCovFunction = checkInterfaceFunction(M.getOrInsertFunction(
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001260 kAsanCovName, IRB.getVoidTy(), NULL));
Kostya Serebryany4f8f0c52014-10-27 18:13:56 +00001261 AsanCovIndirCallFunction = checkInterfaceFunction(M.getOrInsertFunction(
1262 kAsanCovIndirCallName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1263
Kostya Serebryany796f6552014-02-27 12:45:36 +00001264 AsanPtrCmpFunction = checkInterfaceFunction(M.getOrInsertFunction(
1265 kAsanPtrCmp, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1266 AsanPtrSubFunction = checkInterfaceFunction(M.getOrInsertFunction(
1267 kAsanPtrSub, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
Kostya Serebryanyf02c6062012-07-20 09:54:50 +00001268 // We insert an empty inline asm after __asan_report* to avoid callback merge.
1269 EmptyAsm = InlineAsm::get(FunctionType::get(IRB.getVoidTy(), false),
1270 StringRef(""), StringRef(""),
1271 /*hasSideEffects=*/true);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001272}
1273
1274// virtual
1275bool AddressSanitizer::doInitialization(Module &M) {
1276 // Initialize the private fields. No one has accessed them before.
Rafael Espindola93512512014-02-25 17:30:31 +00001277 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
1278 if (!DLP)
Evgeniy Stepanov119cb2e2014-04-23 12:51:32 +00001279 report_fatal_error("data layout missing");
Rafael Espindola93512512014-02-25 17:30:31 +00001280 DL = &DLP->getDataLayout();
1281
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001282 GlobalsMD.init(M);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001283
1284 C = &(M.getContext());
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001285 LongSize = DL->getPointerSizeInBits();
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001286 IntptrTy = Type::getIntNTy(*C, LongSize);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001287
1288 AsanCtorFunction = Function::Create(
1289 FunctionType::get(Type::getVoidTy(*C), false),
1290 GlobalValue::InternalLinkage, kAsanModuleCtorName, &M);
1291 BasicBlock *AsanCtorBB = BasicBlock::Create(*C, "", AsanCtorFunction);
1292 // call __asan_init in the module ctor.
1293 IRBuilder<> IRB(ReturnInst::Create(*C, AsanCtorBB));
1294 AsanInitFunction = checkInterfaceFunction(
1295 M.getOrInsertFunction(kAsanInitName, IRB.getVoidTy(), NULL));
1296 AsanInitFunction->setLinkage(Function::ExternalLinkage);
1297 IRB.CreateCall(AsanInitFunction);
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001298
Evgeniy Stepanov13665362014-01-16 10:19:12 +00001299 Mapping = getShadowMapping(M, LongSize);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001300
Alexey Samsonov1f647502014-05-29 01:10:14 +00001301 appendToGlobalCtors(M, AsanCtorFunction, kAsanCtorAndDtorPriority);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001302 return true;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001303}
1304
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001305bool AddressSanitizer::maybeInsertAsanInitAtFunctionEntry(Function &F) {
1306 // For each NSObject descendant having a +load method, this method is invoked
1307 // by the ObjC runtime before any of the static constructors is called.
1308 // Therefore we need to instrument such methods with a call to __asan_init
1309 // at the beginning in order to initialize our runtime before any access to
1310 // the shadow memory.
1311 // We cannot just ignore these methods, because they may call other
1312 // instrumented functions.
1313 if (F.getName().find(" load]") != std::string::npos) {
1314 IRBuilder<> IRB(F.begin()->begin());
1315 IRB.CreateCall(AsanInitFunction);
1316 return true;
1317 }
1318 return false;
1319}
1320
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001321void AddressSanitizer::InjectCoverageAtBlock(Function &F, BasicBlock &BB) {
1322 BasicBlock::iterator IP = BB.getFirstInsertionPt(), BE = BB.end();
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001323 // Skip static allocas at the top of the entry block so they don't become
1324 // dynamic when we split the block. If we used our optimized stack layout,
1325 // then there will only be one alloca and it will come first.
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001326 for (; IP != BE; ++IP) {
1327 AllocaInst *AI = dyn_cast<AllocaInst>(IP);
1328 if (!AI || !AI->isStaticAlloca())
1329 break;
1330 }
1331
Kostya Serebryany31755212014-09-03 23:24:18 +00001332 DebugLoc EntryLoc = &BB == &F.getEntryBlock()
1333 ? IP->getDebugLoc().getFnDebugLoc(*C)
1334 : IP->getDebugLoc();
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001335 IRBuilder<> IRB(IP);
Evgeniy Stepanov493df132014-06-05 14:34:45 +00001336 IRB.SetCurrentDebugLocation(EntryLoc);
Bob Wilsonda4147c2013-11-15 07:16:09 +00001337 Type *Int8Ty = IRB.getInt8Ty();
1338 GlobalVariable *Guard = new GlobalVariable(
Kostya Serebryany0604c622013-11-15 09:52:05 +00001339 *F.getParent(), Int8Ty, false, GlobalValue::PrivateLinkage,
Bob Wilsonda4147c2013-11-15 07:16:09 +00001340 Constant::getNullValue(Int8Ty), "__asan_gen_cov_" + F.getName());
1341 LoadInst *Load = IRB.CreateLoad(Guard);
1342 Load->setAtomic(Monotonic);
1343 Load->setAlignment(1);
1344 Value *Cmp = IRB.CreateICmpEQ(Constant::getNullValue(Int8Ty), Load);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001345 Instruction *Ins = SplitBlockAndInsertIfThen(
1346 Cmp, IP, false, MDBuilder(*C).createBranchWeights(1, 100000));
Bob Wilsonda4147c2013-11-15 07:16:09 +00001347 IRB.SetInsertPoint(Ins);
Evgeniy Stepanov493df132014-06-05 14:34:45 +00001348 IRB.SetCurrentDebugLocation(EntryLoc);
Alexey Samsonovbad4d0c2014-07-22 17:46:09 +00001349 // __sanitizer_cov gets the PC of the instruction using GET_CALLER_PC.
Evgeniy Stepanov493df132014-06-05 14:34:45 +00001350 IRB.CreateCall(AsanCovFunction);
Bob Wilsonda4147c2013-11-15 07:16:09 +00001351 StoreInst *Store = IRB.CreateStore(ConstantInt::get(Int8Ty, 1), Guard);
1352 Store->setAtomic(Monotonic);
1353 Store->setAlignment(1);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001354}
1355
1356// Poor man's coverage that works with ASan.
1357// We create a Guard boolean variable with the same linkage
1358// as the function and inject this code into the entry block (-asan-coverage=1)
1359// or all blocks (-asan-coverage=2):
1360// if (*Guard) {
Alexey Samsonovbad4d0c2014-07-22 17:46:09 +00001361// __sanitizer_cov();
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001362// *Guard = 1;
1363// }
1364// The accesses to Guard are atomic. The rest of the logic is
1365// in __sanitizer_cov (it's fine to call it more than once).
1366//
1367// This coverage implementation provides very limited data:
1368// it only tells if a given function (block) was ever executed.
1369// No counters, no per-edge data.
1370// But for many use cases this is what we need and the added slowdown
1371// is negligible. This simple implementation will probably be obsoleted
1372// by the upcoming Clang-based coverage implementation.
1373// By having it here and now we hope to
1374// a) get the functionality to users earlier and
1375// b) collect usage statistics to help improve Clang coverage design.
1376bool AddressSanitizer::InjectCoverage(Function &F,
Kostya Serebryany4f8f0c52014-10-27 18:13:56 +00001377 ArrayRef<BasicBlock *> AllBlocks,
1378 ArrayRef<Instruction*> IndirCalls) {
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001379 if (!ClCoverage) return false;
1380
Kostya Serebryany22e88102014-04-18 08:02:42 +00001381 if (ClCoverage == 1 ||
1382 (unsigned)ClCoverageBlockThreshold < AllBlocks.size()) {
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001383 InjectCoverageAtBlock(F, F.getEntryBlock());
1384 } else {
Alexey Samsonova02e6642014-05-29 18:40:48 +00001385 for (auto BB : AllBlocks)
1386 InjectCoverageAtBlock(F, *BB);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001387 }
Kostya Serebryany4f8f0c52014-10-27 18:13:56 +00001388 InjectCoverageForIndirectCalls(F, IndirCalls);
Bob Wilsonda4147c2013-11-15 07:16:09 +00001389 return true;
1390}
1391
Kostya Serebryany4f8f0c52014-10-27 18:13:56 +00001392// On every indirect call we call a run-time function
1393// __sanitizer_cov_indir_call* with two parameters:
1394// - callee address,
1395// - global cache array that contains kCacheSize pointers (zero-initialed).
1396// The cache is used to speed up recording the caller-callee pairs.
1397// The address of the caller is passed implicitly via caller PC.
1398// kCacheSize is encoded in the name of the run-time function.
1399void AddressSanitizer::InjectCoverageForIndirectCalls(
1400 Function &F, ArrayRef<Instruction *> IndirCalls) {
1401 if (ClCoverage < 4 || IndirCalls.empty()) return;
1402 const int kCacheSize = 16;
1403 const int kCacheAlignment = 64; // Align for better performance.
1404 Type *Ty = ArrayType::get(IntptrTy, kCacheSize);
Kostya Serebryany4f8f0c52014-10-27 18:13:56 +00001405 for (auto I : IndirCalls) {
1406 IRBuilder<> IRB(I);
1407 CallSite CS(I);
Kostya Serebryanyea48bdc2014-10-31 18:38:23 +00001408 Value *Callee = CS.getCalledValue();
1409 if (dyn_cast<InlineAsm>(Callee)) continue;
Kostya Serebryany001ea5f2014-10-31 17:11:27 +00001410 GlobalVariable *CalleeCache = new GlobalVariable(
1411 *F.getParent(), Ty, false, GlobalValue::PrivateLinkage,
1412 Constant::getNullValue(Ty), "__asan_gen_callee_cache");
1413 CalleeCache->setAlignment(kCacheAlignment);
Kostya Serebryany4f8f0c52014-10-27 18:13:56 +00001414 IRB.CreateCall2(AsanCovIndirCallFunction,
Kostya Serebryanyea48bdc2014-10-31 18:38:23 +00001415 IRB.CreatePointerCast(Callee, IntptrTy),
Kostya Serebryany4f8f0c52014-10-27 18:13:56 +00001416 IRB.CreatePointerCast(CalleeCache, IntptrTy));
1417 }
1418}
1419
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001420bool AddressSanitizer::runOnFunction(Function &F) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001421 if (&F == AsanCtorFunction) return false;
Kostya Serebryany6b5b58d2013-03-18 07:33:49 +00001422 if (F.getLinkage() == GlobalValue::AvailableExternallyLinkage) return false;
Kostya Serebryany20343352012-10-17 13:40:06 +00001423 DEBUG(dbgs() << "ASAN instrumenting:\n" << F << "\n");
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001424 initializeCallbacks(*F.getParent());
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001425
Kostya Serebryanycf880b92013-02-26 06:58:09 +00001426 // If needed, insert __asan_init before checking for SanitizeAddress attr.
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001427 maybeInsertAsanInitAtFunctionEntry(F);
1428
Alexey Samsonov6d8bab82014-06-02 18:08:27 +00001429 if (!F.hasFnAttribute(Attribute::SanitizeAddress))
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001430 return false;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001431
1432 if (!ClDebugFunc.empty() && ClDebugFunc != F.getName())
1433 return false;
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001434
1435 // We want to instrument every address only once per basic block (unless there
1436 // are calls between uses).
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001437 SmallSet<Value*, 16> TempsToInstrument;
1438 SmallVector<Instruction*, 16> ToInstrument;
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001439 SmallVector<Instruction*, 8> NoReturnCalls;
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001440 SmallVector<BasicBlock*, 16> AllBlocks;
Kostya Serebryany796f6552014-02-27 12:45:36 +00001441 SmallVector<Instruction*, 16> PointerComparisonsOrSubtracts;
Kostya Serebryany4f8f0c52014-10-27 18:13:56 +00001442 SmallVector<Instruction*, 8> IndirCalls;
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001443 int NumAllocas = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +00001444 bool IsWrite;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00001445 unsigned Alignment;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001446
1447 // Fill the set of memory operations to instrument.
Alexey Samsonova02e6642014-05-29 18:40:48 +00001448 for (auto &BB : F) {
1449 AllBlocks.push_back(&BB);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001450 TempsToInstrument.clear();
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001451 int NumInsnsPerBB = 0;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001452 for (auto &Inst : BB) {
1453 if (LooksLikeCodeInBug11395(&Inst)) return false;
1454 if (Value *Addr =
1455 isInterestingMemoryAccess(&Inst, &IsWrite, &Alignment)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001456 if (ClOpt && ClOptSameTemp) {
1457 if (!TempsToInstrument.insert(Addr))
1458 continue; // We've seen this temp in the current BB.
1459 }
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +00001460 } else if (ClInvalidPointerPairs &&
Alexey Samsonova02e6642014-05-29 18:40:48 +00001461 isInterestingPointerComparisonOrSubtraction(&Inst)) {
1462 PointerComparisonsOrSubtracts.push_back(&Inst);
Kostya Serebryany796f6552014-02-27 12:45:36 +00001463 continue;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001464 } else if (isa<MemIntrinsic>(Inst)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001465 // ok, take it.
1466 } else {
Alexey Samsonova02e6642014-05-29 18:40:48 +00001467 if (isa<AllocaInst>(Inst))
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001468 NumAllocas++;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001469 CallSite CS(&Inst);
Kostya Serebryany699ac282013-02-20 12:35:15 +00001470 if (CS) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001471 // A call inside BB.
1472 TempsToInstrument.clear();
Kostya Serebryany699ac282013-02-20 12:35:15 +00001473 if (CS.doesNotReturn())
1474 NoReturnCalls.push_back(CS.getInstruction());
Kostya Serebryany4f8f0c52014-10-27 18:13:56 +00001475 if (ClCoverage >= 4 && !CS.getCalledFunction())
1476 IndirCalls.push_back(&Inst);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001477 }
1478 continue;
1479 }
Alexey Samsonova02e6642014-05-29 18:40:48 +00001480 ToInstrument.push_back(&Inst);
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001481 NumInsnsPerBB++;
1482 if (NumInsnsPerBB >= ClMaxInsnsToInstrumentPerBB)
1483 break;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001484 }
1485 }
1486
Craig Topperf40110f2014-04-25 05:29:35 +00001487 Function *UninstrumentedDuplicate = nullptr;
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001488 bool LikelyToInstrument =
1489 !NoReturnCalls.empty() || !ToInstrument.empty() || (NumAllocas > 0);
1490 if (ClKeepUninstrumented && LikelyToInstrument) {
1491 ValueToValueMapTy VMap;
1492 UninstrumentedDuplicate = CloneFunction(&F, VMap, false);
1493 UninstrumentedDuplicate->removeFnAttr(Attribute::SanitizeAddress);
1494 UninstrumentedDuplicate->setName("NOASAN_" + F.getName());
1495 F.getParent()->getFunctionList().push_back(UninstrumentedDuplicate);
1496 }
1497
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001498 bool UseCalls = false;
1499 if (ClInstrumentationWithCallsThreshold >= 0 &&
1500 ToInstrument.size() > (unsigned)ClInstrumentationWithCallsThreshold)
1501 UseCalls = true;
1502
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001503 // Instrument.
1504 int NumInstrumented = 0;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001505 for (auto Inst : ToInstrument) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001506 if (ClDebugMin < 0 || ClDebugMax < 0 ||
1507 (NumInstrumented >= ClDebugMin && NumInstrumented <= ClDebugMax)) {
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00001508 if (isInterestingMemoryAccess(Inst, &IsWrite, &Alignment))
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001509 instrumentMop(Inst, UseCalls);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001510 else
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00001511 instrumentMemIntrinsic(cast<MemIntrinsic>(Inst));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001512 }
1513 NumInstrumented++;
1514 }
1515
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001516 FunctionStackPoisoner FSP(F, *this);
1517 bool ChangedStack = FSP.runOnFunction();
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001518
1519 // We must unpoison the stack before every NoReturn call (throw, _exit, etc).
1520 // See e.g. http://code.google.com/p/address-sanitizer/issues/detail?id=37
Alexey Samsonova02e6642014-05-29 18:40:48 +00001521 for (auto CI : NoReturnCalls) {
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001522 IRBuilder<> IRB(CI);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001523 IRB.CreateCall(AsanHandleNoReturnFunc);
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001524 }
1525
Alexey Samsonova02e6642014-05-29 18:40:48 +00001526 for (auto Inst : PointerComparisonsOrSubtracts) {
1527 instrumentPointerComparisonOrSubtraction(Inst);
Kostya Serebryany796f6552014-02-27 12:45:36 +00001528 NumInstrumented++;
1529 }
1530
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001531 bool res = NumInstrumented > 0 || ChangedStack || !NoReturnCalls.empty();
Bob Wilsonda4147c2013-11-15 07:16:09 +00001532
Kostya Serebryany4f8f0c52014-10-27 18:13:56 +00001533 if (InjectCoverage(F, AllBlocks, IndirCalls))
Bob Wilsonda4147c2013-11-15 07:16:09 +00001534 res = true;
1535
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001536 DEBUG(dbgs() << "ASAN done instrumenting: " << res << " " << F << "\n");
1537
1538 if (ClKeepUninstrumented) {
1539 if (!res) {
1540 // No instrumentation is done, no need for the duplicate.
1541 if (UninstrumentedDuplicate)
1542 UninstrumentedDuplicate->eraseFromParent();
1543 } else {
1544 // The function was instrumented. We must have the duplicate.
1545 assert(UninstrumentedDuplicate);
1546 UninstrumentedDuplicate->setSection("NOASAN");
1547 assert(!F.hasSection());
1548 F.setSection("ASAN");
1549 }
1550 }
1551
1552 return res;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001553}
1554
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001555// Workaround for bug 11395: we don't want to instrument stack in functions
1556// with large assembly blobs (32-bit only), otherwise reg alloc may crash.
1557// FIXME: remove once the bug 11395 is fixed.
1558bool AddressSanitizer::LooksLikeCodeInBug11395(Instruction *I) {
1559 if (LongSize != 32) return false;
1560 CallInst *CI = dyn_cast<CallInst>(I);
1561 if (!CI || !CI->isInlineAsm()) return false;
1562 if (CI->getNumArgOperands() <= 5) return false;
1563 // We have inline assembly with quite a few arguments.
1564 return true;
1565}
1566
1567void FunctionStackPoisoner::initializeCallbacks(Module &M) {
1568 IRBuilder<> IRB(*C);
Kostya Serebryany6805de52013-09-10 13:16:56 +00001569 for (int i = 0; i <= kMaxAsanStackMallocSizeClass; i++) {
1570 std::string Suffix = itostr(i);
1571 AsanStackMallocFunc[i] = checkInterfaceFunction(
1572 M.getOrInsertFunction(kAsanStackMallocNameTemplate + Suffix, IntptrTy,
1573 IntptrTy, IntptrTy, NULL));
1574 AsanStackFreeFunc[i] = checkInterfaceFunction(M.getOrInsertFunction(
1575 kAsanStackFreeNameTemplate + Suffix, IRB.getVoidTy(), IntptrTy,
1576 IntptrTy, IntptrTy, NULL));
1577 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001578 AsanPoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1579 kAsanPoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1580 AsanUnpoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1581 kAsanUnpoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1582}
1583
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001584void
Craig Topper3af97222014-08-27 05:25:00 +00001585FunctionStackPoisoner::poisonRedZones(ArrayRef<uint8_t> ShadowBytes,
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001586 IRBuilder<> &IRB, Value *ShadowBase,
1587 bool DoPoison) {
1588 size_t n = ShadowBytes.size();
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001589 size_t i = 0;
1590 // We need to (un)poison n bytes of stack shadow. Poison as many as we can
1591 // using 64-bit stores (if we are on 64-bit arch), then poison the rest
1592 // with 32-bit stores, then with 16-byte stores, then with 8-byte stores.
1593 for (size_t LargeStoreSizeInBytes = ASan.LongSize / 8;
1594 LargeStoreSizeInBytes != 0; LargeStoreSizeInBytes /= 2) {
1595 for (; i + LargeStoreSizeInBytes - 1 < n; i += LargeStoreSizeInBytes) {
1596 uint64_t Val = 0;
1597 for (size_t j = 0; j < LargeStoreSizeInBytes; j++) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001598 if (ASan.DL->isLittleEndian())
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001599 Val |= (uint64_t)ShadowBytes[i + j] << (8 * j);
1600 else
1601 Val = (Val << 8) | ShadowBytes[i + j];
1602 }
1603 if (!Val) continue;
1604 Value *Ptr = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1605 Type *StoreTy = Type::getIntNTy(*C, LargeStoreSizeInBytes * 8);
1606 Value *Poison = ConstantInt::get(StoreTy, DoPoison ? Val : 0);
1607 IRB.CreateStore(Poison, IRB.CreateIntToPtr(Ptr, StoreTy->getPointerTo()));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001608 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001609 }
1610}
1611
Kostya Serebryany6805de52013-09-10 13:16:56 +00001612// Fake stack allocator (asan_fake_stack.h) has 11 size classes
1613// for every power of 2 from kMinStackMallocSize to kMaxAsanStackMallocSizeClass
1614static int StackMallocSizeClass(uint64_t LocalStackSize) {
1615 assert(LocalStackSize <= kMaxStackMallocSize);
1616 uint64_t MaxSize = kMinStackMallocSize;
1617 for (int i = 0; ; i++, MaxSize *= 2)
1618 if (LocalStackSize <= MaxSize)
1619 return i;
1620 llvm_unreachable("impossible LocalStackSize");
1621}
1622
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001623// Set Size bytes starting from ShadowBase to kAsanStackAfterReturnMagic.
1624// We can not use MemSet intrinsic because it may end up calling the actual
1625// memset. Size is a multiple of 8.
1626// Currently this generates 8-byte stores on x86_64; it may be better to
1627// generate wider stores.
1628void FunctionStackPoisoner::SetShadowToStackAfterReturnInlined(
1629 IRBuilder<> &IRB, Value *ShadowBase, int Size) {
1630 assert(!(Size % 8));
1631 assert(kAsanStackAfterReturnMagic == 0xf5);
1632 for (int i = 0; i < Size; i += 8) {
1633 Value *p = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1634 IRB.CreateStore(ConstantInt::get(IRB.getInt64Ty(), 0xf5f5f5f5f5f5f5f5ULL),
1635 IRB.CreateIntToPtr(p, IRB.getInt64Ty()->getPointerTo()));
1636 }
1637}
1638
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001639static DebugLoc getFunctionEntryDebugLocation(Function &F) {
Alexey Samsonova02e6642014-05-29 18:40:48 +00001640 for (const auto &Inst : F.getEntryBlock())
1641 if (!isa<AllocaInst>(Inst))
1642 return Inst.getDebugLoc();
1643 return DebugLoc();
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001644}
1645
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001646void FunctionStackPoisoner::poisonStack() {
Kostya Serebryany6805de52013-09-10 13:16:56 +00001647 int StackMallocIdx = -1;
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001648 DebugLoc EntryDebugLocation = getFunctionEntryDebugLocation(F);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001649
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001650 assert(AllocaVec.size() > 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001651 Instruction *InsBefore = AllocaVec[0];
1652 IRBuilder<> IRB(InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001653 IRB.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001654
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001655 SmallVector<ASanStackVariableDescription, 16> SVD;
1656 SVD.reserve(AllocaVec.size());
Alexey Samsonova02e6642014-05-29 18:40:48 +00001657 for (AllocaInst *AI : AllocaVec) {
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001658 ASanStackVariableDescription D = { AI->getName().data(),
1659 getAllocaSizeInBytes(AI),
1660 AI->getAlignment(), AI, 0};
1661 SVD.push_back(D);
1662 }
1663 // Minimal header size (left redzone) is 4 pointers,
1664 // i.e. 32 bytes on 64-bit platforms and 16 bytes in 32-bit platforms.
1665 size_t MinHeaderSize = ASan.LongSize / 2;
1666 ASanStackFrameLayout L;
1667 ComputeASanStackFrameLayout(SVD, 1UL << Mapping.Scale, MinHeaderSize, &L);
1668 DEBUG(dbgs() << L.DescriptionString << " --- " << L.FrameSize << "\n");
1669 uint64_t LocalStackSize = L.FrameSize;
1670 bool DoStackMalloc =
Alexey Samsonove595e1a2014-06-13 17:53:44 +00001671 ClUseAfterReturn && LocalStackSize <= kMaxStackMallocSize;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001672
1673 Type *ByteArrayTy = ArrayType::get(IRB.getInt8Ty(), LocalStackSize);
1674 AllocaInst *MyAlloca =
1675 new AllocaInst(ByteArrayTy, "MyAlloca", InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001676 MyAlloca->setDebugLoc(EntryDebugLocation);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001677 assert((ClRealignStack & (ClRealignStack - 1)) == 0);
1678 size_t FrameAlignment = std::max(L.FrameAlignment, (size_t)ClRealignStack);
1679 MyAlloca->setAlignment(FrameAlignment);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001680 assert(MyAlloca->isStaticAlloca());
1681 Value *OrigStackBase = IRB.CreatePointerCast(MyAlloca, IntptrTy);
1682 Value *LocalStackBase = OrigStackBase;
1683
1684 if (DoStackMalloc) {
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001685 // LocalStackBase = OrigStackBase
1686 // if (__asan_option_detect_stack_use_after_return)
1687 // LocalStackBase = __asan_stack_malloc_N(LocalStackBase, OrigStackBase);
Kostya Serebryany6805de52013-09-10 13:16:56 +00001688 StackMallocIdx = StackMallocSizeClass(LocalStackSize);
1689 assert(StackMallocIdx <= kMaxAsanStackMallocSizeClass);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001690 Constant *OptionDetectUAR = F.getParent()->getOrInsertGlobal(
1691 kAsanOptionDetectUAR, IRB.getInt32Ty());
1692 Value *Cmp = IRB.CreateICmpNE(IRB.CreateLoad(OptionDetectUAR),
1693 Constant::getNullValue(IRB.getInt32Ty()));
Evgeniy Stepanova9164e92013-12-19 13:29:56 +00001694 Instruction *Term = SplitBlockAndInsertIfThen(Cmp, InsBefore, false);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001695 BasicBlock *CmpBlock = cast<Instruction>(Cmp)->getParent();
1696 IRBuilder<> IRBIf(Term);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001697 IRBIf.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001698 LocalStackBase = IRBIf.CreateCall2(
1699 AsanStackMallocFunc[StackMallocIdx],
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001700 ConstantInt::get(IntptrTy, LocalStackSize), OrigStackBase);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001701 BasicBlock *SetBlock = cast<Instruction>(LocalStackBase)->getParent();
1702 IRB.SetInsertPoint(InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001703 IRB.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001704 PHINode *Phi = IRB.CreatePHI(IntptrTy, 2);
1705 Phi->addIncoming(OrigStackBase, CmpBlock);
1706 Phi->addIncoming(LocalStackBase, SetBlock);
1707 LocalStackBase = Phi;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001708 }
1709
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001710 // Insert poison calls for lifetime intrinsics for alloca.
1711 bool HavePoisonedAllocas = false;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001712 for (const auto &APC : AllocaPoisonCallVec) {
Alexey Samsonova788b942013-11-18 14:53:55 +00001713 assert(APC.InsBefore);
1714 assert(APC.AI);
1715 IRBuilder<> IRB(APC.InsBefore);
1716 poisonAlloca(APC.AI, APC.Size, IRB, APC.DoPoison);
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001717 HavePoisonedAllocas |= APC.DoPoison;
1718 }
1719
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001720 // Replace Alloca instructions with base+offset.
Alexey Samsonova02e6642014-05-29 18:40:48 +00001721 for (const auto &Desc : SVD) {
1722 AllocaInst *AI = Desc.AI;
Alexey Samsonov261177a2012-12-04 01:34:23 +00001723 Value *NewAllocaPtr = IRB.CreateIntToPtr(
Alexey Samsonova02e6642014-05-29 18:40:48 +00001724 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, Desc.Offset)),
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001725 AI->getType());
Alexey Samsonov3d43b632012-12-12 14:31:53 +00001726 replaceDbgDeclareForAlloca(AI, NewAllocaPtr, DIB);
Alexey Samsonov261177a2012-12-04 01:34:23 +00001727 AI->replaceAllUsesWith(NewAllocaPtr);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001728 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001729
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001730 // The left-most redzone has enough space for at least 4 pointers.
1731 // Write the Magic value to redzone[0].
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001732 Value *BasePlus0 = IRB.CreateIntToPtr(LocalStackBase, IntptrPtrTy);
1733 IRB.CreateStore(ConstantInt::get(IntptrTy, kCurrentStackFrameMagic),
1734 BasePlus0);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001735 // Write the frame description constant to redzone[1].
1736 Value *BasePlus1 = IRB.CreateIntToPtr(
1737 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, ASan.LongSize/8)),
1738 IntptrPtrTy);
Alexey Samsonov9bdb63a2012-11-02 12:20:34 +00001739 GlobalVariable *StackDescriptionGlobal =
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001740 createPrivateGlobalForString(*F.getParent(), L.DescriptionString,
1741 /*AllowMerging*/true);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001742 Value *Description = IRB.CreatePointerCast(StackDescriptionGlobal,
1743 IntptrTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001744 IRB.CreateStore(Description, BasePlus1);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001745 // Write the PC to redzone[2].
1746 Value *BasePlus2 = IRB.CreateIntToPtr(
1747 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy,
1748 2 * ASan.LongSize/8)),
1749 IntptrPtrTy);
1750 IRB.CreateStore(IRB.CreatePointerCast(&F, IntptrTy), BasePlus2);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001751
1752 // Poison the stack redzones at the entry.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001753 Value *ShadowBase = ASan.memToShadow(LocalStackBase, IRB);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001754 poisonRedZones(L.ShadowBytes, IRB, ShadowBase, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001755
Kostya Serebryany530e2072013-12-23 14:15:08 +00001756 // (Un)poison the stack before all ret instructions.
Alexey Samsonova02e6642014-05-29 18:40:48 +00001757 for (auto Ret : RetVec) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001758 IRBuilder<> IRBRet(Ret);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001759 // Mark the current frame as retired.
1760 IRBRet.CreateStore(ConstantInt::get(IntptrTy, kRetiredStackFrameMagic),
1761 BasePlus0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001762 if (DoStackMalloc) {
Kostya Serebryany6805de52013-09-10 13:16:56 +00001763 assert(StackMallocIdx >= 0);
Kostya Serebryany530e2072013-12-23 14:15:08 +00001764 // if LocalStackBase != OrigStackBase:
1765 // // In use-after-return mode, poison the whole stack frame.
1766 // if StackMallocIdx <= 4
1767 // // For small sizes inline the whole thing:
1768 // memset(ShadowBase, kAsanStackAfterReturnMagic, ShadowSize);
1769 // **SavedFlagPtr(LocalStackBase) = 0
1770 // else
1771 // __asan_stack_free_N(LocalStackBase, OrigStackBase)
1772 // else
1773 // <This is not a fake stack; unpoison the redzones>
1774 Value *Cmp = IRBRet.CreateICmpNE(LocalStackBase, OrigStackBase);
1775 TerminatorInst *ThenTerm, *ElseTerm;
1776 SplitBlockAndInsertIfThenElse(Cmp, Ret, &ThenTerm, &ElseTerm);
1777
1778 IRBuilder<> IRBPoison(ThenTerm);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001779 if (StackMallocIdx <= 4) {
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001780 int ClassSize = kMinStackMallocSize << StackMallocIdx;
1781 SetShadowToStackAfterReturnInlined(IRBPoison, ShadowBase,
1782 ClassSize >> Mapping.Scale);
1783 Value *SavedFlagPtrPtr = IRBPoison.CreateAdd(
1784 LocalStackBase,
1785 ConstantInt::get(IntptrTy, ClassSize - ASan.LongSize / 8));
1786 Value *SavedFlagPtr = IRBPoison.CreateLoad(
1787 IRBPoison.CreateIntToPtr(SavedFlagPtrPtr, IntptrPtrTy));
1788 IRBPoison.CreateStore(
1789 Constant::getNullValue(IRBPoison.getInt8Ty()),
1790 IRBPoison.CreateIntToPtr(SavedFlagPtr, IRBPoison.getInt8PtrTy()));
1791 } else {
1792 // For larger frames call __asan_stack_free_*.
Kostya Serebryany530e2072013-12-23 14:15:08 +00001793 IRBPoison.CreateCall3(AsanStackFreeFunc[StackMallocIdx], LocalStackBase,
1794 ConstantInt::get(IntptrTy, LocalStackSize),
1795 OrigStackBase);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001796 }
Kostya Serebryany530e2072013-12-23 14:15:08 +00001797
1798 IRBuilder<> IRBElse(ElseTerm);
1799 poisonRedZones(L.ShadowBytes, IRBElse, ShadowBase, false);
Alexey Samsonov261177a2012-12-04 01:34:23 +00001800 } else if (HavePoisonedAllocas) {
1801 // If we poisoned some allocas in llvm.lifetime analysis,
1802 // unpoison whole stack frame now.
1803 assert(LocalStackBase == OrigStackBase);
1804 poisonAlloca(LocalStackBase, LocalStackSize, IRBRet, false);
Kostya Serebryany530e2072013-12-23 14:15:08 +00001805 } else {
1806 poisonRedZones(L.ShadowBytes, IRBRet, ShadowBase, false);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001807 }
1808 }
1809
Kostya Serebryany09959942012-10-19 06:20:53 +00001810 // We are done. Remove the old unused alloca instructions.
Alexey Samsonova02e6642014-05-29 18:40:48 +00001811 for (auto AI : AllocaVec)
1812 AI->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001813}
Alexey Samsonov261177a2012-12-04 01:34:23 +00001814
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001815void FunctionStackPoisoner::poisonAlloca(Value *V, uint64_t Size,
Jakub Staszak23ec6a92013-08-09 20:53:48 +00001816 IRBuilder<> &IRB, bool DoPoison) {
Alexey Samsonov261177a2012-12-04 01:34:23 +00001817 // For now just insert the call to ASan runtime.
1818 Value *AddrArg = IRB.CreatePointerCast(V, IntptrTy);
1819 Value *SizeArg = ConstantInt::get(IntptrTy, Size);
1820 IRB.CreateCall2(DoPoison ? AsanPoisonStackMemoryFunc
1821 : AsanUnpoisonStackMemoryFunc,
1822 AddrArg, SizeArg);
1823}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001824
1825// Handling llvm.lifetime intrinsics for a given %alloca:
1826// (1) collect all llvm.lifetime.xxx(%size, %value) describing the alloca.
1827// (2) if %size is constant, poison memory for llvm.lifetime.end (to detect
1828// invalid accesses) and unpoison it for llvm.lifetime.start (the memory
1829// could be poisoned by previous llvm.lifetime.end instruction, as the
1830// variable may go in and out of scope several times, e.g. in loops).
1831// (3) if we poisoned at least one %alloca in a function,
1832// unpoison the whole stack frame at function exit.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001833
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001834AllocaInst *FunctionStackPoisoner::findAllocaForValue(Value *V) {
1835 if (AllocaInst *AI = dyn_cast<AllocaInst>(V))
1836 // We're intested only in allocas we can handle.
Craig Topperf40110f2014-04-25 05:29:35 +00001837 return isInterestingAlloca(*AI) ? AI : nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001838 // See if we've already calculated (or started to calculate) alloca for a
1839 // given value.
1840 AllocaForValueMapTy::iterator I = AllocaForValue.find(V);
1841 if (I != AllocaForValue.end())
1842 return I->second;
1843 // Store 0 while we're calculating alloca for value V to avoid
1844 // infinite recursion if the value references itself.
Craig Topperf40110f2014-04-25 05:29:35 +00001845 AllocaForValue[V] = nullptr;
1846 AllocaInst *Res = nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001847 if (CastInst *CI = dyn_cast<CastInst>(V))
1848 Res = findAllocaForValue(CI->getOperand(0));
1849 else if (PHINode *PN = dyn_cast<PHINode>(V)) {
1850 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1851 Value *IncValue = PN->getIncomingValue(i);
1852 // Allow self-referencing phi-nodes.
1853 if (IncValue == PN) continue;
1854 AllocaInst *IncValueAI = findAllocaForValue(IncValue);
1855 // AI for incoming values should exist and should all be equal.
Craig Topperf40110f2014-04-25 05:29:35 +00001856 if (IncValueAI == nullptr || (Res != nullptr && IncValueAI != Res))
1857 return nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001858 Res = IncValueAI;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001859 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001860 }
Craig Topperf40110f2014-04-25 05:29:35 +00001861 if (Res)
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001862 AllocaForValue[V] = Res;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001863 return Res;
1864}