blob: 7adcdea8d9eac5b8ed702337d2118479b940ab44 [file] [log] [blame]
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001//===-- SafeStack.cpp - Safe Stack 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//
10// This pass splits the stack into the safe stack (kept as-is for LLVM backend)
11// and the unsafe stack (explicitly allocated and managed through the runtime
12// support library).
13//
14// http://clang.llvm.org/docs/SafeStack.html
15//
16//===----------------------------------------------------------------------===//
17
Peter Collingbourne82437bf2015-06-15 21:07:11 +000018#include "llvm/ADT/Statistic.h"
19#include "llvm/ADT/Triple.h"
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +000020#include "llvm/Analysis/ScalarEvolution.h"
21#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Evgeniy Stepanova2002b02015-09-23 18:07:56 +000022#include "llvm/CodeGen/Passes.h"
Benjamin Kramer390c33c2016-01-27 16:53:42 +000023#include "llvm/CodeGen/Passes.h"
Peter Collingbourne82437bf2015-06-15 21:07:11 +000024#include "llvm/IR/Constants.h"
Benjamin Kramer390c33c2016-01-27 16:53:42 +000025#include "llvm/IR/DIBuilder.h"
Peter Collingbourne82437bf2015-06-15 21:07:11 +000026#include "llvm/IR/DataLayout.h"
27#include "llvm/IR/DerivedTypes.h"
Peter Collingbourne82437bf2015-06-15 21:07:11 +000028#include "llvm/IR/Function.h"
Benjamin Kramer390c33c2016-01-27 16:53:42 +000029#include "llvm/IR/IRBuilder.h"
Peter Collingbourne82437bf2015-06-15 21:07:11 +000030#include "llvm/IR/InstIterator.h"
31#include "llvm/IR/Instructions.h"
32#include "llvm/IR/IntrinsicInst.h"
33#include "llvm/IR/Intrinsics.h"
Peter Collingbourne82437bf2015-06-15 21:07:11 +000034#include "llvm/IR/Module.h"
35#include "llvm/Pass.h"
36#include "llvm/Support/CommandLine.h"
37#include "llvm/Support/Debug.h"
38#include "llvm/Support/Format.h"
39#include "llvm/Support/MathExtras.h"
40#include "llvm/Support/raw_os_ostream.h"
Evgeniy Stepanova2002b02015-09-23 18:07:56 +000041#include "llvm/Target/TargetLowering.h"
42#include "llvm/Target/TargetSubtargetInfo.h"
Peter Collingbourne82437bf2015-06-15 21:07:11 +000043#include "llvm/Transforms/Utils/Local.h"
44#include "llvm/Transforms/Utils/ModuleUtils.h"
45
46using namespace llvm;
47
48#define DEBUG_TYPE "safestack"
49
Evgeniy Stepanov8827f2d2015-12-22 00:13:11 +000050enum UnsafeStackPtrStorageVal { ThreadLocalUSP, SingleThreadUSP };
51
52static cl::opt<UnsafeStackPtrStorageVal> USPStorage("safe-stack-usp-storage",
53 cl::Hidden, cl::init(ThreadLocalUSP),
54 cl::desc("Type of storage for the unsafe stack pointer"),
55 cl::values(clEnumValN(ThreadLocalUSP, "thread-local",
56 "Thread-local storage"),
57 clEnumValN(SingleThreadUSP, "single-thread",
58 "Non-thread-local storage"),
59 clEnumValEnd));
60
Peter Collingbourne82437bf2015-06-15 21:07:11 +000061namespace llvm {
62
63STATISTIC(NumFunctions, "Total number of functions");
64STATISTIC(NumUnsafeStackFunctions, "Number of functions with unsafe stack");
65STATISTIC(NumUnsafeStackRestorePointsFunctions,
66 "Number of functions that use setjmp or exceptions");
67
68STATISTIC(NumAllocas, "Total number of allocas");
69STATISTIC(NumUnsafeStaticAllocas, "Number of unsafe static allocas");
70STATISTIC(NumUnsafeDynamicAllocas, "Number of unsafe dynamic allocas");
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +000071STATISTIC(NumUnsafeByValArguments, "Number of unsafe byval arguments");
Peter Collingbourne82437bf2015-06-15 21:07:11 +000072STATISTIC(NumUnsafeStackRestorePoints, "Number of setjmps and landingpads");
73
74} // namespace llvm
75
76namespace {
77
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +000078/// Rewrite an SCEV expression for a memory access address to an expression that
79/// represents offset from the given alloca.
80///
81/// The implementation simply replaces all mentions of the alloca with zero.
82class AllocaOffsetRewriter : public SCEVRewriteVisitor<AllocaOffsetRewriter> {
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +000083 const Value *AllocaPtr;
Peter Collingbourne82437bf2015-06-15 21:07:11 +000084
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +000085public:
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +000086 AllocaOffsetRewriter(ScalarEvolution &SE, const Value *AllocaPtr)
87 : SCEVRewriteVisitor(SE), AllocaPtr(AllocaPtr) {}
Peter Collingbourne82437bf2015-06-15 21:07:11 +000088
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +000089 const SCEV *visitUnknown(const SCEVUnknown *Expr) {
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +000090 if (Expr->getValue() == AllocaPtr)
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +000091 return SE.getZero(Expr->getType());
92 return Expr;
Peter Collingbourne82437bf2015-06-15 21:07:11 +000093 }
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +000094};
Peter Collingbourne82437bf2015-06-15 21:07:11 +000095
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +000096/// The SafeStack pass splits the stack of each function into the safe
97/// stack, which is only accessed through memory safe dereferences (as
98/// determined statically), and the unsafe stack, which contains all
99/// local variables that are accessed in ways that we can't prove to
100/// be safe.
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000101class SafeStack : public FunctionPass {
Evgeniy Stepanova2002b02015-09-23 18:07:56 +0000102 const TargetMachine *TM;
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000103 const TargetLoweringBase *TL;
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000104 const DataLayout *DL;
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000105 ScalarEvolution *SE;
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000106
107 Type *StackPtrTy;
108 Type *IntPtrTy;
109 Type *Int32Ty;
110 Type *Int8Ty;
111
Evgeniy Stepanova2002b02015-09-23 18:07:56 +0000112 Value *UnsafeStackPtr = nullptr;
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000113
114 /// Unsafe stack alignment. Each stack frame must ensure that the stack is
115 /// aligned to this value. We need to re-align the unsafe stack if the
116 /// alignment of any object on the stack exceeds this value.
117 ///
118 /// 16 seems like a reasonable upper bound on the alignment of objects that we
119 /// might expect to appear on the stack on most common targets.
120 enum { StackAlignment = 16 };
121
Evgeniy Stepanovd1aad262015-10-26 18:28:25 +0000122 /// \brief Build a value representing a pointer to the unsafe stack pointer.
Evgeniy Stepanov9addbc92015-10-15 21:26:49 +0000123 Value *getOrCreateUnsafeStackPtr(IRBuilder<> &IRB, Function &F);
124
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000125 /// \brief Find all static allocas, dynamic allocas, return instructions and
126 /// stack restore points (exception unwind blocks and setjmp calls) in the
127 /// given function and append them to the respective vectors.
128 void findInsts(Function &F, SmallVectorImpl<AllocaInst *> &StaticAllocas,
129 SmallVectorImpl<AllocaInst *> &DynamicAllocas,
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000130 SmallVectorImpl<Argument *> &ByValArguments,
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000131 SmallVectorImpl<ReturnInst *> &Returns,
132 SmallVectorImpl<Instruction *> &StackRestorePoints);
133
Evgeniy Stepanova4ac3f42015-12-01 00:06:13 +0000134 /// \brief Calculate the allocation size of a given alloca. Returns 0 if the
135 /// size can not be statically determined.
136 uint64_t getStaticAllocaAllocationSize(const AllocaInst* AI);
137
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000138 /// \brief Allocate space for all static allocas in \p StaticAllocas,
139 /// replace allocas with pointers into the unsafe stack and generate code to
140 /// restore the stack pointer before all return instructions in \p Returns.
141 ///
142 /// \returns A pointer to the top of the unsafe stack after all unsafe static
143 /// allocas are allocated.
Evgeniy Stepanova2002b02015-09-23 18:07:56 +0000144 Value *moveStaticAllocasToUnsafeStack(IRBuilder<> &IRB, Function &F,
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000145 ArrayRef<AllocaInst *> StaticAllocas,
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000146 ArrayRef<Argument *> ByValArguments,
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000147 ArrayRef<ReturnInst *> Returns);
148
149 /// \brief Generate code to restore the stack after all stack restore points
150 /// in \p StackRestorePoints.
151 ///
152 /// \returns A local variable in which to maintain the dynamic top of the
153 /// unsafe stack if needed.
154 AllocaInst *
Evgeniy Stepanov8685daf2015-09-24 01:23:51 +0000155 createStackRestorePoints(IRBuilder<> &IRB, Function &F,
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000156 ArrayRef<Instruction *> StackRestorePoints,
157 Value *StaticTop, bool NeedDynamicTop);
158
159 /// \brief Replace all allocas in \p DynamicAllocas with code to allocate
160 /// space dynamically on the unsafe stack and store the dynamic unsafe stack
161 /// top to \p DynamicTop if non-null.
162 void moveDynamicAllocasToUnsafeStack(Function &F, Value *UnsafeStackPtr,
163 AllocaInst *DynamicTop,
164 ArrayRef<AllocaInst *> DynamicAllocas);
165
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000166 bool IsSafeStackAlloca(const Value *AllocaPtr, uint64_t AllocaSize);
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000167
168 bool IsMemIntrinsicSafe(const MemIntrinsic *MI, const Use &U,
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000169 const Value *AllocaPtr, uint64_t AllocaSize);
170 bool IsAccessSafe(Value *Addr, uint64_t Size, const Value *AllocaPtr,
171 uint64_t AllocaSize);
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000172
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000173public:
174 static char ID; // Pass identification, replacement for typeid.
Evgeniy Stepanova2002b02015-09-23 18:07:56 +0000175 SafeStack(const TargetMachine *TM)
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000176 : FunctionPass(ID), TM(TM), TL(nullptr), DL(nullptr) {
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000177 initializeSafeStackPass(*PassRegistry::getPassRegistry());
178 }
Evgeniy Stepanova2002b02015-09-23 18:07:56 +0000179 SafeStack() : SafeStack(nullptr) {}
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000180
Hans Wennborgaa15bff2015-09-10 16:49:58 +0000181 void getAnalysisUsage(AnalysisUsage &AU) const override {
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000182 AU.addRequired<ScalarEvolutionWrapperPass>();
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000183 }
184
Hans Wennborgaa15bff2015-09-10 16:49:58 +0000185 bool doInitialization(Module &M) override {
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000186 DL = &M.getDataLayout();
187
188 StackPtrTy = Type::getInt8PtrTy(M.getContext());
189 IntPtrTy = DL->getIntPtrType(M.getContext());
190 Int32Ty = Type::getInt32Ty(M.getContext());
191 Int8Ty = Type::getInt8Ty(M.getContext());
192
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000193 return false;
194 }
195
Hans Wennborgaa15bff2015-09-10 16:49:58 +0000196 bool runOnFunction(Function &F) override;
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000197}; // class SafeStack
198
Evgeniy Stepanova4ac3f42015-12-01 00:06:13 +0000199uint64_t SafeStack::getStaticAllocaAllocationSize(const AllocaInst* AI) {
200 uint64_t Size = DL->getTypeAllocSize(AI->getAllocatedType());
201 if (AI->isArrayAllocation()) {
202 auto C = dyn_cast<ConstantInt>(AI->getArraySize());
203 if (!C)
204 return 0;
205 Size *= C->getZExtValue();
206 }
207 return Size;
208}
209
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000210bool SafeStack::IsAccessSafe(Value *Addr, uint64_t AccessSize,
211 const Value *AllocaPtr, uint64_t AllocaSize) {
212 AllocaOffsetRewriter Rewriter(*SE, AllocaPtr);
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000213 const SCEV *Expr = Rewriter.visit(SE->getSCEV(Addr));
214
215 uint64_t BitWidth = SE->getTypeSizeInBits(Expr->getType());
216 ConstantRange AccessStartRange = SE->getUnsignedRange(Expr);
217 ConstantRange SizeRange =
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000218 ConstantRange(APInt(BitWidth, 0), APInt(BitWidth, AccessSize));
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000219 ConstantRange AccessRange = AccessStartRange.add(SizeRange);
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000220 ConstantRange AllocaRange =
221 ConstantRange(APInt(BitWidth, 0), APInt(BitWidth, AllocaSize));
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000222 bool Safe = AllocaRange.contains(AccessRange);
223
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000224 DEBUG(dbgs() << "[SafeStack] "
225 << (isa<AllocaInst>(AllocaPtr) ? "Alloca " : "ByValArgument ")
226 << *AllocaPtr << "\n"
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000227 << " Access " << *Addr << "\n"
228 << " SCEV " << *Expr
229 << " U: " << SE->getUnsignedRange(Expr)
230 << ", S: " << SE->getSignedRange(Expr) << "\n"
231 << " Range " << AccessRange << "\n"
232 << " AllocaRange " << AllocaRange << "\n"
233 << " " << (Safe ? "safe" : "unsafe") << "\n");
234
235 return Safe;
236}
237
238bool SafeStack::IsMemIntrinsicSafe(const MemIntrinsic *MI, const Use &U,
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000239 const Value *AllocaPtr,
240 uint64_t AllocaSize) {
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000241 // All MemIntrinsics have destination address in Arg0 and size in Arg2.
242 if (MI->getRawDest() != U) return true;
243 const auto *Len = dyn_cast<ConstantInt>(MI->getLength());
244 // Non-constant size => unsafe. FIXME: try SCEV getRange.
245 if (!Len) return false;
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000246 return IsAccessSafe(U, Len->getZExtValue(), AllocaPtr, AllocaSize);
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000247}
248
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000249/// Check whether a given allocation must be put on the safe
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000250/// stack or not. The function analyzes all uses of AI and checks whether it is
251/// only accessed in a memory safe way (as decided statically).
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000252bool SafeStack::IsSafeStackAlloca(const Value *AllocaPtr, uint64_t AllocaSize) {
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000253 // Go through all uses of this alloca and check whether all accesses to the
254 // allocated object are statically known to be memory safe and, hence, the
255 // object can be placed on the safe stack.
256 SmallPtrSet<const Value *, 16> Visited;
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000257 SmallVector<const Value *, 8> WorkList;
258 WorkList.push_back(AllocaPtr);
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000259
260 // A DFS search through all uses of the alloca in bitcasts/PHI/GEPs/etc.
261 while (!WorkList.empty()) {
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000262 const Value *V = WorkList.pop_back_val();
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000263 for (const Use &UI : V->uses()) {
264 auto I = cast<const Instruction>(UI.getUser());
265 assert(V == UI.get());
266
267 switch (I->getOpcode()) {
268 case Instruction::Load: {
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000269 if (!IsAccessSafe(UI, DL->getTypeStoreSize(I->getType()), AllocaPtr,
270 AllocaSize))
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000271 return false;
272 break;
273 }
274 case Instruction::VAArg:
275 // "va-arg" from a pointer is safe.
276 break;
277 case Instruction::Store: {
278 if (V == I->getOperand(0)) {
279 // Stored the pointer - conservatively assume it may be unsafe.
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000280 DEBUG(dbgs() << "[SafeStack] Unsafe alloca: " << *AllocaPtr
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000281 << "\n store of address: " << *I << "\n");
282 return false;
283 }
284
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000285 if (!IsAccessSafe(UI, DL->getTypeStoreSize(I->getOperand(0)->getType()),
286 AllocaPtr, AllocaSize))
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000287 return false;
288 break;
289 }
290 case Instruction::Ret: {
291 // Information leak.
292 return false;
293 }
294
295 case Instruction::Call:
296 case Instruction::Invoke: {
297 ImmutableCallSite CS(I);
298
299 if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
300 if (II->getIntrinsicID() == Intrinsic::lifetime_start ||
301 II->getIntrinsicID() == Intrinsic::lifetime_end)
302 continue;
303 }
304
305 if (const MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I)) {
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000306 if (!IsMemIntrinsicSafe(MI, UI, AllocaPtr, AllocaSize)) {
307 DEBUG(dbgs() << "[SafeStack] Unsafe alloca: " << *AllocaPtr
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000308 << "\n unsafe memintrinsic: " << *I
309 << "\n");
310 return false;
311 }
312 continue;
313 }
314
315 // LLVM 'nocapture' attribute is only set for arguments whose address
316 // is not stored, passed around, or used in any other non-trivial way.
317 // We assume that passing a pointer to an object as a 'nocapture
318 // readnone' argument is safe.
319 // FIXME: a more precise solution would require an interprocedural
320 // analysis here, which would look at all uses of an argument inside
321 // the function being called.
322 ImmutableCallSite::arg_iterator B = CS.arg_begin(), E = CS.arg_end();
323 for (ImmutableCallSite::arg_iterator A = B; A != E; ++A)
324 if (A->get() == V)
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000325 if (!(CS.doesNotCapture(A - B) && (CS.doesNotAccessMemory(A - B) ||
326 CS.doesNotAccessMemory()))) {
327 DEBUG(dbgs() << "[SafeStack] Unsafe alloca: " << *AllocaPtr
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000328 << "\n unsafe call: " << *I << "\n");
329 return false;
330 }
331 continue;
332 }
333
334 default:
335 if (Visited.insert(I).second)
336 WorkList.push_back(cast<const Instruction>(I));
337 }
338 }
339 }
340
341 // All uses of the alloca are safe, we can place it on the safe stack.
342 return true;
343}
344
Evgeniy Stepanov9addbc92015-10-15 21:26:49 +0000345Value *SafeStack::getOrCreateUnsafeStackPtr(IRBuilder<> &IRB, Function &F) {
Evgeniy Stepanovd1aad262015-10-26 18:28:25 +0000346 // Check if there is a target-specific location for the unsafe stack pointer.
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000347 if (TL)
348 if (Value *V = TL->getSafeStackPointerLocation(IRB))
Evgeniy Stepanovd1aad262015-10-26 18:28:25 +0000349 return V;
350
351 // Otherwise, assume the target links with compiler-rt, which provides a
352 // thread-local variable with a magic name.
Evgeniy Stepanov9addbc92015-10-15 21:26:49 +0000353 Module &M = *F.getParent();
Evgeniy Stepanovd1aad262015-10-26 18:28:25 +0000354 const char *UnsafeStackPtrVar = "__safestack_unsafe_stack_ptr";
355 auto UnsafeStackPtr =
356 dyn_cast_or_null<GlobalVariable>(M.getNamedValue(UnsafeStackPtrVar));
Evgeniy Stepanov9addbc92015-10-15 21:26:49 +0000357
Evgeniy Stepanov8827f2d2015-12-22 00:13:11 +0000358 bool UseTLS = USPStorage == ThreadLocalUSP;
359
Evgeniy Stepanovd1aad262015-10-26 18:28:25 +0000360 if (!UnsafeStackPtr) {
Evgeniy Stepanov8827f2d2015-12-22 00:13:11 +0000361 auto TLSModel = UseTLS ?
362 GlobalValue::InitialExecTLSModel :
363 GlobalValue::NotThreadLocal;
Evgeniy Stepanovd1aad262015-10-26 18:28:25 +0000364 // The global variable is not defined yet, define it ourselves.
365 // We use the initial-exec TLS model because we do not support the
366 // variable living anywhere other than in the main executable.
367 UnsafeStackPtr = new GlobalVariable(
Eugene Zelenkoffec81c2015-11-04 22:32:32 +0000368 M, StackPtrTy, false, GlobalValue::ExternalLinkage, nullptr,
Evgeniy Stepanov8827f2d2015-12-22 00:13:11 +0000369 UnsafeStackPtrVar, nullptr, TLSModel);
Evgeniy Stepanov9addbc92015-10-15 21:26:49 +0000370 } else {
Evgeniy Stepanovd1aad262015-10-26 18:28:25 +0000371 // The variable exists, check its type and attributes.
372 if (UnsafeStackPtr->getValueType() != StackPtrTy)
373 report_fatal_error(Twine(UnsafeStackPtrVar) + " must have void* type");
Evgeniy Stepanov8827f2d2015-12-22 00:13:11 +0000374 if (UseTLS != UnsafeStackPtr->isThreadLocal())
375 report_fatal_error(Twine(UnsafeStackPtrVar) + " must " +
376 (UseTLS ? "" : "not ") + "be thread-local");
Evgeniy Stepanov9addbc92015-10-15 21:26:49 +0000377 }
Evgeniy Stepanovd1aad262015-10-26 18:28:25 +0000378 return UnsafeStackPtr;
Evgeniy Stepanov9addbc92015-10-15 21:26:49 +0000379}
380
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000381void SafeStack::findInsts(Function &F,
382 SmallVectorImpl<AllocaInst *> &StaticAllocas,
383 SmallVectorImpl<AllocaInst *> &DynamicAllocas,
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000384 SmallVectorImpl<Argument *> &ByValArguments,
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000385 SmallVectorImpl<ReturnInst *> &Returns,
386 SmallVectorImpl<Instruction *> &StackRestorePoints) {
Nico Rieck78199512015-08-06 19:10:45 +0000387 for (Instruction &I : instructions(&F)) {
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000388 if (auto AI = dyn_cast<AllocaInst>(&I)) {
389 ++NumAllocas;
390
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000391 uint64_t Size = getStaticAllocaAllocationSize(AI);
392 if (IsSafeStackAlloca(AI, Size))
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000393 continue;
394
395 if (AI->isStaticAlloca()) {
396 ++NumUnsafeStaticAllocas;
397 StaticAllocas.push_back(AI);
398 } else {
399 ++NumUnsafeDynamicAllocas;
400 DynamicAllocas.push_back(AI);
401 }
402 } else if (auto RI = dyn_cast<ReturnInst>(&I)) {
403 Returns.push_back(RI);
404 } else if (auto CI = dyn_cast<CallInst>(&I)) {
405 // setjmps require stack restore.
406 if (CI->getCalledFunction() && CI->canReturnTwice())
407 StackRestorePoints.push_back(CI);
408 } else if (auto LP = dyn_cast<LandingPadInst>(&I)) {
409 // Exception landing pads require stack restore.
410 StackRestorePoints.push_back(LP);
411 } else if (auto II = dyn_cast<IntrinsicInst>(&I)) {
412 if (II->getIntrinsicID() == Intrinsic::gcroot)
413 llvm::report_fatal_error(
414 "gcroot intrinsic not compatible with safestack attribute");
415 }
416 }
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000417 for (Argument &Arg : F.args()) {
418 if (!Arg.hasByValAttr())
419 continue;
420 uint64_t Size =
421 DL->getTypeStoreSize(Arg.getType()->getPointerElementType());
422 if (IsSafeStackAlloca(&Arg, Size))
423 continue;
424
425 ++NumUnsafeByValArguments;
426 ByValArguments.push_back(&Arg);
427 }
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000428}
429
430AllocaInst *
Evgeniy Stepanov8685daf2015-09-24 01:23:51 +0000431SafeStack::createStackRestorePoints(IRBuilder<> &IRB, Function &F,
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000432 ArrayRef<Instruction *> StackRestorePoints,
433 Value *StaticTop, bool NeedDynamicTop) {
434 if (StackRestorePoints.empty())
435 return nullptr;
436
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000437 // We need the current value of the shadow stack pointer to restore
438 // after longjmp or exception catching.
439
440 // FIXME: On some platforms this could be handled by the longjmp/exception
441 // runtime itself.
442
443 AllocaInst *DynamicTop = nullptr;
444 if (NeedDynamicTop)
445 // If we also have dynamic alloca's, the stack pointer value changes
446 // throughout the function. For now we store it in an alloca.
447 DynamicTop = IRB.CreateAlloca(StackPtrTy, /*ArraySize=*/nullptr,
448 "unsafe_stack_dynamic_ptr");
449
450 if (!StaticTop)
451 // We need the original unsafe stack pointer value, even if there are
452 // no unsafe static allocas.
453 StaticTop = IRB.CreateLoad(UnsafeStackPtr, false, "unsafe_stack_ptr");
454
455 if (NeedDynamicTop)
456 IRB.CreateStore(StaticTop, DynamicTop);
457
458 // Restore current stack pointer after longjmp/exception catch.
459 for (Instruction *I : StackRestorePoints) {
460 ++NumUnsafeStackRestorePoints;
461
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000462 IRB.SetInsertPoint(I->getNextNode());
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000463 Value *CurrentTop = DynamicTop ? IRB.CreateLoad(DynamicTop) : StaticTop;
464 IRB.CreateStore(CurrentTop, UnsafeStackPtr);
465 }
466
467 return DynamicTop;
468}
469
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000470Value *SafeStack::moveStaticAllocasToUnsafeStack(
471 IRBuilder<> &IRB, Function &F, ArrayRef<AllocaInst *> StaticAllocas,
472 ArrayRef<Argument *> ByValArguments, ArrayRef<ReturnInst *> Returns) {
473 if (StaticAllocas.empty() && ByValArguments.empty())
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000474 return nullptr;
475
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000476 DIBuilder DIB(*F.getParent());
477
478 // We explicitly compute and set the unsafe stack layout for all unsafe
479 // static alloca instructions. We save the unsafe "base pointer" in the
480 // prologue into a local variable and restore it in the epilogue.
481
482 // Load the current stack pointer (we'll also use it as a base pointer).
483 // FIXME: use a dedicated register for it ?
484 Instruction *BasePointer =
485 IRB.CreateLoad(UnsafeStackPtr, false, "unsafe_stack_ptr");
486 assert(BasePointer->getType() == StackPtrTy);
487
488 for (ReturnInst *RI : Returns) {
489 IRB.SetInsertPoint(RI);
490 IRB.CreateStore(BasePointer, UnsafeStackPtr);
491 }
492
493 // Compute maximum alignment among static objects on the unsafe stack.
494 unsigned MaxAlignment = 0;
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000495 for (Argument *Arg : ByValArguments) {
496 Type *Ty = Arg->getType()->getPointerElementType();
497 unsigned Align = std::max((unsigned)DL->getPrefTypeAlignment(Ty),
498 Arg->getParamAlignment());
499 if (Align > MaxAlignment)
500 MaxAlignment = Align;
501 }
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000502 for (AllocaInst *AI : StaticAllocas) {
503 Type *Ty = AI->getAllocatedType();
504 unsigned Align =
505 std::max((unsigned)DL->getPrefTypeAlignment(Ty), AI->getAlignment());
506 if (Align > MaxAlignment)
507 MaxAlignment = Align;
508 }
509
510 if (MaxAlignment > StackAlignment) {
511 // Re-align the base pointer according to the max requested alignment.
512 assert(isPowerOf2_32(MaxAlignment));
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000513 IRB.SetInsertPoint(BasePointer->getNextNode());
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000514 BasePointer = cast<Instruction>(IRB.CreateIntToPtr(
515 IRB.CreateAnd(IRB.CreatePtrToInt(BasePointer, IntPtrTy),
516 ConstantInt::get(IntPtrTy, ~uint64_t(MaxAlignment - 1))),
517 StackPtrTy));
518 }
519
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000520 int64_t StaticOffset = 0; // Current stack top.
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000521 IRB.SetInsertPoint(BasePointer->getNextNode());
522
523 for (Argument *Arg : ByValArguments) {
524 Type *Ty = Arg->getType()->getPointerElementType();
525
526 uint64_t Size = DL->getTypeStoreSize(Ty);
527 if (Size == 0)
528 Size = 1; // Don't create zero-sized stack objects.
529
530 // Ensure the object is properly aligned.
531 unsigned Align = std::max((unsigned)DL->getPrefTypeAlignment(Ty),
532 Arg->getParamAlignment());
533
534 // Add alignment.
535 // NOTE: we ensure that BasePointer itself is aligned to >= Align.
536 StaticOffset += Size;
Rui Ueyamada00f2f2016-01-14 21:06:47 +0000537 StaticOffset = alignTo(StaticOffset, Align);
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000538
539 Value *Off = IRB.CreateGEP(BasePointer, // BasePointer is i8*
540 ConstantInt::get(Int32Ty, -StaticOffset));
541 Value *NewArg = IRB.CreateBitCast(Off, Arg->getType(),
542 Arg->getName() + ".unsafe-byval");
543
544 // Replace alloc with the new location.
545 replaceDbgDeclare(Arg, BasePointer, BasePointer->getNextNode(), DIB,
546 /*Deref=*/true, -StaticOffset);
547 Arg->replaceAllUsesWith(NewArg);
548 IRB.SetInsertPoint(cast<Instruction>(NewArg)->getNextNode());
549 IRB.CreateMemCpy(Off, Arg, Size, Arg->getParamAlignment());
550 }
551
552 // Allocate space for every unsafe static AllocaInst on the unsafe stack.
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000553 for (AllocaInst *AI : StaticAllocas) {
554 IRB.SetInsertPoint(AI);
555
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000556 Type *Ty = AI->getAllocatedType();
Evgeniy Stepanova4ac3f42015-12-01 00:06:13 +0000557 uint64_t Size = getStaticAllocaAllocationSize(AI);
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000558 if (Size == 0)
559 Size = 1; // Don't create zero-sized stack objects.
560
561 // Ensure the object is properly aligned.
562 unsigned Align =
563 std::max((unsigned)DL->getPrefTypeAlignment(Ty), AI->getAlignment());
564
565 // Add alignment.
566 // NOTE: we ensure that BasePointer itself is aligned to >= Align.
567 StaticOffset += Size;
Rui Ueyamada00f2f2016-01-14 21:06:47 +0000568 StaticOffset = alignTo(StaticOffset, Align);
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000569
570 Value *Off = IRB.CreateGEP(BasePointer, // BasePointer is i8*
571 ConstantInt::get(Int32Ty, -StaticOffset));
572 Value *NewAI = IRB.CreateBitCast(Off, AI->getType(), AI->getName());
573 if (AI->hasName() && isa<Instruction>(NewAI))
574 cast<Instruction>(NewAI)->takeName(AI);
575
576 // Replace alloc with the new location.
Evgeniy Stepanovf6081112015-09-30 19:55:43 +0000577 replaceDbgDeclareForAlloca(AI, BasePointer, DIB, /*Deref=*/true, -StaticOffset);
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000578 AI->replaceAllUsesWith(NewAI);
579 AI->eraseFromParent();
580 }
581
582 // Re-align BasePointer so that our callees would see it aligned as
583 // expected.
584 // FIXME: no need to update BasePointer in leaf functions.
Rui Ueyamada00f2f2016-01-14 21:06:47 +0000585 StaticOffset = alignTo(StaticOffset, StackAlignment);
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000586
587 // Update shadow stack pointer in the function epilogue.
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000588 IRB.SetInsertPoint(BasePointer->getNextNode());
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000589
590 Value *StaticTop =
591 IRB.CreateGEP(BasePointer, ConstantInt::get(Int32Ty, -StaticOffset),
592 "unsafe_stack_static_top");
593 IRB.CreateStore(StaticTop, UnsafeStackPtr);
594 return StaticTop;
595}
596
597void SafeStack::moveDynamicAllocasToUnsafeStack(
598 Function &F, Value *UnsafeStackPtr, AllocaInst *DynamicTop,
599 ArrayRef<AllocaInst *> DynamicAllocas) {
600 DIBuilder DIB(*F.getParent());
601
602 for (AllocaInst *AI : DynamicAllocas) {
603 IRBuilder<> IRB(AI);
604
605 // Compute the new SP value (after AI).
606 Value *ArraySize = AI->getArraySize();
607 if (ArraySize->getType() != IntPtrTy)
608 ArraySize = IRB.CreateIntCast(ArraySize, IntPtrTy, false);
609
610 Type *Ty = AI->getAllocatedType();
611 uint64_t TySize = DL->getTypeAllocSize(Ty);
612 Value *Size = IRB.CreateMul(ArraySize, ConstantInt::get(IntPtrTy, TySize));
613
614 Value *SP = IRB.CreatePtrToInt(IRB.CreateLoad(UnsafeStackPtr), IntPtrTy);
615 SP = IRB.CreateSub(SP, Size);
616
617 // Align the SP value to satisfy the AllocaInst, type and stack alignments.
618 unsigned Align = std::max(
619 std::max((unsigned)DL->getPrefTypeAlignment(Ty), AI->getAlignment()),
620 (unsigned)StackAlignment);
621
622 assert(isPowerOf2_32(Align));
623 Value *NewTop = IRB.CreateIntToPtr(
624 IRB.CreateAnd(SP, ConstantInt::get(IntPtrTy, ~uint64_t(Align - 1))),
625 StackPtrTy);
626
627 // Save the stack pointer.
628 IRB.CreateStore(NewTop, UnsafeStackPtr);
629 if (DynamicTop)
630 IRB.CreateStore(NewTop, DynamicTop);
631
Evgeniy Stepanov9842d612015-11-25 22:52:30 +0000632 Value *NewAI = IRB.CreatePointerCast(NewTop, AI->getType());
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000633 if (AI->hasName() && isa<Instruction>(NewAI))
634 NewAI->takeName(AI);
635
636 replaceDbgDeclareForAlloca(AI, NewAI, DIB, /*Deref=*/true);
637 AI->replaceAllUsesWith(NewAI);
638 AI->eraseFromParent();
639 }
640
641 if (!DynamicAllocas.empty()) {
642 // Now go through the instructions again, replacing stacksave/stackrestore.
643 for (inst_iterator It = inst_begin(&F), Ie = inst_end(&F); It != Ie;) {
644 Instruction *I = &*(It++);
645 auto II = dyn_cast<IntrinsicInst>(I);
646 if (!II)
647 continue;
648
649 if (II->getIntrinsicID() == Intrinsic::stacksave) {
650 IRBuilder<> IRB(II);
651 Instruction *LI = IRB.CreateLoad(UnsafeStackPtr);
652 LI->takeName(II);
653 II->replaceAllUsesWith(LI);
654 II->eraseFromParent();
655 } else if (II->getIntrinsicID() == Intrinsic::stackrestore) {
656 IRBuilder<> IRB(II);
657 Instruction *SI = IRB.CreateStore(II->getArgOperand(0), UnsafeStackPtr);
658 SI->takeName(II);
659 assert(II->use_empty());
660 II->eraseFromParent();
661 }
662 }
663 }
664}
665
666bool SafeStack::runOnFunction(Function &F) {
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000667 DEBUG(dbgs() << "[SafeStack] Function: " << F.getName() << "\n");
668
669 if (!F.hasFnAttribute(Attribute::SafeStack)) {
670 DEBUG(dbgs() << "[SafeStack] safestack is not requested"
671 " for this function\n");
672 return false;
673 }
674
675 if (F.isDeclaration()) {
676 DEBUG(dbgs() << "[SafeStack] function definition"
677 " is not available\n");
678 return false;
679 }
680
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000681 TL = TM ? TM->getSubtargetImpl(F)->getTargetLowering() : nullptr;
682 SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE();
Evgeniy Stepanova2002b02015-09-23 18:07:56 +0000683
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000684 {
685 // Make sure the regular stack protector won't run on this function
686 // (safestack attribute takes precedence).
687 AttrBuilder B;
688 B.addAttribute(Attribute::StackProtect)
689 .addAttribute(Attribute::StackProtectReq)
690 .addAttribute(Attribute::StackProtectStrong);
691 F.removeAttributes(
692 AttributeSet::FunctionIndex,
693 AttributeSet::get(F.getContext(), AttributeSet::FunctionIndex, B));
694 }
695
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000696 ++NumFunctions;
697
698 SmallVector<AllocaInst *, 16> StaticAllocas;
699 SmallVector<AllocaInst *, 4> DynamicAllocas;
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000700 SmallVector<Argument *, 4> ByValArguments;
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000701 SmallVector<ReturnInst *, 4> Returns;
702
703 // Collect all points where stack gets unwound and needs to be restored
704 // This is only necessary because the runtime (setjmp and unwind code) is
705 // not aware of the unsafe stack and won't unwind/restore it prorerly.
706 // To work around this problem without changing the runtime, we insert
707 // instrumentation to restore the unsafe stack pointer when necessary.
708 SmallVector<Instruction *, 4> StackRestorePoints;
709
710 // Find all static and dynamic alloca instructions that must be moved to the
711 // unsafe stack, all return instructions and stack restore points.
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000712 findInsts(F, StaticAllocas, DynamicAllocas, ByValArguments, Returns,
713 StackRestorePoints);
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000714
715 if (StaticAllocas.empty() && DynamicAllocas.empty() &&
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000716 ByValArguments.empty() && StackRestorePoints.empty())
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000717 return false; // Nothing to do in this function.
718
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000719 if (!StaticAllocas.empty() || !DynamicAllocas.empty() ||
720 !ByValArguments.empty())
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000721 ++NumUnsafeStackFunctions; // This function has the unsafe stack.
722
723 if (!StackRestorePoints.empty())
724 ++NumUnsafeStackRestorePointsFunctions;
725
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000726 IRBuilder<> IRB(&F.front(), F.begin()->getFirstInsertionPt());
Evgeniy Stepanov9addbc92015-10-15 21:26:49 +0000727 UnsafeStackPtr = getOrCreateUnsafeStackPtr(IRB, F);
Peter Collingbournede26a912015-06-22 20:26:54 +0000728
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000729 // The top of the unsafe stack after all unsafe static allocas are allocated.
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000730 Value *StaticTop = moveStaticAllocasToUnsafeStack(IRB, F, StaticAllocas,
731 ByValArguments, Returns);
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000732
733 // Safe stack object that stores the current unsafe stack top. It is updated
734 // as unsafe dynamic (non-constant-sized) allocas are allocated and freed.
735 // This is only needed if we need to restore stack pointer after longjmp
736 // or exceptions, and we have dynamic allocations.
737 // FIXME: a better alternative might be to store the unsafe stack pointer
738 // before setjmp / invoke instructions.
739 AllocaInst *DynamicTop = createStackRestorePoints(
Evgeniy Stepanov8685daf2015-09-24 01:23:51 +0000740 IRB, F, StackRestorePoints, StaticTop, !DynamicAllocas.empty());
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000741
742 // Handle dynamic allocas.
743 moveDynamicAllocasToUnsafeStack(F, UnsafeStackPtr, DynamicTop,
744 DynamicAllocas);
745
746 DEBUG(dbgs() << "[SafeStack] safestack applied\n");
747 return true;
748}
749
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000750} // anonymous namespace
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000751
752char SafeStack::ID = 0;
Evgeniy Stepanova2002b02015-09-23 18:07:56 +0000753INITIALIZE_TM_PASS_BEGIN(SafeStack, "safe-stack",
754 "Safe Stack instrumentation pass", false, false)
755INITIALIZE_TM_PASS_END(SafeStack, "safe-stack",
756 "Safe Stack instrumentation pass", false, false)
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000757
Evgeniy Stepanova2002b02015-09-23 18:07:56 +0000758FunctionPass *llvm::createSafeStackPass(const llvm::TargetMachine *TM) {
759 return new SafeStack(TM);
760}