blob: 03b80cc50d573ce028ecb2a992a2277b95c3fdb1 [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 Serebryany9e62b302013-06-03 14:46:56 +000063static const uint64_t kMIPS32_ShadowOffset32 = 0x0aaa8000;
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 Serebryany796f6552014-02-27 12:45:36 +000086static const char *const kAsanPtrCmp = "__sanitizer_ptr_cmp";
87static const char *const kAsanPtrSub = "__sanitizer_ptr_sub";
Craig Topperd3a34f82013-07-16 01:17:10 +000088static const char *const kAsanHandleNoReturnName = "__asan_handle_no_return";
Kostya Serebryany6805de52013-09-10 13:16:56 +000089static const int kMaxAsanStackMallocSizeClass = 10;
90static const char *const kAsanStackMallocNameTemplate = "__asan_stack_malloc_";
91static const char *const kAsanStackFreeNameTemplate = "__asan_stack_free_";
Craig Topperd3a34f82013-07-16 01:17:10 +000092static const char *const kAsanGenPrefix = "__asan_gen_";
93static const char *const kAsanPoisonStackMemoryName =
94 "__asan_poison_stack_memory";
95static const char *const kAsanUnpoisonStackMemoryName =
Alexey Samsonov261177a2012-12-04 01:34:23 +000096 "__asan_unpoison_stack_memory";
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000097
Kostya Serebryanyf3223822013-09-18 14:07:14 +000098static const char *const kAsanOptionDetectUAR =
99 "__asan_option_detect_stack_use_after_return";
100
David Blaikieeacc2872013-09-18 00:11:27 +0000101#ifndef NDEBUG
Kostya Serebryanybc86efb2013-09-17 12:14:50 +0000102static const int kAsanStackAfterReturnMagic = 0xf5;
David Blaikieeacc2872013-09-18 00:11:27 +0000103#endif
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000104
Kostya Serebryany874dae62012-07-16 16:15:40 +0000105// Accesses sizes are powers of two: 1, 2, 4, 8, 16.
106static const size_t kNumberOfAccessSizes = 5;
107
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000108// Command-line flags.
109
110// This flag may need to be replaced with -f[no-]asan-reads.
111static cl::opt<bool> ClInstrumentReads("asan-instrument-reads",
112 cl::desc("instrument read instructions"), cl::Hidden, cl::init(true));
113static cl::opt<bool> ClInstrumentWrites("asan-instrument-writes",
114 cl::desc("instrument write instructions"), cl::Hidden, cl::init(true));
Kostya Serebryany90241602012-05-30 09:04:06 +0000115static cl::opt<bool> ClInstrumentAtomics("asan-instrument-atomics",
116 cl::desc("instrument atomic instructions (rmw, cmpxchg)"),
117 cl::Hidden, cl::init(true));
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000118static cl::opt<bool> ClAlwaysSlowPath("asan-always-slow-path",
119 cl::desc("use instrumentation with slow path for all accesses"),
120 cl::Hidden, cl::init(false));
Kostya Serebryany874dae62012-07-16 16:15:40 +0000121// This flag limits the number of instructions to be instrumented
Kostya Serebryanyc387ca72012-06-28 09:34:41 +0000122// in any given BB. Normally, this should be set to unlimited (INT_MAX),
123// but due to http://llvm.org/bugs/show_bug.cgi?id=12652 we temporary
124// set it to 10000.
125static cl::opt<int> ClMaxInsnsToInstrumentPerBB("asan-max-ins-per-bb",
126 cl::init(10000),
127 cl::desc("maximal number of instructions to instrument in any given BB"),
128 cl::Hidden);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000129// This flag may need to be replaced with -f[no]asan-stack.
130static cl::opt<bool> ClStack("asan-stack",
131 cl::desc("Handle stack memory"), cl::Hidden, cl::init(true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000132static cl::opt<bool> ClUseAfterReturn("asan-use-after-return",
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000133 cl::desc("Check return-after-free"), cl::Hidden, cl::init(true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000134// This flag may need to be replaced with -f[no]asan-globals.
135static cl::opt<bool> ClGlobals("asan-globals",
136 cl::desc("Handle global objects"), cl::Hidden, cl::init(true));
Kostya Serebryany714c67c2014-01-17 11:00:30 +0000137static cl::opt<int> ClCoverage("asan-coverage",
Kostya Serebryany351b0782014-09-03 22:37:37 +0000138 cl::desc("ASan coverage. 0: none, 1: entry block, 2: all blocks, "
139 "3: all blocks and critical edges"),
Kostya Serebryany714c67c2014-01-17 11:00:30 +0000140 cl::Hidden, cl::init(false));
Kostya Serebryany22e88102014-04-18 08:02:42 +0000141static cl::opt<int> ClCoverageBlockThreshold("asan-coverage-block-threshold",
142 cl::desc("Add coverage instrumentation only to the entry block if there "
143 "are more than this number of blocks."),
144 cl::Hidden, cl::init(1500));
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000145static cl::opt<bool> ClInitializers("asan-initialization-order",
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000146 cl::desc("Handle C++ initializer order"), cl::Hidden, cl::init(true));
Kostya Serebryany796f6552014-02-27 12:45:36 +0000147static cl::opt<bool> ClInvalidPointerPairs("asan-detect-invalid-pointer-pair",
148 cl::desc("Instrument <, <=, >, >=, - with pointer operands"),
Kostya Serebryanyec346652014-02-27 12:56:20 +0000149 cl::Hidden, cl::init(false));
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000150static cl::opt<unsigned> ClRealignStack("asan-realign-stack",
151 cl::desc("Realign stack to the value of this flag (power of two)"),
152 cl::Hidden, cl::init(32));
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000153static cl::opt<int> ClInstrumentationWithCallsThreshold(
154 "asan-instrumentation-with-call-threshold",
155 cl::desc("If the function being instrumented contains more than "
156 "this number of memory accesses, use callbacks instead of "
157 "inline checks (-1 means never use callbacks)."),
Kostya Serebryany4d237a82014-05-26 11:57:16 +0000158 cl::Hidden, cl::init(7000));
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000159static cl::opt<std::string> ClMemoryAccessCallbackPrefix(
160 "asan-memory-access-callback-prefix",
161 cl::desc("Prefix for memory access callbacks"), cl::Hidden,
162 cl::init("__asan_"));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000163
Kostya Serebryany9f5213f2013-06-26 09:18:17 +0000164// This is an experimental feature that will allow to choose between
165// instrumented and non-instrumented code at link-time.
166// If this option is on, just before instrumenting a function we create its
167// clone; if the function is not changed by asan the clone is deleted.
168// If we end up with a clone, we put the instrumented function into a section
169// called "ASAN" and the uninstrumented function into a section called "NOASAN".
170//
171// This is still a prototype, we need to figure out a way to keep two copies of
172// a function so that the linker can easily choose one of them.
173static cl::opt<bool> ClKeepUninstrumented("asan-keep-uninstrumented-functions",
174 cl::desc("Keep uninstrumented copies of functions"),
175 cl::Hidden, cl::init(false));
176
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000177// These flags allow to change the shadow mapping.
178// The shadow mapping looks like
179// Shadow = (Mem >> scale) + (1 << offset_log)
180static cl::opt<int> ClMappingScale("asan-mapping-scale",
181 cl::desc("scale of asan shadow mapping"), cl::Hidden, cl::init(0));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000182
183// Optimization flags. Not user visible, used mostly for testing
184// and benchmarking the tool.
185static cl::opt<bool> ClOpt("asan-opt",
186 cl::desc("Optimize instrumentation"), cl::Hidden, cl::init(true));
187static cl::opt<bool> ClOptSameTemp("asan-opt-same-temp",
188 cl::desc("Instrument the same temp just once"), cl::Hidden,
189 cl::init(true));
190static cl::opt<bool> ClOptGlobals("asan-opt-globals",
191 cl::desc("Don't instrument scalar globals"), cl::Hidden, cl::init(true));
192
Alexey Samsonovdf624522012-11-29 18:14:24 +0000193static cl::opt<bool> ClCheckLifetime("asan-check-lifetime",
194 cl::desc("Use llvm.lifetime intrinsics to insert extra checks"),
195 cl::Hidden, cl::init(false));
196
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000197// Debug flags.
198static cl::opt<int> ClDebug("asan-debug", cl::desc("debug"), cl::Hidden,
199 cl::init(0));
200static cl::opt<int> ClDebugStack("asan-debug-stack", cl::desc("debug stack"),
201 cl::Hidden, cl::init(0));
202static cl::opt<std::string> ClDebugFunc("asan-debug-func",
203 cl::Hidden, cl::desc("Debug func"));
204static cl::opt<int> ClDebugMin("asan-debug-min", cl::desc("Debug min inst"),
205 cl::Hidden, cl::init(-1));
206static cl::opt<int> ClDebugMax("asan-debug-max", cl::desc("Debug man inst"),
207 cl::Hidden, cl::init(-1));
208
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000209STATISTIC(NumInstrumentedReads, "Number of instrumented reads");
210STATISTIC(NumInstrumentedWrites, "Number of instrumented writes");
211STATISTIC(NumOptimizedAccessesToGlobalArray,
212 "Number of optimized accesses to global arrays");
213STATISTIC(NumOptimizedAccessesToGlobalVar,
214 "Number of optimized accesses to global vars");
215
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000216namespace {
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +0000217/// Frontend-provided metadata for source location.
218struct LocationMetadata {
219 StringRef Filename;
220 int LineNo;
221 int ColumnNo;
222
223 LocationMetadata() : Filename(), LineNo(0), ColumnNo(0) {}
224
225 bool empty() const { return Filename.empty(); }
226
227 void parse(MDNode *MDN) {
228 assert(MDN->getNumOperands() == 3);
229 MDString *MDFilename = cast<MDString>(MDN->getOperand(0));
230 Filename = MDFilename->getString();
231 LineNo = cast<ConstantInt>(MDN->getOperand(1))->getLimitedValue();
232 ColumnNo = cast<ConstantInt>(MDN->getOperand(2))->getLimitedValue();
233 }
234};
235
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000236/// Frontend-provided metadata for global variables.
237class GlobalsMetadata {
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000238 public:
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000239 struct Entry {
Alexey Samsonov15c96692014-07-12 00:42:52 +0000240 Entry()
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +0000241 : SourceLoc(), Name(), IsDynInit(false),
Alexey Samsonov15c96692014-07-12 00:42:52 +0000242 IsBlacklisted(false) {}
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +0000243 LocationMetadata SourceLoc;
244 StringRef Name;
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000245 bool IsDynInit;
246 bool IsBlacklisted;
247 };
248
Alexey Samsonov0c5ecdd2014-07-02 20:25:42 +0000249 GlobalsMetadata() : inited_(false) {}
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000250
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000251 void init(Module& M) {
252 assert(!inited_);
253 inited_ = true;
254 NamedMDNode *Globals = M.getNamedMetadata("llvm.asan.globals");
255 if (!Globals)
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000256 return;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000257 for (auto MDN : Globals->operands()) {
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000258 // Metadata node contains the global and the fields of "Entry".
Alexey Samsonov15c96692014-07-12 00:42:52 +0000259 assert(MDN->getNumOperands() == 5);
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000260 Value *V = MDN->getOperand(0);
261 // The optimizer may optimize away a global entirely.
262 if (!V)
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000263 continue;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000264 GlobalVariable *GV = cast<GlobalVariable>(V);
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000265 // We can already have an entry for GV if it was merged with another
266 // global.
267 Entry &E = Entries[GV];
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +0000268 if (Value *Loc = MDN->getOperand(1))
269 E.SourceLoc.parse(cast<MDNode>(Loc));
Alexey Samsonov15c96692014-07-12 00:42:52 +0000270 if (Value *Name = MDN->getOperand(2)) {
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +0000271 MDString *MDName = cast<MDString>(Name);
272 E.Name = MDName->getString();
Alexey Samsonov15c96692014-07-12 00:42:52 +0000273 }
274 ConstantInt *IsDynInit = cast<ConstantInt>(MDN->getOperand(3));
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000275 E.IsDynInit |= IsDynInit->isOne();
Alexey Samsonov15c96692014-07-12 00:42:52 +0000276 ConstantInt *IsBlacklisted = cast<ConstantInt>(MDN->getOperand(4));
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000277 E.IsBlacklisted |= IsBlacklisted->isOne();
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000278 }
279 }
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000280
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000281 /// Returns metadata entry for a given global.
282 Entry get(GlobalVariable *G) const {
283 auto Pos = Entries.find(G);
284 return (Pos != Entries.end()) ? Pos->second : Entry();
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000285 }
286
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000287 private:
Alexey Samsonov0c5ecdd2014-07-02 20:25:42 +0000288 bool inited_;
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000289 DenseMap<GlobalVariable*, Entry> Entries;
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000290};
291
Alexey Samsonov1345d352013-01-16 13:23:28 +0000292/// This struct defines the shadow mapping using the rule:
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000293/// shadow = (mem >> Scale) ADD-or-OR Offset.
Alexey Samsonov1345d352013-01-16 13:23:28 +0000294struct ShadowMapping {
295 int Scale;
296 uint64_t Offset;
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000297 bool OrShadowOffset;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000298};
299
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000300static ShadowMapping getShadowMapping(const Module &M, int LongSize) {
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000301 llvm::Triple TargetTriple(M.getTargetTriple());
302 bool IsAndroid = TargetTriple.getEnvironment() == llvm::Triple::Android;
Alexander Potapenkoa51e4832014-04-23 17:14:45 +0000303 bool IsIOS = TargetTriple.getOS() == llvm::Triple::IOS;
Kostya Serebryany8baa3862014-02-10 07:37:04 +0000304 bool IsFreeBSD = TargetTriple.getOS() == llvm::Triple::FreeBSD;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000305 bool IsLinux = TargetTriple.getOS() == llvm::Triple::Linux;
Bill Schmidt0a9170d2013-07-26 01:35:43 +0000306 bool IsPPC64 = TargetTriple.getArch() == llvm::Triple::ppc64 ||
307 TargetTriple.getArch() == llvm::Triple::ppc64le;
Kostya Serebryanybe733372013-02-12 11:11:02 +0000308 bool IsX86_64 = TargetTriple.getArch() == llvm::Triple::x86_64;
Kostya Serebryany9e62b302013-06-03 14:46:56 +0000309 bool IsMIPS32 = TargetTriple.getArch() == llvm::Triple::mips ||
310 TargetTriple.getArch() == llvm::Triple::mipsel;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000311
312 ShadowMapping Mapping;
313
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000314 if (LongSize == 32) {
315 if (IsAndroid)
316 Mapping.Offset = 0;
317 else if (IsMIPS32)
318 Mapping.Offset = kMIPS32_ShadowOffset32;
319 else if (IsFreeBSD)
320 Mapping.Offset = kFreeBSD_ShadowOffset32;
Alexander Potapenkoa51e4832014-04-23 17:14:45 +0000321 else if (IsIOS)
322 Mapping.Offset = kIOSShadowOffset32;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000323 else
324 Mapping.Offset = kDefaultShadowOffset32;
325 } else { // LongSize == 64
326 if (IsPPC64)
327 Mapping.Offset = kPPC64_ShadowOffset64;
328 else if (IsFreeBSD)
329 Mapping.Offset = kFreeBSD_ShadowOffset64;
330 else if (IsLinux && IsX86_64)
331 Mapping.Offset = kSmallX86_64ShadowOffset;
332 else
333 Mapping.Offset = kDefaultShadowOffset64;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000334 }
335
336 Mapping.Scale = kDefaultShadowScale;
337 if (ClMappingScale) {
338 Mapping.Scale = ClMappingScale;
339 }
340
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000341 // OR-ing shadow offset if more efficient (at least on x86) if the offset
342 // is a power of two, but on ppc64 we have to use add since the shadow
343 // offset is not necessary 1/8-th of the address space.
344 Mapping.OrShadowOffset = !IsPPC64 && !(Mapping.Offset & (Mapping.Offset - 1));
345
Alexey Samsonov1345d352013-01-16 13:23:28 +0000346 return Mapping;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000347}
348
Alexey Samsonov1345d352013-01-16 13:23:28 +0000349static size_t RedzoneSizeForScale(int MappingScale) {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000350 // Redzone used for stack and globals is at least 32 bytes.
351 // For scales 6 and 7, the redzone has to be 64 and 128 bytes respectively.
Alexey Samsonov1345d352013-01-16 13:23:28 +0000352 return std::max(32U, 1U << MappingScale);
Kostya Serebryany20a79972012-11-22 03:18:50 +0000353}
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000354
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000355/// AddressSanitizer: instrument the code in module to find memory bugs.
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000356struct AddressSanitizer : public FunctionPass {
Kostya Serebryany351b0782014-09-03 22:37:37 +0000357 AddressSanitizer() : FunctionPass(ID) {
358 initializeBreakCriticalEdgesPass(*PassRegistry::getPassRegistry());
359 }
Craig Topper3e4c6972014-03-05 09:10:37 +0000360 const char *getPassName() const override {
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000361 return "AddressSanitizerFunctionPass";
362 }
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000363 void instrumentMop(Instruction *I, bool UseCalls);
Kostya Serebryany796f6552014-02-27 12:45:36 +0000364 void instrumentPointerComparisonOrSubtraction(Instruction *I);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000365 void instrumentAddress(Instruction *OrigIns, Instruction *InsertBefore,
366 Value *Addr, uint32_t TypeSize, bool IsWrite,
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000367 Value *SizeArgument, bool UseCalls);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000368 Value *createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
369 Value *ShadowValue, uint32_t TypeSize);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000370 Instruction *generateCrashCode(Instruction *InsertBefore, Value *Addr,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000371 bool IsWrite, size_t AccessSizeIndex,
372 Value *SizeArgument);
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000373 void instrumentMemIntrinsic(MemIntrinsic *MI);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000374 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB);
Craig Topper3e4c6972014-03-05 09:10:37 +0000375 bool runOnFunction(Function &F) override;
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +0000376 bool maybeInsertAsanInitAtFunctionEntry(Function &F);
Craig Topper3e4c6972014-03-05 09:10:37 +0000377 bool doInitialization(Module &M) override;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000378 static char ID; // Pass identification, replacement for typeid
379
Kostya Serebryany351b0782014-09-03 22:37:37 +0000380 void getAnalysisUsage(AnalysisUsage &AU) const override {
381 if (ClCoverage >= 3)
382 AU.addRequiredID(BreakCriticalEdgesID);
383 }
384
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000385 private:
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000386 void initializeCallbacks(Module &M);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000387
Kostya Serebryany1cdc6e92011-11-18 01:41:06 +0000388 bool LooksLikeCodeInBug11395(Instruction *I);
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000389 bool GlobalIsLinkerInitialized(GlobalVariable *G);
Craig Topper3af97222014-08-27 05:25:00 +0000390 bool InjectCoverage(Function &F, ArrayRef<BasicBlock*> AllBlocks);
Kostya Serebryany714c67c2014-01-17 11:00:30 +0000391 void InjectCoverageAtBlock(Function &F, BasicBlock &BB);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000392
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000393 LLVMContext *C;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000394 const DataLayout *DL;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000395 int LongSize;
396 Type *IntptrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000397 ShadowMapping Mapping;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000398 Function *AsanCtorFunction;
399 Function *AsanInitFunction;
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000400 Function *AsanHandleNoReturnFunc;
Bob Wilsonda4147c2013-11-15 07:16:09 +0000401 Function *AsanCovFunction;
Kostya Serebryany796f6552014-02-27 12:45:36 +0000402 Function *AsanPtrCmpFunction, *AsanPtrSubFunction;
Kostya Serebryany4273bb02012-07-16 14:09:42 +0000403 // This array is indexed by AccessIsWrite and log2(AccessSize).
404 Function *AsanErrorCallback[2][kNumberOfAccessSizes];
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000405 Function *AsanMemoryAccessCallback[2][kNumberOfAccessSizes];
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000406 // This array is indexed by AccessIsWrite.
Kostya Serebryany86332c02014-04-21 07:10:43 +0000407 Function *AsanErrorCallbackSized[2],
408 *AsanMemoryAccessCallbackSized[2];
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000409 Function *AsanMemmove, *AsanMemcpy, *AsanMemset;
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000410 InlineAsm *EmptyAsm;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000411 GlobalsMetadata GlobalsMD;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000412
413 friend struct FunctionStackPoisoner;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000414};
Kostya Serebryany874dae62012-07-16 16:15:40 +0000415
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000416class AddressSanitizerModule : public ModulePass {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000417 public:
Alexey Samsonovc94285a2014-07-08 00:50:49 +0000418 AddressSanitizerModule() : ModulePass(ID) {}
Craig Topper3e4c6972014-03-05 09:10:37 +0000419 bool runOnModule(Module &M) override;
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000420 static char ID; // Pass identification, replacement for typeid
Craig Topper3e4c6972014-03-05 09:10:37 +0000421 const char *getPassName() const override {
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000422 return "AddressSanitizerModule";
423 }
Alexey Samsonov261177a2012-12-04 01:34:23 +0000424
Kostya Serebryany20a79972012-11-22 03:18:50 +0000425 private:
Alexey Samsonov788381b2012-12-25 12:28:20 +0000426 void initializeCallbacks(Module &M);
427
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +0000428 bool InstrumentGlobals(IRBuilder<> &IRB, Module &M);
Kostya Serebryany20a79972012-11-22 03:18:50 +0000429 bool ShouldInstrumentGlobal(GlobalVariable *G);
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000430 void poisonOneInitializer(Function &GlobalInit, GlobalValue *ModuleName);
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000431 void createInitializerPoisonCalls(Module &M, GlobalValue *ModuleName);
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000432 size_t MinRedzoneSizeForGlobal() const {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000433 return RedzoneSizeForScale(Mapping.Scale);
434 }
Kostya Serebryany20a79972012-11-22 03:18:50 +0000435
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000436 GlobalsMetadata GlobalsMD;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000437 Type *IntptrTy;
438 LLVMContext *C;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000439 const DataLayout *DL;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000440 ShadowMapping Mapping;
Alexey Samsonov788381b2012-12-25 12:28:20 +0000441 Function *AsanPoisonGlobals;
442 Function *AsanUnpoisonGlobals;
443 Function *AsanRegisterGlobals;
444 Function *AsanUnregisterGlobals;
Evgeniy Stepanov47b1a952014-05-27 12:39:31 +0000445 Function *AsanCovModuleInit;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000446};
447
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000448// Stack poisoning does not play well with exception handling.
449// When an exception is thrown, we essentially bypass the code
450// that unpoisones the stack. This is why the run-time library has
451// to intercept __cxa_throw (as well as longjmp, etc) and unpoison the entire
452// stack in the interceptor. This however does not work inside the
453// actual function which catches the exception. Most likely because the
454// compiler hoists the load of the shadow value somewhere too high.
455// This causes asan to report a non-existing bug on 453.povray.
456// It sounds like an LLVM bug.
457struct FunctionStackPoisoner : public InstVisitor<FunctionStackPoisoner> {
458 Function &F;
459 AddressSanitizer &ASan;
460 DIBuilder DIB;
461 LLVMContext *C;
462 Type *IntptrTy;
463 Type *IntptrPtrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000464 ShadowMapping Mapping;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000465
466 SmallVector<AllocaInst*, 16> AllocaVec;
467 SmallVector<Instruction*, 8> RetVec;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000468 unsigned StackAlignment;
469
Kostya Serebryany6805de52013-09-10 13:16:56 +0000470 Function *AsanStackMallocFunc[kMaxAsanStackMallocSizeClass + 1],
471 *AsanStackFreeFunc[kMaxAsanStackMallocSizeClass + 1];
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000472 Function *AsanPoisonStackMemoryFunc, *AsanUnpoisonStackMemoryFunc;
473
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000474 // Stores a place and arguments of poisoning/unpoisoning call for alloca.
475 struct AllocaPoisonCall {
476 IntrinsicInst *InsBefore;
Alexey Samsonova788b942013-11-18 14:53:55 +0000477 AllocaInst *AI;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000478 uint64_t Size;
479 bool DoPoison;
480 };
481 SmallVector<AllocaPoisonCall, 8> AllocaPoisonCallVec;
482
483 // Maps Value to an AllocaInst from which the Value is originated.
484 typedef DenseMap<Value*, AllocaInst*> AllocaForValueMapTy;
485 AllocaForValueMapTy AllocaForValue;
486
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000487 FunctionStackPoisoner(Function &F, AddressSanitizer &ASan)
488 : F(F), ASan(ASan), DIB(*F.getParent()), C(ASan.C),
489 IntptrTy(ASan.IntptrTy), IntptrPtrTy(PointerType::get(IntptrTy, 0)),
Alexey Samsonov1345d352013-01-16 13:23:28 +0000490 Mapping(ASan.Mapping),
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000491 StackAlignment(1 << Mapping.Scale) {}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000492
493 bool runOnFunction() {
494 if (!ClStack) return false;
495 // Collect alloca, ret, lifetime instructions etc.
David Blaikieceec2bd2014-04-11 01:50:01 +0000496 for (BasicBlock *BB : depth_first(&F.getEntryBlock()))
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000497 visit(*BB);
David Blaikieceec2bd2014-04-11 01:50:01 +0000498
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000499 if (AllocaVec.empty()) return false;
500
501 initializeCallbacks(*F.getParent());
502
503 poisonStack();
504
505 if (ClDebugStack) {
506 DEBUG(dbgs() << F);
507 }
508 return true;
509 }
510
511 // Finds all static Alloca instructions and puts
512 // poisoned red zones around all of them.
513 // Then unpoison everything back before the function returns.
514 void poisonStack();
515
516 // ----------------------- Visitors.
517 /// \brief Collect all Ret instructions.
518 void visitReturnInst(ReturnInst &RI) {
519 RetVec.push_back(&RI);
520 }
521
522 /// \brief Collect Alloca instructions we want (and can) handle.
523 void visitAllocaInst(AllocaInst &AI) {
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000524 if (!isInterestingAlloca(AI)) return;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000525
526 StackAlignment = std::max(StackAlignment, AI.getAlignment());
527 AllocaVec.push_back(&AI);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000528 }
529
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000530 /// \brief Collect lifetime intrinsic calls to check for use-after-scope
531 /// errors.
532 void visitIntrinsicInst(IntrinsicInst &II) {
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000533 if (!ClCheckLifetime) return;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000534 Intrinsic::ID ID = II.getIntrinsicID();
535 if (ID != Intrinsic::lifetime_start &&
536 ID != Intrinsic::lifetime_end)
537 return;
538 // Found lifetime intrinsic, add ASan instrumentation if necessary.
539 ConstantInt *Size = dyn_cast<ConstantInt>(II.getArgOperand(0));
540 // If size argument is undefined, don't do anything.
541 if (Size->isMinusOne()) return;
542 // Check that size doesn't saturate uint64_t and can
543 // be stored in IntptrTy.
544 const uint64_t SizeValue = Size->getValue().getLimitedValue();
545 if (SizeValue == ~0ULL ||
546 !ConstantInt::isValueValidForType(IntptrTy, SizeValue))
547 return;
548 // Find alloca instruction that corresponds to llvm.lifetime argument.
549 AllocaInst *AI = findAllocaForValue(II.getArgOperand(1));
550 if (!AI) return;
551 bool DoPoison = (ID == Intrinsic::lifetime_end);
Alexey Samsonova788b942013-11-18 14:53:55 +0000552 AllocaPoisonCall APC = {&II, AI, SizeValue, DoPoison};
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000553 AllocaPoisonCallVec.push_back(APC);
554 }
555
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000556 // ---------------------- Helpers.
557 void initializeCallbacks(Module &M);
558
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000559 // Check if we want (and can) handle this alloca.
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000560 bool isInterestingAlloca(AllocaInst &AI) const {
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000561 return (!AI.isArrayAllocation() && AI.isStaticAlloca() &&
562 AI.getAllocatedType()->isSized() &&
563 // alloca() may be called with 0 size, ignore it.
564 getAllocaSizeInBytes(&AI) > 0);
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000565 }
566
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000567 uint64_t getAllocaSizeInBytes(AllocaInst *AI) const {
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000568 Type *Ty = AI->getAllocatedType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000569 uint64_t SizeInBytes = ASan.DL->getTypeAllocSize(Ty);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000570 return SizeInBytes;
571 }
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000572 /// Finds alloca where the value comes from.
573 AllocaInst *findAllocaForValue(Value *V);
Craig Topper3af97222014-08-27 05:25:00 +0000574 void poisonRedZones(ArrayRef<uint8_t> ShadowBytes, IRBuilder<> &IRB,
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000575 Value *ShadowBase, bool DoPoison);
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000576 void poisonAlloca(Value *V, uint64_t Size, IRBuilder<> &IRB, bool DoPoison);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +0000577
578 void SetShadowToStackAfterReturnInlined(IRBuilder<> &IRB, Value *ShadowBase,
579 int Size);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000580};
581
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000582} // namespace
583
584char AddressSanitizer::ID = 0;
585INITIALIZE_PASS(AddressSanitizer, "asan",
586 "AddressSanitizer: detects use-after-free and out-of-bounds bugs.",
587 false, false)
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000588FunctionPass *llvm::createAddressSanitizerFunctionPass() {
589 return new AddressSanitizer();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000590}
591
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000592char AddressSanitizerModule::ID = 0;
593INITIALIZE_PASS(AddressSanitizerModule, "asan-module",
594 "AddressSanitizer: detects use-after-free and out-of-bounds bugs."
595 "ModulePass", false, false)
Alexey Samsonovc94285a2014-07-08 00:50:49 +0000596ModulePass *llvm::createAddressSanitizerModulePass() {
597 return new AddressSanitizerModule();
Alexander Potapenkoc94cf8f2012-01-23 11:22:43 +0000598}
599
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000600static size_t TypeSizeToSizeIndex(uint32_t TypeSize) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000601 size_t Res = countTrailingZeros(TypeSize / 8);
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000602 assert(Res < kNumberOfAccessSizes);
603 return Res;
604}
605
Bill Wendling58f8cef2013-08-06 22:52:42 +0000606// \brief Create a constant for Str so that we can pass it to the run-time lib.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000607static GlobalVariable *createPrivateGlobalForString(
608 Module &M, StringRef Str, bool AllowMerging) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000609 Constant *StrConst = ConstantDataArray::getString(M.getContext(), Str);
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000610 // We use private linkage for module-local strings. If they can be merged
611 // with another one, we set the unnamed_addr attribute.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000612 GlobalVariable *GV =
613 new GlobalVariable(M, StrConst->getType(), true,
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000614 GlobalValue::PrivateLinkage, StrConst, kAsanGenPrefix);
615 if (AllowMerging)
616 GV->setUnnamedAddr(true);
Kostya Serebryany10cc12f2013-03-18 09:38:39 +0000617 GV->setAlignment(1); // Strings may not be merged w/o setting align 1.
618 return GV;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000619}
620
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +0000621/// \brief Create a global describing a source location.
622static GlobalVariable *createPrivateGlobalForSourceLoc(Module &M,
623 LocationMetadata MD) {
624 Constant *LocData[] = {
625 createPrivateGlobalForString(M, MD.Filename, true),
626 ConstantInt::get(Type::getInt32Ty(M.getContext()), MD.LineNo),
627 ConstantInt::get(Type::getInt32Ty(M.getContext()), MD.ColumnNo),
628 };
629 auto LocStruct = ConstantStruct::getAnon(LocData);
630 auto GV = new GlobalVariable(M, LocStruct->getType(), true,
631 GlobalValue::PrivateLinkage, LocStruct,
632 kAsanGenPrefix);
633 GV->setUnnamedAddr(true);
634 return GV;
635}
636
Kostya Serebryany139a9372012-11-20 14:16:08 +0000637static bool GlobalWasGeneratedByAsan(GlobalVariable *G) {
638 return G->getName().find(kAsanGenPrefix) == 0;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000639}
640
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000641Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) {
642 // Shadow >> scale
Alexey Samsonov1345d352013-01-16 13:23:28 +0000643 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale);
644 if (Mapping.Offset == 0)
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000645 return Shadow;
646 // (Shadow >> scale) | offset
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000647 if (Mapping.OrShadowOffset)
648 return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
649 else
650 return IRB.CreateAdd(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000651}
652
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000653// Instrument memset/memmove/memcpy
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000654void AddressSanitizer::instrumentMemIntrinsic(MemIntrinsic *MI) {
655 IRBuilder<> IRB(MI);
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000656 if (isa<MemTransferInst>(MI)) {
Evgeniy Stepanoved31ca42014-05-14 10:56:19 +0000657 IRB.CreateCall3(
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000658 isa<MemMoveInst>(MI) ? AsanMemmove : AsanMemcpy,
659 IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()),
660 IRB.CreatePointerCast(MI->getOperand(1), IRB.getInt8PtrTy()),
661 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false));
662 } else if (isa<MemSetInst>(MI)) {
Evgeniy Stepanoved31ca42014-05-14 10:56:19 +0000663 IRB.CreateCall3(
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000664 AsanMemset,
665 IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()),
666 IRB.CreateIntCast(MI->getOperand(1), IRB.getInt32Ty(), false),
667 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000668 }
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000669 MI->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000670}
671
Kostya Serebryany90241602012-05-30 09:04:06 +0000672// If I is an interesting memory access, return the PointerOperand
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000673// and set IsWrite/Alignment. Otherwise return NULL.
674static Value *isInterestingMemoryAccess(Instruction *I, bool *IsWrite,
675 unsigned *Alignment) {
Alexey Samsonov535b6f92014-07-17 18:48:12 +0000676 // Skip memory accesses inserted by another instrumentation.
677 if (I->getMetadata("nosanitize"))
678 return nullptr;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000679 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000680 if (!ClInstrumentReads) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000681 *IsWrite = false;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000682 *Alignment = LI->getAlignment();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000683 return LI->getPointerOperand();
684 }
Kostya Serebryany90241602012-05-30 09:04:06 +0000685 if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000686 if (!ClInstrumentWrites) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000687 *IsWrite = true;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000688 *Alignment = SI->getAlignment();
Kostya Serebryany90241602012-05-30 09:04:06 +0000689 return SI->getPointerOperand();
690 }
691 if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000692 if (!ClInstrumentAtomics) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000693 *IsWrite = true;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000694 *Alignment = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +0000695 return RMW->getPointerOperand();
696 }
697 if (AtomicCmpXchgInst *XCHG = dyn_cast<AtomicCmpXchgInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000698 if (!ClInstrumentAtomics) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000699 *IsWrite = true;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000700 *Alignment = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +0000701 return XCHG->getPointerOperand();
702 }
Craig Topperf40110f2014-04-25 05:29:35 +0000703 return nullptr;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000704}
705
Kostya Serebryany796f6552014-02-27 12:45:36 +0000706static bool isPointerOperand(Value *V) {
707 return V->getType()->isPointerTy() || isa<PtrToIntInst>(V);
708}
709
710// This is a rough heuristic; it may cause both false positives and
711// false negatives. The proper implementation requires cooperation with
712// the frontend.
713static bool isInterestingPointerComparisonOrSubtraction(Instruction *I) {
714 if (ICmpInst *Cmp = dyn_cast<ICmpInst>(I)) {
715 if (!Cmp->isRelational())
716 return false;
717 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) {
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +0000718 if (BO->getOpcode() != Instruction::Sub)
Kostya Serebryany796f6552014-02-27 12:45:36 +0000719 return false;
720 } else {
721 return false;
722 }
723 if (!isPointerOperand(I->getOperand(0)) ||
724 !isPointerOperand(I->getOperand(1)))
725 return false;
726 return true;
727}
728
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000729bool AddressSanitizer::GlobalIsLinkerInitialized(GlobalVariable *G) {
730 // If a global variable does not have dynamic initialization we don't
731 // have to instrument it. However, if a global does not have initializer
732 // at all, we assume it has dynamic initializer (in other TU).
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000733 return G->hasInitializer() && !GlobalsMD.get(G).IsDynInit;
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000734}
735
Kostya Serebryany796f6552014-02-27 12:45:36 +0000736void
737AddressSanitizer::instrumentPointerComparisonOrSubtraction(Instruction *I) {
738 IRBuilder<> IRB(I);
739 Function *F = isa<ICmpInst>(I) ? AsanPtrCmpFunction : AsanPtrSubFunction;
740 Value *Param[2] = {I->getOperand(0), I->getOperand(1)};
741 for (int i = 0; i < 2; i++) {
742 if (Param[i]->getType()->isPointerTy())
743 Param[i] = IRB.CreatePointerCast(Param[i], IntptrTy);
744 }
745 IRB.CreateCall2(F, Param[0], Param[1]);
746}
747
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000748void AddressSanitizer::instrumentMop(Instruction *I, bool UseCalls) {
Axel Naumann4a127062012-09-17 14:20:57 +0000749 bool IsWrite = false;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000750 unsigned Alignment = 0;
751 Value *Addr = isInterestingMemoryAccess(I, &IsWrite, &Alignment);
Kostya Serebryany90241602012-05-30 09:04:06 +0000752 assert(Addr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000753 if (ClOpt && ClOptGlobals) {
754 if (GlobalVariable *G = dyn_cast<GlobalVariable>(Addr)) {
755 // If initialization order checking is disabled, a simple access to a
756 // dynamically initialized global is always valid.
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000757 if (!ClInitializers || GlobalIsLinkerInitialized(G)) {
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000758 NumOptimizedAccessesToGlobalVar++;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000759 return;
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000760 }
761 }
762 ConstantExpr *CE = dyn_cast<ConstantExpr>(Addr);
763 if (CE && CE->isGEPWithNoNotionalOverIndexing()) {
764 if (GlobalVariable *G = dyn_cast<GlobalVariable>(CE->getOperand(0))) {
765 if (CE->getOperand(1)->isNullValue() && GlobalIsLinkerInitialized(G)) {
766 NumOptimizedAccessesToGlobalArray++;
767 return;
768 }
769 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000770 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000771 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000772
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000773 Type *OrigPtrTy = Addr->getType();
774 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType();
775
776 assert(OrigTy->isSized());
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000777 uint32_t TypeSize = DL->getTypeStoreSizeInBits(OrigTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000778
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000779 assert((TypeSize % 8) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000780
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000781 if (IsWrite)
782 NumInstrumentedWrites++;
783 else
784 NumInstrumentedReads++;
785
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000786 unsigned Granularity = 1 << Mapping.Scale;
787 // Instrument a 1-, 2-, 4-, 8-, or 16- byte access with one check
788 // if the data is properly aligned.
789 if ((TypeSize == 8 || TypeSize == 16 || TypeSize == 32 || TypeSize == 64 ||
790 TypeSize == 128) &&
791 (Alignment >= Granularity || Alignment == 0 || Alignment >= TypeSize / 8))
Craig Topperf40110f2014-04-25 05:29:35 +0000792 return instrumentAddress(I, I, Addr, TypeSize, IsWrite, nullptr, UseCalls);
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000793 // Instrument unusual size or unusual alignment.
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000794 // We can not do it with a single check, so we do 1-byte check for the first
795 // and the last bytes. We call __asan_report_*_n(addr, real_size) to be able
796 // to report the actual access size.
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000797 IRBuilder<> IRB(I);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000798 Value *Size = ConstantInt::get(IntptrTy, TypeSize / 8);
Kostya Serebryanyc9a2c172014-04-22 11:19:45 +0000799 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
800 if (UseCalls) {
Evgeniy Stepanoved31ca42014-05-14 10:56:19 +0000801 IRB.CreateCall2(AsanMemoryAccessCallbackSized[IsWrite], AddrLong, Size);
Kostya Serebryanyc9a2c172014-04-22 11:19:45 +0000802 } else {
803 Value *LastByte = IRB.CreateIntToPtr(
804 IRB.CreateAdd(AddrLong, ConstantInt::get(IntptrTy, TypeSize / 8 - 1)),
805 OrigPtrTy);
806 instrumentAddress(I, I, Addr, 8, IsWrite, Size, false);
807 instrumentAddress(I, I, LastByte, 8, IsWrite, Size, false);
808 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000809}
810
Alexander Potapenko056e27e2012-04-23 10:47:31 +0000811// Validate the result of Module::getOrInsertFunction called for an interface
812// function of AddressSanitizer. If the instrumented module defines a function
813// with the same name, their prototypes must match, otherwise
814// getOrInsertFunction returns a bitcast.
Kostya Serebryany20a79972012-11-22 03:18:50 +0000815static Function *checkInterfaceFunction(Constant *FuncOrBitcast) {
Alexander Potapenko056e27e2012-04-23 10:47:31 +0000816 if (isa<Function>(FuncOrBitcast)) return cast<Function>(FuncOrBitcast);
817 FuncOrBitcast->dump();
818 report_fatal_error("trying to redefine an AddressSanitizer "
819 "interface function");
820}
821
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000822Instruction *AddressSanitizer::generateCrashCode(
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000823 Instruction *InsertBefore, Value *Addr,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000824 bool IsWrite, size_t AccessSizeIndex, Value *SizeArgument) {
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000825 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000826 CallInst *Call = SizeArgument
827 ? IRB.CreateCall2(AsanErrorCallbackSized[IsWrite], Addr, SizeArgument)
828 : IRB.CreateCall(AsanErrorCallback[IsWrite][AccessSizeIndex], Addr);
829
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000830 // We don't do Call->setDoesNotReturn() because the BB already has
831 // UnreachableInst at the end.
832 // This EmptyAsm is required to avoid callback merge.
833 IRB.CreateCall(EmptyAsm);
Kostya Serebryany3411f2e2012-01-06 18:09:21 +0000834 return Call;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000835}
836
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000837Value *AddressSanitizer::createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
Kostya Serebryany874dae62012-07-16 16:15:40 +0000838 Value *ShadowValue,
839 uint32_t TypeSize) {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000840 size_t Granularity = 1 << Mapping.Scale;
Kostya Serebryany874dae62012-07-16 16:15:40 +0000841 // Addr & (Granularity - 1)
842 Value *LastAccessedByte = IRB.CreateAnd(
843 AddrLong, ConstantInt::get(IntptrTy, Granularity - 1));
844 // (Addr & (Granularity - 1)) + size - 1
845 if (TypeSize / 8 > 1)
846 LastAccessedByte = IRB.CreateAdd(
847 LastAccessedByte, ConstantInt::get(IntptrTy, TypeSize / 8 - 1));
848 // (uint8_t) ((Addr & (Granularity-1)) + size - 1)
849 LastAccessedByte = IRB.CreateIntCast(
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000850 LastAccessedByte, ShadowValue->getType(), false);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000851 // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue
852 return IRB.CreateICmpSGE(LastAccessedByte, ShadowValue);
853}
854
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000855void AddressSanitizer::instrumentAddress(Instruction *OrigIns,
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000856 Instruction *InsertBefore, Value *Addr,
857 uint32_t TypeSize, bool IsWrite,
858 Value *SizeArgument, bool UseCalls) {
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000859 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000860 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000861 size_t AccessSizeIndex = TypeSizeToSizeIndex(TypeSize);
862
863 if (UseCalls) {
Kostya Serebryany94f57d192014-04-21 10:28:13 +0000864 IRB.CreateCall(AsanMemoryAccessCallback[IsWrite][AccessSizeIndex],
865 AddrLong);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000866 return;
867 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000868
869 Type *ShadowTy = IntegerType::get(
Alexey Samsonov1345d352013-01-16 13:23:28 +0000870 *C, std::max(8U, TypeSize >> Mapping.Scale));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000871 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0);
872 Value *ShadowPtr = memToShadow(AddrLong, IRB);
873 Value *CmpVal = Constant::getNullValue(ShadowTy);
874 Value *ShadowValue = IRB.CreateLoad(
875 IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy));
876
877 Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal);
Alexey Samsonov1345d352013-01-16 13:23:28 +0000878 size_t Granularity = 1 << Mapping.Scale;
Craig Topperf40110f2014-04-25 05:29:35 +0000879 TerminatorInst *CrashTerm = nullptr;
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000880
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000881 if (ClAlwaysSlowPath || (TypeSize < 8 * Granularity)) {
Kostya Serebryanyad238522014-09-02 21:46:51 +0000882 // We use branch weights for the slow path check, to indicate that the slow
883 // path is rarely taken. This seems to be the case for SPEC benchmarks.
Evgeniy Stepanov8eb77d82012-10-19 10:48:31 +0000884 TerminatorInst *CheckTerm =
Kostya Serebryanyad238522014-09-02 21:46:51 +0000885 SplitBlockAndInsertIfThen(Cmp, InsertBefore, false,
886 MDBuilder(*C).createBranchWeights(1, 100000));
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000887 assert(dyn_cast<BranchInst>(CheckTerm)->isUnconditional());
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000888 BasicBlock *NextBB = CheckTerm->getSuccessor(0);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000889 IRB.SetInsertPoint(CheckTerm);
890 Value *Cmp2 = createSlowPathCmp(IRB, AddrLong, ShadowValue, TypeSize);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000891 BasicBlock *CrashBlock =
892 BasicBlock::Create(*C, "", NextBB->getParent(), NextBB);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000893 CrashTerm = new UnreachableInst(*C, CrashBlock);
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000894 BranchInst *NewTerm = BranchInst::Create(CrashBlock, NextBB, Cmp2);
895 ReplaceInstWithInst(CheckTerm, NewTerm);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000896 } else {
Evgeniy Stepanova9164e92013-12-19 13:29:56 +0000897 CrashTerm = SplitBlockAndInsertIfThen(Cmp, InsertBefore, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000898 }
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000899
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000900 Instruction *Crash = generateCrashCode(
901 CrashTerm, AddrLong, IsWrite, AccessSizeIndex, SizeArgument);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000902 Crash->setDebugLoc(OrigIns->getDebugLoc());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000903}
904
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000905void AddressSanitizerModule::poisonOneInitializer(Function &GlobalInit,
906 GlobalValue *ModuleName) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000907 // Set up the arguments to our poison/unpoison functions.
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000908 IRBuilder<> IRB(GlobalInit.begin()->getFirstInsertionPt());
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000909
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000910 // Add a call to poison all external globals before the given function starts.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000911 Value *ModuleNameAddr = ConstantExpr::getPointerCast(ModuleName, IntptrTy);
912 IRB.CreateCall(AsanPoisonGlobals, ModuleNameAddr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000913
914 // Add calls to unpoison all globals before each return instruction.
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000915 for (auto &BB : GlobalInit.getBasicBlockList())
916 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB.getTerminator()))
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000917 CallInst::Create(AsanUnpoisonGlobals, "", RI);
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000918}
919
920void AddressSanitizerModule::createInitializerPoisonCalls(
921 Module &M, GlobalValue *ModuleName) {
922 GlobalVariable *GV = M.getGlobalVariable("llvm.global_ctors");
923
924 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
925 for (Use &OP : CA->operands()) {
926 if (isa<ConstantAggregateZero>(OP))
927 continue;
928 ConstantStruct *CS = cast<ConstantStruct>(OP);
929
930 // Must have a function or null ptr.
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000931 if (Function* F = dyn_cast<Function>(CS->getOperand(1))) {
Kostya Serebryany34ddf872014-09-24 22:41:55 +0000932 if (F->getName() == kAsanModuleCtorName) continue;
933 ConstantInt *Priority = dyn_cast<ConstantInt>(CS->getOperand(0));
934 // Don't instrument CTORs that will run before asan.module_ctor.
935 if (Priority->getLimitedValue() <= kAsanCtorAndDtorPriority) continue;
936 poisonOneInitializer(*F, ModuleName);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000937 }
938 }
939}
940
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000941bool AddressSanitizerModule::ShouldInstrumentGlobal(GlobalVariable *G) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000942 Type *Ty = cast<PointerType>(G->getType())->getElementType();
Kostya Serebryany20343352012-10-17 13:40:06 +0000943 DEBUG(dbgs() << "GLOBAL: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000944
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000945 if (GlobalsMD.get(G).IsBlacklisted) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000946 if (!Ty->isSized()) return false;
947 if (!G->hasInitializer()) return false;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000948 if (GlobalWasGeneratedByAsan(G)) return false; // Our own global.
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000949 // Touch only those globals that will not be defined in other modules.
Timur Iskhodzhanove40fb372014-07-09 08:35:33 +0000950 // Don't handle ODR linkage types and COMDATs since other modules may be built
951 // without ASan.
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000952 if (G->getLinkage() != GlobalVariable::ExternalLinkage &&
953 G->getLinkage() != GlobalVariable::PrivateLinkage &&
954 G->getLinkage() != GlobalVariable::InternalLinkage)
955 return false;
Timur Iskhodzhanove40fb372014-07-09 08:35:33 +0000956 if (G->hasComdat())
957 return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000958 // Two problems with thread-locals:
959 // - The address of the main thread's copy can't be computed at link-time.
960 // - Need to poison all copies, not just the main thread's one.
961 if (G->isThreadLocal())
962 return false;
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000963 // For now, just ignore this Global if the alignment is large.
964 if (G->getAlignment() > MinRedzoneSizeForGlobal()) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000965
966 // Ignore all the globals with the names starting with "\01L_OBJC_".
967 // Many of those are put into the .cstring section. The linker compresses
968 // that section by removing the spare \0s after the string terminator, so
969 // our redzones get broken.
970 if ((G->getName().find("\01L_OBJC_") == 0) ||
971 (G->getName().find("\01l_OBJC_") == 0)) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000972 DEBUG(dbgs() << "Ignoring \\01L_OBJC_* global: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000973 return false;
974 }
975
976 if (G->hasSection()) {
977 StringRef Section(G->getSection());
978 // Ignore the globals from the __OBJC section. The ObjC runtime assumes
979 // those conform to /usr/lib/objc/runtime.h, so we can't add redzones to
980 // them.
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000981 if (Section.startswith("__OBJC,") ||
982 Section.startswith("__DATA, __objc_")) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000983 DEBUG(dbgs() << "Ignoring ObjC runtime global: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000984 return false;
985 }
986 // See http://code.google.com/p/address-sanitizer/issues/detail?id=32
987 // Constant CFString instances are compiled in the following way:
988 // -- the string buffer is emitted into
989 // __TEXT,__cstring,cstring_literals
990 // -- the constant NSConstantString structure referencing that buffer
991 // is placed into __DATA,__cfstring
992 // Therefore there's no point in placing redzones into __DATA,__cfstring.
993 // Moreover, it causes the linker to crash on OS X 10.7
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000994 if (Section.startswith("__DATA,__cfstring")) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000995 DEBUG(dbgs() << "Ignoring CFString: " << *G << "\n");
996 return false;
997 }
998 // The linker merges the contents of cstring_literals and removes the
999 // trailing zeroes.
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +00001000 if (Section.startswith("__TEXT,__cstring,cstring_literals")) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +00001001 DEBUG(dbgs() << "Ignoring a cstring literal: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001002 return false;
1003 }
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +00001004
1005 // Callbacks put into the CRT initializer/terminator sections
1006 // should not be instrumented.
1007 // See https://code.google.com/p/address-sanitizer/issues/detail?id=305
1008 // and http://msdn.microsoft.com/en-US/en-en/library/bb918180(v=vs.120).aspx
1009 if (Section.startswith(".CRT")) {
1010 DEBUG(dbgs() << "Ignoring a global initializer callback: " << *G << "\n");
1011 return false;
1012 }
1013
Alexander Potapenko04969e82014-03-20 10:48:34 +00001014 // Globals from llvm.metadata aren't emitted, do not instrument them.
1015 if (Section == "llvm.metadata") return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001016 }
1017
1018 return true;
1019}
1020
Alexey Samsonov788381b2012-12-25 12:28:20 +00001021void AddressSanitizerModule::initializeCallbacks(Module &M) {
1022 IRBuilder<> IRB(*C);
1023 // Declare our poisoning and unpoisoning functions.
1024 AsanPoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001025 kAsanPoisonGlobalsName, IRB.getVoidTy(), IntptrTy, NULL));
Alexey Samsonov788381b2012-12-25 12:28:20 +00001026 AsanPoisonGlobals->setLinkage(Function::ExternalLinkage);
1027 AsanUnpoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
1028 kAsanUnpoisonGlobalsName, IRB.getVoidTy(), NULL));
1029 AsanUnpoisonGlobals->setLinkage(Function::ExternalLinkage);
1030 // Declare functions that register/unregister globals.
1031 AsanRegisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
1032 kAsanRegisterGlobalsName, IRB.getVoidTy(),
1033 IntptrTy, IntptrTy, NULL));
1034 AsanRegisterGlobals->setLinkage(Function::ExternalLinkage);
1035 AsanUnregisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
1036 kAsanUnregisterGlobalsName,
1037 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1038 AsanUnregisterGlobals->setLinkage(Function::ExternalLinkage);
Evgeniy Stepanov47b1a952014-05-27 12:39:31 +00001039 AsanCovModuleInit = checkInterfaceFunction(M.getOrInsertFunction(
1040 kAsanCovModuleInitName,
1041 IRB.getVoidTy(), IntptrTy, NULL));
1042 AsanCovModuleInit->setLinkage(Function::ExternalLinkage);
Alexey Samsonov788381b2012-12-25 12:28:20 +00001043}
1044
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001045// This function replaces all global variables with new variables that have
1046// trailing redzones. It also creates a function that poisons
1047// redzones and inserts this function into llvm.global_ctors.
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001048bool AddressSanitizerModule::InstrumentGlobals(IRBuilder<> &IRB, Module &M) {
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001049 GlobalsMD.init(M);
Kostya Serebryany20a79972012-11-22 03:18:50 +00001050
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001051 SmallVector<GlobalVariable *, 16> GlobalsToChange;
1052
Alexey Samsonova02e6642014-05-29 18:40:48 +00001053 for (auto &G : M.globals()) {
1054 if (ShouldInstrumentGlobal(&G))
1055 GlobalsToChange.push_back(&G);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001056 }
1057
1058 size_t n = GlobalsToChange.size();
1059 if (n == 0) return false;
1060
1061 // A global is described by a structure
1062 // size_t beg;
1063 // size_t size;
1064 // size_t size_with_redzone;
1065 // const char *name;
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001066 // const char *module_name;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001067 // size_t has_dynamic_init;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001068 // void *source_location;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001069 // We initialize an array of such structures and pass it to a run-time call.
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001070 StructType *GlobalStructTy =
1071 StructType::get(IntptrTy, IntptrTy, IntptrTy, IntptrTy, IntptrTy,
1072 IntptrTy, IntptrTy, NULL);
Rafael Espindola44fee4e2013-10-01 13:32:03 +00001073 SmallVector<Constant *, 16> Initializers(n);
Kostya Serebryany20a79972012-11-22 03:18:50 +00001074
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001075 bool HasDynamicallyInitializedGlobals = false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001076
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001077 // We shouldn't merge same module names, as this string serves as unique
1078 // module ID in runtime.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001079 GlobalVariable *ModuleName = createPrivateGlobalForString(
1080 M, M.getModuleIdentifier(), /*AllowMerging*/false);
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001081
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001082 for (size_t i = 0; i < n; i++) {
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001083 static const uint64_t kMaxGlobalRedzone = 1 << 18;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001084 GlobalVariable *G = GlobalsToChange[i];
Alexey Samsonov15c96692014-07-12 00:42:52 +00001085
1086 auto MD = GlobalsMD.get(G);
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +00001087 // Create string holding the global name (use global name from metadata
1088 // if it's available, otherwise just write the name of global variable).
1089 GlobalVariable *Name = createPrivateGlobalForString(
1090 M, MD.Name.empty() ? G->getName() : MD.Name,
1091 /*AllowMerging*/ true);
Alexey Samsonov15c96692014-07-12 00:42:52 +00001092
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001093 PointerType *PtrTy = cast<PointerType>(G->getType());
1094 Type *Ty = PtrTy->getElementType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001095 uint64_t SizeInBytes = DL->getTypeAllocSize(Ty);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001096 uint64_t MinRZ = MinRedzoneSizeForGlobal();
Kostya Serebryany87191f62013-01-24 10:35:40 +00001097 // MinRZ <= RZ <= kMaxGlobalRedzone
1098 // and trying to make RZ to be ~ 1/4 of SizeInBytes.
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001099 uint64_t RZ = std::max(MinRZ,
Kostya Serebryany87191f62013-01-24 10:35:40 +00001100 std::min(kMaxGlobalRedzone,
1101 (SizeInBytes / MinRZ / 4) * MinRZ));
1102 uint64_t RightRedzoneSize = RZ;
1103 // Round up to MinRZ
1104 if (SizeInBytes % MinRZ)
1105 RightRedzoneSize += MinRZ - (SizeInBytes % MinRZ);
1106 assert(((RightRedzoneSize + SizeInBytes) % MinRZ) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001107 Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize);
1108
1109 StructType *NewTy = StructType::get(Ty, RightRedZoneTy, NULL);
1110 Constant *NewInitializer = ConstantStruct::get(
1111 NewTy, G->getInitializer(),
1112 Constant::getNullValue(RightRedZoneTy), NULL);
1113
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001114 // Create a new global variable with enough space for a redzone.
Bill Wendling58f8cef2013-08-06 22:52:42 +00001115 GlobalValue::LinkageTypes Linkage = G->getLinkage();
1116 if (G->isConstant() && Linkage == GlobalValue::PrivateLinkage)
1117 Linkage = GlobalValue::InternalLinkage;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001118 GlobalVariable *NewGlobal = new GlobalVariable(
Bill Wendling58f8cef2013-08-06 22:52:42 +00001119 M, NewTy, G->isConstant(), Linkage,
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001120 NewInitializer, "", G, G->getThreadLocalMode());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001121 NewGlobal->copyAttributesFrom(G);
Kostya Serebryany87191f62013-01-24 10:35:40 +00001122 NewGlobal->setAlignment(MinRZ);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001123
1124 Value *Indices2[2];
1125 Indices2[0] = IRB.getInt32(0);
1126 Indices2[1] = IRB.getInt32(0);
1127
1128 G->replaceAllUsesWith(
Kostya Serebryany7471d132012-01-28 04:27:16 +00001129 ConstantExpr::getGetElementPtr(NewGlobal, Indices2, true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001130 NewGlobal->takeName(G);
1131 G->eraseFromParent();
1132
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +00001133 Constant *SourceLoc;
1134 if (!MD.SourceLoc.empty()) {
1135 auto SourceLocGlobal = createPrivateGlobalForSourceLoc(M, MD.SourceLoc);
1136 SourceLoc = ConstantExpr::getPointerCast(SourceLocGlobal, IntptrTy);
1137 } else {
1138 SourceLoc = ConstantInt::get(IntptrTy, 0);
1139 }
1140
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001141 Initializers[i] = ConstantStruct::get(
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001142 GlobalStructTy, ConstantExpr::getPointerCast(NewGlobal, IntptrTy),
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001143 ConstantInt::get(IntptrTy, SizeInBytes),
1144 ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize),
1145 ConstantExpr::getPointerCast(Name, IntptrTy),
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001146 ConstantExpr::getPointerCast(ModuleName, IntptrTy),
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +00001147 ConstantInt::get(IntptrTy, MD.IsDynInit), SourceLoc, NULL);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001148
Alexey Samsonov08f022a2014-07-11 22:36:02 +00001149 if (ClInitializers && MD.IsDynInit)
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001150 HasDynamicallyInitializedGlobals = true;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001151
Kostya Serebryany20343352012-10-17 13:40:06 +00001152 DEBUG(dbgs() << "NEW GLOBAL: " << *NewGlobal << "\n");
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001153 }
1154
1155 ArrayType *ArrayOfGlobalStructTy = ArrayType::get(GlobalStructTy, n);
1156 GlobalVariable *AllGlobals = new GlobalVariable(
Bill Wendling58f8cef2013-08-06 22:52:42 +00001157 M, ArrayOfGlobalStructTy, false, GlobalVariable::InternalLinkage,
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001158 ConstantArray::get(ArrayOfGlobalStructTy, Initializers), "");
1159
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001160 // Create calls for poisoning before initializers run and unpoisoning after.
Alexey Samsonove595e1a2014-06-13 17:53:44 +00001161 if (HasDynamicallyInitializedGlobals)
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001162 createInitializerPoisonCalls(M, ModuleName);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001163 IRB.CreateCall2(AsanRegisterGlobals,
1164 IRB.CreatePointerCast(AllGlobals, IntptrTy),
1165 ConstantInt::get(IntptrTy, n));
1166
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001167 // We also need to unregister globals at the end, e.g. when a shared library
1168 // gets closed.
1169 Function *AsanDtorFunction = Function::Create(
1170 FunctionType::get(Type::getVoidTy(*C), false),
1171 GlobalValue::InternalLinkage, kAsanModuleDtorName, &M);
1172 BasicBlock *AsanDtorBB = BasicBlock::Create(*C, "", AsanDtorFunction);
1173 IRBuilder<> IRB_Dtor(ReturnInst::Create(*C, AsanDtorBB));
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001174 IRB_Dtor.CreateCall2(AsanUnregisterGlobals,
1175 IRB.CreatePointerCast(AllGlobals, IntptrTy),
1176 ConstantInt::get(IntptrTy, n));
Alexey Samsonov1f647502014-05-29 01:10:14 +00001177 appendToGlobalDtors(M, AsanDtorFunction, kAsanCtorAndDtorPriority);
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001178
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001179 DEBUG(dbgs() << M);
1180 return true;
1181}
1182
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001183bool AddressSanitizerModule::runOnModule(Module &M) {
1184 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
1185 if (!DLP)
1186 return false;
1187 DL = &DLP->getDataLayout();
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001188 C = &(M.getContext());
1189 int LongSize = DL->getPointerSizeInBits();
1190 IntptrTy = Type::getIntNTy(*C, LongSize);
1191 Mapping = getShadowMapping(M, LongSize);
1192 initializeCallbacks(M);
1193
1194 bool Changed = false;
1195
1196 Function *CtorFunc = M.getFunction(kAsanModuleCtorName);
1197 assert(CtorFunc);
1198 IRBuilder<> IRB(CtorFunc->getEntryBlock().getTerminator());
1199
1200 if (ClCoverage > 0) {
1201 Function *CovFunc = M.getFunction(kAsanCovName);
1202 int nCov = CovFunc ? CovFunc->getNumUses() : 0;
1203 IRB.CreateCall(AsanCovModuleInit, ConstantInt::get(IntptrTy, nCov));
1204 Changed = true;
1205 }
1206
Alexey Samsonovc94285a2014-07-08 00:50:49 +00001207 if (ClGlobals)
1208 Changed |= InstrumentGlobals(IRB, M);
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001209
1210 return Changed;
1211}
1212
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001213void AddressSanitizer::initializeCallbacks(Module &M) {
1214 IRBuilder<> IRB(*C);
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001215 // Create __asan_report* callbacks.
1216 for (size_t AccessIsWrite = 0; AccessIsWrite <= 1; AccessIsWrite++) {
1217 for (size_t AccessSizeIndex = 0; AccessSizeIndex < kNumberOfAccessSizes;
1218 AccessSizeIndex++) {
1219 // IsWrite and TypeSize are encoded in the function name.
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001220 std::string Suffix =
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001221 (AccessIsWrite ? "store" : "load") + itostr(1 << AccessSizeIndex);
Kostya Serebryany157a5152012-11-07 12:42:18 +00001222 AsanErrorCallback[AccessIsWrite][AccessSizeIndex] =
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001223 checkInterfaceFunction(
1224 M.getOrInsertFunction(kAsanReportErrorTemplate + Suffix,
1225 IRB.getVoidTy(), IntptrTy, NULL));
1226 AsanMemoryAccessCallback[AccessIsWrite][AccessSizeIndex] =
1227 checkInterfaceFunction(
1228 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + Suffix,
1229 IRB.getVoidTy(), IntptrTy, NULL));
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001230 }
1231 }
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +00001232 AsanErrorCallbackSized[0] = checkInterfaceFunction(M.getOrInsertFunction(
1233 kAsanReportLoadN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1234 AsanErrorCallbackSized[1] = checkInterfaceFunction(M.getOrInsertFunction(
1235 kAsanReportStoreN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001236
Kostya Serebryany86332c02014-04-21 07:10:43 +00001237 AsanMemoryAccessCallbackSized[0] = checkInterfaceFunction(
1238 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + "loadN",
1239 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1240 AsanMemoryAccessCallbackSized[1] = checkInterfaceFunction(
1241 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + "storeN",
1242 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1243
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00001244 AsanMemmove = checkInterfaceFunction(M.getOrInsertFunction(
1245 ClMemoryAccessCallbackPrefix + "memmove", IRB.getInt8PtrTy(),
1246 IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IntptrTy, NULL));
1247 AsanMemcpy = checkInterfaceFunction(M.getOrInsertFunction(
1248 ClMemoryAccessCallbackPrefix + "memcpy", IRB.getInt8PtrTy(),
1249 IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IntptrTy, NULL));
1250 AsanMemset = checkInterfaceFunction(M.getOrInsertFunction(
1251 ClMemoryAccessCallbackPrefix + "memset", IRB.getInt8PtrTy(),
1252 IRB.getInt8PtrTy(), IRB.getInt32Ty(), IntptrTy, NULL));
1253
1254 AsanHandleNoReturnFunc = checkInterfaceFunction(
1255 M.getOrInsertFunction(kAsanHandleNoReturnName, IRB.getVoidTy(), NULL));
Bob Wilsonda4147c2013-11-15 07:16:09 +00001256 AsanCovFunction = checkInterfaceFunction(M.getOrInsertFunction(
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001257 kAsanCovName, IRB.getVoidTy(), NULL));
Kostya Serebryany796f6552014-02-27 12:45:36 +00001258 AsanPtrCmpFunction = checkInterfaceFunction(M.getOrInsertFunction(
1259 kAsanPtrCmp, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1260 AsanPtrSubFunction = checkInterfaceFunction(M.getOrInsertFunction(
1261 kAsanPtrSub, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
Kostya Serebryanyf02c6062012-07-20 09:54:50 +00001262 // We insert an empty inline asm after __asan_report* to avoid callback merge.
1263 EmptyAsm = InlineAsm::get(FunctionType::get(IRB.getVoidTy(), false),
1264 StringRef(""), StringRef(""),
1265 /*hasSideEffects=*/true);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001266}
1267
1268// virtual
1269bool AddressSanitizer::doInitialization(Module &M) {
1270 // Initialize the private fields. No one has accessed them before.
Rafael Espindola93512512014-02-25 17:30:31 +00001271 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
1272 if (!DLP)
Evgeniy Stepanov119cb2e2014-04-23 12:51:32 +00001273 report_fatal_error("data layout missing");
Rafael Espindola93512512014-02-25 17:30:31 +00001274 DL = &DLP->getDataLayout();
1275
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001276 GlobalsMD.init(M);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001277
1278 C = &(M.getContext());
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001279 LongSize = DL->getPointerSizeInBits();
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001280 IntptrTy = Type::getIntNTy(*C, LongSize);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001281
1282 AsanCtorFunction = Function::Create(
1283 FunctionType::get(Type::getVoidTy(*C), false),
1284 GlobalValue::InternalLinkage, kAsanModuleCtorName, &M);
1285 BasicBlock *AsanCtorBB = BasicBlock::Create(*C, "", AsanCtorFunction);
1286 // call __asan_init in the module ctor.
1287 IRBuilder<> IRB(ReturnInst::Create(*C, AsanCtorBB));
1288 AsanInitFunction = checkInterfaceFunction(
1289 M.getOrInsertFunction(kAsanInitName, IRB.getVoidTy(), NULL));
1290 AsanInitFunction->setLinkage(Function::ExternalLinkage);
1291 IRB.CreateCall(AsanInitFunction);
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001292
Evgeniy Stepanov13665362014-01-16 10:19:12 +00001293 Mapping = getShadowMapping(M, LongSize);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001294
Alexey Samsonov1f647502014-05-29 01:10:14 +00001295 appendToGlobalCtors(M, AsanCtorFunction, kAsanCtorAndDtorPriority);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001296 return true;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001297}
1298
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001299bool AddressSanitizer::maybeInsertAsanInitAtFunctionEntry(Function &F) {
1300 // For each NSObject descendant having a +load method, this method is invoked
1301 // by the ObjC runtime before any of the static constructors is called.
1302 // Therefore we need to instrument such methods with a call to __asan_init
1303 // at the beginning in order to initialize our runtime before any access to
1304 // the shadow memory.
1305 // We cannot just ignore these methods, because they may call other
1306 // instrumented functions.
1307 if (F.getName().find(" load]") != std::string::npos) {
1308 IRBuilder<> IRB(F.begin()->begin());
1309 IRB.CreateCall(AsanInitFunction);
1310 return true;
1311 }
1312 return false;
1313}
1314
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001315void AddressSanitizer::InjectCoverageAtBlock(Function &F, BasicBlock &BB) {
1316 BasicBlock::iterator IP = BB.getFirstInsertionPt(), BE = BB.end();
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001317 // Skip static allocas at the top of the entry block so they don't become
1318 // dynamic when we split the block. If we used our optimized stack layout,
1319 // then there will only be one alloca and it will come first.
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001320 for (; IP != BE; ++IP) {
1321 AllocaInst *AI = dyn_cast<AllocaInst>(IP);
1322 if (!AI || !AI->isStaticAlloca())
1323 break;
1324 }
1325
Kostya Serebryany31755212014-09-03 23:24:18 +00001326 DebugLoc EntryLoc = &BB == &F.getEntryBlock()
1327 ? IP->getDebugLoc().getFnDebugLoc(*C)
1328 : IP->getDebugLoc();
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001329 IRBuilder<> IRB(IP);
Evgeniy Stepanov493df132014-06-05 14:34:45 +00001330 IRB.SetCurrentDebugLocation(EntryLoc);
Bob Wilsonda4147c2013-11-15 07:16:09 +00001331 Type *Int8Ty = IRB.getInt8Ty();
1332 GlobalVariable *Guard = new GlobalVariable(
Kostya Serebryany0604c622013-11-15 09:52:05 +00001333 *F.getParent(), Int8Ty, false, GlobalValue::PrivateLinkage,
Bob Wilsonda4147c2013-11-15 07:16:09 +00001334 Constant::getNullValue(Int8Ty), "__asan_gen_cov_" + F.getName());
1335 LoadInst *Load = IRB.CreateLoad(Guard);
1336 Load->setAtomic(Monotonic);
1337 Load->setAlignment(1);
1338 Value *Cmp = IRB.CreateICmpEQ(Constant::getNullValue(Int8Ty), Load);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001339 Instruction *Ins = SplitBlockAndInsertIfThen(
1340 Cmp, IP, false, MDBuilder(*C).createBranchWeights(1, 100000));
Bob Wilsonda4147c2013-11-15 07:16:09 +00001341 IRB.SetInsertPoint(Ins);
Evgeniy Stepanov493df132014-06-05 14:34:45 +00001342 IRB.SetCurrentDebugLocation(EntryLoc);
Alexey Samsonovbad4d0c2014-07-22 17:46:09 +00001343 // __sanitizer_cov gets the PC of the instruction using GET_CALLER_PC.
Evgeniy Stepanov493df132014-06-05 14:34:45 +00001344 IRB.CreateCall(AsanCovFunction);
Bob Wilsonda4147c2013-11-15 07:16:09 +00001345 StoreInst *Store = IRB.CreateStore(ConstantInt::get(Int8Ty, 1), Guard);
1346 Store->setAtomic(Monotonic);
1347 Store->setAlignment(1);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001348}
1349
1350// Poor man's coverage that works with ASan.
1351// We create a Guard boolean variable with the same linkage
1352// as the function and inject this code into the entry block (-asan-coverage=1)
1353// or all blocks (-asan-coverage=2):
1354// if (*Guard) {
Alexey Samsonovbad4d0c2014-07-22 17:46:09 +00001355// __sanitizer_cov();
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001356// *Guard = 1;
1357// }
1358// The accesses to Guard are atomic. The rest of the logic is
1359// in __sanitizer_cov (it's fine to call it more than once).
1360//
1361// This coverage implementation provides very limited data:
1362// it only tells if a given function (block) was ever executed.
1363// No counters, no per-edge data.
1364// But for many use cases this is what we need and the added slowdown
1365// is negligible. This simple implementation will probably be obsoleted
1366// by the upcoming Clang-based coverage implementation.
1367// By having it here and now we hope to
1368// a) get the functionality to users earlier and
1369// b) collect usage statistics to help improve Clang coverage design.
1370bool AddressSanitizer::InjectCoverage(Function &F,
Craig Topper3af97222014-08-27 05:25:00 +00001371 ArrayRef<BasicBlock *> AllBlocks) {
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001372 if (!ClCoverage) return false;
1373
Kostya Serebryany22e88102014-04-18 08:02:42 +00001374 if (ClCoverage == 1 ||
1375 (unsigned)ClCoverageBlockThreshold < AllBlocks.size()) {
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001376 InjectCoverageAtBlock(F, F.getEntryBlock());
1377 } else {
Alexey Samsonova02e6642014-05-29 18:40:48 +00001378 for (auto BB : AllBlocks)
1379 InjectCoverageAtBlock(F, *BB);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001380 }
Bob Wilsonda4147c2013-11-15 07:16:09 +00001381 return true;
1382}
1383
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001384bool AddressSanitizer::runOnFunction(Function &F) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001385 if (&F == AsanCtorFunction) return false;
Kostya Serebryany6b5b58d2013-03-18 07:33:49 +00001386 if (F.getLinkage() == GlobalValue::AvailableExternallyLinkage) return false;
Kostya Serebryany20343352012-10-17 13:40:06 +00001387 DEBUG(dbgs() << "ASAN instrumenting:\n" << F << "\n");
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001388 initializeCallbacks(*F.getParent());
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001389
Kostya Serebryanycf880b92013-02-26 06:58:09 +00001390 // If needed, insert __asan_init before checking for SanitizeAddress attr.
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001391 maybeInsertAsanInitAtFunctionEntry(F);
1392
Alexey Samsonov6d8bab82014-06-02 18:08:27 +00001393 if (!F.hasFnAttribute(Attribute::SanitizeAddress))
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001394 return false;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001395
1396 if (!ClDebugFunc.empty() && ClDebugFunc != F.getName())
1397 return false;
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001398
1399 // We want to instrument every address only once per basic block (unless there
1400 // are calls between uses).
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001401 SmallSet<Value*, 16> TempsToInstrument;
1402 SmallVector<Instruction*, 16> ToInstrument;
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001403 SmallVector<Instruction*, 8> NoReturnCalls;
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001404 SmallVector<BasicBlock*, 16> AllBlocks;
Kostya Serebryany796f6552014-02-27 12:45:36 +00001405 SmallVector<Instruction*, 16> PointerComparisonsOrSubtracts;
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001406 int NumAllocas = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +00001407 bool IsWrite;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00001408 unsigned Alignment;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001409
1410 // Fill the set of memory operations to instrument.
Alexey Samsonova02e6642014-05-29 18:40:48 +00001411 for (auto &BB : F) {
1412 AllBlocks.push_back(&BB);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001413 TempsToInstrument.clear();
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001414 int NumInsnsPerBB = 0;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001415 for (auto &Inst : BB) {
1416 if (LooksLikeCodeInBug11395(&Inst)) return false;
1417 if (Value *Addr =
1418 isInterestingMemoryAccess(&Inst, &IsWrite, &Alignment)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001419 if (ClOpt && ClOptSameTemp) {
1420 if (!TempsToInstrument.insert(Addr))
1421 continue; // We've seen this temp in the current BB.
1422 }
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +00001423 } else if (ClInvalidPointerPairs &&
Alexey Samsonova02e6642014-05-29 18:40:48 +00001424 isInterestingPointerComparisonOrSubtraction(&Inst)) {
1425 PointerComparisonsOrSubtracts.push_back(&Inst);
Kostya Serebryany796f6552014-02-27 12:45:36 +00001426 continue;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001427 } else if (isa<MemIntrinsic>(Inst)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001428 // ok, take it.
1429 } else {
Alexey Samsonova02e6642014-05-29 18:40:48 +00001430 if (isa<AllocaInst>(Inst))
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001431 NumAllocas++;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001432 CallSite CS(&Inst);
Kostya Serebryany699ac282013-02-20 12:35:15 +00001433 if (CS) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001434 // A call inside BB.
1435 TempsToInstrument.clear();
Kostya Serebryany699ac282013-02-20 12:35:15 +00001436 if (CS.doesNotReturn())
1437 NoReturnCalls.push_back(CS.getInstruction());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001438 }
1439 continue;
1440 }
Alexey Samsonova02e6642014-05-29 18:40:48 +00001441 ToInstrument.push_back(&Inst);
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001442 NumInsnsPerBB++;
1443 if (NumInsnsPerBB >= ClMaxInsnsToInstrumentPerBB)
1444 break;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001445 }
1446 }
1447
Craig Topperf40110f2014-04-25 05:29:35 +00001448 Function *UninstrumentedDuplicate = nullptr;
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001449 bool LikelyToInstrument =
1450 !NoReturnCalls.empty() || !ToInstrument.empty() || (NumAllocas > 0);
1451 if (ClKeepUninstrumented && LikelyToInstrument) {
1452 ValueToValueMapTy VMap;
1453 UninstrumentedDuplicate = CloneFunction(&F, VMap, false);
1454 UninstrumentedDuplicate->removeFnAttr(Attribute::SanitizeAddress);
1455 UninstrumentedDuplicate->setName("NOASAN_" + F.getName());
1456 F.getParent()->getFunctionList().push_back(UninstrumentedDuplicate);
1457 }
1458
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001459 bool UseCalls = false;
1460 if (ClInstrumentationWithCallsThreshold >= 0 &&
1461 ToInstrument.size() > (unsigned)ClInstrumentationWithCallsThreshold)
1462 UseCalls = true;
1463
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001464 // Instrument.
1465 int NumInstrumented = 0;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001466 for (auto Inst : ToInstrument) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001467 if (ClDebugMin < 0 || ClDebugMax < 0 ||
1468 (NumInstrumented >= ClDebugMin && NumInstrumented <= ClDebugMax)) {
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00001469 if (isInterestingMemoryAccess(Inst, &IsWrite, &Alignment))
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001470 instrumentMop(Inst, UseCalls);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001471 else
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00001472 instrumentMemIntrinsic(cast<MemIntrinsic>(Inst));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001473 }
1474 NumInstrumented++;
1475 }
1476
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001477 FunctionStackPoisoner FSP(F, *this);
1478 bool ChangedStack = FSP.runOnFunction();
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001479
1480 // We must unpoison the stack before every NoReturn call (throw, _exit, etc).
1481 // See e.g. http://code.google.com/p/address-sanitizer/issues/detail?id=37
Alexey Samsonova02e6642014-05-29 18:40:48 +00001482 for (auto CI : NoReturnCalls) {
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001483 IRBuilder<> IRB(CI);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001484 IRB.CreateCall(AsanHandleNoReturnFunc);
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001485 }
1486
Alexey Samsonova02e6642014-05-29 18:40:48 +00001487 for (auto Inst : PointerComparisonsOrSubtracts) {
1488 instrumentPointerComparisonOrSubtraction(Inst);
Kostya Serebryany796f6552014-02-27 12:45:36 +00001489 NumInstrumented++;
1490 }
1491
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001492 bool res = NumInstrumented > 0 || ChangedStack || !NoReturnCalls.empty();
Bob Wilsonda4147c2013-11-15 07:16:09 +00001493
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001494 if (InjectCoverage(F, AllBlocks))
Bob Wilsonda4147c2013-11-15 07:16:09 +00001495 res = true;
1496
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001497 DEBUG(dbgs() << "ASAN done instrumenting: " << res << " " << F << "\n");
1498
1499 if (ClKeepUninstrumented) {
1500 if (!res) {
1501 // No instrumentation is done, no need for the duplicate.
1502 if (UninstrumentedDuplicate)
1503 UninstrumentedDuplicate->eraseFromParent();
1504 } else {
1505 // The function was instrumented. We must have the duplicate.
1506 assert(UninstrumentedDuplicate);
1507 UninstrumentedDuplicate->setSection("NOASAN");
1508 assert(!F.hasSection());
1509 F.setSection("ASAN");
1510 }
1511 }
1512
1513 return res;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001514}
1515
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001516// Workaround for bug 11395: we don't want to instrument stack in functions
1517// with large assembly blobs (32-bit only), otherwise reg alloc may crash.
1518// FIXME: remove once the bug 11395 is fixed.
1519bool AddressSanitizer::LooksLikeCodeInBug11395(Instruction *I) {
1520 if (LongSize != 32) return false;
1521 CallInst *CI = dyn_cast<CallInst>(I);
1522 if (!CI || !CI->isInlineAsm()) return false;
1523 if (CI->getNumArgOperands() <= 5) return false;
1524 // We have inline assembly with quite a few arguments.
1525 return true;
1526}
1527
1528void FunctionStackPoisoner::initializeCallbacks(Module &M) {
1529 IRBuilder<> IRB(*C);
Kostya Serebryany6805de52013-09-10 13:16:56 +00001530 for (int i = 0; i <= kMaxAsanStackMallocSizeClass; i++) {
1531 std::string Suffix = itostr(i);
1532 AsanStackMallocFunc[i] = checkInterfaceFunction(
1533 M.getOrInsertFunction(kAsanStackMallocNameTemplate + Suffix, IntptrTy,
1534 IntptrTy, IntptrTy, NULL));
1535 AsanStackFreeFunc[i] = checkInterfaceFunction(M.getOrInsertFunction(
1536 kAsanStackFreeNameTemplate + Suffix, IRB.getVoidTy(), IntptrTy,
1537 IntptrTy, IntptrTy, NULL));
1538 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001539 AsanPoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1540 kAsanPoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1541 AsanUnpoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1542 kAsanUnpoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1543}
1544
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001545void
Craig Topper3af97222014-08-27 05:25:00 +00001546FunctionStackPoisoner::poisonRedZones(ArrayRef<uint8_t> ShadowBytes,
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001547 IRBuilder<> &IRB, Value *ShadowBase,
1548 bool DoPoison) {
1549 size_t n = ShadowBytes.size();
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001550 size_t i = 0;
1551 // We need to (un)poison n bytes of stack shadow. Poison as many as we can
1552 // using 64-bit stores (if we are on 64-bit arch), then poison the rest
1553 // with 32-bit stores, then with 16-byte stores, then with 8-byte stores.
1554 for (size_t LargeStoreSizeInBytes = ASan.LongSize / 8;
1555 LargeStoreSizeInBytes != 0; LargeStoreSizeInBytes /= 2) {
1556 for (; i + LargeStoreSizeInBytes - 1 < n; i += LargeStoreSizeInBytes) {
1557 uint64_t Val = 0;
1558 for (size_t j = 0; j < LargeStoreSizeInBytes; j++) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001559 if (ASan.DL->isLittleEndian())
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001560 Val |= (uint64_t)ShadowBytes[i + j] << (8 * j);
1561 else
1562 Val = (Val << 8) | ShadowBytes[i + j];
1563 }
1564 if (!Val) continue;
1565 Value *Ptr = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1566 Type *StoreTy = Type::getIntNTy(*C, LargeStoreSizeInBytes * 8);
1567 Value *Poison = ConstantInt::get(StoreTy, DoPoison ? Val : 0);
1568 IRB.CreateStore(Poison, IRB.CreateIntToPtr(Ptr, StoreTy->getPointerTo()));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001569 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001570 }
1571}
1572
Kostya Serebryany6805de52013-09-10 13:16:56 +00001573// Fake stack allocator (asan_fake_stack.h) has 11 size classes
1574// for every power of 2 from kMinStackMallocSize to kMaxAsanStackMallocSizeClass
1575static int StackMallocSizeClass(uint64_t LocalStackSize) {
1576 assert(LocalStackSize <= kMaxStackMallocSize);
1577 uint64_t MaxSize = kMinStackMallocSize;
1578 for (int i = 0; ; i++, MaxSize *= 2)
1579 if (LocalStackSize <= MaxSize)
1580 return i;
1581 llvm_unreachable("impossible LocalStackSize");
1582}
1583
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001584// Set Size bytes starting from ShadowBase to kAsanStackAfterReturnMagic.
1585// We can not use MemSet intrinsic because it may end up calling the actual
1586// memset. Size is a multiple of 8.
1587// Currently this generates 8-byte stores on x86_64; it may be better to
1588// generate wider stores.
1589void FunctionStackPoisoner::SetShadowToStackAfterReturnInlined(
1590 IRBuilder<> &IRB, Value *ShadowBase, int Size) {
1591 assert(!(Size % 8));
1592 assert(kAsanStackAfterReturnMagic == 0xf5);
1593 for (int i = 0; i < Size; i += 8) {
1594 Value *p = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1595 IRB.CreateStore(ConstantInt::get(IRB.getInt64Ty(), 0xf5f5f5f5f5f5f5f5ULL),
1596 IRB.CreateIntToPtr(p, IRB.getInt64Ty()->getPointerTo()));
1597 }
1598}
1599
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001600static DebugLoc getFunctionEntryDebugLocation(Function &F) {
Alexey Samsonova02e6642014-05-29 18:40:48 +00001601 for (const auto &Inst : F.getEntryBlock())
1602 if (!isa<AllocaInst>(Inst))
1603 return Inst.getDebugLoc();
1604 return DebugLoc();
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001605}
1606
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001607void FunctionStackPoisoner::poisonStack() {
Kostya Serebryany6805de52013-09-10 13:16:56 +00001608 int StackMallocIdx = -1;
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001609 DebugLoc EntryDebugLocation = getFunctionEntryDebugLocation(F);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001610
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001611 assert(AllocaVec.size() > 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001612 Instruction *InsBefore = AllocaVec[0];
1613 IRBuilder<> IRB(InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001614 IRB.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001615
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001616 SmallVector<ASanStackVariableDescription, 16> SVD;
1617 SVD.reserve(AllocaVec.size());
Alexey Samsonova02e6642014-05-29 18:40:48 +00001618 for (AllocaInst *AI : AllocaVec) {
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001619 ASanStackVariableDescription D = { AI->getName().data(),
1620 getAllocaSizeInBytes(AI),
1621 AI->getAlignment(), AI, 0};
1622 SVD.push_back(D);
1623 }
1624 // Minimal header size (left redzone) is 4 pointers,
1625 // i.e. 32 bytes on 64-bit platforms and 16 bytes in 32-bit platforms.
1626 size_t MinHeaderSize = ASan.LongSize / 2;
1627 ASanStackFrameLayout L;
1628 ComputeASanStackFrameLayout(SVD, 1UL << Mapping.Scale, MinHeaderSize, &L);
1629 DEBUG(dbgs() << L.DescriptionString << " --- " << L.FrameSize << "\n");
1630 uint64_t LocalStackSize = L.FrameSize;
1631 bool DoStackMalloc =
Alexey Samsonove595e1a2014-06-13 17:53:44 +00001632 ClUseAfterReturn && LocalStackSize <= kMaxStackMallocSize;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001633
1634 Type *ByteArrayTy = ArrayType::get(IRB.getInt8Ty(), LocalStackSize);
1635 AllocaInst *MyAlloca =
1636 new AllocaInst(ByteArrayTy, "MyAlloca", InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001637 MyAlloca->setDebugLoc(EntryDebugLocation);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001638 assert((ClRealignStack & (ClRealignStack - 1)) == 0);
1639 size_t FrameAlignment = std::max(L.FrameAlignment, (size_t)ClRealignStack);
1640 MyAlloca->setAlignment(FrameAlignment);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001641 assert(MyAlloca->isStaticAlloca());
1642 Value *OrigStackBase = IRB.CreatePointerCast(MyAlloca, IntptrTy);
1643 Value *LocalStackBase = OrigStackBase;
1644
1645 if (DoStackMalloc) {
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001646 // LocalStackBase = OrigStackBase
1647 // if (__asan_option_detect_stack_use_after_return)
1648 // LocalStackBase = __asan_stack_malloc_N(LocalStackBase, OrigStackBase);
Kostya Serebryany6805de52013-09-10 13:16:56 +00001649 StackMallocIdx = StackMallocSizeClass(LocalStackSize);
1650 assert(StackMallocIdx <= kMaxAsanStackMallocSizeClass);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001651 Constant *OptionDetectUAR = F.getParent()->getOrInsertGlobal(
1652 kAsanOptionDetectUAR, IRB.getInt32Ty());
1653 Value *Cmp = IRB.CreateICmpNE(IRB.CreateLoad(OptionDetectUAR),
1654 Constant::getNullValue(IRB.getInt32Ty()));
Evgeniy Stepanova9164e92013-12-19 13:29:56 +00001655 Instruction *Term = SplitBlockAndInsertIfThen(Cmp, InsBefore, false);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001656 BasicBlock *CmpBlock = cast<Instruction>(Cmp)->getParent();
1657 IRBuilder<> IRBIf(Term);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001658 IRBIf.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001659 LocalStackBase = IRBIf.CreateCall2(
1660 AsanStackMallocFunc[StackMallocIdx],
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001661 ConstantInt::get(IntptrTy, LocalStackSize), OrigStackBase);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001662 BasicBlock *SetBlock = cast<Instruction>(LocalStackBase)->getParent();
1663 IRB.SetInsertPoint(InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001664 IRB.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001665 PHINode *Phi = IRB.CreatePHI(IntptrTy, 2);
1666 Phi->addIncoming(OrigStackBase, CmpBlock);
1667 Phi->addIncoming(LocalStackBase, SetBlock);
1668 LocalStackBase = Phi;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001669 }
1670
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001671 // Insert poison calls for lifetime intrinsics for alloca.
1672 bool HavePoisonedAllocas = false;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001673 for (const auto &APC : AllocaPoisonCallVec) {
Alexey Samsonova788b942013-11-18 14:53:55 +00001674 assert(APC.InsBefore);
1675 assert(APC.AI);
1676 IRBuilder<> IRB(APC.InsBefore);
1677 poisonAlloca(APC.AI, APC.Size, IRB, APC.DoPoison);
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001678 HavePoisonedAllocas |= APC.DoPoison;
1679 }
1680
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001681 // Replace Alloca instructions with base+offset.
Alexey Samsonova02e6642014-05-29 18:40:48 +00001682 for (const auto &Desc : SVD) {
1683 AllocaInst *AI = Desc.AI;
Alexey Samsonov261177a2012-12-04 01:34:23 +00001684 Value *NewAllocaPtr = IRB.CreateIntToPtr(
Alexey Samsonova02e6642014-05-29 18:40:48 +00001685 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, Desc.Offset)),
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001686 AI->getType());
Alexey Samsonov3d43b632012-12-12 14:31:53 +00001687 replaceDbgDeclareForAlloca(AI, NewAllocaPtr, DIB);
Alexey Samsonov261177a2012-12-04 01:34:23 +00001688 AI->replaceAllUsesWith(NewAllocaPtr);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001689 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001690
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001691 // The left-most redzone has enough space for at least 4 pointers.
1692 // Write the Magic value to redzone[0].
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001693 Value *BasePlus0 = IRB.CreateIntToPtr(LocalStackBase, IntptrPtrTy);
1694 IRB.CreateStore(ConstantInt::get(IntptrTy, kCurrentStackFrameMagic),
1695 BasePlus0);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001696 // Write the frame description constant to redzone[1].
1697 Value *BasePlus1 = IRB.CreateIntToPtr(
1698 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, ASan.LongSize/8)),
1699 IntptrPtrTy);
Alexey Samsonov9bdb63a2012-11-02 12:20:34 +00001700 GlobalVariable *StackDescriptionGlobal =
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001701 createPrivateGlobalForString(*F.getParent(), L.DescriptionString,
1702 /*AllowMerging*/true);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001703 Value *Description = IRB.CreatePointerCast(StackDescriptionGlobal,
1704 IntptrTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001705 IRB.CreateStore(Description, BasePlus1);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001706 // Write the PC to redzone[2].
1707 Value *BasePlus2 = IRB.CreateIntToPtr(
1708 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy,
1709 2 * ASan.LongSize/8)),
1710 IntptrPtrTy);
1711 IRB.CreateStore(IRB.CreatePointerCast(&F, IntptrTy), BasePlus2);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001712
1713 // Poison the stack redzones at the entry.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001714 Value *ShadowBase = ASan.memToShadow(LocalStackBase, IRB);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001715 poisonRedZones(L.ShadowBytes, IRB, ShadowBase, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001716
Kostya Serebryany530e2072013-12-23 14:15:08 +00001717 // (Un)poison the stack before all ret instructions.
Alexey Samsonova02e6642014-05-29 18:40:48 +00001718 for (auto Ret : RetVec) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001719 IRBuilder<> IRBRet(Ret);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001720 // Mark the current frame as retired.
1721 IRBRet.CreateStore(ConstantInt::get(IntptrTy, kRetiredStackFrameMagic),
1722 BasePlus0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001723 if (DoStackMalloc) {
Kostya Serebryany6805de52013-09-10 13:16:56 +00001724 assert(StackMallocIdx >= 0);
Kostya Serebryany530e2072013-12-23 14:15:08 +00001725 // if LocalStackBase != OrigStackBase:
1726 // // In use-after-return mode, poison the whole stack frame.
1727 // if StackMallocIdx <= 4
1728 // // For small sizes inline the whole thing:
1729 // memset(ShadowBase, kAsanStackAfterReturnMagic, ShadowSize);
1730 // **SavedFlagPtr(LocalStackBase) = 0
1731 // else
1732 // __asan_stack_free_N(LocalStackBase, OrigStackBase)
1733 // else
1734 // <This is not a fake stack; unpoison the redzones>
1735 Value *Cmp = IRBRet.CreateICmpNE(LocalStackBase, OrigStackBase);
1736 TerminatorInst *ThenTerm, *ElseTerm;
1737 SplitBlockAndInsertIfThenElse(Cmp, Ret, &ThenTerm, &ElseTerm);
1738
1739 IRBuilder<> IRBPoison(ThenTerm);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001740 if (StackMallocIdx <= 4) {
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001741 int ClassSize = kMinStackMallocSize << StackMallocIdx;
1742 SetShadowToStackAfterReturnInlined(IRBPoison, ShadowBase,
1743 ClassSize >> Mapping.Scale);
1744 Value *SavedFlagPtrPtr = IRBPoison.CreateAdd(
1745 LocalStackBase,
1746 ConstantInt::get(IntptrTy, ClassSize - ASan.LongSize / 8));
1747 Value *SavedFlagPtr = IRBPoison.CreateLoad(
1748 IRBPoison.CreateIntToPtr(SavedFlagPtrPtr, IntptrPtrTy));
1749 IRBPoison.CreateStore(
1750 Constant::getNullValue(IRBPoison.getInt8Ty()),
1751 IRBPoison.CreateIntToPtr(SavedFlagPtr, IRBPoison.getInt8PtrTy()));
1752 } else {
1753 // For larger frames call __asan_stack_free_*.
Kostya Serebryany530e2072013-12-23 14:15:08 +00001754 IRBPoison.CreateCall3(AsanStackFreeFunc[StackMallocIdx], LocalStackBase,
1755 ConstantInt::get(IntptrTy, LocalStackSize),
1756 OrigStackBase);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001757 }
Kostya Serebryany530e2072013-12-23 14:15:08 +00001758
1759 IRBuilder<> IRBElse(ElseTerm);
1760 poisonRedZones(L.ShadowBytes, IRBElse, ShadowBase, false);
Alexey Samsonov261177a2012-12-04 01:34:23 +00001761 } else if (HavePoisonedAllocas) {
1762 // If we poisoned some allocas in llvm.lifetime analysis,
1763 // unpoison whole stack frame now.
1764 assert(LocalStackBase == OrigStackBase);
1765 poisonAlloca(LocalStackBase, LocalStackSize, IRBRet, false);
Kostya Serebryany530e2072013-12-23 14:15:08 +00001766 } else {
1767 poisonRedZones(L.ShadowBytes, IRBRet, ShadowBase, false);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001768 }
1769 }
1770
Kostya Serebryany09959942012-10-19 06:20:53 +00001771 // We are done. Remove the old unused alloca instructions.
Alexey Samsonova02e6642014-05-29 18:40:48 +00001772 for (auto AI : AllocaVec)
1773 AI->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001774}
Alexey Samsonov261177a2012-12-04 01:34:23 +00001775
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001776void FunctionStackPoisoner::poisonAlloca(Value *V, uint64_t Size,
Jakub Staszak23ec6a92013-08-09 20:53:48 +00001777 IRBuilder<> &IRB, bool DoPoison) {
Alexey Samsonov261177a2012-12-04 01:34:23 +00001778 // For now just insert the call to ASan runtime.
1779 Value *AddrArg = IRB.CreatePointerCast(V, IntptrTy);
1780 Value *SizeArg = ConstantInt::get(IntptrTy, Size);
1781 IRB.CreateCall2(DoPoison ? AsanPoisonStackMemoryFunc
1782 : AsanUnpoisonStackMemoryFunc,
1783 AddrArg, SizeArg);
1784}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001785
1786// Handling llvm.lifetime intrinsics for a given %alloca:
1787// (1) collect all llvm.lifetime.xxx(%size, %value) describing the alloca.
1788// (2) if %size is constant, poison memory for llvm.lifetime.end (to detect
1789// invalid accesses) and unpoison it for llvm.lifetime.start (the memory
1790// could be poisoned by previous llvm.lifetime.end instruction, as the
1791// variable may go in and out of scope several times, e.g. in loops).
1792// (3) if we poisoned at least one %alloca in a function,
1793// unpoison the whole stack frame at function exit.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001794
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001795AllocaInst *FunctionStackPoisoner::findAllocaForValue(Value *V) {
1796 if (AllocaInst *AI = dyn_cast<AllocaInst>(V))
1797 // We're intested only in allocas we can handle.
Craig Topperf40110f2014-04-25 05:29:35 +00001798 return isInterestingAlloca(*AI) ? AI : nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001799 // See if we've already calculated (or started to calculate) alloca for a
1800 // given value.
1801 AllocaForValueMapTy::iterator I = AllocaForValue.find(V);
1802 if (I != AllocaForValue.end())
1803 return I->second;
1804 // Store 0 while we're calculating alloca for value V to avoid
1805 // infinite recursion if the value references itself.
Craig Topperf40110f2014-04-25 05:29:35 +00001806 AllocaForValue[V] = nullptr;
1807 AllocaInst *Res = nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001808 if (CastInst *CI = dyn_cast<CastInst>(V))
1809 Res = findAllocaForValue(CI->getOperand(0));
1810 else if (PHINode *PN = dyn_cast<PHINode>(V)) {
1811 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1812 Value *IncValue = PN->getIncomingValue(i);
1813 // Allow self-referencing phi-nodes.
1814 if (IncValue == PN) continue;
1815 AllocaInst *IncValueAI = findAllocaForValue(IncValue);
1816 // AI for incoming values should exist and should all be equal.
Craig Topperf40110f2014-04-25 05:29:35 +00001817 if (IncValueAI == nullptr || (Res != nullptr && IncValueAI != Res))
1818 return nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001819 Res = IncValueAI;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001820 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001821 }
Craig Topperf40110f2014-04-25 05:29:35 +00001822 if (Res)
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001823 AllocaForValue[V] = Res;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001824 return Res;
1825}