blob: d2ed8748fe8b14bbd1f483c5f1ec3d4e60dc088d [file] [log] [blame]
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001//===-- AddressSanitizer.cpp - memory error detector ------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file is a part of AddressSanitizer, an address sanity checker.
11// Details of the algorithm:
12// http://code.google.com/p/address-sanitizer/wiki/AddressSanitizerAlgorithm
13//
14//===----------------------------------------------------------------------===//
15
16#define DEBUG_TYPE "asan"
17
Chandler Carruthed0881b2012-12-03 16:50:05 +000018#include "llvm/Transforms/Instrumentation.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000019#include "llvm/ADT/ArrayRef.h"
Alexey Samsonov29dd7f22012-12-27 08:50:58 +000020#include "llvm/ADT/DenseMap.h"
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +000021#include "llvm/ADT/DepthFirstIterator.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000022#include "llvm/ADT/SmallSet.h"
23#include "llvm/ADT/SmallString.h"
24#include "llvm/ADT/SmallVector.h"
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +000025#include "llvm/ADT/Statistic.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000026#include "llvm/ADT/StringExtras.h"
Evgeniy Stepanov617232f2012-05-23 11:52:12 +000027#include "llvm/ADT/Triple.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000028#include "llvm/IR/CallSite.h"
Chandler Carruth12664a02014-03-06 00:22:06 +000029#include "llvm/IR/DIBuilder.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000030#include "llvm/IR/DataLayout.h"
31#include "llvm/IR/Function.h"
32#include "llvm/IR/IRBuilder.h"
33#include "llvm/IR/InlineAsm.h"
Chandler Carruth7da14f12014-03-06 03:23:41 +000034#include "llvm/IR/InstVisitor.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000035#include "llvm/IR/IntrinsicInst.h"
36#include "llvm/IR/LLVMContext.h"
Kostya Serebryany714c67c2014-01-17 11:00:30 +000037#include "llvm/IR/MDBuilder.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000038#include "llvm/IR/Module.h"
39#include "llvm/IR/Type.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000040#include "llvm/Support/CommandLine.h"
41#include "llvm/Support/DataTypes.h"
42#include "llvm/Support/Debug.h"
Kostya Serebryany9e62b302013-06-03 14:46:56 +000043#include "llvm/Support/Endian.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000044#include "llvm/Support/system_error.h"
Kostya Serebryany4fb78012013-12-06 09:00:17 +000045#include "llvm/Transforms/Utils/ASanStackFrameLayout.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000046#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Kostya Serebryany9f5213f2013-06-26 09:18:17 +000047#include "llvm/Transforms/Utils/Cloning.h"
Alexey Samsonov3d43b632012-12-12 14:31:53 +000048#include "llvm/Transforms/Utils/Local.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000049#include "llvm/Transforms/Utils/ModuleUtils.h"
Peter Collingbourne015370e2013-07-09 22:02:49 +000050#include "llvm/Transforms/Utils/SpecialCaseList.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000051#include <algorithm>
Chandler Carruthed0881b2012-12-03 16:50:05 +000052#include <string>
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000053
54using namespace llvm;
55
56static const uint64_t kDefaultShadowScale = 3;
57static const uint64_t kDefaultShadowOffset32 = 1ULL << 29;
58static const uint64_t kDefaultShadowOffset64 = 1ULL << 44;
Kostya Serebryanycc92c792014-02-24 13:40:24 +000059static const uint64_t kSmallX86_64ShadowOffset = 0x7FFF8000; // < 2G.
Kostya Serebryany4766fe62013-01-23 12:54:55 +000060static const uint64_t kPPC64_ShadowOffset64 = 1ULL << 41;
Kostya Serebryany9e62b302013-06-03 14:46:56 +000061static const uint64_t kMIPS32_ShadowOffset32 = 0x0aaa8000;
Kostya Serebryany8baa3862014-02-10 07:37:04 +000062static const uint64_t kFreeBSD_ShadowOffset32 = 1ULL << 30;
63static const uint64_t kFreeBSD_ShadowOffset64 = 1ULL << 46;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000064
Kostya Serebryany6805de52013-09-10 13:16:56 +000065static const size_t kMinStackMallocSize = 1 << 6; // 64B
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000066static const size_t kMaxStackMallocSize = 1 << 16; // 64K
67static const uintptr_t kCurrentStackFrameMagic = 0x41B58AB3;
68static const uintptr_t kRetiredStackFrameMagic = 0x45E0360E;
69
Craig Topperd3a34f82013-07-16 01:17:10 +000070static const char *const kAsanModuleCtorName = "asan.module_ctor";
71static const char *const kAsanModuleDtorName = "asan.module_dtor";
72static const int kAsanCtorAndCtorPriority = 1;
73static const char *const kAsanReportErrorTemplate = "__asan_report_";
74static const char *const kAsanReportLoadN = "__asan_report_load_n";
75static const char *const kAsanReportStoreN = "__asan_report_store_n";
76static const char *const kAsanRegisterGlobalsName = "__asan_register_globals";
Alexey Samsonovf52b7172013-08-05 13:19:49 +000077static const char *const kAsanUnregisterGlobalsName =
78 "__asan_unregister_globals";
Craig Topperd3a34f82013-07-16 01:17:10 +000079static const char *const kAsanPoisonGlobalsName = "__asan_before_dynamic_init";
80static const char *const kAsanUnpoisonGlobalsName = "__asan_after_dynamic_init";
81static const char *const kAsanInitName = "__asan_init_v3";
Bob Wilsonda4147c2013-11-15 07:16:09 +000082static const char *const kAsanCovName = "__sanitizer_cov";
Kostya Serebryany796f6552014-02-27 12:45:36 +000083static const char *const kAsanPtrCmp = "__sanitizer_ptr_cmp";
84static const char *const kAsanPtrSub = "__sanitizer_ptr_sub";
Craig Topperd3a34f82013-07-16 01:17:10 +000085static const char *const kAsanHandleNoReturnName = "__asan_handle_no_return";
Kostya Serebryany6805de52013-09-10 13:16:56 +000086static const int kMaxAsanStackMallocSizeClass = 10;
87static const char *const kAsanStackMallocNameTemplate = "__asan_stack_malloc_";
88static const char *const kAsanStackFreeNameTemplate = "__asan_stack_free_";
Craig Topperd3a34f82013-07-16 01:17:10 +000089static const char *const kAsanGenPrefix = "__asan_gen_";
90static const char *const kAsanPoisonStackMemoryName =
91 "__asan_poison_stack_memory";
92static const char *const kAsanUnpoisonStackMemoryName =
Alexey Samsonov261177a2012-12-04 01:34:23 +000093 "__asan_unpoison_stack_memory";
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000094
Kostya Serebryanyf3223822013-09-18 14:07:14 +000095static const char *const kAsanOptionDetectUAR =
96 "__asan_option_detect_stack_use_after_return";
97
David Blaikieeacc2872013-09-18 00:11:27 +000098#ifndef NDEBUG
Kostya Serebryanybc86efb2013-09-17 12:14:50 +000099static const int kAsanStackAfterReturnMagic = 0xf5;
David Blaikieeacc2872013-09-18 00:11:27 +0000100#endif
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000101
Kostya Serebryany874dae62012-07-16 16:15:40 +0000102// Accesses sizes are powers of two: 1, 2, 4, 8, 16.
103static const size_t kNumberOfAccessSizes = 5;
104
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000105// Command-line flags.
106
107// This flag may need to be replaced with -f[no-]asan-reads.
108static cl::opt<bool> ClInstrumentReads("asan-instrument-reads",
109 cl::desc("instrument read instructions"), cl::Hidden, cl::init(true));
110static cl::opt<bool> ClInstrumentWrites("asan-instrument-writes",
111 cl::desc("instrument write instructions"), cl::Hidden, cl::init(true));
Kostya Serebryany90241602012-05-30 09:04:06 +0000112static cl::opt<bool> ClInstrumentAtomics("asan-instrument-atomics",
113 cl::desc("instrument atomic instructions (rmw, cmpxchg)"),
114 cl::Hidden, cl::init(true));
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000115static cl::opt<bool> ClAlwaysSlowPath("asan-always-slow-path",
116 cl::desc("use instrumentation with slow path for all accesses"),
117 cl::Hidden, cl::init(false));
Kostya Serebryany874dae62012-07-16 16:15:40 +0000118// This flag limits the number of instructions to be instrumented
Kostya Serebryanyc387ca72012-06-28 09:34:41 +0000119// in any given BB. Normally, this should be set to unlimited (INT_MAX),
120// but due to http://llvm.org/bugs/show_bug.cgi?id=12652 we temporary
121// set it to 10000.
122static cl::opt<int> ClMaxInsnsToInstrumentPerBB("asan-max-ins-per-bb",
123 cl::init(10000),
124 cl::desc("maximal number of instructions to instrument in any given BB"),
125 cl::Hidden);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000126// This flag may need to be replaced with -f[no]asan-stack.
127static cl::opt<bool> ClStack("asan-stack",
128 cl::desc("Handle stack memory"), cl::Hidden, cl::init(true));
129// This flag may need to be replaced with -f[no]asan-use-after-return.
130static cl::opt<bool> ClUseAfterReturn("asan-use-after-return",
131 cl::desc("Check return-after-free"), cl::Hidden, cl::init(false));
132// This flag may need to be replaced with -f[no]asan-globals.
133static cl::opt<bool> ClGlobals("asan-globals",
134 cl::desc("Handle global objects"), cl::Hidden, cl::init(true));
Kostya Serebryany714c67c2014-01-17 11:00:30 +0000135static cl::opt<int> ClCoverage("asan-coverage",
136 cl::desc("ASan coverage. 0: none, 1: entry block, 2: all blocks"),
137 cl::Hidden, cl::init(false));
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000138static cl::opt<bool> ClInitializers("asan-initialization-order",
139 cl::desc("Handle C++ initializer order"), cl::Hidden, cl::init(false));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000140static cl::opt<bool> ClMemIntrin("asan-memintrin",
141 cl::desc("Handle memset/memcpy/memmove"), cl::Hidden, cl::init(true));
Kostya Serebryany796f6552014-02-27 12:45:36 +0000142static cl::opt<bool> ClInvalidPointerPairs("asan-detect-invalid-pointer-pair",
143 cl::desc("Instrument <, <=, >, >=, - with pointer operands"),
Kostya Serebryanyec346652014-02-27 12:56:20 +0000144 cl::Hidden, cl::init(false));
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000145static cl::opt<unsigned> ClRealignStack("asan-realign-stack",
146 cl::desc("Realign stack to the value of this flag (power of two)"),
147 cl::Hidden, cl::init(32));
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000148static cl::opt<std::string> ClBlacklistFile("asan-blacklist",
149 cl::desc("File containing the list of objects to ignore "
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000150 "during instrumentation"), cl::Hidden);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000151
Kostya Serebryany9f5213f2013-06-26 09:18:17 +0000152// This is an experimental feature that will allow to choose between
153// instrumented and non-instrumented code at link-time.
154// If this option is on, just before instrumenting a function we create its
155// clone; if the function is not changed by asan the clone is deleted.
156// If we end up with a clone, we put the instrumented function into a section
157// called "ASAN" and the uninstrumented function into a section called "NOASAN".
158//
159// This is still a prototype, we need to figure out a way to keep two copies of
160// a function so that the linker can easily choose one of them.
161static cl::opt<bool> ClKeepUninstrumented("asan-keep-uninstrumented-functions",
162 cl::desc("Keep uninstrumented copies of functions"),
163 cl::Hidden, cl::init(false));
164
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000165// These flags allow to change the shadow mapping.
166// The shadow mapping looks like
167// Shadow = (Mem >> scale) + (1 << offset_log)
168static cl::opt<int> ClMappingScale("asan-mapping-scale",
169 cl::desc("scale of asan shadow mapping"), cl::Hidden, cl::init(0));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000170
171// Optimization flags. Not user visible, used mostly for testing
172// and benchmarking the tool.
173static cl::opt<bool> ClOpt("asan-opt",
174 cl::desc("Optimize instrumentation"), cl::Hidden, cl::init(true));
175static cl::opt<bool> ClOptSameTemp("asan-opt-same-temp",
176 cl::desc("Instrument the same temp just once"), cl::Hidden,
177 cl::init(true));
178static cl::opt<bool> ClOptGlobals("asan-opt-globals",
179 cl::desc("Don't instrument scalar globals"), cl::Hidden, cl::init(true));
180
Alexey Samsonovdf624522012-11-29 18:14:24 +0000181static cl::opt<bool> ClCheckLifetime("asan-check-lifetime",
182 cl::desc("Use llvm.lifetime intrinsics to insert extra checks"),
183 cl::Hidden, cl::init(false));
184
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000185// Debug flags.
186static cl::opt<int> ClDebug("asan-debug", cl::desc("debug"), cl::Hidden,
187 cl::init(0));
188static cl::opt<int> ClDebugStack("asan-debug-stack", cl::desc("debug stack"),
189 cl::Hidden, cl::init(0));
190static cl::opt<std::string> ClDebugFunc("asan-debug-func",
191 cl::Hidden, cl::desc("Debug func"));
192static cl::opt<int> ClDebugMin("asan-debug-min", cl::desc("Debug min inst"),
193 cl::Hidden, cl::init(-1));
194static cl::opt<int> ClDebugMax("asan-debug-max", cl::desc("Debug man inst"),
195 cl::Hidden, cl::init(-1));
196
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000197STATISTIC(NumInstrumentedReads, "Number of instrumented reads");
198STATISTIC(NumInstrumentedWrites, "Number of instrumented writes");
199STATISTIC(NumOptimizedAccessesToGlobalArray,
200 "Number of optimized accesses to global arrays");
201STATISTIC(NumOptimizedAccessesToGlobalVar,
202 "Number of optimized accesses to global vars");
203
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000204namespace {
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000205/// A set of dynamically initialized globals extracted from metadata.
206class SetOfDynamicallyInitializedGlobals {
207 public:
208 void Init(Module& M) {
209 // Clang generates metadata identifying all dynamically initialized globals.
210 NamedMDNode *DynamicGlobals =
211 M.getNamedMetadata("llvm.asan.dynamically_initialized_globals");
212 if (!DynamicGlobals)
213 return;
214 for (int i = 0, n = DynamicGlobals->getNumOperands(); i < n; ++i) {
215 MDNode *MDN = DynamicGlobals->getOperand(i);
216 assert(MDN->getNumOperands() == 1);
217 Value *VG = MDN->getOperand(0);
218 // The optimizer may optimize away a global entirely, in which case we
219 // cannot instrument access to it.
220 if (!VG)
221 continue;
222 DynInitGlobals.insert(cast<GlobalVariable>(VG));
223 }
224 }
225 bool Contains(GlobalVariable *G) { return DynInitGlobals.count(G) != 0; }
226 private:
227 SmallSet<GlobalValue*, 32> DynInitGlobals;
228};
229
Alexey Samsonov1345d352013-01-16 13:23:28 +0000230/// This struct defines the shadow mapping using the rule:
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000231/// shadow = (mem >> Scale) ADD-or-OR Offset.
Alexey Samsonov1345d352013-01-16 13:23:28 +0000232struct ShadowMapping {
233 int Scale;
234 uint64_t Offset;
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000235 bool OrShadowOffset;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000236};
237
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000238static ShadowMapping getShadowMapping(const Module &M, int LongSize) {
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000239 llvm::Triple TargetTriple(M.getTargetTriple());
240 bool IsAndroid = TargetTriple.getEnvironment() == llvm::Triple::Android;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000241 // bool IsMacOSX = TargetTriple.getOS() == llvm::Triple::MacOSX;
Kostya Serebryany8baa3862014-02-10 07:37:04 +0000242 bool IsFreeBSD = TargetTriple.getOS() == llvm::Triple::FreeBSD;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000243 bool IsLinux = TargetTriple.getOS() == llvm::Triple::Linux;
Bill Schmidt0a9170d2013-07-26 01:35:43 +0000244 bool IsPPC64 = TargetTriple.getArch() == llvm::Triple::ppc64 ||
245 TargetTriple.getArch() == llvm::Triple::ppc64le;
Kostya Serebryanybe733372013-02-12 11:11:02 +0000246 bool IsX86_64 = TargetTriple.getArch() == llvm::Triple::x86_64;
Kostya Serebryany9e62b302013-06-03 14:46:56 +0000247 bool IsMIPS32 = TargetTriple.getArch() == llvm::Triple::mips ||
248 TargetTriple.getArch() == llvm::Triple::mipsel;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000249
250 ShadowMapping Mapping;
251
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000252 if (LongSize == 32) {
253 if (IsAndroid)
254 Mapping.Offset = 0;
255 else if (IsMIPS32)
256 Mapping.Offset = kMIPS32_ShadowOffset32;
257 else if (IsFreeBSD)
258 Mapping.Offset = kFreeBSD_ShadowOffset32;
259 else
260 Mapping.Offset = kDefaultShadowOffset32;
261 } else { // LongSize == 64
262 if (IsPPC64)
263 Mapping.Offset = kPPC64_ShadowOffset64;
264 else if (IsFreeBSD)
265 Mapping.Offset = kFreeBSD_ShadowOffset64;
266 else if (IsLinux && IsX86_64)
267 Mapping.Offset = kSmallX86_64ShadowOffset;
268 else
269 Mapping.Offset = kDefaultShadowOffset64;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000270 }
271
272 Mapping.Scale = kDefaultShadowScale;
273 if (ClMappingScale) {
274 Mapping.Scale = ClMappingScale;
275 }
276
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000277 // OR-ing shadow offset if more efficient (at least on x86) if the offset
278 // is a power of two, but on ppc64 we have to use add since the shadow
279 // offset is not necessary 1/8-th of the address space.
280 Mapping.OrShadowOffset = !IsPPC64 && !(Mapping.Offset & (Mapping.Offset - 1));
281
Alexey Samsonov1345d352013-01-16 13:23:28 +0000282 return Mapping;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000283}
284
Alexey Samsonov1345d352013-01-16 13:23:28 +0000285static size_t RedzoneSizeForScale(int MappingScale) {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000286 // Redzone used for stack and globals is at least 32 bytes.
287 // For scales 6 and 7, the redzone has to be 64 and 128 bytes respectively.
Alexey Samsonov1345d352013-01-16 13:23:28 +0000288 return std::max(32U, 1U << MappingScale);
Kostya Serebryany20a79972012-11-22 03:18:50 +0000289}
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000290
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000291/// AddressSanitizer: instrument the code in module to find memory bugs.
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000292struct AddressSanitizer : public FunctionPass {
Alexey Samsonov819eddc2013-03-14 12:38:58 +0000293 AddressSanitizer(bool CheckInitOrder = true,
Alexey Samsonovdf624522012-11-29 18:14:24 +0000294 bool CheckUseAfterReturn = false,
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000295 bool CheckLifetime = false,
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000296 StringRef BlacklistFile = StringRef())
Alexey Samsonovdf624522012-11-29 18:14:24 +0000297 : FunctionPass(ID),
298 CheckInitOrder(CheckInitOrder || ClInitializers),
299 CheckUseAfterReturn(CheckUseAfterReturn || ClUseAfterReturn),
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000300 CheckLifetime(CheckLifetime || ClCheckLifetime),
301 BlacklistFile(BlacklistFile.empty() ? ClBlacklistFile
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000302 : BlacklistFile) {}
Craig Topper3e4c6972014-03-05 09:10:37 +0000303 const char *getPassName() const override {
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000304 return "AddressSanitizerFunctionPass";
305 }
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000306 void instrumentMop(Instruction *I);
Kostya Serebryany796f6552014-02-27 12:45:36 +0000307 void instrumentPointerComparisonOrSubtraction(Instruction *I);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000308 void instrumentAddress(Instruction *OrigIns, Instruction *InsertBefore,
309 Value *Addr, uint32_t TypeSize, bool IsWrite,
310 Value *SizeArgument);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000311 Value *createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
312 Value *ShadowValue, uint32_t TypeSize);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000313 Instruction *generateCrashCode(Instruction *InsertBefore, Value *Addr,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000314 bool IsWrite, size_t AccessSizeIndex,
315 Value *SizeArgument);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000316 bool instrumentMemIntrinsic(MemIntrinsic *MI);
317 void instrumentMemIntrinsicParam(Instruction *OrigIns, Value *Addr,
Kostya Serebryany874dae62012-07-16 16:15:40 +0000318 Value *Size,
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000319 Instruction *InsertBefore, bool IsWrite);
320 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB);
Craig Topper3e4c6972014-03-05 09:10:37 +0000321 bool runOnFunction(Function &F) override;
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +0000322 bool maybeInsertAsanInitAtFunctionEntry(Function &F);
Craig Topper3e4c6972014-03-05 09:10:37 +0000323 bool doInitialization(Module &M) override;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000324 static char ID; // Pass identification, replacement for typeid
325
326 private:
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000327 void initializeCallbacks(Module &M);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000328
Kostya Serebryany1cdc6e92011-11-18 01:41:06 +0000329 bool LooksLikeCodeInBug11395(Instruction *I);
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000330 bool GlobalIsLinkerInitialized(GlobalVariable *G);
Kostya Serebryany714c67c2014-01-17 11:00:30 +0000331 bool InjectCoverage(Function &F, const ArrayRef<BasicBlock*> AllBlocks);
332 void InjectCoverageAtBlock(Function &F, BasicBlock &BB);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000333
Alexey Samsonovdf624522012-11-29 18:14:24 +0000334 bool CheckInitOrder;
335 bool CheckUseAfterReturn;
336 bool CheckLifetime;
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000337 SmallString<64> BlacklistFile;
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000338
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000339 LLVMContext *C;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000340 const DataLayout *DL;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000341 int LongSize;
342 Type *IntptrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000343 ShadowMapping Mapping;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000344 Function *AsanCtorFunction;
345 Function *AsanInitFunction;
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000346 Function *AsanHandleNoReturnFunc;
Bob Wilsonda4147c2013-11-15 07:16:09 +0000347 Function *AsanCovFunction;
Kostya Serebryany796f6552014-02-27 12:45:36 +0000348 Function *AsanPtrCmpFunction, *AsanPtrSubFunction;
Ahmed Charles56440fd2014-03-06 05:51:42 +0000349 std::unique_ptr<SpecialCaseList> BL;
Kostya Serebryany4273bb02012-07-16 14:09:42 +0000350 // This array is indexed by AccessIsWrite and log2(AccessSize).
351 Function *AsanErrorCallback[2][kNumberOfAccessSizes];
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000352 // This array is indexed by AccessIsWrite.
353 Function *AsanErrorCallbackSized[2];
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000354 InlineAsm *EmptyAsm;
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000355 SetOfDynamicallyInitializedGlobals DynamicallyInitializedGlobals;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000356
357 friend struct FunctionStackPoisoner;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000358};
Kostya Serebryany874dae62012-07-16 16:15:40 +0000359
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000360class AddressSanitizerModule : public ModulePass {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000361 public:
Alexey Samsonov819eddc2013-03-14 12:38:58 +0000362 AddressSanitizerModule(bool CheckInitOrder = true,
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000363 StringRef BlacklistFile = StringRef())
Alexey Samsonovdf624522012-11-29 18:14:24 +0000364 : ModulePass(ID),
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000365 CheckInitOrder(CheckInitOrder || ClInitializers),
366 BlacklistFile(BlacklistFile.empty() ? ClBlacklistFile
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000367 : BlacklistFile) {}
Craig Topper3e4c6972014-03-05 09:10:37 +0000368 bool runOnModule(Module &M) override;
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000369 static char ID; // Pass identification, replacement for typeid
Craig Topper3e4c6972014-03-05 09:10:37 +0000370 const char *getPassName() const override {
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000371 return "AddressSanitizerModule";
372 }
Alexey Samsonov261177a2012-12-04 01:34:23 +0000373
Kostya Serebryany20a79972012-11-22 03:18:50 +0000374 private:
Alexey Samsonov788381b2012-12-25 12:28:20 +0000375 void initializeCallbacks(Module &M);
376
Kostya Serebryany20a79972012-11-22 03:18:50 +0000377 bool ShouldInstrumentGlobal(GlobalVariable *G);
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000378 void createInitializerPoisonCalls(Module &M, GlobalValue *ModuleName);
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000379 size_t MinRedzoneSizeForGlobal() const {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000380 return RedzoneSizeForScale(Mapping.Scale);
381 }
Kostya Serebryany20a79972012-11-22 03:18:50 +0000382
Alexey Samsonovdf624522012-11-29 18:14:24 +0000383 bool CheckInitOrder;
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000384 SmallString<64> BlacklistFile;
Alexey Samsonov347bcd32013-01-17 11:12:32 +0000385
Ahmed Charles56440fd2014-03-06 05:51:42 +0000386 std::unique_ptr<SpecialCaseList> BL;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000387 SetOfDynamicallyInitializedGlobals DynamicallyInitializedGlobals;
388 Type *IntptrTy;
389 LLVMContext *C;
Rafael Espindolaaeff8a92014-02-24 23:12:18 +0000390 const DataLayout *DL;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000391 ShadowMapping Mapping;
Alexey Samsonov788381b2012-12-25 12:28:20 +0000392 Function *AsanPoisonGlobals;
393 Function *AsanUnpoisonGlobals;
394 Function *AsanRegisterGlobals;
395 Function *AsanUnregisterGlobals;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000396};
397
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000398// Stack poisoning does not play well with exception handling.
399// When an exception is thrown, we essentially bypass the code
400// that unpoisones the stack. This is why the run-time library has
401// to intercept __cxa_throw (as well as longjmp, etc) and unpoison the entire
402// stack in the interceptor. This however does not work inside the
403// actual function which catches the exception. Most likely because the
404// compiler hoists the load of the shadow value somewhere too high.
405// This causes asan to report a non-existing bug on 453.povray.
406// It sounds like an LLVM bug.
407struct FunctionStackPoisoner : public InstVisitor<FunctionStackPoisoner> {
408 Function &F;
409 AddressSanitizer &ASan;
410 DIBuilder DIB;
411 LLVMContext *C;
412 Type *IntptrTy;
413 Type *IntptrPtrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000414 ShadowMapping Mapping;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000415
416 SmallVector<AllocaInst*, 16> AllocaVec;
417 SmallVector<Instruction*, 8> RetVec;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000418 unsigned StackAlignment;
419
Kostya Serebryany6805de52013-09-10 13:16:56 +0000420 Function *AsanStackMallocFunc[kMaxAsanStackMallocSizeClass + 1],
421 *AsanStackFreeFunc[kMaxAsanStackMallocSizeClass + 1];
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000422 Function *AsanPoisonStackMemoryFunc, *AsanUnpoisonStackMemoryFunc;
423
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000424 // Stores a place and arguments of poisoning/unpoisoning call for alloca.
425 struct AllocaPoisonCall {
426 IntrinsicInst *InsBefore;
Alexey Samsonova788b942013-11-18 14:53:55 +0000427 AllocaInst *AI;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000428 uint64_t Size;
429 bool DoPoison;
430 };
431 SmallVector<AllocaPoisonCall, 8> AllocaPoisonCallVec;
432
433 // Maps Value to an AllocaInst from which the Value is originated.
434 typedef DenseMap<Value*, AllocaInst*> AllocaForValueMapTy;
435 AllocaForValueMapTy AllocaForValue;
436
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000437 FunctionStackPoisoner(Function &F, AddressSanitizer &ASan)
438 : F(F), ASan(ASan), DIB(*F.getParent()), C(ASan.C),
439 IntptrTy(ASan.IntptrTy), IntptrPtrTy(PointerType::get(IntptrTy, 0)),
Alexey Samsonov1345d352013-01-16 13:23:28 +0000440 Mapping(ASan.Mapping),
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000441 StackAlignment(1 << Mapping.Scale) {}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000442
443 bool runOnFunction() {
444 if (!ClStack) return false;
445 // Collect alloca, ret, lifetime instructions etc.
David Blaikieceec2bd2014-04-11 01:50:01 +0000446 for (BasicBlock *BB : depth_first(&F.getEntryBlock()))
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000447 visit(*BB);
David Blaikieceec2bd2014-04-11 01:50:01 +0000448
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000449 if (AllocaVec.empty()) return false;
450
451 initializeCallbacks(*F.getParent());
452
453 poisonStack();
454
455 if (ClDebugStack) {
456 DEBUG(dbgs() << F);
457 }
458 return true;
459 }
460
461 // Finds all static Alloca instructions and puts
462 // poisoned red zones around all of them.
463 // Then unpoison everything back before the function returns.
464 void poisonStack();
465
466 // ----------------------- Visitors.
467 /// \brief Collect all Ret instructions.
468 void visitReturnInst(ReturnInst &RI) {
469 RetVec.push_back(&RI);
470 }
471
472 /// \brief Collect Alloca instructions we want (and can) handle.
473 void visitAllocaInst(AllocaInst &AI) {
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000474 if (!isInterestingAlloca(AI)) return;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000475
476 StackAlignment = std::max(StackAlignment, AI.getAlignment());
477 AllocaVec.push_back(&AI);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000478 }
479
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000480 /// \brief Collect lifetime intrinsic calls to check for use-after-scope
481 /// errors.
482 void visitIntrinsicInst(IntrinsicInst &II) {
483 if (!ASan.CheckLifetime) return;
484 Intrinsic::ID ID = II.getIntrinsicID();
485 if (ID != Intrinsic::lifetime_start &&
486 ID != Intrinsic::lifetime_end)
487 return;
488 // Found lifetime intrinsic, add ASan instrumentation if necessary.
489 ConstantInt *Size = dyn_cast<ConstantInt>(II.getArgOperand(0));
490 // If size argument is undefined, don't do anything.
491 if (Size->isMinusOne()) return;
492 // Check that size doesn't saturate uint64_t and can
493 // be stored in IntptrTy.
494 const uint64_t SizeValue = Size->getValue().getLimitedValue();
495 if (SizeValue == ~0ULL ||
496 !ConstantInt::isValueValidForType(IntptrTy, SizeValue))
497 return;
498 // Find alloca instruction that corresponds to llvm.lifetime argument.
499 AllocaInst *AI = findAllocaForValue(II.getArgOperand(1));
500 if (!AI) return;
501 bool DoPoison = (ID == Intrinsic::lifetime_end);
Alexey Samsonova788b942013-11-18 14:53:55 +0000502 AllocaPoisonCall APC = {&II, AI, SizeValue, DoPoison};
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000503 AllocaPoisonCallVec.push_back(APC);
504 }
505
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000506 // ---------------------- Helpers.
507 void initializeCallbacks(Module &M);
508
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000509 // Check if we want (and can) handle this alloca.
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000510 bool isInterestingAlloca(AllocaInst &AI) const {
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000511 return (!AI.isArrayAllocation() && AI.isStaticAlloca() &&
512 AI.getAllocatedType()->isSized() &&
513 // alloca() may be called with 0 size, ignore it.
514 getAllocaSizeInBytes(&AI) > 0);
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000515 }
516
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000517 uint64_t getAllocaSizeInBytes(AllocaInst *AI) const {
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000518 Type *Ty = AI->getAllocatedType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000519 uint64_t SizeInBytes = ASan.DL->getTypeAllocSize(Ty);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000520 return SizeInBytes;
521 }
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000522 /// Finds alloca where the value comes from.
523 AllocaInst *findAllocaForValue(Value *V);
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000524 void poisonRedZones(const ArrayRef<uint8_t> ShadowBytes, IRBuilder<> &IRB,
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000525 Value *ShadowBase, bool DoPoison);
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000526 void poisonAlloca(Value *V, uint64_t Size, IRBuilder<> &IRB, bool DoPoison);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +0000527
528 void SetShadowToStackAfterReturnInlined(IRBuilder<> &IRB, Value *ShadowBase,
529 int Size);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000530};
531
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000532} // namespace
533
534char AddressSanitizer::ID = 0;
535INITIALIZE_PASS(AddressSanitizer, "asan",
536 "AddressSanitizer: detects use-after-free and out-of-bounds bugs.",
537 false, false)
Alexey Samsonovdf624522012-11-29 18:14:24 +0000538FunctionPass *llvm::createAddressSanitizerFunctionPass(
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000539 bool CheckInitOrder, bool CheckUseAfterReturn, bool CheckLifetime,
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000540 StringRef BlacklistFile) {
Alexey Samsonovdf624522012-11-29 18:14:24 +0000541 return new AddressSanitizer(CheckInitOrder, CheckUseAfterReturn,
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000542 CheckLifetime, BlacklistFile);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000543}
544
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000545char AddressSanitizerModule::ID = 0;
546INITIALIZE_PASS(AddressSanitizerModule, "asan-module",
547 "AddressSanitizer: detects use-after-free and out-of-bounds bugs."
548 "ModulePass", false, false)
Alexey Samsonovef51c3f2012-12-03 19:09:26 +0000549ModulePass *llvm::createAddressSanitizerModulePass(
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000550 bool CheckInitOrder, StringRef BlacklistFile) {
551 return new AddressSanitizerModule(CheckInitOrder, BlacklistFile);
Alexander Potapenkoc94cf8f2012-01-23 11:22:43 +0000552}
553
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000554static size_t TypeSizeToSizeIndex(uint32_t TypeSize) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000555 size_t Res = countTrailingZeros(TypeSize / 8);
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000556 assert(Res < kNumberOfAccessSizes);
557 return Res;
558}
559
Bill Wendling58f8cef2013-08-06 22:52:42 +0000560// \brief Create a constant for Str so that we can pass it to the run-time lib.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000561static GlobalVariable *createPrivateGlobalForString(
562 Module &M, StringRef Str, bool AllowMerging) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000563 Constant *StrConst = ConstantDataArray::getString(M.getContext(), Str);
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000564 // We use private linkage for module-local strings. If they can be merged
565 // with another one, we set the unnamed_addr attribute.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000566 GlobalVariable *GV =
567 new GlobalVariable(M, StrConst->getType(), true,
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000568 GlobalValue::PrivateLinkage, StrConst, kAsanGenPrefix);
569 if (AllowMerging)
570 GV->setUnnamedAddr(true);
Kostya Serebryany10cc12f2013-03-18 09:38:39 +0000571 GV->setAlignment(1); // Strings may not be merged w/o setting align 1.
572 return GV;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000573}
574
575static bool GlobalWasGeneratedByAsan(GlobalVariable *G) {
576 return G->getName().find(kAsanGenPrefix) == 0;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000577}
578
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000579Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) {
580 // Shadow >> scale
Alexey Samsonov1345d352013-01-16 13:23:28 +0000581 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale);
582 if (Mapping.Offset == 0)
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000583 return Shadow;
584 // (Shadow >> scale) | offset
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000585 if (Mapping.OrShadowOffset)
586 return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
587 else
588 return IRB.CreateAdd(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000589}
590
Kostya Serebryany874dae62012-07-16 16:15:40 +0000591void AddressSanitizer::instrumentMemIntrinsicParam(
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000592 Instruction *OrigIns,
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000593 Value *Addr, Value *Size, Instruction *InsertBefore, bool IsWrite) {
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000594 IRBuilder<> IRB(InsertBefore);
595 if (Size->getType() != IntptrTy)
596 Size = IRB.CreateIntCast(Size, IntptrTy, false);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000597 // Check the first byte.
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000598 instrumentAddress(OrigIns, InsertBefore, Addr, 8, IsWrite, Size);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000599 // Check the last byte.
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000600 IRB.SetInsertPoint(InsertBefore);
601 Value *SizeMinusOne = IRB.CreateSub(Size, ConstantInt::get(IntptrTy, 1));
602 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
603 Value *AddrLast = IRB.CreateAdd(AddrLong, SizeMinusOne);
604 instrumentAddress(OrigIns, InsertBefore, AddrLast, 8, IsWrite, Size);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000605}
606
607// Instrument memset/memmove/memcpy
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000608bool AddressSanitizer::instrumentMemIntrinsic(MemIntrinsic *MI) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000609 Value *Dst = MI->getDest();
610 MemTransferInst *MemTran = dyn_cast<MemTransferInst>(MI);
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000611 Value *Src = MemTran ? MemTran->getSource() : 0;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000612 Value *Length = MI->getLength();
613
614 Constant *ConstLength = dyn_cast<Constant>(Length);
615 Instruction *InsertBefore = MI;
616 if (ConstLength) {
617 if (ConstLength->isNullValue()) return false;
618 } else {
619 // The size is not a constant so it could be zero -- check at run-time.
620 IRBuilder<> IRB(InsertBefore);
621
622 Value *Cmp = IRB.CreateICmpNE(Length,
Kostya Serebryanyeeaf6882012-07-02 11:42:29 +0000623 Constant::getNullValue(Length->getType()));
Evgeniy Stepanova9164e92013-12-19 13:29:56 +0000624 InsertBefore = SplitBlockAndInsertIfThen(Cmp, InsertBefore, false);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000625 }
626
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000627 instrumentMemIntrinsicParam(MI, Dst, Length, InsertBefore, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000628 if (Src)
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000629 instrumentMemIntrinsicParam(MI, Src, Length, InsertBefore, false);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000630 return true;
631}
632
Kostya Serebryany90241602012-05-30 09:04:06 +0000633// If I is an interesting memory access, return the PointerOperand
634// and set IsWrite. Otherwise return NULL.
635static Value *isInterestingMemoryAccess(Instruction *I, bool *IsWrite) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000636 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Kostya Serebryany90241602012-05-30 09:04:06 +0000637 if (!ClInstrumentReads) return NULL;
638 *IsWrite = false;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000639 return LI->getPointerOperand();
640 }
Kostya Serebryany90241602012-05-30 09:04:06 +0000641 if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
642 if (!ClInstrumentWrites) return NULL;
643 *IsWrite = true;
644 return SI->getPointerOperand();
645 }
646 if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(I)) {
647 if (!ClInstrumentAtomics) return NULL;
648 *IsWrite = true;
649 return RMW->getPointerOperand();
650 }
651 if (AtomicCmpXchgInst *XCHG = dyn_cast<AtomicCmpXchgInst>(I)) {
652 if (!ClInstrumentAtomics) return NULL;
653 *IsWrite = true;
654 return XCHG->getPointerOperand();
655 }
656 return NULL;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000657}
658
Kostya Serebryany796f6552014-02-27 12:45:36 +0000659static bool isPointerOperand(Value *V) {
660 return V->getType()->isPointerTy() || isa<PtrToIntInst>(V);
661}
662
663// This is a rough heuristic; it may cause both false positives and
664// false negatives. The proper implementation requires cooperation with
665// the frontend.
666static bool isInterestingPointerComparisonOrSubtraction(Instruction *I) {
667 if (ICmpInst *Cmp = dyn_cast<ICmpInst>(I)) {
668 if (!Cmp->isRelational())
669 return false;
670 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) {
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +0000671 if (BO->getOpcode() != Instruction::Sub)
Kostya Serebryany796f6552014-02-27 12:45:36 +0000672 return false;
673 } else {
674 return false;
675 }
676 if (!isPointerOperand(I->getOperand(0)) ||
677 !isPointerOperand(I->getOperand(1)))
678 return false;
679 return true;
680}
681
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000682bool AddressSanitizer::GlobalIsLinkerInitialized(GlobalVariable *G) {
683 // If a global variable does not have dynamic initialization we don't
684 // have to instrument it. However, if a global does not have initializer
685 // at all, we assume it has dynamic initializer (in other TU).
686 return G->hasInitializer() && !DynamicallyInitializedGlobals.Contains(G);
687}
688
Kostya Serebryany796f6552014-02-27 12:45:36 +0000689void
690AddressSanitizer::instrumentPointerComparisonOrSubtraction(Instruction *I) {
691 IRBuilder<> IRB(I);
692 Function *F = isa<ICmpInst>(I) ? AsanPtrCmpFunction : AsanPtrSubFunction;
693 Value *Param[2] = {I->getOperand(0), I->getOperand(1)};
694 for (int i = 0; i < 2; i++) {
695 if (Param[i]->getType()->isPointerTy())
696 Param[i] = IRB.CreatePointerCast(Param[i], IntptrTy);
697 }
698 IRB.CreateCall2(F, Param[0], Param[1]);
699}
700
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000701void AddressSanitizer::instrumentMop(Instruction *I) {
Axel Naumann4a127062012-09-17 14:20:57 +0000702 bool IsWrite = false;
Kostya Serebryany90241602012-05-30 09:04:06 +0000703 Value *Addr = isInterestingMemoryAccess(I, &IsWrite);
704 assert(Addr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000705 if (ClOpt && ClOptGlobals) {
706 if (GlobalVariable *G = dyn_cast<GlobalVariable>(Addr)) {
707 // If initialization order checking is disabled, a simple access to a
708 // dynamically initialized global is always valid.
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000709 if (!CheckInitOrder || GlobalIsLinkerInitialized(G)) {
710 NumOptimizedAccessesToGlobalVar++;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000711 return;
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000712 }
713 }
714 ConstantExpr *CE = dyn_cast<ConstantExpr>(Addr);
715 if (CE && CE->isGEPWithNoNotionalOverIndexing()) {
716 if (GlobalVariable *G = dyn_cast<GlobalVariable>(CE->getOperand(0))) {
717 if (CE->getOperand(1)->isNullValue() && GlobalIsLinkerInitialized(G)) {
718 NumOptimizedAccessesToGlobalArray++;
719 return;
720 }
721 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000722 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000723 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000724
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000725 Type *OrigPtrTy = Addr->getType();
726 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType();
727
728 assert(OrigTy->isSized());
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000729 uint32_t TypeSize = DL->getTypeStoreSizeInBits(OrigTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000730
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000731 assert((TypeSize % 8) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000732
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000733 if (IsWrite)
734 NumInstrumentedWrites++;
735 else
736 NumInstrumentedReads++;
737
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000738 // Instrument a 1-, 2-, 4-, 8-, or 16- byte access with one check.
739 if (TypeSize == 8 || TypeSize == 16 ||
740 TypeSize == 32 || TypeSize == 64 || TypeSize == 128)
741 return instrumentAddress(I, I, Addr, TypeSize, IsWrite, 0);
742 // Instrument unusual size (but still multiple of 8).
743 // We can not do it with a single check, so we do 1-byte check for the first
744 // and the last bytes. We call __asan_report_*_n(addr, real_size) to be able
745 // to report the actual access size.
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000746 IRBuilder<> IRB(I);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000747 Value *LastByte = IRB.CreateIntToPtr(
748 IRB.CreateAdd(IRB.CreatePointerCast(Addr, IntptrTy),
749 ConstantInt::get(IntptrTy, TypeSize / 8 - 1)),
750 OrigPtrTy);
751 Value *Size = ConstantInt::get(IntptrTy, TypeSize / 8);
752 instrumentAddress(I, I, Addr, 8, IsWrite, Size);
753 instrumentAddress(I, I, LastByte, 8, IsWrite, Size);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000754}
755
Alexander Potapenko056e27e2012-04-23 10:47:31 +0000756// Validate the result of Module::getOrInsertFunction called for an interface
757// function of AddressSanitizer. If the instrumented module defines a function
758// with the same name, their prototypes must match, otherwise
759// getOrInsertFunction returns a bitcast.
Kostya Serebryany20a79972012-11-22 03:18:50 +0000760static Function *checkInterfaceFunction(Constant *FuncOrBitcast) {
Alexander Potapenko056e27e2012-04-23 10:47:31 +0000761 if (isa<Function>(FuncOrBitcast)) return cast<Function>(FuncOrBitcast);
762 FuncOrBitcast->dump();
763 report_fatal_error("trying to redefine an AddressSanitizer "
764 "interface function");
765}
766
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000767Instruction *AddressSanitizer::generateCrashCode(
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000768 Instruction *InsertBefore, Value *Addr,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000769 bool IsWrite, size_t AccessSizeIndex, Value *SizeArgument) {
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000770 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000771 CallInst *Call = SizeArgument
772 ? IRB.CreateCall2(AsanErrorCallbackSized[IsWrite], Addr, SizeArgument)
773 : IRB.CreateCall(AsanErrorCallback[IsWrite][AccessSizeIndex], Addr);
774
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000775 // We don't do Call->setDoesNotReturn() because the BB already has
776 // UnreachableInst at the end.
777 // This EmptyAsm is required to avoid callback merge.
778 IRB.CreateCall(EmptyAsm);
Kostya Serebryany3411f2e2012-01-06 18:09:21 +0000779 return Call;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000780}
781
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000782Value *AddressSanitizer::createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
Kostya Serebryany874dae62012-07-16 16:15:40 +0000783 Value *ShadowValue,
784 uint32_t TypeSize) {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000785 size_t Granularity = 1 << Mapping.Scale;
Kostya Serebryany874dae62012-07-16 16:15:40 +0000786 // Addr & (Granularity - 1)
787 Value *LastAccessedByte = IRB.CreateAnd(
788 AddrLong, ConstantInt::get(IntptrTy, Granularity - 1));
789 // (Addr & (Granularity - 1)) + size - 1
790 if (TypeSize / 8 > 1)
791 LastAccessedByte = IRB.CreateAdd(
792 LastAccessedByte, ConstantInt::get(IntptrTy, TypeSize / 8 - 1));
793 // (uint8_t) ((Addr & (Granularity-1)) + size - 1)
794 LastAccessedByte = IRB.CreateIntCast(
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000795 LastAccessedByte, ShadowValue->getType(), false);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000796 // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue
797 return IRB.CreateICmpSGE(LastAccessedByte, ShadowValue);
798}
799
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000800void AddressSanitizer::instrumentAddress(Instruction *OrigIns,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000801 Instruction *InsertBefore,
802 Value *Addr, uint32_t TypeSize,
803 bool IsWrite, Value *SizeArgument) {
804 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000805 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
806
807 Type *ShadowTy = IntegerType::get(
Alexey Samsonov1345d352013-01-16 13:23:28 +0000808 *C, std::max(8U, TypeSize >> Mapping.Scale));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000809 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0);
810 Value *ShadowPtr = memToShadow(AddrLong, IRB);
811 Value *CmpVal = Constant::getNullValue(ShadowTy);
812 Value *ShadowValue = IRB.CreateLoad(
813 IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy));
814
815 Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal);
Kostya Serebryany0f7a80d2012-08-13 14:08:46 +0000816 size_t AccessSizeIndex = TypeSizeToSizeIndex(TypeSize);
Alexey Samsonov1345d352013-01-16 13:23:28 +0000817 size_t Granularity = 1 << Mapping.Scale;
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000818 TerminatorInst *CrashTerm = 0;
819
Kostya Serebryany1e575ab2012-08-15 08:58:58 +0000820 if (ClAlwaysSlowPath || (TypeSize < 8 * Granularity)) {
Evgeniy Stepanov8eb77d82012-10-19 10:48:31 +0000821 TerminatorInst *CheckTerm =
Evgeniy Stepanova9164e92013-12-19 13:29:56 +0000822 SplitBlockAndInsertIfThen(Cmp, InsertBefore, false);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000823 assert(dyn_cast<BranchInst>(CheckTerm)->isUnconditional());
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000824 BasicBlock *NextBB = CheckTerm->getSuccessor(0);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000825 IRB.SetInsertPoint(CheckTerm);
826 Value *Cmp2 = createSlowPathCmp(IRB, AddrLong, ShadowValue, TypeSize);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000827 BasicBlock *CrashBlock =
828 BasicBlock::Create(*C, "", NextBB->getParent(), NextBB);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000829 CrashTerm = new UnreachableInst(*C, CrashBlock);
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000830 BranchInst *NewTerm = BranchInst::Create(CrashBlock, NextBB, Cmp2);
831 ReplaceInstWithInst(CheckTerm, NewTerm);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000832 } else {
Evgeniy Stepanova9164e92013-12-19 13:29:56 +0000833 CrashTerm = SplitBlockAndInsertIfThen(Cmp, InsertBefore, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000834 }
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000835
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000836 Instruction *Crash = generateCrashCode(
837 CrashTerm, AddrLong, IsWrite, AccessSizeIndex, SizeArgument);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000838 Crash->setDebugLoc(OrigIns->getDebugLoc());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000839}
840
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000841void AddressSanitizerModule::createInitializerPoisonCalls(
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000842 Module &M, GlobalValue *ModuleName) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000843 // We do all of our poisoning and unpoisoning within _GLOBAL__I_a.
844 Function *GlobalInit = M.getFunction("_GLOBAL__I_a");
845 // If that function is not present, this TU contains no globals, or they have
846 // all been optimized away
847 if (!GlobalInit)
848 return;
849
850 // Set up the arguments to our poison/unpoison functions.
851 IRBuilder<> IRB(GlobalInit->begin()->getFirstInsertionPt());
852
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000853 // Add a call to poison all external globals before the given function starts.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000854 Value *ModuleNameAddr = ConstantExpr::getPointerCast(ModuleName, IntptrTy);
855 IRB.CreateCall(AsanPoisonGlobals, ModuleNameAddr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000856
857 // Add calls to unpoison all globals before each return instruction.
858 for (Function::iterator I = GlobalInit->begin(), E = GlobalInit->end();
859 I != E; ++I) {
860 if (ReturnInst *RI = dyn_cast<ReturnInst>(I->getTerminator())) {
861 CallInst::Create(AsanUnpoisonGlobals, "", RI);
862 }
863 }
864}
865
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000866bool AddressSanitizerModule::ShouldInstrumentGlobal(GlobalVariable *G) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000867 Type *Ty = cast<PointerType>(G->getType())->getElementType();
Kostya Serebryany20343352012-10-17 13:40:06 +0000868 DEBUG(dbgs() << "GLOBAL: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000869
Kostya Serebryany2fa38f82012-09-05 07:29:56 +0000870 if (BL->isIn(*G)) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000871 if (!Ty->isSized()) return false;
872 if (!G->hasInitializer()) return false;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000873 if (GlobalWasGeneratedByAsan(G)) return false; // Our own global.
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000874 // Touch only those globals that will not be defined in other modules.
875 // Don't handle ODR type linkages since other modules may be built w/o asan.
876 if (G->getLinkage() != GlobalVariable::ExternalLinkage &&
877 G->getLinkage() != GlobalVariable::PrivateLinkage &&
878 G->getLinkage() != GlobalVariable::InternalLinkage)
879 return false;
880 // Two problems with thread-locals:
881 // - The address of the main thread's copy can't be computed at link-time.
882 // - Need to poison all copies, not just the main thread's one.
883 if (G->isThreadLocal())
884 return false;
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000885 // For now, just ignore this Global if the alignment is large.
886 if (G->getAlignment() > MinRedzoneSizeForGlobal()) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000887
888 // Ignore all the globals with the names starting with "\01L_OBJC_".
889 // Many of those are put into the .cstring section. The linker compresses
890 // that section by removing the spare \0s after the string terminator, so
891 // our redzones get broken.
892 if ((G->getName().find("\01L_OBJC_") == 0) ||
893 (G->getName().find("\01l_OBJC_") == 0)) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000894 DEBUG(dbgs() << "Ignoring \\01L_OBJC_* global: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000895 return false;
896 }
897
898 if (G->hasSection()) {
899 StringRef Section(G->getSection());
900 // Ignore the globals from the __OBJC section. The ObjC runtime assumes
901 // those conform to /usr/lib/objc/runtime.h, so we can't add redzones to
902 // them.
903 if ((Section.find("__OBJC,") == 0) ||
904 (Section.find("__DATA, __objc_") == 0)) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000905 DEBUG(dbgs() << "Ignoring ObjC runtime global: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000906 return false;
907 }
908 // See http://code.google.com/p/address-sanitizer/issues/detail?id=32
909 // Constant CFString instances are compiled in the following way:
910 // -- the string buffer is emitted into
911 // __TEXT,__cstring,cstring_literals
912 // -- the constant NSConstantString structure referencing that buffer
913 // is placed into __DATA,__cfstring
914 // Therefore there's no point in placing redzones into __DATA,__cfstring.
915 // Moreover, it causes the linker to crash on OS X 10.7
916 if (Section.find("__DATA,__cfstring") == 0) {
Alexander Potapenkob76ea322014-03-14 10:41:49 +0000917 DEBUG(dbgs() << "Ignoring CFString: " << *G << "\n");
918 return false;
919 }
920 // The linker merges the contents of cstring_literals and removes the
921 // trailing zeroes.
922 if (Section.find("__TEXT,__cstring,cstring_literals") == 0) {
923 DEBUG(dbgs() << "Ignoring a cstring literal: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000924 return false;
925 }
Alexander Potapenko04969e82014-03-20 10:48:34 +0000926 // Globals from llvm.metadata aren't emitted, do not instrument them.
927 if (Section == "llvm.metadata") return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000928 }
929
930 return true;
931}
932
Alexey Samsonov788381b2012-12-25 12:28:20 +0000933void AddressSanitizerModule::initializeCallbacks(Module &M) {
934 IRBuilder<> IRB(*C);
935 // Declare our poisoning and unpoisoning functions.
936 AsanPoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000937 kAsanPoisonGlobalsName, IRB.getVoidTy(), IntptrTy, NULL));
Alexey Samsonov788381b2012-12-25 12:28:20 +0000938 AsanPoisonGlobals->setLinkage(Function::ExternalLinkage);
939 AsanUnpoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
940 kAsanUnpoisonGlobalsName, IRB.getVoidTy(), NULL));
941 AsanUnpoisonGlobals->setLinkage(Function::ExternalLinkage);
942 // Declare functions that register/unregister globals.
943 AsanRegisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
944 kAsanRegisterGlobalsName, IRB.getVoidTy(),
945 IntptrTy, IntptrTy, NULL));
946 AsanRegisterGlobals->setLinkage(Function::ExternalLinkage);
947 AsanUnregisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
948 kAsanUnregisterGlobalsName,
949 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
950 AsanUnregisterGlobals->setLinkage(Function::ExternalLinkage);
951}
952
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000953// This function replaces all global variables with new variables that have
954// trailing redzones. It also creates a function that poisons
955// redzones and inserts this function into llvm.global_ctors.
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000956bool AddressSanitizerModule::runOnModule(Module &M) {
957 if (!ClGlobals) return false;
Rafael Espindola93512512014-02-25 17:30:31 +0000958
959 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
960 if (!DLP)
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000961 return false;
Rafael Espindola93512512014-02-25 17:30:31 +0000962 DL = &DLP->getDataLayout();
963
Alexey Samsonove4b5fb82013-08-12 11:46:09 +0000964 BL.reset(SpecialCaseList::createOrDie(BlacklistFile));
Alexey Samsonov9a956e82012-11-29 18:27:01 +0000965 if (BL->isIn(M)) return false;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000966 C = &(M.getContext());
Rafael Espindola37dc9e12014-02-21 00:06:31 +0000967 int LongSize = DL->getPointerSizeInBits();
Alexey Samsonov1345d352013-01-16 13:23:28 +0000968 IntptrTy = Type::getIntNTy(*C, LongSize);
Evgeniy Stepanov13665362014-01-16 10:19:12 +0000969 Mapping = getShadowMapping(M, LongSize);
Alexey Samsonov788381b2012-12-25 12:28:20 +0000970 initializeCallbacks(M);
971 DynamicallyInitializedGlobals.Init(M);
Kostya Serebryany20a79972012-11-22 03:18:50 +0000972
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000973 SmallVector<GlobalVariable *, 16> GlobalsToChange;
974
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000975 for (Module::GlobalListType::iterator G = M.global_begin(),
976 E = M.global_end(); G != E; ++G) {
977 if (ShouldInstrumentGlobal(G))
978 GlobalsToChange.push_back(G);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000979 }
980
981 size_t n = GlobalsToChange.size();
982 if (n == 0) return false;
983
984 // A global is described by a structure
985 // size_t beg;
986 // size_t size;
987 // size_t size_with_redzone;
988 // const char *name;
Kostya Serebryanybd016bb2013-03-18 08:05:29 +0000989 // const char *module_name;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000990 // size_t has_dynamic_init;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000991 // We initialize an array of such structures and pass it to a run-time call.
992 StructType *GlobalStructTy = StructType::get(IntptrTy, IntptrTy,
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000993 IntptrTy, IntptrTy,
Kostya Serebryanybd016bb2013-03-18 08:05:29 +0000994 IntptrTy, IntptrTy, NULL);
Rafael Espindola44fee4e2013-10-01 13:32:03 +0000995 SmallVector<Constant *, 16> Initializers(n);
Kostya Serebryany20a79972012-11-22 03:18:50 +0000996
997 Function *CtorFunc = M.getFunction(kAsanModuleCtorName);
998 assert(CtorFunc);
999 IRBuilder<> IRB(CtorFunc->getEntryBlock().getTerminator());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001000
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001001 bool HasDynamicallyInitializedGlobals = false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001002
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001003 // We shouldn't merge same module names, as this string serves as unique
1004 // module ID in runtime.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001005 GlobalVariable *ModuleName = createPrivateGlobalForString(
1006 M, M.getModuleIdentifier(), /*AllowMerging*/false);
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001007
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001008 for (size_t i = 0; i < n; i++) {
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001009 static const uint64_t kMaxGlobalRedzone = 1 << 18;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001010 GlobalVariable *G = GlobalsToChange[i];
1011 PointerType *PtrTy = cast<PointerType>(G->getType());
1012 Type *Ty = PtrTy->getElementType();
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001013 uint64_t SizeInBytes = DL->getTypeAllocSize(Ty);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001014 uint64_t MinRZ = MinRedzoneSizeForGlobal();
Kostya Serebryany87191f62013-01-24 10:35:40 +00001015 // MinRZ <= RZ <= kMaxGlobalRedzone
1016 // and trying to make RZ to be ~ 1/4 of SizeInBytes.
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001017 uint64_t RZ = std::max(MinRZ,
Kostya Serebryany87191f62013-01-24 10:35:40 +00001018 std::min(kMaxGlobalRedzone,
1019 (SizeInBytes / MinRZ / 4) * MinRZ));
1020 uint64_t RightRedzoneSize = RZ;
1021 // Round up to MinRZ
1022 if (SizeInBytes % MinRZ)
1023 RightRedzoneSize += MinRZ - (SizeInBytes % MinRZ);
1024 assert(((RightRedzoneSize + SizeInBytes) % MinRZ) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001025 Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001026 // Determine whether this global should be poisoned in initialization.
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +00001027 bool GlobalHasDynamicInitializer =
1028 DynamicallyInitializedGlobals.Contains(G);
Kostya Serebryany2fa38f82012-09-05 07:29:56 +00001029 // Don't check initialization order if this global is blacklisted.
Peter Collingbourne49062a92013-07-09 22:03:17 +00001030 GlobalHasDynamicInitializer &= !BL->isIn(*G, "init");
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001031
1032 StructType *NewTy = StructType::get(Ty, RightRedZoneTy, NULL);
1033 Constant *NewInitializer = ConstantStruct::get(
1034 NewTy, G->getInitializer(),
1035 Constant::getNullValue(RightRedZoneTy), NULL);
1036
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001037 GlobalVariable *Name =
1038 createPrivateGlobalForString(M, G->getName(), /*AllowMerging*/true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001039
1040 // Create a new global variable with enough space for a redzone.
Bill Wendling58f8cef2013-08-06 22:52:42 +00001041 GlobalValue::LinkageTypes Linkage = G->getLinkage();
1042 if (G->isConstant() && Linkage == GlobalValue::PrivateLinkage)
1043 Linkage = GlobalValue::InternalLinkage;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001044 GlobalVariable *NewGlobal = new GlobalVariable(
Bill Wendling58f8cef2013-08-06 22:52:42 +00001045 M, NewTy, G->isConstant(), Linkage,
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001046 NewInitializer, "", G, G->getThreadLocalMode());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001047 NewGlobal->copyAttributesFrom(G);
Kostya Serebryany87191f62013-01-24 10:35:40 +00001048 NewGlobal->setAlignment(MinRZ);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001049
1050 Value *Indices2[2];
1051 Indices2[0] = IRB.getInt32(0);
1052 Indices2[1] = IRB.getInt32(0);
1053
1054 G->replaceAllUsesWith(
Kostya Serebryany7471d132012-01-28 04:27:16 +00001055 ConstantExpr::getGetElementPtr(NewGlobal, Indices2, true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001056 NewGlobal->takeName(G);
1057 G->eraseFromParent();
1058
1059 Initializers[i] = ConstantStruct::get(
1060 GlobalStructTy,
1061 ConstantExpr::getPointerCast(NewGlobal, IntptrTy),
1062 ConstantInt::get(IntptrTy, SizeInBytes),
1063 ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize),
1064 ConstantExpr::getPointerCast(Name, IntptrTy),
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001065 ConstantExpr::getPointerCast(ModuleName, IntptrTy),
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001066 ConstantInt::get(IntptrTy, GlobalHasDynamicInitializer),
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001067 NULL);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001068
1069 // Populate the first and last globals declared in this TU.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001070 if (CheckInitOrder && GlobalHasDynamicInitializer)
1071 HasDynamicallyInitializedGlobals = true;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001072
Kostya Serebryany20343352012-10-17 13:40:06 +00001073 DEBUG(dbgs() << "NEW GLOBAL: " << *NewGlobal << "\n");
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001074 }
1075
1076 ArrayType *ArrayOfGlobalStructTy = ArrayType::get(GlobalStructTy, n);
1077 GlobalVariable *AllGlobals = new GlobalVariable(
Bill Wendling58f8cef2013-08-06 22:52:42 +00001078 M, ArrayOfGlobalStructTy, false, GlobalVariable::InternalLinkage,
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001079 ConstantArray::get(ArrayOfGlobalStructTy, Initializers), "");
1080
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001081 // Create calls for poisoning before initializers run and unpoisoning after.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001082 if (CheckInitOrder && HasDynamicallyInitializedGlobals)
1083 createInitializerPoisonCalls(M, ModuleName);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001084 IRB.CreateCall2(AsanRegisterGlobals,
1085 IRB.CreatePointerCast(AllGlobals, IntptrTy),
1086 ConstantInt::get(IntptrTy, n));
1087
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001088 // We also need to unregister globals at the end, e.g. when a shared library
1089 // gets closed.
1090 Function *AsanDtorFunction = Function::Create(
1091 FunctionType::get(Type::getVoidTy(*C), false),
1092 GlobalValue::InternalLinkage, kAsanModuleDtorName, &M);
1093 BasicBlock *AsanDtorBB = BasicBlock::Create(*C, "", AsanDtorFunction);
1094 IRBuilder<> IRB_Dtor(ReturnInst::Create(*C, AsanDtorBB));
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001095 IRB_Dtor.CreateCall2(AsanUnregisterGlobals,
1096 IRB.CreatePointerCast(AllGlobals, IntptrTy),
1097 ConstantInt::get(IntptrTy, n));
1098 appendToGlobalDtors(M, AsanDtorFunction, kAsanCtorAndCtorPriority);
1099
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001100 DEBUG(dbgs() << M);
1101 return true;
1102}
1103
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001104void AddressSanitizer::initializeCallbacks(Module &M) {
1105 IRBuilder<> IRB(*C);
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001106 // Create __asan_report* callbacks.
1107 for (size_t AccessIsWrite = 0; AccessIsWrite <= 1; AccessIsWrite++) {
1108 for (size_t AccessSizeIndex = 0; AccessSizeIndex < kNumberOfAccessSizes;
1109 AccessSizeIndex++) {
1110 // IsWrite and TypeSize are encoded in the function name.
1111 std::string FunctionName = std::string(kAsanReportErrorTemplate) +
1112 (AccessIsWrite ? "store" : "load") + itostr(1 << AccessSizeIndex);
Kostya Serebryany986b8da2012-07-17 11:04:12 +00001113 // If we are merging crash callbacks, they have two parameters.
Kostya Serebryany157a5152012-11-07 12:42:18 +00001114 AsanErrorCallback[AccessIsWrite][AccessSizeIndex] =
1115 checkInterfaceFunction(M.getOrInsertFunction(
1116 FunctionName, IRB.getVoidTy(), IntptrTy, NULL));
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001117 }
1118 }
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +00001119 AsanErrorCallbackSized[0] = checkInterfaceFunction(M.getOrInsertFunction(
1120 kAsanReportLoadN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1121 AsanErrorCallbackSized[1] = checkInterfaceFunction(M.getOrInsertFunction(
1122 kAsanReportStoreN, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001123
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001124 AsanHandleNoReturnFunc = checkInterfaceFunction(M.getOrInsertFunction(
1125 kAsanHandleNoReturnName, IRB.getVoidTy(), NULL));
Bob Wilsonda4147c2013-11-15 07:16:09 +00001126 AsanCovFunction = checkInterfaceFunction(M.getOrInsertFunction(
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001127 kAsanCovName, IRB.getVoidTy(), NULL));
Kostya Serebryany796f6552014-02-27 12:45:36 +00001128 AsanPtrCmpFunction = checkInterfaceFunction(M.getOrInsertFunction(
1129 kAsanPtrCmp, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1130 AsanPtrSubFunction = checkInterfaceFunction(M.getOrInsertFunction(
1131 kAsanPtrSub, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
Kostya Serebryanyf02c6062012-07-20 09:54:50 +00001132 // We insert an empty inline asm after __asan_report* to avoid callback merge.
1133 EmptyAsm = InlineAsm::get(FunctionType::get(IRB.getVoidTy(), false),
1134 StringRef(""), StringRef(""),
1135 /*hasSideEffects=*/true);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001136}
1137
1138// virtual
1139bool AddressSanitizer::doInitialization(Module &M) {
1140 // Initialize the private fields. No one has accessed them before.
Rafael Espindola93512512014-02-25 17:30:31 +00001141 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
1142 if (!DLP)
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001143 return false;
Rafael Espindola93512512014-02-25 17:30:31 +00001144 DL = &DLP->getDataLayout();
1145
Alexey Samsonove4b5fb82013-08-12 11:46:09 +00001146 BL.reset(SpecialCaseList::createOrDie(BlacklistFile));
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001147 DynamicallyInitializedGlobals.Init(M);
1148
1149 C = &(M.getContext());
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001150 LongSize = DL->getPointerSizeInBits();
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001151 IntptrTy = Type::getIntNTy(*C, LongSize);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001152
1153 AsanCtorFunction = Function::Create(
1154 FunctionType::get(Type::getVoidTy(*C), false),
1155 GlobalValue::InternalLinkage, kAsanModuleCtorName, &M);
1156 BasicBlock *AsanCtorBB = BasicBlock::Create(*C, "", AsanCtorFunction);
1157 // call __asan_init in the module ctor.
1158 IRBuilder<> IRB(ReturnInst::Create(*C, AsanCtorBB));
1159 AsanInitFunction = checkInterfaceFunction(
1160 M.getOrInsertFunction(kAsanInitName, IRB.getVoidTy(), NULL));
1161 AsanInitFunction->setLinkage(Function::ExternalLinkage);
1162 IRB.CreateCall(AsanInitFunction);
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001163
Evgeniy Stepanov13665362014-01-16 10:19:12 +00001164 Mapping = getShadowMapping(M, LongSize);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001165
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001166 appendToGlobalCtors(M, AsanCtorFunction, kAsanCtorAndCtorPriority);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001167 return true;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001168}
1169
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001170bool AddressSanitizer::maybeInsertAsanInitAtFunctionEntry(Function &F) {
1171 // For each NSObject descendant having a +load method, this method is invoked
1172 // by the ObjC runtime before any of the static constructors is called.
1173 // Therefore we need to instrument such methods with a call to __asan_init
1174 // at the beginning in order to initialize our runtime before any access to
1175 // the shadow memory.
1176 // We cannot just ignore these methods, because they may call other
1177 // instrumented functions.
1178 if (F.getName().find(" load]") != std::string::npos) {
1179 IRBuilder<> IRB(F.begin()->begin());
1180 IRB.CreateCall(AsanInitFunction);
1181 return true;
1182 }
1183 return false;
1184}
1185
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001186void AddressSanitizer::InjectCoverageAtBlock(Function &F, BasicBlock &BB) {
1187 BasicBlock::iterator IP = BB.getFirstInsertionPt(), BE = BB.end();
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001188 // Skip static allocas at the top of the entry block so they don't become
1189 // dynamic when we split the block. If we used our optimized stack layout,
1190 // then there will only be one alloca and it will come first.
Reid Kleckner30b2a9a2013-12-10 21:49:28 +00001191 for (; IP != BE; ++IP) {
1192 AllocaInst *AI = dyn_cast<AllocaInst>(IP);
1193 if (!AI || !AI->isStaticAlloca())
1194 break;
1195 }
1196
1197 IRBuilder<> IRB(IP);
Bob Wilsonda4147c2013-11-15 07:16:09 +00001198 Type *Int8Ty = IRB.getInt8Ty();
1199 GlobalVariable *Guard = new GlobalVariable(
Kostya Serebryany0604c622013-11-15 09:52:05 +00001200 *F.getParent(), Int8Ty, false, GlobalValue::PrivateLinkage,
Bob Wilsonda4147c2013-11-15 07:16:09 +00001201 Constant::getNullValue(Int8Ty), "__asan_gen_cov_" + F.getName());
1202 LoadInst *Load = IRB.CreateLoad(Guard);
1203 Load->setAtomic(Monotonic);
1204 Load->setAlignment(1);
1205 Value *Cmp = IRB.CreateICmpEQ(Constant::getNullValue(Int8Ty), Load);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001206 Instruction *Ins = SplitBlockAndInsertIfThen(
1207 Cmp, IP, false, MDBuilder(*C).createBranchWeights(1, 100000));
Bob Wilsonda4147c2013-11-15 07:16:09 +00001208 IRB.SetInsertPoint(Ins);
1209 // We pass &F to __sanitizer_cov. We could avoid this and rely on
1210 // GET_CALLER_PC, but having the PC of the first instruction is just nice.
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001211 Instruction *Call = IRB.CreateCall(AsanCovFunction);
1212 Call->setDebugLoc(IP->getDebugLoc());
Bob Wilsonda4147c2013-11-15 07:16:09 +00001213 StoreInst *Store = IRB.CreateStore(ConstantInt::get(Int8Ty, 1), Guard);
1214 Store->setAtomic(Monotonic);
1215 Store->setAlignment(1);
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001216}
1217
1218// Poor man's coverage that works with ASan.
1219// We create a Guard boolean variable with the same linkage
1220// as the function and inject this code into the entry block (-asan-coverage=1)
1221// or all blocks (-asan-coverage=2):
1222// if (*Guard) {
1223// __sanitizer_cov(&F);
1224// *Guard = 1;
1225// }
1226// The accesses to Guard are atomic. The rest of the logic is
1227// in __sanitizer_cov (it's fine to call it more than once).
1228//
1229// This coverage implementation provides very limited data:
1230// it only tells if a given function (block) was ever executed.
1231// No counters, no per-edge data.
1232// But for many use cases this is what we need and the added slowdown
1233// is negligible. This simple implementation will probably be obsoleted
1234// by the upcoming Clang-based coverage implementation.
1235// By having it here and now we hope to
1236// a) get the functionality to users earlier and
1237// b) collect usage statistics to help improve Clang coverage design.
1238bool AddressSanitizer::InjectCoverage(Function &F,
1239 const ArrayRef<BasicBlock *> AllBlocks) {
1240 if (!ClCoverage) return false;
1241
1242 if (ClCoverage == 1) {
1243 InjectCoverageAtBlock(F, F.getEntryBlock());
1244 } else {
1245 for (size_t i = 0, n = AllBlocks.size(); i < n; i++)
1246 InjectCoverageAtBlock(F, *AllBlocks[i]);
1247 }
Bob Wilsonda4147c2013-11-15 07:16:09 +00001248 return true;
1249}
1250
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001251bool AddressSanitizer::runOnFunction(Function &F) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001252 if (BL->isIn(F)) return false;
1253 if (&F == AsanCtorFunction) return false;
Kostya Serebryany6b5b58d2013-03-18 07:33:49 +00001254 if (F.getLinkage() == GlobalValue::AvailableExternallyLinkage) return false;
Kostya Serebryany20343352012-10-17 13:40:06 +00001255 DEBUG(dbgs() << "ASAN instrumenting:\n" << F << "\n");
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001256 initializeCallbacks(*F.getParent());
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001257
Kostya Serebryanycf880b92013-02-26 06:58:09 +00001258 // If needed, insert __asan_init before checking for SanitizeAddress attr.
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001259 maybeInsertAsanInitAtFunctionEntry(F);
1260
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001261 if (!F.hasFnAttribute(Attribute::SanitizeAddress))
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001262 return false;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001263
1264 if (!ClDebugFunc.empty() && ClDebugFunc != F.getName())
1265 return false;
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001266
1267 // We want to instrument every address only once per basic block (unless there
1268 // are calls between uses).
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001269 SmallSet<Value*, 16> TempsToInstrument;
1270 SmallVector<Instruction*, 16> ToInstrument;
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001271 SmallVector<Instruction*, 8> NoReturnCalls;
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001272 SmallVector<BasicBlock*, 16> AllBlocks;
Kostya Serebryany796f6552014-02-27 12:45:36 +00001273 SmallVector<Instruction*, 16> PointerComparisonsOrSubtracts;
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001274 int NumAllocas = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +00001275 bool IsWrite;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001276
1277 // Fill the set of memory operations to instrument.
1278 for (Function::iterator FI = F.begin(), FE = F.end();
1279 FI != FE; ++FI) {
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001280 AllBlocks.push_back(FI);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001281 TempsToInstrument.clear();
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001282 int NumInsnsPerBB = 0;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001283 for (BasicBlock::iterator BI = FI->begin(), BE = FI->end();
1284 BI != BE; ++BI) {
Kostya Serebryany687d0782012-01-11 18:15:23 +00001285 if (LooksLikeCodeInBug11395(BI)) return false;
Kostya Serebryany90241602012-05-30 09:04:06 +00001286 if (Value *Addr = isInterestingMemoryAccess(BI, &IsWrite)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001287 if (ClOpt && ClOptSameTemp) {
1288 if (!TempsToInstrument.insert(Addr))
1289 continue; // We've seen this temp in the current BB.
1290 }
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +00001291 } else if (ClInvalidPointerPairs &&
Kostya Serebryany796f6552014-02-27 12:45:36 +00001292 isInterestingPointerComparisonOrSubtraction(BI)) {
1293 PointerComparisonsOrSubtracts.push_back(BI);
1294 continue;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001295 } else if (isa<MemIntrinsic>(BI) && ClMemIntrin) {
1296 // ok, take it.
1297 } else {
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001298 if (isa<AllocaInst>(BI))
1299 NumAllocas++;
Kostya Serebryany699ac282013-02-20 12:35:15 +00001300 CallSite CS(BI);
1301 if (CS) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001302 // A call inside BB.
1303 TempsToInstrument.clear();
Kostya Serebryany699ac282013-02-20 12:35:15 +00001304 if (CS.doesNotReturn())
1305 NoReturnCalls.push_back(CS.getInstruction());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001306 }
1307 continue;
1308 }
1309 ToInstrument.push_back(BI);
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001310 NumInsnsPerBB++;
1311 if (NumInsnsPerBB >= ClMaxInsnsToInstrumentPerBB)
1312 break;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001313 }
1314 }
1315
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001316 Function *UninstrumentedDuplicate = 0;
1317 bool LikelyToInstrument =
1318 !NoReturnCalls.empty() || !ToInstrument.empty() || (NumAllocas > 0);
1319 if (ClKeepUninstrumented && LikelyToInstrument) {
1320 ValueToValueMapTy VMap;
1321 UninstrumentedDuplicate = CloneFunction(&F, VMap, false);
1322 UninstrumentedDuplicate->removeFnAttr(Attribute::SanitizeAddress);
1323 UninstrumentedDuplicate->setName("NOASAN_" + F.getName());
1324 F.getParent()->getFunctionList().push_back(UninstrumentedDuplicate);
1325 }
1326
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001327 // Instrument.
1328 int NumInstrumented = 0;
1329 for (size_t i = 0, n = ToInstrument.size(); i != n; i++) {
1330 Instruction *Inst = ToInstrument[i];
1331 if (ClDebugMin < 0 || ClDebugMax < 0 ||
1332 (NumInstrumented >= ClDebugMin && NumInstrumented <= ClDebugMax)) {
Kostya Serebryany90241602012-05-30 09:04:06 +00001333 if (isInterestingMemoryAccess(Inst, &IsWrite))
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001334 instrumentMop(Inst);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001335 else
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001336 instrumentMemIntrinsic(cast<MemIntrinsic>(Inst));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001337 }
1338 NumInstrumented++;
1339 }
1340
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001341 FunctionStackPoisoner FSP(F, *this);
1342 bool ChangedStack = FSP.runOnFunction();
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001343
1344 // We must unpoison the stack before every NoReturn call (throw, _exit, etc).
1345 // See e.g. http://code.google.com/p/address-sanitizer/issues/detail?id=37
1346 for (size_t i = 0, n = NoReturnCalls.size(); i != n; i++) {
1347 Instruction *CI = NoReturnCalls[i];
1348 IRBuilder<> IRB(CI);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001349 IRB.CreateCall(AsanHandleNoReturnFunc);
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001350 }
1351
Kostya Serebryany796f6552014-02-27 12:45:36 +00001352 for (size_t i = 0, n = PointerComparisonsOrSubtracts.size(); i != n; i++) {
1353 instrumentPointerComparisonOrSubtraction(PointerComparisonsOrSubtracts[i]);
1354 NumInstrumented++;
1355 }
1356
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001357 bool res = NumInstrumented > 0 || ChangedStack || !NoReturnCalls.empty();
Bob Wilsonda4147c2013-11-15 07:16:09 +00001358
Kostya Serebryany714c67c2014-01-17 11:00:30 +00001359 if (InjectCoverage(F, AllBlocks))
Bob Wilsonda4147c2013-11-15 07:16:09 +00001360 res = true;
1361
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001362 DEBUG(dbgs() << "ASAN done instrumenting: " << res << " " << F << "\n");
1363
1364 if (ClKeepUninstrumented) {
1365 if (!res) {
1366 // No instrumentation is done, no need for the duplicate.
1367 if (UninstrumentedDuplicate)
1368 UninstrumentedDuplicate->eraseFromParent();
1369 } else {
1370 // The function was instrumented. We must have the duplicate.
1371 assert(UninstrumentedDuplicate);
1372 UninstrumentedDuplicate->setSection("NOASAN");
1373 assert(!F.hasSection());
1374 F.setSection("ASAN");
1375 }
1376 }
1377
1378 return res;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001379}
1380
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001381// Workaround for bug 11395: we don't want to instrument stack in functions
1382// with large assembly blobs (32-bit only), otherwise reg alloc may crash.
1383// FIXME: remove once the bug 11395 is fixed.
1384bool AddressSanitizer::LooksLikeCodeInBug11395(Instruction *I) {
1385 if (LongSize != 32) return false;
1386 CallInst *CI = dyn_cast<CallInst>(I);
1387 if (!CI || !CI->isInlineAsm()) return false;
1388 if (CI->getNumArgOperands() <= 5) return false;
1389 // We have inline assembly with quite a few arguments.
1390 return true;
1391}
1392
1393void FunctionStackPoisoner::initializeCallbacks(Module &M) {
1394 IRBuilder<> IRB(*C);
Kostya Serebryany6805de52013-09-10 13:16:56 +00001395 for (int i = 0; i <= kMaxAsanStackMallocSizeClass; i++) {
1396 std::string Suffix = itostr(i);
1397 AsanStackMallocFunc[i] = checkInterfaceFunction(
1398 M.getOrInsertFunction(kAsanStackMallocNameTemplate + Suffix, IntptrTy,
1399 IntptrTy, IntptrTy, NULL));
1400 AsanStackFreeFunc[i] = checkInterfaceFunction(M.getOrInsertFunction(
1401 kAsanStackFreeNameTemplate + Suffix, IRB.getVoidTy(), IntptrTy,
1402 IntptrTy, IntptrTy, NULL));
1403 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001404 AsanPoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1405 kAsanPoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1406 AsanUnpoisonStackMemoryFunc = checkInterfaceFunction(M.getOrInsertFunction(
1407 kAsanUnpoisonStackMemoryName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
1408}
1409
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001410void
1411FunctionStackPoisoner::poisonRedZones(const ArrayRef<uint8_t> ShadowBytes,
1412 IRBuilder<> &IRB, Value *ShadowBase,
1413 bool DoPoison) {
1414 size_t n = ShadowBytes.size();
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001415 size_t i = 0;
1416 // We need to (un)poison n bytes of stack shadow. Poison as many as we can
1417 // using 64-bit stores (if we are on 64-bit arch), then poison the rest
1418 // with 32-bit stores, then with 16-byte stores, then with 8-byte stores.
1419 for (size_t LargeStoreSizeInBytes = ASan.LongSize / 8;
1420 LargeStoreSizeInBytes != 0; LargeStoreSizeInBytes /= 2) {
1421 for (; i + LargeStoreSizeInBytes - 1 < n; i += LargeStoreSizeInBytes) {
1422 uint64_t Val = 0;
1423 for (size_t j = 0; j < LargeStoreSizeInBytes; j++) {
Rafael Espindola37dc9e12014-02-21 00:06:31 +00001424 if (ASan.DL->isLittleEndian())
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001425 Val |= (uint64_t)ShadowBytes[i + j] << (8 * j);
1426 else
1427 Val = (Val << 8) | ShadowBytes[i + j];
1428 }
1429 if (!Val) continue;
1430 Value *Ptr = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1431 Type *StoreTy = Type::getIntNTy(*C, LargeStoreSizeInBytes * 8);
1432 Value *Poison = ConstantInt::get(StoreTy, DoPoison ? Val : 0);
1433 IRB.CreateStore(Poison, IRB.CreateIntToPtr(Ptr, StoreTy->getPointerTo()));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001434 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001435 }
1436}
1437
Kostya Serebryany6805de52013-09-10 13:16:56 +00001438// Fake stack allocator (asan_fake_stack.h) has 11 size classes
1439// for every power of 2 from kMinStackMallocSize to kMaxAsanStackMallocSizeClass
1440static int StackMallocSizeClass(uint64_t LocalStackSize) {
1441 assert(LocalStackSize <= kMaxStackMallocSize);
1442 uint64_t MaxSize = kMinStackMallocSize;
1443 for (int i = 0; ; i++, MaxSize *= 2)
1444 if (LocalStackSize <= MaxSize)
1445 return i;
1446 llvm_unreachable("impossible LocalStackSize");
1447}
1448
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001449// Set Size bytes starting from ShadowBase to kAsanStackAfterReturnMagic.
1450// We can not use MemSet intrinsic because it may end up calling the actual
1451// memset. Size is a multiple of 8.
1452// Currently this generates 8-byte stores on x86_64; it may be better to
1453// generate wider stores.
1454void FunctionStackPoisoner::SetShadowToStackAfterReturnInlined(
1455 IRBuilder<> &IRB, Value *ShadowBase, int Size) {
1456 assert(!(Size % 8));
1457 assert(kAsanStackAfterReturnMagic == 0xf5);
1458 for (int i = 0; i < Size; i += 8) {
1459 Value *p = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1460 IRB.CreateStore(ConstantInt::get(IRB.getInt64Ty(), 0xf5f5f5f5f5f5f5f5ULL),
1461 IRB.CreateIntToPtr(p, IRB.getInt64Ty()->getPointerTo()));
1462 }
1463}
1464
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001465void FunctionStackPoisoner::poisonStack() {
Kostya Serebryany6805de52013-09-10 13:16:56 +00001466 int StackMallocIdx = -1;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001467
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001468 assert(AllocaVec.size() > 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001469 Instruction *InsBefore = AllocaVec[0];
1470 IRBuilder<> IRB(InsBefore);
1471
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001472 SmallVector<ASanStackVariableDescription, 16> SVD;
1473 SVD.reserve(AllocaVec.size());
1474 for (size_t i = 0, n = AllocaVec.size(); i < n; i++) {
1475 AllocaInst *AI = AllocaVec[i];
1476 ASanStackVariableDescription D = { AI->getName().data(),
1477 getAllocaSizeInBytes(AI),
1478 AI->getAlignment(), AI, 0};
1479 SVD.push_back(D);
1480 }
1481 // Minimal header size (left redzone) is 4 pointers,
1482 // i.e. 32 bytes on 64-bit platforms and 16 bytes in 32-bit platforms.
1483 size_t MinHeaderSize = ASan.LongSize / 2;
1484 ASanStackFrameLayout L;
1485 ComputeASanStackFrameLayout(SVD, 1UL << Mapping.Scale, MinHeaderSize, &L);
1486 DEBUG(dbgs() << L.DescriptionString << " --- " << L.FrameSize << "\n");
1487 uint64_t LocalStackSize = L.FrameSize;
1488 bool DoStackMalloc =
1489 ASan.CheckUseAfterReturn && LocalStackSize <= kMaxStackMallocSize;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001490
1491 Type *ByteArrayTy = ArrayType::get(IRB.getInt8Ty(), LocalStackSize);
1492 AllocaInst *MyAlloca =
1493 new AllocaInst(ByteArrayTy, "MyAlloca", InsBefore);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001494 assert((ClRealignStack & (ClRealignStack - 1)) == 0);
1495 size_t FrameAlignment = std::max(L.FrameAlignment, (size_t)ClRealignStack);
1496 MyAlloca->setAlignment(FrameAlignment);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001497 assert(MyAlloca->isStaticAlloca());
1498 Value *OrigStackBase = IRB.CreatePointerCast(MyAlloca, IntptrTy);
1499 Value *LocalStackBase = OrigStackBase;
1500
1501 if (DoStackMalloc) {
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001502 // LocalStackBase = OrigStackBase
1503 // if (__asan_option_detect_stack_use_after_return)
1504 // LocalStackBase = __asan_stack_malloc_N(LocalStackBase, OrigStackBase);
Kostya Serebryany6805de52013-09-10 13:16:56 +00001505 StackMallocIdx = StackMallocSizeClass(LocalStackSize);
1506 assert(StackMallocIdx <= kMaxAsanStackMallocSizeClass);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001507 Constant *OptionDetectUAR = F.getParent()->getOrInsertGlobal(
1508 kAsanOptionDetectUAR, IRB.getInt32Ty());
1509 Value *Cmp = IRB.CreateICmpNE(IRB.CreateLoad(OptionDetectUAR),
1510 Constant::getNullValue(IRB.getInt32Ty()));
Evgeniy Stepanova9164e92013-12-19 13:29:56 +00001511 Instruction *Term = SplitBlockAndInsertIfThen(Cmp, InsBefore, false);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001512 BasicBlock *CmpBlock = cast<Instruction>(Cmp)->getParent();
1513 IRBuilder<> IRBIf(Term);
1514 LocalStackBase = IRBIf.CreateCall2(
1515 AsanStackMallocFunc[StackMallocIdx],
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001516 ConstantInt::get(IntptrTy, LocalStackSize), OrigStackBase);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00001517 BasicBlock *SetBlock = cast<Instruction>(LocalStackBase)->getParent();
1518 IRB.SetInsertPoint(InsBefore);
1519 PHINode *Phi = IRB.CreatePHI(IntptrTy, 2);
1520 Phi->addIncoming(OrigStackBase, CmpBlock);
1521 Phi->addIncoming(LocalStackBase, SetBlock);
1522 LocalStackBase = Phi;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001523 }
1524
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001525 // Insert poison calls for lifetime intrinsics for alloca.
1526 bool HavePoisonedAllocas = false;
1527 for (size_t i = 0, n = AllocaPoisonCallVec.size(); i < n; i++) {
1528 const AllocaPoisonCall &APC = AllocaPoisonCallVec[i];
Alexey Samsonova788b942013-11-18 14:53:55 +00001529 assert(APC.InsBefore);
1530 assert(APC.AI);
1531 IRBuilder<> IRB(APC.InsBefore);
1532 poisonAlloca(APC.AI, APC.Size, IRB, APC.DoPoison);
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001533 HavePoisonedAllocas |= APC.DoPoison;
1534 }
1535
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001536 // Replace Alloca instructions with base+offset.
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001537 for (size_t i = 0, n = SVD.size(); i < n; i++) {
1538 AllocaInst *AI = SVD[i].AI;
Alexey Samsonov261177a2012-12-04 01:34:23 +00001539 Value *NewAllocaPtr = IRB.CreateIntToPtr(
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001540 IRB.CreateAdd(LocalStackBase,
1541 ConstantInt::get(IntptrTy, SVD[i].Offset)),
1542 AI->getType());
Alexey Samsonov3d43b632012-12-12 14:31:53 +00001543 replaceDbgDeclareForAlloca(AI, NewAllocaPtr, DIB);
Alexey Samsonov261177a2012-12-04 01:34:23 +00001544 AI->replaceAllUsesWith(NewAllocaPtr);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001545 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001546
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001547 // The left-most redzone has enough space for at least 4 pointers.
1548 // Write the Magic value to redzone[0].
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001549 Value *BasePlus0 = IRB.CreateIntToPtr(LocalStackBase, IntptrPtrTy);
1550 IRB.CreateStore(ConstantInt::get(IntptrTy, kCurrentStackFrameMagic),
1551 BasePlus0);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001552 // Write the frame description constant to redzone[1].
1553 Value *BasePlus1 = IRB.CreateIntToPtr(
1554 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, ASan.LongSize/8)),
1555 IntptrPtrTy);
Alexey Samsonov9bdb63a2012-11-02 12:20:34 +00001556 GlobalVariable *StackDescriptionGlobal =
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001557 createPrivateGlobalForString(*F.getParent(), L.DescriptionString,
1558 /*AllowMerging*/true);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001559 Value *Description = IRB.CreatePointerCast(StackDescriptionGlobal,
1560 IntptrTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001561 IRB.CreateStore(Description, BasePlus1);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00001562 // Write the PC to redzone[2].
1563 Value *BasePlus2 = IRB.CreateIntToPtr(
1564 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy,
1565 2 * ASan.LongSize/8)),
1566 IntptrPtrTy);
1567 IRB.CreateStore(IRB.CreatePointerCast(&F, IntptrTy), BasePlus2);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001568
1569 // Poison the stack redzones at the entry.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001570 Value *ShadowBase = ASan.memToShadow(LocalStackBase, IRB);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001571 poisonRedZones(L.ShadowBytes, IRB, ShadowBase, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001572
Kostya Serebryany530e2072013-12-23 14:15:08 +00001573 // (Un)poison the stack before all ret instructions.
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001574 for (size_t i = 0, n = RetVec.size(); i < n; i++) {
1575 Instruction *Ret = RetVec[i];
1576 IRBuilder<> IRBRet(Ret);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001577 // Mark the current frame as retired.
1578 IRBRet.CreateStore(ConstantInt::get(IntptrTy, kRetiredStackFrameMagic),
1579 BasePlus0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001580 if (DoStackMalloc) {
Kostya Serebryany6805de52013-09-10 13:16:56 +00001581 assert(StackMallocIdx >= 0);
Kostya Serebryany530e2072013-12-23 14:15:08 +00001582 // if LocalStackBase != OrigStackBase:
1583 // // In use-after-return mode, poison the whole stack frame.
1584 // if StackMallocIdx <= 4
1585 // // For small sizes inline the whole thing:
1586 // memset(ShadowBase, kAsanStackAfterReturnMagic, ShadowSize);
1587 // **SavedFlagPtr(LocalStackBase) = 0
1588 // else
1589 // __asan_stack_free_N(LocalStackBase, OrigStackBase)
1590 // else
1591 // <This is not a fake stack; unpoison the redzones>
1592 Value *Cmp = IRBRet.CreateICmpNE(LocalStackBase, OrigStackBase);
1593 TerminatorInst *ThenTerm, *ElseTerm;
1594 SplitBlockAndInsertIfThenElse(Cmp, Ret, &ThenTerm, &ElseTerm);
1595
1596 IRBuilder<> IRBPoison(ThenTerm);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001597 if (StackMallocIdx <= 4) {
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001598 int ClassSize = kMinStackMallocSize << StackMallocIdx;
1599 SetShadowToStackAfterReturnInlined(IRBPoison, ShadowBase,
1600 ClassSize >> Mapping.Scale);
1601 Value *SavedFlagPtrPtr = IRBPoison.CreateAdd(
1602 LocalStackBase,
1603 ConstantInt::get(IntptrTy, ClassSize - ASan.LongSize / 8));
1604 Value *SavedFlagPtr = IRBPoison.CreateLoad(
1605 IRBPoison.CreateIntToPtr(SavedFlagPtrPtr, IntptrPtrTy));
1606 IRBPoison.CreateStore(
1607 Constant::getNullValue(IRBPoison.getInt8Ty()),
1608 IRBPoison.CreateIntToPtr(SavedFlagPtr, IRBPoison.getInt8PtrTy()));
1609 } else {
1610 // For larger frames call __asan_stack_free_*.
Kostya Serebryany530e2072013-12-23 14:15:08 +00001611 IRBPoison.CreateCall3(AsanStackFreeFunc[StackMallocIdx], LocalStackBase,
1612 ConstantInt::get(IntptrTy, LocalStackSize),
1613 OrigStackBase);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001614 }
Kostya Serebryany530e2072013-12-23 14:15:08 +00001615
1616 IRBuilder<> IRBElse(ElseTerm);
1617 poisonRedZones(L.ShadowBytes, IRBElse, ShadowBase, false);
Alexey Samsonov261177a2012-12-04 01:34:23 +00001618 } else if (HavePoisonedAllocas) {
1619 // If we poisoned some allocas in llvm.lifetime analysis,
1620 // unpoison whole stack frame now.
1621 assert(LocalStackBase == OrigStackBase);
1622 poisonAlloca(LocalStackBase, LocalStackSize, IRBRet, false);
Kostya Serebryany530e2072013-12-23 14:15:08 +00001623 } else {
1624 poisonRedZones(L.ShadowBytes, IRBRet, ShadowBase, false);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001625 }
1626 }
1627
Kostya Serebryany09959942012-10-19 06:20:53 +00001628 // We are done. Remove the old unused alloca instructions.
1629 for (size_t i = 0, n = AllocaVec.size(); i < n; i++)
1630 AllocaVec[i]->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001631}
Alexey Samsonov261177a2012-12-04 01:34:23 +00001632
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001633void FunctionStackPoisoner::poisonAlloca(Value *V, uint64_t Size,
Jakub Staszak23ec6a92013-08-09 20:53:48 +00001634 IRBuilder<> &IRB, bool DoPoison) {
Alexey Samsonov261177a2012-12-04 01:34:23 +00001635 // For now just insert the call to ASan runtime.
1636 Value *AddrArg = IRB.CreatePointerCast(V, IntptrTy);
1637 Value *SizeArg = ConstantInt::get(IntptrTy, Size);
1638 IRB.CreateCall2(DoPoison ? AsanPoisonStackMemoryFunc
1639 : AsanUnpoisonStackMemoryFunc,
1640 AddrArg, SizeArg);
1641}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001642
1643// Handling llvm.lifetime intrinsics for a given %alloca:
1644// (1) collect all llvm.lifetime.xxx(%size, %value) describing the alloca.
1645// (2) if %size is constant, poison memory for llvm.lifetime.end (to detect
1646// invalid accesses) and unpoison it for llvm.lifetime.start (the memory
1647// could be poisoned by previous llvm.lifetime.end instruction, as the
1648// variable may go in and out of scope several times, e.g. in loops).
1649// (3) if we poisoned at least one %alloca in a function,
1650// unpoison the whole stack frame at function exit.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001651
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001652AllocaInst *FunctionStackPoisoner::findAllocaForValue(Value *V) {
1653 if (AllocaInst *AI = dyn_cast<AllocaInst>(V))
1654 // We're intested only in allocas we can handle.
1655 return isInterestingAlloca(*AI) ? AI : 0;
1656 // See if we've already calculated (or started to calculate) alloca for a
1657 // given value.
1658 AllocaForValueMapTy::iterator I = AllocaForValue.find(V);
1659 if (I != AllocaForValue.end())
1660 return I->second;
1661 // Store 0 while we're calculating alloca for value V to avoid
1662 // infinite recursion if the value references itself.
1663 AllocaForValue[V] = 0;
1664 AllocaInst *Res = 0;
1665 if (CastInst *CI = dyn_cast<CastInst>(V))
1666 Res = findAllocaForValue(CI->getOperand(0));
1667 else if (PHINode *PN = dyn_cast<PHINode>(V)) {
1668 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
1669 Value *IncValue = PN->getIncomingValue(i);
1670 // Allow self-referencing phi-nodes.
1671 if (IncValue == PN) continue;
1672 AllocaInst *IncValueAI = findAllocaForValue(IncValue);
1673 // AI for incoming values should exist and should all be equal.
1674 if (IncValueAI == 0 || (Res != 0 && IncValueAI != Res))
1675 return 0;
1676 Res = IncValueAI;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001677 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001678 }
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00001679 if (Res != 0)
1680 AllocaForValue[V] = Res;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001681 return Res;
1682}