blob: 7b1c7fe49e4aaf3f8c5f987942d2648fc697cc59 [file] [log] [blame]
Eugene Zelenko618c5552017-09-13 21:15:20 +00001//===- SafeStack.cpp - Safe Stack Insertion -------------------------------===//
Peter Collingbourne82437bf2015-06-15 21:07:11 +00002//
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
Evgeniy Stepanova5da2562016-06-29 20:37:43 +000018#include "SafeStackColoring.h"
19#include "SafeStackLayout.h"
Eugene Zelenko618c5552017-09-13 21:15:20 +000020#include "llvm/ADT/APInt.h"
21#include "llvm/ADT/ArrayRef.h"
22#include "llvm/ADT/SmallPtrSet.h"
23#include "llvm/ADT/SmallVector.h"
Peter Collingbourne82437bf2015-06-15 21:07:11 +000024#include "llvm/ADT/Statistic.h"
Ahmed Bougacha00d68222017-05-10 00:39:22 +000025#include "llvm/Analysis/AssumptionCache.h"
Evgeniy Stepanovf17120a2016-04-11 22:27:48 +000026#include "llvm/Analysis/BranchProbabilityInfo.h"
Evgeniy Stepanovd5a6fdb2018-01-23 21:27:07 +000027#include "llvm/Analysis/InlineCost.h"
Eugene Zelenko618c5552017-09-13 21:15:20 +000028#include "llvm/Analysis/LoopInfo.h"
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +000029#include "llvm/Analysis/ScalarEvolution.h"
30#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Eugene Zelenko618c5552017-09-13 21:15:20 +000031#include "llvm/Analysis/TargetLibraryInfo.h"
David Blaikie31b98d22018-06-04 21:23:21 +000032#include "llvm/Transforms/Utils/Local.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000033#include "llvm/CodeGen/TargetLowering.h"
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +000034#include "llvm/CodeGen/TargetPassConfig.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000035#include "llvm/CodeGen/TargetSubtargetInfo.h"
Eugene Zelenko618c5552017-09-13 21:15:20 +000036#include "llvm/IR/Argument.h"
37#include "llvm/IR/Attributes.h"
38#include "llvm/IR/CallSite.h"
39#include "llvm/IR/ConstantRange.h"
Peter Collingbourne82437bf2015-06-15 21:07:11 +000040#include "llvm/IR/Constants.h"
Benjamin Kramer390c33c2016-01-27 16:53:42 +000041#include "llvm/IR/DIBuilder.h"
Peter Collingbourne82437bf2015-06-15 21:07:11 +000042#include "llvm/IR/DataLayout.h"
43#include "llvm/IR/DerivedTypes.h"
Eugene Zelenko618c5552017-09-13 21:15:20 +000044#include "llvm/IR/Dominators.h"
Peter Collingbourne82437bf2015-06-15 21:07:11 +000045#include "llvm/IR/Function.h"
Benjamin Kramer390c33c2016-01-27 16:53:42 +000046#include "llvm/IR/IRBuilder.h"
Peter Collingbourne82437bf2015-06-15 21:07:11 +000047#include "llvm/IR/InstIterator.h"
Eugene Zelenko618c5552017-09-13 21:15:20 +000048#include "llvm/IR/Instruction.h"
Peter Collingbourne82437bf2015-06-15 21:07:11 +000049#include "llvm/IR/Instructions.h"
50#include "llvm/IR/IntrinsicInst.h"
51#include "llvm/IR/Intrinsics.h"
Evgeniy Stepanovf17120a2016-04-11 22:27:48 +000052#include "llvm/IR/MDBuilder.h"
Peter Collingbourne82437bf2015-06-15 21:07:11 +000053#include "llvm/IR/Module.h"
Eugene Zelenko618c5552017-09-13 21:15:20 +000054#include "llvm/IR/Type.h"
55#include "llvm/IR/Use.h"
56#include "llvm/IR/User.h"
57#include "llvm/IR/Value.h"
Peter Collingbourne82437bf2015-06-15 21:07:11 +000058#include "llvm/Pass.h"
Eugene Zelenko618c5552017-09-13 21:15:20 +000059#include "llvm/Support/Casting.h"
Peter Collingbourne82437bf2015-06-15 21:07:11 +000060#include "llvm/Support/Debug.h"
Eugene Zelenko618c5552017-09-13 21:15:20 +000061#include "llvm/Support/ErrorHandling.h"
Peter Collingbourne82437bf2015-06-15 21:07:11 +000062#include "llvm/Support/MathExtras.h"
Eugene Zelenko618c5552017-09-13 21:15:20 +000063#include "llvm/Support/raw_ostream.h"
Eugene Zelenko618c5552017-09-13 21:15:20 +000064#include "llvm/Target/TargetMachine.h"
Evgeniy Stepanovf17120a2016-04-11 22:27:48 +000065#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Evgeniy Stepanovd5a6fdb2018-01-23 21:27:07 +000066#include "llvm/Transforms/Utils/Cloning.h"
Eugene Zelenko618c5552017-09-13 21:15:20 +000067#include <algorithm>
68#include <cassert>
69#include <cstdint>
70#include <string>
71#include <utility>
Peter Collingbourne82437bf2015-06-15 21:07:11 +000072
73using namespace llvm;
Evgeniy Stepanova5da2562016-06-29 20:37:43 +000074using namespace llvm::safestack;
Peter Collingbourne82437bf2015-06-15 21:07:11 +000075
Matthias Braun1527baa2017-05-25 21:26:32 +000076#define DEBUG_TYPE "safe-stack"
Peter Collingbourne82437bf2015-06-15 21:07:11 +000077
78namespace llvm {
79
80STATISTIC(NumFunctions, "Total number of functions");
81STATISTIC(NumUnsafeStackFunctions, "Number of functions with unsafe stack");
82STATISTIC(NumUnsafeStackRestorePointsFunctions,
83 "Number of functions that use setjmp or exceptions");
84
85STATISTIC(NumAllocas, "Total number of allocas");
86STATISTIC(NumUnsafeStaticAllocas, "Number of unsafe static allocas");
87STATISTIC(NumUnsafeDynamicAllocas, "Number of unsafe dynamic allocas");
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +000088STATISTIC(NumUnsafeByValArguments, "Number of unsafe byval arguments");
Peter Collingbourne82437bf2015-06-15 21:07:11 +000089STATISTIC(NumUnsafeStackRestorePoints, "Number of setjmps and landingpads");
90
91} // namespace llvm
92
Evgeniy Stepanovd5a6fdb2018-01-23 21:27:07 +000093/// Use __safestack_pointer_address even if the platform has a faster way of
94/// access safe stack pointer.
95static cl::opt<bool>
96 SafeStackUsePointerAddress("safestack-use-pointer-address",
97 cl::init(false), cl::Hidden);
98
99
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000100namespace {
101
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000102/// Rewrite an SCEV expression for a memory access address to an expression that
103/// represents offset from the given alloca.
104///
105/// The implementation simply replaces all mentions of the alloca with zero.
106class AllocaOffsetRewriter : public SCEVRewriteVisitor<AllocaOffsetRewriter> {
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000107 const Value *AllocaPtr;
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000108
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000109public:
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000110 AllocaOffsetRewriter(ScalarEvolution &SE, const Value *AllocaPtr)
111 : SCEVRewriteVisitor(SE), AllocaPtr(AllocaPtr) {}
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000112
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000113 const SCEV *visitUnknown(const SCEVUnknown *Expr) {
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000114 if (Expr->getValue() == AllocaPtr)
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000115 return SE.getZero(Expr->getType());
116 return Expr;
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000117 }
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000118};
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000119
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000120/// The SafeStack pass splits the stack of each function into the safe
121/// stack, which is only accessed through memory safe dereferences (as
122/// determined statically), and the unsafe stack, which contains all
123/// local variables that are accessed in ways that we can't prove to
124/// be safe.
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000125class SafeStack {
126 Function &F;
127 const TargetLoweringBase &TL;
128 const DataLayout &DL;
129 ScalarEvolution &SE;
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000130
131 Type *StackPtrTy;
132 Type *IntPtrTy;
133 Type *Int32Ty;
134 Type *Int8Ty;
135
Evgeniy Stepanova2002b02015-09-23 18:07:56 +0000136 Value *UnsafeStackPtr = nullptr;
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000137
138 /// Unsafe stack alignment. Each stack frame must ensure that the stack is
139 /// aligned to this value. We need to re-align the unsafe stack if the
140 /// alignment of any object on the stack exceeds this value.
141 ///
142 /// 16 seems like a reasonable upper bound on the alignment of objects that we
143 /// might expect to appear on the stack on most common targets.
144 enum { StackAlignment = 16 };
145
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000146 /// Return the value of the stack canary.
Evgeniy Stepanovf17120a2016-04-11 22:27:48 +0000147 Value *getStackGuard(IRBuilder<> &IRB, Function &F);
148
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000149 /// Load stack guard from the frame and check if it has changed.
Evgeniy Stepanovf17120a2016-04-11 22:27:48 +0000150 void checkStackGuard(IRBuilder<> &IRB, Function &F, ReturnInst &RI,
151 AllocaInst *StackGuardSlot, Value *StackGuard);
152
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000153 /// Find all static allocas, dynamic allocas, return instructions and
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000154 /// stack restore points (exception unwind blocks and setjmp calls) in the
155 /// given function and append them to the respective vectors.
156 void findInsts(Function &F, SmallVectorImpl<AllocaInst *> &StaticAllocas,
157 SmallVectorImpl<AllocaInst *> &DynamicAllocas,
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000158 SmallVectorImpl<Argument *> &ByValArguments,
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000159 SmallVectorImpl<ReturnInst *> &Returns,
160 SmallVectorImpl<Instruction *> &StackRestorePoints);
161
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000162 /// Calculate the allocation size of a given alloca. Returns 0 if the
Evgeniy Stepanova4ac3f42015-12-01 00:06:13 +0000163 /// size can not be statically determined.
164 uint64_t getStaticAllocaAllocationSize(const AllocaInst* AI);
165
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000166 /// Allocate space for all static allocas in \p StaticAllocas,
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000167 /// replace allocas with pointers into the unsafe stack and generate code to
168 /// restore the stack pointer before all return instructions in \p Returns.
169 ///
170 /// \returns A pointer to the top of the unsafe stack after all unsafe static
171 /// allocas are allocated.
Evgeniy Stepanova2002b02015-09-23 18:07:56 +0000172 Value *moveStaticAllocasToUnsafeStack(IRBuilder<> &IRB, Function &F,
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000173 ArrayRef<AllocaInst *> StaticAllocas,
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000174 ArrayRef<Argument *> ByValArguments,
Anna Zakscad79942016-02-02 01:03:11 +0000175 ArrayRef<ReturnInst *> Returns,
Evgeniy Stepanovf17120a2016-04-11 22:27:48 +0000176 Instruction *BasePointer,
177 AllocaInst *StackGuardSlot);
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000178
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000179 /// Generate code to restore the stack after all stack restore points
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000180 /// in \p StackRestorePoints.
181 ///
182 /// \returns A local variable in which to maintain the dynamic top of the
183 /// unsafe stack if needed.
184 AllocaInst *
Evgeniy Stepanov8685daf2015-09-24 01:23:51 +0000185 createStackRestorePoints(IRBuilder<> &IRB, Function &F,
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000186 ArrayRef<Instruction *> StackRestorePoints,
187 Value *StaticTop, bool NeedDynamicTop);
188
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000189 /// Replace all allocas in \p DynamicAllocas with code to allocate
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000190 /// space dynamically on the unsafe stack and store the dynamic unsafe stack
191 /// top to \p DynamicTop if non-null.
192 void moveDynamicAllocasToUnsafeStack(Function &F, Value *UnsafeStackPtr,
193 AllocaInst *DynamicTop,
194 ArrayRef<AllocaInst *> DynamicAllocas);
195
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000196 bool IsSafeStackAlloca(const Value *AllocaPtr, uint64_t AllocaSize);
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000197
198 bool IsMemIntrinsicSafe(const MemIntrinsic *MI, const Use &U,
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000199 const Value *AllocaPtr, uint64_t AllocaSize);
200 bool IsAccessSafe(Value *Addr, uint64_t Size, const Value *AllocaPtr,
201 uint64_t AllocaSize);
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000202
Evgeniy Stepanovd5a6fdb2018-01-23 21:27:07 +0000203 bool ShouldInlinePointerAddress(CallSite &CS);
204 void TryInlinePointerAddress();
205
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000206public:
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000207 SafeStack(Function &F, const TargetLoweringBase &TL, const DataLayout &DL,
208 ScalarEvolution &SE)
209 : F(F), TL(TL), DL(DL), SE(SE),
210 StackPtrTy(Type::getInt8PtrTy(F.getContext())),
211 IntPtrTy(DL.getIntPtrType(F.getContext())),
212 Int32Ty(Type::getInt32Ty(F.getContext())),
213 Int8Ty(Type::getInt8Ty(F.getContext())) {}
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000214
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000215 // Run the transformation on the associated function.
216 // Returns whether the function was changed.
217 bool run();
218};
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000219
Evgeniy Stepanova4ac3f42015-12-01 00:06:13 +0000220uint64_t SafeStack::getStaticAllocaAllocationSize(const AllocaInst* AI) {
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000221 uint64_t Size = DL.getTypeAllocSize(AI->getAllocatedType());
Evgeniy Stepanova4ac3f42015-12-01 00:06:13 +0000222 if (AI->isArrayAllocation()) {
223 auto C = dyn_cast<ConstantInt>(AI->getArraySize());
224 if (!C)
225 return 0;
226 Size *= C->getZExtValue();
227 }
228 return Size;
229}
230
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000231bool SafeStack::IsAccessSafe(Value *Addr, uint64_t AccessSize,
232 const Value *AllocaPtr, uint64_t AllocaSize) {
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000233 AllocaOffsetRewriter Rewriter(SE, AllocaPtr);
234 const SCEV *Expr = Rewriter.visit(SE.getSCEV(Addr));
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000235
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000236 uint64_t BitWidth = SE.getTypeSizeInBits(Expr->getType());
237 ConstantRange AccessStartRange = SE.getUnsignedRange(Expr);
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000238 ConstantRange SizeRange =
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000239 ConstantRange(APInt(BitWidth, 0), APInt(BitWidth, AccessSize));
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000240 ConstantRange AccessRange = AccessStartRange.add(SizeRange);
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000241 ConstantRange AllocaRange =
242 ConstantRange(APInt(BitWidth, 0), APInt(BitWidth, AllocaSize));
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000243 bool Safe = AllocaRange.contains(AccessRange);
244
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000245 LLVM_DEBUG(
246 dbgs() << "[SafeStack] "
247 << (isa<AllocaInst>(AllocaPtr) ? "Alloca " : "ByValArgument ")
248 << *AllocaPtr << "\n"
249 << " Access " << *Addr << "\n"
250 << " SCEV " << *Expr
251 << " U: " << SE.getUnsignedRange(Expr)
252 << ", S: " << SE.getSignedRange(Expr) << "\n"
253 << " Range " << AccessRange << "\n"
254 << " AllocaRange " << AllocaRange << "\n"
255 << " " << (Safe ? "safe" : "unsafe") << "\n");
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000256
257 return Safe;
258}
259
260bool SafeStack::IsMemIntrinsicSafe(const MemIntrinsic *MI, const Use &U,
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000261 const Value *AllocaPtr,
262 uint64_t AllocaSize) {
Vlad Tsyrklevich2499aee2018-08-30 20:44:51 +0000263 if (auto MTI = dyn_cast<MemTransferInst>(MI)) {
264 if (MTI->getRawSource() != U && MTI->getRawDest() != U)
265 return true;
266 } else {
267 if (MI->getRawDest() != U)
268 return true;
269 }
270
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000271 const auto *Len = dyn_cast<ConstantInt>(MI->getLength());
272 // Non-constant size => unsafe. FIXME: try SCEV getRange.
273 if (!Len) return false;
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000274 return IsAccessSafe(U, Len->getZExtValue(), AllocaPtr, AllocaSize);
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000275}
276
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000277/// Check whether a given allocation must be put on the safe
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000278/// stack or not. The function analyzes all uses of AI and checks whether it is
279/// only accessed in a memory safe way (as decided statically).
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000280bool SafeStack::IsSafeStackAlloca(const Value *AllocaPtr, uint64_t AllocaSize) {
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000281 // Go through all uses of this alloca and check whether all accesses to the
282 // allocated object are statically known to be memory safe and, hence, the
283 // object can be placed on the safe stack.
284 SmallPtrSet<const Value *, 16> Visited;
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000285 SmallVector<const Value *, 8> WorkList;
286 WorkList.push_back(AllocaPtr);
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000287
288 // A DFS search through all uses of the alloca in bitcasts/PHI/GEPs/etc.
289 while (!WorkList.empty()) {
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000290 const Value *V = WorkList.pop_back_val();
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000291 for (const Use &UI : V->uses()) {
292 auto I = cast<const Instruction>(UI.getUser());
293 assert(V == UI.get());
294
295 switch (I->getOpcode()) {
Eugene Zelenko618c5552017-09-13 21:15:20 +0000296 case Instruction::Load:
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000297 if (!IsAccessSafe(UI, DL.getTypeStoreSize(I->getType()), AllocaPtr,
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000298 AllocaSize))
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000299 return false;
300 break;
Eugene Zelenko618c5552017-09-13 21:15:20 +0000301
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000302 case Instruction::VAArg:
303 // "va-arg" from a pointer is safe.
304 break;
Eugene Zelenko618c5552017-09-13 21:15:20 +0000305 case Instruction::Store:
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000306 if (V == I->getOperand(0)) {
307 // Stored the pointer - conservatively assume it may be unsafe.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000308 LLVM_DEBUG(dbgs()
309 << "[SafeStack] Unsafe alloca: " << *AllocaPtr
310 << "\n store of address: " << *I << "\n");
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000311 return false;
312 }
313
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000314 if (!IsAccessSafe(UI, DL.getTypeStoreSize(I->getOperand(0)->getType()),
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000315 AllocaPtr, AllocaSize))
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000316 return false;
317 break;
Eugene Zelenko618c5552017-09-13 21:15:20 +0000318
319 case Instruction::Ret:
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000320 // Information leak.
321 return false;
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000322
323 case Instruction::Call:
324 case Instruction::Invoke: {
325 ImmutableCallSite CS(I);
326
327 if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
328 if (II->getIntrinsicID() == Intrinsic::lifetime_start ||
329 II->getIntrinsicID() == Intrinsic::lifetime_end)
330 continue;
331 }
332
333 if (const MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I)) {
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000334 if (!IsMemIntrinsicSafe(MI, UI, AllocaPtr, AllocaSize)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000335 LLVM_DEBUG(dbgs()
336 << "[SafeStack] Unsafe alloca: " << *AllocaPtr
337 << "\n unsafe memintrinsic: " << *I << "\n");
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000338 return false;
339 }
340 continue;
341 }
342
343 // LLVM 'nocapture' attribute is only set for arguments whose address
344 // is not stored, passed around, or used in any other non-trivial way.
345 // We assume that passing a pointer to an object as a 'nocapture
346 // readnone' argument is safe.
347 // FIXME: a more precise solution would require an interprocedural
348 // analysis here, which would look at all uses of an argument inside
349 // the function being called.
350 ImmutableCallSite::arg_iterator B = CS.arg_begin(), E = CS.arg_end();
351 for (ImmutableCallSite::arg_iterator A = B; A != E; ++A)
352 if (A->get() == V)
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000353 if (!(CS.doesNotCapture(A - B) && (CS.doesNotAccessMemory(A - B) ||
354 CS.doesNotAccessMemory()))) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000355 LLVM_DEBUG(dbgs() << "[SafeStack] Unsafe alloca: " << *AllocaPtr
356 << "\n unsafe call: " << *I << "\n");
Evgeniy Stepanov447bbdb2015-11-13 21:21:42 +0000357 return false;
358 }
359 continue;
360 }
361
362 default:
363 if (Visited.insert(I).second)
364 WorkList.push_back(cast<const Instruction>(I));
365 }
366 }
367 }
368
369 // All uses of the alloca are safe, we can place it on the safe stack.
370 return true;
371}
372
Evgeniy Stepanovf17120a2016-04-11 22:27:48 +0000373Value *SafeStack::getStackGuard(IRBuilder<> &IRB, Function &F) {
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000374 Value *StackGuardVar = TL.getIRStackGuard(IRB);
Evgeniy Stepanovf17120a2016-04-11 22:27:48 +0000375 if (!StackGuardVar)
376 StackGuardVar =
377 F.getParent()->getOrInsertGlobal("__stack_chk_guard", StackPtrTy);
378 return IRB.CreateLoad(StackGuardVar, "StackGuard");
379}
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)
Eugene Zelenko618c5552017-09-13 21:15:20 +0000413 report_fatal_error(
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000414 "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 =
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000421 DL.getTypeStoreSize(Arg.getType()->getPointerElementType());
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000422 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) {
Anna Zakscad79942016-02-02 01:03:11 +0000434 assert(StaticTop && "The stack top isn't set.");
435
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000436 if (StackRestorePoints.empty())
437 return nullptr;
438
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000439 // We need the current value of the shadow stack pointer to restore
440 // after longjmp or exception catching.
441
442 // FIXME: On some platforms this could be handled by the longjmp/exception
443 // runtime itself.
444
445 AllocaInst *DynamicTop = nullptr;
Anna Zakscad79942016-02-02 01:03:11 +0000446 if (NeedDynamicTop) {
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000447 // If we also have dynamic alloca's, the stack pointer value changes
448 // throughout the function. For now we store it in an alloca.
449 DynamicTop = IRB.CreateAlloca(StackPtrTy, /*ArraySize=*/nullptr,
450 "unsafe_stack_dynamic_ptr");
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000451 IRB.CreateStore(StaticTop, DynamicTop);
Anna Zakscad79942016-02-02 01:03:11 +0000452 }
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000453
454 // Restore current stack pointer after longjmp/exception catch.
455 for (Instruction *I : StackRestorePoints) {
456 ++NumUnsafeStackRestorePoints;
457
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000458 IRB.SetInsertPoint(I->getNextNode());
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000459 Value *CurrentTop = DynamicTop ? IRB.CreateLoad(DynamicTop) : StaticTop;
460 IRB.CreateStore(CurrentTop, UnsafeStackPtr);
461 }
462
463 return DynamicTop;
464}
465
Evgeniy Stepanovf17120a2016-04-11 22:27:48 +0000466void SafeStack::checkStackGuard(IRBuilder<> &IRB, Function &F, ReturnInst &RI,
467 AllocaInst *StackGuardSlot, Value *StackGuard) {
468 Value *V = IRB.CreateLoad(StackGuardSlot);
469 Value *Cmp = IRB.CreateICmpNE(StackGuard, V);
470
471 auto SuccessProb = BranchProbabilityInfo::getBranchProbStackProtector(true);
472 auto FailureProb = BranchProbabilityInfo::getBranchProbStackProtector(false);
473 MDNode *Weights = MDBuilder(F.getContext())
474 .createBranchWeights(SuccessProb.getNumerator(),
475 FailureProb.getNumerator());
476 Instruction *CheckTerm =
477 SplitBlockAndInsertIfThen(Cmp, &RI,
478 /* Unreachable */ true, Weights);
479 IRBuilder<> IRBFail(CheckTerm);
480 // FIXME: respect -fsanitize-trap / -ftrap-function here?
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000481 Constant *StackChkFail = F.getParent()->getOrInsertFunction(
Serge Guelton59a2d7b2017-04-11 15:01:18 +0000482 "__stack_chk_fail", IRB.getVoidTy());
Evgeniy Stepanovf17120a2016-04-11 22:27:48 +0000483 IRBFail.CreateCall(StackChkFail, {});
484}
485
Anna Zakscad79942016-02-02 01:03:11 +0000486/// We explicitly compute and set the unsafe stack layout for all unsafe
487/// static alloca instructions. We save the unsafe "base pointer" in the
488/// prologue into a local variable and restore it in the epilogue.
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000489Value *SafeStack::moveStaticAllocasToUnsafeStack(
490 IRBuilder<> &IRB, Function &F, ArrayRef<AllocaInst *> StaticAllocas,
Anna Zakscad79942016-02-02 01:03:11 +0000491 ArrayRef<Argument *> ByValArguments, ArrayRef<ReturnInst *> Returns,
Evgeniy Stepanovf17120a2016-04-11 22:27:48 +0000492 Instruction *BasePointer, AllocaInst *StackGuardSlot) {
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000493 if (StaticAllocas.empty() && ByValArguments.empty())
Anna Zakscad79942016-02-02 01:03:11 +0000494 return BasePointer;
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000495
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000496 DIBuilder DIB(*F.getParent());
497
Evgeniy Stepanova5da2562016-06-29 20:37:43 +0000498 StackColoring SSC(F, StaticAllocas);
499 SSC.run();
500 SSC.removeAllMarkers();
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000501
Evgeniy Stepanova5da2562016-06-29 20:37:43 +0000502 // Unsafe stack always grows down.
503 StackLayout SSL(StackAlignment);
Evgeniy Stepanovf17120a2016-04-11 22:27:48 +0000504 if (StackGuardSlot) {
Evgeniy Stepanova5da2562016-06-29 20:37:43 +0000505 Type *Ty = StackGuardSlot->getAllocatedType();
506 unsigned Align =
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000507 std::max(DL.getPrefTypeAlignment(Ty), StackGuardSlot->getAlignment());
Evgeniy Stepanova5da2562016-06-29 20:37:43 +0000508 SSL.addObject(StackGuardSlot, getStaticAllocaAllocationSize(StackGuardSlot),
Evgeniy Stepanov906f6fb2016-07-26 00:05:14 +0000509 Align, SSC.getFullLiveRange());
Evgeniy Stepanovf17120a2016-04-11 22:27:48 +0000510 }
511
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000512 for (Argument *Arg : ByValArguments) {
513 Type *Ty = Arg->getType()->getPointerElementType();
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000514 uint64_t Size = DL.getTypeStoreSize(Ty);
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000515 if (Size == 0)
516 Size = 1; // Don't create zero-sized stack objects.
517
518 // Ensure the object is properly aligned.
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000519 unsigned Align = std::max((unsigned)DL.getPrefTypeAlignment(Ty),
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000520 Arg->getParamAlignment());
Evgeniy Stepanova5da2562016-06-29 20:37:43 +0000521 SSL.addObject(Arg, Size, Align, SSC.getFullLiveRange());
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000522 }
523
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000524 for (AllocaInst *AI : StaticAllocas) {
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000525 Type *Ty = AI->getAllocatedType();
Evgeniy Stepanova4ac3f42015-12-01 00:06:13 +0000526 uint64_t Size = getStaticAllocaAllocationSize(AI);
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000527 if (Size == 0)
528 Size = 1; // Don't create zero-sized stack objects.
529
530 // Ensure the object is properly aligned.
531 unsigned Align =
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000532 std::max((unsigned)DL.getPrefTypeAlignment(Ty), AI->getAlignment());
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000533
Evgeniy Stepanova5da2562016-06-29 20:37:43 +0000534 SSL.addObject(AI, Size, Align, SSC.getLiveRange(AI));
535 }
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000536
Evgeniy Stepanova5da2562016-06-29 20:37:43 +0000537 SSL.computeLayout();
538 unsigned FrameAlignment = SSL.getFrameAlignment();
539
540 // FIXME: tell SSL that we start at a less-then-MaxAlignment aligned location
541 // (AlignmentSkew).
542 if (FrameAlignment > StackAlignment) {
543 // Re-align the base pointer according to the max requested alignment.
544 assert(isPowerOf2_32(FrameAlignment));
545 IRB.SetInsertPoint(BasePointer->getNextNode());
546 BasePointer = cast<Instruction>(IRB.CreateIntToPtr(
547 IRB.CreateAnd(IRB.CreatePtrToInt(BasePointer, IntPtrTy),
548 ConstantInt::get(IntPtrTy, ~uint64_t(FrameAlignment - 1))),
549 StackPtrTy));
550 }
551
552 IRB.SetInsertPoint(BasePointer->getNextNode());
553
554 if (StackGuardSlot) {
555 unsigned Offset = SSL.getObjectOffset(StackGuardSlot);
556 Value *Off = IRB.CreateGEP(BasePointer, // BasePointer is i8*
557 ConstantInt::get(Int32Ty, -Offset));
558 Value *NewAI =
559 IRB.CreateBitCast(Off, StackGuardSlot->getType(), "StackGuardSlot");
560
561 // Replace alloc with the new location.
562 StackGuardSlot->replaceAllUsesWith(NewAI);
563 StackGuardSlot->eraseFromParent();
564 }
565
566 for (Argument *Arg : ByValArguments) {
567 unsigned Offset = SSL.getObjectOffset(Arg);
Daniel Neilson095d7292018-02-12 22:39:47 +0000568 unsigned Align = SSL.getObjectAlignment(Arg);
Evgeniy Stepanova5da2562016-06-29 20:37:43 +0000569 Type *Ty = Arg->getType()->getPointerElementType();
570
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000571 uint64_t Size = DL.getTypeStoreSize(Ty);
Evgeniy Stepanova5da2562016-06-29 20:37:43 +0000572 if (Size == 0)
573 Size = 1; // Don't create zero-sized stack objects.
574
575 Value *Off = IRB.CreateGEP(BasePointer, // BasePointer is i8*
576 ConstantInt::get(Int32Ty, -Offset));
577 Value *NewArg = IRB.CreateBitCast(Off, Arg->getType(),
578 Arg->getName() + ".unsafe-byval");
579
580 // Replace alloc with the new location.
581 replaceDbgDeclare(Arg, BasePointer, BasePointer->getNextNode(), DIB,
Adrian Prantld1317012017-12-08 21:58:18 +0000582 DIExpression::NoDeref, -Offset, DIExpression::NoDeref);
Evgeniy Stepanova5da2562016-06-29 20:37:43 +0000583 Arg->replaceAllUsesWith(NewArg);
584 IRB.SetInsertPoint(cast<Instruction>(NewArg)->getNextNode());
Daniel Neilson095d7292018-02-12 22:39:47 +0000585 IRB.CreateMemCpy(Off, Align, Arg, Arg->getParamAlignment(), Size);
Evgeniy Stepanova5da2562016-06-29 20:37:43 +0000586 }
587
588 // Allocate space for every unsafe static AllocaInst on the unsafe stack.
589 for (AllocaInst *AI : StaticAllocas) {
590 IRB.SetInsertPoint(AI);
591 unsigned Offset = SSL.getObjectOffset(AI);
592
593 uint64_t Size = getStaticAllocaAllocationSize(AI);
594 if (Size == 0)
595 Size = 1; // Don't create zero-sized stack objects.
596
Adrian Prantld1317012017-12-08 21:58:18 +0000597 replaceDbgDeclareForAlloca(AI, BasePointer, DIB, DIExpression::NoDeref,
598 -Offset, DIExpression::NoDeref);
Evgeniy Stepanova5da2562016-06-29 20:37:43 +0000599 replaceDbgValueForAlloca(AI, BasePointer, DIB, -Offset);
Evgeniy Stepanov45fa0fd2016-06-16 22:34:04 +0000600
601 // Replace uses of the alloca with the new location.
602 // Insert address calculation close to each use to work around PR27844.
603 std::string Name = std::string(AI->getName()) + ".unsafe";
604 while (!AI->use_empty()) {
605 Use &U = *AI->use_begin();
606 Instruction *User = cast<Instruction>(U.getUser());
607
608 Instruction *InsertBefore;
609 if (auto *PHI = dyn_cast<PHINode>(User))
610 InsertBefore = PHI->getIncomingBlock(U)->getTerminator();
611 else
612 InsertBefore = User;
613
614 IRBuilder<> IRBUser(InsertBefore);
615 Value *Off = IRBUser.CreateGEP(BasePointer, // BasePointer is i8*
Evgeniy Stepanova5da2562016-06-29 20:37:43 +0000616 ConstantInt::get(Int32Ty, -Offset));
Evgeniy Stepanov45fa0fd2016-06-16 22:34:04 +0000617 Value *Replacement = IRBUser.CreateBitCast(Off, AI->getType(), Name);
618
619 if (auto *PHI = dyn_cast<PHINode>(User)) {
620 // PHI nodes may have multiple incoming edges from the same BB (why??),
621 // all must be updated at once with the same incoming value.
622 auto *BB = PHI->getIncomingBlock(U);
623 for (unsigned I = 0; I < PHI->getNumIncomingValues(); ++I)
624 if (PHI->getIncomingBlock(I) == BB)
625 PHI->setIncomingValue(I, Replacement);
626 } else {
627 U.set(Replacement);
628 }
629 }
630
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000631 AI->eraseFromParent();
632 }
633
634 // Re-align BasePointer so that our callees would see it aligned as
635 // expected.
636 // FIXME: no need to update BasePointer in leaf functions.
Evgeniy Stepanova5da2562016-06-29 20:37:43 +0000637 unsigned FrameSize = alignTo(SSL.getFrameSize(), StackAlignment);
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000638
639 // Update shadow stack pointer in the function epilogue.
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000640 IRB.SetInsertPoint(BasePointer->getNextNode());
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000641
642 Value *StaticTop =
Evgeniy Stepanova5da2562016-06-29 20:37:43 +0000643 IRB.CreateGEP(BasePointer, ConstantInt::get(Int32Ty, -FrameSize),
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000644 "unsafe_stack_static_top");
645 IRB.CreateStore(StaticTop, UnsafeStackPtr);
646 return StaticTop;
647}
648
649void SafeStack::moveDynamicAllocasToUnsafeStack(
650 Function &F, Value *UnsafeStackPtr, AllocaInst *DynamicTop,
651 ArrayRef<AllocaInst *> DynamicAllocas) {
652 DIBuilder DIB(*F.getParent());
653
654 for (AllocaInst *AI : DynamicAllocas) {
655 IRBuilder<> IRB(AI);
656
657 // Compute the new SP value (after AI).
658 Value *ArraySize = AI->getArraySize();
659 if (ArraySize->getType() != IntPtrTy)
660 ArraySize = IRB.CreateIntCast(ArraySize, IntPtrTy, false);
661
662 Type *Ty = AI->getAllocatedType();
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000663 uint64_t TySize = DL.getTypeAllocSize(Ty);
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000664 Value *Size = IRB.CreateMul(ArraySize, ConstantInt::get(IntPtrTy, TySize));
665
666 Value *SP = IRB.CreatePtrToInt(IRB.CreateLoad(UnsafeStackPtr), IntPtrTy);
667 SP = IRB.CreateSub(SP, Size);
668
669 // Align the SP value to satisfy the AllocaInst, type and stack alignments.
670 unsigned Align = std::max(
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000671 std::max((unsigned)DL.getPrefTypeAlignment(Ty), AI->getAlignment()),
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000672 (unsigned)StackAlignment);
673
674 assert(isPowerOf2_32(Align));
675 Value *NewTop = IRB.CreateIntToPtr(
676 IRB.CreateAnd(SP, ConstantInt::get(IntPtrTy, ~uint64_t(Align - 1))),
677 StackPtrTy);
678
679 // Save the stack pointer.
680 IRB.CreateStore(NewTop, UnsafeStackPtr);
681 if (DynamicTop)
682 IRB.CreateStore(NewTop, DynamicTop);
683
Evgeniy Stepanov9842d612015-11-25 22:52:30 +0000684 Value *NewAI = IRB.CreatePointerCast(NewTop, AI->getType());
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000685 if (AI->hasName() && isa<Instruction>(NewAI))
686 NewAI->takeName(AI);
687
Adrian Prantld1317012017-12-08 21:58:18 +0000688 replaceDbgDeclareForAlloca(AI, NewAI, DIB, DIExpression::NoDeref, 0,
689 DIExpression::NoDeref);
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000690 AI->replaceAllUsesWith(NewAI);
691 AI->eraseFromParent();
692 }
693
694 if (!DynamicAllocas.empty()) {
695 // Now go through the instructions again, replacing stacksave/stackrestore.
696 for (inst_iterator It = inst_begin(&F), Ie = inst_end(&F); It != Ie;) {
697 Instruction *I = &*(It++);
698 auto II = dyn_cast<IntrinsicInst>(I);
699 if (!II)
700 continue;
701
702 if (II->getIntrinsicID() == Intrinsic::stacksave) {
703 IRBuilder<> IRB(II);
704 Instruction *LI = IRB.CreateLoad(UnsafeStackPtr);
705 LI->takeName(II);
706 II->replaceAllUsesWith(LI);
707 II->eraseFromParent();
708 } else if (II->getIntrinsicID() == Intrinsic::stackrestore) {
709 IRBuilder<> IRB(II);
710 Instruction *SI = IRB.CreateStore(II->getArgOperand(0), UnsafeStackPtr);
711 SI->takeName(II);
712 assert(II->use_empty());
713 II->eraseFromParent();
714 }
715 }
716 }
717}
718
Evgeniy Stepanovd5a6fdb2018-01-23 21:27:07 +0000719bool SafeStack::ShouldInlinePointerAddress(CallSite &CS) {
720 Function *Callee = CS.getCalledFunction();
721 if (CS.hasFnAttr(Attribute::AlwaysInline) && isInlineViable(*Callee))
722 return true;
723 if (Callee->isInterposable() || Callee->hasFnAttribute(Attribute::NoInline) ||
724 CS.isNoInline())
725 return false;
726 return true;
727}
728
729void SafeStack::TryInlinePointerAddress() {
730 if (!isa<CallInst>(UnsafeStackPtr))
731 return;
732
733 if(F.hasFnAttribute(Attribute::OptimizeNone))
734 return;
735
736 CallSite CS(UnsafeStackPtr);
737 Function *Callee = CS.getCalledFunction();
738 if (!Callee || Callee->isDeclaration())
739 return;
740
741 if (!ShouldInlinePointerAddress(CS))
742 return;
743
744 InlineFunctionInfo IFI;
745 InlineFunction(CS, IFI);
746}
747
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000748bool SafeStack::run() {
749 assert(F.hasFnAttribute(Attribute::SafeStack) &&
750 "Can't run SafeStack on a function without the attribute");
751 assert(!F.isDeclaration() && "Can't run SafeStack on a function declaration");
Evgeniy Stepanova2002b02015-09-23 18:07:56 +0000752
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000753 ++NumFunctions;
754
755 SmallVector<AllocaInst *, 16> StaticAllocas;
756 SmallVector<AllocaInst *, 4> DynamicAllocas;
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000757 SmallVector<Argument *, 4> ByValArguments;
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000758 SmallVector<ReturnInst *, 4> Returns;
759
760 // Collect all points where stack gets unwound and needs to be restored
761 // This is only necessary because the runtime (setjmp and unwind code) is
Michael LeMay14153552016-10-17 19:09:19 +0000762 // not aware of the unsafe stack and won't unwind/restore it properly.
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000763 // To work around this problem without changing the runtime, we insert
764 // instrumentation to restore the unsafe stack pointer when necessary.
765 SmallVector<Instruction *, 4> StackRestorePoints;
766
767 // Find all static and dynamic alloca instructions that must be moved to the
768 // unsafe stack, all return instructions and stack restore points.
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000769 findInsts(F, StaticAllocas, DynamicAllocas, ByValArguments, Returns,
770 StackRestorePoints);
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000771
772 if (StaticAllocas.empty() && DynamicAllocas.empty() &&
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000773 ByValArguments.empty() && StackRestorePoints.empty())
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000774 return false; // Nothing to do in this function.
775
Evgeniy Stepanov42f3b122015-12-01 00:40:05 +0000776 if (!StaticAllocas.empty() || !DynamicAllocas.empty() ||
777 !ByValArguments.empty())
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000778 ++NumUnsafeStackFunctions; // This function has the unsafe stack.
779
780 if (!StackRestorePoints.empty())
781 ++NumUnsafeStackRestorePointsFunctions;
782
Duncan P. N. Exon Smithe82c2862015-10-13 17:39:10 +0000783 IRBuilder<> IRB(&F.front(), F.begin()->getFirstInsertionPt());
Eli Friedman59de37b2018-08-24 20:42:32 +0000784 // Calls must always have a debug location, or else inlining breaks. So
785 // we explicitly set a artificial debug location here.
786 if (DISubprogram *SP = F.getSubprogram())
787 IRB.SetCurrentDebugLocation(DebugLoc::get(SP->getScopeLine(), 0, SP));
Evgeniy Stepanovd5a6fdb2018-01-23 21:27:07 +0000788 if (SafeStackUsePointerAddress) {
789 Value *Fn = F.getParent()->getOrInsertFunction(
790 "__safestack_pointer_address", StackPtrTy->getPointerTo(0));
791 UnsafeStackPtr = IRB.CreateCall(Fn);
792 } else {
793 UnsafeStackPtr = TL.getSafeStackPointerLocation(IRB);
794 }
Peter Collingbournede26a912015-06-22 20:26:54 +0000795
Anna Zakscad79942016-02-02 01:03:11 +0000796 // Load the current stack pointer (we'll also use it as a base pointer).
797 // FIXME: use a dedicated register for it ?
798 Instruction *BasePointer =
Evgeniy Stepanovf17120a2016-04-11 22:27:48 +0000799 IRB.CreateLoad(UnsafeStackPtr, false, "unsafe_stack_ptr");
Anna Zakscad79942016-02-02 01:03:11 +0000800 assert(BasePointer->getType() == StackPtrTy);
801
Evgeniy Stepanovf17120a2016-04-11 22:27:48 +0000802 AllocaInst *StackGuardSlot = nullptr;
803 // FIXME: implement weaker forms of stack protector.
804 if (F.hasFnAttribute(Attribute::StackProtect) ||
805 F.hasFnAttribute(Attribute::StackProtectStrong) ||
806 F.hasFnAttribute(Attribute::StackProtectReq)) {
807 Value *StackGuard = getStackGuard(IRB, F);
808 StackGuardSlot = IRB.CreateAlloca(StackPtrTy, nullptr);
809 IRB.CreateStore(StackGuard, StackGuardSlot);
810
811 for (ReturnInst *RI : Returns) {
812 IRBuilder<> IRBRet(RI);
813 checkStackGuard(IRBRet, F, *RI, StackGuardSlot, StackGuard);
814 }
815 }
816
817 // The top of the unsafe stack after all unsafe static allocas are
818 // allocated.
819 Value *StaticTop =
820 moveStaticAllocasToUnsafeStack(IRB, F, StaticAllocas, ByValArguments,
821 Returns, BasePointer, StackGuardSlot);
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000822
823 // Safe stack object that stores the current unsafe stack top. It is updated
824 // as unsafe dynamic (non-constant-sized) allocas are allocated and freed.
825 // This is only needed if we need to restore stack pointer after longjmp
826 // or exceptions, and we have dynamic allocations.
827 // FIXME: a better alternative might be to store the unsafe stack pointer
828 // before setjmp / invoke instructions.
829 AllocaInst *DynamicTop = createStackRestorePoints(
Evgeniy Stepanov8685daf2015-09-24 01:23:51 +0000830 IRB, F, StackRestorePoints, StaticTop, !DynamicAllocas.empty());
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000831
832 // Handle dynamic allocas.
833 moveDynamicAllocasToUnsafeStack(F, UnsafeStackPtr, DynamicTop,
834 DynamicAllocas);
835
Anna Zakscad79942016-02-02 01:03:11 +0000836 // Restore the unsafe stack pointer before each return.
837 for (ReturnInst *RI : Returns) {
838 IRB.SetInsertPoint(RI);
839 IRB.CreateStore(BasePointer, UnsafeStackPtr);
840 }
841
Evgeniy Stepanovd5a6fdb2018-01-23 21:27:07 +0000842 TryInlinePointerAddress();
843
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000844 LLVM_DEBUG(dbgs() << "[SafeStack] safestack applied\n");
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000845 return true;
846}
847
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000848class SafeStackLegacyPass : public FunctionPass {
Eugene Zelenko618c5552017-09-13 21:15:20 +0000849 const TargetMachine *TM = nullptr;
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000850
851public:
852 static char ID; // Pass identification, replacement for typeid..
Eugene Zelenko618c5552017-09-13 21:15:20 +0000853
854 SafeStackLegacyPass() : FunctionPass(ID) {
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000855 initializeSafeStackLegacyPassPass(*PassRegistry::getPassRegistry());
856 }
857
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000858 void getAnalysisUsage(AnalysisUsage &AU) const override {
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +0000859 AU.addRequired<TargetPassConfig>();
Ahmed Bougacha8c358e32017-05-10 00:39:25 +0000860 AU.addRequired<TargetLibraryInfoWrapperPass>();
861 AU.addRequired<AssumptionCacheTracker>();
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000862 }
863
864 bool runOnFunction(Function &F) override {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000865 LLVM_DEBUG(dbgs() << "[SafeStack] Function: " << F.getName() << "\n");
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000866
867 if (!F.hasFnAttribute(Attribute::SafeStack)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000868 LLVM_DEBUG(dbgs() << "[SafeStack] safestack is not requested"
869 " for this function\n");
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000870 return false;
871 }
872
873 if (F.isDeclaration()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000874 LLVM_DEBUG(dbgs() << "[SafeStack] function definition"
875 " is not available\n");
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000876 return false;
877 }
878
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +0000879 TM = &getAnalysis<TargetPassConfig>().getTM<TargetMachine>();
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000880 auto *TL = TM->getSubtargetImpl(F)->getTargetLowering();
881 if (!TL)
882 report_fatal_error("TargetLowering instance is required");
883
884 auto *DL = &F.getParent()->getDataLayout();
Ahmed Bougacha8c358e32017-05-10 00:39:25 +0000885 auto &TLI = getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
886 auto &ACT = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
887
888 // Compute DT and LI only for functions that have the attribute.
889 // This is only useful because the legacy pass manager doesn't let us
890 // compute analyzes lazily.
891 // In the backend pipeline, nothing preserves DT before SafeStack, so we
892 // would otherwise always compute it wastefully, even if there is no
893 // function with the safestack attribute.
894 DominatorTree DT(F);
895 LoopInfo LI(DT);
896
897 ScalarEvolution SE(F, TLI, ACT, DT, LI);
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000898
899 return SafeStack(F, *TL, *DL, SE).run();
900 }
901};
902
Eugene Zelenko618c5552017-09-13 21:15:20 +0000903} // end anonymous namespace
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000904
Ahmed Bougacha00d68222017-05-10 00:39:22 +0000905char SafeStackLegacyPass::ID = 0;
Eugene Zelenko618c5552017-09-13 21:15:20 +0000906
Matthias Braun1527baa2017-05-25 21:26:32 +0000907INITIALIZE_PASS_BEGIN(SafeStackLegacyPass, DEBUG_TYPE,
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +0000908 "Safe Stack instrumentation pass", false, false)
909INITIALIZE_PASS_DEPENDENCY(TargetPassConfig)
Matthias Braun1527baa2017-05-25 21:26:32 +0000910INITIALIZE_PASS_END(SafeStackLegacyPass, DEBUG_TYPE,
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +0000911 "Safe Stack instrumentation pass", false, false)
Peter Collingbourne82437bf2015-06-15 21:07:11 +0000912
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +0000913FunctionPass *llvm::createSafeStackPass() { return new SafeStackLegacyPass(); }