blob: f8cdb9f8f3d818ffa6da45238b3f72e627822a63 [file] [log] [blame]
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001//===-- AddressSanitizer.cpp - memory error detector ------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file is a part of AddressSanitizer, an address sanity checker.
11// Details of the algorithm:
12// http://code.google.com/p/address-sanitizer/wiki/AddressSanitizerAlgorithm
13//
14//===----------------------------------------------------------------------===//
15
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/Transforms/Instrumentation.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000017#include "llvm/ADT/ArrayRef.h"
Alexey Samsonov29dd7f22012-12-27 08:50:58 +000018#include "llvm/ADT/DenseMap.h"
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +000019#include "llvm/ADT/DepthFirstIterator.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000020#include "llvm/ADT/SmallSet.h"
21#include "llvm/ADT/SmallString.h"
22#include "llvm/ADT/SmallVector.h"
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +000023#include "llvm/ADT/Statistic.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000024#include "llvm/ADT/StringExtras.h"
Evgeniy Stepanov617232f2012-05-23 11:52:12 +000025#include "llvm/ADT/Triple.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000026#include "llvm/IR/CallSite.h"
Chandler Carruth12664a02014-03-06 00:22:06 +000027#include "llvm/IR/DIBuilder.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000028#include "llvm/IR/DataLayout.h"
29#include "llvm/IR/Function.h"
30#include "llvm/IR/IRBuilder.h"
31#include "llvm/IR/InlineAsm.h"
Chandler Carruth7da14f12014-03-06 03:23:41 +000032#include "llvm/IR/InstVisitor.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000033#include "llvm/IR/IntrinsicInst.h"
34#include "llvm/IR/LLVMContext.h"
Kostya Serebryany714c67c2014-01-17 11:00:30 +000035#include "llvm/IR/MDBuilder.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000036#include "llvm/IR/Module.h"
37#include "llvm/IR/Type.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000038#include "llvm/Support/CommandLine.h"
39#include "llvm/Support/DataTypes.h"
40#include "llvm/Support/Debug.h"
Kostya Serebryany9e62b302013-06-03 14:46:56 +000041#include "llvm/Support/Endian.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000042#include "llvm/Support/system_error.h"
Kostya Serebryany4fb78012013-12-06 09:00:17 +000043#include "llvm/Transforms/Utils/ASanStackFrameLayout.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000044#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Kostya Serebryany9f5213f2013-06-26 09:18:17 +000045#include "llvm/Transforms/Utils/Cloning.h"
Alexey Samsonov3d43b632012-12-12 14:31:53 +000046#include "llvm/Transforms/Utils/Local.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000047#include "llvm/Transforms/Utils/ModuleUtils.h"
Peter Collingbourne015370e2013-07-09 22:02:49 +000048#include "llvm/Transforms/Utils/SpecialCaseList.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000049#include <algorithm>
Chandler Carruthed0881b2012-12-03 16:50:05 +000050#include <string>
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000051
52using namespace llvm;
53
Chandler Carruth964daaa2014-04-22 02:55:47 +000054#define DEBUG_TYPE "asan"
55
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000056static const uint64_t kDefaultShadowScale = 3;
57static const uint64_t kDefaultShadowOffset32 = 1ULL << 29;
Alexander Potapenkoa51e4832014-04-23 17:14:45 +000058static const uint64_t kIOSShadowOffset32 = 1ULL << 30;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000059static const uint64_t kDefaultShadowOffset64 = 1ULL << 44;
Kostya Serebryanycc92c792014-02-24 13:40:24 +000060static const uint64_t kSmallX86_64ShadowOffset = 0x7FFF8000; // < 2G.
Kostya Serebryany4766fe62013-01-23 12:54:55 +000061static const uint64_t kPPC64_ShadowOffset64 = 1ULL << 41;
Kostya Serebryany9e62b302013-06-03 14:46:56 +000062static const uint64_t kMIPS32_ShadowOffset32 = 0x0aaa8000;
Kostya Serebryany8baa3862014-02-10 07:37:04 +000063static const uint64_t kFreeBSD_ShadowOffset32 = 1ULL << 30;
64static const uint64_t kFreeBSD_ShadowOffset64 = 1ULL << 46;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000065
Kostya Serebryany6805de52013-09-10 13:16:56 +000066static const size_t kMinStackMallocSize = 1 << 6; // 64B
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000067static const size_t kMaxStackMallocSize = 1 << 16; // 64K
68static const uintptr_t kCurrentStackFrameMagic = 0x41B58AB3;
69static const uintptr_t kRetiredStackFrameMagic = 0x45E0360E;
70
Craig Topperd3a34f82013-07-16 01:17:10 +000071static const char *const kAsanModuleCtorName = "asan.module_ctor";
72static const char *const kAsanModuleDtorName = "asan.module_dtor";
73static const int kAsanCtorAndCtorPriority = 1;
74static const char *const kAsanReportErrorTemplate = "__asan_report_";
75static const char *const kAsanReportLoadN = "__asan_report_load_n";
76static const char *const kAsanReportStoreN = "__asan_report_store_n";
77static const char *const kAsanRegisterGlobalsName = "__asan_register_globals";
Alexey Samsonovf52b7172013-08-05 13:19:49 +000078static const char *const kAsanUnregisterGlobalsName =
79 "__asan_unregister_globals";
Craig Topperd3a34f82013-07-16 01:17:10 +000080static const char *const kAsanPoisonGlobalsName = "__asan_before_dynamic_init";
81static const char *const kAsanUnpoisonGlobalsName = "__asan_after_dynamic_init";
82static const char *const kAsanInitName = "__asan_init_v3";
Evgeniy Stepanov47b1a952014-05-27 12:39:31 +000083static const char *const kAsanCovModuleInitName = "__sanitizer_cov_module_init";
Bob Wilsonda4147c2013-11-15 07:16:09 +000084static const char *const kAsanCovName = "__sanitizer_cov";
Kostya Serebryany796f6552014-02-27 12:45:36 +000085static const char *const kAsanPtrCmp = "__sanitizer_ptr_cmp";
86static const char *const kAsanPtrSub = "__sanitizer_ptr_sub";
Craig Topperd3a34f82013-07-16 01:17:10 +000087static const char *const kAsanHandleNoReturnName = "__asan_handle_no_return";
Kostya Serebryany6805de52013-09-10 13:16:56 +000088static const int kMaxAsanStackMallocSizeClass = 10;
89static const char *const kAsanStackMallocNameTemplate = "__asan_stack_malloc_";
90static const char *const kAsanStackFreeNameTemplate = "__asan_stack_free_";
Craig Topperd3a34f82013-07-16 01:17:10 +000091static const char *const kAsanGenPrefix = "__asan_gen_";
92static const char *const kAsanPoisonStackMemoryName =
93 "__asan_poison_stack_memory";
94static const char *const kAsanUnpoisonStackMemoryName =
Alexey Samsonov261177a2012-12-04 01:34:23 +000095 "__asan_unpoison_stack_memory";
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000096
Kostya Serebryanyf3223822013-09-18 14:07:14 +000097static const char *const kAsanOptionDetectUAR =
98 "__asan_option_detect_stack_use_after_return";
99
David Blaikieeacc2872013-09-18 00:11:27 +0000100#ifndef NDEBUG
Kostya Serebryanybc86efb2013-09-17 12:14:50 +0000101static const int kAsanStackAfterReturnMagic = 0xf5;
David Blaikieeacc2872013-09-18 00:11:27 +0000102#endif
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000103
Kostya Serebryany874dae62012-07-16 16:15:40 +0000104// Accesses sizes are powers of two: 1, 2, 4, 8, 16.
105static const size_t kNumberOfAccessSizes = 5;
106
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000107// Command-line flags.
108
109// This flag may need to be replaced with -f[no-]asan-reads.
110static cl::opt<bool> ClInstrumentReads("asan-instrument-reads",
111 cl::desc("instrument read instructions"), cl::Hidden, cl::init(true));
112static cl::opt<bool> ClInstrumentWrites("asan-instrument-writes",
113 cl::desc("instrument write instructions"), cl::Hidden, cl::init(true));
Kostya Serebryany90241602012-05-30 09:04:06 +0000114static cl::opt<bool> ClInstrumentAtomics("asan-instrument-atomics",
115 cl::desc("instrument atomic instructions (rmw, cmpxchg)"),
116 cl::Hidden, cl::init(true));
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000117static cl::opt<bool> ClAlwaysSlowPath("asan-always-slow-path",
118 cl::desc("use instrumentation with slow path for all accesses"),
119 cl::Hidden, cl::init(false));
Kostya Serebryany874dae62012-07-16 16:15:40 +0000120// This flag limits the number of instructions to be instrumented
Kostya Serebryanyc387ca72012-06-28 09:34:41 +0000121// in any given BB. Normally, this should be set to unlimited (INT_MAX),
122// but due to http://llvm.org/bugs/show_bug.cgi?id=12652 we temporary
123// set it to 10000.
124static cl::opt<int> ClMaxInsnsToInstrumentPerBB("asan-max-ins-per-bb",
125 cl::init(10000),
126 cl::desc("maximal number of instructions to instrument in any given BB"),
127 cl::Hidden);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000128// This flag may need to be replaced with -f[no]asan-stack.
129static cl::opt<bool> ClStack("asan-stack",
130 cl::desc("Handle stack memory"), cl::Hidden, cl::init(true));
131// This flag may need to be replaced with -f[no]asan-use-after-return.
132static cl::opt<bool> ClUseAfterReturn("asan-use-after-return",
133 cl::desc("Check return-after-free"), cl::Hidden, cl::init(false));
134// 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",
145 cl::desc("Handle C++ initializer order"), cl::Hidden, cl::init(false));
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 {
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000219/// A set of dynamically initialized globals extracted from metadata.
220class SetOfDynamicallyInitializedGlobals {
221 public:
222 void Init(Module& M) {
223 // Clang generates metadata identifying all dynamically initialized globals.
224 NamedMDNode *DynamicGlobals =
225 M.getNamedMetadata("llvm.asan.dynamically_initialized_globals");
226 if (!DynamicGlobals)
227 return;
228 for (int i = 0, n = DynamicGlobals->getNumOperands(); i < n; ++i) {
229 MDNode *MDN = DynamicGlobals->getOperand(i);
230 assert(MDN->getNumOperands() == 1);
231 Value *VG = MDN->getOperand(0);
232 // The optimizer may optimize away a global entirely, in which case we
233 // cannot instrument access to it.
234 if (!VG)
235 continue;
236 DynInitGlobals.insert(cast<GlobalVariable>(VG));
237 }
238 }
239 bool Contains(GlobalVariable *G) { return DynInitGlobals.count(G) != 0; }
240 private:
241 SmallSet<GlobalValue*, 32> DynInitGlobals;
242};
243
Alexey Samsonov1345d352013-01-16 13:23:28 +0000244/// This struct defines the shadow mapping using the rule:
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000245/// shadow = (mem >> Scale) ADD-or-OR Offset.
Alexey Samsonov1345d352013-01-16 13:23:28 +0000246struct ShadowMapping {
247 int Scale;
248 uint64_t Offset;
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000249 bool OrShadowOffset;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000250};
251
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000252static ShadowMapping getShadowMapping(const Module &M, int LongSize) {
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000253 llvm::Triple TargetTriple(M.getTargetTriple());
254 bool IsAndroid = TargetTriple.getEnvironment() == llvm::Triple::Android;
Alexander Potapenkoa51e4832014-04-23 17:14:45 +0000255 bool IsIOS = TargetTriple.getOS() == llvm::Triple::IOS;
Kostya Serebryany8baa3862014-02-10 07:37:04 +0000256 bool IsFreeBSD = TargetTriple.getOS() == llvm::Triple::FreeBSD;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000257 bool IsLinux = TargetTriple.getOS() == llvm::Triple::Linux;
Bill Schmidt0a9170d2013-07-26 01:35:43 +0000258 bool IsPPC64 = TargetTriple.getArch() == llvm::Triple::ppc64 ||
259 TargetTriple.getArch() == llvm::Triple::ppc64le;
Kostya Serebryanybe733372013-02-12 11:11:02 +0000260 bool IsX86_64 = TargetTriple.getArch() == llvm::Triple::x86_64;
Kostya Serebryany9e62b302013-06-03 14:46:56 +0000261 bool IsMIPS32 = TargetTriple.getArch() == llvm::Triple::mips ||
262 TargetTriple.getArch() == llvm::Triple::mipsel;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000263
264 ShadowMapping Mapping;
265
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000266 if (LongSize == 32) {
267 if (IsAndroid)
268 Mapping.Offset = 0;
269 else if (IsMIPS32)
270 Mapping.Offset = kMIPS32_ShadowOffset32;
271 else if (IsFreeBSD)
272 Mapping.Offset = kFreeBSD_ShadowOffset32;
Alexander Potapenkoa51e4832014-04-23 17:14:45 +0000273 else if (IsIOS)
274 Mapping.Offset = kIOSShadowOffset32;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000275 else
276 Mapping.Offset = kDefaultShadowOffset32;
277 } else { // LongSize == 64
278 if (IsPPC64)
279 Mapping.Offset = kPPC64_ShadowOffset64;
280 else if (IsFreeBSD)
281 Mapping.Offset = kFreeBSD_ShadowOffset64;
282 else if (IsLinux && IsX86_64)
283 Mapping.Offset = kSmallX86_64ShadowOffset;
284 else
285 Mapping.Offset = kDefaultShadowOffset64;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000286 }
287
288 Mapping.Scale = kDefaultShadowScale;
289 if (ClMappingScale) {
290 Mapping.Scale = ClMappingScale;
291 }
292
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000293 // OR-ing shadow offset if more efficient (at least on x86) if the offset
294 // is a power of two, but on ppc64 we have to use add since the shadow
295 // offset is not necessary 1/8-th of the address space.
296 Mapping.OrShadowOffset = !IsPPC64 && !(Mapping.Offset & (Mapping.Offset - 1));
297
Alexey Samsonov1345d352013-01-16 13:23:28 +0000298 return Mapping;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000299}
300
Alexey Samsonov1345d352013-01-16 13:23:28 +0000301static size_t RedzoneSizeForScale(int MappingScale) {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000302 // Redzone used for stack and globals is at least 32 bytes.
303 // For scales 6 and 7, the redzone has to be 64 and 128 bytes respectively.
Alexey Samsonov1345d352013-01-16 13:23:28 +0000304 return std::max(32U, 1U << MappingScale);
Kostya Serebryany20a79972012-11-22 03:18:50 +0000305}
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000306
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000307/// AddressSanitizer: instrument the code in module to find memory bugs.
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000308struct AddressSanitizer : public FunctionPass {
Alexey Samsonov819eddc2013-03-14 12:38:58 +0000309 AddressSanitizer(bool CheckInitOrder = true,
Alexey Samsonovdf624522012-11-29 18:14:24 +0000310 bool CheckUseAfterReturn = false,
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000311 bool CheckLifetime = false,
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000312 StringRef BlacklistFile = StringRef())
Alexey Samsonovdf624522012-11-29 18:14:24 +0000313 : FunctionPass(ID),
314 CheckInitOrder(CheckInitOrder || ClInitializers),
315 CheckUseAfterReturn(CheckUseAfterReturn || ClUseAfterReturn),
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000316 CheckLifetime(CheckLifetime || ClCheckLifetime),
317 BlacklistFile(BlacklistFile.empty() ? ClBlacklistFile
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000318 : BlacklistFile) {}
Craig Topper3e4c6972014-03-05 09:10:37 +0000319 const char *getPassName() const override {
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000320 return "AddressSanitizerFunctionPass";
321 }
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000322 void instrumentMop(Instruction *I, bool UseCalls);
Kostya Serebryany796f6552014-02-27 12:45:36 +0000323 void instrumentPointerComparisonOrSubtraction(Instruction *I);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000324 void instrumentAddress(Instruction *OrigIns, Instruction *InsertBefore,
325 Value *Addr, uint32_t TypeSize, bool IsWrite,
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000326 Value *SizeArgument, bool UseCalls);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000327 Value *createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
328 Value *ShadowValue, uint32_t TypeSize);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000329 Instruction *generateCrashCode(Instruction *InsertBefore, Value *Addr,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000330 bool IsWrite, size_t AccessSizeIndex,
331 Value *SizeArgument);
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000332 void instrumentMemIntrinsic(MemIntrinsic *MI);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000333 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB);
Craig Topper3e4c6972014-03-05 09:10:37 +0000334 bool runOnFunction(Function &F) override;
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +0000335 bool maybeInsertAsanInitAtFunctionEntry(Function &F);
Craig Topper3e4c6972014-03-05 09:10:37 +0000336 bool doInitialization(Module &M) override;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000337 static char ID; // Pass identification, replacement for typeid
338
339 private:
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000340 void initializeCallbacks(Module &M);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000341
Kostya Serebryany1cdc6e92011-11-18 01:41:06 +0000342 bool LooksLikeCodeInBug11395(Instruction *I);
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000343 bool GlobalIsLinkerInitialized(GlobalVariable *G);
Kostya Serebryany714c67c2014-01-17 11:00:30 +0000344 bool InjectCoverage(Function &F, const ArrayRef<BasicBlock*> AllBlocks);
345 void InjectCoverageAtBlock(Function &F, BasicBlock &BB);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000346
Alexey Samsonovdf624522012-11-29 18:14:24 +0000347 bool CheckInitOrder;
348 bool CheckUseAfterReturn;
349 bool CheckLifetime;
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000350 SmallString<64> BlacklistFile;
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000351
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000352 LLVMContext *C;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000353 const DataLayout *DL;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000354 int LongSize;
355 Type *IntptrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000356 ShadowMapping Mapping;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000357 Function *AsanCtorFunction;
358 Function *AsanInitFunction;
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000359 Function *AsanHandleNoReturnFunc;
Bob Wilsonda4147c2013-11-15 07:16:09 +0000360 Function *AsanCovFunction;
Kostya Serebryany796f6552014-02-27 12:45:36 +0000361 Function *AsanPtrCmpFunction, *AsanPtrSubFunction;
Ahmed Charles56440fd2014-03-06 05:51:42 +0000362 std::unique_ptr<SpecialCaseList> BL;
Kostya Serebryany4273bb02012-07-16 14:09:42 +0000363 // This array is indexed by AccessIsWrite and log2(AccessSize).
364 Function *AsanErrorCallback[2][kNumberOfAccessSizes];
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000365 Function *AsanMemoryAccessCallback[2][kNumberOfAccessSizes];
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000366 // This array is indexed by AccessIsWrite.
Kostya Serebryany86332c02014-04-21 07:10:43 +0000367 Function *AsanErrorCallbackSized[2],
368 *AsanMemoryAccessCallbackSized[2];
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000369 Function *AsanMemmove, *AsanMemcpy, *AsanMemset;
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000370 InlineAsm *EmptyAsm;
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000371 SetOfDynamicallyInitializedGlobals DynamicallyInitializedGlobals;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000372
373 friend struct FunctionStackPoisoner;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000374};
Kostya Serebryany874dae62012-07-16 16:15:40 +0000375
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000376class AddressSanitizerModule : public ModulePass {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000377 public:
Alexey Samsonov819eddc2013-03-14 12:38:58 +0000378 AddressSanitizerModule(bool CheckInitOrder = true,
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000379 StringRef BlacklistFile = StringRef())
Alexey Samsonovdf624522012-11-29 18:14:24 +0000380 : ModulePass(ID),
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000381 CheckInitOrder(CheckInitOrder || ClInitializers),
382 BlacklistFile(BlacklistFile.empty() ? ClBlacklistFile
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000383 : BlacklistFile) {}
Craig Topper3e4c6972014-03-05 09:10:37 +0000384 bool runOnModule(Module &M) override;
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000385 static char ID; // Pass identification, replacement for typeid
Craig Topper3e4c6972014-03-05 09:10:37 +0000386 const char *getPassName() const override {
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000387 return "AddressSanitizerModule";
388 }
Alexey Samsonov261177a2012-12-04 01:34:23 +0000389
Kostya Serebryany20a79972012-11-22 03:18:50 +0000390 private:
Alexey Samsonov788381b2012-12-25 12:28:20 +0000391 void initializeCallbacks(Module &M);
392
Kostya Serebryany20a79972012-11-22 03:18:50 +0000393 bool ShouldInstrumentGlobal(GlobalVariable *G);
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000394 void createInitializerPoisonCalls(Module &M, GlobalValue *ModuleName);
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000395 size_t MinRedzoneSizeForGlobal() const {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000396 return RedzoneSizeForScale(Mapping.Scale);
397 }
Kostya Serebryany20a79972012-11-22 03:18:50 +0000398
Alexey Samsonovdf624522012-11-29 18:14:24 +0000399 bool CheckInitOrder;
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000400 SmallString<64> BlacklistFile;
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000401
Ahmed Charles56440fd2014-03-06 05:51:42 +0000402 std::unique_ptr<SpecialCaseList> BL;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000403 SetOfDynamicallyInitializedGlobals DynamicallyInitializedGlobals;
404 Type *IntptrTy;
405 LLVMContext *C;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000406 const DataLayout *DL;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000407 ShadowMapping Mapping;
Alexey Samsonov788381b2012-12-25 12:28:20 +0000408 Function *AsanPoisonGlobals;
409 Function *AsanUnpoisonGlobals;
410 Function *AsanRegisterGlobals;
411 Function *AsanUnregisterGlobals;
Evgeniy Stepanov47b1a952014-05-27 12:39:31 +0000412 Function *AsanCovModuleInit;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000413};
414
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000415// Stack poisoning does not play well with exception handling.
416// When an exception is thrown, we essentially bypass the code
417// that unpoisones the stack. This is why the run-time library has
418// to intercept __cxa_throw (as well as longjmp, etc) and unpoison the entire
419// stack in the interceptor. This however does not work inside the
420// actual function which catches the exception. Most likely because the
421// compiler hoists the load of the shadow value somewhere too high.
422// This causes asan to report a non-existing bug on 453.povray.
423// It sounds like an LLVM bug.
424struct FunctionStackPoisoner : public InstVisitor<FunctionStackPoisoner> {
425 Function &F;
426 AddressSanitizer &ASan;
427 DIBuilder DIB;
428 LLVMContext *C;
429 Type *IntptrTy;
430 Type *IntptrPtrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000431 ShadowMapping Mapping;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000432
433 SmallVector<AllocaInst*, 16> AllocaVec;
434 SmallVector<Instruction*, 8> RetVec;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000435 unsigned StackAlignment;
436
Kostya Serebryany6805de52013-09-10 13:16:56 +0000437 Function *AsanStackMallocFunc[kMaxAsanStackMallocSizeClass + 1],
438 *AsanStackFreeFunc[kMaxAsanStackMallocSizeClass + 1];
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000439 Function *AsanPoisonStackMemoryFunc, *AsanUnpoisonStackMemoryFunc;
440
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000441 // Stores a place and arguments of poisoning/unpoisoning call for alloca.
442 struct AllocaPoisonCall {
443 IntrinsicInst *InsBefore;
Alexey Samsonova788b942013-11-18 14:53:55 +0000444 AllocaInst *AI;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000445 uint64_t Size;
446 bool DoPoison;
447 };
448 SmallVector<AllocaPoisonCall, 8> AllocaPoisonCallVec;
449
450 // Maps Value to an AllocaInst from which the Value is originated.
451 typedef DenseMap<Value*, AllocaInst*> AllocaForValueMapTy;
452 AllocaForValueMapTy AllocaForValue;
453
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000454 FunctionStackPoisoner(Function &F, AddressSanitizer &ASan)
455 : F(F), ASan(ASan), DIB(*F.getParent()), C(ASan.C),
456 IntptrTy(ASan.IntptrTy), IntptrPtrTy(PointerType::get(IntptrTy, 0)),
Alexey Samsonov1345d352013-01-16 13:23:28 +0000457 Mapping(ASan.Mapping),
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000458 StackAlignment(1 << Mapping.Scale) {}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000459
460 bool runOnFunction() {
461 if (!ClStack) return false;
462 // Collect alloca, ret, lifetime instructions etc.
David Blaikieceec2bd2014-04-11 01:50:01 +0000463 for (BasicBlock *BB : depth_first(&F.getEntryBlock()))
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000464 visit(*BB);
David Blaikieceec2bd2014-04-11 01:50:01 +0000465
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000466 if (AllocaVec.empty()) return false;
467
468 initializeCallbacks(*F.getParent());
469
470 poisonStack();
471
472 if (ClDebugStack) {
473 DEBUG(dbgs() << F);
474 }
475 return true;
476 }
477
478 // Finds all static Alloca instructions and puts
479 // poisoned red zones around all of them.
480 // Then unpoison everything back before the function returns.
481 void poisonStack();
482
483 // ----------------------- Visitors.
484 /// \brief Collect all Ret instructions.
485 void visitReturnInst(ReturnInst &RI) {
486 RetVec.push_back(&RI);
487 }
488
489 /// \brief Collect Alloca instructions we want (and can) handle.
490 void visitAllocaInst(AllocaInst &AI) {
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000491 if (!isInterestingAlloca(AI)) return;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000492
493 StackAlignment = std::max(StackAlignment, AI.getAlignment());
494 AllocaVec.push_back(&AI);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000495 }
496
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000497 /// \brief Collect lifetime intrinsic calls to check for use-after-scope
498 /// errors.
499 void visitIntrinsicInst(IntrinsicInst &II) {
500 if (!ASan.CheckLifetime) return;
501 Intrinsic::ID ID = II.getIntrinsicID();
502 if (ID != Intrinsic::lifetime_start &&
503 ID != Intrinsic::lifetime_end)
504 return;
505 // Found lifetime intrinsic, add ASan instrumentation if necessary.
506 ConstantInt *Size = dyn_cast<ConstantInt>(II.getArgOperand(0));
507 // If size argument is undefined, don't do anything.
508 if (Size->isMinusOne()) return;
509 // Check that size doesn't saturate uint64_t and can
510 // be stored in IntptrTy.
511 const uint64_t SizeValue = Size->getValue().getLimitedValue();
512 if (SizeValue == ~0ULL ||
513 !ConstantInt::isValueValidForType(IntptrTy, SizeValue))
514 return;
515 // Find alloca instruction that corresponds to llvm.lifetime argument.
516 AllocaInst *AI = findAllocaForValue(II.getArgOperand(1));
517 if (!AI) return;
518 bool DoPoison = (ID == Intrinsic::lifetime_end);
Alexey Samsonova788b942013-11-18 14:53:55 +0000519 AllocaPoisonCall APC = {&II, AI, SizeValue, DoPoison};
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000520 AllocaPoisonCallVec.push_back(APC);
521 }
522
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000523 // ---------------------- Helpers.
524 void initializeCallbacks(Module &M);
525
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000526 // Check if we want (and can) handle this alloca.
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000527 bool isInterestingAlloca(AllocaInst &AI) const {
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000528 return (!AI.isArrayAllocation() && AI.isStaticAlloca() &&
529 AI.getAllocatedType()->isSized() &&
530 // alloca() may be called with 0 size, ignore it.
531 getAllocaSizeInBytes(&AI) > 0);
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000532 }
533
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000534 uint64_t getAllocaSizeInBytes(AllocaInst *AI) const {
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000535 Type *Ty = AI->getAllocatedType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000536 uint64_t SizeInBytes = ASan.DL->getTypeAllocSize(Ty);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000537 return SizeInBytes;
538 }
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000539 /// Finds alloca where the value comes from.
540 AllocaInst *findAllocaForValue(Value *V);
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000541 void poisonRedZones(const ArrayRef<uint8_t> ShadowBytes, IRBuilder<> &IRB,
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000542 Value *ShadowBase, bool DoPoison);
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000543 void poisonAlloca(Value *V, uint64_t Size, IRBuilder<> &IRB, bool DoPoison);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +0000544
545 void SetShadowToStackAfterReturnInlined(IRBuilder<> &IRB, Value *ShadowBase,
546 int Size);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000547};
548
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000549} // namespace
550
551char AddressSanitizer::ID = 0;
552INITIALIZE_PASS(AddressSanitizer, "asan",
553 "AddressSanitizer: detects use-after-free and out-of-bounds bugs.",
554 false, false)
Alexey Samsonovdf624522012-11-29 18:14:24 +0000555FunctionPass *llvm::createAddressSanitizerFunctionPass(
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000556 bool CheckInitOrder, bool CheckUseAfterReturn, bool CheckLifetime,
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000557 StringRef BlacklistFile) {
Alexey Samsonovdf624522012-11-29 18:14:24 +0000558 return new AddressSanitizer(CheckInitOrder, CheckUseAfterReturn,
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000559 CheckLifetime, BlacklistFile);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000560}
561
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000562char AddressSanitizerModule::ID = 0;
563INITIALIZE_PASS(AddressSanitizerModule, "asan-module",
564 "AddressSanitizer: detects use-after-free and out-of-bounds bugs."
565 "ModulePass", false, false)
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000566ModulePass *llvm::createAddressSanitizerModulePass(
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000567 bool CheckInitOrder, StringRef BlacklistFile) {
568 return new AddressSanitizerModule(CheckInitOrder, BlacklistFile);
Alexander Potapenkoc94cf8f2012-01-23 11:22:43 +0000569}
570
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000571static size_t TypeSizeToSizeIndex(uint32_t TypeSize) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000572 size_t Res = countTrailingZeros(TypeSize / 8);
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000573 assert(Res < kNumberOfAccessSizes);
574 return Res;
575}
576
Bill Wendling58f8cef2013-08-06 22:52:42 +0000577// \brief Create a constant for Str so that we can pass it to the run-time lib.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000578static GlobalVariable *createPrivateGlobalForString(
579 Module &M, StringRef Str, bool AllowMerging) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000580 Constant *StrConst = ConstantDataArray::getString(M.getContext(), Str);
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000581 // We use private linkage for module-local strings. If they can be merged
582 // with another one, we set the unnamed_addr attribute.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000583 GlobalVariable *GV =
584 new GlobalVariable(M, StrConst->getType(), true,
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000585 GlobalValue::PrivateLinkage, StrConst, kAsanGenPrefix);
586 if (AllowMerging)
587 GV->setUnnamedAddr(true);
Kostya Serebryany10cc12f2013-03-18 09:38:39 +0000588 GV->setAlignment(1); // Strings may not be merged w/o setting align 1.
589 return GV;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000590}
591
592static bool GlobalWasGeneratedByAsan(GlobalVariable *G) {
593 return G->getName().find(kAsanGenPrefix) == 0;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000594}
595
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000596Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) {
597 // Shadow >> scale
Alexey Samsonov1345d352013-01-16 13:23:28 +0000598 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale);
599 if (Mapping.Offset == 0)
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000600 return Shadow;
601 // (Shadow >> scale) | offset
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000602 if (Mapping.OrShadowOffset)
603 return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
604 else
605 return IRB.CreateAdd(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000606}
607
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000608// Instrument memset/memmove/memcpy
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000609void AddressSanitizer::instrumentMemIntrinsic(MemIntrinsic *MI) {
610 IRBuilder<> IRB(MI);
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000611 if (isa<MemTransferInst>(MI)) {
Evgeniy Stepanoved31ca42014-05-14 10:56:19 +0000612 IRB.CreateCall3(
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000613 isa<MemMoveInst>(MI) ? AsanMemmove : AsanMemcpy,
614 IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()),
615 IRB.CreatePointerCast(MI->getOperand(1), IRB.getInt8PtrTy()),
616 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false));
617 } else if (isa<MemSetInst>(MI)) {
Evgeniy Stepanoved31ca42014-05-14 10:56:19 +0000618 IRB.CreateCall3(
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000619 AsanMemset,
620 IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()),
621 IRB.CreateIntCast(MI->getOperand(1), IRB.getInt32Ty(), false),
622 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000623 }
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000624 MI->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000625}
626
Kostya Serebryany90241602012-05-30 09:04:06 +0000627// If I is an interesting memory access, return the PointerOperand
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000628// and set IsWrite/Alignment. Otherwise return NULL.
629static Value *isInterestingMemoryAccess(Instruction *I, bool *IsWrite,
630 unsigned *Alignment) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000631 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000632 if (!ClInstrumentReads) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000633 *IsWrite = false;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000634 *Alignment = LI->getAlignment();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000635 return LI->getPointerOperand();
636 }
Kostya Serebryany90241602012-05-30 09:04:06 +0000637 if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000638 if (!ClInstrumentWrites) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000639 *IsWrite = true;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000640 *Alignment = SI->getAlignment();
Kostya Serebryany90241602012-05-30 09:04:06 +0000641 return SI->getPointerOperand();
642 }
643 if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000644 if (!ClInstrumentAtomics) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000645 *IsWrite = true;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000646 *Alignment = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +0000647 return RMW->getPointerOperand();
648 }
649 if (AtomicCmpXchgInst *XCHG = dyn_cast<AtomicCmpXchgInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000650 if (!ClInstrumentAtomics) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000651 *IsWrite = true;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000652 *Alignment = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +0000653 return XCHG->getPointerOperand();
654 }
Craig Topperf40110f2014-04-25 05:29:35 +0000655 return nullptr;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000656}
657
Kostya Serebryany796f6552014-02-27 12:45:36 +0000658static bool isPointerOperand(Value *V) {
659 return V->getType()->isPointerTy() || isa<PtrToIntInst>(V);
660}
661
662// This is a rough heuristic; it may cause both false positives and
663// false negatives. The proper implementation requires cooperation with
664// the frontend.
665static bool isInterestingPointerComparisonOrSubtraction(Instruction *I) {
666 if (ICmpInst *Cmp = dyn_cast<ICmpInst>(I)) {
667 if (!Cmp->isRelational())
668 return false;
669 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) {
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +0000670 if (BO->getOpcode() != Instruction::Sub)
Kostya Serebryany796f6552014-02-27 12:45:36 +0000671 return false;
672 } else {
673 return false;
674 }
675 if (!isPointerOperand(I->getOperand(0)) ||
676 !isPointerOperand(I->getOperand(1)))
677 return false;
678 return true;
679}
680
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000681bool AddressSanitizer::GlobalIsLinkerInitialized(GlobalVariable *G) {
682 // If a global variable does not have dynamic initialization we don't
683 // have to instrument it. However, if a global does not have initializer
684 // at all, we assume it has dynamic initializer (in other TU).
685 return G->hasInitializer() && !DynamicallyInitializedGlobals.Contains(G);
686}
687
Kostya Serebryany796f6552014-02-27 12:45:36 +0000688void
689AddressSanitizer::instrumentPointerComparisonOrSubtraction(Instruction *I) {
690 IRBuilder<> IRB(I);
691 Function *F = isa<ICmpInst>(I) ? AsanPtrCmpFunction : AsanPtrSubFunction;
692 Value *Param[2] = {I->getOperand(0), I->getOperand(1)};
693 for (int i = 0; i < 2; i++) {
694 if (Param[i]->getType()->isPointerTy())
695 Param[i] = IRB.CreatePointerCast(Param[i], IntptrTy);
696 }
697 IRB.CreateCall2(F, Param[0], Param[1]);
698}
699
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000700void AddressSanitizer::instrumentMop(Instruction *I, bool UseCalls) {
Axel Naumann4a127062012-09-17 14:20:57 +0000701 bool IsWrite = false;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000702 unsigned Alignment = 0;
703 Value *Addr = isInterestingMemoryAccess(I, &IsWrite, &Alignment);
Kostya Serebryany90241602012-05-30 09:04:06 +0000704 assert(Addr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000705 if (ClOpt && ClOptGlobals) {
706 if (GlobalVariable *G = dyn_cast<GlobalVariable>(Addr)) {
707 // If initialization order checking is disabled, a simple access to a
708 // dynamically initialized global is always valid.
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000709 if (!CheckInitOrder || GlobalIsLinkerInitialized(G)) {
710 NumOptimizedAccessesToGlobalVar++;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000711 return;
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000712 }
713 }
714 ConstantExpr *CE = dyn_cast<ConstantExpr>(Addr);
715 if (CE && CE->isGEPWithNoNotionalOverIndexing()) {
716 if (GlobalVariable *G = dyn_cast<GlobalVariable>(CE->getOperand(0))) {
717 if (CE->getOperand(1)->isNullValue() && GlobalIsLinkerInitialized(G)) {
718 NumOptimizedAccessesToGlobalArray++;
719 return;
720 }
721 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000722 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000723 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000724
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000725 Type *OrigPtrTy = Addr->getType();
726 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType();
727
728 assert(OrigTy->isSized());
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000729 uint32_t TypeSize = DL->getTypeStoreSizeInBits(OrigTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000730
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000731 assert((TypeSize % 8) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000732
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000733 if (IsWrite)
734 NumInstrumentedWrites++;
735 else
736 NumInstrumentedReads++;
737
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000738 unsigned Granularity = 1 << Mapping.Scale;
739 // Instrument a 1-, 2-, 4-, 8-, or 16- byte access with one check
740 // if the data is properly aligned.
741 if ((TypeSize == 8 || TypeSize == 16 || TypeSize == 32 || TypeSize == 64 ||
742 TypeSize == 128) &&
743 (Alignment >= Granularity || Alignment == 0 || Alignment >= TypeSize / 8))
Craig Topperf40110f2014-04-25 05:29:35 +0000744 return instrumentAddress(I, I, Addr, TypeSize, IsWrite, nullptr, UseCalls);
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000745 // Instrument unusual size or unusual alignment.
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000746 // We can not do it with a single check, so we do 1-byte check for the first
747 // and the last bytes. We call __asan_report_*_n(addr, real_size) to be able
748 // to report the actual access size.
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000749 IRBuilder<> IRB(I);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000750 Value *Size = ConstantInt::get(IntptrTy, TypeSize / 8);
Kostya Serebryanyc9a2c172014-04-22 11:19:45 +0000751 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
752 if (UseCalls) {
Evgeniy Stepanoved31ca42014-05-14 10:56:19 +0000753 IRB.CreateCall2(AsanMemoryAccessCallbackSized[IsWrite], AddrLong, Size);
Kostya Serebryanyc9a2c172014-04-22 11:19:45 +0000754 } else {
755 Value *LastByte = IRB.CreateIntToPtr(
756 IRB.CreateAdd(AddrLong, ConstantInt::get(IntptrTy, TypeSize / 8 - 1)),
757 OrigPtrTy);
758 instrumentAddress(I, I, Addr, 8, IsWrite, Size, false);
759 instrumentAddress(I, I, LastByte, 8, IsWrite, Size, false);
760 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000761}
762
Alexander Potapenko056e27e2012-04-23 10:47:31 +0000763// Validate the result of Module::getOrInsertFunction called for an interface
764// function of AddressSanitizer. If the instrumented module defines a function
765// with the same name, their prototypes must match, otherwise
766// getOrInsertFunction returns a bitcast.
Kostya Serebryany20a79972012-11-22 03:18:50 +0000767static Function *checkInterfaceFunction(Constant *FuncOrBitcast) {
Alexander Potapenko056e27e2012-04-23 10:47:31 +0000768 if (isa<Function>(FuncOrBitcast)) return cast<Function>(FuncOrBitcast);
769 FuncOrBitcast->dump();
770 report_fatal_error("trying to redefine an AddressSanitizer "
771 "interface function");
772}
773
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000774Instruction *AddressSanitizer::generateCrashCode(
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000775 Instruction *InsertBefore, Value *Addr,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000776 bool IsWrite, size_t AccessSizeIndex, Value *SizeArgument) {
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000777 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000778 CallInst *Call = SizeArgument
779 ? IRB.CreateCall2(AsanErrorCallbackSized[IsWrite], Addr, SizeArgument)
780 : IRB.CreateCall(AsanErrorCallback[IsWrite][AccessSizeIndex], Addr);
781
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000782 // We don't do Call->setDoesNotReturn() because the BB already has
783 // UnreachableInst at the end.
784 // This EmptyAsm is required to avoid callback merge.
785 IRB.CreateCall(EmptyAsm);
Kostya Serebryany3411f2e2012-01-06 18:09:21 +0000786 return Call;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000787}
788
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000789Value *AddressSanitizer::createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
Kostya Serebryany874dae62012-07-16 16:15:40 +0000790 Value *ShadowValue,
791 uint32_t TypeSize) {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000792 size_t Granularity = 1 << Mapping.Scale;
Kostya Serebryany874dae62012-07-16 16:15:40 +0000793 // Addr & (Granularity - 1)
794 Value *LastAccessedByte = IRB.CreateAnd(
795 AddrLong, ConstantInt::get(IntptrTy, Granularity - 1));
796 // (Addr & (Granularity - 1)) + size - 1
797 if (TypeSize / 8 > 1)
798 LastAccessedByte = IRB.CreateAdd(
799 LastAccessedByte, ConstantInt::get(IntptrTy, TypeSize / 8 - 1));
800 // (uint8_t) ((Addr & (Granularity-1)) + size - 1)
801 LastAccessedByte = IRB.CreateIntCast(
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000802 LastAccessedByte, ShadowValue->getType(), false);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000803 // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue
804 return IRB.CreateICmpSGE(LastAccessedByte, ShadowValue);
805}
806
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000807void AddressSanitizer::instrumentAddress(Instruction *OrigIns,
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000808 Instruction *InsertBefore, Value *Addr,
809 uint32_t TypeSize, bool IsWrite,
810 Value *SizeArgument, bool UseCalls) {
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000811 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000812 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000813 size_t AccessSizeIndex = TypeSizeToSizeIndex(TypeSize);
814
815 if (UseCalls) {
Kostya Serebryany94f57d192014-04-21 10:28:13 +0000816 IRB.CreateCall(AsanMemoryAccessCallback[IsWrite][AccessSizeIndex],
817 AddrLong);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000818 return;
819 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000820
821 Type *ShadowTy = IntegerType::get(
Alexey Samsonov1345d352013-01-16 13:23:28 +0000822 *C, std::max(8U, TypeSize >> Mapping.Scale));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000823 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0);
824 Value *ShadowPtr = memToShadow(AddrLong, IRB);
825 Value *CmpVal = Constant::getNullValue(ShadowTy);
826 Value *ShadowValue = IRB.CreateLoad(
827 IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy));
828
829 Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal);
Alexey Samsonov1345d352013-01-16 13:23:28 +0000830 size_t Granularity = 1 << Mapping.Scale;
Craig Topperf40110f2014-04-25 05:29:35 +0000831 TerminatorInst *CrashTerm = nullptr;
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000832
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000833 if (ClAlwaysSlowPath || (TypeSize < 8 * Granularity)) {
Evgeniy Stepanov8eb77d82012-10-19 10:48:31 +0000834 TerminatorInst *CheckTerm =
Evgeniy Stepanova9164e92013-12-19 13:29:56 +0000835 SplitBlockAndInsertIfThen(Cmp, InsertBefore, false);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000836 assert(dyn_cast<BranchInst>(CheckTerm)->isUnconditional());
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000837 BasicBlock *NextBB = CheckTerm->getSuccessor(0);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000838 IRB.SetInsertPoint(CheckTerm);
839 Value *Cmp2 = createSlowPathCmp(IRB, AddrLong, ShadowValue, TypeSize);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000840 BasicBlock *CrashBlock =
841 BasicBlock::Create(*C, "", NextBB->getParent(), NextBB);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000842 CrashTerm = new UnreachableInst(*C, CrashBlock);
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000843 BranchInst *NewTerm = BranchInst::Create(CrashBlock, NextBB, Cmp2);
844 ReplaceInstWithInst(CheckTerm, NewTerm);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000845 } else {
Evgeniy Stepanova9164e92013-12-19 13:29:56 +0000846 CrashTerm = SplitBlockAndInsertIfThen(Cmp, InsertBefore, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000847 }
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000848
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000849 Instruction *Crash = generateCrashCode(
850 CrashTerm, AddrLong, IsWrite, AccessSizeIndex, SizeArgument);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000851 Crash->setDebugLoc(OrigIns->getDebugLoc());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000852}
853
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000854void AddressSanitizerModule::createInitializerPoisonCalls(
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000855 Module &M, GlobalValue *ModuleName) {
Nico Weberba8a99c2014-05-06 23:17:26 +0000856 // We do all of our poisoning and unpoisoning within a global constructor.
857 // These are called _GLOBAL__(sub_)?I_.*.
858 // TODO: Consider looking through the functions in
859 // M.getGlobalVariable("llvm.global_ctors") instead of using this stringly
860 // typed approach.
861 Function *GlobalInit = nullptr;
862 for (auto &F : M.getFunctionList()) {
863 StringRef FName = F.getName();
864
865 const char kGlobalPrefix[] = "_GLOBAL__";
866 if (!FName.startswith(kGlobalPrefix))
867 continue;
868 FName = FName.substr(strlen(kGlobalPrefix));
869
870 const char kOptionalSub[] = "sub_";
871 if (FName.startswith(kOptionalSub))
872 FName = FName.substr(strlen(kOptionalSub));
873
874 if (FName.startswith("I_")) {
875 GlobalInit = &F;
876 break;
877 }
878 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000879 // If that function is not present, this TU contains no globals, or they have
880 // all been optimized away
881 if (!GlobalInit)
882 return;
883
884 // Set up the arguments to our poison/unpoison functions.
885 IRBuilder<> IRB(GlobalInit->begin()->getFirstInsertionPt());
886
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000887 // Add a call to poison all external globals before the given function starts.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000888 Value *ModuleNameAddr = ConstantExpr::getPointerCast(ModuleName, IntptrTy);
889 IRB.CreateCall(AsanPoisonGlobals, ModuleNameAddr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000890
891 // Add calls to unpoison all globals before each return instruction.
892 for (Function::iterator I = GlobalInit->begin(), E = GlobalInit->end();
Nico Weberba8a99c2014-05-06 23:17:26 +0000893 I != E; ++I) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000894 if (ReturnInst *RI = dyn_cast<ReturnInst>(I->getTerminator())) {
895 CallInst::Create(AsanUnpoisonGlobals, "", RI);
896 }
897 }
898}
899
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000900bool AddressSanitizerModule::ShouldInstrumentGlobal(GlobalVariable *G) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000901 Type *Ty = cast<PointerType>(G->getType())->getElementType();
Kostya Serebryany20343352012-10-17 13:40:06 +0000902 DEBUG(dbgs() << "GLOBAL: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000903
Kostya Serebryany2fa38f82012-09-05 07:29:56 +0000904 if (BL->isIn(*G)) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000905 if (!Ty->isSized()) return false;
906 if (!G->hasInitializer()) return false;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000907 if (GlobalWasGeneratedByAsan(G)) return false; // Our own global.
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000908 // Touch only those globals that will not be defined in other modules.
909 // Don't handle ODR type linkages since other modules may be built w/o asan.
910 if (G->getLinkage() != GlobalVariable::ExternalLinkage &&
911 G->getLinkage() != GlobalVariable::PrivateLinkage &&
912 G->getLinkage() != GlobalVariable::InternalLinkage)
913 return false;
914 // Two problems with thread-locals:
915 // - The address of the main thread's copy can't be computed at link-time.
916 // - Need to poison all copies, not just the main thread's one.
917 if (G->isThreadLocal())
918 return false;
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000919 // For now, just ignore this Global if the alignment is large.
920 if (G->getAlignment() > MinRedzoneSizeForGlobal()) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000921
922 // Ignore all the globals with the names starting with "\01L_OBJC_".
923 // Many of those are put into the .cstring section. The linker compresses
924 // that section by removing the spare \0s after the string terminator, so
925 // our redzones get broken.
926 if ((G->getName().find("\01L_OBJC_") == 0) ||
927 (G->getName().find("\01l_OBJC_") == 0)) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000928 DEBUG(dbgs() << "Ignoring \\01L_OBJC_* global: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000929 return false;
930 }
931
932 if (G->hasSection()) {
933 StringRef Section(G->getSection());
934 // Ignore the globals from the __OBJC section. The ObjC runtime assumes
935 // those conform to /usr/lib/objc/runtime.h, so we can't add redzones to
936 // them.
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000937 if (Section.startswith("__OBJC,") ||
938 Section.startswith("__DATA, __objc_")) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000939 DEBUG(dbgs() << "Ignoring ObjC runtime global: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000940 return false;
941 }
942 // See http://code.google.com/p/address-sanitizer/issues/detail?id=32
943 // Constant CFString instances are compiled in the following way:
944 // -- the string buffer is emitted into
945 // __TEXT,__cstring,cstring_literals
946 // -- the constant NSConstantString structure referencing that buffer
947 // is placed into __DATA,__cfstring
948 // Therefore there's no point in placing redzones into __DATA,__cfstring.
949 // Moreover, it causes the linker to crash on OS X 10.7
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000950 if (Section.startswith("__DATA,__cfstring")) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000951 DEBUG(dbgs() << "Ignoring CFString: " << *G << "\n");
952 return false;
953 }
954 // The linker merges the contents of cstring_literals and removes the
955 // trailing zeroes.
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000956 if (Section.startswith("__TEXT,__cstring,cstring_literals")) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000957 DEBUG(dbgs() << "Ignoring a cstring literal: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000958 return false;
959 }
Timur Iskhodzhanov9dbc2062014-05-05 14:28:38 +0000960
961 // Callbacks put into the CRT initializer/terminator sections
962 // should not be instrumented.
963 // See https://code.google.com/p/address-sanitizer/issues/detail?id=305
964 // and http://msdn.microsoft.com/en-US/en-en/library/bb918180(v=vs.120).aspx
965 if (Section.startswith(".CRT")) {
966 DEBUG(dbgs() << "Ignoring a global initializer callback: " << *G << "\n");
967 return false;
968 }
969
Alexander Potapenko04969e82014-03-20 10:48:34 +0000970 // Globals from llvm.metadata aren't emitted, do not instrument them.
971 if (Section == "llvm.metadata") return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000972 }
973
974 return true;
975}
976
Alexey Samsonov788381b2012-12-25 12:28:20 +0000977void AddressSanitizerModule::initializeCallbacks(Module &M) {
978 IRBuilder<> IRB(*C);
979 // Declare our poisoning and unpoisoning functions.
980 AsanPoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000981 kAsanPoisonGlobalsName, IRB.getVoidTy(), IntptrTy, NULL));
Alexey Samsonov788381b2012-12-25 12:28:20 +0000982 AsanPoisonGlobals->setLinkage(Function::ExternalLinkage);
983 AsanUnpoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
984 kAsanUnpoisonGlobalsName, IRB.getVoidTy(), NULL));
985 AsanUnpoisonGlobals->setLinkage(Function::ExternalLinkage);
986 // Declare functions that register/unregister globals.
987 AsanRegisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
988 kAsanRegisterGlobalsName, IRB.getVoidTy(),
989 IntptrTy, IntptrTy, NULL));
990 AsanRegisterGlobals->setLinkage(Function::ExternalLinkage);
991 AsanUnregisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
992 kAsanUnregisterGlobalsName,
993 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
994 AsanUnregisterGlobals->setLinkage(Function::ExternalLinkage);
Evgeniy Stepanov47b1a952014-05-27 12:39:31 +0000995 AsanCovModuleInit = checkInterfaceFunction(M.getOrInsertFunction(
996 kAsanCovModuleInitName,
997 IRB.getVoidTy(), IntptrTy, NULL));
998 AsanCovModuleInit->setLinkage(Function::ExternalLinkage);
Alexey Samsonov788381b2012-12-25 12:28:20 +0000999}
1000
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001001// This function replaces all global variables with new variables that have
1002// trailing redzones. It also creates a function that poisons
1003// redzones and inserts this function into llvm.global_ctors.
Kostya Serebryanydfe9e792012-11-28 10:31:36 +00001004bool AddressSanitizerModule::runOnModule(Module &M) {
1005 if (!ClGlobals) return false;
Rafael Espindola93512512014-02-25 17:30:31 +00001006
1007 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
1008 if (!DLP)
Kostya Serebryanydfe9e792012-11-28 10:31:36 +00001009 return false;
Rafael Espindola93512512014-02-25 17:30:31 +00001010 DL = &DLP->getDataLayout();
1011
Alexey Samsonove4b5fb82013-08-12 11:46:09 +00001012 BL.reset(SpecialCaseList::createOrDie(BlacklistFile));
Alexey Samsonov9a956e82012-11-29 18:27:01 +00001013 if (BL->isIn(M)) return false;
Kostya Serebryany20a79972012-11-22 03:18:50 +00001014 C = &(M.getContext());
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001015 int LongSize = DL->getPointerSizeInBits();
Alexey Samsonov1345d352013-01-16 13:23:28 +00001016 IntptrTy = Type::getIntNTy(*C, LongSize);
Evgeniy Stepanov13665362014-01-16 10:19:12 +00001017 Mapping = getShadowMapping(M, LongSize);
Alexey Samsonov788381b2012-12-25 12:28:20 +00001018 initializeCallbacks(M);
1019 DynamicallyInitializedGlobals.Init(M);
Kostya Serebryany20a79972012-11-22 03:18:50 +00001020
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001021 SmallVector<GlobalVariable *, 16> GlobalsToChange;
1022
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001023 for (Module::GlobalListType::iterator G = M.global_begin(),
1024 E = M.global_end(); G != E; ++G) {
1025 if (ShouldInstrumentGlobal(G))
1026 GlobalsToChange.push_back(G);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001027 }
1028
Evgeniy Stepanov47b1a952014-05-27 12:39:31 +00001029 Function *CtorFunc = M.getFunction(kAsanModuleCtorName);
1030 assert(CtorFunc);
1031 IRBuilder<> IRB(CtorFunc->getEntryBlock().getTerminator());
1032
Evgeniy Stepanov386b58d2014-05-28 09:26:46 +00001033 if (ClCoverage > 0) {
1034 Function *CovFunc = M.getFunction(kAsanCovName);
1035 int nCov = CovFunc ? CovFunc->getNumUses() : 0;
1036 IRB.CreateCall(AsanCovModuleInit, ConstantInt::get(IntptrTy, nCov));
1037 }
Evgeniy Stepanov47b1a952014-05-27 12:39:31 +00001038
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001039 size_t n = GlobalsToChange.size();
1040 if (n == 0) return false;
1041
1042 // A global is described by a structure
1043 // size_t beg;
1044 // size_t size;
1045 // size_t size_with_redzone;
1046 // const char *name;
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001047 // const char *module_name;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001048 // size_t has_dynamic_init;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001049 // We initialize an array of such structures and pass it to a run-time call.
1050 StructType *GlobalStructTy = StructType::get(IntptrTy, IntptrTy,
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001051 IntptrTy, IntptrTy,
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001052 IntptrTy, IntptrTy, NULL);
Rafael Espindola44fee4e2013-10-01 13:32:03 +00001053 SmallVector<Constant *, 16> Initializers(n);
Kostya Serebryany20a79972012-11-22 03:18:50 +00001054
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001055 bool HasDynamicallyInitializedGlobals = false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001056
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001057 // We shouldn't merge same module names, as this string serves as unique
1058 // module ID in runtime.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001059 GlobalVariable *ModuleName = createPrivateGlobalForString(
1060 M, M.getModuleIdentifier(), /*AllowMerging*/false);
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001061
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001062 for (size_t i = 0; i < n; i++) {
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001063 static const uint64_t kMaxGlobalRedzone = 1 << 18;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001064 GlobalVariable *G = GlobalsToChange[i];
1065 PointerType *PtrTy = cast<PointerType>(G->getType());
1066 Type *Ty = PtrTy->getElementType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001067 uint64_t SizeInBytes = DL->getTypeAllocSize(Ty);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001068 uint64_t MinRZ = MinRedzoneSizeForGlobal();
Kostya Serebryany87191f62013-01-24 10:35:40 +00001069 // MinRZ <= RZ <= kMaxGlobalRedzone
1070 // and trying to make RZ to be ~ 1/4 of SizeInBytes.
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001071 uint64_t RZ = std::max(MinRZ,
Kostya Serebryany87191f62013-01-24 10:35:40 +00001072 std::min(kMaxGlobalRedzone,
1073 (SizeInBytes / MinRZ / 4) * MinRZ));
1074 uint64_t RightRedzoneSize = RZ;
1075 // Round up to MinRZ
1076 if (SizeInBytes % MinRZ)
1077 RightRedzoneSize += MinRZ - (SizeInBytes % MinRZ);
1078 assert(((RightRedzoneSize + SizeInBytes) % MinRZ) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001079 Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001080 // Determine whether this global should be poisoned in initialization.
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +00001081 bool GlobalHasDynamicInitializer =
1082 DynamicallyInitializedGlobals.Contains(G);
Kostya Serebryany2fa38f82012-09-05 07:29:56 +00001083 // Don't check initialization order if this global is blacklisted.
Peter Collingbourne49062a92013-07-09 22:03:17 +00001084 GlobalHasDynamicInitializer &= !BL->isIn(*G, "init");
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001085
1086 StructType *NewTy = StructType::get(Ty, RightRedZoneTy, NULL);
1087 Constant *NewInitializer = ConstantStruct::get(
1088 NewTy, G->getInitializer(),
1089 Constant::getNullValue(RightRedZoneTy), NULL);
1090
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001091 GlobalVariable *Name =
1092 createPrivateGlobalForString(M, G->getName(), /*AllowMerging*/true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001093
1094 // Create a new global variable with enough space for a redzone.
Bill Wendling58f8cef2013-08-06 22:52:42 +00001095 GlobalValue::LinkageTypes Linkage = G->getLinkage();
1096 if (G->isConstant() && Linkage == GlobalValue::PrivateLinkage)
1097 Linkage = GlobalValue::InternalLinkage;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001098 GlobalVariable *NewGlobal = new GlobalVariable(
Bill Wendling58f8cef2013-08-06 22:52:42 +00001099 M, NewTy, G->isConstant(), Linkage,
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001100 NewInitializer, "", G, G->getThreadLocalMode());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001101 NewGlobal->copyAttributesFrom(G);
Kostya Serebryany87191f62013-01-24 10:35:40 +00001102 NewGlobal->setAlignment(MinRZ);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001103
1104 Value *Indices2[2];
1105 Indices2[0] = IRB.getInt32(0);
1106 Indices2[1] = IRB.getInt32(0);
1107
1108 G->replaceAllUsesWith(
Kostya Serebryany7471d132012-01-28 04:27:16 +00001109 ConstantExpr::getGetElementPtr(NewGlobal, Indices2, true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001110 NewGlobal->takeName(G);
1111 G->eraseFromParent();
1112
1113 Initializers[i] = ConstantStruct::get(
1114 GlobalStructTy,
1115 ConstantExpr::getPointerCast(NewGlobal, IntptrTy),
1116 ConstantInt::get(IntptrTy, SizeInBytes),
1117 ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize),
1118 ConstantExpr::getPointerCast(Name, IntptrTy),
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001119 ConstantExpr::getPointerCast(ModuleName, IntptrTy),
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001120 ConstantInt::get(IntptrTy, GlobalHasDynamicInitializer),
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001121 NULL);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001122
1123 // Populate the first and last globals declared in this TU.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001124 if (CheckInitOrder && GlobalHasDynamicInitializer)
1125 HasDynamicallyInitializedGlobals = true;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001126
Kostya Serebryany20343352012-10-17 13:40:06 +00001127 DEBUG(dbgs() << "NEW GLOBAL: " << *NewGlobal << "\n");
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001128 }
1129
1130 ArrayType *ArrayOfGlobalStructTy = ArrayType::get(GlobalStructTy, n);
1131 GlobalVariable *AllGlobals = new GlobalVariable(
Bill Wendling58f8cef2013-08-06 22:52:42 +00001132 M, ArrayOfGlobalStructTy, false, GlobalVariable::InternalLinkage,
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001133 ConstantArray::get(ArrayOfGlobalStructTy, Initializers), "");
1134
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001135 // Create calls for poisoning before initializers run and unpoisoning after.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001136 if (CheckInitOrder && HasDynamicallyInitializedGlobals)
1137 createInitializerPoisonCalls(M, ModuleName);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001138 IRB.CreateCall2(AsanRegisterGlobals,
1139 IRB.CreatePointerCast(AllGlobals, IntptrTy),
1140 ConstantInt::get(IntptrTy, n));
1141
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001142 // We also need to unregister globals at the end, e.g. when a shared library
1143 // gets closed.
1144 Function *AsanDtorFunction = Function::Create(
1145 FunctionType::get(Type::getVoidTy(*C), false),
1146 GlobalValue::InternalLinkage, kAsanModuleDtorName, &M);
1147 BasicBlock *AsanDtorBB = BasicBlock::Create(*C, "", AsanDtorFunction);
1148 IRBuilder<> IRB_Dtor(ReturnInst::Create(*C, AsanDtorBB));
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001149 IRB_Dtor.CreateCall2(AsanUnregisterGlobals,
1150 IRB.CreatePointerCast(AllGlobals, IntptrTy),
1151 ConstantInt::get(IntptrTy, n));
1152 appendToGlobalDtors(M, AsanDtorFunction, kAsanCtorAndCtorPriority);
1153
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001154 DEBUG(dbgs() << M);
1155 return true;
1156}
1157
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001158void AddressSanitizer::initializeCallbacks(Module &M) {
1159 IRBuilder<> IRB(*C);
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001160 // Create __asan_report* callbacks.
1161 for (size_t AccessIsWrite = 0; AccessIsWrite <= 1; AccessIsWrite++) {
1162 for (size_t AccessSizeIndex = 0; AccessSizeIndex < kNumberOfAccessSizes;
1163 AccessSizeIndex++) {
1164 // IsWrite and TypeSize are encoded in the function name.
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001165 std::string Suffix =
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001166 (AccessIsWrite ? "store" : "load") + itostr(1 << AccessSizeIndex);
Kostya Serebryany157a5152012-11-07 12:42:18 +00001167 AsanErrorCallback[AccessIsWrite][AccessSizeIndex] =
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001168 checkInterfaceFunction(
1169 M.getOrInsertFunction(kAsanReportErrorTemplate + Suffix,
1170 IRB.getVoidTy(), IntptrTy, NULL));
1171 AsanMemoryAccessCallback[AccessIsWrite][AccessSizeIndex] =
1172 checkInterfaceFunction(
1173 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + Suffix,
1174 IRB.getVoidTy(), IntptrTy, NULL));
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001175 }
1176 }
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +00001177 AsanErrorCallbackSized[0] = checkInterfaceFunction(M.getOrInsertFunction(
1178 kAsanReportLoadN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1179 AsanErrorCallbackSized[1] = checkInterfaceFunction(M.getOrInsertFunction(
1180 kAsanReportStoreN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001181
Kostya Serebryany86332c02014-04-21 07:10:43 +00001182 AsanMemoryAccessCallbackSized[0] = checkInterfaceFunction(
1183 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + "loadN",
1184 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1185 AsanMemoryAccessCallbackSized[1] = checkInterfaceFunction(
1186 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + "storeN",
1187 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1188
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00001189 AsanMemmove = checkInterfaceFunction(M.getOrInsertFunction(
1190 ClMemoryAccessCallbackPrefix + "memmove", IRB.getInt8PtrTy(),
1191 IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IntptrTy, NULL));
1192 AsanMemcpy = checkInterfaceFunction(M.getOrInsertFunction(
1193 ClMemoryAccessCallbackPrefix + "memcpy", IRB.getInt8PtrTy(),
1194 IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IntptrTy, NULL));
1195 AsanMemset = checkInterfaceFunction(M.getOrInsertFunction(
1196 ClMemoryAccessCallbackPrefix + "memset", IRB.getInt8PtrTy(),
1197 IRB.getInt8PtrTy(), IRB.getInt32Ty(), IntptrTy, NULL));
1198
1199 AsanHandleNoReturnFunc = checkInterfaceFunction(
1200 M.getOrInsertFunction(kAsanHandleNoReturnName, IRB.getVoidTy(), NULL));
Bob Wilsonda4147c2013-11-15 07:16:09 +00001201 AsanCovFunction = checkInterfaceFunction(M.getOrInsertFunction(
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001202 kAsanCovName, IRB.getVoidTy(), NULL));
Kostya Serebryany796f6552014-02-27 12:45:36 +00001203 AsanPtrCmpFunction = checkInterfaceFunction(M.getOrInsertFunction(
1204 kAsanPtrCmp, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1205 AsanPtrSubFunction = checkInterfaceFunction(M.getOrInsertFunction(
1206 kAsanPtrSub, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
Kostya Serebryanyf02c6062012-07-20 09:54:50 +00001207 // We insert an empty inline asm after __asan_report* to avoid callback merge.
1208 EmptyAsm = InlineAsm::get(FunctionType::get(IRB.getVoidTy(), false),
1209 StringRef(""), StringRef(""),
1210 /*hasSideEffects=*/true);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001211}
1212
1213// virtual
1214bool AddressSanitizer::doInitialization(Module &M) {
1215 // Initialize the private fields. No one has accessed them before.
Rafael Espindola93512512014-02-25 17:30:31 +00001216 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
1217 if (!DLP)
Evgeniy Stepanov119cb2e2014-04-23 12:51:32 +00001218 report_fatal_error("data layout missing");
Rafael Espindola93512512014-02-25 17:30:31 +00001219 DL = &DLP->getDataLayout();
1220
Alexey Samsonove4b5fb82013-08-12 11:46:09 +00001221 BL.reset(SpecialCaseList::createOrDie(BlacklistFile));
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001222 DynamicallyInitializedGlobals.Init(M);
1223
1224 C = &(M.getContext());
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001225 LongSize = DL->getPointerSizeInBits();
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001226 IntptrTy = Type::getIntNTy(*C, LongSize);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001227
1228 AsanCtorFunction = Function::Create(
1229 FunctionType::get(Type::getVoidTy(*C), false),
1230 GlobalValue::InternalLinkage, kAsanModuleCtorName, &M);
1231 BasicBlock *AsanCtorBB = BasicBlock::Create(*C, "", AsanCtorFunction);
1232 // call __asan_init in the module ctor.
1233 IRBuilder<> IRB(ReturnInst::Create(*C, AsanCtorBB));
1234 AsanInitFunction = checkInterfaceFunction(
1235 M.getOrInsertFunction(kAsanInitName, IRB.getVoidTy(), NULL));
1236 AsanInitFunction->setLinkage(Function::ExternalLinkage);
1237 IRB.CreateCall(AsanInitFunction);
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001238
Evgeniy Stepanov13665362014-01-16 10:19:12 +00001239 Mapping = getShadowMapping(M, LongSize);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001240
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001241 appendToGlobalCtors(M, AsanCtorFunction, kAsanCtorAndCtorPriority);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001242 return true;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001243}
1244
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001245bool AddressSanitizer::maybeInsertAsanInitAtFunctionEntry(Function &F) {
1246 // For each NSObject descendant having a +load method, this method is invoked
1247 // by the ObjC runtime before any of the static constructors is called.
1248 // Therefore we need to instrument such methods with a call to __asan_init
1249 // at the beginning in order to initialize our runtime before any access to
1250 // the shadow memory.
1251 // We cannot just ignore these methods, because they may call other
1252 // instrumented functions.
1253 if (F.getName().find(" load]") != std::string::npos) {
1254 IRBuilder<> IRB(F.begin()->begin());
1255 IRB.CreateCall(AsanInitFunction);
1256 return true;
1257 }
1258 return false;
1259}
1260
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001261void AddressSanitizer::InjectCoverageAtBlock(Function &F, BasicBlock &BB) {
1262 BasicBlock::iterator IP = BB.getFirstInsertionPt(), BE = BB.end();
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001263 // Skip static allocas at the top of the entry block so they don't become
1264 // dynamic when we split the block. If we used our optimized stack layout,
1265 // then there will only be one alloca and it will come first.
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001266 for (; IP != BE; ++IP) {
1267 AllocaInst *AI = dyn_cast<AllocaInst>(IP);
1268 if (!AI || !AI->isStaticAlloca())
1269 break;
1270 }
1271
1272 IRBuilder<> IRB(IP);
Bob Wilsonda4147c2013-11-15 07:16:09 +00001273 Type *Int8Ty = IRB.getInt8Ty();
1274 GlobalVariable *Guard = new GlobalVariable(
Kostya Serebryany0604c622013-11-15 09:52:05 +00001275 *F.getParent(), Int8Ty, false, GlobalValue::PrivateLinkage,
Bob Wilsonda4147c2013-11-15 07:16:09 +00001276 Constant::getNullValue(Int8Ty), "__asan_gen_cov_" + F.getName());
1277 LoadInst *Load = IRB.CreateLoad(Guard);
1278 Load->setAtomic(Monotonic);
1279 Load->setAlignment(1);
1280 Value *Cmp = IRB.CreateICmpEQ(Constant::getNullValue(Int8Ty), Load);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001281 Instruction *Ins = SplitBlockAndInsertIfThen(
1282 Cmp, IP, false, MDBuilder(*C).createBranchWeights(1, 100000));
Bob Wilsonda4147c2013-11-15 07:16:09 +00001283 IRB.SetInsertPoint(Ins);
1284 // We pass &F to __sanitizer_cov. We could avoid this and rely on
1285 // GET_CALLER_PC, but having the PC of the first instruction is just nice.
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001286 Instruction *Call = IRB.CreateCall(AsanCovFunction);
1287 Call->setDebugLoc(IP->getDebugLoc());
Bob Wilsonda4147c2013-11-15 07:16:09 +00001288 StoreInst *Store = IRB.CreateStore(ConstantInt::get(Int8Ty, 1), Guard);
1289 Store->setAtomic(Monotonic);
1290 Store->setAlignment(1);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001291}
1292
1293// Poor man's coverage that works with ASan.
1294// We create a Guard boolean variable with the same linkage
1295// as the function and inject this code into the entry block (-asan-coverage=1)
1296// or all blocks (-asan-coverage=2):
1297// if (*Guard) {
1298// __sanitizer_cov(&F);
1299// *Guard = 1;
1300// }
1301// The accesses to Guard are atomic. The rest of the logic is
1302// in __sanitizer_cov (it's fine to call it more than once).
1303//
1304// This coverage implementation provides very limited data:
1305// it only tells if a given function (block) was ever executed.
1306// No counters, no per-edge data.
1307// But for many use cases this is what we need and the added slowdown
1308// is negligible. This simple implementation will probably be obsoleted
1309// by the upcoming Clang-based coverage implementation.
1310// By having it here and now we hope to
1311// a) get the functionality to users earlier and
1312// b) collect usage statistics to help improve Clang coverage design.
1313bool AddressSanitizer::InjectCoverage(Function &F,
1314 const ArrayRef<BasicBlock *> AllBlocks) {
1315 if (!ClCoverage) return false;
1316
Kostya Serebryany22e88102014-04-18 08:02:42 +00001317 if (ClCoverage == 1 ||
1318 (unsigned)ClCoverageBlockThreshold < AllBlocks.size()) {
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001319 InjectCoverageAtBlock(F, F.getEntryBlock());
1320 } else {
1321 for (size_t i = 0, n = AllBlocks.size(); i < n; i++)
1322 InjectCoverageAtBlock(F, *AllBlocks[i]);
1323 }
Bob Wilsonda4147c2013-11-15 07:16:09 +00001324 return true;
1325}
1326
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001327bool AddressSanitizer::runOnFunction(Function &F) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001328 if (BL->isIn(F)) return false;
1329 if (&F == AsanCtorFunction) return false;
Kostya Serebryany6b5b58d2013-03-18 07:33:49 +00001330 if (F.getLinkage() == GlobalValue::AvailableExternallyLinkage) return false;
Kostya Serebryany20343352012-10-17 13:40:06 +00001331 DEBUG(dbgs() << "ASAN instrumenting:\n" << F << "\n");
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001332 initializeCallbacks(*F.getParent());
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001333
Kostya Serebryanycf880b92013-02-26 06:58:09 +00001334 // If needed, insert __asan_init before checking for SanitizeAddress attr.
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001335 maybeInsertAsanInitAtFunctionEntry(F);
1336
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001337 if (!F.hasFnAttribute(Attribute::SanitizeAddress))
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001338 return false;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001339
1340 if (!ClDebugFunc.empty() && ClDebugFunc != F.getName())
1341 return false;
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001342
1343 // We want to instrument every address only once per basic block (unless there
1344 // are calls between uses).
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001345 SmallSet<Value*, 16> TempsToInstrument;
1346 SmallVector<Instruction*, 16> ToInstrument;
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001347 SmallVector<Instruction*, 8> NoReturnCalls;
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001348 SmallVector<BasicBlock*, 16> AllBlocks;
Kostya Serebryany796f6552014-02-27 12:45:36 +00001349 SmallVector<Instruction*, 16> PointerComparisonsOrSubtracts;
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001350 int NumAllocas = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +00001351 bool IsWrite;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00001352 unsigned Alignment;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001353
1354 // Fill the set of memory operations to instrument.
1355 for (Function::iterator FI = F.begin(), FE = F.end();
1356 FI != FE; ++FI) {
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001357 AllBlocks.push_back(FI);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001358 TempsToInstrument.clear();
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001359 int NumInsnsPerBB = 0;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001360 for (BasicBlock::iterator BI = FI->begin(), BE = FI->end();
1361 BI != BE; ++BI) {
Kostya Serebryany687d0782012-01-11 18:15:23 +00001362 if (LooksLikeCodeInBug11395(BI)) return false;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00001363 if (Value *Addr = isInterestingMemoryAccess(BI, &IsWrite, &Alignment)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001364 if (ClOpt && ClOptSameTemp) {
1365 if (!TempsToInstrument.insert(Addr))
1366 continue; // We've seen this temp in the current BB.
1367 }
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +00001368 } else if (ClInvalidPointerPairs &&
Kostya Serebryany796f6552014-02-27 12:45:36 +00001369 isInterestingPointerComparisonOrSubtraction(BI)) {
1370 PointerComparisonsOrSubtracts.push_back(BI);
1371 continue;
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00001372 } else if (isa<MemIntrinsic>(BI)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001373 // ok, take it.
1374 } else {
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001375 if (isa<AllocaInst>(BI))
1376 NumAllocas++;
Kostya Serebryany699ac282013-02-20 12:35:15 +00001377 CallSite CS(BI);
1378 if (CS) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001379 // A call inside BB.
1380 TempsToInstrument.clear();
Kostya Serebryany699ac282013-02-20 12:35:15 +00001381 if (CS.doesNotReturn())
1382 NoReturnCalls.push_back(CS.getInstruction());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001383 }
1384 continue;
1385 }
1386 ToInstrument.push_back(BI);
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001387 NumInsnsPerBB++;
1388 if (NumInsnsPerBB >= ClMaxInsnsToInstrumentPerBB)
1389 break;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001390 }
1391 }
1392
Craig Topperf40110f2014-04-25 05:29:35 +00001393 Function *UninstrumentedDuplicate = nullptr;
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001394 bool LikelyToInstrument =
1395 !NoReturnCalls.empty() || !ToInstrument.empty() || (NumAllocas > 0);
1396 if (ClKeepUninstrumented && LikelyToInstrument) {
1397 ValueToValueMapTy VMap;
1398 UninstrumentedDuplicate = CloneFunction(&F, VMap, false);
1399 UninstrumentedDuplicate->removeFnAttr(Attribute::SanitizeAddress);
1400 UninstrumentedDuplicate->setName("NOASAN_" + F.getName());
1401 F.getParent()->getFunctionList().push_back(UninstrumentedDuplicate);
1402 }
1403
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001404 bool UseCalls = false;
1405 if (ClInstrumentationWithCallsThreshold >= 0 &&
1406 ToInstrument.size() > (unsigned)ClInstrumentationWithCallsThreshold)
1407 UseCalls = true;
1408
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001409 // Instrument.
1410 int NumInstrumented = 0;
1411 for (size_t i = 0, n = ToInstrument.size(); i != n; i++) {
1412 Instruction *Inst = ToInstrument[i];
1413 if (ClDebugMin < 0 || ClDebugMax < 0 ||
1414 (NumInstrumented >= ClDebugMin && NumInstrumented <= ClDebugMax)) {
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00001415 if (isInterestingMemoryAccess(Inst, &IsWrite, &Alignment))
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001416 instrumentMop(Inst, UseCalls);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001417 else
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00001418 instrumentMemIntrinsic(cast<MemIntrinsic>(Inst));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001419 }
1420 NumInstrumented++;
1421 }
1422
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001423 FunctionStackPoisoner FSP(F, *this);
1424 bool ChangedStack = FSP.runOnFunction();
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001425
1426 // We must unpoison the stack before every NoReturn call (throw, _exit, etc).
1427 // See e.g. http://code.google.com/p/address-sanitizer/issues/detail?id=37
1428 for (size_t i = 0, n = NoReturnCalls.size(); i != n; i++) {
1429 Instruction *CI = NoReturnCalls[i];
1430 IRBuilder<> IRB(CI);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001431 IRB.CreateCall(AsanHandleNoReturnFunc);
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001432 }
1433
Kostya Serebryany796f6552014-02-27 12:45:36 +00001434 for (size_t i = 0, n = PointerComparisonsOrSubtracts.size(); i != n; i++) {
1435 instrumentPointerComparisonOrSubtraction(PointerComparisonsOrSubtracts[i]);
1436 NumInstrumented++;
1437 }
1438
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001439 bool res = NumInstrumented > 0 || ChangedStack || !NoReturnCalls.empty();
Bob Wilsonda4147c2013-11-15 07:16:09 +00001440
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001441 if (InjectCoverage(F, AllBlocks))
Bob Wilsonda4147c2013-11-15 07:16:09 +00001442 res = true;
1443
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001444 DEBUG(dbgs() << "ASAN done instrumenting: " << res << " " << F << "\n");
1445
1446 if (ClKeepUninstrumented) {
1447 if (!res) {
1448 // No instrumentation is done, no need for the duplicate.
1449 if (UninstrumentedDuplicate)
1450 UninstrumentedDuplicate->eraseFromParent();
1451 } else {
1452 // The function was instrumented. We must have the duplicate.
1453 assert(UninstrumentedDuplicate);
1454 UninstrumentedDuplicate->setSection("NOASAN");
1455 assert(!F.hasSection());
1456 F.setSection("ASAN");
1457 }
1458 }
1459
1460 return res;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001461}
1462
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001463// Workaround for bug 11395: we don't want to instrument stack in functions
1464// with large assembly blobs (32-bit only), otherwise reg alloc may crash.
1465// FIXME: remove once the bug 11395 is fixed.
1466bool AddressSanitizer::LooksLikeCodeInBug11395(Instruction *I) {
1467 if (LongSize != 32) return false;
1468 CallInst *CI = dyn_cast<CallInst>(I);
1469 if (!CI || !CI->isInlineAsm()) return false;
1470 if (CI->getNumArgOperands() <= 5) return false;
1471 // We have inline assembly with quite a few arguments.
1472 return true;
1473}
1474
1475void FunctionStackPoisoner::initializeCallbacks(Module &M) {
1476 IRBuilder<> IRB(*C);
Kostya Serebryany6805de52013-09-10 13:16:56 +00001477 for (int i = 0; i <= kMaxAsanStackMallocSizeClass; i++) {
1478 std::string Suffix = itostr(i);
1479 AsanStackMallocFunc[i] = checkInterfaceFunction(
1480 M.getOrInsertFunction(kAsanStackMallocNameTemplate + Suffix, IntptrTy,
1481 IntptrTy, IntptrTy, NULL));
1482 AsanStackFreeFunc[i] = checkInterfaceFunction(M.getOrInsertFunction(
1483 kAsanStackFreeNameTemplate + Suffix, IRB.getVoidTy(), IntptrTy,
1484 IntptrTy, IntptrTy, NULL));
1485 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001486 AsanPoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1487 kAsanPoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1488 AsanUnpoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1489 kAsanUnpoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1490}
1491
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001492void
1493FunctionStackPoisoner::poisonRedZones(const ArrayRef<uint8_t> ShadowBytes,
1494 IRBuilder<> &IRB, Value *ShadowBase,
1495 bool DoPoison) {
1496 size_t n = ShadowBytes.size();
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001497 size_t i = 0;
1498 // We need to (un)poison n bytes of stack shadow. Poison as many as we can
1499 // using 64-bit stores (if we are on 64-bit arch), then poison the rest
1500 // with 32-bit stores, then with 16-byte stores, then with 8-byte stores.
1501 for (size_t LargeStoreSizeInBytes = ASan.LongSize / 8;
1502 LargeStoreSizeInBytes != 0; LargeStoreSizeInBytes /= 2) {
1503 for (; i + LargeStoreSizeInBytes - 1 < n; i += LargeStoreSizeInBytes) {
1504 uint64_t Val = 0;
1505 for (size_t j = 0; j < LargeStoreSizeInBytes; j++) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001506 if (ASan.DL->isLittleEndian())
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001507 Val |= (uint64_t)ShadowBytes[i + j] << (8 * j);
1508 else
1509 Val = (Val << 8) | ShadowBytes[i + j];
1510 }
1511 if (!Val) continue;
1512 Value *Ptr = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1513 Type *StoreTy = Type::getIntNTy(*C, LargeStoreSizeInBytes * 8);
1514 Value *Poison = ConstantInt::get(StoreTy, DoPoison ? Val : 0);
1515 IRB.CreateStore(Poison, IRB.CreateIntToPtr(Ptr, StoreTy->getPointerTo()));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001516 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001517 }
1518}
1519
Kostya Serebryany6805de52013-09-10 13:16:56 +00001520// Fake stack allocator (asan_fake_stack.h) has 11 size classes
1521// for every power of 2 from kMinStackMallocSize to kMaxAsanStackMallocSizeClass
1522static int StackMallocSizeClass(uint64_t LocalStackSize) {
1523 assert(LocalStackSize <= kMaxStackMallocSize);
1524 uint64_t MaxSize = kMinStackMallocSize;
1525 for (int i = 0; ; i++, MaxSize *= 2)
1526 if (LocalStackSize <= MaxSize)
1527 return i;
1528 llvm_unreachable("impossible LocalStackSize");
1529}
1530
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001531// Set Size bytes starting from ShadowBase to kAsanStackAfterReturnMagic.
1532// We can not use MemSet intrinsic because it may end up calling the actual
1533// memset. Size is a multiple of 8.
1534// Currently this generates 8-byte stores on x86_64; it may be better to
1535// generate wider stores.
1536void FunctionStackPoisoner::SetShadowToStackAfterReturnInlined(
1537 IRBuilder<> &IRB, Value *ShadowBase, int Size) {
1538 assert(!(Size % 8));
1539 assert(kAsanStackAfterReturnMagic == 0xf5);
1540 for (int i = 0; i < Size; i += 8) {
1541 Value *p = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1542 IRB.CreateStore(ConstantInt::get(IRB.getInt64Ty(), 0xf5f5f5f5f5f5f5f5ULL),
1543 IRB.CreateIntToPtr(p, IRB.getInt64Ty()->getPointerTo()));
1544 }
1545}
1546
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001547static DebugLoc getFunctionEntryDebugLocation(Function &F) {
1548 BasicBlock::iterator I = F.getEntryBlock().begin(),
1549 E = F.getEntryBlock().end();
1550 for (; I != E; ++I)
1551 if (!isa<AllocaInst>(I))
1552 break;
1553 return I->getDebugLoc();
1554}
1555
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001556void FunctionStackPoisoner::poisonStack() {
Kostya Serebryany6805de52013-09-10 13:16:56 +00001557 int StackMallocIdx = -1;
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001558 DebugLoc EntryDebugLocation = getFunctionEntryDebugLocation(F);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001559
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001560 assert(AllocaVec.size() > 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001561 Instruction *InsBefore = AllocaVec[0];
1562 IRBuilder<> IRB(InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001563 IRB.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001564
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001565 SmallVector<ASanStackVariableDescription, 16> SVD;
1566 SVD.reserve(AllocaVec.size());
1567 for (size_t i = 0, n = AllocaVec.size(); i < n; i++) {
1568 AllocaInst *AI = AllocaVec[i];
1569 ASanStackVariableDescription D = { AI->getName().data(),
1570 getAllocaSizeInBytes(AI),
1571 AI->getAlignment(), AI, 0};
1572 SVD.push_back(D);
1573 }
1574 // Minimal header size (left redzone) is 4 pointers,
1575 // i.e. 32 bytes on 64-bit platforms and 16 bytes in 32-bit platforms.
1576 size_t MinHeaderSize = ASan.LongSize / 2;
1577 ASanStackFrameLayout L;
1578 ComputeASanStackFrameLayout(SVD, 1UL << Mapping.Scale, MinHeaderSize, &L);
1579 DEBUG(dbgs() << L.DescriptionString << " --- " << L.FrameSize << "\n");
1580 uint64_t LocalStackSize = L.FrameSize;
1581 bool DoStackMalloc =
1582 ASan.CheckUseAfterReturn && LocalStackSize <= kMaxStackMallocSize;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001583
1584 Type *ByteArrayTy = ArrayType::get(IRB.getInt8Ty(), LocalStackSize);
1585 AllocaInst *MyAlloca =
1586 new AllocaInst(ByteArrayTy, "MyAlloca", InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001587 MyAlloca->setDebugLoc(EntryDebugLocation);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001588 assert((ClRealignStack & (ClRealignStack - 1)) == 0);
1589 size_t FrameAlignment = std::max(L.FrameAlignment, (size_t)ClRealignStack);
1590 MyAlloca->setAlignment(FrameAlignment);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001591 assert(MyAlloca->isStaticAlloca());
1592 Value *OrigStackBase = IRB.CreatePointerCast(MyAlloca, IntptrTy);
1593 Value *LocalStackBase = OrigStackBase;
1594
1595 if (DoStackMalloc) {
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001596 // LocalStackBase = OrigStackBase
1597 // if (__asan_option_detect_stack_use_after_return)
1598 // LocalStackBase = __asan_stack_malloc_N(LocalStackBase, OrigStackBase);
Kostya Serebryany6805de52013-09-10 13:16:56 +00001599 StackMallocIdx = StackMallocSizeClass(LocalStackSize);
1600 assert(StackMallocIdx <= kMaxAsanStackMallocSizeClass);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001601 Constant *OptionDetectUAR = F.getParent()->getOrInsertGlobal(
1602 kAsanOptionDetectUAR, IRB.getInt32Ty());
1603 Value *Cmp = IRB.CreateICmpNE(IRB.CreateLoad(OptionDetectUAR),
1604 Constant::getNullValue(IRB.getInt32Ty()));
Evgeniy Stepanova9164e92013-12-19 13:29:56 +00001605 Instruction *Term = SplitBlockAndInsertIfThen(Cmp, InsBefore, false);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001606 BasicBlock *CmpBlock = cast<Instruction>(Cmp)->getParent();
1607 IRBuilder<> IRBIf(Term);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001608 IRBIf.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001609 LocalStackBase = IRBIf.CreateCall2(
1610 AsanStackMallocFunc[StackMallocIdx],
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001611 ConstantInt::get(IntptrTy, LocalStackSize), OrigStackBase);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001612 BasicBlock *SetBlock = cast<Instruction>(LocalStackBase)->getParent();
1613 IRB.SetInsertPoint(InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00001614 IRB.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001615 PHINode *Phi = IRB.CreatePHI(IntptrTy, 2);
1616 Phi->addIncoming(OrigStackBase, CmpBlock);
1617 Phi->addIncoming(LocalStackBase, SetBlock);
1618 LocalStackBase = Phi;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001619 }
1620
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001621 // Insert poison calls for lifetime intrinsics for alloca.
1622 bool HavePoisonedAllocas = false;
1623 for (size_t i = 0, n = AllocaPoisonCallVec.size(); i < n; i++) {
1624 const AllocaPoisonCall &APC = AllocaPoisonCallVec[i];
Alexey Samsonova788b942013-11-18 14:53:55 +00001625 assert(APC.InsBefore);
1626 assert(APC.AI);
1627 IRBuilder<> IRB(APC.InsBefore);
1628 poisonAlloca(APC.AI, APC.Size, IRB, APC.DoPoison);
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001629 HavePoisonedAllocas |= APC.DoPoison;
1630 }
1631
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001632 // Replace Alloca instructions with base+offset.
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001633 for (size_t i = 0, n = SVD.size(); i < n; i++) {
1634 AllocaInst *AI = SVD[i].AI;
Alexey Samsonov261177a2012-12-04 01:34:23 +00001635 Value *NewAllocaPtr = IRB.CreateIntToPtr(
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001636 IRB.CreateAdd(LocalStackBase,
1637 ConstantInt::get(IntptrTy, SVD[i].Offset)),
1638 AI->getType());
Alexey Samsonov3d43b632012-12-12 14:31:53 +00001639 replaceDbgDeclareForAlloca(AI, NewAllocaPtr, DIB);
Alexey Samsonov261177a2012-12-04 01:34:23 +00001640 AI->replaceAllUsesWith(NewAllocaPtr);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001641 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001642
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001643 // The left-most redzone has enough space for at least 4 pointers.
1644 // Write the Magic value to redzone[0].
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001645 Value *BasePlus0 = IRB.CreateIntToPtr(LocalStackBase, IntptrPtrTy);
1646 IRB.CreateStore(ConstantInt::get(IntptrTy, kCurrentStackFrameMagic),
1647 BasePlus0);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001648 // Write the frame description constant to redzone[1].
1649 Value *BasePlus1 = IRB.CreateIntToPtr(
1650 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, ASan.LongSize/8)),
1651 IntptrPtrTy);
Alexey Samsonov9bdb63a2012-11-02 12:20:34 +00001652 GlobalVariable *StackDescriptionGlobal =
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001653 createPrivateGlobalForString(*F.getParent(), L.DescriptionString,
1654 /*AllowMerging*/true);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001655 Value *Description = IRB.CreatePointerCast(StackDescriptionGlobal,
1656 IntptrTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001657 IRB.CreateStore(Description, BasePlus1);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001658 // Write the PC to redzone[2].
1659 Value *BasePlus2 = IRB.CreateIntToPtr(
1660 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy,
1661 2 * ASan.LongSize/8)),
1662 IntptrPtrTy);
1663 IRB.CreateStore(IRB.CreatePointerCast(&F, IntptrTy), BasePlus2);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001664
1665 // Poison the stack redzones at the entry.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001666 Value *ShadowBase = ASan.memToShadow(LocalStackBase, IRB);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001667 poisonRedZones(L.ShadowBytes, IRB, ShadowBase, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001668
Kostya Serebryany530e2072013-12-23 14:15:08 +00001669 // (Un)poison the stack before all ret instructions.
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001670 for (size_t i = 0, n = RetVec.size(); i < n; i++) {
1671 Instruction *Ret = RetVec[i];
1672 IRBuilder<> IRBRet(Ret);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001673 // Mark the current frame as retired.
1674 IRBRet.CreateStore(ConstantInt::get(IntptrTy, kRetiredStackFrameMagic),
1675 BasePlus0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001676 if (DoStackMalloc) {
Kostya Serebryany6805de52013-09-10 13:16:56 +00001677 assert(StackMallocIdx >= 0);
Kostya Serebryany530e2072013-12-23 14:15:08 +00001678 // if LocalStackBase != OrigStackBase:
1679 // // In use-after-return mode, poison the whole stack frame.
1680 // if StackMallocIdx <= 4
1681 // // For small sizes inline the whole thing:
1682 // memset(ShadowBase, kAsanStackAfterReturnMagic, ShadowSize);
1683 // **SavedFlagPtr(LocalStackBase) = 0
1684 // else
1685 // __asan_stack_free_N(LocalStackBase, OrigStackBase)
1686 // else
1687 // <This is not a fake stack; unpoison the redzones>
1688 Value *Cmp = IRBRet.CreateICmpNE(LocalStackBase, OrigStackBase);
1689 TerminatorInst *ThenTerm, *ElseTerm;
1690 SplitBlockAndInsertIfThenElse(Cmp, Ret, &ThenTerm, &ElseTerm);
1691
1692 IRBuilder<> IRBPoison(ThenTerm);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001693 if (StackMallocIdx <= 4) {
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001694 int ClassSize = kMinStackMallocSize << StackMallocIdx;
1695 SetShadowToStackAfterReturnInlined(IRBPoison, ShadowBase,
1696 ClassSize >> Mapping.Scale);
1697 Value *SavedFlagPtrPtr = IRBPoison.CreateAdd(
1698 LocalStackBase,
1699 ConstantInt::get(IntptrTy, ClassSize - ASan.LongSize / 8));
1700 Value *SavedFlagPtr = IRBPoison.CreateLoad(
1701 IRBPoison.CreateIntToPtr(SavedFlagPtrPtr, IntptrPtrTy));
1702 IRBPoison.CreateStore(
1703 Constant::getNullValue(IRBPoison.getInt8Ty()),
1704 IRBPoison.CreateIntToPtr(SavedFlagPtr, IRBPoison.getInt8PtrTy()));
1705 } else {
1706 // For larger frames call __asan_stack_free_*.
Kostya Serebryany530e2072013-12-23 14:15:08 +00001707 IRBPoison.CreateCall3(AsanStackFreeFunc[StackMallocIdx], LocalStackBase,
1708 ConstantInt::get(IntptrTy, LocalStackSize),
1709 OrigStackBase);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001710 }
Kostya Serebryany530e2072013-12-23 14:15:08 +00001711
1712 IRBuilder<> IRBElse(ElseTerm);
1713 poisonRedZones(L.ShadowBytes, IRBElse, ShadowBase, false);
Alexey Samsonov261177a2012-12-04 01:34:23 +00001714 } else if (HavePoisonedAllocas) {
1715 // If we poisoned some allocas in llvm.lifetime analysis,
1716 // unpoison whole stack frame now.
1717 assert(LocalStackBase == OrigStackBase);
1718 poisonAlloca(LocalStackBase, LocalStackSize, IRBRet, false);
Kostya Serebryany530e2072013-12-23 14:15:08 +00001719 } else {
1720 poisonRedZones(L.ShadowBytes, IRBRet, ShadowBase, false);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001721 }
1722 }
1723
Kostya Serebryany09959942012-10-19 06:20:53 +00001724 // We are done. Remove the old unused alloca instructions.
1725 for (size_t i = 0, n = AllocaVec.size(); i < n; i++)
1726 AllocaVec[i]->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001727}
Alexey Samsonov261177a2012-12-04 01:34:23 +00001728
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001729void FunctionStackPoisoner::poisonAlloca(Value *V, uint64_t Size,
Jakub Staszak23ec6a92013-08-09 20:53:48 +00001730 IRBuilder<> &IRB, bool DoPoison) {
Alexey Samsonov261177a2012-12-04 01:34:23 +00001731 // For now just insert the call to ASan runtime.
1732 Value *AddrArg = IRB.CreatePointerCast(V, IntptrTy);
1733 Value *SizeArg = ConstantInt::get(IntptrTy, Size);
1734 IRB.CreateCall2(DoPoison ? AsanPoisonStackMemoryFunc
1735 : AsanUnpoisonStackMemoryFunc,
1736 AddrArg, SizeArg);
1737}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001738
1739// Handling llvm.lifetime intrinsics for a given %alloca:
1740// (1) collect all llvm.lifetime.xxx(%size, %value) describing the alloca.
1741// (2) if %size is constant, poison memory for llvm.lifetime.end (to detect
1742// invalid accesses) and unpoison it for llvm.lifetime.start (the memory
1743// could be poisoned by previous llvm.lifetime.end instruction, as the
1744// variable may go in and out of scope several times, e.g. in loops).
1745// (3) if we poisoned at least one %alloca in a function,
1746// unpoison the whole stack frame at function exit.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001747
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001748AllocaInst *FunctionStackPoisoner::findAllocaForValue(Value *V) {
1749 if (AllocaInst *AI = dyn_cast<AllocaInst>(V))
1750 // We're intested only in allocas we can handle.
Craig Topperf40110f2014-04-25 05:29:35 +00001751 return isInterestingAlloca(*AI) ? AI : nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001752 // See if we've already calculated (or started to calculate) alloca for a
1753 // given value.
1754 AllocaForValueMapTy::iterator I = AllocaForValue.find(V);
1755 if (I != AllocaForValue.end())
1756 return I->second;
1757 // Store 0 while we're calculating alloca for value V to avoid
1758 // infinite recursion if the value references itself.
Craig Topperf40110f2014-04-25 05:29:35 +00001759 AllocaForValue[V] = nullptr;
1760 AllocaInst *Res = nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001761 if (CastInst *CI = dyn_cast<CastInst>(V))
1762 Res = findAllocaForValue(CI->getOperand(0));
1763 else if (PHINode *PN = dyn_cast<PHINode>(V)) {
1764 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1765 Value *IncValue = PN->getIncomingValue(i);
1766 // Allow self-referencing phi-nodes.
1767 if (IncValue == PN) continue;
1768 AllocaInst *IncValueAI = findAllocaForValue(IncValue);
1769 // AI for incoming values should exist and should all be equal.
Craig Topperf40110f2014-04-25 05:29:35 +00001770 if (IncValueAI == nullptr || (Res != nullptr && IncValueAI != Res))
1771 return nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001772 Res = IncValueAI;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001773 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001774 }
Craig Topperf40110f2014-04-25 05:29:35 +00001775 if (Res)
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001776 AllocaForValue[V] = Res;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001777 return Res;
1778}