Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 1 | //===- yaml2elf - Convert YAML to a ELF object file -----------------------===// |
| 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 The ELF component of yaml2obj. |
| 12 | /// |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "yaml2obj.h" |
| 16 | #include "llvm/Object/ELF.h" |
| 17 | #include "llvm/Object/ELFYAML.h" |
| 18 | #include "llvm/Support/ELF.h" |
| 19 | #include "llvm/Support/MemoryBuffer.h" |
| 20 | #include "llvm/Support/YAMLTraits.h" |
| 21 | #include "llvm/Support/raw_ostream.h" |
| 22 | |
| 23 | using namespace llvm; |
| 24 | |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 25 | // There is similar code in yaml2coff, but with some slight COFF-specific |
| 26 | // variations like different initial state. Might be able to deduplicate |
| 27 | // some day, but also want to make sure that the Mach-O use case is served. |
| 28 | // |
| 29 | // This class has a deliberately small interface, since a lot of |
| 30 | // implementation variation is possible. |
| 31 | // |
| 32 | // TODO: Use an ordered container with a suffix-based comparison in order |
| 33 | // to deduplicate suffixes. std::map<> with a custom comparator is likely |
| 34 | // to be the simplest implementation, but a suffix trie could be more |
| 35 | // suitable for the job. |
Sean Silva | 2a74f70 | 2013-06-15 00:31:46 +0000 | [diff] [blame] | 36 | namespace { |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 37 | class StringTableBuilder { |
| 38 | /// \brief Indices of strings currently present in `Buf`. |
| 39 | StringMap<unsigned> StringIndices; |
| 40 | /// \brief The contents of the string table as we build it. |
| 41 | std::string Buf; |
| 42 | public: |
| 43 | StringTableBuilder() { |
| 44 | Buf.push_back('\0'); |
| 45 | } |
| 46 | /// \returns Index of string in string table. |
| 47 | unsigned addString(StringRef S) { |
| 48 | StringMapEntry<unsigned> &Entry = StringIndices.GetOrCreateValue(S); |
| 49 | unsigned &I = Entry.getValue(); |
| 50 | if (I != 0) |
| 51 | return I; |
| 52 | I = Buf.size(); |
| 53 | Buf.append(S.begin(), S.end()); |
| 54 | Buf.push_back('\0'); |
| 55 | return I; |
| 56 | } |
| 57 | size_t size() const { |
| 58 | return Buf.size(); |
| 59 | } |
| 60 | void writeToStream(raw_ostream &OS) { |
| 61 | OS.write(Buf.data(), Buf.size()); |
| 62 | } |
| 63 | }; |
Sean Silva | 2a74f70 | 2013-06-15 00:31:46 +0000 | [diff] [blame] | 64 | } // end anonymous namespace |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 65 | |
Sean Silva | 46dffff | 2013-06-13 22:20:01 +0000 | [diff] [blame] | 66 | // This class is used to build up a contiguous binary blob while keeping |
| 67 | // track of an offset in the output (which notionally begins at |
| 68 | // `InitialOffset`). |
Sean Silva | 2a74f70 | 2013-06-15 00:31:46 +0000 | [diff] [blame] | 69 | namespace { |
Sean Silva | 46dffff | 2013-06-13 22:20:01 +0000 | [diff] [blame] | 70 | class ContiguousBlobAccumulator { |
| 71 | const uint64_t InitialOffset; |
Sean Silva | bd3bc69 | 2013-06-20 19:11:41 +0000 | [diff] [blame] | 72 | SmallVector<char, 128> Buf; |
Sean Silva | 46dffff | 2013-06-13 22:20:01 +0000 | [diff] [blame] | 73 | raw_svector_ostream OS; |
| 74 | |
Sean Silva | d93323f | 2013-06-22 00:47:43 +0000 | [diff] [blame] | 75 | /// \returns The new offset. |
| 76 | uint64_t padToAlignment(unsigned Align) { |
| 77 | uint64_t CurrentOffset = InitialOffset + OS.tell(); |
| 78 | uint64_t AlignedOffset = RoundUpToAlignment(CurrentOffset, Align); |
| 79 | for (; CurrentOffset != AlignedOffset; ++CurrentOffset) |
| 80 | OS.write('\0'); |
| 81 | return AlignedOffset; // == CurrentOffset; |
| 82 | } |
| 83 | |
Sean Silva | 46dffff | 2013-06-13 22:20:01 +0000 | [diff] [blame] | 84 | public: |
Sean Silva | bd3bc69 | 2013-06-20 19:11:41 +0000 | [diff] [blame] | 85 | ContiguousBlobAccumulator(uint64_t InitialOffset_) |
| 86 | : InitialOffset(InitialOffset_), Buf(), OS(Buf) {} |
Sean Silva | d93323f | 2013-06-22 00:47:43 +0000 | [diff] [blame] | 87 | template <class Integer> |
| 88 | raw_ostream &getOSAndAlignedOffset(Integer &Offset, unsigned Align = 16) { |
| 89 | Offset = padToAlignment(Align); |
| 90 | return OS; |
| 91 | } |
Sean Silva | 46dffff | 2013-06-13 22:20:01 +0000 | [diff] [blame] | 92 | void writeBlobToStream(raw_ostream &Out) { Out << OS.str(); } |
| 93 | }; |
Sean Silva | 2a74f70 | 2013-06-15 00:31:46 +0000 | [diff] [blame] | 94 | } // end anonymous namespace |
Sean Silva | 46dffff | 2013-06-13 22:20:01 +0000 | [diff] [blame] | 95 | |
Sean Silva | a6423eb | 2013-06-15 00:25:26 +0000 | [diff] [blame] | 96 | // Used to keep track of section names, so that in the YAML file sections |
| 97 | // can be referenced by name instead of by index. |
Sean Silva | 2a74f70 | 2013-06-15 00:31:46 +0000 | [diff] [blame] | 98 | namespace { |
Sean Silva | a6423eb | 2013-06-15 00:25:26 +0000 | [diff] [blame] | 99 | class SectionNameToIdxMap { |
| 100 | StringMap<int> Map; |
| 101 | public: |
| 102 | /// \returns true if name is already present in the map. |
| 103 | bool addName(StringRef SecName, unsigned i) { |
| 104 | StringMapEntry<int> &Entry = Map.GetOrCreateValue(SecName, -1); |
| 105 | if (Entry.getValue() != -1) |
| 106 | return true; |
| 107 | Entry.setValue((int)i); |
| 108 | return false; |
| 109 | } |
| 110 | /// \returns true if name is not present in the map |
| 111 | bool lookupSection(StringRef SecName, unsigned &Idx) const { |
| 112 | StringMap<int>::const_iterator I = Map.find(SecName); |
| 113 | if (I == Map.end()) |
| 114 | return true; |
| 115 | Idx = I->getValue(); |
| 116 | return false; |
| 117 | } |
| 118 | }; |
Sean Silva | 2a74f70 | 2013-06-15 00:31:46 +0000 | [diff] [blame] | 119 | } // end anonymous namespace |
Sean Silva | a6423eb | 2013-06-15 00:25:26 +0000 | [diff] [blame] | 120 | |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 121 | template <class T> |
| 122 | static size_t vectorDataSize(const std::vector<T> &Vec) { |
| 123 | return Vec.size() * sizeof(T); |
| 124 | } |
| 125 | |
| 126 | template <class T> |
| 127 | static void writeVectorData(raw_ostream &OS, const std::vector<T> &Vec) { |
| 128 | OS.write((const char *)Vec.data(), vectorDataSize(Vec)); |
| 129 | } |
| 130 | |
| 131 | template <class T> |
| 132 | static void zero(T &Obj) { |
| 133 | memset(&Obj, 0, sizeof(Obj)); |
| 134 | } |
| 135 | |
Sean Silva | 85d3eeb | 2013-06-18 01:11:27 +0000 | [diff] [blame] | 136 | /// \brief Create a string table in `SHeader`, which we assume is already |
| 137 | /// zero'd. |
| 138 | template <class Elf_Shdr> |
| 139 | static void createStringTableSectionHeader(Elf_Shdr &SHeader, |
| 140 | StringTableBuilder &STB, |
| 141 | ContiguousBlobAccumulator &CBA) { |
| 142 | SHeader.sh_type = ELF::SHT_STRTAB; |
Sean Silva | d93323f | 2013-06-22 00:47:43 +0000 | [diff] [blame] | 143 | STB.writeToStream(CBA.getOSAndAlignedOffset(SHeader.sh_offset)); |
Sean Silva | 85d3eeb | 2013-06-18 01:11:27 +0000 | [diff] [blame] | 144 | SHeader.sh_size = STB.size(); |
Sean Silva | 85d3eeb | 2013-06-18 01:11:27 +0000 | [diff] [blame] | 145 | SHeader.sh_addralign = 1; |
| 146 | } |
| 147 | |
Sean Silva | 08a75ae | 2013-06-20 19:11:44 +0000 | [diff] [blame] | 148 | namespace { |
| 149 | /// \brief "Single point of truth" for the ELF file construction. |
| 150 | /// TODO: This class still has a ways to go before it is truly a "single |
| 151 | /// point of truth". |
| 152 | template <class ELFT> |
| 153 | class ELFState { |
| 154 | /// \brief The future ".strtab" section. |
| 155 | StringTableBuilder DotStrtab; |
| 156 | /// \brief The section number of the ".strtab" section. |
| 157 | unsigned DotStrtabSecNo; |
| 158 | /// \brief The accumulated contents of all sections so far. |
| 159 | ContiguousBlobAccumulator &SectionContentAccum; |
| 160 | typedef typename object::ELFObjectFile<ELFT>::Elf_Ehdr Elf_Ehdr; |
| 161 | /// \brief The ELF file header. |
| 162 | Elf_Ehdr &Header; |
| 163 | |
Sean Silva | c1c290b | 2013-06-20 20:59:34 +0000 | [diff] [blame] | 164 | SectionNameToIdxMap &SN2I; |
| 165 | |
Sean Silva | 08a75ae | 2013-06-20 19:11:44 +0000 | [diff] [blame] | 166 | public: |
| 167 | |
| 168 | ELFState(Elf_Ehdr &Header_, ContiguousBlobAccumulator &Accum, |
Sean Silva | c1c290b | 2013-06-20 20:59:34 +0000 | [diff] [blame] | 169 | unsigned DotStrtabSecNo_, SectionNameToIdxMap &SN2I_) |
Sean Silva | 08a75ae | 2013-06-20 19:11:44 +0000 | [diff] [blame] | 170 | : DotStrtab(), DotStrtabSecNo(DotStrtabSecNo_), |
Sean Silva | c1c290b | 2013-06-20 20:59:34 +0000 | [diff] [blame] | 171 | SectionContentAccum(Accum), Header(Header_), SN2I(SN2I_) {} |
Sean Silva | 08a75ae | 2013-06-20 19:11:44 +0000 | [diff] [blame] | 172 | |
| 173 | unsigned getDotStrTabSecNo() const { return DotStrtabSecNo; } |
| 174 | StringTableBuilder &getStringTable() { return DotStrtab; } |
| 175 | ContiguousBlobAccumulator &getSectionContentAccum() { |
| 176 | return SectionContentAccum; |
| 177 | } |
Sean Silva | c1c290b | 2013-06-20 20:59:34 +0000 | [diff] [blame] | 178 | SectionNameToIdxMap &getSN2I() { return SN2I; } |
Sean Silva | 08a75ae | 2013-06-20 19:11:44 +0000 | [diff] [blame] | 179 | }; |
| 180 | } // end anonymous namespace |
| 181 | |
Sean Silva | aff5125 | 2013-06-21 00:27:50 +0000 | [diff] [blame] | 182 | // FIXME: At this point it is fairly clear that we need to refactor these |
| 183 | // static functions into methods of a class sharing some typedefs. These |
| 184 | // ELF type names are insane. |
Sean Silva | 37e817c | 2013-06-21 00:33:01 +0000 | [diff] [blame] | 185 | template <class ELFT> |
| 186 | static void |
| 187 | addSymbols(const std::vector<ELFYAML::Symbol> &Symbols, ELFState<ELFT> &State, |
| 188 | std::vector<typename object::ELFObjectFile<ELFT>::Elf_Sym> &Syms, |
| 189 | unsigned SymbolBinding) { |
| 190 | typedef typename object::ELFObjectFile<ELFT>::Elf_Sym Elf_Sym; |
Sean Silva | aff5125 | 2013-06-21 00:27:50 +0000 | [diff] [blame] | 191 | for (unsigned i = 0, e = Symbols.size(); i != e; ++i) { |
| 192 | const ELFYAML::Symbol &Sym = Symbols[i]; |
Sean Silva | 6b08388 | 2013-06-18 23:14:03 +0000 | [diff] [blame] | 193 | Elf_Sym Symbol; |
| 194 | zero(Symbol); |
| 195 | if (!Sym.Name.empty()) |
Sean Silva | 08a75ae | 2013-06-20 19:11:44 +0000 | [diff] [blame] | 196 | Symbol.st_name = State.getStringTable().addString(Sym.Name); |
Sean Silva | aff5125 | 2013-06-21 00:27:50 +0000 | [diff] [blame] | 197 | Symbol.setBindingAndType(SymbolBinding, Sym.Type); |
Sean Silva | c4afa6d | 2013-06-21 01:11:48 +0000 | [diff] [blame] | 198 | if (!Sym.Section.empty()) { |
| 199 | unsigned Index; |
| 200 | if (State.getSN2I().lookupSection(Sym.Section, Index)) { |
| 201 | errs() << "error: Unknown section referenced: '" << Sym.Section |
| 202 | << "' by YAML symbol " << Sym.Name << ".\n"; |
| 203 | exit(1); |
| 204 | } |
| 205 | Symbol.st_shndx = Index; |
| 206 | } // 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] | 207 | Symbol.st_value = Sym.Value; |
| 208 | Symbol.st_size = Sym.Size; |
Sean Silva | 6b08388 | 2013-06-18 23:14:03 +0000 | [diff] [blame] | 209 | Syms.push_back(Symbol); |
| 210 | } |
Sean Silva | aff5125 | 2013-06-21 00:27:50 +0000 | [diff] [blame] | 211 | } |
| 212 | |
| 213 | template <class ELFT> |
| 214 | static void handleSymtabSectionHeader( |
Sean Silva | 7a0c3a6 | 2013-06-22 01:37:55 +0000 | [diff] [blame] | 215 | const ELFYAML::LocalGlobalWeakSymbols &Symbols, ELFState<ELFT> &State, |
Sean Silva | aff5125 | 2013-06-21 00:27:50 +0000 | [diff] [blame] | 216 | typename object::ELFObjectFile<ELFT>::Elf_Shdr &SHeader) { |
| 217 | |
| 218 | typedef typename object::ELFObjectFile<ELFT>::Elf_Sym Elf_Sym; |
Sean Silva | 8217757 | 2013-06-22 01:38:00 +0000 | [diff] [blame] | 219 | SHeader.sh_type = ELF::SHT_SYMTAB; |
Sean Silva | aff5125 | 2013-06-21 00:27:50 +0000 | [diff] [blame] | 220 | SHeader.sh_link = State.getDotStrTabSecNo(); |
| 221 | // One greater than symbol table index of the last local symbol. |
Sean Silva | 7a0c3a6 | 2013-06-22 01:37:55 +0000 | [diff] [blame] | 222 | SHeader.sh_info = Symbols.Local.size() + 1; |
Sean Silva | aff5125 | 2013-06-21 00:27:50 +0000 | [diff] [blame] | 223 | SHeader.sh_entsize = sizeof(Elf_Sym); |
| 224 | |
| 225 | std::vector<Elf_Sym> Syms; |
| 226 | { |
| 227 | // Ensure STN_UNDEF is present |
| 228 | Elf_Sym Sym; |
| 229 | zero(Sym); |
| 230 | Syms.push_back(Sym); |
| 231 | } |
Sean Silva | 7a0c3a6 | 2013-06-22 01:37:55 +0000 | [diff] [blame] | 232 | addSymbols(Symbols.Local, State, Syms, ELF::STB_LOCAL); |
| 233 | addSymbols(Symbols.Global, State, Syms, ELF::STB_GLOBAL); |
| 234 | addSymbols(Symbols.Weak, State, Syms, ELF::STB_WEAK); |
Sean Silva | 6b08388 | 2013-06-18 23:14:03 +0000 | [diff] [blame] | 235 | |
Sean Silva | 08a75ae | 2013-06-20 19:11:44 +0000 | [diff] [blame] | 236 | ContiguousBlobAccumulator &CBA = State.getSectionContentAccum(); |
Sean Silva | d93323f | 2013-06-22 00:47:43 +0000 | [diff] [blame] | 237 | writeVectorData(CBA.getOSAndAlignedOffset(SHeader.sh_offset), Syms); |
Sean Silva | 6b08388 | 2013-06-18 23:14:03 +0000 | [diff] [blame] | 238 | SHeader.sh_size = vectorDataSize(Syms); |
Sean Silva | 6b08388 | 2013-06-18 23:14:03 +0000 | [diff] [blame] | 239 | } |
| 240 | |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 241 | template <class ELFT> |
Sean Silva | 415d93f | 2013-06-17 20:14:59 +0000 | [diff] [blame] | 242 | static int writeELF(raw_ostream &OS, const ELFYAML::Object &Doc) { |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 243 | using namespace llvm::ELF; |
Sean Silva | 67416d7 | 2013-06-19 01:13:28 +0000 | [diff] [blame] | 244 | typedef typename object::ELFObjectFile<ELFT>::Elf_Ehdr Elf_Ehdr; |
| 245 | typedef typename object::ELFObjectFile<ELFT>::Elf_Shdr Elf_Shdr; |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 246 | |
| 247 | const ELFYAML::FileHeader &Hdr = Doc.Header; |
| 248 | |
| 249 | Elf_Ehdr Header; |
| 250 | zero(Header); |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 251 | Header.e_ident[EI_MAG0] = 0x7f; |
| 252 | Header.e_ident[EI_MAG1] = 'E'; |
| 253 | Header.e_ident[EI_MAG2] = 'L'; |
| 254 | Header.e_ident[EI_MAG3] = 'F'; |
| 255 | Header.e_ident[EI_CLASS] = ELFT::Is64Bits ? ELFCLASS64 : ELFCLASS32; |
| 256 | bool IsLittleEndian = ELFT::TargetEndianness == support::little; |
| 257 | Header.e_ident[EI_DATA] = IsLittleEndian ? ELFDATA2LSB : ELFDATA2MSB; |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 258 | Header.e_ident[EI_VERSION] = EV_CURRENT; |
Sean Silva | b3a013a | 2013-06-19 01:10:58 +0000 | [diff] [blame] | 259 | Header.e_ident[EI_OSABI] = Hdr.OSABI; |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 260 | Header.e_ident[EI_ABIVERSION] = 0; |
| 261 | Header.e_type = Hdr.Type; |
| 262 | Header.e_machine = Hdr.Machine; |
| 263 | Header.e_version = EV_CURRENT; |
| 264 | Header.e_entry = Hdr.Entry; |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 265 | Header.e_ehsize = sizeof(Elf_Ehdr); |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 266 | |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 267 | // TODO: Flesh out section header support. |
| 268 | // TODO: Program headers. |
| 269 | |
| 270 | Header.e_shentsize = sizeof(Elf_Shdr); |
| 271 | // Immediately following the ELF header. |
| 272 | Header.e_shoff = sizeof(Header); |
Sean Silva | bdf1986 | 2013-06-18 23:37:23 +0000 | [diff] [blame] | 273 | const std::vector<ELFYAML::Section> &Sections = Doc.Sections; |
Sean Silva | 8217757 | 2013-06-22 01:38:00 +0000 | [diff] [blame] | 274 | // "+ 4" for |
Sean Silva | bdf1986 | 2013-06-18 23:37:23 +0000 | [diff] [blame] | 275 | // - SHT_NULL entry (placed first, i.e. 0'th entry) |
Sean Silva | 8217757 | 2013-06-22 01:38:00 +0000 | [diff] [blame] | 276 | // - symbol table (.symtab) (placed third to last) |
Sean Silva | bdf1986 | 2013-06-18 23:37:23 +0000 | [diff] [blame] | 277 | // - string table (.strtab) (placed second to last) |
| 278 | // - section header string table. (placed last) |
Sean Silva | 8217757 | 2013-06-22 01:38:00 +0000 | [diff] [blame] | 279 | Header.e_shnum = Sections.size() + 4; |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 280 | // Place section header string table last. |
Sean Silva | bdf1986 | 2013-06-18 23:37:23 +0000 | [diff] [blame] | 281 | Header.e_shstrndx = Header.e_shnum - 1; |
| 282 | const unsigned DotStrtabSecNo = Header.e_shnum - 2; |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 283 | |
Sean Silva | 08a75ae | 2013-06-20 19:11:44 +0000 | [diff] [blame] | 284 | // XXX: This offset is tightly coupled with the order that we write |
| 285 | // things to `OS`. |
| 286 | const size_t SectionContentBeginOffset = |
| 287 | Header.e_ehsize + Header.e_shentsize * Header.e_shnum; |
| 288 | ContiguousBlobAccumulator CBA(SectionContentBeginOffset); |
Sean Silva | a6423eb | 2013-06-15 00:25:26 +0000 | [diff] [blame] | 289 | SectionNameToIdxMap SN2I; |
| 290 | for (unsigned i = 0, e = Sections.size(); i != e; ++i) { |
| 291 | StringRef Name = Sections[i].Name; |
| 292 | if (Name.empty()) |
| 293 | continue; |
Sean Silva | bdf1986 | 2013-06-18 23:37:23 +0000 | [diff] [blame] | 294 | // "+ 1" to take into account the SHT_NULL entry. |
| 295 | if (SN2I.addName(Name, i + 1)) { |
Sean Silva | a6423eb | 2013-06-15 00:25:26 +0000 | [diff] [blame] | 296 | errs() << "error: Repeated section name: '" << Name |
| 297 | << "' at YAML section number " << i << ".\n"; |
Sean Silva | 415d93f | 2013-06-17 20:14:59 +0000 | [diff] [blame] | 298 | return 1; |
Sean Silva | a6423eb | 2013-06-15 00:25:26 +0000 | [diff] [blame] | 299 | } |
| 300 | } |
| 301 | |
Sean Silva | c1c290b | 2013-06-20 20:59:34 +0000 | [diff] [blame] | 302 | ELFState<ELFT> State(Header, CBA, DotStrtabSecNo, SN2I); |
| 303 | |
Sean Silva | fde4ab0 | 2013-06-18 01:11:24 +0000 | [diff] [blame] | 304 | StringTableBuilder SHStrTab; |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 305 | std::vector<Elf_Shdr> SHeaders; |
Sean Silva | bdf1986 | 2013-06-18 23:37:23 +0000 | [diff] [blame] | 306 | { |
| 307 | // Ensure SHN_UNDEF entry is present. An all-zero section header is a |
| 308 | // valid SHN_UNDEF entry since SHT_NULL == 0. |
| 309 | Elf_Shdr SHdr; |
| 310 | zero(SHdr); |
| 311 | SHeaders.push_back(SHdr); |
| 312 | } |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 313 | for (unsigned i = 0, e = Sections.size(); i != e; ++i) { |
| 314 | const ELFYAML::Section &Sec = Sections[i]; |
| 315 | Elf_Shdr SHeader; |
| 316 | zero(SHeader); |
Sean Silva | fde4ab0 | 2013-06-18 01:11:24 +0000 | [diff] [blame] | 317 | SHeader.sh_name = SHStrTab.addString(Sec.Name); |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 318 | SHeader.sh_type = Sec.Type; |
| 319 | SHeader.sh_flags = Sec.Flags; |
Sean Silva | f4bfced | 2013-06-13 22:19:54 +0000 | [diff] [blame] | 320 | SHeader.sh_addr = Sec.Address; |
Sean Silva | 46dffff | 2013-06-13 22:20:01 +0000 | [diff] [blame] | 321 | |
Sean Silva | d93323f | 2013-06-22 00:47:43 +0000 | [diff] [blame] | 322 | Sec.Content.writeAsBinary(CBA.getOSAndAlignedOffset(SHeader.sh_offset)); |
Sean Silva | 46dffff | 2013-06-13 22:20:01 +0000 | [diff] [blame] | 323 | SHeader.sh_size = Sec.Content.binary_size(); |
Sean Silva | 46dffff | 2013-06-13 22:20:01 +0000 | [diff] [blame] | 324 | |
Sean Silva | a6423eb | 2013-06-15 00:25:26 +0000 | [diff] [blame] | 325 | if (!Sec.Link.empty()) { |
| 326 | unsigned Index; |
| 327 | if (SN2I.lookupSection(Sec.Link, Index)) { |
| 328 | errs() << "error: Unknown section referenced: '" << Sec.Link |
| 329 | << "' at YAML section number " << i << ".\n"; |
Sean Silva | 415d93f | 2013-06-17 20:14:59 +0000 | [diff] [blame] | 330 | return 1; |
Sean Silva | a6423eb | 2013-06-15 00:25:26 +0000 | [diff] [blame] | 331 | } |
| 332 | SHeader.sh_link = Index; |
| 333 | } |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 334 | SHeader.sh_info = 0; |
Sean Silva | 0a409cf | 2013-06-14 00:38:02 +0000 | [diff] [blame] | 335 | SHeader.sh_addralign = Sec.AddressAlign; |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 336 | SHeader.sh_entsize = 0; |
| 337 | SHeaders.push_back(SHeader); |
| 338 | } |
| 339 | |
Sean Silva | 8217757 | 2013-06-22 01:38:00 +0000 | [diff] [blame] | 340 | // .symtab section. |
| 341 | Elf_Shdr SymtabSHeader; |
| 342 | zero(SymtabSHeader); |
| 343 | SymtabSHeader.sh_name = SHStrTab.addString(StringRef(".symtab")); |
| 344 | handleSymtabSectionHeader<ELFT>(Doc.Symbols, State, SymtabSHeader); |
| 345 | SHeaders.push_back(SymtabSHeader); |
| 346 | |
Sean Silva | 6b08388 | 2013-06-18 23:14:03 +0000 | [diff] [blame] | 347 | // .strtab string table header. |
Sean Silva | c313192 | 2013-06-18 21:37:50 +0000 | [diff] [blame] | 348 | Elf_Shdr DotStrTabSHeader; |
| 349 | zero(DotStrTabSHeader); |
| 350 | DotStrTabSHeader.sh_name = SHStrTab.addString(StringRef(".strtab")); |
Sean Silva | 08a75ae | 2013-06-20 19:11:44 +0000 | [diff] [blame] | 351 | createStringTableSectionHeader(DotStrTabSHeader, State.getStringTable(), CBA); |
Sean Silva | 7d61722 | 2013-06-22 01:06:12 +0000 | [diff] [blame] | 352 | SHeaders.push_back(DotStrTabSHeader); |
Sean Silva | c313192 | 2013-06-18 21:37:50 +0000 | [diff] [blame] | 353 | |
Sean Silva | fde4ab0 | 2013-06-18 01:11:24 +0000 | [diff] [blame] | 354 | // Section header string table header. |
| 355 | Elf_Shdr SHStrTabSHeader; |
| 356 | zero(SHStrTabSHeader); |
Sean Silva | 85d3eeb | 2013-06-18 01:11:27 +0000 | [diff] [blame] | 357 | createStringTableSectionHeader(SHStrTabSHeader, SHStrTab, CBA); |
Sean Silva | 7d61722 | 2013-06-22 01:06:12 +0000 | [diff] [blame] | 358 | SHeaders.push_back(SHStrTabSHeader); |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 359 | |
| 360 | OS.write((const char *)&Header, sizeof(Header)); |
Sean Silva | 3820593 | 2013-06-13 22:19:48 +0000 | [diff] [blame] | 361 | writeVectorData(OS, SHeaders); |
Sean Silva | 46dffff | 2013-06-13 22:20:01 +0000 | [diff] [blame] | 362 | CBA.writeBlobToStream(OS); |
Sean Silva | 415d93f | 2013-06-17 20:14:59 +0000 | [diff] [blame] | 363 | return 0; |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 364 | } |
| 365 | |
Sean Silva | 11caeba | 2013-06-22 01:03:35 +0000 | [diff] [blame] | 366 | static bool is64Bit(const ELFYAML::Object &Doc) { |
| 367 | return Doc.Header.Class == ELFYAML::ELF_ELFCLASS(ELF::ELFCLASS64); |
| 368 | } |
| 369 | |
| 370 | static bool isLittleEndian(const ELFYAML::Object &Doc) { |
| 371 | return Doc.Header.Data == ELFYAML::ELF_ELFDATA(ELF::ELFDATA2LSB); |
| 372 | } |
| 373 | |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 374 | int yaml2elf(llvm::raw_ostream &Out, llvm::MemoryBuffer *Buf) { |
| 375 | yaml::Input YIn(Buf->getBuffer()); |
| 376 | ELFYAML::Object Doc; |
| 377 | YIn >> Doc; |
| 378 | if (YIn.error()) { |
| 379 | errs() << "yaml2obj: Failed to parse YAML file!\n"; |
| 380 | return 1; |
| 381 | } |
Sean Silva | 11caeba | 2013-06-22 01:03:35 +0000 | [diff] [blame] | 382 | using object::ELFType; |
| 383 | typedef ELFType<support::little, 8, true> LE64; |
| 384 | typedef ELFType<support::big, 8, true> BE64; |
| 385 | typedef ELFType<support::little, 4, false> LE32; |
| 386 | typedef ELFType<support::big, 4, false> BE32; |
| 387 | if (is64Bit(Doc)) { |
| 388 | if (isLittleEndian(Doc)) |
| 389 | return writeELF<LE64>(outs(), Doc); |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 390 | else |
Sean Silva | 11caeba | 2013-06-22 01:03:35 +0000 | [diff] [blame] | 391 | return writeELF<BE64>(outs(), Doc); |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 392 | } else { |
Sean Silva | 11caeba | 2013-06-22 01:03:35 +0000 | [diff] [blame] | 393 | if (isLittleEndian(Doc)) |
| 394 | return writeELF<LE32>(outs(), Doc); |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 395 | else |
Sean Silva | 11caeba | 2013-06-22 01:03:35 +0000 | [diff] [blame] | 396 | return writeELF<BE32>(outs(), Doc); |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 397 | } |
Sean Silva | f99309c | 2013-06-10 23:44:15 +0000 | [diff] [blame] | 398 | } |