Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 1 | //===- yaml2elf - Convert YAML to a ELF object file -----------------------===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 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 |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | /// |
| 9 | /// \file |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 10 | /// The ELF component of yaml2obj. |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 11 | /// |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "yaml2obj.h" |
Will Dietz | 0b48c73 | 2013-10-12 21:29:16 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/ArrayRef.h" |
Zachary Turner | 264b5d9 | 2017-06-07 03:48:56 +0000 | [diff] [blame] | 16 | #include "llvm/BinaryFormat/ELF.h" |
Rafael Espindola | 97de474 | 2014-07-03 02:01:39 +0000 | [diff] [blame] | 17 | #include "llvm/MC/StringTableBuilder.h" |
Michael J. Spencer | 126973b | 2013-08-08 22:27:13 +0000 | [diff] [blame] | 18 | #include "llvm/Object/ELFObjectFile.h" |
Rafael Espindola | ebd9193 | 2016-03-01 19:15:06 +0000 | [diff] [blame] | 19 | #include "llvm/ObjectYAML/ELFYAML.h" |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 20 | #include "llvm/Support/MemoryBuffer.h" |
Jonas Devlieghere | 2cd41eb | 2018-04-21 21:11:59 +0000 | [diff] [blame] | 21 | #include "llvm/Support/WithColor.h" |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 22 | #include "llvm/Support/YAMLTraits.h" |
| 23 | #include "llvm/Support/raw_ostream.h" |
| 24 | |
| 25 | using namespace llvm; |
| 26 | |
Sean Silva | 46dffff | 2013-06-13 22:20:01 +0000 | [diff] [blame] | 27 | // This class is used to build up a contiguous binary blob while keeping |
| 28 | // track of an offset in the output (which notionally begins at |
| 29 | // `InitialOffset`). |
Sean Silva | 2a74f70 | 2013-06-15 00:31:46 +0000 | [diff] [blame] | 30 | namespace { |
Sean Silva | 46dffff | 2013-06-13 22:20:01 +0000 | [diff] [blame] | 31 | class ContiguousBlobAccumulator { |
| 32 | const uint64_t InitialOffset; |
Sean Silva | bd3bc69 | 2013-06-20 19:11:41 +0000 | [diff] [blame] | 33 | SmallVector<char, 128> Buf; |
Sean Silva | 46dffff | 2013-06-13 22:20:01 +0000 | [diff] [blame] | 34 | raw_svector_ostream OS; |
| 35 | |
Sean Silva | d93323f | 2013-06-22 00:47:43 +0000 | [diff] [blame] | 36 | /// \returns The new offset. |
| 37 | uint64_t padToAlignment(unsigned Align) { |
Simon Atanasyan | 22c4c9e | 2015-07-08 10:12:40 +0000 | [diff] [blame] | 38 | if (Align == 0) |
| 39 | Align = 1; |
Sean Silva | d93323f | 2013-06-22 00:47:43 +0000 | [diff] [blame] | 40 | uint64_t CurrentOffset = InitialOffset + OS.tell(); |
Rui Ueyama | da00f2f | 2016-01-14 21:06:47 +0000 | [diff] [blame] | 41 | uint64_t AlignedOffset = alignTo(CurrentOffset, Align); |
Sean Silva | d93323f | 2013-06-22 00:47:43 +0000 | [diff] [blame] | 42 | for (; CurrentOffset != AlignedOffset; ++CurrentOffset) |
| 43 | OS.write('\0'); |
| 44 | return AlignedOffset; // == CurrentOffset; |
| 45 | } |
| 46 | |
Sean Silva | 46dffff | 2013-06-13 22:20:01 +0000 | [diff] [blame] | 47 | public: |
Sean Silva | bd3bc69 | 2013-06-20 19:11:41 +0000 | [diff] [blame] | 48 | ContiguousBlobAccumulator(uint64_t InitialOffset_) |
| 49 | : InitialOffset(InitialOffset_), Buf(), OS(Buf) {} |
Sean Silva | d93323f | 2013-06-22 00:47:43 +0000 | [diff] [blame] | 50 | template <class Integer> |
Simon Atanasyan | 22c4c9e | 2015-07-08 10:12:40 +0000 | [diff] [blame] | 51 | raw_ostream &getOSAndAlignedOffset(Integer &Offset, unsigned Align) { |
Sean Silva | d93323f | 2013-06-22 00:47:43 +0000 | [diff] [blame] | 52 | Offset = padToAlignment(Align); |
| 53 | return OS; |
| 54 | } |
Sean Silva | 46dffff | 2013-06-13 22:20:01 +0000 | [diff] [blame] | 55 | void writeBlobToStream(raw_ostream &Out) { Out << OS.str(); } |
| 56 | }; |
Sean Silva | 2a74f70 | 2013-06-15 00:31:46 +0000 | [diff] [blame] | 57 | } // end anonymous namespace |
Sean Silva | 46dffff | 2013-06-13 22:20:01 +0000 | [diff] [blame] | 58 | |
Simon Atanasyan | 35babf9 | 2014-04-06 09:02:55 +0000 | [diff] [blame] | 59 | // Used to keep track of section and symbol names, so that in the YAML file |
| 60 | // sections and symbols can be referenced by name instead of by index. |
Sean Silva | 2a74f70 | 2013-06-15 00:31:46 +0000 | [diff] [blame] | 61 | namespace { |
Simon Atanasyan | 35babf9 | 2014-04-06 09:02:55 +0000 | [diff] [blame] | 62 | class NameToIdxMap { |
Sean Silva | a6423eb | 2013-06-15 00:25:26 +0000 | [diff] [blame] | 63 | StringMap<int> Map; |
| 64 | public: |
| 65 | /// \returns true if name is already present in the map. |
Simon Atanasyan | 35babf9 | 2014-04-06 09:02:55 +0000 | [diff] [blame] | 66 | bool addName(StringRef Name, unsigned i) { |
David Blaikie | 5106ce7 | 2014-11-19 05:49:42 +0000 | [diff] [blame] | 67 | return !Map.insert(std::make_pair(Name, (int)i)).second; |
Sean Silva | a6423eb | 2013-06-15 00:25:26 +0000 | [diff] [blame] | 68 | } |
| 69 | /// \returns true if name is not present in the map |
Simon Atanasyan | 35babf9 | 2014-04-06 09:02:55 +0000 | [diff] [blame] | 70 | bool lookup(StringRef Name, unsigned &Idx) const { |
| 71 | StringMap<int>::const_iterator I = Map.find(Name); |
Sean Silva | a6423eb | 2013-06-15 00:25:26 +0000 | [diff] [blame] | 72 | if (I == Map.end()) |
| 73 | return true; |
| 74 | Idx = I->getValue(); |
| 75 | return false; |
| 76 | } |
Dave Lee | 17307d9 | 2017-11-09 14:53:43 +0000 | [diff] [blame] | 77 | /// asserts if name is not present in the map |
| 78 | unsigned get(StringRef Name) const { |
| 79 | unsigned Idx = 0; |
| 80 | auto missing = lookup(Name, Idx); |
| 81 | (void)missing; |
| 82 | assert(!missing && "Expected section not found in index"); |
| 83 | return Idx; |
| 84 | } |
| 85 | unsigned size() const { return Map.size(); } |
Sean Silva | a6423eb | 2013-06-15 00:25:26 +0000 | [diff] [blame] | 86 | }; |
Sean Silva | 2a74f70 | 2013-06-15 00:31:46 +0000 | [diff] [blame] | 87 | } // end anonymous namespace |
Sean Silva | a6423eb | 2013-06-15 00:25:26 +0000 | [diff] [blame] | 88 | |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 89 | template <class T> |
Will Dietz | 0b48c73 | 2013-10-12 21:29:16 +0000 | [diff] [blame] | 90 | static size_t arrayDataSize(ArrayRef<T> A) { |
| 91 | return A.size() * sizeof(T); |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | template <class T> |
Will Dietz | 0b48c73 | 2013-10-12 21:29:16 +0000 | [diff] [blame] | 95 | static void writeArrayData(raw_ostream &OS, ArrayRef<T> A) { |
| 96 | OS.write((const char *)A.data(), arrayDataSize(A)); |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | template <class T> |
| 100 | static void zero(T &Obj) { |
| 101 | memset(&Obj, 0, sizeof(Obj)); |
| 102 | } |
| 103 | |
Sean Silva | 08a75ae | 2013-06-20 19:11:44 +0000 | [diff] [blame] | 104 | namespace { |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 105 | /// "Single point of truth" for the ELF file construction. |
Sean Silva | 08a75ae | 2013-06-20 19:11:44 +0000 | [diff] [blame] | 106 | /// TODO: This class still has a ways to go before it is truly a "single |
| 107 | /// point of truth". |
| 108 | template <class ELFT> |
| 109 | class ELFState { |
Rui Ueyama | 478d635 | 2018-01-12 02:28:31 +0000 | [diff] [blame] | 110 | typedef typename ELFT::Ehdr Elf_Ehdr; |
| 111 | typedef typename ELFT::Phdr Elf_Phdr; |
| 112 | typedef typename ELFT::Shdr Elf_Shdr; |
| 113 | typedef typename ELFT::Sym Elf_Sym; |
| 114 | typedef typename ELFT::Rel Elf_Rel; |
| 115 | typedef typename ELFT::Rela Elf_Rela; |
Jake Ehrlich | 0f440d8 | 2018-06-28 21:07:34 +0000 | [diff] [blame] | 116 | typedef typename ELFT::Relr Elf_Relr; |
Paul Semel | 1dbbfba | 2018-07-23 18:49:04 +0000 | [diff] [blame] | 117 | typedef typename ELFT::Dyn Elf_Dyn; |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 118 | |
Dave Lee | 67b4966 | 2017-11-16 18:10:15 +0000 | [diff] [blame] | 119 | enum class SymtabType { Static, Dynamic }; |
| 120 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 121 | /// The future ".strtab" section. |
Rafael Espindola | 21956e4 | 2015-10-23 21:48:05 +0000 | [diff] [blame] | 122 | StringTableBuilder DotStrtab{StringTableBuilder::ELF}; |
Sean Silva | 08a75ae | 2013-06-20 19:11:44 +0000 | [diff] [blame] | 123 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 124 | /// The future ".shstrtab" section. |
Rafael Espindola | 21956e4 | 2015-10-23 21:48:05 +0000 | [diff] [blame] | 125 | StringTableBuilder DotShStrtab{StringTableBuilder::ELF}; |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 126 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 127 | /// The future ".dynstr" section. |
Dave Lee | 67b4966 | 2017-11-16 18:10:15 +0000 | [diff] [blame] | 128 | StringTableBuilder DotDynstr{StringTableBuilder::ELF}; |
| 129 | |
Simon Atanasyan | 35babf9 | 2014-04-06 09:02:55 +0000 | [diff] [blame] | 130 | NameToIdxMap SN2I; |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 131 | NameToIdxMap SymN2I; |
Simon Atanasyan | 220c54a | 2014-04-02 16:34:40 +0000 | [diff] [blame] | 132 | const ELFYAML::Object &Doc; |
Sean Silva | c1c290b | 2013-06-20 20:59:34 +0000 | [diff] [blame] | 133 | |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 134 | bool buildSectionIndex(); |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 135 | bool buildSymbolIndex(std::size_t &StartIndex, |
| 136 | const std::vector<ELFYAML::Symbol> &Symbols); |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 137 | void initELFHeader(Elf_Ehdr &Header); |
Petr Hosek | eb04da3 | 2017-07-19 20:38:46 +0000 | [diff] [blame] | 138 | void initProgramHeaders(std::vector<Elf_Phdr> &PHeaders); |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 139 | bool initSectionHeaders(std::vector<Elf_Shdr> &SHeaders, |
| 140 | ContiguousBlobAccumulator &CBA); |
Dave Lee | 67b4966 | 2017-11-16 18:10:15 +0000 | [diff] [blame] | 141 | void initSymtabSectionHeader(Elf_Shdr &SHeader, SymtabType STType, |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 142 | ContiguousBlobAccumulator &CBA); |
| 143 | void initStrtabSectionHeader(Elf_Shdr &SHeader, StringRef Name, |
| 144 | StringTableBuilder &STB, |
| 145 | ContiguousBlobAccumulator &CBA); |
Petr Hosek | eb04da3 | 2017-07-19 20:38:46 +0000 | [diff] [blame] | 146 | void setProgramHeaderLayout(std::vector<Elf_Phdr> &PHeaders, |
| 147 | std::vector<Elf_Shdr> &SHeaders); |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 148 | void addSymbols(const std::vector<ELFYAML::Symbol> &Symbols, |
Dave Lee | 67b4966 | 2017-11-16 18:10:15 +0000 | [diff] [blame] | 149 | std::vector<Elf_Sym> &Syms, unsigned SymbolBinding, |
| 150 | const StringTableBuilder &Strtab); |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 151 | void writeSectionContent(Elf_Shdr &SHeader, |
| 152 | const ELFYAML::RawContentSection &Section, |
| 153 | ContiguousBlobAccumulator &CBA); |
| 154 | bool writeSectionContent(Elf_Shdr &SHeader, |
| 155 | const ELFYAML::RelocationSection &Section, |
| 156 | ContiguousBlobAccumulator &CBA); |
Shankar Easwaran | 6fbbe20 | 2015-02-21 04:28:26 +0000 | [diff] [blame] | 157 | bool writeSectionContent(Elf_Shdr &SHeader, const ELFYAML::Group &Group, |
| 158 | ContiguousBlobAccumulator &CBA); |
Simon Atanasyan | 04d9e65 | 2015-05-07 15:40:48 +0000 | [diff] [blame] | 159 | bool writeSectionContent(Elf_Shdr &SHeader, |
George Rimar | 646af08 | 2019-02-19 15:29:07 +0000 | [diff] [blame^] | 160 | const ELFYAML::SymverSection &Section, |
| 161 | ContiguousBlobAccumulator &CBA); |
| 162 | bool writeSectionContent(Elf_Shdr &SHeader, |
George Rimar | 0621b79 | 2019-02-19 14:53:48 +0000 | [diff] [blame] | 163 | const ELFYAML::VerneedSection &Section, |
| 164 | ContiguousBlobAccumulator &CBA); |
| 165 | bool writeSectionContent(Elf_Shdr &SHeader, |
Simon Atanasyan | 04d9e65 | 2015-05-07 15:40:48 +0000 | [diff] [blame] | 166 | const ELFYAML::MipsABIFlags &Section, |
| 167 | ContiguousBlobAccumulator &CBA); |
George Rimar | 0e7ed91 | 2019-02-09 11:34:28 +0000 | [diff] [blame] | 168 | void writeSectionContent(Elf_Shdr &SHeader, |
| 169 | const ELFYAML::DynamicSection &Section, |
| 170 | ContiguousBlobAccumulator &CBA); |
Dave Lee | 67b4966 | 2017-11-16 18:10:15 +0000 | [diff] [blame] | 171 | bool hasDynamicSymbols() const; |
| 172 | SmallVector<const char *, 5> implicitSectionNames() const; |
Sean Silva | 08a75ae | 2013-06-20 19:11:44 +0000 | [diff] [blame] | 173 | |
Simon Atanasyan | 220c54a | 2014-04-02 16:34:40 +0000 | [diff] [blame] | 174 | // - SHT_NULL entry (placed first, i.e. 0'th entry) |
Dave Lee | 67b4966 | 2017-11-16 18:10:15 +0000 | [diff] [blame] | 175 | // - symbol table (.symtab) (defaults to after last yaml section) |
| 176 | // - string table (.strtab) (defaults to after .symtab) |
| 177 | // - section header string table (.shstrtab) (defaults to after .strtab) |
| 178 | // - dynamic symbol table (.dynsym) (defaults to after .shstrtab) |
| 179 | // - dynamic string table (.dynstr) (defaults to after .dynsym) |
Dave Lee | 17307d9 | 2017-11-09 14:53:43 +0000 | [diff] [blame] | 180 | unsigned getDotSymTabSecNo() const { return SN2I.get(".symtab"); } |
| 181 | unsigned getDotStrTabSecNo() const { return SN2I.get(".strtab"); } |
| 182 | unsigned getDotShStrTabSecNo() const { return SN2I.get(".shstrtab"); } |
Dave Lee | 67b4966 | 2017-11-16 18:10:15 +0000 | [diff] [blame] | 183 | unsigned getDotDynSymSecNo() const { return SN2I.get(".dynsym"); } |
| 184 | unsigned getDotDynStrSecNo() const { return SN2I.get(".dynstr"); } |
Dave Lee | 17307d9 | 2017-11-09 14:53:43 +0000 | [diff] [blame] | 185 | unsigned getSectionCount() const { return SN2I.size() + 1; } |
Simon Atanasyan | 220c54a | 2014-04-02 16:34:40 +0000 | [diff] [blame] | 186 | |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 187 | ELFState(const ELFYAML::Object &D) : Doc(D) {} |
Simon Atanasyan | 220c54a | 2014-04-02 16:34:40 +0000 | [diff] [blame] | 188 | |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 189 | public: |
| 190 | static int writeELF(raw_ostream &OS, const ELFYAML::Object &Doc); |
George Rimar | 0621b79 | 2019-02-19 14:53:48 +0000 | [diff] [blame] | 191 | |
| 192 | private: |
| 193 | void finalizeStrings(); |
Sean Silva | 08a75ae | 2013-06-20 19:11:44 +0000 | [diff] [blame] | 194 | }; |
| 195 | } // end anonymous namespace |
| 196 | |
Sean Silva | 37e817c | 2013-06-21 00:33:01 +0000 | [diff] [blame] | 197 | template <class ELFT> |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 198 | void ELFState<ELFT>::initELFHeader(Elf_Ehdr &Header) { |
| 199 | using namespace llvm::ELF; |
| 200 | zero(Header); |
| 201 | Header.e_ident[EI_MAG0] = 0x7f; |
| 202 | Header.e_ident[EI_MAG1] = 'E'; |
| 203 | Header.e_ident[EI_MAG2] = 'L'; |
| 204 | Header.e_ident[EI_MAG3] = 'F'; |
| 205 | Header.e_ident[EI_CLASS] = ELFT::Is64Bits ? ELFCLASS64 : ELFCLASS32; |
| 206 | bool IsLittleEndian = ELFT::TargetEndianness == support::little; |
| 207 | Header.e_ident[EI_DATA] = IsLittleEndian ? ELFDATA2LSB : ELFDATA2MSB; |
| 208 | Header.e_ident[EI_VERSION] = EV_CURRENT; |
| 209 | Header.e_ident[EI_OSABI] = Doc.Header.OSABI; |
George Rimar | 6367d7a | 2018-12-20 10:43:49 +0000 | [diff] [blame] | 210 | Header.e_ident[EI_ABIVERSION] = Doc.Header.ABIVersion; |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 211 | Header.e_type = Doc.Header.Type; |
| 212 | Header.e_machine = Doc.Header.Machine; |
| 213 | Header.e_version = EV_CURRENT; |
| 214 | Header.e_entry = Doc.Header.Entry; |
Petr Hosek | eb04da3 | 2017-07-19 20:38:46 +0000 | [diff] [blame] | 215 | Header.e_phoff = sizeof(Header); |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 216 | Header.e_flags = Doc.Header.Flags; |
| 217 | Header.e_ehsize = sizeof(Elf_Ehdr); |
Petr Hosek | eb04da3 | 2017-07-19 20:38:46 +0000 | [diff] [blame] | 218 | Header.e_phentsize = sizeof(Elf_Phdr); |
| 219 | Header.e_phnum = Doc.ProgramHeaders.size(); |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 220 | Header.e_shentsize = sizeof(Elf_Shdr); |
Petr Hosek | eb04da3 | 2017-07-19 20:38:46 +0000 | [diff] [blame] | 221 | // Immediately following the ELF header and program headers. |
| 222 | Header.e_shoff = |
| 223 | sizeof(Header) + sizeof(Elf_Phdr) * Doc.ProgramHeaders.size(); |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 224 | Header.e_shnum = getSectionCount(); |
| 225 | Header.e_shstrndx = getDotShStrTabSecNo(); |
| 226 | } |
| 227 | |
| 228 | template <class ELFT> |
Petr Hosek | eb04da3 | 2017-07-19 20:38:46 +0000 | [diff] [blame] | 229 | void ELFState<ELFT>::initProgramHeaders(std::vector<Elf_Phdr> &PHeaders) { |
| 230 | for (const auto &YamlPhdr : Doc.ProgramHeaders) { |
| 231 | Elf_Phdr Phdr; |
| 232 | Phdr.p_type = YamlPhdr.Type; |
| 233 | Phdr.p_flags = YamlPhdr.Flags; |
| 234 | Phdr.p_vaddr = YamlPhdr.VAddr; |
| 235 | Phdr.p_paddr = YamlPhdr.PAddr; |
| 236 | PHeaders.push_back(Phdr); |
| 237 | } |
| 238 | } |
| 239 | |
Xing GUO | 9822835 | 2018-12-04 14:27:51 +0000 | [diff] [blame] | 240 | static bool convertSectionIndex(NameToIdxMap &SN2I, StringRef SecName, |
| 241 | StringRef IndexSrc, unsigned &IndexDest) { |
| 242 | if (SN2I.lookup(IndexSrc, IndexDest) && !to_integer(IndexSrc, IndexDest)) { |
| 243 | WithColor::error() << "Unknown section referenced: '" << IndexSrc |
| 244 | << "' at YAML section '" << SecName << "'.\n"; |
| 245 | return false; |
| 246 | } |
| 247 | return true; |
| 248 | } |
| 249 | |
Petr Hosek | eb04da3 | 2017-07-19 20:38:46 +0000 | [diff] [blame] | 250 | template <class ELFT> |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 251 | bool ELFState<ELFT>::initSectionHeaders(std::vector<Elf_Shdr> &SHeaders, |
| 252 | ContiguousBlobAccumulator &CBA) { |
| 253 | // Ensure SHN_UNDEF entry is present. An all-zero section header is a |
| 254 | // valid SHN_UNDEF entry since SHT_NULL == 0. |
| 255 | Elf_Shdr SHeader; |
| 256 | zero(SHeader); |
| 257 | SHeaders.push_back(SHeader); |
| 258 | |
| 259 | for (const auto &Sec : Doc.Sections) { |
| 260 | zero(SHeader); |
Hans Wennborg | 59f0cba | 2014-04-30 19:38:09 +0000 | [diff] [blame] | 261 | SHeader.sh_name = DotShStrtab.getOffset(Sec->Name); |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 262 | SHeader.sh_type = Sec->Type; |
| 263 | SHeader.sh_flags = Sec->Flags; |
| 264 | SHeader.sh_addr = Sec->Address; |
| 265 | SHeader.sh_addralign = Sec->AddressAlign; |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 266 | |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 267 | if (!Sec->Link.empty()) { |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 268 | unsigned Index; |
Xing GUO | 9822835 | 2018-12-04 14:27:51 +0000 | [diff] [blame] | 269 | if (!convertSectionIndex(SN2I, Sec->Name, Sec->Link, Index)) |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 270 | return false; |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 271 | SHeader.sh_link = Index; |
| 272 | } |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 273 | |
| 274 | if (auto S = dyn_cast<ELFYAML::RawContentSection>(Sec.get())) |
| 275 | writeSectionContent(SHeader, *S, CBA); |
| 276 | else if (auto S = dyn_cast<ELFYAML::RelocationSection>(Sec.get())) { |
| 277 | if (S->Link.empty()) |
| 278 | // For relocation section set link to .symtab by default. |
| 279 | SHeader.sh_link = getDotSymTabSecNo(); |
| 280 | |
| 281 | unsigned Index; |
George Rimar | b87ea73 | 2019-02-12 09:08:59 +0000 | [diff] [blame] | 282 | if (!convertSectionIndex(SN2I, S->Name, S->RelocatableSec, Index)) |
George Rimar | 7f2df7d | 2018-08-16 12:23:22 +0000 | [diff] [blame] | 283 | return false; |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 284 | SHeader.sh_info = Index; |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 285 | if (!writeSectionContent(SHeader, *S, CBA)) |
| 286 | return false; |
Shankar Easwaran | 6fbbe20 | 2015-02-21 04:28:26 +0000 | [diff] [blame] | 287 | } else if (auto S = dyn_cast<ELFYAML::Group>(Sec.get())) { |
| 288 | unsigned SymIdx; |
George Rimar | b87ea73 | 2019-02-12 09:08:59 +0000 | [diff] [blame] | 289 | if (SymN2I.lookup(S->Signature, SymIdx) && |
| 290 | !to_integer(S->Signature, SymIdx)) { |
| 291 | WithColor::error() << "Unknown symbol referenced: '" << S->Signature |
Jonas Devlieghere | 2cd41eb | 2018-04-21 21:11:59 +0000 | [diff] [blame] | 292 | << "' at YAML section '" << S->Name << "'.\n"; |
Shankar Easwaran | 6fbbe20 | 2015-02-21 04:28:26 +0000 | [diff] [blame] | 293 | return false; |
| 294 | } |
| 295 | SHeader.sh_info = SymIdx; |
| 296 | if (!writeSectionContent(SHeader, *S, CBA)) |
| 297 | return false; |
Simon Atanasyan | 04d9e65 | 2015-05-07 15:40:48 +0000 | [diff] [blame] | 298 | } else if (auto S = dyn_cast<ELFYAML::MipsABIFlags>(Sec.get())) { |
| 299 | if (!writeSectionContent(SHeader, *S, CBA)) |
| 300 | return false; |
Simon Atanasyan | 5db0276 | 2015-07-03 23:00:54 +0000 | [diff] [blame] | 301 | } else if (auto S = dyn_cast<ELFYAML::NoBitsSection>(Sec.get())) { |
| 302 | SHeader.sh_entsize = 0; |
| 303 | SHeader.sh_size = S->Size; |
| 304 | // SHT_NOBITS section does not have content |
| 305 | // so just to setup the section offset. |
Simon Atanasyan | 22c4c9e | 2015-07-08 10:12:40 +0000 | [diff] [blame] | 306 | CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign); |
George Rimar | 0e7ed91 | 2019-02-09 11:34:28 +0000 | [diff] [blame] | 307 | } else if (auto S = dyn_cast<ELFYAML::DynamicSection>(Sec.get())) { |
| 308 | writeSectionContent(SHeader, *S, CBA); |
George Rimar | 646af08 | 2019-02-19 15:29:07 +0000 | [diff] [blame^] | 309 | } else if (auto S = dyn_cast<ELFYAML::SymverSection>(Sec.get())) { |
| 310 | writeSectionContent(SHeader, *S, CBA); |
George Rimar | 0621b79 | 2019-02-19 14:53:48 +0000 | [diff] [blame] | 311 | } else if (auto S = dyn_cast<ELFYAML::VerneedSection>(Sec.get())) { |
| 312 | writeSectionContent(SHeader, *S, CBA); |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 313 | } else |
| 314 | llvm_unreachable("Unknown section type"); |
| 315 | |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 316 | SHeaders.push_back(SHeader); |
| 317 | } |
| 318 | return true; |
| 319 | } |
| 320 | |
| 321 | template <class ELFT> |
| 322 | void ELFState<ELFT>::initSymtabSectionHeader(Elf_Shdr &SHeader, |
Dave Lee | 67b4966 | 2017-11-16 18:10:15 +0000 | [diff] [blame] | 323 | SymtabType STType, |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 324 | ContiguousBlobAccumulator &CBA) { |
| 325 | zero(SHeader); |
Dave Lee | 67b4966 | 2017-11-16 18:10:15 +0000 | [diff] [blame] | 326 | bool IsStatic = STType == SymtabType::Static; |
| 327 | SHeader.sh_name = DotShStrtab.getOffset(IsStatic ? ".symtab" : ".dynsym"); |
| 328 | SHeader.sh_type = IsStatic ? ELF::SHT_SYMTAB : ELF::SHT_DYNSYM; |
| 329 | SHeader.sh_link = IsStatic ? getDotStrTabSecNo() : getDotDynStrSecNo(); |
| 330 | const auto &Symbols = IsStatic ? Doc.Symbols : Doc.DynamicSymbols; |
| 331 | auto &Strtab = IsStatic ? DotStrtab : DotDynstr; |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 332 | // One greater than symbol table index of the last local symbol. |
Dave Lee | 67b4966 | 2017-11-16 18:10:15 +0000 | [diff] [blame] | 333 | SHeader.sh_info = Symbols.Local.size() + 1; |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 334 | SHeader.sh_entsize = sizeof(Elf_Sym); |
Simon Atanasyan | 3a12092 | 2015-07-09 18:23:02 +0000 | [diff] [blame] | 335 | SHeader.sh_addralign = 8; |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 336 | |
George Rimar | 6947acd | 2019-02-19 12:15:04 +0000 | [diff] [blame] | 337 | // If .dynsym section is explicitly described in the YAML |
| 338 | // then we want to use its section address. |
| 339 | if (!IsStatic) { |
| 340 | // Take section index and ignore the SHT_NULL section. |
| 341 | unsigned SecNdx = getDotDynSymSecNo() - 1; |
| 342 | if (SecNdx < Doc.Sections.size()) |
| 343 | SHeader.sh_addr = Doc.Sections[SecNdx]->Address; |
| 344 | } |
| 345 | |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 346 | std::vector<Elf_Sym> Syms; |
| 347 | { |
| 348 | // Ensure STN_UNDEF is present |
| 349 | Elf_Sym Sym; |
| 350 | zero(Sym); |
| 351 | Syms.push_back(Sym); |
| 352 | } |
Hans Wennborg | 59f0cba | 2014-04-30 19:38:09 +0000 | [diff] [blame] | 353 | |
Dave Lee | 67b4966 | 2017-11-16 18:10:15 +0000 | [diff] [blame] | 354 | addSymbols(Symbols.Local, Syms, ELF::STB_LOCAL, Strtab); |
| 355 | addSymbols(Symbols.Global, Syms, ELF::STB_GLOBAL, Strtab); |
| 356 | addSymbols(Symbols.Weak, Syms, ELF::STB_WEAK, Strtab); |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 357 | |
Simon Atanasyan | 22c4c9e | 2015-07-08 10:12:40 +0000 | [diff] [blame] | 358 | writeArrayData( |
| 359 | CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign), |
| 360 | makeArrayRef(Syms)); |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 361 | SHeader.sh_size = arrayDataSize(makeArrayRef(Syms)); |
| 362 | } |
| 363 | |
| 364 | template <class ELFT> |
| 365 | void ELFState<ELFT>::initStrtabSectionHeader(Elf_Shdr &SHeader, StringRef Name, |
| 366 | StringTableBuilder &STB, |
| 367 | ContiguousBlobAccumulator &CBA) { |
| 368 | zero(SHeader); |
Hans Wennborg | 59f0cba | 2014-04-30 19:38:09 +0000 | [diff] [blame] | 369 | SHeader.sh_name = DotShStrtab.getOffset(Name); |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 370 | SHeader.sh_type = ELF::SHT_STRTAB; |
Rafael Espindola | 39751af | 2016-10-04 22:43:25 +0000 | [diff] [blame] | 371 | STB.write(CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign)); |
| 372 | SHeader.sh_size = STB.getSize(); |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 373 | SHeader.sh_addralign = 1; |
George Rimar | 6947acd | 2019-02-19 12:15:04 +0000 | [diff] [blame] | 374 | |
| 375 | // If .dynstr section is explicitly described in the YAML |
| 376 | // then we want to use its section address. |
| 377 | if (Name == ".dynstr") { |
| 378 | // Take section index and ignore the SHT_NULL section. |
| 379 | unsigned SecNdx = getDotDynStrSecNo() - 1; |
| 380 | if (SecNdx < Doc.Sections.size()) |
| 381 | SHeader.sh_addr = Doc.Sections[SecNdx]->Address; |
| 382 | } |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 383 | } |
| 384 | |
| 385 | template <class ELFT> |
Petr Hosek | eb04da3 | 2017-07-19 20:38:46 +0000 | [diff] [blame] | 386 | void ELFState<ELFT>::setProgramHeaderLayout(std::vector<Elf_Phdr> &PHeaders, |
| 387 | std::vector<Elf_Shdr> &SHeaders) { |
| 388 | uint32_t PhdrIdx = 0; |
| 389 | for (auto &YamlPhdr : Doc.ProgramHeaders) { |
| 390 | auto &PHeader = PHeaders[PhdrIdx++]; |
| 391 | |
| 392 | if (YamlPhdr.Sections.size()) |
| 393 | PHeader.p_offset = UINT32_MAX; |
| 394 | else |
| 395 | PHeader.p_offset = 0; |
| 396 | |
| 397 | // Find the minimum offset for the program header. |
| 398 | for (auto SecName : YamlPhdr.Sections) { |
| 399 | uint32_t Index = 0; |
| 400 | SN2I.lookup(SecName.Section, Index); |
| 401 | const auto &SHeader = SHeaders[Index]; |
| 402 | PHeader.p_offset = std::min(PHeader.p_offset, SHeader.sh_offset); |
| 403 | } |
| 404 | |
| 405 | // Find the maximum offset of the end of a section in order to set p_filesz. |
| 406 | PHeader.p_filesz = 0; |
| 407 | for (auto SecName : YamlPhdr.Sections) { |
| 408 | uint32_t Index = 0; |
| 409 | SN2I.lookup(SecName.Section, Index); |
| 410 | const auto &SHeader = SHeaders[Index]; |
| 411 | uint64_t EndOfSection; |
| 412 | if (SHeader.sh_type == llvm::ELF::SHT_NOBITS) |
| 413 | EndOfSection = SHeader.sh_offset; |
| 414 | else |
| 415 | EndOfSection = SHeader.sh_offset + SHeader.sh_size; |
| 416 | uint64_t EndOfSegment = PHeader.p_offset + PHeader.p_filesz; |
| 417 | EndOfSegment = std::max(EndOfSegment, EndOfSection); |
| 418 | PHeader.p_filesz = EndOfSegment - PHeader.p_offset; |
| 419 | } |
| 420 | |
| 421 | // Find the memory size by adding the size of sections at the end of the |
| 422 | // segment. These should be empty (size of zero) and NOBITS sections. |
| 423 | PHeader.p_memsz = PHeader.p_filesz; |
| 424 | for (auto SecName : YamlPhdr.Sections) { |
| 425 | uint32_t Index = 0; |
| 426 | SN2I.lookup(SecName.Section, Index); |
| 427 | const auto &SHeader = SHeaders[Index]; |
| 428 | if (SHeader.sh_offset == PHeader.p_offset + PHeader.p_filesz) |
| 429 | PHeader.p_memsz += SHeader.sh_size; |
| 430 | } |
| 431 | |
| 432 | // Set the alignment of the segment to be the same as the maximum alignment |
Jake Ehrlich | 03aeeb09 | 2017-11-01 23:14:48 +0000 | [diff] [blame] | 433 | // of the sections with the same offset so that by default the segment |
Petr Hosek | eb04da3 | 2017-07-19 20:38:46 +0000 | [diff] [blame] | 434 | // has a valid and sensible alignment. |
Jake Ehrlich | 03aeeb09 | 2017-11-01 23:14:48 +0000 | [diff] [blame] | 435 | if (YamlPhdr.Align) { |
| 436 | PHeader.p_align = *YamlPhdr.Align; |
| 437 | } else { |
| 438 | PHeader.p_align = 1; |
| 439 | for (auto SecName : YamlPhdr.Sections) { |
| 440 | uint32_t Index = 0; |
| 441 | SN2I.lookup(SecName.Section, Index); |
| 442 | const auto &SHeader = SHeaders[Index]; |
| 443 | if (SHeader.sh_offset == PHeader.p_offset) |
| 444 | PHeader.p_align = std::max(PHeader.p_align, SHeader.sh_addralign); |
| 445 | } |
Petr Hosek | eb04da3 | 2017-07-19 20:38:46 +0000 | [diff] [blame] | 446 | } |
| 447 | } |
| 448 | } |
| 449 | |
| 450 | template <class ELFT> |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 451 | void ELFState<ELFT>::addSymbols(const std::vector<ELFYAML::Symbol> &Symbols, |
| 452 | std::vector<Elf_Sym> &Syms, |
Dave Lee | 67b4966 | 2017-11-16 18:10:15 +0000 | [diff] [blame] | 453 | unsigned SymbolBinding, |
| 454 | const StringTableBuilder &Strtab) { |
Simon Atanasyan | 048baca | 2014-03-14 06:53:30 +0000 | [diff] [blame] | 455 | for (const auto &Sym : Symbols) { |
Sean Silva | 6b08388 | 2013-06-18 23:14:03 +0000 | [diff] [blame] | 456 | Elf_Sym Symbol; |
| 457 | zero(Symbol); |
| 458 | if (!Sym.Name.empty()) |
Dave Lee | 67b4966 | 2017-11-16 18:10:15 +0000 | [diff] [blame] | 459 | Symbol.st_name = Strtab.getOffset(Sym.Name); |
Sean Silva | aff5125 | 2013-06-21 00:27:50 +0000 | [diff] [blame] | 460 | Symbol.setBindingAndType(SymbolBinding, Sym.Type); |
Sean Silva | c4afa6d | 2013-06-21 01:11:48 +0000 | [diff] [blame] | 461 | if (!Sym.Section.empty()) { |
| 462 | unsigned Index; |
Simon Atanasyan | 35babf9 | 2014-04-06 09:02:55 +0000 | [diff] [blame] | 463 | if (SN2I.lookup(Sym.Section, Index)) { |
Jonas Devlieghere | 2cd41eb | 2018-04-21 21:11:59 +0000 | [diff] [blame] | 464 | WithColor::error() << "Unknown section referenced: '" << Sym.Section |
| 465 | << "' by YAML symbol " << Sym.Name << ".\n"; |
Sean Silva | c4afa6d | 2013-06-21 01:11:48 +0000 | [diff] [blame] | 466 | exit(1); |
| 467 | } |
| 468 | Symbol.st_shndx = Index; |
Petr Hosek | 5c469a3 | 2017-09-07 20:44:16 +0000 | [diff] [blame] | 469 | } else if (Sym.Index) { |
| 470 | Symbol.st_shndx = *Sym.Index; |
| 471 | } |
| 472 | // else Symbol.st_shndex == SHN_UNDEF (== 0), since it was zero'd earlier. |
Sean Silva | 05001b9 | 2013-06-20 20:59:47 +0000 | [diff] [blame] | 473 | Symbol.st_value = Sym.Value; |
Simon Atanasyan | 60e1a79 | 2014-11-06 22:46:24 +0000 | [diff] [blame] | 474 | Symbol.st_other = Sym.Other; |
Sean Silva | 05001b9 | 2013-06-20 20:59:47 +0000 | [diff] [blame] | 475 | Symbol.st_size = Sym.Size; |
Sean Silva | 6b08388 | 2013-06-18 23:14:03 +0000 | [diff] [blame] | 476 | Syms.push_back(Symbol); |
| 477 | } |
Sean Silva | aff5125 | 2013-06-21 00:27:50 +0000 | [diff] [blame] | 478 | } |
| 479 | |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 480 | template <class ELFT> |
| 481 | void |
| 482 | ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader, |
| 483 | const ELFYAML::RawContentSection &Section, |
| 484 | ContiguousBlobAccumulator &CBA) { |
Simon Atanasyan | b83f380 | 2014-05-16 16:01:00 +0000 | [diff] [blame] | 485 | assert(Section.Size >= Section.Content.binary_size() && |
| 486 | "Section size and section content are inconsistent"); |
Simon Atanasyan | 22c4c9e | 2015-07-08 10:12:40 +0000 | [diff] [blame] | 487 | raw_ostream &OS = |
| 488 | CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign); |
Simon Atanasyan | b83f380 | 2014-05-16 16:01:00 +0000 | [diff] [blame] | 489 | Section.Content.writeAsBinary(OS); |
| 490 | for (auto i = Section.Content.binary_size(); i < Section.Size; ++i) |
| 491 | OS.write(0); |
George Rimar | 65a6828 | 2018-08-07 08:11:38 +0000 | [diff] [blame] | 492 | if (Section.EntSize) |
| 493 | SHeader.sh_entsize = *Section.EntSize; |
| 494 | else if (Section.Type == llvm::ELF::SHT_RELR) |
Jake Ehrlich | 0f440d8 | 2018-06-28 21:07:34 +0000 | [diff] [blame] | 495 | SHeader.sh_entsize = sizeof(Elf_Relr); |
| 496 | else |
| 497 | SHeader.sh_entsize = 0; |
Simon Atanasyan | b83f380 | 2014-05-16 16:01:00 +0000 | [diff] [blame] | 498 | SHeader.sh_size = Section.Size; |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 499 | } |
| 500 | |
Simon Atanasyan | 5d19c67 | 2015-01-25 13:29:25 +0000 | [diff] [blame] | 501 | static bool isMips64EL(const ELFYAML::Object &Doc) { |
| 502 | return Doc.Header.Machine == ELFYAML::ELF_EM(llvm::ELF::EM_MIPS) && |
| 503 | Doc.Header.Class == ELFYAML::ELF_ELFCLASS(ELF::ELFCLASS64) && |
| 504 | Doc.Header.Data == ELFYAML::ELF_ELFDATA(ELF::ELFDATA2LSB); |
| 505 | } |
| 506 | |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 507 | template <class ELFT> |
| 508 | bool |
| 509 | ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader, |
| 510 | const ELFYAML::RelocationSection &Section, |
| 511 | ContiguousBlobAccumulator &CBA) { |
Simon Atanasyan | 8eb9d1b | 2015-05-08 07:05:04 +0000 | [diff] [blame] | 512 | assert((Section.Type == llvm::ELF::SHT_REL || |
| 513 | Section.Type == llvm::ELF::SHT_RELA) && |
| 514 | "Section type is not SHT_REL nor SHT_RELA"); |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 515 | |
| 516 | bool IsRela = Section.Type == llvm::ELF::SHT_RELA; |
| 517 | SHeader.sh_entsize = IsRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel); |
| 518 | SHeader.sh_size = SHeader.sh_entsize * Section.Relocations.size(); |
| 519 | |
Simon Atanasyan | 22c4c9e | 2015-07-08 10:12:40 +0000 | [diff] [blame] | 520 | auto &OS = CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign); |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 521 | |
| 522 | for (const auto &Rel : Section.Relocations) { |
Adhemerval Zanella | 9f3dbff | 2015-04-22 15:26:43 +0000 | [diff] [blame] | 523 | unsigned SymIdx = 0; |
| 524 | // Some special relocation, R_ARM_v4BX for instance, does not have |
| 525 | // an external reference. So it ignores the return value of lookup() |
| 526 | // here. |
Petr Hosek | 5aa80f1 | 2017-08-30 23:13:31 +0000 | [diff] [blame] | 527 | if (Rel.Symbol) |
| 528 | SymN2I.lookup(*Rel.Symbol, SymIdx); |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 529 | |
| 530 | if (IsRela) { |
| 531 | Elf_Rela REntry; |
| 532 | zero(REntry); |
| 533 | REntry.r_offset = Rel.Offset; |
| 534 | REntry.r_addend = Rel.Addend; |
Simon Atanasyan | 5d19c67 | 2015-01-25 13:29:25 +0000 | [diff] [blame] | 535 | REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc)); |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 536 | OS.write((const char *)&REntry, sizeof(REntry)); |
| 537 | } else { |
| 538 | Elf_Rel REntry; |
| 539 | zero(REntry); |
| 540 | REntry.r_offset = Rel.Offset; |
Simon Atanasyan | 5d19c67 | 2015-01-25 13:29:25 +0000 | [diff] [blame] | 541 | REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc)); |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 542 | OS.write((const char *)&REntry, sizeof(REntry)); |
| 543 | } |
| 544 | } |
| 545 | return true; |
| 546 | } |
| 547 | |
Shankar Easwaran | 6fbbe20 | 2015-02-21 04:28:26 +0000 | [diff] [blame] | 548 | template <class ELFT> |
| 549 | bool ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader, |
| 550 | const ELFYAML::Group &Section, |
| 551 | ContiguousBlobAccumulator &CBA) { |
Rui Ueyama | 478d635 | 2018-01-12 02:28:31 +0000 | [diff] [blame] | 552 | typedef typename ELFT::Word Elf_Word; |
Simon Atanasyan | 8eb9d1b | 2015-05-08 07:05:04 +0000 | [diff] [blame] | 553 | assert(Section.Type == llvm::ELF::SHT_GROUP && |
| 554 | "Section type is not SHT_GROUP"); |
Shankar Easwaran | 6fbbe20 | 2015-02-21 04:28:26 +0000 | [diff] [blame] | 555 | |
| 556 | SHeader.sh_entsize = sizeof(Elf_Word); |
| 557 | SHeader.sh_size = SHeader.sh_entsize * Section.Members.size(); |
| 558 | |
Simon Atanasyan | 22c4c9e | 2015-07-08 10:12:40 +0000 | [diff] [blame] | 559 | auto &OS = CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign); |
Shankar Easwaran | 6fbbe20 | 2015-02-21 04:28:26 +0000 | [diff] [blame] | 560 | |
| 561 | for (auto member : Section.Members) { |
| 562 | Elf_Word SIdx; |
| 563 | unsigned int sectionIndex = 0; |
| 564 | if (member.sectionNameOrType == "GRP_COMDAT") |
| 565 | sectionIndex = llvm::ELF::GRP_COMDAT; |
Xing GUO | 9822835 | 2018-12-04 14:27:51 +0000 | [diff] [blame] | 566 | else if (!convertSectionIndex(SN2I, Section.Name, member.sectionNameOrType, |
| 567 | sectionIndex)) |
Shankar Easwaran | 6fbbe20 | 2015-02-21 04:28:26 +0000 | [diff] [blame] | 568 | return false; |
Shankar Easwaran | 6fbbe20 | 2015-02-21 04:28:26 +0000 | [diff] [blame] | 569 | SIdx = sectionIndex; |
| 570 | OS.write((const char *)&SIdx, sizeof(SIdx)); |
| 571 | } |
| 572 | return true; |
| 573 | } |
| 574 | |
Simon Atanasyan | 04d9e65 | 2015-05-07 15:40:48 +0000 | [diff] [blame] | 575 | template <class ELFT> |
| 576 | bool ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader, |
George Rimar | 646af08 | 2019-02-19 15:29:07 +0000 | [diff] [blame^] | 577 | const ELFYAML::SymverSection &Section, |
| 578 | ContiguousBlobAccumulator &CBA) { |
| 579 | typedef typename ELFT::Half Elf_Half; |
| 580 | |
| 581 | raw_ostream &OS = |
| 582 | CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign); |
| 583 | for (uint16_t V : Section.Entries) { |
| 584 | Elf_Half Version = (Elf_Half)V; |
| 585 | OS.write((const char *)&Version, sizeof(Elf_Half)); |
| 586 | } |
| 587 | |
| 588 | SHeader.sh_size = Section.Entries.size() * sizeof(Elf_Half); |
| 589 | SHeader.sh_entsize = sizeof(Elf_Half); |
| 590 | return true; |
| 591 | } |
| 592 | |
| 593 | template <class ELFT> |
| 594 | bool ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader, |
George Rimar | 0621b79 | 2019-02-19 14:53:48 +0000 | [diff] [blame] | 595 | const ELFYAML::VerneedSection &Section, |
| 596 | ContiguousBlobAccumulator &CBA) { |
| 597 | typedef typename ELFT::Verneed Elf_Verneed; |
| 598 | typedef typename ELFT::Vernaux Elf_Vernaux; |
| 599 | |
| 600 | auto &OS = CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign); |
| 601 | |
| 602 | uint64_t AuxCnt = 0; |
| 603 | for (size_t I = 0; I < Section.VerneedV.size(); ++I) { |
| 604 | const ELFYAML::VerneedEntry &VE = Section.VerneedV[I]; |
| 605 | |
| 606 | Elf_Verneed VerNeed; |
| 607 | VerNeed.vn_version = VE.Version; |
| 608 | VerNeed.vn_file = DotDynstr.getOffset(VE.File); |
| 609 | if (I == Section.VerneedV.size() - 1) |
| 610 | VerNeed.vn_next = 0; |
| 611 | else |
| 612 | VerNeed.vn_next = |
| 613 | sizeof(Elf_Verneed) + VE.AuxV.size() * sizeof(Elf_Vernaux); |
| 614 | VerNeed.vn_cnt = VE.AuxV.size(); |
| 615 | VerNeed.vn_aux = sizeof(Elf_Verneed); |
| 616 | OS.write((const char *)&VerNeed, sizeof(Elf_Verneed)); |
| 617 | |
| 618 | for (size_t J = 0; J < VE.AuxV.size(); ++J, ++AuxCnt) { |
| 619 | const ELFYAML::VernauxEntry &VAuxE = VE.AuxV[J]; |
| 620 | |
| 621 | Elf_Vernaux VernAux; |
| 622 | VernAux.vna_hash = VAuxE.Hash; |
| 623 | VernAux.vna_flags = VAuxE.Flags; |
| 624 | VernAux.vna_other = VAuxE.Other; |
| 625 | VernAux.vna_name = DotDynstr.getOffset(VAuxE.Name); |
| 626 | if (J == VE.AuxV.size() - 1) |
| 627 | VernAux.vna_next = 0; |
| 628 | else |
| 629 | VernAux.vna_next = sizeof(Elf_Vernaux); |
| 630 | OS.write((const char *)&VernAux, sizeof(Elf_Vernaux)); |
| 631 | } |
| 632 | } |
| 633 | |
| 634 | SHeader.sh_size = Section.VerneedV.size() * sizeof(Elf_Verneed) + |
| 635 | AuxCnt * sizeof(Elf_Vernaux); |
| 636 | SHeader.sh_info = Section.Info; |
| 637 | |
| 638 | return true; |
| 639 | } |
| 640 | |
| 641 | template <class ELFT> |
| 642 | bool ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader, |
Simon Atanasyan | 04d9e65 | 2015-05-07 15:40:48 +0000 | [diff] [blame] | 643 | const ELFYAML::MipsABIFlags &Section, |
| 644 | ContiguousBlobAccumulator &CBA) { |
Simon Atanasyan | 8eb9d1b | 2015-05-08 07:05:04 +0000 | [diff] [blame] | 645 | assert(Section.Type == llvm::ELF::SHT_MIPS_ABIFLAGS && |
| 646 | "Section type is not SHT_MIPS_ABIFLAGS"); |
Simon Atanasyan | 04d9e65 | 2015-05-07 15:40:48 +0000 | [diff] [blame] | 647 | |
| 648 | object::Elf_Mips_ABIFlags<ELFT> Flags; |
| 649 | zero(Flags); |
| 650 | SHeader.sh_entsize = sizeof(Flags); |
| 651 | SHeader.sh_size = SHeader.sh_entsize; |
| 652 | |
Simon Atanasyan | 22c4c9e | 2015-07-08 10:12:40 +0000 | [diff] [blame] | 653 | auto &OS = CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign); |
Simon Atanasyan | 04d9e65 | 2015-05-07 15:40:48 +0000 | [diff] [blame] | 654 | Flags.version = Section.Version; |
| 655 | Flags.isa_level = Section.ISALevel; |
| 656 | Flags.isa_rev = Section.ISARevision; |
| 657 | Flags.gpr_size = Section.GPRSize; |
| 658 | Flags.cpr1_size = Section.CPR1Size; |
| 659 | Flags.cpr2_size = Section.CPR2Size; |
| 660 | Flags.fp_abi = Section.FpABI; |
| 661 | Flags.isa_ext = Section.ISAExtension; |
| 662 | Flags.ases = Section.ASEs; |
| 663 | Flags.flags1 = Section.Flags1; |
| 664 | Flags.flags2 = Section.Flags2; |
| 665 | OS.write((const char *)&Flags, sizeof(Flags)); |
| 666 | |
| 667 | return true; |
| 668 | } |
| 669 | |
George Rimar | 0e7ed91 | 2019-02-09 11:34:28 +0000 | [diff] [blame] | 670 | template <class ELFT> |
| 671 | void ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader, |
| 672 | const ELFYAML::DynamicSection &Section, |
| 673 | ContiguousBlobAccumulator &CBA) { |
George Rimar | 5cb3173 | 2019-02-10 08:35:38 +0000 | [diff] [blame] | 674 | typedef typename ELFT::Addr Elf_Addr; |
George Rimar | 0e7ed91 | 2019-02-09 11:34:28 +0000 | [diff] [blame] | 675 | assert(Section.Type == llvm::ELF::SHT_DYNAMIC && |
| 676 | "Section type is not SHT_DYNAMIC"); |
| 677 | |
George Rimar | 5cb3173 | 2019-02-10 08:35:38 +0000 | [diff] [blame] | 678 | SHeader.sh_size = 2 * sizeof(Elf_Addr) * Section.Entries.size(); |
George Rimar | 0e7ed91 | 2019-02-09 11:34:28 +0000 | [diff] [blame] | 679 | if (Section.EntSize) |
| 680 | SHeader.sh_entsize = *Section.EntSize; |
| 681 | else |
| 682 | SHeader.sh_entsize = sizeof(Elf_Dyn); |
| 683 | |
| 684 | auto &OS = CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign); |
| 685 | for (const ELFYAML::DynamicEntry &DE : Section.Entries) { |
George Rimar | 5cb3173 | 2019-02-10 08:35:38 +0000 | [diff] [blame] | 686 | Elf_Addr Tag = (Elf_Addr)DE.Tag; |
| 687 | OS.write((const char *)&Tag, sizeof(Elf_Addr)); |
| 688 | Elf_Addr Val = (Elf_Addr)DE.Val; |
| 689 | OS.write((const char *)&Val, sizeof(Elf_Addr)); |
George Rimar | 0e7ed91 | 2019-02-09 11:34:28 +0000 | [diff] [blame] | 690 | } |
| 691 | } |
| 692 | |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 693 | template <class ELFT> bool ELFState<ELFT>::buildSectionIndex() { |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 694 | for (unsigned i = 0, e = Doc.Sections.size(); i != e; ++i) { |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 695 | StringRef Name = Doc.Sections[i]->Name; |
Dave Lee | 17307d9 | 2017-11-09 14:53:43 +0000 | [diff] [blame] | 696 | DotShStrtab.add(Name); |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 697 | // "+ 1" to take into account the SHT_NULL entry. |
| 698 | if (SN2I.addName(Name, i + 1)) { |
Jonas Devlieghere | 2cd41eb | 2018-04-21 21:11:59 +0000 | [diff] [blame] | 699 | WithColor::error() << "Repeated section name: '" << Name |
| 700 | << "' at YAML section number " << i << ".\n"; |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 701 | return false; |
| 702 | } |
Sean Silva | aff5125 | 2013-06-21 00:27:50 +0000 | [diff] [blame] | 703 | } |
Dave Lee | 17307d9 | 2017-11-09 14:53:43 +0000 | [diff] [blame] | 704 | |
| 705 | auto SecNo = 1 + Doc.Sections.size(); |
| 706 | // Add special sections after input sections, if necessary. |
Dave Lee | 67b4966 | 2017-11-16 18:10:15 +0000 | [diff] [blame] | 707 | for (const auto &Name : implicitSectionNames()) |
Dave Lee | 17307d9 | 2017-11-09 14:53:43 +0000 | [diff] [blame] | 708 | if (!SN2I.addName(Name, SecNo)) { |
| 709 | // Account for this section, since it wasn't in the Doc |
| 710 | ++SecNo; |
| 711 | DotShStrtab.add(Name); |
| 712 | } |
| 713 | |
| 714 | DotShStrtab.finalize(); |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 715 | return true; |
Sean Silva | 6b08388 | 2013-06-18 23:14:03 +0000 | [diff] [blame] | 716 | } |
| 717 | |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 718 | template <class ELFT> |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 719 | bool |
| 720 | ELFState<ELFT>::buildSymbolIndex(std::size_t &StartIndex, |
| 721 | const std::vector<ELFYAML::Symbol> &Symbols) { |
| 722 | for (const auto &Sym : Symbols) { |
| 723 | ++StartIndex; |
| 724 | if (Sym.Name.empty()) |
| 725 | continue; |
| 726 | if (SymN2I.addName(Sym.Name, StartIndex)) { |
Jonas Devlieghere | 2cd41eb | 2018-04-21 21:11:59 +0000 | [diff] [blame] | 727 | WithColor::error() << "Repeated symbol name: '" << Sym.Name << "'.\n"; |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 728 | return false; |
| 729 | } |
| 730 | } |
| 731 | return true; |
| 732 | } |
| 733 | |
George Rimar | 0621b79 | 2019-02-19 14:53:48 +0000 | [diff] [blame] | 734 | template <class ELFT> void ELFState<ELFT>::finalizeStrings() { |
| 735 | auto AddSymbols = [](StringTableBuilder &StrTab, |
| 736 | const ELFYAML::LocalGlobalWeakSymbols &Symbols) { |
| 737 | for (const auto &Sym : Symbols.Local) |
| 738 | StrTab.add(Sym.Name); |
| 739 | for (const auto &Sym : Symbols.Global) |
| 740 | StrTab.add(Sym.Name); |
| 741 | for (const auto &Sym : Symbols.Weak) |
| 742 | StrTab.add(Sym.Name); |
| 743 | }; |
| 744 | |
| 745 | // Add the regular symbol names to .strtab section. |
| 746 | AddSymbols(DotStrtab, Doc.Symbols); |
| 747 | DotStrtab.finalize(); |
| 748 | |
| 749 | if (!hasDynamicSymbols()) |
| 750 | return; |
| 751 | |
| 752 | // Add the dynamic symbol names to .dynstr section. |
| 753 | AddSymbols(DotDynstr, Doc.DynamicSymbols); |
| 754 | |
| 755 | // SHT_GNU_verneed section also adds strings to .dynstr section. |
| 756 | for (const std::unique_ptr<ELFYAML::Section> &Sec : Doc.Sections) { |
| 757 | auto VerNeed = dyn_cast<ELFYAML::VerneedSection>(Sec.get()); |
| 758 | if (!VerNeed) |
| 759 | continue; |
| 760 | |
| 761 | for (const ELFYAML::VerneedEntry &VE : VerNeed->VerneedV) { |
| 762 | DotDynstr.add(VE.File); |
| 763 | for (const ELFYAML::VernauxEntry &Aux : VE.AuxV) |
| 764 | DotDynstr.add(Aux.Name); |
| 765 | } |
| 766 | } |
| 767 | |
| 768 | DotDynstr.finalize(); |
| 769 | } |
| 770 | |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 771 | template <class ELFT> |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 772 | int ELFState<ELFT>::writeELF(raw_ostream &OS, const ELFYAML::Object &Doc) { |
Simon Atanasyan | 220c54a | 2014-04-02 16:34:40 +0000 | [diff] [blame] | 773 | ELFState<ELFT> State(Doc); |
George Rimar | 0621b79 | 2019-02-19 14:53:48 +0000 | [diff] [blame] | 774 | |
| 775 | // Finalize .strtab and .dynstr sections. We do that early because want to |
| 776 | // finalize the string table builders before writing the content of the |
| 777 | // sections that might want to use them. |
| 778 | State.finalizeStrings(); |
| 779 | |
Simon Atanasyan | 220c54a | 2014-04-02 16:34:40 +0000 | [diff] [blame] | 780 | if (!State.buildSectionIndex()) |
| 781 | return 1; |
| 782 | |
Simon Atanasyan | 42ac0dd | 2014-04-11 04:13:39 +0000 | [diff] [blame] | 783 | std::size_t StartSymIndex = 0; |
| 784 | if (!State.buildSymbolIndex(StartSymIndex, Doc.Symbols.Local) || |
| 785 | !State.buildSymbolIndex(StartSymIndex, Doc.Symbols.Global) || |
| 786 | !State.buildSymbolIndex(StartSymIndex, Doc.Symbols.Weak)) |
| 787 | return 1; |
| 788 | |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 789 | Elf_Ehdr Header; |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 790 | State.initELFHeader(Header); |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 791 | |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 792 | // TODO: Flesh out section header support. |
Petr Hosek | eb04da3 | 2017-07-19 20:38:46 +0000 | [diff] [blame] | 793 | |
| 794 | std::vector<Elf_Phdr> PHeaders; |
| 795 | State.initProgramHeaders(PHeaders); |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 796 | |
Sean Silva | 08a75ae | 2013-06-20 19:11:44 +0000 | [diff] [blame] | 797 | // XXX: This offset is tightly coupled with the order that we write |
| 798 | // things to `OS`. |
Petr Hosek | eb04da3 | 2017-07-19 20:38:46 +0000 | [diff] [blame] | 799 | const size_t SectionContentBeginOffset = Header.e_ehsize + |
| 800 | Header.e_phentsize * Header.e_phnum + |
| 801 | Header.e_shentsize * Header.e_shnum; |
Sean Silva | 08a75ae | 2013-06-20 19:11:44 +0000 | [diff] [blame] | 802 | ContiguousBlobAccumulator CBA(SectionContentBeginOffset); |
Sean Silva | c1c290b | 2013-06-20 20:59:34 +0000 | [diff] [blame] | 803 | |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 804 | std::vector<Elf_Shdr> SHeaders; |
Simon Atanasyan | 3ee21b0 | 2014-04-02 16:34:54 +0000 | [diff] [blame] | 805 | if(!State.initSectionHeaders(SHeaders, CBA)) |
| 806 | return 1; |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 807 | |
Dave Lee | 17307d9 | 2017-11-09 14:53:43 +0000 | [diff] [blame] | 808 | // Populate SHeaders with implicit sections not present in the Doc |
Dave Lee | 67b4966 | 2017-11-16 18:10:15 +0000 | [diff] [blame] | 809 | for (const auto &Name : State.implicitSectionNames()) |
Dave Lee | 17307d9 | 2017-11-09 14:53:43 +0000 | [diff] [blame] | 810 | if (State.SN2I.get(Name) >= SHeaders.size()) |
| 811 | SHeaders.push_back({}); |
Sean Silva | 8217757 | 2013-06-22 01:38:00 +0000 | [diff] [blame] | 812 | |
Dave Lee | 17307d9 | 2017-11-09 14:53:43 +0000 | [diff] [blame] | 813 | // Initialize the implicit sections |
| 814 | auto Index = State.SN2I.get(".symtab"); |
Dave Lee | 67b4966 | 2017-11-16 18:10:15 +0000 | [diff] [blame] | 815 | State.initSymtabSectionHeader(SHeaders[Index], SymtabType::Static, CBA); |
Dave Lee | 17307d9 | 2017-11-09 14:53:43 +0000 | [diff] [blame] | 816 | Index = State.SN2I.get(".strtab"); |
| 817 | State.initStrtabSectionHeader(SHeaders[Index], ".strtab", State.DotStrtab, CBA); |
| 818 | Index = State.SN2I.get(".shstrtab"); |
| 819 | State.initStrtabSectionHeader(SHeaders[Index], ".shstrtab", State.DotShStrtab, CBA); |
Dave Lee | 67b4966 | 2017-11-16 18:10:15 +0000 | [diff] [blame] | 820 | if (State.hasDynamicSymbols()) { |
| 821 | Index = State.SN2I.get(".dynsym"); |
| 822 | State.initSymtabSectionHeader(SHeaders[Index], SymtabType::Dynamic, CBA); |
| 823 | SHeaders[Index].sh_flags |= ELF::SHF_ALLOC; |
| 824 | Index = State.SN2I.get(".dynstr"); |
| 825 | State.initStrtabSectionHeader(SHeaders[Index], ".dynstr", State.DotDynstr, CBA); |
| 826 | SHeaders[Index].sh_flags |= ELF::SHF_ALLOC; |
| 827 | } |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 828 | |
Petr Hosek | eb04da3 | 2017-07-19 20:38:46 +0000 | [diff] [blame] | 829 | // Now we can decide segment offsets |
| 830 | State.setProgramHeaderLayout(PHeaders, SHeaders); |
| 831 | |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 832 | OS.write((const char *)&Header, sizeof(Header)); |
Petr Hosek | eb04da3 | 2017-07-19 20:38:46 +0000 | [diff] [blame] | 833 | writeArrayData(OS, makeArrayRef(PHeaders)); |
Will Dietz | 0b48c73 | 2013-10-12 21:29:16 +0000 | [diff] [blame] | 834 | writeArrayData(OS, makeArrayRef(SHeaders)); |
Sean Silva | 46dffff | 2013-06-13 22:20:01 +0000 | [diff] [blame] | 835 | CBA.writeBlobToStream(OS); |
Sean Silva | 415d93f | 2013-06-17 20:14:59 +0000 | [diff] [blame] | 836 | return 0; |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 837 | } |
| 838 | |
Dave Lee | 67b4966 | 2017-11-16 18:10:15 +0000 | [diff] [blame] | 839 | template <class ELFT> bool ELFState<ELFT>::hasDynamicSymbols() const { |
| 840 | return Doc.DynamicSymbols.Global.size() > 0 || |
| 841 | Doc.DynamicSymbols.Weak.size() > 0 || |
| 842 | Doc.DynamicSymbols.Local.size() > 0; |
| 843 | } |
| 844 | |
Xing GUO | bac7864 | 2018-12-07 11:04:22 +0000 | [diff] [blame] | 845 | template <class ELFT> |
| 846 | SmallVector<const char *, 5> ELFState<ELFT>::implicitSectionNames() const { |
Dave Lee | 67b4966 | 2017-11-16 18:10:15 +0000 | [diff] [blame] | 847 | if (!hasDynamicSymbols()) |
| 848 | return {".symtab", ".strtab", ".shstrtab"}; |
| 849 | return {".symtab", ".strtab", ".shstrtab", ".dynsym", ".dynstr"}; |
| 850 | } |
| 851 | |
Sean Silva | 11caeba | 2013-06-22 01:03:35 +0000 | [diff] [blame] | 852 | static bool is64Bit(const ELFYAML::Object &Doc) { |
| 853 | return Doc.Header.Class == ELFYAML::ELF_ELFCLASS(ELF::ELFCLASS64); |
| 854 | } |
| 855 | |
| 856 | static bool isLittleEndian(const ELFYAML::Object &Doc) { |
| 857 | return Doc.Header.Data == ELFYAML::ELF_ELFDATA(ELF::ELFDATA2LSB); |
| 858 | } |
| 859 | |
Chris Bieneman | 8ff0c11 | 2016-06-27 19:53:53 +0000 | [diff] [blame] | 860 | int yaml2elf(llvm::ELFYAML::Object &Doc, raw_ostream &Out) { |
Sean Silva | 11caeba | 2013-06-22 01:03:35 +0000 | [diff] [blame] | 861 | if (is64Bit(Doc)) { |
| 862 | if (isLittleEndian(Doc)) |
Rui Ueyama | 1b31eb9 | 2018-01-12 01:40:32 +0000 | [diff] [blame] | 863 | return ELFState<object::ELF64LE>::writeELF(Out, Doc); |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 864 | else |
Rui Ueyama | 1b31eb9 | 2018-01-12 01:40:32 +0000 | [diff] [blame] | 865 | return ELFState<object::ELF64BE>::writeELF(Out, Doc); |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 866 | } else { |
Sean Silva | 11caeba | 2013-06-22 01:03:35 +0000 | [diff] [blame] | 867 | if (isLittleEndian(Doc)) |
Rui Ueyama | 1b31eb9 | 2018-01-12 01:40:32 +0000 | [diff] [blame] | 868 | return ELFState<object::ELF32LE>::writeELF(Out, Doc); |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 869 | else |
Rui Ueyama | 1b31eb9 | 2018-01-12 01:40:32 +0000 | [diff] [blame] | 870 | return ELFState<object::ELF32BE>::writeELF(Out, Doc); |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 871 | } |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 872 | } |