1 //===- StackProtector.cpp - Stack Protector Insertion ---------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This pass inserts stack protectors into functions which need them. A variable 11 // with a random value in it is stored onto the stack before the local variables 12 // are allocated. Upon exiting the block, the stored value is checked. If it's 13 // changed, then there was some sort of violation and the program aborts. 14 // 15 //===----------------------------------------------------------------------===// 16 17 #include "llvm/ADT/SmallPtrSet.h" 18 #include "llvm/ADT/Statistic.h" 19 #include "llvm/Analysis/BranchProbabilityInfo.h" 20 #include "llvm/Analysis/EHPersonalities.h" 21 #include "llvm/Analysis/OptimizationRemarkEmitter.h" 22 #include "llvm/CodeGen/Passes.h" 23 #include "llvm/CodeGen/StackProtector.h" 24 #include "llvm/CodeGen/TargetPassConfig.h" 25 #include "llvm/IR/Attributes.h" 26 #include "llvm/IR/BasicBlock.h" 27 #include "llvm/IR/Constants.h" 28 #include "llvm/IR/DataLayout.h" 29 #include "llvm/IR/DebugInfo.h" 30 #include "llvm/IR/DebugLoc.h" 31 #include "llvm/IR/DerivedTypes.h" 32 #include "llvm/IR/Dominators.h" 33 #include "llvm/IR/Function.h" 34 #include "llvm/IR/IRBuilder.h" 35 #include "llvm/IR/Instruction.h" 36 #include "llvm/IR/Instructions.h" 37 #include "llvm/IR/Intrinsics.h" 38 #include "llvm/IR/MDBuilder.h" 39 #include "llvm/IR/Module.h" 40 #include "llvm/IR/Type.h" 41 #include "llvm/IR/User.h" 42 #include "llvm/Pass.h" 43 #include "llvm/Support/Casting.h" 44 #include "llvm/Support/CommandLine.h" 45 #include "llvm/Target/TargetLowering.h" 46 #include "llvm/Target/TargetMachine.h" 47 #include "llvm/Target/TargetOptions.h" 48 #include "llvm/Target/TargetSubtargetInfo.h" 49 #include <utility> 50 51 using namespace llvm; 52 53 #define DEBUG_TYPE "stack-protector" 54 55 STATISTIC(NumFunProtected, "Number of functions protected"); 56 STATISTIC(NumAddrTaken, "Number of local variables that have their address" 57 " taken."); 58 59 static cl::opt<bool> EnableSelectionDAGSP("enable-selectiondag-sp", 60 cl::init(true), cl::Hidden); 61 62 char StackProtector::ID = 0; 63 64 INITIALIZE_PASS_BEGIN(StackProtector, DEBUG_TYPE, 65 "Insert stack protectors", false, true) 66 INITIALIZE_PASS_DEPENDENCY(TargetPassConfig) 67 INITIALIZE_PASS_END(StackProtector, DEBUG_TYPE, 68 "Insert stack protectors", false, true) 69 70 FunctionPass *llvm::createStackProtectorPass() { return new StackProtector(); } 71 72 StackProtector::SSPLayoutKind 73 StackProtector::getSSPLayout(const AllocaInst *AI) const { 74 return AI ? Layout.lookup(AI) : SSPLK_None; 75 } 76 77 void StackProtector::adjustForColoring(const AllocaInst *From, 78 const AllocaInst *To) { 79 // When coloring replaces one alloca with another, transfer the SSPLayoutKind 80 // tag from the remapped to the target alloca. The remapped alloca should 81 // have a size smaller than or equal to the replacement alloca. 82 SSPLayoutMap::iterator I = Layout.find(From); 83 if (I != Layout.end()) { 84 SSPLayoutKind Kind = I->second; 85 Layout.erase(I); 86 87 // Transfer the tag, but make sure that SSPLK_AddrOf does not overwrite 88 // SSPLK_SmallArray or SSPLK_LargeArray, and make sure that 89 // SSPLK_SmallArray does not overwrite SSPLK_LargeArray. 90 I = Layout.find(To); 91 if (I == Layout.end()) 92 Layout.insert(std::make_pair(To, Kind)); 93 else if (I->second != SSPLK_LargeArray && Kind != SSPLK_AddrOf) 94 I->second = Kind; 95 } 96 } 97 98 void StackProtector::getAnalysisUsage(AnalysisUsage &AU) const { 99 AU.addRequired<TargetPassConfig>(); 100 AU.addPreserved<DominatorTreeWrapperPass>(); 101 } 102 103 bool StackProtector::runOnFunction(Function &Fn) { 104 F = &Fn; 105 M = F->getParent(); 106 DominatorTreeWrapperPass *DTWP = 107 getAnalysisIfAvailable<DominatorTreeWrapperPass>(); 108 DT = DTWP ? &DTWP->getDomTree() : nullptr; 109 TM = &getAnalysis<TargetPassConfig>().getTM<TargetMachine>(); 110 Trip = TM->getTargetTriple(); 111 TLI = TM->getSubtargetImpl(Fn)->getTargetLowering(); 112 HasPrologue = false; 113 HasIRCheck = false; 114 115 Attribute Attr = Fn.getFnAttribute("stack-protector-buffer-size"); 116 if (Attr.isStringAttribute() && 117 Attr.getValueAsString().getAsInteger(10, SSPBufferSize)) 118 return false; // Invalid integer string 119 120 if (!RequiresStackProtector()) 121 return false; 122 123 // TODO(etienneb): Functions with funclets are not correctly supported now. 124 // Do nothing if this is funclet-based personality. 125 if (Fn.hasPersonalityFn()) { 126 EHPersonality Personality = classifyEHPersonality(Fn.getPersonalityFn()); 127 if (isFuncletEHPersonality(Personality)) 128 return false; 129 } 130 131 ++NumFunProtected; 132 return InsertStackProtectors(); 133 } 134 135 /// \param [out] IsLarge is set to true if a protectable array is found and 136 /// it is "large" ( >= ssp-buffer-size). In the case of a structure with 137 /// multiple arrays, this gets set if any of them is large. 138 bool StackProtector::ContainsProtectableArray(Type *Ty, bool &IsLarge, 139 bool Strong, 140 bool InStruct) const { 141 if (!Ty) 142 return false; 143 if (ArrayType *AT = dyn_cast<ArrayType>(Ty)) { 144 if (!AT->getElementType()->isIntegerTy(8)) { 145 // If we're on a non-Darwin platform or we're inside of a structure, don't 146 // add stack protectors unless the array is a character array. 147 // However, in strong mode any array, regardless of type and size, 148 // triggers a protector. 149 if (!Strong && (InStruct || !Trip.isOSDarwin())) 150 return false; 151 } 152 153 // If an array has more than SSPBufferSize bytes of allocated space, then we 154 // emit stack protectors. 155 if (SSPBufferSize <= M->getDataLayout().getTypeAllocSize(AT)) { 156 IsLarge = true; 157 return true; 158 } 159 160 if (Strong) 161 // Require a protector for all arrays in strong mode 162 return true; 163 } 164 165 const StructType *ST = dyn_cast<StructType>(Ty); 166 if (!ST) 167 return false; 168 169 bool NeedsProtector = false; 170 for (StructType::element_iterator I = ST->element_begin(), 171 E = ST->element_end(); 172 I != E; ++I) 173 if (ContainsProtectableArray(*I, IsLarge, Strong, true)) { 174 // If the element is a protectable array and is large (>= SSPBufferSize) 175 // then we are done. If the protectable array is not large, then 176 // keep looking in case a subsequent element is a large array. 177 if (IsLarge) 178 return true; 179 NeedsProtector = true; 180 } 181 182 return NeedsProtector; 183 } 184 185 bool StackProtector::HasAddressTaken(const Instruction *AI) { 186 for (const User *U : AI->users()) { 187 if (const StoreInst *SI = dyn_cast<StoreInst>(U)) { 188 if (AI == SI->getValueOperand()) 189 return true; 190 } else if (const PtrToIntInst *SI = dyn_cast<PtrToIntInst>(U)) { 191 if (AI == SI->getOperand(0)) 192 return true; 193 } else if (isa<CallInst>(U)) { 194 return true; 195 } else if (isa<InvokeInst>(U)) { 196 return true; 197 } else if (const SelectInst *SI = dyn_cast<SelectInst>(U)) { 198 if (HasAddressTaken(SI)) 199 return true; 200 } else if (const PHINode *PN = dyn_cast<PHINode>(U)) { 201 // Keep track of what PHI nodes we have already visited to ensure 202 // they are only visited once. 203 if (VisitedPHIs.insert(PN).second) 204 if (HasAddressTaken(PN)) 205 return true; 206 } else if (const GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) { 207 if (HasAddressTaken(GEP)) 208 return true; 209 } else if (const BitCastInst *BI = dyn_cast<BitCastInst>(U)) { 210 if (HasAddressTaken(BI)) 211 return true; 212 } 213 } 214 return false; 215 } 216 217 /// \brief Check whether or not this function needs a stack protector based 218 /// upon the stack protector level. 219 /// 220 /// We use two heuristics: a standard (ssp) and strong (sspstrong). 221 /// The standard heuristic which will add a guard variable to functions that 222 /// call alloca with a either a variable size or a size >= SSPBufferSize, 223 /// functions with character buffers larger than SSPBufferSize, and functions 224 /// with aggregates containing character buffers larger than SSPBufferSize. The 225 /// strong heuristic will add a guard variables to functions that call alloca 226 /// regardless of size, functions with any buffer regardless of type and size, 227 /// functions with aggregates that contain any buffer regardless of type and 228 /// size, and functions that contain stack-based variables that have had their 229 /// address taken. 230 bool StackProtector::RequiresStackProtector() { 231 bool Strong = false; 232 bool NeedsProtector = false; 233 for (const BasicBlock &BB : *F) 234 for (const Instruction &I : BB) 235 if (const CallInst *CI = dyn_cast<CallInst>(&I)) 236 if (CI->getCalledFunction() == 237 Intrinsic::getDeclaration(F->getParent(), 238 Intrinsic::stackprotector)) 239 HasPrologue = true; 240 241 if (F->hasFnAttribute(Attribute::SafeStack)) 242 return false; 243 244 // We are constructing the OptimizationRemarkEmitter on the fly rather than 245 // using the analysis pass to avoid building DominatorTree and LoopInfo which 246 // are not available this late in the IR pipeline. 247 OptimizationRemarkEmitter ORE(F); 248 249 if (F->hasFnAttribute(Attribute::StackProtectReq)) { 250 ORE.emit(OptimizationRemark(DEBUG_TYPE, "StackProtectorRequested", F) 251 << "Stack protection applied to function " 252 << ore::NV("Function", F) 253 << " due to a function attribute or command-line switch"); 254 NeedsProtector = true; 255 Strong = true; // Use the same heuristic as strong to determine SSPLayout 256 } else if (F->hasFnAttribute(Attribute::StackProtectStrong)) 257 Strong = true; 258 else if (HasPrologue) 259 NeedsProtector = true; 260 else if (!F->hasFnAttribute(Attribute::StackProtect)) 261 return false; 262 263 for (const BasicBlock &BB : *F) { 264 for (const Instruction &I : BB) { 265 if (const AllocaInst *AI = dyn_cast<AllocaInst>(&I)) { 266 if (AI->isArrayAllocation()) { 267 OptimizationRemark Remark(DEBUG_TYPE, "StackProtectorAllocaOrArray", 268 &I); 269 Remark 270 << "Stack protection applied to function " 271 << ore::NV("Function", F) 272 << " due to a call to alloca or use of a variable length array"; 273 if (const auto *CI = dyn_cast<ConstantInt>(AI->getArraySize())) { 274 if (CI->getLimitedValue(SSPBufferSize) >= SSPBufferSize) { 275 // A call to alloca with size >= SSPBufferSize requires 276 // stack protectors. 277 Layout.insert(std::make_pair(AI, SSPLK_LargeArray)); 278 ORE.emit(Remark); 279 NeedsProtector = true; 280 } else if (Strong) { 281 // Require protectors for all alloca calls in strong mode. 282 Layout.insert(std::make_pair(AI, SSPLK_SmallArray)); 283 ORE.emit(Remark); 284 NeedsProtector = true; 285 } 286 } else { 287 // A call to alloca with a variable size requires protectors. 288 Layout.insert(std::make_pair(AI, SSPLK_LargeArray)); 289 ORE.emit(Remark); 290 NeedsProtector = true; 291 } 292 continue; 293 } 294 295 bool IsLarge = false; 296 if (ContainsProtectableArray(AI->getAllocatedType(), IsLarge, Strong)) { 297 Layout.insert(std::make_pair(AI, IsLarge ? SSPLK_LargeArray 298 : SSPLK_SmallArray)); 299 ORE.emit(OptimizationRemark(DEBUG_TYPE, "StackProtectorBuffer", &I) 300 << "Stack protection applied to function " 301 << ore::NV("Function", F) 302 << " due to a stack allocated buffer or struct containing a " 303 "buffer"); 304 NeedsProtector = true; 305 continue; 306 } 307 308 if (Strong && HasAddressTaken(AI)) { 309 ++NumAddrTaken; 310 Layout.insert(std::make_pair(AI, SSPLK_AddrOf)); 311 ORE.emit( 312 OptimizationRemark(DEBUG_TYPE, "StackProtectorAddressTaken", &I) 313 << "Stack protection applied to function " 314 << ore::NV("Function", F) 315 << " due to the address of a local variable being taken"); 316 NeedsProtector = true; 317 } 318 } 319 } 320 } 321 322 return NeedsProtector; 323 } 324 325 /// Create a stack guard loading and populate whether SelectionDAG SSP is 326 /// supported. 327 static Value *getStackGuard(const TargetLoweringBase *TLI, Module *M, 328 IRBuilder<> &B, 329 bool *SupportsSelectionDAGSP = nullptr) { 330 if (Value *Guard = TLI->getIRStackGuard(B)) 331 return B.CreateLoad(Guard, true, "StackGuard"); 332 333 // Use SelectionDAG SSP handling, since there isn't an IR guard. 334 // 335 // This is more or less weird, since we optionally output whether we 336 // should perform a SelectionDAG SP here. The reason is that it's strictly 337 // defined as !TLI->getIRStackGuard(B), where getIRStackGuard is also 338 // mutating. There is no way to get this bit without mutating the IR, so 339 // getting this bit has to happen in this right time. 340 // 341 // We could have define a new function TLI::supportsSelectionDAGSP(), but that 342 // will put more burden on the backends' overriding work, especially when it 343 // actually conveys the same information getIRStackGuard() already gives. 344 if (SupportsSelectionDAGSP) 345 *SupportsSelectionDAGSP = true; 346 TLI->insertSSPDeclarations(*M); 347 return B.CreateCall(Intrinsic::getDeclaration(M, Intrinsic::stackguard)); 348 } 349 350 /// Insert code into the entry block that stores the stack guard 351 /// variable onto the stack: 352 /// 353 /// entry: 354 /// StackGuardSlot = alloca i8* 355 /// StackGuard = <stack guard> 356 /// call void @llvm.stackprotector(StackGuard, StackGuardSlot) 357 /// 358 /// Returns true if the platform/triple supports the stackprotectorcreate pseudo 359 /// node. 360 static bool CreatePrologue(Function *F, Module *M, ReturnInst *RI, 361 const TargetLoweringBase *TLI, AllocaInst *&AI) { 362 bool SupportsSelectionDAGSP = false; 363 IRBuilder<> B(&F->getEntryBlock().front()); 364 PointerType *PtrTy = Type::getInt8PtrTy(RI->getContext()); 365 AI = B.CreateAlloca(PtrTy, nullptr, "StackGuardSlot"); 366 367 Value *GuardSlot = getStackGuard(TLI, M, B, &SupportsSelectionDAGSP); 368 B.CreateCall(Intrinsic::getDeclaration(M, Intrinsic::stackprotector), 369 {GuardSlot, AI}); 370 return SupportsSelectionDAGSP; 371 } 372 373 /// InsertStackProtectors - Insert code into the prologue and epilogue of the 374 /// function. 375 /// 376 /// - The prologue code loads and stores the stack guard onto the stack. 377 /// - The epilogue checks the value stored in the prologue against the original 378 /// value. It calls __stack_chk_fail if they differ. 379 bool StackProtector::InsertStackProtectors() { 380 bool SupportsSelectionDAGSP = 381 EnableSelectionDAGSP && !TM->Options.EnableFastISel; 382 AllocaInst *AI = nullptr; // Place on stack that stores the stack guard. 383 384 for (Function::iterator I = F->begin(), E = F->end(); I != E;) { 385 BasicBlock *BB = &*I++; 386 ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator()); 387 if (!RI) 388 continue; 389 390 // Generate prologue instrumentation if not already generated. 391 if (!HasPrologue) { 392 HasPrologue = true; 393 SupportsSelectionDAGSP &= CreatePrologue(F, M, RI, TLI, AI); 394 } 395 396 // SelectionDAG based code generation. Nothing else needs to be done here. 397 // The epilogue instrumentation is postponed to SelectionDAG. 398 if (SupportsSelectionDAGSP) 399 break; 400 401 // Set HasIRCheck to true, so that SelectionDAG will not generate its own 402 // version. SelectionDAG called 'shouldEmitSDCheck' to check whether 403 // instrumentation has already been generated. 404 HasIRCheck = true; 405 406 // Generate epilogue instrumentation. The epilogue intrumentation can be 407 // function-based or inlined depending on which mechanism the target is 408 // providing. 409 if (Value* GuardCheck = TLI->getSSPStackGuardCheck(*M)) { 410 // Generate the function-based epilogue instrumentation. 411 // The target provides a guard check function, generate a call to it. 412 IRBuilder<> B(RI); 413 LoadInst *Guard = B.CreateLoad(AI, true, "Guard"); 414 CallInst *Call = B.CreateCall(GuardCheck, {Guard}); 415 llvm::Function *Function = cast<llvm::Function>(GuardCheck); 416 Call->setAttributes(Function->getAttributes()); 417 Call->setCallingConv(Function->getCallingConv()); 418 } else { 419 // Generate the epilogue with inline instrumentation. 420 // If we do not support SelectionDAG based tail calls, generate IR level 421 // tail calls. 422 // 423 // For each block with a return instruction, convert this: 424 // 425 // return: 426 // ... 427 // ret ... 428 // 429 // into this: 430 // 431 // return: 432 // ... 433 // %1 = <stack guard> 434 // %2 = load StackGuardSlot 435 // %3 = cmp i1 %1, %2 436 // br i1 %3, label %SP_return, label %CallStackCheckFailBlk 437 // 438 // SP_return: 439 // ret ... 440 // 441 // CallStackCheckFailBlk: 442 // call void @__stack_chk_fail() 443 // unreachable 444 445 // Create the FailBB. We duplicate the BB every time since the MI tail 446 // merge pass will merge together all of the various BB into one including 447 // fail BB generated by the stack protector pseudo instruction. 448 BasicBlock *FailBB = CreateFailBB(); 449 450 // Split the basic block before the return instruction. 451 BasicBlock *NewBB = BB->splitBasicBlock(RI->getIterator(), "SP_return"); 452 453 // Update the dominator tree if we need to. 454 if (DT && DT->isReachableFromEntry(BB)) { 455 DT->addNewBlock(NewBB, BB); 456 DT->addNewBlock(FailBB, BB); 457 } 458 459 // Remove default branch instruction to the new BB. 460 BB->getTerminator()->eraseFromParent(); 461 462 // Move the newly created basic block to the point right after the old 463 // basic block so that it's in the "fall through" position. 464 NewBB->moveAfter(BB); 465 466 // Generate the stack protector instructions in the old basic block. 467 IRBuilder<> B(BB); 468 Value *Guard = getStackGuard(TLI, M, B); 469 LoadInst *LI2 = B.CreateLoad(AI, true); 470 Value *Cmp = B.CreateICmpEQ(Guard, LI2); 471 auto SuccessProb = 472 BranchProbabilityInfo::getBranchProbStackProtector(true); 473 auto FailureProb = 474 BranchProbabilityInfo::getBranchProbStackProtector(false); 475 MDNode *Weights = MDBuilder(F->getContext()) 476 .createBranchWeights(SuccessProb.getNumerator(), 477 FailureProb.getNumerator()); 478 B.CreateCondBr(Cmp, NewBB, FailBB, Weights); 479 } 480 } 481 482 // Return if we didn't modify any basic blocks. i.e., there are no return 483 // statements in the function. 484 return HasPrologue; 485 } 486 487 /// CreateFailBB - Create a basic block to jump to when the stack protector 488 /// check fails. 489 BasicBlock *StackProtector::CreateFailBB() { 490 LLVMContext &Context = F->getContext(); 491 BasicBlock *FailBB = BasicBlock::Create(Context, "CallStackCheckFailBlk", F); 492 IRBuilder<> B(FailBB); 493 B.SetCurrentDebugLocation(DebugLoc::get(0, 0, F->getSubprogram())); 494 if (Trip.isOSOpenBSD()) { 495 Constant *StackChkFail = 496 M->getOrInsertFunction("__stack_smash_handler", 497 Type::getVoidTy(Context), 498 Type::getInt8PtrTy(Context)); 499 500 B.CreateCall(StackChkFail, B.CreateGlobalStringPtr(F->getName(), "SSH")); 501 } else { 502 Constant *StackChkFail = 503 M->getOrInsertFunction("__stack_chk_fail", Type::getVoidTy(Context)); 504 505 B.CreateCall(StackChkFail, {}); 506 } 507 B.CreateUnreachable(); 508 return FailBB; 509 } 510 511 bool StackProtector::shouldEmitSDCheck(const BasicBlock &BB) const { 512 return HasPrologue && !HasIRCheck && dyn_cast<ReturnInst>(BB.getTerminator()); 513 } 514