blob: 7ba83967330eb102004383a75ec4accac66b764f [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===- ELFYAML.h - ELF YAMLIO implementation --------------------*- C++ -*-===//
2//
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/// \file
11/// \brief This file declares classes for handling the YAML representation
12/// of ELF.
13///
14//===----------------------------------------------------------------------===//
15
16#ifndef LLVM_OBJECTYAML_ELFYAML_H
17#define LLVM_OBJECTYAML_ELFYAML_H
18
19#include "llvm/ADT/StringRef.h"
20#include "llvm/ObjectYAML/YAML.h"
21#include "llvm/Support/YAMLTraits.h"
22#include <cstdint>
23#include <memory>
24#include <vector>
25
26namespace llvm {
27namespace ELFYAML {
28
29// These types are invariant across 32/64-bit ELF, so for simplicity just
30// directly give them their exact sizes. We don't need to worry about
31// endianness because these are just the types in the YAMLIO structures,
32// and are appropriately converted to the necessary endianness when
33// reading/generating binary object files.
34// The naming of these types is intended to be ELF_PREFIX, where PREFIX is
35// the common prefix of the respective constants. E.g. ELF_EM corresponds
36// to the `e_machine` constants, like `EM_X86_64`.
37// In the future, these would probably be better suited by C++11 enum
38// class's with appropriate fixed underlying type.
39LLVM_YAML_STRONG_TYPEDEF(uint16_t, ELF_ET)
40LLVM_YAML_STRONG_TYPEDEF(uint32_t, ELF_PT)
41LLVM_YAML_STRONG_TYPEDEF(uint32_t, ELF_EM)
42LLVM_YAML_STRONG_TYPEDEF(uint8_t, ELF_ELFCLASS)
43LLVM_YAML_STRONG_TYPEDEF(uint8_t, ELF_ELFDATA)
44LLVM_YAML_STRONG_TYPEDEF(uint8_t, ELF_ELFOSABI)
45// Just use 64, since it can hold 32-bit values too.
46LLVM_YAML_STRONG_TYPEDEF(uint64_t, ELF_EF)
47LLVM_YAML_STRONG_TYPEDEF(uint32_t, ELF_PF)
48LLVM_YAML_STRONG_TYPEDEF(uint32_t, ELF_SHT)
49LLVM_YAML_STRONG_TYPEDEF(uint32_t, ELF_REL)
50LLVM_YAML_STRONG_TYPEDEF(uint8_t, ELF_RSS)
51// Just use 64, since it can hold 32-bit values too.
52LLVM_YAML_STRONG_TYPEDEF(uint64_t, ELF_SHF)
53LLVM_YAML_STRONG_TYPEDEF(uint16_t, ELF_SHN)
54LLVM_YAML_STRONG_TYPEDEF(uint8_t, ELF_STT)
55LLVM_YAML_STRONG_TYPEDEF(uint8_t, ELF_STV)
56LLVM_YAML_STRONG_TYPEDEF(uint8_t, ELF_STO)
57
58LLVM_YAML_STRONG_TYPEDEF(uint8_t, MIPS_AFL_REG)
59LLVM_YAML_STRONG_TYPEDEF(uint8_t, MIPS_ABI_FP)
60LLVM_YAML_STRONG_TYPEDEF(uint32_t, MIPS_AFL_EXT)
61LLVM_YAML_STRONG_TYPEDEF(uint32_t, MIPS_AFL_ASE)
62LLVM_YAML_STRONG_TYPEDEF(uint32_t, MIPS_AFL_FLAGS1)
63LLVM_YAML_STRONG_TYPEDEF(uint32_t, MIPS_ISA)
64
65// For now, hardcode 64 bits everywhere that 32 or 64 would be needed
66// since 64-bit can hold 32-bit values too.
67struct FileHeader {
68 ELF_ELFCLASS Class;
69 ELF_ELFDATA Data;
70 ELF_ELFOSABI OSABI;
71 ELF_ET Type;
72 ELF_EM Machine;
73 ELF_EF Flags;
74 llvm::yaml::Hex64 Entry;
75};
76
77struct SectionName {
78 StringRef Section;
79};
80
81struct ProgramHeader {
82 ELF_PT Type;
83 ELF_PF Flags;
84 llvm::yaml::Hex64 VAddr;
85 llvm::yaml::Hex64 PAddr;
86 Optional<llvm::yaml::Hex64> Align;
87 std::vector<SectionName> Sections;
88};
89
90struct Symbol {
91 StringRef Name;
92 ELF_STT Type;
93 StringRef Section;
94 Optional<ELF_SHN> Index;
95 llvm::yaml::Hex64 Value;
96 llvm::yaml::Hex64 Size;
97 uint8_t Other;
98};
99
100struct LocalGlobalWeakSymbols {
101 std::vector<Symbol> Local;
102 std::vector<Symbol> Global;
103 std::vector<Symbol> Weak;
104};
105
106struct SectionOrType {
107 StringRef sectionNameOrType;
108};
109
110struct Section {
111 enum class SectionKind {
112 Group,
113 RawContent,
114 Relocation,
115 NoBits,
116 MipsABIFlags
117 };
118 SectionKind Kind;
119 StringRef Name;
120 ELF_SHT Type;
121 ELF_SHF Flags;
122 llvm::yaml::Hex64 Address;
123 StringRef Link;
124 StringRef Info;
125 llvm::yaml::Hex64 AddressAlign;
126
127 Section(SectionKind Kind) : Kind(Kind) {}
128 virtual ~Section();
129};
130struct RawContentSection : Section {
131 yaml::BinaryRef Content;
132 llvm::yaml::Hex64 Size;
133
134 RawContentSection() : Section(SectionKind::RawContent) {}
135
136 static bool classof(const Section *S) {
137 return S->Kind == SectionKind::RawContent;
138 }
139};
140
141struct NoBitsSection : Section {
142 llvm::yaml::Hex64 Size;
143
144 NoBitsSection() : Section(SectionKind::NoBits) {}
145
146 static bool classof(const Section *S) {
147 return S->Kind == SectionKind::NoBits;
148 }
149};
150
151struct Group : Section {
152 // Members of a group contain a flag and a list of section indices
153 // that are part of the group.
154 std::vector<SectionOrType> Members;
155
156 Group() : Section(SectionKind::Group) {}
157
158 static bool classof(const Section *S) {
159 return S->Kind == SectionKind::Group;
160 }
161};
162
163struct Relocation {
164 llvm::yaml::Hex64 Offset;
165 int64_t Addend;
166 ELF_REL Type;
167 Optional<StringRef> Symbol;
168};
169
170struct RelocationSection : Section {
171 std::vector<Relocation> Relocations;
172
173 RelocationSection() : Section(SectionKind::Relocation) {}
174
175 static bool classof(const Section *S) {
176 return S->Kind == SectionKind::Relocation;
177 }
178};
179
180// Represents .MIPS.abiflags section
181struct MipsABIFlags : Section {
182 llvm::yaml::Hex16 Version;
183 MIPS_ISA ISALevel;
184 llvm::yaml::Hex8 ISARevision;
185 MIPS_AFL_REG GPRSize;
186 MIPS_AFL_REG CPR1Size;
187 MIPS_AFL_REG CPR2Size;
188 MIPS_ABI_FP FpABI;
189 MIPS_AFL_EXT ISAExtension;
190 MIPS_AFL_ASE ASEs;
191 MIPS_AFL_FLAGS1 Flags1;
192 llvm::yaml::Hex32 Flags2;
193
194 MipsABIFlags() : Section(SectionKind::MipsABIFlags) {}
195
196 static bool classof(const Section *S) {
197 return S->Kind == SectionKind::MipsABIFlags;
198 }
199};
200
201struct Object {
202 FileHeader Header;
203 std::vector<ProgramHeader> ProgramHeaders;
204 std::vector<std::unique_ptr<Section>> Sections;
205 // Although in reality the symbols reside in a section, it is a lot
206 // cleaner and nicer if we read them from the YAML as a separate
207 // top-level key, which automatically ensures that invariants like there
208 // being a single SHT_SYMTAB section are upheld.
209 LocalGlobalWeakSymbols Symbols;
210 LocalGlobalWeakSymbols DynamicSymbols;
211};
212
213} // end namespace ELFYAML
214} // end namespace llvm
215
216LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::ELFYAML::ProgramHeader)
217LLVM_YAML_IS_SEQUENCE_VECTOR(std::unique_ptr<llvm::ELFYAML::Section>)
218LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::ELFYAML::Symbol)
219LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::ELFYAML::Relocation)
220LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::ELFYAML::SectionOrType)
221LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::ELFYAML::SectionName)
222
223namespace llvm {
224namespace yaml {
225
226template <>
227struct ScalarEnumerationTraits<ELFYAML::ELF_ET> {
228 static void enumeration(IO &IO, ELFYAML::ELF_ET &Value);
229};
230
231template <> struct ScalarEnumerationTraits<ELFYAML::ELF_PT> {
232 static void enumeration(IO &IO, ELFYAML::ELF_PT &Value);
233};
234
235template <>
236struct ScalarEnumerationTraits<ELFYAML::ELF_EM> {
237 static void enumeration(IO &IO, ELFYAML::ELF_EM &Value);
238};
239
240template <>
241struct ScalarEnumerationTraits<ELFYAML::ELF_ELFCLASS> {
242 static void enumeration(IO &IO, ELFYAML::ELF_ELFCLASS &Value);
243};
244
245template <>
246struct ScalarEnumerationTraits<ELFYAML::ELF_ELFDATA> {
247 static void enumeration(IO &IO, ELFYAML::ELF_ELFDATA &Value);
248};
249
250template <>
251struct ScalarEnumerationTraits<ELFYAML::ELF_ELFOSABI> {
252 static void enumeration(IO &IO, ELFYAML::ELF_ELFOSABI &Value);
253};
254
255template <>
256struct ScalarBitSetTraits<ELFYAML::ELF_EF> {
257 static void bitset(IO &IO, ELFYAML::ELF_EF &Value);
258};
259
260template <> struct ScalarBitSetTraits<ELFYAML::ELF_PF> {
261 static void bitset(IO &IO, ELFYAML::ELF_PF &Value);
262};
263
264template <>
265struct ScalarEnumerationTraits<ELFYAML::ELF_SHT> {
266 static void enumeration(IO &IO, ELFYAML::ELF_SHT &Value);
267};
268
269template <>
270struct ScalarBitSetTraits<ELFYAML::ELF_SHF> {
271 static void bitset(IO &IO, ELFYAML::ELF_SHF &Value);
272};
273
274template <> struct ScalarEnumerationTraits<ELFYAML::ELF_SHN> {
275 static void enumeration(IO &IO, ELFYAML::ELF_SHN &Value);
276};
277
278template <>
279struct ScalarEnumerationTraits<ELFYAML::ELF_STT> {
280 static void enumeration(IO &IO, ELFYAML::ELF_STT &Value);
281};
282
283template <>
284struct ScalarEnumerationTraits<ELFYAML::ELF_STV> {
285 static void enumeration(IO &IO, ELFYAML::ELF_STV &Value);
286};
287
288template <>
289struct ScalarBitSetTraits<ELFYAML::ELF_STO> {
290 static void bitset(IO &IO, ELFYAML::ELF_STO &Value);
291};
292
293template <>
294struct ScalarEnumerationTraits<ELFYAML::ELF_REL> {
295 static void enumeration(IO &IO, ELFYAML::ELF_REL &Value);
296};
297
298template <>
299struct ScalarEnumerationTraits<ELFYAML::ELF_RSS> {
300 static void enumeration(IO &IO, ELFYAML::ELF_RSS &Value);
301};
302
303template <>
304struct ScalarEnumerationTraits<ELFYAML::MIPS_AFL_REG> {
305 static void enumeration(IO &IO, ELFYAML::MIPS_AFL_REG &Value);
306};
307
308template <>
309struct ScalarEnumerationTraits<ELFYAML::MIPS_ABI_FP> {
310 static void enumeration(IO &IO, ELFYAML::MIPS_ABI_FP &Value);
311};
312
313template <>
314struct ScalarEnumerationTraits<ELFYAML::MIPS_AFL_EXT> {
315 static void enumeration(IO &IO, ELFYAML::MIPS_AFL_EXT &Value);
316};
317
318template <>
319struct ScalarEnumerationTraits<ELFYAML::MIPS_ISA> {
320 static void enumeration(IO &IO, ELFYAML::MIPS_ISA &Value);
321};
322
323template <>
324struct ScalarBitSetTraits<ELFYAML::MIPS_AFL_ASE> {
325 static void bitset(IO &IO, ELFYAML::MIPS_AFL_ASE &Value);
326};
327
328template <>
329struct ScalarBitSetTraits<ELFYAML::MIPS_AFL_FLAGS1> {
330 static void bitset(IO &IO, ELFYAML::MIPS_AFL_FLAGS1 &Value);
331};
332
333template <>
334struct MappingTraits<ELFYAML::FileHeader> {
335 static void mapping(IO &IO, ELFYAML::FileHeader &FileHdr);
336};
337
338template <> struct MappingTraits<ELFYAML::ProgramHeader> {
339 static void mapping(IO &IO, ELFYAML::ProgramHeader &FileHdr);
340};
341
342template <>
343struct MappingTraits<ELFYAML::Symbol> {
344 static void mapping(IO &IO, ELFYAML::Symbol &Symbol);
345 static StringRef validate(IO &IO, ELFYAML::Symbol &Symbol);
346};
347
348template <>
349struct MappingTraits<ELFYAML::LocalGlobalWeakSymbols> {
350 static void mapping(IO &IO, ELFYAML::LocalGlobalWeakSymbols &Symbols);
351};
352
353template <> struct MappingTraits<ELFYAML::Relocation> {
354 static void mapping(IO &IO, ELFYAML::Relocation &Rel);
355};
356
357template <>
358struct MappingTraits<std::unique_ptr<ELFYAML::Section>> {
359 static void mapping(IO &IO, std::unique_ptr<ELFYAML::Section> &Section);
360 static StringRef validate(IO &io, std::unique_ptr<ELFYAML::Section> &Section);
361};
362
363template <>
364struct MappingTraits<ELFYAML::Object> {
365 static void mapping(IO &IO, ELFYAML::Object &Object);
366};
367
368template <> struct MappingTraits<ELFYAML::SectionOrType> {
369 static void mapping(IO &IO, ELFYAML::SectionOrType &sectionOrType);
370};
371
372template <> struct MappingTraits<ELFYAML::SectionName> {
373 static void mapping(IO &IO, ELFYAML::SectionName &sectionName);
374};
375
376} // end namespace yaml
377} // end namespace llvm
378
379#endif // LLVM_OBJECTYAML_ELFYAML_H