LLVM 22.0.0git
ARMBranchTargets.cpp
Go to the documentation of this file.
1//===-- ARMBranchTargets.cpp -- Harden code using v8.1-M BTI extension -----==//
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 BTI instructions at the start of every function and basic
10// block which could be indirectly called. The hardware will (when enabled)
11// trap when an indirect branch or call instruction targets an instruction
12// which is not a valid BTI instruction. This is intended to guard against
13// control-flow hijacking attacks.
14//
15//===----------------------------------------------------------------------===//
16
17#include "ARM.h"
18#include "ARMInstrInfo.h"
24#include "llvm/Support/Debug.h"
25
26using namespace llvm;
27
28#define DEBUG_TYPE "arm-branch-targets"
29#define ARM_BRANCH_TARGETS_NAME "ARM Branch Targets"
30
31namespace {
32class ARMBranchTargets : public MachineFunctionPass {
33public:
34 static char ID;
35 ARMBranchTargets() : MachineFunctionPass(ID) {}
36 void getAnalysisUsage(AnalysisUsage &AU) const override;
37 bool runOnMachineFunction(MachineFunction &MF) override;
38 StringRef getPassName() const override { return ARM_BRANCH_TARGETS_NAME; }
39
40private:
41 void addBTI(const ARMInstrInfo &TII, MachineBasicBlock &MBB, bool IsFirstBB);
42};
43} // end anonymous namespace
44
45char ARMBranchTargets::ID = 0;
46
47INITIALIZE_PASS(ARMBranchTargets, "arm-branch-targets", ARM_BRANCH_TARGETS_NAME,
48 false, false)
49
50void ARMBranchTargets::getAnalysisUsage(AnalysisUsage &AU) const {
51 AU.setPreservesCFG();
53}
54
56 return new ARMBranchTargets();
57}
58
59bool ARMBranchTargets::runOnMachineFunction(MachineFunction &MF) {
60 if (!MF.getInfo<ARMFunctionInfo>()->branchTargetEnforcement())
61 return false;
62
63 LLVM_DEBUG(dbgs() << "********** ARM Branch Targets **********\n"
64 << "********** Function: " << MF.getName() << '\n');
65 const ARMInstrInfo &TII =
66 *static_cast<const ARMInstrInfo *>(MF.getSubtarget().getInstrInfo());
67
68 bool MadeChange = false;
69 for (MachineBasicBlock &MBB : MF) {
70 bool IsFirstBB = &MBB == &MF.front();
71
72 // Every function can potentially be called indirectly (even if it has
73 // static linkage, due to linker-generated veneers).
74 // If the block itself is address-taken, or is an exception landing pad, it
75 // could be indirectly branched to.
76 // Jump tables only emit indirect jumps (JUMPTABLE_ADDRS) in ARM or Thumb1
77 // modes. These modes do not support PACBTI. As a result, BTI instructions
78 // are not added in the destination blocks.
79
80 if (IsFirstBB || MBB.isMachineBlockAddressTaken() ||
82 addBTI(TII, MBB, IsFirstBB);
83 MadeChange = true;
84 }
85 }
86
87 return MadeChange;
88}
89
90/// Insert a BTI/PACBTI instruction into a given basic block \c MBB. If
91/// \c IsFirstBB is true (meaning that this is the first BB in a function) try
92/// to find a PAC instruction and replace it with PACBTI. Otherwise just insert
93/// a BTI instruction.
94/// The point of insertion is in the beginning of the BB, immediately after meta
95/// instructions (such labels in exception handling landing pads).
96void ARMBranchTargets::addBTI(const ARMInstrInfo &TII, MachineBasicBlock &MBB,
97 bool IsFirstBB) {
98 // Which instruction to insert: BTI or PACBTI
99 unsigned OpCode = ARM::t2BTI;
100 unsigned MIFlags = 0;
101
102 // Skip meta instructions, including EH labels
103 auto MBBI = llvm::find_if_not(MBB.instrs(), [](const MachineInstr &MI) {
104 return MI.isMetaInstruction();
105 });
106
107 // If this is the first BB in a function, check if it starts with a PAC
108 // instruction and in that case remove the PAC instruction.
109 if (IsFirstBB) {
110 if (MBBI != MBB.instr_end() && MBBI->getOpcode() == ARM::t2PAC) {
111 LLVM_DEBUG(dbgs() << "Removing a 'PAC' instr from BB '" << MBB.getName()
112 << "' to replace with PACBTI\n");
113 OpCode = ARM::t2PACBTI;
114 MIFlags = MachineInstr::FrameSetup;
115 auto NextMBBI = std::next(MBBI);
117 MBBI = NextMBBI;
118 }
119 }
120
121 LLVM_DEBUG(dbgs() << "Inserting a '"
122 << (OpCode == ARM::t2BTI ? "BTI" : "PACBTI")
123 << "' instr into BB '" << MBB.getName() << "'\n");
124 // Finally, insert a new instruction (either PAC or PACBTI)
125 BuildMI(MBB, MBBI, MBB.findDebugLoc(MBBI), TII.get(OpCode))
126 .setMIFlags(MIFlags);
127}
#define ARM_BRANCH_TARGETS_NAME
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator MBBI
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition PassSupport.h:56
#define LLVM_DEBUG(...)
Definition Debug.h:114
Represent the analysis usage information of a pass.
FunctionPass class - This class is used to implement most global optimizations.
Definition Pass.h:314
bool isEHPad() const
Returns true if the block is a landing pad.
bool isIRBlockAddressTaken() const
Test whether this block is the target of an IR BlockAddress.
LLVM_ABI DebugLoc findDebugLoc(instr_iterator MBBI)
Find the next valid DebugLoc starting at MBBI, skipping any debug instructions.
LLVM_ABI void eraseFromParent()
This method unlinks 'this' from the containing function and deletes it.
bool isMachineBlockAddressTaken() const
Test whether this block is used as something other than the target of a terminator,...
LLVM_ABI StringRef getName() const
Return the name of the corresponding LLVM basic block, or an empty string.
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
StringRef getName() const
getName - Return the name of the corresponding LLVM function.
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
const MachineInstrBuilder & setMIFlags(unsigned Flags) const
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
This is an optimization pass for GlobalISel generic memory operations.
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
FunctionPass * createARMBranchTargetsPass()
auto find_if_not(R &&Range, UnaryPredicate P)
Definition STLExtras.h:1745
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:207