blob: 4c5638092e5350b096ac8db274d243bf28cd1480 [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"
18#include "llvm/CodeGen/Passes.h"
Bill Wendlinge4957fb2013-01-23 06:43:53 +000019#include "llvm/ADT/SmallPtrSet.h"
20#include "llvm/ADT/Statistic.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000021#include "llvm/ADT/Triple.h"
Cameron Zwarich80f6a502011-01-08 17:01:52 +000022#include "llvm/Analysis/Dominators.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000023#include "llvm/IR/Attributes.h"
24#include "llvm/IR/Constants.h"
25#include "llvm/IR/DataLayout.h"
26#include "llvm/IR/DerivedTypes.h"
27#include "llvm/IR/Function.h"
Rafael Espindola62ed8d32013-06-07 16:35:57 +000028#include "llvm/IR/GlobalValue.h"
29#include "llvm/IR/GlobalVariable.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000030#include "llvm/IR/Instructions.h"
31#include "llvm/IR/Intrinsics.h"
32#include "llvm/IR/Module.h"
Bill Wendling2b58ce52008-11-04 02:10:20 +000033#include "llvm/Pass.h"
Bill Wendling2b58ce52008-11-04 02:10:20 +000034#include "llvm/Support/CommandLine.h"
Bill Wendling80a320d2008-11-04 21:53:09 +000035#include "llvm/Target/TargetLowering.h"
Bill Wendling0dcba2f2013-07-22 20:15:21 +000036#include <cstdlib>
Bill Wendling2b58ce52008-11-04 02:10:20 +000037using namespace llvm;
38
Bill Wendlinge4957fb2013-01-23 06:43:53 +000039STATISTIC(NumFunProtected, "Number of functions protected");
40STATISTIC(NumAddrTaken, "Number of local variables that have their address"
41 " taken.");
42
Bill Wendling2b58ce52008-11-04 02:10:20 +000043namespace {
Nick Lewycky6726b6d2009-10-25 06:33:48 +000044 class StackProtector : public FunctionPass {
Bill Wendlingea442812013-06-19 20:51:24 +000045 const TargetMachine *TM;
46
Bill Wendling80a320d2008-11-04 21:53:09 +000047 /// TLI - Keep a pointer of a TargetLowering to consult for determining
48 /// target type sizes.
Bill Wendlingea442812013-06-19 20:51:24 +000049 const TargetLoweringBase *TLI;
Rafael Espindola62ed8d32013-06-07 16:35:57 +000050 const Triple Trip;
Bill Wendling2b58ce52008-11-04 02:10:20 +000051
Bill Wendling2b58ce52008-11-04 02:10:20 +000052 Function *F;
53 Module *M;
54
Bill Wendling6d86f3c2012-08-13 21:20:43 +000055 DominatorTree *DT;
Cameron Zwarich80f6a502011-01-08 17:01:52 +000056
Bill Wendling0dcba2f2013-07-22 20:15:21 +000057 /// \brief The minimum size of buffers that will receive stack smashing
58 /// protection when -fstack-protection is used.
59 unsigned SSPBufferSize;
60
Bill Wendlinge4957fb2013-01-23 06:43:53 +000061 /// VisitedPHIs - The set of PHI nodes visited when determining
62 /// if a variable's reference has been taken. This set
63 /// is maintained to ensure we don't visit the same PHI node multiple
64 /// times.
65 SmallPtrSet<const PHINode*, 16> VisitedPHIs;
66
Bill Wendling613f7742008-11-05 00:00:21 +000067 /// InsertStackProtectors - Insert code into the prologue and epilogue of
68 /// the function.
69 ///
70 /// - The prologue code loads and stores the stack guard onto the stack.
71 /// - The epilogue checks the value stored in the prologue against the
72 /// original value. It calls __stack_chk_fail if they differ.
73 bool InsertStackProtectors();
Bill Wendling2b58ce52008-11-04 02:10:20 +000074
75 /// CreateFailBB - Create a basic block to jump to when the stack protector
76 /// check fails.
Bill Wendling613f7742008-11-05 00:00:21 +000077 BasicBlock *CreateFailBB();
Bill Wendling2b58ce52008-11-04 02:10:20 +000078
Bill Wendlinga67eda72012-08-17 20:59:56 +000079 /// ContainsProtectableArray - Check whether the type either is an array or
80 /// contains an array of sufficient size so that we need stack protectors
81 /// for it.
Bill Wendlinge4957fb2013-01-23 06:43:53 +000082 bool ContainsProtectableArray(Type *Ty, bool Strong = false,
83 bool InStruct = false) const;
84
85 /// \brief Check whether a stack allocation has its address taken.
86 bool HasAddressTaken(const Instruction *AI);
Bill Wendlinga67eda72012-08-17 20:59:56 +000087
Bill Wendling2b58ce52008-11-04 02:10:20 +000088 /// RequiresStackProtector - Check whether or not this function needs a
89 /// stack protector based upon the stack protector level.
Bill Wendlinge4957fb2013-01-23 06:43:53 +000090 bool RequiresStackProtector();
Bill Wendling2b58ce52008-11-04 02:10:20 +000091 public:
92 static char ID; // Pass identification, replacement for typeid.
Bill Wendling0dcba2f2013-07-22 20:15:21 +000093 StackProtector() : FunctionPass(ID), TM(0), TLI(0), SSPBufferSize(0) {
Owen Anderson081c34b2010-10-19 17:21:58 +000094 initializeStackProtectorPass(*PassRegistry::getPassRegistry());
95 }
Bill Wendlingea442812013-06-19 20:51:24 +000096 StackProtector(const TargetMachine *TM)
Bill Wendling0dcba2f2013-07-22 20:15:21 +000097 : FunctionPass(ID), TM(TM), TLI(0), Trip(TM->getTargetTriple()),
98 SSPBufferSize(8) {
Bill Wendling6d86f3c2012-08-13 21:20:43 +000099 initializeStackProtectorPass(*PassRegistry::getPassRegistry());
100 }
Bill Wendling2b58ce52008-11-04 02:10:20 +0000101
Cameron Zwarich80f6a502011-01-08 17:01:52 +0000102 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
103 AU.addPreserved<DominatorTree>();
104 }
105
Bill Wendling2b58ce52008-11-04 02:10:20 +0000106 virtual bool runOnFunction(Function &Fn);
107 };
108} // end anonymous namespace
109
110char StackProtector::ID = 0;
Owen Andersond13db2c2010-07-21 22:09:45 +0000111INITIALIZE_PASS(StackProtector, "stack-protector",
Owen Andersonce665bd2010-10-07 22:25:06 +0000112 "Insert stack protectors", false, false)
Bill Wendling2b58ce52008-11-04 02:10:20 +0000113
Bill Wendlingea442812013-06-19 20:51:24 +0000114FunctionPass *llvm::createStackProtectorPass(const TargetMachine *TM) {
115 return new StackProtector(TM);
Bill Wendling2b58ce52008-11-04 02:10:20 +0000116}
117
118bool StackProtector::runOnFunction(Function &Fn) {
119 F = &Fn;
120 M = F->getParent();
Cameron Zwarich80f6a502011-01-08 17:01:52 +0000121 DT = getAnalysisIfAvailable<DominatorTree>();
Bill Wendlingea442812013-06-19 20:51:24 +0000122 TLI = TM->getTargetLowering();
Bill Wendling2b58ce52008-11-04 02:10:20 +0000123
124 if (!RequiresStackProtector()) return false;
Bill Wendling6d86f3c2012-08-13 21:20:43 +0000125
Bill Wendling0dcba2f2013-07-22 20:15:21 +0000126 Attribute Attr =
127 Fn.getAttributes().getAttribute(AttributeSet::FunctionIndex,
128 "stack-protector-buffer-size");
129 if (Attr.isStringAttribute())
130 SSPBufferSize = atoi(Attr.getValueAsString().data());
131
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000132 ++NumFunProtected;
Bill Wendling613f7742008-11-05 00:00:21 +0000133 return InsertStackProtectors();
Bill Wendling2b58ce52008-11-04 02:10:20 +0000134}
135
Bill Wendlinga67eda72012-08-17 20:59:56 +0000136/// ContainsProtectableArray - Check whether the type either is an array or
137/// contains a char array of sufficient size so that we need stack protectors
138/// for it.
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000139bool StackProtector::ContainsProtectableArray(Type *Ty, bool Strong,
140 bool InStruct) const {
Bill Wendlinga67eda72012-08-17 20:59:56 +0000141 if (!Ty) return false;
142 if (ArrayType *AT = dyn_cast<ArrayType>(Ty)) {
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000143 // In strong mode any array, regardless of type and size, triggers a
144 // protector
145 if (Strong)
146 return true;
Bill Wendlinga67eda72012-08-17 20:59:56 +0000147 if (!AT->getElementType()->isIntegerTy(8)) {
Bill Wendlinga67eda72012-08-17 20:59:56 +0000148 // If we're on a non-Darwin platform or we're inside of a structure, don't
149 // add stack protectors unless the array is a character array.
150 if (InStruct || !Trip.isOSDarwin())
151 return false;
152 }
153
154 // If an array has more than SSPBufferSize bytes of allocated space, then we
155 // emit stack protectors.
Bill Wendling0dcba2f2013-07-22 20:15:21 +0000156 if (SSPBufferSize <= TLI->getDataLayout()->getTypeAllocSize(AT))
Bill Wendlinga67eda72012-08-17 20:59:56 +0000157 return true;
158 }
159
160 const StructType *ST = dyn_cast<StructType>(Ty);
161 if (!ST) return false;
162
163 for (StructType::element_iterator I = ST->element_begin(),
164 E = ST->element_end(); I != E; ++I)
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000165 if (ContainsProtectableArray(*I, Strong, true))
Bill Wendlinga67eda72012-08-17 20:59:56 +0000166 return true;
167
168 return false;
169}
170
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000171bool StackProtector::HasAddressTaken(const Instruction *AI) {
172 for (Value::const_use_iterator UI = AI->use_begin(), UE = AI->use_end();
173 UI != UE; ++UI) {
174 const User *U = *UI;
175 if (const StoreInst *SI = dyn_cast<StoreInst>(U)) {
176 if (AI == SI->getValueOperand())
177 return true;
178 } else if (const PtrToIntInst *SI = dyn_cast<PtrToIntInst>(U)) {
179 if (AI == SI->getOperand(0))
180 return true;
181 } else if (isa<CallInst>(U)) {
182 return true;
183 } else if (isa<InvokeInst>(U)) {
184 return true;
185 } else if (const SelectInst *SI = dyn_cast<SelectInst>(U)) {
186 if (HasAddressTaken(SI))
187 return true;
188 } else if (const PHINode *PN = dyn_cast<PHINode>(U)) {
189 // Keep track of what PHI nodes we have already visited to ensure
190 // they are only visited once.
191 if (VisitedPHIs.insert(PN))
192 if (HasAddressTaken(PN))
193 return true;
194 } else if (const GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(U)) {
195 if (HasAddressTaken(GEP))
196 return true;
197 } else if (const BitCastInst *BI = dyn_cast<BitCastInst>(U)) {
198 if (HasAddressTaken(BI))
199 return true;
200 }
201 }
202 return false;
203}
204
205/// \brief Check whether or not this function needs a stack protector based
206/// upon the stack protector level.
207///
208/// We use two heuristics: a standard (ssp) and strong (sspstrong).
209/// The standard heuristic which will add a guard variable to functions that
210/// call alloca with a either a variable size or a size >= SSPBufferSize,
211/// functions with character buffers larger than SSPBufferSize, and functions
212/// with aggregates containing character buffers larger than SSPBufferSize. The
213/// strong heuristic will add a guard variables to functions that call alloca
214/// regardless of size, functions with any buffer regardless of type and size,
215/// functions with aggregates that contain any buffer regardless of type and
216/// size, and functions that contain stack-based variables that have had their
217/// address taken.
218bool StackProtector::RequiresStackProtector() {
219 bool Strong = false;
Bill Wendling831737d2012-12-30 10:32:01 +0000220 if (F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
221 Attribute::StackProtectReq))
Bill Wendlingc3348a72008-11-18 05:32:11 +0000222 return true;
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000223 else if (F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
224 Attribute::StackProtectStrong))
225 Strong = true;
226 else if (!F->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
227 Attribute::StackProtect))
Bill Wendlingc3348a72008-11-18 05:32:11 +0000228 return false;
229
Bill Wendlingc3348a72008-11-18 05:32:11 +0000230 for (Function::iterator I = F->begin(), E = F->end(); I != E; ++I) {
231 BasicBlock *BB = I;
232
233 for (BasicBlock::iterator
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000234 II = BB->begin(), IE = BB->end(); II != IE; ++II) {
Bill Wendlingc3348a72008-11-18 05:32:11 +0000235 if (AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000236 if (AI->isArrayAllocation()) {
237 // SSP-Strong: Enable protectors for any call to alloca, regardless
238 // of size.
239 if (Strong)
240 return true;
241
242 if (const ConstantInt *CI =
243 dyn_cast<ConstantInt>(AI->getArraySize())) {
Bill Wendling0dcba2f2013-07-22 20:15:21 +0000244 if (CI->getLimitedValue(SSPBufferSize) >= SSPBufferSize)
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000245 // A call to alloca with size >= SSPBufferSize requires
246 // stack protectors.
247 return true;
Bill Wendling0dcba2f2013-07-22 20:15:21 +0000248 } else {
249 // A call to alloca with a variable size requires protectors.
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000250 return true;
Bill Wendling0dcba2f2013-07-22 20:15:21 +0000251 }
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000252 }
253
254 if (ContainsProtectableArray(AI->getAllocatedType(), Strong))
Bill Wendlingc3348a72008-11-18 05:32:11 +0000255 return true;
256
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000257 if (Strong && HasAddressTaken(AI)) {
258 ++NumAddrTaken;
Bill Wendlinga67eda72012-08-17 20:59:56 +0000259 return true;
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000260 }
Bill Wendlingc3348a72008-11-18 05:32:11 +0000261 }
Bill Wendlinge4957fb2013-01-23 06:43:53 +0000262 }
Bill Wendlingc3348a72008-11-18 05:32:11 +0000263 }
264
265 return false;
266}
267
Michael Gottesmanc03d5ec2013-07-22 20:44:11 +0000268/// Insert code into the entry block that stores the __stack_chk_guard
269/// variable onto the stack:
270///
271/// entry:
272/// StackGuardSlot = alloca i8*
273/// StackGuard = load __stack_chk_guard
274/// call void @llvm.stackprotect.create(StackGuard, StackGuardSlot)
275///
276static void CreatePrologue(Function *F, Module *M, ReturnInst *RI,
277 const TargetLoweringBase *TLI, const Triple &Trip,
278 AllocaInst *&AI, Value *&StackGuardVar) {
279 PointerType *PtrTy = Type::getInt8PtrTy(RI->getContext());
280 unsigned AddressSpace, Offset;
281 if (TLI->getStackCookieLocation(AddressSpace, Offset)) {
282 Constant *OffsetVal =
283 ConstantInt::get(Type::getInt32Ty(RI->getContext()), Offset);
284
285 StackGuardVar = ConstantExpr::getIntToPtr(OffsetVal,
286 PointerType::get(PtrTy,
287 AddressSpace));
288 } else if (Trip.getOS() == llvm::Triple::OpenBSD) {
289 StackGuardVar = M->getOrInsertGlobal("__guard_local", PtrTy);
290 cast<GlobalValue>(StackGuardVar)
291 ->setVisibility(GlobalValue::HiddenVisibility);
292 } else {
293 StackGuardVar = M->getOrInsertGlobal("__stack_chk_guard", PtrTy);
294 }
295
296 BasicBlock &Entry = F->getEntryBlock();
297 Instruction *InsPt = &Entry.front();
298
299 AI = new AllocaInst(PtrTy, "StackGuardSlot", InsPt);
300 LoadInst *LI = new LoadInst(StackGuardVar, "StackGuard", false, InsPt);
301
302 Value *Args[] = { LI, AI };
303 CallInst::
304 Create(Intrinsic::getDeclaration(M, Intrinsic::stackprotector),
305 Args, "", InsPt);
306}
307
Bill Wendling613f7742008-11-05 00:00:21 +0000308/// InsertStackProtectors - Insert code into the prologue and epilogue of the
309/// function.
310///
311/// - The prologue code loads and stores the stack guard onto the stack.
312/// - The epilogue checks the value stored in the prologue against the original
313/// value. It calls __stack_chk_fail if they differ.
314bool StackProtector::InsertStackProtectors() {
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +0000315 BasicBlock *FailBB = 0; // The basic block to jump to if check fails.
Cameron Zwarich80f6a502011-01-08 17:01:52 +0000316 BasicBlock *FailBBDom = 0; // FailBB's dominator.
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +0000317 AllocaInst *AI = 0; // Place on stack that stores the stack guard.
Eric Christopherf7a0c7b2010-07-06 05:18:56 +0000318 Value *StackGuardVar = 0; // The stack guard variable.
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +0000319
Bill Wendling72056772008-11-10 21:13:10 +0000320 for (Function::iterator I = F->begin(), E = F->end(); I != E; ) {
Bill Wendlingc3348a72008-11-18 05:32:11 +0000321 BasicBlock *BB = I++;
Bill Wendlingc3348a72008-11-18 05:32:11 +0000322 ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator());
323 if (!RI) continue;
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +0000324
Bill Wendlingc3348a72008-11-18 05:32:11 +0000325 if (!FailBB) {
Michael Gottesmanc03d5ec2013-07-22 20:44:11 +0000326 CreatePrologue(F, M, RI, TLI, Trip, AI, StackGuardVar);
Bill Wendlingc3348a72008-11-18 05:32:11 +0000327 // Create the basic block to jump to when the guard check fails.
328 FailBB = CreateFailBB();
Bill Wendling1fb615f2008-11-06 23:55:49 +0000329 }
Bill Wendlingc3348a72008-11-18 05:32:11 +0000330
331 // For each block with a return instruction, convert this:
332 //
333 // return:
334 // ...
335 // ret ...
336 //
337 // into this:
338 //
339 // return:
340 // ...
341 // %1 = load __stack_chk_guard
Bill Wendling733bbc52008-11-18 07:30:57 +0000342 // %2 = load StackGuardSlot
Bill Wendlingc3348a72008-11-18 05:32:11 +0000343 // %3 = cmp i1 %1, %2
344 // br i1 %3, label %SP_return, label %CallStackCheckFailBlk
345 //
346 // SP_return:
347 // ret ...
348 //
349 // CallStackCheckFailBlk:
350 // call void @__stack_chk_fail()
351 // unreachable
352
353 // Split the basic block before the return instruction.
354 BasicBlock *NewBB = BB->splitBasicBlock(RI, "SP_return");
Bill Wendling3c288b92011-03-29 07:28:52 +0000355
Bill Wendling3f782f42011-03-29 17:12:55 +0000356 if (DT && DT->isReachableFromEntry(BB)) {
Cameron Zwarich53aac152011-03-11 21:51:56 +0000357 DT->addNewBlock(NewBB, BB);
Bill Wendling3c288b92011-03-29 07:28:52 +0000358 FailBBDom = FailBBDom ? DT->findNearestCommonDominator(FailBBDom, BB) :BB;
Cameron Zwarich80f6a502011-01-08 17:01:52 +0000359 }
Bill Wendlingc3348a72008-11-18 05:32:11 +0000360
Bill Wendling56016992009-03-06 01:41:15 +0000361 // Remove default branch instruction to the new BB.
362 BB->getTerminator()->eraseFromParent();
363
Bill Wendlingc3348a72008-11-18 05:32:11 +0000364 // Move the newly created basic block to the point right after the old basic
365 // block so that it's in the "fall through" position.
366 NewBB->moveAfter(BB);
367
368 // Generate the stack protector instructions in the old basic block.
Bill Wendling733bbc52008-11-18 07:30:57 +0000369 LoadInst *LI1 = new LoadInst(StackGuardVar, "", false, BB);
370 LoadInst *LI2 = new LoadInst(AI, "", true, BB);
Owen Anderson333c4002009-07-09 23:48:35 +0000371 ICmpInst *Cmp = new ICmpInst(*BB, CmpInst::ICMP_EQ, LI1, LI2, "");
Bill Wendlingc3348a72008-11-18 05:32:11 +0000372 BranchInst::Create(NewBB, FailBB, Cmp, BB);
Bill Wendling2b58ce52008-11-04 02:10:20 +0000373 }
Bill Wendling613f7742008-11-05 00:00:21 +0000374
Bill Wendling1fb615f2008-11-06 23:55:49 +0000375 // Return if we didn't modify any basic blocks. I.e., there are no return
376 // statements in the function.
377 if (!FailBB) return false;
378
Cameron Zwarich53aac152011-03-11 21:51:56 +0000379 if (DT && FailBBDom)
Cameron Zwarich80f6a502011-01-08 17:01:52 +0000380 DT->addNewBlock(FailBB, FailBBDom);
381
Bill Wendling613f7742008-11-05 00:00:21 +0000382 return true;
Bill Wendling2b58ce52008-11-04 02:10:20 +0000383}
384
385/// CreateFailBB - Create a basic block to jump to when the stack protector
386/// check fails.
Bill Wendling613f7742008-11-05 00:00:21 +0000387BasicBlock *StackProtector::CreateFailBB() {
Rafael Espindola62ed8d32013-06-07 16:35:57 +0000388 LLVMContext &Context = F->getContext();
389 BasicBlock *FailBB = BasicBlock::Create(Context, "CallStackCheckFailBlk", F);
390 if (Trip.getOS() == llvm::Triple::OpenBSD) {
391 Constant *StackChkFail = M->getOrInsertFunction(
392 "__stack_smash_handler", Type::getVoidTy(Context),
393 Type::getInt8PtrTy(Context), NULL);
394
395 Constant *NameStr = ConstantDataArray::getString(Context, F->getName());
396 Constant *FuncName =
397 new GlobalVariable(*M, NameStr->getType(), true,
398 GlobalVariable::PrivateLinkage, NameStr, "SSH");
399
400 SmallVector<Constant *, 2> IdxList;
401 IdxList.push_back(ConstantInt::get(Type::getInt8Ty(Context), 0));
402 IdxList.push_back(ConstantInt::get(Type::getInt8Ty(Context), 0));
403
404 SmallVector<Value *, 1> Args;
405 Args.push_back(ConstantExpr::getGetElementPtr(FuncName, IdxList));
406
407 CallInst::Create(StackChkFail, Args, "", FailBB);
408 } else {
409 Constant *StackChkFail = M->getOrInsertFunction(
410 "__stack_chk_fail", Type::getVoidTy(Context), NULL);
411 CallInst::Create(StackChkFail, "", FailBB);
412 }
413 new UnreachableInst(Context, FailBB);
Bill Wendling613f7742008-11-05 00:00:21 +0000414 return FailBB;
Bill Wendling2b58ce52008-11-04 02:10:20 +0000415}