blob: 290efe2ec0005a7d3ff1c01f136537e5a1340125 [file] [log] [blame]
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001//===-- AddressSanitizer.cpp - memory error detector ------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file is a part of AddressSanitizer, an address sanity checker.
11// Details of the algorithm:
12// http://code.google.com/p/address-sanitizer/wiki/AddressSanitizerAlgorithm
13//
14//===----------------------------------------------------------------------===//
15
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/Transforms/Instrumentation.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000017#include "llvm/ADT/ArrayRef.h"
Alexey Samsonov29dd7f22012-12-27 08:50:58 +000018#include "llvm/ADT/DenseMap.h"
Alexey Samsonov4f319cc2014-07-02 16:54:41 +000019#include "llvm/ADT/DenseSet.h"
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +000020#include "llvm/ADT/DepthFirstIterator.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000021#include "llvm/ADT/SmallSet.h"
22#include "llvm/ADT/SmallString.h"
23#include "llvm/ADT/SmallVector.h"
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +000024#include "llvm/ADT/Statistic.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000025#include "llvm/ADT/StringExtras.h"
Evgeniy Stepanov617232f2012-05-23 11:52:12 +000026#include "llvm/ADT/Triple.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000027#include "llvm/IR/CallSite.h"
Chandler Carruth12664a02014-03-06 00:22:06 +000028#include "llvm/IR/DIBuilder.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000029#include "llvm/IR/DataLayout.h"
30#include "llvm/IR/Function.h"
31#include "llvm/IR/IRBuilder.h"
32#include "llvm/IR/InlineAsm.h"
Chandler Carruth7da14f12014-03-06 03:23:41 +000033#include "llvm/IR/InstVisitor.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000034#include "llvm/IR/IntrinsicInst.h"
35#include "llvm/IR/LLVMContext.h"
Kostya Serebryany714c67c2014-01-17 11:00:30 +000036#include "llvm/IR/MDBuilder.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000037#include "llvm/IR/Module.h"
38#include "llvm/IR/Type.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000039#include "llvm/Support/CommandLine.h"
40#include "llvm/Support/DataTypes.h"
41#include "llvm/Support/Debug.h"
Kostya Serebryany9e62b302013-06-03 14:46:56 +000042#include "llvm/Support/Endian.h"
Kostya Serebryany4fb78012013-12-06 09:00:17 +000043#include "llvm/Transforms/Utils/ASanStackFrameLayout.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000044#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Kostya Serebryany9f5213f2013-06-26 09:18:17 +000045#include "llvm/Transforms/Utils/Cloning.h"
Alexey Samsonov3d43b632012-12-12 14:31:53 +000046#include "llvm/Transforms/Utils/Local.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000047#include "llvm/Transforms/Utils/ModuleUtils.h"
Peter Collingbourne015370e2013-07-09 22:02:49 +000048#include "llvm/Transforms/Utils/SpecialCaseList.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000049#include <algorithm>
Chandler Carruthed0881b2012-12-03 16:50:05 +000050#include <string>
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";
Alexey Samsonov1f647502014-05-29 01:10:14 +000074static const int 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",
138 cl::desc("ASan coverage. 0: none, 1: entry block, 2: all blocks"),
139 cl::Hidden, cl::init(false));
Kostya Serebryany22e88102014-04-18 08:02:42 +0000140static cl::opt<int> ClCoverageBlockThreshold("asan-coverage-block-threshold",
141 cl::desc("Add coverage instrumentation only to the entry block if there "
142 "are more than this number of blocks."),
143 cl::Hidden, cl::init(1500));
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000144static cl::opt<bool> ClInitializers("asan-initialization-order",
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000145 cl::desc("Handle C++ initializer order"), cl::Hidden, cl::init(true));
Kostya Serebryany796f6552014-02-27 12:45:36 +0000146static cl::opt<bool> ClInvalidPointerPairs("asan-detect-invalid-pointer-pair",
147 cl::desc("Instrument <, <=, >, >=, - with pointer operands"),
Kostya Serebryanyec346652014-02-27 12:56:20 +0000148 cl::Hidden, cl::init(false));
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000149static cl::opt<unsigned> ClRealignStack("asan-realign-stack",
150 cl::desc("Realign stack to the value of this flag (power of two)"),
151 cl::Hidden, cl::init(32));
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000152static cl::opt<std::string> ClBlacklistFile("asan-blacklist",
153 cl::desc("File containing the list of objects to ignore "
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000154 "during instrumentation"), cl::Hidden);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000155static cl::opt<int> ClInstrumentationWithCallsThreshold(
156 "asan-instrumentation-with-call-threshold",
157 cl::desc("If the function being instrumented contains more than "
158 "this number of memory accesses, use callbacks instead of "
159 "inline checks (-1 means never use callbacks)."),
Kostya Serebryany4d237a82014-05-26 11:57:16 +0000160 cl::Hidden, cl::init(7000));
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000161static cl::opt<std::string> ClMemoryAccessCallbackPrefix(
162 "asan-memory-access-callback-prefix",
163 cl::desc("Prefix for memory access callbacks"), cl::Hidden,
164 cl::init("__asan_"));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000165
Kostya Serebryany9f5213f2013-06-26 09:18:17 +0000166// This is an experimental feature that will allow to choose between
167// instrumented and non-instrumented code at link-time.
168// If this option is on, just before instrumenting a function we create its
169// clone; if the function is not changed by asan the clone is deleted.
170// If we end up with a clone, we put the instrumented function into a section
171// called "ASAN" and the uninstrumented function into a section called "NOASAN".
172//
173// This is still a prototype, we need to figure out a way to keep two copies of
174// a function so that the linker can easily choose one of them.
175static cl::opt<bool> ClKeepUninstrumented("asan-keep-uninstrumented-functions",
176 cl::desc("Keep uninstrumented copies of functions"),
177 cl::Hidden, cl::init(false));
178
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000179// These flags allow to change the shadow mapping.
180// The shadow mapping looks like
181// Shadow = (Mem >> scale) + (1 << offset_log)
182static cl::opt<int> ClMappingScale("asan-mapping-scale",
183 cl::desc("scale of asan shadow mapping"), cl::Hidden, cl::init(0));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000184
185// Optimization flags. Not user visible, used mostly for testing
186// and benchmarking the tool.
187static cl::opt<bool> ClOpt("asan-opt",
188 cl::desc("Optimize instrumentation"), cl::Hidden, cl::init(true));
189static cl::opt<bool> ClOptSameTemp("asan-opt-same-temp",
190 cl::desc("Instrument the same temp just once"), cl::Hidden,
191 cl::init(true));
192static cl::opt<bool> ClOptGlobals("asan-opt-globals",
193 cl::desc("Don't instrument scalar globals"), cl::Hidden, cl::init(true));
194
Alexey Samsonovdf624522012-11-29 18:14:24 +0000195static cl::opt<bool> ClCheckLifetime("asan-check-lifetime",
196 cl::desc("Use llvm.lifetime intrinsics to insert extra checks"),
197 cl::Hidden, cl::init(false));
198
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000199// Debug flags.
200static cl::opt<int> ClDebug("asan-debug", cl::desc("debug"), cl::Hidden,
201 cl::init(0));
202static cl::opt<int> ClDebugStack("asan-debug-stack", cl::desc("debug stack"),
203 cl::Hidden, cl::init(0));
204static cl::opt<std::string> ClDebugFunc("asan-debug-func",
205 cl::Hidden, cl::desc("Debug func"));
206static cl::opt<int> ClDebugMin("asan-debug-min", cl::desc("Debug min inst"),
207 cl::Hidden, cl::init(-1));
208static cl::opt<int> ClDebugMax("asan-debug-max", cl::desc("Debug man inst"),
209 cl::Hidden, cl::init(-1));
210
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000211STATISTIC(NumInstrumentedReads, "Number of instrumented reads");
212STATISTIC(NumInstrumentedWrites, "Number of instrumented writes");
213STATISTIC(NumOptimizedAccessesToGlobalArray,
214 "Number of optimized accesses to global arrays");
215STATISTIC(NumOptimizedAccessesToGlobalVar,
216 "Number of optimized accesses to global vars");
217
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000218namespace {
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000219/// Frontend-provided metadata for global variables.
220class GlobalsMetadata {
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000221 public:
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000222 void init(Module& M) {
223 assert(!inited_);
224 inited_ = true;
225 NamedMDNode *Globals = M.getNamedMetadata("llvm.asan.globals");
226 if (!Globals)
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000227 return;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000228 for (auto MDN : Globals->operands()) {
229 // Format of the metadata node for the global:
230 // {
231 // global,
232 // source_location,
233 // i1 is_dynamically_initialized,
234 // i1 is_blacklisted
235 // }
236 assert(MDN->getNumOperands() == 4);
237 Value *V = MDN->getOperand(0);
238 // The optimizer may optimize away a global entirely.
239 if (!V)
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000240 continue;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000241 GlobalVariable *GV = cast<GlobalVariable>(V);
242 if (Value *Loc = MDN->getOperand(1)) {
243 GlobalVariable *GVLoc = cast<GlobalVariable>(Loc);
244 // We may already know the source location for GV, if it was merged
245 // with another global.
246 if (SourceLocation.insert(std::make_pair(GV, GVLoc)).second)
247 addSourceLocationGlobal(GVLoc);
248 }
249 ConstantInt *IsDynInit = cast<ConstantInt>(MDN->getOperand(2));
250 if (IsDynInit->isOne())
251 DynInitGlobals.insert(GV);
252 ConstantInt *IsBlacklisted = cast<ConstantInt>(MDN->getOperand(3));
253 if (IsBlacklisted->isOne())
254 BlacklistedGlobals.insert(GV);
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000255 }
256 }
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000257
258 GlobalVariable *getSourceLocation(GlobalVariable *G) const {
259 auto Pos = SourceLocation.find(G);
260 return (Pos != SourceLocation.end()) ? Pos->second : nullptr;
261 }
262
263 /// Check if the global is dynamically initialized.
264 bool isDynInit(GlobalVariable *G) const {
265 return DynInitGlobals.count(G);
266 }
267
268 /// Check if the global was blacklisted.
269 bool isBlacklisted(GlobalVariable *G) const {
270 return BlacklistedGlobals.count(G);
271 }
272
273 /// Check if the global was generated to describe source location of another
274 /// global (we don't want to instrument them).
275 bool isSourceLocationGlobal(GlobalVariable *G) const {
276 return LocationGlobals.count(G);
277 }
278
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000279 private:
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000280 bool inited_ = false;
281 DenseMap<GlobalVariable*, GlobalVariable*> SourceLocation;
282 DenseSet<GlobalVariable*> DynInitGlobals;
283 DenseSet<GlobalVariable*> BlacklistedGlobals;
284 DenseSet<GlobalVariable*> LocationGlobals;
285
286 void addSourceLocationGlobal(GlobalVariable *SourceLocGV) {
287 // Source location global is a struct with layout:
288 // {
289 // filename,
290 // i32 line_number,
291 // i32 column_number,
292 // }
293 LocationGlobals.insert(SourceLocGV);
294 ConstantStruct *Contents =
295 cast<ConstantStruct>(SourceLocGV->getInitializer());
296 GlobalVariable *FilenameGV = cast<GlobalVariable>(Contents->getOperand(0));
297 LocationGlobals.insert(FilenameGV);
298 }
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000299};
300
Alexey Samsonov1345d352013-01-16 13:23:28 +0000301/// This struct defines the shadow mapping using the rule:
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000302/// shadow = (mem >> Scale) ADD-or-OR Offset.
Alexey Samsonov1345d352013-01-16 13:23:28 +0000303struct ShadowMapping {
304 int Scale;
305 uint64_t Offset;
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000306 bool OrShadowOffset;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000307};
308
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000309static ShadowMapping getShadowMapping(const Module &M, int LongSize) {
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000310 llvm::Triple TargetTriple(M.getTargetTriple());
311 bool IsAndroid = TargetTriple.getEnvironment() == llvm::Triple::Android;
Alexander Potapenkoa51e4832014-04-23 17:14:45 +0000312 bool IsIOS = TargetTriple.getOS() == llvm::Triple::IOS;
Kostya Serebryany8baa3862014-02-10 07:37:04 +0000313 bool IsFreeBSD = TargetTriple.getOS() == llvm::Triple::FreeBSD;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000314 bool IsLinux = TargetTriple.getOS() == llvm::Triple::Linux;
Bill Schmidt0a9170d2013-07-26 01:35:43 +0000315 bool IsPPC64 = TargetTriple.getArch() == llvm::Triple::ppc64 ||
316 TargetTriple.getArch() == llvm::Triple::ppc64le;
Kostya Serebryanybe733372013-02-12 11:11:02 +0000317 bool IsX86_64 = TargetTriple.getArch() == llvm::Triple::x86_64;
Kostya Serebryany9e62b302013-06-03 14:46:56 +0000318 bool IsMIPS32 = TargetTriple.getArch() == llvm::Triple::mips ||
319 TargetTriple.getArch() == llvm::Triple::mipsel;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000320
321 ShadowMapping Mapping;
322
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000323 if (LongSize == 32) {
324 if (IsAndroid)
325 Mapping.Offset = 0;
326 else if (IsMIPS32)
327 Mapping.Offset = kMIPS32_ShadowOffset32;
328 else if (IsFreeBSD)
329 Mapping.Offset = kFreeBSD_ShadowOffset32;
Alexander Potapenkoa51e4832014-04-23 17:14:45 +0000330 else if (IsIOS)
331 Mapping.Offset = kIOSShadowOffset32;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000332 else
333 Mapping.Offset = kDefaultShadowOffset32;
334 } else { // LongSize == 64
335 if (IsPPC64)
336 Mapping.Offset = kPPC64_ShadowOffset64;
337 else if (IsFreeBSD)
338 Mapping.Offset = kFreeBSD_ShadowOffset64;
339 else if (IsLinux && IsX86_64)
340 Mapping.Offset = kSmallX86_64ShadowOffset;
341 else
342 Mapping.Offset = kDefaultShadowOffset64;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000343 }
344
345 Mapping.Scale = kDefaultShadowScale;
346 if (ClMappingScale) {
347 Mapping.Scale = ClMappingScale;
348 }
349
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000350 // OR-ing shadow offset if more efficient (at least on x86) if the offset
351 // is a power of two, but on ppc64 we have to use add since the shadow
352 // offset is not necessary 1/8-th of the address space.
353 Mapping.OrShadowOffset = !IsPPC64 && !(Mapping.Offset & (Mapping.Offset - 1));
354
Alexey Samsonov1345d352013-01-16 13:23:28 +0000355 return Mapping;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000356}
357
Alexey Samsonov1345d352013-01-16 13:23:28 +0000358static size_t RedzoneSizeForScale(int MappingScale) {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000359 // Redzone used for stack and globals is at least 32 bytes.
360 // For scales 6 and 7, the redzone has to be 64 and 128 bytes respectively.
Alexey Samsonov1345d352013-01-16 13:23:28 +0000361 return std::max(32U, 1U << MappingScale);
Kostya Serebryany20a79972012-11-22 03:18:50 +0000362}
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000363
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000364/// AddressSanitizer: instrument the code in module to find memory bugs.
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000365struct AddressSanitizer : public FunctionPass {
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000366 AddressSanitizer() : FunctionPass(ID) {}
Craig Topper3e4c6972014-03-05 09:10:37 +0000367 const char *getPassName() const override {
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000368 return "AddressSanitizerFunctionPass";
369 }
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000370 void instrumentMop(Instruction *I, bool UseCalls);
Kostya Serebryany796f6552014-02-27 12:45:36 +0000371 void instrumentPointerComparisonOrSubtraction(Instruction *I);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000372 void instrumentAddress(Instruction *OrigIns, Instruction *InsertBefore,
373 Value *Addr, uint32_t TypeSize, bool IsWrite,
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000374 Value *SizeArgument, bool UseCalls);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000375 Value *createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
376 Value *ShadowValue, uint32_t TypeSize);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000377 Instruction *generateCrashCode(Instruction *InsertBefore, Value *Addr,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000378 bool IsWrite, size_t AccessSizeIndex,
379 Value *SizeArgument);
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000380 void instrumentMemIntrinsic(MemIntrinsic *MI);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000381 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB);
Craig Topper3e4c6972014-03-05 09:10:37 +0000382 bool runOnFunction(Function &F) override;
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +0000383 bool maybeInsertAsanInitAtFunctionEntry(Function &F);
Craig Topper3e4c6972014-03-05 09:10:37 +0000384 bool doInitialization(Module &M) override;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000385 static char ID; // Pass identification, replacement for typeid
386
387 private:
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000388 void initializeCallbacks(Module &M);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000389
Kostya Serebryany1cdc6e92011-11-18 01:41:06 +0000390 bool LooksLikeCodeInBug11395(Instruction *I);
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000391 bool GlobalIsLinkerInitialized(GlobalVariable *G);
Kostya Serebryany714c67c2014-01-17 11:00:30 +0000392 bool InjectCoverage(Function &F, const ArrayRef<BasicBlock*> AllBlocks);
393 void InjectCoverageAtBlock(Function &F, BasicBlock &BB);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000394
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000395 LLVMContext *C;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000396 const DataLayout *DL;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000397 int LongSize;
398 Type *IntptrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000399 ShadowMapping Mapping;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000400 Function *AsanCtorFunction;
401 Function *AsanInitFunction;
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000402 Function *AsanHandleNoReturnFunc;
Bob Wilsonda4147c2013-11-15 07:16:09 +0000403 Function *AsanCovFunction;
Kostya Serebryany796f6552014-02-27 12:45:36 +0000404 Function *AsanPtrCmpFunction, *AsanPtrSubFunction;
Kostya Serebryany4273bb02012-07-16 14:09:42 +0000405 // This array is indexed by AccessIsWrite and log2(AccessSize).
406 Function *AsanErrorCallback[2][kNumberOfAccessSizes];
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000407 Function *AsanMemoryAccessCallback[2][kNumberOfAccessSizes];
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000408 // This array is indexed by AccessIsWrite.
Kostya Serebryany86332c02014-04-21 07:10:43 +0000409 Function *AsanErrorCallbackSized[2],
410 *AsanMemoryAccessCallbackSized[2];
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000411 Function *AsanMemmove, *AsanMemcpy, *AsanMemset;
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000412 InlineAsm *EmptyAsm;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000413 GlobalsMetadata GlobalsMD;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000414
415 friend struct FunctionStackPoisoner;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000416};
Kostya Serebryany874dae62012-07-16 16:15:40 +0000417
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000418class AddressSanitizerModule : public ModulePass {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000419 public:
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000420 AddressSanitizerModule(StringRef BlacklistFile = StringRef())
421 : ModulePass(ID), BlacklistFile(BlacklistFile.empty() ? ClBlacklistFile
422 : BlacklistFile) {}
Craig Topper3e4c6972014-03-05 09:10:37 +0000423 bool runOnModule(Module &M) override;
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000424 static char ID; // Pass identification, replacement for typeid
Craig Topper3e4c6972014-03-05 09:10:37 +0000425 const char *getPassName() const override {
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000426 return "AddressSanitizerModule";
427 }
Alexey Samsonov261177a2012-12-04 01:34:23 +0000428
Kostya Serebryany20a79972012-11-22 03:18:50 +0000429 private:
Alexey Samsonov788381b2012-12-25 12:28:20 +0000430 void initializeCallbacks(Module &M);
431
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +0000432 bool InstrumentGlobals(IRBuilder<> &IRB, Module &M);
Kostya Serebryany20a79972012-11-22 03:18:50 +0000433 bool ShouldInstrumentGlobal(GlobalVariable *G);
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000434 void poisonOneInitializer(Function &GlobalInit, GlobalValue *ModuleName);
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000435 void createInitializerPoisonCalls(Module &M, GlobalValue *ModuleName);
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000436 size_t MinRedzoneSizeForGlobal() const {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000437 return RedzoneSizeForScale(Mapping.Scale);
438 }
Kostya Serebryany20a79972012-11-22 03:18:50 +0000439
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000440 SmallString<64> BlacklistFile;
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000441
Ahmed Charles56440fd2014-03-06 05:51:42 +0000442 std::unique_ptr<SpecialCaseList> BL;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000443 GlobalsMetadata GlobalsMD;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000444 Type *IntptrTy;
445 LLVMContext *C;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000446 const DataLayout *DL;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000447 ShadowMapping Mapping;
Alexey Samsonov788381b2012-12-25 12:28:20 +0000448 Function *AsanPoisonGlobals;
449 Function *AsanUnpoisonGlobals;
450 Function *AsanRegisterGlobals;
451 Function *AsanUnregisterGlobals;
Evgeniy Stepanov47b1a952014-05-27 12:39:31 +0000452 Function *AsanCovModuleInit;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000453};
454
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000455// Stack poisoning does not play well with exception handling.
456// When an exception is thrown, we essentially bypass the code
457// that unpoisones the stack. This is why the run-time library has
458// to intercept __cxa_throw (as well as longjmp, etc) and unpoison the entire
459// stack in the interceptor. This however does not work inside the
460// actual function which catches the exception. Most likely because the
461// compiler hoists the load of the shadow value somewhere too high.
462// This causes asan to report a non-existing bug on 453.povray.
463// It sounds like an LLVM bug.
464struct FunctionStackPoisoner : public InstVisitor<FunctionStackPoisoner> {
465 Function &F;
466 AddressSanitizer &ASan;
467 DIBuilder DIB;
468 LLVMContext *C;
469 Type *IntptrTy;
470 Type *IntptrPtrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000471 ShadowMapping Mapping;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000472
473 SmallVector<AllocaInst*, 16> AllocaVec;
474 SmallVector<Instruction*, 8> RetVec;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000475 unsigned StackAlignment;
476
Kostya Serebryany6805de52013-09-10 13:16:56 +0000477 Function *AsanStackMallocFunc[kMaxAsanStackMallocSizeClass + 1],
478 *AsanStackFreeFunc[kMaxAsanStackMallocSizeClass + 1];
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000479 Function *AsanPoisonStackMemoryFunc, *AsanUnpoisonStackMemoryFunc;
480
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000481 // Stores a place and arguments of poisoning/unpoisoning call for alloca.
482 struct AllocaPoisonCall {
483 IntrinsicInst *InsBefore;
Alexey Samsonova788b942013-11-18 14:53:55 +0000484 AllocaInst *AI;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000485 uint64_t Size;
486 bool DoPoison;
487 };
488 SmallVector<AllocaPoisonCall, 8> AllocaPoisonCallVec;
489
490 // Maps Value to an AllocaInst from which the Value is originated.
491 typedef DenseMap<Value*, AllocaInst*> AllocaForValueMapTy;
492 AllocaForValueMapTy AllocaForValue;
493
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000494 FunctionStackPoisoner(Function &F, AddressSanitizer &ASan)
495 : F(F), ASan(ASan), DIB(*F.getParent()), C(ASan.C),
496 IntptrTy(ASan.IntptrTy), IntptrPtrTy(PointerType::get(IntptrTy, 0)),
Alexey Samsonov1345d352013-01-16 13:23:28 +0000497 Mapping(ASan.Mapping),
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000498 StackAlignment(1 << Mapping.Scale) {}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000499
500 bool runOnFunction() {
501 if (!ClStack) return false;
502 // Collect alloca, ret, lifetime instructions etc.
David Blaikieceec2bd2014-04-11 01:50:01 +0000503 for (BasicBlock *BB : depth_first(&F.getEntryBlock()))
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000504 visit(*BB);
David Blaikieceec2bd2014-04-11 01:50:01 +0000505
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000506 if (AllocaVec.empty()) return false;
507
508 initializeCallbacks(*F.getParent());
509
510 poisonStack();
511
512 if (ClDebugStack) {
513 DEBUG(dbgs() << F);
514 }
515 return true;
516 }
517
518 // Finds all static Alloca instructions and puts
519 // poisoned red zones around all of them.
520 // Then unpoison everything back before the function returns.
521 void poisonStack();
522
523 // ----------------------- Visitors.
524 /// \brief Collect all Ret instructions.
525 void visitReturnInst(ReturnInst &RI) {
526 RetVec.push_back(&RI);
527 }
528
529 /// \brief Collect Alloca instructions we want (and can) handle.
530 void visitAllocaInst(AllocaInst &AI) {
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000531 if (!isInterestingAlloca(AI)) return;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000532
533 StackAlignment = std::max(StackAlignment, AI.getAlignment());
534 AllocaVec.push_back(&AI);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000535 }
536
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000537 /// \brief Collect lifetime intrinsic calls to check for use-after-scope
538 /// errors.
539 void visitIntrinsicInst(IntrinsicInst &II) {
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000540 if (!ClCheckLifetime) return;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000541 Intrinsic::ID ID = II.getIntrinsicID();
542 if (ID != Intrinsic::lifetime_start &&
543 ID != Intrinsic::lifetime_end)
544 return;
545 // Found lifetime intrinsic, add ASan instrumentation if necessary.
546 ConstantInt *Size = dyn_cast<ConstantInt>(II.getArgOperand(0));
547 // If size argument is undefined, don't do anything.
548 if (Size->isMinusOne()) return;
549 // Check that size doesn't saturate uint64_t and can
550 // be stored in IntptrTy.
551 const uint64_t SizeValue = Size->getValue().getLimitedValue();
552 if (SizeValue == ~0ULL ||
553 !ConstantInt::isValueValidForType(IntptrTy, SizeValue))
554 return;
555 // Find alloca instruction that corresponds to llvm.lifetime argument.
556 AllocaInst *AI = findAllocaForValue(II.getArgOperand(1));
557 if (!AI) return;
558 bool DoPoison = (ID == Intrinsic::lifetime_end);
Alexey Samsonova788b942013-11-18 14:53:55 +0000559 AllocaPoisonCall APC = {&II, AI, SizeValue, DoPoison};
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000560 AllocaPoisonCallVec.push_back(APC);
561 }
562
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000563 // ---------------------- Helpers.
564 void initializeCallbacks(Module &M);
565
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000566 // Check if we want (and can) handle this alloca.
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000567 bool isInterestingAlloca(AllocaInst &AI) const {
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000568 return (!AI.isArrayAllocation() && AI.isStaticAlloca() &&
569 AI.getAllocatedType()->isSized() &&
570 // alloca() may be called with 0 size, ignore it.
571 getAllocaSizeInBytes(&AI) > 0);
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000572 }
573
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000574 uint64_t getAllocaSizeInBytes(AllocaInst *AI) const {
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000575 Type *Ty = AI->getAllocatedType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000576 uint64_t SizeInBytes = ASan.DL->getTypeAllocSize(Ty);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000577 return SizeInBytes;
578 }
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000579 /// Finds alloca where the value comes from.
580 AllocaInst *findAllocaForValue(Value *V);
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000581 void poisonRedZones(const ArrayRef<uint8_t> ShadowBytes, IRBuilder<> &IRB,
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000582 Value *ShadowBase, bool DoPoison);
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000583 void poisonAlloca(Value *V, uint64_t Size, IRBuilder<> &IRB, bool DoPoison);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +0000584
585 void SetShadowToStackAfterReturnInlined(IRBuilder<> &IRB, Value *ShadowBase,
586 int Size);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000587};
588
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000589} // namespace
590
591char AddressSanitizer::ID = 0;
592INITIALIZE_PASS(AddressSanitizer, "asan",
593 "AddressSanitizer: detects use-after-free and out-of-bounds bugs.",
594 false, false)
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000595FunctionPass *llvm::createAddressSanitizerFunctionPass() {
596 return new AddressSanitizer();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000597}
598
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000599char AddressSanitizerModule::ID = 0;
600INITIALIZE_PASS(AddressSanitizerModule, "asan-module",
601 "AddressSanitizer: detects use-after-free and out-of-bounds bugs."
602 "ModulePass", false, false)
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000603ModulePass *llvm::createAddressSanitizerModulePass(StringRef BlacklistFile) {
604 return new AddressSanitizerModule(BlacklistFile);
Alexander Potapenkoc94cf8f2012-01-23 11:22:43 +0000605}
606
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000607static size_t TypeSizeToSizeIndex(uint32_t TypeSize) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000608 size_t Res = countTrailingZeros(TypeSize / 8);
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000609 assert(Res < kNumberOfAccessSizes);
610 return Res;
611}
612
Bill Wendling58f8cef2013-08-06 22:52:42 +0000613// \brief Create a constant for Str so that we can pass it to the run-time lib.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000614static GlobalVariable *createPrivateGlobalForString(
615 Module &M, StringRef Str, bool AllowMerging) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000616 Constant *StrConst = ConstantDataArray::getString(M.getContext(), Str);
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000617 // We use private linkage for module-local strings. If they can be merged
618 // with another one, we set the unnamed_addr attribute.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000619 GlobalVariable *GV =
620 new GlobalVariable(M, StrConst->getType(), true,
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000621 GlobalValue::PrivateLinkage, StrConst, kAsanGenPrefix);
622 if (AllowMerging)
623 GV->setUnnamedAddr(true);
Kostya Serebryany10cc12f2013-03-18 09:38:39 +0000624 GV->setAlignment(1); // Strings may not be merged w/o setting align 1.
625 return GV;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000626}
627
628static bool GlobalWasGeneratedByAsan(GlobalVariable *G) {
629 return G->getName().find(kAsanGenPrefix) == 0;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000630}
631
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000632Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) {
633 // Shadow >> scale
Alexey Samsonov1345d352013-01-16 13:23:28 +0000634 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale);
635 if (Mapping.Offset == 0)
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000636 return Shadow;
637 // (Shadow >> scale) | offset
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000638 if (Mapping.OrShadowOffset)
639 return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
640 else
641 return IRB.CreateAdd(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000642}
643
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000644// Instrument memset/memmove/memcpy
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000645void AddressSanitizer::instrumentMemIntrinsic(MemIntrinsic *MI) {
646 IRBuilder<> IRB(MI);
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000647 if (isa<MemTransferInst>(MI)) {
Evgeniy Stepanoved31ca42014-05-14 10:56:19 +0000648 IRB.CreateCall3(
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000649 isa<MemMoveInst>(MI) ? AsanMemmove : AsanMemcpy,
650 IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()),
651 IRB.CreatePointerCast(MI->getOperand(1), IRB.getInt8PtrTy()),
652 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false));
653 } else if (isa<MemSetInst>(MI)) {
Evgeniy Stepanoved31ca42014-05-14 10:56:19 +0000654 IRB.CreateCall3(
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000655 AsanMemset,
656 IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()),
657 IRB.CreateIntCast(MI->getOperand(1), IRB.getInt32Ty(), false),
658 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000659 }
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000660 MI->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000661}
662
Kostya Serebryany90241602012-05-30 09:04:06 +0000663// If I is an interesting memory access, return the PointerOperand
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000664// and set IsWrite/Alignment. Otherwise return NULL.
665static Value *isInterestingMemoryAccess(Instruction *I, bool *IsWrite,
666 unsigned *Alignment) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000667 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000668 if (!ClInstrumentReads) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000669 *IsWrite = false;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000670 *Alignment = LI->getAlignment();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000671 return LI->getPointerOperand();
672 }
Kostya Serebryany90241602012-05-30 09:04:06 +0000673 if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000674 if (!ClInstrumentWrites) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000675 *IsWrite = true;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000676 *Alignment = SI->getAlignment();
Kostya Serebryany90241602012-05-30 09:04:06 +0000677 return SI->getPointerOperand();
678 }
679 if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000680 if (!ClInstrumentAtomics) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000681 *IsWrite = true;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000682 *Alignment = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +0000683 return RMW->getPointerOperand();
684 }
685 if (AtomicCmpXchgInst *XCHG = dyn_cast<AtomicCmpXchgInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000686 if (!ClInstrumentAtomics) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000687 *IsWrite = true;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000688 *Alignment = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +0000689 return XCHG->getPointerOperand();
690 }
Craig Topperf40110f2014-04-25 05:29:35 +0000691 return nullptr;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000692}
693
Kostya Serebryany796f6552014-02-27 12:45:36 +0000694static bool isPointerOperand(Value *V) {
695 return V->getType()->isPointerTy() || isa<PtrToIntInst>(V);
696}
697
698// This is a rough heuristic; it may cause both false positives and
699// false negatives. The proper implementation requires cooperation with
700// the frontend.
701static bool isInterestingPointerComparisonOrSubtraction(Instruction *I) {
702 if (ICmpInst *Cmp = dyn_cast<ICmpInst>(I)) {
703 if (!Cmp->isRelational())
704 return false;
705 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) {
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +0000706 if (BO->getOpcode() != Instruction::Sub)
Kostya Serebryany796f6552014-02-27 12:45:36 +0000707 return false;
708 } else {
709 return false;
710 }
711 if (!isPointerOperand(I->getOperand(0)) ||
712 !isPointerOperand(I->getOperand(1)))
713 return false;
714 return true;
715}
716
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000717bool AddressSanitizer::GlobalIsLinkerInitialized(GlobalVariable *G) {
718 // If a global variable does not have dynamic initialization we don't
719 // have to instrument it. However, if a global does not have initializer
720 // at all, we assume it has dynamic initializer (in other TU).
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000721 return G->hasInitializer() && !GlobalsMD.isDynInit(G);
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000722}
723
Kostya Serebryany796f6552014-02-27 12:45:36 +0000724void
725AddressSanitizer::instrumentPointerComparisonOrSubtraction(Instruction *I) {
726 IRBuilder<> IRB(I);
727 Function *F = isa<ICmpInst>(I) ? AsanPtrCmpFunction : AsanPtrSubFunction;
728 Value *Param[2] = {I->getOperand(0), I->getOperand(1)};
729 for (int i = 0; i < 2; i++) {
730 if (Param[i]->getType()->isPointerTy())
731 Param[i] = IRB.CreatePointerCast(Param[i], IntptrTy);
732 }
733 IRB.CreateCall2(F, Param[0], Param[1]);
734}
735
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000736void AddressSanitizer::instrumentMop(Instruction *I, bool UseCalls) {
Axel Naumann4a127062012-09-17 14:20:57 +0000737 bool IsWrite = false;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000738 unsigned Alignment = 0;
739 Value *Addr = isInterestingMemoryAccess(I, &IsWrite, &Alignment);
Kostya Serebryany90241602012-05-30 09:04:06 +0000740 assert(Addr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000741 if (ClOpt && ClOptGlobals) {
742 if (GlobalVariable *G = dyn_cast<GlobalVariable>(Addr)) {
743 // If initialization order checking is disabled, a simple access to a
744 // dynamically initialized global is always valid.
Alexey Samsonove595e1a2014-06-13 17:53:44 +0000745 if (!ClInitializers || GlobalIsLinkerInitialized(G)) {
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000746 NumOptimizedAccessesToGlobalVar++;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000747 return;
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000748 }
749 }
750 ConstantExpr *CE = dyn_cast<ConstantExpr>(Addr);
751 if (CE && CE->isGEPWithNoNotionalOverIndexing()) {
752 if (GlobalVariable *G = dyn_cast<GlobalVariable>(CE->getOperand(0))) {
753 if (CE->getOperand(1)->isNullValue() && GlobalIsLinkerInitialized(G)) {
754 NumOptimizedAccessesToGlobalArray++;
755 return;
756 }
757 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000758 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000759 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000760
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000761 Type *OrigPtrTy = Addr->getType();
762 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType();
763
764 assert(OrigTy->isSized());
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000765 uint32_t TypeSize = DL->getTypeStoreSizeInBits(OrigTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000766
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000767 assert((TypeSize % 8) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000768
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000769 if (IsWrite)
770 NumInstrumentedWrites++;
771 else
772 NumInstrumentedReads++;
773
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000774 unsigned Granularity = 1 << Mapping.Scale;
775 // Instrument a 1-, 2-, 4-, 8-, or 16- byte access with one check
776 // if the data is properly aligned.
777 if ((TypeSize == 8 || TypeSize == 16 || TypeSize == 32 || TypeSize == 64 ||
778 TypeSize == 128) &&
779 (Alignment >= Granularity || Alignment == 0 || Alignment >= TypeSize / 8))
Craig Topperf40110f2014-04-25 05:29:35 +0000780 return instrumentAddress(I, I, Addr, TypeSize, IsWrite, nullptr, UseCalls);
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000781 // Instrument unusual size or unusual alignment.
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000782 // We can not do it with a single check, so we do 1-byte check for the first
783 // and the last bytes. We call __asan_report_*_n(addr, real_size) to be able
784 // to report the actual access size.
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000785 IRBuilder<> IRB(I);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000786 Value *Size = ConstantInt::get(IntptrTy, TypeSize / 8);
Kostya Serebryanyc9a2c172014-04-22 11:19:45 +0000787 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
788 if (UseCalls) {
Evgeniy Stepanoved31ca42014-05-14 10:56:19 +0000789 IRB.CreateCall2(AsanMemoryAccessCallbackSized[IsWrite], AddrLong, Size);
Kostya Serebryanyc9a2c172014-04-22 11:19:45 +0000790 } else {
791 Value *LastByte = IRB.CreateIntToPtr(
792 IRB.CreateAdd(AddrLong, ConstantInt::get(IntptrTy, TypeSize / 8 - 1)),
793 OrigPtrTy);
794 instrumentAddress(I, I, Addr, 8, IsWrite, Size, false);
795 instrumentAddress(I, I, LastByte, 8, IsWrite, Size, false);
796 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000797}
798
Alexander Potapenko056e27e2012-04-23 10:47:31 +0000799// Validate the result of Module::getOrInsertFunction called for an interface
800// function of AddressSanitizer. If the instrumented module defines a function
801// with the same name, their prototypes must match, otherwise
802// getOrInsertFunction returns a bitcast.
Kostya Serebryany20a79972012-11-22 03:18:50 +0000803static Function *checkInterfaceFunction(Constant *FuncOrBitcast) {
Alexander Potapenko056e27e2012-04-23 10:47:31 +0000804 if (isa<Function>(FuncOrBitcast)) return cast<Function>(FuncOrBitcast);
805 FuncOrBitcast->dump();
806 report_fatal_error("trying to redefine an AddressSanitizer "
807 "interface function");
808}
809
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000810Instruction *AddressSanitizer::generateCrashCode(
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000811 Instruction *InsertBefore, Value *Addr,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000812 bool IsWrite, size_t AccessSizeIndex, Value *SizeArgument) {
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000813 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000814 CallInst *Call = SizeArgument
815 ? IRB.CreateCall2(AsanErrorCallbackSized[IsWrite], Addr, SizeArgument)
816 : IRB.CreateCall(AsanErrorCallback[IsWrite][AccessSizeIndex], Addr);
817
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000818 // We don't do Call->setDoesNotReturn() because the BB already has
819 // UnreachableInst at the end.
820 // This EmptyAsm is required to avoid callback merge.
821 IRB.CreateCall(EmptyAsm);
Kostya Serebryany3411f2e2012-01-06 18:09:21 +0000822 return Call;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000823}
824
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000825Value *AddressSanitizer::createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
Kostya Serebryany874dae62012-07-16 16:15:40 +0000826 Value *ShadowValue,
827 uint32_t TypeSize) {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000828 size_t Granularity = 1 << Mapping.Scale;
Kostya Serebryany874dae62012-07-16 16:15:40 +0000829 // Addr & (Granularity - 1)
830 Value *LastAccessedByte = IRB.CreateAnd(
831 AddrLong, ConstantInt::get(IntptrTy, Granularity - 1));
832 // (Addr & (Granularity - 1)) + size - 1
833 if (TypeSize / 8 > 1)
834 LastAccessedByte = IRB.CreateAdd(
835 LastAccessedByte, ConstantInt::get(IntptrTy, TypeSize / 8 - 1));
836 // (uint8_t) ((Addr & (Granularity-1)) + size - 1)
837 LastAccessedByte = IRB.CreateIntCast(
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000838 LastAccessedByte, ShadowValue->getType(), false);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000839 // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue
840 return IRB.CreateICmpSGE(LastAccessedByte, ShadowValue);
841}
842
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000843void AddressSanitizer::instrumentAddress(Instruction *OrigIns,
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000844 Instruction *InsertBefore, Value *Addr,
845 uint32_t TypeSize, bool IsWrite,
846 Value *SizeArgument, bool UseCalls) {
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000847 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000848 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000849 size_t AccessSizeIndex = TypeSizeToSizeIndex(TypeSize);
850
851 if (UseCalls) {
Kostya Serebryany94f57d192014-04-21 10:28:13 +0000852 IRB.CreateCall(AsanMemoryAccessCallback[IsWrite][AccessSizeIndex],
853 AddrLong);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000854 return;
855 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000856
857 Type *ShadowTy = IntegerType::get(
Alexey Samsonov1345d352013-01-16 13:23:28 +0000858 *C, std::max(8U, TypeSize >> Mapping.Scale));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000859 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0);
860 Value *ShadowPtr = memToShadow(AddrLong, IRB);
861 Value *CmpVal = Constant::getNullValue(ShadowTy);
862 Value *ShadowValue = IRB.CreateLoad(
863 IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy));
864
865 Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal);
Alexey Samsonov1345d352013-01-16 13:23:28 +0000866 size_t Granularity = 1 << Mapping.Scale;
Craig Topperf40110f2014-04-25 05:29:35 +0000867 TerminatorInst *CrashTerm = nullptr;
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000868
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000869 if (ClAlwaysSlowPath || (TypeSize < 8 * Granularity)) {
Evgeniy Stepanov8eb77d82012-10-19 10:48:31 +0000870 TerminatorInst *CheckTerm =
Evgeniy Stepanova9164e92013-12-19 13:29:56 +0000871 SplitBlockAndInsertIfThen(Cmp, InsertBefore, false);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000872 assert(dyn_cast<BranchInst>(CheckTerm)->isUnconditional());
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000873 BasicBlock *NextBB = CheckTerm->getSuccessor(0);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000874 IRB.SetInsertPoint(CheckTerm);
875 Value *Cmp2 = createSlowPathCmp(IRB, AddrLong, ShadowValue, TypeSize);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000876 BasicBlock *CrashBlock =
877 BasicBlock::Create(*C, "", NextBB->getParent(), NextBB);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000878 CrashTerm = new UnreachableInst(*C, CrashBlock);
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000879 BranchInst *NewTerm = BranchInst::Create(CrashBlock, NextBB, Cmp2);
880 ReplaceInstWithInst(CheckTerm, NewTerm);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000881 } else {
Evgeniy Stepanova9164e92013-12-19 13:29:56 +0000882 CrashTerm = SplitBlockAndInsertIfThen(Cmp, InsertBefore, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000883 }
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000884
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000885 Instruction *Crash = generateCrashCode(
886 CrashTerm, AddrLong, IsWrite, AccessSizeIndex, SizeArgument);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000887 Crash->setDebugLoc(OrigIns->getDebugLoc());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000888}
889
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000890void AddressSanitizerModule::poisonOneInitializer(Function &GlobalInit,
891 GlobalValue *ModuleName) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000892 // Set up the arguments to our poison/unpoison functions.
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000893 IRBuilder<> IRB(GlobalInit.begin()->getFirstInsertionPt());
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000894
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000895 // Add a call to poison all external globals before the given function starts.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000896 Value *ModuleNameAddr = ConstantExpr::getPointerCast(ModuleName, IntptrTy);
897 IRB.CreateCall(AsanPoisonGlobals, ModuleNameAddr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000898
899 // Add calls to unpoison all globals before each return instruction.
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000900 for (auto &BB : GlobalInit.getBasicBlockList())
901 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB.getTerminator()))
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000902 CallInst::Create(AsanUnpoisonGlobals, "", RI);
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000903}
904
905void AddressSanitizerModule::createInitializerPoisonCalls(
906 Module &M, GlobalValue *ModuleName) {
907 GlobalVariable *GV = M.getGlobalVariable("llvm.global_ctors");
908
909 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
910 for (Use &OP : CA->operands()) {
911 if (isa<ConstantAggregateZero>(OP))
912 continue;
913 ConstantStruct *CS = cast<ConstantStruct>(OP);
914
915 // Must have a function or null ptr.
916 // (CS->getOperand(0) is the init priority.)
917 if (Function* F = dyn_cast<Function>(CS->getOperand(1))) {
918 if (F->getName() != kAsanModuleCtorName)
919 poisonOneInitializer(*F, ModuleName);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000920 }
921 }
922}
923
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000924bool AddressSanitizerModule::ShouldInstrumentGlobal(GlobalVariable *G) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000925 Type *Ty = cast<PointerType>(G->getType())->getElementType();
Kostya Serebryany20343352012-10-17 13:40:06 +0000926 DEBUG(dbgs() << "GLOBAL: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000927
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000928 // FIXME: Don't use the blacklist here, all the data should be collected
929 // by the frontend and passed in globals metadata.
Kostya Serebryany2fa38f82012-09-05 07:29:56 +0000930 if (BL->isIn(*G)) return false;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000931 if (GlobalsMD.isBlacklisted(G)) return false;
932 if (GlobalsMD.isSourceLocationGlobal(G)) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000933 if (!Ty->isSized()) return false;
934 if (!G->hasInitializer()) return false;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000935 if (GlobalWasGeneratedByAsan(G)) return false; // Our own global.
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000936 // Touch only those globals that will not be defined in other modules.
937 // Don't handle ODR type linkages since other modules may be built w/o asan.
938 if (G->getLinkage() != GlobalVariable::ExternalLinkage &&
939 G->getLinkage() != GlobalVariable::PrivateLinkage &&
940 G->getLinkage() != GlobalVariable::InternalLinkage)
941 return false;
942 // Two problems with thread-locals:
943 // - The address of the main thread's copy can't be computed at link-time.
944 // - Need to poison all copies, not just the main thread's one.
945 if (G->isThreadLocal())
946 return false;
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000947 // For now, just ignore this Global if the alignment is large.
948 if (G->getAlignment() > MinRedzoneSizeForGlobal()) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000949
950 // Ignore all the globals with the names starting with "\01L_OBJC_".
951 // Many of those are put into the .cstring section. The linker compresses
952 // that section by removing the spare \0s after the string terminator, so
953 // our redzones get broken.
954 if ((G->getName().find("\01L_OBJC_") == 0) ||
955 (G->getName().find("\01l_OBJC_") == 0)) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000956 DEBUG(dbgs() << "Ignoring \\01L_OBJC_* global: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000957 return false;
958 }
959
960 if (G->hasSection()) {
961 StringRef Section(G->getSection());
962 // Ignore the globals from the __OBJC section. The ObjC runtime assumes
963 // those conform to /usr/lib/objc/runtime.h, so we can't add redzones to
964 // them.
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000965 if (Section.startswith("__OBJC,") ||
966 Section.startswith("__DATA, __objc_")) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000967 DEBUG(dbgs() << "Ignoring ObjC runtime global: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000968 return false;
969 }
970 // See http://code.google.com/p/address-sanitizer/issues/detail?id=32
971 // Constant CFString instances are compiled in the following way:
972 // -- the string buffer is emitted into
973 // __TEXT,__cstring,cstring_literals
974 // -- the constant NSConstantString structure referencing that buffer
975 // is placed into __DATA,__cfstring
976 // Therefore there's no point in placing redzones into __DATA,__cfstring.
977 // Moreover, it causes the linker to crash on OS X 10.7
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000978 if (Section.startswith("__DATA,__cfstring")) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000979 DEBUG(dbgs() << "Ignoring CFString: " << *G << "\n");
980 return false;
981 }
982 // The linker merges the contents of cstring_literals and removes the
983 // trailing zeroes.
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000984 if (Section.startswith("__TEXT,__cstring,cstring_literals")) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000985 DEBUG(dbgs() << "Ignoring a cstring literal: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000986 return false;
987 }
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000988
989 // Callbacks put into the CRT initializer/terminator sections
990 // should not be instrumented.
991 // See https://code.google.com/p/address-sanitizer/issues/detail?id=305
992 // and http://msdn.microsoft.com/en-US/en-en/library/bb918180(v=vs.120).aspx
993 if (Section.startswith(".CRT")) {
994 DEBUG(dbgs() << "Ignoring a global initializer callback: " << *G << "\n");
995 return false;
996 }
997
Alexander Potapenko04969e82014-03-20 10:48:34 +0000998 // Globals from llvm.metadata aren't emitted, do not instrument them.
999 if (Section == "llvm.metadata") return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001000 }
1001
1002 return true;
1003}
1004
Alexey Samsonov788381b2012-12-25 12:28:20 +00001005void AddressSanitizerModule::initializeCallbacks(Module &M) {
1006 IRBuilder<> IRB(*C);
1007 // Declare our poisoning and unpoisoning functions.
1008 AsanPoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001009 kAsanPoisonGlobalsName, IRB.getVoidTy(), IntptrTy, NULL));
Alexey Samsonov788381b2012-12-25 12:28:20 +00001010 AsanPoisonGlobals->setLinkage(Function::ExternalLinkage);
1011 AsanUnpoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
1012 kAsanUnpoisonGlobalsName, IRB.getVoidTy(), NULL));
1013 AsanUnpoisonGlobals->setLinkage(Function::ExternalLinkage);
1014 // Declare functions that register/unregister globals.
1015 AsanRegisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
1016 kAsanRegisterGlobalsName, IRB.getVoidTy(),
1017 IntptrTy, IntptrTy, NULL));
1018 AsanRegisterGlobals->setLinkage(Function::ExternalLinkage);
1019 AsanUnregisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
1020 kAsanUnregisterGlobalsName,
1021 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1022 AsanUnregisterGlobals->setLinkage(Function::ExternalLinkage);
Evgeniy Stepanov47b1a952014-05-27 12:39:31 +00001023 AsanCovModuleInit = checkInterfaceFunction(M.getOrInsertFunction(
1024 kAsanCovModuleInitName,
1025 IRB.getVoidTy(), IntptrTy, NULL));
1026 AsanCovModuleInit->setLinkage(Function::ExternalLinkage);
Alexey Samsonov788381b2012-12-25 12:28:20 +00001027}
1028
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001029// This function replaces all global variables with new variables that have
1030// trailing redzones. It also creates a function that poisons
1031// redzones and inserts this function into llvm.global_ctors.
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001032bool AddressSanitizerModule::InstrumentGlobals(IRBuilder<> &IRB, Module &M) {
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001033 GlobalsMD.init(M);
Kostya Serebryany20a79972012-11-22 03:18:50 +00001034
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001035 SmallVector<GlobalVariable *, 16> GlobalsToChange;
1036
Alexey Samsonova02e6642014-05-29 18:40:48 +00001037 for (auto &G : M.globals()) {
1038 if (ShouldInstrumentGlobal(&G))
1039 GlobalsToChange.push_back(&G);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001040 }
1041
1042 size_t n = GlobalsToChange.size();
1043 if (n == 0) return false;
1044
1045 // A global is described by a structure
1046 // size_t beg;
1047 // size_t size;
1048 // size_t size_with_redzone;
1049 // const char *name;
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001050 // const char *module_name;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001051 // size_t has_dynamic_init;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001052 // void *source_location;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001053 // We initialize an array of such structures and pass it to a run-time call.
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001054 StructType *GlobalStructTy =
1055 StructType::get(IntptrTy, IntptrTy, IntptrTy, IntptrTy, IntptrTy,
1056 IntptrTy, IntptrTy, NULL);
Rafael Espindola44fee4e2013-10-01 13:32:03 +00001057 SmallVector<Constant *, 16> Initializers(n);
Kostya Serebryany20a79972012-11-22 03:18:50 +00001058
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001059 bool HasDynamicallyInitializedGlobals = false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001060
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001061 // We shouldn't merge same module names, as this string serves as unique
1062 // module ID in runtime.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001063 GlobalVariable *ModuleName = createPrivateGlobalForString(
1064 M, M.getModuleIdentifier(), /*AllowMerging*/false);
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001065
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001066 for (size_t i = 0; i < n; i++) {
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001067 static const uint64_t kMaxGlobalRedzone = 1 << 18;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001068 GlobalVariable *G = GlobalsToChange[i];
1069 PointerType *PtrTy = cast<PointerType>(G->getType());
1070 Type *Ty = PtrTy->getElementType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001071 uint64_t SizeInBytes = DL->getTypeAllocSize(Ty);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001072 uint64_t MinRZ = MinRedzoneSizeForGlobal();
Kostya Serebryany87191f62013-01-24 10:35:40 +00001073 // MinRZ <= RZ <= kMaxGlobalRedzone
1074 // and trying to make RZ to be ~ 1/4 of SizeInBytes.
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001075 uint64_t RZ = std::max(MinRZ,
Kostya Serebryany87191f62013-01-24 10:35:40 +00001076 std::min(kMaxGlobalRedzone,
1077 (SizeInBytes / MinRZ / 4) * MinRZ));
1078 uint64_t RightRedzoneSize = RZ;
1079 // Round up to MinRZ
1080 if (SizeInBytes % MinRZ)
1081 RightRedzoneSize += MinRZ - (SizeInBytes % MinRZ);
1082 assert(((RightRedzoneSize + SizeInBytes) % MinRZ) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001083 Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize);
1084
1085 StructType *NewTy = StructType::get(Ty, RightRedZoneTy, NULL);
1086 Constant *NewInitializer = ConstantStruct::get(
1087 NewTy, G->getInitializer(),
1088 Constant::getNullValue(RightRedZoneTy), NULL);
1089
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001090 GlobalVariable *Name =
1091 createPrivateGlobalForString(M, G->getName(), /*AllowMerging*/true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001092
1093 // Create a new global variable with enough space for a redzone.
Bill Wendling58f8cef2013-08-06 22:52:42 +00001094 GlobalValue::LinkageTypes Linkage = G->getLinkage();
1095 if (G->isConstant() && Linkage == GlobalValue::PrivateLinkage)
1096 Linkage = GlobalValue::InternalLinkage;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001097 GlobalVariable *NewGlobal = new GlobalVariable(
Bill Wendling58f8cef2013-08-06 22:52:42 +00001098 M, NewTy, G->isConstant(), Linkage,
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001099 NewInitializer, "", G, G->getThreadLocalMode());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001100 NewGlobal->copyAttributesFrom(G);
Kostya Serebryany87191f62013-01-24 10:35:40 +00001101 NewGlobal->setAlignment(MinRZ);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001102
1103 Value *Indices2[2];
1104 Indices2[0] = IRB.getInt32(0);
1105 Indices2[1] = IRB.getInt32(0);
1106
1107 G->replaceAllUsesWith(
Kostya Serebryany7471d132012-01-28 04:27:16 +00001108 ConstantExpr::getGetElementPtr(NewGlobal, Indices2, true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001109 NewGlobal->takeName(G);
1110 G->eraseFromParent();
1111
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001112 bool GlobalHasDynamicInitializer = GlobalsMD.isDynInit(G);
1113 GlobalVariable *SourceLoc = GlobalsMD.getSourceLocation(G);
1114
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001115 Initializers[i] = ConstantStruct::get(
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001116 GlobalStructTy, ConstantExpr::getPointerCast(NewGlobal, IntptrTy),
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001117 ConstantInt::get(IntptrTy, SizeInBytes),
1118 ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize),
1119 ConstantExpr::getPointerCast(Name, IntptrTy),
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001120 ConstantExpr::getPointerCast(ModuleName, IntptrTy),
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001121 ConstantInt::get(IntptrTy, GlobalHasDynamicInitializer),
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001122 SourceLoc ? ConstantExpr::getPointerCast(SourceLoc, IntptrTy)
1123 : ConstantInt::get(IntptrTy, 0),
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001124 NULL);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001125
Alexey Samsonove595e1a2014-06-13 17:53:44 +00001126 if (ClInitializers && GlobalHasDynamicInitializer)
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001127 HasDynamicallyInitializedGlobals = true;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001128
Kostya Serebryany20343352012-10-17 13:40:06 +00001129 DEBUG(dbgs() << "NEW GLOBAL: " << *NewGlobal << "\n");
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001130 }
1131
1132 ArrayType *ArrayOfGlobalStructTy = ArrayType::get(GlobalStructTy, n);
1133 GlobalVariable *AllGlobals = new GlobalVariable(
Bill Wendling58f8cef2013-08-06 22:52:42 +00001134 M, ArrayOfGlobalStructTy, false, GlobalVariable::InternalLinkage,
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001135 ConstantArray::get(ArrayOfGlobalStructTy, Initializers), "");
1136
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001137 // Create calls for poisoning before initializers run and unpoisoning after.
Alexey Samsonove595e1a2014-06-13 17:53:44 +00001138 if (HasDynamicallyInitializedGlobals)
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001139 createInitializerPoisonCalls(M, ModuleName);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001140 IRB.CreateCall2(AsanRegisterGlobals,
1141 IRB.CreatePointerCast(AllGlobals, IntptrTy),
1142 ConstantInt::get(IntptrTy, n));
1143
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001144 // We also need to unregister globals at the end, e.g. when a shared library
1145 // gets closed.
1146 Function *AsanDtorFunction = Function::Create(
1147 FunctionType::get(Type::getVoidTy(*C), false),
1148 GlobalValue::InternalLinkage, kAsanModuleDtorName, &M);
1149 BasicBlock *AsanDtorBB = BasicBlock::Create(*C, "", AsanDtorFunction);
1150 IRBuilder<> IRB_Dtor(ReturnInst::Create(*C, AsanDtorBB));
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001151 IRB_Dtor.CreateCall2(AsanUnregisterGlobals,
1152 IRB.CreatePointerCast(AllGlobals, IntptrTy),
1153 ConstantInt::get(IntptrTy, n));
Alexey Samsonov1f647502014-05-29 01:10:14 +00001154 appendToGlobalDtors(M, AsanDtorFunction, kAsanCtorAndDtorPriority);
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001155
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001156 DEBUG(dbgs() << M);
1157 return true;
1158}
1159
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001160bool AddressSanitizerModule::runOnModule(Module &M) {
1161 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
1162 if (!DLP)
1163 return false;
1164 DL = &DLP->getDataLayout();
1165 BL.reset(SpecialCaseList::createOrDie(BlacklistFile));
1166 C = &(M.getContext());
1167 int LongSize = DL->getPointerSizeInBits();
1168 IntptrTy = Type::getIntNTy(*C, LongSize);
1169 Mapping = getShadowMapping(M, LongSize);
1170 initializeCallbacks(M);
1171
1172 bool Changed = false;
1173
1174 Function *CtorFunc = M.getFunction(kAsanModuleCtorName);
1175 assert(CtorFunc);
1176 IRBuilder<> IRB(CtorFunc->getEntryBlock().getTerminator());
1177
1178 if (ClCoverage > 0) {
1179 Function *CovFunc = M.getFunction(kAsanCovName);
1180 int nCov = CovFunc ? CovFunc->getNumUses() : 0;
1181 IRB.CreateCall(AsanCovModuleInit, ConstantInt::get(IntptrTy, nCov));
1182 Changed = true;
1183 }
1184
1185 if (ClGlobals && !BL->isIn(M)) Changed |= InstrumentGlobals(IRB, M);
1186
1187 return Changed;
1188}
1189
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001190void AddressSanitizer::initializeCallbacks(Module &M) {
1191 IRBuilder<> IRB(*C);
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001192 // Create __asan_report* callbacks.
1193 for (size_t AccessIsWrite = 0; AccessIsWrite <= 1; AccessIsWrite++) {
1194 for (size_t AccessSizeIndex = 0; AccessSizeIndex < kNumberOfAccessSizes;
1195 AccessSizeIndex++) {
1196 // IsWrite and TypeSize are encoded in the function name.
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001197 std::string Suffix =
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001198 (AccessIsWrite ? "store" : "load") + itostr(1 << AccessSizeIndex);
Kostya Serebryany157a5152012-11-07 12:42:18 +00001199 AsanErrorCallback[AccessIsWrite][AccessSizeIndex] =
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001200 checkInterfaceFunction(
1201 M.getOrInsertFunction(kAsanReportErrorTemplate + Suffix,
1202 IRB.getVoidTy(), IntptrTy, NULL));
1203 AsanMemoryAccessCallback[AccessIsWrite][AccessSizeIndex] =
1204 checkInterfaceFunction(
1205 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + Suffix,
1206 IRB.getVoidTy(), IntptrTy, NULL));
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001207 }
1208 }
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +00001209 AsanErrorCallbackSized[0] = checkInterfaceFunction(M.getOrInsertFunction(
1210 kAsanReportLoadN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1211 AsanErrorCallbackSized[1] = checkInterfaceFunction(M.getOrInsertFunction(
1212 kAsanReportStoreN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001213
Kostya Serebryany86332c02014-04-21 07:10:43 +00001214 AsanMemoryAccessCallbackSized[0] = checkInterfaceFunction(
1215 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + "loadN",
1216 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1217 AsanMemoryAccessCallbackSized[1] = checkInterfaceFunction(
1218 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + "storeN",
1219 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1220
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00001221 AsanMemmove = checkInterfaceFunction(M.getOrInsertFunction(
1222 ClMemoryAccessCallbackPrefix + "memmove", IRB.getInt8PtrTy(),
1223 IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IntptrTy, NULL));
1224 AsanMemcpy = checkInterfaceFunction(M.getOrInsertFunction(
1225 ClMemoryAccessCallbackPrefix + "memcpy", IRB.getInt8PtrTy(),
1226 IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IntptrTy, NULL));
1227 AsanMemset = checkInterfaceFunction(M.getOrInsertFunction(
1228 ClMemoryAccessCallbackPrefix + "memset", IRB.getInt8PtrTy(),
1229 IRB.getInt8PtrTy(), IRB.getInt32Ty(), IntptrTy, NULL));
1230
1231 AsanHandleNoReturnFunc = checkInterfaceFunction(
1232 M.getOrInsertFunction(kAsanHandleNoReturnName, IRB.getVoidTy(), NULL));
Bob Wilsonda4147c2013-11-15 07:16:09 +00001233 AsanCovFunction = checkInterfaceFunction(M.getOrInsertFunction(
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001234 kAsanCovName, IRB.getVoidTy(), NULL));
Kostya Serebryany796f6552014-02-27 12:45:36 +00001235 AsanPtrCmpFunction = checkInterfaceFunction(M.getOrInsertFunction(
1236 kAsanPtrCmp, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1237 AsanPtrSubFunction = checkInterfaceFunction(M.getOrInsertFunction(
1238 kAsanPtrSub, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
Kostya Serebryanyf02c6062012-07-20 09:54:50 +00001239 // We insert an empty inline asm after __asan_report* to avoid callback merge.
1240 EmptyAsm = InlineAsm::get(FunctionType::get(IRB.getVoidTy(), false),
1241 StringRef(""), StringRef(""),
1242 /*hasSideEffects=*/true);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001243}
1244
1245// virtual
1246bool AddressSanitizer::doInitialization(Module &M) {
1247 // Initialize the private fields. No one has accessed them before.
Rafael Espindola93512512014-02-25 17:30:31 +00001248 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
1249 if (!DLP)
Evgeniy Stepanov119cb2e2014-04-23 12:51:32 +00001250 report_fatal_error("data layout missing");
Rafael Espindola93512512014-02-25 17:30:31 +00001251 DL = &DLP->getDataLayout();
1252
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001253 GlobalsMD.init(M);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001254
1255 C = &(M.getContext());
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001256 LongSize = DL->getPointerSizeInBits();
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001257 IntptrTy = Type::getIntNTy(*C, LongSize);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001258
1259 AsanCtorFunction = Function::Create(
1260 FunctionType::get(Type::getVoidTy(*C), false),
1261 GlobalValue::InternalLinkage, kAsanModuleCtorName, &M);
1262 BasicBlock *AsanCtorBB = BasicBlock::Create(*C, "", AsanCtorFunction);
1263 // call __asan_init in the module ctor.
1264 IRBuilder<> IRB(ReturnInst::Create(*C, AsanCtorBB));
1265 AsanInitFunction = checkInterfaceFunction(
1266 M.getOrInsertFunction(kAsanInitName, IRB.getVoidTy(), NULL));
1267 AsanInitFunction->setLinkage(Function::ExternalLinkage);
1268 IRB.CreateCall(AsanInitFunction);
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001269
Evgeniy Stepanov13665362014-01-16 10:19:12 +00001270 Mapping = getShadowMapping(M, LongSize);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001271
Alexey Samsonov1f647502014-05-29 01:10:14 +00001272 appendToGlobalCtors(M, AsanCtorFunction, kAsanCtorAndDtorPriority);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001273 return true;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001274}
1275
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001276bool AddressSanitizer::maybeInsertAsanInitAtFunctionEntry(Function &F) {
1277 // For each NSObject descendant having a +load method, this method is invoked
1278 // by the ObjC runtime before any of the static constructors is called.
1279 // Therefore we need to instrument such methods with a call to __asan_init
1280 // at the beginning in order to initialize our runtime before any access to
1281 // the shadow memory.
1282 // We cannot just ignore these methods, because they may call other
1283 // instrumented functions.
1284 if (F.getName().find(" load]") != std::string::npos) {
1285 IRBuilder<> IRB(F.begin()->begin());
1286 IRB.CreateCall(AsanInitFunction);
1287 return true;
1288 }
1289 return false;
1290}
1291
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001292void AddressSanitizer::InjectCoverageAtBlock(Function &F, BasicBlock &BB) {
1293 BasicBlock::iterator IP = BB.getFirstInsertionPt(), BE = BB.end();
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001294 // Skip static allocas at the top of the entry block so they don't become
1295 // dynamic when we split the block. If we used our optimized stack layout,
1296 // then there will only be one alloca and it will come first.
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001297 for (; IP != BE; ++IP) {
1298 AllocaInst *AI = dyn_cast<AllocaInst>(IP);
1299 if (!AI || !AI->isStaticAlloca())
1300 break;
1301 }
1302
Evgeniy Stepanov493df132014-06-05 14:34:45 +00001303 DebugLoc EntryLoc = IP->getDebugLoc().getFnDebugLoc(*C);
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001304 IRBuilder<> IRB(IP);
Evgeniy Stepanov493df132014-06-05 14:34:45 +00001305 IRB.SetCurrentDebugLocation(EntryLoc);
Bob Wilsonda4147c2013-11-15 07:16:09 +00001306 Type *Int8Ty = IRB.getInt8Ty();
1307 GlobalVariable *Guard = new GlobalVariable(
Kostya Serebryany0604c622013-11-15 09:52:05 +00001308 *F.getParent(), Int8Ty, false, GlobalValue::PrivateLinkage,
Bob Wilsonda4147c2013-11-15 07:16:09 +00001309 Constant::getNullValue(Int8Ty), "__asan_gen_cov_" + F.getName());
1310 LoadInst *Load = IRB.CreateLoad(Guard);
1311 Load->setAtomic(Monotonic);
1312 Load->setAlignment(1);
1313 Value *Cmp = IRB.CreateICmpEQ(Constant::getNullValue(Int8Ty), Load);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001314 Instruction *Ins = SplitBlockAndInsertIfThen(
1315 Cmp, IP, false, MDBuilder(*C).createBranchWeights(1, 100000));
Bob Wilsonda4147c2013-11-15 07:16:09 +00001316 IRB.SetInsertPoint(Ins);
Evgeniy Stepanov493df132014-06-05 14:34:45 +00001317 IRB.SetCurrentDebugLocation(EntryLoc);
Bob Wilsonda4147c2013-11-15 07:16:09 +00001318 // We pass &F to __sanitizer_cov. We could avoid this and rely on
1319 // GET_CALLER_PC, but having the PC of the first instruction is just nice.
Evgeniy Stepanov493df132014-06-05 14:34:45 +00001320 IRB.CreateCall(AsanCovFunction);
Bob Wilsonda4147c2013-11-15 07:16:09 +00001321 StoreInst *Store = IRB.CreateStore(ConstantInt::get(Int8Ty, 1), Guard);
1322 Store->setAtomic(Monotonic);
1323 Store->setAlignment(1);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001324}
1325
1326// Poor man's coverage that works with ASan.
1327// We create a Guard boolean variable with the same linkage
1328// as the function and inject this code into the entry block (-asan-coverage=1)
1329// or all blocks (-asan-coverage=2):
1330// if (*Guard) {
1331// __sanitizer_cov(&F);
1332// *Guard = 1;
1333// }
1334// The accesses to Guard are atomic. The rest of the logic is
1335// in __sanitizer_cov (it's fine to call it more than once).
1336//
1337// This coverage implementation provides very limited data:
1338// it only tells if a given function (block) was ever executed.
1339// No counters, no per-edge data.
1340// But for many use cases this is what we need and the added slowdown
1341// is negligible. This simple implementation will probably be obsoleted
1342// by the upcoming Clang-based coverage implementation.
1343// By having it here and now we hope to
1344// a) get the functionality to users earlier and
1345// b) collect usage statistics to help improve Clang coverage design.
1346bool AddressSanitizer::InjectCoverage(Function &F,
1347 const ArrayRef<BasicBlock *> AllBlocks) {
1348 if (!ClCoverage) return false;
1349
Kostya Serebryany22e88102014-04-18 08:02:42 +00001350 if (ClCoverage == 1 ||
1351 (unsigned)ClCoverageBlockThreshold < AllBlocks.size()) {
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001352 InjectCoverageAtBlock(F, F.getEntryBlock());
1353 } else {
Alexey Samsonova02e6642014-05-29 18:40:48 +00001354 for (auto BB : AllBlocks)
1355 InjectCoverageAtBlock(F, *BB);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001356 }
Bob Wilsonda4147c2013-11-15 07:16:09 +00001357 return true;
1358}
1359
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001360bool AddressSanitizer::runOnFunction(Function &F) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001361 if (&F == AsanCtorFunction) return false;
Kostya Serebryany6b5b58d2013-03-18 07:33:49 +00001362 if (F.getLinkage() == GlobalValue::AvailableExternallyLinkage) return false;
Kostya Serebryany20343352012-10-17 13:40:06 +00001363 DEBUG(dbgs() << "ASAN instrumenting:\n" << F << "\n");
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001364 initializeCallbacks(*F.getParent());
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001365
Kostya Serebryanycf880b92013-02-26 06:58:09 +00001366 // If needed, insert __asan_init before checking for SanitizeAddress attr.
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001367 maybeInsertAsanInitAtFunctionEntry(F);
1368
Alexey Samsonov6d8bab82014-06-02 18:08:27 +00001369 if (!F.hasFnAttribute(Attribute::SanitizeAddress))
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001370 return false;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001371
1372 if (!ClDebugFunc.empty() && ClDebugFunc != F.getName())
1373 return false;
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001374
1375 // We want to instrument every address only once per basic block (unless there
1376 // are calls between uses).
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001377 SmallSet<Value*, 16> TempsToInstrument;
1378 SmallVector<Instruction*, 16> ToInstrument;
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001379 SmallVector<Instruction*, 8> NoReturnCalls;
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001380 SmallVector<BasicBlock*, 16> AllBlocks;
Kostya Serebryany796f6552014-02-27 12:45:36 +00001381 SmallVector<Instruction*, 16> PointerComparisonsOrSubtracts;
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001382 int NumAllocas = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +00001383 bool IsWrite;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00001384 unsigned Alignment;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001385
1386 // Fill the set of memory operations to instrument.
Alexey Samsonova02e6642014-05-29 18:40:48 +00001387 for (auto &BB : F) {
1388 AllBlocks.push_back(&BB);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001389 TempsToInstrument.clear();
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001390 int NumInsnsPerBB = 0;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001391 for (auto &Inst : BB) {
1392 if (LooksLikeCodeInBug11395(&Inst)) return false;
1393 if (Value *Addr =
1394 isInterestingMemoryAccess(&Inst, &IsWrite, &Alignment)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001395 if (ClOpt && ClOptSameTemp) {
1396 if (!TempsToInstrument.insert(Addr))
1397 continue; // We've seen this temp in the current BB.
1398 }
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +00001399 } else if (ClInvalidPointerPairs &&
Alexey Samsonova02e6642014-05-29 18:40:48 +00001400 isInterestingPointerComparisonOrSubtraction(&Inst)) {
1401 PointerComparisonsOrSubtracts.push_back(&Inst);
Kostya Serebryany796f6552014-02-27 12:45:36 +00001402 continue;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001403 } else if (isa<MemIntrinsic>(Inst)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001404 // ok, take it.
1405 } else {
Alexey Samsonova02e6642014-05-29 18:40:48 +00001406 if (isa<AllocaInst>(Inst))
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001407 NumAllocas++;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001408 CallSite CS(&Inst);
Kostya Serebryany699ac282013-02-20 12:35:15 +00001409 if (CS) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001410 // A call inside BB.
1411 TempsToInstrument.clear();
Kostya Serebryany699ac282013-02-20 12:35:15 +00001412 if (CS.doesNotReturn())
1413 NoReturnCalls.push_back(CS.getInstruction());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001414 }
1415 continue;
1416 }
Alexey Samsonova02e6642014-05-29 18:40:48 +00001417 ToInstrument.push_back(&Inst);
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001418 NumInsnsPerBB++;
1419 if (NumInsnsPerBB >= ClMaxInsnsToInstrumentPerBB)
1420 break;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001421 }
1422 }
1423
Craig Topperf40110f2014-04-25 05:29:35 +00001424 Function *UninstrumentedDuplicate = nullptr;
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001425 bool LikelyToInstrument =
1426 !NoReturnCalls.empty() || !ToInstrument.empty() || (NumAllocas > 0);
1427 if (ClKeepUninstrumented && LikelyToInstrument) {
1428 ValueToValueMapTy VMap;
1429 UninstrumentedDuplicate = CloneFunction(&F, VMap, false);
1430 UninstrumentedDuplicate->removeFnAttr(Attribute::SanitizeAddress);
1431 UninstrumentedDuplicate->setName("NOASAN_" + F.getName());
1432 F.getParent()->getFunctionList().push_back(UninstrumentedDuplicate);
1433 }
1434
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001435 bool UseCalls = false;
1436 if (ClInstrumentationWithCallsThreshold >= 0 &&
1437 ToInstrument.size() > (unsigned)ClInstrumentationWithCallsThreshold)
1438 UseCalls = true;
1439
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001440 // Instrument.
1441 int NumInstrumented = 0;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001442 for (auto Inst : ToInstrument) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001443 if (ClDebugMin < 0 || ClDebugMax < 0 ||
1444 (NumInstrumented >= ClDebugMin && NumInstrumented <= ClDebugMax)) {
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00001445 if (isInterestingMemoryAccess(Inst, &IsWrite, &Alignment))
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001446 instrumentMop(Inst, UseCalls);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001447 else
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00001448 instrumentMemIntrinsic(cast<MemIntrinsic>(Inst));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001449 }
1450 NumInstrumented++;
1451 }
1452
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001453 FunctionStackPoisoner FSP(F, *this);
1454 bool ChangedStack = FSP.runOnFunction();
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001455
1456 // We must unpoison the stack before every NoReturn call (throw, _exit, etc).
1457 // See e.g. http://code.google.com/p/address-sanitizer/issues/detail?id=37
Alexey Samsonova02e6642014-05-29 18:40:48 +00001458 for (auto CI : NoReturnCalls) {
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001459 IRBuilder<> IRB(CI);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001460 IRB.CreateCall(AsanHandleNoReturnFunc);
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001461 }
1462
Alexey Samsonova02e6642014-05-29 18:40:48 +00001463 for (auto Inst : PointerComparisonsOrSubtracts) {
1464 instrumentPointerComparisonOrSubtraction(Inst);
Kostya Serebryany796f6552014-02-27 12:45:36 +00001465 NumInstrumented++;
1466 }
1467
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001468 bool res = NumInstrumented > 0 || ChangedStack || !NoReturnCalls.empty();
Bob Wilsonda4147c2013-11-15 07:16:09 +00001469
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001470 if (InjectCoverage(F, AllBlocks))
Bob Wilsonda4147c2013-11-15 07:16:09 +00001471 res = true;
1472
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001473 DEBUG(dbgs() << "ASAN done instrumenting: " << res << " " << F << "\n");
1474
1475 if (ClKeepUninstrumented) {
1476 if (!res) {
1477 // No instrumentation is done, no need for the duplicate.
1478 if (UninstrumentedDuplicate)
1479 UninstrumentedDuplicate->eraseFromParent();
1480 } else {
1481 // The function was instrumented. We must have the duplicate.
1482 assert(UninstrumentedDuplicate);
1483 UninstrumentedDuplicate->setSection("NOASAN");
1484 assert(!F.hasSection());
1485 F.setSection("ASAN");
1486 }
1487 }
1488
1489 return res;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001490}
1491
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001492// Workaround for bug 11395: we don't want to instrument stack in functions
1493// with large assembly blobs (32-bit only), otherwise reg alloc may crash.
1494// FIXME: remove once the bug 11395 is fixed.
1495bool AddressSanitizer::LooksLikeCodeInBug11395(Instruction *I) {
1496 if (LongSize != 32) return false;
1497 CallInst *CI = dyn_cast<CallInst>(I);
1498 if (!CI || !CI->isInlineAsm()) return false;
1499 if (CI->getNumArgOperands() <= 5) return false;
1500 // We have inline assembly with quite a few arguments.
1501 return true;
1502}
1503
1504void FunctionStackPoisoner::initializeCallbacks(Module &M) {
1505 IRBuilder<> IRB(*C);
Kostya Serebryany6805de52013-09-10 13:16:56 +00001506 for (int i = 0; i <= kMaxAsanStackMallocSizeClass; i++) {
1507 std::string Suffix = itostr(i);
1508 AsanStackMallocFunc[i] = checkInterfaceFunction(
1509 M.getOrInsertFunction(kAsanStackMallocNameTemplate + Suffix, IntptrTy,
1510 IntptrTy, IntptrTy, NULL));
1511 AsanStackFreeFunc[i] = checkInterfaceFunction(M.getOrInsertFunction(
1512 kAsanStackFreeNameTemplate + Suffix, IRB.getVoidTy(), IntptrTy,
1513 IntptrTy, IntptrTy, NULL));
1514 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001515 AsanPoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1516 kAsanPoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1517 AsanUnpoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1518 kAsanUnpoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1519}
1520
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001521void
1522FunctionStackPoisoner::poisonRedZones(const ArrayRef<uint8_t> ShadowBytes,
1523 IRBuilder<> &IRB, Value *ShadowBase,
1524 bool DoPoison) {
1525 size_t n = ShadowBytes.size();
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001526 size_t i = 0;
1527 // We need to (un)poison n bytes of stack shadow. Poison as many as we can
1528 // using 64-bit stores (if we are on 64-bit arch), then poison the rest
1529 // with 32-bit stores, then with 16-byte stores, then with 8-byte stores.
1530 for (size_t LargeStoreSizeInBytes = ASan.LongSize / 8;
1531 LargeStoreSizeInBytes != 0; LargeStoreSizeInBytes /= 2) {
1532 for (; i + LargeStoreSizeInBytes - 1 < n; i += LargeStoreSizeInBytes) {
1533 uint64_t Val = 0;
1534 for (size_t j = 0; j < LargeStoreSizeInBytes; j++) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001535 if (ASan.DL->isLittleEndian())
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001536 Val |= (uint64_t)ShadowBytes[i + j] << (8 * j);
1537 else
1538 Val = (Val << 8) | ShadowBytes[i + j];
1539 }
1540 if (!Val) continue;
1541 Value *Ptr = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1542 Type *StoreTy = Type::getIntNTy(*C, LargeStoreSizeInBytes * 8);
1543 Value *Poison = ConstantInt::get(StoreTy, DoPoison ? Val : 0);
1544 IRB.CreateStore(Poison, IRB.CreateIntToPtr(Ptr, StoreTy->getPointerTo()));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001545 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001546 }
1547}
1548
Kostya Serebryany6805de52013-09-10 13:16:56 +00001549// Fake stack allocator (asan_fake_stack.h) has 11 size classes
1550// for every power of 2 from kMinStackMallocSize to kMaxAsanStackMallocSizeClass
1551static int StackMallocSizeClass(uint64_t LocalStackSize) {
1552 assert(LocalStackSize <= kMaxStackMallocSize);
1553 uint64_t MaxSize = kMinStackMallocSize;
1554 for (int i = 0; ; i++, MaxSize *= 2)
1555 if (LocalStackSize <= MaxSize)
1556 return i;
1557 llvm_unreachable("impossible LocalStackSize");
1558}
1559
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001560// Set Size bytes starting from ShadowBase to kAsanStackAfterReturnMagic.
1561// We can not use MemSet intrinsic because it may end up calling the actual
1562// memset. Size is a multiple of 8.
1563// Currently this generates 8-byte stores on x86_64; it may be better to
1564// generate wider stores.
1565void FunctionStackPoisoner::SetShadowToStackAfterReturnInlined(
1566 IRBuilder<> &IRB, Value *ShadowBase, int Size) {
1567 assert(!(Size % 8));
1568 assert(kAsanStackAfterReturnMagic == 0xf5);
1569 for (int i = 0; i < Size; i += 8) {
1570 Value *p = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1571 IRB.CreateStore(ConstantInt::get(IRB.getInt64Ty(), 0xf5f5f5f5f5f5f5f5ULL),
1572 IRB.CreateIntToPtr(p, IRB.getInt64Ty()->getPointerTo()));
1573 }
1574}
1575
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001576static DebugLoc getFunctionEntryDebugLocation(Function &F) {
Alexey Samsonova02e6642014-05-29 18:40:48 +00001577 for (const auto &Inst : F.getEntryBlock())
1578 if (!isa<AllocaInst>(Inst))
1579 return Inst.getDebugLoc();
1580 return DebugLoc();
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001581}
1582
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001583void FunctionStackPoisoner::poisonStack() {
Kostya Serebryany6805de52013-09-10 13:16:56 +00001584 int StackMallocIdx = -1;
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001585 DebugLoc EntryDebugLocation = getFunctionEntryDebugLocation(F);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001586
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001587 assert(AllocaVec.size() > 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001588 Instruction *InsBefore = AllocaVec[0];
1589 IRBuilder<> IRB(InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001590 IRB.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001591
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001592 SmallVector<ASanStackVariableDescription, 16> SVD;
1593 SVD.reserve(AllocaVec.size());
Alexey Samsonova02e6642014-05-29 18:40:48 +00001594 for (AllocaInst *AI : AllocaVec) {
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001595 ASanStackVariableDescription D = { AI->getName().data(),
1596 getAllocaSizeInBytes(AI),
1597 AI->getAlignment(), AI, 0};
1598 SVD.push_back(D);
1599 }
1600 // Minimal header size (left redzone) is 4 pointers,
1601 // i.e. 32 bytes on 64-bit platforms and 16 bytes in 32-bit platforms.
1602 size_t MinHeaderSize = ASan.LongSize / 2;
1603 ASanStackFrameLayout L;
1604 ComputeASanStackFrameLayout(SVD, 1UL << Mapping.Scale, MinHeaderSize, &L);
1605 DEBUG(dbgs() << L.DescriptionString << " --- " << L.FrameSize << "\n");
1606 uint64_t LocalStackSize = L.FrameSize;
1607 bool DoStackMalloc =
Alexey Samsonove595e1a2014-06-13 17:53:44 +00001608 ClUseAfterReturn && LocalStackSize <= kMaxStackMallocSize;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001609
1610 Type *ByteArrayTy = ArrayType::get(IRB.getInt8Ty(), LocalStackSize);
1611 AllocaInst *MyAlloca =
1612 new AllocaInst(ByteArrayTy, "MyAlloca", InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001613 MyAlloca->setDebugLoc(EntryDebugLocation);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001614 assert((ClRealignStack & (ClRealignStack - 1)) == 0);
1615 size_t FrameAlignment = std::max(L.FrameAlignment, (size_t)ClRealignStack);
1616 MyAlloca->setAlignment(FrameAlignment);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001617 assert(MyAlloca->isStaticAlloca());
1618 Value *OrigStackBase = IRB.CreatePointerCast(MyAlloca, IntptrTy);
1619 Value *LocalStackBase = OrigStackBase;
1620
1621 if (DoStackMalloc) {
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001622 // LocalStackBase = OrigStackBase
1623 // if (__asan_option_detect_stack_use_after_return)
1624 // LocalStackBase = __asan_stack_malloc_N(LocalStackBase, OrigStackBase);
Kostya Serebryany6805de52013-09-10 13:16:56 +00001625 StackMallocIdx = StackMallocSizeClass(LocalStackSize);
1626 assert(StackMallocIdx <= kMaxAsanStackMallocSizeClass);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001627 Constant *OptionDetectUAR = F.getParent()->getOrInsertGlobal(
1628 kAsanOptionDetectUAR, IRB.getInt32Ty());
1629 Value *Cmp = IRB.CreateICmpNE(IRB.CreateLoad(OptionDetectUAR),
1630 Constant::getNullValue(IRB.getInt32Ty()));
Evgeniy Stepanova9164e92013-12-19 13:29:56 +00001631 Instruction *Term = SplitBlockAndInsertIfThen(Cmp, InsBefore, false);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001632 BasicBlock *CmpBlock = cast<Instruction>(Cmp)->getParent();
1633 IRBuilder<> IRBIf(Term);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001634 IRBIf.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001635 LocalStackBase = IRBIf.CreateCall2(
1636 AsanStackMallocFunc[StackMallocIdx],
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001637 ConstantInt::get(IntptrTy, LocalStackSize), OrigStackBase);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001638 BasicBlock *SetBlock = cast<Instruction>(LocalStackBase)->getParent();
1639 IRB.SetInsertPoint(InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001640 IRB.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001641 PHINode *Phi = IRB.CreatePHI(IntptrTy, 2);
1642 Phi->addIncoming(OrigStackBase, CmpBlock);
1643 Phi->addIncoming(LocalStackBase, SetBlock);
1644 LocalStackBase = Phi;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001645 }
1646
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001647 // Insert poison calls for lifetime intrinsics for alloca.
1648 bool HavePoisonedAllocas = false;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001649 for (const auto &APC : AllocaPoisonCallVec) {
Alexey Samsonova788b942013-11-18 14:53:55 +00001650 assert(APC.InsBefore);
1651 assert(APC.AI);
1652 IRBuilder<> IRB(APC.InsBefore);
1653 poisonAlloca(APC.AI, APC.Size, IRB, APC.DoPoison);
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001654 HavePoisonedAllocas |= APC.DoPoison;
1655 }
1656
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001657 // Replace Alloca instructions with base+offset.
Alexey Samsonova02e6642014-05-29 18:40:48 +00001658 for (const auto &Desc : SVD) {
1659 AllocaInst *AI = Desc.AI;
Alexey Samsonov261177a2012-12-04 01:34:23 +00001660 Value *NewAllocaPtr = IRB.CreateIntToPtr(
Alexey Samsonova02e6642014-05-29 18:40:48 +00001661 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, Desc.Offset)),
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001662 AI->getType());
Alexey Samsonov3d43b632012-12-12 14:31:53 +00001663 replaceDbgDeclareForAlloca(AI, NewAllocaPtr, DIB);
Alexey Samsonov261177a2012-12-04 01:34:23 +00001664 AI->replaceAllUsesWith(NewAllocaPtr);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001665 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001666
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001667 // The left-most redzone has enough space for at least 4 pointers.
1668 // Write the Magic value to redzone[0].
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001669 Value *BasePlus0 = IRB.CreateIntToPtr(LocalStackBase, IntptrPtrTy);
1670 IRB.CreateStore(ConstantInt::get(IntptrTy, kCurrentStackFrameMagic),
1671 BasePlus0);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001672 // Write the frame description constant to redzone[1].
1673 Value *BasePlus1 = IRB.CreateIntToPtr(
1674 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, ASan.LongSize/8)),
1675 IntptrPtrTy);
Alexey Samsonov9bdb63a2012-11-02 12:20:34 +00001676 GlobalVariable *StackDescriptionGlobal =
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001677 createPrivateGlobalForString(*F.getParent(), L.DescriptionString,
1678 /*AllowMerging*/true);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001679 Value *Description = IRB.CreatePointerCast(StackDescriptionGlobal,
1680 IntptrTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001681 IRB.CreateStore(Description, BasePlus1);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001682 // Write the PC to redzone[2].
1683 Value *BasePlus2 = IRB.CreateIntToPtr(
1684 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy,
1685 2 * ASan.LongSize/8)),
1686 IntptrPtrTy);
1687 IRB.CreateStore(IRB.CreatePointerCast(&F, IntptrTy), BasePlus2);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001688
1689 // Poison the stack redzones at the entry.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001690 Value *ShadowBase = ASan.memToShadow(LocalStackBase, IRB);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001691 poisonRedZones(L.ShadowBytes, IRB, ShadowBase, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001692
Kostya Serebryany530e2072013-12-23 14:15:08 +00001693 // (Un)poison the stack before all ret instructions.
Alexey Samsonova02e6642014-05-29 18:40:48 +00001694 for (auto Ret : RetVec) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001695 IRBuilder<> IRBRet(Ret);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001696 // Mark the current frame as retired.
1697 IRBRet.CreateStore(ConstantInt::get(IntptrTy, kRetiredStackFrameMagic),
1698 BasePlus0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001699 if (DoStackMalloc) {
Kostya Serebryany6805de52013-09-10 13:16:56 +00001700 assert(StackMallocIdx >= 0);
Kostya Serebryany530e2072013-12-23 14:15:08 +00001701 // if LocalStackBase != OrigStackBase:
1702 // // In use-after-return mode, poison the whole stack frame.
1703 // if StackMallocIdx <= 4
1704 // // For small sizes inline the whole thing:
1705 // memset(ShadowBase, kAsanStackAfterReturnMagic, ShadowSize);
1706 // **SavedFlagPtr(LocalStackBase) = 0
1707 // else
1708 // __asan_stack_free_N(LocalStackBase, OrigStackBase)
1709 // else
1710 // <This is not a fake stack; unpoison the redzones>
1711 Value *Cmp = IRBRet.CreateICmpNE(LocalStackBase, OrigStackBase);
1712 TerminatorInst *ThenTerm, *ElseTerm;
1713 SplitBlockAndInsertIfThenElse(Cmp, Ret, &ThenTerm, &ElseTerm);
1714
1715 IRBuilder<> IRBPoison(ThenTerm);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001716 if (StackMallocIdx <= 4) {
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001717 int ClassSize = kMinStackMallocSize << StackMallocIdx;
1718 SetShadowToStackAfterReturnInlined(IRBPoison, ShadowBase,
1719 ClassSize >> Mapping.Scale);
1720 Value *SavedFlagPtrPtr = IRBPoison.CreateAdd(
1721 LocalStackBase,
1722 ConstantInt::get(IntptrTy, ClassSize - ASan.LongSize / 8));
1723 Value *SavedFlagPtr = IRBPoison.CreateLoad(
1724 IRBPoison.CreateIntToPtr(SavedFlagPtrPtr, IntptrPtrTy));
1725 IRBPoison.CreateStore(
1726 Constant::getNullValue(IRBPoison.getInt8Ty()),
1727 IRBPoison.CreateIntToPtr(SavedFlagPtr, IRBPoison.getInt8PtrTy()));
1728 } else {
1729 // For larger frames call __asan_stack_free_*.
Kostya Serebryany530e2072013-12-23 14:15:08 +00001730 IRBPoison.CreateCall3(AsanStackFreeFunc[StackMallocIdx], LocalStackBase,
1731 ConstantInt::get(IntptrTy, LocalStackSize),
1732 OrigStackBase);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001733 }
Kostya Serebryany530e2072013-12-23 14:15:08 +00001734
1735 IRBuilder<> IRBElse(ElseTerm);
1736 poisonRedZones(L.ShadowBytes, IRBElse, ShadowBase, false);
Alexey Samsonov261177a2012-12-04 01:34:23 +00001737 } else if (HavePoisonedAllocas) {
1738 // If we poisoned some allocas in llvm.lifetime analysis,
1739 // unpoison whole stack frame now.
1740 assert(LocalStackBase == OrigStackBase);
1741 poisonAlloca(LocalStackBase, LocalStackSize, IRBRet, false);
Kostya Serebryany530e2072013-12-23 14:15:08 +00001742 } else {
1743 poisonRedZones(L.ShadowBytes, IRBRet, ShadowBase, false);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001744 }
1745 }
1746
Kostya Serebryany09959942012-10-19 06:20:53 +00001747 // We are done. Remove the old unused alloca instructions.
Alexey Samsonova02e6642014-05-29 18:40:48 +00001748 for (auto AI : AllocaVec)
1749 AI->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001750}
Alexey Samsonov261177a2012-12-04 01:34:23 +00001751
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001752void FunctionStackPoisoner::poisonAlloca(Value *V, uint64_t Size,
Jakub Staszak23ec6a92013-08-09 20:53:48 +00001753 IRBuilder<> &IRB, bool DoPoison) {
Alexey Samsonov261177a2012-12-04 01:34:23 +00001754 // For now just insert the call to ASan runtime.
1755 Value *AddrArg = IRB.CreatePointerCast(V, IntptrTy);
1756 Value *SizeArg = ConstantInt::get(IntptrTy, Size);
1757 IRB.CreateCall2(DoPoison ? AsanPoisonStackMemoryFunc
1758 : AsanUnpoisonStackMemoryFunc,
1759 AddrArg, SizeArg);
1760}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001761
1762// Handling llvm.lifetime intrinsics for a given %alloca:
1763// (1) collect all llvm.lifetime.xxx(%size, %value) describing the alloca.
1764// (2) if %size is constant, poison memory for llvm.lifetime.end (to detect
1765// invalid accesses) and unpoison it for llvm.lifetime.start (the memory
1766// could be poisoned by previous llvm.lifetime.end instruction, as the
1767// variable may go in and out of scope several times, e.g. in loops).
1768// (3) if we poisoned at least one %alloca in a function,
1769// unpoison the whole stack frame at function exit.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001770
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001771AllocaInst *FunctionStackPoisoner::findAllocaForValue(Value *V) {
1772 if (AllocaInst *AI = dyn_cast<AllocaInst>(V))
1773 // We're intested only in allocas we can handle.
Craig Topperf40110f2014-04-25 05:29:35 +00001774 return isInterestingAlloca(*AI) ? AI : nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001775 // See if we've already calculated (or started to calculate) alloca for a
1776 // given value.
1777 AllocaForValueMapTy::iterator I = AllocaForValue.find(V);
1778 if (I != AllocaForValue.end())
1779 return I->second;
1780 // Store 0 while we're calculating alloca for value V to avoid
1781 // infinite recursion if the value references itself.
Craig Topperf40110f2014-04-25 05:29:35 +00001782 AllocaForValue[V] = nullptr;
1783 AllocaInst *Res = nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001784 if (CastInst *CI = dyn_cast<CastInst>(V))
1785 Res = findAllocaForValue(CI->getOperand(0));
1786 else if (PHINode *PN = dyn_cast<PHINode>(V)) {
1787 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1788 Value *IncValue = PN->getIncomingValue(i);
1789 // Allow self-referencing phi-nodes.
1790 if (IncValue == PN) continue;
1791 AllocaInst *IncValueAI = findAllocaForValue(IncValue);
1792 // AI for incoming values should exist and should all be equal.
Craig Topperf40110f2014-04-25 05:29:35 +00001793 if (IncValueAI == nullptr || (Res != nullptr && IncValueAI != Res))
1794 return nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001795 Res = IncValueAI;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001796 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001797 }
Craig Topperf40110f2014-04-25 05:29:35 +00001798 if (Res)
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001799 AllocaForValue[V] = Res;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001800 return Res;
1801}