blob: fefa3c379fcd32e21ff90a78e5a9400020bd414f [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"
19#include "llvm/Constants.h"
20#include "llvm/DerivedTypes.h"
21#include "llvm/Function.h"
22#include "llvm/Instructions.h"
23#include "llvm/Module.h"
24#include "llvm/Pass.h"
25#include "llvm/ADT/APInt.h"
26#include "llvm/Support/CommandLine.h"
Bill Wendling80a320d2008-11-04 21:53:09 +000027#include "llvm/Target/TargetData.h"
28#include "llvm/Target/TargetLowering.h"
Bill Wendling2b58ce52008-11-04 02:10:20 +000029using namespace llvm;
30
31// Enable stack protectors.
32static cl::opt<unsigned>
Bill Wendling80a320d2008-11-04 21:53:09 +000033SSPBufferSize("stack-protector-buffer-size", cl::init(8),
Bill Wendling2b58ce52008-11-04 02:10:20 +000034 cl::desc("The lower bound for a buffer to be considered for "
35 "stack smashing protection."));
36
37namespace {
38 class VISIBILITY_HIDDEN StackProtector : public FunctionPass {
Bill Wendling80a320d2008-11-04 21:53:09 +000039 /// Level - The level of stack protection.
40 SSP::StackProtectorLevel Level;
41
42 /// TLI - Keep a pointer of a TargetLowering to consult for determining
43 /// target type sizes.
44 const TargetLowering *TLI;
Bill Wendling2b58ce52008-11-04 02:10:20 +000045
Bill Wendling2b58ce52008-11-04 02:10:20 +000046 Function *F;
47 Module *M;
48
Bill Wendling613f7742008-11-05 00:00:21 +000049 /// InsertStackProtectors - Insert code into the prologue and epilogue of
50 /// the function.
51 ///
52 /// - The prologue code loads and stores the stack guard onto the stack.
53 /// - The epilogue checks the value stored in the prologue against the
54 /// original value. It calls __stack_chk_fail if they differ.
55 bool InsertStackProtectors();
Bill Wendling2b58ce52008-11-04 02:10:20 +000056
57 /// CreateFailBB - Create a basic block to jump to when the stack protector
58 /// check fails.
Bill Wendling613f7742008-11-05 00:00:21 +000059 BasicBlock *CreateFailBB();
Bill Wendling2b58ce52008-11-04 02:10:20 +000060
61 /// RequiresStackProtector - Check whether or not this function needs a
62 /// stack protector based upon the stack protector level.
Bill Wendling80a320d2008-11-04 21:53:09 +000063 bool RequiresStackProtector() const;
Bill Wendling2b58ce52008-11-04 02:10:20 +000064 public:
65 static char ID; // Pass identification, replacement for typeid.
Bill Wendling613f7742008-11-05 00:00:21 +000066 StackProtector() : FunctionPass(&ID), Level(SSP::OFF), TLI(0) {}
Bill Wendling80a320d2008-11-04 21:53:09 +000067 StackProtector(SSP::StackProtectorLevel lvl, const TargetLowering *tli)
Bill Wendling613f7742008-11-05 00:00:21 +000068 : FunctionPass(&ID), Level(lvl), TLI(tli) {}
Bill Wendling2b58ce52008-11-04 02:10:20 +000069
70 virtual bool runOnFunction(Function &Fn);
71 };
72} // end anonymous namespace
73
74char StackProtector::ID = 0;
75static RegisterPass<StackProtector>
76X("stack-protector", "Insert stack protectors");
77
Bill Wendling80a320d2008-11-04 21:53:09 +000078FunctionPass *llvm::createStackProtectorPass(SSP::StackProtectorLevel lvl,
79 const TargetLowering *tli) {
80 return new StackProtector(lvl, tli);
Bill Wendling2b58ce52008-11-04 02:10:20 +000081}
82
83bool StackProtector::runOnFunction(Function &Fn) {
84 F = &Fn;
85 M = F->getParent();
86
87 if (!RequiresStackProtector()) return false;
88
Bill Wendling613f7742008-11-05 00:00:21 +000089 return InsertStackProtectors();
Bill Wendling2b58ce52008-11-04 02:10:20 +000090}
91
Bill Wendling613f7742008-11-05 00:00:21 +000092/// InsertStackProtectors - Insert code into the prologue and epilogue of the
93/// function.
94///
95/// - The prologue code loads and stores the stack guard onto the stack.
96/// - The epilogue checks the value stored in the prologue against the original
97/// value. It calls __stack_chk_fail if they differ.
98bool StackProtector::InsertStackProtectors() {
Bill Wendling2b58ce52008-11-04 02:10:20 +000099 std::vector<BasicBlock*> ReturnBBs;
Bill Wendling2b58ce52008-11-04 02:10:20 +0000100
Bill Wendling613f7742008-11-05 00:00:21 +0000101 for (Function::iterator I = F->begin(); I != F->end(); ++I)
Bill Wendling80a320d2008-11-04 21:53:09 +0000102 if (isa<ReturnInst>(I->getTerminator()))
Bill Wendling2b58ce52008-11-04 02:10:20 +0000103 ReturnBBs.push_back(I);
104
Bill Wendling613f7742008-11-05 00:00:21 +0000105 // If this function doesn't return, don't bother with stack protectors.
106 if (ReturnBBs.empty()) return false;
107
108 // Insert code into the entry block that stores the __stack_chk_guard variable
109 // onto the stack.
110 BasicBlock &Entry = F->getEntryBlock();
111 Instruction *InsertPt = &Entry.front();
112 const PointerType *GuardTy = PointerType::getUnqual(Type::Int8Ty);
113
114 // The global variable for the stack guard.
115 Constant *StackGuardVar = M->getOrInsertGlobal("__stack_chk_guard", GuardTy);
116
117 // The place on the stack that the stack protector guard is kept.
118 AllocaInst *StackProtFrameSlot =
119 new AllocaInst(GuardTy, "StackProt_Frame", InsertPt);
120 LoadInst *LI = new LoadInst(StackGuardVar, "StackGuard", false, InsertPt);
121 new StoreInst(LI, StackProtFrameSlot, false, InsertPt);
122
123 // Create the basic block to jump to when the guard check fails.
124 BasicBlock *FailBB = CreateFailBB();
Bill Wendling2b58ce52008-11-04 02:10:20 +0000125
126 // Loop through the basic blocks that have return instructions. Convert this:
127 //
128 // return:
129 // ...
130 // ret ...
131 //
132 // into this:
133 //
134 // return:
135 // ...
136 // %1 = load __stack_chk_guard
137 // %2 = load <stored stack guard>
138 // %3 = cmp i1 %1, %2
139 // br i1 %3, label %SPRet, label %CallStackCheckFailBlk
140 //
Bill Wendlingb7c2c122008-11-04 22:51:24 +0000141 // SP_return:
Bill Wendling2b58ce52008-11-04 02:10:20 +0000142 // ret ...
143 //
144 // CallStackCheckFailBlk:
145 // call void @__stack_chk_fail()
146 // unreachable
147 //
148 for (std::vector<BasicBlock*>::iterator
Bill Wendling613f7742008-11-05 00:00:21 +0000149 I = ReturnBBs.begin(), E = ReturnBBs.end(); I != E; ++I) {
150 BasicBlock *BB = *I;
Bill Wendling2b58ce52008-11-04 02:10:20 +0000151 ReturnInst *RI = cast<ReturnInst>(BB->getTerminator());
152 Function::iterator InsPt = BB; ++InsPt; // Insertion point for new BB.
153
Bill Wendlingb7c2c122008-11-04 22:51:24 +0000154 // Split the basic block before the return instruction.
155 BasicBlock *NewBB = BB->splitBasicBlock(RI, "SP_return");
Bill Wendling2b58ce52008-11-04 02:10:20 +0000156
Bill Wendlingb7c2c122008-11-04 22:51:24 +0000157 // Move the newly created basic block to the point right after the old basic
Bill Wendling613f7742008-11-05 00:00:21 +0000158 // block so that it's in the "fall through" position.
Bill Wendlingb7c2c122008-11-04 22:51:24 +0000159 NewBB->removeFromParent();
160 F->getBasicBlockList().insert(InsPt, NewBB);
Bill Wendling2b58ce52008-11-04 02:10:20 +0000161
Bill Wendlingb7c2c122008-11-04 22:51:24 +0000162 // Generate the stack protector instructions in the old basic block.
Bill Wendling2b58ce52008-11-04 02:10:20 +0000163 LoadInst *LI2 = new LoadInst(StackGuardVar, "", false, BB);
164 LoadInst *LI1 = new LoadInst(StackProtFrameSlot, "", true, BB);
165 ICmpInst *Cmp = new ICmpInst(CmpInst::ICMP_EQ, LI1, LI2, "", BB);
166 BranchInst::Create(NewBB, FailBB, Cmp, BB);
167 }
Bill Wendling613f7742008-11-05 00:00:21 +0000168
169 return true;
Bill Wendling2b58ce52008-11-04 02:10:20 +0000170}
171
172/// CreateFailBB - Create a basic block to jump to when the stack protector
173/// check fails.
Bill Wendling613f7742008-11-05 00:00:21 +0000174BasicBlock *StackProtector::CreateFailBB() {
175 BasicBlock *FailBB = BasicBlock::Create("CallStackCheckFailBlk", F);
Bill Wendling2b58ce52008-11-04 02:10:20 +0000176 std::vector<const Type*> Params;
177 Constant *StackChkFail =
Bill Wendling80a320d2008-11-04 21:53:09 +0000178 M->getOrInsertFunction("__stack_chk_fail", Type::VoidTy, NULL);
Bill Wendling2b58ce52008-11-04 02:10:20 +0000179 CallInst::Create(StackChkFail, "", FailBB);
180 new UnreachableInst(FailBB);
Bill Wendling613f7742008-11-05 00:00:21 +0000181 return FailBB;
Bill Wendling2b58ce52008-11-04 02:10:20 +0000182}
183
184/// RequiresStackProtector - Check whether or not this function needs a stack
185/// protector based upon the stack protector level.
Bill Wendling80a320d2008-11-04 21:53:09 +0000186bool StackProtector::RequiresStackProtector() const {
Bill Wendling2b58ce52008-11-04 02:10:20 +0000187 switch (Level) {
188 default: return false;
Bill Wendling80a320d2008-11-04 21:53:09 +0000189 case SSP::ALL: return true;
190 case SSP::SOME: {
Bill Wendling2b58ce52008-11-04 02:10:20 +0000191 // If the size of the local variables allocated on the stack is greater than
192 // SSPBufferSize, then we require a stack protector.
193 uint64_t StackSize = 0;
Bill Wendling80a320d2008-11-04 21:53:09 +0000194 const TargetData *TD = TLI->getTargetData();
Bill Wendling2b58ce52008-11-04 02:10:20 +0000195
196 for (Function::iterator I = F->begin(), E = F->end(); I != E; ++I) {
197 BasicBlock *BB = I;
198
199 for (BasicBlock::iterator
200 II = BB->begin(), IE = BB->end(); II != IE; ++II)
Bill Wendling80a320d2008-11-04 21:53:09 +0000201 if (AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
Bill Wendling2b58ce52008-11-04 02:10:20 +0000202 if (ConstantInt *CI = dyn_cast<ConstantInt>(AI->getArraySize())) {
Bill Wendling80a320d2008-11-04 21:53:09 +0000203 uint64_t Bytes = TD->getTypeSizeInBits(AI->getAllocatedType()) / 8;
Bill Wendling2b58ce52008-11-04 02:10:20 +0000204 const APInt &Size = CI->getValue();
Bill Wendling80a320d2008-11-04 21:53:09 +0000205 StackSize += Bytes * Size.getZExtValue();
Bill Wendling2b58ce52008-11-04 02:10:20 +0000206
Bill Wendling80a320d2008-11-04 21:53:09 +0000207 if (SSPBufferSize <= StackSize)
208 return true;
209 }
210 }
211 }
Bill Wendling2b58ce52008-11-04 02:10:20 +0000212
213 return false;
214 }
215 }
216}