LLVM 19.0.0git
StackProtector.h
Go to the documentation of this file.
1//===- StackProtector.h - Stack Protector Insertion -------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This pass inserts stack protectors into functions which need them. A variable
10// with a random value in it is stored onto the stack before the local variables
11// are allocated. Upon exiting the block, the stored value is checked. If it's
12// changed, then there was some sort of violation and the program aborts.
13//
14//===----------------------------------------------------------------------===//
15
16#ifndef LLVM_CODEGEN_STACKPROTECTOR_H
17#define LLVM_CODEGEN_STACKPROTECTOR_H
18
22#include "llvm/IR/PassManager.h"
23#include "llvm/Pass.h"
25
26namespace llvm {
27
28class BasicBlock;
29class Function;
30class Module;
31class TargetLoweringBase;
32class TargetMachine;
33
35 friend class StackProtectorPass;
36 friend class SSPLayoutAnalysis;
37 friend class StackProtector;
38 static constexpr unsigned DefaultSSPBufferSize = 8;
39
40 /// A mapping of AllocaInsts to their required SSP layout.
41 using SSPLayoutMap =
43
44 /// Layout - Mapping of allocations to the required SSPLayoutKind.
45 /// StackProtector analysis will update this map when determining if an
46 /// AllocaInst triggers a stack protector.
47 SSPLayoutMap Layout;
48
49 /// The minimum size of buffers that will receive stack smashing
50 /// protection when -fstack-protection is used.
51 unsigned SSPBufferSize = DefaultSSPBufferSize;
52
53 bool RequireStackProtector = false;
54
55 // A prologue is generated.
56 bool HasPrologue = false;
57
58 // IR checking code is generated.
59 bool HasIRCheck = false;
60
61public:
62 // Return true if StackProtector is supposed to be handled by SelectionDAG.
63 bool shouldEmitSDCheck(const BasicBlock &BB) const;
64
66};
67
68class SSPLayoutAnalysis : public AnalysisInfoMixin<SSPLayoutAnalysis> {
71
72 static AnalysisKey Key;
73
74public:
76
78
79 /// Check whether or not \p F needs a stack protector based upon the stack
80 /// protector level.
82 SSPLayoutMap *Layout = nullptr);
83};
84
85class StackProtectorPass : public PassInfoMixin<StackProtectorPass> {
86 const TargetMachine *TM;
87
88public:
89 explicit StackProtectorPass(const TargetMachine *TM) : TM(TM) {}
91};
92
94private:
95 /// A mapping of AllocaInsts to their required SSP layout.
97
98 const TargetMachine *TM = nullptr;
99
100 Function *F = nullptr;
101 Module *M = nullptr;
102
103 std::optional<DomTreeUpdater> DTU;
104
105 SSPLayoutInfo LayoutInfo;
106
107public:
108 static char ID; // Pass identification, replacement for typeid.
109
111
112 void getAnalysisUsage(AnalysisUsage &AU) const override;
113
114 // Return true if StackProtector is supposed to be handled by SelectionDAG.
115 bool shouldEmitSDCheck(const BasicBlock &BB) const {
116 return LayoutInfo.shouldEmitSDCheck(BB);
117 }
118
119 bool runOnFunction(Function &Fn) override;
120
122 LayoutInfo.copyToMachineFrameInfo(MFI);
123 }
124
125 /// Check whether or not \p F needs a stack protector based upon the stack
126 /// protector level.
128 SSPLayoutMap *Layout = nullptr) {
130 }
131};
132
133} // end namespace llvm
134
135#endif // LLVM_CODEGEN_STACKPROTECTOR_H
#define F(x, y, z)
Definition: MD5.cpp:55
Machine Check Debug Module
FunctionAnalysisManager FAM
const char LLVMTargetMachineRef TM
This header defines various interfaces for pass management in LLVM.
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:321
Represent the analysis usage information of a pass.
LLVM Basic Block Representation.
Definition: BasicBlock.h:60
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:311
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
A set of analyses that are preserved following a run of a transformation pass.
Definition: Analysis.h:109
static bool requiresStackProtector(Function *F, SSPLayoutMap *Layout=nullptr)
Check whether or not F needs a stack protector based upon the stack protector level.
Result run(Function &F, FunctionAnalysisManager &FAM)
void copyToMachineFrameInfo(MachineFrameInfo &MFI) const
bool shouldEmitSDCheck(const BasicBlock &BB) const
StackProtectorPass(const TargetMachine *TM)
PreservedAnalyses run(Function &F, FunctionAnalysisManager &FAM)
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
bool shouldEmitSDCheck(const BasicBlock &BB) const
static bool requiresStackProtector(Function *F, SSPLayoutMap *Layout=nullptr)
Check whether or not F needs a stack protector based upon the stack protector level.
bool runOnFunction(Function &Fn) override
runOnFunction - Virtual method overriden by subclasses to do the per-function processing of the pass.
void copyToMachineFrameInfo(MachineFrameInfo &MFI) const
Primary interface to the complete machine description for the target machine.
Definition: TargetMachine.h:76
@ BasicBlock
Various leaf nodes.
Definition: ISDOpcodes.h:71
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
A CRTP mix-in that provides informational APIs needed for analysis passes.
Definition: PassManager.h:97
A special type used by analysis passes to provide an address that identifies that particular analysis...
Definition: Analysis.h:26
A CRTP mix-in to automatically provide informational APIs needed for passes.
Definition: PassManager.h:74