blob: 5f7e67033d43e9a9720688af5c88fe485770be8f [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
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000016#include "llvm/ADT/ArrayRef.h"
Alexey Samsonov29dd7f22012-12-27 08:50:58 +000017#include "llvm/ADT/DenseMap.h"
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +000018#include "llvm/ADT/DepthFirstIterator.h"
Kuba Brecka8ec94ea2015-07-22 10:25:38 +000019#include "llvm/ADT/SetVector.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000020#include "llvm/ADT/SmallSet.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000021#include "llvm/ADT/SmallVector.h"
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +000022#include "llvm/ADT/Statistic.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000023#include "llvm/ADT/StringExtras.h"
Evgeniy Stepanov617232f2012-05-23 11:52:12 +000024#include "llvm/ADT/Triple.h"
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +000025#include "llvm/Analysis/MemoryBuiltins.h"
26#include "llvm/Analysis/TargetLibraryInfo.h"
27#include "llvm/Analysis/ValueTracking.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"
Yury Gribov3ae427d2014-12-01 08:47:58 +000031#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000032#include "llvm/IR/Function.h"
33#include "llvm/IR/IRBuilder.h"
34#include "llvm/IR/InlineAsm.h"
Chandler Carruth7da14f12014-03-06 03:23:41 +000035#include "llvm/IR/InstVisitor.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000036#include "llvm/IR/IntrinsicInst.h"
37#include "llvm/IR/LLVMContext.h"
Kostya Serebryany714c67c2014-01-17 11:00:30 +000038#include "llvm/IR/MDBuilder.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000039#include "llvm/IR/Module.h"
40#include "llvm/IR/Type.h"
Kuba Brecka1001bb52014-12-05 22:19:18 +000041#include "llvm/MC/MCSectionMachO.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000042#include "llvm/Support/CommandLine.h"
43#include "llvm/Support/DataTypes.h"
44#include "llvm/Support/Debug.h"
Kostya Serebryany9e62b302013-06-03 14:46:56 +000045#include "llvm/Support/Endian.h"
Yury Gribov55441bb2014-11-21 10:29:50 +000046#include "llvm/Support/SwapByteOrder.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000047#include "llvm/Support/raw_ostream.h"
Mehdi Aminib550cb12016-04-18 09:17:29 +000048#include "llvm/Transforms/Instrumentation.h"
Kostya Serebryany351b0782014-09-03 22:37:37 +000049#include "llvm/Transforms/Scalar.h"
Kostya Serebryany4fb78012013-12-06 09:00:17 +000050#include "llvm/Transforms/Utils/ASanStackFrameLayout.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000051#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Kostya Serebryany9f5213f2013-06-26 09:18:17 +000052#include "llvm/Transforms/Utils/Cloning.h"
Alexey Samsonov3d43b632012-12-12 14:31:53 +000053#include "llvm/Transforms/Utils/Local.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000054#include "llvm/Transforms/Utils/ModuleUtils.h"
Anna Zaks8ed1d812015-02-27 03:12:36 +000055#include "llvm/Transforms/Utils/PromoteMemToReg.h"
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000056#include <algorithm>
Vitaly Buka3455b9b2016-08-20 18:34:39 +000057#include <iomanip>
Vitaly Buka793913c2016-08-29 18:17:21 +000058#include <limits>
Vitaly Buka3455b9b2016-08-20 18:34:39 +000059#include <sstream>
Chandler Carruthed0881b2012-12-03 16:50:05 +000060#include <string>
Rafael Espindolaa6e9c3e2014-06-12 17:38:55 +000061#include <system_error>
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000062
63using namespace llvm;
64
Chandler Carruth964daaa2014-04-22 02:55:47 +000065#define DEBUG_TYPE "asan"
66
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000067static const uint64_t kDefaultShadowScale = 3;
68static const uint64_t kDefaultShadowOffset32 = 1ULL << 29;
69static const uint64_t kDefaultShadowOffset64 = 1ULL << 44;
Etienne Bergeron0ca05682016-09-30 17:46:32 +000070static const uint64_t kDynamicShadowSentinel = ~(uint64_t)0;
Anna Zaks3b50e702016-02-02 22:05:07 +000071static const uint64_t kIOSShadowOffset32 = 1ULL << 30;
Anna Zaks3b50e702016-02-02 22:05:07 +000072static const uint64_t kIOSSimShadowOffset32 = 1ULL << 30;
73static const uint64_t kIOSSimShadowOffset64 = kDefaultShadowOffset64;
Kostya Serebryanycc92c792014-02-24 13:40:24 +000074static const uint64_t kSmallX86_64ShadowOffset = 0x7FFF8000; // < 2G.
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +000075static const uint64_t kLinuxKasan_ShadowOffset64 = 0xdffffc0000000000;
Kostya Serebryany4766fe62013-01-23 12:54:55 +000076static const uint64_t kPPC64_ShadowOffset64 = 1ULL << 41;
Marcin Koscielnicki57290f92016-04-30 09:57:34 +000077static const uint64_t kSystemZ_ShadowOffset64 = 1ULL << 52;
Kostya Serebryanyc5bd9812014-11-04 19:46:15 +000078static const uint64_t kMIPS32_ShadowOffset32 = 0x0aaa0000;
Kumar Sukhani9559a5c2015-01-31 10:43:18 +000079static const uint64_t kMIPS64_ShadowOffset64 = 1ULL << 37;
Renato Golinaf213722015-02-03 11:20:45 +000080static const uint64_t kAArch64_ShadowOffset64 = 1ULL << 36;
Kostya Serebryany8baa3862014-02-10 07:37:04 +000081static const uint64_t kFreeBSD_ShadowOffset32 = 1ULL << 30;
82static const uint64_t kFreeBSD_ShadowOffset64 = 1ULL << 46;
Timur Iskhodzhanovb4b6b742015-01-22 12:24:21 +000083static const uint64_t kWindowsShadowOffset32 = 3ULL << 28;
Etienne Bergeron0ca05682016-09-30 17:46:32 +000084// The shadow memory space is dynamically allocated.
85static const uint64_t kWindowsShadowOffset64 = kDynamicShadowSentinel;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000086
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +000087static const size_t kMinStackMallocSize = 1 << 6; // 64B
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000088static const size_t kMaxStackMallocSize = 1 << 16; // 64K
89static const uintptr_t kCurrentStackFrameMagic = 0x41B58AB3;
90static const uintptr_t kRetiredStackFrameMagic = 0x45E0360E;
91
Craig Topperd3a34f82013-07-16 01:17:10 +000092static const char *const kAsanModuleCtorName = "asan.module_ctor";
93static const char *const kAsanModuleDtorName = "asan.module_dtor";
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +000094static const uint64_t kAsanCtorAndDtorPriority = 1;
Craig Topperd3a34f82013-07-16 01:17:10 +000095static const char *const kAsanReportErrorTemplate = "__asan_report_";
Craig Topperd3a34f82013-07-16 01:17:10 +000096static const char *const kAsanRegisterGlobalsName = "__asan_register_globals";
Alexey Samsonovf52b7172013-08-05 13:19:49 +000097static const char *const kAsanUnregisterGlobalsName =
98 "__asan_unregister_globals";
Ryan Govostes653f9d02016-03-28 20:28:57 +000099static const char *const kAsanRegisterImageGlobalsName =
100 "__asan_register_image_globals";
101static const char *const kAsanUnregisterImageGlobalsName =
102 "__asan_unregister_image_globals";
Craig Topperd3a34f82013-07-16 01:17:10 +0000103static const char *const kAsanPoisonGlobalsName = "__asan_before_dynamic_init";
104static const char *const kAsanUnpoisonGlobalsName = "__asan_after_dynamic_init";
Kuba Brecka45dbffd2015-07-23 10:54:06 +0000105static const char *const kAsanInitName = "__asan_init";
106static const char *const kAsanVersionCheckName =
Ryan Govostes653f9d02016-03-28 20:28:57 +0000107 "__asan_version_mismatch_check_v8";
Kostya Serebryany796f6552014-02-27 12:45:36 +0000108static const char *const kAsanPtrCmp = "__sanitizer_ptr_cmp";
109static const char *const kAsanPtrSub = "__sanitizer_ptr_sub";
Craig Topperd3a34f82013-07-16 01:17:10 +0000110static const char *const kAsanHandleNoReturnName = "__asan_handle_no_return";
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000111static const int kMaxAsanStackMallocSizeClass = 10;
Kostya Serebryany6805de52013-09-10 13:16:56 +0000112static const char *const kAsanStackMallocNameTemplate = "__asan_stack_malloc_";
113static const char *const kAsanStackFreeNameTemplate = "__asan_stack_free_";
Craig Topperd3a34f82013-07-16 01:17:10 +0000114static const char *const kAsanGenPrefix = "__asan_gen_";
Maxim Ostapenkob1e3f602016-02-08 08:30:57 +0000115static const char *const kODRGenPrefix = "__odr_asan_gen_";
Kostya Serebryanycb45b122014-11-19 00:22:58 +0000116static const char *const kSanCovGenPrefix = "__sancov_gen_";
Vitaly Buka3455b9b2016-08-20 18:34:39 +0000117static const char *const kAsanSetShadowPrefix = "__asan_set_shadow_";
Craig Topperd3a34f82013-07-16 01:17:10 +0000118static const char *const kAsanPoisonStackMemoryName =
119 "__asan_poison_stack_memory";
120static const char *const kAsanUnpoisonStackMemoryName =
Alexey Samsonov261177a2012-12-04 01:34:23 +0000121 "__asan_unpoison_stack_memory";
Ryan Govostes653f9d02016-03-28 20:28:57 +0000122static const char *const kAsanGlobalsRegisteredFlagName =
123 "__asan_globals_registered";
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000124
Vitaly Buka7b8ed4f2016-06-02 00:06:42 +0000125static const char *const kAsanOptionDetectUseAfterReturn =
Kostya Serebryanyf3223822013-09-18 14:07:14 +0000126 "__asan_option_detect_stack_use_after_return";
127
Etienne Bergeron0ca05682016-09-30 17:46:32 +0000128static const char *const kAsanShadowMemoryDynamicAddress =
129 "__asan_shadow_memory_dynamic_address";
130
Alexander Potapenkof90556e2015-06-12 11:27:06 +0000131static const char *const kAsanAllocaPoison = "__asan_alloca_poison";
132static const char *const kAsanAllocasUnpoison = "__asan_allocas_unpoison";
Yury Gribov98b18592015-05-28 07:51:49 +0000133
Kostya Serebryany874dae62012-07-16 16:15:40 +0000134// Accesses sizes are powers of two: 1, 2, 4, 8, 16.
135static const size_t kNumberOfAccessSizes = 5;
136
Yury Gribov55441bb2014-11-21 10:29:50 +0000137static const unsigned kAllocaRzSize = 32;
Yury Gribov55441bb2014-11-21 10:29:50 +0000138
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000139// Command-line flags.
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +0000140static cl::opt<bool> ClEnableKasan(
141 "asan-kernel", cl::desc("Enable KernelAddressSanitizer instrumentation"),
142 cl::Hidden, cl::init(false));
Yury Gribovd7731982015-11-11 10:36:49 +0000143static cl::opt<bool> ClRecover(
144 "asan-recover",
145 cl::desc("Enable recovery mode (continue-after-error)."),
146 cl::Hidden, cl::init(false));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000147
148// This flag may need to be replaced with -f[no-]asan-reads.
149static cl::opt<bool> ClInstrumentReads("asan-instrument-reads",
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000150 cl::desc("instrument read instructions"),
151 cl::Hidden, cl::init(true));
152static cl::opt<bool> ClInstrumentWrites(
153 "asan-instrument-writes", cl::desc("instrument write instructions"),
154 cl::Hidden, cl::init(true));
155static cl::opt<bool> ClInstrumentAtomics(
156 "asan-instrument-atomics",
157 cl::desc("instrument atomic instructions (rmw, cmpxchg)"), cl::Hidden,
158 cl::init(true));
159static cl::opt<bool> ClAlwaysSlowPath(
160 "asan-always-slow-path",
161 cl::desc("use instrumentation with slow path for all accesses"), cl::Hidden,
162 cl::init(false));
Etienne Bergeron0ca05682016-09-30 17:46:32 +0000163static cl::opt<bool> ClForceDynamicShadow(
164 "asan-force-dynamic-shadow",
165 cl::desc("Load shadow address into a local variable for each function"),
166 cl::Hidden, cl::init(false));
167
Kostya Serebryany874dae62012-07-16 16:15:40 +0000168// This flag limits the number of instructions to be instrumented
Kostya Serebryanyc387ca72012-06-28 09:34:41 +0000169// in any given BB. Normally, this should be set to unlimited (INT_MAX),
170// but due to http://llvm.org/bugs/show_bug.cgi?id=12652 we temporary
171// set it to 10000.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000172static cl::opt<int> ClMaxInsnsToInstrumentPerBB(
173 "asan-max-ins-per-bb", cl::init(10000),
174 cl::desc("maximal number of instructions to instrument in any given BB"),
175 cl::Hidden);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000176// This flag may need to be replaced with -f[no]asan-stack.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000177static cl::opt<bool> ClStack("asan-stack", cl::desc("Handle stack memory"),
178 cl::Hidden, cl::init(true));
Vitaly Buka1f9e1352016-08-20 20:23:50 +0000179static cl::opt<uint32_t> ClMaxInlinePoisoningSize(
180 "asan-max-inline-poisoning-size",
181 cl::desc(
182 "Inline shadow poisoning for blocks up to the given size in bytes."),
183 cl::Hidden, cl::init(64));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000184static cl::opt<bool> ClUseAfterReturn("asan-use-after-return",
Mike Aizatsky243b71f2016-04-21 22:00:13 +0000185 cl::desc("Check stack-use-after-return"),
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000186 cl::Hidden, cl::init(true));
Kostya Serebryanya83bfea2016-04-20 20:02:58 +0000187static cl::opt<bool> ClUseAfterScope("asan-use-after-scope",
188 cl::desc("Check stack-use-after-scope"),
189 cl::Hidden, cl::init(false));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000190// This flag may need to be replaced with -f[no]asan-globals.
191static cl::opt<bool> ClGlobals("asan-globals",
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000192 cl::desc("Handle global objects"), cl::Hidden,
193 cl::init(true));
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000194static cl::opt<bool> ClInitializers("asan-initialization-order",
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000195 cl::desc("Handle C++ initializer order"),
196 cl::Hidden, cl::init(true));
197static cl::opt<bool> ClInvalidPointerPairs(
198 "asan-detect-invalid-pointer-pair",
199 cl::desc("Instrument <, <=, >, >=, - with pointer operands"), cl::Hidden,
200 cl::init(false));
201static cl::opt<unsigned> ClRealignStack(
202 "asan-realign-stack",
203 cl::desc("Realign stack to the value of this flag (power of two)"),
204 cl::Hidden, cl::init(32));
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000205static cl::opt<int> ClInstrumentationWithCallsThreshold(
206 "asan-instrumentation-with-call-threshold",
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000207 cl::desc(
208 "If the function being instrumented contains more than "
209 "this number of memory accesses, use callbacks instead of "
210 "inline checks (-1 means never use callbacks)."),
211 cl::Hidden, cl::init(7000));
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000212static cl::opt<std::string> ClMemoryAccessCallbackPrefix(
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000213 "asan-memory-access-callback-prefix",
214 cl::desc("Prefix for memory access callbacks"), cl::Hidden,
215 cl::init("__asan_"));
Vitaly Buka5b4f1212016-08-20 17:22:27 +0000216static cl::opt<bool>
217 ClInstrumentDynamicAllocas("asan-instrument-dynamic-allocas",
218 cl::desc("instrument dynamic allocas"),
219 cl::Hidden, cl::init(true));
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000220static cl::opt<bool> ClSkipPromotableAllocas(
221 "asan-skip-promotable-allocas",
222 cl::desc("Do not instrument promotable allocas"), cl::Hidden,
223 cl::init(true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000224
225// These flags allow to change the shadow mapping.
226// The shadow mapping looks like
Ryan Govostes3f37df02016-05-06 10:25:22 +0000227// Shadow = (Mem >> scale) + offset
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000228static cl::opt<int> ClMappingScale("asan-mapping-scale",
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000229 cl::desc("scale of asan shadow mapping"),
230 cl::Hidden, cl::init(0));
Ryan Govostes6194ae62016-05-06 11:22:11 +0000231static cl::opt<unsigned long long> ClMappingOffset(
232 "asan-mapping-offset",
233 cl::desc("offset of asan shadow mapping [EXPERIMENTAL]"), cl::Hidden,
234 cl::init(0));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000235
236// Optimization flags. Not user visible, used mostly for testing
237// and benchmarking the tool.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000238static cl::opt<bool> ClOpt("asan-opt", cl::desc("Optimize instrumentation"),
239 cl::Hidden, cl::init(true));
240static cl::opt<bool> ClOptSameTemp(
241 "asan-opt-same-temp", cl::desc("Instrument the same temp just once"),
242 cl::Hidden, cl::init(true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000243static cl::opt<bool> ClOptGlobals("asan-opt-globals",
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000244 cl::desc("Don't instrument scalar globals"),
245 cl::Hidden, cl::init(true));
246static cl::opt<bool> ClOptStack(
247 "asan-opt-stack", cl::desc("Don't instrument scalar stack variables"),
248 cl::Hidden, cl::init(false));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000249
Alexey Samsonov4b7f4132014-12-11 21:53:03 +0000250static cl::opt<bool> ClDynamicAllocaStack(
251 "asan-stack-dynamic-alloca",
252 cl::desc("Use dynamic alloca to represent stack variables"), cl::Hidden,
Alexey Samsonov19763c42015-02-05 19:39:20 +0000253 cl::init(true));
Alexey Samsonov4b7f4132014-12-11 21:53:03 +0000254
Dmitry Vyukov618d5802015-03-17 16:59:19 +0000255static cl::opt<uint32_t> ClForceExperiment(
256 "asan-force-experiment",
257 cl::desc("Force optimization experiment (for testing)"), cl::Hidden,
258 cl::init(0));
259
Maxim Ostapenkob1e3f602016-02-08 08:30:57 +0000260static cl::opt<bool>
261 ClUsePrivateAliasForGlobals("asan-use-private-alias",
262 cl::desc("Use private aliases for global"
263 " variables"),
264 cl::Hidden, cl::init(false));
265
Ryan Govostese51401b2016-07-05 21:53:08 +0000266static cl::opt<bool>
267 ClUseMachOGlobalsSection("asan-globals-live-support",
268 cl::desc("Use linker features to support dead "
269 "code stripping of globals "
270 "(Mach-O only)"),
Anna Zaks9cd5ed12016-11-17 16:55:40 +0000271 cl::Hidden, cl::init(true));
Ryan Govostese51401b2016-07-05 21:53:08 +0000272
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000273// Debug flags.
274static cl::opt<int> ClDebug("asan-debug", cl::desc("debug"), cl::Hidden,
275 cl::init(0));
276static cl::opt<int> ClDebugStack("asan-debug-stack", cl::desc("debug stack"),
277 cl::Hidden, cl::init(0));
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000278static cl::opt<std::string> ClDebugFunc("asan-debug-func", cl::Hidden,
279 cl::desc("Debug func"));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000280static cl::opt<int> ClDebugMin("asan-debug-min", cl::desc("Debug min inst"),
281 cl::Hidden, cl::init(-1));
Etienne Bergeron7f0e3152016-09-22 14:57:24 +0000282static cl::opt<int> ClDebugMax("asan-debug-max", cl::desc("Debug max inst"),
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000283 cl::Hidden, cl::init(-1));
284
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000285STATISTIC(NumInstrumentedReads, "Number of instrumented reads");
286STATISTIC(NumInstrumentedWrites, "Number of instrumented writes");
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000287STATISTIC(NumOptimizedAccessesToGlobalVar,
288 "Number of optimized accesses to global vars");
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000289STATISTIC(NumOptimizedAccessesToStackVar,
290 "Number of optimized accesses to stack vars");
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000291
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000292namespace {
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +0000293/// Frontend-provided metadata for source location.
294struct LocationMetadata {
295 StringRef Filename;
296 int LineNo;
297 int ColumnNo;
298
299 LocationMetadata() : Filename(), LineNo(0), ColumnNo(0) {}
300
301 bool empty() const { return Filename.empty(); }
302
303 void parse(MDNode *MDN) {
304 assert(MDN->getNumOperands() == 3);
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000305 MDString *DIFilename = cast<MDString>(MDN->getOperand(0));
306 Filename = DIFilename->getString();
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000307 LineNo =
308 mdconst::extract<ConstantInt>(MDN->getOperand(1))->getLimitedValue();
309 ColumnNo =
310 mdconst::extract<ConstantInt>(MDN->getOperand(2))->getLimitedValue();
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +0000311 }
312};
313
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000314/// Frontend-provided metadata for global variables.
315class GlobalsMetadata {
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000316 public:
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000317 struct Entry {
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000318 Entry() : SourceLoc(), Name(), IsDynInit(false), IsBlacklisted(false) {}
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +0000319 LocationMetadata SourceLoc;
320 StringRef Name;
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000321 bool IsDynInit;
322 bool IsBlacklisted;
323 };
324
Alexey Samsonov0c5ecdd2014-07-02 20:25:42 +0000325 GlobalsMetadata() : inited_(false) {}
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000326
Keno Fischere03fae42015-12-05 14:42:34 +0000327 void reset() {
328 inited_ = false;
329 Entries.clear();
330 }
331
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000332 void init(Module &M) {
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000333 assert(!inited_);
334 inited_ = true;
335 NamedMDNode *Globals = M.getNamedMetadata("llvm.asan.globals");
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000336 if (!Globals) return;
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000337 for (auto MDN : Globals->operands()) {
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000338 // Metadata node contains the global and the fields of "Entry".
Alexey Samsonov15c96692014-07-12 00:42:52 +0000339 assert(MDN->getNumOperands() == 5);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000340 auto *GV = mdconst::extract_or_null<GlobalVariable>(MDN->getOperand(0));
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000341 // The optimizer may optimize away a global entirely.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000342 if (!GV) continue;
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000343 // We can already have an entry for GV if it was merged with another
344 // global.
345 Entry &E = Entries[GV];
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000346 if (auto *Loc = cast_or_null<MDNode>(MDN->getOperand(1)))
347 E.SourceLoc.parse(Loc);
348 if (auto *Name = cast_or_null<MDString>(MDN->getOperand(2)))
349 E.Name = Name->getString();
350 ConstantInt *IsDynInit =
351 mdconst::extract<ConstantInt>(MDN->getOperand(3));
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000352 E.IsDynInit |= IsDynInit->isOne();
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000353 ConstantInt *IsBlacklisted =
354 mdconst::extract<ConstantInt>(MDN->getOperand(4));
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000355 E.IsBlacklisted |= IsBlacklisted->isOne();
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000356 }
357 }
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000358
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000359 /// Returns metadata entry for a given global.
360 Entry get(GlobalVariable *G) const {
361 auto Pos = Entries.find(G);
362 return (Pos != Entries.end()) ? Pos->second : Entry();
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000363 }
364
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000365 private:
Alexey Samsonov0c5ecdd2014-07-02 20:25:42 +0000366 bool inited_;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000367 DenseMap<GlobalVariable *, Entry> Entries;
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000368};
369
Alexey Samsonov1345d352013-01-16 13:23:28 +0000370/// This struct defines the shadow mapping using the rule:
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000371/// shadow = (mem >> Scale) ADD-or-OR Offset.
Alexey Samsonov1345d352013-01-16 13:23:28 +0000372struct ShadowMapping {
373 int Scale;
374 uint64_t Offset;
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000375 bool OrShadowOffset;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000376};
377
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +0000378static ShadowMapping getShadowMapping(Triple &TargetTriple, int LongSize,
379 bool IsKasan) {
Evgeniy Stepanov5fe279e2015-10-08 21:21:24 +0000380 bool IsAndroid = TargetTriple.isAndroid();
Anna Zaks3b50e702016-02-02 22:05:07 +0000381 bool IsIOS = TargetTriple.isiOS() || TargetTriple.isWatchOS();
Simon Pilgrima2794102014-11-22 19:12:10 +0000382 bool IsFreeBSD = TargetTriple.isOSFreeBSD();
383 bool IsLinux = TargetTriple.isOSLinux();
Bill Schmidt0a9170d2013-07-26 01:35:43 +0000384 bool IsPPC64 = TargetTriple.getArch() == llvm::Triple::ppc64 ||
385 TargetTriple.getArch() == llvm::Triple::ppc64le;
Marcin Koscielnicki57290f92016-04-30 09:57:34 +0000386 bool IsSystemZ = TargetTriple.getArch() == llvm::Triple::systemz;
Anna Zaks3b50e702016-02-02 22:05:07 +0000387 bool IsX86 = TargetTriple.getArch() == llvm::Triple::x86;
Kostya Serebryanybe733372013-02-12 11:11:02 +0000388 bool IsX86_64 = TargetTriple.getArch() == llvm::Triple::x86_64;
Kostya Serebryany9e62b302013-06-03 14:46:56 +0000389 bool IsMIPS32 = TargetTriple.getArch() == llvm::Triple::mips ||
390 TargetTriple.getArch() == llvm::Triple::mipsel;
Kostya Serebryany231bd082014-11-11 23:02:57 +0000391 bool IsMIPS64 = TargetTriple.getArch() == llvm::Triple::mips64 ||
392 TargetTriple.getArch() == llvm::Triple::mips64el;
Renato Golinaf213722015-02-03 11:20:45 +0000393 bool IsAArch64 = TargetTriple.getArch() == llvm::Triple::aarch64;
Timur Iskhodzhanov00ede842015-01-12 17:38:58 +0000394 bool IsWindows = TargetTriple.isOSWindows();
Alexey Samsonov1345d352013-01-16 13:23:28 +0000395
396 ShadowMapping Mapping;
397
Evgeniy Stepanov4d81f862015-07-29 18:22:25 +0000398 if (LongSize == 32) {
Evgeniy Stepanov9cb08f82015-07-17 23:51:18 +0000399 // Android is always PIE, which means that the beginning of the address
400 // space is always available.
Evgeniy Stepanov4d81f862015-07-29 18:22:25 +0000401 if (IsAndroid)
402 Mapping.Offset = 0;
403 else if (IsMIPS32)
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000404 Mapping.Offset = kMIPS32_ShadowOffset32;
405 else if (IsFreeBSD)
406 Mapping.Offset = kFreeBSD_ShadowOffset32;
Alexander Potapenkoa51e4832014-04-23 17:14:45 +0000407 else if (IsIOS)
Anna Zaks3b50e702016-02-02 22:05:07 +0000408 // If we're targeting iOS and x86, the binary is built for iOS simulator.
409 Mapping.Offset = IsX86 ? kIOSSimShadowOffset32 : kIOSShadowOffset32;
Timur Iskhodzhanov00ede842015-01-12 17:38:58 +0000410 else if (IsWindows)
411 Mapping.Offset = kWindowsShadowOffset32;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000412 else
413 Mapping.Offset = kDefaultShadowOffset32;
414 } else { // LongSize == 64
415 if (IsPPC64)
416 Mapping.Offset = kPPC64_ShadowOffset64;
Marcin Koscielnicki57290f92016-04-30 09:57:34 +0000417 else if (IsSystemZ)
418 Mapping.Offset = kSystemZ_ShadowOffset64;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000419 else if (IsFreeBSD)
420 Mapping.Offset = kFreeBSD_ShadowOffset64;
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +0000421 else if (IsLinux && IsX86_64) {
422 if (IsKasan)
423 Mapping.Offset = kLinuxKasan_ShadowOffset64;
424 else
425 Mapping.Offset = kSmallX86_64ShadowOffset;
Etienne Bergeron70684f92016-06-21 15:07:29 +0000426 } else if (IsWindows && IsX86_64) {
427 Mapping.Offset = kWindowsShadowOffset64;
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +0000428 } else if (IsMIPS64)
Kostya Serebryany231bd082014-11-11 23:02:57 +0000429 Mapping.Offset = kMIPS64_ShadowOffset64;
Anna Zaks3b50e702016-02-02 22:05:07 +0000430 else if (IsIOS)
431 // If we're targeting iOS and x86, the binary is built for iOS simulator.
Anna Zaks9a6a6ef2016-10-05 20:34:13 +0000432 // We are using dynamic shadow offset on the 64-bit devices.
433 Mapping.Offset =
434 IsX86_64 ? kIOSSimShadowOffset64 : kDynamicShadowSentinel;
Renato Golinaf213722015-02-03 11:20:45 +0000435 else if (IsAArch64)
436 Mapping.Offset = kAArch64_ShadowOffset64;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000437 else
438 Mapping.Offset = kDefaultShadowOffset64;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000439 }
440
Etienne Bergeron0ca05682016-09-30 17:46:32 +0000441 if (ClForceDynamicShadow) {
442 Mapping.Offset = kDynamicShadowSentinel;
443 }
444
Alexey Samsonov1345d352013-01-16 13:23:28 +0000445 Mapping.Scale = kDefaultShadowScale;
Ryan Govostes3f37df02016-05-06 10:25:22 +0000446 if (ClMappingScale.getNumOccurrences() > 0) {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000447 Mapping.Scale = ClMappingScale;
448 }
449
Ryan Govostes3f37df02016-05-06 10:25:22 +0000450 if (ClMappingOffset.getNumOccurrences() > 0) {
451 Mapping.Offset = ClMappingOffset;
452 }
453
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000454 // OR-ing shadow offset if more efficient (at least on x86) if the offset
455 // is a power of two, but on ppc64 we have to use add since the shadow
Marcin Koscielnicki57290f92016-04-30 09:57:34 +0000456 // offset is not necessary 1/8-th of the address space. On SystemZ,
457 // we could OR the constant in a single instruction, but it's more
458 // efficient to load it once and use indexed addressing.
459 Mapping.OrShadowOffset = !IsAArch64 && !IsPPC64 && !IsSystemZ
Etienne Bergeron0ca05682016-09-30 17:46:32 +0000460 && !(Mapping.Offset & (Mapping.Offset - 1))
461 && Mapping.Offset != kDynamicShadowSentinel;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000462
Alexey Samsonov1345d352013-01-16 13:23:28 +0000463 return Mapping;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000464}
465
Alexey Samsonov1345d352013-01-16 13:23:28 +0000466static size_t RedzoneSizeForScale(int MappingScale) {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000467 // Redzone used for stack and globals is at least 32 bytes.
468 // For scales 6 and 7, the redzone has to be 64 and 128 bytes respectively.
Alexey Samsonov1345d352013-01-16 13:23:28 +0000469 return std::max(32U, 1U << MappingScale);
Kostya Serebryany20a79972012-11-22 03:18:50 +0000470}
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000471
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000472/// AddressSanitizer: instrument the code in module to find memory bugs.
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000473struct AddressSanitizer : public FunctionPass {
Vitaly Buka1e75fa42016-05-27 22:55:10 +0000474 explicit AddressSanitizer(bool CompileKernel = false, bool Recover = false,
475 bool UseAfterScope = false)
Yury Gribovd7731982015-11-11 10:36:49 +0000476 : FunctionPass(ID), CompileKernel(CompileKernel || ClEnableKasan),
Vitaly Buka1e75fa42016-05-27 22:55:10 +0000477 Recover(Recover || ClRecover),
Etienne Bergeron0ca05682016-09-30 17:46:32 +0000478 UseAfterScope(UseAfterScope || ClUseAfterScope),
479 LocalDynamicShadow(nullptr) {
Yury Gribov3ae427d2014-12-01 08:47:58 +0000480 initializeAddressSanitizerPass(*PassRegistry::getPassRegistry());
481 }
Mehdi Amini117296c2016-10-01 02:56:57 +0000482 StringRef getPassName() const override {
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000483 return "AddressSanitizerFunctionPass";
484 }
Yury Gribov3ae427d2014-12-01 08:47:58 +0000485 void getAnalysisUsage(AnalysisUsage &AU) const override {
486 AU.addRequired<DominatorTreeWrapperPass>();
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000487 AU.addRequired<TargetLibraryInfoWrapperPass>();
Yury Gribov3ae427d2014-12-01 08:47:58 +0000488 }
Vitaly Buka21a9e572016-07-28 22:50:50 +0000489 uint64_t getAllocaSizeInBytes(const AllocaInst &AI) const {
Kuba Brecka7d03ce42016-06-27 15:57:08 +0000490 uint64_t ArraySize = 1;
Vitaly Buka21a9e572016-07-28 22:50:50 +0000491 if (AI.isArrayAllocation()) {
492 const ConstantInt *CI = dyn_cast<ConstantInt>(AI.getArraySize());
Kuba Brecka7d03ce42016-06-27 15:57:08 +0000493 assert(CI && "non-constant array size");
494 ArraySize = CI->getZExtValue();
495 }
Vitaly Buka21a9e572016-07-28 22:50:50 +0000496 Type *Ty = AI.getAllocatedType();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000497 uint64_t SizeInBytes =
Vitaly Buka21a9e572016-07-28 22:50:50 +0000498 AI.getModule()->getDataLayout().getTypeAllocSize(Ty);
Kuba Brecka7d03ce42016-06-27 15:57:08 +0000499 return SizeInBytes * ArraySize;
Anna Zaks8ed1d812015-02-27 03:12:36 +0000500 }
501 /// Check if we want (and can) handle this alloca.
Vitaly Buka21a9e572016-07-28 22:50:50 +0000502 bool isInterestingAlloca(const AllocaInst &AI);
Yury Gribov98b18592015-05-28 07:51:49 +0000503
Anna Zaks8ed1d812015-02-27 03:12:36 +0000504 /// If it is an interesting memory access, return the PointerOperand
505 /// and set IsWrite/Alignment. Otherwise return nullptr.
Filipe Cabecinhasec350b72016-11-15 22:37:30 +0000506 /// MaybeMask is an output parameter for the mask Value, if we're looking at a
507 /// masked load/store.
Anna Zaks8ed1d812015-02-27 03:12:36 +0000508 Value *isInterestingMemoryAccess(Instruction *I, bool *IsWrite,
Filipe Cabecinhasec350b72016-11-15 22:37:30 +0000509 uint64_t *TypeSize, unsigned *Alignment,
510 Value **MaybeMask = nullptr);
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000511 void instrumentMop(ObjectSizeOffsetVisitor &ObjSizeVis, Instruction *I,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000512 bool UseCalls, const DataLayout &DL);
Kostya Serebryany796f6552014-02-27 12:45:36 +0000513 void instrumentPointerComparisonOrSubtraction(Instruction *I);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000514 void instrumentAddress(Instruction *OrigIns, Instruction *InsertBefore,
515 Value *Addr, uint32_t TypeSize, bool IsWrite,
Dmitry Vyukov618d5802015-03-17 16:59:19 +0000516 Value *SizeArgument, bool UseCalls, uint32_t Exp);
Filipe Cabecinhas4647b742017-01-06 15:24:51 +0000517 void instrumentUnusualSizeOrAlignment(Instruction *I,
518 Instruction *InsertBefore, Value *Addr,
Dmitry Vyukov618d5802015-03-17 16:59:19 +0000519 uint32_t TypeSize, bool IsWrite,
520 Value *SizeArgument, bool UseCalls,
521 uint32_t Exp);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000522 Value *createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
523 Value *ShadowValue, uint32_t TypeSize);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000524 Instruction *generateCrashCode(Instruction *InsertBefore, Value *Addr,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000525 bool IsWrite, size_t AccessSizeIndex,
Dmitry Vyukov618d5802015-03-17 16:59:19 +0000526 Value *SizeArgument, uint32_t Exp);
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000527 void instrumentMemIntrinsic(MemIntrinsic *MI);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000528 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB);
Craig Topper3e4c6972014-03-05 09:10:37 +0000529 bool runOnFunction(Function &F) override;
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +0000530 bool maybeInsertAsanInitAtFunctionEntry(Function &F);
Etienne Bergeron0ca05682016-09-30 17:46:32 +0000531 void maybeInsertDynamicShadowAtFunctionEntry(Function &F);
Reid Kleckner2f907552015-07-21 17:40:14 +0000532 void markEscapedLocalAllocas(Function &F);
Craig Topper3e4c6972014-03-05 09:10:37 +0000533 bool doInitialization(Module &M) override;
Keno Fischere03fae42015-12-05 14:42:34 +0000534 bool doFinalization(Module &M) override;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000535 static char ID; // Pass identification, replacement for typeid
536
Yury Gribov3ae427d2014-12-01 08:47:58 +0000537 DominatorTree &getDominatorTree() const { return *DT; }
538
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000539 private:
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000540 void initializeCallbacks(Module &M);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000541
Kostya Serebryany1cdc6e92011-11-18 01:41:06 +0000542 bool LooksLikeCodeInBug11395(Instruction *I);
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000543 bool GlobalIsLinkerInitialized(GlobalVariable *G);
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000544 bool isSafeAccess(ObjectSizeOffsetVisitor &ObjSizeVis, Value *Addr,
545 uint64_t TypeSize) const;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000546
Reid Kleckner2f907552015-07-21 17:40:14 +0000547 /// Helper to cleanup per-function state.
548 struct FunctionStateRAII {
549 AddressSanitizer *Pass;
550 FunctionStateRAII(AddressSanitizer *Pass) : Pass(Pass) {
551 assert(Pass->ProcessedAllocas.empty() &&
552 "last pass forgot to clear cache");
Etienne Bergeron0ca05682016-09-30 17:46:32 +0000553 assert(!Pass->LocalDynamicShadow);
Reid Kleckner2f907552015-07-21 17:40:14 +0000554 }
Etienne Bergeron0ca05682016-09-30 17:46:32 +0000555 ~FunctionStateRAII() {
556 Pass->LocalDynamicShadow = nullptr;
557 Pass->ProcessedAllocas.clear();
558 }
Reid Kleckner2f907552015-07-21 17:40:14 +0000559 };
560
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000561 LLVMContext *C;
Kuba Brecka1001bb52014-12-05 22:19:18 +0000562 Triple TargetTriple;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000563 int LongSize;
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +0000564 bool CompileKernel;
Yury Gribovd7731982015-11-11 10:36:49 +0000565 bool Recover;
Vitaly Buka1e75fa42016-05-27 22:55:10 +0000566 bool UseAfterScope;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000567 Type *IntptrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000568 ShadowMapping Mapping;
Yury Gribov3ae427d2014-12-01 08:47:58 +0000569 DominatorTree *DT;
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +0000570 Function *AsanCtorFunction = nullptr;
571 Function *AsanInitFunction = nullptr;
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000572 Function *AsanHandleNoReturnFunc;
Kostya Serebryany796f6552014-02-27 12:45:36 +0000573 Function *AsanPtrCmpFunction, *AsanPtrSubFunction;
Dmitry Vyukov618d5802015-03-17 16:59:19 +0000574 // This array is indexed by AccessIsWrite, Experiment and log2(AccessSize).
575 Function *AsanErrorCallback[2][2][kNumberOfAccessSizes];
576 Function *AsanMemoryAccessCallback[2][2][kNumberOfAccessSizes];
577 // This array is indexed by AccessIsWrite and Experiment.
578 Function *AsanErrorCallbackSized[2][2];
579 Function *AsanMemoryAccessCallbackSized[2][2];
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000580 Function *AsanMemmove, *AsanMemcpy, *AsanMemset;
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000581 InlineAsm *EmptyAsm;
Etienne Bergeron0ca05682016-09-30 17:46:32 +0000582 Value *LocalDynamicShadow;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000583 GlobalsMetadata GlobalsMD;
Vitaly Buka21a9e572016-07-28 22:50:50 +0000584 DenseMap<const AllocaInst *, bool> ProcessedAllocas;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000585
586 friend struct FunctionStackPoisoner;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000587};
Kostya Serebryany874dae62012-07-16 16:15:40 +0000588
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000589class AddressSanitizerModule : public ModulePass {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000590 public:
Yury Gribovd7731982015-11-11 10:36:49 +0000591 explicit AddressSanitizerModule(bool CompileKernel = false,
592 bool Recover = false)
593 : ModulePass(ID), CompileKernel(CompileKernel || ClEnableKasan),
594 Recover(Recover || ClRecover) {}
Craig Topper3e4c6972014-03-05 09:10:37 +0000595 bool runOnModule(Module &M) override;
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000596 static char ID; // Pass identification, replacement for typeid
Mehdi Amini117296c2016-10-01 02:56:57 +0000597 StringRef getPassName() const override { return "AddressSanitizerModule"; }
Alexey Samsonov261177a2012-12-04 01:34:23 +0000598
Mehdi Amini117296c2016-10-01 02:56:57 +0000599private:
Alexey Samsonov788381b2012-12-25 12:28:20 +0000600 void initializeCallbacks(Module &M);
601
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +0000602 bool InstrumentGlobals(IRBuilder<> &IRB, Module &M);
Evgeniy Stepanov5d31d082017-01-12 23:03:03 +0000603 void InstrumentGlobalsCOFF(IRBuilder<> &IRB, Module &M,
604 ArrayRef<GlobalVariable *> ExtendedGlobals,
605 ArrayRef<Constant *> MetadataInitializers);
606 void InstrumentGlobalsMachO(IRBuilder<> &IRB, Module &M,
607 ArrayRef<GlobalVariable *> ExtendedGlobals,
608 ArrayRef<Constant *> MetadataInitializers);
609 void
610 InstrumentGlobalsWithMetadataArray(IRBuilder<> &IRB, Module &M,
611 ArrayRef<GlobalVariable *> ExtendedGlobals,
612 ArrayRef<Constant *> MetadataInitializers);
613
614 GlobalVariable *CreateMetadataGlobal(Module &M, Constant *Initializer,
615 StringRef OriginalName);
616 void SetComdatForGlobalMetadata(GlobalVariable *G, GlobalVariable *Metadata);
617 IRBuilder<> CreateAsanModuleDtor(Module &M);
618
Kostya Serebryany20a79972012-11-22 03:18:50 +0000619 bool ShouldInstrumentGlobal(GlobalVariable *G);
Ryan Govostes653f9d02016-03-28 20:28:57 +0000620 bool ShouldUseMachOGlobalsSection() const;
Reid Kleckner01660a32016-11-21 20:40:37 +0000621 StringRef getGlobalMetadataSection() const;
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000622 void poisonOneInitializer(Function &GlobalInit, GlobalValue *ModuleName);
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000623 void createInitializerPoisonCalls(Module &M, GlobalValue *ModuleName);
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000624 size_t MinRedzoneSizeForGlobal() const {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000625 return RedzoneSizeForScale(Mapping.Scale);
626 }
Kostya Serebryany20a79972012-11-22 03:18:50 +0000627
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000628 GlobalsMetadata GlobalsMD;
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +0000629 bool CompileKernel;
Yury Gribovd7731982015-11-11 10:36:49 +0000630 bool Recover;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000631 Type *IntptrTy;
632 LLVMContext *C;
Kuba Brecka1001bb52014-12-05 22:19:18 +0000633 Triple TargetTriple;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000634 ShadowMapping Mapping;
Alexey Samsonov788381b2012-12-25 12:28:20 +0000635 Function *AsanPoisonGlobals;
636 Function *AsanUnpoisonGlobals;
637 Function *AsanRegisterGlobals;
638 Function *AsanUnregisterGlobals;
Ryan Govostes653f9d02016-03-28 20:28:57 +0000639 Function *AsanRegisterImageGlobals;
640 Function *AsanUnregisterImageGlobals;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000641};
642
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000643// Stack poisoning does not play well with exception handling.
644// When an exception is thrown, we essentially bypass the code
645// that unpoisones the stack. This is why the run-time library has
646// to intercept __cxa_throw (as well as longjmp, etc) and unpoison the entire
647// stack in the interceptor. This however does not work inside the
648// actual function which catches the exception. Most likely because the
649// compiler hoists the load of the shadow value somewhere too high.
650// This causes asan to report a non-existing bug on 453.povray.
651// It sounds like an LLVM bug.
652struct FunctionStackPoisoner : public InstVisitor<FunctionStackPoisoner> {
653 Function &F;
654 AddressSanitizer &ASan;
655 DIBuilder DIB;
656 LLVMContext *C;
657 Type *IntptrTy;
658 Type *IntptrPtrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000659 ShadowMapping Mapping;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000660
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000661 SmallVector<AllocaInst *, 16> AllocaVec;
Kuba Breckaa49dcbb2016-11-08 21:30:41 +0000662 SmallVector<AllocaInst *, 16> StaticAllocasToMoveUp;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000663 SmallVector<Instruction *, 8> RetVec;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000664 unsigned StackAlignment;
665
Kostya Serebryany6805de52013-09-10 13:16:56 +0000666 Function *AsanStackMallocFunc[kMaxAsanStackMallocSizeClass + 1],
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000667 *AsanStackFreeFunc[kMaxAsanStackMallocSizeClass + 1];
Vitaly Buka3455b9b2016-08-20 18:34:39 +0000668 Function *AsanSetShadowFunc[0x100] = {};
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000669 Function *AsanPoisonStackMemoryFunc, *AsanUnpoisonStackMemoryFunc;
Yury Gribov98b18592015-05-28 07:51:49 +0000670 Function *AsanAllocaPoisonFunc, *AsanAllocasUnpoisonFunc;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000671
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000672 // Stores a place and arguments of poisoning/unpoisoning call for alloca.
673 struct AllocaPoisonCall {
674 IntrinsicInst *InsBefore;
Alexey Samsonova788b942013-11-18 14:53:55 +0000675 AllocaInst *AI;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000676 uint64_t Size;
677 bool DoPoison;
678 };
Vitaly Buka5b4f1212016-08-20 17:22:27 +0000679 SmallVector<AllocaPoisonCall, 8> DynamicAllocaPoisonCallVec;
680 SmallVector<AllocaPoisonCall, 8> StaticAllocaPoisonCallVec;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000681
Yury Gribov98b18592015-05-28 07:51:49 +0000682 SmallVector<AllocaInst *, 1> DynamicAllocaVec;
683 SmallVector<IntrinsicInst *, 1> StackRestoreVec;
684 AllocaInst *DynamicAllocaLayout = nullptr;
Reid Kleckner2f907552015-07-21 17:40:14 +0000685 IntrinsicInst *LocalEscapeCall = nullptr;
Yury Gribov55441bb2014-11-21 10:29:50 +0000686
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000687 // Maps Value to an AllocaInst from which the Value is originated.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000688 typedef DenseMap<Value *, AllocaInst *> AllocaForValueMapTy;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000689 AllocaForValueMapTy AllocaForValue;
690
Alexey Samsonov869a5ff2015-07-29 19:36:08 +0000691 bool HasNonEmptyInlineAsm = false;
692 bool HasReturnsTwiceCall = false;
Alexey Samsonov4b7f4132014-12-11 21:53:03 +0000693 std::unique_ptr<CallInst> EmptyInlineAsm;
694
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000695 FunctionStackPoisoner(Function &F, AddressSanitizer &ASan)
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000696 : F(F),
697 ASan(ASan),
698 DIB(*F.getParent(), /*AllowUnresolved*/ false),
699 C(ASan.C),
700 IntptrTy(ASan.IntptrTy),
701 IntptrPtrTy(PointerType::get(IntptrTy, 0)),
702 Mapping(ASan.Mapping),
703 StackAlignment(1 << Mapping.Scale),
Alexey Samsonov4b7f4132014-12-11 21:53:03 +0000704 EmptyInlineAsm(CallInst::Create(ASan.EmptyAsm)) {}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000705
706 bool runOnFunction() {
707 if (!ClStack) return false;
708 // Collect alloca, ret, lifetime instructions etc.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000709 for (BasicBlock *BB : depth_first(&F.getEntryBlock())) visit(*BB);
David Blaikieceec2bd2014-04-11 01:50:01 +0000710
Yury Gribov55441bb2014-11-21 10:29:50 +0000711 if (AllocaVec.empty() && DynamicAllocaVec.empty()) return false;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000712
713 initializeCallbacks(*F.getParent());
714
Vitaly Buka5b4f1212016-08-20 17:22:27 +0000715 processDynamicAllocas();
716 processStaticAllocas();
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000717
718 if (ClDebugStack) {
719 DEBUG(dbgs() << F);
720 }
721 return true;
722 }
723
Yury Gribov55441bb2014-11-21 10:29:50 +0000724 // Finds all Alloca instructions and puts
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000725 // poisoned red zones around all of them.
726 // Then unpoison everything back before the function returns.
Vitaly Buka5b4f1212016-08-20 17:22:27 +0000727 void processStaticAllocas();
728 void processDynamicAllocas();
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000729
Yury Gribov98b18592015-05-28 07:51:49 +0000730 void createDynamicAllocasInitStorage();
731
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000732 // ----------------------- Visitors.
733 /// \brief Collect all Ret instructions.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000734 void visitReturnInst(ReturnInst &RI) { RetVec.push_back(&RI); }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000735
Vitaly Bukae3a032a2016-07-22 22:04:38 +0000736 /// \brief Collect all Resume instructions.
737 void visitResumeInst(ResumeInst &RI) { RetVec.push_back(&RI); }
738
739 /// \brief Collect all CatchReturnInst instructions.
740 void visitCleanupReturnInst(CleanupReturnInst &CRI) { RetVec.push_back(&CRI); }
741
Yury Gribov98b18592015-05-28 07:51:49 +0000742 void unpoisonDynamicAllocasBeforeInst(Instruction *InstBefore,
743 Value *SavedStack) {
744 IRBuilder<> IRB(InstBefore);
Yury Gribov6ff0a662015-12-04 09:19:14 +0000745 Value *DynamicAreaPtr = IRB.CreatePtrToInt(SavedStack, IntptrTy);
746 // When we insert _asan_allocas_unpoison before @llvm.stackrestore, we
747 // need to adjust extracted SP to compute the address of the most recent
748 // alloca. We have a special @llvm.get.dynamic.area.offset intrinsic for
749 // this purpose.
750 if (!isa<ReturnInst>(InstBefore)) {
751 Function *DynamicAreaOffsetFunc = Intrinsic::getDeclaration(
752 InstBefore->getModule(), Intrinsic::get_dynamic_area_offset,
753 {IntptrTy});
754
755 Value *DynamicAreaOffset = IRB.CreateCall(DynamicAreaOffsetFunc, {});
756
757 DynamicAreaPtr = IRB.CreateAdd(IRB.CreatePtrToInt(SavedStack, IntptrTy),
758 DynamicAreaOffset);
759 }
760
Yury Gribov781bce22015-05-28 08:03:28 +0000761 IRB.CreateCall(AsanAllocasUnpoisonFunc,
Yury Gribov6ff0a662015-12-04 09:19:14 +0000762 {IRB.CreateLoad(DynamicAllocaLayout), DynamicAreaPtr});
Yury Gribov98b18592015-05-28 07:51:49 +0000763 }
764
Yury Gribov55441bb2014-11-21 10:29:50 +0000765 // Unpoison dynamic allocas redzones.
Yury Gribov98b18592015-05-28 07:51:49 +0000766 void unpoisonDynamicAllocas() {
767 for (auto &Ret : RetVec)
768 unpoisonDynamicAllocasBeforeInst(Ret, DynamicAllocaLayout);
Yury Gribov55441bb2014-11-21 10:29:50 +0000769
Yury Gribov98b18592015-05-28 07:51:49 +0000770 for (auto &StackRestoreInst : StackRestoreVec)
771 unpoisonDynamicAllocasBeforeInst(StackRestoreInst,
772 StackRestoreInst->getOperand(0));
Yury Gribov55441bb2014-11-21 10:29:50 +0000773 }
774
Yury Gribov55441bb2014-11-21 10:29:50 +0000775 // Deploy and poison redzones around dynamic alloca call. To do this, we
776 // should replace this call with another one with changed parameters and
777 // replace all its uses with new address, so
778 // addr = alloca type, old_size, align
779 // is replaced by
780 // new_size = (old_size + additional_size) * sizeof(type)
781 // tmp = alloca i8, new_size, max(align, 32)
782 // addr = tmp + 32 (first 32 bytes are for the left redzone).
783 // Additional_size is added to make new memory allocation contain not only
784 // requested memory, but also left, partial and right redzones.
Yury Gribov98b18592015-05-28 07:51:49 +0000785 void handleDynamicAllocaCall(AllocaInst *AI);
Yury Gribov55441bb2014-11-21 10:29:50 +0000786
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000787 /// \brief Collect Alloca instructions we want (and can) handle.
788 void visitAllocaInst(AllocaInst &AI) {
Kuba Brecka37a5ffa2015-07-17 06:29:57 +0000789 if (!ASan.isInterestingAlloca(AI)) {
Kuba Breckaa49dcbb2016-11-08 21:30:41 +0000790 if (AI.isStaticAlloca()) {
791 // Skip over allocas that are present *before* the first instrumented
792 // alloca, we don't want to move those around.
793 if (AllocaVec.empty())
794 return;
795
796 StaticAllocasToMoveUp.push_back(&AI);
797 }
Kuba Brecka37a5ffa2015-07-17 06:29:57 +0000798 return;
799 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000800
801 StackAlignment = std::max(StackAlignment, AI.getAlignment());
Kuba Brecka7d03ce42016-06-27 15:57:08 +0000802 if (!AI.isStaticAlloca())
Yury Gribov98b18592015-05-28 07:51:49 +0000803 DynamicAllocaVec.push_back(&AI);
Yury Gribov55441bb2014-11-21 10:29:50 +0000804 else
805 AllocaVec.push_back(&AI);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000806 }
807
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000808 /// \brief Collect lifetime intrinsic calls to check for use-after-scope
809 /// errors.
810 void visitIntrinsicInst(IntrinsicInst &II) {
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000811 Intrinsic::ID ID = II.getIntrinsicID();
Yury Gribov98b18592015-05-28 07:51:49 +0000812 if (ID == Intrinsic::stackrestore) StackRestoreVec.push_back(&II);
Reid Kleckner2f907552015-07-21 17:40:14 +0000813 if (ID == Intrinsic::localescape) LocalEscapeCall = &II;
Vitaly Buka1e75fa42016-05-27 22:55:10 +0000814 if (!ASan.UseAfterScope)
815 return;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000816 if (ID != Intrinsic::lifetime_start && ID != Intrinsic::lifetime_end)
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000817 return;
818 // Found lifetime intrinsic, add ASan instrumentation if necessary.
819 ConstantInt *Size = dyn_cast<ConstantInt>(II.getArgOperand(0));
820 // If size argument is undefined, don't do anything.
821 if (Size->isMinusOne()) return;
822 // Check that size doesn't saturate uint64_t and can
823 // be stored in IntptrTy.
824 const uint64_t SizeValue = Size->getValue().getLimitedValue();
825 if (SizeValue == ~0ULL ||
826 !ConstantInt::isValueValidForType(IntptrTy, SizeValue))
827 return;
828 // Find alloca instruction that corresponds to llvm.lifetime argument.
829 AllocaInst *AI = findAllocaForValue(II.getArgOperand(1));
Vitaly Bukab451f1b2016-06-09 23:31:59 +0000830 if (!AI || !ASan.isInterestingAlloca(*AI))
831 return;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000832 bool DoPoison = (ID == Intrinsic::lifetime_end);
Alexey Samsonova788b942013-11-18 14:53:55 +0000833 AllocaPoisonCall APC = {&II, AI, SizeValue, DoPoison};
Vitaly Buka5b4f1212016-08-20 17:22:27 +0000834 if (AI->isStaticAlloca())
835 StaticAllocaPoisonCallVec.push_back(APC);
836 else if (ClInstrumentDynamicAllocas)
837 DynamicAllocaPoisonCallVec.push_back(APC);
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000838 }
839
Alexey Samsonov869a5ff2015-07-29 19:36:08 +0000840 void visitCallSite(CallSite CS) {
841 Instruction *I = CS.getInstruction();
842 if (CallInst *CI = dyn_cast<CallInst>(I)) {
843 HasNonEmptyInlineAsm |=
844 CI->isInlineAsm() && !CI->isIdenticalTo(EmptyInlineAsm.get());
845 HasReturnsTwiceCall |= CI->canReturnTwice();
846 }
Alexey Samsonov4b7f4132014-12-11 21:53:03 +0000847 }
848
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000849 // ---------------------- Helpers.
850 void initializeCallbacks(Module &M);
851
Yury Gribov3ae427d2014-12-01 08:47:58 +0000852 bool doesDominateAllExits(const Instruction *I) const {
853 for (auto Ret : RetVec) {
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000854 if (!ASan.getDominatorTree().dominates(I, Ret)) return false;
Yury Gribov3ae427d2014-12-01 08:47:58 +0000855 }
856 return true;
857 }
858
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000859 /// Finds alloca where the value comes from.
860 AllocaInst *findAllocaForValue(Value *V);
Vitaly Buka793913c2016-08-29 18:17:21 +0000861
862 // Copies bytes from ShadowBytes into shadow memory for indexes where
863 // ShadowMask is not zero. If ShadowMask[i] is zero, we assume that
864 // ShadowBytes[i] is constantly zero and doesn't need to be overwritten.
865 void copyToShadow(ArrayRef<uint8_t> ShadowMask, ArrayRef<uint8_t> ShadowBytes,
866 IRBuilder<> &IRB, Value *ShadowBase);
867 void copyToShadow(ArrayRef<uint8_t> ShadowMask, ArrayRef<uint8_t> ShadowBytes,
868 size_t Begin, size_t End, IRBuilder<> &IRB,
869 Value *ShadowBase);
870 void copyToShadowInline(ArrayRef<uint8_t> ShadowMask,
871 ArrayRef<uint8_t> ShadowBytes, size_t Begin,
872 size_t End, IRBuilder<> &IRB, Value *ShadowBase);
873
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000874 void poisonAlloca(Value *V, uint64_t Size, IRBuilder<> &IRB, bool DoPoison);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +0000875
Alexey Samsonov4b7f4132014-12-11 21:53:03 +0000876 Value *createAllocaForLayout(IRBuilder<> &IRB, const ASanStackFrameLayout &L,
877 bool Dynamic);
878 PHINode *createPHI(IRBuilder<> &IRB, Value *Cond, Value *ValueIfTrue,
879 Instruction *ThenTerm, Value *ValueIfFalse);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000880};
881
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000882} // anonymous namespace
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000883
884char AddressSanitizer::ID = 0;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000885INITIALIZE_PASS_BEGIN(
886 AddressSanitizer, "asan",
887 "AddressSanitizer: detects use-after-free and out-of-bounds bugs.", false,
888 false)
Yury Gribov3ae427d2014-12-01 08:47:58 +0000889INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Keno Fischera010cfa2015-10-20 10:13:55 +0000890INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000891INITIALIZE_PASS_END(
892 AddressSanitizer, "asan",
893 "AddressSanitizer: detects use-after-free and out-of-bounds bugs.", false,
894 false)
Yury Gribovd7731982015-11-11 10:36:49 +0000895FunctionPass *llvm::createAddressSanitizerFunctionPass(bool CompileKernel,
Vitaly Buka1e75fa42016-05-27 22:55:10 +0000896 bool Recover,
897 bool UseAfterScope) {
Yury Gribovd7731982015-11-11 10:36:49 +0000898 assert(!CompileKernel || Recover);
Vitaly Buka1e75fa42016-05-27 22:55:10 +0000899 return new AddressSanitizer(CompileKernel, Recover, UseAfterScope);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000900}
901
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000902char AddressSanitizerModule::ID = 0;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000903INITIALIZE_PASS(
904 AddressSanitizerModule, "asan-module",
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000905 "AddressSanitizer: detects use-after-free and out-of-bounds bugs."
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000906 "ModulePass",
907 false, false)
Yury Gribovd7731982015-11-11 10:36:49 +0000908ModulePass *llvm::createAddressSanitizerModulePass(bool CompileKernel,
909 bool Recover) {
910 assert(!CompileKernel || Recover);
911 return new AddressSanitizerModule(CompileKernel, Recover);
Alexander Potapenkoc94cf8f2012-01-23 11:22:43 +0000912}
913
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000914static size_t TypeSizeToSizeIndex(uint32_t TypeSize) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000915 size_t Res = countTrailingZeros(TypeSize / 8);
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000916 assert(Res < kNumberOfAccessSizes);
917 return Res;
918}
919
Bill Wendling58f8cef2013-08-06 22:52:42 +0000920// \brief Create a constant for Str so that we can pass it to the run-time lib.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000921static GlobalVariable *createPrivateGlobalForString(Module &M, StringRef Str,
922 bool AllowMerging) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000923 Constant *StrConst = ConstantDataArray::getString(M.getContext(), Str);
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000924 // We use private linkage for module-local strings. If they can be merged
925 // with another one, we set the unnamed_addr attribute.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000926 GlobalVariable *GV =
927 new GlobalVariable(M, StrConst->getType(), true,
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000928 GlobalValue::PrivateLinkage, StrConst, kAsanGenPrefix);
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000929 if (AllowMerging) GV->setUnnamedAddr(GlobalValue::UnnamedAddr::Global);
Kostya Serebryany10cc12f2013-03-18 09:38:39 +0000930 GV->setAlignment(1); // Strings may not be merged w/o setting align 1.
931 return GV;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000932}
933
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +0000934/// \brief Create a global describing a source location.
935static GlobalVariable *createPrivateGlobalForSourceLoc(Module &M,
936 LocationMetadata MD) {
937 Constant *LocData[] = {
938 createPrivateGlobalForString(M, MD.Filename, true),
939 ConstantInt::get(Type::getInt32Ty(M.getContext()), MD.LineNo),
940 ConstantInt::get(Type::getInt32Ty(M.getContext()), MD.ColumnNo),
941 };
942 auto LocStruct = ConstantStruct::getAnon(LocData);
943 auto GV = new GlobalVariable(M, LocStruct->getType(), true,
944 GlobalValue::PrivateLinkage, LocStruct,
945 kAsanGenPrefix);
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000946 GV->setUnnamedAddr(GlobalValue::UnnamedAddr::Global);
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +0000947 return GV;
948}
949
Vedant Kumarf5ac6d42016-06-22 17:30:58 +0000950/// \brief Check if \p G has been created by a trusted compiler pass.
951static bool GlobalWasGeneratedByCompiler(GlobalVariable *G) {
952 // Do not instrument asan globals.
953 if (G->getName().startswith(kAsanGenPrefix) ||
954 G->getName().startswith(kSanCovGenPrefix) ||
955 G->getName().startswith(kODRGenPrefix))
956 return true;
957
958 // Do not instrument gcov counter arrays.
959 if (G->getName() == "__llvm_gcov_ctr")
960 return true;
961
962 return false;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000963}
964
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000965Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) {
966 // Shadow >> scale
Alexey Samsonov1345d352013-01-16 13:23:28 +0000967 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale);
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000968 if (Mapping.Offset == 0) return Shadow;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000969 // (Shadow >> scale) | offset
Etienne Bergeron0ca05682016-09-30 17:46:32 +0000970 Value *ShadowBase;
971 if (LocalDynamicShadow)
972 ShadowBase = LocalDynamicShadow;
Etienne Bergeron6ba51762016-09-19 15:58:38 +0000973 else
Etienne Bergeron0ca05682016-09-30 17:46:32 +0000974 ShadowBase = ConstantInt::get(IntptrTy, Mapping.Offset);
975 if (Mapping.OrShadowOffset)
976 return IRB.CreateOr(Shadow, ShadowBase);
977 else
978 return IRB.CreateAdd(Shadow, ShadowBase);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000979}
980
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000981// Instrument memset/memmove/memcpy
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000982void AddressSanitizer::instrumentMemIntrinsic(MemIntrinsic *MI) {
983 IRBuilder<> IRB(MI);
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000984 if (isa<MemTransferInst>(MI)) {
David Blaikieff6409d2015-05-18 22:13:54 +0000985 IRB.CreateCall(
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000986 isa<MemMoveInst>(MI) ? AsanMemmove : AsanMemcpy,
David Blaikieff6409d2015-05-18 22:13:54 +0000987 {IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()),
988 IRB.CreatePointerCast(MI->getOperand(1), IRB.getInt8PtrTy()),
989 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false)});
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000990 } else if (isa<MemSetInst>(MI)) {
David Blaikieff6409d2015-05-18 22:13:54 +0000991 IRB.CreateCall(
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000992 AsanMemset,
David Blaikieff6409d2015-05-18 22:13:54 +0000993 {IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()),
994 IRB.CreateIntCast(MI->getOperand(1), IRB.getInt32Ty(), false),
995 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false)});
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000996 }
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000997 MI->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000998}
999
Anna Zaks8ed1d812015-02-27 03:12:36 +00001000/// Check if we want (and can) handle this alloca.
Vitaly Buka21a9e572016-07-28 22:50:50 +00001001bool AddressSanitizer::isInterestingAlloca(const AllocaInst &AI) {
Anna Zaksbf28d3a2015-03-27 18:52:01 +00001002 auto PreviouslySeenAllocaInfo = ProcessedAllocas.find(&AI);
1003
1004 if (PreviouslySeenAllocaInfo != ProcessedAllocas.end())
1005 return PreviouslySeenAllocaInfo->getSecond();
1006
Yury Gribov98b18592015-05-28 07:51:49 +00001007 bool IsInteresting =
1008 (AI.getAllocatedType()->isSized() &&
1009 // alloca() may be called with 0 size, ignore it.
Vitaly Buka21a9e572016-07-28 22:50:50 +00001010 ((!AI.isStaticAlloca()) || getAllocaSizeInBytes(AI) > 0) &&
Yury Gribov98b18592015-05-28 07:51:49 +00001011 // We are only interested in allocas not promotable to registers.
1012 // Promotable allocas are common under -O0.
Alexey Samsonov55fda1b2015-11-05 21:18:41 +00001013 (!ClSkipPromotableAllocas || !isAllocaPromotable(&AI)) &&
1014 // inalloca allocas are not treated as static, and we don't want
1015 // dynamic alloca instrumentation for them as well.
1016 !AI.isUsedWithInAlloca());
Anna Zaksbf28d3a2015-03-27 18:52:01 +00001017
1018 ProcessedAllocas[&AI] = IsInteresting;
1019 return IsInteresting;
Anna Zaks8ed1d812015-02-27 03:12:36 +00001020}
1021
Anna Zaks8ed1d812015-02-27 03:12:36 +00001022Value *AddressSanitizer::isInterestingMemoryAccess(Instruction *I,
1023 bool *IsWrite,
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001024 uint64_t *TypeSize,
Filipe Cabecinhasec350b72016-11-15 22:37:30 +00001025 unsigned *Alignment,
1026 Value **MaybeMask) {
Alexey Samsonov535b6f92014-07-17 18:48:12 +00001027 // Skip memory accesses inserted by another instrumentation.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001028 if (I->getMetadata("nosanitize")) return nullptr;
Anna Zaks8ed1d812015-02-27 03:12:36 +00001029
Etienne Bergeron0ca05682016-09-30 17:46:32 +00001030 // Do not instrument the load fetching the dynamic shadow address.
1031 if (LocalDynamicShadow == I)
1032 return nullptr;
1033
Anna Zaks8ed1d812015-02-27 03:12:36 +00001034 Value *PtrOperand = nullptr;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001035 const DataLayout &DL = I->getModule()->getDataLayout();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001036 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +00001037 if (!ClInstrumentReads) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +00001038 *IsWrite = false;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001039 *TypeSize = DL.getTypeStoreSizeInBits(LI->getType());
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00001040 *Alignment = LI->getAlignment();
Anna Zaks8ed1d812015-02-27 03:12:36 +00001041 PtrOperand = LI->getPointerOperand();
1042 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +00001043 if (!ClInstrumentWrites) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +00001044 *IsWrite = true;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001045 *TypeSize = DL.getTypeStoreSizeInBits(SI->getValueOperand()->getType());
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00001046 *Alignment = SI->getAlignment();
Anna Zaks8ed1d812015-02-27 03:12:36 +00001047 PtrOperand = SI->getPointerOperand();
1048 } else if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +00001049 if (!ClInstrumentAtomics) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +00001050 *IsWrite = true;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001051 *TypeSize = DL.getTypeStoreSizeInBits(RMW->getValOperand()->getType());
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00001052 *Alignment = 0;
Anna Zaks8ed1d812015-02-27 03:12:36 +00001053 PtrOperand = RMW->getPointerOperand();
1054 } else if (AtomicCmpXchgInst *XCHG = dyn_cast<AtomicCmpXchgInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +00001055 if (!ClInstrumentAtomics) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +00001056 *IsWrite = true;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001057 *TypeSize = DL.getTypeStoreSizeInBits(XCHG->getCompareOperand()->getType());
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00001058 *Alignment = 0;
Anna Zaks8ed1d812015-02-27 03:12:36 +00001059 PtrOperand = XCHG->getPointerOperand();
Filipe Cabecinhasec350b72016-11-15 22:37:30 +00001060 } else if (auto CI = dyn_cast<CallInst>(I)) {
1061 auto *F = dyn_cast<Function>(CI->getCalledValue());
1062 if (F && (F->getName().startswith("llvm.masked.load.") ||
1063 F->getName().startswith("llvm.masked.store."))) {
1064 unsigned OpOffset = 0;
1065 if (F->getName().startswith("llvm.masked.store.")) {
Filipe Cabecinhas1e690172016-12-14 21:56:59 +00001066 if (!ClInstrumentWrites)
1067 return nullptr;
Filipe Cabecinhasec350b72016-11-15 22:37:30 +00001068 // Masked store has an initial operand for the value.
1069 OpOffset = 1;
1070 *IsWrite = true;
1071 } else {
Filipe Cabecinhas1e690172016-12-14 21:56:59 +00001072 if (!ClInstrumentReads)
1073 return nullptr;
Filipe Cabecinhasec350b72016-11-15 22:37:30 +00001074 *IsWrite = false;
1075 }
Filipe Cabecinhas4647b742017-01-06 15:24:51 +00001076
1077 auto BasePtr = CI->getOperand(0 + OpOffset);
1078 auto Ty = cast<PointerType>(BasePtr->getType())->getElementType();
1079 *TypeSize = DL.getTypeStoreSizeInBits(Ty);
1080 if (auto AlignmentConstant =
1081 dyn_cast<ConstantInt>(CI->getOperand(1 + OpOffset)))
1082 *Alignment = (unsigned)AlignmentConstant->getZExtValue();
1083 else
1084 *Alignment = 1; // No alignment guarantees. We probably got Undef
1085 if (MaybeMask)
1086 *MaybeMask = CI->getOperand(2 + OpOffset);
1087 PtrOperand = BasePtr;
Filipe Cabecinhasec350b72016-11-15 22:37:30 +00001088 }
Kostya Serebryany90241602012-05-30 09:04:06 +00001089 }
Anna Zaks8ed1d812015-02-27 03:12:36 +00001090
Anna Zaks644d9d32016-06-22 00:15:52 +00001091 // Do not instrument acesses from different address spaces; we cannot deal
1092 // with them.
1093 if (PtrOperand) {
1094 Type *PtrTy = cast<PointerType>(PtrOperand->getType()->getScalarType());
1095 if (PtrTy->getPointerAddressSpace() != 0)
1096 return nullptr;
1097 }
1098
Anna Zaks8ed1d812015-02-27 03:12:36 +00001099 // Treat memory accesses to promotable allocas as non-interesting since they
1100 // will not cause memory violations. This greatly speeds up the instrumented
1101 // executable at -O0.
1102 if (ClSkipPromotableAllocas)
1103 if (auto AI = dyn_cast_or_null<AllocaInst>(PtrOperand))
1104 return isInterestingAlloca(*AI) ? AI : nullptr;
1105
1106 return PtrOperand;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001107}
1108
Kostya Serebryany796f6552014-02-27 12:45:36 +00001109static bool isPointerOperand(Value *V) {
1110 return V->getType()->isPointerTy() || isa<PtrToIntInst>(V);
1111}
1112
1113// This is a rough heuristic; it may cause both false positives and
1114// false negatives. The proper implementation requires cooperation with
1115// the frontend.
1116static bool isInterestingPointerComparisonOrSubtraction(Instruction *I) {
1117 if (ICmpInst *Cmp = dyn_cast<ICmpInst>(I)) {
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001118 if (!Cmp->isRelational()) return false;
Kostya Serebryany796f6552014-02-27 12:45:36 +00001119 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) {
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001120 if (BO->getOpcode() != Instruction::Sub) return false;
Kostya Serebryany796f6552014-02-27 12:45:36 +00001121 } else {
1122 return false;
1123 }
Alexey Samsonov145b0fd2015-10-26 18:06:40 +00001124 return isPointerOperand(I->getOperand(0)) &&
1125 isPointerOperand(I->getOperand(1));
Kostya Serebryany796f6552014-02-27 12:45:36 +00001126}
1127
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +00001128bool AddressSanitizer::GlobalIsLinkerInitialized(GlobalVariable *G) {
1129 // If a global variable does not have dynamic initialization we don't
1130 // have to instrument it. However, if a global does not have initializer
1131 // at all, we assume it has dynamic initializer (in other TU).
Alexey Samsonov08f022a2014-07-11 22:36:02 +00001132 return G->hasInitializer() && !GlobalsMD.get(G).IsDynInit;
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +00001133}
1134
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001135void AddressSanitizer::instrumentPointerComparisonOrSubtraction(
1136 Instruction *I) {
Kostya Serebryany796f6552014-02-27 12:45:36 +00001137 IRBuilder<> IRB(I);
1138 Function *F = isa<ICmpInst>(I) ? AsanPtrCmpFunction : AsanPtrSubFunction;
1139 Value *Param[2] = {I->getOperand(0), I->getOperand(1)};
Benjamin Kramer135f7352016-06-26 12:28:59 +00001140 for (Value *&i : Param) {
1141 if (i->getType()->isPointerTy())
1142 i = IRB.CreatePointerCast(i, IntptrTy);
Kostya Serebryany796f6552014-02-27 12:45:36 +00001143 }
David Blaikieff6409d2015-05-18 22:13:54 +00001144 IRB.CreateCall(F, Param);
Kostya Serebryany796f6552014-02-27 12:45:36 +00001145}
1146
Filipe Cabecinhasec350b72016-11-15 22:37:30 +00001147static void doInstrumentAddress(AddressSanitizer *Pass, Instruction *I,
Filipe Cabecinhas4647b742017-01-06 15:24:51 +00001148 Instruction *InsertBefore, Value *Addr,
1149 unsigned Alignment, unsigned Granularity,
1150 uint32_t TypeSize, bool IsWrite,
1151 Value *SizeArgument, bool UseCalls,
1152 uint32_t Exp) {
Filipe Cabecinhasec350b72016-11-15 22:37:30 +00001153 // Instrument a 1-, 2-, 4-, 8-, or 16- byte access with one check
1154 // if the data is properly aligned.
1155 if ((TypeSize == 8 || TypeSize == 16 || TypeSize == 32 || TypeSize == 64 ||
1156 TypeSize == 128) &&
1157 (Alignment >= Granularity || Alignment == 0 || Alignment >= TypeSize / 8))
Filipe Cabecinhas4647b742017-01-06 15:24:51 +00001158 return Pass->instrumentAddress(I, InsertBefore, Addr, TypeSize, IsWrite,
1159 nullptr, UseCalls, Exp);
1160 Pass->instrumentUnusualSizeOrAlignment(I, InsertBefore, Addr, TypeSize,
1161 IsWrite, nullptr, UseCalls, Exp);
Filipe Cabecinhasec350b72016-11-15 22:37:30 +00001162}
1163
1164static void instrumentMaskedLoadOrStore(AddressSanitizer *Pass,
1165 const DataLayout &DL, Type *IntptrTy,
Filipe Cabecinhas4647b742017-01-06 15:24:51 +00001166 Value *Mask, Instruction *I,
Filipe Cabecinhasec350b72016-11-15 22:37:30 +00001167 Value *Addr, unsigned Alignment,
1168 unsigned Granularity, uint32_t TypeSize,
1169 bool IsWrite, Value *SizeArgument,
1170 bool UseCalls, uint32_t Exp) {
1171 auto *VTy = cast<PointerType>(Addr->getType())->getElementType();
1172 uint64_t ElemTypeSize = DL.getTypeStoreSizeInBits(VTy->getScalarType());
1173 unsigned Num = VTy->getVectorNumElements();
1174 auto Zero = ConstantInt::get(IntptrTy, 0);
1175 for (unsigned Idx = 0; Idx < Num; ++Idx) {
Filipe Cabecinhas4647b742017-01-06 15:24:51 +00001176 Value *InstrumentedAddress = nullptr;
1177 Instruction *InsertBefore = I;
1178 if (auto *Vector = dyn_cast<ConstantVector>(Mask)) {
1179 // dyn_cast as we might get UndefValue
1180 if (auto *Masked = dyn_cast<ConstantInt>(Vector->getOperand(Idx))) {
1181 if (Masked->isNullValue())
1182 // Mask is constant false, so no instrumentation needed.
1183 continue;
1184 // If we have a true or undef value, fall through to doInstrumentAddress
1185 // with InsertBefore == I
1186 }
1187 } else {
Filipe Cabecinhasec350b72016-11-15 22:37:30 +00001188 IRBuilder<> IRB(I);
Filipe Cabecinhas4647b742017-01-06 15:24:51 +00001189 Value *MaskElem = IRB.CreateExtractElement(Mask, Idx);
1190 TerminatorInst *ThenTerm = SplitBlockAndInsertIfThen(MaskElem, I, false);
1191 InsertBefore = ThenTerm;
Filipe Cabecinhasec350b72016-11-15 22:37:30 +00001192 }
Filipe Cabecinhas4647b742017-01-06 15:24:51 +00001193
1194 IRBuilder<> IRB(InsertBefore);
1195 InstrumentedAddress =
1196 IRB.CreateGEP(Addr, {Zero, ConstantInt::get(IntptrTy, Idx)});
1197 doInstrumentAddress(Pass, I, InsertBefore, InstrumentedAddress, Alignment,
1198 Granularity, ElemTypeSize, IsWrite, SizeArgument,
1199 UseCalls, Exp);
Filipe Cabecinhasec350b72016-11-15 22:37:30 +00001200 }
1201}
1202
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001203void AddressSanitizer::instrumentMop(ObjectSizeOffsetVisitor &ObjSizeVis,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001204 Instruction *I, bool UseCalls,
1205 const DataLayout &DL) {
Axel Naumann4a127062012-09-17 14:20:57 +00001206 bool IsWrite = false;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00001207 unsigned Alignment = 0;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001208 uint64_t TypeSize = 0;
Filipe Cabecinhasec350b72016-11-15 22:37:30 +00001209 Value *MaybeMask = nullptr;
1210 Value *Addr =
1211 isInterestingMemoryAccess(I, &IsWrite, &TypeSize, &Alignment, &MaybeMask);
Kostya Serebryany90241602012-05-30 09:04:06 +00001212 assert(Addr);
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001213
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001214 // Optimization experiments.
1215 // The experiments can be used to evaluate potential optimizations that remove
1216 // instrumentation (assess false negatives). Instead of completely removing
1217 // some instrumentation, you set Exp to a non-zero value (mask of optimization
1218 // experiments that want to remove instrumentation of this instruction).
1219 // If Exp is non-zero, this pass will emit special calls into runtime
1220 // (e.g. __asan_report_exp_load1 instead of __asan_report_load1). These calls
1221 // make runtime terminate the program in a special way (with a different
1222 // exit status). Then you run the new compiler on a buggy corpus, collect
1223 // the special terminations (ideally, you don't see them at all -- no false
1224 // negatives) and make the decision on the optimization.
1225 uint32_t Exp = ClForceExperiment;
1226
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001227 if (ClOpt && ClOptGlobals) {
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001228 // If initialization order checking is disabled, a simple access to a
1229 // dynamically initialized global is always valid.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001230 GlobalVariable *G = dyn_cast<GlobalVariable>(GetUnderlyingObject(Addr, DL));
Hans Wennborg083ca9b2015-10-06 23:24:35 +00001231 if (G && (!ClInitializers || GlobalIsLinkerInitialized(G)) &&
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001232 isSafeAccess(ObjSizeVis, Addr, TypeSize)) {
1233 NumOptimizedAccessesToGlobalVar++;
1234 return;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001235 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001236 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001237
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001238 if (ClOpt && ClOptStack) {
1239 // A direct inbounds access to a stack variable is always valid.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001240 if (isa<AllocaInst>(GetUnderlyingObject(Addr, DL)) &&
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001241 isSafeAccess(ObjSizeVis, Addr, TypeSize)) {
1242 NumOptimizedAccessesToStackVar++;
1243 return;
1244 }
1245 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001246
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +00001247 if (IsWrite)
1248 NumInstrumentedWrites++;
1249 else
1250 NumInstrumentedReads++;
1251
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00001252 unsigned Granularity = 1 << Mapping.Scale;
Filipe Cabecinhasec350b72016-11-15 22:37:30 +00001253 if (MaybeMask) {
Filipe Cabecinhas4647b742017-01-06 15:24:51 +00001254 instrumentMaskedLoadOrStore(this, DL, IntptrTy, MaybeMask, I, Addr,
1255 Alignment, Granularity, TypeSize, IsWrite,
1256 nullptr, UseCalls, Exp);
Filipe Cabecinhasec350b72016-11-15 22:37:30 +00001257 } else {
Filipe Cabecinhas4647b742017-01-06 15:24:51 +00001258 doInstrumentAddress(this, I, I, Addr, Alignment, Granularity, TypeSize,
Filipe Cabecinhasec350b72016-11-15 22:37:30 +00001259 IsWrite, nullptr, UseCalls, Exp);
1260 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001261}
1262
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001263Instruction *AddressSanitizer::generateCrashCode(Instruction *InsertBefore,
1264 Value *Addr, bool IsWrite,
1265 size_t AccessSizeIndex,
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001266 Value *SizeArgument,
1267 uint32_t Exp) {
Kostya Serebryanyfda7a132012-08-14 14:04:51 +00001268 IRBuilder<> IRB(InsertBefore);
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001269 Value *ExpVal = Exp == 0 ? nullptr : ConstantInt::get(IRB.getInt32Ty(), Exp);
1270 CallInst *Call = nullptr;
1271 if (SizeArgument) {
1272 if (Exp == 0)
David Blaikieff6409d2015-05-18 22:13:54 +00001273 Call = IRB.CreateCall(AsanErrorCallbackSized[IsWrite][0],
1274 {Addr, SizeArgument});
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001275 else
David Blaikieff6409d2015-05-18 22:13:54 +00001276 Call = IRB.CreateCall(AsanErrorCallbackSized[IsWrite][1],
1277 {Addr, SizeArgument, ExpVal});
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001278 } else {
1279 if (Exp == 0)
1280 Call =
1281 IRB.CreateCall(AsanErrorCallback[IsWrite][0][AccessSizeIndex], Addr);
1282 else
David Blaikieff6409d2015-05-18 22:13:54 +00001283 Call = IRB.CreateCall(AsanErrorCallback[IsWrite][1][AccessSizeIndex],
1284 {Addr, ExpVal});
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001285 }
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +00001286
Kostya Serebryanyf02c6062012-07-20 09:54:50 +00001287 // We don't do Call->setDoesNotReturn() because the BB already has
1288 // UnreachableInst at the end.
1289 // This EmptyAsm is required to avoid callback merge.
David Blaikieff6409d2015-05-18 22:13:54 +00001290 IRB.CreateCall(EmptyAsm, {});
Kostya Serebryany3411f2e2012-01-06 18:09:21 +00001291 return Call;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001292}
1293
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +00001294Value *AddressSanitizer::createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001295 Value *ShadowValue,
1296 uint32_t TypeSize) {
Aaron Ballmanef0fe1e2016-03-30 21:30:00 +00001297 size_t Granularity = static_cast<size_t>(1) << Mapping.Scale;
Kostya Serebryany874dae62012-07-16 16:15:40 +00001298 // Addr & (Granularity - 1)
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001299 Value *LastAccessedByte =
1300 IRB.CreateAnd(AddrLong, ConstantInt::get(IntptrTy, Granularity - 1));
Kostya Serebryany874dae62012-07-16 16:15:40 +00001301 // (Addr & (Granularity - 1)) + size - 1
1302 if (TypeSize / 8 > 1)
1303 LastAccessedByte = IRB.CreateAdd(
1304 LastAccessedByte, ConstantInt::get(IntptrTy, TypeSize / 8 - 1));
1305 // (uint8_t) ((Addr & (Granularity-1)) + size - 1)
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001306 LastAccessedByte =
1307 IRB.CreateIntCast(LastAccessedByte, ShadowValue->getType(), false);
Kostya Serebryany874dae62012-07-16 16:15:40 +00001308 // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue
1309 return IRB.CreateICmpSGE(LastAccessedByte, ShadowValue);
1310}
1311
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001312void AddressSanitizer::instrumentAddress(Instruction *OrigIns,
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001313 Instruction *InsertBefore, Value *Addr,
1314 uint32_t TypeSize, bool IsWrite,
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001315 Value *SizeArgument, bool UseCalls,
1316 uint32_t Exp) {
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +00001317 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001318 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001319 size_t AccessSizeIndex = TypeSizeToSizeIndex(TypeSize);
1320
1321 if (UseCalls) {
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001322 if (Exp == 0)
1323 IRB.CreateCall(AsanMemoryAccessCallback[IsWrite][0][AccessSizeIndex],
1324 AddrLong);
1325 else
David Blaikieff6409d2015-05-18 22:13:54 +00001326 IRB.CreateCall(AsanMemoryAccessCallback[IsWrite][1][AccessSizeIndex],
1327 {AddrLong, ConstantInt::get(IRB.getInt32Ty(), Exp)});
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001328 return;
1329 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001330
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001331 Type *ShadowTy =
1332 IntegerType::get(*C, std::max(8U, TypeSize >> Mapping.Scale));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001333 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0);
1334 Value *ShadowPtr = memToShadow(AddrLong, IRB);
1335 Value *CmpVal = Constant::getNullValue(ShadowTy);
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001336 Value *ShadowValue =
1337 IRB.CreateLoad(IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001338
1339 Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal);
Aaron Ballmanef0fe1e2016-03-30 21:30:00 +00001340 size_t Granularity = 1ULL << Mapping.Scale;
Craig Topperf40110f2014-04-25 05:29:35 +00001341 TerminatorInst *CrashTerm = nullptr;
Kostya Serebryanyfda7a132012-08-14 14:04:51 +00001342
Kostya Serebryany1e575ab2012-08-15 08:58:58 +00001343 if (ClAlwaysSlowPath || (TypeSize < 8 * Granularity)) {
Kostya Serebryanyad238522014-09-02 21:46:51 +00001344 // We use branch weights for the slow path check, to indicate that the slow
1345 // path is rarely taken. This seems to be the case for SPEC benchmarks.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001346 TerminatorInst *CheckTerm = SplitBlockAndInsertIfThen(
1347 Cmp, InsertBefore, false, MDBuilder(*C).createBranchWeights(1, 100000));
Benjamin Kramer619c4e52015-04-10 11:24:51 +00001348 assert(cast<BranchInst>(CheckTerm)->isUnconditional());
Kostya Serebryanyf02c6062012-07-20 09:54:50 +00001349 BasicBlock *NextBB = CheckTerm->getSuccessor(0);
Kostya Serebryany874dae62012-07-16 16:15:40 +00001350 IRB.SetInsertPoint(CheckTerm);
1351 Value *Cmp2 = createSlowPathCmp(IRB, AddrLong, ShadowValue, TypeSize);
Yury Gribovd7731982015-11-11 10:36:49 +00001352 if (Recover) {
1353 CrashTerm = SplitBlockAndInsertIfThen(Cmp2, CheckTerm, false);
1354 } else {
1355 BasicBlock *CrashBlock =
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001356 BasicBlock::Create(*C, "", NextBB->getParent(), NextBB);
Yury Gribovd7731982015-11-11 10:36:49 +00001357 CrashTerm = new UnreachableInst(*C, CrashBlock);
1358 BranchInst *NewTerm = BranchInst::Create(CrashBlock, NextBB, Cmp2);
1359 ReplaceInstWithInst(CheckTerm, NewTerm);
1360 }
Kostya Serebryany874dae62012-07-16 16:15:40 +00001361 } else {
Yury Gribovd7731982015-11-11 10:36:49 +00001362 CrashTerm = SplitBlockAndInsertIfThen(Cmp, InsertBefore, !Recover);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001363 }
Kostya Serebryanyfda7a132012-08-14 14:04:51 +00001364
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001365 Instruction *Crash = generateCrashCode(CrashTerm, AddrLong, IsWrite,
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001366 AccessSizeIndex, SizeArgument, Exp);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +00001367 Crash->setDebugLoc(OrigIns->getDebugLoc());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001368}
1369
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001370// Instrument unusual size or unusual alignment.
1371// We can not do it with a single check, so we do 1-byte check for the first
1372// and the last bytes. We call __asan_report_*_n(addr, real_size) to be able
1373// to report the actual access size.
1374void AddressSanitizer::instrumentUnusualSizeOrAlignment(
Filipe Cabecinhas4647b742017-01-06 15:24:51 +00001375 Instruction *I, Instruction *InsertBefore, Value *Addr, uint32_t TypeSize,
1376 bool IsWrite, Value *SizeArgument, bool UseCalls, uint32_t Exp) {
1377 IRBuilder<> IRB(InsertBefore);
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001378 Value *Size = ConstantInt::get(IntptrTy, TypeSize / 8);
1379 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
1380 if (UseCalls) {
1381 if (Exp == 0)
David Blaikieff6409d2015-05-18 22:13:54 +00001382 IRB.CreateCall(AsanMemoryAccessCallbackSized[IsWrite][0],
1383 {AddrLong, Size});
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001384 else
David Blaikieff6409d2015-05-18 22:13:54 +00001385 IRB.CreateCall(AsanMemoryAccessCallbackSized[IsWrite][1],
1386 {AddrLong, Size, ConstantInt::get(IRB.getInt32Ty(), Exp)});
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001387 } else {
1388 Value *LastByte = IRB.CreateIntToPtr(
1389 IRB.CreateAdd(AddrLong, ConstantInt::get(IntptrTy, TypeSize / 8 - 1)),
1390 Addr->getType());
Filipe Cabecinhas4647b742017-01-06 15:24:51 +00001391 instrumentAddress(I, InsertBefore, Addr, 8, IsWrite, Size, false, Exp);
1392 instrumentAddress(I, InsertBefore, LastByte, 8, IsWrite, Size, false, Exp);
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001393 }
1394}
1395
Alexey Samsonov96e239f2014-05-29 00:51:15 +00001396void AddressSanitizerModule::poisonOneInitializer(Function &GlobalInit,
1397 GlobalValue *ModuleName) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001398 // Set up the arguments to our poison/unpoison functions.
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +00001399 IRBuilder<> IRB(&GlobalInit.front(),
1400 GlobalInit.front().getFirstInsertionPt());
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001401
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001402 // Add a call to poison all external globals before the given function starts.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001403 Value *ModuleNameAddr = ConstantExpr::getPointerCast(ModuleName, IntptrTy);
1404 IRB.CreateCall(AsanPoisonGlobals, ModuleNameAddr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001405
1406 // Add calls to unpoison all globals before each return instruction.
Alexey Samsonov96e239f2014-05-29 00:51:15 +00001407 for (auto &BB : GlobalInit.getBasicBlockList())
1408 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB.getTerminator()))
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001409 CallInst::Create(AsanUnpoisonGlobals, "", RI);
Alexey Samsonov96e239f2014-05-29 00:51:15 +00001410}
1411
1412void AddressSanitizerModule::createInitializerPoisonCalls(
1413 Module &M, GlobalValue *ModuleName) {
1414 GlobalVariable *GV = M.getGlobalVariable("llvm.global_ctors");
1415
1416 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
1417 for (Use &OP : CA->operands()) {
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001418 if (isa<ConstantAggregateZero>(OP)) continue;
Alexey Samsonov96e239f2014-05-29 00:51:15 +00001419 ConstantStruct *CS = cast<ConstantStruct>(OP);
1420
1421 // Must have a function or null ptr.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001422 if (Function *F = dyn_cast<Function>(CS->getOperand(1))) {
Kostya Serebryany34ddf872014-09-24 22:41:55 +00001423 if (F->getName() == kAsanModuleCtorName) continue;
1424 ConstantInt *Priority = dyn_cast<ConstantInt>(CS->getOperand(0));
1425 // Don't instrument CTORs that will run before asan.module_ctor.
1426 if (Priority->getLimitedValue() <= kAsanCtorAndDtorPriority) continue;
1427 poisonOneInitializer(*F, ModuleName);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001428 }
1429 }
1430}
1431
Kostya Serebryanydfe9e792012-11-28 10:31:36 +00001432bool AddressSanitizerModule::ShouldInstrumentGlobal(GlobalVariable *G) {
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001433 Type *Ty = G->getValueType();
Kostya Serebryany20343352012-10-17 13:40:06 +00001434 DEBUG(dbgs() << "GLOBAL: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001435
Alexey Samsonov08f022a2014-07-11 22:36:02 +00001436 if (GlobalsMD.get(G).IsBlacklisted) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001437 if (!Ty->isSized()) return false;
1438 if (!G->hasInitializer()) return false;
Vedant Kumarf5ac6d42016-06-22 17:30:58 +00001439 if (GlobalWasGeneratedByCompiler(G)) return false; // Our own globals.
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001440 // Touch only those globals that will not be defined in other modules.
Timur Iskhodzhanove40fb372014-07-09 08:35:33 +00001441 // Don't handle ODR linkage types and COMDATs since other modules may be built
1442 // without ASan.
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001443 if (G->getLinkage() != GlobalVariable::ExternalLinkage &&
1444 G->getLinkage() != GlobalVariable::PrivateLinkage &&
1445 G->getLinkage() != GlobalVariable::InternalLinkage)
1446 return false;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001447 if (G->hasComdat()) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001448 // Two problems with thread-locals:
1449 // - The address of the main thread's copy can't be computed at link-time.
1450 // - Need to poison all copies, not just the main thread's one.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001451 if (G->isThreadLocal()) return false;
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001452 // For now, just ignore this Global if the alignment is large.
1453 if (G->getAlignment() > MinRedzoneSizeForGlobal()) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001454
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001455 if (G->hasSection()) {
Rafael Espindola83658d62016-05-11 18:21:59 +00001456 StringRef Section = G->getSection();
Kuba Brecka086e34b2014-12-05 21:32:46 +00001457
Anna Zaks11904602015-06-09 00:58:08 +00001458 // Globals from llvm.metadata aren't emitted, do not instrument them.
1459 if (Section == "llvm.metadata") return false;
Anna Zaks785c0752015-06-25 23:35:48 +00001460 // Do not instrument globals from special LLVM sections.
Anna Zaks40148f12016-02-24 22:12:18 +00001461 if (Section.find("__llvm") != StringRef::npos || Section.find("__LLVM") != StringRef::npos) return false;
Anna Zaks11904602015-06-09 00:58:08 +00001462
Alexey Samsonovc1603b62015-09-15 23:05:48 +00001463 // Do not instrument function pointers to initialization and termination
1464 // routines: dynamic linker will not properly handle redzones.
1465 if (Section.startswith(".preinit_array") ||
1466 Section.startswith(".init_array") ||
1467 Section.startswith(".fini_array")) {
1468 return false;
1469 }
1470
Anna Zaks11904602015-06-09 00:58:08 +00001471 // Callbacks put into the CRT initializer/terminator sections
1472 // should not be instrumented.
1473 // See https://code.google.com/p/address-sanitizer/issues/detail?id=305
1474 // and http://msdn.microsoft.com/en-US/en-en/library/bb918180(v=vs.120).aspx
1475 if (Section.startswith(".CRT")) {
1476 DEBUG(dbgs() << "Ignoring a global initializer callback: " << *G << "\n");
1477 return false;
1478 }
1479
Kuba Brecka1001bb52014-12-05 22:19:18 +00001480 if (TargetTriple.isOSBinFormatMachO()) {
1481 StringRef ParsedSegment, ParsedSection;
1482 unsigned TAA = 0, StubSize = 0;
1483 bool TAAParsed;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001484 std::string ErrorCode = MCSectionMachO::ParseSectionSpecifier(
1485 Section, ParsedSegment, ParsedSection, TAA, TAAParsed, StubSize);
Davide Italianoc807f482015-11-19 21:50:08 +00001486 assert(ErrorCode.empty() && "Invalid section specifier.");
Kuba Brecka1001bb52014-12-05 22:19:18 +00001487
1488 // Ignore the globals from the __OBJC section. The ObjC runtime assumes
1489 // those conform to /usr/lib/objc/runtime.h, so we can't add redzones to
1490 // them.
1491 if (ParsedSegment == "__OBJC" ||
1492 (ParsedSegment == "__DATA" && ParsedSection.startswith("__objc_"))) {
1493 DEBUG(dbgs() << "Ignoring ObjC runtime global: " << *G << "\n");
1494 return false;
1495 }
1496 // See http://code.google.com/p/address-sanitizer/issues/detail?id=32
1497 // Constant CFString instances are compiled in the following way:
1498 // -- the string buffer is emitted into
1499 // __TEXT,__cstring,cstring_literals
1500 // -- the constant NSConstantString structure referencing that buffer
1501 // is placed into __DATA,__cfstring
1502 // Therefore there's no point in placing redzones into __DATA,__cfstring.
1503 // Moreover, it causes the linker to crash on OS X 10.7
1504 if (ParsedSegment == "__DATA" && ParsedSection == "__cfstring") {
1505 DEBUG(dbgs() << "Ignoring CFString: " << *G << "\n");
1506 return false;
1507 }
1508 // The linker merges the contents of cstring_literals and removes the
1509 // trailing zeroes.
1510 if (ParsedSegment == "__TEXT" && (TAA & MachO::S_CSTRING_LITERALS)) {
1511 DEBUG(dbgs() << "Ignoring a cstring literal: " << *G << "\n");
1512 return false;
1513 }
1514 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001515 }
1516
1517 return true;
1518}
1519
Ryan Govostes653f9d02016-03-28 20:28:57 +00001520// On Mach-O platforms, we emit global metadata in a separate section of the
1521// binary in order to allow the linker to properly dead strip. This is only
1522// supported on recent versions of ld64.
1523bool AddressSanitizerModule::ShouldUseMachOGlobalsSection() const {
Ryan Govostese51401b2016-07-05 21:53:08 +00001524 if (!ClUseMachOGlobalsSection)
1525 return false;
1526
Ryan Govostes653f9d02016-03-28 20:28:57 +00001527 if (!TargetTriple.isOSBinFormatMachO())
1528 return false;
1529
1530 if (TargetTriple.isMacOSX() && !TargetTriple.isMacOSXVersionLT(10, 11))
1531 return true;
1532 if (TargetTriple.isiOS() /* or tvOS */ && !TargetTriple.isOSVersionLT(9))
Mike Aizatsky243b71f2016-04-21 22:00:13 +00001533 return true;
Ryan Govostes653f9d02016-03-28 20:28:57 +00001534 if (TargetTriple.isWatchOS() && !TargetTriple.isOSVersionLT(2))
1535 return true;
1536
1537 return false;
1538}
1539
Reid Kleckner01660a32016-11-21 20:40:37 +00001540StringRef AddressSanitizerModule::getGlobalMetadataSection() const {
1541 switch (TargetTriple.getObjectFormat()) {
1542 case Triple::COFF: return ".ASAN$GL";
1543 case Triple::ELF: return "asan_globals";
1544 case Triple::MachO: return "__DATA,__asan_globals,regular";
1545 default: break;
1546 }
1547 llvm_unreachable("unsupported object format");
1548}
1549
Alexey Samsonov788381b2012-12-25 12:28:20 +00001550void AddressSanitizerModule::initializeCallbacks(Module &M) {
1551 IRBuilder<> IRB(*C);
Ryan Govostes653f9d02016-03-28 20:28:57 +00001552
Alexey Samsonov788381b2012-12-25 12:28:20 +00001553 // Declare our poisoning and unpoisoning functions.
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001554 AsanPoisonGlobals = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001555 kAsanPoisonGlobalsName, IRB.getVoidTy(), IntptrTy, nullptr));
Alexey Samsonov788381b2012-12-25 12:28:20 +00001556 AsanPoisonGlobals->setLinkage(Function::ExternalLinkage);
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001557 AsanUnpoisonGlobals = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001558 kAsanUnpoisonGlobalsName, IRB.getVoidTy(), nullptr));
Alexey Samsonov788381b2012-12-25 12:28:20 +00001559 AsanUnpoisonGlobals->setLinkage(Function::ExternalLinkage);
Ryan Govostes653f9d02016-03-28 20:28:57 +00001560
Alexey Samsonov788381b2012-12-25 12:28:20 +00001561 // Declare functions that register/unregister globals.
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001562 AsanRegisterGlobals = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001563 kAsanRegisterGlobalsName, IRB.getVoidTy(), IntptrTy, IntptrTy, nullptr));
Alexey Samsonov788381b2012-12-25 12:28:20 +00001564 AsanRegisterGlobals->setLinkage(Function::ExternalLinkage);
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001565 AsanUnregisterGlobals = checkSanitizerInterfaceFunction(
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001566 M.getOrInsertFunction(kAsanUnregisterGlobalsName, IRB.getVoidTy(),
1567 IntptrTy, IntptrTy, nullptr));
Alexey Samsonov788381b2012-12-25 12:28:20 +00001568 AsanUnregisterGlobals->setLinkage(Function::ExternalLinkage);
Ryan Govostes653f9d02016-03-28 20:28:57 +00001569
1570 // Declare the functions that find globals in a shared object and then invoke
1571 // the (un)register function on them.
Evgeniy Stepanov5d31d082017-01-12 23:03:03 +00001572 AsanRegisterImageGlobals =
1573 checkSanitizerInterfaceFunction(M.getOrInsertFunction(
1574 kAsanRegisterImageGlobalsName, IRB.getVoidTy(), IntptrTy, nullptr));
Ryan Govostes653f9d02016-03-28 20:28:57 +00001575 AsanRegisterImageGlobals->setLinkage(Function::ExternalLinkage);
Mike Aizatsky243b71f2016-04-21 22:00:13 +00001576
Evgeniy Stepanov5d31d082017-01-12 23:03:03 +00001577 AsanUnregisterImageGlobals =
1578 checkSanitizerInterfaceFunction(M.getOrInsertFunction(
1579 kAsanUnregisterImageGlobalsName, IRB.getVoidTy(), IntptrTy, nullptr));
Ryan Govostes653f9d02016-03-28 20:28:57 +00001580 AsanUnregisterImageGlobals->setLinkage(Function::ExternalLinkage);
Alexey Samsonov788381b2012-12-25 12:28:20 +00001581}
1582
Evgeniy Stepanov5d31d082017-01-12 23:03:03 +00001583// Put the metadata and the instrumented global in the same group. This ensures
1584// that the metadata is discarded if the instrumented global is discarded.
1585void AddressSanitizerModule::SetComdatForGlobalMetadata(
1586 GlobalVariable *G, GlobalVariable *Metadata) {
1587 Module &M = *G->getParent();
1588 Comdat *C = G->getComdat();
1589 if (!C) {
1590 if (!G->hasName()) {
1591 // If G is unnamed, it must be internal. Give it an artificial name
1592 // so we can put it in a comdat.
1593 assert(G->hasLocalLinkage());
1594 G->setName(Twine(kAsanGenPrefix) + "_anon_global");
1595 }
1596 C = M.getOrInsertComdat(G->getName());
1597 // Make this IMAGE_COMDAT_SELECT_NODUPLICATES on COFF.
1598 if (TargetTriple.isOSBinFormatCOFF())
1599 C->setSelectionKind(Comdat::NoDuplicates);
1600 G->setComdat(C);
1601 }
1602
1603 assert(G->hasComdat());
1604 Metadata->setComdat(G->getComdat());
1605}
1606
1607// Create a separate metadata global and put it in the appropriate ASan
1608// global registration section.
1609GlobalVariable *
1610AddressSanitizerModule::CreateMetadataGlobal(Module &M, Constant *Initializer,
1611 StringRef OriginalName) {
1612 auto &DL = M.getDataLayout();
1613 GlobalVariable *Metadata =
1614 new GlobalVariable(M, Initializer->getType(), false,
1615 GlobalVariable::InternalLinkage, Initializer,
1616 Twine("__asan_global_") +
1617 GlobalValue::getRealLinkageName(OriginalName));
1618 Metadata->setSection(getGlobalMetadataSection());
1619
1620 // We don't want any padding, but we also need a reasonable alignment.
1621 // The MSVC linker always inserts padding when linking incrementally. We
1622 // cope with that by aligning each struct to its size, which must be a power
1623 // of two.
1624 unsigned SizeOfGlobalStruct = DL.getTypeAllocSize(Initializer->getType());
1625 assert(isPowerOf2_32(SizeOfGlobalStruct) &&
1626 "global metadata will not be padded appropriately");
1627 Metadata->setAlignment(SizeOfGlobalStruct);
1628 return Metadata;
1629}
1630
1631IRBuilder<> AddressSanitizerModule::CreateAsanModuleDtor(Module &M) {
1632 Function *AsanDtorFunction =
1633 Function::Create(FunctionType::get(Type::getVoidTy(*C), false),
1634 GlobalValue::InternalLinkage, kAsanModuleDtorName, &M);
1635 BasicBlock *AsanDtorBB = BasicBlock::Create(*C, "", AsanDtorFunction);
1636 appendToGlobalDtors(M, AsanDtorFunction, kAsanCtorAndDtorPriority);
1637
1638 return IRBuilder<>(ReturnInst::Create(*C, AsanDtorBB));
1639}
1640
1641void AddressSanitizerModule::InstrumentGlobalsCOFF(
1642 IRBuilder<> &IRB, Module &M, ArrayRef<GlobalVariable *> ExtendedGlobals,
1643 ArrayRef<Constant *> MetadataInitializers) {
1644 assert(ExtendedGlobals.size() == MetadataInitializers.size());
1645
1646 for (size_t i = 0; i < ExtendedGlobals.size(); i++) {
1647 GlobalVariable *G = ExtendedGlobals[i];
1648 GlobalVariable *Metadata =
1649 CreateMetadataGlobal(M, MetadataInitializers[i], G->getName());
1650 SetComdatForGlobalMetadata(G, Metadata);
1651 }
1652}
1653
1654void AddressSanitizerModule::InstrumentGlobalsMachO(
1655 IRBuilder<> &IRB, Module &M, ArrayRef<GlobalVariable *> ExtendedGlobals,
1656 ArrayRef<Constant *> MetadataInitializers) {
1657 assert(ExtendedGlobals.size() == MetadataInitializers.size());
1658
1659 // On recent Mach-O platforms, use a structure which binds the liveness of
1660 // the global variable to the metadata struct. Keep the list of "Liveness" GV
1661 // created to be added to llvm.compiler.used
1662 StructType *LivenessTy = StructType::get(IntptrTy, IntptrTy, nullptr);
1663 SmallVector<GlobalValue *, 16> LivenessGlobals(ExtendedGlobals.size());
1664
1665 for (size_t i = 0; i < ExtendedGlobals.size(); i++) {
1666 Constant *Initializer = MetadataInitializers[i];
1667 GlobalVariable *G = ExtendedGlobals[i];
1668 GlobalVariable *Metadata =
1669 CreateMetadataGlobal(M, Initializer, G->getName());
1670
1671 // On recent Mach-O platforms, we emit the global metadata in a way that
1672 // allows the linker to properly strip dead globals.
1673 auto LivenessBinder = ConstantStruct::get(
1674 LivenessTy, Initializer->getAggregateElement(0u),
1675 ConstantExpr::getPointerCast(Metadata, IntptrTy), nullptr);
1676 GlobalVariable *Liveness = new GlobalVariable(
1677 M, LivenessTy, false, GlobalVariable::InternalLinkage, LivenessBinder,
1678 Twine("__asan_binder_") + G->getName());
1679 Liveness->setSection("__DATA,__asan_liveness,regular,live_support");
1680 LivenessGlobals[i] = Liveness;
1681 }
1682
1683 // Update llvm.compiler.used, adding the new liveness globals. This is
1684 // needed so that during LTO these variables stay alive. The alternative
1685 // would be to have the linker handling the LTO symbols, but libLTO
1686 // current API does not expose access to the section for each symbol.
1687 if (!LivenessGlobals.empty())
1688 appendToCompilerUsed(M, LivenessGlobals);
1689
1690 // RegisteredFlag serves two purposes. First, we can pass it to dladdr()
1691 // to look up the loaded image that contains it. Second, we can store in it
1692 // whether registration has already occurred, to prevent duplicate
1693 // registration.
1694 //
1695 // common linkage ensures that there is only one global per shared library.
1696 GlobalVariable *RegisteredFlag = new GlobalVariable(
1697 M, IntptrTy, false, GlobalVariable::CommonLinkage,
1698 ConstantInt::get(IntptrTy, 0), kAsanGlobalsRegisteredFlagName);
1699 RegisteredFlag->setVisibility(GlobalVariable::HiddenVisibility);
1700
1701 IRB.CreateCall(AsanRegisterImageGlobals,
1702 {IRB.CreatePointerCast(RegisteredFlag, IntptrTy)});
1703
1704 // We also need to unregister globals at the end, e.g., when a shared library
1705 // gets closed.
1706 IRBuilder<> IRB_Dtor = CreateAsanModuleDtor(M);
1707 IRB_Dtor.CreateCall(AsanUnregisterImageGlobals,
1708 {IRB.CreatePointerCast(RegisteredFlag, IntptrTy)});
1709}
1710
1711void AddressSanitizerModule::InstrumentGlobalsWithMetadataArray(
1712 IRBuilder<> &IRB, Module &M, ArrayRef<GlobalVariable *> ExtendedGlobals,
1713 ArrayRef<Constant *> MetadataInitializers) {
1714 assert(ExtendedGlobals.size() == MetadataInitializers.size());
1715 unsigned N = ExtendedGlobals.size();
1716 assert(N > 0);
1717
1718 // On platforms that don't have a custom metadata section, we emit an array
1719 // of global metadata structures.
1720 ArrayType *ArrayOfGlobalStructTy =
1721 ArrayType::get(MetadataInitializers[0]->getType(), N);
1722 auto AllGlobals = new GlobalVariable(
1723 M, ArrayOfGlobalStructTy, false, GlobalVariable::InternalLinkage,
1724 ConstantArray::get(ArrayOfGlobalStructTy, MetadataInitializers), "");
1725
1726 IRB.CreateCall(AsanRegisterGlobals,
1727 {IRB.CreatePointerCast(AllGlobals, IntptrTy),
1728 ConstantInt::get(IntptrTy, N)});
1729
1730 // We also need to unregister globals at the end, e.g., when a shared library
1731 // gets closed.
1732 IRBuilder<> IRB_Dtor = CreateAsanModuleDtor(M);
1733 IRB_Dtor.CreateCall(AsanUnregisterGlobals,
1734 {IRB.CreatePointerCast(AllGlobals, IntptrTy),
1735 ConstantInt::get(IntptrTy, N)});
1736}
1737
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001738// This function replaces all global variables with new variables that have
1739// trailing redzones. It also creates a function that poisons
1740// redzones and inserts this function into llvm.global_ctors.
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001741bool AddressSanitizerModule::InstrumentGlobals(IRBuilder<> &IRB, Module &M) {
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001742 GlobalsMD.init(M);
Kostya Serebryany20a79972012-11-22 03:18:50 +00001743
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001744 SmallVector<GlobalVariable *, 16> GlobalsToChange;
1745
Alexey Samsonova02e6642014-05-29 18:40:48 +00001746 for (auto &G : M.globals()) {
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001747 if (ShouldInstrumentGlobal(&G)) GlobalsToChange.push_back(&G);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001748 }
1749
1750 size_t n = GlobalsToChange.size();
1751 if (n == 0) return false;
1752
Reid Kleckner78565832016-11-29 01:32:21 +00001753 auto &DL = M.getDataLayout();
Reid Kleckner01660a32016-11-21 20:40:37 +00001754
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001755 // A global is described by a structure
1756 // size_t beg;
1757 // size_t size;
1758 // size_t size_with_redzone;
1759 // const char *name;
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001760 // const char *module_name;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001761 // size_t has_dynamic_init;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001762 // void *source_location;
Maxim Ostapenkob1e3f602016-02-08 08:30:57 +00001763 // size_t odr_indicator;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001764 // We initialize an array of such structures and pass it to a run-time call.
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001765 StructType *GlobalStructTy =
1766 StructType::get(IntptrTy, IntptrTy, IntptrTy, IntptrTy, IntptrTy,
Maxim Ostapenkob1e3f602016-02-08 08:30:57 +00001767 IntptrTy, IntptrTy, IntptrTy, nullptr);
Evgeniy Stepanov5d31d082017-01-12 23:03:03 +00001768 SmallVector<GlobalVariable *, 16> NewGlobals(n);
1769 SmallVector<Constant *, 16> Initializers(n);
Kostya Serebryany20a79972012-11-22 03:18:50 +00001770
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001771 bool HasDynamicallyInitializedGlobals = false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001772
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001773 // We shouldn't merge same module names, as this string serves as unique
1774 // module ID in runtime.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001775 GlobalVariable *ModuleName = createPrivateGlobalForString(
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001776 M, M.getModuleIdentifier(), /*AllowMerging*/ false);
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001777
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001778 for (size_t i = 0; i < n; i++) {
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001779 static const uint64_t kMaxGlobalRedzone = 1 << 18;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001780 GlobalVariable *G = GlobalsToChange[i];
Alexey Samsonov15c96692014-07-12 00:42:52 +00001781
1782 auto MD = GlobalsMD.get(G);
Maxim Ostapenkob1e3f602016-02-08 08:30:57 +00001783 StringRef NameForGlobal = G->getName();
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +00001784 // Create string holding the global name (use global name from metadata
1785 // if it's available, otherwise just write the name of global variable).
1786 GlobalVariable *Name = createPrivateGlobalForString(
Maxim Ostapenkob1e3f602016-02-08 08:30:57 +00001787 M, MD.Name.empty() ? NameForGlobal : MD.Name,
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +00001788 /*AllowMerging*/ true);
Alexey Samsonov15c96692014-07-12 00:42:52 +00001789
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001790 Type *Ty = G->getValueType();
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001791 uint64_t SizeInBytes = DL.getTypeAllocSize(Ty);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001792 uint64_t MinRZ = MinRedzoneSizeForGlobal();
Kostya Serebryany87191f62013-01-24 10:35:40 +00001793 // MinRZ <= RZ <= kMaxGlobalRedzone
1794 // and trying to make RZ to be ~ 1/4 of SizeInBytes.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001795 uint64_t RZ = std::max(
1796 MinRZ, std::min(kMaxGlobalRedzone, (SizeInBytes / MinRZ / 4) * MinRZ));
Kostya Serebryany87191f62013-01-24 10:35:40 +00001797 uint64_t RightRedzoneSize = RZ;
1798 // Round up to MinRZ
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001799 if (SizeInBytes % MinRZ) RightRedzoneSize += MinRZ - (SizeInBytes % MinRZ);
Kostya Serebryany87191f62013-01-24 10:35:40 +00001800 assert(((RightRedzoneSize + SizeInBytes) % MinRZ) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001801 Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize);
1802
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001803 StructType *NewTy = StructType::get(Ty, RightRedZoneTy, nullptr);
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001804 Constant *NewInitializer =
1805 ConstantStruct::get(NewTy, G->getInitializer(),
1806 Constant::getNullValue(RightRedZoneTy), nullptr);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001807
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001808 // Create a new global variable with enough space for a redzone.
Bill Wendling58f8cef2013-08-06 22:52:42 +00001809 GlobalValue::LinkageTypes Linkage = G->getLinkage();
1810 if (G->isConstant() && Linkage == GlobalValue::PrivateLinkage)
1811 Linkage = GlobalValue::InternalLinkage;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001812 GlobalVariable *NewGlobal =
1813 new GlobalVariable(M, NewTy, G->isConstant(), Linkage, NewInitializer,
1814 "", G, G->getThreadLocalMode());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001815 NewGlobal->copyAttributesFrom(G);
Kostya Serebryany87191f62013-01-24 10:35:40 +00001816 NewGlobal->setAlignment(MinRZ);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001817
Kuba Breckaa28c9e82016-10-31 18:51:58 +00001818 // Move null-terminated C strings to "__asan_cstring" section on Darwin.
1819 if (TargetTriple.isOSBinFormatMachO() && !G->hasSection() &&
1820 G->isConstant()) {
1821 auto Seq = dyn_cast<ConstantDataSequential>(G->getInitializer());
1822 if (Seq && Seq->isCString())
1823 NewGlobal->setSection("__TEXT,__asan_cstring,regular");
1824 }
1825
Adrian Prantl12fa3b32016-09-20 18:28:42 +00001826 // Transfer the debug info. The payload starts at offset zero so we can
1827 // copy the debug info over as is.
Adrian Prantlbceaaa92016-12-20 02:09:43 +00001828 SmallVector<DIGlobalVariableExpression *, 1> GVs;
Adrian Prantl12fa3b32016-09-20 18:28:42 +00001829 G->getDebugInfo(GVs);
1830 for (auto *GV : GVs)
1831 NewGlobal->addDebugInfo(GV);
1832
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001833 Value *Indices2[2];
1834 Indices2[0] = IRB.getInt32(0);
1835 Indices2[1] = IRB.getInt32(0);
1836
1837 G->replaceAllUsesWith(
David Blaikie4a2e73b2015-04-02 18:55:32 +00001838 ConstantExpr::getGetElementPtr(NewTy, NewGlobal, Indices2, true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001839 NewGlobal->takeName(G);
1840 G->eraseFromParent();
Evgeniy Stepanov5d31d082017-01-12 23:03:03 +00001841 NewGlobals[i] = NewGlobal;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001842
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +00001843 Constant *SourceLoc;
1844 if (!MD.SourceLoc.empty()) {
1845 auto SourceLocGlobal = createPrivateGlobalForSourceLoc(M, MD.SourceLoc);
1846 SourceLoc = ConstantExpr::getPointerCast(SourceLocGlobal, IntptrTy);
1847 } else {
1848 SourceLoc = ConstantInt::get(IntptrTy, 0);
1849 }
1850
Maxim Ostapenkob1e3f602016-02-08 08:30:57 +00001851 Constant *ODRIndicator = ConstantExpr::getNullValue(IRB.getInt8PtrTy());
1852 GlobalValue *InstrumentedGlobal = NewGlobal;
1853
Kuba Breckaa1ea64a2016-09-14 14:06:33 +00001854 bool CanUsePrivateAliases =
1855 TargetTriple.isOSBinFormatELF() || TargetTriple.isOSBinFormatMachO();
Maxim Ostapenkob1e3f602016-02-08 08:30:57 +00001856 if (CanUsePrivateAliases && ClUsePrivateAliasForGlobals) {
1857 // Create local alias for NewGlobal to avoid crash on ODR between
1858 // instrumented and non-instrumented libraries.
1859 auto *GA = GlobalAlias::create(GlobalValue::InternalLinkage,
1860 NameForGlobal + M.getName(), NewGlobal);
1861
1862 // With local aliases, we need to provide another externally visible
1863 // symbol __odr_asan_XXX to detect ODR violation.
1864 auto *ODRIndicatorSym =
1865 new GlobalVariable(M, IRB.getInt8Ty(), false, Linkage,
1866 Constant::getNullValue(IRB.getInt8Ty()),
1867 kODRGenPrefix + NameForGlobal, nullptr,
1868 NewGlobal->getThreadLocalMode());
1869
1870 // Set meaningful attributes for indicator symbol.
1871 ODRIndicatorSym->setVisibility(NewGlobal->getVisibility());
1872 ODRIndicatorSym->setDLLStorageClass(NewGlobal->getDLLStorageClass());
1873 ODRIndicatorSym->setAlignment(1);
1874 ODRIndicator = ODRIndicatorSym;
1875 InstrumentedGlobal = GA;
1876 }
1877
Reid Kleckner01660a32016-11-21 20:40:37 +00001878 Constant *Initializer = ConstantStruct::get(
Maxim Ostapenkob1e3f602016-02-08 08:30:57 +00001879 GlobalStructTy,
1880 ConstantExpr::getPointerCast(InstrumentedGlobal, IntptrTy),
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001881 ConstantInt::get(IntptrTy, SizeInBytes),
1882 ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize),
1883 ConstantExpr::getPointerCast(Name, IntptrTy),
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001884 ConstantExpr::getPointerCast(ModuleName, IntptrTy),
Maxim Ostapenkob1e3f602016-02-08 08:30:57 +00001885 ConstantInt::get(IntptrTy, MD.IsDynInit), SourceLoc,
1886 ConstantExpr::getPointerCast(ODRIndicator, IntptrTy), nullptr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001887
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001888 if (ClInitializers && MD.IsDynInit) HasDynamicallyInitializedGlobals = true;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001889
Kostya Serebryany20343352012-10-17 13:40:06 +00001890 DEBUG(dbgs() << "NEW GLOBAL: " << *NewGlobal << "\n");
Reid Kleckner01660a32016-11-21 20:40:37 +00001891
Evgeniy Stepanov5d31d082017-01-12 23:03:03 +00001892 Initializers[i] = Initializer;
1893 }
Reid Kleckner01660a32016-11-21 20:40:37 +00001894
Evgeniy Stepanov5d31d082017-01-12 23:03:03 +00001895 if (TargetTriple.isOSBinFormatCOFF()) {
1896 InstrumentGlobalsCOFF(IRB, M, NewGlobals, Initializers);
1897 } else if (ShouldUseMachOGlobalsSection()) {
1898 InstrumentGlobalsMachO(IRB, M, NewGlobals, Initializers);
1899 } else {
1900 InstrumentGlobalsWithMetadataArray(IRB, M, NewGlobals, Initializers);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001901 }
1902
Reid Kleckner01660a32016-11-21 20:40:37 +00001903 // Create calls for poisoning before initializers run and unpoisoning after.
1904 if (HasDynamicallyInitializedGlobals)
1905 createInitializerPoisonCalls(M, ModuleName);
1906
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001907 DEBUG(dbgs() << M);
1908 return true;
1909}
1910
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001911bool AddressSanitizerModule::runOnModule(Module &M) {
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001912 C = &(M.getContext());
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001913 int LongSize = M.getDataLayout().getPointerSizeInBits();
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001914 IntptrTy = Type::getIntNTy(*C, LongSize);
Kuba Brecka1001bb52014-12-05 22:19:18 +00001915 TargetTriple = Triple(M.getTargetTriple());
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001916 Mapping = getShadowMapping(TargetTriple, LongSize, CompileKernel);
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001917 initializeCallbacks(M);
1918
1919 bool Changed = false;
1920
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001921 // TODO(glider): temporarily disabled globals instrumentation for KASan.
1922 if (ClGlobals && !CompileKernel) {
1923 Function *CtorFunc = M.getFunction(kAsanModuleCtorName);
1924 assert(CtorFunc);
1925 IRBuilder<> IRB(CtorFunc->getEntryBlock().getTerminator());
1926 Changed |= InstrumentGlobals(IRB, M);
1927 }
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001928
1929 return Changed;
1930}
1931
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001932void AddressSanitizer::initializeCallbacks(Module &M) {
1933 IRBuilder<> IRB(*C);
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001934 // Create __asan_report* callbacks.
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001935 // IsWrite, TypeSize and Exp are encoded in the function name.
1936 for (int Exp = 0; Exp < 2; Exp++) {
1937 for (size_t AccessIsWrite = 0; AccessIsWrite <= 1; AccessIsWrite++) {
1938 const std::string TypeStr = AccessIsWrite ? "store" : "load";
1939 const std::string ExpStr = Exp ? "exp_" : "";
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001940 const std::string SuffixStr = CompileKernel ? "N" : "_n";
Yury Gribovd7731982015-11-11 10:36:49 +00001941 const std::string EndingStr = Recover ? "_noabort" : "";
Craig Toppere3dcce92015-08-01 22:20:21 +00001942 Type *ExpType = Exp ? Type::getInt32Ty(*C) : nullptr;
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001943 AsanErrorCallbackSized[AccessIsWrite][Exp] =
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001944 checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Yury Gribovd7731982015-11-11 10:36:49 +00001945 kAsanReportErrorTemplate + ExpStr + TypeStr + SuffixStr + EndingStr,
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001946 IRB.getVoidTy(), IntptrTy, IntptrTy, ExpType, nullptr));
1947 AsanMemoryAccessCallbackSized[AccessIsWrite][Exp] =
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001948 checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001949 ClMemoryAccessCallbackPrefix + ExpStr + TypeStr + "N" + EndingStr,
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001950 IRB.getVoidTy(), IntptrTy, IntptrTy, ExpType, nullptr));
1951 for (size_t AccessSizeIndex = 0; AccessSizeIndex < kNumberOfAccessSizes;
1952 AccessSizeIndex++) {
Aaron Ballmanef0fe1e2016-03-30 21:30:00 +00001953 const std::string Suffix = TypeStr + itostr(1ULL << AccessSizeIndex);
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001954 AsanErrorCallback[AccessIsWrite][Exp][AccessSizeIndex] =
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001955 checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Yury Gribovd7731982015-11-11 10:36:49 +00001956 kAsanReportErrorTemplate + ExpStr + Suffix + EndingStr,
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001957 IRB.getVoidTy(), IntptrTy, ExpType, nullptr));
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001958 AsanMemoryAccessCallback[AccessIsWrite][Exp][AccessSizeIndex] =
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001959 checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001960 ClMemoryAccessCallbackPrefix + ExpStr + Suffix + EndingStr,
1961 IRB.getVoidTy(), IntptrTy, ExpType, nullptr));
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001962 }
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001963 }
1964 }
Kostya Serebryany86332c02014-04-21 07:10:43 +00001965
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001966 const std::string MemIntrinCallbackPrefix =
1967 CompileKernel ? std::string("") : ClMemoryAccessCallbackPrefix;
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001968 AsanMemmove = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001969 MemIntrinCallbackPrefix + "memmove", IRB.getInt8PtrTy(),
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001970 IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IntptrTy, nullptr));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001971 AsanMemcpy = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001972 MemIntrinCallbackPrefix + "memcpy", IRB.getInt8PtrTy(),
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001973 IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IntptrTy, nullptr));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001974 AsanMemset = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001975 MemIntrinCallbackPrefix + "memset", IRB.getInt8PtrTy(),
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001976 IRB.getInt8PtrTy(), IRB.getInt32Ty(), IntptrTy, nullptr));
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00001977
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001978 AsanHandleNoReturnFunc = checkSanitizerInterfaceFunction(
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001979 M.getOrInsertFunction(kAsanHandleNoReturnName, IRB.getVoidTy(), nullptr));
Kostya Serebryany4f8f0c52014-10-27 18:13:56 +00001980
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001981 AsanPtrCmpFunction = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001982 kAsanPtrCmp, IRB.getVoidTy(), IntptrTy, IntptrTy, nullptr));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001983 AsanPtrSubFunction = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001984 kAsanPtrSub, IRB.getVoidTy(), IntptrTy, IntptrTy, nullptr));
Kostya Serebryanyf02c6062012-07-20 09:54:50 +00001985 // We insert an empty inline asm after __asan_report* to avoid callback merge.
1986 EmptyAsm = InlineAsm::get(FunctionType::get(IRB.getVoidTy(), false),
1987 StringRef(""), StringRef(""),
1988 /*hasSideEffects=*/true);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001989}
1990
1991// virtual
1992bool AddressSanitizer::doInitialization(Module &M) {
1993 // Initialize the private fields. No one has accessed them before.
Rafael Espindola93512512014-02-25 17:30:31 +00001994
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001995 GlobalsMD.init(M);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001996
1997 C = &(M.getContext());
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001998 LongSize = M.getDataLayout().getPointerSizeInBits();
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001999 IntptrTy = Type::getIntNTy(*C, LongSize);
Kuba Brecka1001bb52014-12-05 22:19:18 +00002000 TargetTriple = Triple(M.getTargetTriple());
Kostya Serebryany4b929da2012-11-29 09:54:21 +00002001
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00002002 if (!CompileKernel) {
2003 std::tie(AsanCtorFunction, AsanInitFunction) =
Kuba Brecka45dbffd2015-07-23 10:54:06 +00002004 createSanitizerCtorAndInitFunctions(
2005 M, kAsanModuleCtorName, kAsanInitName,
2006 /*InitArgTypes=*/{}, /*InitArgs=*/{}, kAsanVersionCheckName);
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00002007 appendToGlobalCtors(M, AsanCtorFunction, kAsanCtorAndDtorPriority);
2008 }
2009 Mapping = getShadowMapping(TargetTriple, LongSize, CompileKernel);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00002010 return true;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002011}
2012
Keno Fischere03fae42015-12-05 14:42:34 +00002013bool AddressSanitizer::doFinalization(Module &M) {
2014 GlobalsMD.reset();
2015 return false;
2016}
2017
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00002018bool AddressSanitizer::maybeInsertAsanInitAtFunctionEntry(Function &F) {
2019 // For each NSObject descendant having a +load method, this method is invoked
2020 // by the ObjC runtime before any of the static constructors is called.
2021 // Therefore we need to instrument such methods with a call to __asan_init
2022 // at the beginning in order to initialize our runtime before any access to
2023 // the shadow memory.
2024 // We cannot just ignore these methods, because they may call other
2025 // instrumented functions.
2026 if (F.getName().find(" load]") != std::string::npos) {
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +00002027 IRBuilder<> IRB(&F.front(), F.front().begin());
David Blaikieff6409d2015-05-18 22:13:54 +00002028 IRB.CreateCall(AsanInitFunction, {});
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00002029 return true;
2030 }
2031 return false;
2032}
2033
Etienne Bergeron0ca05682016-09-30 17:46:32 +00002034void AddressSanitizer::maybeInsertDynamicShadowAtFunctionEntry(Function &F) {
2035 // Generate code only when dynamic addressing is needed.
2036 if (Mapping.Offset != kDynamicShadowSentinel)
2037 return;
2038
2039 IRBuilder<> IRB(&F.front().front());
2040 Value *GlobalDynamicAddress = F.getParent()->getOrInsertGlobal(
2041 kAsanShadowMemoryDynamicAddress, IntptrTy);
2042 LocalDynamicShadow = IRB.CreateLoad(GlobalDynamicAddress);
2043}
2044
Reid Kleckner2f907552015-07-21 17:40:14 +00002045void AddressSanitizer::markEscapedLocalAllocas(Function &F) {
2046 // Find the one possible call to llvm.localescape and pre-mark allocas passed
2047 // to it as uninteresting. This assumes we haven't started processing allocas
2048 // yet. This check is done up front because iterating the use list in
2049 // isInterestingAlloca would be algorithmically slower.
2050 assert(ProcessedAllocas.empty() && "must process localescape before allocas");
2051
2052 // Try to get the declaration of llvm.localescape. If it's not in the module,
2053 // we can exit early.
2054 if (!F.getParent()->getFunction("llvm.localescape")) return;
2055
2056 // Look for a call to llvm.localescape call in the entry block. It can't be in
2057 // any other block.
2058 for (Instruction &I : F.getEntryBlock()) {
2059 IntrinsicInst *II = dyn_cast<IntrinsicInst>(&I);
2060 if (II && II->getIntrinsicID() == Intrinsic::localescape) {
2061 // We found a call. Mark all the allocas passed in as uninteresting.
2062 for (Value *Arg : II->arg_operands()) {
2063 AllocaInst *AI = dyn_cast<AllocaInst>(Arg->stripPointerCasts());
2064 assert(AI && AI->isStaticAlloca() &&
2065 "non-static alloca arg to localescape");
2066 ProcessedAllocas[AI] = false;
2067 }
2068 break;
2069 }
2070 }
2071}
2072
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00002073bool AddressSanitizer::runOnFunction(Function &F) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002074 if (&F == AsanCtorFunction) return false;
Kostya Serebryany6b5b58d2013-03-18 07:33:49 +00002075 if (F.getLinkage() == GlobalValue::AvailableExternallyLinkage) return false;
Etienne Bergeron752f8832016-09-14 17:18:37 +00002076 if (!ClDebugFunc.empty() && ClDebugFunc == F.getName()) return false;
Etienne Bergeron52e47432016-09-15 15:35:59 +00002077 if (F.getName().startswith("__asan_")) return false;
Yury Gribov3ae427d2014-12-01 08:47:58 +00002078
Etienne Bergeron78582b22016-09-15 15:45:05 +00002079 bool FunctionModified = false;
2080
Kostya Serebryanycf880b92013-02-26 06:58:09 +00002081 // If needed, insert __asan_init before checking for SanitizeAddress attr.
Etienne Bergeron752f8832016-09-14 17:18:37 +00002082 // This function needs to be called even if the function body is not
2083 // instrumented.
Etienne Bergeron78582b22016-09-15 15:45:05 +00002084 if (maybeInsertAsanInitAtFunctionEntry(F))
2085 FunctionModified = true;
Etienne Bergeron752f8832016-09-14 17:18:37 +00002086
2087 // Leave if the function doesn't need instrumentation.
Etienne Bergeron78582b22016-09-15 15:45:05 +00002088 if (!F.hasFnAttribute(Attribute::SanitizeAddress)) return FunctionModified;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002089
Etienne Bergeron752f8832016-09-14 17:18:37 +00002090 DEBUG(dbgs() << "ASAN instrumenting:\n" << F << "\n");
2091
2092 initializeCallbacks(*F.getParent());
2093 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Bill Wendlingc9b22d72012-10-09 07:45:08 +00002094
Reid Kleckner2f907552015-07-21 17:40:14 +00002095 FunctionStateRAII CleanupObj(this);
2096
Etienne Bergeron0ca05682016-09-30 17:46:32 +00002097 maybeInsertDynamicShadowAtFunctionEntry(F);
2098
Reid Kleckner2f907552015-07-21 17:40:14 +00002099 // We can't instrument allocas used with llvm.localescape. Only static allocas
2100 // can be passed to that intrinsic.
2101 markEscapedLocalAllocas(F);
2102
Bill Wendlingc9b22d72012-10-09 07:45:08 +00002103 // We want to instrument every address only once per basic block (unless there
2104 // are calls between uses).
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002105 SmallSet<Value *, 16> TempsToInstrument;
2106 SmallVector<Instruction *, 16> ToInstrument;
2107 SmallVector<Instruction *, 8> NoReturnCalls;
2108 SmallVector<BasicBlock *, 16> AllBlocks;
2109 SmallVector<Instruction *, 16> PointerComparisonsOrSubtracts;
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00002110 int NumAllocas = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +00002111 bool IsWrite;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00002112 unsigned Alignment;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002113 uint64_t TypeSize;
Marcin Koscielnicki3feda222016-06-18 10:10:37 +00002114 const TargetLibraryInfo *TLI =
2115 &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002116
2117 // Fill the set of memory operations to instrument.
Alexey Samsonova02e6642014-05-29 18:40:48 +00002118 for (auto &BB : F) {
2119 AllBlocks.push_back(&BB);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002120 TempsToInstrument.clear();
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00002121 int NumInsnsPerBB = 0;
Alexey Samsonova02e6642014-05-29 18:40:48 +00002122 for (auto &Inst : BB) {
2123 if (LooksLikeCodeInBug11395(&Inst)) return false;
Filipe Cabecinhasdd968872016-12-14 21:57:04 +00002124 Value *MaybeMask = nullptr;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002125 if (Value *Addr = isInterestingMemoryAccess(&Inst, &IsWrite, &TypeSize,
Filipe Cabecinhasdd968872016-12-14 21:57:04 +00002126 &Alignment, &MaybeMask)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002127 if (ClOpt && ClOptSameTemp) {
Filipe Cabecinhasdd968872016-12-14 21:57:04 +00002128 // If we have a mask, skip instrumentation if we've already
2129 // instrumented the full object. But don't add to TempsToInstrument
2130 // because we might get another load/store with a different mask.
2131 if (MaybeMask) {
2132 if (TempsToInstrument.count(Addr))
2133 continue; // We've seen this (whole) temp in the current BB.
2134 } else {
2135 if (!TempsToInstrument.insert(Addr).second)
2136 continue; // We've seen this temp in the current BB.
2137 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002138 }
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +00002139 } else if (ClInvalidPointerPairs &&
Alexey Samsonova02e6642014-05-29 18:40:48 +00002140 isInterestingPointerComparisonOrSubtraction(&Inst)) {
2141 PointerComparisonsOrSubtracts.push_back(&Inst);
Kostya Serebryany796f6552014-02-27 12:45:36 +00002142 continue;
Alexey Samsonova02e6642014-05-29 18:40:48 +00002143 } else if (isa<MemIntrinsic>(Inst)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002144 // ok, take it.
2145 } else {
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002146 if (isa<AllocaInst>(Inst)) NumAllocas++;
Alexey Samsonova02e6642014-05-29 18:40:48 +00002147 CallSite CS(&Inst);
Kostya Serebryany699ac282013-02-20 12:35:15 +00002148 if (CS) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002149 // A call inside BB.
2150 TempsToInstrument.clear();
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002151 if (CS.doesNotReturn()) NoReturnCalls.push_back(CS.getInstruction());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002152 }
Marcin Koscielnicki3feda222016-06-18 10:10:37 +00002153 if (CallInst *CI = dyn_cast<CallInst>(&Inst))
2154 maybeMarkSanitizerLibraryCallNoBuiltin(CI, TLI);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002155 continue;
2156 }
Alexey Samsonova02e6642014-05-29 18:40:48 +00002157 ToInstrument.push_back(&Inst);
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00002158 NumInsnsPerBB++;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002159 if (NumInsnsPerBB >= ClMaxInsnsToInstrumentPerBB) break;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002160 }
2161 }
2162
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00002163 bool UseCalls =
2164 CompileKernel ||
2165 (ClInstrumentationWithCallsThreshold >= 0 &&
2166 ToInstrument.size() > (unsigned)ClInstrumentationWithCallsThreshold);
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002167 const DataLayout &DL = F.getParent()->getDataLayout();
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002168 ObjectSizeOffsetVisitor ObjSizeVis(DL, TLI, F.getContext(),
2169 /*RoundToAlign=*/true);
2170
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002171 // Instrument.
2172 int NumInstrumented = 0;
Alexey Samsonova02e6642014-05-29 18:40:48 +00002173 for (auto Inst : ToInstrument) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002174 if (ClDebugMin < 0 || ClDebugMax < 0 ||
2175 (NumInstrumented >= ClDebugMin && NumInstrumented <= ClDebugMax)) {
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002176 if (isInterestingMemoryAccess(Inst, &IsWrite, &TypeSize, &Alignment))
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002177 instrumentMop(ObjSizeVis, Inst, UseCalls,
2178 F.getParent()->getDataLayout());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002179 else
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00002180 instrumentMemIntrinsic(cast<MemIntrinsic>(Inst));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002181 }
2182 NumInstrumented++;
2183 }
2184
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00002185 FunctionStackPoisoner FSP(F, *this);
2186 bool ChangedStack = FSP.runOnFunction();
Kostya Serebryany154a54d2012-02-08 21:36:17 +00002187
2188 // We must unpoison the stack before every NoReturn call (throw, _exit, etc).
2189 // See e.g. http://code.google.com/p/address-sanitizer/issues/detail?id=37
Alexey Samsonova02e6642014-05-29 18:40:48 +00002190 for (auto CI : NoReturnCalls) {
Kostya Serebryany154a54d2012-02-08 21:36:17 +00002191 IRBuilder<> IRB(CI);
David Blaikieff6409d2015-05-18 22:13:54 +00002192 IRB.CreateCall(AsanHandleNoReturnFunc, {});
Kostya Serebryany154a54d2012-02-08 21:36:17 +00002193 }
2194
Alexey Samsonova02e6642014-05-29 18:40:48 +00002195 for (auto Inst : PointerComparisonsOrSubtracts) {
2196 instrumentPointerComparisonOrSubtraction(Inst);
Kostya Serebryany796f6552014-02-27 12:45:36 +00002197 NumInstrumented++;
2198 }
2199
Etienne Bergeron78582b22016-09-15 15:45:05 +00002200 if (NumInstrumented > 0 || ChangedStack || !NoReturnCalls.empty())
2201 FunctionModified = true;
Bob Wilsonda4147c2013-11-15 07:16:09 +00002202
Etienne Bergeron78582b22016-09-15 15:45:05 +00002203 DEBUG(dbgs() << "ASAN done instrumenting: " << FunctionModified << " "
2204 << F << "\n");
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00002205
Etienne Bergeron78582b22016-09-15 15:45:05 +00002206 return FunctionModified;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002207}
2208
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00002209// Workaround for bug 11395: we don't want to instrument stack in functions
2210// with large assembly blobs (32-bit only), otherwise reg alloc may crash.
2211// FIXME: remove once the bug 11395 is fixed.
2212bool AddressSanitizer::LooksLikeCodeInBug11395(Instruction *I) {
2213 if (LongSize != 32) return false;
2214 CallInst *CI = dyn_cast<CallInst>(I);
2215 if (!CI || !CI->isInlineAsm()) return false;
2216 if (CI->getNumArgOperands() <= 5) return false;
2217 // We have inline assembly with quite a few arguments.
2218 return true;
2219}
2220
2221void FunctionStackPoisoner::initializeCallbacks(Module &M) {
2222 IRBuilder<> IRB(*C);
Kostya Serebryany6805de52013-09-10 13:16:56 +00002223 for (int i = 0; i <= kMaxAsanStackMallocSizeClass; i++) {
2224 std::string Suffix = itostr(i);
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00002225 AsanStackMallocFunc[i] = checkSanitizerInterfaceFunction(
2226 M.getOrInsertFunction(kAsanStackMallocNameTemplate + Suffix, IntptrTy,
2227 IntptrTy, nullptr));
2228 AsanStackFreeFunc[i] = checkSanitizerInterfaceFunction(
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002229 M.getOrInsertFunction(kAsanStackFreeNameTemplate + Suffix,
2230 IRB.getVoidTy(), IntptrTy, IntptrTy, nullptr));
Kostya Serebryany6805de52013-09-10 13:16:56 +00002231 }
Vitaly Buka79b75d32016-06-09 23:05:35 +00002232 if (ASan.UseAfterScope) {
2233 AsanPoisonStackMemoryFunc = checkSanitizerInterfaceFunction(
2234 M.getOrInsertFunction(kAsanPoisonStackMemoryName, IRB.getVoidTy(),
2235 IntptrTy, IntptrTy, nullptr));
2236 AsanUnpoisonStackMemoryFunc = checkSanitizerInterfaceFunction(
2237 M.getOrInsertFunction(kAsanUnpoisonStackMemoryName, IRB.getVoidTy(),
2238 IntptrTy, IntptrTy, nullptr));
2239 }
2240
Vitaly Buka8e1906e2016-10-18 18:04:59 +00002241 for (size_t Val : {0x00, 0xf1, 0xf2, 0xf3, 0xf5, 0xf8}) {
2242 std::ostringstream Name;
2243 Name << kAsanSetShadowPrefix;
2244 Name << std::setw(2) << std::setfill('0') << std::hex << Val;
2245 AsanSetShadowFunc[Val] =
2246 checkSanitizerInterfaceFunction(M.getOrInsertFunction(
2247 Name.str(), IRB.getVoidTy(), IntptrTy, IntptrTy, nullptr));
Vitaly Buka3455b9b2016-08-20 18:34:39 +00002248 }
2249
Yury Gribov98b18592015-05-28 07:51:49 +00002250 AsanAllocaPoisonFunc = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
2251 kAsanAllocaPoison, IRB.getVoidTy(), IntptrTy, IntptrTy, nullptr));
2252 AsanAllocasUnpoisonFunc =
2253 checkSanitizerInterfaceFunction(M.getOrInsertFunction(
2254 kAsanAllocasUnpoison, IRB.getVoidTy(), IntptrTy, IntptrTy, nullptr));
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00002255}
2256
Vitaly Buka793913c2016-08-29 18:17:21 +00002257void FunctionStackPoisoner::copyToShadowInline(ArrayRef<uint8_t> ShadowMask,
2258 ArrayRef<uint8_t> ShadowBytes,
2259 size_t Begin, size_t End,
2260 IRBuilder<> &IRB,
2261 Value *ShadowBase) {
Vitaly Buka1f9e1352016-08-20 20:23:50 +00002262 if (Begin >= End)
2263 return;
Vitaly Buka186280d2016-08-20 18:34:36 +00002264
2265 const size_t LargestStoreSizeInBytes =
2266 std::min<size_t>(sizeof(uint64_t), ASan.LongSize / 8);
2267
2268 const bool IsLittleEndian = F.getParent()->getDataLayout().isLittleEndian();
2269
2270 // Poison given range in shadow using larges store size with out leading and
Vitaly Buka793913c2016-08-29 18:17:21 +00002271 // trailing zeros in ShadowMask. Zeros never change, so they need neither
2272 // poisoning nor up-poisoning. Still we don't mind if some of them get into a
2273 // middle of a store.
Vitaly Buka1f9e1352016-08-20 20:23:50 +00002274 for (size_t i = Begin; i < End;) {
Vitaly Buka793913c2016-08-29 18:17:21 +00002275 if (!ShadowMask[i]) {
2276 assert(!ShadowBytes[i]);
Vitaly Buka186280d2016-08-20 18:34:36 +00002277 ++i;
2278 continue;
2279 }
2280
2281 size_t StoreSizeInBytes = LargestStoreSizeInBytes;
2282 // Fit store size into the range.
2283 while (StoreSizeInBytes > End - i)
2284 StoreSizeInBytes /= 2;
2285
2286 // Minimize store size by trimming trailing zeros.
Vitaly Buka793913c2016-08-29 18:17:21 +00002287 for (size_t j = StoreSizeInBytes - 1; j && !ShadowMask[i + j]; --j) {
Vitaly Buka186280d2016-08-20 18:34:36 +00002288 while (j <= StoreSizeInBytes / 2)
2289 StoreSizeInBytes /= 2;
2290 }
2291
2292 uint64_t Val = 0;
Vitaly Buka793913c2016-08-29 18:17:21 +00002293 for (size_t j = 0; j < StoreSizeInBytes; j++) {
2294 if (IsLittleEndian)
2295 Val |= (uint64_t)ShadowBytes[i + j] << (8 * j);
2296 else
2297 Val = (Val << 8) | ShadowBytes[i + j];
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002298 }
Vitaly Buka186280d2016-08-20 18:34:36 +00002299
2300 Value *Ptr = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
2301 Value *Poison = IRB.getIntN(StoreSizeInBytes * 8, Val);
Vitaly Buka0672a272016-08-22 04:16:14 +00002302 IRB.CreateAlignedStore(
2303 Poison, IRB.CreateIntToPtr(Ptr, Poison->getType()->getPointerTo()), 1);
Vitaly Buka186280d2016-08-20 18:34:36 +00002304
2305 i += StoreSizeInBytes;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002306 }
2307}
2308
Vitaly Buka793913c2016-08-29 18:17:21 +00002309void FunctionStackPoisoner::copyToShadow(ArrayRef<uint8_t> ShadowMask,
2310 ArrayRef<uint8_t> ShadowBytes,
2311 IRBuilder<> &IRB, Value *ShadowBase) {
2312 copyToShadow(ShadowMask, ShadowBytes, 0, ShadowMask.size(), IRB, ShadowBase);
2313}
Vitaly Buka1f9e1352016-08-20 20:23:50 +00002314
Vitaly Buka793913c2016-08-29 18:17:21 +00002315void FunctionStackPoisoner::copyToShadow(ArrayRef<uint8_t> ShadowMask,
2316 ArrayRef<uint8_t> ShadowBytes,
2317 size_t Begin, size_t End,
2318 IRBuilder<> &IRB, Value *ShadowBase) {
2319 assert(ShadowMask.size() == ShadowBytes.size());
2320 size_t Done = Begin;
2321 for (size_t i = Begin, j = Begin + 1; i < End; i = j++) {
2322 if (!ShadowMask[i]) {
2323 assert(!ShadowBytes[i]);
Vitaly Buka1f9e1352016-08-20 20:23:50 +00002324 continue;
Vitaly Buka793913c2016-08-29 18:17:21 +00002325 }
2326 uint8_t Val = ShadowBytes[i];
Vitaly Buka1f9e1352016-08-20 20:23:50 +00002327 if (!AsanSetShadowFunc[Val])
2328 continue;
2329
2330 // Skip same values.
Vitaly Buka793913c2016-08-29 18:17:21 +00002331 for (; j < End && ShadowMask[j] && Val == ShadowBytes[j]; ++j) {
Vitaly Buka1f9e1352016-08-20 20:23:50 +00002332 }
2333
2334 if (j - i >= ClMaxInlinePoisoningSize) {
Vitaly Buka793913c2016-08-29 18:17:21 +00002335 copyToShadowInline(ShadowMask, ShadowBytes, Done, i, IRB, ShadowBase);
Vitaly Buka1f9e1352016-08-20 20:23:50 +00002336 IRB.CreateCall(AsanSetShadowFunc[Val],
2337 {IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i)),
2338 ConstantInt::get(IntptrTy, j - i)});
2339 Done = j;
2340 }
2341 }
2342
Vitaly Buka793913c2016-08-29 18:17:21 +00002343 copyToShadowInline(ShadowMask, ShadowBytes, Done, End, IRB, ShadowBase);
Vitaly Buka1f9e1352016-08-20 20:23:50 +00002344}
2345
Kostya Serebryany6805de52013-09-10 13:16:56 +00002346// Fake stack allocator (asan_fake_stack.h) has 11 size classes
2347// for every power of 2 from kMinStackMallocSize to kMaxAsanStackMallocSizeClass
2348static int StackMallocSizeClass(uint64_t LocalStackSize) {
2349 assert(LocalStackSize <= kMaxStackMallocSize);
2350 uint64_t MaxSize = kMinStackMallocSize;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002351 for (int i = 0;; i++, MaxSize *= 2)
2352 if (LocalStackSize <= MaxSize) return i;
Kostya Serebryany6805de52013-09-10 13:16:56 +00002353 llvm_unreachable("impossible LocalStackSize");
2354}
2355
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002356PHINode *FunctionStackPoisoner::createPHI(IRBuilder<> &IRB, Value *Cond,
2357 Value *ValueIfTrue,
2358 Instruction *ThenTerm,
2359 Value *ValueIfFalse) {
2360 PHINode *PHI = IRB.CreatePHI(IntptrTy, 2);
2361 BasicBlock *CondBlock = cast<Instruction>(Cond)->getParent();
2362 PHI->addIncoming(ValueIfFalse, CondBlock);
2363 BasicBlock *ThenBlock = ThenTerm->getParent();
2364 PHI->addIncoming(ValueIfTrue, ThenBlock);
2365 return PHI;
2366}
2367
2368Value *FunctionStackPoisoner::createAllocaForLayout(
2369 IRBuilder<> &IRB, const ASanStackFrameLayout &L, bool Dynamic) {
2370 AllocaInst *Alloca;
2371 if (Dynamic) {
2372 Alloca = IRB.CreateAlloca(IRB.getInt8Ty(),
2373 ConstantInt::get(IRB.getInt64Ty(), L.FrameSize),
2374 "MyAlloca");
2375 } else {
2376 Alloca = IRB.CreateAlloca(ArrayType::get(IRB.getInt8Ty(), L.FrameSize),
2377 nullptr, "MyAlloca");
2378 assert(Alloca->isStaticAlloca());
2379 }
2380 assert((ClRealignStack & (ClRealignStack - 1)) == 0);
2381 size_t FrameAlignment = std::max(L.FrameAlignment, (size_t)ClRealignStack);
2382 Alloca->setAlignment(FrameAlignment);
2383 return IRB.CreatePointerCast(Alloca, IntptrTy);
2384}
2385
Yury Gribov98b18592015-05-28 07:51:49 +00002386void FunctionStackPoisoner::createDynamicAllocasInitStorage() {
2387 BasicBlock &FirstBB = *F.begin();
2388 IRBuilder<> IRB(dyn_cast<Instruction>(FirstBB.begin()));
2389 DynamicAllocaLayout = IRB.CreateAlloca(IntptrTy, nullptr);
2390 IRB.CreateStore(Constant::getNullValue(IntptrTy), DynamicAllocaLayout);
2391 DynamicAllocaLayout->setAlignment(32);
2392}
2393
Vitaly Buka5b4f1212016-08-20 17:22:27 +00002394void FunctionStackPoisoner::processDynamicAllocas() {
2395 if (!ClInstrumentDynamicAllocas || DynamicAllocaVec.empty()) {
2396 assert(DynamicAllocaPoisonCallVec.empty());
2397 return;
2398 }
Yury Gribov55441bb2014-11-21 10:29:50 +00002399
Vitaly Buka5b4f1212016-08-20 17:22:27 +00002400 // Insert poison calls for lifetime intrinsics for dynamic allocas.
2401 for (const auto &APC : DynamicAllocaPoisonCallVec) {
Alexey Samsonov8daaf8b2015-10-22 19:51:59 +00002402 assert(APC.InsBefore);
2403 assert(APC.AI);
Vitaly Bukab451f1b2016-06-09 23:31:59 +00002404 assert(ASan.isInterestingAlloca(*APC.AI));
Vitaly Buka5b4f1212016-08-20 17:22:27 +00002405 assert(!APC.AI->isStaticAlloca());
Vitaly Bukab451f1b2016-06-09 23:31:59 +00002406
Alexey Samsonov8daaf8b2015-10-22 19:51:59 +00002407 IRBuilder<> IRB(APC.InsBefore);
2408 poisonAlloca(APC.AI, APC.Size, IRB, APC.DoPoison);
Vitaly Bukab451f1b2016-06-09 23:31:59 +00002409 // Dynamic allocas will be unpoisoned unconditionally below in
2410 // unpoisonDynamicAllocas.
2411 // Flag that we need unpoison static allocas.
Alexey Samsonov8daaf8b2015-10-22 19:51:59 +00002412 }
2413
Vitaly Buka5b4f1212016-08-20 17:22:27 +00002414 // Handle dynamic allocas.
2415 createDynamicAllocasInitStorage();
2416 for (auto &AI : DynamicAllocaVec)
2417 handleDynamicAllocaCall(AI);
2418 unpoisonDynamicAllocas();
2419}
Yury Gribov98b18592015-05-28 07:51:49 +00002420
Vitaly Buka5b4f1212016-08-20 17:22:27 +00002421void FunctionStackPoisoner::processStaticAllocas() {
2422 if (AllocaVec.empty()) {
2423 assert(StaticAllocaPoisonCallVec.empty());
2424 return;
Kuba Breckaf5875d32015-02-24 09:47:05 +00002425 }
Yury Gribov55441bb2014-11-21 10:29:50 +00002426
Kostya Serebryany6805de52013-09-10 13:16:56 +00002427 int StackMallocIdx = -1;
Alexey Samsonov773e8c32015-06-26 00:00:47 +00002428 DebugLoc EntryDebugLocation;
Pete Cooperadebb932016-03-11 02:14:16 +00002429 if (auto SP = F.getSubprogram())
Alexey Samsonov773e8c32015-06-26 00:00:47 +00002430 EntryDebugLocation = DebugLoc::get(SP->getScopeLine(), 0, SP);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002431
2432 Instruction *InsBefore = AllocaVec[0];
2433 IRBuilder<> IRB(InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00002434 IRB.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002435
Kuba Brecka8ec94ea2015-07-22 10:25:38 +00002436 // Make sure non-instrumented allocas stay in the entry block. Otherwise,
2437 // debug info is broken, because only entry-block allocas are treated as
2438 // regular stack slots.
2439 auto InsBeforeB = InsBefore->getParent();
2440 assert(InsBeforeB == &F.getEntryBlock());
Kuba Breckaa49dcbb2016-11-08 21:30:41 +00002441 for (auto *AI : StaticAllocasToMoveUp)
2442 if (AI->getParent() == InsBeforeB)
2443 AI->moveBefore(InsBefore);
Kuba Brecka37a5ffa2015-07-17 06:29:57 +00002444
Reid Kleckner2f907552015-07-21 17:40:14 +00002445 // If we have a call to llvm.localescape, keep it in the entry block.
2446 if (LocalEscapeCall) LocalEscapeCall->moveBefore(InsBefore);
2447
Kostya Serebryany4fb78012013-12-06 09:00:17 +00002448 SmallVector<ASanStackVariableDescription, 16> SVD;
2449 SVD.reserve(AllocaVec.size());
Alexey Samsonova02e6642014-05-29 18:40:48 +00002450 for (AllocaInst *AI : AllocaVec) {
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002451 ASanStackVariableDescription D = {AI->getName().data(),
Vitaly Buka21a9e572016-07-28 22:50:50 +00002452 ASan.getAllocaSizeInBytes(*AI),
Vitaly Bukad88e5202016-10-18 23:29:41 +00002453 0,
Vitaly Bukaf9fd63a2016-08-20 16:48:24 +00002454 AI->getAlignment(),
2455 AI,
Vitaly Bukad88e5202016-10-18 23:29:41 +00002456 0,
Vitaly Bukaf9fd63a2016-08-20 16:48:24 +00002457 0};
Kostya Serebryany4fb78012013-12-06 09:00:17 +00002458 SVD.push_back(D);
2459 }
Vitaly Buka5910a922016-10-18 23:29:52 +00002460
Kostya Serebryany4fb78012013-12-06 09:00:17 +00002461 // Minimal header size (left redzone) is 4 pointers,
2462 // i.e. 32 bytes on 64-bit platforms and 16 bytes in 32-bit platforms.
2463 size_t MinHeaderSize = ASan.LongSize / 2;
Vitaly Bukadb331d82016-08-29 17:41:29 +00002464 const ASanStackFrameLayout &L =
2465 ComputeASanStackFrameLayout(SVD, 1ULL << Mapping.Scale, MinHeaderSize);
Vitaly Buka793913c2016-08-29 18:17:21 +00002466
Vitaly Buka5910a922016-10-18 23:29:52 +00002467 // Build AllocaToSVDMap for ASanStackVariableDescription lookup.
2468 DenseMap<const AllocaInst *, ASanStackVariableDescription *> AllocaToSVDMap;
2469 for (auto &Desc : SVD)
2470 AllocaToSVDMap[Desc.AI] = &Desc;
2471
2472 // Update SVD with information from lifetime intrinsics.
2473 for (const auto &APC : StaticAllocaPoisonCallVec) {
2474 assert(APC.InsBefore);
2475 assert(APC.AI);
2476 assert(ASan.isInterestingAlloca(*APC.AI));
2477 assert(APC.AI->isStaticAlloca());
2478
2479 ASanStackVariableDescription &Desc = *AllocaToSVDMap[APC.AI];
2480 Desc.LifetimeSize = Desc.Size;
2481 if (const DILocation *FnLoc = EntryDebugLocation.get()) {
2482 if (const DILocation *LifetimeLoc = APC.InsBefore->getDebugLoc().get()) {
2483 if (LifetimeLoc->getFile() == FnLoc->getFile())
2484 if (unsigned Line = LifetimeLoc->getLine())
2485 Desc.Line = std::min(Desc.Line ? Desc.Line : Line, Line);
2486 }
2487 }
2488 }
2489
2490 auto DescriptionString = ComputeASanStackFrameDescription(SVD);
2491 DEBUG(dbgs() << DescriptionString << " --- " << L.FrameSize << "\n");
Kostya Serebryany4fb78012013-12-06 09:00:17 +00002492 uint64_t LocalStackSize = L.FrameSize;
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00002493 bool DoStackMalloc = ClUseAfterReturn && !ASan.CompileKernel &&
2494 LocalStackSize <= kMaxStackMallocSize;
Alexey Samsonov869a5ff2015-07-29 19:36:08 +00002495 bool DoDynamicAlloca = ClDynamicAllocaStack;
2496 // Don't do dynamic alloca or stack malloc if:
2497 // 1) There is inline asm: too often it makes assumptions on which registers
2498 // are available.
2499 // 2) There is a returns_twice call (typically setjmp), which is
2500 // optimization-hostile, and doesn't play well with introduced indirect
2501 // register-relative calculation of local variable addresses.
2502 DoDynamicAlloca &= !HasNonEmptyInlineAsm && !HasReturnsTwiceCall;
2503 DoStackMalloc &= !HasNonEmptyInlineAsm && !HasReturnsTwiceCall;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002504
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002505 Value *StaticAlloca =
2506 DoDynamicAlloca ? nullptr : createAllocaForLayout(IRB, L, false);
2507
2508 Value *FakeStack;
2509 Value *LocalStackBase;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002510
2511 if (DoStackMalloc) {
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002512 // void *FakeStack = __asan_option_detect_stack_use_after_return
2513 // ? __asan_stack_malloc_N(LocalStackSize)
2514 // : nullptr;
2515 // void *LocalStackBase = (FakeStack) ? FakeStack : alloca(LocalStackSize);
Vitaly Buka7b8ed4f2016-06-02 00:06:42 +00002516 Constant *OptionDetectUseAfterReturn = F.getParent()->getOrInsertGlobal(
2517 kAsanOptionDetectUseAfterReturn, IRB.getInt32Ty());
2518 Value *UseAfterReturnIsEnabled =
2519 IRB.CreateICmpNE(IRB.CreateLoad(OptionDetectUseAfterReturn),
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002520 Constant::getNullValue(IRB.getInt32Ty()));
2521 Instruction *Term =
Vitaly Buka7b8ed4f2016-06-02 00:06:42 +00002522 SplitBlockAndInsertIfThen(UseAfterReturnIsEnabled, InsBefore, false);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00002523 IRBuilder<> IRBIf(Term);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00002524 IRBIf.SetCurrentDebugLocation(EntryDebugLocation);
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002525 StackMallocIdx = StackMallocSizeClass(LocalStackSize);
2526 assert(StackMallocIdx <= kMaxAsanStackMallocSizeClass);
2527 Value *FakeStackValue =
2528 IRBIf.CreateCall(AsanStackMallocFunc[StackMallocIdx],
2529 ConstantInt::get(IntptrTy, LocalStackSize));
Kostya Serebryanyf3223822013-09-18 14:07:14 +00002530 IRB.SetInsertPoint(InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00002531 IRB.SetCurrentDebugLocation(EntryDebugLocation);
Vitaly Buka7b8ed4f2016-06-02 00:06:42 +00002532 FakeStack = createPHI(IRB, UseAfterReturnIsEnabled, FakeStackValue, Term,
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002533 ConstantInt::get(IntptrTy, 0));
2534
2535 Value *NoFakeStack =
2536 IRB.CreateICmpEQ(FakeStack, Constant::getNullValue(IntptrTy));
2537 Term = SplitBlockAndInsertIfThen(NoFakeStack, InsBefore, false);
2538 IRBIf.SetInsertPoint(Term);
2539 IRBIf.SetCurrentDebugLocation(EntryDebugLocation);
2540 Value *AllocaValue =
2541 DoDynamicAlloca ? createAllocaForLayout(IRBIf, L, true) : StaticAlloca;
2542 IRB.SetInsertPoint(InsBefore);
2543 IRB.SetCurrentDebugLocation(EntryDebugLocation);
2544 LocalStackBase = createPHI(IRB, NoFakeStack, AllocaValue, Term, FakeStack);
2545 } else {
2546 // void *FakeStack = nullptr;
2547 // void *LocalStackBase = alloca(LocalStackSize);
2548 FakeStack = ConstantInt::get(IntptrTy, 0);
2549 LocalStackBase =
2550 DoDynamicAlloca ? createAllocaForLayout(IRB, L, true) : StaticAlloca;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002551 }
2552
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002553 // Replace Alloca instructions with base+offset.
Alexey Samsonova02e6642014-05-29 18:40:48 +00002554 for (const auto &Desc : SVD) {
2555 AllocaInst *AI = Desc.AI;
Alexey Samsonov261177a2012-12-04 01:34:23 +00002556 Value *NewAllocaPtr = IRB.CreateIntToPtr(
Alexey Samsonova02e6642014-05-29 18:40:48 +00002557 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, Desc.Offset)),
Kostya Serebryany4fb78012013-12-06 09:00:17 +00002558 AI->getType());
Adrian Prantl3e2659e2015-01-30 19:37:48 +00002559 replaceDbgDeclareForAlloca(AI, NewAllocaPtr, DIB, /*Deref=*/true);
Alexey Samsonov261177a2012-12-04 01:34:23 +00002560 AI->replaceAllUsesWith(NewAllocaPtr);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002561 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002562
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00002563 // The left-most redzone has enough space for at least 4 pointers.
2564 // Write the Magic value to redzone[0].
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002565 Value *BasePlus0 = IRB.CreateIntToPtr(LocalStackBase, IntptrPtrTy);
2566 IRB.CreateStore(ConstantInt::get(IntptrTy, kCurrentStackFrameMagic),
2567 BasePlus0);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00002568 // Write the frame description constant to redzone[1].
2569 Value *BasePlus1 = IRB.CreateIntToPtr(
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002570 IRB.CreateAdd(LocalStackBase,
2571 ConstantInt::get(IntptrTy, ASan.LongSize / 8)),
2572 IntptrPtrTy);
Alexey Samsonov9bdb63a2012-11-02 12:20:34 +00002573 GlobalVariable *StackDescriptionGlobal =
Vitaly Buka5910a922016-10-18 23:29:52 +00002574 createPrivateGlobalForString(*F.getParent(), DescriptionString,
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002575 /*AllowMerging*/ true);
2576 Value *Description = IRB.CreatePointerCast(StackDescriptionGlobal, IntptrTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002577 IRB.CreateStore(Description, BasePlus1);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00002578 // Write the PC to redzone[2].
2579 Value *BasePlus2 = IRB.CreateIntToPtr(
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002580 IRB.CreateAdd(LocalStackBase,
2581 ConstantInt::get(IntptrTy, 2 * ASan.LongSize / 8)),
2582 IntptrPtrTy);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00002583 IRB.CreateStore(IRB.CreatePointerCast(&F, IntptrTy), BasePlus2);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002584
Vitaly Buka793913c2016-08-29 18:17:21 +00002585 const auto &ShadowAfterScope = GetShadowBytesAfterScope(SVD, L);
2586
2587 // Poison the stack red zones at the entry.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00002588 Value *ShadowBase = ASan.memToShadow(LocalStackBase, IRB);
Vitaly Buka793913c2016-08-29 18:17:21 +00002589 // As mask we must use most poisoned case: red zones and after scope.
2590 // As bytes we can use either the same or just red zones only.
2591 copyToShadow(ShadowAfterScope, ShadowAfterScope, IRB, ShadowBase);
2592
Vitaly Buka8e1906e2016-10-18 18:04:59 +00002593 if (!StaticAllocaPoisonCallVec.empty()) {
Vitaly Buka793913c2016-08-29 18:17:21 +00002594 const auto &ShadowInScope = GetShadowBytes(SVD, L);
2595
2596 // Poison static allocas near lifetime intrinsics.
2597 for (const auto &APC : StaticAllocaPoisonCallVec) {
Vitaly Buka5910a922016-10-18 23:29:52 +00002598 const ASanStackVariableDescription &Desc = *AllocaToSVDMap[APC.AI];
Vitaly Buka793913c2016-08-29 18:17:21 +00002599 assert(Desc.Offset % L.Granularity == 0);
2600 size_t Begin = Desc.Offset / L.Granularity;
2601 size_t End = Begin + (APC.Size + L.Granularity - 1) / L.Granularity;
2602
2603 IRBuilder<> IRB(APC.InsBefore);
2604 copyToShadow(ShadowAfterScope,
2605 APC.DoPoison ? ShadowAfterScope : ShadowInScope, Begin, End,
2606 IRB, ShadowBase);
2607 }
2608 }
2609
2610 SmallVector<uint8_t, 64> ShadowClean(ShadowAfterScope.size(), 0);
Vitaly Buka793913c2016-08-29 18:17:21 +00002611 SmallVector<uint8_t, 64> ShadowAfterReturn;
Vitaly Buka186280d2016-08-20 18:34:36 +00002612
Kostya Serebryany530e2072013-12-23 14:15:08 +00002613 // (Un)poison the stack before all ret instructions.
Alexey Samsonova02e6642014-05-29 18:40:48 +00002614 for (auto Ret : RetVec) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002615 IRBuilder<> IRBRet(Ret);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002616 // Mark the current frame as retired.
2617 IRBRet.CreateStore(ConstantInt::get(IntptrTy, kRetiredStackFrameMagic),
2618 BasePlus0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002619 if (DoStackMalloc) {
Kostya Serebryany6805de52013-09-10 13:16:56 +00002620 assert(StackMallocIdx >= 0);
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002621 // if FakeStack != 0 // LocalStackBase == FakeStack
Kostya Serebryany530e2072013-12-23 14:15:08 +00002622 // // In use-after-return mode, poison the whole stack frame.
2623 // if StackMallocIdx <= 4
2624 // // For small sizes inline the whole thing:
2625 // memset(ShadowBase, kAsanStackAfterReturnMagic, ShadowSize);
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002626 // **SavedFlagPtr(FakeStack) = 0
Kostya Serebryany530e2072013-12-23 14:15:08 +00002627 // else
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002628 // __asan_stack_free_N(FakeStack, LocalStackSize)
Kostya Serebryany530e2072013-12-23 14:15:08 +00002629 // else
2630 // <This is not a fake stack; unpoison the redzones>
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002631 Value *Cmp =
2632 IRBRet.CreateICmpNE(FakeStack, Constant::getNullValue(IntptrTy));
Kostya Serebryany530e2072013-12-23 14:15:08 +00002633 TerminatorInst *ThenTerm, *ElseTerm;
2634 SplitBlockAndInsertIfThenElse(Cmp, Ret, &ThenTerm, &ElseTerm);
2635
2636 IRBuilder<> IRBPoison(ThenTerm);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00002637 if (StackMallocIdx <= 4) {
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00002638 int ClassSize = kMinStackMallocSize << StackMallocIdx;
Vitaly Buka793913c2016-08-29 18:17:21 +00002639 ShadowAfterReturn.resize(ClassSize / L.Granularity,
2640 kAsanStackUseAfterReturnMagic);
2641 copyToShadow(ShadowAfterReturn, ShadowAfterReturn, IRBPoison,
2642 ShadowBase);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00002643 Value *SavedFlagPtrPtr = IRBPoison.CreateAdd(
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002644 FakeStack,
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00002645 ConstantInt::get(IntptrTy, ClassSize - ASan.LongSize / 8));
2646 Value *SavedFlagPtr = IRBPoison.CreateLoad(
2647 IRBPoison.CreateIntToPtr(SavedFlagPtrPtr, IntptrPtrTy));
2648 IRBPoison.CreateStore(
2649 Constant::getNullValue(IRBPoison.getInt8Ty()),
2650 IRBPoison.CreateIntToPtr(SavedFlagPtr, IRBPoison.getInt8PtrTy()));
2651 } else {
2652 // For larger frames call __asan_stack_free_*.
David Blaikieff6409d2015-05-18 22:13:54 +00002653 IRBPoison.CreateCall(
2654 AsanStackFreeFunc[StackMallocIdx],
2655 {FakeStack, ConstantInt::get(IntptrTy, LocalStackSize)});
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00002656 }
Kostya Serebryany530e2072013-12-23 14:15:08 +00002657
2658 IRBuilder<> IRBElse(ElseTerm);
Vitaly Buka8e1906e2016-10-18 18:04:59 +00002659 copyToShadow(ShadowAfterScope, ShadowClean, IRBElse, ShadowBase);
Kostya Serebryany530e2072013-12-23 14:15:08 +00002660 } else {
Vitaly Buka8e1906e2016-10-18 18:04:59 +00002661 copyToShadow(ShadowAfterScope, ShadowClean, IRBRet, ShadowBase);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002662 }
2663 }
2664
Kostya Serebryany09959942012-10-19 06:20:53 +00002665 // We are done. Remove the old unused alloca instructions.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002666 for (auto AI : AllocaVec) AI->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002667}
Alexey Samsonov261177a2012-12-04 01:34:23 +00002668
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00002669void FunctionStackPoisoner::poisonAlloca(Value *V, uint64_t Size,
Jakub Staszak23ec6a92013-08-09 20:53:48 +00002670 IRBuilder<> &IRB, bool DoPoison) {
Alexey Samsonov261177a2012-12-04 01:34:23 +00002671 // For now just insert the call to ASan runtime.
2672 Value *AddrArg = IRB.CreatePointerCast(V, IntptrTy);
2673 Value *SizeArg = ConstantInt::get(IntptrTy, Size);
Alexander Potapenkof90556e2015-06-12 11:27:06 +00002674 IRB.CreateCall(
2675 DoPoison ? AsanPoisonStackMemoryFunc : AsanUnpoisonStackMemoryFunc,
2676 {AddrArg, SizeArg});
Alexey Samsonov261177a2012-12-04 01:34:23 +00002677}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00002678
2679// Handling llvm.lifetime intrinsics for a given %alloca:
2680// (1) collect all llvm.lifetime.xxx(%size, %value) describing the alloca.
2681// (2) if %size is constant, poison memory for llvm.lifetime.end (to detect
2682// invalid accesses) and unpoison it for llvm.lifetime.start (the memory
2683// could be poisoned by previous llvm.lifetime.end instruction, as the
2684// variable may go in and out of scope several times, e.g. in loops).
2685// (3) if we poisoned at least one %alloca in a function,
2686// unpoison the whole stack frame at function exit.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00002687
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00002688AllocaInst *FunctionStackPoisoner::findAllocaForValue(Value *V) {
2689 if (AllocaInst *AI = dyn_cast<AllocaInst>(V))
Etienne Bergeron9bd42812016-09-14 15:59:32 +00002690 // We're interested only in allocas we can handle.
Anna Zaks8ed1d812015-02-27 03:12:36 +00002691 return ASan.isInterestingAlloca(*AI) ? AI : nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00002692 // See if we've already calculated (or started to calculate) alloca for a
2693 // given value.
2694 AllocaForValueMapTy::iterator I = AllocaForValue.find(V);
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002695 if (I != AllocaForValue.end()) return I->second;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00002696 // Store 0 while we're calculating alloca for value V to avoid
2697 // infinite recursion if the value references itself.
Craig Topperf40110f2014-04-25 05:29:35 +00002698 AllocaForValue[V] = nullptr;
2699 AllocaInst *Res = nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00002700 if (CastInst *CI = dyn_cast<CastInst>(V))
2701 Res = findAllocaForValue(CI->getOperand(0));
2702 else if (PHINode *PN = dyn_cast<PHINode>(V)) {
Pete Cooper833f34d2015-05-12 20:05:31 +00002703 for (Value *IncValue : PN->incoming_values()) {
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00002704 // Allow self-referencing phi-nodes.
2705 if (IncValue == PN) continue;
2706 AllocaInst *IncValueAI = findAllocaForValue(IncValue);
2707 // AI for incoming values should exist and should all be equal.
Craig Topperf40110f2014-04-25 05:29:35 +00002708 if (IncValueAI == nullptr || (Res != nullptr && IncValueAI != Res))
2709 return nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00002710 Res = IncValueAI;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00002711 }
Vitaly Buka53054a72016-07-22 00:56:17 +00002712 } else if (GetElementPtrInst *EP = dyn_cast<GetElementPtrInst>(V)) {
2713 Res = findAllocaForValue(EP->getPointerOperand());
2714 } else {
2715 DEBUG(dbgs() << "Alloca search canceled on unknown instruction: " << *V << "\n");
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00002716 }
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002717 if (Res) AllocaForValue[V] = Res;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00002718 return Res;
2719}
Yury Gribov55441bb2014-11-21 10:29:50 +00002720
Yury Gribov98b18592015-05-28 07:51:49 +00002721void FunctionStackPoisoner::handleDynamicAllocaCall(AllocaInst *AI) {
Yury Gribov55441bb2014-11-21 10:29:50 +00002722 IRBuilder<> IRB(AI);
2723
Yury Gribov55441bb2014-11-21 10:29:50 +00002724 const unsigned Align = std::max(kAllocaRzSize, AI->getAlignment());
2725 const uint64_t AllocaRedzoneMask = kAllocaRzSize - 1;
2726
2727 Value *Zero = Constant::getNullValue(IntptrTy);
2728 Value *AllocaRzSize = ConstantInt::get(IntptrTy, kAllocaRzSize);
2729 Value *AllocaRzMask = ConstantInt::get(IntptrTy, AllocaRedzoneMask);
Yury Gribov55441bb2014-11-21 10:29:50 +00002730
2731 // Since we need to extend alloca with additional memory to locate
2732 // redzones, and OldSize is number of allocated blocks with
2733 // ElementSize size, get allocated memory size in bytes by
2734 // OldSize * ElementSize.
Yury Gribov98b18592015-05-28 07:51:49 +00002735 const unsigned ElementSize =
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002736 F.getParent()->getDataLayout().getTypeAllocSize(AI->getAllocatedType());
Yury Gribov98b18592015-05-28 07:51:49 +00002737 Value *OldSize =
2738 IRB.CreateMul(IRB.CreateIntCast(AI->getArraySize(), IntptrTy, false),
2739 ConstantInt::get(IntptrTy, ElementSize));
Yury Gribov55441bb2014-11-21 10:29:50 +00002740
2741 // PartialSize = OldSize % 32
2742 Value *PartialSize = IRB.CreateAnd(OldSize, AllocaRzMask);
2743
2744 // Misalign = kAllocaRzSize - PartialSize;
2745 Value *Misalign = IRB.CreateSub(AllocaRzSize, PartialSize);
2746
2747 // PartialPadding = Misalign != kAllocaRzSize ? Misalign : 0;
2748 Value *Cond = IRB.CreateICmpNE(Misalign, AllocaRzSize);
2749 Value *PartialPadding = IRB.CreateSelect(Cond, Misalign, Zero);
2750
2751 // AdditionalChunkSize = Align + PartialPadding + kAllocaRzSize
2752 // Align is added to locate left redzone, PartialPadding for possible
2753 // partial redzone and kAllocaRzSize for right redzone respectively.
2754 Value *AdditionalChunkSize = IRB.CreateAdd(
2755 ConstantInt::get(IntptrTy, Align + kAllocaRzSize), PartialPadding);
2756
2757 Value *NewSize = IRB.CreateAdd(OldSize, AdditionalChunkSize);
2758
2759 // Insert new alloca with new NewSize and Align params.
2760 AllocaInst *NewAlloca = IRB.CreateAlloca(IRB.getInt8Ty(), NewSize);
2761 NewAlloca->setAlignment(Align);
2762
2763 // NewAddress = Address + Align
2764 Value *NewAddress = IRB.CreateAdd(IRB.CreatePtrToInt(NewAlloca, IntptrTy),
2765 ConstantInt::get(IntptrTy, Align));
2766
Yury Gribov98b18592015-05-28 07:51:49 +00002767 // Insert __asan_alloca_poison call for new created alloca.
Yury Gribov781bce22015-05-28 08:03:28 +00002768 IRB.CreateCall(AsanAllocaPoisonFunc, {NewAddress, OldSize});
Yury Gribov98b18592015-05-28 07:51:49 +00002769
2770 // Store the last alloca's address to DynamicAllocaLayout. We'll need this
2771 // for unpoisoning stuff.
2772 IRB.CreateStore(IRB.CreatePtrToInt(NewAlloca, IntptrTy), DynamicAllocaLayout);
2773
Yury Gribov55441bb2014-11-21 10:29:50 +00002774 Value *NewAddressPtr = IRB.CreateIntToPtr(NewAddress, AI->getType());
2775
Yury Gribov98b18592015-05-28 07:51:49 +00002776 // Replace all uses of AddessReturnedByAlloca with NewAddressPtr.
Yury Gribov55441bb2014-11-21 10:29:50 +00002777 AI->replaceAllUsesWith(NewAddressPtr);
2778
Yury Gribov98b18592015-05-28 07:51:49 +00002779 // We are done. Erase old alloca from parent.
Yury Gribov55441bb2014-11-21 10:29:50 +00002780 AI->eraseFromParent();
2781}
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002782
2783// isSafeAccess returns true if Addr is always inbounds with respect to its
2784// base object. For example, it is a field access or an array access with
2785// constant inbounds index.
2786bool AddressSanitizer::isSafeAccess(ObjectSizeOffsetVisitor &ObjSizeVis,
2787 Value *Addr, uint64_t TypeSize) const {
2788 SizeOffsetType SizeOffset = ObjSizeVis.compute(Addr);
2789 if (!ObjSizeVis.bothKnown(SizeOffset)) return false;
Dmitry Vyukovee842382015-03-16 08:04:26 +00002790 uint64_t Size = SizeOffset.first.getZExtValue();
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002791 int64_t Offset = SizeOffset.second.getSExtValue();
2792 // Three checks are required to ensure safety:
2793 // . Offset >= 0 (since the offset is given from the base ptr)
2794 // . Size >= Offset (unsigned)
2795 // . Size - Offset >= NeededSize (unsigned)
Dmitry Vyukovee842382015-03-16 08:04:26 +00002796 return Offset >= 0 && Size >= uint64_t(Offset) &&
2797 Size - uint64_t(Offset) >= TypeSize / 8;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002798}