blob: a4a52b7c87958d59b6825006f1b831684927b4fa [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>
Chandler Carruthed0881b2012-12-03 16:50:05 +000057#include <string>
Rafael Espindolaa6e9c3e2014-06-12 17:38:55 +000058#include <system_error>
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000059
60using namespace llvm;
61
Chandler Carruth964daaa2014-04-22 02:55:47 +000062#define DEBUG_TYPE "asan"
63
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000064static const uint64_t kDefaultShadowScale = 3;
65static const uint64_t kDefaultShadowOffset32 = 1ULL << 29;
66static const uint64_t kDefaultShadowOffset64 = 1ULL << 44;
Anna Zaks3b50e702016-02-02 22:05:07 +000067static const uint64_t kIOSShadowOffset32 = 1ULL << 30;
68static const uint64_t kIOSShadowOffset64 = 0x120200000;
69static const uint64_t kIOSSimShadowOffset32 = 1ULL << 30;
70static const uint64_t kIOSSimShadowOffset64 = kDefaultShadowOffset64;
Kostya Serebryanycc92c792014-02-24 13:40:24 +000071static const uint64_t kSmallX86_64ShadowOffset = 0x7FFF8000; // < 2G.
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +000072static const uint64_t kLinuxKasan_ShadowOffset64 = 0xdffffc0000000000;
Kostya Serebryany4766fe62013-01-23 12:54:55 +000073static const uint64_t kPPC64_ShadowOffset64 = 1ULL << 41;
Marcin Koscielnicki57290f92016-04-30 09:57:34 +000074static const uint64_t kSystemZ_ShadowOffset64 = 1ULL << 52;
Kostya Serebryanyc5bd9812014-11-04 19:46:15 +000075static const uint64_t kMIPS32_ShadowOffset32 = 0x0aaa0000;
Kumar Sukhani9559a5c2015-01-31 10:43:18 +000076static const uint64_t kMIPS64_ShadowOffset64 = 1ULL << 37;
Renato Golinaf213722015-02-03 11:20:45 +000077static const uint64_t kAArch64_ShadowOffset64 = 1ULL << 36;
Kostya Serebryany8baa3862014-02-10 07:37:04 +000078static const uint64_t kFreeBSD_ShadowOffset32 = 1ULL << 30;
79static const uint64_t kFreeBSD_ShadowOffset64 = 1ULL << 46;
Timur Iskhodzhanovb4b6b742015-01-22 12:24:21 +000080static const uint64_t kWindowsShadowOffset32 = 3ULL << 28;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000081
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +000082static const size_t kMinStackMallocSize = 1 << 6; // 64B
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +000083static const size_t kMaxStackMallocSize = 1 << 16; // 64K
84static const uintptr_t kCurrentStackFrameMagic = 0x41B58AB3;
85static const uintptr_t kRetiredStackFrameMagic = 0x45E0360E;
86
Craig Topperd3a34f82013-07-16 01:17:10 +000087static const char *const kAsanModuleCtorName = "asan.module_ctor";
88static const char *const kAsanModuleDtorName = "asan.module_dtor";
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +000089static const uint64_t kAsanCtorAndDtorPriority = 1;
Craig Topperd3a34f82013-07-16 01:17:10 +000090static const char *const kAsanReportErrorTemplate = "__asan_report_";
Craig Topperd3a34f82013-07-16 01:17:10 +000091static const char *const kAsanRegisterGlobalsName = "__asan_register_globals";
Alexey Samsonovf52b7172013-08-05 13:19:49 +000092static const char *const kAsanUnregisterGlobalsName =
93 "__asan_unregister_globals";
Ryan Govostes653f9d02016-03-28 20:28:57 +000094static const char *const kAsanRegisterImageGlobalsName =
95 "__asan_register_image_globals";
96static const char *const kAsanUnregisterImageGlobalsName =
97 "__asan_unregister_image_globals";
Craig Topperd3a34f82013-07-16 01:17:10 +000098static const char *const kAsanPoisonGlobalsName = "__asan_before_dynamic_init";
99static const char *const kAsanUnpoisonGlobalsName = "__asan_after_dynamic_init";
Kuba Brecka45dbffd2015-07-23 10:54:06 +0000100static const char *const kAsanInitName = "__asan_init";
101static const char *const kAsanVersionCheckName =
Ryan Govostes653f9d02016-03-28 20:28:57 +0000102 "__asan_version_mismatch_check_v8";
Kostya Serebryany796f6552014-02-27 12:45:36 +0000103static const char *const kAsanPtrCmp = "__sanitizer_ptr_cmp";
104static const char *const kAsanPtrSub = "__sanitizer_ptr_sub";
Craig Topperd3a34f82013-07-16 01:17:10 +0000105static const char *const kAsanHandleNoReturnName = "__asan_handle_no_return";
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000106static const int kMaxAsanStackMallocSizeClass = 10;
Kostya Serebryany6805de52013-09-10 13:16:56 +0000107static const char *const kAsanStackMallocNameTemplate = "__asan_stack_malloc_";
108static const char *const kAsanStackFreeNameTemplate = "__asan_stack_free_";
Craig Topperd3a34f82013-07-16 01:17:10 +0000109static const char *const kAsanGenPrefix = "__asan_gen_";
Maxim Ostapenkob1e3f602016-02-08 08:30:57 +0000110static const char *const kODRGenPrefix = "__odr_asan_gen_";
Kostya Serebryanycb45b122014-11-19 00:22:58 +0000111static const char *const kSanCovGenPrefix = "__sancov_gen_";
Craig Topperd3a34f82013-07-16 01:17:10 +0000112static const char *const kAsanPoisonStackMemoryName =
113 "__asan_poison_stack_memory";
114static const char *const kAsanUnpoisonStackMemoryName =
Alexey Samsonov261177a2012-12-04 01:34:23 +0000115 "__asan_unpoison_stack_memory";
Ryan Govostes653f9d02016-03-28 20:28:57 +0000116static const char *const kAsanGlobalsRegisteredFlagName =
117 "__asan_globals_registered";
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000118
Kostya Serebryanyf3223822013-09-18 14:07:14 +0000119static const char *const kAsanOptionDetectUAR =
120 "__asan_option_detect_stack_use_after_return";
121
Alexander Potapenkof90556e2015-06-12 11:27:06 +0000122static const char *const kAsanAllocaPoison = "__asan_alloca_poison";
123static const char *const kAsanAllocasUnpoison = "__asan_allocas_unpoison";
Yury Gribov98b18592015-05-28 07:51:49 +0000124
Kostya Serebryany874dae62012-07-16 16:15:40 +0000125// Accesses sizes are powers of two: 1, 2, 4, 8, 16.
126static const size_t kNumberOfAccessSizes = 5;
127
Yury Gribov55441bb2014-11-21 10:29:50 +0000128static const unsigned kAllocaRzSize = 32;
Yury Gribov55441bb2014-11-21 10:29:50 +0000129
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000130// Command-line flags.
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +0000131static cl::opt<bool> ClEnableKasan(
132 "asan-kernel", cl::desc("Enable KernelAddressSanitizer instrumentation"),
133 cl::Hidden, cl::init(false));
Yury Gribovd7731982015-11-11 10:36:49 +0000134static cl::opt<bool> ClRecover(
135 "asan-recover",
136 cl::desc("Enable recovery mode (continue-after-error)."),
137 cl::Hidden, cl::init(false));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000138
139// This flag may need to be replaced with -f[no-]asan-reads.
140static cl::opt<bool> ClInstrumentReads("asan-instrument-reads",
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000141 cl::desc("instrument read instructions"),
142 cl::Hidden, cl::init(true));
143static cl::opt<bool> ClInstrumentWrites(
144 "asan-instrument-writes", cl::desc("instrument write instructions"),
145 cl::Hidden, cl::init(true));
146static cl::opt<bool> ClInstrumentAtomics(
147 "asan-instrument-atomics",
148 cl::desc("instrument atomic instructions (rmw, cmpxchg)"), cl::Hidden,
149 cl::init(true));
150static cl::opt<bool> ClAlwaysSlowPath(
151 "asan-always-slow-path",
152 cl::desc("use instrumentation with slow path for all accesses"), cl::Hidden,
153 cl::init(false));
Kostya Serebryany874dae62012-07-16 16:15:40 +0000154// This flag limits the number of instructions to be instrumented
Kostya Serebryanyc387ca72012-06-28 09:34:41 +0000155// in any given BB. Normally, this should be set to unlimited (INT_MAX),
156// but due to http://llvm.org/bugs/show_bug.cgi?id=12652 we temporary
157// set it to 10000.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000158static cl::opt<int> ClMaxInsnsToInstrumentPerBB(
159 "asan-max-ins-per-bb", cl::init(10000),
160 cl::desc("maximal number of instructions to instrument in any given BB"),
161 cl::Hidden);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000162// This flag may need to be replaced with -f[no]asan-stack.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000163static cl::opt<bool> ClStack("asan-stack", cl::desc("Handle stack memory"),
164 cl::Hidden, cl::init(true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000165static cl::opt<bool> ClUseAfterReturn("asan-use-after-return",
Mike Aizatsky243b71f2016-04-21 22:00:13 +0000166 cl::desc("Check stack-use-after-return"),
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000167 cl::Hidden, cl::init(true));
Kostya Serebryanya83bfea2016-04-20 20:02:58 +0000168static cl::opt<bool> ClUseAfterScope("asan-use-after-scope",
169 cl::desc("Check stack-use-after-scope"),
170 cl::Hidden, cl::init(false));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000171// This flag may need to be replaced with -f[no]asan-globals.
172static cl::opt<bool> ClGlobals("asan-globals",
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000173 cl::desc("Handle global objects"), cl::Hidden,
174 cl::init(true));
Kostya Serebryanyf4be0192012-08-21 08:24:25 +0000175static cl::opt<bool> ClInitializers("asan-initialization-order",
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000176 cl::desc("Handle C++ initializer order"),
177 cl::Hidden, cl::init(true));
178static cl::opt<bool> ClInvalidPointerPairs(
179 "asan-detect-invalid-pointer-pair",
180 cl::desc("Instrument <, <=, >, >=, - with pointer operands"), cl::Hidden,
181 cl::init(false));
182static cl::opt<unsigned> ClRealignStack(
183 "asan-realign-stack",
184 cl::desc("Realign stack to the value of this flag (power of two)"),
185 cl::Hidden, cl::init(32));
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000186static cl::opt<int> ClInstrumentationWithCallsThreshold(
187 "asan-instrumentation-with-call-threshold",
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000188 cl::desc(
189 "If the function being instrumented contains more than "
190 "this number of memory accesses, use callbacks instead of "
191 "inline checks (-1 means never use callbacks)."),
192 cl::Hidden, cl::init(7000));
Kostya Serebryany0c02d262014-04-16 12:12:19 +0000193static cl::opt<std::string> ClMemoryAccessCallbackPrefix(
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000194 "asan-memory-access-callback-prefix",
195 cl::desc("Prefix for memory access callbacks"), cl::Hidden,
196 cl::init("__asan_"));
Yury Gribov55441bb2014-11-21 10:29:50 +0000197static cl::opt<bool> ClInstrumentAllocas("asan-instrument-allocas",
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000198 cl::desc("instrument dynamic allocas"),
Alexey Samsonovf4fb5f52015-10-22 20:07:28 +0000199 cl::Hidden, cl::init(true));
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000200static cl::opt<bool> ClSkipPromotableAllocas(
201 "asan-skip-promotable-allocas",
202 cl::desc("Do not instrument promotable allocas"), cl::Hidden,
203 cl::init(true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000204
205// These flags allow to change the shadow mapping.
206// The shadow mapping looks like
Ryan Govostes3f37df02016-05-06 10:25:22 +0000207// Shadow = (Mem >> scale) + offset
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000208static cl::opt<int> ClMappingScale("asan-mapping-scale",
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000209 cl::desc("scale of asan shadow mapping"),
210 cl::Hidden, cl::init(0));
Ryan Govostes6194ae62016-05-06 11:22:11 +0000211static cl::opt<unsigned long long> ClMappingOffset(
212 "asan-mapping-offset",
213 cl::desc("offset of asan shadow mapping [EXPERIMENTAL]"), cl::Hidden,
214 cl::init(0));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000215
216// Optimization flags. Not user visible, used mostly for testing
217// and benchmarking the tool.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000218static cl::opt<bool> ClOpt("asan-opt", cl::desc("Optimize instrumentation"),
219 cl::Hidden, cl::init(true));
220static cl::opt<bool> ClOptSameTemp(
221 "asan-opt-same-temp", cl::desc("Instrument the same temp just once"),
222 cl::Hidden, cl::init(true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000223static cl::opt<bool> ClOptGlobals("asan-opt-globals",
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000224 cl::desc("Don't instrument scalar globals"),
225 cl::Hidden, cl::init(true));
226static cl::opt<bool> ClOptStack(
227 "asan-opt-stack", cl::desc("Don't instrument scalar stack variables"),
228 cl::Hidden, cl::init(false));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000229
Alexey Samsonov4b7f4132014-12-11 21:53:03 +0000230static cl::opt<bool> ClDynamicAllocaStack(
231 "asan-stack-dynamic-alloca",
232 cl::desc("Use dynamic alloca to represent stack variables"), cl::Hidden,
Alexey Samsonov19763c42015-02-05 19:39:20 +0000233 cl::init(true));
Alexey Samsonov4b7f4132014-12-11 21:53:03 +0000234
Dmitry Vyukov618d5802015-03-17 16:59:19 +0000235static cl::opt<uint32_t> ClForceExperiment(
236 "asan-force-experiment",
237 cl::desc("Force optimization experiment (for testing)"), cl::Hidden,
238 cl::init(0));
239
Maxim Ostapenkob1e3f602016-02-08 08:30:57 +0000240static cl::opt<bool>
241 ClUsePrivateAliasForGlobals("asan-use-private-alias",
242 cl::desc("Use private aliases for global"
243 " variables"),
244 cl::Hidden, cl::init(false));
245
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000246// Debug flags.
247static cl::opt<int> ClDebug("asan-debug", cl::desc("debug"), cl::Hidden,
248 cl::init(0));
249static cl::opt<int> ClDebugStack("asan-debug-stack", cl::desc("debug stack"),
250 cl::Hidden, cl::init(0));
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000251static cl::opt<std::string> ClDebugFunc("asan-debug-func", cl::Hidden,
252 cl::desc("Debug func"));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000253static cl::opt<int> ClDebugMin("asan-debug-min", cl::desc("Debug min inst"),
254 cl::Hidden, cl::init(-1));
255static cl::opt<int> ClDebugMax("asan-debug-max", cl::desc("Debug man inst"),
256 cl::Hidden, cl::init(-1));
257
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000258STATISTIC(NumInstrumentedReads, "Number of instrumented reads");
259STATISTIC(NumInstrumentedWrites, "Number of instrumented writes");
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000260STATISTIC(NumOptimizedAccessesToGlobalVar,
261 "Number of optimized accesses to global vars");
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000262STATISTIC(NumOptimizedAccessesToStackVar,
263 "Number of optimized accesses to stack vars");
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000264
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000265namespace {
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +0000266/// Frontend-provided metadata for source location.
267struct LocationMetadata {
268 StringRef Filename;
269 int LineNo;
270 int ColumnNo;
271
272 LocationMetadata() : Filename(), LineNo(0), ColumnNo(0) {}
273
274 bool empty() const { return Filename.empty(); }
275
276 void parse(MDNode *MDN) {
277 assert(MDN->getNumOperands() == 3);
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000278 MDString *DIFilename = cast<MDString>(MDN->getOperand(0));
279 Filename = DIFilename->getString();
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000280 LineNo =
281 mdconst::extract<ConstantInt>(MDN->getOperand(1))->getLimitedValue();
282 ColumnNo =
283 mdconst::extract<ConstantInt>(MDN->getOperand(2))->getLimitedValue();
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +0000284 }
285};
286
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000287/// Frontend-provided metadata for global variables.
288class GlobalsMetadata {
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000289 public:
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000290 struct Entry {
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000291 Entry() : SourceLoc(), Name(), IsDynInit(false), IsBlacklisted(false) {}
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +0000292 LocationMetadata SourceLoc;
293 StringRef Name;
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000294 bool IsDynInit;
295 bool IsBlacklisted;
296 };
297
Alexey Samsonov0c5ecdd2014-07-02 20:25:42 +0000298 GlobalsMetadata() : inited_(false) {}
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000299
Keno Fischere03fae42015-12-05 14:42:34 +0000300 void reset() {
301 inited_ = false;
302 Entries.clear();
303 }
304
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000305 void init(Module &M) {
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000306 assert(!inited_);
307 inited_ = true;
308 NamedMDNode *Globals = M.getNamedMetadata("llvm.asan.globals");
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000309 if (!Globals) return;
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000310 for (auto MDN : Globals->operands()) {
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000311 // Metadata node contains the global and the fields of "Entry".
Alexey Samsonov15c96692014-07-12 00:42:52 +0000312 assert(MDN->getNumOperands() == 5);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000313 auto *GV = mdconst::extract_or_null<GlobalVariable>(MDN->getOperand(0));
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000314 // The optimizer may optimize away a global entirely.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000315 if (!GV) continue;
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000316 // We can already have an entry for GV if it was merged with another
317 // global.
318 Entry &E = Entries[GV];
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000319 if (auto *Loc = cast_or_null<MDNode>(MDN->getOperand(1)))
320 E.SourceLoc.parse(Loc);
321 if (auto *Name = cast_or_null<MDString>(MDN->getOperand(2)))
322 E.Name = Name->getString();
323 ConstantInt *IsDynInit =
324 mdconst::extract<ConstantInt>(MDN->getOperand(3));
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000325 E.IsDynInit |= IsDynInit->isOne();
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000326 ConstantInt *IsBlacklisted =
327 mdconst::extract<ConstantInt>(MDN->getOperand(4));
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000328 E.IsBlacklisted |= IsBlacklisted->isOne();
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000329 }
330 }
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000331
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000332 /// Returns metadata entry for a given global.
333 Entry get(GlobalVariable *G) const {
334 auto Pos = Entries.find(G);
335 return (Pos != Entries.end()) ? Pos->second : Entry();
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000336 }
337
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000338 private:
Alexey Samsonov0c5ecdd2014-07-02 20:25:42 +0000339 bool inited_;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000340 DenseMap<GlobalVariable *, Entry> Entries;
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000341};
342
Alexey Samsonov1345d352013-01-16 13:23:28 +0000343/// This struct defines the shadow mapping using the rule:
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000344/// shadow = (mem >> Scale) ADD-or-OR Offset.
Alexey Samsonov1345d352013-01-16 13:23:28 +0000345struct ShadowMapping {
346 int Scale;
347 uint64_t Offset;
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000348 bool OrShadowOffset;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000349};
350
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +0000351static ShadowMapping getShadowMapping(Triple &TargetTriple, int LongSize,
352 bool IsKasan) {
Evgeniy Stepanov5fe279e2015-10-08 21:21:24 +0000353 bool IsAndroid = TargetTriple.isAndroid();
Anna Zaks3b50e702016-02-02 22:05:07 +0000354 bool IsIOS = TargetTriple.isiOS() || TargetTriple.isWatchOS();
Simon Pilgrima2794102014-11-22 19:12:10 +0000355 bool IsFreeBSD = TargetTriple.isOSFreeBSD();
356 bool IsLinux = TargetTriple.isOSLinux();
Bill Schmidt0a9170d2013-07-26 01:35:43 +0000357 bool IsPPC64 = TargetTriple.getArch() == llvm::Triple::ppc64 ||
358 TargetTriple.getArch() == llvm::Triple::ppc64le;
Marcin Koscielnicki57290f92016-04-30 09:57:34 +0000359 bool IsSystemZ = TargetTriple.getArch() == llvm::Triple::systemz;
Anna Zaks3b50e702016-02-02 22:05:07 +0000360 bool IsX86 = TargetTriple.getArch() == llvm::Triple::x86;
Kostya Serebryanybe733372013-02-12 11:11:02 +0000361 bool IsX86_64 = TargetTriple.getArch() == llvm::Triple::x86_64;
Kostya Serebryany9e62b302013-06-03 14:46:56 +0000362 bool IsMIPS32 = TargetTriple.getArch() == llvm::Triple::mips ||
363 TargetTriple.getArch() == llvm::Triple::mipsel;
Kostya Serebryany231bd082014-11-11 23:02:57 +0000364 bool IsMIPS64 = TargetTriple.getArch() == llvm::Triple::mips64 ||
365 TargetTriple.getArch() == llvm::Triple::mips64el;
Renato Golinaf213722015-02-03 11:20:45 +0000366 bool IsAArch64 = TargetTriple.getArch() == llvm::Triple::aarch64;
Timur Iskhodzhanov00ede842015-01-12 17:38:58 +0000367 bool IsWindows = TargetTriple.isOSWindows();
Alexey Samsonov1345d352013-01-16 13:23:28 +0000368
369 ShadowMapping Mapping;
370
Evgeniy Stepanov4d81f862015-07-29 18:22:25 +0000371 if (LongSize == 32) {
Evgeniy Stepanov9cb08f82015-07-17 23:51:18 +0000372 // Android is always PIE, which means that the beginning of the address
373 // space is always available.
Evgeniy Stepanov4d81f862015-07-29 18:22:25 +0000374 if (IsAndroid)
375 Mapping.Offset = 0;
376 else if (IsMIPS32)
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000377 Mapping.Offset = kMIPS32_ShadowOffset32;
378 else if (IsFreeBSD)
379 Mapping.Offset = kFreeBSD_ShadowOffset32;
Alexander Potapenkoa51e4832014-04-23 17:14:45 +0000380 else if (IsIOS)
Anna Zaks3b50e702016-02-02 22:05:07 +0000381 // If we're targeting iOS and x86, the binary is built for iOS simulator.
382 Mapping.Offset = IsX86 ? kIOSSimShadowOffset32 : kIOSShadowOffset32;
Timur Iskhodzhanov00ede842015-01-12 17:38:58 +0000383 else if (IsWindows)
384 Mapping.Offset = kWindowsShadowOffset32;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000385 else
386 Mapping.Offset = kDefaultShadowOffset32;
387 } else { // LongSize == 64
388 if (IsPPC64)
389 Mapping.Offset = kPPC64_ShadowOffset64;
Marcin Koscielnicki57290f92016-04-30 09:57:34 +0000390 else if (IsSystemZ)
391 Mapping.Offset = kSystemZ_ShadowOffset64;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000392 else if (IsFreeBSD)
393 Mapping.Offset = kFreeBSD_ShadowOffset64;
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +0000394 else if (IsLinux && IsX86_64) {
395 if (IsKasan)
396 Mapping.Offset = kLinuxKasan_ShadowOffset64;
397 else
398 Mapping.Offset = kSmallX86_64ShadowOffset;
399 } else if (IsMIPS64)
Kostya Serebryany231bd082014-11-11 23:02:57 +0000400 Mapping.Offset = kMIPS64_ShadowOffset64;
Anna Zaks3b50e702016-02-02 22:05:07 +0000401 else if (IsIOS)
402 // If we're targeting iOS and x86, the binary is built for iOS simulator.
403 Mapping.Offset = IsX86_64 ? kIOSSimShadowOffset64 : kIOSShadowOffset64;
Renato Golinaf213722015-02-03 11:20:45 +0000404 else if (IsAArch64)
405 Mapping.Offset = kAArch64_ShadowOffset64;
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000406 else
407 Mapping.Offset = kDefaultShadowOffset64;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000408 }
409
410 Mapping.Scale = kDefaultShadowScale;
Ryan Govostes3f37df02016-05-06 10:25:22 +0000411 if (ClMappingScale.getNumOccurrences() > 0) {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000412 Mapping.Scale = ClMappingScale;
413 }
414
Ryan Govostes3f37df02016-05-06 10:25:22 +0000415 if (ClMappingOffset.getNumOccurrences() > 0) {
416 Mapping.Offset = ClMappingOffset;
417 }
418
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000419 // OR-ing shadow offset if more efficient (at least on x86) if the offset
420 // is a power of two, but on ppc64 we have to use add since the shadow
Marcin Koscielnicki57290f92016-04-30 09:57:34 +0000421 // offset is not necessary 1/8-th of the address space. On SystemZ,
422 // we could OR the constant in a single instruction, but it's more
423 // efficient to load it once and use indexed addressing.
424 Mapping.OrShadowOffset = !IsAArch64 && !IsPPC64 && !IsSystemZ
Adhemerval Zanella35891fe2015-11-09 18:03:48 +0000425 && !(Mapping.Offset & (Mapping.Offset - 1));
Kostya Serebryanycc92c792014-02-24 13:40:24 +0000426
Alexey Samsonov1345d352013-01-16 13:23:28 +0000427 return Mapping;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000428}
429
Alexey Samsonov1345d352013-01-16 13:23:28 +0000430static size_t RedzoneSizeForScale(int MappingScale) {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000431 // Redzone used for stack and globals is at least 32 bytes.
432 // For scales 6 and 7, the redzone has to be 64 and 128 bytes respectively.
Alexey Samsonov1345d352013-01-16 13:23:28 +0000433 return std::max(32U, 1U << MappingScale);
Kostya Serebryany20a79972012-11-22 03:18:50 +0000434}
Kostya Serebryanyb3bd6052012-11-20 13:00:01 +0000435
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000436/// AddressSanitizer: instrument the code in module to find memory bugs.
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000437struct AddressSanitizer : public FunctionPass {
Yury Gribovd7731982015-11-11 10:36:49 +0000438 explicit AddressSanitizer(bool CompileKernel = false, bool Recover = false)
439 : FunctionPass(ID), CompileKernel(CompileKernel || ClEnableKasan),
440 Recover(Recover || ClRecover) {
Yury Gribov3ae427d2014-12-01 08:47:58 +0000441 initializeAddressSanitizerPass(*PassRegistry::getPassRegistry());
442 }
Craig Topper3e4c6972014-03-05 09:10:37 +0000443 const char *getPassName() const override {
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000444 return "AddressSanitizerFunctionPass";
445 }
Yury Gribov3ae427d2014-12-01 08:47:58 +0000446 void getAnalysisUsage(AnalysisUsage &AU) const override {
447 AU.addRequired<DominatorTreeWrapperPass>();
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000448 AU.addRequired<TargetLibraryInfoWrapperPass>();
Yury Gribov3ae427d2014-12-01 08:47:58 +0000449 }
Anna Zaks8ed1d812015-02-27 03:12:36 +0000450 uint64_t getAllocaSizeInBytes(AllocaInst *AI) const {
451 Type *Ty = AI->getAllocatedType();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000452 uint64_t SizeInBytes =
453 AI->getModule()->getDataLayout().getTypeAllocSize(Ty);
Anna Zaks8ed1d812015-02-27 03:12:36 +0000454 return SizeInBytes;
455 }
456 /// Check if we want (and can) handle this alloca.
Anna Zaksbf28d3a2015-03-27 18:52:01 +0000457 bool isInterestingAlloca(AllocaInst &AI);
Yury Gribov98b18592015-05-28 07:51:49 +0000458
459 // Check if we have dynamic alloca.
460 bool isDynamicAlloca(AllocaInst &AI) const {
461 return AI.isArrayAllocation() || !AI.isStaticAlloca();
462 }
463
Anna Zaks8ed1d812015-02-27 03:12:36 +0000464 /// If it is an interesting memory access, return the PointerOperand
465 /// and set IsWrite/Alignment. Otherwise return nullptr.
466 Value *isInterestingMemoryAccess(Instruction *I, bool *IsWrite,
Alexander Potapenkof90556e2015-06-12 11:27:06 +0000467 uint64_t *TypeSize, unsigned *Alignment);
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000468 void instrumentMop(ObjectSizeOffsetVisitor &ObjSizeVis, Instruction *I,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000469 bool UseCalls, const DataLayout &DL);
Kostya Serebryany796f6552014-02-27 12:45:36 +0000470 void instrumentPointerComparisonOrSubtraction(Instruction *I);
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000471 void instrumentAddress(Instruction *OrigIns, Instruction *InsertBefore,
472 Value *Addr, uint32_t TypeSize, bool IsWrite,
Dmitry Vyukov618d5802015-03-17 16:59:19 +0000473 Value *SizeArgument, bool UseCalls, uint32_t Exp);
474 void instrumentUnusualSizeOrAlignment(Instruction *I, Value *Addr,
475 uint32_t TypeSize, bool IsWrite,
476 Value *SizeArgument, bool UseCalls,
477 uint32_t Exp);
Kostya Serebryany874dae62012-07-16 16:15:40 +0000478 Value *createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
479 Value *ShadowValue, uint32_t TypeSize);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +0000480 Instruction *generateCrashCode(Instruction *InsertBefore, Value *Addr,
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +0000481 bool IsWrite, size_t AccessSizeIndex,
Dmitry Vyukov618d5802015-03-17 16:59:19 +0000482 Value *SizeArgument, uint32_t Exp);
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000483 void instrumentMemIntrinsic(MemIntrinsic *MI);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000484 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB);
Craig Topper3e4c6972014-03-05 09:10:37 +0000485 bool runOnFunction(Function &F) override;
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +0000486 bool maybeInsertAsanInitAtFunctionEntry(Function &F);
Reid Kleckner2f907552015-07-21 17:40:14 +0000487 void markEscapedLocalAllocas(Function &F);
Craig Topper3e4c6972014-03-05 09:10:37 +0000488 bool doInitialization(Module &M) override;
Keno Fischere03fae42015-12-05 14:42:34 +0000489 bool doFinalization(Module &M) override;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000490 static char ID; // Pass identification, replacement for typeid
491
Yury Gribov3ae427d2014-12-01 08:47:58 +0000492 DominatorTree &getDominatorTree() const { return *DT; }
493
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000494 private:
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000495 void initializeCallbacks(Module &M);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000496
Kostya Serebryany1cdc6e92011-11-18 01:41:06 +0000497 bool LooksLikeCodeInBug11395(Instruction *I);
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000498 bool GlobalIsLinkerInitialized(GlobalVariable *G);
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000499 bool isSafeAccess(ObjectSizeOffsetVisitor &ObjSizeVis, Value *Addr,
500 uint64_t TypeSize) const;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000501
Reid Kleckner2f907552015-07-21 17:40:14 +0000502 /// Helper to cleanup per-function state.
503 struct FunctionStateRAII {
504 AddressSanitizer *Pass;
505 FunctionStateRAII(AddressSanitizer *Pass) : Pass(Pass) {
506 assert(Pass->ProcessedAllocas.empty() &&
507 "last pass forgot to clear cache");
508 }
509 ~FunctionStateRAII() { Pass->ProcessedAllocas.clear(); }
510 };
511
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000512 LLVMContext *C;
Kuba Brecka1001bb52014-12-05 22:19:18 +0000513 Triple TargetTriple;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000514 int LongSize;
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +0000515 bool CompileKernel;
Yury Gribovd7731982015-11-11 10:36:49 +0000516 bool Recover;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000517 Type *IntptrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000518 ShadowMapping Mapping;
Yury Gribov3ae427d2014-12-01 08:47:58 +0000519 DominatorTree *DT;
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +0000520 Function *AsanCtorFunction = nullptr;
521 Function *AsanInitFunction = nullptr;
Kostya Serebryanyb0e25062012-10-15 14:20:06 +0000522 Function *AsanHandleNoReturnFunc;
Kostya Serebryany796f6552014-02-27 12:45:36 +0000523 Function *AsanPtrCmpFunction, *AsanPtrSubFunction;
Dmitry Vyukov618d5802015-03-17 16:59:19 +0000524 // This array is indexed by AccessIsWrite, Experiment and log2(AccessSize).
525 Function *AsanErrorCallback[2][2][kNumberOfAccessSizes];
526 Function *AsanMemoryAccessCallback[2][2][kNumberOfAccessSizes];
527 // This array is indexed by AccessIsWrite and Experiment.
528 Function *AsanErrorCallbackSized[2][2];
529 Function *AsanMemoryAccessCallbackSized[2][2];
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000530 Function *AsanMemmove, *AsanMemcpy, *AsanMemset;
Kostya Serebryanyf02c6062012-07-20 09:54:50 +0000531 InlineAsm *EmptyAsm;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000532 GlobalsMetadata GlobalsMD;
Anna Zaksbf28d3a2015-03-27 18:52:01 +0000533 DenseMap<AllocaInst *, bool> ProcessedAllocas;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000534
535 friend struct FunctionStackPoisoner;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000536};
Kostya Serebryany874dae62012-07-16 16:15:40 +0000537
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000538class AddressSanitizerModule : public ModulePass {
Kostya Serebryany20a79972012-11-22 03:18:50 +0000539 public:
Yury Gribovd7731982015-11-11 10:36:49 +0000540 explicit AddressSanitizerModule(bool CompileKernel = false,
541 bool Recover = false)
542 : ModulePass(ID), CompileKernel(CompileKernel || ClEnableKasan),
543 Recover(Recover || ClRecover) {}
Craig Topper3e4c6972014-03-05 09:10:37 +0000544 bool runOnModule(Module &M) override;
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000545 static char ID; // Pass identification, replacement for typeid
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000546 const char *getPassName() const override { return "AddressSanitizerModule"; }
Alexey Samsonov261177a2012-12-04 01:34:23 +0000547
Kostya Serebryany20a79972012-11-22 03:18:50 +0000548 private:
Alexey Samsonov788381b2012-12-25 12:28:20 +0000549 void initializeCallbacks(Module &M);
550
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +0000551 bool InstrumentGlobals(IRBuilder<> &IRB, Module &M);
Kostya Serebryany20a79972012-11-22 03:18:50 +0000552 bool ShouldInstrumentGlobal(GlobalVariable *G);
Ryan Govostes653f9d02016-03-28 20:28:57 +0000553 bool ShouldUseMachOGlobalsSection() const;
Alexey Samsonov96e239f2014-05-29 00:51:15 +0000554 void poisonOneInitializer(Function &GlobalInit, GlobalValue *ModuleName);
Alexey Samsonove1e26bf2013-03-26 13:05:41 +0000555 void createInitializerPoisonCalls(Module &M, GlobalValue *ModuleName);
Kostya Serebryany4fb78012013-12-06 09:00:17 +0000556 size_t MinRedzoneSizeForGlobal() const {
Alexey Samsonov1345d352013-01-16 13:23:28 +0000557 return RedzoneSizeForScale(Mapping.Scale);
558 }
Kostya Serebryany20a79972012-11-22 03:18:50 +0000559
Alexey Samsonov4f319cc2014-07-02 16:54:41 +0000560 GlobalsMetadata GlobalsMD;
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +0000561 bool CompileKernel;
Yury Gribovd7731982015-11-11 10:36:49 +0000562 bool Recover;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000563 Type *IntptrTy;
564 LLVMContext *C;
Kuba Brecka1001bb52014-12-05 22:19:18 +0000565 Triple TargetTriple;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000566 ShadowMapping Mapping;
Alexey Samsonov788381b2012-12-25 12:28:20 +0000567 Function *AsanPoisonGlobals;
568 Function *AsanUnpoisonGlobals;
569 Function *AsanRegisterGlobals;
570 Function *AsanUnregisterGlobals;
Ryan Govostes653f9d02016-03-28 20:28:57 +0000571 Function *AsanRegisterImageGlobals;
572 Function *AsanUnregisterImageGlobals;
Kostya Serebryany20a79972012-11-22 03:18:50 +0000573};
574
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000575// Stack poisoning does not play well with exception handling.
576// When an exception is thrown, we essentially bypass the code
577// that unpoisones the stack. This is why the run-time library has
578// to intercept __cxa_throw (as well as longjmp, etc) and unpoison the entire
579// stack in the interceptor. This however does not work inside the
580// actual function which catches the exception. Most likely because the
581// compiler hoists the load of the shadow value somewhere too high.
582// This causes asan to report a non-existing bug on 453.povray.
583// It sounds like an LLVM bug.
584struct FunctionStackPoisoner : public InstVisitor<FunctionStackPoisoner> {
585 Function &F;
586 AddressSanitizer &ASan;
587 DIBuilder DIB;
588 LLVMContext *C;
589 Type *IntptrTy;
590 Type *IntptrPtrTy;
Alexey Samsonov1345d352013-01-16 13:23:28 +0000591 ShadowMapping Mapping;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000592
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000593 SmallVector<AllocaInst *, 16> AllocaVec;
Kuba Brecka8ec94ea2015-07-22 10:25:38 +0000594 SmallSetVector<AllocaInst *, 16> NonInstrumentedStaticAllocaVec;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000595 SmallVector<Instruction *, 8> RetVec;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000596 unsigned StackAlignment;
597
Kostya Serebryany6805de52013-09-10 13:16:56 +0000598 Function *AsanStackMallocFunc[kMaxAsanStackMallocSizeClass + 1],
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000599 *AsanStackFreeFunc[kMaxAsanStackMallocSizeClass + 1];
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000600 Function *AsanPoisonStackMemoryFunc, *AsanUnpoisonStackMemoryFunc;
Yury Gribov98b18592015-05-28 07:51:49 +0000601 Function *AsanAllocaPoisonFunc, *AsanAllocasUnpoisonFunc;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000602
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000603 // Stores a place and arguments of poisoning/unpoisoning call for alloca.
604 struct AllocaPoisonCall {
605 IntrinsicInst *InsBefore;
Alexey Samsonova788b942013-11-18 14:53:55 +0000606 AllocaInst *AI;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000607 uint64_t Size;
608 bool DoPoison;
609 };
610 SmallVector<AllocaPoisonCall, 8> AllocaPoisonCallVec;
611
Yury Gribov98b18592015-05-28 07:51:49 +0000612 SmallVector<AllocaInst *, 1> DynamicAllocaVec;
613 SmallVector<IntrinsicInst *, 1> StackRestoreVec;
614 AllocaInst *DynamicAllocaLayout = nullptr;
Reid Kleckner2f907552015-07-21 17:40:14 +0000615 IntrinsicInst *LocalEscapeCall = nullptr;
Yury Gribov55441bb2014-11-21 10:29:50 +0000616
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000617 // Maps Value to an AllocaInst from which the Value is originated.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000618 typedef DenseMap<Value *, AllocaInst *> AllocaForValueMapTy;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000619 AllocaForValueMapTy AllocaForValue;
620
Alexey Samsonov869a5ff2015-07-29 19:36:08 +0000621 bool HasNonEmptyInlineAsm = false;
622 bool HasReturnsTwiceCall = false;
Alexey Samsonov4b7f4132014-12-11 21:53:03 +0000623 std::unique_ptr<CallInst> EmptyInlineAsm;
624
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000625 FunctionStackPoisoner(Function &F, AddressSanitizer &ASan)
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000626 : F(F),
627 ASan(ASan),
628 DIB(*F.getParent(), /*AllowUnresolved*/ false),
629 C(ASan.C),
630 IntptrTy(ASan.IntptrTy),
631 IntptrPtrTy(PointerType::get(IntptrTy, 0)),
632 Mapping(ASan.Mapping),
633 StackAlignment(1 << Mapping.Scale),
Alexey Samsonov4b7f4132014-12-11 21:53:03 +0000634 EmptyInlineAsm(CallInst::Create(ASan.EmptyAsm)) {}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000635
636 bool runOnFunction() {
637 if (!ClStack) return false;
638 // Collect alloca, ret, lifetime instructions etc.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000639 for (BasicBlock *BB : depth_first(&F.getEntryBlock())) visit(*BB);
David Blaikieceec2bd2014-04-11 01:50:01 +0000640
Yury Gribov55441bb2014-11-21 10:29:50 +0000641 if (AllocaVec.empty() && DynamicAllocaVec.empty()) return false;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000642
643 initializeCallbacks(*F.getParent());
644
645 poisonStack();
646
647 if (ClDebugStack) {
648 DEBUG(dbgs() << F);
649 }
650 return true;
651 }
652
Yury Gribov55441bb2014-11-21 10:29:50 +0000653 // Finds all Alloca instructions and puts
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000654 // poisoned red zones around all of them.
655 // Then unpoison everything back before the function returns.
656 void poisonStack();
657
Yury Gribov98b18592015-05-28 07:51:49 +0000658 void createDynamicAllocasInitStorage();
659
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000660 // ----------------------- Visitors.
661 /// \brief Collect all Ret instructions.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000662 void visitReturnInst(ReturnInst &RI) { RetVec.push_back(&RI); }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000663
Yury Gribov98b18592015-05-28 07:51:49 +0000664 void unpoisonDynamicAllocasBeforeInst(Instruction *InstBefore,
665 Value *SavedStack) {
666 IRBuilder<> IRB(InstBefore);
Yury Gribov6ff0a662015-12-04 09:19:14 +0000667 Value *DynamicAreaPtr = IRB.CreatePtrToInt(SavedStack, IntptrTy);
668 // When we insert _asan_allocas_unpoison before @llvm.stackrestore, we
669 // need to adjust extracted SP to compute the address of the most recent
670 // alloca. We have a special @llvm.get.dynamic.area.offset intrinsic for
671 // this purpose.
672 if (!isa<ReturnInst>(InstBefore)) {
673 Function *DynamicAreaOffsetFunc = Intrinsic::getDeclaration(
674 InstBefore->getModule(), Intrinsic::get_dynamic_area_offset,
675 {IntptrTy});
676
677 Value *DynamicAreaOffset = IRB.CreateCall(DynamicAreaOffsetFunc, {});
678
679 DynamicAreaPtr = IRB.CreateAdd(IRB.CreatePtrToInt(SavedStack, IntptrTy),
680 DynamicAreaOffset);
681 }
682
Yury Gribov781bce22015-05-28 08:03:28 +0000683 IRB.CreateCall(AsanAllocasUnpoisonFunc,
Yury Gribov6ff0a662015-12-04 09:19:14 +0000684 {IRB.CreateLoad(DynamicAllocaLayout), DynamicAreaPtr});
Yury Gribov98b18592015-05-28 07:51:49 +0000685 }
686
Yury Gribov55441bb2014-11-21 10:29:50 +0000687 // Unpoison dynamic allocas redzones.
Yury Gribov98b18592015-05-28 07:51:49 +0000688 void unpoisonDynamicAllocas() {
689 for (auto &Ret : RetVec)
690 unpoisonDynamicAllocasBeforeInst(Ret, DynamicAllocaLayout);
Yury Gribov55441bb2014-11-21 10:29:50 +0000691
Yury Gribov98b18592015-05-28 07:51:49 +0000692 for (auto &StackRestoreInst : StackRestoreVec)
693 unpoisonDynamicAllocasBeforeInst(StackRestoreInst,
694 StackRestoreInst->getOperand(0));
Yury Gribov55441bb2014-11-21 10:29:50 +0000695 }
696
Yury Gribov55441bb2014-11-21 10:29:50 +0000697 // Deploy and poison redzones around dynamic alloca call. To do this, we
698 // should replace this call with another one with changed parameters and
699 // replace all its uses with new address, so
700 // addr = alloca type, old_size, align
701 // is replaced by
702 // new_size = (old_size + additional_size) * sizeof(type)
703 // tmp = alloca i8, new_size, max(align, 32)
704 // addr = tmp + 32 (first 32 bytes are for the left redzone).
705 // Additional_size is added to make new memory allocation contain not only
706 // requested memory, but also left, partial and right redzones.
Yury Gribov98b18592015-05-28 07:51:49 +0000707 void handleDynamicAllocaCall(AllocaInst *AI);
Yury Gribov55441bb2014-11-21 10:29:50 +0000708
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000709 /// \brief Collect Alloca instructions we want (and can) handle.
710 void visitAllocaInst(AllocaInst &AI) {
Kuba Brecka37a5ffa2015-07-17 06:29:57 +0000711 if (!ASan.isInterestingAlloca(AI)) {
Kuba Brecka8ec94ea2015-07-22 10:25:38 +0000712 if (AI.isStaticAlloca()) NonInstrumentedStaticAllocaVec.insert(&AI);
Kuba Brecka37a5ffa2015-07-17 06:29:57 +0000713 return;
714 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000715
716 StackAlignment = std::max(StackAlignment, AI.getAlignment());
Yury Gribov98b18592015-05-28 07:51:49 +0000717 if (ASan.isDynamicAlloca(AI))
718 DynamicAllocaVec.push_back(&AI);
Yury Gribov55441bb2014-11-21 10:29:50 +0000719 else
720 AllocaVec.push_back(&AI);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000721 }
722
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000723 /// \brief Collect lifetime intrinsic calls to check for use-after-scope
724 /// errors.
725 void visitIntrinsicInst(IntrinsicInst &II) {
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000726 Intrinsic::ID ID = II.getIntrinsicID();
Yury Gribov98b18592015-05-28 07:51:49 +0000727 if (ID == Intrinsic::stackrestore) StackRestoreVec.push_back(&II);
Reid Kleckner2f907552015-07-21 17:40:14 +0000728 if (ID == Intrinsic::localescape) LocalEscapeCall = &II;
Kostya Serebryanya83bfea2016-04-20 20:02:58 +0000729 if (!ClUseAfterScope) return;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000730 if (ID != Intrinsic::lifetime_start && ID != Intrinsic::lifetime_end)
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000731 return;
732 // Found lifetime intrinsic, add ASan instrumentation if necessary.
733 ConstantInt *Size = dyn_cast<ConstantInt>(II.getArgOperand(0));
734 // If size argument is undefined, don't do anything.
735 if (Size->isMinusOne()) return;
736 // Check that size doesn't saturate uint64_t and can
737 // be stored in IntptrTy.
738 const uint64_t SizeValue = Size->getValue().getLimitedValue();
739 if (SizeValue == ~0ULL ||
740 !ConstantInt::isValueValidForType(IntptrTy, SizeValue))
741 return;
742 // Find alloca instruction that corresponds to llvm.lifetime argument.
743 AllocaInst *AI = findAllocaForValue(II.getArgOperand(1));
744 if (!AI) return;
745 bool DoPoison = (ID == Intrinsic::lifetime_end);
Alexey Samsonova788b942013-11-18 14:53:55 +0000746 AllocaPoisonCall APC = {&II, AI, SizeValue, DoPoison};
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000747 AllocaPoisonCallVec.push_back(APC);
748 }
749
Alexey Samsonov869a5ff2015-07-29 19:36:08 +0000750 void visitCallSite(CallSite CS) {
751 Instruction *I = CS.getInstruction();
752 if (CallInst *CI = dyn_cast<CallInst>(I)) {
753 HasNonEmptyInlineAsm |=
754 CI->isInlineAsm() && !CI->isIdenticalTo(EmptyInlineAsm.get());
755 HasReturnsTwiceCall |= CI->canReturnTwice();
756 }
Alexey Samsonov4b7f4132014-12-11 21:53:03 +0000757 }
758
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000759 // ---------------------- Helpers.
760 void initializeCallbacks(Module &M);
761
Yury Gribov3ae427d2014-12-01 08:47:58 +0000762 bool doesDominateAllExits(const Instruction *I) const {
763 for (auto Ret : RetVec) {
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000764 if (!ASan.getDominatorTree().dominates(I, Ret)) return false;
Yury Gribov3ae427d2014-12-01 08:47:58 +0000765 }
766 return true;
767 }
768
Alexey Samsonov29dd7f22012-12-27 08:50:58 +0000769 /// Finds alloca where the value comes from.
770 AllocaInst *findAllocaForValue(Value *V);
Craig Topper3af97222014-08-27 05:25:00 +0000771 void poisonRedZones(ArrayRef<uint8_t> ShadowBytes, IRBuilder<> &IRB,
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000772 Value *ShadowBase, bool DoPoison);
Jakub Staszak23ec6a92013-08-09 20:53:48 +0000773 void poisonAlloca(Value *V, uint64_t Size, IRBuilder<> &IRB, bool DoPoison);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +0000774
775 void SetShadowToStackAfterReturnInlined(IRBuilder<> &IRB, Value *ShadowBase,
776 int Size);
Alexey Samsonov4b7f4132014-12-11 21:53:03 +0000777 Value *createAllocaForLayout(IRBuilder<> &IRB, const ASanStackFrameLayout &L,
778 bool Dynamic);
779 PHINode *createPHI(IRBuilder<> &IRB, Value *Cond, Value *ValueIfTrue,
780 Instruction *ThenTerm, Value *ValueIfFalse);
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +0000781};
782
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000783} // anonymous namespace
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000784
785char AddressSanitizer::ID = 0;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000786INITIALIZE_PASS_BEGIN(
787 AddressSanitizer, "asan",
788 "AddressSanitizer: detects use-after-free and out-of-bounds bugs.", false,
789 false)
Yury Gribov3ae427d2014-12-01 08:47:58 +0000790INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Keno Fischera010cfa2015-10-20 10:13:55 +0000791INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000792INITIALIZE_PASS_END(
793 AddressSanitizer, "asan",
794 "AddressSanitizer: detects use-after-free and out-of-bounds bugs.", false,
795 false)
Yury Gribovd7731982015-11-11 10:36:49 +0000796FunctionPass *llvm::createAddressSanitizerFunctionPass(bool CompileKernel,
797 bool Recover) {
798 assert(!CompileKernel || Recover);
799 return new AddressSanitizer(CompileKernel, Recover);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000800}
801
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000802char AddressSanitizerModule::ID = 0;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000803INITIALIZE_PASS(
804 AddressSanitizerModule, "asan-module",
Kostya Serebryanydfe9e792012-11-28 10:31:36 +0000805 "AddressSanitizer: detects use-after-free and out-of-bounds bugs."
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000806 "ModulePass",
807 false, false)
Yury Gribovd7731982015-11-11 10:36:49 +0000808ModulePass *llvm::createAddressSanitizerModulePass(bool CompileKernel,
809 bool Recover) {
810 assert(!CompileKernel || Recover);
811 return new AddressSanitizerModule(CompileKernel, Recover);
Alexander Potapenkoc94cf8f2012-01-23 11:22:43 +0000812}
813
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000814static size_t TypeSizeToSizeIndex(uint32_t TypeSize) {
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000815 size_t Res = countTrailingZeros(TypeSize / 8);
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +0000816 assert(Res < kNumberOfAccessSizes);
817 return Res;
818}
819
Bill Wendling58f8cef2013-08-06 22:52:42 +0000820// \brief Create a constant for Str so that we can pass it to the run-time lib.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000821static GlobalVariable *createPrivateGlobalForString(Module &M, StringRef Str,
822 bool AllowMerging) {
Chris Lattnercf9e8f62012-02-05 02:29:43 +0000823 Constant *StrConst = ConstantDataArray::getString(M.getContext(), Str);
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000824 // We use private linkage for module-local strings. If they can be merged
825 // with another one, we set the unnamed_addr attribute.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +0000826 GlobalVariable *GV =
827 new GlobalVariable(M, StrConst->getType(), true,
Rafael Espindoladaeafb42014-02-19 17:23:20 +0000828 GlobalValue::PrivateLinkage, StrConst, kAsanGenPrefix);
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000829 if (AllowMerging) GV->setUnnamedAddr(true);
Kostya Serebryany10cc12f2013-03-18 09:38:39 +0000830 GV->setAlignment(1); // Strings may not be merged w/o setting align 1.
831 return GV;
Kostya Serebryany139a9372012-11-20 14:16:08 +0000832}
833
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +0000834/// \brief Create a global describing a source location.
835static GlobalVariable *createPrivateGlobalForSourceLoc(Module &M,
836 LocationMetadata MD) {
837 Constant *LocData[] = {
838 createPrivateGlobalForString(M, MD.Filename, true),
839 ConstantInt::get(Type::getInt32Ty(M.getContext()), MD.LineNo),
840 ConstantInt::get(Type::getInt32Ty(M.getContext()), MD.ColumnNo),
841 };
842 auto LocStruct = ConstantStruct::getAnon(LocData);
843 auto GV = new GlobalVariable(M, LocStruct->getType(), true,
844 GlobalValue::PrivateLinkage, LocStruct,
845 kAsanGenPrefix);
846 GV->setUnnamedAddr(true);
847 return GV;
848}
849
Kostya Serebryany139a9372012-11-20 14:16:08 +0000850static bool GlobalWasGeneratedByAsan(GlobalVariable *G) {
Kostya Serebryanycb45b122014-11-19 00:22:58 +0000851 return G->getName().find(kAsanGenPrefix) == 0 ||
Maxim Ostapenkob1e3f602016-02-08 08:30:57 +0000852 G->getName().find(kSanCovGenPrefix) == 0 ||
853 G->getName().find(kODRGenPrefix) == 0;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000854}
855
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000856Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) {
857 // Shadow >> scale
Alexey Samsonov1345d352013-01-16 13:23:28 +0000858 Shadow = IRB.CreateLShr(Shadow, Mapping.Scale);
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000859 if (Mapping.Offset == 0) return Shadow;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000860 // (Shadow >> scale) | offset
Kostya Serebryany4766fe62013-01-23 12:54:55 +0000861 if (Mapping.OrShadowOffset)
862 return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
863 else
864 return IRB.CreateAdd(Shadow, ConstantInt::get(IntptrTy, Mapping.Offset));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000865}
866
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000867// Instrument memset/memmove/memcpy
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000868void AddressSanitizer::instrumentMemIntrinsic(MemIntrinsic *MI) {
869 IRBuilder<> IRB(MI);
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000870 if (isa<MemTransferInst>(MI)) {
David Blaikieff6409d2015-05-18 22:13:54 +0000871 IRB.CreateCall(
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000872 isa<MemMoveInst>(MI) ? AsanMemmove : AsanMemcpy,
David Blaikieff6409d2015-05-18 22:13:54 +0000873 {IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()),
874 IRB.CreatePointerCast(MI->getOperand(1), IRB.getInt8PtrTy()),
875 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false)});
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000876 } else if (isa<MemSetInst>(MI)) {
David Blaikieff6409d2015-05-18 22:13:54 +0000877 IRB.CreateCall(
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000878 AsanMemset,
David Blaikieff6409d2015-05-18 22:13:54 +0000879 {IRB.CreatePointerCast(MI->getOperand(0), IRB.getInt8PtrTy()),
880 IRB.CreateIntCast(MI->getOperand(1), IRB.getInt32Ty(), false),
881 IRB.CreateIntCast(MI->getOperand(2), IntptrTy, false)});
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000882 }
Kostya Serebryany94c81ca2014-04-21 11:50:42 +0000883 MI->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000884}
885
Anna Zaks8ed1d812015-02-27 03:12:36 +0000886/// Check if we want (and can) handle this alloca.
Anna Zaksbf28d3a2015-03-27 18:52:01 +0000887bool AddressSanitizer::isInterestingAlloca(AllocaInst &AI) {
888 auto PreviouslySeenAllocaInfo = ProcessedAllocas.find(&AI);
889
890 if (PreviouslySeenAllocaInfo != ProcessedAllocas.end())
891 return PreviouslySeenAllocaInfo->getSecond();
892
Yury Gribov98b18592015-05-28 07:51:49 +0000893 bool IsInteresting =
894 (AI.getAllocatedType()->isSized() &&
895 // alloca() may be called with 0 size, ignore it.
896 getAllocaSizeInBytes(&AI) > 0 &&
897 // We are only interested in allocas not promotable to registers.
898 // Promotable allocas are common under -O0.
Alexey Samsonov55fda1b2015-11-05 21:18:41 +0000899 (!ClSkipPromotableAllocas || !isAllocaPromotable(&AI)) &&
900 // inalloca allocas are not treated as static, and we don't want
901 // dynamic alloca instrumentation for them as well.
902 !AI.isUsedWithInAlloca());
Anna Zaksbf28d3a2015-03-27 18:52:01 +0000903
904 ProcessedAllocas[&AI] = IsInteresting;
905 return IsInteresting;
Anna Zaks8ed1d812015-02-27 03:12:36 +0000906}
907
908/// If I is an interesting memory access, return the PointerOperand
909/// and set IsWrite/Alignment. Otherwise return nullptr.
910Value *AddressSanitizer::isInterestingMemoryAccess(Instruction *I,
911 bool *IsWrite,
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000912 uint64_t *TypeSize,
Anna Zaksbf28d3a2015-03-27 18:52:01 +0000913 unsigned *Alignment) {
Alexey Samsonov535b6f92014-07-17 18:48:12 +0000914 // Skip memory accesses inserted by another instrumentation.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000915 if (I->getMetadata("nosanitize")) return nullptr;
Anna Zaks8ed1d812015-02-27 03:12:36 +0000916
917 Value *PtrOperand = nullptr;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000918 const DataLayout &DL = I->getModule()->getDataLayout();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000919 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000920 if (!ClInstrumentReads) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000921 *IsWrite = false;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000922 *TypeSize = DL.getTypeStoreSizeInBits(LI->getType());
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000923 *Alignment = LI->getAlignment();
Anna Zaks8ed1d812015-02-27 03:12:36 +0000924 PtrOperand = LI->getPointerOperand();
925 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000926 if (!ClInstrumentWrites) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000927 *IsWrite = true;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000928 *TypeSize = DL.getTypeStoreSizeInBits(SI->getValueOperand()->getType());
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000929 *Alignment = SI->getAlignment();
Anna Zaks8ed1d812015-02-27 03:12:36 +0000930 PtrOperand = SI->getPointerOperand();
931 } else if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000932 if (!ClInstrumentAtomics) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000933 *IsWrite = true;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000934 *TypeSize = DL.getTypeStoreSizeInBits(RMW->getValOperand()->getType());
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000935 *Alignment = 0;
Anna Zaks8ed1d812015-02-27 03:12:36 +0000936 PtrOperand = RMW->getPointerOperand();
937 } else if (AtomicCmpXchgInst *XCHG = dyn_cast<AtomicCmpXchgInst>(I)) {
Craig Topperf40110f2014-04-25 05:29:35 +0000938 if (!ClInstrumentAtomics) return nullptr;
Kostya Serebryany90241602012-05-30 09:04:06 +0000939 *IsWrite = true;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000940 *TypeSize = DL.getTypeStoreSizeInBits(XCHG->getCompareOperand()->getType());
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000941 *Alignment = 0;
Anna Zaks8ed1d812015-02-27 03:12:36 +0000942 PtrOperand = XCHG->getPointerOperand();
Kostya Serebryany90241602012-05-30 09:04:06 +0000943 }
Anna Zaks8ed1d812015-02-27 03:12:36 +0000944
945 // Treat memory accesses to promotable allocas as non-interesting since they
946 // will not cause memory violations. This greatly speeds up the instrumented
947 // executable at -O0.
948 if (ClSkipPromotableAllocas)
949 if (auto AI = dyn_cast_or_null<AllocaInst>(PtrOperand))
950 return isInterestingAlloca(*AI) ? AI : nullptr;
951
952 return PtrOperand;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +0000953}
954
Kostya Serebryany796f6552014-02-27 12:45:36 +0000955static bool isPointerOperand(Value *V) {
956 return V->getType()->isPointerTy() || isa<PtrToIntInst>(V);
957}
958
959// This is a rough heuristic; it may cause both false positives and
960// false negatives. The proper implementation requires cooperation with
961// the frontend.
962static bool isInterestingPointerComparisonOrSubtraction(Instruction *I) {
963 if (ICmpInst *Cmp = dyn_cast<ICmpInst>(I)) {
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000964 if (!Cmp->isRelational()) return false;
Kostya Serebryany796f6552014-02-27 12:45:36 +0000965 } else if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) {
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000966 if (BO->getOpcode() != Instruction::Sub) return false;
Kostya Serebryany796f6552014-02-27 12:45:36 +0000967 } else {
968 return false;
969 }
Alexey Samsonov145b0fd2015-10-26 18:06:40 +0000970 return isPointerOperand(I->getOperand(0)) &&
971 isPointerOperand(I->getOperand(1));
Kostya Serebryany796f6552014-02-27 12:45:36 +0000972}
973
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000974bool AddressSanitizer::GlobalIsLinkerInitialized(GlobalVariable *G) {
975 // If a global variable does not have dynamic initialization we don't
976 // have to instrument it. However, if a global does not have initializer
977 // at all, we assume it has dynamic initializer (in other TU).
Alexey Samsonov08f022a2014-07-11 22:36:02 +0000978 return G->hasInitializer() && !GlobalsMD.get(G).IsDynInit;
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +0000979}
980
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000981void AddressSanitizer::instrumentPointerComparisonOrSubtraction(
982 Instruction *I) {
Kostya Serebryany796f6552014-02-27 12:45:36 +0000983 IRBuilder<> IRB(I);
984 Function *F = isa<ICmpInst>(I) ? AsanPtrCmpFunction : AsanPtrSubFunction;
985 Value *Param[2] = {I->getOperand(0), I->getOperand(1)};
986 for (int i = 0; i < 2; i++) {
987 if (Param[i]->getType()->isPointerTy())
988 Param[i] = IRB.CreatePointerCast(Param[i], IntptrTy);
989 }
David Blaikieff6409d2015-05-18 22:13:54 +0000990 IRB.CreateCall(F, Param);
Kostya Serebryany796f6552014-02-27 12:45:36 +0000991}
992
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000993void AddressSanitizer::instrumentMop(ObjectSizeOffsetVisitor &ObjSizeVis,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000994 Instruction *I, bool UseCalls,
995 const DataLayout &DL) {
Axel Naumann4a127062012-09-17 14:20:57 +0000996 bool IsWrite = false;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +0000997 unsigned Alignment = 0;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +0000998 uint64_t TypeSize = 0;
999 Value *Addr = isInterestingMemoryAccess(I, &IsWrite, &TypeSize, &Alignment);
Kostya Serebryany90241602012-05-30 09:04:06 +00001000 assert(Addr);
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001001
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001002 // Optimization experiments.
1003 // The experiments can be used to evaluate potential optimizations that remove
1004 // instrumentation (assess false negatives). Instead of completely removing
1005 // some instrumentation, you set Exp to a non-zero value (mask of optimization
1006 // experiments that want to remove instrumentation of this instruction).
1007 // If Exp is non-zero, this pass will emit special calls into runtime
1008 // (e.g. __asan_report_exp_load1 instead of __asan_report_load1). These calls
1009 // make runtime terminate the program in a special way (with a different
1010 // exit status). Then you run the new compiler on a buggy corpus, collect
1011 // the special terminations (ideally, you don't see them at all -- no false
1012 // negatives) and make the decision on the optimization.
1013 uint32_t Exp = ClForceExperiment;
1014
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001015 if (ClOpt && ClOptGlobals) {
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001016 // If initialization order checking is disabled, a simple access to a
1017 // dynamically initialized global is always valid.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001018 GlobalVariable *G = dyn_cast<GlobalVariable>(GetUnderlyingObject(Addr, DL));
Hans Wennborg083ca9b2015-10-06 23:24:35 +00001019 if (G && (!ClInitializers || GlobalIsLinkerInitialized(G)) &&
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001020 isSafeAccess(ObjSizeVis, Addr, TypeSize)) {
1021 NumOptimizedAccessesToGlobalVar++;
1022 return;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001023 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001024 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001025
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001026 if (ClOpt && ClOptStack) {
1027 // A direct inbounds access to a stack variable is always valid.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001028 if (isa<AllocaInst>(GetUnderlyingObject(Addr, DL)) &&
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001029 isSafeAccess(ObjSizeVis, Addr, TypeSize)) {
1030 NumOptimizedAccessesToStackVar++;
1031 return;
1032 }
1033 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001034
Kostya Serebryanyd3d23be2013-10-16 14:06:14 +00001035 if (IsWrite)
1036 NumInstrumentedWrites++;
1037 else
1038 NumInstrumentedReads++;
1039
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00001040 unsigned Granularity = 1 << Mapping.Scale;
1041 // Instrument a 1-, 2-, 4-, 8-, or 16- byte access with one check
1042 // if the data is properly aligned.
1043 if ((TypeSize == 8 || TypeSize == 16 || TypeSize == 32 || TypeSize == 64 ||
1044 TypeSize == 128) &&
1045 (Alignment >= Granularity || Alignment == 0 || Alignment >= TypeSize / 8))
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001046 return instrumentAddress(I, I, Addr, TypeSize, IsWrite, nullptr, UseCalls,
1047 Exp);
1048 instrumentUnusualSizeOrAlignment(I, Addr, TypeSize, IsWrite, nullptr,
1049 UseCalls, Exp);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001050}
1051
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001052Instruction *AddressSanitizer::generateCrashCode(Instruction *InsertBefore,
1053 Value *Addr, bool IsWrite,
1054 size_t AccessSizeIndex,
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001055 Value *SizeArgument,
1056 uint32_t Exp) {
Kostya Serebryanyfda7a132012-08-14 14:04:51 +00001057 IRBuilder<> IRB(InsertBefore);
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001058 Value *ExpVal = Exp == 0 ? nullptr : ConstantInt::get(IRB.getInt32Ty(), Exp);
1059 CallInst *Call = nullptr;
1060 if (SizeArgument) {
1061 if (Exp == 0)
David Blaikieff6409d2015-05-18 22:13:54 +00001062 Call = IRB.CreateCall(AsanErrorCallbackSized[IsWrite][0],
1063 {Addr, SizeArgument});
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001064 else
David Blaikieff6409d2015-05-18 22:13:54 +00001065 Call = IRB.CreateCall(AsanErrorCallbackSized[IsWrite][1],
1066 {Addr, SizeArgument, ExpVal});
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001067 } else {
1068 if (Exp == 0)
1069 Call =
1070 IRB.CreateCall(AsanErrorCallback[IsWrite][0][AccessSizeIndex], Addr);
1071 else
David Blaikieff6409d2015-05-18 22:13:54 +00001072 Call = IRB.CreateCall(AsanErrorCallback[IsWrite][1][AccessSizeIndex],
1073 {Addr, ExpVal});
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001074 }
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +00001075
Kostya Serebryanyf02c6062012-07-20 09:54:50 +00001076 // We don't do Call->setDoesNotReturn() because the BB already has
1077 // UnreachableInst at the end.
1078 // This EmptyAsm is required to avoid callback merge.
David Blaikieff6409d2015-05-18 22:13:54 +00001079 IRB.CreateCall(EmptyAsm, {});
Kostya Serebryany3411f2e2012-01-06 18:09:21 +00001080 return Call;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001081}
1082
Kostya Serebryanyc4ce5df2012-07-16 17:12:07 +00001083Value *AddressSanitizer::createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001084 Value *ShadowValue,
1085 uint32_t TypeSize) {
Aaron Ballmanef0fe1e2016-03-30 21:30:00 +00001086 size_t Granularity = static_cast<size_t>(1) << Mapping.Scale;
Kostya Serebryany874dae62012-07-16 16:15:40 +00001087 // Addr & (Granularity - 1)
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001088 Value *LastAccessedByte =
1089 IRB.CreateAnd(AddrLong, ConstantInt::get(IntptrTy, Granularity - 1));
Kostya Serebryany874dae62012-07-16 16:15:40 +00001090 // (Addr & (Granularity - 1)) + size - 1
1091 if (TypeSize / 8 > 1)
1092 LastAccessedByte = IRB.CreateAdd(
1093 LastAccessedByte, ConstantInt::get(IntptrTy, TypeSize / 8 - 1));
1094 // (uint8_t) ((Addr & (Granularity-1)) + size - 1)
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001095 LastAccessedByte =
1096 IRB.CreateIntCast(LastAccessedByte, ShadowValue->getType(), false);
Kostya Serebryany874dae62012-07-16 16:15:40 +00001097 // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue
1098 return IRB.CreateICmpSGE(LastAccessedByte, ShadowValue);
1099}
1100
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001101void AddressSanitizer::instrumentAddress(Instruction *OrigIns,
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001102 Instruction *InsertBefore, Value *Addr,
1103 uint32_t TypeSize, bool IsWrite,
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001104 Value *SizeArgument, bool UseCalls,
1105 uint32_t Exp) {
Kostya Serebryany3ece9bea2013-02-19 11:29:21 +00001106 IRBuilder<> IRB(InsertBefore);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001107 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001108 size_t AccessSizeIndex = TypeSizeToSizeIndex(TypeSize);
1109
1110 if (UseCalls) {
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001111 if (Exp == 0)
1112 IRB.CreateCall(AsanMemoryAccessCallback[IsWrite][0][AccessSizeIndex],
1113 AddrLong);
1114 else
David Blaikieff6409d2015-05-18 22:13:54 +00001115 IRB.CreateCall(AsanMemoryAccessCallback[IsWrite][1][AccessSizeIndex],
1116 {AddrLong, ConstantInt::get(IRB.getInt32Ty(), Exp)});
Kostya Serebryany0c02d262014-04-16 12:12:19 +00001117 return;
1118 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001119
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001120 Type *ShadowTy =
1121 IntegerType::get(*C, std::max(8U, TypeSize >> Mapping.Scale));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001122 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0);
1123 Value *ShadowPtr = memToShadow(AddrLong, IRB);
1124 Value *CmpVal = Constant::getNullValue(ShadowTy);
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001125 Value *ShadowValue =
1126 IRB.CreateLoad(IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001127
1128 Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal);
Aaron Ballmanef0fe1e2016-03-30 21:30:00 +00001129 size_t Granularity = 1ULL << Mapping.Scale;
Craig Topperf40110f2014-04-25 05:29:35 +00001130 TerminatorInst *CrashTerm = nullptr;
Kostya Serebryanyfda7a132012-08-14 14:04:51 +00001131
Kostya Serebryany1e575ab2012-08-15 08:58:58 +00001132 if (ClAlwaysSlowPath || (TypeSize < 8 * Granularity)) {
Kostya Serebryanyad238522014-09-02 21:46:51 +00001133 // We use branch weights for the slow path check, to indicate that the slow
1134 // path is rarely taken. This seems to be the case for SPEC benchmarks.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001135 TerminatorInst *CheckTerm = SplitBlockAndInsertIfThen(
1136 Cmp, InsertBefore, false, MDBuilder(*C).createBranchWeights(1, 100000));
Benjamin Kramer619c4e52015-04-10 11:24:51 +00001137 assert(cast<BranchInst>(CheckTerm)->isUnconditional());
Kostya Serebryanyf02c6062012-07-20 09:54:50 +00001138 BasicBlock *NextBB = CheckTerm->getSuccessor(0);
Kostya Serebryany874dae62012-07-16 16:15:40 +00001139 IRB.SetInsertPoint(CheckTerm);
1140 Value *Cmp2 = createSlowPathCmp(IRB, AddrLong, ShadowValue, TypeSize);
Yury Gribovd7731982015-11-11 10:36:49 +00001141 if (Recover) {
1142 CrashTerm = SplitBlockAndInsertIfThen(Cmp2, CheckTerm, false);
1143 } else {
1144 BasicBlock *CrashBlock =
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001145 BasicBlock::Create(*C, "", NextBB->getParent(), NextBB);
Yury Gribovd7731982015-11-11 10:36:49 +00001146 CrashTerm = new UnreachableInst(*C, CrashBlock);
1147 BranchInst *NewTerm = BranchInst::Create(CrashBlock, NextBB, Cmp2);
1148 ReplaceInstWithInst(CheckTerm, NewTerm);
1149 }
Kostya Serebryany874dae62012-07-16 16:15:40 +00001150 } else {
Yury Gribovd7731982015-11-11 10:36:49 +00001151 CrashTerm = SplitBlockAndInsertIfThen(Cmp, InsertBefore, !Recover);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001152 }
Kostya Serebryanyfda7a132012-08-14 14:04:51 +00001153
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001154 Instruction *Crash = generateCrashCode(CrashTerm, AddrLong, IsWrite,
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001155 AccessSizeIndex, SizeArgument, Exp);
Kostya Serebryanyfda7a132012-08-14 14:04:51 +00001156 Crash->setDebugLoc(OrigIns->getDebugLoc());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001157}
1158
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001159// Instrument unusual size or unusual alignment.
1160// We can not do it with a single check, so we do 1-byte check for the first
1161// and the last bytes. We call __asan_report_*_n(addr, real_size) to be able
1162// to report the actual access size.
1163void AddressSanitizer::instrumentUnusualSizeOrAlignment(
1164 Instruction *I, Value *Addr, uint32_t TypeSize, bool IsWrite,
1165 Value *SizeArgument, bool UseCalls, uint32_t Exp) {
1166 IRBuilder<> IRB(I);
1167 Value *Size = ConstantInt::get(IntptrTy, TypeSize / 8);
1168 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
1169 if (UseCalls) {
1170 if (Exp == 0)
David Blaikieff6409d2015-05-18 22:13:54 +00001171 IRB.CreateCall(AsanMemoryAccessCallbackSized[IsWrite][0],
1172 {AddrLong, Size});
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001173 else
David Blaikieff6409d2015-05-18 22:13:54 +00001174 IRB.CreateCall(AsanMemoryAccessCallbackSized[IsWrite][1],
1175 {AddrLong, Size, ConstantInt::get(IRB.getInt32Ty(), Exp)});
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001176 } else {
1177 Value *LastByte = IRB.CreateIntToPtr(
1178 IRB.CreateAdd(AddrLong, ConstantInt::get(IntptrTy, TypeSize / 8 - 1)),
1179 Addr->getType());
1180 instrumentAddress(I, I, Addr, 8, IsWrite, Size, false, Exp);
1181 instrumentAddress(I, I, LastByte, 8, IsWrite, Size, false, Exp);
1182 }
1183}
1184
Alexey Samsonov96e239f2014-05-29 00:51:15 +00001185void AddressSanitizerModule::poisonOneInitializer(Function &GlobalInit,
1186 GlobalValue *ModuleName) {
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001187 // Set up the arguments to our poison/unpoison functions.
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +00001188 IRBuilder<> IRB(&GlobalInit.front(),
1189 GlobalInit.front().getFirstInsertionPt());
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001190
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001191 // Add a call to poison all external globals before the given function starts.
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001192 Value *ModuleNameAddr = ConstantExpr::getPointerCast(ModuleName, IntptrTy);
1193 IRB.CreateCall(AsanPoisonGlobals, ModuleNameAddr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001194
1195 // Add calls to unpoison all globals before each return instruction.
Alexey Samsonov96e239f2014-05-29 00:51:15 +00001196 for (auto &BB : GlobalInit.getBasicBlockList())
1197 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB.getTerminator()))
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001198 CallInst::Create(AsanUnpoisonGlobals, "", RI);
Alexey Samsonov96e239f2014-05-29 00:51:15 +00001199}
1200
1201void AddressSanitizerModule::createInitializerPoisonCalls(
1202 Module &M, GlobalValue *ModuleName) {
1203 GlobalVariable *GV = M.getGlobalVariable("llvm.global_ctors");
1204
1205 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
1206 for (Use &OP : CA->operands()) {
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001207 if (isa<ConstantAggregateZero>(OP)) continue;
Alexey Samsonov96e239f2014-05-29 00:51:15 +00001208 ConstantStruct *CS = cast<ConstantStruct>(OP);
1209
1210 // Must have a function or null ptr.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001211 if (Function *F = dyn_cast<Function>(CS->getOperand(1))) {
Kostya Serebryany34ddf872014-09-24 22:41:55 +00001212 if (F->getName() == kAsanModuleCtorName) continue;
1213 ConstantInt *Priority = dyn_cast<ConstantInt>(CS->getOperand(0));
1214 // Don't instrument CTORs that will run before asan.module_ctor.
1215 if (Priority->getLimitedValue() <= kAsanCtorAndDtorPriority) continue;
1216 poisonOneInitializer(*F, ModuleName);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001217 }
1218 }
1219}
1220
Kostya Serebryanydfe9e792012-11-28 10:31:36 +00001221bool AddressSanitizerModule::ShouldInstrumentGlobal(GlobalVariable *G) {
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001222 Type *Ty = G->getValueType();
Kostya Serebryany20343352012-10-17 13:40:06 +00001223 DEBUG(dbgs() << "GLOBAL: " << *G << "\n");
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001224
Alexey Samsonov08f022a2014-07-11 22:36:02 +00001225 if (GlobalsMD.get(G).IsBlacklisted) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001226 if (!Ty->isSized()) return false;
1227 if (!G->hasInitializer()) return false;
Kostya Serebryany139a9372012-11-20 14:16:08 +00001228 if (GlobalWasGeneratedByAsan(G)) return false; // Our own global.
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001229 // Touch only those globals that will not be defined in other modules.
Timur Iskhodzhanove40fb372014-07-09 08:35:33 +00001230 // Don't handle ODR linkage types and COMDATs since other modules may be built
1231 // without ASan.
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001232 if (G->getLinkage() != GlobalVariable::ExternalLinkage &&
1233 G->getLinkage() != GlobalVariable::PrivateLinkage &&
1234 G->getLinkage() != GlobalVariable::InternalLinkage)
1235 return false;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001236 if (G->hasComdat()) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001237 // Two problems with thread-locals:
1238 // - The address of the main thread's copy can't be computed at link-time.
1239 // - Need to poison all copies, not just the main thread's one.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001240 if (G->isThreadLocal()) return false;
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001241 // For now, just ignore this Global if the alignment is large.
1242 if (G->getAlignment() > MinRedzoneSizeForGlobal()) return false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001243
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001244 if (G->hasSection()) {
Rafael Espindola83658d62016-05-11 18:21:59 +00001245 StringRef Section = G->getSection();
Kuba Brecka086e34b2014-12-05 21:32:46 +00001246
Anna Zaks11904602015-06-09 00:58:08 +00001247 // Globals from llvm.metadata aren't emitted, do not instrument them.
1248 if (Section == "llvm.metadata") return false;
Anna Zaks785c0752015-06-25 23:35:48 +00001249 // Do not instrument globals from special LLVM sections.
Anna Zaks40148f12016-02-24 22:12:18 +00001250 if (Section.find("__llvm") != StringRef::npos || Section.find("__LLVM") != StringRef::npos) return false;
Anna Zaks11904602015-06-09 00:58:08 +00001251
Alexey Samsonovc1603b62015-09-15 23:05:48 +00001252 // Do not instrument function pointers to initialization and termination
1253 // routines: dynamic linker will not properly handle redzones.
1254 if (Section.startswith(".preinit_array") ||
1255 Section.startswith(".init_array") ||
1256 Section.startswith(".fini_array")) {
1257 return false;
1258 }
1259
Anna Zaks11904602015-06-09 00:58:08 +00001260 // Callbacks put into the CRT initializer/terminator sections
1261 // should not be instrumented.
1262 // See https://code.google.com/p/address-sanitizer/issues/detail?id=305
1263 // and http://msdn.microsoft.com/en-US/en-en/library/bb918180(v=vs.120).aspx
1264 if (Section.startswith(".CRT")) {
1265 DEBUG(dbgs() << "Ignoring a global initializer callback: " << *G << "\n");
1266 return false;
1267 }
1268
Kuba Brecka1001bb52014-12-05 22:19:18 +00001269 if (TargetTriple.isOSBinFormatMachO()) {
1270 StringRef ParsedSegment, ParsedSection;
1271 unsigned TAA = 0, StubSize = 0;
1272 bool TAAParsed;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001273 std::string ErrorCode = MCSectionMachO::ParseSectionSpecifier(
1274 Section, ParsedSegment, ParsedSection, TAA, TAAParsed, StubSize);
Davide Italianoc807f482015-11-19 21:50:08 +00001275 assert(ErrorCode.empty() && "Invalid section specifier.");
Kuba Brecka1001bb52014-12-05 22:19:18 +00001276
1277 // Ignore the globals from the __OBJC section. The ObjC runtime assumes
1278 // those conform to /usr/lib/objc/runtime.h, so we can't add redzones to
1279 // them.
1280 if (ParsedSegment == "__OBJC" ||
1281 (ParsedSegment == "__DATA" && ParsedSection.startswith("__objc_"))) {
1282 DEBUG(dbgs() << "Ignoring ObjC runtime global: " << *G << "\n");
1283 return false;
1284 }
1285 // See http://code.google.com/p/address-sanitizer/issues/detail?id=32
1286 // Constant CFString instances are compiled in the following way:
1287 // -- the string buffer is emitted into
1288 // __TEXT,__cstring,cstring_literals
1289 // -- the constant NSConstantString structure referencing that buffer
1290 // is placed into __DATA,__cfstring
1291 // Therefore there's no point in placing redzones into __DATA,__cfstring.
1292 // Moreover, it causes the linker to crash on OS X 10.7
1293 if (ParsedSegment == "__DATA" && ParsedSection == "__cfstring") {
1294 DEBUG(dbgs() << "Ignoring CFString: " << *G << "\n");
1295 return false;
1296 }
1297 // The linker merges the contents of cstring_literals and removes the
1298 // trailing zeroes.
1299 if (ParsedSegment == "__TEXT" && (TAA & MachO::S_CSTRING_LITERALS)) {
1300 DEBUG(dbgs() << "Ignoring a cstring literal: " << *G << "\n");
1301 return false;
1302 }
1303 }
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001304 }
1305
1306 return true;
1307}
1308
Ryan Govostes653f9d02016-03-28 20:28:57 +00001309// On Mach-O platforms, we emit global metadata in a separate section of the
1310// binary in order to allow the linker to properly dead strip. This is only
1311// supported on recent versions of ld64.
1312bool AddressSanitizerModule::ShouldUseMachOGlobalsSection() const {
1313 if (!TargetTriple.isOSBinFormatMachO())
1314 return false;
1315
1316 if (TargetTriple.isMacOSX() && !TargetTriple.isMacOSXVersionLT(10, 11))
1317 return true;
1318 if (TargetTriple.isiOS() /* or tvOS */ && !TargetTriple.isOSVersionLT(9))
Mike Aizatsky243b71f2016-04-21 22:00:13 +00001319 return true;
Ryan Govostes653f9d02016-03-28 20:28:57 +00001320 if (TargetTriple.isWatchOS() && !TargetTriple.isOSVersionLT(2))
1321 return true;
1322
1323 return false;
1324}
1325
Alexey Samsonov788381b2012-12-25 12:28:20 +00001326void AddressSanitizerModule::initializeCallbacks(Module &M) {
1327 IRBuilder<> IRB(*C);
Ryan Govostes653f9d02016-03-28 20:28:57 +00001328
Alexey Samsonov788381b2012-12-25 12:28:20 +00001329 // Declare our poisoning and unpoisoning functions.
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001330 AsanPoisonGlobals = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001331 kAsanPoisonGlobalsName, IRB.getVoidTy(), IntptrTy, nullptr));
Alexey Samsonov788381b2012-12-25 12:28:20 +00001332 AsanPoisonGlobals->setLinkage(Function::ExternalLinkage);
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001333 AsanUnpoisonGlobals = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001334 kAsanUnpoisonGlobalsName, IRB.getVoidTy(), nullptr));
Alexey Samsonov788381b2012-12-25 12:28:20 +00001335 AsanUnpoisonGlobals->setLinkage(Function::ExternalLinkage);
Ryan Govostes653f9d02016-03-28 20:28:57 +00001336
Alexey Samsonov788381b2012-12-25 12:28:20 +00001337 // Declare functions that register/unregister globals.
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001338 AsanRegisterGlobals = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001339 kAsanRegisterGlobalsName, IRB.getVoidTy(), IntptrTy, IntptrTy, nullptr));
Alexey Samsonov788381b2012-12-25 12:28:20 +00001340 AsanRegisterGlobals->setLinkage(Function::ExternalLinkage);
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001341 AsanUnregisterGlobals = checkSanitizerInterfaceFunction(
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001342 M.getOrInsertFunction(kAsanUnregisterGlobalsName, IRB.getVoidTy(),
1343 IntptrTy, IntptrTy, nullptr));
Alexey Samsonov788381b2012-12-25 12:28:20 +00001344 AsanUnregisterGlobals->setLinkage(Function::ExternalLinkage);
Ryan Govostes653f9d02016-03-28 20:28:57 +00001345
1346 // Declare the functions that find globals in a shared object and then invoke
1347 // the (un)register function on them.
1348 AsanRegisterImageGlobals = checkSanitizerInterfaceFunction(
1349 M.getOrInsertFunction(kAsanRegisterImageGlobalsName,
1350 IRB.getVoidTy(), IntptrTy, nullptr));
1351 AsanRegisterImageGlobals->setLinkage(Function::ExternalLinkage);
Mike Aizatsky243b71f2016-04-21 22:00:13 +00001352
Ryan Govostes653f9d02016-03-28 20:28:57 +00001353 AsanUnregisterImageGlobals = checkSanitizerInterfaceFunction(
1354 M.getOrInsertFunction(kAsanUnregisterImageGlobalsName,
1355 IRB.getVoidTy(), IntptrTy, nullptr));
1356 AsanUnregisterImageGlobals->setLinkage(Function::ExternalLinkage);
Alexey Samsonov788381b2012-12-25 12:28:20 +00001357}
1358
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001359// This function replaces all global variables with new variables that have
1360// trailing redzones. It also creates a function that poisons
1361// redzones and inserts this function into llvm.global_ctors.
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001362bool AddressSanitizerModule::InstrumentGlobals(IRBuilder<> &IRB, Module &M) {
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001363 GlobalsMD.init(M);
Kostya Serebryany20a79972012-11-22 03:18:50 +00001364
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001365 SmallVector<GlobalVariable *, 16> GlobalsToChange;
1366
Alexey Samsonova02e6642014-05-29 18:40:48 +00001367 for (auto &G : M.globals()) {
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001368 if (ShouldInstrumentGlobal(&G)) GlobalsToChange.push_back(&G);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001369 }
1370
1371 size_t n = GlobalsToChange.size();
1372 if (n == 0) return false;
1373
1374 // A global is described by a structure
1375 // size_t beg;
1376 // size_t size;
1377 // size_t size_with_redzone;
1378 // const char *name;
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001379 // const char *module_name;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001380 // size_t has_dynamic_init;
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001381 // void *source_location;
Maxim Ostapenkob1e3f602016-02-08 08:30:57 +00001382 // size_t odr_indicator;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001383 // We initialize an array of such structures and pass it to a run-time call.
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001384 StructType *GlobalStructTy =
1385 StructType::get(IntptrTy, IntptrTy, IntptrTy, IntptrTy, IntptrTy,
Maxim Ostapenkob1e3f602016-02-08 08:30:57 +00001386 IntptrTy, IntptrTy, IntptrTy, nullptr);
Rafael Espindola44fee4e2013-10-01 13:32:03 +00001387 SmallVector<Constant *, 16> Initializers(n);
Kostya Serebryany20a79972012-11-22 03:18:50 +00001388
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001389 bool HasDynamicallyInitializedGlobals = false;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001390
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001391 // We shouldn't merge same module names, as this string serves as unique
1392 // module ID in runtime.
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00001393 GlobalVariable *ModuleName = createPrivateGlobalForString(
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001394 M, M.getModuleIdentifier(), /*AllowMerging*/ false);
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001395
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001396 auto &DL = M.getDataLayout();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001397 for (size_t i = 0; i < n; i++) {
Kostya Serebryanye35d59a2013-01-24 10:43:50 +00001398 static const uint64_t kMaxGlobalRedzone = 1 << 18;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001399 GlobalVariable *G = GlobalsToChange[i];
Alexey Samsonov15c96692014-07-12 00:42:52 +00001400
1401 auto MD = GlobalsMD.get(G);
Maxim Ostapenkob1e3f602016-02-08 08:30:57 +00001402 StringRef NameForGlobal = G->getName();
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +00001403 // Create string holding the global name (use global name from metadata
1404 // if it's available, otherwise just write the name of global variable).
1405 GlobalVariable *Name = createPrivateGlobalForString(
Maxim Ostapenkob1e3f602016-02-08 08:30:57 +00001406 M, MD.Name.empty() ? NameForGlobal : MD.Name,
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +00001407 /*AllowMerging*/ true);
Alexey Samsonov15c96692014-07-12 00:42:52 +00001408
Manuel Jacob5f6eaac2016-01-16 20:30:46 +00001409 Type *Ty = G->getValueType();
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001410 uint64_t SizeInBytes = DL.getTypeAllocSize(Ty);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001411 uint64_t MinRZ = MinRedzoneSizeForGlobal();
Kostya Serebryany87191f62013-01-24 10:35:40 +00001412 // MinRZ <= RZ <= kMaxGlobalRedzone
1413 // and trying to make RZ to be ~ 1/4 of SizeInBytes.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001414 uint64_t RZ = std::max(
1415 MinRZ, std::min(kMaxGlobalRedzone, (SizeInBytes / MinRZ / 4) * MinRZ));
Kostya Serebryany87191f62013-01-24 10:35:40 +00001416 uint64_t RightRedzoneSize = RZ;
1417 // Round up to MinRZ
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001418 if (SizeInBytes % MinRZ) RightRedzoneSize += MinRZ - (SizeInBytes % MinRZ);
Kostya Serebryany87191f62013-01-24 10:35:40 +00001419 assert(((RightRedzoneSize + SizeInBytes) % MinRZ) == 0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001420 Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize);
1421
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001422 StructType *NewTy = StructType::get(Ty, RightRedZoneTy, nullptr);
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001423 Constant *NewInitializer =
1424 ConstantStruct::get(NewTy, G->getInitializer(),
1425 Constant::getNullValue(RightRedZoneTy), nullptr);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001426
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001427 // Create a new global variable with enough space for a redzone.
Bill Wendling58f8cef2013-08-06 22:52:42 +00001428 GlobalValue::LinkageTypes Linkage = G->getLinkage();
1429 if (G->isConstant() && Linkage == GlobalValue::PrivateLinkage)
1430 Linkage = GlobalValue::InternalLinkage;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001431 GlobalVariable *NewGlobal =
1432 new GlobalVariable(M, NewTy, G->isConstant(), Linkage, NewInitializer,
1433 "", G, G->getThreadLocalMode());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001434 NewGlobal->copyAttributesFrom(G);
Kostya Serebryany87191f62013-01-24 10:35:40 +00001435 NewGlobal->setAlignment(MinRZ);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001436
1437 Value *Indices2[2];
1438 Indices2[0] = IRB.getInt32(0);
1439 Indices2[1] = IRB.getInt32(0);
1440
1441 G->replaceAllUsesWith(
David Blaikie4a2e73b2015-04-02 18:55:32 +00001442 ConstantExpr::getGetElementPtr(NewTy, NewGlobal, Indices2, true));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001443 NewGlobal->takeName(G);
1444 G->eraseFromParent();
1445
Alexey Samsonovd9ad5ce2014-08-02 00:35:50 +00001446 Constant *SourceLoc;
1447 if (!MD.SourceLoc.empty()) {
1448 auto SourceLocGlobal = createPrivateGlobalForSourceLoc(M, MD.SourceLoc);
1449 SourceLoc = ConstantExpr::getPointerCast(SourceLocGlobal, IntptrTy);
1450 } else {
1451 SourceLoc = ConstantInt::get(IntptrTy, 0);
1452 }
1453
Maxim Ostapenkob1e3f602016-02-08 08:30:57 +00001454 Constant *ODRIndicator = ConstantExpr::getNullValue(IRB.getInt8PtrTy());
1455 GlobalValue *InstrumentedGlobal = NewGlobal;
1456
1457 bool CanUsePrivateAliases = TargetTriple.isOSBinFormatELF();
1458 if (CanUsePrivateAliases && ClUsePrivateAliasForGlobals) {
1459 // Create local alias for NewGlobal to avoid crash on ODR between
1460 // instrumented and non-instrumented libraries.
1461 auto *GA = GlobalAlias::create(GlobalValue::InternalLinkage,
1462 NameForGlobal + M.getName(), NewGlobal);
1463
1464 // With local aliases, we need to provide another externally visible
1465 // symbol __odr_asan_XXX to detect ODR violation.
1466 auto *ODRIndicatorSym =
1467 new GlobalVariable(M, IRB.getInt8Ty(), false, Linkage,
1468 Constant::getNullValue(IRB.getInt8Ty()),
1469 kODRGenPrefix + NameForGlobal, nullptr,
1470 NewGlobal->getThreadLocalMode());
1471
1472 // Set meaningful attributes for indicator symbol.
1473 ODRIndicatorSym->setVisibility(NewGlobal->getVisibility());
1474 ODRIndicatorSym->setDLLStorageClass(NewGlobal->getDLLStorageClass());
1475 ODRIndicatorSym->setAlignment(1);
1476 ODRIndicator = ODRIndicatorSym;
1477 InstrumentedGlobal = GA;
1478 }
1479
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001480 Initializers[i] = ConstantStruct::get(
Maxim Ostapenkob1e3f602016-02-08 08:30:57 +00001481 GlobalStructTy,
1482 ConstantExpr::getPointerCast(InstrumentedGlobal, IntptrTy),
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001483 ConstantInt::get(IntptrTy, SizeInBytes),
1484 ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize),
1485 ConstantExpr::getPointerCast(Name, IntptrTy),
Kostya Serebryanybd016bb2013-03-18 08:05:29 +00001486 ConstantExpr::getPointerCast(ModuleName, IntptrTy),
Maxim Ostapenkob1e3f602016-02-08 08:30:57 +00001487 ConstantInt::get(IntptrTy, MD.IsDynInit), SourceLoc,
1488 ConstantExpr::getPointerCast(ODRIndicator, IntptrTy), nullptr);
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001489
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001490 if (ClInitializers && MD.IsDynInit) HasDynamicallyInitializedGlobals = true;
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001491
Kostya Serebryany20343352012-10-17 13:40:06 +00001492 DEBUG(dbgs() << "NEW GLOBAL: " << *NewGlobal << "\n");
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001493 }
1494
Ryan Govostes653f9d02016-03-28 20:28:57 +00001495
1496 GlobalVariable *AllGlobals = nullptr;
1497 GlobalVariable *RegisteredFlag = nullptr;
1498
1499 // On recent Mach-O platforms, we emit the global metadata in a way that
1500 // allows the linker to properly strip dead globals.
1501 if (ShouldUseMachOGlobalsSection()) {
1502 // RegisteredFlag serves two purposes. First, we can pass it to dladdr()
1503 // to look up the loaded image that contains it. Second, we can store in it
1504 // whether registration has already occurred, to prevent duplicate
1505 // registration.
1506 //
1507 // Common linkage allows us to coalesce needles defined in each object
1508 // file so that there's only one per shared library.
1509 RegisteredFlag = new GlobalVariable(
1510 M, IntptrTy, false, GlobalVariable::CommonLinkage,
1511 ConstantInt::get(IntptrTy, 0), kAsanGlobalsRegisteredFlagName);
1512
1513 // We also emit a structure which binds the liveness of the global
1514 // variable to the metadata struct.
1515 StructType *LivenessTy = StructType::get(IntptrTy, IntptrTy, nullptr);
1516
1517 for (size_t i = 0; i < n; i++) {
1518 GlobalVariable *Metadata = new GlobalVariable(
1519 M, GlobalStructTy, false, GlobalVariable::InternalLinkage,
1520 Initializers[i], "");
1521 Metadata->setSection("__DATA,__asan_globals,regular");
1522 Metadata->setAlignment(1); // don't leave padding in between
1523
1524 auto LivenessBinder = ConstantStruct::get(LivenessTy,
1525 Initializers[i]->getAggregateElement(0u),
1526 ConstantExpr::getPointerCast(Metadata, IntptrTy),
1527 nullptr);
1528 GlobalVariable *Liveness = new GlobalVariable(
1529 M, LivenessTy, false, GlobalVariable::InternalLinkage,
1530 LivenessBinder, "");
1531 Liveness->setSection("__DATA,__asan_liveness,regular,live_support");
1532 }
1533 } else {
1534 // On all other platfoms, we just emit an array of global metadata
1535 // structures.
1536 ArrayType *ArrayOfGlobalStructTy = ArrayType::get(GlobalStructTy, n);
1537 AllGlobals = new GlobalVariable(
1538 M, ArrayOfGlobalStructTy, false, GlobalVariable::InternalLinkage,
1539 ConstantArray::get(ArrayOfGlobalStructTy, Initializers), "");
1540 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001541
Kostya Serebryanyf4be0192012-08-21 08:24:25 +00001542 // Create calls for poisoning before initializers run and unpoisoning after.
Alexey Samsonove595e1a2014-06-13 17:53:44 +00001543 if (HasDynamicallyInitializedGlobals)
Alexey Samsonove1e26bf2013-03-26 13:05:41 +00001544 createInitializerPoisonCalls(M, ModuleName);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001545
Ryan Govostes653f9d02016-03-28 20:28:57 +00001546 // Create a call to register the globals with the runtime.
1547 if (ShouldUseMachOGlobalsSection()) {
1548 IRB.CreateCall(AsanRegisterImageGlobals,
1549 {IRB.CreatePointerCast(RegisteredFlag, IntptrTy)});
1550 } else {
1551 IRB.CreateCall(AsanRegisterGlobals,
1552 {IRB.CreatePointerCast(AllGlobals, IntptrTy),
1553 ConstantInt::get(IntptrTy, n)});
1554 }
1555
1556 // We also need to unregister globals at the end, e.g., when a shared library
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001557 // gets closed.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001558 Function *AsanDtorFunction =
1559 Function::Create(FunctionType::get(Type::getVoidTy(*C), false),
1560 GlobalValue::InternalLinkage, kAsanModuleDtorName, &M);
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001561 BasicBlock *AsanDtorBB = BasicBlock::Create(*C, "", AsanDtorFunction);
1562 IRBuilder<> IRB_Dtor(ReturnInst::Create(*C, AsanDtorBB));
Ryan Govostes653f9d02016-03-28 20:28:57 +00001563
1564 if (ShouldUseMachOGlobalsSection()) {
1565 IRB_Dtor.CreateCall(AsanUnregisterImageGlobals,
1566 {IRB.CreatePointerCast(RegisteredFlag, IntptrTy)});
1567 } else {
1568 IRB_Dtor.CreateCall(AsanUnregisterGlobals,
1569 {IRB.CreatePointerCast(AllGlobals, IntptrTy),
1570 ConstantInt::get(IntptrTy, n)});
1571 }
1572
Alexey Samsonov1f647502014-05-29 01:10:14 +00001573 appendToGlobalDtors(M, AsanDtorFunction, kAsanCtorAndDtorPriority);
Kostya Serebryanycd1aba82011-12-15 21:59:03 +00001574
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001575 DEBUG(dbgs() << M);
1576 return true;
1577}
1578
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001579bool AddressSanitizerModule::runOnModule(Module &M) {
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001580 C = &(M.getContext());
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001581 int LongSize = M.getDataLayout().getPointerSizeInBits();
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001582 IntptrTy = Type::getIntNTy(*C, LongSize);
Kuba Brecka1001bb52014-12-05 22:19:18 +00001583 TargetTriple = Triple(M.getTargetTriple());
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001584 Mapping = getShadowMapping(TargetTriple, LongSize, CompileKernel);
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001585 initializeCallbacks(M);
1586
1587 bool Changed = false;
1588
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001589 // TODO(glider): temporarily disabled globals instrumentation for KASan.
1590 if (ClGlobals && !CompileKernel) {
1591 Function *CtorFunc = M.getFunction(kAsanModuleCtorName);
1592 assert(CtorFunc);
1593 IRBuilder<> IRB(CtorFunc->getEntryBlock().getTerminator());
1594 Changed |= InstrumentGlobals(IRB, M);
1595 }
Evgeniy Stepanov19f75fc2014-06-03 14:16:00 +00001596
1597 return Changed;
1598}
1599
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001600void AddressSanitizer::initializeCallbacks(Module &M) {
1601 IRBuilder<> IRB(*C);
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001602 // Create __asan_report* callbacks.
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001603 // IsWrite, TypeSize and Exp are encoded in the function name.
1604 for (int Exp = 0; Exp < 2; Exp++) {
1605 for (size_t AccessIsWrite = 0; AccessIsWrite <= 1; AccessIsWrite++) {
1606 const std::string TypeStr = AccessIsWrite ? "store" : "load";
1607 const std::string ExpStr = Exp ? "exp_" : "";
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001608 const std::string SuffixStr = CompileKernel ? "N" : "_n";
Yury Gribovd7731982015-11-11 10:36:49 +00001609 const std::string EndingStr = Recover ? "_noabort" : "";
Craig Toppere3dcce92015-08-01 22:20:21 +00001610 Type *ExpType = Exp ? Type::getInt32Ty(*C) : nullptr;
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001611 AsanErrorCallbackSized[AccessIsWrite][Exp] =
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001612 checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Yury Gribovd7731982015-11-11 10:36:49 +00001613 kAsanReportErrorTemplate + ExpStr + TypeStr + SuffixStr + EndingStr,
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001614 IRB.getVoidTy(), IntptrTy, IntptrTy, ExpType, nullptr));
1615 AsanMemoryAccessCallbackSized[AccessIsWrite][Exp] =
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001616 checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001617 ClMemoryAccessCallbackPrefix + ExpStr + TypeStr + "N" + EndingStr,
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001618 IRB.getVoidTy(), IntptrTy, IntptrTy, ExpType, nullptr));
1619 for (size_t AccessSizeIndex = 0; AccessSizeIndex < kNumberOfAccessSizes;
1620 AccessSizeIndex++) {
Aaron Ballmanef0fe1e2016-03-30 21:30:00 +00001621 const std::string Suffix = TypeStr + itostr(1ULL << AccessSizeIndex);
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001622 AsanErrorCallback[AccessIsWrite][Exp][AccessSizeIndex] =
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001623 checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Yury Gribovd7731982015-11-11 10:36:49 +00001624 kAsanReportErrorTemplate + ExpStr + Suffix + EndingStr,
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001625 IRB.getVoidTy(), IntptrTy, ExpType, nullptr));
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001626 AsanMemoryAccessCallback[AccessIsWrite][Exp][AccessSizeIndex] =
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001627 checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001628 ClMemoryAccessCallbackPrefix + ExpStr + Suffix + EndingStr,
1629 IRB.getVoidTy(), IntptrTy, ExpType, nullptr));
Dmitry Vyukov618d5802015-03-17 16:59:19 +00001630 }
Kostya Serebryany4273bb02012-07-16 14:09:42 +00001631 }
1632 }
Kostya Serebryany86332c02014-04-21 07:10:43 +00001633
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001634 const std::string MemIntrinCallbackPrefix =
1635 CompileKernel ? std::string("") : ClMemoryAccessCallbackPrefix;
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001636 AsanMemmove = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001637 MemIntrinCallbackPrefix + "memmove", IRB.getInt8PtrTy(),
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001638 IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IntptrTy, nullptr));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001639 AsanMemcpy = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001640 MemIntrinCallbackPrefix + "memcpy", IRB.getInt8PtrTy(),
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001641 IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IntptrTy, nullptr));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001642 AsanMemset = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001643 MemIntrinCallbackPrefix + "memset", IRB.getInt8PtrTy(),
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001644 IRB.getInt8PtrTy(), IRB.getInt32Ty(), IntptrTy, nullptr));
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00001645
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001646 AsanHandleNoReturnFunc = checkSanitizerInterfaceFunction(
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001647 M.getOrInsertFunction(kAsanHandleNoReturnName, IRB.getVoidTy(), nullptr));
Kostya Serebryany4f8f0c52014-10-27 18:13:56 +00001648
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001649 AsanPtrCmpFunction = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001650 kAsanPtrCmp, IRB.getVoidTy(), IntptrTy, IntptrTy, nullptr));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001651 AsanPtrSubFunction = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Reid Kleckner971c3ea2014-11-13 22:55:19 +00001652 kAsanPtrSub, IRB.getVoidTy(), IntptrTy, IntptrTy, nullptr));
Kostya Serebryanyf02c6062012-07-20 09:54:50 +00001653 // We insert an empty inline asm after __asan_report* to avoid callback merge.
1654 EmptyAsm = InlineAsm::get(FunctionType::get(IRB.getVoidTy(), false),
1655 StringRef(""), StringRef(""),
1656 /*hasSideEffects=*/true);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001657}
1658
1659// virtual
1660bool AddressSanitizer::doInitialization(Module &M) {
1661 // Initialize the private fields. No one has accessed them before.
Rafael Espindola93512512014-02-25 17:30:31 +00001662
Alexey Samsonov4f319cc2014-07-02 16:54:41 +00001663 GlobalsMD.init(M);
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001664
1665 C = &(M.getContext());
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001666 LongSize = M.getDataLayout().getPointerSizeInBits();
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001667 IntptrTy = Type::getIntNTy(*C, LongSize);
Kuba Brecka1001bb52014-12-05 22:19:18 +00001668 TargetTriple = Triple(M.getTargetTriple());
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001669
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001670 if (!CompileKernel) {
1671 std::tie(AsanCtorFunction, AsanInitFunction) =
Kuba Brecka45dbffd2015-07-23 10:54:06 +00001672 createSanitizerCtorAndInitFunctions(
1673 M, kAsanModuleCtorName, kAsanInitName,
1674 /*InitArgTypes=*/{}, /*InitArgs=*/{}, kAsanVersionCheckName);
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001675 appendToGlobalCtors(M, AsanCtorFunction, kAsanCtorAndDtorPriority);
1676 }
1677 Mapping = getShadowMapping(TargetTriple, LongSize, CompileKernel);
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001678 return true;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001679}
1680
Keno Fischere03fae42015-12-05 14:42:34 +00001681bool AddressSanitizer::doFinalization(Module &M) {
1682 GlobalsMD.reset();
1683 return false;
1684}
1685
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001686bool AddressSanitizer::maybeInsertAsanInitAtFunctionEntry(Function &F) {
1687 // For each NSObject descendant having a +load method, this method is invoked
1688 // by the ObjC runtime before any of the static constructors is called.
1689 // Therefore we need to instrument such methods with a call to __asan_init
1690 // at the beginning in order to initialize our runtime before any access to
1691 // the shadow memory.
1692 // We cannot just ignore these methods, because they may call other
1693 // instrumented functions.
1694 if (F.getName().find(" load]") != std::string::npos) {
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +00001695 IRBuilder<> IRB(&F.front(), F.front().begin());
David Blaikieff6409d2015-05-18 22:13:54 +00001696 IRB.CreateCall(AsanInitFunction, {});
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001697 return true;
1698 }
1699 return false;
1700}
1701
Reid Kleckner2f907552015-07-21 17:40:14 +00001702void AddressSanitizer::markEscapedLocalAllocas(Function &F) {
1703 // Find the one possible call to llvm.localescape and pre-mark allocas passed
1704 // to it as uninteresting. This assumes we haven't started processing allocas
1705 // yet. This check is done up front because iterating the use list in
1706 // isInterestingAlloca would be algorithmically slower.
1707 assert(ProcessedAllocas.empty() && "must process localescape before allocas");
1708
1709 // Try to get the declaration of llvm.localescape. If it's not in the module,
1710 // we can exit early.
1711 if (!F.getParent()->getFunction("llvm.localescape")) return;
1712
1713 // Look for a call to llvm.localescape call in the entry block. It can't be in
1714 // any other block.
1715 for (Instruction &I : F.getEntryBlock()) {
1716 IntrinsicInst *II = dyn_cast<IntrinsicInst>(&I);
1717 if (II && II->getIntrinsicID() == Intrinsic::localescape) {
1718 // We found a call. Mark all the allocas passed in as uninteresting.
1719 for (Value *Arg : II->arg_operands()) {
1720 AllocaInst *AI = dyn_cast<AllocaInst>(Arg->stripPointerCasts());
1721 assert(AI && AI->isStaticAlloca() &&
1722 "non-static alloca arg to localescape");
1723 ProcessedAllocas[AI] = false;
1724 }
1725 break;
1726 }
1727 }
1728}
1729
Kostya Serebryanyb0e25062012-10-15 14:20:06 +00001730bool AddressSanitizer::runOnFunction(Function &F) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001731 if (&F == AsanCtorFunction) return false;
Kostya Serebryany6b5b58d2013-03-18 07:33:49 +00001732 if (F.getLinkage() == GlobalValue::AvailableExternallyLinkage) return false;
Kostya Serebryany20343352012-10-17 13:40:06 +00001733 DEBUG(dbgs() << "ASAN instrumenting:\n" << F << "\n");
Kostya Serebryany4b929da2012-11-29 09:54:21 +00001734 initializeCallbacks(*F.getParent());
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001735
Yury Gribov3ae427d2014-12-01 08:47:58 +00001736 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
1737
Kostya Serebryanycf880b92013-02-26 06:58:09 +00001738 // If needed, insert __asan_init before checking for SanitizeAddress attr.
Kostya Serebryany22ddcfd2012-01-30 23:50:10 +00001739 maybeInsertAsanInitAtFunctionEntry(F);
1740
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001741 if (!F.hasFnAttribute(Attribute::SanitizeAddress)) return false;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001742
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001743 if (!ClDebugFunc.empty() && ClDebugFunc != F.getName()) return false;
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001744
Reid Kleckner2f907552015-07-21 17:40:14 +00001745 FunctionStateRAII CleanupObj(this);
1746
1747 // We can't instrument allocas used with llvm.localescape. Only static allocas
1748 // can be passed to that intrinsic.
1749 markEscapedLocalAllocas(F);
1750
Bill Wendlingc9b22d72012-10-09 07:45:08 +00001751 // We want to instrument every address only once per basic block (unless there
1752 // are calls between uses).
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001753 SmallSet<Value *, 16> TempsToInstrument;
1754 SmallVector<Instruction *, 16> ToInstrument;
1755 SmallVector<Instruction *, 8> NoReturnCalls;
1756 SmallVector<BasicBlock *, 16> AllBlocks;
1757 SmallVector<Instruction *, 16> PointerComparisonsOrSubtracts;
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001758 int NumAllocas = 0;
Kostya Serebryany90241602012-05-30 09:04:06 +00001759 bool IsWrite;
Kostya Serebryanyc7895a82014-05-23 11:52:07 +00001760 unsigned Alignment;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001761 uint64_t TypeSize;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001762
1763 // Fill the set of memory operations to instrument.
Alexey Samsonova02e6642014-05-29 18:40:48 +00001764 for (auto &BB : F) {
1765 AllBlocks.push_back(&BB);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001766 TempsToInstrument.clear();
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001767 int NumInsnsPerBB = 0;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001768 for (auto &Inst : BB) {
1769 if (LooksLikeCodeInBug11395(&Inst)) return false;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001770 if (Value *Addr = isInterestingMemoryAccess(&Inst, &IsWrite, &TypeSize,
1771 &Alignment)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001772 if (ClOpt && ClOptSameTemp) {
David Blaikie70573dc2014-11-19 07:49:26 +00001773 if (!TempsToInstrument.insert(Addr).second)
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001774 continue; // We've seen this temp in the current BB.
1775 }
Kostya Serebryanycb3f6e12014-02-27 13:13:59 +00001776 } else if (ClInvalidPointerPairs &&
Alexey Samsonova02e6642014-05-29 18:40:48 +00001777 isInterestingPointerComparisonOrSubtraction(&Inst)) {
1778 PointerComparisonsOrSubtracts.push_back(&Inst);
Kostya Serebryany796f6552014-02-27 12:45:36 +00001779 continue;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001780 } else if (isa<MemIntrinsic>(Inst)) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001781 // ok, take it.
1782 } else {
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001783 if (isa<AllocaInst>(Inst)) NumAllocas++;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001784 CallSite CS(&Inst);
Kostya Serebryany699ac282013-02-20 12:35:15 +00001785 if (CS) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001786 // A call inside BB.
1787 TempsToInstrument.clear();
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001788 if (CS.doesNotReturn()) NoReturnCalls.push_back(CS.getInstruction());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001789 }
1790 continue;
1791 }
Alexey Samsonova02e6642014-05-29 18:40:48 +00001792 ToInstrument.push_back(&Inst);
Kostya Serebryanyc387ca72012-06-28 09:34:41 +00001793 NumInsnsPerBB++;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001794 if (NumInsnsPerBB >= ClMaxInsnsToInstrumentPerBB) break;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001795 }
1796 }
1797
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00001798 bool UseCalls =
1799 CompileKernel ||
1800 (ClInstrumentationWithCallsThreshold >= 0 &&
1801 ToInstrument.size() > (unsigned)ClInstrumentationWithCallsThreshold);
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001802 const TargetLibraryInfo *TLI =
1803 &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001804 const DataLayout &DL = F.getParent()->getDataLayout();
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001805 ObjectSizeOffsetVisitor ObjSizeVis(DL, TLI, F.getContext(),
1806 /*RoundToAlign=*/true);
1807
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001808 // Instrument.
1809 int NumInstrumented = 0;
Alexey Samsonova02e6642014-05-29 18:40:48 +00001810 for (auto Inst : ToInstrument) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001811 if (ClDebugMin < 0 || ClDebugMax < 0 ||
1812 (NumInstrumented >= ClDebugMin && NumInstrumented <= ClDebugMax)) {
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001813 if (isInterestingMemoryAccess(Inst, &IsWrite, &TypeSize, &Alignment))
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001814 instrumentMop(ObjSizeVis, Inst, UseCalls,
1815 F.getParent()->getDataLayout());
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001816 else
Kostya Serebryany94c81ca2014-04-21 11:50:42 +00001817 instrumentMemIntrinsic(cast<MemIntrinsic>(Inst));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001818 }
1819 NumInstrumented++;
1820 }
1821
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001822 FunctionStackPoisoner FSP(F, *this);
1823 bool ChangedStack = FSP.runOnFunction();
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001824
1825 // We must unpoison the stack before every NoReturn call (throw, _exit, etc).
1826 // See e.g. http://code.google.com/p/address-sanitizer/issues/detail?id=37
Alexey Samsonova02e6642014-05-29 18:40:48 +00001827 for (auto CI : NoReturnCalls) {
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001828 IRBuilder<> IRB(CI);
David Blaikieff6409d2015-05-18 22:13:54 +00001829 IRB.CreateCall(AsanHandleNoReturnFunc, {});
Kostya Serebryany154a54d2012-02-08 21:36:17 +00001830 }
1831
Alexey Samsonova02e6642014-05-29 18:40:48 +00001832 for (auto Inst : PointerComparisonsOrSubtracts) {
1833 instrumentPointerComparisonOrSubtraction(Inst);
Kostya Serebryany796f6552014-02-27 12:45:36 +00001834 NumInstrumented++;
1835 }
1836
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001837 bool res = NumInstrumented > 0 || ChangedStack || !NoReturnCalls.empty();
Bob Wilsonda4147c2013-11-15 07:16:09 +00001838
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001839 DEBUG(dbgs() << "ASAN done instrumenting: " << res << " " << F << "\n");
1840
Kostya Serebryany9f5213f2013-06-26 09:18:17 +00001841 return res;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001842}
1843
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001844// Workaround for bug 11395: we don't want to instrument stack in functions
1845// with large assembly blobs (32-bit only), otherwise reg alloc may crash.
1846// FIXME: remove once the bug 11395 is fixed.
1847bool AddressSanitizer::LooksLikeCodeInBug11395(Instruction *I) {
1848 if (LongSize != 32) return false;
1849 CallInst *CI = dyn_cast<CallInst>(I);
1850 if (!CI || !CI->isInlineAsm()) return false;
1851 if (CI->getNumArgOperands() <= 5) return false;
1852 // We have inline assembly with quite a few arguments.
1853 return true;
1854}
1855
1856void FunctionStackPoisoner::initializeCallbacks(Module &M) {
1857 IRBuilder<> IRB(*C);
Kostya Serebryany6805de52013-09-10 13:16:56 +00001858 for (int i = 0; i <= kMaxAsanStackMallocSizeClass; i++) {
1859 std::string Suffix = itostr(i);
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001860 AsanStackMallocFunc[i] = checkSanitizerInterfaceFunction(
1861 M.getOrInsertFunction(kAsanStackMallocNameTemplate + Suffix, IntptrTy,
1862 IntptrTy, nullptr));
1863 AsanStackFreeFunc[i] = checkSanitizerInterfaceFunction(
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00001864 M.getOrInsertFunction(kAsanStackFreeNameTemplate + Suffix,
1865 IRB.getVoidTy(), IntptrTy, IntptrTy, nullptr));
Kostya Serebryany6805de52013-09-10 13:16:56 +00001866 }
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001867 AsanPoisonStackMemoryFunc = checkSanitizerInterfaceFunction(
David Blaikiea92765c2014-11-14 00:41:42 +00001868 M.getOrInsertFunction(kAsanPoisonStackMemoryName, IRB.getVoidTy(),
1869 IntptrTy, IntptrTy, nullptr));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +00001870 AsanUnpoisonStackMemoryFunc = checkSanitizerInterfaceFunction(
David Blaikiea92765c2014-11-14 00:41:42 +00001871 M.getOrInsertFunction(kAsanUnpoisonStackMemoryName, IRB.getVoidTy(),
1872 IntptrTy, IntptrTy, nullptr));
Yury Gribov98b18592015-05-28 07:51:49 +00001873 AsanAllocaPoisonFunc = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
1874 kAsanAllocaPoison, IRB.getVoidTy(), IntptrTy, IntptrTy, nullptr));
1875 AsanAllocasUnpoisonFunc =
1876 checkSanitizerInterfaceFunction(M.getOrInsertFunction(
1877 kAsanAllocasUnpoison, IRB.getVoidTy(), IntptrTy, IntptrTy, nullptr));
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001878}
1879
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001880void FunctionStackPoisoner::poisonRedZones(ArrayRef<uint8_t> ShadowBytes,
1881 IRBuilder<> &IRB, Value *ShadowBase,
1882 bool DoPoison) {
Kostya Serebryany4fb78012013-12-06 09:00:17 +00001883 size_t n = ShadowBytes.size();
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001884 size_t i = 0;
1885 // We need to (un)poison n bytes of stack shadow. Poison as many as we can
1886 // using 64-bit stores (if we are on 64-bit arch), then poison the rest
1887 // with 32-bit stores, then with 16-byte stores, then with 8-byte stores.
1888 for (size_t LargeStoreSizeInBytes = ASan.LongSize / 8;
1889 LargeStoreSizeInBytes != 0; LargeStoreSizeInBytes /= 2) {
1890 for (; i + LargeStoreSizeInBytes - 1 < n; i += LargeStoreSizeInBytes) {
1891 uint64_t Val = 0;
1892 for (size_t j = 0; j < LargeStoreSizeInBytes; j++) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001893 if (F.getParent()->getDataLayout().isLittleEndian())
Kostya Serebryanyff7bde12013-12-23 09:24:36 +00001894 Val |= (uint64_t)ShadowBytes[i + j] << (8 * j);
1895 else
1896 Val = (Val << 8) | ShadowBytes[i + j];
1897 }
1898 if (!Val) continue;
1899 Value *Ptr = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
1900 Type *StoreTy = Type::getIntNTy(*C, LargeStoreSizeInBytes * 8);
1901 Value *Poison = ConstantInt::get(StoreTy, DoPoison ? Val : 0);
1902 IRB.CreateStore(Poison, IRB.CreateIntToPtr(Ptr, StoreTy->getPointerTo()));
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001903 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00001904 }
1905}
1906
Kostya Serebryany6805de52013-09-10 13:16:56 +00001907// Fake stack allocator (asan_fake_stack.h) has 11 size classes
1908// for every power of 2 from kMinStackMallocSize to kMaxAsanStackMallocSizeClass
1909static int StackMallocSizeClass(uint64_t LocalStackSize) {
1910 assert(LocalStackSize <= kMaxStackMallocSize);
1911 uint64_t MaxSize = kMinStackMallocSize;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00001912 for (int i = 0;; i++, MaxSize *= 2)
1913 if (LocalStackSize <= MaxSize) return i;
Kostya Serebryany6805de52013-09-10 13:16:56 +00001914 llvm_unreachable("impossible LocalStackSize");
1915}
1916
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001917// Set Size bytes starting from ShadowBase to kAsanStackAfterReturnMagic.
1918// We can not use MemSet intrinsic because it may end up calling the actual
1919// memset. Size is a multiple of 8.
1920// Currently this generates 8-byte stores on x86_64; it may be better to
1921// generate wider stores.
1922void FunctionStackPoisoner::SetShadowToStackAfterReturnInlined(
1923 IRBuilder<> &IRB, Value *ShadowBase, int Size) {
1924 assert(!(Size % 8));
Gabor Horvathfee04342015-03-16 09:53:42 +00001925
Kostya Serebryanyb1870a62015-03-17 19:13:23 +00001926 // kAsanStackAfterReturnMagic is 0xf5.
1927 const uint64_t kAsanStackAfterReturnMagic64 = 0xf5f5f5f5f5f5f5f5ULL;
Gabor Horvathfee04342015-03-16 09:53:42 +00001928
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001929 for (int i = 0; i < Size; i += 8) {
1930 Value *p = IRB.CreateAdd(ShadowBase, ConstantInt::get(IntptrTy, i));
Kostya Serebryanyb1870a62015-03-17 19:13:23 +00001931 IRB.CreateStore(
1932 ConstantInt::get(IRB.getInt64Ty(), kAsanStackAfterReturnMagic64),
1933 IRB.CreateIntToPtr(p, IRB.getInt64Ty()->getPointerTo()));
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00001934 }
1935}
1936
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00001937PHINode *FunctionStackPoisoner::createPHI(IRBuilder<> &IRB, Value *Cond,
1938 Value *ValueIfTrue,
1939 Instruction *ThenTerm,
1940 Value *ValueIfFalse) {
1941 PHINode *PHI = IRB.CreatePHI(IntptrTy, 2);
1942 BasicBlock *CondBlock = cast<Instruction>(Cond)->getParent();
1943 PHI->addIncoming(ValueIfFalse, CondBlock);
1944 BasicBlock *ThenBlock = ThenTerm->getParent();
1945 PHI->addIncoming(ValueIfTrue, ThenBlock);
1946 return PHI;
1947}
1948
1949Value *FunctionStackPoisoner::createAllocaForLayout(
1950 IRBuilder<> &IRB, const ASanStackFrameLayout &L, bool Dynamic) {
1951 AllocaInst *Alloca;
1952 if (Dynamic) {
1953 Alloca = IRB.CreateAlloca(IRB.getInt8Ty(),
1954 ConstantInt::get(IRB.getInt64Ty(), L.FrameSize),
1955 "MyAlloca");
1956 } else {
1957 Alloca = IRB.CreateAlloca(ArrayType::get(IRB.getInt8Ty(), L.FrameSize),
1958 nullptr, "MyAlloca");
1959 assert(Alloca->isStaticAlloca());
1960 }
1961 assert((ClRealignStack & (ClRealignStack - 1)) == 0);
1962 size_t FrameAlignment = std::max(L.FrameAlignment, (size_t)ClRealignStack);
1963 Alloca->setAlignment(FrameAlignment);
1964 return IRB.CreatePointerCast(Alloca, IntptrTy);
1965}
1966
Yury Gribov98b18592015-05-28 07:51:49 +00001967void FunctionStackPoisoner::createDynamicAllocasInitStorage() {
1968 BasicBlock &FirstBB = *F.begin();
1969 IRBuilder<> IRB(dyn_cast<Instruction>(FirstBB.begin()));
1970 DynamicAllocaLayout = IRB.CreateAlloca(IntptrTy, nullptr);
1971 IRB.CreateStore(Constant::getNullValue(IntptrTy), DynamicAllocaLayout);
1972 DynamicAllocaLayout->setAlignment(32);
1973}
1974
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00001975void FunctionStackPoisoner::poisonStack() {
Yury Gribov55441bb2014-11-21 10:29:50 +00001976 assert(AllocaVec.size() > 0 || DynamicAllocaVec.size() > 0);
1977
Alexey Samsonov8daaf8b2015-10-22 19:51:59 +00001978 // Insert poison calls for lifetime intrinsics for alloca.
1979 bool HavePoisonedAllocas = false;
1980 for (const auto &APC : AllocaPoisonCallVec) {
1981 assert(APC.InsBefore);
1982 assert(APC.AI);
1983 IRBuilder<> IRB(APC.InsBefore);
1984 poisonAlloca(APC.AI, APC.Size, IRB, APC.DoPoison);
1985 HavePoisonedAllocas |= APC.DoPoison;
1986 }
1987
Yury Gribov98b18592015-05-28 07:51:49 +00001988 if (ClInstrumentAllocas && DynamicAllocaVec.size() > 0) {
Yury Gribov55441bb2014-11-21 10:29:50 +00001989 // Handle dynamic allocas.
Yury Gribov98b18592015-05-28 07:51:49 +00001990 createDynamicAllocasInitStorage();
Alexander Potapenkof90556e2015-06-12 11:27:06 +00001991 for (auto &AI : DynamicAllocaVec) handleDynamicAllocaCall(AI);
Yury Gribov98b18592015-05-28 07:51:49 +00001992
1993 unpoisonDynamicAllocas();
Kuba Breckaf5875d32015-02-24 09:47:05 +00001994 }
Yury Gribov55441bb2014-11-21 10:29:50 +00001995
Hans Wennborg083ca9b2015-10-06 23:24:35 +00001996 if (AllocaVec.empty()) return;
Yury Gribov55441bb2014-11-21 10:29:50 +00001997
Kostya Serebryany6805de52013-09-10 13:16:56 +00001998 int StackMallocIdx = -1;
Alexey Samsonov773e8c32015-06-26 00:00:47 +00001999 DebugLoc EntryDebugLocation;
Pete Cooperadebb932016-03-11 02:14:16 +00002000 if (auto SP = F.getSubprogram())
Alexey Samsonov773e8c32015-06-26 00:00:47 +00002001 EntryDebugLocation = DebugLoc::get(SP->getScopeLine(), 0, SP);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002002
2003 Instruction *InsBefore = AllocaVec[0];
2004 IRBuilder<> IRB(InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00002005 IRB.SetCurrentDebugLocation(EntryDebugLocation);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002006
Kuba Brecka8ec94ea2015-07-22 10:25:38 +00002007 // Make sure non-instrumented allocas stay in the entry block. Otherwise,
2008 // debug info is broken, because only entry-block allocas are treated as
2009 // regular stack slots.
2010 auto InsBeforeB = InsBefore->getParent();
2011 assert(InsBeforeB == &F.getEntryBlock());
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +00002012 for (BasicBlock::iterator I(InsBefore); I != InsBeforeB->end(); ++I)
2013 if (auto *AI = dyn_cast<AllocaInst>(I))
Kuba Brecka8ec94ea2015-07-22 10:25:38 +00002014 if (NonInstrumentedStaticAllocaVec.count(AI) > 0)
2015 AI->moveBefore(InsBefore);
Kuba Brecka37a5ffa2015-07-17 06:29:57 +00002016
Reid Kleckner2f907552015-07-21 17:40:14 +00002017 // If we have a call to llvm.localescape, keep it in the entry block.
2018 if (LocalEscapeCall) LocalEscapeCall->moveBefore(InsBefore);
2019
Kostya Serebryany4fb78012013-12-06 09:00:17 +00002020 SmallVector<ASanStackVariableDescription, 16> SVD;
2021 SVD.reserve(AllocaVec.size());
Alexey Samsonova02e6642014-05-29 18:40:48 +00002022 for (AllocaInst *AI : AllocaVec) {
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002023 ASanStackVariableDescription D = {AI->getName().data(),
2024 ASan.getAllocaSizeInBytes(AI),
2025 AI->getAlignment(), AI, 0};
Kostya Serebryany4fb78012013-12-06 09:00:17 +00002026 SVD.push_back(D);
2027 }
2028 // Minimal header size (left redzone) is 4 pointers,
2029 // i.e. 32 bytes on 64-bit platforms and 16 bytes in 32-bit platforms.
2030 size_t MinHeaderSize = ASan.LongSize / 2;
2031 ASanStackFrameLayout L;
Aaron Ballmanef0fe1e2016-03-30 21:30:00 +00002032 ComputeASanStackFrameLayout(SVD, 1ULL << Mapping.Scale, MinHeaderSize, &L);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00002033 DEBUG(dbgs() << L.DescriptionString << " --- " << L.FrameSize << "\n");
2034 uint64_t LocalStackSize = L.FrameSize;
Alexander Potapenkob9b73ef2015-06-19 12:19:07 +00002035 bool DoStackMalloc = ClUseAfterReturn && !ASan.CompileKernel &&
2036 LocalStackSize <= kMaxStackMallocSize;
Alexey Samsonov869a5ff2015-07-29 19:36:08 +00002037 bool DoDynamicAlloca = ClDynamicAllocaStack;
2038 // Don't do dynamic alloca or stack malloc if:
2039 // 1) There is inline asm: too often it makes assumptions on which registers
2040 // are available.
2041 // 2) There is a returns_twice call (typically setjmp), which is
2042 // optimization-hostile, and doesn't play well with introduced indirect
2043 // register-relative calculation of local variable addresses.
2044 DoDynamicAlloca &= !HasNonEmptyInlineAsm && !HasReturnsTwiceCall;
2045 DoStackMalloc &= !HasNonEmptyInlineAsm && !HasReturnsTwiceCall;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002046
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002047 Value *StaticAlloca =
2048 DoDynamicAlloca ? nullptr : createAllocaForLayout(IRB, L, false);
2049
2050 Value *FakeStack;
2051 Value *LocalStackBase;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002052
2053 if (DoStackMalloc) {
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002054 // void *FakeStack = __asan_option_detect_stack_use_after_return
2055 // ? __asan_stack_malloc_N(LocalStackSize)
2056 // : nullptr;
2057 // void *LocalStackBase = (FakeStack) ? FakeStack : alloca(LocalStackSize);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00002058 Constant *OptionDetectUAR = F.getParent()->getOrInsertGlobal(
2059 kAsanOptionDetectUAR, IRB.getInt32Ty());
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002060 Value *UARIsEnabled =
2061 IRB.CreateICmpNE(IRB.CreateLoad(OptionDetectUAR),
2062 Constant::getNullValue(IRB.getInt32Ty()));
2063 Instruction *Term =
2064 SplitBlockAndInsertIfThen(UARIsEnabled, InsBefore, false);
Kostya Serebryanyf3223822013-09-18 14:07:14 +00002065 IRBuilder<> IRBIf(Term);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00002066 IRBIf.SetCurrentDebugLocation(EntryDebugLocation);
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002067 StackMallocIdx = StackMallocSizeClass(LocalStackSize);
2068 assert(StackMallocIdx <= kMaxAsanStackMallocSizeClass);
2069 Value *FakeStackValue =
2070 IRBIf.CreateCall(AsanStackMallocFunc[StackMallocIdx],
2071 ConstantInt::get(IntptrTy, LocalStackSize));
Kostya Serebryanyf3223822013-09-18 14:07:14 +00002072 IRB.SetInsertPoint(InsBefore);
Evgeniy Stepanovaaf4bb22014-05-14 10:30:15 +00002073 IRB.SetCurrentDebugLocation(EntryDebugLocation);
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002074 FakeStack = createPHI(IRB, UARIsEnabled, FakeStackValue, Term,
2075 ConstantInt::get(IntptrTy, 0));
2076
2077 Value *NoFakeStack =
2078 IRB.CreateICmpEQ(FakeStack, Constant::getNullValue(IntptrTy));
2079 Term = SplitBlockAndInsertIfThen(NoFakeStack, InsBefore, false);
2080 IRBIf.SetInsertPoint(Term);
2081 IRBIf.SetCurrentDebugLocation(EntryDebugLocation);
2082 Value *AllocaValue =
2083 DoDynamicAlloca ? createAllocaForLayout(IRBIf, L, true) : StaticAlloca;
2084 IRB.SetInsertPoint(InsBefore);
2085 IRB.SetCurrentDebugLocation(EntryDebugLocation);
2086 LocalStackBase = createPHI(IRB, NoFakeStack, AllocaValue, Term, FakeStack);
2087 } else {
2088 // void *FakeStack = nullptr;
2089 // void *LocalStackBase = alloca(LocalStackSize);
2090 FakeStack = ConstantInt::get(IntptrTy, 0);
2091 LocalStackBase =
2092 DoDynamicAlloca ? createAllocaForLayout(IRB, L, true) : StaticAlloca;
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002093 }
2094
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002095 // Replace Alloca instructions with base+offset.
Alexey Samsonova02e6642014-05-29 18:40:48 +00002096 for (const auto &Desc : SVD) {
2097 AllocaInst *AI = Desc.AI;
Alexey Samsonov261177a2012-12-04 01:34:23 +00002098 Value *NewAllocaPtr = IRB.CreateIntToPtr(
Alexey Samsonova02e6642014-05-29 18:40:48 +00002099 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, Desc.Offset)),
Kostya Serebryany4fb78012013-12-06 09:00:17 +00002100 AI->getType());
Adrian Prantl3e2659e2015-01-30 19:37:48 +00002101 replaceDbgDeclareForAlloca(AI, NewAllocaPtr, DIB, /*Deref=*/true);
Alexey Samsonov261177a2012-12-04 01:34:23 +00002102 AI->replaceAllUsesWith(NewAllocaPtr);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002103 }
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002104
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00002105 // The left-most redzone has enough space for at least 4 pointers.
2106 // Write the Magic value to redzone[0].
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002107 Value *BasePlus0 = IRB.CreateIntToPtr(LocalStackBase, IntptrPtrTy);
2108 IRB.CreateStore(ConstantInt::get(IntptrTy, kCurrentStackFrameMagic),
2109 BasePlus0);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00002110 // Write the frame description constant to redzone[1].
2111 Value *BasePlus1 = IRB.CreateIntToPtr(
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002112 IRB.CreateAdd(LocalStackBase,
2113 ConstantInt::get(IntptrTy, ASan.LongSize / 8)),
2114 IntptrPtrTy);
Alexey Samsonov9bdb63a2012-11-02 12:20:34 +00002115 GlobalVariable *StackDescriptionGlobal =
Alexander Potapenkodaf96ae2013-12-25 14:22:15 +00002116 createPrivateGlobalForString(*F.getParent(), L.DescriptionString,
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002117 /*AllowMerging*/ true);
2118 Value *Description = IRB.CreatePointerCast(StackDescriptionGlobal, IntptrTy);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002119 IRB.CreateStore(Description, BasePlus1);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00002120 // Write the PC to redzone[2].
2121 Value *BasePlus2 = IRB.CreateIntToPtr(
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002122 IRB.CreateAdd(LocalStackBase,
2123 ConstantInt::get(IntptrTy, 2 * ASan.LongSize / 8)),
2124 IntptrPtrTy);
Kostya Serebryanycdd35a92013-03-22 10:37:20 +00002125 IRB.CreateStore(IRB.CreatePointerCast(&F, IntptrTy), BasePlus2);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002126
2127 // Poison the stack redzones at the entry.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00002128 Value *ShadowBase = ASan.memToShadow(LocalStackBase, IRB);
Kostya Serebryany4fb78012013-12-06 09:00:17 +00002129 poisonRedZones(L.ShadowBytes, IRB, ShadowBase, true);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002130
Kostya Serebryany530e2072013-12-23 14:15:08 +00002131 // (Un)poison the stack before all ret instructions.
Alexey Samsonova02e6642014-05-29 18:40:48 +00002132 for (auto Ret : RetVec) {
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002133 IRBuilder<> IRBRet(Ret);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002134 // Mark the current frame as retired.
2135 IRBRet.CreateStore(ConstantInt::get(IntptrTy, kRetiredStackFrameMagic),
2136 BasePlus0);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002137 if (DoStackMalloc) {
Kostya Serebryany6805de52013-09-10 13:16:56 +00002138 assert(StackMallocIdx >= 0);
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002139 // if FakeStack != 0 // LocalStackBase == FakeStack
Kostya Serebryany530e2072013-12-23 14:15:08 +00002140 // // In use-after-return mode, poison the whole stack frame.
2141 // if StackMallocIdx <= 4
2142 // // For small sizes inline the whole thing:
2143 // memset(ShadowBase, kAsanStackAfterReturnMagic, ShadowSize);
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002144 // **SavedFlagPtr(FakeStack) = 0
Kostya Serebryany530e2072013-12-23 14:15:08 +00002145 // else
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002146 // __asan_stack_free_N(FakeStack, LocalStackSize)
Kostya Serebryany530e2072013-12-23 14:15:08 +00002147 // else
2148 // <This is not a fake stack; unpoison the redzones>
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002149 Value *Cmp =
2150 IRBRet.CreateICmpNE(FakeStack, Constant::getNullValue(IntptrTy));
Kostya Serebryany530e2072013-12-23 14:15:08 +00002151 TerminatorInst *ThenTerm, *ElseTerm;
2152 SplitBlockAndInsertIfThenElse(Cmp, Ret, &ThenTerm, &ElseTerm);
2153
2154 IRBuilder<> IRBPoison(ThenTerm);
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00002155 if (StackMallocIdx <= 4) {
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00002156 int ClassSize = kMinStackMallocSize << StackMallocIdx;
2157 SetShadowToStackAfterReturnInlined(IRBPoison, ShadowBase,
2158 ClassSize >> Mapping.Scale);
2159 Value *SavedFlagPtrPtr = IRBPoison.CreateAdd(
Alexey Samsonov4b7f4132014-12-11 21:53:03 +00002160 FakeStack,
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00002161 ConstantInt::get(IntptrTy, ClassSize - ASan.LongSize / 8));
2162 Value *SavedFlagPtr = IRBPoison.CreateLoad(
2163 IRBPoison.CreateIntToPtr(SavedFlagPtrPtr, IntptrPtrTy));
2164 IRBPoison.CreateStore(
2165 Constant::getNullValue(IRBPoison.getInt8Ty()),
2166 IRBPoison.CreateIntToPtr(SavedFlagPtr, IRBPoison.getInt8PtrTy()));
2167 } else {
2168 // For larger frames call __asan_stack_free_*.
David Blaikieff6409d2015-05-18 22:13:54 +00002169 IRBPoison.CreateCall(
2170 AsanStackFreeFunc[StackMallocIdx],
2171 {FakeStack, ConstantInt::get(IntptrTy, LocalStackSize)});
Kostya Serebryanybc86efb2013-09-17 12:14:50 +00002172 }
Kostya Serebryany530e2072013-12-23 14:15:08 +00002173
2174 IRBuilder<> IRBElse(ElseTerm);
2175 poisonRedZones(L.ShadowBytes, IRBElse, ShadowBase, false);
Alexey Samsonov261177a2012-12-04 01:34:23 +00002176 } else if (HavePoisonedAllocas) {
2177 // If we poisoned some allocas in llvm.lifetime analysis,
2178 // unpoison whole stack frame now.
Alexey Samsonov261177a2012-12-04 01:34:23 +00002179 poisonAlloca(LocalStackBase, LocalStackSize, IRBRet, false);
Kostya Serebryany530e2072013-12-23 14:15:08 +00002180 } else {
2181 poisonRedZones(L.ShadowBytes, IRBRet, ShadowBase, false);
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002182 }
2183 }
2184
Kostya Serebryany09959942012-10-19 06:20:53 +00002185 // We are done. Remove the old unused alloca instructions.
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002186 for (auto AI : AllocaVec) AI->eraseFromParent();
Kostya Serebryany6e6b03e2011-11-16 01:35:23 +00002187}
Alexey Samsonov261177a2012-12-04 01:34:23 +00002188
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00002189void FunctionStackPoisoner::poisonAlloca(Value *V, uint64_t Size,
Jakub Staszak23ec6a92013-08-09 20:53:48 +00002190 IRBuilder<> &IRB, bool DoPoison) {
Alexey Samsonov261177a2012-12-04 01:34:23 +00002191 // For now just insert the call to ASan runtime.
2192 Value *AddrArg = IRB.CreatePointerCast(V, IntptrTy);
2193 Value *SizeArg = ConstantInt::get(IntptrTy, Size);
Alexander Potapenkof90556e2015-06-12 11:27:06 +00002194 IRB.CreateCall(
2195 DoPoison ? AsanPoisonStackMemoryFunc : AsanUnpoisonStackMemoryFunc,
2196 {AddrArg, SizeArg});
Alexey Samsonov261177a2012-12-04 01:34:23 +00002197}
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00002198
2199// Handling llvm.lifetime intrinsics for a given %alloca:
2200// (1) collect all llvm.lifetime.xxx(%size, %value) describing the alloca.
2201// (2) if %size is constant, poison memory for llvm.lifetime.end (to detect
2202// invalid accesses) and unpoison it for llvm.lifetime.start (the memory
2203// could be poisoned by previous llvm.lifetime.end instruction, as the
2204// variable may go in and out of scope several times, e.g. in loops).
2205// (3) if we poisoned at least one %alloca in a function,
2206// unpoison the whole stack frame at function exit.
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00002207
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00002208AllocaInst *FunctionStackPoisoner::findAllocaForValue(Value *V) {
2209 if (AllocaInst *AI = dyn_cast<AllocaInst>(V))
2210 // We're intested only in allocas we can handle.
Anna Zaks8ed1d812015-02-27 03:12:36 +00002211 return ASan.isInterestingAlloca(*AI) ? AI : nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00002212 // See if we've already calculated (or started to calculate) alloca for a
2213 // given value.
2214 AllocaForValueMapTy::iterator I = AllocaForValue.find(V);
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002215 if (I != AllocaForValue.end()) return I->second;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00002216 // Store 0 while we're calculating alloca for value V to avoid
2217 // infinite recursion if the value references itself.
Craig Topperf40110f2014-04-25 05:29:35 +00002218 AllocaForValue[V] = nullptr;
2219 AllocaInst *Res = nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00002220 if (CastInst *CI = dyn_cast<CastInst>(V))
2221 Res = findAllocaForValue(CI->getOperand(0));
2222 else if (PHINode *PN = dyn_cast<PHINode>(V)) {
Pete Cooper833f34d2015-05-12 20:05:31 +00002223 for (Value *IncValue : PN->incoming_values()) {
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00002224 // Allow self-referencing phi-nodes.
2225 if (IncValue == PN) continue;
2226 AllocaInst *IncValueAI = findAllocaForValue(IncValue);
2227 // AI for incoming values should exist and should all be equal.
Craig Topperf40110f2014-04-25 05:29:35 +00002228 if (IncValueAI == nullptr || (Res != nullptr && IncValueAI != Res))
2229 return nullptr;
Alexey Samsonov29dd7f22012-12-27 08:50:58 +00002230 Res = IncValueAI;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00002231 }
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00002232 }
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002233 if (Res) AllocaForValue[V] = Res;
Alexey Samsonov1e3f7ba2012-12-25 12:04:36 +00002234 return Res;
2235}
Yury Gribov55441bb2014-11-21 10:29:50 +00002236
Yury Gribov98b18592015-05-28 07:51:49 +00002237void FunctionStackPoisoner::handleDynamicAllocaCall(AllocaInst *AI) {
Yury Gribov55441bb2014-11-21 10:29:50 +00002238 IRBuilder<> IRB(AI);
2239
Yury Gribov55441bb2014-11-21 10:29:50 +00002240 const unsigned Align = std::max(kAllocaRzSize, AI->getAlignment());
2241 const uint64_t AllocaRedzoneMask = kAllocaRzSize - 1;
2242
2243 Value *Zero = Constant::getNullValue(IntptrTy);
2244 Value *AllocaRzSize = ConstantInt::get(IntptrTy, kAllocaRzSize);
2245 Value *AllocaRzMask = ConstantInt::get(IntptrTy, AllocaRedzoneMask);
Yury Gribov55441bb2014-11-21 10:29:50 +00002246
2247 // Since we need to extend alloca with additional memory to locate
2248 // redzones, and OldSize is number of allocated blocks with
2249 // ElementSize size, get allocated memory size in bytes by
2250 // OldSize * ElementSize.
Yury Gribov98b18592015-05-28 07:51:49 +00002251 const unsigned ElementSize =
Mehdi Aminia28d91d2015-03-10 02:37:25 +00002252 F.getParent()->getDataLayout().getTypeAllocSize(AI->getAllocatedType());
Yury Gribov98b18592015-05-28 07:51:49 +00002253 Value *OldSize =
2254 IRB.CreateMul(IRB.CreateIntCast(AI->getArraySize(), IntptrTy, false),
2255 ConstantInt::get(IntptrTy, ElementSize));
Yury Gribov55441bb2014-11-21 10:29:50 +00002256
2257 // PartialSize = OldSize % 32
2258 Value *PartialSize = IRB.CreateAnd(OldSize, AllocaRzMask);
2259
2260 // Misalign = kAllocaRzSize - PartialSize;
2261 Value *Misalign = IRB.CreateSub(AllocaRzSize, PartialSize);
2262
2263 // PartialPadding = Misalign != kAllocaRzSize ? Misalign : 0;
2264 Value *Cond = IRB.CreateICmpNE(Misalign, AllocaRzSize);
2265 Value *PartialPadding = IRB.CreateSelect(Cond, Misalign, Zero);
2266
2267 // AdditionalChunkSize = Align + PartialPadding + kAllocaRzSize
2268 // Align is added to locate left redzone, PartialPadding for possible
2269 // partial redzone and kAllocaRzSize for right redzone respectively.
2270 Value *AdditionalChunkSize = IRB.CreateAdd(
2271 ConstantInt::get(IntptrTy, Align + kAllocaRzSize), PartialPadding);
2272
2273 Value *NewSize = IRB.CreateAdd(OldSize, AdditionalChunkSize);
2274
2275 // Insert new alloca with new NewSize and Align params.
2276 AllocaInst *NewAlloca = IRB.CreateAlloca(IRB.getInt8Ty(), NewSize);
2277 NewAlloca->setAlignment(Align);
2278
2279 // NewAddress = Address + Align
2280 Value *NewAddress = IRB.CreateAdd(IRB.CreatePtrToInt(NewAlloca, IntptrTy),
2281 ConstantInt::get(IntptrTy, Align));
2282
Yury Gribov98b18592015-05-28 07:51:49 +00002283 // Insert __asan_alloca_poison call for new created alloca.
Yury Gribov781bce22015-05-28 08:03:28 +00002284 IRB.CreateCall(AsanAllocaPoisonFunc, {NewAddress, OldSize});
Yury Gribov98b18592015-05-28 07:51:49 +00002285
2286 // Store the last alloca's address to DynamicAllocaLayout. We'll need this
2287 // for unpoisoning stuff.
2288 IRB.CreateStore(IRB.CreatePtrToInt(NewAlloca, IntptrTy), DynamicAllocaLayout);
2289
Yury Gribov55441bb2014-11-21 10:29:50 +00002290 Value *NewAddressPtr = IRB.CreateIntToPtr(NewAddress, AI->getType());
2291
Yury Gribov98b18592015-05-28 07:51:49 +00002292 // Replace all uses of AddessReturnedByAlloca with NewAddressPtr.
Yury Gribov55441bb2014-11-21 10:29:50 +00002293 AI->replaceAllUsesWith(NewAddressPtr);
2294
Yury Gribov98b18592015-05-28 07:51:49 +00002295 // We are done. Erase old alloca from parent.
Yury Gribov55441bb2014-11-21 10:29:50 +00002296 AI->eraseFromParent();
2297}
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002298
2299// isSafeAccess returns true if Addr is always inbounds with respect to its
2300// base object. For example, it is a field access or an array access with
2301// constant inbounds index.
2302bool AddressSanitizer::isSafeAccess(ObjectSizeOffsetVisitor &ObjSizeVis,
2303 Value *Addr, uint64_t TypeSize) const {
2304 SizeOffsetType SizeOffset = ObjSizeVis.compute(Addr);
2305 if (!ObjSizeVis.bothKnown(SizeOffset)) return false;
Dmitry Vyukovee842382015-03-16 08:04:26 +00002306 uint64_t Size = SizeOffset.first.getZExtValue();
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002307 int64_t Offset = SizeOffset.second.getSExtValue();
2308 // Three checks are required to ensure safety:
2309 // . Offset >= 0 (since the offset is given from the base ptr)
2310 // . Size >= Offset (unsigned)
2311 // . Size - Offset >= NeededSize (unsigned)
Dmitry Vyukovee842382015-03-16 08:04:26 +00002312 return Offset >= 0 && Size >= uint64_t(Offset) &&
2313 Size - uint64_t(Offset) >= TypeSize / 8;
Dmitry Vyukovb37b95e2015-03-04 13:27:53 +00002314}