blob: 9020449971513d86e79809db4809ab025db0eae0 [file] [log] [blame]
Bill Wendling2b58ce52008-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 Wendling80a320d2008-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 Wendling2b58ce52008-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 Magee18ebd482013-09-27 21:58:43 +000018#include "llvm/CodeGen/StackProtector.h"
Michael Gottesman3480d1b2013-08-20 08:36:53 +000019#include "llvm/CodeGen/Analysis.h"
Bill Wendling2b58ce52008-11-04 02:10:20 +000020#include "llvm/CodeGen/Passes.h"
Bill Wendlinge4957fb2013-01-23 06:43:53 +000021#include "llvm/ADT/SmallPtrSet.h"
22#include "llvm/ADT/Statistic.h"
Cameron Zwarich80f6a502011-01-08 17:01:52 +000023#include "llvm/Analysis/Dominators.h"
Michael Gottesman3480d1b2013-08-20 08:36:53 +000024#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000025#include "llvm/IR/Attributes.h"
26#include "llvm/IR/Constants.h"
27#include "llvm/IR/DataLayout.h"
28#include "llvm/IR/DerivedTypes.h"
29#include "llvm/IR/Function.h"
Rafael Espindola62ed8d32013-06-07 16:35:57 +000030#include "llvm/IR/GlobalValue.h"
31#include "llvm/IR/GlobalVariable.h"
Benjamin Kramer54cf1412013-09-09 17:38:01 +000032#include "llvm/IR/IRBuilder.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000033#include "llvm/IR/Instructions.h"
Michael Gottesman3480d1b2013-08-20 08:36:53 +000034#include "llvm/IR/IntrinsicInst.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000035#include "llvm/IR/Intrinsics.h"
36#include "llvm/IR/Module.h"
Bill Wendling2b58ce52008-11-04 02:10:20 +000037#include "llvm/Support/CommandLine.h"
Bill Wendling0dcba2f2013-07-22 20:15:21 +000038#include <cstdlib>
Bill Wendling2b58ce52008-11-04 02:10:20 +000039using namespace llvm;
40
Bill Wendlinge4957fb2013-01-23 06:43:53 +000041STATISTIC(NumFunProtected, "Number of functions protected");
42STATISTIC(NumAddrTaken, "Number of local variables that have their address"
43 " taken.");
44
Josh Magee62406fd2013-10-30 02:25:14 +000045static cl::opt<bool> EnableSelectionDAGSP("enable-selectiondag-sp",
46 cl::init(true), cl::Hidden);
Michael Gottesman3480d1b2013-08-20 08:36:53 +000047
Bill Wendling2b58ce52008-11-04 02:10:20 +000048char StackProtector::ID = 0;
Josh Magee62406fd2013-10-30 02:25:14 +000049INITIALIZE_PASS(StackProtector, "stack-protector", "Insert stack protectors",
50 false, true)
Bill Wendling2b58ce52008-11-04 02:10:20 +000051
Bill Wendlingea442812013-06-19 20:51:24 +000052FunctionPass *llvm::createStackProtectorPass(const TargetMachine *TM) {
53 return new StackProtector(TM);
Bill Wendling2b58ce52008-11-04 02:10:20 +000054}
55
Josh Magee62406fd2013-10-30 02:25:14 +000056StackProtector::SSPLayoutKind
57StackProtector::getSSPLayout(const AllocaInst *AI) const {
Josh Magee4598b402013-10-29 21:16:16 +000058 return AI ? Layout.lookup(AI) : SSPLK_None;
59}
60
Bill Wendling2b58ce52008-11-04 02:10:20 +000061bool StackProtector::runOnFunction(Function &Fn) {
62 F = &Fn;
63 M = F->getParent();
Cameron Zwarich80f6a502011-01-08 17:01:52 +000064 DT = getAnalysisIfAvailable<DominatorTree>();
Bill Wendlingea442812013-06-19 20:51:24 +000065 TLI = TM->getTargetLowering();
Bill Wendling2b58ce52008-11-04 02:10:20 +000066
Josh Magee62406fd2013-10-30 02:25:14 +000067 if (!RequiresStackProtector())
68 return false;
Bill Wendling6d86f3c2012-08-13 21:20:43 +000069
Josh Magee62406fd2013-10-30 02:25:14 +000070 Attribute Attr = Fn.getAttributes().getAttribute(
71 AttributeSet::FunctionIndex, "stack-protector-buffer-size");
Bill Wendling0dcba2f2013-07-22 20:15:21 +000072 if (Attr.isStringAttribute())
Benjamin Kramer54cf1412013-09-09 17:38:01 +000073 Attr.getValueAsString().getAsInteger(10, SSPBufferSize);
Bill Wendling0dcba2f2013-07-22 20:15:21 +000074
Bill Wendlinge4957fb2013-01-23 06:43:53 +000075 ++NumFunProtected;
Bill Wendling613f7742008-11-05 00:00:21 +000076 return InsertStackProtectors();
Bill Wendling2b58ce52008-11-04 02:10:20 +000077}
78
Josh Magee4598b402013-10-29 21:16:16 +000079/// \param [out] IsLarge is set to true if a protectable array is found and
80/// it is "large" ( >= ssp-buffer-size). In the case of a structure with
81/// multiple arrays, this gets set if any of them is large.
82bool StackProtector::ContainsProtectableArray(Type *Ty, bool &IsLarge,
Josh Magee62406fd2013-10-30 02:25:14 +000083 bool Strong,
84 bool InStruct) const {
85 if (!Ty)
86 return false;
Bill Wendlinga67eda72012-08-17 20:59:56 +000087 if (ArrayType *AT = dyn_cast<ArrayType>(Ty)) {
88 if (!AT->getElementType()->isIntegerTy(8)) {
Bill Wendlinga67eda72012-08-17 20:59:56 +000089 // If we're on a non-Darwin platform or we're inside of a structure, don't
90 // add stack protectors unless the array is a character array.
Josh Magee4598b402013-10-29 21:16:16 +000091 // However, in strong mode any array, regardless of type and size,
92 // triggers a protector.
93 if (!Strong && (InStruct || !Trip.isOSDarwin()))
94 return false;
Bill Wendlinga67eda72012-08-17 20:59:56 +000095 }
96
97 // If an array has more than SSPBufferSize bytes of allocated space, then we
98 // emit stack protectors.
Josh Magee4598b402013-10-29 21:16:16 +000099 if (SSPBufferSize <= TLI->getDataLayout()->getTypeAllocSize(AT)) {
100 IsLarge = true;
101 return true;
Josh Magee62406fd2013-10-30 02:25:14 +0000102 }
Josh Magee4598b402013-10-29 21:16:16 +0000103
104 if (Strong)
105 // Require a protector for all arrays in strong mode
Bill Wendlinga67eda72012-08-17 20:59:56 +0000106 return true;
107 }
108
109 const StructType *ST = dyn_cast<StructType>(Ty);
Josh Magee62406fd2013-10-30 02:25:14 +0000110 if (!ST)
111 return false;
Bill Wendlinga67eda72012-08-17 20:59:56 +0000112
Josh Magee4598b402013-10-29 21:16:16 +0000113 bool NeedsProtector = false;
Bill Wendlinga67eda72012-08-17 20:59:56 +0000114 for (StructType::element_iterator I = ST->element_begin(),
Josh Magee62406fd2013-10-30 02:25:14 +0000115 E = ST->element_end();
116 I != E; ++I)
Josh Magee4598b402013-10-29 21:16:16 +0000117 if (ContainsProtectableArray(*I, IsLarge, Strong, true)) {
118 // If the element is a protectable array and is large (>= SSPBufferSize)
119 // then we are done. If the protectable array is not large, then
120 // keep looking in case a subsequent element is a large array.
121 if (IsLarge)
122 return true;
123 NeedsProtector = true;
124 }
Bill Wendlinga67eda72012-08-17 20:59:56 +0000125
Josh Magee4598b402013-10-29 21:16:16 +0000126 return NeedsProtector;
Bill Wendlinga67eda72012-08-17 20:59:56 +0000127}
128
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000129bool StackProtector::HasAddressTaken(const Instruction *AI) {
130 for (Value::const_use_iterator UI = AI->use_begin(), UE = AI->use_end();
Josh Magee62406fd2013-10-30 02:25:14 +0000131 UI != UE; ++UI) {
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000132 const User *U = *UI;
133 if (const StoreInst *SI = dyn_cast<StoreInst>(U)) {
134 if (AI == SI->getValueOperand())
135 return true;
136 } else if (const PtrToIntInst *SI = dyn_cast<PtrToIntInst>(U)) {
137 if (AI == SI->getOperand(0))
138 return true;
139 } else if (isa<CallInst>(U)) {
140 return true;
141 } else if (isa<InvokeInst>(U)) {
142 return true;
143 } else if (const SelectInst *SI = dyn_cast<SelectInst>(U)) {
144 if (HasAddressTaken(SI))
145 return true;
146 } else if (const PHINode *PN = dyn_cast<PHINode>(U)) {
147 // Keep track of what PHI nodes we have already visited to ensure
148 // they are only visited once.
149 if (VisitedPHIs.insert(PN))
150 if (HasAddressTaken(PN))
151 return true;
152 } else if (const GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) {
153 if (HasAddressTaken(GEP))
154 return true;
155 } else if (const BitCastInst *BI = dyn_cast<BitCastInst>(U)) {
156 if (HasAddressTaken(BI))
157 return true;
158 }
159 }
160 return false;
161}
162
163/// \brief Check whether or not this function needs a stack protector based
164/// upon the stack protector level.
165///
166/// We use two heuristics: a standard (ssp) and strong (sspstrong).
167/// The standard heuristic which will add a guard variable to functions that
168/// call alloca with a either a variable size or a size >= SSPBufferSize,
169/// functions with character buffers larger than SSPBufferSize, and functions
170/// with aggregates containing character buffers larger than SSPBufferSize. The
171/// strong heuristic will add a guard variables to functions that call alloca
172/// regardless of size, functions with any buffer regardless of type and size,
173/// functions with aggregates that contain any buffer regardless of type and
174/// size, and functions that contain stack-based variables that have had their
175/// address taken.
176bool StackProtector::RequiresStackProtector() {
177 bool Strong = false;
Josh Magee4598b402013-10-29 21:16:16 +0000178 bool NeedsProtector = false;
Bill Wendling831737d2012-12-30 10:32:01 +0000179 if (F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
Josh Magee4598b402013-10-29 21:16:16 +0000180 Attribute::StackProtectReq)) {
181 NeedsProtector = true;
182 Strong = true; // Use the same heuristic as strong to determine SSPLayout
183 } else if (F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
184 Attribute::StackProtectStrong))
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000185 Strong = true;
186 else if (!F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
187 Attribute::StackProtect))
Bill Wendlingc3348a72008-11-18 05:32:11 +0000188 return false;
189
Bill Wendlingc3348a72008-11-18 05:32:11 +0000190 for (Function::iterator I = F->begin(), E = F->end(); I != E; ++I) {
191 BasicBlock *BB = I;
192
Josh Magee62406fd2013-10-30 02:25:14 +0000193 for (BasicBlock::iterator II = BB->begin(), IE = BB->end(); II != IE;
194 ++II) {
Bill Wendlingc3348a72008-11-18 05:32:11 +0000195 if (AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000196 if (AI->isArrayAllocation()) {
197 // SSP-Strong: Enable protectors for any call to alloca, regardless
198 // of size.
199 if (Strong)
200 return true;
Michael Gottesmanc02dbeb2013-08-20 08:46:16 +0000201
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000202 if (const ConstantInt *CI =
Josh Magee62406fd2013-10-30 02:25:14 +0000203 dyn_cast<ConstantInt>(AI->getArraySize())) {
Josh Magee4598b402013-10-29 21:16:16 +0000204 if (CI->getLimitedValue(SSPBufferSize) >= SSPBufferSize) {
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000205 // A call to alloca with size >= SSPBufferSize requires
206 // stack protectors.
Josh Magee4598b402013-10-29 21:16:16 +0000207 Layout.insert(std::make_pair(AI, SSPLK_LargeArray));
208 NeedsProtector = true;
209 } else if (Strong) {
210 // Require protectors for all alloca calls in strong mode.
211 Layout.insert(std::make_pair(AI, SSPLK_SmallArray));
212 NeedsProtector = true;
213 }
Bill Wendling0dcba2f2013-07-22 20:15:21 +0000214 } else {
215 // A call to alloca with a variable size requires protectors.
Josh Magee4598b402013-10-29 21:16:16 +0000216 Layout.insert(std::make_pair(AI, SSPLK_LargeArray));
217 NeedsProtector = true;
Bill Wendling0dcba2f2013-07-22 20:15:21 +0000218 }
Josh Magee4598b402013-10-29 21:16:16 +0000219 continue;
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000220 }
221
Josh Magee4598b402013-10-29 21:16:16 +0000222 bool IsLarge = false;
223 if (ContainsProtectableArray(AI->getAllocatedType(), IsLarge, Strong)) {
224 Layout.insert(std::make_pair(AI, IsLarge ? SSPLK_LargeArray
225 : SSPLK_SmallArray));
226 NeedsProtector = true;
227 continue;
228 }
Bill Wendlingc3348a72008-11-18 05:32:11 +0000229
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000230 if (Strong && HasAddressTaken(AI)) {
Michael Gottesmanc02dbeb2013-08-20 08:46:16 +0000231 ++NumAddrTaken;
Josh Magee4598b402013-10-29 21:16:16 +0000232 Layout.insert(std::make_pair(AI, SSPLK_AddrOf));
233 NeedsProtector = true;
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000234 }
Bill Wendlingc3348a72008-11-18 05:32:11 +0000235 }
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000236 }
Bill Wendlingc3348a72008-11-18 05:32:11 +0000237 }
238
Josh Magee4598b402013-10-29 21:16:16 +0000239 return NeedsProtector;
Bill Wendlingc3348a72008-11-18 05:32:11 +0000240}
241
Michael Gottesman3480d1b2013-08-20 08:36:53 +0000242static bool InstructionWillNotHaveChain(const Instruction *I) {
243 return !I->mayHaveSideEffects() && !I->mayReadFromMemory() &&
Josh Magee62406fd2013-10-30 02:25:14 +0000244 isSafeToSpeculativelyExecute(I);
Michael Gottesman3480d1b2013-08-20 08:36:53 +0000245}
246
247/// Identify if RI has a previous instruction in the "Tail Position" and return
248/// it. Otherwise return 0.
249///
Michael Gottesmanb99272a2013-08-20 08:56:23 +0000250/// This is based off of the code in llvm::isInTailCallPosition. The difference
251/// is that it inverts the first part of llvm::isInTailCallPosition since
252/// isInTailCallPosition is checking if a call is in a tail call position, and
253/// we are searching for an unknown tail call that might be in the tail call
254/// position. Once we find the call though, the code uses the same refactored
255/// code, returnTypeIsEligibleForTailCall.
Michael Gottesman3480d1b2013-08-20 08:36:53 +0000256static CallInst *FindPotentialTailCall(BasicBlock *BB, ReturnInst *RI,
257 const TargetLoweringBase *TLI) {
258 // Establish a reasonable upper bound on the maximum amount of instructions we
259 // will look through to find a tail call.
260 unsigned SearchCounter = 0;
261 const unsigned MaxSearch = 4;
262 bool NoInterposingChain = true;
263
Josh Magee62406fd2013-10-30 02:25:14 +0000264 for (BasicBlock::reverse_iterator I = llvm::next(BB->rbegin()),
265 E = BB->rend();
Michael Gottesman3480d1b2013-08-20 08:36:53 +0000266 I != E && SearchCounter < MaxSearch; ++I) {
267 Instruction *Inst = &*I;
268
269 // Skip over debug intrinsics and do not allow them to affect our MaxSearch
270 // counter.
271 if (isa<DbgInfoIntrinsic>(Inst))
272 continue;
273
274 // If we find a call and the following conditions are satisifed, then we
275 // have found a tail call that satisfies at least the target independent
276 // requirements of a tail call:
277 //
278 // 1. The call site has the tail marker.
279 //
280 // 2. The call site either will not cause the creation of a chain or if a
281 // chain is necessary there are no instructions in between the callsite and
282 // the call which would create an interposing chain.
283 //
284 // 3. The return type of the function does not impede tail call
285 // optimization.
286 if (CallInst *CI = dyn_cast<CallInst>(Inst)) {
287 if (CI->isTailCall() &&
288 (InstructionWillNotHaveChain(CI) || NoInterposingChain) &&
289 returnTypeIsEligibleForTailCall(BB->getParent(), CI, RI, *TLI))
290 return CI;
291 }
292
293 // If we did not find a call see if we have an instruction that may create
294 // an interposing chain.
Josh Magee62406fd2013-10-30 02:25:14 +0000295 NoInterposingChain =
296 NoInterposingChain && InstructionWillNotHaveChain(Inst);
Michael Gottesman3480d1b2013-08-20 08:36:53 +0000297
298 // Increment max search.
299 SearchCounter++;
300 }
301
302 return 0;
303}
304
Michael Gottesmanc03d5ec2013-07-22 20:44:11 +0000305/// Insert code into the entry block that stores the __stack_chk_guard
306/// variable onto the stack:
307///
308/// entry:
309/// StackGuardSlot = alloca i8*
310/// StackGuard = load __stack_chk_guard
311/// call void @llvm.stackprotect.create(StackGuard, StackGuardSlot)
312///
Michael Gottesman3480d1b2013-08-20 08:36:53 +0000313/// Returns true if the platform/triple supports the stackprotectorcreate pseudo
314/// node.
315static bool CreatePrologue(Function *F, Module *M, ReturnInst *RI,
Michael Gottesmanc03d5ec2013-07-22 20:44:11 +0000316 const TargetLoweringBase *TLI, const Triple &Trip,
317 AllocaInst *&AI, Value *&StackGuardVar) {
Michael Gottesman3480d1b2013-08-20 08:36:53 +0000318 bool SupportsSelectionDAGSP = false;
Michael Gottesmanc03d5ec2013-07-22 20:44:11 +0000319 PointerType *PtrTy = Type::getInt8PtrTy(RI->getContext());
320 unsigned AddressSpace, Offset;
321 if (TLI->getStackCookieLocation(AddressSpace, Offset)) {
322 Constant *OffsetVal =
Josh Magee62406fd2013-10-30 02:25:14 +0000323 ConstantInt::get(Type::getInt32Ty(RI->getContext()), Offset);
Michael Gottesmanc02dbeb2013-08-20 08:46:16 +0000324
Josh Magee62406fd2013-10-30 02:25:14 +0000325 StackGuardVar = ConstantExpr::getIntToPtr(
326 OffsetVal, PointerType::get(PtrTy, AddressSpace));
Michael Gottesmanc03d5ec2013-07-22 20:44:11 +0000327 } else if (Trip.getOS() == llvm::Triple::OpenBSD) {
328 StackGuardVar = M->getOrInsertGlobal("__guard_local", PtrTy);
329 cast<GlobalValue>(StackGuardVar)
Josh Magee62406fd2013-10-30 02:25:14 +0000330 ->setVisibility(GlobalValue::HiddenVisibility);
Michael Gottesmanc03d5ec2013-07-22 20:44:11 +0000331 } else {
Michael Gottesman3480d1b2013-08-20 08:36:53 +0000332 SupportsSelectionDAGSP = true;
Michael Gottesmanc02dbeb2013-08-20 08:46:16 +0000333 StackGuardVar = M->getOrInsertGlobal("__stack_chk_guard", PtrTy);
Michael Gottesmanc03d5ec2013-07-22 20:44:11 +0000334 }
Michael Gottesmanc02dbeb2013-08-20 08:46:16 +0000335
Benjamin Kramer54cf1412013-09-09 17:38:01 +0000336 IRBuilder<> B(&F->getEntryBlock().front());
337 AI = B.CreateAlloca(PtrTy, 0, "StackGuardSlot");
338 LoadInst *LI = B.CreateLoad(StackGuardVar, "StackGuard");
339 B.CreateCall2(Intrinsic::getDeclaration(M, Intrinsic::stackprotector), LI,
340 AI);
Michael Gottesman3480d1b2013-08-20 08:36:53 +0000341
342 return SupportsSelectionDAGSP;
Michael Gottesmanc03d5ec2013-07-22 20:44:11 +0000343}
344
Bill Wendling613f7742008-11-05 00:00:21 +0000345/// InsertStackProtectors - Insert code into the prologue and epilogue of the
346/// function.
347///
348/// - The prologue code loads and stores the stack guard onto the stack.
349/// - The epilogue checks the value stored in the prologue against the original
350/// value. It calls __stack_chk_fail if they differ.
351bool StackProtector::InsertStackProtectors() {
Michael Gottesman236e3892013-08-09 21:26:18 +0000352 bool HasPrologue = false;
Michael Gottesmand4f47882013-08-20 08:56:26 +0000353 bool SupportsSelectionDAGSP =
Josh Magee62406fd2013-10-30 02:25:14 +0000354 EnableSelectionDAGSP && !TM->Options.EnableFastISel;
355 AllocaInst *AI = 0; // Place on stack that stores the stack guard.
356 Value *StackGuardVar = 0; // The stack guard variable.
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +0000357
Josh Magee62406fd2013-10-30 02:25:14 +0000358 for (Function::iterator I = F->begin(), E = F->end(); I != E;) {
Bill Wendlingc3348a72008-11-18 05:32:11 +0000359 BasicBlock *BB = I++;
Bill Wendlingc3348a72008-11-18 05:32:11 +0000360 ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator());
Michael Gottesmanade30752013-08-20 08:56:28 +0000361 if (!RI)
362 continue;
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +0000363
Michael Gottesman236e3892013-08-09 21:26:18 +0000364 if (!HasPrologue) {
365 HasPrologue = true;
Josh Magee62406fd2013-10-30 02:25:14 +0000366 SupportsSelectionDAGSP &=
367 CreatePrologue(F, M, RI, TLI, Trip, AI, StackGuardVar);
Michael Gottesmanc02dbeb2013-08-20 08:46:16 +0000368 }
Michael Gottesman3480d1b2013-08-20 08:36:53 +0000369
Michael Gottesmand4f47882013-08-20 08:56:26 +0000370 if (SupportsSelectionDAGSP) {
Michael Gottesman3480d1b2013-08-20 08:36:53 +0000371 // Since we have a potential tail call, insert the special stack check
372 // intrinsic.
373 Instruction *InsertionPt = 0;
374 if (CallInst *CI = FindPotentialTailCall(BB, RI, TLI)) {
375 InsertionPt = CI;
Michael Gottesmanc02dbeb2013-08-20 08:46:16 +0000376 } else {
Michael Gottesman3480d1b2013-08-20 08:36:53 +0000377 InsertionPt = RI;
378 // At this point we know that BB has a return statement so it *DOES*
379 // have a terminator.
380 assert(InsertionPt != 0 && "BB must have a terminator instruction at "
Josh Magee62406fd2013-10-30 02:25:14 +0000381 "this point.");
Michael Gottesman3480d1b2013-08-20 08:36:53 +0000382 }
383
384 Function *Intrinsic =
Josh Magee62406fd2013-10-30 02:25:14 +0000385 Intrinsic::getDeclaration(M, Intrinsic::stackprotectorcheck);
Benjamin Kramer54cf1412013-09-09 17:38:01 +0000386 CallInst::Create(Intrinsic, StackGuardVar, "", InsertionPt);
Michael Gottesman3480d1b2013-08-20 08:36:53 +0000387
388 } else {
Michael Gottesman47d6e072013-08-20 08:46:13 +0000389 // If we do not support SelectionDAG based tail calls, generate IR level
390 // tail calls.
391 //
Michael Gottesman3480d1b2013-08-20 08:36:53 +0000392 // For each block with a return instruction, convert this:
393 //
394 // return:
395 // ...
396 // ret ...
397 //
398 // into this:
399 //
400 // return:
401 // ...
402 // %1 = load __stack_chk_guard
403 // %2 = load StackGuardSlot
404 // %3 = cmp i1 %1, %2
405 // br i1 %3, label %SP_return, label %CallStackCheckFailBlk
406 //
407 // SP_return:
408 // ret ...
409 //
410 // CallStackCheckFailBlk:
411 // call void @__stack_chk_fail()
412 // unreachable
413
414 // Create the FailBB. We duplicate the BB every time since the MI tail
415 // merge pass will merge together all of the various BB into one including
Michael Gottesmanc02dbeb2013-08-20 08:46:16 +0000416 // fail BB generated by the stack protector pseudo instruction.
Michael Gottesman3480d1b2013-08-20 08:36:53 +0000417 BasicBlock *FailBB = CreateFailBB();
Michael Gottesmanc02dbeb2013-08-20 08:46:16 +0000418
Michael Gottesman3480d1b2013-08-20 08:36:53 +0000419 // Split the basic block before the return instruction.
420 BasicBlock *NewBB = BB->splitBasicBlock(RI, "SP_return");
Michael Gottesmanc02dbeb2013-08-20 08:46:16 +0000421
Michael Gottesman3480d1b2013-08-20 08:36:53 +0000422 // Update the dominator tree if we need to.
423 if (DT && DT->isReachableFromEntry(BB)) {
424 DT->addNewBlock(NewBB, BB);
425 DT->addNewBlock(FailBB, BB);
426 }
Michael Gottesmanc02dbeb2013-08-20 08:46:16 +0000427
Michael Gottesman3480d1b2013-08-20 08:36:53 +0000428 // Remove default branch instruction to the new BB.
429 BB->getTerminator()->eraseFromParent();
Michael Gottesmanc02dbeb2013-08-20 08:46:16 +0000430
Michael Gottesman3480d1b2013-08-20 08:36:53 +0000431 // Move the newly created basic block to the point right after the old
432 // basic block so that it's in the "fall through" position.
433 NewBB->moveAfter(BB);
Michael Gottesmanc02dbeb2013-08-20 08:46:16 +0000434
Michael Gottesman3480d1b2013-08-20 08:36:53 +0000435 // Generate the stack protector instructions in the old basic block.
Benjamin Kramer54cf1412013-09-09 17:38:01 +0000436 IRBuilder<> B(BB);
437 LoadInst *LI1 = B.CreateLoad(StackGuardVar);
438 LoadInst *LI2 = B.CreateLoad(AI);
439 Value *Cmp = B.CreateICmpEQ(LI1, LI2);
440 B.CreateCondBr(Cmp, NewBB, FailBB);
Bill Wendling1fb615f2008-11-06 23:55:49 +0000441 }
Bill Wendling2b58ce52008-11-04 02:10:20 +0000442 }
Bill Wendling613f7742008-11-05 00:00:21 +0000443
Bill Wendling1fb615f2008-11-06 23:55:49 +0000444 // Return if we didn't modify any basic blocks. I.e., there are no return
445 // statements in the function.
Michael Gottesman236e3892013-08-09 21:26:18 +0000446 if (!HasPrologue)
447 return false;
Cameron Zwarich80f6a502011-01-08 17:01:52 +0000448
Bill Wendling613f7742008-11-05 00:00:21 +0000449 return true;
Bill Wendling2b58ce52008-11-04 02:10:20 +0000450}
451
452/// CreateFailBB - Create a basic block to jump to when the stack protector
453/// check fails.
Bill Wendling613f7742008-11-05 00:00:21 +0000454BasicBlock *StackProtector::CreateFailBB() {
Rafael Espindola62ed8d32013-06-07 16:35:57 +0000455 LLVMContext &Context = F->getContext();
456 BasicBlock *FailBB = BasicBlock::Create(Context, "CallStackCheckFailBlk", F);
Benjamin Kramer54cf1412013-09-09 17:38:01 +0000457 IRBuilder<> B(FailBB);
Rafael Espindola62ed8d32013-06-07 16:35:57 +0000458 if (Trip.getOS() == llvm::Triple::OpenBSD) {
459 Constant *StackChkFail = M->getOrInsertFunction(
460 "__stack_smash_handler", Type::getVoidTy(Context),
461 Type::getInt8PtrTy(Context), NULL);
462
Benjamin Kramer54cf1412013-09-09 17:38:01 +0000463 B.CreateCall(StackChkFail, B.CreateGlobalStringPtr(F->getName(), "SSH"));
Rafael Espindola62ed8d32013-06-07 16:35:57 +0000464 } else {
465 Constant *StackChkFail = M->getOrInsertFunction(
466 "__stack_chk_fail", Type::getVoidTy(Context), NULL);
Benjamin Kramer54cf1412013-09-09 17:38:01 +0000467 B.CreateCall(StackChkFail);
Rafael Espindola62ed8d32013-06-07 16:35:57 +0000468 }
Benjamin Kramer54cf1412013-09-09 17:38:01 +0000469 B.CreateUnreachable();
Bill Wendling613f7742008-11-05 00:00:21 +0000470 return FailBB;
Bill Wendling2b58ce52008-11-04 02:10:20 +0000471}