1 //===- EhFrame.cpp -------------------------------------------------------===//
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
7 //===----------------------------------------------------------------------===//
9 // .eh_frame section contains information on how to unwind the stack when
10 // an exception is thrown. The section consists of sequence of CIE and FDE
11 // records. The linker needs to merge CIEs and associate FDEs to CIEs.
12 // That means the linker has to understand the format of the section.
14 // This file contains a few utility functions to read .eh_frame contents.
16 //===----------------------------------------------------------------------===//
20 #include "InputSection.h"
21 #include "Relocations.h"
23 #include "lld/Common/ErrorHandler.h"
24 #include "lld/Common/Strings.h"
25 #include "llvm/BinaryFormat/Dwarf.h"
26 #include "llvm/Object/ELF.h"
29 using namespace llvm::ELF
;
30 using namespace llvm::dwarf
;
31 using namespace llvm::object
;
33 using namespace lld::elf
;
38 EhReader(InputSectionBase
*s
, ArrayRef
<uint8_t> d
) : isec(s
), d(d
) {}
39 uint8_t getFdeEncoding();
43 template <class P
> void failOn(const P
*loc
, const Twine
&msg
) {
44 fatal("corrupted .eh_frame: " + msg
+ "\n>>> defined in " +
45 isec
->getObjMsg((const uint8_t *)loc
- isec
->content().data()));
49 void skipBytes(size_t count
);
50 StringRef
readString();
53 StringRef
getAugmentation();
55 InputSectionBase
*isec
;
60 // Read a byte and advance D by one byte.
61 uint8_t EhReader::readByte() {
63 failOn(d
.data(), "unexpected end of CIE");
64 uint8_t b
= d
.front();
69 void EhReader::skipBytes(size_t count
) {
71 failOn(d
.data(), "CIE is too small");
75 // Read a null-terminated string.
76 StringRef
EhReader::readString() {
77 const uint8_t *end
= llvm::find(d
, '\0');
79 failOn(d
.data(), "corrupted CIE (failed to read string)");
80 StringRef s
= toStringRef(d
.slice(0, end
- d
.begin()));
81 d
= d
.slice(s
.size() + 1);
85 // Skip an integer encoded in the LEB128 format.
86 // Actual number is not of interest because only the runtime needs it.
87 // But we need to be at least able to skip it so that we can read
88 // the field that follows a LEB128 number.
89 void EhReader::skipLeb128() {
90 const uint8_t *errPos
= d
.data();
92 uint8_t val
= d
.front();
94 if ((val
& 0x80) == 0)
97 failOn(errPos
, "corrupted CIE (failed to read LEB128)");
100 static size_t getAugPSize(unsigned enc
) {
101 switch (enc
& 0x0f) {
102 case DW_EH_PE_absptr
:
103 case DW_EH_PE_signed
:
104 return config
->wordsize
;
105 case DW_EH_PE_udata2
:
106 case DW_EH_PE_sdata2
:
108 case DW_EH_PE_udata4
:
109 case DW_EH_PE_sdata4
:
111 case DW_EH_PE_udata8
:
112 case DW_EH_PE_sdata8
:
118 void EhReader::skipAugP() {
119 uint8_t enc
= readByte();
120 if ((enc
& 0xf0) == DW_EH_PE_aligned
)
121 failOn(d
.data() - 1, "DW_EH_PE_aligned encoding is not supported");
122 size_t size
= getAugPSize(enc
);
124 failOn(d
.data() - 1, "unknown FDE encoding");
125 if (size
>= d
.size())
126 failOn(d
.data() - 1, "corrupted CIE");
130 uint8_t elf::getFdeEncoding(EhSectionPiece
*p
) {
131 return EhReader(p
->sec
, p
->data()).getFdeEncoding();
134 bool elf::hasLSDA(const EhSectionPiece
&p
) {
135 return EhReader(p
.sec
, p
.data()).hasLSDA();
138 StringRef
EhReader::getAugmentation() {
140 int version
= readByte();
141 if (version
!= 1 && version
!= 3)
143 "FDE version 1 or 3 expected, but got " + Twine(version
));
145 StringRef aug
= readString();
147 // Skip code and data alignment factors.
151 // Skip the return address register. In CIE version 1 this is a single
152 // byte. In CIE version 3 this is an unsigned LEB128.
160 uint8_t EhReader::getFdeEncoding() {
161 // We only care about an 'R' value, but other records may precede an 'R'
162 // record. Unfortunately records are not in TLV (type-length-value) format,
163 // so we need to teach the linker how to skip records for each type.
164 StringRef aug
= getAugmentation();
174 else if (c
!= 'B' && c
!= 'S' && c
!= 'G')
175 failOn(aug
.data(), "unknown .eh_frame augmentation string: " + aug
);
177 return DW_EH_PE_absptr
;
180 bool EhReader::hasLSDA() {
181 StringRef aug
= getAugmentation();
191 else if (c
!= 'B' && c
!= 'S' && c
!= 'G')
192 failOn(aug
.data(), "unknown .eh_frame augmentation string: " + aug
);