LLVM 19.0.0git
WinCFGuard.cpp
Go to the documentation of this file.
1//===-- CodeGen/AsmPrinter/WinCFGuard.cpp - Control Flow Guard Impl ------===//
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 file contains support for writing the metadata for Windows Control Flow
10// Guard, including address-taken functions and valid longjmp targets.
11//
12//===----------------------------------------------------------------------===//
13
14#include "WinCFGuard.h"
18#include "llvm/IR/Constants.h"
19#include "llvm/IR/InstrTypes.h"
20#include "llvm/IR/Module.h"
22#include "llvm/MC/MCStreamer.h"
23
24#include <vector>
25
26using namespace llvm;
27
29
30WinCFGuard::~WinCFGuard() = default;
31
33
34 // Skip functions without any longjmp targets.
35 if (MF->getLongjmpTargets().empty())
36 return;
37
38 // Copy the function's longjmp targets to a module-level list.
39 llvm::append_range(LongjmpTargets, MF->getLongjmpTargets());
40}
41
42/// Returns true if this function's address is escaped in a way that might make
43/// it an indirect call target. Function::hasAddressTaken gives different
44/// results when a function is called directly with a function prototype
45/// mismatch, which requires a cast.
48 while (!Users.empty()) {
49 const Value *FnOrCast = Users.pop_back_val();
50 for (const Use &U : FnOrCast->uses()) {
51 const User *FnUser = U.getUser();
52 if (isa<BlockAddress>(FnUser))
53 continue;
54 if (const auto *Call = dyn_cast<CallBase>(FnUser)) {
55 if (!Call->isCallee(&U))
56 return true;
57 } else if (isa<Instruction>(FnUser)) {
58 // Consider any other instruction to be an escape. This has some weird
59 // consequences like no-op intrinsics being an escape or a store *to* a
60 // function address being an escape.
61 return true;
62 } else if (const auto *C = dyn_cast<Constant>(FnUser)) {
63 // If this is a constant pointer cast of the function, don't consider
64 // this escape. Analyze the uses of the cast as well. This ensures that
65 // direct calls with mismatched prototypes don't end up in the CFG
66 // table. Consider other constants, such as vtable initializers, to
67 // escape the function.
68 if (C->stripPointerCasts() == F)
69 Users.push_back(FnUser);
70 else
71 return true;
72 }
73 }
74 }
75 return false;
76}
77
78MCSymbol *WinCFGuard::lookupImpSymbol(const MCSymbol *Sym) {
79 if (Sym->getName().starts_with("__imp_"))
80 return nullptr;
81 return Asm->OutContext.lookupSymbol(Twine("__imp_") + Sym->getName());
82}
83
85 const Module *M = Asm->MMI->getModule();
86 std::vector<const MCSymbol *> GFIDsEntries;
87 std::vector<const MCSymbol *> GIATsEntries;
88 for (const Function &F : *M) {
90 // If F is a dllimport and has an "__imp_" symbol already defined, add the
91 // "__imp_" symbol to the .giats section.
92 if (F.hasDLLImportStorageClass()) {
93 if (MCSymbol *impSym = lookupImpSymbol(Asm->getSymbol(&F))) {
94 GIATsEntries.push_back(impSym);
95 }
96 }
97 // Add the function's symbol to the .gfids section.
98 // Note: For dllimport functions, MSVC sometimes does not add this symbol
99 // to the .gfids section, but only adds the corresponding "__imp_" symbol
100 // to the .giats section. Here we always add the symbol to the .gfids
101 // section, since this does not introduce security risks.
102 GFIDsEntries.push_back(Asm->getSymbol(&F));
103 }
104 }
105
106 if (GFIDsEntries.empty() && GIATsEntries.empty() && LongjmpTargets.empty())
107 return;
108
109 // Emit the symbol index of each GFIDs entry to form the .gfids section.
110 auto &OS = *Asm->OutStreamer;
111 OS.switchSection(Asm->OutContext.getObjectFileInfo()->getGFIDsSection());
112 for (const MCSymbol *S : GFIDsEntries)
113 OS.emitCOFFSymbolIndex(S);
114
115 // Emit the symbol index of each GIATs entry to form the .giats section.
116 OS.switchSection(Asm->OutContext.getObjectFileInfo()->getGIATsSection());
117 for (const MCSymbol *S : GIATsEntries) {
118 OS.emitCOFFSymbolIndex(S);
119 }
120
121 // Emit the symbol index of each longjmp target to form the .gljmp section.
122 OS.switchSection(Asm->OutContext.getObjectFileInfo()->getGLJMPSection());
123 for (const MCSymbol *S : LongjmpTargets) {
124 OS.emitCOFFSymbolIndex(S);
125 }
126}
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
Symbol * Sym
Definition: ELF_riscv.cpp:479
iv Induction Variable Users
Definition: IVUsers.cpp:48
#define F(x, y, z)
Definition: MD5.cpp:55
Module.h This file contains the declarations for the Module class.
raw_pwrite_stream & OS
static bool isPossibleIndirectCallTarget(const Function *F)
Returns true if this function's address is escaped in a way that might make it an indirect call targe...
Definition: WinCFGuard.cpp:46
This class is intended to be used as a driving class for all asm writers.
Definition: AsmPrinter.h:85
MCSymbol * getSymbol(const GlobalValue *GV) const
Definition: AsmPrinter.cpp:706
MachineModuleInfo * MMI
This is a pointer to the current MachineModuleInfo.
Definition: AsmPrinter.h:106
MCContext & OutContext
This is the context for the output file that we are streaming.
Definition: AsmPrinter.h:95
std::unique_ptr< MCStreamer > OutStreamer
This is the MCStreamer object for the file we are generating.
Definition: AsmPrinter.h:100
const MCObjectFileInfo * getObjectFileInfo() const
Definition: MCContext.h:416
MCSymbol * lookupSymbol(const Twine &Name) const
Get the symbol for Name, or null.
Definition: MCContext.cpp:407
MCSection * getGFIDsSection() const
MCSection * getGLJMPSection() const
MCSection * getGIATsSection() const
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition: MCSymbol.h:41
const std::vector< MCSymbol * > & getLongjmpTargets() const
Returns a reference to a list of symbols immediately following calls to _setjmp in the function.
const Module * getModule() const
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1209
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition: Twine.h:81
A Use represents the edge between a Value definition and its users.
Definition: Use.h:43
LLVM Value Representation.
Definition: Value.h:74
iterator_range< use_iterator > uses()
Definition: Value.h:376
WinCFGuard(AsmPrinter *A)
Definition: WinCFGuard.cpp:28
void endModule() override
Emit the Control Flow Guard function ID table.
Definition: WinCFGuard.cpp:84
void endFunction(const MachineFunction *MF) override
Gather post-function debug information.
Definition: WinCFGuard.cpp:32
~WinCFGuard() override
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
Definition: STLExtras.h:2067