blob: 61dd7b1bc12ecb51b25394ed42a715c3df10f562 [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 Wendlinge9e6bdf2008-11-13 01:02:14 +000019#include "llvm/Attributes.h"
Bill Wendling2b58ce52008-11-04 02:10:20 +000020#include "llvm/Constants.h"
21#include "llvm/DerivedTypes.h"
22#include "llvm/Function.h"
23#include "llvm/Instructions.h"
Bill Wendlingb2a42982008-11-06 02:29:10 +000024#include "llvm/Intrinsics.h"
Bill Wendling2b58ce52008-11-04 02:10:20 +000025#include "llvm/Module.h"
26#include "llvm/Pass.h"
Bill Wendling2b58ce52008-11-04 02:10:20 +000027#include "llvm/Support/CommandLine.h"
Bill Wendling80a320d2008-11-04 21:53:09 +000028#include "llvm/Target/TargetData.h"
29#include "llvm/Target/TargetLowering.h"
Bill Wendling2b58ce52008-11-04 02:10:20 +000030using namespace llvm;
31
Bill Wendlingf0eaa9a2008-11-05 00:46:15 +000032// SSPBufferSize - The lower bound for a buffer to be considered for stack
33// smashing protection.
Bill Wendling2b58ce52008-11-04 02:10:20 +000034static cl::opt<unsigned>
Bill Wendling80a320d2008-11-04 21:53:09 +000035SSPBufferSize("stack-protector-buffer-size", cl::init(8),
Bill Wendlingc3348a72008-11-18 05:32:11 +000036 cl::desc("Lower bound for a buffer to be considered for "
37 "stack protection"));
Bill Wendling2b58ce52008-11-04 02:10:20 +000038
39namespace {
Nick Lewycky6726b6d2009-10-25 06:33:48 +000040 class StackProtector : public FunctionPass {
Bill Wendling80a320d2008-11-04 21:53:09 +000041 /// TLI - Keep a pointer of a TargetLowering to consult for determining
42 /// target type sizes.
43 const TargetLowering *TLI;
Bill Wendling2b58ce52008-11-04 02:10:20 +000044
Bill Wendling2b58ce52008-11-04 02:10:20 +000045 Function *F;
46 Module *M;
47
Bill Wendling613f7742008-11-05 00:00:21 +000048 /// InsertStackProtectors - Insert code into the prologue and epilogue of
49 /// the function.
50 ///
51 /// - The prologue code loads and stores the stack guard onto the stack.
52 /// - The epilogue checks the value stored in the prologue against the
53 /// original value. It calls __stack_chk_fail if they differ.
54 bool InsertStackProtectors();
Bill Wendling2b58ce52008-11-04 02:10:20 +000055
56 /// CreateFailBB - Create a basic block to jump to when the stack protector
57 /// check fails.
Bill Wendling613f7742008-11-05 00:00:21 +000058 BasicBlock *CreateFailBB();
Bill Wendling2b58ce52008-11-04 02:10:20 +000059
60 /// RequiresStackProtector - Check whether or not this function needs a
61 /// stack protector based upon the stack protector level.
Bill Wendling80a320d2008-11-04 21:53:09 +000062 bool RequiresStackProtector() const;
Bill Wendling2b58ce52008-11-04 02:10:20 +000063 public:
64 static char ID; // Pass identification, replacement for typeid.
Owen Anderson081c34b2010-10-19 17:21:58 +000065 StackProtector() : FunctionPass(ID), TLI(0) {
66 initializeStackProtectorPass(*PassRegistry::getPassRegistry());
67 }
Bill Wendlinge9e6bdf2008-11-13 01:02:14 +000068 StackProtector(const TargetLowering *tli)
Owen Anderson081c34b2010-10-19 17:21:58 +000069 : FunctionPass(ID), TLI(tli) {
70 initializeStackProtectorPass(*PassRegistry::getPassRegistry());
71 }
Bill Wendling2b58ce52008-11-04 02:10:20 +000072
73 virtual bool runOnFunction(Function &Fn);
74 };
75} // end anonymous namespace
76
77char StackProtector::ID = 0;
Owen Andersond13db2c2010-07-21 22:09:45 +000078INITIALIZE_PASS(StackProtector, "stack-protector",
Owen Andersonce665bd2010-10-07 22:25:06 +000079 "Insert stack protectors", false, false)
Bill Wendling2b58ce52008-11-04 02:10:20 +000080
Bill Wendlinge9e6bdf2008-11-13 01:02:14 +000081FunctionPass *llvm::createStackProtectorPass(const TargetLowering *tli) {
82 return new StackProtector(tli);
Bill Wendling2b58ce52008-11-04 02:10:20 +000083}
84
85bool StackProtector::runOnFunction(Function &Fn) {
86 F = &Fn;
87 M = F->getParent();
88
89 if (!RequiresStackProtector()) return false;
90
Bill Wendling613f7742008-11-05 00:00:21 +000091 return InsertStackProtectors();
Bill Wendling2b58ce52008-11-04 02:10:20 +000092}
93
Bill Wendlingc3348a72008-11-18 05:32:11 +000094/// RequiresStackProtector - Check whether or not this function needs a stack
95/// protector based upon the stack protector level. The heuristic we use is to
96/// add a guard variable to functions that call alloca, and functions with
97/// buffers larger than SSPBufferSize bytes.
98bool StackProtector::RequiresStackProtector() const {
99 if (F->hasFnAttr(Attribute::StackProtectReq))
100 return true;
101
102 if (!F->hasFnAttr(Attribute::StackProtect))
103 return false;
104
105 const TargetData *TD = TLI->getTargetData();
106
107 for (Function::iterator I = F->begin(), E = F->end(); I != E; ++I) {
108 BasicBlock *BB = I;
109
110 for (BasicBlock::iterator
111 II = BB->begin(), IE = BB->end(); II != IE; ++II)
112 if (AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
113 if (AI->isArrayAllocation())
114 // This is a call to alloca with a variable size. Emit stack
115 // protectors.
116 return true;
117
Bill Wendlingdfd85c12009-10-23 00:01:05 +0000118 if (const ArrayType *AT = dyn_cast<ArrayType>(AI->getAllocatedType())) {
119 // We apparently only care about character arrays.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000120 if (!AT->getElementType()->isIntegerTy(8))
Bill Wendlingdfd85c12009-10-23 00:01:05 +0000121 continue;
122
Bill Wendlingc3348a72008-11-18 05:32:11 +0000123 // If an array has more than SSPBufferSize bytes of allocated space,
124 // then we emit stack protectors.
Duncan Sands777d2302009-05-09 07:06:46 +0000125 if (SSPBufferSize <= TD->getTypeAllocSize(AT))
Bill Wendlingc3348a72008-11-18 05:32:11 +0000126 return true;
Bill Wendlingdfd85c12009-10-23 00:01:05 +0000127 }
Bill Wendlingc3348a72008-11-18 05:32:11 +0000128 }
129 }
130
131 return false;
132}
133
Bill Wendling613f7742008-11-05 00:00:21 +0000134/// InsertStackProtectors - Insert code into the prologue and epilogue of the
135/// function.
136///
137/// - The prologue code loads and stores the stack guard onto the stack.
138/// - The epilogue checks the value stored in the prologue against the original
139/// value. It calls __stack_chk_fail if they differ.
140bool StackProtector::InsertStackProtectors() {
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +0000141 BasicBlock *FailBB = 0; // The basic block to jump to if check fails.
142 AllocaInst *AI = 0; // Place on stack that stores the stack guard.
Eric Christopherf7a0c7b2010-07-06 05:18:56 +0000143 Value *StackGuardVar = 0; // The stack guard variable.
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +0000144
Bill Wendling72056772008-11-10 21:13:10 +0000145 for (Function::iterator I = F->begin(), E = F->end(); I != E; ) {
Bill Wendlingc3348a72008-11-18 05:32:11 +0000146 BasicBlock *BB = I++;
Bill Wendling2b58ce52008-11-04 02:10:20 +0000147
Bill Wendlingc3348a72008-11-18 05:32:11 +0000148 ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator());
149 if (!RI) continue;
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +0000150
Bill Wendlingc3348a72008-11-18 05:32:11 +0000151 if (!FailBB) {
152 // Insert code into the entry block that stores the __stack_chk_guard
153 // variable onto the stack:
154 //
155 // entry:
156 // StackGuardSlot = alloca i8*
157 // StackGuard = load __stack_chk_guard
158 // call void @llvm.stackprotect.create(StackGuard, StackGuardSlot)
159 //
Chris Lattnerf8bd3922010-07-06 15:59:27 +0000160 const PointerType *PtrTy = Type::getInt8PtrTy(RI->getContext());
Eric Christopherf7a0c7b2010-07-06 05:18:56 +0000161 unsigned AddressSpace, Offset;
162 if (TLI->getStackCookieLocation(AddressSpace, Offset)) {
Chris Lattnerf8bd3922010-07-06 15:59:27 +0000163 Constant *OffsetVal =
164 ConstantInt::get(Type::getInt32Ty(RI->getContext()), Offset);
165
166 StackGuardVar = ConstantExpr::getIntToPtr(OffsetVal,
167 PointerType::get(PtrTy, AddressSpace));
Eric Christopherf7a0c7b2010-07-06 05:18:56 +0000168 } else {
Chris Lattnerf8bd3922010-07-06 15:59:27 +0000169 StackGuardVar = M->getOrInsertGlobal("__stack_chk_guard", PtrTy);
Eric Christopherf7a0c7b2010-07-06 05:18:56 +0000170 }
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +0000171
Bill Wendlingc3348a72008-11-18 05:32:11 +0000172 BasicBlock &Entry = F->getEntryBlock();
173 Instruction *InsPt = &Entry.front();
Bill Wendlingb7c6ebc2008-11-07 01:23:58 +0000174
Owen Anderson50dead02009-07-15 23:53:25 +0000175 AI = new AllocaInst(PtrTy, "StackGuardSlot", InsPt);
Bill Wendlingc3348a72008-11-18 05:32:11 +0000176 LoadInst *LI = new LoadInst(StackGuardVar, "StackGuard", false, InsPt);
Bill Wendling72056772008-11-10 21:13:10 +0000177
Bill Wendlingc3348a72008-11-18 05:32:11 +0000178 Value *Args[] = { LI, AI };
179 CallInst::
Bill Wendling57344502008-11-18 11:01:33 +0000180 Create(Intrinsic::getDeclaration(M, Intrinsic::stackprotector),
Bill Wendlingc3348a72008-11-18 05:32:11 +0000181 &Args[0], array_endof(Args), "", InsPt);
Bill Wendling2b58ce52008-11-04 02:10:20 +0000182
Bill Wendlingc3348a72008-11-18 05:32:11 +0000183 // Create the basic block to jump to when the guard check fails.
184 FailBB = CreateFailBB();
Bill Wendling1fb615f2008-11-06 23:55:49 +0000185 }
Bill Wendlingc3348a72008-11-18 05:32:11 +0000186
187 // For each block with a return instruction, convert this:
188 //
189 // return:
190 // ...
191 // ret ...
192 //
193 // into this:
194 //
195 // return:
196 // ...
197 // %1 = load __stack_chk_guard
Bill Wendling733bbc52008-11-18 07:30:57 +0000198 // %2 = load StackGuardSlot
Bill Wendlingc3348a72008-11-18 05:32:11 +0000199 // %3 = cmp i1 %1, %2
200 // br i1 %3, label %SP_return, label %CallStackCheckFailBlk
201 //
202 // SP_return:
203 // ret ...
204 //
205 // CallStackCheckFailBlk:
206 // call void @__stack_chk_fail()
207 // unreachable
208
209 // Split the basic block before the return instruction.
210 BasicBlock *NewBB = BB->splitBasicBlock(RI, "SP_return");
211
Bill Wendling56016992009-03-06 01:41:15 +0000212 // Remove default branch instruction to the new BB.
213 BB->getTerminator()->eraseFromParent();
214
Bill Wendlingc3348a72008-11-18 05:32:11 +0000215 // Move the newly created basic block to the point right after the old basic
216 // block so that it's in the "fall through" position.
217 NewBB->moveAfter(BB);
218
219 // Generate the stack protector instructions in the old basic block.
Bill Wendling733bbc52008-11-18 07:30:57 +0000220 LoadInst *LI1 = new LoadInst(StackGuardVar, "", false, BB);
221 LoadInst *LI2 = new LoadInst(AI, "", true, BB);
Owen Anderson333c4002009-07-09 23:48:35 +0000222 ICmpInst *Cmp = new ICmpInst(*BB, CmpInst::ICMP_EQ, LI1, LI2, "");
Bill Wendlingc3348a72008-11-18 05:32:11 +0000223 BranchInst::Create(NewBB, FailBB, Cmp, BB);
Bill Wendling2b58ce52008-11-04 02:10:20 +0000224 }
Bill Wendling613f7742008-11-05 00:00:21 +0000225
Bill Wendling1fb615f2008-11-06 23:55:49 +0000226 // Return if we didn't modify any basic blocks. I.e., there are no return
227 // statements in the function.
228 if (!FailBB) return false;
229
Bill Wendling613f7742008-11-05 00:00:21 +0000230 return true;
Bill Wendling2b58ce52008-11-04 02:10:20 +0000231}
232
233/// CreateFailBB - Create a basic block to jump to when the stack protector
234/// check fails.
Bill Wendling613f7742008-11-05 00:00:21 +0000235BasicBlock *StackProtector::CreateFailBB() {
Owen Anderson1d0be152009-08-13 21:58:54 +0000236 BasicBlock *FailBB = BasicBlock::Create(F->getContext(),
237 "CallStackCheckFailBlk", F);
Bill Wendling2b58ce52008-11-04 02:10:20 +0000238 Constant *StackChkFail =
Owen Anderson1d0be152009-08-13 21:58:54 +0000239 M->getOrInsertFunction("__stack_chk_fail",
240 Type::getVoidTy(F->getContext()), NULL);
Bill Wendling2b58ce52008-11-04 02:10:20 +0000241 CallInst::Create(StackChkFail, "", FailBB);
Owen Anderson1d0be152009-08-13 21:58:54 +0000242 new UnreachableInst(F->getContext(), FailBB);
Bill Wendling613f7742008-11-05 00:00:21 +0000243 return FailBB;
Bill Wendling2b58ce52008-11-04 02:10:20 +0000244}