blob: b350237f9b61bd3d8e9d4c96382616c30f39de7a [file] [log] [blame]
Bill Wendling05d84172008-11-04 02:10:20 +00001//===-- 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//
Bill Wendling64adc712008-11-04 21:53:09 +000010// 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
Bill Wendling05d84172008-11-04 02:10:20 +000013// changed, then there was some sort of violation and the program aborts.
14//
15//===----------------------------------------------------------------------===//
16
17#define DEBUG_TYPE "stack-protector"
Josh Magee8ecfb522013-09-27 21:58:43 +000018#include "llvm/CodeGen/StackProtector.h"
Bill Wendling7c8f96a2013-01-23 06:43:53 +000019#include "llvm/ADT/SmallPtrSet.h"
20#include "llvm/ADT/Statistic.h"
Michael Gottesman5e570682013-08-20 08:36:53 +000021#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000022#include "llvm/CodeGen/Analysis.h"
23#include "llvm/CodeGen/Passes.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000024#include "llvm/IR/Attributes.h"
25#include "llvm/IR/Constants.h"
26#include "llvm/IR/DataLayout.h"
27#include "llvm/IR/DerivedTypes.h"
28#include "llvm/IR/Function.h"
Rafael Espindolaaad6c242013-06-07 16:35:57 +000029#include "llvm/IR/GlobalValue.h"
30#include "llvm/IR/GlobalVariable.h"
Benjamin Kramerd93817f2013-09-09 17:38:01 +000031#include "llvm/IR/IRBuilder.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000032#include "llvm/IR/Instructions.h"
Michael Gottesman5e570682013-08-20 08:36:53 +000033#include "llvm/IR/IntrinsicInst.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000034#include "llvm/IR/Intrinsics.h"
35#include "llvm/IR/Module.h"
Bill Wendling05d84172008-11-04 02:10:20 +000036#include "llvm/Support/CommandLine.h"
Bill Wendlingc02a0aa2013-07-22 20:15:21 +000037#include <cstdlib>
Bill Wendling05d84172008-11-04 02:10:20 +000038using namespace llvm;
39
Bill Wendling7c8f96a2013-01-23 06:43:53 +000040STATISTIC(NumFunProtected, "Number of functions protected");
41STATISTIC(NumAddrTaken, "Number of local variables that have their address"
42 " taken.");
43
Josh Magee7245f1d2013-10-30 02:25:14 +000044static cl::opt<bool> EnableSelectionDAGSP("enable-selectiondag-sp",
45 cl::init(true), cl::Hidden);
Michael Gottesman5e570682013-08-20 08:36:53 +000046
Bill Wendling05d84172008-11-04 02:10:20 +000047char StackProtector::ID = 0;
Josh Magee7245f1d2013-10-30 02:25:14 +000048INITIALIZE_PASS(StackProtector, "stack-protector", "Insert stack protectors",
49 false, true)
Bill Wendling05d84172008-11-04 02:10:20 +000050
Bill Wendlingafc10362013-06-19 20:51:24 +000051FunctionPass *llvm::createStackProtectorPass(const TargetMachine *TM) {
52 return new StackProtector(TM);
Bill Wendling05d84172008-11-04 02:10:20 +000053}
54
Josh Magee7245f1d2013-10-30 02:25:14 +000055StackProtector::SSPLayoutKind
56StackProtector::getSSPLayout(const AllocaInst *AI) const {
Josh Magee3f1c0e32013-10-29 21:16:16 +000057 return AI ? Layout.lookup(AI) : SSPLK_None;
58}
59
Bill Wendling05d84172008-11-04 02:10:20 +000060bool StackProtector::runOnFunction(Function &Fn) {
61 F = &Fn;
62 M = F->getParent();
Chandler Carruth73523022014-01-13 13:07:17 +000063 DominatorTreeWrapperPass *DTWP =
64 getAnalysisIfAvailable<DominatorTreeWrapperPass>();
65 DT = DTWP ? &DTWP->getDomTree() : 0;
Bill Wendlingafc10362013-06-19 20:51:24 +000066 TLI = TM->getTargetLowering();
Bill Wendling05d84172008-11-04 02:10:20 +000067
Josh Magee7245f1d2013-10-30 02:25:14 +000068 if (!RequiresStackProtector())
69 return false;
Bill Wendling49aeb5c2012-08-13 21:20:43 +000070
Josh Magee7245f1d2013-10-30 02:25:14 +000071 Attribute Attr = Fn.getAttributes().getAttribute(
72 AttributeSet::FunctionIndex, "stack-protector-buffer-size");
Bill Wendlingc02a0aa2013-07-22 20:15:21 +000073 if (Attr.isStringAttribute())
Benjamin Kramerd93817f2013-09-09 17:38:01 +000074 Attr.getValueAsString().getAsInteger(10, SSPBufferSize);
Bill Wendlingc02a0aa2013-07-22 20:15:21 +000075
Bill Wendling7c8f96a2013-01-23 06:43:53 +000076 ++NumFunProtected;
Bill Wendling782e8342008-11-05 00:00:21 +000077 return InsertStackProtectors();
Bill Wendling05d84172008-11-04 02:10:20 +000078}
79
Josh Magee3f1c0e32013-10-29 21:16:16 +000080/// \param [out] IsLarge is set to true if a protectable array is found and
81/// it is "large" ( >= ssp-buffer-size). In the case of a structure with
82/// multiple arrays, this gets set if any of them is large.
83bool StackProtector::ContainsProtectableArray(Type *Ty, bool &IsLarge,
Josh Magee7245f1d2013-10-30 02:25:14 +000084 bool Strong,
85 bool InStruct) const {
86 if (!Ty)
87 return false;
Bill Wendlingbfb9b752012-08-17 20:59:56 +000088 if (ArrayType *AT = dyn_cast<ArrayType>(Ty)) {
89 if (!AT->getElementType()->isIntegerTy(8)) {
Bill Wendlingbfb9b752012-08-17 20:59:56 +000090 // If we're on a non-Darwin platform or we're inside of a structure, don't
91 // add stack protectors unless the array is a character array.
Josh Magee3f1c0e32013-10-29 21:16:16 +000092 // However, in strong mode any array, regardless of type and size,
93 // triggers a protector.
94 if (!Strong && (InStruct || !Trip.isOSDarwin()))
95 return false;
Bill Wendlingbfb9b752012-08-17 20:59:56 +000096 }
97
98 // If an array has more than SSPBufferSize bytes of allocated space, then we
99 // emit stack protectors.
Josh Magee3f1c0e32013-10-29 21:16:16 +0000100 if (SSPBufferSize <= TLI->getDataLayout()->getTypeAllocSize(AT)) {
101 IsLarge = true;
102 return true;
Josh Magee7245f1d2013-10-30 02:25:14 +0000103 }
Josh Magee3f1c0e32013-10-29 21:16:16 +0000104
105 if (Strong)
106 // Require a protector for all arrays in strong mode
Bill Wendlingbfb9b752012-08-17 20:59:56 +0000107 return true;
108 }
109
110 const StructType *ST = dyn_cast<StructType>(Ty);
Josh Magee7245f1d2013-10-30 02:25:14 +0000111 if (!ST)
112 return false;
Bill Wendlingbfb9b752012-08-17 20:59:56 +0000113
Josh Magee3f1c0e32013-10-29 21:16:16 +0000114 bool NeedsProtector = false;
Bill Wendlingbfb9b752012-08-17 20:59:56 +0000115 for (StructType::element_iterator I = ST->element_begin(),
Josh Magee7245f1d2013-10-30 02:25:14 +0000116 E = ST->element_end();
117 I != E; ++I)
Josh Magee3f1c0e32013-10-29 21:16:16 +0000118 if (ContainsProtectableArray(*I, IsLarge, Strong, true)) {
119 // If the element is a protectable array and is large (>= SSPBufferSize)
120 // then we are done. If the protectable array is not large, then
121 // keep looking in case a subsequent element is a large array.
122 if (IsLarge)
123 return true;
124 NeedsProtector = true;
125 }
Bill Wendlingbfb9b752012-08-17 20:59:56 +0000126
Josh Magee3f1c0e32013-10-29 21:16:16 +0000127 return NeedsProtector;
Bill Wendlingbfb9b752012-08-17 20:59:56 +0000128}
129
Bill Wendling7c8f96a2013-01-23 06:43:53 +0000130bool StackProtector::HasAddressTaken(const Instruction *AI) {
131 for (Value::const_use_iterator UI = AI->use_begin(), UE = AI->use_end();
Josh Magee7245f1d2013-10-30 02:25:14 +0000132 UI != UE; ++UI) {
Bill Wendling7c8f96a2013-01-23 06:43:53 +0000133 const User *U = *UI;
134 if (const StoreInst *SI = dyn_cast<StoreInst>(U)) {
135 if (AI == SI->getValueOperand())
136 return true;
137 } else if (const PtrToIntInst *SI = dyn_cast<PtrToIntInst>(U)) {
138 if (AI == SI->getOperand(0))
139 return true;
140 } else if (isa<CallInst>(U)) {
141 return true;
142 } else if (isa<InvokeInst>(U)) {
143 return true;
144 } else if (const SelectInst *SI = dyn_cast<SelectInst>(U)) {
145 if (HasAddressTaken(SI))
146 return true;
147 } else if (const PHINode *PN = dyn_cast<PHINode>(U)) {
148 // Keep track of what PHI nodes we have already visited to ensure
149 // they are only visited once.
150 if (VisitedPHIs.insert(PN))
151 if (HasAddressTaken(PN))
152 return true;
153 } else if (const GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) {
154 if (HasAddressTaken(GEP))
155 return true;
156 } else if (const BitCastInst *BI = dyn_cast<BitCastInst>(U)) {
157 if (HasAddressTaken(BI))
158 return true;
159 }
160 }
161 return false;
162}
163
164/// \brief Check whether or not this function needs a stack protector based
165/// upon the stack protector level.
166///
167/// We use two heuristics: a standard (ssp) and strong (sspstrong).
168/// The standard heuristic which will add a guard variable to functions that
169/// call alloca with a either a variable size or a size >= SSPBufferSize,
170/// functions with character buffers larger than SSPBufferSize, and functions
171/// with aggregates containing character buffers larger than SSPBufferSize. The
172/// strong heuristic will add a guard variables to functions that call alloca
173/// regardless of size, functions with any buffer regardless of type and size,
174/// functions with aggregates that contain any buffer regardless of type and
175/// size, and functions that contain stack-based variables that have had their
176/// address taken.
177bool StackProtector::RequiresStackProtector() {
178 bool Strong = false;
Josh Magee3f1c0e32013-10-29 21:16:16 +0000179 bool NeedsProtector = false;
Bill Wendling698e84f2012-12-30 10:32:01 +0000180 if (F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
Josh Magee3f1c0e32013-10-29 21:16:16 +0000181 Attribute::StackProtectReq)) {
182 NeedsProtector = true;
183 Strong = true; // Use the same heuristic as strong to determine SSPLayout
184 } else if (F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
185 Attribute::StackProtectStrong))
Bill Wendling7c8f96a2013-01-23 06:43:53 +0000186 Strong = true;
187 else if (!F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
188 Attribute::StackProtect))
Bill Wendlingeeb04152008-11-18 05:32:11 +0000189 return false;
190
Bill Wendlingeeb04152008-11-18 05:32:11 +0000191 for (Function::iterator I = F->begin(), E = F->end(); I != E; ++I) {
192 BasicBlock *BB = I;
193
Josh Magee7245f1d2013-10-30 02:25:14 +0000194 for (BasicBlock::iterator II = BB->begin(), IE = BB->end(); II != IE;
195 ++II) {
Bill Wendlingeeb04152008-11-18 05:32:11 +0000196 if (AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
Bill Wendling7c8f96a2013-01-23 06:43:53 +0000197 if (AI->isArrayAllocation()) {
198 // SSP-Strong: Enable protectors for any call to alloca, regardless
199 // of size.
200 if (Strong)
201 return true;
Michael Gottesman62c5d712013-08-20 08:46:16 +0000202
Bill Wendling7c8f96a2013-01-23 06:43:53 +0000203 if (const ConstantInt *CI =
Josh Magee7245f1d2013-10-30 02:25:14 +0000204 dyn_cast<ConstantInt>(AI->getArraySize())) {
Josh Magee3f1c0e32013-10-29 21:16:16 +0000205 if (CI->getLimitedValue(SSPBufferSize) >= SSPBufferSize) {
Bill Wendling7c8f96a2013-01-23 06:43:53 +0000206 // A call to alloca with size >= SSPBufferSize requires
207 // stack protectors.
Josh Magee3f1c0e32013-10-29 21:16:16 +0000208 Layout.insert(std::make_pair(AI, SSPLK_LargeArray));
209 NeedsProtector = true;
210 } else if (Strong) {
211 // Require protectors for all alloca calls in strong mode.
212 Layout.insert(std::make_pair(AI, SSPLK_SmallArray));
213 NeedsProtector = true;
214 }
Bill Wendlingc02a0aa2013-07-22 20:15:21 +0000215 } else {
216 // A call to alloca with a variable size requires protectors.
Josh Magee3f1c0e32013-10-29 21:16:16 +0000217 Layout.insert(std::make_pair(AI, SSPLK_LargeArray));
218 NeedsProtector = true;
Bill Wendlingc02a0aa2013-07-22 20:15:21 +0000219 }
Josh Magee3f1c0e32013-10-29 21:16:16 +0000220 continue;
Bill Wendling7c8f96a2013-01-23 06:43:53 +0000221 }
222
Josh Magee3f1c0e32013-10-29 21:16:16 +0000223 bool IsLarge = false;
224 if (ContainsProtectableArray(AI->getAllocatedType(), IsLarge, Strong)) {
225 Layout.insert(std::make_pair(AI, IsLarge ? SSPLK_LargeArray
226 : SSPLK_SmallArray));
227 NeedsProtector = true;
228 continue;
229 }
Bill Wendlingeeb04152008-11-18 05:32:11 +0000230
Bill Wendling7c8f96a2013-01-23 06:43:53 +0000231 if (Strong && HasAddressTaken(AI)) {
Michael Gottesman62c5d712013-08-20 08:46:16 +0000232 ++NumAddrTaken;
Josh Magee3f1c0e32013-10-29 21:16:16 +0000233 Layout.insert(std::make_pair(AI, SSPLK_AddrOf));
234 NeedsProtector = true;
Bill Wendling7c8f96a2013-01-23 06:43:53 +0000235 }
Bill Wendlingeeb04152008-11-18 05:32:11 +0000236 }
Bill Wendling7c8f96a2013-01-23 06:43:53 +0000237 }
Bill Wendlingeeb04152008-11-18 05:32:11 +0000238 }
239
Josh Magee3f1c0e32013-10-29 21:16:16 +0000240 return NeedsProtector;
Bill Wendlingeeb04152008-11-18 05:32:11 +0000241}
242
Michael Gottesman5e570682013-08-20 08:36:53 +0000243static bool InstructionWillNotHaveChain(const Instruction *I) {
244 return !I->mayHaveSideEffects() && !I->mayReadFromMemory() &&
Josh Magee7245f1d2013-10-30 02:25:14 +0000245 isSafeToSpeculativelyExecute(I);
Michael Gottesman5e570682013-08-20 08:36:53 +0000246}
247
248/// Identify if RI has a previous instruction in the "Tail Position" and return
249/// it. Otherwise return 0.
250///
Michael Gottesman1977d152013-08-20 08:56:23 +0000251/// This is based off of the code in llvm::isInTailCallPosition. The difference
252/// is that it inverts the first part of llvm::isInTailCallPosition since
253/// isInTailCallPosition is checking if a call is in a tail call position, and
254/// we are searching for an unknown tail call that might be in the tail call
255/// position. Once we find the call though, the code uses the same refactored
256/// code, returnTypeIsEligibleForTailCall.
Michael Gottesman5e570682013-08-20 08:36:53 +0000257static CallInst *FindPotentialTailCall(BasicBlock *BB, ReturnInst *RI,
258 const TargetLoweringBase *TLI) {
259 // Establish a reasonable upper bound on the maximum amount of instructions we
260 // will look through to find a tail call.
261 unsigned SearchCounter = 0;
262 const unsigned MaxSearch = 4;
263 bool NoInterposingChain = true;
264
Josh Magee7245f1d2013-10-30 02:25:14 +0000265 for (BasicBlock::reverse_iterator I = llvm::next(BB->rbegin()),
266 E = BB->rend();
Michael Gottesman5e570682013-08-20 08:36:53 +0000267 I != E && SearchCounter < MaxSearch; ++I) {
268 Instruction *Inst = &*I;
269
270 // Skip over debug intrinsics and do not allow them to affect our MaxSearch
271 // counter.
272 if (isa<DbgInfoIntrinsic>(Inst))
273 continue;
274
275 // If we find a call and the following conditions are satisifed, then we
276 // have found a tail call that satisfies at least the target independent
277 // requirements of a tail call:
278 //
279 // 1. The call site has the tail marker.
280 //
281 // 2. The call site either will not cause the creation of a chain or if a
282 // chain is necessary there are no instructions in between the callsite and
283 // the call which would create an interposing chain.
284 //
285 // 3. The return type of the function does not impede tail call
286 // optimization.
287 if (CallInst *CI = dyn_cast<CallInst>(Inst)) {
288 if (CI->isTailCall() &&
289 (InstructionWillNotHaveChain(CI) || NoInterposingChain) &&
290 returnTypeIsEligibleForTailCall(BB->getParent(), CI, RI, *TLI))
291 return CI;
292 }
293
294 // If we did not find a call see if we have an instruction that may create
295 // an interposing chain.
Josh Magee7245f1d2013-10-30 02:25:14 +0000296 NoInterposingChain =
297 NoInterposingChain && InstructionWillNotHaveChain(Inst);
Michael Gottesman5e570682013-08-20 08:36:53 +0000298
299 // Increment max search.
300 SearchCounter++;
301 }
302
303 return 0;
304}
305
Michael Gottesmana6188f92013-07-22 20:44:11 +0000306/// Insert code into the entry block that stores the __stack_chk_guard
307/// variable onto the stack:
308///
309/// entry:
310/// StackGuardSlot = alloca i8*
311/// StackGuard = load __stack_chk_guard
312/// call void @llvm.stackprotect.create(StackGuard, StackGuardSlot)
313///
Michael Gottesman5e570682013-08-20 08:36:53 +0000314/// Returns true if the platform/triple supports the stackprotectorcreate pseudo
315/// node.
316static bool CreatePrologue(Function *F, Module *M, ReturnInst *RI,
Michael Gottesmana6188f92013-07-22 20:44:11 +0000317 const TargetLoweringBase *TLI, const Triple &Trip,
318 AllocaInst *&AI, Value *&StackGuardVar) {
Michael Gottesman5e570682013-08-20 08:36:53 +0000319 bool SupportsSelectionDAGSP = false;
Michael Gottesmana6188f92013-07-22 20:44:11 +0000320 PointerType *PtrTy = Type::getInt8PtrTy(RI->getContext());
321 unsigned AddressSpace, Offset;
322 if (TLI->getStackCookieLocation(AddressSpace, Offset)) {
323 Constant *OffsetVal =
Josh Magee7245f1d2013-10-30 02:25:14 +0000324 ConstantInt::get(Type::getInt32Ty(RI->getContext()), Offset);
Michael Gottesman62c5d712013-08-20 08:46:16 +0000325
Josh Magee7245f1d2013-10-30 02:25:14 +0000326 StackGuardVar = ConstantExpr::getIntToPtr(
327 OffsetVal, PointerType::get(PtrTy, AddressSpace));
Michael Gottesmana6188f92013-07-22 20:44:11 +0000328 } else if (Trip.getOS() == llvm::Triple::OpenBSD) {
329 StackGuardVar = M->getOrInsertGlobal("__guard_local", PtrTy);
330 cast<GlobalValue>(StackGuardVar)
Josh Magee7245f1d2013-10-30 02:25:14 +0000331 ->setVisibility(GlobalValue::HiddenVisibility);
Michael Gottesmana6188f92013-07-22 20:44:11 +0000332 } else {
Michael Gottesman5e570682013-08-20 08:36:53 +0000333 SupportsSelectionDAGSP = true;
Michael Gottesman62c5d712013-08-20 08:46:16 +0000334 StackGuardVar = M->getOrInsertGlobal("__stack_chk_guard", PtrTy);
Michael Gottesmana6188f92013-07-22 20:44:11 +0000335 }
Michael Gottesman62c5d712013-08-20 08:46:16 +0000336
Benjamin Kramerd93817f2013-09-09 17:38:01 +0000337 IRBuilder<> B(&F->getEntryBlock().front());
338 AI = B.CreateAlloca(PtrTy, 0, "StackGuardSlot");
339 LoadInst *LI = B.CreateLoad(StackGuardVar, "StackGuard");
340 B.CreateCall2(Intrinsic::getDeclaration(M, Intrinsic::stackprotector), LI,
341 AI);
Michael Gottesman5e570682013-08-20 08:36:53 +0000342
343 return SupportsSelectionDAGSP;
Michael Gottesmana6188f92013-07-22 20:44:11 +0000344}
345
Bill Wendling782e8342008-11-05 00:00:21 +0000346/// InsertStackProtectors - Insert code into the prologue and epilogue of the
347/// function.
348///
349/// - The prologue code loads and stores the stack guard onto the stack.
350/// - The epilogue checks the value stored in the prologue against the original
351/// value. It calls __stack_chk_fail if they differ.
352bool StackProtector::InsertStackProtectors() {
Michael Gottesman8afcf3a2013-08-09 21:26:18 +0000353 bool HasPrologue = false;
Michael Gottesman76c44be2013-08-20 08:56:26 +0000354 bool SupportsSelectionDAGSP =
Josh Magee7245f1d2013-10-30 02:25:14 +0000355 EnableSelectionDAGSP && !TM->Options.EnableFastISel;
356 AllocaInst *AI = 0; // Place on stack that stores the stack guard.
357 Value *StackGuardVar = 0; // The stack guard variable.
Bill Wendlingeb4268d2008-11-07 01:23:58 +0000358
Josh Magee7245f1d2013-10-30 02:25:14 +0000359 for (Function::iterator I = F->begin(), E = F->end(); I != E;) {
Bill Wendlingeeb04152008-11-18 05:32:11 +0000360 BasicBlock *BB = I++;
Bill Wendlingeeb04152008-11-18 05:32:11 +0000361 ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator());
Michael Gottesmandc985ef2013-08-20 08:56:28 +0000362 if (!RI)
363 continue;
Bill Wendlingeb4268d2008-11-07 01:23:58 +0000364
Michael Gottesman8afcf3a2013-08-09 21:26:18 +0000365 if (!HasPrologue) {
366 HasPrologue = true;
Josh Magee7245f1d2013-10-30 02:25:14 +0000367 SupportsSelectionDAGSP &=
368 CreatePrologue(F, M, RI, TLI, Trip, AI, StackGuardVar);
Michael Gottesman62c5d712013-08-20 08:46:16 +0000369 }
Michael Gottesman5e570682013-08-20 08:36:53 +0000370
Michael Gottesman76c44be2013-08-20 08:56:26 +0000371 if (SupportsSelectionDAGSP) {
Michael Gottesman5e570682013-08-20 08:36:53 +0000372 // Since we have a potential tail call, insert the special stack check
373 // intrinsic.
374 Instruction *InsertionPt = 0;
375 if (CallInst *CI = FindPotentialTailCall(BB, RI, TLI)) {
376 InsertionPt = CI;
Michael Gottesman62c5d712013-08-20 08:46:16 +0000377 } else {
Michael Gottesman5e570682013-08-20 08:36:53 +0000378 InsertionPt = RI;
379 // At this point we know that BB has a return statement so it *DOES*
380 // have a terminator.
381 assert(InsertionPt != 0 && "BB must have a terminator instruction at "
Josh Magee7245f1d2013-10-30 02:25:14 +0000382 "this point.");
Michael Gottesman5e570682013-08-20 08:36:53 +0000383 }
384
385 Function *Intrinsic =
Josh Magee7245f1d2013-10-30 02:25:14 +0000386 Intrinsic::getDeclaration(M, Intrinsic::stackprotectorcheck);
Benjamin Kramerd93817f2013-09-09 17:38:01 +0000387 CallInst::Create(Intrinsic, StackGuardVar, "", InsertionPt);
Michael Gottesman5e570682013-08-20 08:36:53 +0000388
389 } else {
Michael Gottesman56e246b2013-08-20 08:46:13 +0000390 // If we do not support SelectionDAG based tail calls, generate IR level
391 // tail calls.
392 //
Michael Gottesman5e570682013-08-20 08:36:53 +0000393 // For each block with a return instruction, convert this:
394 //
395 // return:
396 // ...
397 // ret ...
398 //
399 // into this:
400 //
401 // return:
402 // ...
403 // %1 = load __stack_chk_guard
404 // %2 = load StackGuardSlot
405 // %3 = cmp i1 %1, %2
406 // br i1 %3, label %SP_return, label %CallStackCheckFailBlk
407 //
408 // SP_return:
409 // ret ...
410 //
411 // CallStackCheckFailBlk:
412 // call void @__stack_chk_fail()
413 // unreachable
414
415 // Create the FailBB. We duplicate the BB every time since the MI tail
416 // merge pass will merge together all of the various BB into one including
Michael Gottesman62c5d712013-08-20 08:46:16 +0000417 // fail BB generated by the stack protector pseudo instruction.
Michael Gottesman5e570682013-08-20 08:36:53 +0000418 BasicBlock *FailBB = CreateFailBB();
Michael Gottesman62c5d712013-08-20 08:46:16 +0000419
Michael Gottesman5e570682013-08-20 08:36:53 +0000420 // Split the basic block before the return instruction.
421 BasicBlock *NewBB = BB->splitBasicBlock(RI, "SP_return");
Michael Gottesman62c5d712013-08-20 08:46:16 +0000422
Michael Gottesman5e570682013-08-20 08:36:53 +0000423 // Update the dominator tree if we need to.
424 if (DT && DT->isReachableFromEntry(BB)) {
425 DT->addNewBlock(NewBB, BB);
426 DT->addNewBlock(FailBB, BB);
427 }
Michael Gottesman62c5d712013-08-20 08:46:16 +0000428
Michael Gottesman5e570682013-08-20 08:36:53 +0000429 // Remove default branch instruction to the new BB.
430 BB->getTerminator()->eraseFromParent();
Michael Gottesman62c5d712013-08-20 08:46:16 +0000431
Michael Gottesman5e570682013-08-20 08:36:53 +0000432 // Move the newly created basic block to the point right after the old
433 // basic block so that it's in the "fall through" position.
434 NewBB->moveAfter(BB);
Michael Gottesman62c5d712013-08-20 08:46:16 +0000435
Michael Gottesman5e570682013-08-20 08:36:53 +0000436 // Generate the stack protector instructions in the old basic block.
Benjamin Kramerd93817f2013-09-09 17:38:01 +0000437 IRBuilder<> B(BB);
438 LoadInst *LI1 = B.CreateLoad(StackGuardVar);
439 LoadInst *LI2 = B.CreateLoad(AI);
440 Value *Cmp = B.CreateICmpEQ(LI1, LI2);
441 B.CreateCondBr(Cmp, NewBB, FailBB);
Bill Wendlinga0826e182008-11-06 23:55:49 +0000442 }
Bill Wendling05d84172008-11-04 02:10:20 +0000443 }
Bill Wendling782e8342008-11-05 00:00:21 +0000444
Bill Wendlinga0826e182008-11-06 23:55:49 +0000445 // Return if we didn't modify any basic blocks. I.e., there are no return
446 // statements in the function.
Michael Gottesman8afcf3a2013-08-09 21:26:18 +0000447 if (!HasPrologue)
448 return false;
Cameron Zwarich84986b22011-01-08 17:01:52 +0000449
Bill Wendling782e8342008-11-05 00:00:21 +0000450 return true;
Bill Wendling05d84172008-11-04 02:10:20 +0000451}
452
453/// CreateFailBB - Create a basic block to jump to when the stack protector
454/// check fails.
Bill Wendling782e8342008-11-05 00:00:21 +0000455BasicBlock *StackProtector::CreateFailBB() {
Rafael Espindolaaad6c242013-06-07 16:35:57 +0000456 LLVMContext &Context = F->getContext();
457 BasicBlock *FailBB = BasicBlock::Create(Context, "CallStackCheckFailBlk", F);
Benjamin Kramerd93817f2013-09-09 17:38:01 +0000458 IRBuilder<> B(FailBB);
Rafael Espindolaaad6c242013-06-07 16:35:57 +0000459 if (Trip.getOS() == llvm::Triple::OpenBSD) {
460 Constant *StackChkFail = M->getOrInsertFunction(
461 "__stack_smash_handler", Type::getVoidTy(Context),
462 Type::getInt8PtrTy(Context), NULL);
463
Benjamin Kramerd93817f2013-09-09 17:38:01 +0000464 B.CreateCall(StackChkFail, B.CreateGlobalStringPtr(F->getName(), "SSH"));
Rafael Espindolaaad6c242013-06-07 16:35:57 +0000465 } else {
466 Constant *StackChkFail = M->getOrInsertFunction(
467 "__stack_chk_fail", Type::getVoidTy(Context), NULL);
Benjamin Kramerd93817f2013-09-09 17:38:01 +0000468 B.CreateCall(StackChkFail);
Rafael Espindolaaad6c242013-06-07 16:35:57 +0000469 }
Benjamin Kramerd93817f2013-09-09 17:38:01 +0000470 B.CreateUnreachable();
Bill Wendling782e8342008-11-05 00:00:21 +0000471 return FailBB;
Bill Wendling05d84172008-11-04 02:10:20 +0000472}