blob: d8c3f8eafb7e5eafdefe0f23998566fa0d6f4064 [file] [log] [blame]
Kostya Serebryany800e03f2011-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 Carruthd04a8d42012-12-03 16:50:05 +000018#include "llvm/Transforms/Instrumentation.h"
Kostya Serebryany800e03f2011-11-16 01:35:23 +000019#include "llvm/ADT/ArrayRef.h"
Alexey Samsonov1c8b8252012-12-27 08:50:58 +000020#include "llvm/ADT/DenseMap.h"
Alexey Samsonov59cca132012-12-25 12:04:36 +000021#include "llvm/ADT/DepthFirstIterator.h"
Kostya Serebryany800e03f2011-11-16 01:35:23 +000022#include "llvm/ADT/OwningPtr.h"
23#include "llvm/ADT/SmallSet.h"
24#include "llvm/ADT/SmallString.h"
25#include "llvm/ADT/SmallVector.h"
Kostya Serebryany3386d252013-10-16 14:06:14 +000026#include "llvm/ADT/Statistic.h"
Kostya Serebryany800e03f2011-11-16 01:35:23 +000027#include "llvm/ADT/StringExtras.h"
Evgeniy Stepanov06fdbaa2012-05-23 11:52:12 +000028#include "llvm/ADT/Triple.h"
Alexey Samsonov1afbb512012-12-12 14:31:53 +000029#include "llvm/DIBuilder.h"
Chandler Carruth0b8c9a82013-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"
34#include "llvm/IR/IntrinsicInst.h"
35#include "llvm/IR/LLVMContext.h"
36#include "llvm/IR/Module.h"
37#include "llvm/IR/Type.h"
Alexey Samsonov59cca132012-12-25 12:04:36 +000038#include "llvm/InstVisitor.h"
Kostya Serebryany1479c9b2013-02-20 12:35:15 +000039#include "llvm/Support/CallSite.h"
Kostya Serebryany800e03f2011-11-16 01:35:23 +000040#include "llvm/Support/CommandLine.h"
41#include "llvm/Support/DataTypes.h"
42#include "llvm/Support/Debug.h"
Kostya Serebryany3e1d45b2013-06-03 14:46:56 +000043#include "llvm/Support/Endian.h"
Kostya Serebryany800e03f2011-11-16 01:35:23 +000044#include "llvm/Support/raw_ostream.h"
45#include "llvm/Support/system_error.h"
Kostya Serebryany800e03f2011-11-16 01:35:23 +000046#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Kostya Serebryany20985712013-06-26 09:18:17 +000047#include "llvm/Transforms/Utils/Cloning.h"
Alexey Samsonov1afbb512012-12-12 14:31:53 +000048#include "llvm/Transforms/Utils/Local.h"
Kostya Serebryany800e03f2011-11-16 01:35:23 +000049#include "llvm/Transforms/Utils/ModuleUtils.h"
Peter Collingbourne405515d2013-07-09 22:02:49 +000050#include "llvm/Transforms/Utils/SpecialCaseList.h"
Kostya Serebryany800e03f2011-11-16 01:35:23 +000051#include <algorithm>
Chandler Carruthd04a8d42012-12-03 16:50:05 +000052#include <string>
Kostya Serebryany800e03f2011-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 Serebryany117de482013-02-11 14:36:01 +000059static const uint64_t kDefaultShort64bitShadowOffset = 0x7FFF8000; // < 2G.
Kostya Serebryany48a615f2013-01-23 12:54:55 +000060static const uint64_t kPPC64_ShadowOffset64 = 1ULL << 41;
Kostya Serebryany3e1d45b2013-06-03 14:46:56 +000061static const uint64_t kMIPS32_ShadowOffset32 = 0x0aaa8000;
Kostya Serebryany800e03f2011-11-16 01:35:23 +000062
Kostya Serebryanyf3d4b352013-09-10 13:16:56 +000063static const size_t kMinStackMallocSize = 1 << 6; // 64B
Kostya Serebryany800e03f2011-11-16 01:35:23 +000064static const size_t kMaxStackMallocSize = 1 << 16; // 64K
65static const uintptr_t kCurrentStackFrameMagic = 0x41B58AB3;
66static const uintptr_t kRetiredStackFrameMagic = 0x45E0360E;
67
Craig Topper4172a8a2013-07-16 01:17:10 +000068static const char *const kAsanModuleCtorName = "asan.module_ctor";
69static const char *const kAsanModuleDtorName = "asan.module_dtor";
70static const int kAsanCtorAndCtorPriority = 1;
71static const char *const kAsanReportErrorTemplate = "__asan_report_";
72static const char *const kAsanReportLoadN = "__asan_report_load_n";
73static const char *const kAsanReportStoreN = "__asan_report_store_n";
74static const char *const kAsanRegisterGlobalsName = "__asan_register_globals";
Alexey Samsonov48d7d1d2013-08-05 13:19:49 +000075static const char *const kAsanUnregisterGlobalsName =
76 "__asan_unregister_globals";
Craig Topper4172a8a2013-07-16 01:17:10 +000077static const char *const kAsanPoisonGlobalsName = "__asan_before_dynamic_init";
78static const char *const kAsanUnpoisonGlobalsName = "__asan_after_dynamic_init";
79static const char *const kAsanInitName = "__asan_init_v3";
Bob Wilson4b899142013-11-15 07:16:09 +000080static const char *const kAsanCovName = "__sanitizer_cov";
Craig Topper4172a8a2013-07-16 01:17:10 +000081static const char *const kAsanHandleNoReturnName = "__asan_handle_no_return";
82static const char *const kAsanMappingOffsetName = "__asan_mapping_offset";
83static const char *const kAsanMappingScaleName = "__asan_mapping_scale";
Kostya Serebryanyf3d4b352013-09-10 13:16:56 +000084static const int kMaxAsanStackMallocSizeClass = 10;
85static const char *const kAsanStackMallocNameTemplate = "__asan_stack_malloc_";
86static const char *const kAsanStackFreeNameTemplate = "__asan_stack_free_";
Craig Topper4172a8a2013-07-16 01:17:10 +000087static const char *const kAsanGenPrefix = "__asan_gen_";
88static const char *const kAsanPoisonStackMemoryName =
89 "__asan_poison_stack_memory";
90static const char *const kAsanUnpoisonStackMemoryName =
Alexey Samsonovf985f442012-12-04 01:34:23 +000091 "__asan_unpoison_stack_memory";
Kostya Serebryany800e03f2011-11-16 01:35:23 +000092
Kostya Serebryanyac04aba2013-09-18 14:07:14 +000093static const char *const kAsanOptionDetectUAR =
94 "__asan_option_detect_stack_use_after_return";
95
Kostya Serebryany671c3ba2013-09-17 12:14:50 +000096// These constants must match the definitions in the run-time library.
Kostya Serebryany800e03f2011-11-16 01:35:23 +000097static const int kAsanStackLeftRedzoneMagic = 0xf1;
98static const int kAsanStackMidRedzoneMagic = 0xf2;
99static const int kAsanStackRightRedzoneMagic = 0xf3;
100static const int kAsanStackPartialRedzoneMagic = 0xf4;
David Blaikie0b956502013-09-18 00:11:27 +0000101#ifndef NDEBUG
Kostya Serebryany671c3ba2013-09-17 12:14:50 +0000102static const int kAsanStackAfterReturnMagic = 0xf5;
David Blaikie0b956502013-09-18 00:11:27 +0000103#endif
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000104
Kostya Serebryanyc0ed3e52012-07-16 16:15:40 +0000105// Accesses sizes are powers of two: 1, 2, 4, 8, 16.
106static const size_t kNumberOfAccessSizes = 5;
107
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000108// Command-line flags.
109
110// This flag may need to be replaced with -f[no-]asan-reads.
111static cl::opt<bool> ClInstrumentReads("asan-instrument-reads",
112 cl::desc("instrument read instructions"), cl::Hidden, cl::init(true));
113static cl::opt<bool> ClInstrumentWrites("asan-instrument-writes",
114 cl::desc("instrument write instructions"), cl::Hidden, cl::init(true));
Kostya Serebryanye6cf2e02012-05-30 09:04:06 +0000115static cl::opt<bool> ClInstrumentAtomics("asan-instrument-atomics",
116 cl::desc("instrument atomic instructions (rmw, cmpxchg)"),
117 cl::Hidden, cl::init(true));
Kostya Serebryany6e2d5062012-08-15 08:58:58 +0000118static cl::opt<bool> ClAlwaysSlowPath("asan-always-slow-path",
119 cl::desc("use instrumentation with slow path for all accesses"),
120 cl::Hidden, cl::init(false));
Kostya Serebryanyc0ed3e52012-07-16 16:15:40 +0000121// This flag limits the number of instructions to be instrumented
Kostya Serebryany324cbb82012-06-28 09:34:41 +0000122// in any given BB. Normally, this should be set to unlimited (INT_MAX),
123// but due to http://llvm.org/bugs/show_bug.cgi?id=12652 we temporary
124// set it to 10000.
125static cl::opt<int> ClMaxInsnsToInstrumentPerBB("asan-max-ins-per-bb",
126 cl::init(10000),
127 cl::desc("maximal number of instructions to instrument in any given BB"),
128 cl::Hidden);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000129// This flag may need to be replaced with -f[no]asan-stack.
130static cl::opt<bool> ClStack("asan-stack",
131 cl::desc("Handle stack memory"), cl::Hidden, cl::init(true));
132// This flag may need to be replaced with -f[no]asan-use-after-return.
133static cl::opt<bool> ClUseAfterReturn("asan-use-after-return",
134 cl::desc("Check return-after-free"), cl::Hidden, cl::init(false));
135// This flag may need to be replaced with -f[no]asan-globals.
136static cl::opt<bool> ClGlobals("asan-globals",
137 cl::desc("Handle global objects"), cl::Hidden, cl::init(true));
Bob Wilson4b899142013-11-15 07:16:09 +0000138static cl::opt<bool> ClCoverage("asan-coverage",
139 cl::desc("ASan coverage"), cl::Hidden, cl::init(false));
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000140static cl::opt<bool> ClInitializers("asan-initialization-order",
141 cl::desc("Handle C++ initializer order"), cl::Hidden, cl::init(false));
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000142static cl::opt<bool> ClMemIntrin("asan-memintrin",
143 cl::desc("Handle memset/memcpy/memmove"), cl::Hidden, cl::init(true));
Kostya Serebryany6c554122012-12-04 06:14:01 +0000144static cl::opt<bool> ClRealignStack("asan-realign-stack",
145 cl::desc("Realign stack to 32"), cl::Hidden, cl::init(true));
Alexey Samsonovb0dcf612012-12-03 19:09:26 +0000146static cl::opt<std::string> ClBlacklistFile("asan-blacklist",
147 cl::desc("File containing the list of objects to ignore "
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000148 "during instrumentation"), cl::Hidden);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000149
Kostya Serebryany20985712013-06-26 09:18:17 +0000150// This is an experimental feature that will allow to choose between
151// instrumented and non-instrumented code at link-time.
152// If this option is on, just before instrumenting a function we create its
153// clone; if the function is not changed by asan the clone is deleted.
154// If we end up with a clone, we put the instrumented function into a section
155// called "ASAN" and the uninstrumented function into a section called "NOASAN".
156//
157// This is still a prototype, we need to figure out a way to keep two copies of
158// a function so that the linker can easily choose one of them.
159static cl::opt<bool> ClKeepUninstrumented("asan-keep-uninstrumented-functions",
160 cl::desc("Keep uninstrumented copies of functions"),
161 cl::Hidden, cl::init(false));
162
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000163// These flags allow to change the shadow mapping.
164// The shadow mapping looks like
165// Shadow = (Mem >> scale) + (1 << offset_log)
166static cl::opt<int> ClMappingScale("asan-mapping-scale",
167 cl::desc("scale of asan shadow mapping"), cl::Hidden, cl::init(0));
168static cl::opt<int> ClMappingOffsetLog("asan-mapping-offset-log",
169 cl::desc("offset of asan shadow mapping"), cl::Hidden, cl::init(-1));
Kostya Serebryany117de482013-02-11 14:36:01 +0000170static cl::opt<bool> ClShort64BitOffset("asan-short-64bit-mapping-offset",
171 cl::desc("Use short immediate constant as the mapping offset for 64bit"),
Kostya Serebryany0bc55d52013-02-12 11:11:02 +0000172 cl::Hidden, cl::init(true));
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000173
174// Optimization flags. Not user visible, used mostly for testing
175// and benchmarking the tool.
176static cl::opt<bool> ClOpt("asan-opt",
177 cl::desc("Optimize instrumentation"), cl::Hidden, cl::init(true));
178static cl::opt<bool> ClOptSameTemp("asan-opt-same-temp",
179 cl::desc("Instrument the same temp just once"), cl::Hidden,
180 cl::init(true));
181static cl::opt<bool> ClOptGlobals("asan-opt-globals",
182 cl::desc("Don't instrument scalar globals"), cl::Hidden, cl::init(true));
183
Alexey Samsonovee548272012-11-29 18:14:24 +0000184static cl::opt<bool> ClCheckLifetime("asan-check-lifetime",
185 cl::desc("Use llvm.lifetime intrinsics to insert extra checks"),
186 cl::Hidden, cl::init(false));
187
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000188// Debug flags.
189static cl::opt<int> ClDebug("asan-debug", cl::desc("debug"), cl::Hidden,
190 cl::init(0));
191static cl::opt<int> ClDebugStack("asan-debug-stack", cl::desc("debug stack"),
192 cl::Hidden, cl::init(0));
193static cl::opt<std::string> ClDebugFunc("asan-debug-func",
194 cl::Hidden, cl::desc("Debug func"));
195static cl::opt<int> ClDebugMin("asan-debug-min", cl::desc("Debug min inst"),
196 cl::Hidden, cl::init(-1));
197static cl::opt<int> ClDebugMax("asan-debug-max", cl::desc("Debug man inst"),
198 cl::Hidden, cl::init(-1));
199
Kostya Serebryany3386d252013-10-16 14:06:14 +0000200STATISTIC(NumInstrumentedReads, "Number of instrumented reads");
201STATISTIC(NumInstrumentedWrites, "Number of instrumented writes");
202STATISTIC(NumOptimizedAccessesToGlobalArray,
203 "Number of optimized accesses to global arrays");
204STATISTIC(NumOptimizedAccessesToGlobalVar,
205 "Number of optimized accesses to global vars");
206
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000207namespace {
Kostya Serebryanyca23d432012-11-20 13:00:01 +0000208/// A set of dynamically initialized globals extracted from metadata.
209class SetOfDynamicallyInitializedGlobals {
210 public:
211 void Init(Module& M) {
212 // Clang generates metadata identifying all dynamically initialized globals.
213 NamedMDNode *DynamicGlobals =
214 M.getNamedMetadata("llvm.asan.dynamically_initialized_globals");
215 if (!DynamicGlobals)
216 return;
217 for (int i = 0, n = DynamicGlobals->getNumOperands(); i < n; ++i) {
218 MDNode *MDN = DynamicGlobals->getOperand(i);
219 assert(MDN->getNumOperands() == 1);
220 Value *VG = MDN->getOperand(0);
221 // The optimizer may optimize away a global entirely, in which case we
222 // cannot instrument access to it.
223 if (!VG)
224 continue;
225 DynInitGlobals.insert(cast<GlobalVariable>(VG));
226 }
227 }
228 bool Contains(GlobalVariable *G) { return DynInitGlobals.count(G) != 0; }
229 private:
230 SmallSet<GlobalValue*, 32> DynInitGlobals;
231};
232
Alexey Samsonov19cd7e92013-01-16 13:23:28 +0000233/// This struct defines the shadow mapping using the rule:
Kostya Serebryany48a615f2013-01-23 12:54:55 +0000234/// shadow = (mem >> Scale) ADD-or-OR Offset.
Alexey Samsonov19cd7e92013-01-16 13:23:28 +0000235struct ShadowMapping {
236 int Scale;
237 uint64_t Offset;
Kostya Serebryany48a615f2013-01-23 12:54:55 +0000238 bool OrShadowOffset;
Alexey Samsonov19cd7e92013-01-16 13:23:28 +0000239};
240
Alexey Samsonov11af9a82013-01-17 11:12:32 +0000241static ShadowMapping getShadowMapping(const Module &M, int LongSize,
242 bool ZeroBaseShadow) {
243 llvm::Triple TargetTriple(M.getTargetTriple());
244 bool IsAndroid = TargetTriple.getEnvironment() == llvm::Triple::Android;
Alexander Potapenkoc8a196a2013-02-12 12:41:12 +0000245 bool IsMacOSX = TargetTriple.getOS() == llvm::Triple::MacOSX;
Bill Schmidtf38cc382013-07-26 01:35:43 +0000246 bool IsPPC64 = TargetTriple.getArch() == llvm::Triple::ppc64 ||
247 TargetTriple.getArch() == llvm::Triple::ppc64le;
Kostya Serebryany0bc55d52013-02-12 11:11:02 +0000248 bool IsX86_64 = TargetTriple.getArch() == llvm::Triple::x86_64;
Kostya Serebryany3e1d45b2013-06-03 14:46:56 +0000249 bool IsMIPS32 = TargetTriple.getArch() == llvm::Triple::mips ||
250 TargetTriple.getArch() == llvm::Triple::mipsel;
Alexey Samsonov19cd7e92013-01-16 13:23:28 +0000251
252 ShadowMapping Mapping;
253
Kostya Serebryany48a615f2013-01-23 12:54:55 +0000254 // OR-ing shadow offset if more efficient (at least on x86),
255 // but on ppc64 we have to use add since the shadow offset is not neccesary
256 // 1/8-th of the address space.
Kostya Serebryany117de482013-02-11 14:36:01 +0000257 Mapping.OrShadowOffset = !IsPPC64 && !ClShort64BitOffset;
Kostya Serebryany48a615f2013-01-23 12:54:55 +0000258
Alexey Samsonov11af9a82013-01-17 11:12:32 +0000259 Mapping.Offset = (IsAndroid || ZeroBaseShadow) ? 0 :
Kostya Serebryany3e1d45b2013-06-03 14:46:56 +0000260 (LongSize == 32 ?
261 (IsMIPS32 ? kMIPS32_ShadowOffset32 : kDefaultShadowOffset32) :
Kostya Serebryany48a615f2013-01-23 12:54:55 +0000262 IsPPC64 ? kPPC64_ShadowOffset64 : kDefaultShadowOffset64);
Alexander Potapenkoc8a196a2013-02-12 12:41:12 +0000263 if (!ZeroBaseShadow && ClShort64BitOffset && IsX86_64 && !IsMacOSX) {
Kostya Serebryany0bc55d52013-02-12 11:11:02 +0000264 assert(LongSize == 64);
Kostya Serebryany117de482013-02-11 14:36:01 +0000265 Mapping.Offset = kDefaultShort64bitShadowOffset;
Kostya Serebryany39f02942013-02-13 05:14:12 +0000266 }
267 if (!ZeroBaseShadow && ClMappingOffsetLog >= 0) {
Alexey Samsonov19cd7e92013-01-16 13:23:28 +0000268 // Zero offset log is the special case.
269 Mapping.Offset = (ClMappingOffsetLog == 0) ? 0 : 1ULL << ClMappingOffsetLog;
270 }
271
272 Mapping.Scale = kDefaultShadowScale;
273 if (ClMappingScale) {
274 Mapping.Scale = ClMappingScale;
275 }
276
277 return Mapping;
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +0000278}
279
Alexey Samsonov19cd7e92013-01-16 13:23:28 +0000280static size_t RedzoneSizeForScale(int MappingScale) {
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +0000281 // Redzone used for stack and globals is at least 32 bytes.
282 // For scales 6 and 7, the redzone has to be 64 and 128 bytes respectively.
Alexey Samsonov19cd7e92013-01-16 13:23:28 +0000283 return std::max(32U, 1U << MappingScale);
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +0000284}
Kostya Serebryanyca23d432012-11-20 13:00:01 +0000285
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000286/// AddressSanitizer: instrument the code in module to find memory bugs.
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000287struct AddressSanitizer : public FunctionPass {
Alexey Samsonovb4ba5e62013-03-14 12:38:58 +0000288 AddressSanitizer(bool CheckInitOrder = true,
Alexey Samsonovee548272012-11-29 18:14:24 +0000289 bool CheckUseAfterReturn = false,
Alexey Samsonovb0dcf612012-12-03 19:09:26 +0000290 bool CheckLifetime = false,
Alexey Samsonov11af9a82013-01-17 11:12:32 +0000291 StringRef BlacklistFile = StringRef(),
292 bool ZeroBaseShadow = false)
Alexey Samsonovee548272012-11-29 18:14:24 +0000293 : FunctionPass(ID),
294 CheckInitOrder(CheckInitOrder || ClInitializers),
295 CheckUseAfterReturn(CheckUseAfterReturn || ClUseAfterReturn),
Alexey Samsonovb0dcf612012-12-03 19:09:26 +0000296 CheckLifetime(CheckLifetime || ClCheckLifetime),
297 BlacklistFile(BlacklistFile.empty() ? ClBlacklistFile
Alexey Samsonov11af9a82013-01-17 11:12:32 +0000298 : BlacklistFile),
299 ZeroBaseShadow(ZeroBaseShadow) {}
Kostya Serebryany1416edc2012-11-28 10:31:36 +0000300 virtual const char *getPassName() const {
301 return "AddressSanitizerFunctionPass";
302 }
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000303 void instrumentMop(Instruction *I);
Kostya Serebryany6ecccdb2013-02-19 11:29:21 +0000304 void instrumentAddress(Instruction *OrigIns, Instruction *InsertBefore,
305 Value *Addr, uint32_t TypeSize, bool IsWrite,
306 Value *SizeArgument);
Kostya Serebryanyc0ed3e52012-07-16 16:15:40 +0000307 Value *createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
308 Value *ShadowValue, uint32_t TypeSize);
Kostya Serebryanyebd64542012-08-14 14:04:51 +0000309 Instruction *generateCrashCode(Instruction *InsertBefore, Value *Addr,
Kostya Serebryany6ecccdb2013-02-19 11:29:21 +0000310 bool IsWrite, size_t AccessSizeIndex,
311 Value *SizeArgument);
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000312 bool instrumentMemIntrinsic(MemIntrinsic *MI);
313 void instrumentMemIntrinsicParam(Instruction *OrigIns, Value *Addr,
Kostya Serebryanyc0ed3e52012-07-16 16:15:40 +0000314 Value *Size,
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000315 Instruction *InsertBefore, bool IsWrite);
316 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB);
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000317 bool runOnFunction(Function &F);
Kostya Serebryanya1a8a322012-01-30 23:50:10 +0000318 bool maybeInsertAsanInitAtFunctionEntry(Function &F);
Alexey Samsonov19cd7e92013-01-16 13:23:28 +0000319 void emitShadowMapping(Module &M, IRBuilder<> &IRB) const;
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000320 virtual bool doInitialization(Module &M);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000321 static char ID; // Pass identification, replacement for typeid
322
323 private:
Kostya Serebryany8b390ff2012-11-29 09:54:21 +0000324 void initializeCallbacks(Module &M);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000325
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000326 bool ShouldInstrumentGlobal(GlobalVariable *G);
Kostya Serebryany5a3a9c92011-11-18 01:41:06 +0000327 bool LooksLikeCodeInBug11395(Instruction *I);
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000328 void FindDynamicInitializers(Module &M);
Kostya Serebryany3386d252013-10-16 14:06:14 +0000329 bool GlobalIsLinkerInitialized(GlobalVariable *G);
Bob Wilson4b899142013-11-15 07:16:09 +0000330 bool InjectCoverage(Function &F);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000331
Alexey Samsonovee548272012-11-29 18:14:24 +0000332 bool CheckInitOrder;
333 bool CheckUseAfterReturn;
334 bool CheckLifetime;
Alexey Samsonov11af9a82013-01-17 11:12:32 +0000335 SmallString<64> BlacklistFile;
336 bool ZeroBaseShadow;
337
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000338 LLVMContext *C;
Micah Villmow3574eca2012-10-08 16:38:25 +0000339 DataLayout *TD;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000340 int LongSize;
341 Type *IntptrTy;
Alexey Samsonov19cd7e92013-01-16 13:23:28 +0000342 ShadowMapping Mapping;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000343 Function *AsanCtorFunction;
344 Function *AsanInitFunction;
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000345 Function *AsanHandleNoReturnFunc;
Bob Wilson4b899142013-11-15 07:16:09 +0000346 Function *AsanCovFunction;
Peter Collingbourne405515d2013-07-09 22:02:49 +0000347 OwningPtr<SpecialCaseList> BL;
Kostya Serebryany9db5b5f2012-07-16 14:09:42 +0000348 // This array is indexed by AccessIsWrite and log2(AccessSize).
349 Function *AsanErrorCallback[2][kNumberOfAccessSizes];
Kostya Serebryany6ecccdb2013-02-19 11:29:21 +0000350 // This array is indexed by AccessIsWrite.
351 Function *AsanErrorCallbackSized[2];
Kostya Serebryanyf7b08222012-07-20 09:54:50 +0000352 InlineAsm *EmptyAsm;
Kostya Serebryanyca23d432012-11-20 13:00:01 +0000353 SetOfDynamicallyInitializedGlobals DynamicallyInitializedGlobals;
Alexey Samsonov59cca132012-12-25 12:04:36 +0000354
355 friend struct FunctionStackPoisoner;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000356};
Kostya Serebryanyc0ed3e52012-07-16 16:15:40 +0000357
Kostya Serebryany1416edc2012-11-28 10:31:36 +0000358class AddressSanitizerModule : public ModulePass {
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +0000359 public:
Alexey Samsonovb4ba5e62013-03-14 12:38:58 +0000360 AddressSanitizerModule(bool CheckInitOrder = true,
Alexey Samsonov11af9a82013-01-17 11:12:32 +0000361 StringRef BlacklistFile = StringRef(),
362 bool ZeroBaseShadow = false)
Alexey Samsonovee548272012-11-29 18:14:24 +0000363 : ModulePass(ID),
Alexey Samsonovb0dcf612012-12-03 19:09:26 +0000364 CheckInitOrder(CheckInitOrder || ClInitializers),
365 BlacklistFile(BlacklistFile.empty() ? ClBlacklistFile
Alexey Samsonov11af9a82013-01-17 11:12:32 +0000366 : BlacklistFile),
367 ZeroBaseShadow(ZeroBaseShadow) {}
Kostya Serebryany1416edc2012-11-28 10:31:36 +0000368 bool runOnModule(Module &M);
369 static char ID; // Pass identification, replacement for typeid
Kostya Serebryany1416edc2012-11-28 10:31:36 +0000370 virtual const char *getPassName() const {
371 return "AddressSanitizerModule";
372 }
Alexey Samsonovf985f442012-12-04 01:34:23 +0000373
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +0000374 private:
Alexey Samsonov46848582012-12-25 12:28:20 +0000375 void initializeCallbacks(Module &M);
376
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +0000377 bool ShouldInstrumentGlobal(GlobalVariable *G);
Alexey Samsonovca825ea2013-03-26 13:05:41 +0000378 void createInitializerPoisonCalls(Module &M, GlobalValue *ModuleName);
Alexey Samsonov19cd7e92013-01-16 13:23:28 +0000379 size_t RedzoneSize() const {
380 return RedzoneSizeForScale(Mapping.Scale);
381 }
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +0000382
Alexey Samsonovee548272012-11-29 18:14:24 +0000383 bool CheckInitOrder;
Alexey Samsonovb0dcf612012-12-03 19:09:26 +0000384 SmallString<64> BlacklistFile;
Alexey Samsonov11af9a82013-01-17 11:12:32 +0000385 bool ZeroBaseShadow;
386
Peter Collingbourne405515d2013-07-09 22:02:49 +0000387 OwningPtr<SpecialCaseList> BL;
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +0000388 SetOfDynamicallyInitializedGlobals DynamicallyInitializedGlobals;
389 Type *IntptrTy;
390 LLVMContext *C;
Kostya Serebryany1416edc2012-11-28 10:31:36 +0000391 DataLayout *TD;
Alexey Samsonov19cd7e92013-01-16 13:23:28 +0000392 ShadowMapping Mapping;
Alexey Samsonov46848582012-12-25 12:28:20 +0000393 Function *AsanPoisonGlobals;
394 Function *AsanUnpoisonGlobals;
395 Function *AsanRegisterGlobals;
396 Function *AsanUnregisterGlobals;
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +0000397};
398
Alexey Samsonov59cca132012-12-25 12:04:36 +0000399// Stack poisoning does not play well with exception handling.
400// When an exception is thrown, we essentially bypass the code
401// that unpoisones the stack. This is why the run-time library has
402// to intercept __cxa_throw (as well as longjmp, etc) and unpoison the entire
403// stack in the interceptor. This however does not work inside the
404// actual function which catches the exception. Most likely because the
405// compiler hoists the load of the shadow value somewhere too high.
406// This causes asan to report a non-existing bug on 453.povray.
407// It sounds like an LLVM bug.
408struct FunctionStackPoisoner : public InstVisitor<FunctionStackPoisoner> {
409 Function &F;
410 AddressSanitizer &ASan;
411 DIBuilder DIB;
412 LLVMContext *C;
413 Type *IntptrTy;
414 Type *IntptrPtrTy;
Alexey Samsonov19cd7e92013-01-16 13:23:28 +0000415 ShadowMapping Mapping;
Alexey Samsonov59cca132012-12-25 12:04:36 +0000416
417 SmallVector<AllocaInst*, 16> AllocaVec;
418 SmallVector<Instruction*, 8> RetVec;
419 uint64_t TotalStackSize;
420 unsigned StackAlignment;
421
Kostya Serebryanyf3d4b352013-09-10 13:16:56 +0000422 Function *AsanStackMallocFunc[kMaxAsanStackMallocSizeClass + 1],
423 *AsanStackFreeFunc[kMaxAsanStackMallocSizeClass + 1];
Alexey Samsonov59cca132012-12-25 12:04:36 +0000424 Function *AsanPoisonStackMemoryFunc, *AsanUnpoisonStackMemoryFunc;
425
Alexey Samsonov1c8b8252012-12-27 08:50:58 +0000426 // Stores a place and arguments of poisoning/unpoisoning call for alloca.
427 struct AllocaPoisonCall {
428 IntrinsicInst *InsBefore;
429 uint64_t Size;
430 bool DoPoison;
431 };
432 SmallVector<AllocaPoisonCall, 8> AllocaPoisonCallVec;
433
434 // Maps Value to an AllocaInst from which the Value is originated.
435 typedef DenseMap<Value*, AllocaInst*> AllocaForValueMapTy;
436 AllocaForValueMapTy AllocaForValue;
437
Alexey Samsonov59cca132012-12-25 12:04:36 +0000438 FunctionStackPoisoner(Function &F, AddressSanitizer &ASan)
439 : F(F), ASan(ASan), DIB(*F.getParent()), C(ASan.C),
440 IntptrTy(ASan.IntptrTy), IntptrPtrTy(PointerType::get(IntptrTy, 0)),
Alexey Samsonov19cd7e92013-01-16 13:23:28 +0000441 Mapping(ASan.Mapping),
442 TotalStackSize(0), StackAlignment(1 << Mapping.Scale) {}
Alexey Samsonov59cca132012-12-25 12:04:36 +0000443
444 bool runOnFunction() {
445 if (!ClStack) return false;
446 // Collect alloca, ret, lifetime instructions etc.
447 for (df_iterator<BasicBlock*> DI = df_begin(&F.getEntryBlock()),
448 DE = df_end(&F.getEntryBlock()); DI != DE; ++DI) {
449 BasicBlock *BB = *DI;
450 visit(*BB);
451 }
452 if (AllocaVec.empty()) return false;
453
454 initializeCallbacks(*F.getParent());
455
456 poisonStack();
457
458 if (ClDebugStack) {
459 DEBUG(dbgs() << F);
460 }
461 return true;
462 }
463
464 // Finds all static Alloca instructions and puts
465 // poisoned red zones around all of them.
466 // Then unpoison everything back before the function returns.
467 void poisonStack();
468
469 // ----------------------- Visitors.
470 /// \brief Collect all Ret instructions.
471 void visitReturnInst(ReturnInst &RI) {
472 RetVec.push_back(&RI);
473 }
474
475 /// \brief Collect Alloca instructions we want (and can) handle.
476 void visitAllocaInst(AllocaInst &AI) {
Alexey Samsonov1c8b8252012-12-27 08:50:58 +0000477 if (!isInterestingAlloca(AI)) return;
Alexey Samsonov59cca132012-12-25 12:04:36 +0000478
479 StackAlignment = std::max(StackAlignment, AI.getAlignment());
480 AllocaVec.push_back(&AI);
Kostya Serebryanyd4429212013-06-26 09:49:52 +0000481 uint64_t AlignedSize = getAlignedAllocaSize(&AI);
Alexey Samsonov59cca132012-12-25 12:04:36 +0000482 TotalStackSize += AlignedSize;
483 }
484
Alexey Samsonov1c8b8252012-12-27 08:50:58 +0000485 /// \brief Collect lifetime intrinsic calls to check for use-after-scope
486 /// errors.
487 void visitIntrinsicInst(IntrinsicInst &II) {
488 if (!ASan.CheckLifetime) return;
489 Intrinsic::ID ID = II.getIntrinsicID();
490 if (ID != Intrinsic::lifetime_start &&
491 ID != Intrinsic::lifetime_end)
492 return;
493 // Found lifetime intrinsic, add ASan instrumentation if necessary.
494 ConstantInt *Size = dyn_cast<ConstantInt>(II.getArgOperand(0));
495 // If size argument is undefined, don't do anything.
496 if (Size->isMinusOne()) return;
497 // Check that size doesn't saturate uint64_t and can
498 // be stored in IntptrTy.
499 const uint64_t SizeValue = Size->getValue().getLimitedValue();
500 if (SizeValue == ~0ULL ||
501 !ConstantInt::isValueValidForType(IntptrTy, SizeValue))
502 return;
503 // Find alloca instruction that corresponds to llvm.lifetime argument.
504 AllocaInst *AI = findAllocaForValue(II.getArgOperand(1));
505 if (!AI) return;
506 bool DoPoison = (ID == Intrinsic::lifetime_end);
507 AllocaPoisonCall APC = {&II, SizeValue, DoPoison};
508 AllocaPoisonCallVec.push_back(APC);
509 }
510
Alexey Samsonov59cca132012-12-25 12:04:36 +0000511 // ---------------------- Helpers.
512 void initializeCallbacks(Module &M);
513
Alexey Samsonov1c8b8252012-12-27 08:50:58 +0000514 // Check if we want (and can) handle this alloca.
Jakub Staszak4c710642013-08-09 20:53:48 +0000515 bool isInterestingAlloca(AllocaInst &AI) const {
Alexey Samsonov1c8b8252012-12-27 08:50:58 +0000516 return (!AI.isArrayAllocation() &&
517 AI.isStaticAlloca() &&
Kostya Serebryanyd4429212013-06-26 09:49:52 +0000518 AI.getAlignment() <= RedzoneSize() &&
Alexey Samsonov1c8b8252012-12-27 08:50:58 +0000519 AI.getAllocatedType()->isSized());
520 }
521
Alexey Samsonov19cd7e92013-01-16 13:23:28 +0000522 size_t RedzoneSize() const {
523 return RedzoneSizeForScale(Mapping.Scale);
524 }
Jakub Staszak4c710642013-08-09 20:53:48 +0000525 uint64_t getAllocaSizeInBytes(AllocaInst *AI) const {
Alexey Samsonov59cca132012-12-25 12:04:36 +0000526 Type *Ty = AI->getAllocatedType();
527 uint64_t SizeInBytes = ASan.TD->getTypeAllocSize(Ty);
528 return SizeInBytes;
529 }
Jakub Staszak4c710642013-08-09 20:53:48 +0000530 uint64_t getAlignedSize(uint64_t SizeInBytes) const {
Alexey Samsonov59cca132012-12-25 12:04:36 +0000531 size_t RZ = RedzoneSize();
532 return ((SizeInBytes + RZ - 1) / RZ) * RZ;
533 }
Jakub Staszak4c710642013-08-09 20:53:48 +0000534 uint64_t getAlignedAllocaSize(AllocaInst *AI) const {
Alexey Samsonov59cca132012-12-25 12:04:36 +0000535 uint64_t SizeInBytes = getAllocaSizeInBytes(AI);
536 return getAlignedSize(SizeInBytes);
537 }
Alexey Samsonov1c8b8252012-12-27 08:50:58 +0000538 /// Finds alloca where the value comes from.
539 AllocaInst *findAllocaForValue(Value *V);
Jakub Staszak4c710642013-08-09 20:53:48 +0000540 void poisonRedZones(const ArrayRef<AllocaInst*> &AllocaVec, IRBuilder<> &IRB,
Alexey Samsonov59cca132012-12-25 12:04:36 +0000541 Value *ShadowBase, bool DoPoison);
Jakub Staszak4c710642013-08-09 20:53:48 +0000542 void poisonAlloca(Value *V, uint64_t Size, IRBuilder<> &IRB, bool DoPoison);
Kostya Serebryany671c3ba2013-09-17 12:14:50 +0000543
544 void SetShadowToStackAfterReturnInlined(IRBuilder<> &IRB, Value *ShadowBase,
545 int Size);
Alexey Samsonov59cca132012-12-25 12:04:36 +0000546};
547
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000548} // namespace
549
550char AddressSanitizer::ID = 0;
551INITIALIZE_PASS(AddressSanitizer, "asan",
552 "AddressSanitizer: detects use-after-free and out-of-bounds bugs.",
553 false, false)
Alexey Samsonovee548272012-11-29 18:14:24 +0000554FunctionPass *llvm::createAddressSanitizerFunctionPass(
Alexey Samsonovb0dcf612012-12-03 19:09:26 +0000555 bool CheckInitOrder, bool CheckUseAfterReturn, bool CheckLifetime,
Alexey Samsonov11af9a82013-01-17 11:12:32 +0000556 StringRef BlacklistFile, bool ZeroBaseShadow) {
Alexey Samsonovee548272012-11-29 18:14:24 +0000557 return new AddressSanitizer(CheckInitOrder, CheckUseAfterReturn,
Alexey Samsonov11af9a82013-01-17 11:12:32 +0000558 CheckLifetime, BlacklistFile, ZeroBaseShadow);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000559}
560
Kostya Serebryany1416edc2012-11-28 10:31:36 +0000561char AddressSanitizerModule::ID = 0;
562INITIALIZE_PASS(AddressSanitizerModule, "asan-module",
563 "AddressSanitizer: detects use-after-free and out-of-bounds bugs."
564 "ModulePass", false, false)
Alexey Samsonovb0dcf612012-12-03 19:09:26 +0000565ModulePass *llvm::createAddressSanitizerModulePass(
Alexey Samsonov11af9a82013-01-17 11:12:32 +0000566 bool CheckInitOrder, StringRef BlacklistFile, bool ZeroBaseShadow) {
567 return new AddressSanitizerModule(CheckInitOrder, BlacklistFile,
568 ZeroBaseShadow);
Alexander Potapenko25878042012-01-23 11:22:43 +0000569}
570
Kostya Serebryany2735cf42012-07-16 17:12:07 +0000571static size_t TypeSizeToSizeIndex(uint32_t TypeSize) {
Michael J. Spencerc6af2432013-05-24 22:23:49 +0000572 size_t Res = countTrailingZeros(TypeSize / 8);
Kostya Serebryany2735cf42012-07-16 17:12:07 +0000573 assert(Res < kNumberOfAccessSizes);
574 return Res;
575}
576
Bill Wendling55a1a592013-08-06 22:52:42 +0000577// \brief Create a constant for Str so that we can pass it to the run-time lib.
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000578static GlobalVariable *createPrivateGlobalForString(Module &M, StringRef Str) {
Chris Lattner18c7f802012-02-05 02:29:43 +0000579 Constant *StrConst = ConstantDataArray::getString(M.getContext(), Str);
Kostya Serebryany51116272013-03-18 09:38:39 +0000580 GlobalVariable *GV = new GlobalVariable(M, StrConst->getType(), true,
Bill Wendling55a1a592013-08-06 22:52:42 +0000581 GlobalValue::InternalLinkage, StrConst,
Kostya Serebryany51c7c652012-11-20 14:16:08 +0000582 kAsanGenPrefix);
Kostya Serebryany51116272013-03-18 09:38:39 +0000583 GV->setUnnamedAddr(true); // Ok to merge these.
584 GV->setAlignment(1); // Strings may not be merged w/o setting align 1.
585 return GV;
Kostya Serebryany51c7c652012-11-20 14:16:08 +0000586}
587
588static bool GlobalWasGeneratedByAsan(GlobalVariable *G) {
589 return G->getName().find(kAsanGenPrefix) == 0;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000590}
591
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000592Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) {
593 // Shadow >> scale
Alexey Samsonov19cd7e92013-01-16 13:23:28 +0000594 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale);
595 if (Mapping.Offset == 0)
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000596 return Shadow;
597 // (Shadow >> scale) | offset
Kostya Serebryany48a615f2013-01-23 12:54:55 +0000598 if (Mapping.OrShadowOffset)
599 return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
600 else
601 return IRB.CreateAdd(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000602}
603
Kostya Serebryanyc0ed3e52012-07-16 16:15:40 +0000604void AddressSanitizer::instrumentMemIntrinsicParam(
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000605 Instruction *OrigIns,
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000606 Value *Addr, Value *Size, Instruction *InsertBefore, bool IsWrite) {
Kostya Serebryany6ecccdb2013-02-19 11:29:21 +0000607 IRBuilder<> IRB(InsertBefore);
608 if (Size->getType() != IntptrTy)
609 Size = IRB.CreateIntCast(Size, IntptrTy, false);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000610 // Check the first byte.
Kostya Serebryany6ecccdb2013-02-19 11:29:21 +0000611 instrumentAddress(OrigIns, InsertBefore, Addr, 8, IsWrite, Size);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000612 // Check the last byte.
Kostya Serebryany6ecccdb2013-02-19 11:29:21 +0000613 IRB.SetInsertPoint(InsertBefore);
614 Value *SizeMinusOne = IRB.CreateSub(Size, ConstantInt::get(IntptrTy, 1));
615 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
616 Value *AddrLast = IRB.CreateAdd(AddrLong, SizeMinusOne);
617 instrumentAddress(OrigIns, InsertBefore, AddrLast, 8, IsWrite, Size);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000618}
619
620// Instrument memset/memmove/memcpy
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000621bool AddressSanitizer::instrumentMemIntrinsic(MemIntrinsic *MI) {
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000622 Value *Dst = MI->getDest();
623 MemTransferInst *MemTran = dyn_cast<MemTransferInst>(MI);
Kostya Serebryany2735cf42012-07-16 17:12:07 +0000624 Value *Src = MemTran ? MemTran->getSource() : 0;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000625 Value *Length = MI->getLength();
626
627 Constant *ConstLength = dyn_cast<Constant>(Length);
628 Instruction *InsertBefore = MI;
629 if (ConstLength) {
630 if (ConstLength->isNullValue()) return false;
631 } else {
632 // The size is not a constant so it could be zero -- check at run-time.
633 IRBuilder<> IRB(InsertBefore);
634
635 Value *Cmp = IRB.CreateICmpNE(Length,
Kostya Serebryany56139bc2012-07-02 11:42:29 +0000636 Constant::getNullValue(Length->getType()));
Evgeniy Stepanov4a2dec02012-10-19 10:48:31 +0000637 InsertBefore = SplitBlockAndInsertIfThen(cast<Instruction>(Cmp), false);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000638 }
639
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000640 instrumentMemIntrinsicParam(MI, Dst, Length, InsertBefore, true);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000641 if (Src)
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000642 instrumentMemIntrinsicParam(MI, Src, Length, InsertBefore, false);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000643 return true;
644}
645
Kostya Serebryanye6cf2e02012-05-30 09:04:06 +0000646// If I is an interesting memory access, return the PointerOperand
647// and set IsWrite. Otherwise return NULL.
648static Value *isInterestingMemoryAccess(Instruction *I, bool *IsWrite) {
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000649 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Kostya Serebryanye6cf2e02012-05-30 09:04:06 +0000650 if (!ClInstrumentReads) return NULL;
651 *IsWrite = false;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000652 return LI->getPointerOperand();
653 }
Kostya Serebryanye6cf2e02012-05-30 09:04:06 +0000654 if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
655 if (!ClInstrumentWrites) return NULL;
656 *IsWrite = true;
657 return SI->getPointerOperand();
658 }
659 if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(I)) {
660 if (!ClInstrumentAtomics) return NULL;
661 *IsWrite = true;
662 return RMW->getPointerOperand();
663 }
664 if (AtomicCmpXchgInst *XCHG = dyn_cast<AtomicCmpXchgInst>(I)) {
665 if (!ClInstrumentAtomics) return NULL;
666 *IsWrite = true;
667 return XCHG->getPointerOperand();
668 }
669 return NULL;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000670}
671
Kostya Serebryany3386d252013-10-16 14:06:14 +0000672bool AddressSanitizer::GlobalIsLinkerInitialized(GlobalVariable *G) {
673 // If a global variable does not have dynamic initialization we don't
674 // have to instrument it. However, if a global does not have initializer
675 // at all, we assume it has dynamic initializer (in other TU).
676 return G->hasInitializer() && !DynamicallyInitializedGlobals.Contains(G);
677}
678
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000679void AddressSanitizer::instrumentMop(Instruction *I) {
Axel Naumann3780ad82012-09-17 14:20:57 +0000680 bool IsWrite = false;
Kostya Serebryanye6cf2e02012-05-30 09:04:06 +0000681 Value *Addr = isInterestingMemoryAccess(I, &IsWrite);
682 assert(Addr);
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000683 if (ClOpt && ClOptGlobals) {
684 if (GlobalVariable *G = dyn_cast<GlobalVariable>(Addr)) {
685 // If initialization order checking is disabled, a simple access to a
686 // dynamically initialized global is always valid.
Kostya Serebryany3386d252013-10-16 14:06:14 +0000687 if (!CheckInitOrder || GlobalIsLinkerInitialized(G)) {
688 NumOptimizedAccessesToGlobalVar++;
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000689 return;
Kostya Serebryany3386d252013-10-16 14:06:14 +0000690 }
691 }
692 ConstantExpr *CE = dyn_cast<ConstantExpr>(Addr);
693 if (CE && CE->isGEPWithNoNotionalOverIndexing()) {
694 if (GlobalVariable *G = dyn_cast<GlobalVariable>(CE->getOperand(0))) {
695 if (CE->getOperand(1)->isNullValue() && GlobalIsLinkerInitialized(G)) {
696 NumOptimizedAccessesToGlobalArray++;
697 return;
698 }
699 }
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000700 }
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000701 }
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000702
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000703 Type *OrigPtrTy = Addr->getType();
704 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType();
705
706 assert(OrigTy->isSized());
Kostya Serebryany605ff662013-02-18 13:47:02 +0000707 uint32_t TypeSize = TD->getTypeStoreSizeInBits(OrigTy);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000708
Kostya Serebryany6ecccdb2013-02-19 11:29:21 +0000709 assert((TypeSize % 8) == 0);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000710
Kostya Serebryany3386d252013-10-16 14:06:14 +0000711 if (IsWrite)
712 NumInstrumentedWrites++;
713 else
714 NumInstrumentedReads++;
715
Kostya Serebryany6ecccdb2013-02-19 11:29:21 +0000716 // Instrument a 1-, 2-, 4-, 8-, or 16- byte access with one check.
717 if (TypeSize == 8 || TypeSize == 16 ||
718 TypeSize == 32 || TypeSize == 64 || TypeSize == 128)
719 return instrumentAddress(I, I, Addr, TypeSize, IsWrite, 0);
720 // Instrument unusual size (but still multiple of 8).
721 // We can not do it with a single check, so we do 1-byte check for the first
722 // and the last bytes. We call __asan_report_*_n(addr, real_size) to be able
723 // to report the actual access size.
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000724 IRBuilder<> IRB(I);
Kostya Serebryany6ecccdb2013-02-19 11:29:21 +0000725 Value *LastByte = IRB.CreateIntToPtr(
726 IRB.CreateAdd(IRB.CreatePointerCast(Addr, IntptrTy),
727 ConstantInt::get(IntptrTy, TypeSize / 8 - 1)),
728 OrigPtrTy);
729 Value *Size = ConstantInt::get(IntptrTy, TypeSize / 8);
730 instrumentAddress(I, I, Addr, 8, IsWrite, Size);
731 instrumentAddress(I, I, LastByte, 8, IsWrite, Size);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000732}
733
Alexander Potapenko55cabae2012-04-23 10:47:31 +0000734// Validate the result of Module::getOrInsertFunction called for an interface
735// function of AddressSanitizer. If the instrumented module defines a function
736// with the same name, their prototypes must match, otherwise
737// getOrInsertFunction returns a bitcast.
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +0000738static Function *checkInterfaceFunction(Constant *FuncOrBitcast) {
Alexander Potapenko55cabae2012-04-23 10:47:31 +0000739 if (isa<Function>(FuncOrBitcast)) return cast<Function>(FuncOrBitcast);
740 FuncOrBitcast->dump();
741 report_fatal_error("trying to redefine an AddressSanitizer "
742 "interface function");
743}
744
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000745Instruction *AddressSanitizer::generateCrashCode(
Kostya Serebryanyebd64542012-08-14 14:04:51 +0000746 Instruction *InsertBefore, Value *Addr,
Kostya Serebryany6ecccdb2013-02-19 11:29:21 +0000747 bool IsWrite, size_t AccessSizeIndex, Value *SizeArgument) {
Kostya Serebryanyebd64542012-08-14 14:04:51 +0000748 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany6ecccdb2013-02-19 11:29:21 +0000749 CallInst *Call = SizeArgument
750 ? IRB.CreateCall2(AsanErrorCallbackSized[IsWrite], Addr, SizeArgument)
751 : IRB.CreateCall(AsanErrorCallback[IsWrite][AccessSizeIndex], Addr);
752
Kostya Serebryanyf7b08222012-07-20 09:54:50 +0000753 // We don't do Call->setDoesNotReturn() because the BB already has
754 // UnreachableInst at the end.
755 // This EmptyAsm is required to avoid callback merge.
756 IRB.CreateCall(EmptyAsm);
Kostya Serebryany3c7faae2012-01-06 18:09:21 +0000757 return Call;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000758}
759
Kostya Serebryany2735cf42012-07-16 17:12:07 +0000760Value *AddressSanitizer::createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
Kostya Serebryanyc0ed3e52012-07-16 16:15:40 +0000761 Value *ShadowValue,
762 uint32_t TypeSize) {
Alexey Samsonov19cd7e92013-01-16 13:23:28 +0000763 size_t Granularity = 1 << Mapping.Scale;
Kostya Serebryanyc0ed3e52012-07-16 16:15:40 +0000764 // Addr & (Granularity - 1)
765 Value *LastAccessedByte = IRB.CreateAnd(
766 AddrLong, ConstantInt::get(IntptrTy, Granularity - 1));
767 // (Addr & (Granularity - 1)) + size - 1
768 if (TypeSize / 8 > 1)
769 LastAccessedByte = IRB.CreateAdd(
770 LastAccessedByte, ConstantInt::get(IntptrTy, TypeSize / 8 - 1));
771 // (uint8_t) ((Addr & (Granularity-1)) + size - 1)
772 LastAccessedByte = IRB.CreateIntCast(
Kostya Serebryany6e2d5062012-08-15 08:58:58 +0000773 LastAccessedByte, ShadowValue->getType(), false);
Kostya Serebryanyc0ed3e52012-07-16 16:15:40 +0000774 // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue
775 return IRB.CreateICmpSGE(LastAccessedByte, ShadowValue);
776}
777
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000778void AddressSanitizer::instrumentAddress(Instruction *OrigIns,
Kostya Serebryany6ecccdb2013-02-19 11:29:21 +0000779 Instruction *InsertBefore,
780 Value *Addr, uint32_t TypeSize,
781 bool IsWrite, Value *SizeArgument) {
782 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000783 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
784
785 Type *ShadowTy = IntegerType::get(
Alexey Samsonov19cd7e92013-01-16 13:23:28 +0000786 *C, std::max(8U, TypeSize >> Mapping.Scale));
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000787 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0);
788 Value *ShadowPtr = memToShadow(AddrLong, IRB);
789 Value *CmpVal = Constant::getNullValue(ShadowTy);
790 Value *ShadowValue = IRB.CreateLoad(
791 IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy));
792
793 Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal);
Kostya Serebryany11c2a472012-08-13 14:08:46 +0000794 size_t AccessSizeIndex = TypeSizeToSizeIndex(TypeSize);
Alexey Samsonov19cd7e92013-01-16 13:23:28 +0000795 size_t Granularity = 1 << Mapping.Scale;
Kostya Serebryanyebd64542012-08-14 14:04:51 +0000796 TerminatorInst *CrashTerm = 0;
797
Kostya Serebryany6e2d5062012-08-15 08:58:58 +0000798 if (ClAlwaysSlowPath || (TypeSize < 8 * Granularity)) {
Evgeniy Stepanov4a2dec02012-10-19 10:48:31 +0000799 TerminatorInst *CheckTerm =
800 SplitBlockAndInsertIfThen(cast<Instruction>(Cmp), false);
Kostya Serebryanyebd64542012-08-14 14:04:51 +0000801 assert(dyn_cast<BranchInst>(CheckTerm)->isUnconditional());
Kostya Serebryanyf7b08222012-07-20 09:54:50 +0000802 BasicBlock *NextBB = CheckTerm->getSuccessor(0);
Kostya Serebryanyc0ed3e52012-07-16 16:15:40 +0000803 IRB.SetInsertPoint(CheckTerm);
804 Value *Cmp2 = createSlowPathCmp(IRB, AddrLong, ShadowValue, TypeSize);
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000805 BasicBlock *CrashBlock =
806 BasicBlock::Create(*C, "", NextBB->getParent(), NextBB);
Kostya Serebryanyebd64542012-08-14 14:04:51 +0000807 CrashTerm = new UnreachableInst(*C, CrashBlock);
Kostya Serebryanyf7b08222012-07-20 09:54:50 +0000808 BranchInst *NewTerm = BranchInst::Create(CrashBlock, NextBB, Cmp2);
809 ReplaceInstWithInst(CheckTerm, NewTerm);
Kostya Serebryanyc0ed3e52012-07-16 16:15:40 +0000810 } else {
Evgeniy Stepanov4a2dec02012-10-19 10:48:31 +0000811 CrashTerm = SplitBlockAndInsertIfThen(cast<Instruction>(Cmp), true);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000812 }
Kostya Serebryanyebd64542012-08-14 14:04:51 +0000813
Kostya Serebryany6ecccdb2013-02-19 11:29:21 +0000814 Instruction *Crash = generateCrashCode(
815 CrashTerm, AddrLong, IsWrite, AccessSizeIndex, SizeArgument);
Kostya Serebryanyebd64542012-08-14 14:04:51 +0000816 Crash->setDebugLoc(OrigIns->getDebugLoc());
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000817}
818
Kostya Serebryany1416edc2012-11-28 10:31:36 +0000819void AddressSanitizerModule::createInitializerPoisonCalls(
Alexey Samsonovca825ea2013-03-26 13:05:41 +0000820 Module &M, GlobalValue *ModuleName) {
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000821 // We do all of our poisoning and unpoisoning within _GLOBAL__I_a.
822 Function *GlobalInit = M.getFunction("_GLOBAL__I_a");
823 // If that function is not present, this TU contains no globals, or they have
824 // all been optimized away
825 if (!GlobalInit)
826 return;
827
828 // Set up the arguments to our poison/unpoison functions.
829 IRBuilder<> IRB(GlobalInit->begin()->getFirstInsertionPt());
830
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000831 // Add a call to poison all external globals before the given function starts.
Alexey Samsonovca825ea2013-03-26 13:05:41 +0000832 Value *ModuleNameAddr = ConstantExpr::getPointerCast(ModuleName, IntptrTy);
833 IRB.CreateCall(AsanPoisonGlobals, ModuleNameAddr);
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000834
835 // Add calls to unpoison all globals before each return instruction.
836 for (Function::iterator I = GlobalInit->begin(), E = GlobalInit->end();
837 I != E; ++I) {
838 if (ReturnInst *RI = dyn_cast<ReturnInst>(I->getTerminator())) {
839 CallInst::Create(AsanUnpoisonGlobals, "", RI);
840 }
841 }
842}
843
Kostya Serebryany1416edc2012-11-28 10:31:36 +0000844bool AddressSanitizerModule::ShouldInstrumentGlobal(GlobalVariable *G) {
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000845 Type *Ty = cast<PointerType>(G->getType())->getElementType();
Kostya Serebryany324d96b2012-10-17 13:40:06 +0000846 DEBUG(dbgs() << "GLOBAL: " << *G << "\n");
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000847
Kostya Serebryany59a4a472012-09-05 07:29:56 +0000848 if (BL->isIn(*G)) return false;
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000849 if (!Ty->isSized()) return false;
850 if (!G->hasInitializer()) return false;
Kostya Serebryany51c7c652012-11-20 14:16:08 +0000851 if (GlobalWasGeneratedByAsan(G)) return false; // Our own global.
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000852 // Touch only those globals that will not be defined in other modules.
853 // Don't handle ODR type linkages since other modules may be built w/o asan.
854 if (G->getLinkage() != GlobalVariable::ExternalLinkage &&
855 G->getLinkage() != GlobalVariable::PrivateLinkage &&
856 G->getLinkage() != GlobalVariable::InternalLinkage)
857 return false;
858 // Two problems with thread-locals:
859 // - The address of the main thread's copy can't be computed at link-time.
860 // - Need to poison all copies, not just the main thread's one.
861 if (G->isThreadLocal())
862 return false;
863 // For now, just ignore this Alloca if the alignment is large.
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +0000864 if (G->getAlignment() > RedzoneSize()) return false;
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000865
866 // Ignore all the globals with the names starting with "\01L_OBJC_".
867 // Many of those are put into the .cstring section. The linker compresses
868 // that section by removing the spare \0s after the string terminator, so
869 // our redzones get broken.
870 if ((G->getName().find("\01L_OBJC_") == 0) ||
871 (G->getName().find("\01l_OBJC_") == 0)) {
872 DEBUG(dbgs() << "Ignoring \\01L_OBJC_* global: " << *G);
873 return false;
874 }
875
876 if (G->hasSection()) {
877 StringRef Section(G->getSection());
878 // Ignore the globals from the __OBJC section. The ObjC runtime assumes
879 // those conform to /usr/lib/objc/runtime.h, so we can't add redzones to
880 // them.
881 if ((Section.find("__OBJC,") == 0) ||
882 (Section.find("__DATA, __objc_") == 0)) {
883 DEBUG(dbgs() << "Ignoring ObjC runtime global: " << *G);
884 return false;
885 }
886 // See http://code.google.com/p/address-sanitizer/issues/detail?id=32
887 // Constant CFString instances are compiled in the following way:
888 // -- the string buffer is emitted into
889 // __TEXT,__cstring,cstring_literals
890 // -- the constant NSConstantString structure referencing that buffer
891 // is placed into __DATA,__cfstring
892 // Therefore there's no point in placing redzones into __DATA,__cfstring.
893 // Moreover, it causes the linker to crash on OS X 10.7
894 if (Section.find("__DATA,__cfstring") == 0) {
895 DEBUG(dbgs() << "Ignoring CFString: " << *G);
896 return false;
897 }
898 }
899
900 return true;
901}
902
Alexey Samsonov46848582012-12-25 12:28:20 +0000903void AddressSanitizerModule::initializeCallbacks(Module &M) {
904 IRBuilder<> IRB(*C);
905 // Declare our poisoning and unpoisoning functions.
906 AsanPoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
Alexey Samsonovca825ea2013-03-26 13:05:41 +0000907 kAsanPoisonGlobalsName, IRB.getVoidTy(), IntptrTy, NULL));
Alexey Samsonov46848582012-12-25 12:28:20 +0000908 AsanPoisonGlobals->setLinkage(Function::ExternalLinkage);
909 AsanUnpoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
910 kAsanUnpoisonGlobalsName, IRB.getVoidTy(), NULL));
911 AsanUnpoisonGlobals->setLinkage(Function::ExternalLinkage);
912 // Declare functions that register/unregister globals.
913 AsanRegisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
914 kAsanRegisterGlobalsName, IRB.getVoidTy(),
915 IntptrTy, IntptrTy, NULL));
916 AsanRegisterGlobals->setLinkage(Function::ExternalLinkage);
917 AsanUnregisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
918 kAsanUnregisterGlobalsName,
919 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
920 AsanUnregisterGlobals->setLinkage(Function::ExternalLinkage);
921}
922
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000923// This function replaces all global variables with new variables that have
924// trailing redzones. It also creates a function that poisons
925// redzones and inserts this function into llvm.global_ctors.
Kostya Serebryany1416edc2012-11-28 10:31:36 +0000926bool AddressSanitizerModule::runOnModule(Module &M) {
927 if (!ClGlobals) return false;
928 TD = getAnalysisIfAvailable<DataLayout>();
929 if (!TD)
930 return false;
Alexey Samsonove39e1312013-08-12 11:46:09 +0000931 BL.reset(SpecialCaseList::createOrDie(BlacklistFile));
Alexey Samsonovd6f62c82012-11-29 18:27:01 +0000932 if (BL->isIn(M)) return false;
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +0000933 C = &(M.getContext());
Alexey Samsonov19cd7e92013-01-16 13:23:28 +0000934 int LongSize = TD->getPointerSizeInBits();
935 IntptrTy = Type::getIntNTy(*C, LongSize);
Alexey Samsonov11af9a82013-01-17 11:12:32 +0000936 Mapping = getShadowMapping(M, LongSize, ZeroBaseShadow);
Alexey Samsonov46848582012-12-25 12:28:20 +0000937 initializeCallbacks(M);
938 DynamicallyInitializedGlobals.Init(M);
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +0000939
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000940 SmallVector<GlobalVariable *, 16> GlobalsToChange;
941
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000942 for (Module::GlobalListType::iterator G = M.global_begin(),
943 E = M.global_end(); G != E; ++G) {
944 if (ShouldInstrumentGlobal(G))
945 GlobalsToChange.push_back(G);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000946 }
947
948 size_t n = GlobalsToChange.size();
949 if (n == 0) return false;
950
951 // A global is described by a structure
952 // size_t beg;
953 // size_t size;
954 // size_t size_with_redzone;
955 // const char *name;
Kostya Serebryany086a4722013-03-18 08:05:29 +0000956 // const char *module_name;
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000957 // size_t has_dynamic_init;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000958 // We initialize an array of such structures and pass it to a run-time call.
959 StructType *GlobalStructTy = StructType::get(IntptrTy, IntptrTy,
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000960 IntptrTy, IntptrTy,
Kostya Serebryany086a4722013-03-18 08:05:29 +0000961 IntptrTy, IntptrTy, NULL);
Rafael Espindola8819c842013-10-01 13:32:03 +0000962 SmallVector<Constant *, 16> Initializers(n);
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +0000963
964 Function *CtorFunc = M.getFunction(kAsanModuleCtorName);
965 assert(CtorFunc);
966 IRBuilder<> IRB(CtorFunc->getEntryBlock().getTerminator());
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000967
Alexey Samsonovca825ea2013-03-26 13:05:41 +0000968 bool HasDynamicallyInitializedGlobals = false;
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000969
Kostya Serebryany086a4722013-03-18 08:05:29 +0000970 GlobalVariable *ModuleName = createPrivateGlobalForString(
971 M, M.getModuleIdentifier());
Alexey Samsonovca825ea2013-03-26 13:05:41 +0000972 // We shouldn't merge same module names, as this string serves as unique
973 // module ID in runtime.
974 ModuleName->setUnnamedAddr(false);
Kostya Serebryany086a4722013-03-18 08:05:29 +0000975
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000976 for (size_t i = 0; i < n; i++) {
Kostya Serebryany29f975f2013-01-24 10:43:50 +0000977 static const uint64_t kMaxGlobalRedzone = 1 << 18;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000978 GlobalVariable *G = GlobalsToChange[i];
979 PointerType *PtrTy = cast<PointerType>(G->getType());
980 Type *Ty = PtrTy->getElementType();
Kostya Serebryany208a4ff2012-03-21 15:28:50 +0000981 uint64_t SizeInBytes = TD->getTypeAllocSize(Ty);
Kostya Serebryany29f975f2013-01-24 10:43:50 +0000982 uint64_t MinRZ = RedzoneSize();
Kostya Serebryany63f08462013-01-24 10:35:40 +0000983 // MinRZ <= RZ <= kMaxGlobalRedzone
984 // and trying to make RZ to be ~ 1/4 of SizeInBytes.
Kostya Serebryany29f975f2013-01-24 10:43:50 +0000985 uint64_t RZ = std::max(MinRZ,
Kostya Serebryany63f08462013-01-24 10:35:40 +0000986 std::min(kMaxGlobalRedzone,
987 (SizeInBytes / MinRZ / 4) * MinRZ));
988 uint64_t RightRedzoneSize = RZ;
989 // Round up to MinRZ
990 if (SizeInBytes % MinRZ)
991 RightRedzoneSize += MinRZ - (SizeInBytes % MinRZ);
992 assert(((RightRedzoneSize + SizeInBytes) % MinRZ) == 0);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000993 Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize);
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000994 // Determine whether this global should be poisoned in initialization.
Kostya Serebryanyca23d432012-11-20 13:00:01 +0000995 bool GlobalHasDynamicInitializer =
996 DynamicallyInitializedGlobals.Contains(G);
Kostya Serebryany59a4a472012-09-05 07:29:56 +0000997 // Don't check initialization order if this global is blacklisted.
Peter Collingbourne46e11c42013-07-09 22:03:17 +0000998 GlobalHasDynamicInitializer &= !BL->isIn(*G, "init");
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000999
1000 StructType *NewTy = StructType::get(Ty, RightRedZoneTy, NULL);
1001 Constant *NewInitializer = ConstantStruct::get(
1002 NewTy, G->getInitializer(),
1003 Constant::getNullValue(RightRedZoneTy), NULL);
1004
Kostya Serebryany086a4722013-03-18 08:05:29 +00001005 GlobalVariable *Name = createPrivateGlobalForString(M, G->getName());
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001006
1007 // Create a new global variable with enough space for a redzone.
Bill Wendling55a1a592013-08-06 22:52:42 +00001008 GlobalValue::LinkageTypes Linkage = G->getLinkage();
1009 if (G->isConstant() && Linkage == GlobalValue::PrivateLinkage)
1010 Linkage = GlobalValue::InternalLinkage;
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001011 GlobalVariable *NewGlobal = new GlobalVariable(
Bill Wendling55a1a592013-08-06 22:52:42 +00001012 M, NewTy, G->isConstant(), Linkage,
Hans Wennborgce718ff2012-06-23 11:37:03 +00001013 NewInitializer, "", G, G->getThreadLocalMode());
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001014 NewGlobal->copyAttributesFrom(G);
Kostya Serebryany63f08462013-01-24 10:35:40 +00001015 NewGlobal->setAlignment(MinRZ);
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001016
1017 Value *Indices2[2];
1018 Indices2[0] = IRB.getInt32(0);
1019 Indices2[1] = IRB.getInt32(0);
1020
1021 G->replaceAllUsesWith(
Kostya Serebryanyf1639ab2012-01-28 04:27:16 +00001022 ConstantExpr::getGetElementPtr(NewGlobal, Indices2, true));
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001023 NewGlobal->takeName(G);
1024 G->eraseFromParent();
1025
1026 Initializers[i] = ConstantStruct::get(
1027 GlobalStructTy,
1028 ConstantExpr::getPointerCast(NewGlobal, IntptrTy),
1029 ConstantInt::get(IntptrTy, SizeInBytes),
1030 ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize),
1031 ConstantExpr::getPointerCast(Name, IntptrTy),
Kostya Serebryany086a4722013-03-18 08:05:29 +00001032 ConstantExpr::getPointerCast(ModuleName, IntptrTy),
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +00001033 ConstantInt::get(IntptrTy, GlobalHasDynamicInitializer),
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001034 NULL);
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +00001035
1036 // Populate the first and last globals declared in this TU.
Alexey Samsonovca825ea2013-03-26 13:05:41 +00001037 if (CheckInitOrder && GlobalHasDynamicInitializer)
1038 HasDynamicallyInitializedGlobals = true;
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +00001039
Kostya Serebryany324d96b2012-10-17 13:40:06 +00001040 DEBUG(dbgs() << "NEW GLOBAL: " << *NewGlobal << "\n");
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001041 }
1042
1043 ArrayType *ArrayOfGlobalStructTy = ArrayType::get(GlobalStructTy, n);
1044 GlobalVariable *AllGlobals = new GlobalVariable(
Bill Wendling55a1a592013-08-06 22:52:42 +00001045 M, ArrayOfGlobalStructTy, false, GlobalVariable::InternalLinkage,
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001046 ConstantArray::get(ArrayOfGlobalStructTy, Initializers), "");
1047
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +00001048 // Create calls for poisoning before initializers run and unpoisoning after.
Alexey Samsonovca825ea2013-03-26 13:05:41 +00001049 if (CheckInitOrder && HasDynamicallyInitializedGlobals)
1050 createInitializerPoisonCalls(M, ModuleName);
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001051 IRB.CreateCall2(AsanRegisterGlobals,
1052 IRB.CreatePointerCast(AllGlobals, IntptrTy),
1053 ConstantInt::get(IntptrTy, n));
1054
Kostya Serebryany7bcfc992011-12-15 21:59:03 +00001055 // We also need to unregister globals at the end, e.g. when a shared library
1056 // gets closed.
1057 Function *AsanDtorFunction = Function::Create(
1058 FunctionType::get(Type::getVoidTy(*C), false),
1059 GlobalValue::InternalLinkage, kAsanModuleDtorName, &M);
1060 BasicBlock *AsanDtorBB = BasicBlock::Create(*C, "", AsanDtorFunction);
1061 IRBuilder<> IRB_Dtor(ReturnInst::Create(*C, AsanDtorBB));
Kostya Serebryany7bcfc992011-12-15 21:59:03 +00001062 IRB_Dtor.CreateCall2(AsanUnregisterGlobals,
1063 IRB.CreatePointerCast(AllGlobals, IntptrTy),
1064 ConstantInt::get(IntptrTy, n));
1065 appendToGlobalDtors(M, AsanDtorFunction, kAsanCtorAndCtorPriority);
1066
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001067 DEBUG(dbgs() << M);
1068 return true;
1069}
1070
Kostya Serebryany8b390ff2012-11-29 09:54:21 +00001071void AddressSanitizer::initializeCallbacks(Module &M) {
1072 IRBuilder<> IRB(*C);
Kostya Serebryany9db5b5f2012-07-16 14:09:42 +00001073 // Create __asan_report* callbacks.
1074 for (size_t AccessIsWrite = 0; AccessIsWrite <= 1; AccessIsWrite++) {
1075 for (size_t AccessSizeIndex = 0; AccessSizeIndex < kNumberOfAccessSizes;
1076 AccessSizeIndex++) {
1077 // IsWrite and TypeSize are encoded in the function name.
1078 std::string FunctionName = std::string(kAsanReportErrorTemplate) +
1079 (AccessIsWrite ? "store" : "load") + itostr(1 << AccessSizeIndex);
Kostya Serebryany4f0c6962012-07-17 11:04:12 +00001080 // If we are merging crash callbacks, they have two parameters.
Kostya Serebryany7846c1c2012-11-07 12:42:18 +00001081 AsanErrorCallback[AccessIsWrite][AccessSizeIndex] =
1082 checkInterfaceFunction(M.getOrInsertFunction(
1083 FunctionName, IRB.getVoidTy(), IntptrTy, NULL));
Kostya Serebryany9db5b5f2012-07-16 14:09:42 +00001084 }
1085 }
Kostya Serebryany6ecccdb2013-02-19 11:29:21 +00001086 AsanErrorCallbackSized[0] = checkInterfaceFunction(M.getOrInsertFunction(
1087 kAsanReportLoadN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1088 AsanErrorCallbackSized[1] = checkInterfaceFunction(M.getOrInsertFunction(
1089 kAsanReportStoreN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
Kostya Serebryanyee4edec2012-10-15 14:20:06 +00001090
Kostya Serebryanyee4edec2012-10-15 14:20:06 +00001091 AsanHandleNoReturnFunc = checkInterfaceFunction(M.getOrInsertFunction(
1092 kAsanHandleNoReturnName, IRB.getVoidTy(), NULL));
Bob Wilson4b899142013-11-15 07:16:09 +00001093 AsanCovFunction = checkInterfaceFunction(M.getOrInsertFunction(
1094 kAsanCovName, IRB.getVoidTy(), IntptrTy, NULL));
Kostya Serebryanyf7b08222012-07-20 09:54:50 +00001095 // We insert an empty inline asm after __asan_report* to avoid callback merge.
1096 EmptyAsm = InlineAsm::get(FunctionType::get(IRB.getVoidTy(), false),
1097 StringRef(""), StringRef(""),
1098 /*hasSideEffects=*/true);
Kostya Serebryany8b390ff2012-11-29 09:54:21 +00001099}
1100
Alexey Samsonov19cd7e92013-01-16 13:23:28 +00001101void AddressSanitizer::emitShadowMapping(Module &M, IRBuilder<> &IRB) const {
Alexey Samsonov11af9a82013-01-17 11:12:32 +00001102 // Tell the values of mapping offset and scale to the run-time.
1103 GlobalValue *asan_mapping_offset =
1104 new GlobalVariable(M, IntptrTy, true, GlobalValue::LinkOnceODRLinkage,
1105 ConstantInt::get(IntptrTy, Mapping.Offset),
1106 kAsanMappingOffsetName);
1107 // Read the global, otherwise it may be optimized away.
1108 IRB.CreateLoad(asan_mapping_offset, true);
Alexey Samsonov19cd7e92013-01-16 13:23:28 +00001109
Alexey Samsonov11af9a82013-01-17 11:12:32 +00001110 GlobalValue *asan_mapping_scale =
1111 new GlobalVariable(M, IntptrTy, true, GlobalValue::LinkOnceODRLinkage,
1112 ConstantInt::get(IntptrTy, Mapping.Scale),
1113 kAsanMappingScaleName);
1114 // Read the global, otherwise it may be optimized away.
1115 IRB.CreateLoad(asan_mapping_scale, true);
Alexey Samsonov19cd7e92013-01-16 13:23:28 +00001116}
1117
Kostya Serebryany8b390ff2012-11-29 09:54:21 +00001118// virtual
1119bool AddressSanitizer::doInitialization(Module &M) {
1120 // Initialize the private fields. No one has accessed them before.
1121 TD = getAnalysisIfAvailable<DataLayout>();
1122
1123 if (!TD)
1124 return false;
Alexey Samsonove39e1312013-08-12 11:46:09 +00001125 BL.reset(SpecialCaseList::createOrDie(BlacklistFile));
Kostya Serebryany8b390ff2012-11-29 09:54:21 +00001126 DynamicallyInitializedGlobals.Init(M);
1127
1128 C = &(M.getContext());
1129 LongSize = TD->getPointerSizeInBits();
1130 IntptrTy = Type::getIntNTy(*C, LongSize);
Kostya Serebryany8b390ff2012-11-29 09:54:21 +00001131
1132 AsanCtorFunction = Function::Create(
1133 FunctionType::get(Type::getVoidTy(*C), false),
1134 GlobalValue::InternalLinkage, kAsanModuleCtorName, &M);
1135 BasicBlock *AsanCtorBB = BasicBlock::Create(*C, "", AsanCtorFunction);
1136 // call __asan_init in the module ctor.
1137 IRBuilder<> IRB(ReturnInst::Create(*C, AsanCtorBB));
1138 AsanInitFunction = checkInterfaceFunction(
1139 M.getOrInsertFunction(kAsanInitName, IRB.getVoidTy(), NULL));
1140 AsanInitFunction->setLinkage(Function::ExternalLinkage);
1141 IRB.CreateCall(AsanInitFunction);
Kostya Serebryany9db5b5f2012-07-16 14:09:42 +00001142
Alexey Samsonov11af9a82013-01-17 11:12:32 +00001143 Mapping = getShadowMapping(M, LongSize, ZeroBaseShadow);
Alexey Samsonov19cd7e92013-01-16 13:23:28 +00001144 emitShadowMapping(M, IRB);
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001145
Kostya Serebryany7bcfc992011-12-15 21:59:03 +00001146 appendToGlobalCtors(M, AsanCtorFunction, kAsanCtorAndCtorPriority);
Kostya Serebryanyee4edec2012-10-15 14:20:06 +00001147 return true;
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001148}
1149
Kostya Serebryanya1a8a322012-01-30 23:50:10 +00001150bool AddressSanitizer::maybeInsertAsanInitAtFunctionEntry(Function &F) {
1151 // For each NSObject descendant having a +load method, this method is invoked
1152 // by the ObjC runtime before any of the static constructors is called.
1153 // Therefore we need to instrument such methods with a call to __asan_init
1154 // at the beginning in order to initialize our runtime before any access to
1155 // the shadow memory.
1156 // We cannot just ignore these methods, because they may call other
1157 // instrumented functions.
1158 if (F.getName().find(" load]") != std::string::npos) {
1159 IRBuilder<> IRB(F.begin()->begin());
1160 IRB.CreateCall(AsanInitFunction);
1161 return true;
1162 }
1163 return false;
1164}
1165
Bob Wilson4b899142013-11-15 07:16:09 +00001166// Poor man's coverage that works with ASan.
1167// We create a Guard boolean variable with the same linkage
1168// as the function and inject this code into the entry block:
1169// if (*Guard) {
1170// __sanitizer_cov(&F);
1171// *Guard = 1;
1172// }
1173// The accesses to Guard are atomic. The rest of the logic is
1174// in __sanitizer_cov (it's fine to call it more than once).
1175//
1176// This coverage implementation provides very limited data:
1177// it only tells if a given function was ever executed.
1178// No counters, no per-basic-block or per-edge data.
1179// But for many use cases this is what we need and the added slowdown
1180// is negligible. This simple implementation will probably be obsoleted
1181// by the upcoming Clang-based coverage implementation.
1182// By having it here and now we hope to
1183// a) get the functionality to users earlier and
1184// b) collect usage statistics to help improve Clang coverage design.
1185bool AddressSanitizer::InjectCoverage(Function &F) {
1186 if (!ClCoverage) return false;
1187 IRBuilder<> IRB(F.getEntryBlock().getFirstInsertionPt());
1188 Type *Int8Ty = IRB.getInt8Ty();
1189 GlobalVariable *Guard = new GlobalVariable(
Kostya Serebryany8f15c682013-11-15 09:52:05 +00001190 *F.getParent(), Int8Ty, false, GlobalValue::PrivateLinkage,
Bob Wilson4b899142013-11-15 07:16:09 +00001191 Constant::getNullValue(Int8Ty), "__asan_gen_cov_" + F.getName());
1192 LoadInst *Load = IRB.CreateLoad(Guard);
1193 Load->setAtomic(Monotonic);
1194 Load->setAlignment(1);
1195 Value *Cmp = IRB.CreateICmpEQ(Constant::getNullValue(Int8Ty), Load);
1196 Instruction *Ins = SplitBlockAndInsertIfThen(cast<Instruction>(Cmp), false);
1197 IRB.SetInsertPoint(Ins);
1198 // We pass &F to __sanitizer_cov. We could avoid this and rely on
1199 // GET_CALLER_PC, but having the PC of the first instruction is just nice.
1200 IRB.CreateCall(AsanCovFunction, IRB.CreatePointerCast(&F, IntptrTy));
1201 StoreInst *Store = IRB.CreateStore(ConstantInt::get(Int8Ty, 1), Guard);
1202 Store->setAtomic(Monotonic);
1203 Store->setAlignment(1);
1204 return true;
1205}
1206
Kostya Serebryanyee4edec2012-10-15 14:20:06 +00001207bool AddressSanitizer::runOnFunction(Function &F) {
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001208 if (BL->isIn(F)) return false;
1209 if (&F == AsanCtorFunction) return false;
Kostya Serebryany3797adb2013-03-18 07:33:49 +00001210 if (F.getLinkage() == GlobalValue::AvailableExternallyLinkage) return false;
Kostya Serebryany324d96b2012-10-17 13:40:06 +00001211 DEBUG(dbgs() << "ASAN instrumenting:\n" << F << "\n");
Kostya Serebryany8b390ff2012-11-29 09:54:21 +00001212 initializeCallbacks(*F.getParent());
Kostya Serebryanya1a8a322012-01-30 23:50:10 +00001213
Kostya Serebryany8eec41f2013-02-26 06:58:09 +00001214 // If needed, insert __asan_init before checking for SanitizeAddress attr.
Kostya Serebryanya1a8a322012-01-30 23:50:10 +00001215 maybeInsertAsanInitAtFunctionEntry(F);
1216
Kostya Serebryany20985712013-06-26 09:18:17 +00001217 if (!F.hasFnAttribute(Attribute::SanitizeAddress))
Bill Wendling67658342012-10-09 07:45:08 +00001218 return false;
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001219
1220 if (!ClDebugFunc.empty() && ClDebugFunc != F.getName())
1221 return false;
Bill Wendling67658342012-10-09 07:45:08 +00001222
1223 // We want to instrument every address only once per basic block (unless there
1224 // are calls between uses).
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001225 SmallSet<Value*, 16> TempsToInstrument;
1226 SmallVector<Instruction*, 16> ToInstrument;
Kostya Serebryany95e3cf42012-02-08 21:36:17 +00001227 SmallVector<Instruction*, 8> NoReturnCalls;
Kostya Serebryany20985712013-06-26 09:18:17 +00001228 int NumAllocas = 0;
Kostya Serebryanye6cf2e02012-05-30 09:04:06 +00001229 bool IsWrite;
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001230
1231 // Fill the set of memory operations to instrument.
1232 for (Function::iterator FI = F.begin(), FE = F.end();
1233 FI != FE; ++FI) {
1234 TempsToInstrument.clear();
Kostya Serebryany324cbb82012-06-28 09:34:41 +00001235 int NumInsnsPerBB = 0;
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001236 for (BasicBlock::iterator BI = FI->begin(), BE = FI->end();
1237 BI != BE; ++BI) {
Kostya Serebryanybcb55ce2012-01-11 18:15:23 +00001238 if (LooksLikeCodeInBug11395(BI)) return false;
Kostya Serebryanye6cf2e02012-05-30 09:04:06 +00001239 if (Value *Addr = isInterestingMemoryAccess(BI, &IsWrite)) {
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001240 if (ClOpt && ClOptSameTemp) {
1241 if (!TempsToInstrument.insert(Addr))
1242 continue; // We've seen this temp in the current BB.
1243 }
1244 } else if (isa<MemIntrinsic>(BI) && ClMemIntrin) {
1245 // ok, take it.
1246 } else {
Kostya Serebryany20985712013-06-26 09:18:17 +00001247 if (isa<AllocaInst>(BI))
1248 NumAllocas++;
Kostya Serebryany1479c9b2013-02-20 12:35:15 +00001249 CallSite CS(BI);
1250 if (CS) {
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001251 // A call inside BB.
1252 TempsToInstrument.clear();
Kostya Serebryany1479c9b2013-02-20 12:35:15 +00001253 if (CS.doesNotReturn())
1254 NoReturnCalls.push_back(CS.getInstruction());
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001255 }
1256 continue;
1257 }
1258 ToInstrument.push_back(BI);
Kostya Serebryany324cbb82012-06-28 09:34:41 +00001259 NumInsnsPerBB++;
1260 if (NumInsnsPerBB >= ClMaxInsnsToInstrumentPerBB)
1261 break;
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001262 }
1263 }
1264
Kostya Serebryany20985712013-06-26 09:18:17 +00001265 Function *UninstrumentedDuplicate = 0;
1266 bool LikelyToInstrument =
1267 !NoReturnCalls.empty() || !ToInstrument.empty() || (NumAllocas > 0);
1268 if (ClKeepUninstrumented && LikelyToInstrument) {
1269 ValueToValueMapTy VMap;
1270 UninstrumentedDuplicate = CloneFunction(&F, VMap, false);
1271 UninstrumentedDuplicate->removeFnAttr(Attribute::SanitizeAddress);
1272 UninstrumentedDuplicate->setName("NOASAN_" + F.getName());
1273 F.getParent()->getFunctionList().push_back(UninstrumentedDuplicate);
1274 }
1275
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001276 // Instrument.
1277 int NumInstrumented = 0;
1278 for (size_t i = 0, n = ToInstrument.size(); i != n; i++) {
1279 Instruction *Inst = ToInstrument[i];
1280 if (ClDebugMin < 0 || ClDebugMax < 0 ||
1281 (NumInstrumented >= ClDebugMin && NumInstrumented <= ClDebugMax)) {
Kostya Serebryanye6cf2e02012-05-30 09:04:06 +00001282 if (isInterestingMemoryAccess(Inst, &IsWrite))
Kostya Serebryanyee4edec2012-10-15 14:20:06 +00001283 instrumentMop(Inst);
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001284 else
Kostya Serebryanyee4edec2012-10-15 14:20:06 +00001285 instrumentMemIntrinsic(cast<MemIntrinsic>(Inst));
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001286 }
1287 NumInstrumented++;
1288 }
1289
Alexey Samsonov59cca132012-12-25 12:04:36 +00001290 FunctionStackPoisoner FSP(F, *this);
1291 bool ChangedStack = FSP.runOnFunction();
Kostya Serebryany95e3cf42012-02-08 21:36:17 +00001292
1293 // We must unpoison the stack before every NoReturn call (throw, _exit, etc).
1294 // See e.g. http://code.google.com/p/address-sanitizer/issues/detail?id=37
1295 for (size_t i = 0, n = NoReturnCalls.size(); i != n; i++) {
1296 Instruction *CI = NoReturnCalls[i];
1297 IRBuilder<> IRB(CI);
Kostya Serebryanyee4edec2012-10-15 14:20:06 +00001298 IRB.CreateCall(AsanHandleNoReturnFunc);
Kostya Serebryany95e3cf42012-02-08 21:36:17 +00001299 }
1300
Kostya Serebryany20985712013-06-26 09:18:17 +00001301 bool res = NumInstrumented > 0 || ChangedStack || !NoReturnCalls.empty();
Bob Wilson4b899142013-11-15 07:16:09 +00001302
1303 if (InjectCoverage(F))
1304 res = true;
1305
Kostya Serebryany20985712013-06-26 09:18:17 +00001306 DEBUG(dbgs() << "ASAN done instrumenting: " << res << " " << F << "\n");
1307
1308 if (ClKeepUninstrumented) {
1309 if (!res) {
1310 // No instrumentation is done, no need for the duplicate.
1311 if (UninstrumentedDuplicate)
1312 UninstrumentedDuplicate->eraseFromParent();
1313 } else {
1314 // The function was instrumented. We must have the duplicate.
1315 assert(UninstrumentedDuplicate);
1316 UninstrumentedDuplicate->setSection("NOASAN");
1317 assert(!F.hasSection());
1318 F.setSection("ASAN");
1319 }
1320 }
1321
1322 return res;
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001323}
1324
1325static uint64_t ValueForPoison(uint64_t PoisonByte, size_t ShadowRedzoneSize) {
1326 if (ShadowRedzoneSize == 1) return PoisonByte;
1327 if (ShadowRedzoneSize == 2) return (PoisonByte << 8) + PoisonByte;
1328 if (ShadowRedzoneSize == 4)
1329 return (PoisonByte << 24) + (PoisonByte << 16) +
1330 (PoisonByte << 8) + (PoisonByte);
Craig Topper85814382012-02-07 05:05:23 +00001331 llvm_unreachable("ShadowRedzoneSize is either 1, 2 or 4");
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001332}
1333
1334static void PoisonShadowPartialRightRedzone(uint8_t *Shadow,
1335 size_t Size,
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +00001336 size_t RZSize,
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001337 size_t ShadowGranularity,
1338 uint8_t Magic) {
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +00001339 for (size_t i = 0; i < RZSize;
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001340 i+= ShadowGranularity, Shadow++) {
1341 if (i + ShadowGranularity <= Size) {
1342 *Shadow = 0; // fully addressable
1343 } else if (i >= Size) {
1344 *Shadow = Magic; // unaddressable
1345 } else {
1346 *Shadow = Size - i; // first Size-i bytes are addressable
1347 }
1348 }
1349}
1350
Alexey Samsonov59cca132012-12-25 12:04:36 +00001351// Workaround for bug 11395: we don't want to instrument stack in functions
1352// with large assembly blobs (32-bit only), otherwise reg alloc may crash.
1353// FIXME: remove once the bug 11395 is fixed.
1354bool AddressSanitizer::LooksLikeCodeInBug11395(Instruction *I) {
1355 if (LongSize != 32) return false;
1356 CallInst *CI = dyn_cast<CallInst>(I);
1357 if (!CI || !CI->isInlineAsm()) return false;
1358 if (CI->getNumArgOperands() <= 5) return false;
1359 // We have inline assembly with quite a few arguments.
1360 return true;
1361}
1362
1363void FunctionStackPoisoner::initializeCallbacks(Module &M) {
1364 IRBuilder<> IRB(*C);
Kostya Serebryanyf3d4b352013-09-10 13:16:56 +00001365 for (int i = 0; i <= kMaxAsanStackMallocSizeClass; i++) {
1366 std::string Suffix = itostr(i);
1367 AsanStackMallocFunc[i] = checkInterfaceFunction(
1368 M.getOrInsertFunction(kAsanStackMallocNameTemplate + Suffix, IntptrTy,
1369 IntptrTy, IntptrTy, NULL));
1370 AsanStackFreeFunc[i] = checkInterfaceFunction(M.getOrInsertFunction(
1371 kAsanStackFreeNameTemplate + Suffix, IRB.getVoidTy(), IntptrTy,
1372 IntptrTy, IntptrTy, NULL));
1373 }
Alexey Samsonov59cca132012-12-25 12:04:36 +00001374 AsanPoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1375 kAsanPoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1376 AsanUnpoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1377 kAsanUnpoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1378}
1379
1380void FunctionStackPoisoner::poisonRedZones(
Jakub Staszak4c710642013-08-09 20:53:48 +00001381 const ArrayRef<AllocaInst*> &AllocaVec, IRBuilder<> &IRB, Value *ShadowBase,
Alexey Samsonov59cca132012-12-25 12:04:36 +00001382 bool DoPoison) {
Alexey Samsonov19cd7e92013-01-16 13:23:28 +00001383 size_t ShadowRZSize = RedzoneSize() >> Mapping.Scale;
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001384 assert(ShadowRZSize >= 1 && ShadowRZSize <= 4);
1385 Type *RZTy = Type::getIntNTy(*C, ShadowRZSize * 8);
1386 Type *RZPtrTy = PointerType::get(RZTy, 0);
1387
1388 Value *PoisonLeft = ConstantInt::get(RZTy,
1389 ValueForPoison(DoPoison ? kAsanStackLeftRedzoneMagic : 0LL, ShadowRZSize));
1390 Value *PoisonMid = ConstantInt::get(RZTy,
1391 ValueForPoison(DoPoison ? kAsanStackMidRedzoneMagic : 0LL, ShadowRZSize));
1392 Value *PoisonRight = ConstantInt::get(RZTy,
1393 ValueForPoison(DoPoison ? kAsanStackRightRedzoneMagic : 0LL, ShadowRZSize));
1394
1395 // poison the first red zone.
1396 IRB.CreateStore(PoisonLeft, IRB.CreateIntToPtr(ShadowBase, RZPtrTy));
1397
1398 // poison all other red zones.
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +00001399 uint64_t Pos = RedzoneSize();
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001400 for (size_t i = 0, n = AllocaVec.size(); i < n; i++) {
1401 AllocaInst *AI = AllocaVec[i];
1402 uint64_t SizeInBytes = getAllocaSizeInBytes(AI);
1403 uint64_t AlignedSize = getAlignedAllocaSize(AI);
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +00001404 assert(AlignedSize - SizeInBytes < RedzoneSize());
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001405 Value *Ptr = NULL;
1406
1407 Pos += AlignedSize;
1408
1409 assert(ShadowBase->getType() == IntptrTy);
1410 if (SizeInBytes < AlignedSize) {
1411 // Poison the partial redzone at right
1412 Ptr = IRB.CreateAdd(
1413 ShadowBase, ConstantInt::get(IntptrTy,
Alexey Samsonov19cd7e92013-01-16 13:23:28 +00001414 (Pos >> Mapping.Scale) - ShadowRZSize));
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +00001415 size_t AddressableBytes = RedzoneSize() - (AlignedSize - SizeInBytes);
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001416 uint32_t Poison = 0;
1417 if (DoPoison) {
1418 PoisonShadowPartialRightRedzone((uint8_t*)&Poison, AddressableBytes,
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +00001419 RedzoneSize(),
Alexey Samsonov19cd7e92013-01-16 13:23:28 +00001420 1ULL << Mapping.Scale,
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001421 kAsanStackPartialRedzoneMagic);
Kostya Serebryany3e1d45b2013-06-03 14:46:56 +00001422 Poison =
1423 ASan.TD->isLittleEndian()
1424 ? support::endian::byte_swap<uint32_t, support::little>(Poison)
1425 : support::endian::byte_swap<uint32_t, support::big>(Poison);
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001426 }
1427 Value *PartialPoison = ConstantInt::get(RZTy, Poison);
1428 IRB.CreateStore(PartialPoison, IRB.CreateIntToPtr(Ptr, RZPtrTy));
1429 }
1430
1431 // Poison the full redzone at right.
1432 Ptr = IRB.CreateAdd(ShadowBase,
Alexey Samsonov19cd7e92013-01-16 13:23:28 +00001433 ConstantInt::get(IntptrTy, Pos >> Mapping.Scale));
Alexey Samsonov1c8b8252012-12-27 08:50:58 +00001434 bool LastAlloca = (i == AllocaVec.size() - 1);
1435 Value *Poison = LastAlloca ? PoisonRight : PoisonMid;
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001436 IRB.CreateStore(Poison, IRB.CreateIntToPtr(Ptr, RZPtrTy));
1437
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +00001438 Pos += RedzoneSize();
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001439 }
1440}
1441
Kostya Serebryanyf3d4b352013-09-10 13:16:56 +00001442// Fake stack allocator (asan_fake_stack.h) has 11 size classes
1443// for every power of 2 from kMinStackMallocSize to kMaxAsanStackMallocSizeClass
1444static int StackMallocSizeClass(uint64_t LocalStackSize) {
1445 assert(LocalStackSize <= kMaxStackMallocSize);
1446 uint64_t MaxSize = kMinStackMallocSize;
1447 for (int i = 0; ; i++, MaxSize *= 2)
1448 if (LocalStackSize <= MaxSize)
1449 return i;
1450 llvm_unreachable("impossible LocalStackSize");
1451}
1452
Kostya Serebryany671c3ba2013-09-17 12:14:50 +00001453// Set Size bytes starting from ShadowBase to kAsanStackAfterReturnMagic.
1454// We can not use MemSet intrinsic because it may end up calling the actual
1455// memset. Size is a multiple of 8.
1456// Currently this generates 8-byte stores on x86_64; it may be better to
1457// generate wider stores.
1458void FunctionStackPoisoner::SetShadowToStackAfterReturnInlined(
1459 IRBuilder<> &IRB, Value *ShadowBase, int Size) {
1460 assert(!(Size % 8));
1461 assert(kAsanStackAfterReturnMagic == 0xf5);
1462 for (int i = 0; i < Size; i += 8) {
1463 Value *p = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1464 IRB.CreateStore(ConstantInt::get(IRB.getInt64Ty(), 0xf5f5f5f5f5f5f5f5ULL),
1465 IRB.CreateIntToPtr(p, IRB.getInt64Ty()->getPointerTo()));
1466 }
1467}
1468
Alexey Samsonov59cca132012-12-25 12:04:36 +00001469void FunctionStackPoisoner::poisonStack() {
Alexey Samsonov59cca132012-12-25 12:04:36 +00001470 uint64_t LocalStackSize = TotalStackSize +
1471 (AllocaVec.size() + 1) * RedzoneSize();
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001472
Alexey Samsonov59cca132012-12-25 12:04:36 +00001473 bool DoStackMalloc = ASan.CheckUseAfterReturn
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001474 && LocalStackSize <= kMaxStackMallocSize;
Kostya Serebryanyf3d4b352013-09-10 13:16:56 +00001475 int StackMallocIdx = -1;
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001476
Alexey Samsonov1c8b8252012-12-27 08:50:58 +00001477 assert(AllocaVec.size() > 0);
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001478 Instruction *InsBefore = AllocaVec[0];
1479 IRBuilder<> IRB(InsBefore);
1480
1481
1482 Type *ByteArrayTy = ArrayType::get(IRB.getInt8Ty(), LocalStackSize);
1483 AllocaInst *MyAlloca =
1484 new AllocaInst(ByteArrayTy, "MyAlloca", InsBefore);
Alexey Samsonov59cca132012-12-25 12:04:36 +00001485 if (ClRealignStack && StackAlignment < RedzoneSize())
1486 StackAlignment = RedzoneSize();
1487 MyAlloca->setAlignment(StackAlignment);
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001488 assert(MyAlloca->isStaticAlloca());
1489 Value *OrigStackBase = IRB.CreatePointerCast(MyAlloca, IntptrTy);
1490 Value *LocalStackBase = OrigStackBase;
1491
1492 if (DoStackMalloc) {
Kostya Serebryanyac04aba2013-09-18 14:07:14 +00001493 // LocalStackBase = OrigStackBase
1494 // if (__asan_option_detect_stack_use_after_return)
1495 // LocalStackBase = __asan_stack_malloc_N(LocalStackBase, OrigStackBase);
Kostya Serebryanyf3d4b352013-09-10 13:16:56 +00001496 StackMallocIdx = StackMallocSizeClass(LocalStackSize);
1497 assert(StackMallocIdx <= kMaxAsanStackMallocSizeClass);
Kostya Serebryanyac04aba2013-09-18 14:07:14 +00001498 Constant *OptionDetectUAR = F.getParent()->getOrInsertGlobal(
1499 kAsanOptionDetectUAR, IRB.getInt32Ty());
1500 Value *Cmp = IRB.CreateICmpNE(IRB.CreateLoad(OptionDetectUAR),
1501 Constant::getNullValue(IRB.getInt32Ty()));
1502 Instruction *Term =
1503 SplitBlockAndInsertIfThen(cast<Instruction>(Cmp), false);
1504 BasicBlock *CmpBlock = cast<Instruction>(Cmp)->getParent();
1505 IRBuilder<> IRBIf(Term);
1506 LocalStackBase = IRBIf.CreateCall2(
1507 AsanStackMallocFunc[StackMallocIdx],
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001508 ConstantInt::get(IntptrTy, LocalStackSize), OrigStackBase);
Kostya Serebryanyac04aba2013-09-18 14:07:14 +00001509 BasicBlock *SetBlock = cast<Instruction>(LocalStackBase)->getParent();
1510 IRB.SetInsertPoint(InsBefore);
1511 PHINode *Phi = IRB.CreatePHI(IntptrTy, 2);
1512 Phi->addIncoming(OrigStackBase, CmpBlock);
1513 Phi->addIncoming(LocalStackBase, SetBlock);
1514 LocalStackBase = Phi;
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001515 }
1516
Kostya Serebryany30160562013-03-22 10:37:20 +00001517 // This string will be parsed by the run-time (DescribeAddressIfStack).
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001518 SmallString<2048> StackDescriptionStorage;
1519 raw_svector_ostream StackDescription(StackDescriptionStorage);
Kostya Serebryany30160562013-03-22 10:37:20 +00001520 StackDescription << AllocaVec.size() << " ";
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001521
Alexey Samsonov1c8b8252012-12-27 08:50:58 +00001522 // Insert poison calls for lifetime intrinsics for alloca.
1523 bool HavePoisonedAllocas = false;
1524 for (size_t i = 0, n = AllocaPoisonCallVec.size(); i < n; i++) {
1525 const AllocaPoisonCall &APC = AllocaPoisonCallVec[i];
1526 IntrinsicInst *II = APC.InsBefore;
1527 AllocaInst *AI = findAllocaForValue(II->getArgOperand(1));
1528 assert(AI);
1529 IRBuilder<> IRB(II);
1530 poisonAlloca(AI, APC.Size, IRB, APC.DoPoison);
1531 HavePoisonedAllocas |= APC.DoPoison;
1532 }
1533
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +00001534 uint64_t Pos = RedzoneSize();
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001535 // Replace Alloca instructions with base+offset.
1536 for (size_t i = 0, n = AllocaVec.size(); i < n; i++) {
1537 AllocaInst *AI = AllocaVec[i];
1538 uint64_t SizeInBytes = getAllocaSizeInBytes(AI);
1539 StringRef Name = AI->getName();
1540 StackDescription << Pos << " " << SizeInBytes << " "
1541 << Name.size() << " " << Name << " ";
1542 uint64_t AlignedSize = getAlignedAllocaSize(AI);
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +00001543 assert((AlignedSize % RedzoneSize()) == 0);
Alexey Samsonovf985f442012-12-04 01:34:23 +00001544 Value *NewAllocaPtr = IRB.CreateIntToPtr(
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001545 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, Pos)),
Alexey Samsonovf985f442012-12-04 01:34:23 +00001546 AI->getType());
Alexey Samsonov1afbb512012-12-12 14:31:53 +00001547 replaceDbgDeclareForAlloca(AI, NewAllocaPtr, DIB);
Alexey Samsonovf985f442012-12-04 01:34:23 +00001548 AI->replaceAllUsesWith(NewAllocaPtr);
Kostya Serebryanyb9a12ea2012-11-22 03:18:50 +00001549 Pos += AlignedSize + RedzoneSize();
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001550 }
1551 assert(Pos == LocalStackSize);
1552
Kostya Serebryany30160562013-03-22 10:37:20 +00001553 // The left-most redzone has enough space for at least 4 pointers.
1554 // Write the Magic value to redzone[0].
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001555 Value *BasePlus0 = IRB.CreateIntToPtr(LocalStackBase, IntptrPtrTy);
1556 IRB.CreateStore(ConstantInt::get(IntptrTy, kCurrentStackFrameMagic),
1557 BasePlus0);
Kostya Serebryany30160562013-03-22 10:37:20 +00001558 // Write the frame description constant to redzone[1].
1559 Value *BasePlus1 = IRB.CreateIntToPtr(
1560 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, ASan.LongSize/8)),
1561 IntptrPtrTy);
Alexey Samsonov9ce84c12012-11-02 12:20:34 +00001562 GlobalVariable *StackDescriptionGlobal =
Kostya Serebryanya5f54f12012-11-01 13:42:40 +00001563 createPrivateGlobalForString(*F.getParent(), StackDescription.str());
Alexey Samsonov59cca132012-12-25 12:04:36 +00001564 Value *Description = IRB.CreatePointerCast(StackDescriptionGlobal,
1565 IntptrTy);
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001566 IRB.CreateStore(Description, BasePlus1);
Kostya Serebryany30160562013-03-22 10:37:20 +00001567 // Write the PC to redzone[2].
1568 Value *BasePlus2 = IRB.CreateIntToPtr(
1569 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy,
1570 2 * ASan.LongSize/8)),
1571 IntptrPtrTy);
1572 IRB.CreateStore(IRB.CreatePointerCast(&F, IntptrTy), BasePlus2);
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001573
1574 // Poison the stack redzones at the entry.
Alexey Samsonov59cca132012-12-25 12:04:36 +00001575 Value *ShadowBase = ASan.memToShadow(LocalStackBase, IRB);
1576 poisonRedZones(AllocaVec, IRB, ShadowBase, true);
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001577
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001578 // Unpoison the stack before all ret instructions.
1579 for (size_t i = 0, n = RetVec.size(); i < n; i++) {
1580 Instruction *Ret = RetVec[i];
1581 IRBuilder<> IRBRet(Ret);
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001582 // Mark the current frame as retired.
1583 IRBRet.CreateStore(ConstantInt::get(IntptrTy, kRetiredStackFrameMagic),
1584 BasePlus0);
1585 // Unpoison the stack.
Alexey Samsonov59cca132012-12-25 12:04:36 +00001586 poisonRedZones(AllocaVec, IRBRet, ShadowBase, false);
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001587 if (DoStackMalloc) {
Kostya Serebryanyf3d4b352013-09-10 13:16:56 +00001588 assert(StackMallocIdx >= 0);
Alexey Samsonovf985f442012-12-04 01:34:23 +00001589 // In use-after-return mode, mark the whole stack frame unaddressable.
Kostya Serebryany671c3ba2013-09-17 12:14:50 +00001590 if (StackMallocIdx <= 4) {
1591 // For small sizes inline the whole thing:
1592 // if LocalStackBase != OrigStackBase:
1593 // memset(ShadowBase, kAsanStackAfterReturnMagic, ShadowSize);
1594 // **SavedFlagPtr(LocalStackBase) = 0
1595 // FIXME: if LocalStackBase != OrigStackBase don't call poisonRedZones.
1596 Value *Cmp = IRBRet.CreateICmpNE(LocalStackBase, OrigStackBase);
1597 TerminatorInst *PoisonTerm =
1598 SplitBlockAndInsertIfThen(cast<Instruction>(Cmp), false);
1599 IRBuilder<> IRBPoison(PoisonTerm);
1600 int ClassSize = kMinStackMallocSize << StackMallocIdx;
1601 SetShadowToStackAfterReturnInlined(IRBPoison, ShadowBase,
1602 ClassSize >> Mapping.Scale);
1603 Value *SavedFlagPtrPtr = IRBPoison.CreateAdd(
1604 LocalStackBase,
1605 ConstantInt::get(IntptrTy, ClassSize - ASan.LongSize / 8));
1606 Value *SavedFlagPtr = IRBPoison.CreateLoad(
1607 IRBPoison.CreateIntToPtr(SavedFlagPtrPtr, IntptrPtrTy));
1608 IRBPoison.CreateStore(
1609 Constant::getNullValue(IRBPoison.getInt8Ty()),
1610 IRBPoison.CreateIntToPtr(SavedFlagPtr, IRBPoison.getInt8PtrTy()));
1611 } else {
1612 // For larger frames call __asan_stack_free_*.
1613 IRBRet.CreateCall3(AsanStackFreeFunc[StackMallocIdx], LocalStackBase,
1614 ConstantInt::get(IntptrTy, LocalStackSize),
1615 OrigStackBase);
1616 }
Alexey Samsonovf985f442012-12-04 01:34:23 +00001617 } else if (HavePoisonedAllocas) {
1618 // If we poisoned some allocas in llvm.lifetime analysis,
1619 // unpoison whole stack frame now.
1620 assert(LocalStackBase == OrigStackBase);
1621 poisonAlloca(LocalStackBase, LocalStackSize, IRBRet, false);
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001622 }
1623 }
1624
Kostya Serebryanybd0052a2012-10-19 06:20:53 +00001625 // We are done. Remove the old unused alloca instructions.
1626 for (size_t i = 0, n = AllocaVec.size(); i < n; i++)
1627 AllocaVec[i]->eraseFromParent();
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001628}
Alexey Samsonovf985f442012-12-04 01:34:23 +00001629
Alexey Samsonov59cca132012-12-25 12:04:36 +00001630void FunctionStackPoisoner::poisonAlloca(Value *V, uint64_t Size,
Jakub Staszak4c710642013-08-09 20:53:48 +00001631 IRBuilder<> &IRB, bool DoPoison) {
Alexey Samsonovf985f442012-12-04 01:34:23 +00001632 // For now just insert the call to ASan runtime.
1633 Value *AddrArg = IRB.CreatePointerCast(V, IntptrTy);
1634 Value *SizeArg = ConstantInt::get(IntptrTy, Size);
1635 IRB.CreateCall2(DoPoison ? AsanPoisonStackMemoryFunc
1636 : AsanUnpoisonStackMemoryFunc,
1637 AddrArg, SizeArg);
1638}
Alexey Samsonov59cca132012-12-25 12:04:36 +00001639
1640// Handling llvm.lifetime intrinsics for a given %alloca:
1641// (1) collect all llvm.lifetime.xxx(%size, %value) describing the alloca.
1642// (2) if %size is constant, poison memory for llvm.lifetime.end (to detect
1643// invalid accesses) and unpoison it for llvm.lifetime.start (the memory
1644// could be poisoned by previous llvm.lifetime.end instruction, as the
1645// variable may go in and out of scope several times, e.g. in loops).
1646// (3) if we poisoned at least one %alloca in a function,
1647// unpoison the whole stack frame at function exit.
Alexey Samsonov59cca132012-12-25 12:04:36 +00001648
Alexey Samsonov1c8b8252012-12-27 08:50:58 +00001649AllocaInst *FunctionStackPoisoner::findAllocaForValue(Value *V) {
1650 if (AllocaInst *AI = dyn_cast<AllocaInst>(V))
1651 // We're intested only in allocas we can handle.
1652 return isInterestingAlloca(*AI) ? AI : 0;
1653 // See if we've already calculated (or started to calculate) alloca for a
1654 // given value.
1655 AllocaForValueMapTy::iterator I = AllocaForValue.find(V);
1656 if (I != AllocaForValue.end())
1657 return I->second;
1658 // Store 0 while we're calculating alloca for value V to avoid
1659 // infinite recursion if the value references itself.
1660 AllocaForValue[V] = 0;
1661 AllocaInst *Res = 0;
1662 if (CastInst *CI = dyn_cast<CastInst>(V))
1663 Res = findAllocaForValue(CI->getOperand(0));
1664 else if (PHINode *PN = dyn_cast<PHINode>(V)) {
1665 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1666 Value *IncValue = PN->getIncomingValue(i);
1667 // Allow self-referencing phi-nodes.
1668 if (IncValue == PN) continue;
1669 AllocaInst *IncValueAI = findAllocaForValue(IncValue);
1670 // AI for incoming values should exist and should all be equal.
1671 if (IncValueAI == 0 || (Res != 0 && IncValueAI != Res))
1672 return 0;
1673 Res = IncValueAI;
Alexey Samsonov59cca132012-12-25 12:04:36 +00001674 }
Alexey Samsonov59cca132012-12-25 12:04:36 +00001675 }
Alexey Samsonov1c8b8252012-12-27 08:50:58 +00001676 if (Res != 0)
1677 AllocaForValue[V] = Res;
Alexey Samsonov59cca132012-12-25 12:04:36 +00001678 return Res;
1679}