1 //===- MemorySanitizer.cpp - detector of uninitialized reads --------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 /// \file 10 /// This file is a part of MemorySanitizer, a detector of uninitialized 11 /// reads. 12 /// 13 /// The algorithm of the tool is similar to Memcheck 14 /// (http://goo.gl/QKbem). We associate a few shadow bits with every 15 /// byte of the application memory, poison the shadow of the malloc-ed 16 /// or alloca-ed memory, load the shadow bits on every memory read, 17 /// propagate the shadow bits through some of the arithmetic 18 /// instruction (including MOV), store the shadow bits on every memory 19 /// write, report a bug on some other instructions (e.g. JMP) if the 20 /// associated shadow is poisoned. 21 /// 22 /// But there are differences too. The first and the major one: 23 /// compiler instrumentation instead of binary instrumentation. This 24 /// gives us much better register allocation, possible compiler 25 /// optimizations and a fast start-up. But this brings the major issue 26 /// as well: msan needs to see all program events, including system 27 /// calls and reads/writes in system libraries, so we either need to 28 /// compile *everything* with msan or use a binary translation 29 /// component (e.g. DynamoRIO) to instrument pre-built libraries. 30 /// Another difference from Memcheck is that we use 8 shadow bits per 31 /// byte of application memory and use a direct shadow mapping. This 32 /// greatly simplifies the instrumentation code and avoids races on 33 /// shadow updates (Memcheck is single-threaded so races are not a 34 /// concern there. Memcheck uses 2 shadow bits per byte with a slow 35 /// path storage that uses 8 bits per byte). 36 /// 37 /// The default value of shadow is 0, which means "clean" (not poisoned). 38 /// 39 /// Every module initializer should call __msan_init to ensure that the 40 /// shadow memory is ready. On error, __msan_warning is called. Since 41 /// parameters and return values may be passed via registers, we have a 42 /// specialized thread-local shadow for return values 43 /// (__msan_retval_tls) and parameters (__msan_param_tls). 44 /// 45 /// Origin tracking. 46 /// 47 /// MemorySanitizer can track origins (allocation points) of all uninitialized 48 /// values. This behavior is controlled with a flag (msan-track-origins) and is 49 /// disabled by default. 50 /// 51 /// Origins are 4-byte values created and interpreted by the runtime library. 52 /// They are stored in a second shadow mapping, one 4-byte value for 4 bytes 53 /// of application memory. Propagation of origins is basically a bunch of 54 /// "select" instructions that pick the origin of a dirty argument, if an 55 /// instruction has one. 56 /// 57 /// Every 4 aligned, consecutive bytes of application memory have one origin 58 /// value associated with them. If these bytes contain uninitialized data 59 /// coming from 2 different allocations, the last store wins. Because of this, 60 /// MemorySanitizer reports can show unrelated origins, but this is unlikely in 61 /// practice. 62 /// 63 /// Origins are meaningless for fully initialized values, so MemorySanitizer 64 /// avoids storing origin to memory when a fully initialized value is stored. 65 /// This way it avoids needless overwriting origin of the 4-byte region on 66 /// a short (i.e. 1 byte) clean store, and it is also good for performance. 67 /// 68 /// Atomic handling. 69 /// 70 /// Ideally, every atomic store of application value should update the 71 /// corresponding shadow location in an atomic way. Unfortunately, atomic store 72 /// of two disjoint locations can not be done without severe slowdown. 73 /// 74 /// Therefore, we implement an approximation that may err on the safe side. 75 /// In this implementation, every atomically accessed location in the program 76 /// may only change from (partially) uninitialized to fully initialized, but 77 /// not the other way around. We load the shadow _after_ the application load, 78 /// and we store the shadow _before_ the app store. Also, we always store clean 79 /// shadow (if the application store is atomic). This way, if the store-load 80 /// pair constitutes a happens-before arc, shadow store and load are correctly 81 /// ordered such that the load will get either the value that was stored, or 82 /// some later value (which is always clean). 83 /// 84 /// This does not work very well with Compare-And-Swap (CAS) and 85 /// Read-Modify-Write (RMW) operations. To follow the above logic, CAS and RMW 86 /// must store the new shadow before the app operation, and load the shadow 87 /// after the app operation. Computers don't work this way. Current 88 /// implementation ignores the load aspect of CAS/RMW, always returning a clean 89 /// value. It implements the store part as a simple atomic store by storing a 90 /// clean shadow. 91 /// 92 /// Instrumenting inline assembly. 93 /// 94 /// For inline assembly code LLVM has little idea about which memory locations 95 /// become initialized depending on the arguments. It can be possible to figure 96 /// out which arguments are meant to point to inputs and outputs, but the 97 /// actual semantics can be only visible at runtime. In the Linux kernel it's 98 /// also possible that the arguments only indicate the offset for a base taken 99 /// from a segment register, so it's dangerous to treat any asm() arguments as 100 /// pointers. We take a conservative approach generating calls to 101 /// __msan_instrument_asm_store(ptr, size) 102 /// , which defer the memory unpoisoning to the runtime library. 103 /// The latter can perform more complex address checks to figure out whether 104 /// it's safe to touch the shadow memory. 105 /// Like with atomic operations, we call __msan_instrument_asm_store() before 106 /// the assembly call, so that changes to the shadow memory will be seen by 107 /// other threads together with main memory initialization. 108 /// 109 /// KernelMemorySanitizer (KMSAN) implementation. 110 /// 111 /// The major differences between KMSAN and MSan instrumentation are: 112 /// - KMSAN always tracks the origins and implies msan-keep-going=true; 113 /// - KMSAN allocates shadow and origin memory for each page separately, so 114 /// there are no explicit accesses to shadow and origin in the 115 /// instrumentation. 116 /// Shadow and origin values for a particular X-byte memory location 117 /// (X=1,2,4,8) are accessed through pointers obtained via the 118 /// __msan_metadata_ptr_for_load_X(ptr) 119 /// __msan_metadata_ptr_for_store_X(ptr) 120 /// functions. The corresponding functions check that the X-byte accesses 121 /// are possible and returns the pointers to shadow and origin memory. 122 /// Arbitrary sized accesses are handled with: 123 /// __msan_metadata_ptr_for_load_n(ptr, size) 124 /// __msan_metadata_ptr_for_store_n(ptr, size); 125 /// - TLS variables are stored in a single per-task struct. A call to a 126 /// function __msan_get_context_state() returning a pointer to that struct 127 /// is inserted into every instrumented function before the entry block; 128 /// - __msan_warning() takes a 32-bit origin parameter; 129 /// - local variables are poisoned with __msan_poison_alloca() upon function 130 /// entry and unpoisoned with __msan_unpoison_alloca() before leaving the 131 /// function; 132 /// - the pass doesn't declare any global variables or add global constructors 133 /// to the translation unit. 134 /// 135 /// Also, KMSAN currently ignores uninitialized memory passed into inline asm 136 /// calls, making sure we're on the safe side wrt. possible false positives. 137 /// 138 /// KernelMemorySanitizer only supports X86_64 at the moment. 139 /// 140 // 141 // FIXME: This sanitizer does not yet handle scalable vectors 142 // 143 //===----------------------------------------------------------------------===// 144 145 #include "llvm/Transforms/Instrumentation/MemorySanitizer.h" 146 #include "llvm/ADT/APInt.h" 147 #include "llvm/ADT/ArrayRef.h" 148 #include "llvm/ADT/DepthFirstIterator.h" 149 #include "llvm/ADT/SmallSet.h" 150 #include "llvm/ADT/SmallString.h" 151 #include "llvm/ADT/SmallVector.h" 152 #include "llvm/ADT/StringExtras.h" 153 #include "llvm/ADT/StringRef.h" 154 #include "llvm/ADT/Triple.h" 155 #include "llvm/Analysis/TargetLibraryInfo.h" 156 #include "llvm/Analysis/ValueTracking.h" 157 #include "llvm/IR/Argument.h" 158 #include "llvm/IR/Attributes.h" 159 #include "llvm/IR/BasicBlock.h" 160 #include "llvm/IR/CallingConv.h" 161 #include "llvm/IR/Constant.h" 162 #include "llvm/IR/Constants.h" 163 #include "llvm/IR/DataLayout.h" 164 #include "llvm/IR/DerivedTypes.h" 165 #include "llvm/IR/Function.h" 166 #include "llvm/IR/GlobalValue.h" 167 #include "llvm/IR/GlobalVariable.h" 168 #include "llvm/IR/IRBuilder.h" 169 #include "llvm/IR/InlineAsm.h" 170 #include "llvm/IR/InstVisitor.h" 171 #include "llvm/IR/InstrTypes.h" 172 #include "llvm/IR/Instruction.h" 173 #include "llvm/IR/Instructions.h" 174 #include "llvm/IR/IntrinsicInst.h" 175 #include "llvm/IR/Intrinsics.h" 176 #include "llvm/IR/IntrinsicsX86.h" 177 #include "llvm/IR/LLVMContext.h" 178 #include "llvm/IR/MDBuilder.h" 179 #include "llvm/IR/Module.h" 180 #include "llvm/IR/Type.h" 181 #include "llvm/IR/Value.h" 182 #include "llvm/IR/ValueMap.h" 183 #include "llvm/InitializePasses.h" 184 #include "llvm/Pass.h" 185 #include "llvm/Support/AtomicOrdering.h" 186 #include "llvm/Support/Casting.h" 187 #include "llvm/Support/CommandLine.h" 188 #include "llvm/Support/Compiler.h" 189 #include "llvm/Support/Debug.h" 190 #include "llvm/Support/ErrorHandling.h" 191 #include "llvm/Support/MathExtras.h" 192 #include "llvm/Support/raw_ostream.h" 193 #include "llvm/Transforms/Instrumentation.h" 194 #include "llvm/Transforms/Utils/BasicBlockUtils.h" 195 #include "llvm/Transforms/Utils/Local.h" 196 #include "llvm/Transforms/Utils/ModuleUtils.h" 197 #include <algorithm> 198 #include <cassert> 199 #include <cstddef> 200 #include <cstdint> 201 #include <memory> 202 #include <string> 203 #include <tuple> 204 205 using namespace llvm; 206 207 #define DEBUG_TYPE "msan" 208 209 static const unsigned kOriginSize = 4; 210 static const Align kMinOriginAlignment = Align(4); 211 static const Align kShadowTLSAlignment = Align(8); 212 213 // These constants must be kept in sync with the ones in msan.h. 214 static const unsigned kParamTLSSize = 800; 215 static const unsigned kRetvalTLSSize = 800; 216 217 // Accesses sizes are powers of two: 1, 2, 4, 8. 218 static const size_t kNumberOfAccessSizes = 4; 219 220 /// Track origins of uninitialized values. 221 /// 222 /// Adds a section to MemorySanitizer report that points to the allocation 223 /// (stack or heap) the uninitialized bits came from originally. 224 static cl::opt<int> ClTrackOrigins("msan-track-origins", 225 cl::desc("Track origins (allocation sites) of poisoned memory"), 226 cl::Hidden, cl::init(0)); 227 228 static cl::opt<bool> ClKeepGoing("msan-keep-going", 229 cl::desc("keep going after reporting a UMR"), 230 cl::Hidden, cl::init(false)); 231 232 static cl::opt<bool> ClPoisonStack("msan-poison-stack", 233 cl::desc("poison uninitialized stack variables"), 234 cl::Hidden, cl::init(true)); 235 236 static cl::opt<bool> ClPoisonStackWithCall("msan-poison-stack-with-call", 237 cl::desc("poison uninitialized stack variables with a call"), 238 cl::Hidden, cl::init(false)); 239 240 static cl::opt<int> ClPoisonStackPattern("msan-poison-stack-pattern", 241 cl::desc("poison uninitialized stack variables with the given pattern"), 242 cl::Hidden, cl::init(0xff)); 243 244 static cl::opt<bool> ClPoisonUndef("msan-poison-undef", 245 cl::desc("poison undef temps"), 246 cl::Hidden, cl::init(true)); 247 248 static cl::opt<bool> ClHandleICmp("msan-handle-icmp", 249 cl::desc("propagate shadow through ICmpEQ and ICmpNE"), 250 cl::Hidden, cl::init(true)); 251 252 static cl::opt<bool> ClHandleICmpExact("msan-handle-icmp-exact", 253 cl::desc("exact handling of relational integer ICmp"), 254 cl::Hidden, cl::init(false)); 255 256 static cl::opt<bool> ClHandleLifetimeIntrinsics( 257 "msan-handle-lifetime-intrinsics", 258 cl::desc( 259 "when possible, poison scoped variables at the beginning of the scope " 260 "(slower, but more precise)"), 261 cl::Hidden, cl::init(true)); 262 263 // When compiling the Linux kernel, we sometimes see false positives related to 264 // MSan being unable to understand that inline assembly calls may initialize 265 // local variables. 266 // This flag makes the compiler conservatively unpoison every memory location 267 // passed into an assembly call. Note that this may cause false positives. 268 // Because it's impossible to figure out the array sizes, we can only unpoison 269 // the first sizeof(type) bytes for each type* pointer. 270 // The instrumentation is only enabled in KMSAN builds, and only if 271 // -msan-handle-asm-conservative is on. This is done because we may want to 272 // quickly disable assembly instrumentation when it breaks. 273 static cl::opt<bool> ClHandleAsmConservative( 274 "msan-handle-asm-conservative", 275 cl::desc("conservative handling of inline assembly"), cl::Hidden, 276 cl::init(true)); 277 278 // This flag controls whether we check the shadow of the address 279 // operand of load or store. Such bugs are very rare, since load from 280 // a garbage address typically results in SEGV, but still happen 281 // (e.g. only lower bits of address are garbage, or the access happens 282 // early at program startup where malloc-ed memory is more likely to 283 // be zeroed. As of 2012-08-28 this flag adds 20% slowdown. 284 static cl::opt<bool> ClCheckAccessAddress("msan-check-access-address", 285 cl::desc("report accesses through a pointer which has poisoned shadow"), 286 cl::Hidden, cl::init(true)); 287 288 static cl::opt<bool> ClEagerChecks( 289 "msan-eager-checks", 290 cl::desc("check arguments and return values at function call boundaries"), 291 cl::Hidden, cl::init(false)); 292 293 static cl::opt<bool> ClDumpStrictInstructions("msan-dump-strict-instructions", 294 cl::desc("print out instructions with default strict semantics"), 295 cl::Hidden, cl::init(false)); 296 297 static cl::opt<int> ClInstrumentationWithCallThreshold( 298 "msan-instrumentation-with-call-threshold", 299 cl::desc( 300 "If the function being instrumented requires more than " 301 "this number of checks and origin stores, use callbacks instead of " 302 "inline checks (-1 means never use callbacks)."), 303 cl::Hidden, cl::init(3500)); 304 305 static cl::opt<bool> 306 ClEnableKmsan("msan-kernel", 307 cl::desc("Enable KernelMemorySanitizer instrumentation"), 308 cl::Hidden, cl::init(false)); 309 310 // This is an experiment to enable handling of cases where shadow is a non-zero 311 // compile-time constant. For some unexplainable reason they were silently 312 // ignored in the instrumentation. 313 static cl::opt<bool> ClCheckConstantShadow("msan-check-constant-shadow", 314 cl::desc("Insert checks for constant shadow values"), 315 cl::Hidden, cl::init(false)); 316 317 // This is off by default because of a bug in gold: 318 // https://sourceware.org/bugzilla/show_bug.cgi?id=19002 319 static cl::opt<bool> ClWithComdat("msan-with-comdat", 320 cl::desc("Place MSan constructors in comdat sections"), 321 cl::Hidden, cl::init(false)); 322 323 // These options allow to specify custom memory map parameters 324 // See MemoryMapParams for details. 325 static cl::opt<uint64_t> ClAndMask("msan-and-mask", 326 cl::desc("Define custom MSan AndMask"), 327 cl::Hidden, cl::init(0)); 328 329 static cl::opt<uint64_t> ClXorMask("msan-xor-mask", 330 cl::desc("Define custom MSan XorMask"), 331 cl::Hidden, cl::init(0)); 332 333 static cl::opt<uint64_t> ClShadowBase("msan-shadow-base", 334 cl::desc("Define custom MSan ShadowBase"), 335 cl::Hidden, cl::init(0)); 336 337 static cl::opt<uint64_t> ClOriginBase("msan-origin-base", 338 cl::desc("Define custom MSan OriginBase"), 339 cl::Hidden, cl::init(0)); 340 341 static const char *const kMsanModuleCtorName = "msan.module_ctor"; 342 static const char *const kMsanInitName = "__msan_init"; 343 344 namespace { 345 346 // Memory map parameters used in application-to-shadow address calculation. 347 // Offset = (Addr & ~AndMask) ^ XorMask 348 // Shadow = ShadowBase + Offset 349 // Origin = OriginBase + Offset 350 struct MemoryMapParams { 351 uint64_t AndMask; 352 uint64_t XorMask; 353 uint64_t ShadowBase; 354 uint64_t OriginBase; 355 }; 356 357 struct PlatformMemoryMapParams { 358 const MemoryMapParams *bits32; 359 const MemoryMapParams *bits64; 360 }; 361 362 } // end anonymous namespace 363 364 // i386 Linux 365 static const MemoryMapParams Linux_I386_MemoryMapParams = { 366 0x000080000000, // AndMask 367 0, // XorMask (not used) 368 0, // ShadowBase (not used) 369 0x000040000000, // OriginBase 370 }; 371 372 // x86_64 Linux 373 static const MemoryMapParams Linux_X86_64_MemoryMapParams = { 374 #ifdef MSAN_LINUX_X86_64_OLD_MAPPING 375 0x400000000000, // AndMask 376 0, // XorMask (not used) 377 0, // ShadowBase (not used) 378 0x200000000000, // OriginBase 379 #else 380 0, // AndMask (not used) 381 0x500000000000, // XorMask 382 0, // ShadowBase (not used) 383 0x100000000000, // OriginBase 384 #endif 385 }; 386 387 // mips64 Linux 388 static const MemoryMapParams Linux_MIPS64_MemoryMapParams = { 389 0, // AndMask (not used) 390 0x008000000000, // XorMask 391 0, // ShadowBase (not used) 392 0x002000000000, // OriginBase 393 }; 394 395 // ppc64 Linux 396 static const MemoryMapParams Linux_PowerPC64_MemoryMapParams = { 397 0xE00000000000, // AndMask 398 0x100000000000, // XorMask 399 0x080000000000, // ShadowBase 400 0x1C0000000000, // OriginBase 401 }; 402 403 // s390x Linux 404 static const MemoryMapParams Linux_S390X_MemoryMapParams = { 405 0xC00000000000, // AndMask 406 0, // XorMask (not used) 407 0x080000000000, // ShadowBase 408 0x1C0000000000, // OriginBase 409 }; 410 411 // aarch64 Linux 412 static const MemoryMapParams Linux_AArch64_MemoryMapParams = { 413 0, // AndMask (not used) 414 0x06000000000, // XorMask 415 0, // ShadowBase (not used) 416 0x01000000000, // OriginBase 417 }; 418 419 // i386 FreeBSD 420 static const MemoryMapParams FreeBSD_I386_MemoryMapParams = { 421 0x000180000000, // AndMask 422 0x000040000000, // XorMask 423 0x000020000000, // ShadowBase 424 0x000700000000, // OriginBase 425 }; 426 427 // x86_64 FreeBSD 428 static const MemoryMapParams FreeBSD_X86_64_MemoryMapParams = { 429 0xc00000000000, // AndMask 430 0x200000000000, // XorMask 431 0x100000000000, // ShadowBase 432 0x380000000000, // OriginBase 433 }; 434 435 // x86_64 NetBSD 436 static const MemoryMapParams NetBSD_X86_64_MemoryMapParams = { 437 0, // AndMask 438 0x500000000000, // XorMask 439 0, // ShadowBase 440 0x100000000000, // OriginBase 441 }; 442 443 static const PlatformMemoryMapParams Linux_X86_MemoryMapParams = { 444 &Linux_I386_MemoryMapParams, 445 &Linux_X86_64_MemoryMapParams, 446 }; 447 448 static const PlatformMemoryMapParams Linux_MIPS_MemoryMapParams = { 449 nullptr, 450 &Linux_MIPS64_MemoryMapParams, 451 }; 452 453 static const PlatformMemoryMapParams Linux_PowerPC_MemoryMapParams = { 454 nullptr, 455 &Linux_PowerPC64_MemoryMapParams, 456 }; 457 458 static const PlatformMemoryMapParams Linux_S390_MemoryMapParams = { 459 nullptr, 460 &Linux_S390X_MemoryMapParams, 461 }; 462 463 static const PlatformMemoryMapParams Linux_ARM_MemoryMapParams = { 464 nullptr, 465 &Linux_AArch64_MemoryMapParams, 466 }; 467 468 static const PlatformMemoryMapParams FreeBSD_X86_MemoryMapParams = { 469 &FreeBSD_I386_MemoryMapParams, 470 &FreeBSD_X86_64_MemoryMapParams, 471 }; 472 473 static const PlatformMemoryMapParams NetBSD_X86_MemoryMapParams = { 474 nullptr, 475 &NetBSD_X86_64_MemoryMapParams, 476 }; 477 478 namespace { 479 480 /// Instrument functions of a module to detect uninitialized reads. 481 /// 482 /// Instantiating MemorySanitizer inserts the msan runtime library API function 483 /// declarations into the module if they don't exist already. Instantiating 484 /// ensures the __msan_init function is in the list of global constructors for 485 /// the module. 486 class MemorySanitizer { 487 public: 488 MemorySanitizer(Module &M, MemorySanitizerOptions Options) 489 : CompileKernel(Options.Kernel), TrackOrigins(Options.TrackOrigins), 490 Recover(Options.Recover) { 491 initializeModule(M); 492 } 493 494 // MSan cannot be moved or copied because of MapParams. 495 MemorySanitizer(MemorySanitizer &&) = delete; 496 MemorySanitizer &operator=(MemorySanitizer &&) = delete; 497 MemorySanitizer(const MemorySanitizer &) = delete; 498 MemorySanitizer &operator=(const MemorySanitizer &) = delete; 499 500 bool sanitizeFunction(Function &F, TargetLibraryInfo &TLI); 501 502 private: 503 friend struct MemorySanitizerVisitor; 504 friend struct VarArgAMD64Helper; 505 friend struct VarArgMIPS64Helper; 506 friend struct VarArgAArch64Helper; 507 friend struct VarArgPowerPC64Helper; 508 friend struct VarArgSystemZHelper; 509 510 void initializeModule(Module &M); 511 void initializeCallbacks(Module &M); 512 void createKernelApi(Module &M); 513 void createUserspaceApi(Module &M); 514 515 /// True if we're compiling the Linux kernel. 516 bool CompileKernel; 517 /// Track origins (allocation points) of uninitialized values. 518 int TrackOrigins; 519 bool Recover; 520 521 LLVMContext *C; 522 Type *IntptrTy; 523 Type *OriginTy; 524 525 // XxxTLS variables represent the per-thread state in MSan and per-task state 526 // in KMSAN. 527 // For the userspace these point to thread-local globals. In the kernel land 528 // they point to the members of a per-task struct obtained via a call to 529 // __msan_get_context_state(). 530 531 /// Thread-local shadow storage for function parameters. 532 Value *ParamTLS; 533 534 /// Thread-local origin storage for function parameters. 535 Value *ParamOriginTLS; 536 537 /// Thread-local shadow storage for function return value. 538 Value *RetvalTLS; 539 540 /// Thread-local origin storage for function return value. 541 Value *RetvalOriginTLS; 542 543 /// Thread-local shadow storage for in-register va_arg function 544 /// parameters (x86_64-specific). 545 Value *VAArgTLS; 546 547 /// Thread-local shadow storage for in-register va_arg function 548 /// parameters (x86_64-specific). 549 Value *VAArgOriginTLS; 550 551 /// Thread-local shadow storage for va_arg overflow area 552 /// (x86_64-specific). 553 Value *VAArgOverflowSizeTLS; 554 555 /// Are the instrumentation callbacks set up? 556 bool CallbacksInitialized = false; 557 558 /// The run-time callback to print a warning. 559 FunctionCallee WarningFn; 560 561 // These arrays are indexed by log2(AccessSize). 562 FunctionCallee MaybeWarningFn[kNumberOfAccessSizes]; 563 FunctionCallee MaybeStoreOriginFn[kNumberOfAccessSizes]; 564 565 /// Run-time helper that generates a new origin value for a stack 566 /// allocation. 567 FunctionCallee MsanSetAllocaOrigin4Fn; 568 569 /// Run-time helper that poisons stack on function entry. 570 FunctionCallee MsanPoisonStackFn; 571 572 /// Run-time helper that records a store (or any event) of an 573 /// uninitialized value and returns an updated origin id encoding this info. 574 FunctionCallee MsanChainOriginFn; 575 576 /// Run-time helper that paints an origin over a region. 577 FunctionCallee MsanSetOriginFn; 578 579 /// MSan runtime replacements for memmove, memcpy and memset. 580 FunctionCallee MemmoveFn, MemcpyFn, MemsetFn; 581 582 /// KMSAN callback for task-local function argument shadow. 583 StructType *MsanContextStateTy; 584 FunctionCallee MsanGetContextStateFn; 585 586 /// Functions for poisoning/unpoisoning local variables 587 FunctionCallee MsanPoisonAllocaFn, MsanUnpoisonAllocaFn; 588 589 /// Each of the MsanMetadataPtrXxx functions returns a pair of shadow/origin 590 /// pointers. 591 FunctionCallee MsanMetadataPtrForLoadN, MsanMetadataPtrForStoreN; 592 FunctionCallee MsanMetadataPtrForLoad_1_8[4]; 593 FunctionCallee MsanMetadataPtrForStore_1_8[4]; 594 FunctionCallee MsanInstrumentAsmStoreFn; 595 596 /// Helper to choose between different MsanMetadataPtrXxx(). 597 FunctionCallee getKmsanShadowOriginAccessFn(bool isStore, int size); 598 599 /// Memory map parameters used in application-to-shadow calculation. 600 const MemoryMapParams *MapParams; 601 602 /// Custom memory map parameters used when -msan-shadow-base or 603 // -msan-origin-base is provided. 604 MemoryMapParams CustomMapParams; 605 606 MDNode *ColdCallWeights; 607 608 /// Branch weights for origin store. 609 MDNode *OriginStoreWeights; 610 }; 611 612 void insertModuleCtor(Module &M) { 613 getOrCreateSanitizerCtorAndInitFunctions( 614 M, kMsanModuleCtorName, kMsanInitName, 615 /*InitArgTypes=*/{}, 616 /*InitArgs=*/{}, 617 // This callback is invoked when the functions are created the first 618 // time. Hook them into the global ctors list in that case: 619 [&](Function *Ctor, FunctionCallee) { 620 if (!ClWithComdat) { 621 appendToGlobalCtors(M, Ctor, 0); 622 return; 623 } 624 Comdat *MsanCtorComdat = M.getOrInsertComdat(kMsanModuleCtorName); 625 Ctor->setComdat(MsanCtorComdat); 626 appendToGlobalCtors(M, Ctor, 0, Ctor); 627 }); 628 } 629 630 /// A legacy function pass for msan instrumentation. 631 /// 632 /// Instruments functions to detect uninitialized reads. 633 struct MemorySanitizerLegacyPass : public FunctionPass { 634 // Pass identification, replacement for typeid. 635 static char ID; 636 637 MemorySanitizerLegacyPass(MemorySanitizerOptions Options = {}) 638 : FunctionPass(ID), Options(Options) { 639 initializeMemorySanitizerLegacyPassPass(*PassRegistry::getPassRegistry()); 640 } 641 StringRef getPassName() const override { return "MemorySanitizerLegacyPass"; } 642 643 void getAnalysisUsage(AnalysisUsage &AU) const override { 644 AU.addRequired<TargetLibraryInfoWrapperPass>(); 645 } 646 647 bool runOnFunction(Function &F) override { 648 return MSan->sanitizeFunction( 649 F, getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(F)); 650 } 651 bool doInitialization(Module &M) override; 652 653 Optional<MemorySanitizer> MSan; 654 MemorySanitizerOptions Options; 655 }; 656 657 template <class T> T getOptOrDefault(const cl::opt<T> &Opt, T Default) { 658 return (Opt.getNumOccurrences() > 0) ? Opt : Default; 659 } 660 661 } // end anonymous namespace 662 663 MemorySanitizerOptions::MemorySanitizerOptions(int TO, bool R, bool K) 664 : Kernel(getOptOrDefault(ClEnableKmsan, K)), 665 TrackOrigins(getOptOrDefault(ClTrackOrigins, Kernel ? 2 : TO)), 666 Recover(getOptOrDefault(ClKeepGoing, Kernel || R)) {} 667 668 PreservedAnalyses MemorySanitizerPass::run(Function &F, 669 FunctionAnalysisManager &FAM) { 670 MemorySanitizer Msan(*F.getParent(), Options); 671 if (Msan.sanitizeFunction(F, FAM.getResult<TargetLibraryAnalysis>(F))) 672 return PreservedAnalyses::none(); 673 return PreservedAnalyses::all(); 674 } 675 676 PreservedAnalyses MemorySanitizerPass::run(Module &M, 677 ModuleAnalysisManager &AM) { 678 if (Options.Kernel) 679 return PreservedAnalyses::all(); 680 insertModuleCtor(M); 681 return PreservedAnalyses::none(); 682 } 683 684 char MemorySanitizerLegacyPass::ID = 0; 685 686 INITIALIZE_PASS_BEGIN(MemorySanitizerLegacyPass, "msan", 687 "MemorySanitizer: detects uninitialized reads.", false, 688 false) 689 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass) 690 INITIALIZE_PASS_END(MemorySanitizerLegacyPass, "msan", 691 "MemorySanitizer: detects uninitialized reads.", false, 692 false) 693 694 FunctionPass * 695 llvm::createMemorySanitizerLegacyPassPass(MemorySanitizerOptions Options) { 696 return new MemorySanitizerLegacyPass(Options); 697 } 698 699 /// Create a non-const global initialized with the given string. 700 /// 701 /// Creates a writable global for Str so that we can pass it to the 702 /// run-time lib. Runtime uses first 4 bytes of the string to store the 703 /// frame ID, so the string needs to be mutable. 704 static GlobalVariable *createPrivateNonConstGlobalForString(Module &M, 705 StringRef Str) { 706 Constant *StrConst = ConstantDataArray::getString(M.getContext(), Str); 707 return new GlobalVariable(M, StrConst->getType(), /*isConstant=*/false, 708 GlobalValue::PrivateLinkage, StrConst, ""); 709 } 710 711 /// Create KMSAN API callbacks. 712 void MemorySanitizer::createKernelApi(Module &M) { 713 IRBuilder<> IRB(*C); 714 715 // These will be initialized in insertKmsanPrologue(). 716 RetvalTLS = nullptr; 717 RetvalOriginTLS = nullptr; 718 ParamTLS = nullptr; 719 ParamOriginTLS = nullptr; 720 VAArgTLS = nullptr; 721 VAArgOriginTLS = nullptr; 722 VAArgOverflowSizeTLS = nullptr; 723 724 WarningFn = M.getOrInsertFunction("__msan_warning", IRB.getVoidTy(), 725 IRB.getInt32Ty()); 726 // Requests the per-task context state (kmsan_context_state*) from the 727 // runtime library. 728 MsanContextStateTy = StructType::get( 729 ArrayType::get(IRB.getInt64Ty(), kParamTLSSize / 8), 730 ArrayType::get(IRB.getInt64Ty(), kRetvalTLSSize / 8), 731 ArrayType::get(IRB.getInt64Ty(), kParamTLSSize / 8), 732 ArrayType::get(IRB.getInt64Ty(), kParamTLSSize / 8), /* va_arg_origin */ 733 IRB.getInt64Ty(), ArrayType::get(OriginTy, kParamTLSSize / 4), OriginTy, 734 OriginTy); 735 MsanGetContextStateFn = M.getOrInsertFunction( 736 "__msan_get_context_state", PointerType::get(MsanContextStateTy, 0)); 737 738 Type *RetTy = StructType::get(PointerType::get(IRB.getInt8Ty(), 0), 739 PointerType::get(IRB.getInt32Ty(), 0)); 740 741 for (int ind = 0, size = 1; ind < 4; ind++, size <<= 1) { 742 std::string name_load = 743 "__msan_metadata_ptr_for_load_" + std::to_string(size); 744 std::string name_store = 745 "__msan_metadata_ptr_for_store_" + std::to_string(size); 746 MsanMetadataPtrForLoad_1_8[ind] = M.getOrInsertFunction( 747 name_load, RetTy, PointerType::get(IRB.getInt8Ty(), 0)); 748 MsanMetadataPtrForStore_1_8[ind] = M.getOrInsertFunction( 749 name_store, RetTy, PointerType::get(IRB.getInt8Ty(), 0)); 750 } 751 752 MsanMetadataPtrForLoadN = M.getOrInsertFunction( 753 "__msan_metadata_ptr_for_load_n", RetTy, 754 PointerType::get(IRB.getInt8Ty(), 0), IRB.getInt64Ty()); 755 MsanMetadataPtrForStoreN = M.getOrInsertFunction( 756 "__msan_metadata_ptr_for_store_n", RetTy, 757 PointerType::get(IRB.getInt8Ty(), 0), IRB.getInt64Ty()); 758 759 // Functions for poisoning and unpoisoning memory. 760 MsanPoisonAllocaFn = 761 M.getOrInsertFunction("__msan_poison_alloca", IRB.getVoidTy(), 762 IRB.getInt8PtrTy(), IntptrTy, IRB.getInt8PtrTy()); 763 MsanUnpoisonAllocaFn = M.getOrInsertFunction( 764 "__msan_unpoison_alloca", IRB.getVoidTy(), IRB.getInt8PtrTy(), IntptrTy); 765 } 766 767 static Constant *getOrInsertGlobal(Module &M, StringRef Name, Type *Ty) { 768 return M.getOrInsertGlobal(Name, Ty, [&] { 769 return new GlobalVariable(M, Ty, false, GlobalVariable::ExternalLinkage, 770 nullptr, Name, nullptr, 771 GlobalVariable::InitialExecTLSModel); 772 }); 773 } 774 775 /// Insert declarations for userspace-specific functions and globals. 776 void MemorySanitizer::createUserspaceApi(Module &M) { 777 IRBuilder<> IRB(*C); 778 779 // Create the callback. 780 // FIXME: this function should have "Cold" calling conv, 781 // which is not yet implemented. 782 StringRef WarningFnName = Recover ? "__msan_warning_with_origin" 783 : "__msan_warning_with_origin_noreturn"; 784 WarningFn = 785 M.getOrInsertFunction(WarningFnName, IRB.getVoidTy(), IRB.getInt32Ty()); 786 787 // Create the global TLS variables. 788 RetvalTLS = 789 getOrInsertGlobal(M, "__msan_retval_tls", 790 ArrayType::get(IRB.getInt64Ty(), kRetvalTLSSize / 8)); 791 792 RetvalOriginTLS = getOrInsertGlobal(M, "__msan_retval_origin_tls", OriginTy); 793 794 ParamTLS = 795 getOrInsertGlobal(M, "__msan_param_tls", 796 ArrayType::get(IRB.getInt64Ty(), kParamTLSSize / 8)); 797 798 ParamOriginTLS = 799 getOrInsertGlobal(M, "__msan_param_origin_tls", 800 ArrayType::get(OriginTy, kParamTLSSize / 4)); 801 802 VAArgTLS = 803 getOrInsertGlobal(M, "__msan_va_arg_tls", 804 ArrayType::get(IRB.getInt64Ty(), kParamTLSSize / 8)); 805 806 VAArgOriginTLS = 807 getOrInsertGlobal(M, "__msan_va_arg_origin_tls", 808 ArrayType::get(OriginTy, kParamTLSSize / 4)); 809 810 VAArgOverflowSizeTLS = 811 getOrInsertGlobal(M, "__msan_va_arg_overflow_size_tls", IRB.getInt64Ty()); 812 813 for (size_t AccessSizeIndex = 0; AccessSizeIndex < kNumberOfAccessSizes; 814 AccessSizeIndex++) { 815 unsigned AccessSize = 1 << AccessSizeIndex; 816 std::string FunctionName = "__msan_maybe_warning_" + itostr(AccessSize); 817 SmallVector<std::pair<unsigned, Attribute>, 2> MaybeWarningFnAttrs; 818 MaybeWarningFnAttrs.push_back(std::make_pair( 819 AttributeList::FirstArgIndex, Attribute::get(*C, Attribute::ZExt))); 820 MaybeWarningFnAttrs.push_back(std::make_pair( 821 AttributeList::FirstArgIndex + 1, Attribute::get(*C, Attribute::ZExt))); 822 MaybeWarningFn[AccessSizeIndex] = M.getOrInsertFunction( 823 FunctionName, AttributeList::get(*C, MaybeWarningFnAttrs), 824 IRB.getVoidTy(), IRB.getIntNTy(AccessSize * 8), IRB.getInt32Ty()); 825 826 FunctionName = "__msan_maybe_store_origin_" + itostr(AccessSize); 827 SmallVector<std::pair<unsigned, Attribute>, 2> MaybeStoreOriginFnAttrs; 828 MaybeStoreOriginFnAttrs.push_back(std::make_pair( 829 AttributeList::FirstArgIndex, Attribute::get(*C, Attribute::ZExt))); 830 MaybeStoreOriginFnAttrs.push_back(std::make_pair( 831 AttributeList::FirstArgIndex + 2, Attribute::get(*C, Attribute::ZExt))); 832 MaybeStoreOriginFn[AccessSizeIndex] = M.getOrInsertFunction( 833 FunctionName, AttributeList::get(*C, MaybeStoreOriginFnAttrs), 834 IRB.getVoidTy(), IRB.getIntNTy(AccessSize * 8), IRB.getInt8PtrTy(), 835 IRB.getInt32Ty()); 836 } 837 838 MsanSetAllocaOrigin4Fn = M.getOrInsertFunction( 839 "__msan_set_alloca_origin4", IRB.getVoidTy(), IRB.getInt8PtrTy(), IntptrTy, 840 IRB.getInt8PtrTy(), IntptrTy); 841 MsanPoisonStackFn = 842 M.getOrInsertFunction("__msan_poison_stack", IRB.getVoidTy(), 843 IRB.getInt8PtrTy(), IntptrTy); 844 } 845 846 /// Insert extern declaration of runtime-provided functions and globals. 847 void MemorySanitizer::initializeCallbacks(Module &M) { 848 // Only do this once. 849 if (CallbacksInitialized) 850 return; 851 852 IRBuilder<> IRB(*C); 853 // Initialize callbacks that are common for kernel and userspace 854 // instrumentation. 855 MsanChainOriginFn = M.getOrInsertFunction( 856 "__msan_chain_origin", IRB.getInt32Ty(), IRB.getInt32Ty()); 857 MsanSetOriginFn = 858 M.getOrInsertFunction("__msan_set_origin", IRB.getVoidTy(), 859 IRB.getInt8PtrTy(), IntptrTy, IRB.getInt32Ty()); 860 MemmoveFn = M.getOrInsertFunction( 861 "__msan_memmove", IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), 862 IRB.getInt8PtrTy(), IntptrTy); 863 MemcpyFn = M.getOrInsertFunction( 864 "__msan_memcpy", IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), 865 IntptrTy); 866 MemsetFn = M.getOrInsertFunction( 867 "__msan_memset", IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IRB.getInt32Ty(), 868 IntptrTy); 869 870 MsanInstrumentAsmStoreFn = 871 M.getOrInsertFunction("__msan_instrument_asm_store", IRB.getVoidTy(), 872 PointerType::get(IRB.getInt8Ty(), 0), IntptrTy); 873 874 if (CompileKernel) { 875 createKernelApi(M); 876 } else { 877 createUserspaceApi(M); 878 } 879 CallbacksInitialized = true; 880 } 881 882 FunctionCallee MemorySanitizer::getKmsanShadowOriginAccessFn(bool isStore, 883 int size) { 884 FunctionCallee *Fns = 885 isStore ? MsanMetadataPtrForStore_1_8 : MsanMetadataPtrForLoad_1_8; 886 switch (size) { 887 case 1: 888 return Fns[0]; 889 case 2: 890 return Fns[1]; 891 case 4: 892 return Fns[2]; 893 case 8: 894 return Fns[3]; 895 default: 896 return nullptr; 897 } 898 } 899 900 /// Module-level initialization. 901 /// 902 /// inserts a call to __msan_init to the module's constructor list. 903 void MemorySanitizer::initializeModule(Module &M) { 904 auto &DL = M.getDataLayout(); 905 906 bool ShadowPassed = ClShadowBase.getNumOccurrences() > 0; 907 bool OriginPassed = ClOriginBase.getNumOccurrences() > 0; 908 // Check the overrides first 909 if (ShadowPassed || OriginPassed) { 910 CustomMapParams.AndMask = ClAndMask; 911 CustomMapParams.XorMask = ClXorMask; 912 CustomMapParams.ShadowBase = ClShadowBase; 913 CustomMapParams.OriginBase = ClOriginBase; 914 MapParams = &CustomMapParams; 915 } else { 916 Triple TargetTriple(M.getTargetTriple()); 917 switch (TargetTriple.getOS()) { 918 case Triple::FreeBSD: 919 switch (TargetTriple.getArch()) { 920 case Triple::x86_64: 921 MapParams = FreeBSD_X86_MemoryMapParams.bits64; 922 break; 923 case Triple::x86: 924 MapParams = FreeBSD_X86_MemoryMapParams.bits32; 925 break; 926 default: 927 report_fatal_error("unsupported architecture"); 928 } 929 break; 930 case Triple::NetBSD: 931 switch (TargetTriple.getArch()) { 932 case Triple::x86_64: 933 MapParams = NetBSD_X86_MemoryMapParams.bits64; 934 break; 935 default: 936 report_fatal_error("unsupported architecture"); 937 } 938 break; 939 case Triple::Linux: 940 switch (TargetTriple.getArch()) { 941 case Triple::x86_64: 942 MapParams = Linux_X86_MemoryMapParams.bits64; 943 break; 944 case Triple::x86: 945 MapParams = Linux_X86_MemoryMapParams.bits32; 946 break; 947 case Triple::mips64: 948 case Triple::mips64el: 949 MapParams = Linux_MIPS_MemoryMapParams.bits64; 950 break; 951 case Triple::ppc64: 952 case Triple::ppc64le: 953 MapParams = Linux_PowerPC_MemoryMapParams.bits64; 954 break; 955 case Triple::systemz: 956 MapParams = Linux_S390_MemoryMapParams.bits64; 957 break; 958 case Triple::aarch64: 959 case Triple::aarch64_be: 960 MapParams = Linux_ARM_MemoryMapParams.bits64; 961 break; 962 default: 963 report_fatal_error("unsupported architecture"); 964 } 965 break; 966 default: 967 report_fatal_error("unsupported operating system"); 968 } 969 } 970 971 C = &(M.getContext()); 972 IRBuilder<> IRB(*C); 973 IntptrTy = IRB.getIntPtrTy(DL); 974 OriginTy = IRB.getInt32Ty(); 975 976 ColdCallWeights = MDBuilder(*C).createBranchWeights(1, 1000); 977 OriginStoreWeights = MDBuilder(*C).createBranchWeights(1, 1000); 978 979 if (!CompileKernel) { 980 if (TrackOrigins) 981 M.getOrInsertGlobal("__msan_track_origins", IRB.getInt32Ty(), [&] { 982 return new GlobalVariable( 983 M, IRB.getInt32Ty(), true, GlobalValue::WeakODRLinkage, 984 IRB.getInt32(TrackOrigins), "__msan_track_origins"); 985 }); 986 987 if (Recover) 988 M.getOrInsertGlobal("__msan_keep_going", IRB.getInt32Ty(), [&] { 989 return new GlobalVariable(M, IRB.getInt32Ty(), true, 990 GlobalValue::WeakODRLinkage, 991 IRB.getInt32(Recover), "__msan_keep_going"); 992 }); 993 } 994 } 995 996 bool MemorySanitizerLegacyPass::doInitialization(Module &M) { 997 if (!Options.Kernel) 998 insertModuleCtor(M); 999 MSan.emplace(M, Options); 1000 return true; 1001 } 1002 1003 namespace { 1004 1005 /// A helper class that handles instrumentation of VarArg 1006 /// functions on a particular platform. 1007 /// 1008 /// Implementations are expected to insert the instrumentation 1009 /// necessary to propagate argument shadow through VarArg function 1010 /// calls. Visit* methods are called during an InstVisitor pass over 1011 /// the function, and should avoid creating new basic blocks. A new 1012 /// instance of this class is created for each instrumented function. 1013 struct VarArgHelper { 1014 virtual ~VarArgHelper() = default; 1015 1016 /// Visit a CallBase. 1017 virtual void visitCallBase(CallBase &CB, IRBuilder<> &IRB) = 0; 1018 1019 /// Visit a va_start call. 1020 virtual void visitVAStartInst(VAStartInst &I) = 0; 1021 1022 /// Visit a va_copy call. 1023 virtual void visitVACopyInst(VACopyInst &I) = 0; 1024 1025 /// Finalize function instrumentation. 1026 /// 1027 /// This method is called after visiting all interesting (see above) 1028 /// instructions in a function. 1029 virtual void finalizeInstrumentation() = 0; 1030 }; 1031 1032 struct MemorySanitizerVisitor; 1033 1034 } // end anonymous namespace 1035 1036 static VarArgHelper *CreateVarArgHelper(Function &Func, MemorySanitizer &Msan, 1037 MemorySanitizerVisitor &Visitor); 1038 1039 static unsigned TypeSizeToSizeIndex(unsigned TypeSize) { 1040 if (TypeSize <= 8) return 0; 1041 return Log2_32_Ceil((TypeSize + 7) / 8); 1042 } 1043 1044 namespace { 1045 1046 /// This class does all the work for a given function. Store and Load 1047 /// instructions store and load corresponding shadow and origin 1048 /// values. Most instructions propagate shadow from arguments to their 1049 /// return values. Certain instructions (most importantly, BranchInst) 1050 /// test their argument shadow and print reports (with a runtime call) if it's 1051 /// non-zero. 1052 struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> { 1053 Function &F; 1054 MemorySanitizer &MS; 1055 SmallVector<PHINode *, 16> ShadowPHINodes, OriginPHINodes; 1056 ValueMap<Value*, Value*> ShadowMap, OriginMap; 1057 std::unique_ptr<VarArgHelper> VAHelper; 1058 const TargetLibraryInfo *TLI; 1059 Instruction *FnPrologueEnd; 1060 1061 // The following flags disable parts of MSan instrumentation based on 1062 // exclusion list contents and command-line options. 1063 bool InsertChecks; 1064 bool PropagateShadow; 1065 bool PoisonStack; 1066 bool PoisonUndef; 1067 1068 struct ShadowOriginAndInsertPoint { 1069 Value *Shadow; 1070 Value *Origin; 1071 Instruction *OrigIns; 1072 1073 ShadowOriginAndInsertPoint(Value *S, Value *O, Instruction *I) 1074 : Shadow(S), Origin(O), OrigIns(I) {} 1075 }; 1076 SmallVector<ShadowOriginAndInsertPoint, 16> InstrumentationList; 1077 bool InstrumentLifetimeStart = ClHandleLifetimeIntrinsics; 1078 SmallSet<AllocaInst *, 16> AllocaSet; 1079 SmallVector<std::pair<IntrinsicInst *, AllocaInst *>, 16> LifetimeStartList; 1080 SmallVector<StoreInst *, 16> StoreList; 1081 1082 MemorySanitizerVisitor(Function &F, MemorySanitizer &MS, 1083 const TargetLibraryInfo &TLI) 1084 : F(F), MS(MS), VAHelper(CreateVarArgHelper(F, MS, *this)), TLI(&TLI) { 1085 bool SanitizeFunction = F.hasFnAttribute(Attribute::SanitizeMemory); 1086 InsertChecks = SanitizeFunction; 1087 PropagateShadow = SanitizeFunction; 1088 PoisonStack = SanitizeFunction && ClPoisonStack; 1089 PoisonUndef = SanitizeFunction && ClPoisonUndef; 1090 1091 // In the presence of unreachable blocks, we may see Phi nodes with 1092 // incoming nodes from such blocks. Since InstVisitor skips unreachable 1093 // blocks, such nodes will not have any shadow value associated with them. 1094 // It's easier to remove unreachable blocks than deal with missing shadow. 1095 removeUnreachableBlocks(F); 1096 1097 MS.initializeCallbacks(*F.getParent()); 1098 FnPrologueEnd = IRBuilder<>(F.getEntryBlock().getFirstNonPHI()) 1099 .CreateIntrinsic(Intrinsic::donothing, {}, {}); 1100 1101 if (MS.CompileKernel) { 1102 IRBuilder<> IRB(FnPrologueEnd); 1103 insertKmsanPrologue(IRB); 1104 } 1105 1106 LLVM_DEBUG(if (!InsertChecks) dbgs() 1107 << "MemorySanitizer is not inserting checks into '" 1108 << F.getName() << "'\n"); 1109 } 1110 1111 bool isInPrologue(Instruction &I) { 1112 return I.getParent() == FnPrologueEnd->getParent() && 1113 (&I == FnPrologueEnd || I.comesBefore(FnPrologueEnd)); 1114 } 1115 1116 Value *updateOrigin(Value *V, IRBuilder<> &IRB) { 1117 if (MS.TrackOrigins <= 1) return V; 1118 return IRB.CreateCall(MS.MsanChainOriginFn, V); 1119 } 1120 1121 Value *originToIntptr(IRBuilder<> &IRB, Value *Origin) { 1122 const DataLayout &DL = F.getParent()->getDataLayout(); 1123 unsigned IntptrSize = DL.getTypeStoreSize(MS.IntptrTy); 1124 if (IntptrSize == kOriginSize) return Origin; 1125 assert(IntptrSize == kOriginSize * 2); 1126 Origin = IRB.CreateIntCast(Origin, MS.IntptrTy, /* isSigned */ false); 1127 return IRB.CreateOr(Origin, IRB.CreateShl(Origin, kOriginSize * 8)); 1128 } 1129 1130 /// Fill memory range with the given origin value. 1131 void paintOrigin(IRBuilder<> &IRB, Value *Origin, Value *OriginPtr, 1132 unsigned Size, Align Alignment) { 1133 const DataLayout &DL = F.getParent()->getDataLayout(); 1134 const Align IntptrAlignment = DL.getABITypeAlign(MS.IntptrTy); 1135 unsigned IntptrSize = DL.getTypeStoreSize(MS.IntptrTy); 1136 assert(IntptrAlignment >= kMinOriginAlignment); 1137 assert(IntptrSize >= kOriginSize); 1138 1139 unsigned Ofs = 0; 1140 Align CurrentAlignment = Alignment; 1141 if (Alignment >= IntptrAlignment && IntptrSize > kOriginSize) { 1142 Value *IntptrOrigin = originToIntptr(IRB, Origin); 1143 Value *IntptrOriginPtr = 1144 IRB.CreatePointerCast(OriginPtr, PointerType::get(MS.IntptrTy, 0)); 1145 for (unsigned i = 0; i < Size / IntptrSize; ++i) { 1146 Value *Ptr = i ? IRB.CreateConstGEP1_32(MS.IntptrTy, IntptrOriginPtr, i) 1147 : IntptrOriginPtr; 1148 IRB.CreateAlignedStore(IntptrOrigin, Ptr, CurrentAlignment); 1149 Ofs += IntptrSize / kOriginSize; 1150 CurrentAlignment = IntptrAlignment; 1151 } 1152 } 1153 1154 for (unsigned i = Ofs; i < (Size + kOriginSize - 1) / kOriginSize; ++i) { 1155 Value *GEP = 1156 i ? IRB.CreateConstGEP1_32(MS.OriginTy, OriginPtr, i) : OriginPtr; 1157 IRB.CreateAlignedStore(Origin, GEP, CurrentAlignment); 1158 CurrentAlignment = kMinOriginAlignment; 1159 } 1160 } 1161 1162 void storeOrigin(IRBuilder<> &IRB, Value *Addr, Value *Shadow, Value *Origin, 1163 Value *OriginPtr, Align Alignment, bool AsCall) { 1164 const DataLayout &DL = F.getParent()->getDataLayout(); 1165 const Align OriginAlignment = std::max(kMinOriginAlignment, Alignment); 1166 unsigned StoreSize = DL.getTypeStoreSize(Shadow->getType()); 1167 Value *ConvertedShadow = convertShadowToScalar(Shadow, IRB); 1168 if (auto *ConstantShadow = dyn_cast<Constant>(ConvertedShadow)) { 1169 if (ClCheckConstantShadow && !ConstantShadow->isZeroValue()) 1170 paintOrigin(IRB, updateOrigin(Origin, IRB), OriginPtr, StoreSize, 1171 OriginAlignment); 1172 return; 1173 } 1174 1175 unsigned TypeSizeInBits = DL.getTypeSizeInBits(ConvertedShadow->getType()); 1176 unsigned SizeIndex = TypeSizeToSizeIndex(TypeSizeInBits); 1177 if (AsCall && SizeIndex < kNumberOfAccessSizes && !MS.CompileKernel) { 1178 FunctionCallee Fn = MS.MaybeStoreOriginFn[SizeIndex]; 1179 Value *ConvertedShadow2 = 1180 IRB.CreateZExt(ConvertedShadow, IRB.getIntNTy(8 * (1 << SizeIndex))); 1181 IRB.CreateCall(Fn, 1182 {ConvertedShadow2, 1183 IRB.CreatePointerCast(Addr, IRB.getInt8PtrTy()), Origin}); 1184 } else { 1185 Value *Cmp = convertToBool(ConvertedShadow, IRB, "_mscmp"); 1186 Instruction *CheckTerm = SplitBlockAndInsertIfThen( 1187 Cmp, &*IRB.GetInsertPoint(), false, MS.OriginStoreWeights); 1188 IRBuilder<> IRBNew(CheckTerm); 1189 paintOrigin(IRBNew, updateOrigin(Origin, IRBNew), OriginPtr, StoreSize, 1190 OriginAlignment); 1191 } 1192 } 1193 1194 void materializeStores(bool InstrumentWithCalls) { 1195 for (StoreInst *SI : StoreList) { 1196 IRBuilder<> IRB(SI); 1197 Value *Val = SI->getValueOperand(); 1198 Value *Addr = SI->getPointerOperand(); 1199 Value *Shadow = SI->isAtomic() ? getCleanShadow(Val) : getShadow(Val); 1200 Value *ShadowPtr, *OriginPtr; 1201 Type *ShadowTy = Shadow->getType(); 1202 const Align Alignment = assumeAligned(SI->getAlignment()); 1203 const Align OriginAlignment = std::max(kMinOriginAlignment, Alignment); 1204 std::tie(ShadowPtr, OriginPtr) = 1205 getShadowOriginPtr(Addr, IRB, ShadowTy, Alignment, /*isStore*/ true); 1206 1207 StoreInst *NewSI = IRB.CreateAlignedStore(Shadow, ShadowPtr, Alignment); 1208 LLVM_DEBUG(dbgs() << " STORE: " << *NewSI << "\n"); 1209 (void)NewSI; 1210 1211 if (SI->isAtomic()) 1212 SI->setOrdering(addReleaseOrdering(SI->getOrdering())); 1213 1214 if (MS.TrackOrigins && !SI->isAtomic()) 1215 storeOrigin(IRB, Addr, Shadow, getOrigin(Val), OriginPtr, 1216 OriginAlignment, InstrumentWithCalls); 1217 } 1218 } 1219 1220 /// Helper function to insert a warning at IRB's current insert point. 1221 void insertWarningFn(IRBuilder<> &IRB, Value *Origin) { 1222 if (!Origin) 1223 Origin = (Value *)IRB.getInt32(0); 1224 assert(Origin->getType()->isIntegerTy()); 1225 IRB.CreateCall(MS.WarningFn, Origin)->setCannotMerge(); 1226 // FIXME: Insert UnreachableInst if !MS.Recover? 1227 // This may invalidate some of the following checks and needs to be done 1228 // at the very end. 1229 } 1230 1231 void materializeOneCheck(Instruction *OrigIns, Value *Shadow, Value *Origin, 1232 bool AsCall) { 1233 IRBuilder<> IRB(OrigIns); 1234 LLVM_DEBUG(dbgs() << " SHAD0 : " << *Shadow << "\n"); 1235 Value *ConvertedShadow = convertShadowToScalar(Shadow, IRB); 1236 LLVM_DEBUG(dbgs() << " SHAD1 : " << *ConvertedShadow << "\n"); 1237 1238 if (auto *ConstantShadow = dyn_cast<Constant>(ConvertedShadow)) { 1239 if (ClCheckConstantShadow && !ConstantShadow->isZeroValue()) { 1240 insertWarningFn(IRB, Origin); 1241 } 1242 return; 1243 } 1244 1245 const DataLayout &DL = OrigIns->getModule()->getDataLayout(); 1246 1247 unsigned TypeSizeInBits = DL.getTypeSizeInBits(ConvertedShadow->getType()); 1248 unsigned SizeIndex = TypeSizeToSizeIndex(TypeSizeInBits); 1249 if (AsCall && SizeIndex < kNumberOfAccessSizes && !MS.CompileKernel) { 1250 FunctionCallee Fn = MS.MaybeWarningFn[SizeIndex]; 1251 Value *ConvertedShadow2 = 1252 IRB.CreateZExt(ConvertedShadow, IRB.getIntNTy(8 * (1 << SizeIndex))); 1253 IRB.CreateCall(Fn, {ConvertedShadow2, MS.TrackOrigins && Origin 1254 ? Origin 1255 : (Value *)IRB.getInt32(0)}); 1256 } else { 1257 Value *Cmp = convertToBool(ConvertedShadow, IRB, "_mscmp"); 1258 Instruction *CheckTerm = SplitBlockAndInsertIfThen( 1259 Cmp, OrigIns, 1260 /* Unreachable */ !MS.Recover, MS.ColdCallWeights); 1261 1262 IRB.SetInsertPoint(CheckTerm); 1263 insertWarningFn(IRB, Origin); 1264 LLVM_DEBUG(dbgs() << " CHECK: " << *Cmp << "\n"); 1265 } 1266 } 1267 1268 void materializeChecks(bool InstrumentWithCalls) { 1269 for (const auto &ShadowData : InstrumentationList) { 1270 Instruction *OrigIns = ShadowData.OrigIns; 1271 Value *Shadow = ShadowData.Shadow; 1272 Value *Origin = ShadowData.Origin; 1273 materializeOneCheck(OrigIns, Shadow, Origin, InstrumentWithCalls); 1274 } 1275 LLVM_DEBUG(dbgs() << "DONE:\n" << F); 1276 } 1277 1278 // Returns the last instruction in the new prologue 1279 void insertKmsanPrologue(IRBuilder<> &IRB) { 1280 Value *ContextState = IRB.CreateCall(MS.MsanGetContextStateFn, {}); 1281 Constant *Zero = IRB.getInt32(0); 1282 MS.ParamTLS = IRB.CreateGEP(MS.MsanContextStateTy, ContextState, 1283 {Zero, IRB.getInt32(0)}, "param_shadow"); 1284 MS.RetvalTLS = IRB.CreateGEP(MS.MsanContextStateTy, ContextState, 1285 {Zero, IRB.getInt32(1)}, "retval_shadow"); 1286 MS.VAArgTLS = IRB.CreateGEP(MS.MsanContextStateTy, ContextState, 1287 {Zero, IRB.getInt32(2)}, "va_arg_shadow"); 1288 MS.VAArgOriginTLS = IRB.CreateGEP(MS.MsanContextStateTy, ContextState, 1289 {Zero, IRB.getInt32(3)}, "va_arg_origin"); 1290 MS.VAArgOverflowSizeTLS = 1291 IRB.CreateGEP(MS.MsanContextStateTy, ContextState, 1292 {Zero, IRB.getInt32(4)}, "va_arg_overflow_size"); 1293 MS.ParamOriginTLS = IRB.CreateGEP(MS.MsanContextStateTy, ContextState, 1294 {Zero, IRB.getInt32(5)}, "param_origin"); 1295 MS.RetvalOriginTLS = 1296 IRB.CreateGEP(MS.MsanContextStateTy, ContextState, 1297 {Zero, IRB.getInt32(6)}, "retval_origin"); 1298 } 1299 1300 /// Add MemorySanitizer instrumentation to a function. 1301 bool runOnFunction() { 1302 // Iterate all BBs in depth-first order and create shadow instructions 1303 // for all instructions (where applicable). 1304 // For PHI nodes we create dummy shadow PHIs which will be finalized later. 1305 for (BasicBlock *BB : depth_first(FnPrologueEnd->getParent())) 1306 visit(*BB); 1307 1308 // Finalize PHI nodes. 1309 for (PHINode *PN : ShadowPHINodes) { 1310 PHINode *PNS = cast<PHINode>(getShadow(PN)); 1311 PHINode *PNO = MS.TrackOrigins ? cast<PHINode>(getOrigin(PN)) : nullptr; 1312 size_t NumValues = PN->getNumIncomingValues(); 1313 for (size_t v = 0; v < NumValues; v++) { 1314 PNS->addIncoming(getShadow(PN, v), PN->getIncomingBlock(v)); 1315 if (PNO) PNO->addIncoming(getOrigin(PN, v), PN->getIncomingBlock(v)); 1316 } 1317 } 1318 1319 VAHelper->finalizeInstrumentation(); 1320 1321 // Poison llvm.lifetime.start intrinsics, if we haven't fallen back to 1322 // instrumenting only allocas. 1323 if (InstrumentLifetimeStart) { 1324 for (auto Item : LifetimeStartList) { 1325 instrumentAlloca(*Item.second, Item.first); 1326 AllocaSet.erase(Item.second); 1327 } 1328 } 1329 // Poison the allocas for which we didn't instrument the corresponding 1330 // lifetime intrinsics. 1331 for (AllocaInst *AI : AllocaSet) 1332 instrumentAlloca(*AI); 1333 1334 bool InstrumentWithCalls = ClInstrumentationWithCallThreshold >= 0 && 1335 InstrumentationList.size() + StoreList.size() > 1336 (unsigned)ClInstrumentationWithCallThreshold; 1337 1338 // Insert shadow value checks. 1339 materializeChecks(InstrumentWithCalls); 1340 1341 // Delayed instrumentation of StoreInst. 1342 // This may not add new address checks. 1343 materializeStores(InstrumentWithCalls); 1344 1345 return true; 1346 } 1347 1348 /// Compute the shadow type that corresponds to a given Value. 1349 Type *getShadowTy(Value *V) { 1350 return getShadowTy(V->getType()); 1351 } 1352 1353 /// Compute the shadow type that corresponds to a given Type. 1354 Type *getShadowTy(Type *OrigTy) { 1355 if (!OrigTy->isSized()) { 1356 return nullptr; 1357 } 1358 // For integer type, shadow is the same as the original type. 1359 // This may return weird-sized types like i1. 1360 if (IntegerType *IT = dyn_cast<IntegerType>(OrigTy)) 1361 return IT; 1362 const DataLayout &DL = F.getParent()->getDataLayout(); 1363 if (VectorType *VT = dyn_cast<VectorType>(OrigTy)) { 1364 uint32_t EltSize = DL.getTypeSizeInBits(VT->getElementType()); 1365 return FixedVectorType::get(IntegerType::get(*MS.C, EltSize), 1366 cast<FixedVectorType>(VT)->getNumElements()); 1367 } 1368 if (ArrayType *AT = dyn_cast<ArrayType>(OrigTy)) { 1369 return ArrayType::get(getShadowTy(AT->getElementType()), 1370 AT->getNumElements()); 1371 } 1372 if (StructType *ST = dyn_cast<StructType>(OrigTy)) { 1373 SmallVector<Type*, 4> Elements; 1374 for (unsigned i = 0, n = ST->getNumElements(); i < n; i++) 1375 Elements.push_back(getShadowTy(ST->getElementType(i))); 1376 StructType *Res = StructType::get(*MS.C, Elements, ST->isPacked()); 1377 LLVM_DEBUG(dbgs() << "getShadowTy: " << *ST << " ===> " << *Res << "\n"); 1378 return Res; 1379 } 1380 uint32_t TypeSize = DL.getTypeSizeInBits(OrigTy); 1381 return IntegerType::get(*MS.C, TypeSize); 1382 } 1383 1384 /// Flatten a vector type. 1385 Type *getShadowTyNoVec(Type *ty) { 1386 if (VectorType *vt = dyn_cast<VectorType>(ty)) 1387 return IntegerType::get(*MS.C, 1388 vt->getPrimitiveSizeInBits().getFixedSize()); 1389 return ty; 1390 } 1391 1392 /// Extract combined shadow of struct elements as a bool 1393 Value *collapseStructShadow(StructType *Struct, Value *Shadow, 1394 IRBuilder<> &IRB) { 1395 Value *FalseVal = IRB.getIntN(/* width */ 1, /* value */ 0); 1396 Value *Aggregator = FalseVal; 1397 1398 for (unsigned Idx = 0; Idx < Struct->getNumElements(); Idx++) { 1399 // Combine by ORing together each element's bool shadow 1400 Value *ShadowItem = IRB.CreateExtractValue(Shadow, Idx); 1401 Value *ShadowInner = convertShadowToScalar(ShadowItem, IRB); 1402 Value *ShadowBool = convertToBool(ShadowInner, IRB); 1403 1404 if (Aggregator != FalseVal) 1405 Aggregator = IRB.CreateOr(Aggregator, ShadowBool); 1406 else 1407 Aggregator = ShadowBool; 1408 } 1409 1410 return Aggregator; 1411 } 1412 1413 // Extract combined shadow of array elements 1414 Value *collapseArrayShadow(ArrayType *Array, Value *Shadow, 1415 IRBuilder<> &IRB) { 1416 if (!Array->getNumElements()) 1417 return IRB.getIntN(/* width */ 1, /* value */ 0); 1418 1419 Value *FirstItem = IRB.CreateExtractValue(Shadow, 0); 1420 Value *Aggregator = convertShadowToScalar(FirstItem, IRB); 1421 1422 for (unsigned Idx = 1; Idx < Array->getNumElements(); Idx++) { 1423 Value *ShadowItem = IRB.CreateExtractValue(Shadow, Idx); 1424 Value *ShadowInner = convertShadowToScalar(ShadowItem, IRB); 1425 Aggregator = IRB.CreateOr(Aggregator, ShadowInner); 1426 } 1427 return Aggregator; 1428 } 1429 1430 /// Convert a shadow value to it's flattened variant. The resulting 1431 /// shadow may not necessarily have the same bit width as the input 1432 /// value, but it will always be comparable to zero. 1433 Value *convertShadowToScalar(Value *V, IRBuilder<> &IRB) { 1434 if (StructType *Struct = dyn_cast<StructType>(V->getType())) 1435 return collapseStructShadow(Struct, V, IRB); 1436 if (ArrayType *Array = dyn_cast<ArrayType>(V->getType())) 1437 return collapseArrayShadow(Array, V, IRB); 1438 Type *Ty = V->getType(); 1439 Type *NoVecTy = getShadowTyNoVec(Ty); 1440 if (Ty == NoVecTy) return V; 1441 return IRB.CreateBitCast(V, NoVecTy); 1442 } 1443 1444 // Convert a scalar value to an i1 by comparing with 0 1445 Value *convertToBool(Value *V, IRBuilder<> &IRB, const Twine &name = "") { 1446 Type *VTy = V->getType(); 1447 assert(VTy->isIntegerTy()); 1448 if (VTy->getIntegerBitWidth() == 1) 1449 // Just converting a bool to a bool, so do nothing. 1450 return V; 1451 return IRB.CreateICmpNE(V, ConstantInt::get(VTy, 0), name); 1452 } 1453 1454 /// Compute the integer shadow offset that corresponds to a given 1455 /// application address. 1456 /// 1457 /// Offset = (Addr & ~AndMask) ^ XorMask 1458 Value *getShadowPtrOffset(Value *Addr, IRBuilder<> &IRB) { 1459 Value *OffsetLong = IRB.CreatePointerCast(Addr, MS.IntptrTy); 1460 1461 uint64_t AndMask = MS.MapParams->AndMask; 1462 if (AndMask) 1463 OffsetLong = 1464 IRB.CreateAnd(OffsetLong, ConstantInt::get(MS.IntptrTy, ~AndMask)); 1465 1466 uint64_t XorMask = MS.MapParams->XorMask; 1467 if (XorMask) 1468 OffsetLong = 1469 IRB.CreateXor(OffsetLong, ConstantInt::get(MS.IntptrTy, XorMask)); 1470 return OffsetLong; 1471 } 1472 1473 /// Compute the shadow and origin addresses corresponding to a given 1474 /// application address. 1475 /// 1476 /// Shadow = ShadowBase + Offset 1477 /// Origin = (OriginBase + Offset) & ~3ULL 1478 std::pair<Value *, Value *> 1479 getShadowOriginPtrUserspace(Value *Addr, IRBuilder<> &IRB, Type *ShadowTy, 1480 MaybeAlign Alignment) { 1481 Value *ShadowOffset = getShadowPtrOffset(Addr, IRB); 1482 Value *ShadowLong = ShadowOffset; 1483 uint64_t ShadowBase = MS.MapParams->ShadowBase; 1484 if (ShadowBase != 0) { 1485 ShadowLong = 1486 IRB.CreateAdd(ShadowLong, 1487 ConstantInt::get(MS.IntptrTy, ShadowBase)); 1488 } 1489 Value *ShadowPtr = 1490 IRB.CreateIntToPtr(ShadowLong, PointerType::get(ShadowTy, 0)); 1491 Value *OriginPtr = nullptr; 1492 if (MS.TrackOrigins) { 1493 Value *OriginLong = ShadowOffset; 1494 uint64_t OriginBase = MS.MapParams->OriginBase; 1495 if (OriginBase != 0) 1496 OriginLong = IRB.CreateAdd(OriginLong, 1497 ConstantInt::get(MS.IntptrTy, OriginBase)); 1498 if (!Alignment || *Alignment < kMinOriginAlignment) { 1499 uint64_t Mask = kMinOriginAlignment.value() - 1; 1500 OriginLong = 1501 IRB.CreateAnd(OriginLong, ConstantInt::get(MS.IntptrTy, ~Mask)); 1502 } 1503 OriginPtr = 1504 IRB.CreateIntToPtr(OriginLong, PointerType::get(MS.OriginTy, 0)); 1505 } 1506 return std::make_pair(ShadowPtr, OriginPtr); 1507 } 1508 1509 std::pair<Value *, Value *> getShadowOriginPtrKernel(Value *Addr, 1510 IRBuilder<> &IRB, 1511 Type *ShadowTy, 1512 bool isStore) { 1513 Value *ShadowOriginPtrs; 1514 const DataLayout &DL = F.getParent()->getDataLayout(); 1515 int Size = DL.getTypeStoreSize(ShadowTy); 1516 1517 FunctionCallee Getter = MS.getKmsanShadowOriginAccessFn(isStore, Size); 1518 Value *AddrCast = 1519 IRB.CreatePointerCast(Addr, PointerType::get(IRB.getInt8Ty(), 0)); 1520 if (Getter) { 1521 ShadowOriginPtrs = IRB.CreateCall(Getter, AddrCast); 1522 } else { 1523 Value *SizeVal = ConstantInt::get(MS.IntptrTy, Size); 1524 ShadowOriginPtrs = IRB.CreateCall(isStore ? MS.MsanMetadataPtrForStoreN 1525 : MS.MsanMetadataPtrForLoadN, 1526 {AddrCast, SizeVal}); 1527 } 1528 Value *ShadowPtr = IRB.CreateExtractValue(ShadowOriginPtrs, 0); 1529 ShadowPtr = IRB.CreatePointerCast(ShadowPtr, PointerType::get(ShadowTy, 0)); 1530 Value *OriginPtr = IRB.CreateExtractValue(ShadowOriginPtrs, 1); 1531 1532 return std::make_pair(ShadowPtr, OriginPtr); 1533 } 1534 1535 std::pair<Value *, Value *> getShadowOriginPtr(Value *Addr, IRBuilder<> &IRB, 1536 Type *ShadowTy, 1537 MaybeAlign Alignment, 1538 bool isStore) { 1539 if (MS.CompileKernel) 1540 return getShadowOriginPtrKernel(Addr, IRB, ShadowTy, isStore); 1541 return getShadowOriginPtrUserspace(Addr, IRB, ShadowTy, Alignment); 1542 } 1543 1544 /// Compute the shadow address for a given function argument. 1545 /// 1546 /// Shadow = ParamTLS+ArgOffset. 1547 Value *getShadowPtrForArgument(Value *A, IRBuilder<> &IRB, 1548 int ArgOffset) { 1549 Value *Base = IRB.CreatePointerCast(MS.ParamTLS, MS.IntptrTy); 1550 if (ArgOffset) 1551 Base = IRB.CreateAdd(Base, ConstantInt::get(MS.IntptrTy, ArgOffset)); 1552 return IRB.CreateIntToPtr(Base, PointerType::get(getShadowTy(A), 0), 1553 "_msarg"); 1554 } 1555 1556 /// Compute the origin address for a given function argument. 1557 Value *getOriginPtrForArgument(Value *A, IRBuilder<> &IRB, 1558 int ArgOffset) { 1559 if (!MS.TrackOrigins) 1560 return nullptr; 1561 Value *Base = IRB.CreatePointerCast(MS.ParamOriginTLS, MS.IntptrTy); 1562 if (ArgOffset) 1563 Base = IRB.CreateAdd(Base, ConstantInt::get(MS.IntptrTy, ArgOffset)); 1564 return IRB.CreateIntToPtr(Base, PointerType::get(MS.OriginTy, 0), 1565 "_msarg_o"); 1566 } 1567 1568 /// Compute the shadow address for a retval. 1569 Value *getShadowPtrForRetval(Value *A, IRBuilder<> &IRB) { 1570 return IRB.CreatePointerCast(MS.RetvalTLS, 1571 PointerType::get(getShadowTy(A), 0), 1572 "_msret"); 1573 } 1574 1575 /// Compute the origin address for a retval. 1576 Value *getOriginPtrForRetval(IRBuilder<> &IRB) { 1577 // We keep a single origin for the entire retval. Might be too optimistic. 1578 return MS.RetvalOriginTLS; 1579 } 1580 1581 /// Set SV to be the shadow value for V. 1582 void setShadow(Value *V, Value *SV) { 1583 assert(!ShadowMap.count(V) && "Values may only have one shadow"); 1584 ShadowMap[V] = PropagateShadow ? SV : getCleanShadow(V); 1585 } 1586 1587 /// Set Origin to be the origin value for V. 1588 void setOrigin(Value *V, Value *Origin) { 1589 if (!MS.TrackOrigins) return; 1590 assert(!OriginMap.count(V) && "Values may only have one origin"); 1591 LLVM_DEBUG(dbgs() << "ORIGIN: " << *V << " ==> " << *Origin << "\n"); 1592 OriginMap[V] = Origin; 1593 } 1594 1595 Constant *getCleanShadow(Type *OrigTy) { 1596 Type *ShadowTy = getShadowTy(OrigTy); 1597 if (!ShadowTy) 1598 return nullptr; 1599 return Constant::getNullValue(ShadowTy); 1600 } 1601 1602 /// Create a clean shadow value for a given value. 1603 /// 1604 /// Clean shadow (all zeroes) means all bits of the value are defined 1605 /// (initialized). 1606 Constant *getCleanShadow(Value *V) { 1607 return getCleanShadow(V->getType()); 1608 } 1609 1610 /// Create a dirty shadow of a given shadow type. 1611 Constant *getPoisonedShadow(Type *ShadowTy) { 1612 assert(ShadowTy); 1613 if (isa<IntegerType>(ShadowTy) || isa<VectorType>(ShadowTy)) 1614 return Constant::getAllOnesValue(ShadowTy); 1615 if (ArrayType *AT = dyn_cast<ArrayType>(ShadowTy)) { 1616 SmallVector<Constant *, 4> Vals(AT->getNumElements(), 1617 getPoisonedShadow(AT->getElementType())); 1618 return ConstantArray::get(AT, Vals); 1619 } 1620 if (StructType *ST = dyn_cast<StructType>(ShadowTy)) { 1621 SmallVector<Constant *, 4> Vals; 1622 for (unsigned i = 0, n = ST->getNumElements(); i < n; i++) 1623 Vals.push_back(getPoisonedShadow(ST->getElementType(i))); 1624 return ConstantStruct::get(ST, Vals); 1625 } 1626 llvm_unreachable("Unexpected shadow type"); 1627 } 1628 1629 /// Create a dirty shadow for a given value. 1630 Constant *getPoisonedShadow(Value *V) { 1631 Type *ShadowTy = getShadowTy(V); 1632 if (!ShadowTy) 1633 return nullptr; 1634 return getPoisonedShadow(ShadowTy); 1635 } 1636 1637 /// Create a clean (zero) origin. 1638 Value *getCleanOrigin() { 1639 return Constant::getNullValue(MS.OriginTy); 1640 } 1641 1642 /// Get the shadow value for a given Value. 1643 /// 1644 /// This function either returns the value set earlier with setShadow, 1645 /// or extracts if from ParamTLS (for function arguments). 1646 Value *getShadow(Value *V) { 1647 if (!PropagateShadow) return getCleanShadow(V); 1648 if (Instruction *I = dyn_cast<Instruction>(V)) { 1649 if (I->getMetadata("nosanitize")) 1650 return getCleanShadow(V); 1651 // For instructions the shadow is already stored in the map. 1652 Value *Shadow = ShadowMap[V]; 1653 if (!Shadow) { 1654 LLVM_DEBUG(dbgs() << "No shadow: " << *V << "\n" << *(I->getParent())); 1655 (void)I; 1656 assert(Shadow && "No shadow for a value"); 1657 } 1658 return Shadow; 1659 } 1660 if (UndefValue *U = dyn_cast<UndefValue>(V)) { 1661 Value *AllOnes = PoisonUndef ? getPoisonedShadow(V) : getCleanShadow(V); 1662 LLVM_DEBUG(dbgs() << "Undef: " << *U << " ==> " << *AllOnes << "\n"); 1663 (void)U; 1664 return AllOnes; 1665 } 1666 if (Argument *A = dyn_cast<Argument>(V)) { 1667 // For arguments we compute the shadow on demand and store it in the map. 1668 Value **ShadowPtr = &ShadowMap[V]; 1669 if (*ShadowPtr) 1670 return *ShadowPtr; 1671 Function *F = A->getParent(); 1672 IRBuilder<> EntryIRB(FnPrologueEnd); 1673 unsigned ArgOffset = 0; 1674 const DataLayout &DL = F->getParent()->getDataLayout(); 1675 for (auto &FArg : F->args()) { 1676 if (!FArg.getType()->isSized()) { 1677 LLVM_DEBUG(dbgs() << "Arg is not sized\n"); 1678 continue; 1679 } 1680 1681 bool FArgByVal = FArg.hasByValAttr(); 1682 bool FArgNoUndef = FArg.hasAttribute(Attribute::NoUndef); 1683 bool FArgEagerCheck = ClEagerChecks && !FArgByVal && FArgNoUndef; 1684 unsigned Size = 1685 FArg.hasByValAttr() 1686 ? DL.getTypeAllocSize(FArg.getParamByValType()) 1687 : DL.getTypeAllocSize(FArg.getType()); 1688 1689 if (A == &FArg) { 1690 bool Overflow = ArgOffset + Size > kParamTLSSize; 1691 if (FArgEagerCheck) { 1692 *ShadowPtr = getCleanShadow(V); 1693 setOrigin(A, getCleanOrigin()); 1694 continue; 1695 } else if (FArgByVal) { 1696 Value *Base = getShadowPtrForArgument(&FArg, EntryIRB, ArgOffset); 1697 // ByVal pointer itself has clean shadow. We copy the actual 1698 // argument shadow to the underlying memory. 1699 // Figure out maximal valid memcpy alignment. 1700 const Align ArgAlign = DL.getValueOrABITypeAlignment( 1701 MaybeAlign(FArg.getParamAlignment()), FArg.getParamByValType()); 1702 Value *CpShadowPtr = 1703 getShadowOriginPtr(V, EntryIRB, EntryIRB.getInt8Ty(), ArgAlign, 1704 /*isStore*/ true) 1705 .first; 1706 // TODO(glider): need to copy origins. 1707 if (Overflow) { 1708 // ParamTLS overflow. 1709 EntryIRB.CreateMemSet( 1710 CpShadowPtr, Constant::getNullValue(EntryIRB.getInt8Ty()), 1711 Size, ArgAlign); 1712 } else { 1713 const Align CopyAlign = std::min(ArgAlign, kShadowTLSAlignment); 1714 Value *Cpy = EntryIRB.CreateMemCpy(CpShadowPtr, CopyAlign, Base, 1715 CopyAlign, Size); 1716 LLVM_DEBUG(dbgs() << " ByValCpy: " << *Cpy << "\n"); 1717 (void)Cpy; 1718 } 1719 *ShadowPtr = getCleanShadow(V); 1720 } else { 1721 // Shadow over TLS 1722 Value *Base = getShadowPtrForArgument(&FArg, EntryIRB, ArgOffset); 1723 if (Overflow) { 1724 // ParamTLS overflow. 1725 *ShadowPtr = getCleanShadow(V); 1726 } else { 1727 *ShadowPtr = EntryIRB.CreateAlignedLoad(getShadowTy(&FArg), Base, 1728 kShadowTLSAlignment); 1729 } 1730 } 1731 LLVM_DEBUG(dbgs() 1732 << " ARG: " << FArg << " ==> " << **ShadowPtr << "\n"); 1733 if (MS.TrackOrigins && !Overflow) { 1734 Value *OriginPtr = 1735 getOriginPtrForArgument(&FArg, EntryIRB, ArgOffset); 1736 setOrigin(A, EntryIRB.CreateLoad(MS.OriginTy, OriginPtr)); 1737 } else { 1738 setOrigin(A, getCleanOrigin()); 1739 } 1740 } 1741 1742 if (!FArgEagerCheck) 1743 ArgOffset += alignTo(Size, kShadowTLSAlignment); 1744 } 1745 assert(*ShadowPtr && "Could not find shadow for an argument"); 1746 return *ShadowPtr; 1747 } 1748 // For everything else the shadow is zero. 1749 return getCleanShadow(V); 1750 } 1751 1752 /// Get the shadow for i-th argument of the instruction I. 1753 Value *getShadow(Instruction *I, int i) { 1754 return getShadow(I->getOperand(i)); 1755 } 1756 1757 /// Get the origin for a value. 1758 Value *getOrigin(Value *V) { 1759 if (!MS.TrackOrigins) return nullptr; 1760 if (!PropagateShadow) return getCleanOrigin(); 1761 if (isa<Constant>(V)) return getCleanOrigin(); 1762 assert((isa<Instruction>(V) || isa<Argument>(V)) && 1763 "Unexpected value type in getOrigin()"); 1764 if (Instruction *I = dyn_cast<Instruction>(V)) { 1765 if (I->getMetadata("nosanitize")) 1766 return getCleanOrigin(); 1767 } 1768 Value *Origin = OriginMap[V]; 1769 assert(Origin && "Missing origin"); 1770 return Origin; 1771 } 1772 1773 /// Get the origin for i-th argument of the instruction I. 1774 Value *getOrigin(Instruction *I, int i) { 1775 return getOrigin(I->getOperand(i)); 1776 } 1777 1778 /// Remember the place where a shadow check should be inserted. 1779 /// 1780 /// This location will be later instrumented with a check that will print a 1781 /// UMR warning in runtime if the shadow value is not 0. 1782 void insertShadowCheck(Value *Shadow, Value *Origin, Instruction *OrigIns) { 1783 assert(Shadow); 1784 if (!InsertChecks) return; 1785 #ifndef NDEBUG 1786 Type *ShadowTy = Shadow->getType(); 1787 assert((isa<IntegerType>(ShadowTy) || isa<VectorType>(ShadowTy) || 1788 isa<StructType>(ShadowTy) || isa<ArrayType>(ShadowTy)) && 1789 "Can only insert checks for integer, vector, and aggregate shadow " 1790 "types"); 1791 #endif 1792 InstrumentationList.push_back( 1793 ShadowOriginAndInsertPoint(Shadow, Origin, OrigIns)); 1794 } 1795 1796 /// Remember the place where a shadow check should be inserted. 1797 /// 1798 /// This location will be later instrumented with a check that will print a 1799 /// UMR warning in runtime if the value is not fully defined. 1800 void insertShadowCheck(Value *Val, Instruction *OrigIns) { 1801 assert(Val); 1802 Value *Shadow, *Origin; 1803 if (ClCheckConstantShadow) { 1804 Shadow = getShadow(Val); 1805 if (!Shadow) return; 1806 Origin = getOrigin(Val); 1807 } else { 1808 Shadow = dyn_cast_or_null<Instruction>(getShadow(Val)); 1809 if (!Shadow) return; 1810 Origin = dyn_cast_or_null<Instruction>(getOrigin(Val)); 1811 } 1812 insertShadowCheck(Shadow, Origin, OrigIns); 1813 } 1814 1815 AtomicOrdering addReleaseOrdering(AtomicOrdering a) { 1816 switch (a) { 1817 case AtomicOrdering::NotAtomic: 1818 return AtomicOrdering::NotAtomic; 1819 case AtomicOrdering::Unordered: 1820 case AtomicOrdering::Monotonic: 1821 case AtomicOrdering::Release: 1822 return AtomicOrdering::Release; 1823 case AtomicOrdering::Acquire: 1824 case AtomicOrdering::AcquireRelease: 1825 return AtomicOrdering::AcquireRelease; 1826 case AtomicOrdering::SequentiallyConsistent: 1827 return AtomicOrdering::SequentiallyConsistent; 1828 } 1829 llvm_unreachable("Unknown ordering"); 1830 } 1831 1832 Value *makeAddReleaseOrderingTable(IRBuilder<> &IRB) { 1833 constexpr int NumOrderings = (int)AtomicOrderingCABI::seq_cst + 1; 1834 uint32_t OrderingTable[NumOrderings] = {}; 1835 1836 OrderingTable[(int)AtomicOrderingCABI::relaxed] = 1837 OrderingTable[(int)AtomicOrderingCABI::release] = 1838 (int)AtomicOrderingCABI::release; 1839 OrderingTable[(int)AtomicOrderingCABI::consume] = 1840 OrderingTable[(int)AtomicOrderingCABI::acquire] = 1841 OrderingTable[(int)AtomicOrderingCABI::acq_rel] = 1842 (int)AtomicOrderingCABI::acq_rel; 1843 OrderingTable[(int)AtomicOrderingCABI::seq_cst] = 1844 (int)AtomicOrderingCABI::seq_cst; 1845 1846 return ConstantDataVector::get(IRB.getContext(), 1847 makeArrayRef(OrderingTable, NumOrderings)); 1848 } 1849 1850 AtomicOrdering addAcquireOrdering(AtomicOrdering a) { 1851 switch (a) { 1852 case AtomicOrdering::NotAtomic: 1853 return AtomicOrdering::NotAtomic; 1854 case AtomicOrdering::Unordered: 1855 case AtomicOrdering::Monotonic: 1856 case AtomicOrdering::Acquire: 1857 return AtomicOrdering::Acquire; 1858 case AtomicOrdering::Release: 1859 case AtomicOrdering::AcquireRelease: 1860 return AtomicOrdering::AcquireRelease; 1861 case AtomicOrdering::SequentiallyConsistent: 1862 return AtomicOrdering::SequentiallyConsistent; 1863 } 1864 llvm_unreachable("Unknown ordering"); 1865 } 1866 1867 Value *makeAddAcquireOrderingTable(IRBuilder<> &IRB) { 1868 constexpr int NumOrderings = (int)AtomicOrderingCABI::seq_cst + 1; 1869 uint32_t OrderingTable[NumOrderings] = {}; 1870 1871 OrderingTable[(int)AtomicOrderingCABI::relaxed] = 1872 OrderingTable[(int)AtomicOrderingCABI::acquire] = 1873 OrderingTable[(int)AtomicOrderingCABI::consume] = 1874 (int)AtomicOrderingCABI::acquire; 1875 OrderingTable[(int)AtomicOrderingCABI::release] = 1876 OrderingTable[(int)AtomicOrderingCABI::acq_rel] = 1877 (int)AtomicOrderingCABI::acq_rel; 1878 OrderingTable[(int)AtomicOrderingCABI::seq_cst] = 1879 (int)AtomicOrderingCABI::seq_cst; 1880 1881 return ConstantDataVector::get(IRB.getContext(), 1882 makeArrayRef(OrderingTable, NumOrderings)); 1883 } 1884 1885 // ------------------- Visitors. 1886 using InstVisitor<MemorySanitizerVisitor>::visit; 1887 void visit(Instruction &I) { 1888 if (I.getMetadata("nosanitize")) 1889 return; 1890 // Don't want to visit if we're in the prologue 1891 if (isInPrologue(I)) 1892 return; 1893 InstVisitor<MemorySanitizerVisitor>::visit(I); 1894 } 1895 1896 /// Instrument LoadInst 1897 /// 1898 /// Loads the corresponding shadow and (optionally) origin. 1899 /// Optionally, checks that the load address is fully defined. 1900 void visitLoadInst(LoadInst &I) { 1901 assert(I.getType()->isSized() && "Load type must have size"); 1902 assert(!I.getMetadata("nosanitize")); 1903 IRBuilder<> IRB(I.getNextNode()); 1904 Type *ShadowTy = getShadowTy(&I); 1905 Value *Addr = I.getPointerOperand(); 1906 Value *ShadowPtr = nullptr, *OriginPtr = nullptr; 1907 const Align Alignment = assumeAligned(I.getAlignment()); 1908 if (PropagateShadow) { 1909 std::tie(ShadowPtr, OriginPtr) = 1910 getShadowOriginPtr(Addr, IRB, ShadowTy, Alignment, /*isStore*/ false); 1911 setShadow(&I, 1912 IRB.CreateAlignedLoad(ShadowTy, ShadowPtr, Alignment, "_msld")); 1913 } else { 1914 setShadow(&I, getCleanShadow(&I)); 1915 } 1916 1917 if (ClCheckAccessAddress) 1918 insertShadowCheck(I.getPointerOperand(), &I); 1919 1920 if (I.isAtomic()) 1921 I.setOrdering(addAcquireOrdering(I.getOrdering())); 1922 1923 if (MS.TrackOrigins) { 1924 if (PropagateShadow) { 1925 const Align OriginAlignment = std::max(kMinOriginAlignment, Alignment); 1926 setOrigin( 1927 &I, IRB.CreateAlignedLoad(MS.OriginTy, OriginPtr, OriginAlignment)); 1928 } else { 1929 setOrigin(&I, getCleanOrigin()); 1930 } 1931 } 1932 } 1933 1934 /// Instrument StoreInst 1935 /// 1936 /// Stores the corresponding shadow and (optionally) origin. 1937 /// Optionally, checks that the store address is fully defined. 1938 void visitStoreInst(StoreInst &I) { 1939 StoreList.push_back(&I); 1940 if (ClCheckAccessAddress) 1941 insertShadowCheck(I.getPointerOperand(), &I); 1942 } 1943 1944 void handleCASOrRMW(Instruction &I) { 1945 assert(isa<AtomicRMWInst>(I) || isa<AtomicCmpXchgInst>(I)); 1946 1947 IRBuilder<> IRB(&I); 1948 Value *Addr = I.getOperand(0); 1949 Value *ShadowPtr = getShadowOriginPtr(Addr, IRB, I.getType(), Align(1), 1950 /*isStore*/ true) 1951 .first; 1952 1953 if (ClCheckAccessAddress) 1954 insertShadowCheck(Addr, &I); 1955 1956 // Only test the conditional argument of cmpxchg instruction. 1957 // The other argument can potentially be uninitialized, but we can not 1958 // detect this situation reliably without possible false positives. 1959 if (isa<AtomicCmpXchgInst>(I)) 1960 insertShadowCheck(I.getOperand(1), &I); 1961 1962 IRB.CreateStore(getCleanShadow(&I), ShadowPtr); 1963 1964 setShadow(&I, getCleanShadow(&I)); 1965 setOrigin(&I, getCleanOrigin()); 1966 } 1967 1968 void visitAtomicRMWInst(AtomicRMWInst &I) { 1969 handleCASOrRMW(I); 1970 I.setOrdering(addReleaseOrdering(I.getOrdering())); 1971 } 1972 1973 void visitAtomicCmpXchgInst(AtomicCmpXchgInst &I) { 1974 handleCASOrRMW(I); 1975 I.setSuccessOrdering(addReleaseOrdering(I.getSuccessOrdering())); 1976 } 1977 1978 // Vector manipulation. 1979 void visitExtractElementInst(ExtractElementInst &I) { 1980 insertShadowCheck(I.getOperand(1), &I); 1981 IRBuilder<> IRB(&I); 1982 setShadow(&I, IRB.CreateExtractElement(getShadow(&I, 0), I.getOperand(1), 1983 "_msprop")); 1984 setOrigin(&I, getOrigin(&I, 0)); 1985 } 1986 1987 void visitInsertElementInst(InsertElementInst &I) { 1988 insertShadowCheck(I.getOperand(2), &I); 1989 IRBuilder<> IRB(&I); 1990 setShadow(&I, IRB.CreateInsertElement(getShadow(&I, 0), getShadow(&I, 1), 1991 I.getOperand(2), "_msprop")); 1992 setOriginForNaryOp(I); 1993 } 1994 1995 void visitShuffleVectorInst(ShuffleVectorInst &I) { 1996 IRBuilder<> IRB(&I); 1997 setShadow(&I, IRB.CreateShuffleVector(getShadow(&I, 0), getShadow(&I, 1), 1998 I.getShuffleMask(), "_msprop")); 1999 setOriginForNaryOp(I); 2000 } 2001 2002 // Casts. 2003 void visitSExtInst(SExtInst &I) { 2004 IRBuilder<> IRB(&I); 2005 setShadow(&I, IRB.CreateSExt(getShadow(&I, 0), I.getType(), "_msprop")); 2006 setOrigin(&I, getOrigin(&I, 0)); 2007 } 2008 2009 void visitZExtInst(ZExtInst &I) { 2010 IRBuilder<> IRB(&I); 2011 setShadow(&I, IRB.CreateZExt(getShadow(&I, 0), I.getType(), "_msprop")); 2012 setOrigin(&I, getOrigin(&I, 0)); 2013 } 2014 2015 void visitTruncInst(TruncInst &I) { 2016 IRBuilder<> IRB(&I); 2017 setShadow(&I, IRB.CreateTrunc(getShadow(&I, 0), I.getType(), "_msprop")); 2018 setOrigin(&I, getOrigin(&I, 0)); 2019 } 2020 2021 void visitBitCastInst(BitCastInst &I) { 2022 // Special case: if this is the bitcast (there is exactly 1 allowed) between 2023 // a musttail call and a ret, don't instrument. New instructions are not 2024 // allowed after a musttail call. 2025 if (auto *CI = dyn_cast<CallInst>(I.getOperand(0))) 2026 if (CI->isMustTailCall()) 2027 return; 2028 IRBuilder<> IRB(&I); 2029 setShadow(&I, IRB.CreateBitCast(getShadow(&I, 0), getShadowTy(&I))); 2030 setOrigin(&I, getOrigin(&I, 0)); 2031 } 2032 2033 void visitPtrToIntInst(PtrToIntInst &I) { 2034 IRBuilder<> IRB(&I); 2035 setShadow(&I, IRB.CreateIntCast(getShadow(&I, 0), getShadowTy(&I), false, 2036 "_msprop_ptrtoint")); 2037 setOrigin(&I, getOrigin(&I, 0)); 2038 } 2039 2040 void visitIntToPtrInst(IntToPtrInst &I) { 2041 IRBuilder<> IRB(&I); 2042 setShadow(&I, IRB.CreateIntCast(getShadow(&I, 0), getShadowTy(&I), false, 2043 "_msprop_inttoptr")); 2044 setOrigin(&I, getOrigin(&I, 0)); 2045 } 2046 2047 void visitFPToSIInst(CastInst& I) { handleShadowOr(I); } 2048 void visitFPToUIInst(CastInst& I) { handleShadowOr(I); } 2049 void visitSIToFPInst(CastInst& I) { handleShadowOr(I); } 2050 void visitUIToFPInst(CastInst& I) { handleShadowOr(I); } 2051 void visitFPExtInst(CastInst& I) { handleShadowOr(I); } 2052 void visitFPTruncInst(CastInst& I) { handleShadowOr(I); } 2053 2054 /// Propagate shadow for bitwise AND. 2055 /// 2056 /// This code is exact, i.e. if, for example, a bit in the left argument 2057 /// is defined and 0, then neither the value not definedness of the 2058 /// corresponding bit in B don't affect the resulting shadow. 2059 void visitAnd(BinaryOperator &I) { 2060 IRBuilder<> IRB(&I); 2061 // "And" of 0 and a poisoned value results in unpoisoned value. 2062 // 1&1 => 1; 0&1 => 0; p&1 => p; 2063 // 1&0 => 0; 0&0 => 0; p&0 => 0; 2064 // 1&p => p; 0&p => 0; p&p => p; 2065 // S = (S1 & S2) | (V1 & S2) | (S1 & V2) 2066 Value *S1 = getShadow(&I, 0); 2067 Value *S2 = getShadow(&I, 1); 2068 Value *V1 = I.getOperand(0); 2069 Value *V2 = I.getOperand(1); 2070 if (V1->getType() != S1->getType()) { 2071 V1 = IRB.CreateIntCast(V1, S1->getType(), false); 2072 V2 = IRB.CreateIntCast(V2, S2->getType(), false); 2073 } 2074 Value *S1S2 = IRB.CreateAnd(S1, S2); 2075 Value *V1S2 = IRB.CreateAnd(V1, S2); 2076 Value *S1V2 = IRB.CreateAnd(S1, V2); 2077 setShadow(&I, IRB.CreateOr({S1S2, V1S2, S1V2})); 2078 setOriginForNaryOp(I); 2079 } 2080 2081 void visitOr(BinaryOperator &I) { 2082 IRBuilder<> IRB(&I); 2083 // "Or" of 1 and a poisoned value results in unpoisoned value. 2084 // 1|1 => 1; 0|1 => 1; p|1 => 1; 2085 // 1|0 => 1; 0|0 => 0; p|0 => p; 2086 // 1|p => 1; 0|p => p; p|p => p; 2087 // S = (S1 & S2) | (~V1 & S2) | (S1 & ~V2) 2088 Value *S1 = getShadow(&I, 0); 2089 Value *S2 = getShadow(&I, 1); 2090 Value *V1 = IRB.CreateNot(I.getOperand(0)); 2091 Value *V2 = IRB.CreateNot(I.getOperand(1)); 2092 if (V1->getType() != S1->getType()) { 2093 V1 = IRB.CreateIntCast(V1, S1->getType(), false); 2094 V2 = IRB.CreateIntCast(V2, S2->getType(), false); 2095 } 2096 Value *S1S2 = IRB.CreateAnd(S1, S2); 2097 Value *V1S2 = IRB.CreateAnd(V1, S2); 2098 Value *S1V2 = IRB.CreateAnd(S1, V2); 2099 setShadow(&I, IRB.CreateOr({S1S2, V1S2, S1V2})); 2100 setOriginForNaryOp(I); 2101 } 2102 2103 /// Default propagation of shadow and/or origin. 2104 /// 2105 /// This class implements the general case of shadow propagation, used in all 2106 /// cases where we don't know and/or don't care about what the operation 2107 /// actually does. It converts all input shadow values to a common type 2108 /// (extending or truncating as necessary), and bitwise OR's them. 2109 /// 2110 /// This is much cheaper than inserting checks (i.e. requiring inputs to be 2111 /// fully initialized), and less prone to false positives. 2112 /// 2113 /// This class also implements the general case of origin propagation. For a 2114 /// Nary operation, result origin is set to the origin of an argument that is 2115 /// not entirely initialized. If there is more than one such arguments, the 2116 /// rightmost of them is picked. It does not matter which one is picked if all 2117 /// arguments are initialized. 2118 template <bool CombineShadow> 2119 class Combiner { 2120 Value *Shadow = nullptr; 2121 Value *Origin = nullptr; 2122 IRBuilder<> &IRB; 2123 MemorySanitizerVisitor *MSV; 2124 2125 public: 2126 Combiner(MemorySanitizerVisitor *MSV, IRBuilder<> &IRB) 2127 : IRB(IRB), MSV(MSV) {} 2128 2129 /// Add a pair of shadow and origin values to the mix. 2130 Combiner &Add(Value *OpShadow, Value *OpOrigin) { 2131 if (CombineShadow) { 2132 assert(OpShadow); 2133 if (!Shadow) 2134 Shadow = OpShadow; 2135 else { 2136 OpShadow = MSV->CreateShadowCast(IRB, OpShadow, Shadow->getType()); 2137 Shadow = IRB.CreateOr(Shadow, OpShadow, "_msprop"); 2138 } 2139 } 2140 2141 if (MSV->MS.TrackOrigins) { 2142 assert(OpOrigin); 2143 if (!Origin) { 2144 Origin = OpOrigin; 2145 } else { 2146 Constant *ConstOrigin = dyn_cast<Constant>(OpOrigin); 2147 // No point in adding something that might result in 0 origin value. 2148 if (!ConstOrigin || !ConstOrigin->isNullValue()) { 2149 Value *FlatShadow = MSV->convertShadowToScalar(OpShadow, IRB); 2150 Value *Cond = 2151 IRB.CreateICmpNE(FlatShadow, MSV->getCleanShadow(FlatShadow)); 2152 Origin = IRB.CreateSelect(Cond, OpOrigin, Origin); 2153 } 2154 } 2155 } 2156 return *this; 2157 } 2158 2159 /// Add an application value to the mix. 2160 Combiner &Add(Value *V) { 2161 Value *OpShadow = MSV->getShadow(V); 2162 Value *OpOrigin = MSV->MS.TrackOrigins ? MSV->getOrigin(V) : nullptr; 2163 return Add(OpShadow, OpOrigin); 2164 } 2165 2166 /// Set the current combined values as the given instruction's shadow 2167 /// and origin. 2168 void Done(Instruction *I) { 2169 if (CombineShadow) { 2170 assert(Shadow); 2171 Shadow = MSV->CreateShadowCast(IRB, Shadow, MSV->getShadowTy(I)); 2172 MSV->setShadow(I, Shadow); 2173 } 2174 if (MSV->MS.TrackOrigins) { 2175 assert(Origin); 2176 MSV->setOrigin(I, Origin); 2177 } 2178 } 2179 }; 2180 2181 using ShadowAndOriginCombiner = Combiner<true>; 2182 using OriginCombiner = Combiner<false>; 2183 2184 /// Propagate origin for arbitrary operation. 2185 void setOriginForNaryOp(Instruction &I) { 2186 if (!MS.TrackOrigins) return; 2187 IRBuilder<> IRB(&I); 2188 OriginCombiner OC(this, IRB); 2189 for (Instruction::op_iterator OI = I.op_begin(); OI != I.op_end(); ++OI) 2190 OC.Add(OI->get()); 2191 OC.Done(&I); 2192 } 2193 2194 size_t VectorOrPrimitiveTypeSizeInBits(Type *Ty) { 2195 assert(!(Ty->isVectorTy() && Ty->getScalarType()->isPointerTy()) && 2196 "Vector of pointers is not a valid shadow type"); 2197 return Ty->isVectorTy() ? cast<FixedVectorType>(Ty)->getNumElements() * 2198 Ty->getScalarSizeInBits() 2199 : Ty->getPrimitiveSizeInBits(); 2200 } 2201 2202 /// Cast between two shadow types, extending or truncating as 2203 /// necessary. 2204 Value *CreateShadowCast(IRBuilder<> &IRB, Value *V, Type *dstTy, 2205 bool Signed = false) { 2206 Type *srcTy = V->getType(); 2207 size_t srcSizeInBits = VectorOrPrimitiveTypeSizeInBits(srcTy); 2208 size_t dstSizeInBits = VectorOrPrimitiveTypeSizeInBits(dstTy); 2209 if (srcSizeInBits > 1 && dstSizeInBits == 1) 2210 return IRB.CreateICmpNE(V, getCleanShadow(V)); 2211 2212 if (dstTy->isIntegerTy() && srcTy->isIntegerTy()) 2213 return IRB.CreateIntCast(V, dstTy, Signed); 2214 if (dstTy->isVectorTy() && srcTy->isVectorTy() && 2215 cast<FixedVectorType>(dstTy)->getNumElements() == 2216 cast<FixedVectorType>(srcTy)->getNumElements()) 2217 return IRB.CreateIntCast(V, dstTy, Signed); 2218 Value *V1 = IRB.CreateBitCast(V, Type::getIntNTy(*MS.C, srcSizeInBits)); 2219 Value *V2 = 2220 IRB.CreateIntCast(V1, Type::getIntNTy(*MS.C, dstSizeInBits), Signed); 2221 return IRB.CreateBitCast(V2, dstTy); 2222 // TODO: handle struct types. 2223 } 2224 2225 /// Cast an application value to the type of its own shadow. 2226 Value *CreateAppToShadowCast(IRBuilder<> &IRB, Value *V) { 2227 Type *ShadowTy = getShadowTy(V); 2228 if (V->getType() == ShadowTy) 2229 return V; 2230 if (V->getType()->isPtrOrPtrVectorTy()) 2231 return IRB.CreatePtrToInt(V, ShadowTy); 2232 else 2233 return IRB.CreateBitCast(V, ShadowTy); 2234 } 2235 2236 /// Propagate shadow for arbitrary operation. 2237 void handleShadowOr(Instruction &I) { 2238 IRBuilder<> IRB(&I); 2239 ShadowAndOriginCombiner SC(this, IRB); 2240 for (Instruction::op_iterator OI = I.op_begin(); OI != I.op_end(); ++OI) 2241 SC.Add(OI->get()); 2242 SC.Done(&I); 2243 } 2244 2245 void visitFNeg(UnaryOperator &I) { handleShadowOr(I); } 2246 2247 // Handle multiplication by constant. 2248 // 2249 // Handle a special case of multiplication by constant that may have one or 2250 // more zeros in the lower bits. This makes corresponding number of lower bits 2251 // of the result zero as well. We model it by shifting the other operand 2252 // shadow left by the required number of bits. Effectively, we transform 2253 // (X * (A * 2**B)) to ((X << B) * A) and instrument (X << B) as (Sx << B). 2254 // We use multiplication by 2**N instead of shift to cover the case of 2255 // multiplication by 0, which may occur in some elements of a vector operand. 2256 void handleMulByConstant(BinaryOperator &I, Constant *ConstArg, 2257 Value *OtherArg) { 2258 Constant *ShadowMul; 2259 Type *Ty = ConstArg->getType(); 2260 if (auto *VTy = dyn_cast<VectorType>(Ty)) { 2261 unsigned NumElements = cast<FixedVectorType>(VTy)->getNumElements(); 2262 Type *EltTy = VTy->getElementType(); 2263 SmallVector<Constant *, 16> Elements; 2264 for (unsigned Idx = 0; Idx < NumElements; ++Idx) { 2265 if (ConstantInt *Elt = 2266 dyn_cast<ConstantInt>(ConstArg->getAggregateElement(Idx))) { 2267 const APInt &V = Elt->getValue(); 2268 APInt V2 = APInt(V.getBitWidth(), 1) << V.countTrailingZeros(); 2269 Elements.push_back(ConstantInt::get(EltTy, V2)); 2270 } else { 2271 Elements.push_back(ConstantInt::get(EltTy, 1)); 2272 } 2273 } 2274 ShadowMul = ConstantVector::get(Elements); 2275 } else { 2276 if (ConstantInt *Elt = dyn_cast<ConstantInt>(ConstArg)) { 2277 const APInt &V = Elt->getValue(); 2278 APInt V2 = APInt(V.getBitWidth(), 1) << V.countTrailingZeros(); 2279 ShadowMul = ConstantInt::get(Ty, V2); 2280 } else { 2281 ShadowMul = ConstantInt::get(Ty, 1); 2282 } 2283 } 2284 2285 IRBuilder<> IRB(&I); 2286 setShadow(&I, 2287 IRB.CreateMul(getShadow(OtherArg), ShadowMul, "msprop_mul_cst")); 2288 setOrigin(&I, getOrigin(OtherArg)); 2289 } 2290 2291 void visitMul(BinaryOperator &I) { 2292 Constant *constOp0 = dyn_cast<Constant>(I.getOperand(0)); 2293 Constant *constOp1 = dyn_cast<Constant>(I.getOperand(1)); 2294 if (constOp0 && !constOp1) 2295 handleMulByConstant(I, constOp0, I.getOperand(1)); 2296 else if (constOp1 && !constOp0) 2297 handleMulByConstant(I, constOp1, I.getOperand(0)); 2298 else 2299 handleShadowOr(I); 2300 } 2301 2302 void visitFAdd(BinaryOperator &I) { handleShadowOr(I); } 2303 void visitFSub(BinaryOperator &I) { handleShadowOr(I); } 2304 void visitFMul(BinaryOperator &I) { handleShadowOr(I); } 2305 void visitAdd(BinaryOperator &I) { handleShadowOr(I); } 2306 void visitSub(BinaryOperator &I) { handleShadowOr(I); } 2307 void visitXor(BinaryOperator &I) { handleShadowOr(I); } 2308 2309 void handleIntegerDiv(Instruction &I) { 2310 IRBuilder<> IRB(&I); 2311 // Strict on the second argument. 2312 insertShadowCheck(I.getOperand(1), &I); 2313 setShadow(&I, getShadow(&I, 0)); 2314 setOrigin(&I, getOrigin(&I, 0)); 2315 } 2316 2317 void visitUDiv(BinaryOperator &I) { handleIntegerDiv(I); } 2318 void visitSDiv(BinaryOperator &I) { handleIntegerDiv(I); } 2319 void visitURem(BinaryOperator &I) { handleIntegerDiv(I); } 2320 void visitSRem(BinaryOperator &I) { handleIntegerDiv(I); } 2321 2322 // Floating point division is side-effect free. We can not require that the 2323 // divisor is fully initialized and must propagate shadow. See PR37523. 2324 void visitFDiv(BinaryOperator &I) { handleShadowOr(I); } 2325 void visitFRem(BinaryOperator &I) { handleShadowOr(I); } 2326 2327 /// Instrument == and != comparisons. 2328 /// 2329 /// Sometimes the comparison result is known even if some of the bits of the 2330 /// arguments are not. 2331 void handleEqualityComparison(ICmpInst &I) { 2332 IRBuilder<> IRB(&I); 2333 Value *A = I.getOperand(0); 2334 Value *B = I.getOperand(1); 2335 Value *Sa = getShadow(A); 2336 Value *Sb = getShadow(B); 2337 2338 // Get rid of pointers and vectors of pointers. 2339 // For ints (and vectors of ints), types of A and Sa match, 2340 // and this is a no-op. 2341 A = IRB.CreatePointerCast(A, Sa->getType()); 2342 B = IRB.CreatePointerCast(B, Sb->getType()); 2343 2344 // A == B <==> (C = A^B) == 0 2345 // A != B <==> (C = A^B) != 0 2346 // Sc = Sa | Sb 2347 Value *C = IRB.CreateXor(A, B); 2348 Value *Sc = IRB.CreateOr(Sa, Sb); 2349 // Now dealing with i = (C == 0) comparison (or C != 0, does not matter now) 2350 // Result is defined if one of the following is true 2351 // * there is a defined 1 bit in C 2352 // * C is fully defined 2353 // Si = !(C & ~Sc) && Sc 2354 Value *Zero = Constant::getNullValue(Sc->getType()); 2355 Value *MinusOne = Constant::getAllOnesValue(Sc->getType()); 2356 Value *Si = 2357 IRB.CreateAnd(IRB.CreateICmpNE(Sc, Zero), 2358 IRB.CreateICmpEQ( 2359 IRB.CreateAnd(IRB.CreateXor(Sc, MinusOne), C), Zero)); 2360 Si->setName("_msprop_icmp"); 2361 setShadow(&I, Si); 2362 setOriginForNaryOp(I); 2363 } 2364 2365 /// Build the lowest possible value of V, taking into account V's 2366 /// uninitialized bits. 2367 Value *getLowestPossibleValue(IRBuilder<> &IRB, Value *A, Value *Sa, 2368 bool isSigned) { 2369 if (isSigned) { 2370 // Split shadow into sign bit and other bits. 2371 Value *SaOtherBits = IRB.CreateLShr(IRB.CreateShl(Sa, 1), 1); 2372 Value *SaSignBit = IRB.CreateXor(Sa, SaOtherBits); 2373 // Maximise the undefined shadow bit, minimize other undefined bits. 2374 return 2375 IRB.CreateOr(IRB.CreateAnd(A, IRB.CreateNot(SaOtherBits)), SaSignBit); 2376 } else { 2377 // Minimize undefined bits. 2378 return IRB.CreateAnd(A, IRB.CreateNot(Sa)); 2379 } 2380 } 2381 2382 /// Build the highest possible value of V, taking into account V's 2383 /// uninitialized bits. 2384 Value *getHighestPossibleValue(IRBuilder<> &IRB, Value *A, Value *Sa, 2385 bool isSigned) { 2386 if (isSigned) { 2387 // Split shadow into sign bit and other bits. 2388 Value *SaOtherBits = IRB.CreateLShr(IRB.CreateShl(Sa, 1), 1); 2389 Value *SaSignBit = IRB.CreateXor(Sa, SaOtherBits); 2390 // Minimise the undefined shadow bit, maximise other undefined bits. 2391 return 2392 IRB.CreateOr(IRB.CreateAnd(A, IRB.CreateNot(SaSignBit)), SaOtherBits); 2393 } else { 2394 // Maximize undefined bits. 2395 return IRB.CreateOr(A, Sa); 2396 } 2397 } 2398 2399 /// Instrument relational comparisons. 2400 /// 2401 /// This function does exact shadow propagation for all relational 2402 /// comparisons of integers, pointers and vectors of those. 2403 /// FIXME: output seems suboptimal when one of the operands is a constant 2404 void handleRelationalComparisonExact(ICmpInst &I) { 2405 IRBuilder<> IRB(&I); 2406 Value *A = I.getOperand(0); 2407 Value *B = I.getOperand(1); 2408 Value *Sa = getShadow(A); 2409 Value *Sb = getShadow(B); 2410 2411 // Get rid of pointers and vectors of pointers. 2412 // For ints (and vectors of ints), types of A and Sa match, 2413 // and this is a no-op. 2414 A = IRB.CreatePointerCast(A, Sa->getType()); 2415 B = IRB.CreatePointerCast(B, Sb->getType()); 2416 2417 // Let [a0, a1] be the interval of possible values of A, taking into account 2418 // its undefined bits. Let [b0, b1] be the interval of possible values of B. 2419 // Then (A cmp B) is defined iff (a0 cmp b1) == (a1 cmp b0). 2420 bool IsSigned = I.isSigned(); 2421 Value *S1 = IRB.CreateICmp(I.getPredicate(), 2422 getLowestPossibleValue(IRB, A, Sa, IsSigned), 2423 getHighestPossibleValue(IRB, B, Sb, IsSigned)); 2424 Value *S2 = IRB.CreateICmp(I.getPredicate(), 2425 getHighestPossibleValue(IRB, A, Sa, IsSigned), 2426 getLowestPossibleValue(IRB, B, Sb, IsSigned)); 2427 Value *Si = IRB.CreateXor(S1, S2); 2428 setShadow(&I, Si); 2429 setOriginForNaryOp(I); 2430 } 2431 2432 /// Instrument signed relational comparisons. 2433 /// 2434 /// Handle sign bit tests: x<0, x>=0, x<=-1, x>-1 by propagating the highest 2435 /// bit of the shadow. Everything else is delegated to handleShadowOr(). 2436 void handleSignedRelationalComparison(ICmpInst &I) { 2437 Constant *constOp; 2438 Value *op = nullptr; 2439 CmpInst::Predicate pre; 2440 if ((constOp = dyn_cast<Constant>(I.getOperand(1)))) { 2441 op = I.getOperand(0); 2442 pre = I.getPredicate(); 2443 } else if ((constOp = dyn_cast<Constant>(I.getOperand(0)))) { 2444 op = I.getOperand(1); 2445 pre = I.getSwappedPredicate(); 2446 } else { 2447 handleShadowOr(I); 2448 return; 2449 } 2450 2451 if ((constOp->isNullValue() && 2452 (pre == CmpInst::ICMP_SLT || pre == CmpInst::ICMP_SGE)) || 2453 (constOp->isAllOnesValue() && 2454 (pre == CmpInst::ICMP_SGT || pre == CmpInst::ICMP_SLE))) { 2455 IRBuilder<> IRB(&I); 2456 Value *Shadow = IRB.CreateICmpSLT(getShadow(op), getCleanShadow(op), 2457 "_msprop_icmp_s"); 2458 setShadow(&I, Shadow); 2459 setOrigin(&I, getOrigin(op)); 2460 } else { 2461 handleShadowOr(I); 2462 } 2463 } 2464 2465 void visitICmpInst(ICmpInst &I) { 2466 if (!ClHandleICmp) { 2467 handleShadowOr(I); 2468 return; 2469 } 2470 if (I.isEquality()) { 2471 handleEqualityComparison(I); 2472 return; 2473 } 2474 2475 assert(I.isRelational()); 2476 if (ClHandleICmpExact) { 2477 handleRelationalComparisonExact(I); 2478 return; 2479 } 2480 if (I.isSigned()) { 2481 handleSignedRelationalComparison(I); 2482 return; 2483 } 2484 2485 assert(I.isUnsigned()); 2486 if ((isa<Constant>(I.getOperand(0)) || isa<Constant>(I.getOperand(1)))) { 2487 handleRelationalComparisonExact(I); 2488 return; 2489 } 2490 2491 handleShadowOr(I); 2492 } 2493 2494 void visitFCmpInst(FCmpInst &I) { 2495 handleShadowOr(I); 2496 } 2497 2498 void handleShift(BinaryOperator &I) { 2499 IRBuilder<> IRB(&I); 2500 // If any of the S2 bits are poisoned, the whole thing is poisoned. 2501 // Otherwise perform the same shift on S1. 2502 Value *S1 = getShadow(&I, 0); 2503 Value *S2 = getShadow(&I, 1); 2504 Value *S2Conv = IRB.CreateSExt(IRB.CreateICmpNE(S2, getCleanShadow(S2)), 2505 S2->getType()); 2506 Value *V2 = I.getOperand(1); 2507 Value *Shift = IRB.CreateBinOp(I.getOpcode(), S1, V2); 2508 setShadow(&I, IRB.CreateOr(Shift, S2Conv)); 2509 setOriginForNaryOp(I); 2510 } 2511 2512 void visitShl(BinaryOperator &I) { handleShift(I); } 2513 void visitAShr(BinaryOperator &I) { handleShift(I); } 2514 void visitLShr(BinaryOperator &I) { handleShift(I); } 2515 2516 /// Instrument llvm.memmove 2517 /// 2518 /// At this point we don't know if llvm.memmove will be inlined or not. 2519 /// If we don't instrument it and it gets inlined, 2520 /// our interceptor will not kick in and we will lose the memmove. 2521 /// If we instrument the call here, but it does not get inlined, 2522 /// we will memove the shadow twice: which is bad in case 2523 /// of overlapping regions. So, we simply lower the intrinsic to a call. 2524 /// 2525 /// Similar situation exists for memcpy and memset. 2526 void visitMemMoveInst(MemMoveInst &I) { 2527 IRBuilder<> IRB(&I); 2528 IRB.CreateCall( 2529 MS.MemmoveFn, 2530 {IRB.CreatePointerCast(I.getArgOperand(0), IRB.getInt8PtrTy()), 2531 IRB.CreatePointerCast(I.getArgOperand(1), IRB.getInt8PtrTy()), 2532 IRB.CreateIntCast(I.getArgOperand(2), MS.IntptrTy, false)}); 2533 I.eraseFromParent(); 2534 } 2535 2536 // Similar to memmove: avoid copying shadow twice. 2537 // This is somewhat unfortunate as it may slowdown small constant memcpys. 2538 // FIXME: consider doing manual inline for small constant sizes and proper 2539 // alignment. 2540 void visitMemCpyInst(MemCpyInst &I) { 2541 IRBuilder<> IRB(&I); 2542 IRB.CreateCall( 2543 MS.MemcpyFn, 2544 {IRB.CreatePointerCast(I.getArgOperand(0), IRB.getInt8PtrTy()), 2545 IRB.CreatePointerCast(I.getArgOperand(1), IRB.getInt8PtrTy()), 2546 IRB.CreateIntCast(I.getArgOperand(2), MS.IntptrTy, false)}); 2547 I.eraseFromParent(); 2548 } 2549 2550 // Same as memcpy. 2551 void visitMemSetInst(MemSetInst &I) { 2552 IRBuilder<> IRB(&I); 2553 IRB.CreateCall( 2554 MS.MemsetFn, 2555 {IRB.CreatePointerCast(I.getArgOperand(0), IRB.getInt8PtrTy()), 2556 IRB.CreateIntCast(I.getArgOperand(1), IRB.getInt32Ty(), false), 2557 IRB.CreateIntCast(I.getArgOperand(2), MS.IntptrTy, false)}); 2558 I.eraseFromParent(); 2559 } 2560 2561 void visitVAStartInst(VAStartInst &I) { 2562 VAHelper->visitVAStartInst(I); 2563 } 2564 2565 void visitVACopyInst(VACopyInst &I) { 2566 VAHelper->visitVACopyInst(I); 2567 } 2568 2569 /// Handle vector store-like intrinsics. 2570 /// 2571 /// Instrument intrinsics that look like a simple SIMD store: writes memory, 2572 /// has 1 pointer argument and 1 vector argument, returns void. 2573 bool handleVectorStoreIntrinsic(IntrinsicInst &I) { 2574 IRBuilder<> IRB(&I); 2575 Value* Addr = I.getArgOperand(0); 2576 Value *Shadow = getShadow(&I, 1); 2577 Value *ShadowPtr, *OriginPtr; 2578 2579 // We don't know the pointer alignment (could be unaligned SSE store!). 2580 // Have to assume to worst case. 2581 std::tie(ShadowPtr, OriginPtr) = getShadowOriginPtr( 2582 Addr, IRB, Shadow->getType(), Align(1), /*isStore*/ true); 2583 IRB.CreateAlignedStore(Shadow, ShadowPtr, Align(1)); 2584 2585 if (ClCheckAccessAddress) 2586 insertShadowCheck(Addr, &I); 2587 2588 // FIXME: factor out common code from materializeStores 2589 if (MS.TrackOrigins) IRB.CreateStore(getOrigin(&I, 1), OriginPtr); 2590 return true; 2591 } 2592 2593 /// Handle vector load-like intrinsics. 2594 /// 2595 /// Instrument intrinsics that look like a simple SIMD load: reads memory, 2596 /// has 1 pointer argument, returns a vector. 2597 bool handleVectorLoadIntrinsic(IntrinsicInst &I) { 2598 IRBuilder<> IRB(&I); 2599 Value *Addr = I.getArgOperand(0); 2600 2601 Type *ShadowTy = getShadowTy(&I); 2602 Value *ShadowPtr = nullptr, *OriginPtr = nullptr; 2603 if (PropagateShadow) { 2604 // We don't know the pointer alignment (could be unaligned SSE load!). 2605 // Have to assume to worst case. 2606 const Align Alignment = Align(1); 2607 std::tie(ShadowPtr, OriginPtr) = 2608 getShadowOriginPtr(Addr, IRB, ShadowTy, Alignment, /*isStore*/ false); 2609 setShadow(&I, 2610 IRB.CreateAlignedLoad(ShadowTy, ShadowPtr, Alignment, "_msld")); 2611 } else { 2612 setShadow(&I, getCleanShadow(&I)); 2613 } 2614 2615 if (ClCheckAccessAddress) 2616 insertShadowCheck(Addr, &I); 2617 2618 if (MS.TrackOrigins) { 2619 if (PropagateShadow) 2620 setOrigin(&I, IRB.CreateLoad(MS.OriginTy, OriginPtr)); 2621 else 2622 setOrigin(&I, getCleanOrigin()); 2623 } 2624 return true; 2625 } 2626 2627 /// Handle (SIMD arithmetic)-like intrinsics. 2628 /// 2629 /// Instrument intrinsics with any number of arguments of the same type, 2630 /// equal to the return type. The type should be simple (no aggregates or 2631 /// pointers; vectors are fine). 2632 /// Caller guarantees that this intrinsic does not access memory. 2633 bool maybeHandleSimpleNomemIntrinsic(IntrinsicInst &I) { 2634 Type *RetTy = I.getType(); 2635 if (!(RetTy->isIntOrIntVectorTy() || 2636 RetTy->isFPOrFPVectorTy() || 2637 RetTy->isX86_MMXTy())) 2638 return false; 2639 2640 unsigned NumArgOperands = I.getNumArgOperands(); 2641 2642 for (unsigned i = 0; i < NumArgOperands; ++i) { 2643 Type *Ty = I.getArgOperand(i)->getType(); 2644 if (Ty != RetTy) 2645 return false; 2646 } 2647 2648 IRBuilder<> IRB(&I); 2649 ShadowAndOriginCombiner SC(this, IRB); 2650 for (unsigned i = 0; i < NumArgOperands; ++i) 2651 SC.Add(I.getArgOperand(i)); 2652 SC.Done(&I); 2653 2654 return true; 2655 } 2656 2657 /// Heuristically instrument unknown intrinsics. 2658 /// 2659 /// The main purpose of this code is to do something reasonable with all 2660 /// random intrinsics we might encounter, most importantly - SIMD intrinsics. 2661 /// We recognize several classes of intrinsics by their argument types and 2662 /// ModRefBehaviour and apply special instrumentation when we are reasonably 2663 /// sure that we know what the intrinsic does. 2664 /// 2665 /// We special-case intrinsics where this approach fails. See llvm.bswap 2666 /// handling as an example of that. 2667 bool handleUnknownIntrinsic(IntrinsicInst &I) { 2668 unsigned NumArgOperands = I.getNumArgOperands(); 2669 if (NumArgOperands == 0) 2670 return false; 2671 2672 if (NumArgOperands == 2 && 2673 I.getArgOperand(0)->getType()->isPointerTy() && 2674 I.getArgOperand(1)->getType()->isVectorTy() && 2675 I.getType()->isVoidTy() && 2676 !I.onlyReadsMemory()) { 2677 // This looks like a vector store. 2678 return handleVectorStoreIntrinsic(I); 2679 } 2680 2681 if (NumArgOperands == 1 && 2682 I.getArgOperand(0)->getType()->isPointerTy() && 2683 I.getType()->isVectorTy() && 2684 I.onlyReadsMemory()) { 2685 // This looks like a vector load. 2686 return handleVectorLoadIntrinsic(I); 2687 } 2688 2689 if (I.doesNotAccessMemory()) 2690 if (maybeHandleSimpleNomemIntrinsic(I)) 2691 return true; 2692 2693 // FIXME: detect and handle SSE maskstore/maskload 2694 return false; 2695 } 2696 2697 void handleInvariantGroup(IntrinsicInst &I) { 2698 setShadow(&I, getShadow(&I, 0)); 2699 setOrigin(&I, getOrigin(&I, 0)); 2700 } 2701 2702 void handleLifetimeStart(IntrinsicInst &I) { 2703 if (!PoisonStack) 2704 return; 2705 AllocaInst *AI = llvm::findAllocaForValue(I.getArgOperand(1)); 2706 if (!AI) 2707 InstrumentLifetimeStart = false; 2708 LifetimeStartList.push_back(std::make_pair(&I, AI)); 2709 } 2710 2711 void handleBswap(IntrinsicInst &I) { 2712 IRBuilder<> IRB(&I); 2713 Value *Op = I.getArgOperand(0); 2714 Type *OpType = Op->getType(); 2715 Function *BswapFunc = Intrinsic::getDeclaration( 2716 F.getParent(), Intrinsic::bswap, makeArrayRef(&OpType, 1)); 2717 setShadow(&I, IRB.CreateCall(BswapFunc, getShadow(Op))); 2718 setOrigin(&I, getOrigin(Op)); 2719 } 2720 2721 // Instrument vector convert intrinsic. 2722 // 2723 // This function instruments intrinsics like cvtsi2ss: 2724 // %Out = int_xxx_cvtyyy(%ConvertOp) 2725 // or 2726 // %Out = int_xxx_cvtyyy(%CopyOp, %ConvertOp) 2727 // Intrinsic converts \p NumUsedElements elements of \p ConvertOp to the same 2728 // number \p Out elements, and (if has 2 arguments) copies the rest of the 2729 // elements from \p CopyOp. 2730 // In most cases conversion involves floating-point value which may trigger a 2731 // hardware exception when not fully initialized. For this reason we require 2732 // \p ConvertOp[0:NumUsedElements] to be fully initialized and trap otherwise. 2733 // We copy the shadow of \p CopyOp[NumUsedElements:] to \p 2734 // Out[NumUsedElements:]. This means that intrinsics without \p CopyOp always 2735 // return a fully initialized value. 2736 void handleVectorConvertIntrinsic(IntrinsicInst &I, int NumUsedElements) { 2737 IRBuilder<> IRB(&I); 2738 Value *CopyOp, *ConvertOp; 2739 2740 switch (I.getNumArgOperands()) { 2741 case 3: 2742 assert(isa<ConstantInt>(I.getArgOperand(2)) && "Invalid rounding mode"); 2743 LLVM_FALLTHROUGH; 2744 case 2: 2745 CopyOp = I.getArgOperand(0); 2746 ConvertOp = I.getArgOperand(1); 2747 break; 2748 case 1: 2749 ConvertOp = I.getArgOperand(0); 2750 CopyOp = nullptr; 2751 break; 2752 default: 2753 llvm_unreachable("Cvt intrinsic with unsupported number of arguments."); 2754 } 2755 2756 // The first *NumUsedElements* elements of ConvertOp are converted to the 2757 // same number of output elements. The rest of the output is copied from 2758 // CopyOp, or (if not available) filled with zeroes. 2759 // Combine shadow for elements of ConvertOp that are used in this operation, 2760 // and insert a check. 2761 // FIXME: consider propagating shadow of ConvertOp, at least in the case of 2762 // int->any conversion. 2763 Value *ConvertShadow = getShadow(ConvertOp); 2764 Value *AggShadow = nullptr; 2765 if (ConvertOp->getType()->isVectorTy()) { 2766 AggShadow = IRB.CreateExtractElement( 2767 ConvertShadow, ConstantInt::get(IRB.getInt32Ty(), 0)); 2768 for (int i = 1; i < NumUsedElements; ++i) { 2769 Value *MoreShadow = IRB.CreateExtractElement( 2770 ConvertShadow, ConstantInt::get(IRB.getInt32Ty(), i)); 2771 AggShadow = IRB.CreateOr(AggShadow, MoreShadow); 2772 } 2773 } else { 2774 AggShadow = ConvertShadow; 2775 } 2776 assert(AggShadow->getType()->isIntegerTy()); 2777 insertShadowCheck(AggShadow, getOrigin(ConvertOp), &I); 2778 2779 // Build result shadow by zero-filling parts of CopyOp shadow that come from 2780 // ConvertOp. 2781 if (CopyOp) { 2782 assert(CopyOp->getType() == I.getType()); 2783 assert(CopyOp->getType()->isVectorTy()); 2784 Value *ResultShadow = getShadow(CopyOp); 2785 Type *EltTy = cast<VectorType>(ResultShadow->getType())->getElementType(); 2786 for (int i = 0; i < NumUsedElements; ++i) { 2787 ResultShadow = IRB.CreateInsertElement( 2788 ResultShadow, ConstantInt::getNullValue(EltTy), 2789 ConstantInt::get(IRB.getInt32Ty(), i)); 2790 } 2791 setShadow(&I, ResultShadow); 2792 setOrigin(&I, getOrigin(CopyOp)); 2793 } else { 2794 setShadow(&I, getCleanShadow(&I)); 2795 setOrigin(&I, getCleanOrigin()); 2796 } 2797 } 2798 2799 // Given a scalar or vector, extract lower 64 bits (or less), and return all 2800 // zeroes if it is zero, and all ones otherwise. 2801 Value *Lower64ShadowExtend(IRBuilder<> &IRB, Value *S, Type *T) { 2802 if (S->getType()->isVectorTy()) 2803 S = CreateShadowCast(IRB, S, IRB.getInt64Ty(), /* Signed */ true); 2804 assert(S->getType()->getPrimitiveSizeInBits() <= 64); 2805 Value *S2 = IRB.CreateICmpNE(S, getCleanShadow(S)); 2806 return CreateShadowCast(IRB, S2, T, /* Signed */ true); 2807 } 2808 2809 // Given a vector, extract its first element, and return all 2810 // zeroes if it is zero, and all ones otherwise. 2811 Value *LowerElementShadowExtend(IRBuilder<> &IRB, Value *S, Type *T) { 2812 Value *S1 = IRB.CreateExtractElement(S, (uint64_t)0); 2813 Value *S2 = IRB.CreateICmpNE(S1, getCleanShadow(S1)); 2814 return CreateShadowCast(IRB, S2, T, /* Signed */ true); 2815 } 2816 2817 Value *VariableShadowExtend(IRBuilder<> &IRB, Value *S) { 2818 Type *T = S->getType(); 2819 assert(T->isVectorTy()); 2820 Value *S2 = IRB.CreateICmpNE(S, getCleanShadow(S)); 2821 return IRB.CreateSExt(S2, T); 2822 } 2823 2824 // Instrument vector shift intrinsic. 2825 // 2826 // This function instruments intrinsics like int_x86_avx2_psll_w. 2827 // Intrinsic shifts %In by %ShiftSize bits. 2828 // %ShiftSize may be a vector. In that case the lower 64 bits determine shift 2829 // size, and the rest is ignored. Behavior is defined even if shift size is 2830 // greater than register (or field) width. 2831 void handleVectorShiftIntrinsic(IntrinsicInst &I, bool Variable) { 2832 assert(I.getNumArgOperands() == 2); 2833 IRBuilder<> IRB(&I); 2834 // If any of the S2 bits are poisoned, the whole thing is poisoned. 2835 // Otherwise perform the same shift on S1. 2836 Value *S1 = getShadow(&I, 0); 2837 Value *S2 = getShadow(&I, 1); 2838 Value *S2Conv = Variable ? VariableShadowExtend(IRB, S2) 2839 : Lower64ShadowExtend(IRB, S2, getShadowTy(&I)); 2840 Value *V1 = I.getOperand(0); 2841 Value *V2 = I.getOperand(1); 2842 Value *Shift = IRB.CreateCall(I.getFunctionType(), I.getCalledOperand(), 2843 {IRB.CreateBitCast(S1, V1->getType()), V2}); 2844 Shift = IRB.CreateBitCast(Shift, getShadowTy(&I)); 2845 setShadow(&I, IRB.CreateOr(Shift, S2Conv)); 2846 setOriginForNaryOp(I); 2847 } 2848 2849 // Get an X86_MMX-sized vector type. 2850 Type *getMMXVectorTy(unsigned EltSizeInBits) { 2851 const unsigned X86_MMXSizeInBits = 64; 2852 assert(EltSizeInBits != 0 && (X86_MMXSizeInBits % EltSizeInBits) == 0 && 2853 "Illegal MMX vector element size"); 2854 return FixedVectorType::get(IntegerType::get(*MS.C, EltSizeInBits), 2855 X86_MMXSizeInBits / EltSizeInBits); 2856 } 2857 2858 // Returns a signed counterpart for an (un)signed-saturate-and-pack 2859 // intrinsic. 2860 Intrinsic::ID getSignedPackIntrinsic(Intrinsic::ID id) { 2861 switch (id) { 2862 case Intrinsic::x86_sse2_packsswb_128: 2863 case Intrinsic::x86_sse2_packuswb_128: 2864 return Intrinsic::x86_sse2_packsswb_128; 2865 2866 case Intrinsic::x86_sse2_packssdw_128: 2867 case Intrinsic::x86_sse41_packusdw: 2868 return Intrinsic::x86_sse2_packssdw_128; 2869 2870 case Intrinsic::x86_avx2_packsswb: 2871 case Intrinsic::x86_avx2_packuswb: 2872 return Intrinsic::x86_avx2_packsswb; 2873 2874 case Intrinsic::x86_avx2_packssdw: 2875 case Intrinsic::x86_avx2_packusdw: 2876 return Intrinsic::x86_avx2_packssdw; 2877 2878 case Intrinsic::x86_mmx_packsswb: 2879 case Intrinsic::x86_mmx_packuswb: 2880 return Intrinsic::x86_mmx_packsswb; 2881 2882 case Intrinsic::x86_mmx_packssdw: 2883 return Intrinsic::x86_mmx_packssdw; 2884 default: 2885 llvm_unreachable("unexpected intrinsic id"); 2886 } 2887 } 2888 2889 // Instrument vector pack intrinsic. 2890 // 2891 // This function instruments intrinsics like x86_mmx_packsswb, that 2892 // packs elements of 2 input vectors into half as many bits with saturation. 2893 // Shadow is propagated with the signed variant of the same intrinsic applied 2894 // to sext(Sa != zeroinitializer), sext(Sb != zeroinitializer). 2895 // EltSizeInBits is used only for x86mmx arguments. 2896 void handleVectorPackIntrinsic(IntrinsicInst &I, unsigned EltSizeInBits = 0) { 2897 assert(I.getNumArgOperands() == 2); 2898 bool isX86_MMX = I.getOperand(0)->getType()->isX86_MMXTy(); 2899 IRBuilder<> IRB(&I); 2900 Value *S1 = getShadow(&I, 0); 2901 Value *S2 = getShadow(&I, 1); 2902 assert(isX86_MMX || S1->getType()->isVectorTy()); 2903 2904 // SExt and ICmpNE below must apply to individual elements of input vectors. 2905 // In case of x86mmx arguments, cast them to appropriate vector types and 2906 // back. 2907 Type *T = isX86_MMX ? getMMXVectorTy(EltSizeInBits) : S1->getType(); 2908 if (isX86_MMX) { 2909 S1 = IRB.CreateBitCast(S1, T); 2910 S2 = IRB.CreateBitCast(S2, T); 2911 } 2912 Value *S1_ext = IRB.CreateSExt( 2913 IRB.CreateICmpNE(S1, Constant::getNullValue(T)), T); 2914 Value *S2_ext = IRB.CreateSExt( 2915 IRB.CreateICmpNE(S2, Constant::getNullValue(T)), T); 2916 if (isX86_MMX) { 2917 Type *X86_MMXTy = Type::getX86_MMXTy(*MS.C); 2918 S1_ext = IRB.CreateBitCast(S1_ext, X86_MMXTy); 2919 S2_ext = IRB.CreateBitCast(S2_ext, X86_MMXTy); 2920 } 2921 2922 Function *ShadowFn = Intrinsic::getDeclaration( 2923 F.getParent(), getSignedPackIntrinsic(I.getIntrinsicID())); 2924 2925 Value *S = 2926 IRB.CreateCall(ShadowFn, {S1_ext, S2_ext}, "_msprop_vector_pack"); 2927 if (isX86_MMX) S = IRB.CreateBitCast(S, getShadowTy(&I)); 2928 setShadow(&I, S); 2929 setOriginForNaryOp(I); 2930 } 2931 2932 // Instrument sum-of-absolute-differences intrinsic. 2933 void handleVectorSadIntrinsic(IntrinsicInst &I) { 2934 const unsigned SignificantBitsPerResultElement = 16; 2935 bool isX86_MMX = I.getOperand(0)->getType()->isX86_MMXTy(); 2936 Type *ResTy = isX86_MMX ? IntegerType::get(*MS.C, 64) : I.getType(); 2937 unsigned ZeroBitsPerResultElement = 2938 ResTy->getScalarSizeInBits() - SignificantBitsPerResultElement; 2939 2940 IRBuilder<> IRB(&I); 2941 Value *S = IRB.CreateOr(getShadow(&I, 0), getShadow(&I, 1)); 2942 S = IRB.CreateBitCast(S, ResTy); 2943 S = IRB.CreateSExt(IRB.CreateICmpNE(S, Constant::getNullValue(ResTy)), 2944 ResTy); 2945 S = IRB.CreateLShr(S, ZeroBitsPerResultElement); 2946 S = IRB.CreateBitCast(S, getShadowTy(&I)); 2947 setShadow(&I, S); 2948 setOriginForNaryOp(I); 2949 } 2950 2951 // Instrument multiply-add intrinsic. 2952 void handleVectorPmaddIntrinsic(IntrinsicInst &I, 2953 unsigned EltSizeInBits = 0) { 2954 bool isX86_MMX = I.getOperand(0)->getType()->isX86_MMXTy(); 2955 Type *ResTy = isX86_MMX ? getMMXVectorTy(EltSizeInBits * 2) : I.getType(); 2956 IRBuilder<> IRB(&I); 2957 Value *S = IRB.CreateOr(getShadow(&I, 0), getShadow(&I, 1)); 2958 S = IRB.CreateBitCast(S, ResTy); 2959 S = IRB.CreateSExt(IRB.CreateICmpNE(S, Constant::getNullValue(ResTy)), 2960 ResTy); 2961 S = IRB.CreateBitCast(S, getShadowTy(&I)); 2962 setShadow(&I, S); 2963 setOriginForNaryOp(I); 2964 } 2965 2966 // Instrument compare-packed intrinsic. 2967 // Basically, an or followed by sext(icmp ne 0) to end up with all-zeros or 2968 // all-ones shadow. 2969 void handleVectorComparePackedIntrinsic(IntrinsicInst &I) { 2970 IRBuilder<> IRB(&I); 2971 Type *ResTy = getShadowTy(&I); 2972 Value *S0 = IRB.CreateOr(getShadow(&I, 0), getShadow(&I, 1)); 2973 Value *S = IRB.CreateSExt( 2974 IRB.CreateICmpNE(S0, Constant::getNullValue(ResTy)), ResTy); 2975 setShadow(&I, S); 2976 setOriginForNaryOp(I); 2977 } 2978 2979 // Instrument compare-scalar intrinsic. 2980 // This handles both cmp* intrinsics which return the result in the first 2981 // element of a vector, and comi* which return the result as i32. 2982 void handleVectorCompareScalarIntrinsic(IntrinsicInst &I) { 2983 IRBuilder<> IRB(&I); 2984 Value *S0 = IRB.CreateOr(getShadow(&I, 0), getShadow(&I, 1)); 2985 Value *S = LowerElementShadowExtend(IRB, S0, getShadowTy(&I)); 2986 setShadow(&I, S); 2987 setOriginForNaryOp(I); 2988 } 2989 2990 // Instrument generic vector reduction intrinsics 2991 // by ORing together all their fields. 2992 void handleVectorReduceIntrinsic(IntrinsicInst &I) { 2993 IRBuilder<> IRB(&I); 2994 Value *S = IRB.CreateOrReduce(getShadow(&I, 0)); 2995 setShadow(&I, S); 2996 setOrigin(&I, getOrigin(&I, 0)); 2997 } 2998 2999 // Instrument experimental.vector.reduce.or intrinsic. 3000 // Valid (non-poisoned) set bits in the operand pull low the 3001 // corresponding shadow bits. 3002 void handleVectorReduceOrIntrinsic(IntrinsicInst &I) { 3003 IRBuilder<> IRB(&I); 3004 Value *OperandShadow = getShadow(&I, 0); 3005 Value *OperandUnsetBits = IRB.CreateNot(I.getOperand(0)); 3006 Value *OperandUnsetOrPoison = IRB.CreateOr(OperandUnsetBits, OperandShadow); 3007 // Bit N is clean if any field's bit N is 1 and unpoison 3008 Value *OutShadowMask = IRB.CreateAndReduce(OperandUnsetOrPoison); 3009 // Otherwise, it is clean if every field's bit N is unpoison 3010 Value *OrShadow = IRB.CreateOrReduce(OperandShadow); 3011 Value *S = IRB.CreateAnd(OutShadowMask, OrShadow); 3012 3013 setShadow(&I, S); 3014 setOrigin(&I, getOrigin(&I, 0)); 3015 } 3016 3017 // Instrument experimental.vector.reduce.or intrinsic. 3018 // Valid (non-poisoned) unset bits in the operand pull down the 3019 // corresponding shadow bits. 3020 void handleVectorReduceAndIntrinsic(IntrinsicInst &I) { 3021 IRBuilder<> IRB(&I); 3022 Value *OperandShadow = getShadow(&I, 0); 3023 Value *OperandSetOrPoison = IRB.CreateOr(I.getOperand(0), OperandShadow); 3024 // Bit N is clean if any field's bit N is 0 and unpoison 3025 Value *OutShadowMask = IRB.CreateAndReduce(OperandSetOrPoison); 3026 // Otherwise, it is clean if every field's bit N is unpoison 3027 Value *OrShadow = IRB.CreateOrReduce(OperandShadow); 3028 Value *S = IRB.CreateAnd(OutShadowMask, OrShadow); 3029 3030 setShadow(&I, S); 3031 setOrigin(&I, getOrigin(&I, 0)); 3032 } 3033 3034 void handleStmxcsr(IntrinsicInst &I) { 3035 IRBuilder<> IRB(&I); 3036 Value* Addr = I.getArgOperand(0); 3037 Type *Ty = IRB.getInt32Ty(); 3038 Value *ShadowPtr = 3039 getShadowOriginPtr(Addr, IRB, Ty, Align(1), /*isStore*/ true).first; 3040 3041 IRB.CreateStore(getCleanShadow(Ty), 3042 IRB.CreatePointerCast(ShadowPtr, Ty->getPointerTo())); 3043 3044 if (ClCheckAccessAddress) 3045 insertShadowCheck(Addr, &I); 3046 } 3047 3048 void handleLdmxcsr(IntrinsicInst &I) { 3049 if (!InsertChecks) return; 3050 3051 IRBuilder<> IRB(&I); 3052 Value *Addr = I.getArgOperand(0); 3053 Type *Ty = IRB.getInt32Ty(); 3054 const Align Alignment = Align(1); 3055 Value *ShadowPtr, *OriginPtr; 3056 std::tie(ShadowPtr, OriginPtr) = 3057 getShadowOriginPtr(Addr, IRB, Ty, Alignment, /*isStore*/ false); 3058 3059 if (ClCheckAccessAddress) 3060 insertShadowCheck(Addr, &I); 3061 3062 Value *Shadow = IRB.CreateAlignedLoad(Ty, ShadowPtr, Alignment, "_ldmxcsr"); 3063 Value *Origin = MS.TrackOrigins ? IRB.CreateLoad(MS.OriginTy, OriginPtr) 3064 : getCleanOrigin(); 3065 insertShadowCheck(Shadow, Origin, &I); 3066 } 3067 3068 void handleMaskedStore(IntrinsicInst &I) { 3069 IRBuilder<> IRB(&I); 3070 Value *V = I.getArgOperand(0); 3071 Value *Addr = I.getArgOperand(1); 3072 const Align Alignment( 3073 cast<ConstantInt>(I.getArgOperand(2))->getZExtValue()); 3074 Value *Mask = I.getArgOperand(3); 3075 Value *Shadow = getShadow(V); 3076 3077 Value *ShadowPtr; 3078 Value *OriginPtr; 3079 std::tie(ShadowPtr, OriginPtr) = getShadowOriginPtr( 3080 Addr, IRB, Shadow->getType(), Alignment, /*isStore*/ true); 3081 3082 if (ClCheckAccessAddress) { 3083 insertShadowCheck(Addr, &I); 3084 // Uninitialized mask is kind of like uninitialized address, but not as 3085 // scary. 3086 insertShadowCheck(Mask, &I); 3087 } 3088 3089 IRB.CreateMaskedStore(Shadow, ShadowPtr, Alignment, Mask); 3090 3091 if (MS.TrackOrigins) { 3092 auto &DL = F.getParent()->getDataLayout(); 3093 paintOrigin(IRB, getOrigin(V), OriginPtr, 3094 DL.getTypeStoreSize(Shadow->getType()), 3095 std::max(Alignment, kMinOriginAlignment)); 3096 } 3097 } 3098 3099 bool handleMaskedLoad(IntrinsicInst &I) { 3100 IRBuilder<> IRB(&I); 3101 Value *Addr = I.getArgOperand(0); 3102 const Align Alignment( 3103 cast<ConstantInt>(I.getArgOperand(1))->getZExtValue()); 3104 Value *Mask = I.getArgOperand(2); 3105 Value *PassThru = I.getArgOperand(3); 3106 3107 Type *ShadowTy = getShadowTy(&I); 3108 Value *ShadowPtr, *OriginPtr; 3109 if (PropagateShadow) { 3110 std::tie(ShadowPtr, OriginPtr) = 3111 getShadowOriginPtr(Addr, IRB, ShadowTy, Alignment, /*isStore*/ false); 3112 setShadow(&I, IRB.CreateMaskedLoad(ShadowPtr, Alignment, Mask, 3113 getShadow(PassThru), "_msmaskedld")); 3114 } else { 3115 setShadow(&I, getCleanShadow(&I)); 3116 } 3117 3118 if (ClCheckAccessAddress) { 3119 insertShadowCheck(Addr, &I); 3120 insertShadowCheck(Mask, &I); 3121 } 3122 3123 if (MS.TrackOrigins) { 3124 if (PropagateShadow) { 3125 // Choose between PassThru's and the loaded value's origins. 3126 Value *MaskedPassThruShadow = IRB.CreateAnd( 3127 getShadow(PassThru), IRB.CreateSExt(IRB.CreateNeg(Mask), ShadowTy)); 3128 3129 Value *Acc = IRB.CreateExtractElement( 3130 MaskedPassThruShadow, ConstantInt::get(IRB.getInt32Ty(), 0)); 3131 for (int i = 1, N = cast<FixedVectorType>(PassThru->getType()) 3132 ->getNumElements(); 3133 i < N; ++i) { 3134 Value *More = IRB.CreateExtractElement( 3135 MaskedPassThruShadow, ConstantInt::get(IRB.getInt32Ty(), i)); 3136 Acc = IRB.CreateOr(Acc, More); 3137 } 3138 3139 Value *Origin = IRB.CreateSelect( 3140 IRB.CreateICmpNE(Acc, Constant::getNullValue(Acc->getType())), 3141 getOrigin(PassThru), IRB.CreateLoad(MS.OriginTy, OriginPtr)); 3142 3143 setOrigin(&I, Origin); 3144 } else { 3145 setOrigin(&I, getCleanOrigin()); 3146 } 3147 } 3148 return true; 3149 } 3150 3151 // Instrument BMI / BMI2 intrinsics. 3152 // All of these intrinsics are Z = I(X, Y) 3153 // where the types of all operands and the result match, and are either i32 or i64. 3154 // The following instrumentation happens to work for all of them: 3155 // Sz = I(Sx, Y) | (sext (Sy != 0)) 3156 void handleBmiIntrinsic(IntrinsicInst &I) { 3157 IRBuilder<> IRB(&I); 3158 Type *ShadowTy = getShadowTy(&I); 3159 3160 // If any bit of the mask operand is poisoned, then the whole thing is. 3161 Value *SMask = getShadow(&I, 1); 3162 SMask = IRB.CreateSExt(IRB.CreateICmpNE(SMask, getCleanShadow(ShadowTy)), 3163 ShadowTy); 3164 // Apply the same intrinsic to the shadow of the first operand. 3165 Value *S = IRB.CreateCall(I.getCalledFunction(), 3166 {getShadow(&I, 0), I.getOperand(1)}); 3167 S = IRB.CreateOr(SMask, S); 3168 setShadow(&I, S); 3169 setOriginForNaryOp(I); 3170 } 3171 3172 SmallVector<int, 8> getPclmulMask(unsigned Width, bool OddElements) { 3173 SmallVector<int, 8> Mask; 3174 for (unsigned X = OddElements ? 1 : 0; X < Width; X += 2) { 3175 Mask.append(2, X); 3176 } 3177 return Mask; 3178 } 3179 3180 // Instrument pclmul intrinsics. 3181 // These intrinsics operate either on odd or on even elements of the input 3182 // vectors, depending on the constant in the 3rd argument, ignoring the rest. 3183 // Replace the unused elements with copies of the used ones, ex: 3184 // (0, 1, 2, 3) -> (0, 0, 2, 2) (even case) 3185 // or 3186 // (0, 1, 2, 3) -> (1, 1, 3, 3) (odd case) 3187 // and then apply the usual shadow combining logic. 3188 void handlePclmulIntrinsic(IntrinsicInst &I) { 3189 IRBuilder<> IRB(&I); 3190 Type *ShadowTy = getShadowTy(&I); 3191 unsigned Width = 3192 cast<FixedVectorType>(I.getArgOperand(0)->getType())->getNumElements(); 3193 assert(isa<ConstantInt>(I.getArgOperand(2)) && 3194 "pclmul 3rd operand must be a constant"); 3195 unsigned Imm = cast<ConstantInt>(I.getArgOperand(2))->getZExtValue(); 3196 Value *Shuf0 = 3197 IRB.CreateShuffleVector(getShadow(&I, 0), UndefValue::get(ShadowTy), 3198 getPclmulMask(Width, Imm & 0x01)); 3199 Value *Shuf1 = 3200 IRB.CreateShuffleVector(getShadow(&I, 1), UndefValue::get(ShadowTy), 3201 getPclmulMask(Width, Imm & 0x10)); 3202 ShadowAndOriginCombiner SOC(this, IRB); 3203 SOC.Add(Shuf0, getOrigin(&I, 0)); 3204 SOC.Add(Shuf1, getOrigin(&I, 1)); 3205 SOC.Done(&I); 3206 } 3207 3208 // Instrument _mm_*_sd intrinsics 3209 void handleUnarySdIntrinsic(IntrinsicInst &I) { 3210 IRBuilder<> IRB(&I); 3211 Value *First = getShadow(&I, 0); 3212 Value *Second = getShadow(&I, 1); 3213 // High word of first operand, low word of second 3214 Value *Shadow = 3215 IRB.CreateShuffleVector(First, Second, llvm::makeArrayRef<int>({2, 1})); 3216 3217 setShadow(&I, Shadow); 3218 setOriginForNaryOp(I); 3219 } 3220 3221 void handleBinarySdIntrinsic(IntrinsicInst &I) { 3222 IRBuilder<> IRB(&I); 3223 Value *First = getShadow(&I, 0); 3224 Value *Second = getShadow(&I, 1); 3225 Value *OrShadow = IRB.CreateOr(First, Second); 3226 // High word of first operand, low word of both OR'd together 3227 Value *Shadow = IRB.CreateShuffleVector(First, OrShadow, 3228 llvm::makeArrayRef<int>({2, 1})); 3229 3230 setShadow(&I, Shadow); 3231 setOriginForNaryOp(I); 3232 } 3233 3234 void visitIntrinsicInst(IntrinsicInst &I) { 3235 switch (I.getIntrinsicID()) { 3236 case Intrinsic::lifetime_start: 3237 handleLifetimeStart(I); 3238 break; 3239 case Intrinsic::launder_invariant_group: 3240 case Intrinsic::strip_invariant_group: 3241 handleInvariantGroup(I); 3242 break; 3243 case Intrinsic::bswap: 3244 handleBswap(I); 3245 break; 3246 case Intrinsic::masked_store: 3247 handleMaskedStore(I); 3248 break; 3249 case Intrinsic::masked_load: 3250 handleMaskedLoad(I); 3251 break; 3252 case Intrinsic::experimental_vector_reduce_and: 3253 handleVectorReduceAndIntrinsic(I); 3254 break; 3255 case Intrinsic::experimental_vector_reduce_or: 3256 handleVectorReduceOrIntrinsic(I); 3257 break; 3258 case Intrinsic::experimental_vector_reduce_add: 3259 case Intrinsic::experimental_vector_reduce_xor: 3260 case Intrinsic::experimental_vector_reduce_mul: 3261 handleVectorReduceIntrinsic(I); 3262 break; 3263 case Intrinsic::x86_sse_stmxcsr: 3264 handleStmxcsr(I); 3265 break; 3266 case Intrinsic::x86_sse_ldmxcsr: 3267 handleLdmxcsr(I); 3268 break; 3269 case Intrinsic::x86_avx512_vcvtsd2usi64: 3270 case Intrinsic::x86_avx512_vcvtsd2usi32: 3271 case Intrinsic::x86_avx512_vcvtss2usi64: 3272 case Intrinsic::x86_avx512_vcvtss2usi32: 3273 case Intrinsic::x86_avx512_cvttss2usi64: 3274 case Intrinsic::x86_avx512_cvttss2usi: 3275 case Intrinsic::x86_avx512_cvttsd2usi64: 3276 case Intrinsic::x86_avx512_cvttsd2usi: 3277 case Intrinsic::x86_avx512_cvtusi2ss: 3278 case Intrinsic::x86_avx512_cvtusi642sd: 3279 case Intrinsic::x86_avx512_cvtusi642ss: 3280 case Intrinsic::x86_sse2_cvtsd2si64: 3281 case Intrinsic::x86_sse2_cvtsd2si: 3282 case Intrinsic::x86_sse2_cvtsd2ss: 3283 case Intrinsic::x86_sse2_cvttsd2si64: 3284 case Intrinsic::x86_sse2_cvttsd2si: 3285 case Intrinsic::x86_sse_cvtss2si64: 3286 case Intrinsic::x86_sse_cvtss2si: 3287 case Intrinsic::x86_sse_cvttss2si64: 3288 case Intrinsic::x86_sse_cvttss2si: 3289 handleVectorConvertIntrinsic(I, 1); 3290 break; 3291 case Intrinsic::x86_sse_cvtps2pi: 3292 case Intrinsic::x86_sse_cvttps2pi: 3293 handleVectorConvertIntrinsic(I, 2); 3294 break; 3295 3296 case Intrinsic::x86_avx512_psll_w_512: 3297 case Intrinsic::x86_avx512_psll_d_512: 3298 case Intrinsic::x86_avx512_psll_q_512: 3299 case Intrinsic::x86_avx512_pslli_w_512: 3300 case Intrinsic::x86_avx512_pslli_d_512: 3301 case Intrinsic::x86_avx512_pslli_q_512: 3302 case Intrinsic::x86_avx512_psrl_w_512: 3303 case Intrinsic::x86_avx512_psrl_d_512: 3304 case Intrinsic::x86_avx512_psrl_q_512: 3305 case Intrinsic::x86_avx512_psra_w_512: 3306 case Intrinsic::x86_avx512_psra_d_512: 3307 case Intrinsic::x86_avx512_psra_q_512: 3308 case Intrinsic::x86_avx512_psrli_w_512: 3309 case Intrinsic::x86_avx512_psrli_d_512: 3310 case Intrinsic::x86_avx512_psrli_q_512: 3311 case Intrinsic::x86_avx512_psrai_w_512: 3312 case Intrinsic::x86_avx512_psrai_d_512: 3313 case Intrinsic::x86_avx512_psrai_q_512: 3314 case Intrinsic::x86_avx512_psra_q_256: 3315 case Intrinsic::x86_avx512_psra_q_128: 3316 case Intrinsic::x86_avx512_psrai_q_256: 3317 case Intrinsic::x86_avx512_psrai_q_128: 3318 case Intrinsic::x86_avx2_psll_w: 3319 case Intrinsic::x86_avx2_psll_d: 3320 case Intrinsic::x86_avx2_psll_q: 3321 case Intrinsic::x86_avx2_pslli_w: 3322 case Intrinsic::x86_avx2_pslli_d: 3323 case Intrinsic::x86_avx2_pslli_q: 3324 case Intrinsic::x86_avx2_psrl_w: 3325 case Intrinsic::x86_avx2_psrl_d: 3326 case Intrinsic::x86_avx2_psrl_q: 3327 case Intrinsic::x86_avx2_psra_w: 3328 case Intrinsic::x86_avx2_psra_d: 3329 case Intrinsic::x86_avx2_psrli_w: 3330 case Intrinsic::x86_avx2_psrli_d: 3331 case Intrinsic::x86_avx2_psrli_q: 3332 case Intrinsic::x86_avx2_psrai_w: 3333 case Intrinsic::x86_avx2_psrai_d: 3334 case Intrinsic::x86_sse2_psll_w: 3335 case Intrinsic::x86_sse2_psll_d: 3336 case Intrinsic::x86_sse2_psll_q: 3337 case Intrinsic::x86_sse2_pslli_w: 3338 case Intrinsic::x86_sse2_pslli_d: 3339 case Intrinsic::x86_sse2_pslli_q: 3340 case Intrinsic::x86_sse2_psrl_w: 3341 case Intrinsic::x86_sse2_psrl_d: 3342 case Intrinsic::x86_sse2_psrl_q: 3343 case Intrinsic::x86_sse2_psra_w: 3344 case Intrinsic::x86_sse2_psra_d: 3345 case Intrinsic::x86_sse2_psrli_w: 3346 case Intrinsic::x86_sse2_psrli_d: 3347 case Intrinsic::x86_sse2_psrli_q: 3348 case Intrinsic::x86_sse2_psrai_w: 3349 case Intrinsic::x86_sse2_psrai_d: 3350 case Intrinsic::x86_mmx_psll_w: 3351 case Intrinsic::x86_mmx_psll_d: 3352 case Intrinsic::x86_mmx_psll_q: 3353 case Intrinsic::x86_mmx_pslli_w: 3354 case Intrinsic::x86_mmx_pslli_d: 3355 case Intrinsic::x86_mmx_pslli_q: 3356 case Intrinsic::x86_mmx_psrl_w: 3357 case Intrinsic::x86_mmx_psrl_d: 3358 case Intrinsic::x86_mmx_psrl_q: 3359 case Intrinsic::x86_mmx_psra_w: 3360 case Intrinsic::x86_mmx_psra_d: 3361 case Intrinsic::x86_mmx_psrli_w: 3362 case Intrinsic::x86_mmx_psrli_d: 3363 case Intrinsic::x86_mmx_psrli_q: 3364 case Intrinsic::x86_mmx_psrai_w: 3365 case Intrinsic::x86_mmx_psrai_d: 3366 handleVectorShiftIntrinsic(I, /* Variable */ false); 3367 break; 3368 case Intrinsic::x86_avx2_psllv_d: 3369 case Intrinsic::x86_avx2_psllv_d_256: 3370 case Intrinsic::x86_avx512_psllv_d_512: 3371 case Intrinsic::x86_avx2_psllv_q: 3372 case Intrinsic::x86_avx2_psllv_q_256: 3373 case Intrinsic::x86_avx512_psllv_q_512: 3374 case Intrinsic::x86_avx2_psrlv_d: 3375 case Intrinsic::x86_avx2_psrlv_d_256: 3376 case Intrinsic::x86_avx512_psrlv_d_512: 3377 case Intrinsic::x86_avx2_psrlv_q: 3378 case Intrinsic::x86_avx2_psrlv_q_256: 3379 case Intrinsic::x86_avx512_psrlv_q_512: 3380 case Intrinsic::x86_avx2_psrav_d: 3381 case Intrinsic::x86_avx2_psrav_d_256: 3382 case Intrinsic::x86_avx512_psrav_d_512: 3383 case Intrinsic::x86_avx512_psrav_q_128: 3384 case Intrinsic::x86_avx512_psrav_q_256: 3385 case Intrinsic::x86_avx512_psrav_q_512: 3386 handleVectorShiftIntrinsic(I, /* Variable */ true); 3387 break; 3388 3389 case Intrinsic::x86_sse2_packsswb_128: 3390 case Intrinsic::x86_sse2_packssdw_128: 3391 case Intrinsic::x86_sse2_packuswb_128: 3392 case Intrinsic::x86_sse41_packusdw: 3393 case Intrinsic::x86_avx2_packsswb: 3394 case Intrinsic::x86_avx2_packssdw: 3395 case Intrinsic::x86_avx2_packuswb: 3396 case Intrinsic::x86_avx2_packusdw: 3397 handleVectorPackIntrinsic(I); 3398 break; 3399 3400 case Intrinsic::x86_mmx_packsswb: 3401 case Intrinsic::x86_mmx_packuswb: 3402 handleVectorPackIntrinsic(I, 16); 3403 break; 3404 3405 case Intrinsic::x86_mmx_packssdw: 3406 handleVectorPackIntrinsic(I, 32); 3407 break; 3408 3409 case Intrinsic::x86_mmx_psad_bw: 3410 case Intrinsic::x86_sse2_psad_bw: 3411 case Intrinsic::x86_avx2_psad_bw: 3412 handleVectorSadIntrinsic(I); 3413 break; 3414 3415 case Intrinsic::x86_sse2_pmadd_wd: 3416 case Intrinsic::x86_avx2_pmadd_wd: 3417 case Intrinsic::x86_ssse3_pmadd_ub_sw_128: 3418 case Intrinsic::x86_avx2_pmadd_ub_sw: 3419 handleVectorPmaddIntrinsic(I); 3420 break; 3421 3422 case Intrinsic::x86_ssse3_pmadd_ub_sw: 3423 handleVectorPmaddIntrinsic(I, 8); 3424 break; 3425 3426 case Intrinsic::x86_mmx_pmadd_wd: 3427 handleVectorPmaddIntrinsic(I, 16); 3428 break; 3429 3430 case Intrinsic::x86_sse_cmp_ss: 3431 case Intrinsic::x86_sse2_cmp_sd: 3432 case Intrinsic::x86_sse_comieq_ss: 3433 case Intrinsic::x86_sse_comilt_ss: 3434 case Intrinsic::x86_sse_comile_ss: 3435 case Intrinsic::x86_sse_comigt_ss: 3436 case Intrinsic::x86_sse_comige_ss: 3437 case Intrinsic::x86_sse_comineq_ss: 3438 case Intrinsic::x86_sse_ucomieq_ss: 3439 case Intrinsic::x86_sse_ucomilt_ss: 3440 case Intrinsic::x86_sse_ucomile_ss: 3441 case Intrinsic::x86_sse_ucomigt_ss: 3442 case Intrinsic::x86_sse_ucomige_ss: 3443 case Intrinsic::x86_sse_ucomineq_ss: 3444 case Intrinsic::x86_sse2_comieq_sd: 3445 case Intrinsic::x86_sse2_comilt_sd: 3446 case Intrinsic::x86_sse2_comile_sd: 3447 case Intrinsic::x86_sse2_comigt_sd: 3448 case Intrinsic::x86_sse2_comige_sd: 3449 case Intrinsic::x86_sse2_comineq_sd: 3450 case Intrinsic::x86_sse2_ucomieq_sd: 3451 case Intrinsic::x86_sse2_ucomilt_sd: 3452 case Intrinsic::x86_sse2_ucomile_sd: 3453 case Intrinsic::x86_sse2_ucomigt_sd: 3454 case Intrinsic::x86_sse2_ucomige_sd: 3455 case Intrinsic::x86_sse2_ucomineq_sd: 3456 handleVectorCompareScalarIntrinsic(I); 3457 break; 3458 3459 case Intrinsic::x86_sse_cmp_ps: 3460 case Intrinsic::x86_sse2_cmp_pd: 3461 // FIXME: For x86_avx_cmp_pd_256 and x86_avx_cmp_ps_256 this function 3462 // generates reasonably looking IR that fails in the backend with "Do not 3463 // know how to split the result of this operator!". 3464 handleVectorComparePackedIntrinsic(I); 3465 break; 3466 3467 case Intrinsic::x86_bmi_bextr_32: 3468 case Intrinsic::x86_bmi_bextr_64: 3469 case Intrinsic::x86_bmi_bzhi_32: 3470 case Intrinsic::x86_bmi_bzhi_64: 3471 case Intrinsic::x86_bmi_pdep_32: 3472 case Intrinsic::x86_bmi_pdep_64: 3473 case Intrinsic::x86_bmi_pext_32: 3474 case Intrinsic::x86_bmi_pext_64: 3475 handleBmiIntrinsic(I); 3476 break; 3477 3478 case Intrinsic::x86_pclmulqdq: 3479 case Intrinsic::x86_pclmulqdq_256: 3480 case Intrinsic::x86_pclmulqdq_512: 3481 handlePclmulIntrinsic(I); 3482 break; 3483 3484 case Intrinsic::x86_sse41_round_sd: 3485 handleUnarySdIntrinsic(I); 3486 break; 3487 case Intrinsic::x86_sse2_max_sd: 3488 case Intrinsic::x86_sse2_min_sd: 3489 handleBinarySdIntrinsic(I); 3490 break; 3491 3492 case Intrinsic::is_constant: 3493 // The result of llvm.is.constant() is always defined. 3494 setShadow(&I, getCleanShadow(&I)); 3495 setOrigin(&I, getCleanOrigin()); 3496 break; 3497 3498 default: 3499 if (!handleUnknownIntrinsic(I)) 3500 visitInstruction(I); 3501 break; 3502 } 3503 } 3504 3505 void visitLibAtomicLoad(CallBase &CB) { 3506 // Since we use getNextNode here, we can't have CB terminate the BB. 3507 assert(isa<CallInst>(CB)); 3508 3509 IRBuilder<> IRB(&CB); 3510 Value *Size = CB.getArgOperand(0); 3511 Value *SrcPtr = CB.getArgOperand(1); 3512 Value *DstPtr = CB.getArgOperand(2); 3513 Value *Ordering = CB.getArgOperand(3); 3514 // Convert the call to have at least Acquire ordering to make sure 3515 // the shadow operations aren't reordered before it. 3516 Value *NewOrdering = 3517 IRB.CreateExtractElement(makeAddAcquireOrderingTable(IRB), Ordering); 3518 CB.setArgOperand(3, NewOrdering); 3519 3520 IRBuilder<> NextIRB(CB.getNextNode()); 3521 NextIRB.SetCurrentDebugLocation(CB.getDebugLoc()); 3522 3523 Value *SrcShadowPtr, *SrcOriginPtr; 3524 std::tie(SrcShadowPtr, SrcOriginPtr) = 3525 getShadowOriginPtr(SrcPtr, NextIRB, NextIRB.getInt8Ty(), Align(1), 3526 /*isStore*/ false); 3527 Value *DstShadowPtr = 3528 getShadowOriginPtr(DstPtr, NextIRB, NextIRB.getInt8Ty(), Align(1), 3529 /*isStore*/ true) 3530 .first; 3531 3532 NextIRB.CreateMemCpy(DstShadowPtr, Align(1), SrcShadowPtr, Align(1), Size); 3533 if (MS.TrackOrigins) { 3534 Value *SrcOrigin = NextIRB.CreateAlignedLoad(MS.OriginTy, SrcOriginPtr, 3535 kMinOriginAlignment); 3536 Value *NewOrigin = updateOrigin(SrcOrigin, NextIRB); 3537 NextIRB.CreateCall(MS.MsanSetOriginFn, {DstPtr, Size, NewOrigin}); 3538 } 3539 } 3540 3541 void visitLibAtomicStore(CallBase &CB) { 3542 IRBuilder<> IRB(&CB); 3543 Value *Size = CB.getArgOperand(0); 3544 Value *DstPtr = CB.getArgOperand(2); 3545 Value *Ordering = CB.getArgOperand(3); 3546 // Convert the call to have at least Release ordering to make sure 3547 // the shadow operations aren't reordered after it. 3548 Value *NewOrdering = 3549 IRB.CreateExtractElement(makeAddReleaseOrderingTable(IRB), Ordering); 3550 CB.setArgOperand(3, NewOrdering); 3551 3552 Value *DstShadowPtr = 3553 getShadowOriginPtr(DstPtr, IRB, IRB.getInt8Ty(), Align(1), 3554 /*isStore*/ true) 3555 .first; 3556 3557 // Atomic store always paints clean shadow/origin. See file header. 3558 IRB.CreateMemSet(DstShadowPtr, getCleanShadow(IRB.getInt8Ty()), Size, 3559 Align(1)); 3560 } 3561 3562 void visitCallBase(CallBase &CB) { 3563 assert(!CB.getMetadata("nosanitize")); 3564 if (CB.isInlineAsm()) { 3565 // For inline asm (either a call to asm function, or callbr instruction), 3566 // do the usual thing: check argument shadow and mark all outputs as 3567 // clean. Note that any side effects of the inline asm that are not 3568 // immediately visible in its constraints are not handled. 3569 if (ClHandleAsmConservative && MS.CompileKernel) 3570 visitAsmInstruction(CB); 3571 else 3572 visitInstruction(CB); 3573 return; 3574 } 3575 LibFunc LF; 3576 if (TLI->getLibFunc(CB, LF)) { 3577 // libatomic.a functions need to have special handling because there isn't 3578 // a good way to intercept them or compile the library with 3579 // instrumentation. 3580 switch (LF) { 3581 case LibFunc_atomic_load: 3582 if (!isa<CallInst>(CB)) { 3583 llvm::errs() << "MSAN -- cannot instrument invoke of libatomic load." 3584 "Ignoring!\n"; 3585 break; 3586 } 3587 visitLibAtomicLoad(CB); 3588 return; 3589 case LibFunc_atomic_store: 3590 visitLibAtomicStore(CB); 3591 return; 3592 default: 3593 break; 3594 } 3595 } 3596 3597 if (auto *Call = dyn_cast<CallInst>(&CB)) { 3598 assert(!isa<IntrinsicInst>(Call) && "intrinsics are handled elsewhere"); 3599 3600 // We are going to insert code that relies on the fact that the callee 3601 // will become a non-readonly function after it is instrumented by us. To 3602 // prevent this code from being optimized out, mark that function 3603 // non-readonly in advance. 3604 AttrBuilder B; 3605 B.addAttribute(Attribute::ReadOnly) 3606 .addAttribute(Attribute::ReadNone) 3607 .addAttribute(Attribute::WriteOnly) 3608 .addAttribute(Attribute::ArgMemOnly) 3609 .addAttribute(Attribute::Speculatable); 3610 3611 Call->removeAttributes(AttributeList::FunctionIndex, B); 3612 if (Function *Func = Call->getCalledFunction()) { 3613 Func->removeAttributes(AttributeList::FunctionIndex, B); 3614 } 3615 3616 maybeMarkSanitizerLibraryCallNoBuiltin(Call, TLI); 3617 } 3618 IRBuilder<> IRB(&CB); 3619 bool MayCheckCall = ClEagerChecks; 3620 if (Function *Func = CB.getCalledFunction()) { 3621 // __sanitizer_unaligned_{load,store} functions may be called by users 3622 // and always expects shadows in the TLS. So don't check them. 3623 MayCheckCall &= !Func->getName().startswith("__sanitizer_unaligned_"); 3624 } 3625 3626 unsigned ArgOffset = 0; 3627 LLVM_DEBUG(dbgs() << " CallSite: " << CB << "\n"); 3628 for (auto ArgIt = CB.arg_begin(), End = CB.arg_end(); ArgIt != End; 3629 ++ArgIt) { 3630 Value *A = *ArgIt; 3631 unsigned i = ArgIt - CB.arg_begin(); 3632 if (!A->getType()->isSized()) { 3633 LLVM_DEBUG(dbgs() << "Arg " << i << " is not sized: " << CB << "\n"); 3634 continue; 3635 } 3636 unsigned Size = 0; 3637 Value *Store = nullptr; 3638 // Compute the Shadow for arg even if it is ByVal, because 3639 // in that case getShadow() will copy the actual arg shadow to 3640 // __msan_param_tls. 3641 Value *ArgShadow = getShadow(A); 3642 Value *ArgShadowBase = getShadowPtrForArgument(A, IRB, ArgOffset); 3643 LLVM_DEBUG(dbgs() << " Arg#" << i << ": " << *A 3644 << " Shadow: " << *ArgShadow << "\n"); 3645 bool ArgIsInitialized = false; 3646 const DataLayout &DL = F.getParent()->getDataLayout(); 3647 3648 bool ByVal = CB.paramHasAttr(i, Attribute::ByVal); 3649 bool NoUndef = CB.paramHasAttr(i, Attribute::NoUndef); 3650 bool EagerCheck = MayCheckCall && !ByVal && NoUndef; 3651 3652 if (EagerCheck) { 3653 insertShadowCheck(A, &CB); 3654 continue; 3655 } 3656 if (ByVal) { 3657 // ByVal requires some special handling as it's too big for a single 3658 // load 3659 assert(A->getType()->isPointerTy() && 3660 "ByVal argument is not a pointer!"); 3661 Size = DL.getTypeAllocSize(CB.getParamByValType(i)); 3662 if (ArgOffset + Size > kParamTLSSize) break; 3663 const MaybeAlign ParamAlignment(CB.getParamAlign(i)); 3664 MaybeAlign Alignment = llvm::None; 3665 if (ParamAlignment) 3666 Alignment = std::min(*ParamAlignment, kShadowTLSAlignment); 3667 Value *AShadowPtr = 3668 getShadowOriginPtr(A, IRB, IRB.getInt8Ty(), Alignment, 3669 /*isStore*/ false) 3670 .first; 3671 3672 Store = IRB.CreateMemCpy(ArgShadowBase, Alignment, AShadowPtr, 3673 Alignment, Size); 3674 // TODO(glider): need to copy origins. 3675 } else { 3676 // Any other parameters mean we need bit-grained tracking of uninit data 3677 Size = DL.getTypeAllocSize(A->getType()); 3678 if (ArgOffset + Size > kParamTLSSize) break; 3679 Store = IRB.CreateAlignedStore(ArgShadow, ArgShadowBase, 3680 kShadowTLSAlignment); 3681 Constant *Cst = dyn_cast<Constant>(ArgShadow); 3682 if (Cst && Cst->isNullValue()) ArgIsInitialized = true; 3683 } 3684 if (MS.TrackOrigins && !ArgIsInitialized) 3685 IRB.CreateStore(getOrigin(A), 3686 getOriginPtrForArgument(A, IRB, ArgOffset)); 3687 (void)Store; 3688 assert(Size != 0 && Store != nullptr); 3689 LLVM_DEBUG(dbgs() << " Param:" << *Store << "\n"); 3690 ArgOffset += alignTo(Size, 8); 3691 } 3692 LLVM_DEBUG(dbgs() << " done with call args\n"); 3693 3694 FunctionType *FT = CB.getFunctionType(); 3695 if (FT->isVarArg()) { 3696 VAHelper->visitCallBase(CB, IRB); 3697 } 3698 3699 // Now, get the shadow for the RetVal. 3700 if (!CB.getType()->isSized()) 3701 return; 3702 // Don't emit the epilogue for musttail call returns. 3703 if (isa<CallInst>(CB) && cast<CallInst>(CB).isMustTailCall()) 3704 return; 3705 3706 if (MayCheckCall && CB.hasRetAttr(Attribute::NoUndef)) { 3707 setShadow(&CB, getCleanShadow(&CB)); 3708 setOrigin(&CB, getCleanOrigin()); 3709 return; 3710 } 3711 3712 IRBuilder<> IRBBefore(&CB); 3713 // Until we have full dynamic coverage, make sure the retval shadow is 0. 3714 Value *Base = getShadowPtrForRetval(&CB, IRBBefore); 3715 IRBBefore.CreateAlignedStore(getCleanShadow(&CB), Base, 3716 kShadowTLSAlignment); 3717 BasicBlock::iterator NextInsn; 3718 if (isa<CallInst>(CB)) { 3719 NextInsn = ++CB.getIterator(); 3720 assert(NextInsn != CB.getParent()->end()); 3721 } else { 3722 BasicBlock *NormalDest = cast<InvokeInst>(CB).getNormalDest(); 3723 if (!NormalDest->getSinglePredecessor()) { 3724 // FIXME: this case is tricky, so we are just conservative here. 3725 // Perhaps we need to split the edge between this BB and NormalDest, 3726 // but a naive attempt to use SplitEdge leads to a crash. 3727 setShadow(&CB, getCleanShadow(&CB)); 3728 setOrigin(&CB, getCleanOrigin()); 3729 return; 3730 } 3731 // FIXME: NextInsn is likely in a basic block that has not been visited yet. 3732 // Anything inserted there will be instrumented by MSan later! 3733 NextInsn = NormalDest->getFirstInsertionPt(); 3734 assert(NextInsn != NormalDest->end() && 3735 "Could not find insertion point for retval shadow load"); 3736 } 3737 IRBuilder<> IRBAfter(&*NextInsn); 3738 Value *RetvalShadow = IRBAfter.CreateAlignedLoad( 3739 getShadowTy(&CB), getShadowPtrForRetval(&CB, IRBAfter), 3740 kShadowTLSAlignment, "_msret"); 3741 setShadow(&CB, RetvalShadow); 3742 if (MS.TrackOrigins) 3743 setOrigin(&CB, IRBAfter.CreateLoad(MS.OriginTy, 3744 getOriginPtrForRetval(IRBAfter))); 3745 } 3746 3747 bool isAMustTailRetVal(Value *RetVal) { 3748 if (auto *I = dyn_cast<BitCastInst>(RetVal)) { 3749 RetVal = I->getOperand(0); 3750 } 3751 if (auto *I = dyn_cast<CallInst>(RetVal)) { 3752 return I->isMustTailCall(); 3753 } 3754 return false; 3755 } 3756 3757 void visitReturnInst(ReturnInst &I) { 3758 IRBuilder<> IRB(&I); 3759 Value *RetVal = I.getReturnValue(); 3760 if (!RetVal) return; 3761 // Don't emit the epilogue for musttail call returns. 3762 if (isAMustTailRetVal(RetVal)) return; 3763 Value *ShadowPtr = getShadowPtrForRetval(RetVal, IRB); 3764 bool HasNoUndef = 3765 F.hasAttribute(AttributeList::ReturnIndex, Attribute::NoUndef); 3766 bool StoreShadow = !(ClEagerChecks && HasNoUndef); 3767 // FIXME: Consider using SpecialCaseList to specify a list of functions that 3768 // must always return fully initialized values. For now, we hardcode "main". 3769 bool EagerCheck = (ClEagerChecks && HasNoUndef) || (F.getName() == "main"); 3770 3771 Value *Shadow = getShadow(RetVal); 3772 bool StoreOrigin = true; 3773 if (EagerCheck) { 3774 insertShadowCheck(RetVal, &I); 3775 Shadow = getCleanShadow(RetVal); 3776 StoreOrigin = false; 3777 } 3778 3779 // The caller may still expect information passed over TLS if we pass our 3780 // check 3781 if (StoreShadow) { 3782 IRB.CreateAlignedStore(Shadow, ShadowPtr, kShadowTLSAlignment); 3783 if (MS.TrackOrigins && StoreOrigin) 3784 IRB.CreateStore(getOrigin(RetVal), getOriginPtrForRetval(IRB)); 3785 } 3786 } 3787 3788 void visitPHINode(PHINode &I) { 3789 IRBuilder<> IRB(&I); 3790 if (!PropagateShadow) { 3791 setShadow(&I, getCleanShadow(&I)); 3792 setOrigin(&I, getCleanOrigin()); 3793 return; 3794 } 3795 3796 ShadowPHINodes.push_back(&I); 3797 setShadow(&I, IRB.CreatePHI(getShadowTy(&I), I.getNumIncomingValues(), 3798 "_msphi_s")); 3799 if (MS.TrackOrigins) 3800 setOrigin(&I, IRB.CreatePHI(MS.OriginTy, I.getNumIncomingValues(), 3801 "_msphi_o")); 3802 } 3803 3804 Value *getLocalVarDescription(AllocaInst &I) { 3805 SmallString<2048> StackDescriptionStorage; 3806 raw_svector_ostream StackDescription(StackDescriptionStorage); 3807 // We create a string with a description of the stack allocation and 3808 // pass it into __msan_set_alloca_origin. 3809 // It will be printed by the run-time if stack-originated UMR is found. 3810 // The first 4 bytes of the string are set to '----' and will be replaced 3811 // by __msan_va_arg_overflow_size_tls at the first call. 3812 StackDescription << "----" << I.getName() << "@" << F.getName(); 3813 return createPrivateNonConstGlobalForString(*F.getParent(), 3814 StackDescription.str()); 3815 } 3816 3817 void poisonAllocaUserspace(AllocaInst &I, IRBuilder<> &IRB, Value *Len) { 3818 if (PoisonStack && ClPoisonStackWithCall) { 3819 IRB.CreateCall(MS.MsanPoisonStackFn, 3820 {IRB.CreatePointerCast(&I, IRB.getInt8PtrTy()), Len}); 3821 } else { 3822 Value *ShadowBase, *OriginBase; 3823 std::tie(ShadowBase, OriginBase) = getShadowOriginPtr( 3824 &I, IRB, IRB.getInt8Ty(), Align(1), /*isStore*/ true); 3825 3826 Value *PoisonValue = IRB.getInt8(PoisonStack ? ClPoisonStackPattern : 0); 3827 IRB.CreateMemSet(ShadowBase, PoisonValue, Len, 3828 MaybeAlign(I.getAlignment())); 3829 } 3830 3831 if (PoisonStack && MS.TrackOrigins) { 3832 Value *Descr = getLocalVarDescription(I); 3833 IRB.CreateCall(MS.MsanSetAllocaOrigin4Fn, 3834 {IRB.CreatePointerCast(&I, IRB.getInt8PtrTy()), Len, 3835 IRB.CreatePointerCast(Descr, IRB.getInt8PtrTy()), 3836 IRB.CreatePointerCast(&F, MS.IntptrTy)}); 3837 } 3838 } 3839 3840 void poisonAllocaKmsan(AllocaInst &I, IRBuilder<> &IRB, Value *Len) { 3841 Value *Descr = getLocalVarDescription(I); 3842 if (PoisonStack) { 3843 IRB.CreateCall(MS.MsanPoisonAllocaFn, 3844 {IRB.CreatePointerCast(&I, IRB.getInt8PtrTy()), Len, 3845 IRB.CreatePointerCast(Descr, IRB.getInt8PtrTy())}); 3846 } else { 3847 IRB.CreateCall(MS.MsanUnpoisonAllocaFn, 3848 {IRB.CreatePointerCast(&I, IRB.getInt8PtrTy()), Len}); 3849 } 3850 } 3851 3852 void instrumentAlloca(AllocaInst &I, Instruction *InsPoint = nullptr) { 3853 if (!InsPoint) 3854 InsPoint = &I; 3855 IRBuilder<> IRB(InsPoint->getNextNode()); 3856 const DataLayout &DL = F.getParent()->getDataLayout(); 3857 uint64_t TypeSize = DL.getTypeAllocSize(I.getAllocatedType()); 3858 Value *Len = ConstantInt::get(MS.IntptrTy, TypeSize); 3859 if (I.isArrayAllocation()) 3860 Len = IRB.CreateMul(Len, I.getArraySize()); 3861 3862 if (MS.CompileKernel) 3863 poisonAllocaKmsan(I, IRB, Len); 3864 else 3865 poisonAllocaUserspace(I, IRB, Len); 3866 } 3867 3868 void visitAllocaInst(AllocaInst &I) { 3869 setShadow(&I, getCleanShadow(&I)); 3870 setOrigin(&I, getCleanOrigin()); 3871 // We'll get to this alloca later unless it's poisoned at the corresponding 3872 // llvm.lifetime.start. 3873 AllocaSet.insert(&I); 3874 } 3875 3876 void visitSelectInst(SelectInst& I) { 3877 IRBuilder<> IRB(&I); 3878 // a = select b, c, d 3879 Value *B = I.getCondition(); 3880 Value *C = I.getTrueValue(); 3881 Value *D = I.getFalseValue(); 3882 Value *Sb = getShadow(B); 3883 Value *Sc = getShadow(C); 3884 Value *Sd = getShadow(D); 3885 3886 // Result shadow if condition shadow is 0. 3887 Value *Sa0 = IRB.CreateSelect(B, Sc, Sd); 3888 Value *Sa1; 3889 if (I.getType()->isAggregateType()) { 3890 // To avoid "sign extending" i1 to an arbitrary aggregate type, we just do 3891 // an extra "select". This results in much more compact IR. 3892 // Sa = select Sb, poisoned, (select b, Sc, Sd) 3893 Sa1 = getPoisonedShadow(getShadowTy(I.getType())); 3894 } else { 3895 // Sa = select Sb, [ (c^d) | Sc | Sd ], [ b ? Sc : Sd ] 3896 // If Sb (condition is poisoned), look for bits in c and d that are equal 3897 // and both unpoisoned. 3898 // If !Sb (condition is unpoisoned), simply pick one of Sc and Sd. 3899 3900 // Cast arguments to shadow-compatible type. 3901 C = CreateAppToShadowCast(IRB, C); 3902 D = CreateAppToShadowCast(IRB, D); 3903 3904 // Result shadow if condition shadow is 1. 3905 Sa1 = IRB.CreateOr({IRB.CreateXor(C, D), Sc, Sd}); 3906 } 3907 Value *Sa = IRB.CreateSelect(Sb, Sa1, Sa0, "_msprop_select"); 3908 setShadow(&I, Sa); 3909 if (MS.TrackOrigins) { 3910 // Origins are always i32, so any vector conditions must be flattened. 3911 // FIXME: consider tracking vector origins for app vectors? 3912 if (B->getType()->isVectorTy()) { 3913 Type *FlatTy = getShadowTyNoVec(B->getType()); 3914 B = IRB.CreateICmpNE(IRB.CreateBitCast(B, FlatTy), 3915 ConstantInt::getNullValue(FlatTy)); 3916 Sb = IRB.CreateICmpNE(IRB.CreateBitCast(Sb, FlatTy), 3917 ConstantInt::getNullValue(FlatTy)); 3918 } 3919 // a = select b, c, d 3920 // Oa = Sb ? Ob : (b ? Oc : Od) 3921 setOrigin( 3922 &I, IRB.CreateSelect(Sb, getOrigin(I.getCondition()), 3923 IRB.CreateSelect(B, getOrigin(I.getTrueValue()), 3924 getOrigin(I.getFalseValue())))); 3925 } 3926 } 3927 3928 void visitLandingPadInst(LandingPadInst &I) { 3929 // Do nothing. 3930 // See https://github.com/google/sanitizers/issues/504 3931 setShadow(&I, getCleanShadow(&I)); 3932 setOrigin(&I, getCleanOrigin()); 3933 } 3934 3935 void visitCatchSwitchInst(CatchSwitchInst &I) { 3936 setShadow(&I, getCleanShadow(&I)); 3937 setOrigin(&I, getCleanOrigin()); 3938 } 3939 3940 void visitFuncletPadInst(FuncletPadInst &I) { 3941 setShadow(&I, getCleanShadow(&I)); 3942 setOrigin(&I, getCleanOrigin()); 3943 } 3944 3945 void visitGetElementPtrInst(GetElementPtrInst &I) { 3946 handleShadowOr(I); 3947 } 3948 3949 void visitExtractValueInst(ExtractValueInst &I) { 3950 IRBuilder<> IRB(&I); 3951 Value *Agg = I.getAggregateOperand(); 3952 LLVM_DEBUG(dbgs() << "ExtractValue: " << I << "\n"); 3953 Value *AggShadow = getShadow(Agg); 3954 LLVM_DEBUG(dbgs() << " AggShadow: " << *AggShadow << "\n"); 3955 Value *ResShadow = IRB.CreateExtractValue(AggShadow, I.getIndices()); 3956 LLVM_DEBUG(dbgs() << " ResShadow: " << *ResShadow << "\n"); 3957 setShadow(&I, ResShadow); 3958 setOriginForNaryOp(I); 3959 } 3960 3961 void visitInsertValueInst(InsertValueInst &I) { 3962 IRBuilder<> IRB(&I); 3963 LLVM_DEBUG(dbgs() << "InsertValue: " << I << "\n"); 3964 Value *AggShadow = getShadow(I.getAggregateOperand()); 3965 Value *InsShadow = getShadow(I.getInsertedValueOperand()); 3966 LLVM_DEBUG(dbgs() << " AggShadow: " << *AggShadow << "\n"); 3967 LLVM_DEBUG(dbgs() << " InsShadow: " << *InsShadow << "\n"); 3968 Value *Res = IRB.CreateInsertValue(AggShadow, InsShadow, I.getIndices()); 3969 LLVM_DEBUG(dbgs() << " Res: " << *Res << "\n"); 3970 setShadow(&I, Res); 3971 setOriginForNaryOp(I); 3972 } 3973 3974 void dumpInst(Instruction &I) { 3975 if (CallInst *CI = dyn_cast<CallInst>(&I)) { 3976 errs() << "ZZZ call " << CI->getCalledFunction()->getName() << "\n"; 3977 } else { 3978 errs() << "ZZZ " << I.getOpcodeName() << "\n"; 3979 } 3980 errs() << "QQQ " << I << "\n"; 3981 } 3982 3983 void visitResumeInst(ResumeInst &I) { 3984 LLVM_DEBUG(dbgs() << "Resume: " << I << "\n"); 3985 // Nothing to do here. 3986 } 3987 3988 void visitCleanupReturnInst(CleanupReturnInst &CRI) { 3989 LLVM_DEBUG(dbgs() << "CleanupReturn: " << CRI << "\n"); 3990 // Nothing to do here. 3991 } 3992 3993 void visitCatchReturnInst(CatchReturnInst &CRI) { 3994 LLVM_DEBUG(dbgs() << "CatchReturn: " << CRI << "\n"); 3995 // Nothing to do here. 3996 } 3997 3998 void instrumentAsmArgument(Value *Operand, Instruction &I, IRBuilder<> &IRB, 3999 const DataLayout &DL, bool isOutput) { 4000 // For each assembly argument, we check its value for being initialized. 4001 // If the argument is a pointer, we assume it points to a single element 4002 // of the corresponding type (or to a 8-byte word, if the type is unsized). 4003 // Each such pointer is instrumented with a call to the runtime library. 4004 Type *OpType = Operand->getType(); 4005 // Check the operand value itself. 4006 insertShadowCheck(Operand, &I); 4007 if (!OpType->isPointerTy() || !isOutput) { 4008 assert(!isOutput); 4009 return; 4010 } 4011 Type *ElType = OpType->getPointerElementType(); 4012 if (!ElType->isSized()) 4013 return; 4014 int Size = DL.getTypeStoreSize(ElType); 4015 Value *Ptr = IRB.CreatePointerCast(Operand, IRB.getInt8PtrTy()); 4016 Value *SizeVal = ConstantInt::get(MS.IntptrTy, Size); 4017 IRB.CreateCall(MS.MsanInstrumentAsmStoreFn, {Ptr, SizeVal}); 4018 } 4019 4020 /// Get the number of output arguments returned by pointers. 4021 int getNumOutputArgs(InlineAsm *IA, CallBase *CB) { 4022 int NumRetOutputs = 0; 4023 int NumOutputs = 0; 4024 Type *RetTy = cast<Value>(CB)->getType(); 4025 if (!RetTy->isVoidTy()) { 4026 // Register outputs are returned via the CallInst return value. 4027 auto *ST = dyn_cast<StructType>(RetTy); 4028 if (ST) 4029 NumRetOutputs = ST->getNumElements(); 4030 else 4031 NumRetOutputs = 1; 4032 } 4033 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints(); 4034 for (size_t i = 0, n = Constraints.size(); i < n; i++) { 4035 InlineAsm::ConstraintInfo Info = Constraints[i]; 4036 switch (Info.Type) { 4037 case InlineAsm::isOutput: 4038 NumOutputs++; 4039 break; 4040 default: 4041 break; 4042 } 4043 } 4044 return NumOutputs - NumRetOutputs; 4045 } 4046 4047 void visitAsmInstruction(Instruction &I) { 4048 // Conservative inline assembly handling: check for poisoned shadow of 4049 // asm() arguments, then unpoison the result and all the memory locations 4050 // pointed to by those arguments. 4051 // An inline asm() statement in C++ contains lists of input and output 4052 // arguments used by the assembly code. These are mapped to operands of the 4053 // CallInst as follows: 4054 // - nR register outputs ("=r) are returned by value in a single structure 4055 // (SSA value of the CallInst); 4056 // - nO other outputs ("=m" and others) are returned by pointer as first 4057 // nO operands of the CallInst; 4058 // - nI inputs ("r", "m" and others) are passed to CallInst as the 4059 // remaining nI operands. 4060 // The total number of asm() arguments in the source is nR+nO+nI, and the 4061 // corresponding CallInst has nO+nI+1 operands (the last operand is the 4062 // function to be called). 4063 const DataLayout &DL = F.getParent()->getDataLayout(); 4064 CallBase *CB = cast<CallBase>(&I); 4065 IRBuilder<> IRB(&I); 4066 InlineAsm *IA = cast<InlineAsm>(CB->getCalledOperand()); 4067 int OutputArgs = getNumOutputArgs(IA, CB); 4068 // The last operand of a CallInst is the function itself. 4069 int NumOperands = CB->getNumOperands() - 1; 4070 4071 // Check input arguments. Doing so before unpoisoning output arguments, so 4072 // that we won't overwrite uninit values before checking them. 4073 for (int i = OutputArgs; i < NumOperands; i++) { 4074 Value *Operand = CB->getOperand(i); 4075 instrumentAsmArgument(Operand, I, IRB, DL, /*isOutput*/ false); 4076 } 4077 // Unpoison output arguments. This must happen before the actual InlineAsm 4078 // call, so that the shadow for memory published in the asm() statement 4079 // remains valid. 4080 for (int i = 0; i < OutputArgs; i++) { 4081 Value *Operand = CB->getOperand(i); 4082 instrumentAsmArgument(Operand, I, IRB, DL, /*isOutput*/ true); 4083 } 4084 4085 setShadow(&I, getCleanShadow(&I)); 4086 setOrigin(&I, getCleanOrigin()); 4087 } 4088 4089 void visitFreezeInst(FreezeInst &I) { 4090 // Freeze always returns a fully defined value. 4091 setShadow(&I, getCleanShadow(&I)); 4092 setOrigin(&I, getCleanOrigin()); 4093 } 4094 4095 void visitInstruction(Instruction &I) { 4096 // Everything else: stop propagating and check for poisoned shadow. 4097 if (ClDumpStrictInstructions) 4098 dumpInst(I); 4099 LLVM_DEBUG(dbgs() << "DEFAULT: " << I << "\n"); 4100 for (size_t i = 0, n = I.getNumOperands(); i < n; i++) { 4101 Value *Operand = I.getOperand(i); 4102 if (Operand->getType()->isSized()) 4103 insertShadowCheck(Operand, &I); 4104 } 4105 setShadow(&I, getCleanShadow(&I)); 4106 setOrigin(&I, getCleanOrigin()); 4107 } 4108 }; 4109 4110 /// AMD64-specific implementation of VarArgHelper. 4111 struct VarArgAMD64Helper : public VarArgHelper { 4112 // An unfortunate workaround for asymmetric lowering of va_arg stuff. 4113 // See a comment in visitCallBase for more details. 4114 static const unsigned AMD64GpEndOffset = 48; // AMD64 ABI Draft 0.99.6 p3.5.7 4115 static const unsigned AMD64FpEndOffsetSSE = 176; 4116 // If SSE is disabled, fp_offset in va_list is zero. 4117 static const unsigned AMD64FpEndOffsetNoSSE = AMD64GpEndOffset; 4118 4119 unsigned AMD64FpEndOffset; 4120 Function &F; 4121 MemorySanitizer &MS; 4122 MemorySanitizerVisitor &MSV; 4123 Value *VAArgTLSCopy = nullptr; 4124 Value *VAArgTLSOriginCopy = nullptr; 4125 Value *VAArgOverflowSize = nullptr; 4126 4127 SmallVector<CallInst*, 16> VAStartInstrumentationList; 4128 4129 enum ArgKind { AK_GeneralPurpose, AK_FloatingPoint, AK_Memory }; 4130 4131 VarArgAMD64Helper(Function &F, MemorySanitizer &MS, 4132 MemorySanitizerVisitor &MSV) 4133 : F(F), MS(MS), MSV(MSV) { 4134 AMD64FpEndOffset = AMD64FpEndOffsetSSE; 4135 for (const auto &Attr : F.getAttributes().getFnAttributes()) { 4136 if (Attr.isStringAttribute() && 4137 (Attr.getKindAsString() == "target-features")) { 4138 if (Attr.getValueAsString().contains("-sse")) 4139 AMD64FpEndOffset = AMD64FpEndOffsetNoSSE; 4140 break; 4141 } 4142 } 4143 } 4144 4145 ArgKind classifyArgument(Value* arg) { 4146 // A very rough approximation of X86_64 argument classification rules. 4147 Type *T = arg->getType(); 4148 if (T->isFPOrFPVectorTy() || T->isX86_MMXTy()) 4149 return AK_FloatingPoint; 4150 if (T->isIntegerTy() && T->getPrimitiveSizeInBits() <= 64) 4151 return AK_GeneralPurpose; 4152 if (T->isPointerTy()) 4153 return AK_GeneralPurpose; 4154 return AK_Memory; 4155 } 4156 4157 // For VarArg functions, store the argument shadow in an ABI-specific format 4158 // that corresponds to va_list layout. 4159 // We do this because Clang lowers va_arg in the frontend, and this pass 4160 // only sees the low level code that deals with va_list internals. 4161 // A much easier alternative (provided that Clang emits va_arg instructions) 4162 // would have been to associate each live instance of va_list with a copy of 4163 // MSanParamTLS, and extract shadow on va_arg() call in the argument list 4164 // order. 4165 void visitCallBase(CallBase &CB, IRBuilder<> &IRB) override { 4166 unsigned GpOffset = 0; 4167 unsigned FpOffset = AMD64GpEndOffset; 4168 unsigned OverflowOffset = AMD64FpEndOffset; 4169 const DataLayout &DL = F.getParent()->getDataLayout(); 4170 for (auto ArgIt = CB.arg_begin(), End = CB.arg_end(); ArgIt != End; 4171 ++ArgIt) { 4172 Value *A = *ArgIt; 4173 unsigned ArgNo = CB.getArgOperandNo(ArgIt); 4174 bool IsFixed = ArgNo < CB.getFunctionType()->getNumParams(); 4175 bool IsByVal = CB.paramHasAttr(ArgNo, Attribute::ByVal); 4176 if (IsByVal) { 4177 // ByVal arguments always go to the overflow area. 4178 // Fixed arguments passed through the overflow area will be stepped 4179 // over by va_start, so don't count them towards the offset. 4180 if (IsFixed) 4181 continue; 4182 assert(A->getType()->isPointerTy()); 4183 Type *RealTy = CB.getParamByValType(ArgNo); 4184 uint64_t ArgSize = DL.getTypeAllocSize(RealTy); 4185 Value *ShadowBase = getShadowPtrForVAArgument( 4186 RealTy, IRB, OverflowOffset, alignTo(ArgSize, 8)); 4187 Value *OriginBase = nullptr; 4188 if (MS.TrackOrigins) 4189 OriginBase = getOriginPtrForVAArgument(RealTy, IRB, OverflowOffset); 4190 OverflowOffset += alignTo(ArgSize, 8); 4191 if (!ShadowBase) 4192 continue; 4193 Value *ShadowPtr, *OriginPtr; 4194 std::tie(ShadowPtr, OriginPtr) = 4195 MSV.getShadowOriginPtr(A, IRB, IRB.getInt8Ty(), kShadowTLSAlignment, 4196 /*isStore*/ false); 4197 4198 IRB.CreateMemCpy(ShadowBase, kShadowTLSAlignment, ShadowPtr, 4199 kShadowTLSAlignment, ArgSize); 4200 if (MS.TrackOrigins) 4201 IRB.CreateMemCpy(OriginBase, kShadowTLSAlignment, OriginPtr, 4202 kShadowTLSAlignment, ArgSize); 4203 } else { 4204 ArgKind AK = classifyArgument(A); 4205 if (AK == AK_GeneralPurpose && GpOffset >= AMD64GpEndOffset) 4206 AK = AK_Memory; 4207 if (AK == AK_FloatingPoint && FpOffset >= AMD64FpEndOffset) 4208 AK = AK_Memory; 4209 Value *ShadowBase, *OriginBase = nullptr; 4210 switch (AK) { 4211 case AK_GeneralPurpose: 4212 ShadowBase = 4213 getShadowPtrForVAArgument(A->getType(), IRB, GpOffset, 8); 4214 if (MS.TrackOrigins) 4215 OriginBase = 4216 getOriginPtrForVAArgument(A->getType(), IRB, GpOffset); 4217 GpOffset += 8; 4218 break; 4219 case AK_FloatingPoint: 4220 ShadowBase = 4221 getShadowPtrForVAArgument(A->getType(), IRB, FpOffset, 16); 4222 if (MS.TrackOrigins) 4223 OriginBase = 4224 getOriginPtrForVAArgument(A->getType(), IRB, FpOffset); 4225 FpOffset += 16; 4226 break; 4227 case AK_Memory: 4228 if (IsFixed) 4229 continue; 4230 uint64_t ArgSize = DL.getTypeAllocSize(A->getType()); 4231 ShadowBase = 4232 getShadowPtrForVAArgument(A->getType(), IRB, OverflowOffset, 8); 4233 if (MS.TrackOrigins) 4234 OriginBase = 4235 getOriginPtrForVAArgument(A->getType(), IRB, OverflowOffset); 4236 OverflowOffset += alignTo(ArgSize, 8); 4237 } 4238 // Take fixed arguments into account for GpOffset and FpOffset, 4239 // but don't actually store shadows for them. 4240 // TODO(glider): don't call get*PtrForVAArgument() for them. 4241 if (IsFixed) 4242 continue; 4243 if (!ShadowBase) 4244 continue; 4245 Value *Shadow = MSV.getShadow(A); 4246 IRB.CreateAlignedStore(Shadow, ShadowBase, kShadowTLSAlignment); 4247 if (MS.TrackOrigins) { 4248 Value *Origin = MSV.getOrigin(A); 4249 unsigned StoreSize = DL.getTypeStoreSize(Shadow->getType()); 4250 MSV.paintOrigin(IRB, Origin, OriginBase, StoreSize, 4251 std::max(kShadowTLSAlignment, kMinOriginAlignment)); 4252 } 4253 } 4254 } 4255 Constant *OverflowSize = 4256 ConstantInt::get(IRB.getInt64Ty(), OverflowOffset - AMD64FpEndOffset); 4257 IRB.CreateStore(OverflowSize, MS.VAArgOverflowSizeTLS); 4258 } 4259 4260 /// Compute the shadow address for a given va_arg. 4261 Value *getShadowPtrForVAArgument(Type *Ty, IRBuilder<> &IRB, 4262 unsigned ArgOffset, unsigned ArgSize) { 4263 // Make sure we don't overflow __msan_va_arg_tls. 4264 if (ArgOffset + ArgSize > kParamTLSSize) 4265 return nullptr; 4266 Value *Base = IRB.CreatePointerCast(MS.VAArgTLS, MS.IntptrTy); 4267 Base = IRB.CreateAdd(Base, ConstantInt::get(MS.IntptrTy, ArgOffset)); 4268 return IRB.CreateIntToPtr(Base, PointerType::get(MSV.getShadowTy(Ty), 0), 4269 "_msarg_va_s"); 4270 } 4271 4272 /// Compute the origin address for a given va_arg. 4273 Value *getOriginPtrForVAArgument(Type *Ty, IRBuilder<> &IRB, int ArgOffset) { 4274 Value *Base = IRB.CreatePointerCast(MS.VAArgOriginTLS, MS.IntptrTy); 4275 // getOriginPtrForVAArgument() is always called after 4276 // getShadowPtrForVAArgument(), so __msan_va_arg_origin_tls can never 4277 // overflow. 4278 Base = IRB.CreateAdd(Base, ConstantInt::get(MS.IntptrTy, ArgOffset)); 4279 return IRB.CreateIntToPtr(Base, PointerType::get(MS.OriginTy, 0), 4280 "_msarg_va_o"); 4281 } 4282 4283 void unpoisonVAListTagForInst(IntrinsicInst &I) { 4284 IRBuilder<> IRB(&I); 4285 Value *VAListTag = I.getArgOperand(0); 4286 Value *ShadowPtr, *OriginPtr; 4287 const Align Alignment = Align(8); 4288 std::tie(ShadowPtr, OriginPtr) = 4289 MSV.getShadowOriginPtr(VAListTag, IRB, IRB.getInt8Ty(), Alignment, 4290 /*isStore*/ true); 4291 4292 // Unpoison the whole __va_list_tag. 4293 // FIXME: magic ABI constants. 4294 IRB.CreateMemSet(ShadowPtr, Constant::getNullValue(IRB.getInt8Ty()), 4295 /* size */ 24, Alignment, false); 4296 // We shouldn't need to zero out the origins, as they're only checked for 4297 // nonzero shadow. 4298 } 4299 4300 void visitVAStartInst(VAStartInst &I) override { 4301 if (F.getCallingConv() == CallingConv::Win64) 4302 return; 4303 VAStartInstrumentationList.push_back(&I); 4304 unpoisonVAListTagForInst(I); 4305 } 4306 4307 void visitVACopyInst(VACopyInst &I) override { 4308 if (F.getCallingConv() == CallingConv::Win64) return; 4309 unpoisonVAListTagForInst(I); 4310 } 4311 4312 void finalizeInstrumentation() override { 4313 assert(!VAArgOverflowSize && !VAArgTLSCopy && 4314 "finalizeInstrumentation called twice"); 4315 if (!VAStartInstrumentationList.empty()) { 4316 // If there is a va_start in this function, make a backup copy of 4317 // va_arg_tls somewhere in the function entry block. 4318 IRBuilder<> IRB(MSV.FnPrologueEnd); 4319 VAArgOverflowSize = 4320 IRB.CreateLoad(IRB.getInt64Ty(), MS.VAArgOverflowSizeTLS); 4321 Value *CopySize = 4322 IRB.CreateAdd(ConstantInt::get(MS.IntptrTy, AMD64FpEndOffset), 4323 VAArgOverflowSize); 4324 VAArgTLSCopy = IRB.CreateAlloca(Type::getInt8Ty(*MS.C), CopySize); 4325 IRB.CreateMemCpy(VAArgTLSCopy, Align(8), MS.VAArgTLS, Align(8), CopySize); 4326 if (MS.TrackOrigins) { 4327 VAArgTLSOriginCopy = IRB.CreateAlloca(Type::getInt8Ty(*MS.C), CopySize); 4328 IRB.CreateMemCpy(VAArgTLSOriginCopy, Align(8), MS.VAArgOriginTLS, 4329 Align(8), CopySize); 4330 } 4331 } 4332 4333 // Instrument va_start. 4334 // Copy va_list shadow from the backup copy of the TLS contents. 4335 for (size_t i = 0, n = VAStartInstrumentationList.size(); i < n; i++) { 4336 CallInst *OrigInst = VAStartInstrumentationList[i]; 4337 IRBuilder<> IRB(OrigInst->getNextNode()); 4338 Value *VAListTag = OrigInst->getArgOperand(0); 4339 4340 Type *RegSaveAreaPtrTy = Type::getInt64PtrTy(*MS.C); 4341 Value *RegSaveAreaPtrPtr = IRB.CreateIntToPtr( 4342 IRB.CreateAdd(IRB.CreatePtrToInt(VAListTag, MS.IntptrTy), 4343 ConstantInt::get(MS.IntptrTy, 16)), 4344 PointerType::get(RegSaveAreaPtrTy, 0)); 4345 Value *RegSaveAreaPtr = 4346 IRB.CreateLoad(RegSaveAreaPtrTy, RegSaveAreaPtrPtr); 4347 Value *RegSaveAreaShadowPtr, *RegSaveAreaOriginPtr; 4348 const Align Alignment = Align(16); 4349 std::tie(RegSaveAreaShadowPtr, RegSaveAreaOriginPtr) = 4350 MSV.getShadowOriginPtr(RegSaveAreaPtr, IRB, IRB.getInt8Ty(), 4351 Alignment, /*isStore*/ true); 4352 IRB.CreateMemCpy(RegSaveAreaShadowPtr, Alignment, VAArgTLSCopy, Alignment, 4353 AMD64FpEndOffset); 4354 if (MS.TrackOrigins) 4355 IRB.CreateMemCpy(RegSaveAreaOriginPtr, Alignment, VAArgTLSOriginCopy, 4356 Alignment, AMD64FpEndOffset); 4357 Type *OverflowArgAreaPtrTy = Type::getInt64PtrTy(*MS.C); 4358 Value *OverflowArgAreaPtrPtr = IRB.CreateIntToPtr( 4359 IRB.CreateAdd(IRB.CreatePtrToInt(VAListTag, MS.IntptrTy), 4360 ConstantInt::get(MS.IntptrTy, 8)), 4361 PointerType::get(OverflowArgAreaPtrTy, 0)); 4362 Value *OverflowArgAreaPtr = 4363 IRB.CreateLoad(OverflowArgAreaPtrTy, OverflowArgAreaPtrPtr); 4364 Value *OverflowArgAreaShadowPtr, *OverflowArgAreaOriginPtr; 4365 std::tie(OverflowArgAreaShadowPtr, OverflowArgAreaOriginPtr) = 4366 MSV.getShadowOriginPtr(OverflowArgAreaPtr, IRB, IRB.getInt8Ty(), 4367 Alignment, /*isStore*/ true); 4368 Value *SrcPtr = IRB.CreateConstGEP1_32(IRB.getInt8Ty(), VAArgTLSCopy, 4369 AMD64FpEndOffset); 4370 IRB.CreateMemCpy(OverflowArgAreaShadowPtr, Alignment, SrcPtr, Alignment, 4371 VAArgOverflowSize); 4372 if (MS.TrackOrigins) { 4373 SrcPtr = IRB.CreateConstGEP1_32(IRB.getInt8Ty(), VAArgTLSOriginCopy, 4374 AMD64FpEndOffset); 4375 IRB.CreateMemCpy(OverflowArgAreaOriginPtr, Alignment, SrcPtr, Alignment, 4376 VAArgOverflowSize); 4377 } 4378 } 4379 } 4380 }; 4381 4382 /// MIPS64-specific implementation of VarArgHelper. 4383 struct VarArgMIPS64Helper : public VarArgHelper { 4384 Function &F; 4385 MemorySanitizer &MS; 4386 MemorySanitizerVisitor &MSV; 4387 Value *VAArgTLSCopy = nullptr; 4388 Value *VAArgSize = nullptr; 4389 4390 SmallVector<CallInst*, 16> VAStartInstrumentationList; 4391 4392 VarArgMIPS64Helper(Function &F, MemorySanitizer &MS, 4393 MemorySanitizerVisitor &MSV) : F(F), MS(MS), MSV(MSV) {} 4394 4395 void visitCallBase(CallBase &CB, IRBuilder<> &IRB) override { 4396 unsigned VAArgOffset = 0; 4397 const DataLayout &DL = F.getParent()->getDataLayout(); 4398 for (auto ArgIt = CB.arg_begin() + CB.getFunctionType()->getNumParams(), 4399 End = CB.arg_end(); 4400 ArgIt != End; ++ArgIt) { 4401 Triple TargetTriple(F.getParent()->getTargetTriple()); 4402 Value *A = *ArgIt; 4403 Value *Base; 4404 uint64_t ArgSize = DL.getTypeAllocSize(A->getType()); 4405 if (TargetTriple.getArch() == Triple::mips64) { 4406 // Adjusting the shadow for argument with size < 8 to match the placement 4407 // of bits in big endian system 4408 if (ArgSize < 8) 4409 VAArgOffset += (8 - ArgSize); 4410 } 4411 Base = getShadowPtrForVAArgument(A->getType(), IRB, VAArgOffset, ArgSize); 4412 VAArgOffset += ArgSize; 4413 VAArgOffset = alignTo(VAArgOffset, 8); 4414 if (!Base) 4415 continue; 4416 IRB.CreateAlignedStore(MSV.getShadow(A), Base, kShadowTLSAlignment); 4417 } 4418 4419 Constant *TotalVAArgSize = ConstantInt::get(IRB.getInt64Ty(), VAArgOffset); 4420 // Here using VAArgOverflowSizeTLS as VAArgSizeTLS to avoid creation of 4421 // a new class member i.e. it is the total size of all VarArgs. 4422 IRB.CreateStore(TotalVAArgSize, MS.VAArgOverflowSizeTLS); 4423 } 4424 4425 /// Compute the shadow address for a given va_arg. 4426 Value *getShadowPtrForVAArgument(Type *Ty, IRBuilder<> &IRB, 4427 unsigned ArgOffset, unsigned ArgSize) { 4428 // Make sure we don't overflow __msan_va_arg_tls. 4429 if (ArgOffset + ArgSize > kParamTLSSize) 4430 return nullptr; 4431 Value *Base = IRB.CreatePointerCast(MS.VAArgTLS, MS.IntptrTy); 4432 Base = IRB.CreateAdd(Base, ConstantInt::get(MS.IntptrTy, ArgOffset)); 4433 return IRB.CreateIntToPtr(Base, PointerType::get(MSV.getShadowTy(Ty), 0), 4434 "_msarg"); 4435 } 4436 4437 void visitVAStartInst(VAStartInst &I) override { 4438 IRBuilder<> IRB(&I); 4439 VAStartInstrumentationList.push_back(&I); 4440 Value *VAListTag = I.getArgOperand(0); 4441 Value *ShadowPtr, *OriginPtr; 4442 const Align Alignment = Align(8); 4443 std::tie(ShadowPtr, OriginPtr) = MSV.getShadowOriginPtr( 4444 VAListTag, IRB, IRB.getInt8Ty(), Alignment, /*isStore*/ true); 4445 IRB.CreateMemSet(ShadowPtr, Constant::getNullValue(IRB.getInt8Ty()), 4446 /* size */ 8, Alignment, false); 4447 } 4448 4449 void visitVACopyInst(VACopyInst &I) override { 4450 IRBuilder<> IRB(&I); 4451 VAStartInstrumentationList.push_back(&I); 4452 Value *VAListTag = I.getArgOperand(0); 4453 Value *ShadowPtr, *OriginPtr; 4454 const Align Alignment = Align(8); 4455 std::tie(ShadowPtr, OriginPtr) = MSV.getShadowOriginPtr( 4456 VAListTag, IRB, IRB.getInt8Ty(), Alignment, /*isStore*/ true); 4457 IRB.CreateMemSet(ShadowPtr, Constant::getNullValue(IRB.getInt8Ty()), 4458 /* size */ 8, Alignment, false); 4459 } 4460 4461 void finalizeInstrumentation() override { 4462 assert(!VAArgSize && !VAArgTLSCopy && 4463 "finalizeInstrumentation called twice"); 4464 IRBuilder<> IRB(MSV.FnPrologueEnd); 4465 VAArgSize = IRB.CreateLoad(IRB.getInt64Ty(), MS.VAArgOverflowSizeTLS); 4466 Value *CopySize = IRB.CreateAdd(ConstantInt::get(MS.IntptrTy, 0), 4467 VAArgSize); 4468 4469 if (!VAStartInstrumentationList.empty()) { 4470 // If there is a va_start in this function, make a backup copy of 4471 // va_arg_tls somewhere in the function entry block. 4472 VAArgTLSCopy = IRB.CreateAlloca(Type::getInt8Ty(*MS.C), CopySize); 4473 IRB.CreateMemCpy(VAArgTLSCopy, Align(8), MS.VAArgTLS, Align(8), CopySize); 4474 } 4475 4476 // Instrument va_start. 4477 // Copy va_list shadow from the backup copy of the TLS contents. 4478 for (size_t i = 0, n = VAStartInstrumentationList.size(); i < n; i++) { 4479 CallInst *OrigInst = VAStartInstrumentationList[i]; 4480 IRBuilder<> IRB(OrigInst->getNextNode()); 4481 Value *VAListTag = OrigInst->getArgOperand(0); 4482 Type *RegSaveAreaPtrTy = Type::getInt64PtrTy(*MS.C); 4483 Value *RegSaveAreaPtrPtr = 4484 IRB.CreateIntToPtr(IRB.CreatePtrToInt(VAListTag, MS.IntptrTy), 4485 PointerType::get(RegSaveAreaPtrTy, 0)); 4486 Value *RegSaveAreaPtr = 4487 IRB.CreateLoad(RegSaveAreaPtrTy, RegSaveAreaPtrPtr); 4488 Value *RegSaveAreaShadowPtr, *RegSaveAreaOriginPtr; 4489 const Align Alignment = Align(8); 4490 std::tie(RegSaveAreaShadowPtr, RegSaveAreaOriginPtr) = 4491 MSV.getShadowOriginPtr(RegSaveAreaPtr, IRB, IRB.getInt8Ty(), 4492 Alignment, /*isStore*/ true); 4493 IRB.CreateMemCpy(RegSaveAreaShadowPtr, Alignment, VAArgTLSCopy, Alignment, 4494 CopySize); 4495 } 4496 } 4497 }; 4498 4499 /// AArch64-specific implementation of VarArgHelper. 4500 struct VarArgAArch64Helper : public VarArgHelper { 4501 static const unsigned kAArch64GrArgSize = 64; 4502 static const unsigned kAArch64VrArgSize = 128; 4503 4504 static const unsigned AArch64GrBegOffset = 0; 4505 static const unsigned AArch64GrEndOffset = kAArch64GrArgSize; 4506 // Make VR space aligned to 16 bytes. 4507 static const unsigned AArch64VrBegOffset = AArch64GrEndOffset; 4508 static const unsigned AArch64VrEndOffset = AArch64VrBegOffset 4509 + kAArch64VrArgSize; 4510 static const unsigned AArch64VAEndOffset = AArch64VrEndOffset; 4511 4512 Function &F; 4513 MemorySanitizer &MS; 4514 MemorySanitizerVisitor &MSV; 4515 Value *VAArgTLSCopy = nullptr; 4516 Value *VAArgOverflowSize = nullptr; 4517 4518 SmallVector<CallInst*, 16> VAStartInstrumentationList; 4519 4520 enum ArgKind { AK_GeneralPurpose, AK_FloatingPoint, AK_Memory }; 4521 4522 VarArgAArch64Helper(Function &F, MemorySanitizer &MS, 4523 MemorySanitizerVisitor &MSV) : F(F), MS(MS), MSV(MSV) {} 4524 4525 ArgKind classifyArgument(Value* arg) { 4526 Type *T = arg->getType(); 4527 if (T->isFPOrFPVectorTy()) 4528 return AK_FloatingPoint; 4529 if ((T->isIntegerTy() && T->getPrimitiveSizeInBits() <= 64) 4530 || (T->isPointerTy())) 4531 return AK_GeneralPurpose; 4532 return AK_Memory; 4533 } 4534 4535 // The instrumentation stores the argument shadow in a non ABI-specific 4536 // format because it does not know which argument is named (since Clang, 4537 // like x86_64 case, lowers the va_args in the frontend and this pass only 4538 // sees the low level code that deals with va_list internals). 4539 // The first seven GR registers are saved in the first 56 bytes of the 4540 // va_arg tls arra, followers by the first 8 FP/SIMD registers, and then 4541 // the remaining arguments. 4542 // Using constant offset within the va_arg TLS array allows fast copy 4543 // in the finalize instrumentation. 4544 void visitCallBase(CallBase &CB, IRBuilder<> &IRB) override { 4545 unsigned GrOffset = AArch64GrBegOffset; 4546 unsigned VrOffset = AArch64VrBegOffset; 4547 unsigned OverflowOffset = AArch64VAEndOffset; 4548 4549 const DataLayout &DL = F.getParent()->getDataLayout(); 4550 for (auto ArgIt = CB.arg_begin(), End = CB.arg_end(); ArgIt != End; 4551 ++ArgIt) { 4552 Value *A = *ArgIt; 4553 unsigned ArgNo = CB.getArgOperandNo(ArgIt); 4554 bool IsFixed = ArgNo < CB.getFunctionType()->getNumParams(); 4555 ArgKind AK = classifyArgument(A); 4556 if (AK == AK_GeneralPurpose && GrOffset >= AArch64GrEndOffset) 4557 AK = AK_Memory; 4558 if (AK == AK_FloatingPoint && VrOffset >= AArch64VrEndOffset) 4559 AK = AK_Memory; 4560 Value *Base; 4561 switch (AK) { 4562 case AK_GeneralPurpose: 4563 Base = getShadowPtrForVAArgument(A->getType(), IRB, GrOffset, 8); 4564 GrOffset += 8; 4565 break; 4566 case AK_FloatingPoint: 4567 Base = getShadowPtrForVAArgument(A->getType(), IRB, VrOffset, 8); 4568 VrOffset += 16; 4569 break; 4570 case AK_Memory: 4571 // Don't count fixed arguments in the overflow area - va_start will 4572 // skip right over them. 4573 if (IsFixed) 4574 continue; 4575 uint64_t ArgSize = DL.getTypeAllocSize(A->getType()); 4576 Base = getShadowPtrForVAArgument(A->getType(), IRB, OverflowOffset, 4577 alignTo(ArgSize, 8)); 4578 OverflowOffset += alignTo(ArgSize, 8); 4579 break; 4580 } 4581 // Count Gp/Vr fixed arguments to their respective offsets, but don't 4582 // bother to actually store a shadow. 4583 if (IsFixed) 4584 continue; 4585 if (!Base) 4586 continue; 4587 IRB.CreateAlignedStore(MSV.getShadow(A), Base, kShadowTLSAlignment); 4588 } 4589 Constant *OverflowSize = 4590 ConstantInt::get(IRB.getInt64Ty(), OverflowOffset - AArch64VAEndOffset); 4591 IRB.CreateStore(OverflowSize, MS.VAArgOverflowSizeTLS); 4592 } 4593 4594 /// Compute the shadow address for a given va_arg. 4595 Value *getShadowPtrForVAArgument(Type *Ty, IRBuilder<> &IRB, 4596 unsigned ArgOffset, unsigned ArgSize) { 4597 // Make sure we don't overflow __msan_va_arg_tls. 4598 if (ArgOffset + ArgSize > kParamTLSSize) 4599 return nullptr; 4600 Value *Base = IRB.CreatePointerCast(MS.VAArgTLS, MS.IntptrTy); 4601 Base = IRB.CreateAdd(Base, ConstantInt::get(MS.IntptrTy, ArgOffset)); 4602 return IRB.CreateIntToPtr(Base, PointerType::get(MSV.getShadowTy(Ty), 0), 4603 "_msarg"); 4604 } 4605 4606 void visitVAStartInst(VAStartInst &I) override { 4607 IRBuilder<> IRB(&I); 4608 VAStartInstrumentationList.push_back(&I); 4609 Value *VAListTag = I.getArgOperand(0); 4610 Value *ShadowPtr, *OriginPtr; 4611 const Align Alignment = Align(8); 4612 std::tie(ShadowPtr, OriginPtr) = MSV.getShadowOriginPtr( 4613 VAListTag, IRB, IRB.getInt8Ty(), Alignment, /*isStore*/ true); 4614 IRB.CreateMemSet(ShadowPtr, Constant::getNullValue(IRB.getInt8Ty()), 4615 /* size */ 32, Alignment, false); 4616 } 4617 4618 void visitVACopyInst(VACopyInst &I) override { 4619 IRBuilder<> IRB(&I); 4620 VAStartInstrumentationList.push_back(&I); 4621 Value *VAListTag = I.getArgOperand(0); 4622 Value *ShadowPtr, *OriginPtr; 4623 const Align Alignment = Align(8); 4624 std::tie(ShadowPtr, OriginPtr) = MSV.getShadowOriginPtr( 4625 VAListTag, IRB, IRB.getInt8Ty(), Alignment, /*isStore*/ true); 4626 IRB.CreateMemSet(ShadowPtr, Constant::getNullValue(IRB.getInt8Ty()), 4627 /* size */ 32, Alignment, false); 4628 } 4629 4630 // Retrieve a va_list field of 'void*' size. 4631 Value* getVAField64(IRBuilder<> &IRB, Value *VAListTag, int offset) { 4632 Value *SaveAreaPtrPtr = 4633 IRB.CreateIntToPtr( 4634 IRB.CreateAdd(IRB.CreatePtrToInt(VAListTag, MS.IntptrTy), 4635 ConstantInt::get(MS.IntptrTy, offset)), 4636 Type::getInt64PtrTy(*MS.C)); 4637 return IRB.CreateLoad(Type::getInt64Ty(*MS.C), SaveAreaPtrPtr); 4638 } 4639 4640 // Retrieve a va_list field of 'int' size. 4641 Value* getVAField32(IRBuilder<> &IRB, Value *VAListTag, int offset) { 4642 Value *SaveAreaPtr = 4643 IRB.CreateIntToPtr( 4644 IRB.CreateAdd(IRB.CreatePtrToInt(VAListTag, MS.IntptrTy), 4645 ConstantInt::get(MS.IntptrTy, offset)), 4646 Type::getInt32PtrTy(*MS.C)); 4647 Value *SaveArea32 = IRB.CreateLoad(IRB.getInt32Ty(), SaveAreaPtr); 4648 return IRB.CreateSExt(SaveArea32, MS.IntptrTy); 4649 } 4650 4651 void finalizeInstrumentation() override { 4652 assert(!VAArgOverflowSize && !VAArgTLSCopy && 4653 "finalizeInstrumentation called twice"); 4654 if (!VAStartInstrumentationList.empty()) { 4655 // If there is a va_start in this function, make a backup copy of 4656 // va_arg_tls somewhere in the function entry block. 4657 IRBuilder<> IRB(MSV.FnPrologueEnd); 4658 VAArgOverflowSize = 4659 IRB.CreateLoad(IRB.getInt64Ty(), MS.VAArgOverflowSizeTLS); 4660 Value *CopySize = 4661 IRB.CreateAdd(ConstantInt::get(MS.IntptrTy, AArch64VAEndOffset), 4662 VAArgOverflowSize); 4663 VAArgTLSCopy = IRB.CreateAlloca(Type::getInt8Ty(*MS.C), CopySize); 4664 IRB.CreateMemCpy(VAArgTLSCopy, Align(8), MS.VAArgTLS, Align(8), CopySize); 4665 } 4666 4667 Value *GrArgSize = ConstantInt::get(MS.IntptrTy, kAArch64GrArgSize); 4668 Value *VrArgSize = ConstantInt::get(MS.IntptrTy, kAArch64VrArgSize); 4669 4670 // Instrument va_start, copy va_list shadow from the backup copy of 4671 // the TLS contents. 4672 for (size_t i = 0, n = VAStartInstrumentationList.size(); i < n; i++) { 4673 CallInst *OrigInst = VAStartInstrumentationList[i]; 4674 IRBuilder<> IRB(OrigInst->getNextNode()); 4675 4676 Value *VAListTag = OrigInst->getArgOperand(0); 4677 4678 // The variadic ABI for AArch64 creates two areas to save the incoming 4679 // argument registers (one for 64-bit general register xn-x7 and another 4680 // for 128-bit FP/SIMD vn-v7). 4681 // We need then to propagate the shadow arguments on both regions 4682 // 'va::__gr_top + va::__gr_offs' and 'va::__vr_top + va::__vr_offs'. 4683 // The remaining arguments are saved on shadow for 'va::stack'. 4684 // One caveat is it requires only to propagate the non-named arguments, 4685 // however on the call site instrumentation 'all' the arguments are 4686 // saved. So to copy the shadow values from the va_arg TLS array 4687 // we need to adjust the offset for both GR and VR fields based on 4688 // the __{gr,vr}_offs value (since they are stores based on incoming 4689 // named arguments). 4690 4691 // Read the stack pointer from the va_list. 4692 Value *StackSaveAreaPtr = getVAField64(IRB, VAListTag, 0); 4693 4694 // Read both the __gr_top and __gr_off and add them up. 4695 Value *GrTopSaveAreaPtr = getVAField64(IRB, VAListTag, 8); 4696 Value *GrOffSaveArea = getVAField32(IRB, VAListTag, 24); 4697 4698 Value *GrRegSaveAreaPtr = IRB.CreateAdd(GrTopSaveAreaPtr, GrOffSaveArea); 4699 4700 // Read both the __vr_top and __vr_off and add them up. 4701 Value *VrTopSaveAreaPtr = getVAField64(IRB, VAListTag, 16); 4702 Value *VrOffSaveArea = getVAField32(IRB, VAListTag, 28); 4703 4704 Value *VrRegSaveAreaPtr = IRB.CreateAdd(VrTopSaveAreaPtr, VrOffSaveArea); 4705 4706 // It does not know how many named arguments is being used and, on the 4707 // callsite all the arguments were saved. Since __gr_off is defined as 4708 // '0 - ((8 - named_gr) * 8)', the idea is to just propagate the variadic 4709 // argument by ignoring the bytes of shadow from named arguments. 4710 Value *GrRegSaveAreaShadowPtrOff = 4711 IRB.CreateAdd(GrArgSize, GrOffSaveArea); 4712 4713 Value *GrRegSaveAreaShadowPtr = 4714 MSV.getShadowOriginPtr(GrRegSaveAreaPtr, IRB, IRB.getInt8Ty(), 4715 Align(8), /*isStore*/ true) 4716 .first; 4717 4718 Value *GrSrcPtr = IRB.CreateInBoundsGEP(IRB.getInt8Ty(), VAArgTLSCopy, 4719 GrRegSaveAreaShadowPtrOff); 4720 Value *GrCopySize = IRB.CreateSub(GrArgSize, GrRegSaveAreaShadowPtrOff); 4721 4722 IRB.CreateMemCpy(GrRegSaveAreaShadowPtr, Align(8), GrSrcPtr, Align(8), 4723 GrCopySize); 4724 4725 // Again, but for FP/SIMD values. 4726 Value *VrRegSaveAreaShadowPtrOff = 4727 IRB.CreateAdd(VrArgSize, VrOffSaveArea); 4728 4729 Value *VrRegSaveAreaShadowPtr = 4730 MSV.getShadowOriginPtr(VrRegSaveAreaPtr, IRB, IRB.getInt8Ty(), 4731 Align(8), /*isStore*/ true) 4732 .first; 4733 4734 Value *VrSrcPtr = IRB.CreateInBoundsGEP( 4735 IRB.getInt8Ty(), 4736 IRB.CreateInBoundsGEP(IRB.getInt8Ty(), VAArgTLSCopy, 4737 IRB.getInt32(AArch64VrBegOffset)), 4738 VrRegSaveAreaShadowPtrOff); 4739 Value *VrCopySize = IRB.CreateSub(VrArgSize, VrRegSaveAreaShadowPtrOff); 4740 4741 IRB.CreateMemCpy(VrRegSaveAreaShadowPtr, Align(8), VrSrcPtr, Align(8), 4742 VrCopySize); 4743 4744 // And finally for remaining arguments. 4745 Value *StackSaveAreaShadowPtr = 4746 MSV.getShadowOriginPtr(StackSaveAreaPtr, IRB, IRB.getInt8Ty(), 4747 Align(16), /*isStore*/ true) 4748 .first; 4749 4750 Value *StackSrcPtr = 4751 IRB.CreateInBoundsGEP(IRB.getInt8Ty(), VAArgTLSCopy, 4752 IRB.getInt32(AArch64VAEndOffset)); 4753 4754 IRB.CreateMemCpy(StackSaveAreaShadowPtr, Align(16), StackSrcPtr, 4755 Align(16), VAArgOverflowSize); 4756 } 4757 } 4758 }; 4759 4760 /// PowerPC64-specific implementation of VarArgHelper. 4761 struct VarArgPowerPC64Helper : public VarArgHelper { 4762 Function &F; 4763 MemorySanitizer &MS; 4764 MemorySanitizerVisitor &MSV; 4765 Value *VAArgTLSCopy = nullptr; 4766 Value *VAArgSize = nullptr; 4767 4768 SmallVector<CallInst*, 16> VAStartInstrumentationList; 4769 4770 VarArgPowerPC64Helper(Function &F, MemorySanitizer &MS, 4771 MemorySanitizerVisitor &MSV) : F(F), MS(MS), MSV(MSV) {} 4772 4773 void visitCallBase(CallBase &CB, IRBuilder<> &IRB) override { 4774 // For PowerPC, we need to deal with alignment of stack arguments - 4775 // they are mostly aligned to 8 bytes, but vectors and i128 arrays 4776 // are aligned to 16 bytes, byvals can be aligned to 8 or 16 bytes, 4777 // For that reason, we compute current offset from stack pointer (which is 4778 // always properly aligned), and offset for the first vararg, then subtract 4779 // them. 4780 unsigned VAArgBase; 4781 Triple TargetTriple(F.getParent()->getTargetTriple()); 4782 // Parameter save area starts at 48 bytes from frame pointer for ABIv1, 4783 // and 32 bytes for ABIv2. This is usually determined by target 4784 // endianness, but in theory could be overridden by function attribute. 4785 if (TargetTriple.getArch() == Triple::ppc64) 4786 VAArgBase = 48; 4787 else 4788 VAArgBase = 32; 4789 unsigned VAArgOffset = VAArgBase; 4790 const DataLayout &DL = F.getParent()->getDataLayout(); 4791 for (auto ArgIt = CB.arg_begin(), End = CB.arg_end(); ArgIt != End; 4792 ++ArgIt) { 4793 Value *A = *ArgIt; 4794 unsigned ArgNo = CB.getArgOperandNo(ArgIt); 4795 bool IsFixed = ArgNo < CB.getFunctionType()->getNumParams(); 4796 bool IsByVal = CB.paramHasAttr(ArgNo, Attribute::ByVal); 4797 if (IsByVal) { 4798 assert(A->getType()->isPointerTy()); 4799 Type *RealTy = CB.getParamByValType(ArgNo); 4800 uint64_t ArgSize = DL.getTypeAllocSize(RealTy); 4801 MaybeAlign ArgAlign = CB.getParamAlign(ArgNo); 4802 if (!ArgAlign || *ArgAlign < Align(8)) 4803 ArgAlign = Align(8); 4804 VAArgOffset = alignTo(VAArgOffset, ArgAlign); 4805 if (!IsFixed) { 4806 Value *Base = getShadowPtrForVAArgument( 4807 RealTy, IRB, VAArgOffset - VAArgBase, ArgSize); 4808 if (Base) { 4809 Value *AShadowPtr, *AOriginPtr; 4810 std::tie(AShadowPtr, AOriginPtr) = 4811 MSV.getShadowOriginPtr(A, IRB, IRB.getInt8Ty(), 4812 kShadowTLSAlignment, /*isStore*/ false); 4813 4814 IRB.CreateMemCpy(Base, kShadowTLSAlignment, AShadowPtr, 4815 kShadowTLSAlignment, ArgSize); 4816 } 4817 } 4818 VAArgOffset += alignTo(ArgSize, 8); 4819 } else { 4820 Value *Base; 4821 uint64_t ArgSize = DL.getTypeAllocSize(A->getType()); 4822 uint64_t ArgAlign = 8; 4823 if (A->getType()->isArrayTy()) { 4824 // Arrays are aligned to element size, except for long double 4825 // arrays, which are aligned to 8 bytes. 4826 Type *ElementTy = A->getType()->getArrayElementType(); 4827 if (!ElementTy->isPPC_FP128Ty()) 4828 ArgAlign = DL.getTypeAllocSize(ElementTy); 4829 } else if (A->getType()->isVectorTy()) { 4830 // Vectors are naturally aligned. 4831 ArgAlign = DL.getTypeAllocSize(A->getType()); 4832 } 4833 if (ArgAlign < 8) 4834 ArgAlign = 8; 4835 VAArgOffset = alignTo(VAArgOffset, ArgAlign); 4836 if (DL.isBigEndian()) { 4837 // Adjusting the shadow for argument with size < 8 to match the placement 4838 // of bits in big endian system 4839 if (ArgSize < 8) 4840 VAArgOffset += (8 - ArgSize); 4841 } 4842 if (!IsFixed) { 4843 Base = getShadowPtrForVAArgument(A->getType(), IRB, 4844 VAArgOffset - VAArgBase, ArgSize); 4845 if (Base) 4846 IRB.CreateAlignedStore(MSV.getShadow(A), Base, kShadowTLSAlignment); 4847 } 4848 VAArgOffset += ArgSize; 4849 VAArgOffset = alignTo(VAArgOffset, 8); 4850 } 4851 if (IsFixed) 4852 VAArgBase = VAArgOffset; 4853 } 4854 4855 Constant *TotalVAArgSize = ConstantInt::get(IRB.getInt64Ty(), 4856 VAArgOffset - VAArgBase); 4857 // Here using VAArgOverflowSizeTLS as VAArgSizeTLS to avoid creation of 4858 // a new class member i.e. it is the total size of all VarArgs. 4859 IRB.CreateStore(TotalVAArgSize, MS.VAArgOverflowSizeTLS); 4860 } 4861 4862 /// Compute the shadow address for a given va_arg. 4863 Value *getShadowPtrForVAArgument(Type *Ty, IRBuilder<> &IRB, 4864 unsigned ArgOffset, unsigned ArgSize) { 4865 // Make sure we don't overflow __msan_va_arg_tls. 4866 if (ArgOffset + ArgSize > kParamTLSSize) 4867 return nullptr; 4868 Value *Base = IRB.CreatePointerCast(MS.VAArgTLS, MS.IntptrTy); 4869 Base = IRB.CreateAdd(Base, ConstantInt::get(MS.IntptrTy, ArgOffset)); 4870 return IRB.CreateIntToPtr(Base, PointerType::get(MSV.getShadowTy(Ty), 0), 4871 "_msarg"); 4872 } 4873 4874 void visitVAStartInst(VAStartInst &I) override { 4875 IRBuilder<> IRB(&I); 4876 VAStartInstrumentationList.push_back(&I); 4877 Value *VAListTag = I.getArgOperand(0); 4878 Value *ShadowPtr, *OriginPtr; 4879 const Align Alignment = Align(8); 4880 std::tie(ShadowPtr, OriginPtr) = MSV.getShadowOriginPtr( 4881 VAListTag, IRB, IRB.getInt8Ty(), Alignment, /*isStore*/ true); 4882 IRB.CreateMemSet(ShadowPtr, Constant::getNullValue(IRB.getInt8Ty()), 4883 /* size */ 8, Alignment, false); 4884 } 4885 4886 void visitVACopyInst(VACopyInst &I) override { 4887 IRBuilder<> IRB(&I); 4888 Value *VAListTag = I.getArgOperand(0); 4889 Value *ShadowPtr, *OriginPtr; 4890 const Align Alignment = Align(8); 4891 std::tie(ShadowPtr, OriginPtr) = MSV.getShadowOriginPtr( 4892 VAListTag, IRB, IRB.getInt8Ty(), Alignment, /*isStore*/ true); 4893 // Unpoison the whole __va_list_tag. 4894 // FIXME: magic ABI constants. 4895 IRB.CreateMemSet(ShadowPtr, Constant::getNullValue(IRB.getInt8Ty()), 4896 /* size */ 8, Alignment, false); 4897 } 4898 4899 void finalizeInstrumentation() override { 4900 assert(!VAArgSize && !VAArgTLSCopy && 4901 "finalizeInstrumentation called twice"); 4902 IRBuilder<> IRB(MSV.FnPrologueEnd); 4903 VAArgSize = IRB.CreateLoad(IRB.getInt64Ty(), MS.VAArgOverflowSizeTLS); 4904 Value *CopySize = IRB.CreateAdd(ConstantInt::get(MS.IntptrTy, 0), 4905 VAArgSize); 4906 4907 if (!VAStartInstrumentationList.empty()) { 4908 // If there is a va_start in this function, make a backup copy of 4909 // va_arg_tls somewhere in the function entry block. 4910 VAArgTLSCopy = IRB.CreateAlloca(Type::getInt8Ty(*MS.C), CopySize); 4911 IRB.CreateMemCpy(VAArgTLSCopy, Align(8), MS.VAArgTLS, Align(8), CopySize); 4912 } 4913 4914 // Instrument va_start. 4915 // Copy va_list shadow from the backup copy of the TLS contents. 4916 for (size_t i = 0, n = VAStartInstrumentationList.size(); i < n; i++) { 4917 CallInst *OrigInst = VAStartInstrumentationList[i]; 4918 IRBuilder<> IRB(OrigInst->getNextNode()); 4919 Value *VAListTag = OrigInst->getArgOperand(0); 4920 Type *RegSaveAreaPtrTy = Type::getInt64PtrTy(*MS.C); 4921 Value *RegSaveAreaPtrPtr = 4922 IRB.CreateIntToPtr(IRB.CreatePtrToInt(VAListTag, MS.IntptrTy), 4923 PointerType::get(RegSaveAreaPtrTy, 0)); 4924 Value *RegSaveAreaPtr = 4925 IRB.CreateLoad(RegSaveAreaPtrTy, RegSaveAreaPtrPtr); 4926 Value *RegSaveAreaShadowPtr, *RegSaveAreaOriginPtr; 4927 const Align Alignment = Align(8); 4928 std::tie(RegSaveAreaShadowPtr, RegSaveAreaOriginPtr) = 4929 MSV.getShadowOriginPtr(RegSaveAreaPtr, IRB, IRB.getInt8Ty(), 4930 Alignment, /*isStore*/ true); 4931 IRB.CreateMemCpy(RegSaveAreaShadowPtr, Alignment, VAArgTLSCopy, Alignment, 4932 CopySize); 4933 } 4934 } 4935 }; 4936 4937 /// SystemZ-specific implementation of VarArgHelper. 4938 struct VarArgSystemZHelper : public VarArgHelper { 4939 static const unsigned SystemZGpOffset = 16; 4940 static const unsigned SystemZGpEndOffset = 56; 4941 static const unsigned SystemZFpOffset = 128; 4942 static const unsigned SystemZFpEndOffset = 160; 4943 static const unsigned SystemZMaxVrArgs = 8; 4944 static const unsigned SystemZRegSaveAreaSize = 160; 4945 static const unsigned SystemZOverflowOffset = 160; 4946 static const unsigned SystemZVAListTagSize = 32; 4947 static const unsigned SystemZOverflowArgAreaPtrOffset = 16; 4948 static const unsigned SystemZRegSaveAreaPtrOffset = 24; 4949 4950 Function &F; 4951 MemorySanitizer &MS; 4952 MemorySanitizerVisitor &MSV; 4953 Value *VAArgTLSCopy = nullptr; 4954 Value *VAArgTLSOriginCopy = nullptr; 4955 Value *VAArgOverflowSize = nullptr; 4956 4957 SmallVector<CallInst *, 16> VAStartInstrumentationList; 4958 4959 enum class ArgKind { 4960 GeneralPurpose, 4961 FloatingPoint, 4962 Vector, 4963 Memory, 4964 Indirect, 4965 }; 4966 4967 enum class ShadowExtension { None, Zero, Sign }; 4968 4969 VarArgSystemZHelper(Function &F, MemorySanitizer &MS, 4970 MemorySanitizerVisitor &MSV) 4971 : F(F), MS(MS), MSV(MSV) {} 4972 4973 ArgKind classifyArgument(Type *T, bool IsSoftFloatABI) { 4974 // T is a SystemZABIInfo::classifyArgumentType() output, and there are 4975 // only a few possibilities of what it can be. In particular, enums, single 4976 // element structs and large types have already been taken care of. 4977 4978 // Some i128 and fp128 arguments are converted to pointers only in the 4979 // back end. 4980 if (T->isIntegerTy(128) || T->isFP128Ty()) 4981 return ArgKind::Indirect; 4982 if (T->isFloatingPointTy()) 4983 return IsSoftFloatABI ? ArgKind::GeneralPurpose : ArgKind::FloatingPoint; 4984 if (T->isIntegerTy() || T->isPointerTy()) 4985 return ArgKind::GeneralPurpose; 4986 if (T->isVectorTy()) 4987 return ArgKind::Vector; 4988 return ArgKind::Memory; 4989 } 4990 4991 ShadowExtension getShadowExtension(const CallBase &CB, unsigned ArgNo) { 4992 // ABI says: "One of the simple integer types no more than 64 bits wide. 4993 // ... If such an argument is shorter than 64 bits, replace it by a full 4994 // 64-bit integer representing the same number, using sign or zero 4995 // extension". Shadow for an integer argument has the same type as the 4996 // argument itself, so it can be sign or zero extended as well. 4997 bool ZExt = CB.paramHasAttr(ArgNo, Attribute::ZExt); 4998 bool SExt = CB.paramHasAttr(ArgNo, Attribute::SExt); 4999 if (ZExt) { 5000 assert(!SExt); 5001 return ShadowExtension::Zero; 5002 } 5003 if (SExt) { 5004 assert(!ZExt); 5005 return ShadowExtension::Sign; 5006 } 5007 return ShadowExtension::None; 5008 } 5009 5010 void visitCallBase(CallBase &CB, IRBuilder<> &IRB) override { 5011 bool IsSoftFloatABI = CB.getCalledFunction() 5012 ->getFnAttribute("use-soft-float") 5013 .getValueAsString() == "true"; 5014 unsigned GpOffset = SystemZGpOffset; 5015 unsigned FpOffset = SystemZFpOffset; 5016 unsigned VrIndex = 0; 5017 unsigned OverflowOffset = SystemZOverflowOffset; 5018 const DataLayout &DL = F.getParent()->getDataLayout(); 5019 for (auto ArgIt = CB.arg_begin(), End = CB.arg_end(); ArgIt != End; 5020 ++ArgIt) { 5021 Value *A = *ArgIt; 5022 unsigned ArgNo = CB.getArgOperandNo(ArgIt); 5023 bool IsFixed = ArgNo < CB.getFunctionType()->getNumParams(); 5024 // SystemZABIInfo does not produce ByVal parameters. 5025 assert(!CB.paramHasAttr(ArgNo, Attribute::ByVal)); 5026 Type *T = A->getType(); 5027 ArgKind AK = classifyArgument(T, IsSoftFloatABI); 5028 if (AK == ArgKind::Indirect) { 5029 T = PointerType::get(T, 0); 5030 AK = ArgKind::GeneralPurpose; 5031 } 5032 if (AK == ArgKind::GeneralPurpose && GpOffset >= SystemZGpEndOffset) 5033 AK = ArgKind::Memory; 5034 if (AK == ArgKind::FloatingPoint && FpOffset >= SystemZFpEndOffset) 5035 AK = ArgKind::Memory; 5036 if (AK == ArgKind::Vector && (VrIndex >= SystemZMaxVrArgs || !IsFixed)) 5037 AK = ArgKind::Memory; 5038 Value *ShadowBase = nullptr; 5039 Value *OriginBase = nullptr; 5040 ShadowExtension SE = ShadowExtension::None; 5041 switch (AK) { 5042 case ArgKind::GeneralPurpose: { 5043 // Always keep track of GpOffset, but store shadow only for varargs. 5044 uint64_t ArgSize = 8; 5045 if (GpOffset + ArgSize <= kParamTLSSize) { 5046 if (!IsFixed) { 5047 SE = getShadowExtension(CB, ArgNo); 5048 uint64_t GapSize = 0; 5049 if (SE == ShadowExtension::None) { 5050 uint64_t ArgAllocSize = DL.getTypeAllocSize(T); 5051 assert(ArgAllocSize <= ArgSize); 5052 GapSize = ArgSize - ArgAllocSize; 5053 } 5054 ShadowBase = getShadowAddrForVAArgument(IRB, GpOffset + GapSize); 5055 if (MS.TrackOrigins) 5056 OriginBase = getOriginPtrForVAArgument(IRB, GpOffset + GapSize); 5057 } 5058 GpOffset += ArgSize; 5059 } else { 5060 GpOffset = kParamTLSSize; 5061 } 5062 break; 5063 } 5064 case ArgKind::FloatingPoint: { 5065 // Always keep track of FpOffset, but store shadow only for varargs. 5066 uint64_t ArgSize = 8; 5067 if (FpOffset + ArgSize <= kParamTLSSize) { 5068 if (!IsFixed) { 5069 // PoP says: "A short floating-point datum requires only the 5070 // left-most 32 bit positions of a floating-point register". 5071 // Therefore, in contrast to AK_GeneralPurpose and AK_Memory, 5072 // don't extend shadow and don't mind the gap. 5073 ShadowBase = getShadowAddrForVAArgument(IRB, FpOffset); 5074 if (MS.TrackOrigins) 5075 OriginBase = getOriginPtrForVAArgument(IRB, FpOffset); 5076 } 5077 FpOffset += ArgSize; 5078 } else { 5079 FpOffset = kParamTLSSize; 5080 } 5081 break; 5082 } 5083 case ArgKind::Vector: { 5084 // Keep track of VrIndex. No need to store shadow, since vector varargs 5085 // go through AK_Memory. 5086 assert(IsFixed); 5087 VrIndex++; 5088 break; 5089 } 5090 case ArgKind::Memory: { 5091 // Keep track of OverflowOffset and store shadow only for varargs. 5092 // Ignore fixed args, since we need to copy only the vararg portion of 5093 // the overflow area shadow. 5094 if (!IsFixed) { 5095 uint64_t ArgAllocSize = DL.getTypeAllocSize(T); 5096 uint64_t ArgSize = alignTo(ArgAllocSize, 8); 5097 if (OverflowOffset + ArgSize <= kParamTLSSize) { 5098 SE = getShadowExtension(CB, ArgNo); 5099 uint64_t GapSize = 5100 SE == ShadowExtension::None ? ArgSize - ArgAllocSize : 0; 5101 ShadowBase = 5102 getShadowAddrForVAArgument(IRB, OverflowOffset + GapSize); 5103 if (MS.TrackOrigins) 5104 OriginBase = 5105 getOriginPtrForVAArgument(IRB, OverflowOffset + GapSize); 5106 OverflowOffset += ArgSize; 5107 } else { 5108 OverflowOffset = kParamTLSSize; 5109 } 5110 } 5111 break; 5112 } 5113 case ArgKind::Indirect: 5114 llvm_unreachable("Indirect must be converted to GeneralPurpose"); 5115 } 5116 if (ShadowBase == nullptr) 5117 continue; 5118 Value *Shadow = MSV.getShadow(A); 5119 if (SE != ShadowExtension::None) 5120 Shadow = MSV.CreateShadowCast(IRB, Shadow, IRB.getInt64Ty(), 5121 /*Signed*/ SE == ShadowExtension::Sign); 5122 ShadowBase = IRB.CreateIntToPtr( 5123 ShadowBase, PointerType::get(Shadow->getType(), 0), "_msarg_va_s"); 5124 IRB.CreateStore(Shadow, ShadowBase); 5125 if (MS.TrackOrigins) { 5126 Value *Origin = MSV.getOrigin(A); 5127 unsigned StoreSize = DL.getTypeStoreSize(Shadow->getType()); 5128 MSV.paintOrigin(IRB, Origin, OriginBase, StoreSize, 5129 kMinOriginAlignment); 5130 } 5131 } 5132 Constant *OverflowSize = ConstantInt::get( 5133 IRB.getInt64Ty(), OverflowOffset - SystemZOverflowOffset); 5134 IRB.CreateStore(OverflowSize, MS.VAArgOverflowSizeTLS); 5135 } 5136 5137 Value *getShadowAddrForVAArgument(IRBuilder<> &IRB, unsigned ArgOffset) { 5138 Value *Base = IRB.CreatePointerCast(MS.VAArgTLS, MS.IntptrTy); 5139 return IRB.CreateAdd(Base, ConstantInt::get(MS.IntptrTy, ArgOffset)); 5140 } 5141 5142 Value *getOriginPtrForVAArgument(IRBuilder<> &IRB, int ArgOffset) { 5143 Value *Base = IRB.CreatePointerCast(MS.VAArgOriginTLS, MS.IntptrTy); 5144 Base = IRB.CreateAdd(Base, ConstantInt::get(MS.IntptrTy, ArgOffset)); 5145 return IRB.CreateIntToPtr(Base, PointerType::get(MS.OriginTy, 0), 5146 "_msarg_va_o"); 5147 } 5148 5149 void unpoisonVAListTagForInst(IntrinsicInst &I) { 5150 IRBuilder<> IRB(&I); 5151 Value *VAListTag = I.getArgOperand(0); 5152 Value *ShadowPtr, *OriginPtr; 5153 const Align Alignment = Align(8); 5154 std::tie(ShadowPtr, OriginPtr) = 5155 MSV.getShadowOriginPtr(VAListTag, IRB, IRB.getInt8Ty(), Alignment, 5156 /*isStore*/ true); 5157 IRB.CreateMemSet(ShadowPtr, Constant::getNullValue(IRB.getInt8Ty()), 5158 SystemZVAListTagSize, Alignment, false); 5159 } 5160 5161 void visitVAStartInst(VAStartInst &I) override { 5162 VAStartInstrumentationList.push_back(&I); 5163 unpoisonVAListTagForInst(I); 5164 } 5165 5166 void visitVACopyInst(VACopyInst &I) override { unpoisonVAListTagForInst(I); } 5167 5168 void copyRegSaveArea(IRBuilder<> &IRB, Value *VAListTag) { 5169 Type *RegSaveAreaPtrTy = Type::getInt64PtrTy(*MS.C); 5170 Value *RegSaveAreaPtrPtr = IRB.CreateIntToPtr( 5171 IRB.CreateAdd( 5172 IRB.CreatePtrToInt(VAListTag, MS.IntptrTy), 5173 ConstantInt::get(MS.IntptrTy, SystemZRegSaveAreaPtrOffset)), 5174 PointerType::get(RegSaveAreaPtrTy, 0)); 5175 Value *RegSaveAreaPtr = IRB.CreateLoad(RegSaveAreaPtrTy, RegSaveAreaPtrPtr); 5176 Value *RegSaveAreaShadowPtr, *RegSaveAreaOriginPtr; 5177 const Align Alignment = Align(8); 5178 std::tie(RegSaveAreaShadowPtr, RegSaveAreaOriginPtr) = 5179 MSV.getShadowOriginPtr(RegSaveAreaPtr, IRB, IRB.getInt8Ty(), Alignment, 5180 /*isStore*/ true); 5181 // TODO(iii): copy only fragments filled by visitCallBase() 5182 IRB.CreateMemCpy(RegSaveAreaShadowPtr, Alignment, VAArgTLSCopy, Alignment, 5183 SystemZRegSaveAreaSize); 5184 if (MS.TrackOrigins) 5185 IRB.CreateMemCpy(RegSaveAreaOriginPtr, Alignment, VAArgTLSOriginCopy, 5186 Alignment, SystemZRegSaveAreaSize); 5187 } 5188 5189 void copyOverflowArea(IRBuilder<> &IRB, Value *VAListTag) { 5190 Type *OverflowArgAreaPtrTy = Type::getInt64PtrTy(*MS.C); 5191 Value *OverflowArgAreaPtrPtr = IRB.CreateIntToPtr( 5192 IRB.CreateAdd( 5193 IRB.CreatePtrToInt(VAListTag, MS.IntptrTy), 5194 ConstantInt::get(MS.IntptrTy, SystemZOverflowArgAreaPtrOffset)), 5195 PointerType::get(OverflowArgAreaPtrTy, 0)); 5196 Value *OverflowArgAreaPtr = 5197 IRB.CreateLoad(OverflowArgAreaPtrTy, OverflowArgAreaPtrPtr); 5198 Value *OverflowArgAreaShadowPtr, *OverflowArgAreaOriginPtr; 5199 const Align Alignment = Align(8); 5200 std::tie(OverflowArgAreaShadowPtr, OverflowArgAreaOriginPtr) = 5201 MSV.getShadowOriginPtr(OverflowArgAreaPtr, IRB, IRB.getInt8Ty(), 5202 Alignment, /*isStore*/ true); 5203 Value *SrcPtr = IRB.CreateConstGEP1_32(IRB.getInt8Ty(), VAArgTLSCopy, 5204 SystemZOverflowOffset); 5205 IRB.CreateMemCpy(OverflowArgAreaShadowPtr, Alignment, SrcPtr, Alignment, 5206 VAArgOverflowSize); 5207 if (MS.TrackOrigins) { 5208 SrcPtr = IRB.CreateConstGEP1_32(IRB.getInt8Ty(), VAArgTLSOriginCopy, 5209 SystemZOverflowOffset); 5210 IRB.CreateMemCpy(OverflowArgAreaOriginPtr, Alignment, SrcPtr, Alignment, 5211 VAArgOverflowSize); 5212 } 5213 } 5214 5215 void finalizeInstrumentation() override { 5216 assert(!VAArgOverflowSize && !VAArgTLSCopy && 5217 "finalizeInstrumentation called twice"); 5218 if (!VAStartInstrumentationList.empty()) { 5219 // If there is a va_start in this function, make a backup copy of 5220 // va_arg_tls somewhere in the function entry block. 5221 IRBuilder<> IRB(MSV.FnPrologueEnd); 5222 VAArgOverflowSize = 5223 IRB.CreateLoad(IRB.getInt64Ty(), MS.VAArgOverflowSizeTLS); 5224 Value *CopySize = 5225 IRB.CreateAdd(ConstantInt::get(MS.IntptrTy, SystemZOverflowOffset), 5226 VAArgOverflowSize); 5227 VAArgTLSCopy = IRB.CreateAlloca(Type::getInt8Ty(*MS.C), CopySize); 5228 IRB.CreateMemCpy(VAArgTLSCopy, Align(8), MS.VAArgTLS, Align(8), CopySize); 5229 if (MS.TrackOrigins) { 5230 VAArgTLSOriginCopy = IRB.CreateAlloca(Type::getInt8Ty(*MS.C), CopySize); 5231 IRB.CreateMemCpy(VAArgTLSOriginCopy, Align(8), MS.VAArgOriginTLS, 5232 Align(8), CopySize); 5233 } 5234 } 5235 5236 // Instrument va_start. 5237 // Copy va_list shadow from the backup copy of the TLS contents. 5238 for (size_t VaStartNo = 0, VaStartNum = VAStartInstrumentationList.size(); 5239 VaStartNo < VaStartNum; VaStartNo++) { 5240 CallInst *OrigInst = VAStartInstrumentationList[VaStartNo]; 5241 IRBuilder<> IRB(OrigInst->getNextNode()); 5242 Value *VAListTag = OrigInst->getArgOperand(0); 5243 copyRegSaveArea(IRB, VAListTag); 5244 copyOverflowArea(IRB, VAListTag); 5245 } 5246 } 5247 }; 5248 5249 /// A no-op implementation of VarArgHelper. 5250 struct VarArgNoOpHelper : public VarArgHelper { 5251 VarArgNoOpHelper(Function &F, MemorySanitizer &MS, 5252 MemorySanitizerVisitor &MSV) {} 5253 5254 void visitCallBase(CallBase &CB, IRBuilder<> &IRB) override {} 5255 5256 void visitVAStartInst(VAStartInst &I) override {} 5257 5258 void visitVACopyInst(VACopyInst &I) override {} 5259 5260 void finalizeInstrumentation() override {} 5261 }; 5262 5263 } // end anonymous namespace 5264 5265 static VarArgHelper *CreateVarArgHelper(Function &Func, MemorySanitizer &Msan, 5266 MemorySanitizerVisitor &Visitor) { 5267 // VarArg handling is only implemented on AMD64. False positives are possible 5268 // on other platforms. 5269 Triple TargetTriple(Func.getParent()->getTargetTriple()); 5270 if (TargetTriple.getArch() == Triple::x86_64) 5271 return new VarArgAMD64Helper(Func, Msan, Visitor); 5272 else if (TargetTriple.isMIPS64()) 5273 return new VarArgMIPS64Helper(Func, Msan, Visitor); 5274 else if (TargetTriple.getArch() == Triple::aarch64) 5275 return new VarArgAArch64Helper(Func, Msan, Visitor); 5276 else if (TargetTriple.getArch() == Triple::ppc64 || 5277 TargetTriple.getArch() == Triple::ppc64le) 5278 return new VarArgPowerPC64Helper(Func, Msan, Visitor); 5279 else if (TargetTriple.getArch() == Triple::systemz) 5280 return new VarArgSystemZHelper(Func, Msan, Visitor); 5281 else 5282 return new VarArgNoOpHelper(Func, Msan, Visitor); 5283 } 5284 5285 bool MemorySanitizer::sanitizeFunction(Function &F, TargetLibraryInfo &TLI) { 5286 if (!CompileKernel && F.getName() == kMsanModuleCtorName) 5287 return false; 5288 5289 MemorySanitizerVisitor Visitor(F, *this, TLI); 5290 5291 // Clear out readonly/readnone attributes. 5292 AttrBuilder B; 5293 B.addAttribute(Attribute::ReadOnly) 5294 .addAttribute(Attribute::ReadNone) 5295 .addAttribute(Attribute::WriteOnly) 5296 .addAttribute(Attribute::ArgMemOnly) 5297 .addAttribute(Attribute::Speculatable); 5298 F.removeAttributes(AttributeList::FunctionIndex, B); 5299 5300 return Visitor.runOnFunction(); 5301 } 5302