blob: 680c0ed9dedf57c981053f18197ae8c48fa890d6 [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
16#define DEBUG_TYPE "asan"
17
Chandler Carruthed0881b2012-12-03 16:50:05 +000018#include "llvm/Transforms/Instrumentation.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000019#include "llvm/ADT/ArrayRef.h"
Alexey Samsonov29dd7f22012-12-27 08:50:58 +000020#include "llvm/ADT/DenseMap.h"
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +000021#include "llvm/ADT/DepthFirstIterator.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000022#include "llvm/ADT/SmallSet.h"
23#include "llvm/ADT/SmallString.h"
24#include "llvm/ADT/SmallVector.h"
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +000025#include "llvm/ADT/Statistic.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000026#include "llvm/ADT/StringExtras.h"
Evgeniy Stepanov617232f2012-05-23 11:52:12 +000027#include "llvm/ADT/Triple.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000028#include "llvm/IR/CallSite.h"
Chandler Carruth12664a02014-03-06 00:22:06 +000029#include "llvm/IR/DIBuilder.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000030#include "llvm/IR/DataLayout.h"
31#include "llvm/IR/Function.h"
32#include "llvm/IR/IRBuilder.h"
33#include "llvm/IR/InlineAsm.h"
Chandler Carruth7da14f12014-03-06 03:23:41 +000034#include "llvm/IR/InstVisitor.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000035#include "llvm/IR/IntrinsicInst.h"
36#include "llvm/IR/LLVMContext.h"
Kostya Serebryany714c67c2014-01-17 11:00:30 +000037#include "llvm/IR/MDBuilder.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000038#include "llvm/IR/Module.h"
39#include "llvm/IR/Type.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000040#include "llvm/Support/CommandLine.h"
41#include "llvm/Support/DataTypes.h"
42#include "llvm/Support/Debug.h"
Kostya Serebryany9e62b302013-06-03 14:46:56 +000043#include "llvm/Support/Endian.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000044#include "llvm/Support/system_error.h"
Kostya Serebryany4fb78012013-12-06 09:00:17 +000045#include "llvm/Transforms/Utils/ASanStackFrameLayout.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000046#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Kostya Serebryany9f5213f2013-06-26 09:18:17 +000047#include "llvm/Transforms/Utils/Cloning.h"
Alexey Samsonov3d43b632012-12-12 14:31:53 +000048#include "llvm/Transforms/Utils/Local.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000049#include "llvm/Transforms/Utils/ModuleUtils.h"
Peter Collingbourne015370e2013-07-09 22:02:49 +000050#include "llvm/Transforms/Utils/SpecialCaseList.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000051#include <algorithm>
Chandler Carruthed0881b2012-12-03 16:50:05 +000052#include <string>
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000053
54using namespace llvm;
55
56static const uint64_t kDefaultShadowScale = 3;
57static const uint64_t kDefaultShadowOffset32 = 1ULL << 29;
58static const uint64_t kDefaultShadowOffset64 = 1ULL << 44;
Kostya Serebryanycc92c792014-02-24 13:40:24 +000059static const uint64_t kSmallX86_64ShadowOffset = 0x7FFF8000; // < 2G.
Kostya Serebryany4766fe62013-01-23 12:54:55 +000060static const uint64_t kPPC64_ShadowOffset64 = 1ULL << 41;
Kostya Serebryany9e62b302013-06-03 14:46:56 +000061static const uint64_t kMIPS32_ShadowOffset32 = 0x0aaa8000;
Kostya Serebryany8baa3862014-02-10 07:37:04 +000062static const uint64_t kFreeBSD_ShadowOffset32 = 1ULL << 30;
63static const uint64_t kFreeBSD_ShadowOffset64 = 1ULL << 46;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000064
Kostya Serebryany6805de52013-09-10 13:16:56 +000065static const size_t kMinStackMallocSize = 1 << 6; // 64B
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000066static const size_t kMaxStackMallocSize = 1 << 16; // 64K
67static const uintptr_t kCurrentStackFrameMagic = 0x41B58AB3;
68static const uintptr_t kRetiredStackFrameMagic = 0x45E0360E;
69
Craig Topperd3a34f82013-07-16 01:17:10 +000070static const char *const kAsanModuleCtorName = "asan.module_ctor";
71static const char *const kAsanModuleDtorName = "asan.module_dtor";
72static const int kAsanCtorAndCtorPriority = 1;
73static const char *const kAsanReportErrorTemplate = "__asan_report_";
74static const char *const kAsanReportLoadN = "__asan_report_load_n";
75static const char *const kAsanReportStoreN = "__asan_report_store_n";
76static const char *const kAsanRegisterGlobalsName = "__asan_register_globals";
Alexey Samsonovf52b7172013-08-05 13:19:49 +000077static const char *const kAsanUnregisterGlobalsName =
78 "__asan_unregister_globals";
Craig Topperd3a34f82013-07-16 01:17:10 +000079static const char *const kAsanPoisonGlobalsName = "__asan_before_dynamic_init";
80static const char *const kAsanUnpoisonGlobalsName = "__asan_after_dynamic_init";
81static const char *const kAsanInitName = "__asan_init_v3";
Bob Wilsonda4147c2013-11-15 07:16:09 +000082static const char *const kAsanCovName = "__sanitizer_cov";
Kostya Serebryany796f6552014-02-27 12:45:36 +000083static const char *const kAsanPtrCmp = "__sanitizer_ptr_cmp";
84static const char *const kAsanPtrSub = "__sanitizer_ptr_sub";
Craig Topperd3a34f82013-07-16 01:17:10 +000085static const char *const kAsanHandleNoReturnName = "__asan_handle_no_return";
Kostya Serebryany6805de52013-09-10 13:16:56 +000086static const int kMaxAsanStackMallocSizeClass = 10;
87static const char *const kAsanStackMallocNameTemplate = "__asan_stack_malloc_";
88static const char *const kAsanStackFreeNameTemplate = "__asan_stack_free_";
Craig Topperd3a34f82013-07-16 01:17:10 +000089static const char *const kAsanGenPrefix = "__asan_gen_";
90static const char *const kAsanPoisonStackMemoryName =
91 "__asan_poison_stack_memory";
92static const char *const kAsanUnpoisonStackMemoryName =
Alexey Samsonov261177a2012-12-04 01:34:23 +000093 "__asan_unpoison_stack_memory";
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000094
Kostya Serebryanyf3223822013-09-18 14:07:14 +000095static const char *const kAsanOptionDetectUAR =
96 "__asan_option_detect_stack_use_after_return";
97
David Blaikieeacc2872013-09-18 00:11:27 +000098#ifndef NDEBUG
Kostya Serebryanybc86efb2013-09-17 12:14:50 +000099static const int kAsanStackAfterReturnMagic = 0xf5;
David Blaikieeacc2872013-09-18 00:11:27 +0000100#endif
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000101
Kostya Serebryany874dae62012-07-16 16:15:40 +0000102// Accesses sizes are powers of two: 1, 2, 4, 8, 16.
103static const size_t kNumberOfAccessSizes = 5;
104
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000105// Command-line flags.
106
107// This flag may need to be replaced with -f[no-]asan-reads.
108static cl::opt<bool> ClInstrumentReads("asan-instrument-reads",
109 cl::desc("instrument read instructions"), cl::Hidden, cl::init(true));
110static cl::opt<bool> ClInstrumentWrites("asan-instrument-writes",
111 cl::desc("instrument write instructions"), cl::Hidden, cl::init(true));
Kostya Serebryany90241602012-05-30 09:04:06 +0000112static cl::opt<bool> ClInstrumentAtomics("asan-instrument-atomics",
113 cl::desc("instrument atomic instructions (rmw, cmpxchg)"),
114 cl::Hidden, cl::init(true));
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000115static cl::opt<bool> ClAlwaysSlowPath("asan-always-slow-path",
116 cl::desc("use instrumentation with slow path for all accesses"),
117 cl::Hidden, cl::init(false));
Kostya Serebryany874dae62012-07-16 16:15:40 +0000118// This flag limits the number of instructions to be instrumented
Kostya Serebryanyc387ca72012-06-28 09:34:41 +0000119// in any given BB. Normally, this should be set to unlimited (INT_MAX),
120// but due to http://llvm.org/bugs/show_bug.cgi?id=12652 we temporary
121// set it to 10000.
122static cl::opt<int> ClMaxInsnsToInstrumentPerBB("asan-max-ins-per-bb",
123 cl::init(10000),
124 cl::desc("maximal number of instructions to instrument in any given BB"),
125 cl::Hidden);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000126// This flag may need to be replaced with -f[no]asan-stack.
127static cl::opt<bool> ClStack("asan-stack",
128 cl::desc("Handle stack memory"), cl::Hidden, cl::init(true));
129// This flag may need to be replaced with -f[no]asan-use-after-return.
130static cl::opt<bool> ClUseAfterReturn("asan-use-after-return",
131 cl::desc("Check return-after-free"), cl::Hidden, cl::init(false));
132// This flag may need to be replaced with -f[no]asan-globals.
133static cl::opt<bool> ClGlobals("asan-globals",
134 cl::desc("Handle global objects"), cl::Hidden, cl::init(true));
Kostya Serebryany714c67c2014-01-17 11:00:30 +0000135static cl::opt<int> ClCoverage("asan-coverage",
136 cl::desc("ASan coverage. 0: none, 1: entry block, 2: all blocks"),
137 cl::Hidden, cl::init(false));
Kostya Serebryany22e88102014-04-18 08:02:42 +0000138static cl::opt<int> ClCoverageBlockThreshold("asan-coverage-block-threshold",
139 cl::desc("Add coverage instrumentation only to the entry block if there "
140 "are more than this number of blocks."),
141 cl::Hidden, cl::init(1500));
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000142static cl::opt<bool> ClInitializers("asan-initialization-order",
143 cl::desc("Handle C++ initializer order"), cl::Hidden, cl::init(false));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000144static cl::opt<bool> ClMemIntrin("asan-memintrin",
145 cl::desc("Handle memset/memcpy/memmove"), cl::Hidden, cl::init(true));
Kostya Serebryany796f6552014-02-27 12:45:36 +0000146static cl::opt<bool> ClInvalidPointerPairs("asan-detect-invalid-pointer-pair",
147 cl::desc("Instrument <, <=, >, >=, - with pointer operands"),
Kostya Serebryanyec346652014-02-27 12:56:20 +0000148 cl::Hidden, cl::init(false));
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000149static cl::opt<unsigned> ClRealignStack("asan-realign-stack",
150 cl::desc("Realign stack to the value of this flag (power of two)"),
151 cl::Hidden, cl::init(32));
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000152static cl::opt<std::string> ClBlacklistFile("asan-blacklist",
153 cl::desc("File containing the list of objects to ignore "
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000154 "during instrumentation"), cl::Hidden);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000155static cl::opt<int> ClInstrumentationWithCallsThreshold(
156 "asan-instrumentation-with-call-threshold",
157 cl::desc("If the function being instrumented contains more than "
158 "this number of memory accesses, use callbacks instead of "
159 "inline checks (-1 means never use callbacks)."),
160 cl::Hidden, cl::init(-1));
161static 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;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000255 // bool IsMacOSX = TargetTriple.getOS() == llvm::Triple::MacOSX;
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;
273 else
274 Mapping.Offset = kDefaultShadowOffset32;
275 } else { // LongSize == 64
276 if (IsPPC64)
277 Mapping.Offset = kPPC64_ShadowOffset64;
278 else if (IsFreeBSD)
279 Mapping.Offset = kFreeBSD_ShadowOffset64;
280 else if (IsLinux && IsX86_64)
281 Mapping.Offset = kSmallX86_64ShadowOffset;
282 else
283 Mapping.Offset = kDefaultShadowOffset64;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000284 }
285
286 Mapping.Scale = kDefaultShadowScale;
287 if (ClMappingScale) {
288 Mapping.Scale = ClMappingScale;
289 }
290
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000291 // OR-ing shadow offset if more efficient (at least on x86) if the offset
292 // is a power of two, but on ppc64 we have to use add since the shadow
293 // offset is not necessary 1/8-th of the address space.
294 Mapping.OrShadowOffset = !IsPPC64 && !(Mapping.Offset & (Mapping.Offset - 1));
295
Alexey Samsonov1345d352013-01-16 13:23:28 +0000296 return Mapping;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000297}
298
Alexey Samsonov1345d352013-01-16 13:23:28 +0000299static size_t RedzoneSizeForScale(int MappingScale) {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000300 // Redzone used for stack and globals is at least 32 bytes.
301 // For scales 6 and 7, the redzone has to be 64 and 128 bytes respectively.
Alexey Samsonov1345d352013-01-16 13:23:28 +0000302 return std::max(32U, 1U << MappingScale);
Kostya Serebryany20a79972012-11-22 03:18:50 +0000303}
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000304
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000305/// AddressSanitizer: instrument the code in module to find memory bugs.
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000306struct AddressSanitizer : public FunctionPass {
Alexey Samsonov819eddc2013-03-14 12:38:58 +0000307 AddressSanitizer(bool CheckInitOrder = true,
Alexey Samsonovdf624522012-11-29 18:14:24 +0000308 bool CheckUseAfterReturn = false,
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000309 bool CheckLifetime = false,
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000310 StringRef BlacklistFile = StringRef())
Alexey Samsonovdf624522012-11-29 18:14:24 +0000311 : FunctionPass(ID),
312 CheckInitOrder(CheckInitOrder || ClInitializers),
313 CheckUseAfterReturn(CheckUseAfterReturn || ClUseAfterReturn),
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000314 CheckLifetime(CheckLifetime || ClCheckLifetime),
315 BlacklistFile(BlacklistFile.empty() ? ClBlacklistFile
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000316 : BlacklistFile) {}
Craig Topper3e4c6972014-03-05 09:10:37 +0000317 const char *getPassName() const override {
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000318 return "AddressSanitizerFunctionPass";
319 }
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000320 void instrumentMop(Instruction *I, bool UseCalls);
Kostya Serebryany796f6552014-02-27 12:45:36 +0000321 void instrumentPointerComparisonOrSubtraction(Instruction *I);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000322 void instrumentAddress(Instruction *OrigIns, Instruction *InsertBefore,
323 Value *Addr, uint32_t TypeSize, bool IsWrite,
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000324 Value *SizeArgument, bool UseCalls);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000325 Value *createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
326 Value *ShadowValue, uint32_t TypeSize);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000327 Instruction *generateCrashCode(Instruction *InsertBefore, Value *Addr,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000328 bool IsWrite, size_t AccessSizeIndex,
329 Value *SizeArgument);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000330 bool instrumentMemIntrinsic(MemIntrinsic *MI, bool UseCalls);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000331 void instrumentMemIntrinsicParam(Instruction *OrigIns, Value *Addr,
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000332 Value *Size, Instruction *InsertBefore,
333 bool IsWrite, bool UseCalls);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000334 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB);
Craig Topper3e4c6972014-03-05 09:10:37 +0000335 bool runOnFunction(Function &F) override;
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +0000336 bool maybeInsertAsanInitAtFunctionEntry(Function &F);
Craig Topper3e4c6972014-03-05 09:10:37 +0000337 bool doInitialization(Module &M) override;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000338 static char ID; // Pass identification, replacement for typeid
339
340 private:
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000341 void initializeCallbacks(Module &M);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000342
Kostya Serebryany1cdc6e92011-11-18 01:41:06 +0000343 bool LooksLikeCodeInBug11395(Instruction *I);
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000344 bool GlobalIsLinkerInitialized(GlobalVariable *G);
Kostya Serebryany714c67c2014-01-17 11:00:30 +0000345 bool InjectCoverage(Function &F, const ArrayRef<BasicBlock*> AllBlocks);
346 void InjectCoverageAtBlock(Function &F, BasicBlock &BB);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000347
Alexey Samsonovdf624522012-11-29 18:14:24 +0000348 bool CheckInitOrder;
349 bool CheckUseAfterReturn;
350 bool CheckLifetime;
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000351 SmallString<64> BlacklistFile;
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000352
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000353 LLVMContext *C;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000354 const DataLayout *DL;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000355 int LongSize;
356 Type *IntptrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000357 ShadowMapping Mapping;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000358 Function *AsanCtorFunction;
359 Function *AsanInitFunction;
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000360 Function *AsanHandleNoReturnFunc;
Bob Wilsonda4147c2013-11-15 07:16:09 +0000361 Function *AsanCovFunction;
Kostya Serebryany796f6552014-02-27 12:45:36 +0000362 Function *AsanPtrCmpFunction, *AsanPtrSubFunction;
Ahmed Charles56440fd2014-03-06 05:51:42 +0000363 std::unique_ptr<SpecialCaseList> BL;
Kostya Serebryany4273bb02012-07-16 14:09:42 +0000364 // This array is indexed by AccessIsWrite and log2(AccessSize).
365 Function *AsanErrorCallback[2][kNumberOfAccessSizes];
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000366 Function *AsanMemoryAccessCallback[2][kNumberOfAccessSizes];
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000367 // This array is indexed by AccessIsWrite.
368 Function *AsanErrorCallbackSized[2];
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000369 InlineAsm *EmptyAsm;
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000370 SetOfDynamicallyInitializedGlobals DynamicallyInitializedGlobals;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000371
372 friend struct FunctionStackPoisoner;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000373};
Kostya Serebryany874dae62012-07-16 16:15:40 +0000374
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000375class AddressSanitizerModule : public ModulePass {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000376 public:
Alexey Samsonov819eddc2013-03-14 12:38:58 +0000377 AddressSanitizerModule(bool CheckInitOrder = true,
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000378 StringRef BlacklistFile = StringRef())
Alexey Samsonovdf624522012-11-29 18:14:24 +0000379 : ModulePass(ID),
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000380 CheckInitOrder(CheckInitOrder || ClInitializers),
381 BlacklistFile(BlacklistFile.empty() ? ClBlacklistFile
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000382 : BlacklistFile) {}
Craig Topper3e4c6972014-03-05 09:10:37 +0000383 bool runOnModule(Module &M) override;
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000384 static char ID; // Pass identification, replacement for typeid
Craig Topper3e4c6972014-03-05 09:10:37 +0000385 const char *getPassName() const override {
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000386 return "AddressSanitizerModule";
387 }
Alexey Samsonov261177a2012-12-04 01:34:23 +0000388
Kostya Serebryany20a79972012-11-22 03:18:50 +0000389 private:
Alexey Samsonov788381b2012-12-25 12:28:20 +0000390 void initializeCallbacks(Module &M);
391
Kostya Serebryany20a79972012-11-22 03:18:50 +0000392 bool ShouldInstrumentGlobal(GlobalVariable *G);
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000393 void createInitializerPoisonCalls(Module &M, GlobalValue *ModuleName);
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000394 size_t MinRedzoneSizeForGlobal() const {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000395 return RedzoneSizeForScale(Mapping.Scale);
396 }
Kostya Serebryany20a79972012-11-22 03:18:50 +0000397
Alexey Samsonovdf624522012-11-29 18:14:24 +0000398 bool CheckInitOrder;
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000399 SmallString<64> BlacklistFile;
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000400
Ahmed Charles56440fd2014-03-06 05:51:42 +0000401 std::unique_ptr<SpecialCaseList> BL;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000402 SetOfDynamicallyInitializedGlobals DynamicallyInitializedGlobals;
403 Type *IntptrTy;
404 LLVMContext *C;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000405 const DataLayout *DL;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000406 ShadowMapping Mapping;
Alexey Samsonov788381b2012-12-25 12:28:20 +0000407 Function *AsanPoisonGlobals;
408 Function *AsanUnpoisonGlobals;
409 Function *AsanRegisterGlobals;
410 Function *AsanUnregisterGlobals;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000411};
412
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000413// Stack poisoning does not play well with exception handling.
414// When an exception is thrown, we essentially bypass the code
415// that unpoisones the stack. This is why the run-time library has
416// to intercept __cxa_throw (as well as longjmp, etc) and unpoison the entire
417// stack in the interceptor. This however does not work inside the
418// actual function which catches the exception. Most likely because the
419// compiler hoists the load of the shadow value somewhere too high.
420// This causes asan to report a non-existing bug on 453.povray.
421// It sounds like an LLVM bug.
422struct FunctionStackPoisoner : public InstVisitor<FunctionStackPoisoner> {
423 Function &F;
424 AddressSanitizer &ASan;
425 DIBuilder DIB;
426 LLVMContext *C;
427 Type *IntptrTy;
428 Type *IntptrPtrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000429 ShadowMapping Mapping;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000430
431 SmallVector<AllocaInst*, 16> AllocaVec;
432 SmallVector<Instruction*, 8> RetVec;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000433 unsigned StackAlignment;
434
Kostya Serebryany6805de52013-09-10 13:16:56 +0000435 Function *AsanStackMallocFunc[kMaxAsanStackMallocSizeClass + 1],
436 *AsanStackFreeFunc[kMaxAsanStackMallocSizeClass + 1];
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000437 Function *AsanPoisonStackMemoryFunc, *AsanUnpoisonStackMemoryFunc;
438
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000439 // Stores a place and arguments of poisoning/unpoisoning call for alloca.
440 struct AllocaPoisonCall {
441 IntrinsicInst *InsBefore;
Alexey Samsonova788b942013-11-18 14:53:55 +0000442 AllocaInst *AI;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000443 uint64_t Size;
444 bool DoPoison;
445 };
446 SmallVector<AllocaPoisonCall, 8> AllocaPoisonCallVec;
447
448 // Maps Value to an AllocaInst from which the Value is originated.
449 typedef DenseMap<Value*, AllocaInst*> AllocaForValueMapTy;
450 AllocaForValueMapTy AllocaForValue;
451
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000452 FunctionStackPoisoner(Function &F, AddressSanitizer &ASan)
453 : F(F), ASan(ASan), DIB(*F.getParent()), C(ASan.C),
454 IntptrTy(ASan.IntptrTy), IntptrPtrTy(PointerType::get(IntptrTy, 0)),
Alexey Samsonov1345d352013-01-16 13:23:28 +0000455 Mapping(ASan.Mapping),
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000456 StackAlignment(1 << Mapping.Scale) {}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000457
458 bool runOnFunction() {
459 if (!ClStack) return false;
460 // Collect alloca, ret, lifetime instructions etc.
David Blaikieceec2bd2014-04-11 01:50:01 +0000461 for (BasicBlock *BB : depth_first(&F.getEntryBlock()))
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000462 visit(*BB);
David Blaikieceec2bd2014-04-11 01:50:01 +0000463
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000464 if (AllocaVec.empty()) return false;
465
466 initializeCallbacks(*F.getParent());
467
468 poisonStack();
469
470 if (ClDebugStack) {
471 DEBUG(dbgs() << F);
472 }
473 return true;
474 }
475
476 // Finds all static Alloca instructions and puts
477 // poisoned red zones around all of them.
478 // Then unpoison everything back before the function returns.
479 void poisonStack();
480
481 // ----------------------- Visitors.
482 /// \brief Collect all Ret instructions.
483 void visitReturnInst(ReturnInst &RI) {
484 RetVec.push_back(&RI);
485 }
486
487 /// \brief Collect Alloca instructions we want (and can) handle.
488 void visitAllocaInst(AllocaInst &AI) {
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000489 if (!isInterestingAlloca(AI)) return;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000490
491 StackAlignment = std::max(StackAlignment, AI.getAlignment());
492 AllocaVec.push_back(&AI);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000493 }
494
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000495 /// \brief Collect lifetime intrinsic calls to check for use-after-scope
496 /// errors.
497 void visitIntrinsicInst(IntrinsicInst &II) {
498 if (!ASan.CheckLifetime) return;
499 Intrinsic::ID ID = II.getIntrinsicID();
500 if (ID != Intrinsic::lifetime_start &&
501 ID != Intrinsic::lifetime_end)
502 return;
503 // Found lifetime intrinsic, add ASan instrumentation if necessary.
504 ConstantInt *Size = dyn_cast<ConstantInt>(II.getArgOperand(0));
505 // If size argument is undefined, don't do anything.
506 if (Size->isMinusOne()) return;
507 // Check that size doesn't saturate uint64_t and can
508 // be stored in IntptrTy.
509 const uint64_t SizeValue = Size->getValue().getLimitedValue();
510 if (SizeValue == ~0ULL ||
511 !ConstantInt::isValueValidForType(IntptrTy, SizeValue))
512 return;
513 // Find alloca instruction that corresponds to llvm.lifetime argument.
514 AllocaInst *AI = findAllocaForValue(II.getArgOperand(1));
515 if (!AI) return;
516 bool DoPoison = (ID == Intrinsic::lifetime_end);
Alexey Samsonova788b942013-11-18 14:53:55 +0000517 AllocaPoisonCall APC = {&II, AI, SizeValue, DoPoison};
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000518 AllocaPoisonCallVec.push_back(APC);
519 }
520
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000521 // ---------------------- Helpers.
522 void initializeCallbacks(Module &M);
523
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000524 // Check if we want (and can) handle this alloca.
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000525 bool isInterestingAlloca(AllocaInst &AI) const {
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000526 return (!AI.isArrayAllocation() && AI.isStaticAlloca() &&
527 AI.getAllocatedType()->isSized() &&
528 // alloca() may be called with 0 size, ignore it.
529 getAllocaSizeInBytes(&AI) > 0);
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000530 }
531
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000532 uint64_t getAllocaSizeInBytes(AllocaInst *AI) const {
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000533 Type *Ty = AI->getAllocatedType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000534 uint64_t SizeInBytes = ASan.DL->getTypeAllocSize(Ty);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000535 return SizeInBytes;
536 }
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000537 /// Finds alloca where the value comes from.
538 AllocaInst *findAllocaForValue(Value *V);
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000539 void poisonRedZones(const ArrayRef<uint8_t> ShadowBytes, IRBuilder<> &IRB,
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000540 Value *ShadowBase, bool DoPoison);
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000541 void poisonAlloca(Value *V, uint64_t Size, IRBuilder<> &IRB, bool DoPoison);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +0000542
543 void SetShadowToStackAfterReturnInlined(IRBuilder<> &IRB, Value *ShadowBase,
544 int Size);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000545};
546
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000547} // namespace
548
549char AddressSanitizer::ID = 0;
550INITIALIZE_PASS(AddressSanitizer, "asan",
551 "AddressSanitizer: detects use-after-free and out-of-bounds bugs.",
552 false, false)
Alexey Samsonovdf624522012-11-29 18:14:24 +0000553FunctionPass *llvm::createAddressSanitizerFunctionPass(
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000554 bool CheckInitOrder, bool CheckUseAfterReturn, bool CheckLifetime,
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000555 StringRef BlacklistFile) {
Alexey Samsonovdf624522012-11-29 18:14:24 +0000556 return new AddressSanitizer(CheckInitOrder, CheckUseAfterReturn,
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000557 CheckLifetime, BlacklistFile);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000558}
559
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000560char AddressSanitizerModule::ID = 0;
561INITIALIZE_PASS(AddressSanitizerModule, "asan-module",
562 "AddressSanitizer: detects use-after-free and out-of-bounds bugs."
563 "ModulePass", false, false)
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000564ModulePass *llvm::createAddressSanitizerModulePass(
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000565 bool CheckInitOrder, StringRef BlacklistFile) {
566 return new AddressSanitizerModule(CheckInitOrder, BlacklistFile);
Alexander Potapenkoc94cf8f2012-01-23 11:22:43 +0000567}
568
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000569static size_t TypeSizeToSizeIndex(uint32_t TypeSize) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000570 size_t Res = countTrailingZeros(TypeSize / 8);
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000571 assert(Res < kNumberOfAccessSizes);
572 return Res;
573}
574
Bill Wendling58f8cef2013-08-06 22:52:42 +0000575// \brief Create a constant for Str so that we can pass it to the run-time lib.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000576static GlobalVariable *createPrivateGlobalForString(
577 Module &M, StringRef Str, bool AllowMerging) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000578 Constant *StrConst = ConstantDataArray::getString(M.getContext(), Str);
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000579 // We use private linkage for module-local strings. If they can be merged
580 // with another one, we set the unnamed_addr attribute.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000581 GlobalVariable *GV =
582 new GlobalVariable(M, StrConst->getType(), true,
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000583 GlobalValue::PrivateLinkage, StrConst, kAsanGenPrefix);
584 if (AllowMerging)
585 GV->setUnnamedAddr(true);
Kostya Serebryany10cc12f2013-03-18 09:38:39 +0000586 GV->setAlignment(1); // Strings may not be merged w/o setting align 1.
587 return GV;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000588}
589
590static bool GlobalWasGeneratedByAsan(GlobalVariable *G) {
591 return G->getName().find(kAsanGenPrefix) == 0;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000592}
593
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000594Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) {
595 // Shadow >> scale
Alexey Samsonov1345d352013-01-16 13:23:28 +0000596 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale);
597 if (Mapping.Offset == 0)
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000598 return Shadow;
599 // (Shadow >> scale) | offset
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000600 if (Mapping.OrShadowOffset)
601 return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
602 else
603 return IRB.CreateAdd(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000604}
605
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000606void AddressSanitizer::instrumentMemIntrinsicParam(Instruction *OrigIns,
607 Value *Addr, Value *Size,
608 Instruction *InsertBefore,
609 bool IsWrite,
610 bool UseCalls) {
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000611 IRBuilder<> IRB(InsertBefore);
612 if (Size->getType() != IntptrTy)
613 Size = IRB.CreateIntCast(Size, IntptrTy, false);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000614 // Check the first byte.
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000615 instrumentAddress(OrigIns, InsertBefore, Addr, 8, IsWrite, Size, UseCalls);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000616 // Check the last byte.
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000617 IRB.SetInsertPoint(InsertBefore);
618 Value *SizeMinusOne = IRB.CreateSub(Size, ConstantInt::get(IntptrTy, 1));
619 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
620 Value *AddrLast = IRB.CreateAdd(AddrLong, SizeMinusOne);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000621 instrumentAddress(OrigIns, InsertBefore, AddrLast, 8, IsWrite, Size,
622 UseCalls);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000623}
624
625// Instrument memset/memmove/memcpy
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000626bool AddressSanitizer::instrumentMemIntrinsic(MemIntrinsic *MI, bool UseCalls) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000627 Value *Dst = MI->getDest();
628 MemTransferInst *MemTran = dyn_cast<MemTransferInst>(MI);
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000629 Value *Src = MemTran ? MemTran->getSource() : 0;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000630 Value *Length = MI->getLength();
631
632 Constant *ConstLength = dyn_cast<Constant>(Length);
633 Instruction *InsertBefore = MI;
634 if (ConstLength) {
635 if (ConstLength->isNullValue()) return false;
636 } else {
637 // The size is not a constant so it could be zero -- check at run-time.
638 IRBuilder<> IRB(InsertBefore);
639
640 Value *Cmp = IRB.CreateICmpNE(Length,
Kostya Serebryanyeeaf6882012-07-02 11:42:29 +0000641 Constant::getNullValue(Length->getType()));
Evgeniy Stepanova9164e92013-12-19 13:29:56 +0000642 InsertBefore = SplitBlockAndInsertIfThen(Cmp, InsertBefore, false);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000643 }
644
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000645 instrumentMemIntrinsicParam(MI, Dst, Length, InsertBefore, true, UseCalls);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000646 if (Src)
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000647 instrumentMemIntrinsicParam(MI, Src, Length, InsertBefore, false, UseCalls);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000648 return true;
649}
650
Kostya Serebryany90241602012-05-30 09:04:06 +0000651// If I is an interesting memory access, return the PointerOperand
652// and set IsWrite. Otherwise return NULL.
653static Value *isInterestingMemoryAccess(Instruction *I, bool *IsWrite) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000654 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Kostya Serebryany90241602012-05-30 09:04:06 +0000655 if (!ClInstrumentReads) return NULL;
656 *IsWrite = false;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000657 return LI->getPointerOperand();
658 }
Kostya Serebryany90241602012-05-30 09:04:06 +0000659 if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
660 if (!ClInstrumentWrites) return NULL;
661 *IsWrite = true;
662 return SI->getPointerOperand();
663 }
664 if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(I)) {
665 if (!ClInstrumentAtomics) return NULL;
666 *IsWrite = true;
667 return RMW->getPointerOperand();
668 }
669 if (AtomicCmpXchgInst *XCHG = dyn_cast<AtomicCmpXchgInst>(I)) {
670 if (!ClInstrumentAtomics) return NULL;
671 *IsWrite = true;
672 return XCHG->getPointerOperand();
673 }
674 return NULL;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000675}
676
Kostya Serebryany796f6552014-02-27 12:45:36 +0000677static bool isPointerOperand(Value *V) {
678 return V->getType()->isPointerTy() || isa<PtrToIntInst>(V);
679}
680
681// This is a rough heuristic; it may cause both false positives and
682// false negatives. The proper implementation requires cooperation with
683// the frontend.
684static bool isInterestingPointerComparisonOrSubtraction(Instruction *I) {
685 if (ICmpInst *Cmp = dyn_cast<ICmpInst>(I)) {
686 if (!Cmp->isRelational())
687 return false;
688 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) {
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +0000689 if (BO->getOpcode() != Instruction::Sub)
Kostya Serebryany796f6552014-02-27 12:45:36 +0000690 return false;
691 } else {
692 return false;
693 }
694 if (!isPointerOperand(I->getOperand(0)) ||
695 !isPointerOperand(I->getOperand(1)))
696 return false;
697 return true;
698}
699
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000700bool AddressSanitizer::GlobalIsLinkerInitialized(GlobalVariable *G) {
701 // If a global variable does not have dynamic initialization we don't
702 // have to instrument it. However, if a global does not have initializer
703 // at all, we assume it has dynamic initializer (in other TU).
704 return G->hasInitializer() && !DynamicallyInitializedGlobals.Contains(G);
705}
706
Kostya Serebryany796f6552014-02-27 12:45:36 +0000707void
708AddressSanitizer::instrumentPointerComparisonOrSubtraction(Instruction *I) {
709 IRBuilder<> IRB(I);
710 Function *F = isa<ICmpInst>(I) ? AsanPtrCmpFunction : AsanPtrSubFunction;
711 Value *Param[2] = {I->getOperand(0), I->getOperand(1)};
712 for (int i = 0; i < 2; i++) {
713 if (Param[i]->getType()->isPointerTy())
714 Param[i] = IRB.CreatePointerCast(Param[i], IntptrTy);
715 }
716 IRB.CreateCall2(F, Param[0], Param[1]);
717}
718
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000719void AddressSanitizer::instrumentMop(Instruction *I, bool UseCalls) {
Axel Naumann4a127062012-09-17 14:20:57 +0000720 bool IsWrite = false;
Kostya Serebryany90241602012-05-30 09:04:06 +0000721 Value *Addr = isInterestingMemoryAccess(I, &IsWrite);
722 assert(Addr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000723 if (ClOpt && ClOptGlobals) {
724 if (GlobalVariable *G = dyn_cast<GlobalVariable>(Addr)) {
725 // If initialization order checking is disabled, a simple access to a
726 // dynamically initialized global is always valid.
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000727 if (!CheckInitOrder || GlobalIsLinkerInitialized(G)) {
728 NumOptimizedAccessesToGlobalVar++;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000729 return;
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000730 }
731 }
732 ConstantExpr *CE = dyn_cast<ConstantExpr>(Addr);
733 if (CE && CE->isGEPWithNoNotionalOverIndexing()) {
734 if (GlobalVariable *G = dyn_cast<GlobalVariable>(CE->getOperand(0))) {
735 if (CE->getOperand(1)->isNullValue() && GlobalIsLinkerInitialized(G)) {
736 NumOptimizedAccessesToGlobalArray++;
737 return;
738 }
739 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000740 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000741 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000742
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000743 Type *OrigPtrTy = Addr->getType();
744 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType();
745
746 assert(OrigTy->isSized());
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000747 uint32_t TypeSize = DL->getTypeStoreSizeInBits(OrigTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000748
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000749 assert((TypeSize % 8) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000750
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000751 if (IsWrite)
752 NumInstrumentedWrites++;
753 else
754 NumInstrumentedReads++;
755
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000756 // Instrument a 1-, 2-, 4-, 8-, or 16- byte access with one check.
757 if (TypeSize == 8 || TypeSize == 16 ||
758 TypeSize == 32 || TypeSize == 64 || TypeSize == 128)
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000759 return instrumentAddress(I, I, Addr, TypeSize, IsWrite, 0, UseCalls);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000760 // Instrument unusual size (but still multiple of 8).
761 // We can not do it with a single check, so we do 1-byte check for the first
762 // and the last bytes. We call __asan_report_*_n(addr, real_size) to be able
763 // to report the actual access size.
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000764 IRBuilder<> IRB(I);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000765 Value *LastByte = IRB.CreateIntToPtr(
766 IRB.CreateAdd(IRB.CreatePointerCast(Addr, IntptrTy),
767 ConstantInt::get(IntptrTy, TypeSize / 8 - 1)),
768 OrigPtrTy);
769 Value *Size = ConstantInt::get(IntptrTy, TypeSize / 8);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000770 instrumentAddress(I, I, Addr, 8, IsWrite, Size, UseCalls);
771 instrumentAddress(I, I, LastByte, 8, IsWrite, Size, UseCalls);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000772}
773
Alexander Potapenko056e27e2012-04-23 10:47:31 +0000774// Validate the result of Module::getOrInsertFunction called for an interface
775// function of AddressSanitizer. If the instrumented module defines a function
776// with the same name, their prototypes must match, otherwise
777// getOrInsertFunction returns a bitcast.
Kostya Serebryany20a79972012-11-22 03:18:50 +0000778static Function *checkInterfaceFunction(Constant *FuncOrBitcast) {
Alexander Potapenko056e27e2012-04-23 10:47:31 +0000779 if (isa<Function>(FuncOrBitcast)) return cast<Function>(FuncOrBitcast);
780 FuncOrBitcast->dump();
781 report_fatal_error("trying to redefine an AddressSanitizer "
782 "interface function");
783}
784
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000785Instruction *AddressSanitizer::generateCrashCode(
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000786 Instruction *InsertBefore, Value *Addr,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000787 bool IsWrite, size_t AccessSizeIndex, Value *SizeArgument) {
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000788 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000789 CallInst *Call = SizeArgument
790 ? IRB.CreateCall2(AsanErrorCallbackSized[IsWrite], Addr, SizeArgument)
791 : IRB.CreateCall(AsanErrorCallback[IsWrite][AccessSizeIndex], Addr);
792
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000793 // We don't do Call->setDoesNotReturn() because the BB already has
794 // UnreachableInst at the end.
795 // This EmptyAsm is required to avoid callback merge.
796 IRB.CreateCall(EmptyAsm);
Kostya Serebryany3411f2e2012-01-06 18:09:21 +0000797 return Call;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000798}
799
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000800Value *AddressSanitizer::createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
Kostya Serebryany874dae62012-07-16 16:15:40 +0000801 Value *ShadowValue,
802 uint32_t TypeSize) {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000803 size_t Granularity = 1 << Mapping.Scale;
Kostya Serebryany874dae62012-07-16 16:15:40 +0000804 // Addr & (Granularity - 1)
805 Value *LastAccessedByte = IRB.CreateAnd(
806 AddrLong, ConstantInt::get(IntptrTy, Granularity - 1));
807 // (Addr & (Granularity - 1)) + size - 1
808 if (TypeSize / 8 > 1)
809 LastAccessedByte = IRB.CreateAdd(
810 LastAccessedByte, ConstantInt::get(IntptrTy, TypeSize / 8 - 1));
811 // (uint8_t) ((Addr & (Granularity-1)) + size - 1)
812 LastAccessedByte = IRB.CreateIntCast(
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000813 LastAccessedByte, ShadowValue->getType(), false);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000814 // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue
815 return IRB.CreateICmpSGE(LastAccessedByte, ShadowValue);
816}
817
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000818void AddressSanitizer::instrumentAddress(Instruction *OrigIns,
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000819 Instruction *InsertBefore, Value *Addr,
820 uint32_t TypeSize, bool IsWrite,
821 Value *SizeArgument, bool UseCalls) {
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000822 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000823 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000824 size_t AccessSizeIndex = TypeSizeToSizeIndex(TypeSize);
825
826 if (UseCalls) {
827 IRB.CreateCall(AsanMemoryAccessCallback[IsWrite][AccessSizeIndex],
828 AddrLong);
829 return;
830 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000831
832 Type *ShadowTy = IntegerType::get(
Alexey Samsonov1345d352013-01-16 13:23:28 +0000833 *C, std::max(8U, TypeSize >> Mapping.Scale));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000834 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0);
835 Value *ShadowPtr = memToShadow(AddrLong, IRB);
836 Value *CmpVal = Constant::getNullValue(ShadowTy);
837 Value *ShadowValue = IRB.CreateLoad(
838 IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy));
839
840 Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal);
Alexey Samsonov1345d352013-01-16 13:23:28 +0000841 size_t Granularity = 1 << Mapping.Scale;
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000842 TerminatorInst *CrashTerm = 0;
843
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000844 if (ClAlwaysSlowPath || (TypeSize < 8 * Granularity)) {
Evgeniy Stepanov8eb77d82012-10-19 10:48:31 +0000845 TerminatorInst *CheckTerm =
Evgeniy Stepanova9164e92013-12-19 13:29:56 +0000846 SplitBlockAndInsertIfThen(Cmp, InsertBefore, false);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000847 assert(dyn_cast<BranchInst>(CheckTerm)->isUnconditional());
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000848 BasicBlock *NextBB = CheckTerm->getSuccessor(0);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000849 IRB.SetInsertPoint(CheckTerm);
850 Value *Cmp2 = createSlowPathCmp(IRB, AddrLong, ShadowValue, TypeSize);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000851 BasicBlock *CrashBlock =
852 BasicBlock::Create(*C, "", NextBB->getParent(), NextBB);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000853 CrashTerm = new UnreachableInst(*C, CrashBlock);
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000854 BranchInst *NewTerm = BranchInst::Create(CrashBlock, NextBB, Cmp2);
855 ReplaceInstWithInst(CheckTerm, NewTerm);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000856 } else {
Evgeniy Stepanova9164e92013-12-19 13:29:56 +0000857 CrashTerm = SplitBlockAndInsertIfThen(Cmp, InsertBefore, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000858 }
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000859
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000860 Instruction *Crash = generateCrashCode(
861 CrashTerm, AddrLong, IsWrite, AccessSizeIndex, SizeArgument);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000862 Crash->setDebugLoc(OrigIns->getDebugLoc());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000863}
864
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000865void AddressSanitizerModule::createInitializerPoisonCalls(
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000866 Module &M, GlobalValue *ModuleName) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000867 // We do all of our poisoning and unpoisoning within _GLOBAL__I_a.
868 Function *GlobalInit = M.getFunction("_GLOBAL__I_a");
869 // If that function is not present, this TU contains no globals, or they have
870 // all been optimized away
871 if (!GlobalInit)
872 return;
873
874 // Set up the arguments to our poison/unpoison functions.
875 IRBuilder<> IRB(GlobalInit->begin()->getFirstInsertionPt());
876
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000877 // Add a call to poison all external globals before the given function starts.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000878 Value *ModuleNameAddr = ConstantExpr::getPointerCast(ModuleName, IntptrTy);
879 IRB.CreateCall(AsanPoisonGlobals, ModuleNameAddr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000880
881 // Add calls to unpoison all globals before each return instruction.
882 for (Function::iterator I = GlobalInit->begin(), E = GlobalInit->end();
883 I != E; ++I) {
884 if (ReturnInst *RI = dyn_cast<ReturnInst>(I->getTerminator())) {
885 CallInst::Create(AsanUnpoisonGlobals, "", RI);
886 }
887 }
888}
889
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000890bool AddressSanitizerModule::ShouldInstrumentGlobal(GlobalVariable *G) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000891 Type *Ty = cast<PointerType>(G->getType())->getElementType();
Kostya Serebryany20343352012-10-17 13:40:06 +0000892 DEBUG(dbgs() << "GLOBAL: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000893
Kostya Serebryany2fa38f82012-09-05 07:29:56 +0000894 if (BL->isIn(*G)) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000895 if (!Ty->isSized()) return false;
896 if (!G->hasInitializer()) return false;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000897 if (GlobalWasGeneratedByAsan(G)) return false; // Our own global.
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000898 // Touch only those globals that will not be defined in other modules.
899 // Don't handle ODR type linkages since other modules may be built w/o asan.
900 if (G->getLinkage() != GlobalVariable::ExternalLinkage &&
901 G->getLinkage() != GlobalVariable::PrivateLinkage &&
902 G->getLinkage() != GlobalVariable::InternalLinkage)
903 return false;
904 // Two problems with thread-locals:
905 // - The address of the main thread's copy can't be computed at link-time.
906 // - Need to poison all copies, not just the main thread's one.
907 if (G->isThreadLocal())
908 return false;
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000909 // For now, just ignore this Global if the alignment is large.
910 if (G->getAlignment() > MinRedzoneSizeForGlobal()) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000911
912 // Ignore all the globals with the names starting with "\01L_OBJC_".
913 // Many of those are put into the .cstring section. The linker compresses
914 // that section by removing the spare \0s after the string terminator, so
915 // our redzones get broken.
916 if ((G->getName().find("\01L_OBJC_") == 0) ||
917 (G->getName().find("\01l_OBJC_") == 0)) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000918 DEBUG(dbgs() << "Ignoring \\01L_OBJC_* global: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000919 return false;
920 }
921
922 if (G->hasSection()) {
923 StringRef Section(G->getSection());
924 // Ignore the globals from the __OBJC section. The ObjC runtime assumes
925 // those conform to /usr/lib/objc/runtime.h, so we can't add redzones to
926 // them.
927 if ((Section.find("__OBJC,") == 0) ||
928 (Section.find("__DATA, __objc_") == 0)) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000929 DEBUG(dbgs() << "Ignoring ObjC runtime global: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000930 return false;
931 }
932 // See http://code.google.com/p/address-sanitizer/issues/detail?id=32
933 // Constant CFString instances are compiled in the following way:
934 // -- the string buffer is emitted into
935 // __TEXT,__cstring,cstring_literals
936 // -- the constant NSConstantString structure referencing that buffer
937 // is placed into __DATA,__cfstring
938 // Therefore there's no point in placing redzones into __DATA,__cfstring.
939 // Moreover, it causes the linker to crash on OS X 10.7
940 if (Section.find("__DATA,__cfstring") == 0) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000941 DEBUG(dbgs() << "Ignoring CFString: " << *G << "\n");
942 return false;
943 }
944 // The linker merges the contents of cstring_literals and removes the
945 // trailing zeroes.
946 if (Section.find("__TEXT,__cstring,cstring_literals") == 0) {
947 DEBUG(dbgs() << "Ignoring a cstring literal: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000948 return false;
949 }
Alexander Potapenko04969e82014-03-20 10:48:34 +0000950 // Globals from llvm.metadata aren't emitted, do not instrument them.
951 if (Section == "llvm.metadata") return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000952 }
953
954 return true;
955}
956
Alexey Samsonov788381b2012-12-25 12:28:20 +0000957void AddressSanitizerModule::initializeCallbacks(Module &M) {
958 IRBuilder<> IRB(*C);
959 // Declare our poisoning and unpoisoning functions.
960 AsanPoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000961 kAsanPoisonGlobalsName, IRB.getVoidTy(), IntptrTy, NULL));
Alexey Samsonov788381b2012-12-25 12:28:20 +0000962 AsanPoisonGlobals->setLinkage(Function::ExternalLinkage);
963 AsanUnpoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
964 kAsanUnpoisonGlobalsName, IRB.getVoidTy(), NULL));
965 AsanUnpoisonGlobals->setLinkage(Function::ExternalLinkage);
966 // Declare functions that register/unregister globals.
967 AsanRegisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
968 kAsanRegisterGlobalsName, IRB.getVoidTy(),
969 IntptrTy, IntptrTy, NULL));
970 AsanRegisterGlobals->setLinkage(Function::ExternalLinkage);
971 AsanUnregisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
972 kAsanUnregisterGlobalsName,
973 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
974 AsanUnregisterGlobals->setLinkage(Function::ExternalLinkage);
975}
976
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000977// This function replaces all global variables with new variables that have
978// trailing redzones. It also creates a function that poisons
979// redzones and inserts this function into llvm.global_ctors.
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000980bool AddressSanitizerModule::runOnModule(Module &M) {
981 if (!ClGlobals) return false;
Rafael Espindola93512512014-02-25 17:30:31 +0000982
983 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
984 if (!DLP)
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000985 return false;
Rafael Espindola93512512014-02-25 17:30:31 +0000986 DL = &DLP->getDataLayout();
987
Alexey Samsonove4b5fb82013-08-12 11:46:09 +0000988 BL.reset(SpecialCaseList::createOrDie(BlacklistFile));
Alexey Samsonov9a956e82012-11-29 18:27:01 +0000989 if (BL->isIn(M)) return false;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000990 C = &(M.getContext());
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000991 int LongSize = DL->getPointerSizeInBits();
Alexey Samsonov1345d352013-01-16 13:23:28 +0000992 IntptrTy = Type::getIntNTy(*C, LongSize);
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000993 Mapping = getShadowMapping(M, LongSize);
Alexey Samsonov788381b2012-12-25 12:28:20 +0000994 initializeCallbacks(M);
995 DynamicallyInitializedGlobals.Init(M);
Kostya Serebryany20a79972012-11-22 03:18:50 +0000996
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000997 SmallVector<GlobalVariable *, 16> GlobalsToChange;
998
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000999 for (Module::GlobalListType::iterator G = M.global_begin(),
1000 E = M.global_end(); G != E; ++G) {
1001 if (ShouldInstrumentGlobal(G))
1002 GlobalsToChange.push_back(G);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001003 }
1004
1005 size_t n = GlobalsToChange.size();
1006 if (n == 0) return false;
1007
1008 // A global is described by a structure
1009 // size_t beg;
1010 // size_t size;
1011 // size_t size_with_redzone;
1012 // const char *name;
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001013 // const char *module_name;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001014 // size_t has_dynamic_init;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001015 // We initialize an array of such structures and pass it to a run-time call.
1016 StructType *GlobalStructTy = StructType::get(IntptrTy, IntptrTy,
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001017 IntptrTy, IntptrTy,
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001018 IntptrTy, IntptrTy, NULL);
Rafael Espindola44fee4e2013-10-01 13:32:03 +00001019 SmallVector<Constant *, 16> Initializers(n);
Kostya Serebryany20a79972012-11-22 03:18:50 +00001020
1021 Function *CtorFunc = M.getFunction(kAsanModuleCtorName);
1022 assert(CtorFunc);
1023 IRBuilder<> IRB(CtorFunc->getEntryBlock().getTerminator());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001024
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001025 bool HasDynamicallyInitializedGlobals = false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001026
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001027 // We shouldn't merge same module names, as this string serves as unique
1028 // module ID in runtime.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001029 GlobalVariable *ModuleName = createPrivateGlobalForString(
1030 M, M.getModuleIdentifier(), /*AllowMerging*/false);
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001031
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001032 for (size_t i = 0; i < n; i++) {
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001033 static const uint64_t kMaxGlobalRedzone = 1 << 18;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001034 GlobalVariable *G = GlobalsToChange[i];
1035 PointerType *PtrTy = cast<PointerType>(G->getType());
1036 Type *Ty = PtrTy->getElementType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001037 uint64_t SizeInBytes = DL->getTypeAllocSize(Ty);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001038 uint64_t MinRZ = MinRedzoneSizeForGlobal();
Kostya Serebryany87191f62013-01-24 10:35:40 +00001039 // MinRZ <= RZ <= kMaxGlobalRedzone
1040 // and trying to make RZ to be ~ 1/4 of SizeInBytes.
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001041 uint64_t RZ = std::max(MinRZ,
Kostya Serebryany87191f62013-01-24 10:35:40 +00001042 std::min(kMaxGlobalRedzone,
1043 (SizeInBytes / MinRZ / 4) * MinRZ));
1044 uint64_t RightRedzoneSize = RZ;
1045 // Round up to MinRZ
1046 if (SizeInBytes % MinRZ)
1047 RightRedzoneSize += MinRZ - (SizeInBytes % MinRZ);
1048 assert(((RightRedzoneSize + SizeInBytes) % MinRZ) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001049 Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001050 // Determine whether this global should be poisoned in initialization.
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +00001051 bool GlobalHasDynamicInitializer =
1052 DynamicallyInitializedGlobals.Contains(G);
Kostya Serebryany2fa38f82012-09-05 07:29:56 +00001053 // Don't check initialization order if this global is blacklisted.
Peter Collingbourne49062a92013-07-09 22:03:17 +00001054 GlobalHasDynamicInitializer &= !BL->isIn(*G, "init");
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001055
1056 StructType *NewTy = StructType::get(Ty, RightRedZoneTy, NULL);
1057 Constant *NewInitializer = ConstantStruct::get(
1058 NewTy, G->getInitializer(),
1059 Constant::getNullValue(RightRedZoneTy), NULL);
1060
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001061 GlobalVariable *Name =
1062 createPrivateGlobalForString(M, G->getName(), /*AllowMerging*/true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001063
1064 // Create a new global variable with enough space for a redzone.
Bill Wendling58f8cef2013-08-06 22:52:42 +00001065 GlobalValue::LinkageTypes Linkage = G->getLinkage();
1066 if (G->isConstant() && Linkage == GlobalValue::PrivateLinkage)
1067 Linkage = GlobalValue::InternalLinkage;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001068 GlobalVariable *NewGlobal = new GlobalVariable(
Bill Wendling58f8cef2013-08-06 22:52:42 +00001069 M, NewTy, G->isConstant(), Linkage,
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001070 NewInitializer, "", G, G->getThreadLocalMode());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001071 NewGlobal->copyAttributesFrom(G);
Kostya Serebryany87191f62013-01-24 10:35:40 +00001072 NewGlobal->setAlignment(MinRZ);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001073
1074 Value *Indices2[2];
1075 Indices2[0] = IRB.getInt32(0);
1076 Indices2[1] = IRB.getInt32(0);
1077
1078 G->replaceAllUsesWith(
Kostya Serebryany7471d132012-01-28 04:27:16 +00001079 ConstantExpr::getGetElementPtr(NewGlobal, Indices2, true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001080 NewGlobal->takeName(G);
1081 G->eraseFromParent();
1082
1083 Initializers[i] = ConstantStruct::get(
1084 GlobalStructTy,
1085 ConstantExpr::getPointerCast(NewGlobal, IntptrTy),
1086 ConstantInt::get(IntptrTy, SizeInBytes),
1087 ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize),
1088 ConstantExpr::getPointerCast(Name, IntptrTy),
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001089 ConstantExpr::getPointerCast(ModuleName, IntptrTy),
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001090 ConstantInt::get(IntptrTy, GlobalHasDynamicInitializer),
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001091 NULL);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001092
1093 // Populate the first and last globals declared in this TU.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001094 if (CheckInitOrder && GlobalHasDynamicInitializer)
1095 HasDynamicallyInitializedGlobals = true;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001096
Kostya Serebryany20343352012-10-17 13:40:06 +00001097 DEBUG(dbgs() << "NEW GLOBAL: " << *NewGlobal << "\n");
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001098 }
1099
1100 ArrayType *ArrayOfGlobalStructTy = ArrayType::get(GlobalStructTy, n);
1101 GlobalVariable *AllGlobals = new GlobalVariable(
Bill Wendling58f8cef2013-08-06 22:52:42 +00001102 M, ArrayOfGlobalStructTy, false, GlobalVariable::InternalLinkage,
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001103 ConstantArray::get(ArrayOfGlobalStructTy, Initializers), "");
1104
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001105 // Create calls for poisoning before initializers run and unpoisoning after.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001106 if (CheckInitOrder && HasDynamicallyInitializedGlobals)
1107 createInitializerPoisonCalls(M, ModuleName);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001108 IRB.CreateCall2(AsanRegisterGlobals,
1109 IRB.CreatePointerCast(AllGlobals, IntptrTy),
1110 ConstantInt::get(IntptrTy, n));
1111
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001112 // We also need to unregister globals at the end, e.g. when a shared library
1113 // gets closed.
1114 Function *AsanDtorFunction = Function::Create(
1115 FunctionType::get(Type::getVoidTy(*C), false),
1116 GlobalValue::InternalLinkage, kAsanModuleDtorName, &M);
1117 BasicBlock *AsanDtorBB = BasicBlock::Create(*C, "", AsanDtorFunction);
1118 IRBuilder<> IRB_Dtor(ReturnInst::Create(*C, AsanDtorBB));
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001119 IRB_Dtor.CreateCall2(AsanUnregisterGlobals,
1120 IRB.CreatePointerCast(AllGlobals, IntptrTy),
1121 ConstantInt::get(IntptrTy, n));
1122 appendToGlobalDtors(M, AsanDtorFunction, kAsanCtorAndCtorPriority);
1123
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001124 DEBUG(dbgs() << M);
1125 return true;
1126}
1127
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001128void AddressSanitizer::initializeCallbacks(Module &M) {
1129 IRBuilder<> IRB(*C);
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001130 // Create __asan_report* callbacks.
1131 for (size_t AccessIsWrite = 0; AccessIsWrite <= 1; AccessIsWrite++) {
1132 for (size_t AccessSizeIndex = 0; AccessSizeIndex < kNumberOfAccessSizes;
1133 AccessSizeIndex++) {
1134 // IsWrite and TypeSize are encoded in the function name.
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001135 std::string Suffix =
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001136 (AccessIsWrite ? "store" : "load") + itostr(1 << AccessSizeIndex);
Kostya Serebryany157a5152012-11-07 12:42:18 +00001137 AsanErrorCallback[AccessIsWrite][AccessSizeIndex] =
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001138 checkInterfaceFunction(
1139 M.getOrInsertFunction(kAsanReportErrorTemplate + Suffix,
1140 IRB.getVoidTy(), IntptrTy, NULL));
1141 AsanMemoryAccessCallback[AccessIsWrite][AccessSizeIndex] =
1142 checkInterfaceFunction(
1143 M.getOrInsertFunction(ClMemoryAccessCallbackPrefix + Suffix,
1144 IRB.getVoidTy(), IntptrTy, NULL));
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001145 }
1146 }
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +00001147 AsanErrorCallbackSized[0] = checkInterfaceFunction(M.getOrInsertFunction(
1148 kAsanReportLoadN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1149 AsanErrorCallbackSized[1] = checkInterfaceFunction(M.getOrInsertFunction(
1150 kAsanReportStoreN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001151
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001152 AsanHandleNoReturnFunc = checkInterfaceFunction(M.getOrInsertFunction(
1153 kAsanHandleNoReturnName, IRB.getVoidTy(), NULL));
Bob Wilsonda4147c2013-11-15 07:16:09 +00001154 AsanCovFunction = checkInterfaceFunction(M.getOrInsertFunction(
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001155 kAsanCovName, IRB.getVoidTy(), NULL));
Kostya Serebryany796f6552014-02-27 12:45:36 +00001156 AsanPtrCmpFunction = checkInterfaceFunction(M.getOrInsertFunction(
1157 kAsanPtrCmp, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1158 AsanPtrSubFunction = checkInterfaceFunction(M.getOrInsertFunction(
1159 kAsanPtrSub, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
Kostya Serebryanyf02c6062012-07-20 09:54:50 +00001160 // We insert an empty inline asm after __asan_report* to avoid callback merge.
1161 EmptyAsm = InlineAsm::get(FunctionType::get(IRB.getVoidTy(), false),
1162 StringRef(""), StringRef(""),
1163 /*hasSideEffects=*/true);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001164}
1165
1166// virtual
1167bool AddressSanitizer::doInitialization(Module &M) {
1168 // Initialize the private fields. No one has accessed them before.
Rafael Espindola93512512014-02-25 17:30:31 +00001169 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
1170 if (!DLP)
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001171 return false;
Rafael Espindola93512512014-02-25 17:30:31 +00001172 DL = &DLP->getDataLayout();
1173
Alexey Samsonove4b5fb82013-08-12 11:46:09 +00001174 BL.reset(SpecialCaseList::createOrDie(BlacklistFile));
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001175 DynamicallyInitializedGlobals.Init(M);
1176
1177 C = &(M.getContext());
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001178 LongSize = DL->getPointerSizeInBits();
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001179 IntptrTy = Type::getIntNTy(*C, LongSize);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001180
1181 AsanCtorFunction = Function::Create(
1182 FunctionType::get(Type::getVoidTy(*C), false),
1183 GlobalValue::InternalLinkage, kAsanModuleCtorName, &M);
1184 BasicBlock *AsanCtorBB = BasicBlock::Create(*C, "", AsanCtorFunction);
1185 // call __asan_init in the module ctor.
1186 IRBuilder<> IRB(ReturnInst::Create(*C, AsanCtorBB));
1187 AsanInitFunction = checkInterfaceFunction(
1188 M.getOrInsertFunction(kAsanInitName, IRB.getVoidTy(), NULL));
1189 AsanInitFunction->setLinkage(Function::ExternalLinkage);
1190 IRB.CreateCall(AsanInitFunction);
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001191
Evgeniy Stepanov13665362014-01-16 10:19:12 +00001192 Mapping = getShadowMapping(M, LongSize);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001193
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001194 appendToGlobalCtors(M, AsanCtorFunction, kAsanCtorAndCtorPriority);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001195 return true;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001196}
1197
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001198bool AddressSanitizer::maybeInsertAsanInitAtFunctionEntry(Function &F) {
1199 // For each NSObject descendant having a +load method, this method is invoked
1200 // by the ObjC runtime before any of the static constructors is called.
1201 // Therefore we need to instrument such methods with a call to __asan_init
1202 // at the beginning in order to initialize our runtime before any access to
1203 // the shadow memory.
1204 // We cannot just ignore these methods, because they may call other
1205 // instrumented functions.
1206 if (F.getName().find(" load]") != std::string::npos) {
1207 IRBuilder<> IRB(F.begin()->begin());
1208 IRB.CreateCall(AsanInitFunction);
1209 return true;
1210 }
1211 return false;
1212}
1213
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001214void AddressSanitizer::InjectCoverageAtBlock(Function &F, BasicBlock &BB) {
1215 BasicBlock::iterator IP = BB.getFirstInsertionPt(), BE = BB.end();
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001216 // Skip static allocas at the top of the entry block so they don't become
1217 // dynamic when we split the block. If we used our optimized stack layout,
1218 // then there will only be one alloca and it will come first.
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001219 for (; IP != BE; ++IP) {
1220 AllocaInst *AI = dyn_cast<AllocaInst>(IP);
1221 if (!AI || !AI->isStaticAlloca())
1222 break;
1223 }
1224
1225 IRBuilder<> IRB(IP);
Bob Wilsonda4147c2013-11-15 07:16:09 +00001226 Type *Int8Ty = IRB.getInt8Ty();
1227 GlobalVariable *Guard = new GlobalVariable(
Kostya Serebryany0604c622013-11-15 09:52:05 +00001228 *F.getParent(), Int8Ty, false, GlobalValue::PrivateLinkage,
Bob Wilsonda4147c2013-11-15 07:16:09 +00001229 Constant::getNullValue(Int8Ty), "__asan_gen_cov_" + F.getName());
1230 LoadInst *Load = IRB.CreateLoad(Guard);
1231 Load->setAtomic(Monotonic);
1232 Load->setAlignment(1);
1233 Value *Cmp = IRB.CreateICmpEQ(Constant::getNullValue(Int8Ty), Load);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001234 Instruction *Ins = SplitBlockAndInsertIfThen(
1235 Cmp, IP, false, MDBuilder(*C).createBranchWeights(1, 100000));
Bob Wilsonda4147c2013-11-15 07:16:09 +00001236 IRB.SetInsertPoint(Ins);
1237 // We pass &F to __sanitizer_cov. We could avoid this and rely on
1238 // GET_CALLER_PC, but having the PC of the first instruction is just nice.
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001239 Instruction *Call = IRB.CreateCall(AsanCovFunction);
1240 Call->setDebugLoc(IP->getDebugLoc());
Bob Wilsonda4147c2013-11-15 07:16:09 +00001241 StoreInst *Store = IRB.CreateStore(ConstantInt::get(Int8Ty, 1), Guard);
1242 Store->setAtomic(Monotonic);
1243 Store->setAlignment(1);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001244}
1245
1246// Poor man's coverage that works with ASan.
1247// We create a Guard boolean variable with the same linkage
1248// as the function and inject this code into the entry block (-asan-coverage=1)
1249// or all blocks (-asan-coverage=2):
1250// if (*Guard) {
1251// __sanitizer_cov(&F);
1252// *Guard = 1;
1253// }
1254// The accesses to Guard are atomic. The rest of the logic is
1255// in __sanitizer_cov (it's fine to call it more than once).
1256//
1257// This coverage implementation provides very limited data:
1258// it only tells if a given function (block) was ever executed.
1259// No counters, no per-edge data.
1260// But for many use cases this is what we need and the added slowdown
1261// is negligible. This simple implementation will probably be obsoleted
1262// by the upcoming Clang-based coverage implementation.
1263// By having it here and now we hope to
1264// a) get the functionality to users earlier and
1265// b) collect usage statistics to help improve Clang coverage design.
1266bool AddressSanitizer::InjectCoverage(Function &F,
1267 const ArrayRef<BasicBlock *> AllBlocks) {
1268 if (!ClCoverage) return false;
1269
Kostya Serebryany22e88102014-04-18 08:02:42 +00001270 if (ClCoverage == 1 ||
1271 (unsigned)ClCoverageBlockThreshold < AllBlocks.size()) {
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001272 InjectCoverageAtBlock(F, F.getEntryBlock());
1273 } else {
1274 for (size_t i = 0, n = AllBlocks.size(); i < n; i++)
1275 InjectCoverageAtBlock(F, *AllBlocks[i]);
1276 }
Bob Wilsonda4147c2013-11-15 07:16:09 +00001277 return true;
1278}
1279
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001280bool AddressSanitizer::runOnFunction(Function &F) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001281 if (BL->isIn(F)) return false;
1282 if (&F == AsanCtorFunction) return false;
Kostya Serebryany6b5b58d2013-03-18 07:33:49 +00001283 if (F.getLinkage() == GlobalValue::AvailableExternallyLinkage) return false;
Kostya Serebryany20343352012-10-17 13:40:06 +00001284 DEBUG(dbgs() << "ASAN instrumenting:\n" << F << "\n");
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001285 initializeCallbacks(*F.getParent());
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001286
Kostya Serebryanycf880b92013-02-26 06:58:09 +00001287 // If needed, insert __asan_init before checking for SanitizeAddress attr.
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001288 maybeInsertAsanInitAtFunctionEntry(F);
1289
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001290 if (!F.hasFnAttribute(Attribute::SanitizeAddress))
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001291 return false;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001292
1293 if (!ClDebugFunc.empty() && ClDebugFunc != F.getName())
1294 return false;
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001295
1296 // We want to instrument every address only once per basic block (unless there
1297 // are calls between uses).
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001298 SmallSet<Value*, 16> TempsToInstrument;
1299 SmallVector<Instruction*, 16> ToInstrument;
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001300 SmallVector<Instruction*, 8> NoReturnCalls;
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001301 SmallVector<BasicBlock*, 16> AllBlocks;
Kostya Serebryany796f6552014-02-27 12:45:36 +00001302 SmallVector<Instruction*, 16> PointerComparisonsOrSubtracts;
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001303 int NumAllocas = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +00001304 bool IsWrite;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001305
1306 // Fill the set of memory operations to instrument.
1307 for (Function::iterator FI = F.begin(), FE = F.end();
1308 FI != FE; ++FI) {
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001309 AllBlocks.push_back(FI);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001310 TempsToInstrument.clear();
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001311 int NumInsnsPerBB = 0;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001312 for (BasicBlock::iterator BI = FI->begin(), BE = FI->end();
1313 BI != BE; ++BI) {
Kostya Serebryany687d0782012-01-11 18:15:23 +00001314 if (LooksLikeCodeInBug11395(BI)) return false;
Kostya Serebryany90241602012-05-30 09:04:06 +00001315 if (Value *Addr = isInterestingMemoryAccess(BI, &IsWrite)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001316 if (ClOpt && ClOptSameTemp) {
1317 if (!TempsToInstrument.insert(Addr))
1318 continue; // We've seen this temp in the current BB.
1319 }
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +00001320 } else if (ClInvalidPointerPairs &&
Kostya Serebryany796f6552014-02-27 12:45:36 +00001321 isInterestingPointerComparisonOrSubtraction(BI)) {
1322 PointerComparisonsOrSubtracts.push_back(BI);
1323 continue;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001324 } else if (isa<MemIntrinsic>(BI) && ClMemIntrin) {
1325 // ok, take it.
1326 } else {
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001327 if (isa<AllocaInst>(BI))
1328 NumAllocas++;
Kostya Serebryany699ac282013-02-20 12:35:15 +00001329 CallSite CS(BI);
1330 if (CS) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001331 // A call inside BB.
1332 TempsToInstrument.clear();
Kostya Serebryany699ac282013-02-20 12:35:15 +00001333 if (CS.doesNotReturn())
1334 NoReturnCalls.push_back(CS.getInstruction());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001335 }
1336 continue;
1337 }
1338 ToInstrument.push_back(BI);
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001339 NumInsnsPerBB++;
1340 if (NumInsnsPerBB >= ClMaxInsnsToInstrumentPerBB)
1341 break;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001342 }
1343 }
1344
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001345 Function *UninstrumentedDuplicate = 0;
1346 bool LikelyToInstrument =
1347 !NoReturnCalls.empty() || !ToInstrument.empty() || (NumAllocas > 0);
1348 if (ClKeepUninstrumented && LikelyToInstrument) {
1349 ValueToValueMapTy VMap;
1350 UninstrumentedDuplicate = CloneFunction(&F, VMap, false);
1351 UninstrumentedDuplicate->removeFnAttr(Attribute::SanitizeAddress);
1352 UninstrumentedDuplicate->setName("NOASAN_" + F.getName());
1353 F.getParent()->getFunctionList().push_back(UninstrumentedDuplicate);
1354 }
1355
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001356 bool UseCalls = false;
1357 if (ClInstrumentationWithCallsThreshold >= 0 &&
1358 ToInstrument.size() > (unsigned)ClInstrumentationWithCallsThreshold)
1359 UseCalls = true;
1360
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001361 // Instrument.
1362 int NumInstrumented = 0;
1363 for (size_t i = 0, n = ToInstrument.size(); i != n; i++) {
1364 Instruction *Inst = ToInstrument[i];
1365 if (ClDebugMin < 0 || ClDebugMax < 0 ||
1366 (NumInstrumented >= ClDebugMin && NumInstrumented <= ClDebugMax)) {
Kostya Serebryany90241602012-05-30 09:04:06 +00001367 if (isInterestingMemoryAccess(Inst, &IsWrite))
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001368 instrumentMop(Inst, UseCalls);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001369 else
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001370 instrumentMemIntrinsic(cast<MemIntrinsic>(Inst), UseCalls);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001371 }
1372 NumInstrumented++;
1373 }
1374
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001375 FunctionStackPoisoner FSP(F, *this);
1376 bool ChangedStack = FSP.runOnFunction();
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001377
1378 // We must unpoison the stack before every NoReturn call (throw, _exit, etc).
1379 // See e.g. http://code.google.com/p/address-sanitizer/issues/detail?id=37
1380 for (size_t i = 0, n = NoReturnCalls.size(); i != n; i++) {
1381 Instruction *CI = NoReturnCalls[i];
1382 IRBuilder<> IRB(CI);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001383 IRB.CreateCall(AsanHandleNoReturnFunc);
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001384 }
1385
Kostya Serebryany796f6552014-02-27 12:45:36 +00001386 for (size_t i = 0, n = PointerComparisonsOrSubtracts.size(); i != n; i++) {
1387 instrumentPointerComparisonOrSubtraction(PointerComparisonsOrSubtracts[i]);
1388 NumInstrumented++;
1389 }
1390
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001391 bool res = NumInstrumented > 0 || ChangedStack || !NoReturnCalls.empty();
Bob Wilsonda4147c2013-11-15 07:16:09 +00001392
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001393 if (InjectCoverage(F, AllBlocks))
Bob Wilsonda4147c2013-11-15 07:16:09 +00001394 res = true;
1395
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001396 DEBUG(dbgs() << "ASAN done instrumenting: " << res << " " << F << "\n");
1397
1398 if (ClKeepUninstrumented) {
1399 if (!res) {
1400 // No instrumentation is done, no need for the duplicate.
1401 if (UninstrumentedDuplicate)
1402 UninstrumentedDuplicate->eraseFromParent();
1403 } else {
1404 // The function was instrumented. We must have the duplicate.
1405 assert(UninstrumentedDuplicate);
1406 UninstrumentedDuplicate->setSection("NOASAN");
1407 assert(!F.hasSection());
1408 F.setSection("ASAN");
1409 }
1410 }
1411
1412 return res;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001413}
1414
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001415// Workaround for bug 11395: we don't want to instrument stack in functions
1416// with large assembly blobs (32-bit only), otherwise reg alloc may crash.
1417// FIXME: remove once the bug 11395 is fixed.
1418bool AddressSanitizer::LooksLikeCodeInBug11395(Instruction *I) {
1419 if (LongSize != 32) return false;
1420 CallInst *CI = dyn_cast<CallInst>(I);
1421 if (!CI || !CI->isInlineAsm()) return false;
1422 if (CI->getNumArgOperands() <= 5) return false;
1423 // We have inline assembly with quite a few arguments.
1424 return true;
1425}
1426
1427void FunctionStackPoisoner::initializeCallbacks(Module &M) {
1428 IRBuilder<> IRB(*C);
Kostya Serebryany6805de52013-09-10 13:16:56 +00001429 for (int i = 0; i <= kMaxAsanStackMallocSizeClass; i++) {
1430 std::string Suffix = itostr(i);
1431 AsanStackMallocFunc[i] = checkInterfaceFunction(
1432 M.getOrInsertFunction(kAsanStackMallocNameTemplate + Suffix, IntptrTy,
1433 IntptrTy, IntptrTy, NULL));
1434 AsanStackFreeFunc[i] = checkInterfaceFunction(M.getOrInsertFunction(
1435 kAsanStackFreeNameTemplate + Suffix, IRB.getVoidTy(), IntptrTy,
1436 IntptrTy, IntptrTy, NULL));
1437 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001438 AsanPoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1439 kAsanPoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1440 AsanUnpoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1441 kAsanUnpoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1442}
1443
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001444void
1445FunctionStackPoisoner::poisonRedZones(const ArrayRef<uint8_t> ShadowBytes,
1446 IRBuilder<> &IRB, Value *ShadowBase,
1447 bool DoPoison) {
1448 size_t n = ShadowBytes.size();
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001449 size_t i = 0;
1450 // We need to (un)poison n bytes of stack shadow. Poison as many as we can
1451 // using 64-bit stores (if we are on 64-bit arch), then poison the rest
1452 // with 32-bit stores, then with 16-byte stores, then with 8-byte stores.
1453 for (size_t LargeStoreSizeInBytes = ASan.LongSize / 8;
1454 LargeStoreSizeInBytes != 0; LargeStoreSizeInBytes /= 2) {
1455 for (; i + LargeStoreSizeInBytes - 1 < n; i += LargeStoreSizeInBytes) {
1456 uint64_t Val = 0;
1457 for (size_t j = 0; j < LargeStoreSizeInBytes; j++) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001458 if (ASan.DL->isLittleEndian())
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001459 Val |= (uint64_t)ShadowBytes[i + j] << (8 * j);
1460 else
1461 Val = (Val << 8) | ShadowBytes[i + j];
1462 }
1463 if (!Val) continue;
1464 Value *Ptr = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1465 Type *StoreTy = Type::getIntNTy(*C, LargeStoreSizeInBytes * 8);
1466 Value *Poison = ConstantInt::get(StoreTy, DoPoison ? Val : 0);
1467 IRB.CreateStore(Poison, IRB.CreateIntToPtr(Ptr, StoreTy->getPointerTo()));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001468 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001469 }
1470}
1471
Kostya Serebryany6805de52013-09-10 13:16:56 +00001472// Fake stack allocator (asan_fake_stack.h) has 11 size classes
1473// for every power of 2 from kMinStackMallocSize to kMaxAsanStackMallocSizeClass
1474static int StackMallocSizeClass(uint64_t LocalStackSize) {
1475 assert(LocalStackSize <= kMaxStackMallocSize);
1476 uint64_t MaxSize = kMinStackMallocSize;
1477 for (int i = 0; ; i++, MaxSize *= 2)
1478 if (LocalStackSize <= MaxSize)
1479 return i;
1480 llvm_unreachable("impossible LocalStackSize");
1481}
1482
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001483// Set Size bytes starting from ShadowBase to kAsanStackAfterReturnMagic.
1484// We can not use MemSet intrinsic because it may end up calling the actual
1485// memset. Size is a multiple of 8.
1486// Currently this generates 8-byte stores on x86_64; it may be better to
1487// generate wider stores.
1488void FunctionStackPoisoner::SetShadowToStackAfterReturnInlined(
1489 IRBuilder<> &IRB, Value *ShadowBase, int Size) {
1490 assert(!(Size % 8));
1491 assert(kAsanStackAfterReturnMagic == 0xf5);
1492 for (int i = 0; i < Size; i += 8) {
1493 Value *p = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1494 IRB.CreateStore(ConstantInt::get(IRB.getInt64Ty(), 0xf5f5f5f5f5f5f5f5ULL),
1495 IRB.CreateIntToPtr(p, IRB.getInt64Ty()->getPointerTo()));
1496 }
1497}
1498
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001499void FunctionStackPoisoner::poisonStack() {
Kostya Serebryany6805de52013-09-10 13:16:56 +00001500 int StackMallocIdx = -1;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001501
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001502 assert(AllocaVec.size() > 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001503 Instruction *InsBefore = AllocaVec[0];
1504 IRBuilder<> IRB(InsBefore);
1505
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001506 SmallVector<ASanStackVariableDescription, 16> SVD;
1507 SVD.reserve(AllocaVec.size());
1508 for (size_t i = 0, n = AllocaVec.size(); i < n; i++) {
1509 AllocaInst *AI = AllocaVec[i];
1510 ASanStackVariableDescription D = { AI->getName().data(),
1511 getAllocaSizeInBytes(AI),
1512 AI->getAlignment(), AI, 0};
1513 SVD.push_back(D);
1514 }
1515 // Minimal header size (left redzone) is 4 pointers,
1516 // i.e. 32 bytes on 64-bit platforms and 16 bytes in 32-bit platforms.
1517 size_t MinHeaderSize = ASan.LongSize / 2;
1518 ASanStackFrameLayout L;
1519 ComputeASanStackFrameLayout(SVD, 1UL << Mapping.Scale, MinHeaderSize, &L);
1520 DEBUG(dbgs() << L.DescriptionString << " --- " << L.FrameSize << "\n");
1521 uint64_t LocalStackSize = L.FrameSize;
1522 bool DoStackMalloc =
1523 ASan.CheckUseAfterReturn && LocalStackSize <= kMaxStackMallocSize;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001524
1525 Type *ByteArrayTy = ArrayType::get(IRB.getInt8Ty(), LocalStackSize);
1526 AllocaInst *MyAlloca =
1527 new AllocaInst(ByteArrayTy, "MyAlloca", InsBefore);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001528 assert((ClRealignStack & (ClRealignStack - 1)) == 0);
1529 size_t FrameAlignment = std::max(L.FrameAlignment, (size_t)ClRealignStack);
1530 MyAlloca->setAlignment(FrameAlignment);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001531 assert(MyAlloca->isStaticAlloca());
1532 Value *OrigStackBase = IRB.CreatePointerCast(MyAlloca, IntptrTy);
1533 Value *LocalStackBase = OrigStackBase;
1534
1535 if (DoStackMalloc) {
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001536 // LocalStackBase = OrigStackBase
1537 // if (__asan_option_detect_stack_use_after_return)
1538 // LocalStackBase = __asan_stack_malloc_N(LocalStackBase, OrigStackBase);
Kostya Serebryany6805de52013-09-10 13:16:56 +00001539 StackMallocIdx = StackMallocSizeClass(LocalStackSize);
1540 assert(StackMallocIdx <= kMaxAsanStackMallocSizeClass);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001541 Constant *OptionDetectUAR = F.getParent()->getOrInsertGlobal(
1542 kAsanOptionDetectUAR, IRB.getInt32Ty());
1543 Value *Cmp = IRB.CreateICmpNE(IRB.CreateLoad(OptionDetectUAR),
1544 Constant::getNullValue(IRB.getInt32Ty()));
Evgeniy Stepanova9164e92013-12-19 13:29:56 +00001545 Instruction *Term = SplitBlockAndInsertIfThen(Cmp, InsBefore, false);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001546 BasicBlock *CmpBlock = cast<Instruction>(Cmp)->getParent();
1547 IRBuilder<> IRBIf(Term);
1548 LocalStackBase = IRBIf.CreateCall2(
1549 AsanStackMallocFunc[StackMallocIdx],
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001550 ConstantInt::get(IntptrTy, LocalStackSize), OrigStackBase);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001551 BasicBlock *SetBlock = cast<Instruction>(LocalStackBase)->getParent();
1552 IRB.SetInsertPoint(InsBefore);
1553 PHINode *Phi = IRB.CreatePHI(IntptrTy, 2);
1554 Phi->addIncoming(OrigStackBase, CmpBlock);
1555 Phi->addIncoming(LocalStackBase, SetBlock);
1556 LocalStackBase = Phi;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001557 }
1558
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001559 // Insert poison calls for lifetime intrinsics for alloca.
1560 bool HavePoisonedAllocas = false;
1561 for (size_t i = 0, n = AllocaPoisonCallVec.size(); i < n; i++) {
1562 const AllocaPoisonCall &APC = AllocaPoisonCallVec[i];
Alexey Samsonova788b942013-11-18 14:53:55 +00001563 assert(APC.InsBefore);
1564 assert(APC.AI);
1565 IRBuilder<> IRB(APC.InsBefore);
1566 poisonAlloca(APC.AI, APC.Size, IRB, APC.DoPoison);
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001567 HavePoisonedAllocas |= APC.DoPoison;
1568 }
1569
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001570 // Replace Alloca instructions with base+offset.
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001571 for (size_t i = 0, n = SVD.size(); i < n; i++) {
1572 AllocaInst *AI = SVD[i].AI;
Alexey Samsonov261177a2012-12-04 01:34:23 +00001573 Value *NewAllocaPtr = IRB.CreateIntToPtr(
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001574 IRB.CreateAdd(LocalStackBase,
1575 ConstantInt::get(IntptrTy, SVD[i].Offset)),
1576 AI->getType());
Alexey Samsonov3d43b632012-12-12 14:31:53 +00001577 replaceDbgDeclareForAlloca(AI, NewAllocaPtr, DIB);
Alexey Samsonov261177a2012-12-04 01:34:23 +00001578 AI->replaceAllUsesWith(NewAllocaPtr);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001579 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001580
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001581 // The left-most redzone has enough space for at least 4 pointers.
1582 // Write the Magic value to redzone[0].
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001583 Value *BasePlus0 = IRB.CreateIntToPtr(LocalStackBase, IntptrPtrTy);
1584 IRB.CreateStore(ConstantInt::get(IntptrTy, kCurrentStackFrameMagic),
1585 BasePlus0);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001586 // Write the frame description constant to redzone[1].
1587 Value *BasePlus1 = IRB.CreateIntToPtr(
1588 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, ASan.LongSize/8)),
1589 IntptrPtrTy);
Alexey Samsonov9bdb63a2012-11-02 12:20:34 +00001590 GlobalVariable *StackDescriptionGlobal =
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001591 createPrivateGlobalForString(*F.getParent(), L.DescriptionString,
1592 /*AllowMerging*/true);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001593 Value *Description = IRB.CreatePointerCast(StackDescriptionGlobal,
1594 IntptrTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001595 IRB.CreateStore(Description, BasePlus1);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001596 // Write the PC to redzone[2].
1597 Value *BasePlus2 = IRB.CreateIntToPtr(
1598 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy,
1599 2 * ASan.LongSize/8)),
1600 IntptrPtrTy);
1601 IRB.CreateStore(IRB.CreatePointerCast(&F, IntptrTy), BasePlus2);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001602
1603 // Poison the stack redzones at the entry.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001604 Value *ShadowBase = ASan.memToShadow(LocalStackBase, IRB);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001605 poisonRedZones(L.ShadowBytes, IRB, ShadowBase, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001606
Kostya Serebryany530e2072013-12-23 14:15:08 +00001607 // (Un)poison the stack before all ret instructions.
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001608 for (size_t i = 0, n = RetVec.size(); i < n; i++) {
1609 Instruction *Ret = RetVec[i];
1610 IRBuilder<> IRBRet(Ret);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001611 // Mark the current frame as retired.
1612 IRBRet.CreateStore(ConstantInt::get(IntptrTy, kRetiredStackFrameMagic),
1613 BasePlus0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001614 if (DoStackMalloc) {
Kostya Serebryany6805de52013-09-10 13:16:56 +00001615 assert(StackMallocIdx >= 0);
Kostya Serebryany530e2072013-12-23 14:15:08 +00001616 // if LocalStackBase != OrigStackBase:
1617 // // In use-after-return mode, poison the whole stack frame.
1618 // if StackMallocIdx <= 4
1619 // // For small sizes inline the whole thing:
1620 // memset(ShadowBase, kAsanStackAfterReturnMagic, ShadowSize);
1621 // **SavedFlagPtr(LocalStackBase) = 0
1622 // else
1623 // __asan_stack_free_N(LocalStackBase, OrigStackBase)
1624 // else
1625 // <This is not a fake stack; unpoison the redzones>
1626 Value *Cmp = IRBRet.CreateICmpNE(LocalStackBase, OrigStackBase);
1627 TerminatorInst *ThenTerm, *ElseTerm;
1628 SplitBlockAndInsertIfThenElse(Cmp, Ret, &ThenTerm, &ElseTerm);
1629
1630 IRBuilder<> IRBPoison(ThenTerm);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001631 if (StackMallocIdx <= 4) {
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001632 int ClassSize = kMinStackMallocSize << StackMallocIdx;
1633 SetShadowToStackAfterReturnInlined(IRBPoison, ShadowBase,
1634 ClassSize >> Mapping.Scale);
1635 Value *SavedFlagPtrPtr = IRBPoison.CreateAdd(
1636 LocalStackBase,
1637 ConstantInt::get(IntptrTy, ClassSize - ASan.LongSize / 8));
1638 Value *SavedFlagPtr = IRBPoison.CreateLoad(
1639 IRBPoison.CreateIntToPtr(SavedFlagPtrPtr, IntptrPtrTy));
1640 IRBPoison.CreateStore(
1641 Constant::getNullValue(IRBPoison.getInt8Ty()),
1642 IRBPoison.CreateIntToPtr(SavedFlagPtr, IRBPoison.getInt8PtrTy()));
1643 } else {
1644 // For larger frames call __asan_stack_free_*.
Kostya Serebryany530e2072013-12-23 14:15:08 +00001645 IRBPoison.CreateCall3(AsanStackFreeFunc[StackMallocIdx], LocalStackBase,
1646 ConstantInt::get(IntptrTy, LocalStackSize),
1647 OrigStackBase);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001648 }
Kostya Serebryany530e2072013-12-23 14:15:08 +00001649
1650 IRBuilder<> IRBElse(ElseTerm);
1651 poisonRedZones(L.ShadowBytes, IRBElse, ShadowBase, false);
Alexey Samsonov261177a2012-12-04 01:34:23 +00001652 } else if (HavePoisonedAllocas) {
1653 // If we poisoned some allocas in llvm.lifetime analysis,
1654 // unpoison whole stack frame now.
1655 assert(LocalStackBase == OrigStackBase);
1656 poisonAlloca(LocalStackBase, LocalStackSize, IRBRet, false);
Kostya Serebryany530e2072013-12-23 14:15:08 +00001657 } else {
1658 poisonRedZones(L.ShadowBytes, IRBRet, ShadowBase, false);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001659 }
1660 }
1661
Kostya Serebryany09959942012-10-19 06:20:53 +00001662 // We are done. Remove the old unused alloca instructions.
1663 for (size_t i = 0, n = AllocaVec.size(); i < n; i++)
1664 AllocaVec[i]->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001665}
Alexey Samsonov261177a2012-12-04 01:34:23 +00001666
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001667void FunctionStackPoisoner::poisonAlloca(Value *V, uint64_t Size,
Jakub Staszak23ec6a92013-08-09 20:53:48 +00001668 IRBuilder<> &IRB, bool DoPoison) {
Alexey Samsonov261177a2012-12-04 01:34:23 +00001669 // For now just insert the call to ASan runtime.
1670 Value *AddrArg = IRB.CreatePointerCast(V, IntptrTy);
1671 Value *SizeArg = ConstantInt::get(IntptrTy, Size);
1672 IRB.CreateCall2(DoPoison ? AsanPoisonStackMemoryFunc
1673 : AsanUnpoisonStackMemoryFunc,
1674 AddrArg, SizeArg);
1675}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001676
1677// Handling llvm.lifetime intrinsics for a given %alloca:
1678// (1) collect all llvm.lifetime.xxx(%size, %value) describing the alloca.
1679// (2) if %size is constant, poison memory for llvm.lifetime.end (to detect
1680// invalid accesses) and unpoison it for llvm.lifetime.start (the memory
1681// could be poisoned by previous llvm.lifetime.end instruction, as the
1682// variable may go in and out of scope several times, e.g. in loops).
1683// (3) if we poisoned at least one %alloca in a function,
1684// unpoison the whole stack frame at function exit.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001685
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001686AllocaInst *FunctionStackPoisoner::findAllocaForValue(Value *V) {
1687 if (AllocaInst *AI = dyn_cast<AllocaInst>(V))
1688 // We're intested only in allocas we can handle.
1689 return isInterestingAlloca(*AI) ? AI : 0;
1690 // See if we've already calculated (or started to calculate) alloca for a
1691 // given value.
1692 AllocaForValueMapTy::iterator I = AllocaForValue.find(V);
1693 if (I != AllocaForValue.end())
1694 return I->second;
1695 // Store 0 while we're calculating alloca for value V to avoid
1696 // infinite recursion if the value references itself.
1697 AllocaForValue[V] = 0;
1698 AllocaInst *Res = 0;
1699 if (CastInst *CI = dyn_cast<CastInst>(V))
1700 Res = findAllocaForValue(CI->getOperand(0));
1701 else if (PHINode *PN = dyn_cast<PHINode>(V)) {
1702 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1703 Value *IncValue = PN->getIncomingValue(i);
1704 // Allow self-referencing phi-nodes.
1705 if (IncValue == PN) continue;
1706 AllocaInst *IncValueAI = findAllocaForValue(IncValue);
1707 // AI for incoming values should exist and should all be equal.
1708 if (IncValueAI == 0 || (Res != 0 && IncValueAI != Res))
1709 return 0;
1710 Res = IncValueAI;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001711 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001712 }
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001713 if (Res != 0)
1714 AllocaForValue[V] = Res;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001715 return Res;
1716}