2013-06-11 07:44:15 +08:00
|
|
|
//===- yaml2elf - Convert YAML to a ELF object file -----------------------===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2013-06-11 07:44:15 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// \file
|
2018-05-01 23:54:18 +08:00
|
|
|
/// The ELF component of yaml2obj.
|
2013-06-11 07:44:15 +08:00
|
|
|
///
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-10-13 05:29:16 +08:00
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
[yaml2obj] Move core yaml2obj code into lib and include for use in unit tests
Reviewers: jhenderson, rupprecht, MaskRay, grimar, labath
Reviewed By: rupprecht
Subscribers: gribozavr, mgrang, seiya, mgorny, sbc100, hiraditya, aheejin, jakehehrlich, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D65255
llvm-svn: 368119
2019-08-07 10:44:49 +08:00
|
|
|
#include "llvm/ADT/StringSet.h"
|
2017-06-07 11:48:56 +08:00
|
|
|
#include "llvm/BinaryFormat/ELF.h"
|
2014-07-03 10:01:39 +08:00
|
|
|
#include "llvm/MC/StringTableBuilder.h"
|
2013-08-09 06:27:13 +08:00
|
|
|
#include "llvm/Object/ELFObjectFile.h"
|
2016-03-02 03:15:06 +08:00
|
|
|
#include "llvm/ObjectYAML/ELFYAML.h"
|
[yaml2obj] Move core yaml2obj code into lib and include for use in unit tests
Reviewers: jhenderson, rupprecht, MaskRay, grimar, labath
Reviewed By: rupprecht
Subscribers: gribozavr, mgrang, seiya, mgorny, sbc100, hiraditya, aheejin, jakehehrlich, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D65255
llvm-svn: 368119
2019-08-07 10:44:49 +08:00
|
|
|
#include "llvm/ObjectYAML/yaml2obj.h"
|
2019-02-20 21:58:43 +08:00
|
|
|
#include "llvm/Support/EndianStream.h"
|
2019-09-24 22:22:37 +08:00
|
|
|
#include "llvm/Support/LEB128.h"
|
2013-06-11 07:44:15 +08:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2018-04-22 05:11:59 +08:00
|
|
|
#include "llvm/Support/WithColor.h"
|
2013-06-11 07:44:15 +08:00
|
|
|
#include "llvm/Support/YAMLTraits.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2013-06-14 06:20:01 +08:00
|
|
|
// This class is used to build up a contiguous binary blob while keeping
|
|
|
|
// track of an offset in the output (which notionally begins at
|
|
|
|
// `InitialOffset`).
|
2013-06-15 08:31:46 +08:00
|
|
|
namespace {
|
2013-06-14 06:20:01 +08:00
|
|
|
class ContiguousBlobAccumulator {
|
|
|
|
const uint64_t InitialOffset;
|
2013-06-21 03:11:41 +08:00
|
|
|
SmallVector<char, 128> Buf;
|
2013-06-14 06:20:01 +08:00
|
|
|
raw_svector_ostream OS;
|
|
|
|
|
2013-06-22 08:47:43 +08:00
|
|
|
/// \returns The new offset.
|
|
|
|
uint64_t padToAlignment(unsigned Align) {
|
2015-07-08 18:12:40 +08:00
|
|
|
if (Align == 0)
|
|
|
|
Align = 1;
|
2013-06-22 08:47:43 +08:00
|
|
|
uint64_t CurrentOffset = InitialOffset + OS.tell();
|
2016-01-15 05:06:47 +08:00
|
|
|
uint64_t AlignedOffset = alignTo(CurrentOffset, Align);
|
2019-04-29 20:05:53 +08:00
|
|
|
OS.write_zeros(AlignedOffset - CurrentOffset);
|
2013-06-22 08:47:43 +08:00
|
|
|
return AlignedOffset; // == CurrentOffset;
|
|
|
|
}
|
|
|
|
|
2013-06-14 06:20:01 +08:00
|
|
|
public:
|
2013-06-21 03:11:41 +08:00
|
|
|
ContiguousBlobAccumulator(uint64_t InitialOffset_)
|
|
|
|
: InitialOffset(InitialOffset_), Buf(), OS(Buf) {}
|
2013-06-22 08:47:43 +08:00
|
|
|
template <class Integer>
|
2015-07-08 18:12:40 +08:00
|
|
|
raw_ostream &getOSAndAlignedOffset(Integer &Offset, unsigned Align) {
|
2013-06-22 08:47:43 +08:00
|
|
|
Offset = padToAlignment(Align);
|
|
|
|
return OS;
|
|
|
|
}
|
2013-06-14 06:20:01 +08:00
|
|
|
void writeBlobToStream(raw_ostream &Out) { Out << OS.str(); }
|
|
|
|
};
|
|
|
|
|
2014-04-06 17:02:55 +08:00
|
|
|
// Used to keep track of section and symbol names, so that in the YAML file
|
2019-05-07 20:10:51 +08:00
|
|
|
// sections and symbols can be referenced by name instead of by index.
|
|
|
|
class NameToIdxMap {
|
2019-05-12 01:03:36 +08:00
|
|
|
StringMap<unsigned> Map;
|
|
|
|
|
2019-05-07 20:10:51 +08:00
|
|
|
public:
|
2019-05-12 01:03:36 +08:00
|
|
|
/// \Returns false if name is already present in the map.
|
|
|
|
bool addName(StringRef Name, unsigned Ndx) {
|
|
|
|
return Map.insert({Name, Ndx}).second;
|
2019-05-07 20:10:51 +08:00
|
|
|
}
|
2019-05-12 01:03:36 +08:00
|
|
|
/// \Returns false if name is not present in the map.
|
2019-05-07 20:10:51 +08:00
|
|
|
bool lookup(StringRef Name, unsigned &Idx) const {
|
2019-05-12 01:03:36 +08:00
|
|
|
auto I = Map.find(Name);
|
2019-05-07 20:10:51 +08:00
|
|
|
if (I == Map.end())
|
2019-05-12 01:03:36 +08:00
|
|
|
return false;
|
2019-05-07 20:10:51 +08:00
|
|
|
Idx = I->getValue();
|
2019-05-12 01:03:36 +08:00
|
|
|
return true;
|
2019-05-07 20:10:51 +08:00
|
|
|
}
|
2019-05-12 01:03:36 +08:00
|
|
|
/// Asserts if name is not present in the map.
|
2019-05-07 20:10:51 +08:00
|
|
|
unsigned get(StringRef Name) const {
|
2019-05-12 01:03:36 +08:00
|
|
|
unsigned Idx;
|
|
|
|
if (lookup(Name, Idx))
|
|
|
|
return Idx;
|
|
|
|
assert(false && "Expected section not found in index");
|
|
|
|
return 0;
|
2019-05-07 20:10:51 +08:00
|
|
|
}
|
|
|
|
unsigned size() const { return Map.size(); }
|
|
|
|
};
|
2013-06-14 06:19:48 +08:00
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// "Single point of truth" for the ELF file construction.
|
2013-06-21 03:11:44 +08:00
|
|
|
/// TODO: This class still has a ways to go before it is truly a "single
|
|
|
|
/// point of truth".
|
[yaml2obj] Move core yaml2obj code into lib and include for use in unit tests
Reviewers: jhenderson, rupprecht, MaskRay, grimar, labath
Reviewed By: rupprecht
Subscribers: gribozavr, mgrang, seiya, mgorny, sbc100, hiraditya, aheejin, jakehehrlich, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D65255
llvm-svn: 368119
2019-08-07 10:44:49 +08:00
|
|
|
template <class ELFT> class ELFState {
|
2018-01-12 10:28:31 +08:00
|
|
|
typedef typename ELFT::Ehdr Elf_Ehdr;
|
|
|
|
typedef typename ELFT::Phdr Elf_Phdr;
|
|
|
|
typedef typename ELFT::Shdr Elf_Shdr;
|
|
|
|
typedef typename ELFT::Sym Elf_Sym;
|
|
|
|
typedef typename ELFT::Rel Elf_Rel;
|
|
|
|
typedef typename ELFT::Rela Elf_Rela;
|
2018-06-29 05:07:34 +08:00
|
|
|
typedef typename ELFT::Relr Elf_Relr;
|
2018-07-24 02:49:04 +08:00
|
|
|
typedef typename ELFT::Dyn Elf_Dyn;
|
2014-04-03 00:34:54 +08:00
|
|
|
|
2017-11-17 02:10:15 +08:00
|
|
|
enum class SymtabType { Static, Dynamic };
|
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// The future ".strtab" section.
|
2015-10-24 05:48:05 +08:00
|
|
|
StringTableBuilder DotStrtab{StringTableBuilder::ELF};
|
2013-06-21 03:11:44 +08:00
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// The future ".shstrtab" section.
|
2015-10-24 05:48:05 +08:00
|
|
|
StringTableBuilder DotShStrtab{StringTableBuilder::ELF};
|
2014-04-03 00:34:54 +08:00
|
|
|
|
2018-05-01 23:54:18 +08:00
|
|
|
/// The future ".dynstr" section.
|
2017-11-17 02:10:15 +08:00
|
|
|
StringTableBuilder DotDynstr{StringTableBuilder::ELF};
|
|
|
|
|
2014-04-06 17:02:55 +08:00
|
|
|
NameToIdxMap SN2I;
|
2014-04-11 12:13:39 +08:00
|
|
|
NameToIdxMap SymN2I;
|
2019-08-22 20:39:56 +08:00
|
|
|
NameToIdxMap DynSymN2I;
|
2019-07-22 20:01:52 +08:00
|
|
|
ELFYAML::Object &Doc;
|
2013-06-21 04:59:34 +08:00
|
|
|
|
2019-09-09 17:43:03 +08:00
|
|
|
bool HasError = false;
|
2019-09-14 00:00:16 +08:00
|
|
|
yaml::ErrorHandler ErrHandler;
|
|
|
|
void reportError(const Twine &Msg);
|
2019-09-09 17:43:03 +08:00
|
|
|
|
|
|
|
std::vector<Elf_Sym> toELFSymbols(ArrayRef<ELFYAML::Symbol> Symbols,
|
|
|
|
const StringTableBuilder &Strtab);
|
|
|
|
unsigned toSectionIndex(StringRef S, StringRef LocSec, StringRef LocSym = "");
|
|
|
|
unsigned toSymbolIndex(StringRef S, StringRef LocSec, bool IsDynamic);
|
|
|
|
|
|
|
|
void buildSectionIndex();
|
|
|
|
void buildSymbolIndexes();
|
2017-07-20 04:38:46 +08:00
|
|
|
void initProgramHeaders(std::vector<Elf_Phdr> &PHeaders);
|
2019-09-05 16:59:28 +08:00
|
|
|
bool initImplicitHeader(ContiguousBlobAccumulator &CBA, Elf_Shdr &Header,
|
|
|
|
StringRef SecName, ELFYAML::Section *YAMLSec);
|
2019-09-09 17:43:03 +08:00
|
|
|
void initSectionHeaders(std::vector<Elf_Shdr> &SHeaders,
|
2014-04-03 00:34:54 +08:00
|
|
|
ContiguousBlobAccumulator &CBA);
|
2017-11-17 02:10:15 +08:00
|
|
|
void initSymtabSectionHeader(Elf_Shdr &SHeader, SymtabType STType,
|
2019-06-05 21:16:53 +08:00
|
|
|
ContiguousBlobAccumulator &CBA,
|
|
|
|
ELFYAML::Section *YAMLSec);
|
2014-04-03 00:34:54 +08:00
|
|
|
void initStrtabSectionHeader(Elf_Shdr &SHeader, StringRef Name,
|
|
|
|
StringTableBuilder &STB,
|
2019-06-05 21:16:53 +08:00
|
|
|
ContiguousBlobAccumulator &CBA,
|
|
|
|
ELFYAML::Section *YAMLSec);
|
2017-07-20 04:38:46 +08:00
|
|
|
void setProgramHeaderLayout(std::vector<Elf_Phdr> &PHeaders,
|
|
|
|
std::vector<Elf_Shdr> &SHeaders);
|
2019-09-05 16:59:28 +08:00
|
|
|
void finalizeStrings();
|
2019-09-05 22:25:57 +08:00
|
|
|
void writeELFHeader(ContiguousBlobAccumulator &CBA, raw_ostream &OS);
|
2019-09-09 17:43:03 +08:00
|
|
|
void writeSectionContent(Elf_Shdr &SHeader,
|
2014-04-11 12:13:39 +08:00
|
|
|
const ELFYAML::RawContentSection &Section,
|
|
|
|
ContiguousBlobAccumulator &CBA);
|
2019-09-09 17:43:03 +08:00
|
|
|
void writeSectionContent(Elf_Shdr &SHeader,
|
2014-04-11 12:13:39 +08:00
|
|
|
const ELFYAML::RelocationSection &Section,
|
|
|
|
ContiguousBlobAccumulator &CBA);
|
2019-09-09 17:43:03 +08:00
|
|
|
void writeSectionContent(Elf_Shdr &SHeader, const ELFYAML::Group &Group,
|
2015-02-21 12:28:26 +08:00
|
|
|
ContiguousBlobAccumulator &CBA);
|
2019-09-09 17:43:03 +08:00
|
|
|
void writeSectionContent(Elf_Shdr &SHeader,
|
2019-08-08 17:49:05 +08:00
|
|
|
const ELFYAML::SymtabShndxSection &Shndx,
|
|
|
|
ContiguousBlobAccumulator &CBA);
|
2019-09-09 17:43:03 +08:00
|
|
|
void writeSectionContent(Elf_Shdr &SHeader,
|
2019-02-19 23:29:07 +08:00
|
|
|
const ELFYAML::SymverSection &Section,
|
|
|
|
ContiguousBlobAccumulator &CBA);
|
2019-09-09 17:43:03 +08:00
|
|
|
void writeSectionContent(Elf_Shdr &SHeader,
|
2019-02-19 22:53:48 +08:00
|
|
|
const ELFYAML::VerneedSection &Section,
|
|
|
|
ContiguousBlobAccumulator &CBA);
|
2019-09-09 17:43:03 +08:00
|
|
|
void writeSectionContent(Elf_Shdr &SHeader,
|
2019-02-21 20:21:43 +08:00
|
|
|
const ELFYAML::VerdefSection &Section,
|
|
|
|
ContiguousBlobAccumulator &CBA);
|
2019-09-09 17:43:03 +08:00
|
|
|
void writeSectionContent(Elf_Shdr &SHeader,
|
2015-05-07 23:40:48 +08:00
|
|
|
const ELFYAML::MipsABIFlags &Section,
|
|
|
|
ContiguousBlobAccumulator &CBA);
|
2019-09-09 17:43:03 +08:00
|
|
|
void writeSectionContent(Elf_Shdr &SHeader,
|
2019-02-09 19:34:28 +08:00
|
|
|
const ELFYAML::DynamicSection &Section,
|
|
|
|
ContiguousBlobAccumulator &CBA);
|
2019-09-24 22:22:37 +08:00
|
|
|
void writeSectionContent(Elf_Shdr &SHeader,
|
|
|
|
const ELFYAML::StackSizesSection &Section,
|
|
|
|
ContiguousBlobAccumulator &CBA);
|
2019-10-01 17:45:59 +08:00
|
|
|
void writeSectionContent(Elf_Shdr &SHeader,
|
|
|
|
const ELFYAML::HashSection &Section,
|
|
|
|
ContiguousBlobAccumulator &CBA);
|
2019-10-03 22:52:33 +08:00
|
|
|
void writeSectionContent(Elf_Shdr &SHeader,
|
|
|
|
const ELFYAML::AddrsigSection &Section,
|
|
|
|
ContiguousBlobAccumulator &CBA);
|
|
|
|
|
2019-09-14 00:00:16 +08:00
|
|
|
ELFState(ELFYAML::Object &D, yaml::ErrorHandler EH);
|
|
|
|
|
2014-04-03 00:34:54 +08:00
|
|
|
public:
|
2019-09-14 00:00:16 +08:00
|
|
|
static bool writeELF(raw_ostream &OS, ELFYAML::Object &Doc,
|
|
|
|
yaml::ErrorHandler EH);
|
2013-06-21 03:11:44 +08:00
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
[yaml2obj] Move core yaml2obj code into lib and include for use in unit tests
Reviewers: jhenderson, rupprecht, MaskRay, grimar, labath
Reviewed By: rupprecht
Subscribers: gribozavr, mgrang, seiya, mgorny, sbc100, hiraditya, aheejin, jakehehrlich, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D65255
llvm-svn: 368119
2019-08-07 10:44:49 +08:00
|
|
|
template <class T> static size_t arrayDataSize(ArrayRef<T> A) {
|
|
|
|
return A.size() * sizeof(T);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T> static void writeArrayData(raw_ostream &OS, ArrayRef<T> A) {
|
|
|
|
OS.write((const char *)A.data(), arrayDataSize(A));
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T> static void zero(T &Obj) { memset(&Obj, 0, sizeof(Obj)); }
|
|
|
|
|
2019-09-14 00:00:16 +08:00
|
|
|
template <class ELFT>
|
|
|
|
ELFState<ELFT>::ELFState(ELFYAML::Object &D, yaml::ErrorHandler EH)
|
|
|
|
: Doc(D), ErrHandler(EH) {
|
2019-07-22 20:01:52 +08:00
|
|
|
StringSet<> DocSections;
|
2019-10-20 22:47:17 +08:00
|
|
|
for (std::unique_ptr<ELFYAML::Section> &D : Doc.Sections) {
|
2019-07-22 20:01:52 +08:00
|
|
|
if (!D->Name.empty())
|
|
|
|
DocSections.insert(D->Name);
|
|
|
|
|
2019-10-20 22:47:17 +08:00
|
|
|
// Some sections wants to link to .symtab by default.
|
|
|
|
// That means we want to create the symbol table for them.
|
|
|
|
if (D->Type == llvm::ELF::SHT_REL || D->Type == llvm::ELF::SHT_RELA)
|
|
|
|
if (!Doc.Symbols && D->Link.empty())
|
|
|
|
Doc.Symbols.emplace();
|
|
|
|
}
|
|
|
|
|
2019-07-23 19:03:37 +08:00
|
|
|
// Insert SHT_NULL section implicitly when it is not defined in YAML.
|
|
|
|
if (Doc.Sections.empty() || Doc.Sections.front()->Type != ELF::SHT_NULL)
|
|
|
|
Doc.Sections.insert(
|
|
|
|
Doc.Sections.begin(),
|
2019-08-15 23:54:37 +08:00
|
|
|
std::make_unique<ELFYAML::Section>(
|
[yaml2obj] Move core yaml2obj code into lib and include for use in unit tests
Reviewers: jhenderson, rupprecht, MaskRay, grimar, labath
Reviewed By: rupprecht
Subscribers: gribozavr, mgrang, seiya, mgorny, sbc100, hiraditya, aheejin, jakehehrlich, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D65255
llvm-svn: 368119
2019-08-07 10:44:49 +08:00
|
|
|
ELFYAML::Section::SectionKind::RawContent, /*IsImplicit=*/true));
|
2019-07-23 15:38:44 +08:00
|
|
|
|
2019-10-20 22:47:17 +08:00
|
|
|
std::vector<StringRef> ImplicitSections;
|
|
|
|
if (Doc.Symbols)
|
|
|
|
ImplicitSections.push_back(".symtab");
|
|
|
|
ImplicitSections.insert(ImplicitSections.end(), {".strtab", ".shstrtab"});
|
|
|
|
|
2019-07-22 20:01:52 +08:00
|
|
|
if (!Doc.DynamicSymbols.empty())
|
|
|
|
ImplicitSections.insert(ImplicitSections.end(), {".dynsym", ".dynstr"});
|
|
|
|
|
|
|
|
// Insert placeholders for implicit sections that are not
|
|
|
|
// defined explicitly in YAML.
|
|
|
|
for (StringRef SecName : ImplicitSections) {
|
|
|
|
if (DocSections.count(SecName))
|
|
|
|
continue;
|
|
|
|
|
2019-08-15 23:54:37 +08:00
|
|
|
std::unique_ptr<ELFYAML::Section> Sec = std::make_unique<ELFYAML::Section>(
|
2019-07-22 20:01:52 +08:00
|
|
|
ELFYAML::Section::SectionKind::RawContent, true /*IsImplicit*/);
|
|
|
|
Sec->Name = SecName;
|
|
|
|
Doc.Sections.push_back(std::move(Sec));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-05 22:25:57 +08:00
|
|
|
template <class ELFT>
|
|
|
|
void ELFState<ELFT>::writeELFHeader(ContiguousBlobAccumulator &CBA, raw_ostream &OS) {
|
2014-04-03 00:34:54 +08:00
|
|
|
using namespace llvm::ELF;
|
2019-09-05 22:25:57 +08:00
|
|
|
|
|
|
|
Elf_Ehdr Header;
|
2014-04-03 00:34:54 +08:00
|
|
|
zero(Header);
|
|
|
|
Header.e_ident[EI_MAG0] = 0x7f;
|
|
|
|
Header.e_ident[EI_MAG1] = 'E';
|
|
|
|
Header.e_ident[EI_MAG2] = 'L';
|
|
|
|
Header.e_ident[EI_MAG3] = 'F';
|
|
|
|
Header.e_ident[EI_CLASS] = ELFT::Is64Bits ? ELFCLASS64 : ELFCLASS32;
|
2019-03-07 20:09:19 +08:00
|
|
|
Header.e_ident[EI_DATA] = Doc.Header.Data;
|
2014-04-03 00:34:54 +08:00
|
|
|
Header.e_ident[EI_VERSION] = EV_CURRENT;
|
|
|
|
Header.e_ident[EI_OSABI] = Doc.Header.OSABI;
|
2018-12-20 18:43:49 +08:00
|
|
|
Header.e_ident[EI_ABIVERSION] = Doc.Header.ABIVersion;
|
2014-04-03 00:34:54 +08:00
|
|
|
Header.e_type = Doc.Header.Type;
|
|
|
|
Header.e_machine = Doc.Header.Machine;
|
|
|
|
Header.e_version = EV_CURRENT;
|
|
|
|
Header.e_entry = Doc.Header.Entry;
|
2019-09-06 10:27:55 +08:00
|
|
|
Header.e_phoff = Doc.ProgramHeaders.size() ? sizeof(Header) : 0;
|
2014-04-03 00:34:54 +08:00
|
|
|
Header.e_flags = Doc.Header.Flags;
|
|
|
|
Header.e_ehsize = sizeof(Elf_Ehdr);
|
2019-09-06 10:27:55 +08:00
|
|
|
Header.e_phentsize = Doc.ProgramHeaders.size() ? sizeof(Elf_Phdr) : 0;
|
2017-07-20 04:38:46 +08:00
|
|
|
Header.e_phnum = Doc.ProgramHeaders.size();
|
2019-06-27 19:08:42 +08:00
|
|
|
|
|
|
|
Header.e_shentsize =
|
|
|
|
Doc.Header.SHEntSize ? (uint16_t)*Doc.Header.SHEntSize : sizeof(Elf_Shdr);
|
2017-07-20 04:38:46 +08:00
|
|
|
// Immediately following the ELF header and program headers.
|
2019-09-05 22:25:57 +08:00
|
|
|
// Align the start of the section header and write the ELF header.
|
2019-09-06 17:23:17 +08:00
|
|
|
uint64_t SHOff;
|
|
|
|
CBA.getOSAndAlignedOffset(SHOff, sizeof(typename ELFT::uint));
|
|
|
|
Header.e_shoff =
|
|
|
|
Doc.Header.SHOff ? typename ELFT::uint(*Doc.Header.SHOff) : SHOff;
|
2019-06-27 19:08:42 +08:00
|
|
|
Header.e_shnum =
|
2019-07-25 18:19:23 +08:00
|
|
|
Doc.Header.SHNum ? (uint16_t)*Doc.Header.SHNum : Doc.Sections.size();
|
2019-06-27 19:08:42 +08:00
|
|
|
Header.e_shstrndx = Doc.Header.SHStrNdx ? (uint16_t)*Doc.Header.SHStrNdx
|
|
|
|
: SN2I.get(".shstrtab");
|
2019-09-05 22:25:57 +08:00
|
|
|
|
|
|
|
OS.write((const char *)&Header, sizeof(Header));
|
2014-04-03 00:34:54 +08:00
|
|
|
}
|
|
|
|
|
2017-07-20 04:38:46 +08:00
|
|
|
template <class ELFT>
|
|
|
|
void ELFState<ELFT>::initProgramHeaders(std::vector<Elf_Phdr> &PHeaders) {
|
|
|
|
for (const auto &YamlPhdr : Doc.ProgramHeaders) {
|
|
|
|
Elf_Phdr Phdr;
|
|
|
|
Phdr.p_type = YamlPhdr.Type;
|
|
|
|
Phdr.p_flags = YamlPhdr.Flags;
|
|
|
|
Phdr.p_vaddr = YamlPhdr.VAddr;
|
|
|
|
Phdr.p_paddr = YamlPhdr.PAddr;
|
|
|
|
PHeaders.push_back(Phdr);
|
|
|
|
}
|
|
|
|
}
|
2019-05-07 20:10:51 +08:00
|
|
|
|
2019-09-09 17:43:03 +08:00
|
|
|
template <class ELFT>
|
|
|
|
unsigned ELFState<ELFT>::toSectionIndex(StringRef S, StringRef LocSec,
|
|
|
|
StringRef LocSym) {
|
|
|
|
unsigned Index;
|
|
|
|
if (SN2I.lookup(S, Index) || to_integer(S, Index))
|
|
|
|
return Index;
|
|
|
|
|
|
|
|
assert(LocSec.empty() || LocSym.empty());
|
|
|
|
if (!LocSym.empty())
|
|
|
|
reportError("unknown section referenced: '" + S + "' by YAML symbol '" +
|
|
|
|
LocSym + "'");
|
|
|
|
else
|
|
|
|
reportError("unknown section referenced: '" + S + "' by YAML section '" +
|
|
|
|
LocSec + "'");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class ELFT>
|
|
|
|
unsigned ELFState<ELFT>::toSymbolIndex(StringRef S, StringRef LocSec,
|
|
|
|
bool IsDynamic) {
|
|
|
|
const NameToIdxMap &SymMap = IsDynamic ? DynSymN2I : SymN2I;
|
|
|
|
unsigned Index;
|
|
|
|
// Here we try to look up S in the symbol table. If it is not there,
|
|
|
|
// treat its value as a symbol index.
|
|
|
|
if (!SymMap.lookup(S, Index) && !to_integer(S, Index)) {
|
|
|
|
reportError("unknown symbol referenced: '" + S + "' by YAML section '" +
|
|
|
|
LocSec + "'");
|
|
|
|
return 0;
|
2018-12-04 22:27:51 +08:00
|
|
|
}
|
2019-09-09 17:43:03 +08:00
|
|
|
return Index;
|
2018-12-04 22:27:51 +08:00
|
|
|
}
|
|
|
|
|
2014-04-03 00:34:54 +08:00
|
|
|
template <class ELFT>
|
2019-09-05 16:59:28 +08:00
|
|
|
bool ELFState<ELFT>::initImplicitHeader(ContiguousBlobAccumulator &CBA,
|
2019-06-05 21:16:53 +08:00
|
|
|
Elf_Shdr &Header, StringRef SecName,
|
|
|
|
ELFYAML::Section *YAMLSec) {
|
|
|
|
// Check if the header was already initialized.
|
|
|
|
if (Header.sh_offset)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (SecName == ".symtab")
|
2019-09-05 16:59:28 +08:00
|
|
|
initSymtabSectionHeader(Header, SymtabType::Static, CBA, YAMLSec);
|
2019-06-05 21:16:53 +08:00
|
|
|
else if (SecName == ".strtab")
|
2019-09-05 16:59:28 +08:00
|
|
|
initStrtabSectionHeader(Header, SecName, DotStrtab, CBA, YAMLSec);
|
2019-06-05 21:16:53 +08:00
|
|
|
else if (SecName == ".shstrtab")
|
2019-09-05 16:59:28 +08:00
|
|
|
initStrtabSectionHeader(Header, SecName, DotShStrtab, CBA, YAMLSec);
|
2019-06-05 21:16:53 +08:00
|
|
|
else if (SecName == ".dynsym")
|
2019-09-05 16:59:28 +08:00
|
|
|
initSymtabSectionHeader(Header, SymtabType::Dynamic, CBA, YAMLSec);
|
2019-06-05 21:16:53 +08:00
|
|
|
else if (SecName == ".dynstr")
|
2019-09-05 16:59:28 +08:00
|
|
|
initStrtabSectionHeader(Header, SecName, DotDynstr, CBA, YAMLSec);
|
2019-06-05 21:16:53 +08:00
|
|
|
else
|
|
|
|
return false;
|
2019-07-02 18:20:12 +08:00
|
|
|
|
2019-09-02 17:47:17 +08:00
|
|
|
// Override the fields if requested.
|
2019-07-11 20:59:29 +08:00
|
|
|
if (YAMLSec) {
|
2019-09-02 17:47:17 +08:00
|
|
|
if (YAMLSec->ShName)
|
|
|
|
Header.sh_name = *YAMLSec->ShName;
|
2019-07-11 20:59:29 +08:00
|
|
|
if (YAMLSec->ShOffset)
|
|
|
|
Header.sh_offset = *YAMLSec->ShOffset;
|
|
|
|
if (YAMLSec->ShSize)
|
|
|
|
Header.sh_size = *YAMLSec->ShSize;
|
|
|
|
}
|
2019-07-02 18:20:12 +08:00
|
|
|
|
2019-06-05 21:16:53 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-09-25 20:09:30 +08:00
|
|
|
StringRef llvm::ELFYAML::dropUniqueSuffix(StringRef S) {
|
2019-06-25 16:22:57 +08:00
|
|
|
size_t SuffixPos = S.rfind(" [");
|
|
|
|
if (SuffixPos == StringRef::npos)
|
|
|
|
return S;
|
|
|
|
return S.substr(0, SuffixPos);
|
|
|
|
}
|
|
|
|
|
2019-06-05 21:16:53 +08:00
|
|
|
template <class ELFT>
|
2019-09-09 17:43:03 +08:00
|
|
|
void ELFState<ELFT>::initSectionHeaders(std::vector<Elf_Shdr> &SHeaders,
|
2014-04-03 00:34:54 +08:00
|
|
|
ContiguousBlobAccumulator &CBA) {
|
|
|
|
// Ensure SHN_UNDEF entry is present. An all-zero section header is a
|
|
|
|
// valid SHN_UNDEF entry since SHT_NULL == 0.
|
2019-07-23 15:38:44 +08:00
|
|
|
SHeaders.resize(Doc.Sections.size());
|
2014-04-03 00:34:54 +08:00
|
|
|
|
2019-07-23 19:03:37 +08:00
|
|
|
for (size_t I = 0; I < Doc.Sections.size(); ++I) {
|
2019-07-23 15:38:44 +08:00
|
|
|
ELFYAML::Section *Sec = Doc.Sections[I].get();
|
2019-07-25 18:19:23 +08:00
|
|
|
if (I == 0 && Sec->IsImplicit)
|
2019-07-23 19:03:37 +08:00
|
|
|
continue;
|
|
|
|
|
2019-06-07 16:31:36 +08:00
|
|
|
// We have a few sections like string or symbol tables that are usually
|
|
|
|
// added implicitly to the end. However, if they are explicitly specified
|
|
|
|
// in the YAML, we need to write them here. This ensures the file offset
|
|
|
|
// remains correct.
|
2019-07-25 18:19:23 +08:00
|
|
|
Elf_Shdr &SHeader = SHeaders[I];
|
2019-09-05 16:59:28 +08:00
|
|
|
if (initImplicitHeader(CBA, SHeader, Sec->Name,
|
2019-07-22 20:01:52 +08:00
|
|
|
Sec->IsImplicit ? nullptr : Sec))
|
2019-06-07 16:31:36 +08:00
|
|
|
continue;
|
|
|
|
|
|
|
|
assert(Sec && "It can't be null unless it is an implicit section. But all "
|
|
|
|
"implicit sections should already have been handled above.");
|
|
|
|
|
2019-09-25 20:09:30 +08:00
|
|
|
SHeader.sh_name =
|
|
|
|
DotShStrtab.getOffset(ELFYAML::dropUniqueSuffix(Sec->Name));
|
2014-04-11 12:13:39 +08:00
|
|
|
SHeader.sh_type = Sec->Type;
|
2019-06-14 19:01:14 +08:00
|
|
|
if (Sec->Flags)
|
|
|
|
SHeader.sh_flags = *Sec->Flags;
|
2014-04-11 12:13:39 +08:00
|
|
|
SHeader.sh_addr = Sec->Address;
|
|
|
|
SHeader.sh_addralign = Sec->AddressAlign;
|
2014-04-03 00:34:54 +08:00
|
|
|
|
2019-09-09 17:43:03 +08:00
|
|
|
if (!Sec->Link.empty())
|
|
|
|
SHeader.sh_link = toSectionIndex(Sec->Link, Sec->Name);
|
2014-04-11 12:13:39 +08:00
|
|
|
|
2019-07-25 18:19:23 +08:00
|
|
|
if (I == 0) {
|
|
|
|
if (auto RawSec = dyn_cast<ELFYAML::RawContentSection>(Sec)) {
|
|
|
|
// We do not write any content for special SHN_UNDEF section.
|
|
|
|
if (RawSec->Size)
|
|
|
|
SHeader.sh_size = *RawSec->Size;
|
|
|
|
if (RawSec->Info)
|
|
|
|
SHeader.sh_info = *RawSec->Info;
|
|
|
|
}
|
|
|
|
if (Sec->EntSize)
|
|
|
|
SHeader.sh_entsize = *Sec->EntSize;
|
|
|
|
} else if (auto S = dyn_cast<ELFYAML::RawContentSection>(Sec)) {
|
2019-09-09 17:43:03 +08:00
|
|
|
writeSectionContent(SHeader, *S, CBA);
|
2019-08-08 17:49:05 +08:00
|
|
|
} else if (auto S = dyn_cast<ELFYAML::SymtabShndxSection>(Sec)) {
|
2019-09-09 17:43:03 +08:00
|
|
|
writeSectionContent(SHeader, *S, CBA);
|
2019-06-07 16:31:36 +08:00
|
|
|
} else if (auto S = dyn_cast<ELFYAML::RelocationSection>(Sec)) {
|
2019-09-09 17:43:03 +08:00
|
|
|
writeSectionContent(SHeader, *S, CBA);
|
2019-06-07 16:31:36 +08:00
|
|
|
} else if (auto S = dyn_cast<ELFYAML::Group>(Sec)) {
|
2019-09-09 17:43:03 +08:00
|
|
|
writeSectionContent(SHeader, *S, CBA);
|
2019-06-07 16:31:36 +08:00
|
|
|
} else if (auto S = dyn_cast<ELFYAML::MipsABIFlags>(Sec)) {
|
2019-09-09 17:43:03 +08:00
|
|
|
writeSectionContent(SHeader, *S, CBA);
|
2019-06-07 16:31:36 +08:00
|
|
|
} else if (auto S = dyn_cast<ELFYAML::NoBitsSection>(Sec)) {
|
2015-07-04 07:00:54 +08:00
|
|
|
SHeader.sh_entsize = 0;
|
|
|
|
SHeader.sh_size = S->Size;
|
|
|
|
// SHT_NOBITS section does not have content
|
|
|
|
// so just to setup the section offset.
|
2015-07-08 18:12:40 +08:00
|
|
|
CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign);
|
2019-06-07 16:31:36 +08:00
|
|
|
} else if (auto S = dyn_cast<ELFYAML::DynamicSection>(Sec)) {
|
2019-09-09 17:43:03 +08:00
|
|
|
writeSectionContent(SHeader, *S, CBA);
|
2019-06-07 16:31:36 +08:00
|
|
|
} else if (auto S = dyn_cast<ELFYAML::SymverSection>(Sec)) {
|
2019-09-09 17:43:03 +08:00
|
|
|
writeSectionContent(SHeader, *S, CBA);
|
2019-06-07 16:31:36 +08:00
|
|
|
} else if (auto S = dyn_cast<ELFYAML::VerneedSection>(Sec)) {
|
2019-09-09 17:43:03 +08:00
|
|
|
writeSectionContent(SHeader, *S, CBA);
|
2019-06-07 16:31:36 +08:00
|
|
|
} else if (auto S = dyn_cast<ELFYAML::VerdefSection>(Sec)) {
|
2019-09-09 17:43:03 +08:00
|
|
|
writeSectionContent(SHeader, *S, CBA);
|
2019-09-24 22:22:37 +08:00
|
|
|
} else if (auto S = dyn_cast<ELFYAML::StackSizesSection>(Sec)) {
|
2019-10-01 17:45:59 +08:00
|
|
|
writeSectionContent(SHeader, *S, CBA);
|
|
|
|
} else if (auto S = dyn_cast<ELFYAML::HashSection>(Sec)) {
|
|
|
|
writeSectionContent(SHeader, *S, CBA);
|
2019-10-03 22:52:33 +08:00
|
|
|
} else if (auto S = dyn_cast<ELFYAML::AddrsigSection>(Sec)) {
|
|
|
|
writeSectionContent(SHeader, *S, CBA);
|
2019-09-09 17:43:03 +08:00
|
|
|
} else {
|
2014-04-11 12:13:39 +08:00
|
|
|
llvm_unreachable("Unknown section type");
|
2019-09-09 17:43:03 +08:00
|
|
|
}
|
2019-07-02 18:20:12 +08:00
|
|
|
|
2019-09-02 17:47:17 +08:00
|
|
|
// Override the fields if requested.
|
2019-07-11 20:59:29 +08:00
|
|
|
if (Sec) {
|
2019-09-02 17:47:17 +08:00
|
|
|
if (Sec->ShName)
|
|
|
|
SHeader.sh_name = *Sec->ShName;
|
2019-07-11 20:59:29 +08:00
|
|
|
if (Sec->ShOffset)
|
|
|
|
SHeader.sh_offset = *Sec->ShOffset;
|
|
|
|
if (Sec->ShSize)
|
|
|
|
SHeader.sh_size = *Sec->ShSize;
|
|
|
|
}
|
2019-06-05 21:16:53 +08:00
|
|
|
}
|
2013-06-21 08:27:50 +08:00
|
|
|
}
|
|
|
|
|
2019-04-03 22:53:42 +08:00
|
|
|
static size_t findFirstNonGlobal(ArrayRef<ELFYAML::Symbol> Symbols) {
|
|
|
|
for (size_t I = 0; I < Symbols.size(); ++I)
|
|
|
|
if (Symbols[I].Binding.value != ELF::STB_LOCAL)
|
|
|
|
return I;
|
|
|
|
return Symbols.size();
|
|
|
|
}
|
|
|
|
|
2019-09-25 19:40:11 +08:00
|
|
|
static uint64_t writeContent(raw_ostream &OS,
|
|
|
|
const Optional<yaml::BinaryRef> &Content,
|
|
|
|
const Optional<llvm::yaml::Hex64> &Size) {
|
2019-06-10 20:43:18 +08:00
|
|
|
size_t ContentSize = 0;
|
2019-09-25 19:40:11 +08:00
|
|
|
if (Content) {
|
|
|
|
Content->writeAsBinary(OS);
|
|
|
|
ContentSize = Content->binary_size();
|
2019-06-10 20:43:18 +08:00
|
|
|
}
|
|
|
|
|
2019-09-25 19:40:11 +08:00
|
|
|
if (!Size)
|
2019-06-10 20:43:18 +08:00
|
|
|
return ContentSize;
|
|
|
|
|
2019-09-25 19:40:11 +08:00
|
|
|
OS.write_zeros(*Size - ContentSize);
|
|
|
|
return *Size;
|
2019-06-10 20:43:18 +08:00
|
|
|
}
|
|
|
|
|
2019-06-20 22:44:48 +08:00
|
|
|
template <class ELFT>
|
2019-09-09 17:43:03 +08:00
|
|
|
std::vector<typename ELFT::Sym>
|
|
|
|
ELFState<ELFT>::toELFSymbols(ArrayRef<ELFYAML::Symbol> Symbols,
|
|
|
|
const StringTableBuilder &Strtab) {
|
2019-06-20 22:44:48 +08:00
|
|
|
std::vector<Elf_Sym> Ret;
|
|
|
|
Ret.resize(Symbols.size() + 1);
|
|
|
|
|
|
|
|
size_t I = 0;
|
|
|
|
for (const auto &Sym : Symbols) {
|
|
|
|
Elf_Sym &Symbol = Ret[++I];
|
|
|
|
|
|
|
|
// If NameIndex, which contains the name offset, is explicitly specified, we
|
|
|
|
// use it. This is useful for preparing broken objects. Otherwise, we add
|
|
|
|
// the specified Name to the string table builder to get its offset.
|
|
|
|
if (Sym.NameIndex)
|
|
|
|
Symbol.st_name = *Sym.NameIndex;
|
|
|
|
else if (!Sym.Name.empty())
|
2019-09-25 20:09:30 +08:00
|
|
|
Symbol.st_name = Strtab.getOffset(ELFYAML::dropUniqueSuffix(Sym.Name));
|
2019-06-20 22:44:48 +08:00
|
|
|
|
|
|
|
Symbol.setBindingAndType(Sym.Binding, Sym.Type);
|
2019-09-09 17:43:03 +08:00
|
|
|
if (!Sym.Section.empty())
|
|
|
|
Symbol.st_shndx = toSectionIndex(Sym.Section, "", Sym.Name);
|
|
|
|
else if (Sym.Index)
|
2019-06-20 22:44:48 +08:00
|
|
|
Symbol.st_shndx = *Sym.Index;
|
2019-09-09 17:43:03 +08:00
|
|
|
|
2019-06-20 22:44:48 +08:00
|
|
|
Symbol.st_value = Sym.Value;
|
2019-08-30 21:39:22 +08:00
|
|
|
Symbol.st_other = Sym.Other ? *Sym.Other : 0;
|
2019-06-20 22:44:48 +08:00
|
|
|
Symbol.st_size = Sym.Size;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Ret;
|
|
|
|
}
|
|
|
|
|
2013-06-19 07:14:03 +08:00
|
|
|
template <class ELFT>
|
2014-04-03 00:34:54 +08:00
|
|
|
void ELFState<ELFT>::initSymtabSectionHeader(Elf_Shdr &SHeader,
|
2017-11-17 02:10:15 +08:00
|
|
|
SymtabType STType,
|
2019-06-05 21:16:53 +08:00
|
|
|
ContiguousBlobAccumulator &CBA,
|
|
|
|
ELFYAML::Section *YAMLSec) {
|
2019-06-10 20:43:18 +08:00
|
|
|
|
2017-11-17 02:10:15 +08:00
|
|
|
bool IsStatic = STType == SymtabType::Static;
|
2019-10-20 22:47:17 +08:00
|
|
|
ArrayRef<ELFYAML::Symbol> Symbols;
|
|
|
|
if (IsStatic && Doc.Symbols)
|
|
|
|
Symbols = *Doc.Symbols;
|
|
|
|
else if (!IsStatic)
|
|
|
|
Symbols = Doc.DynamicSymbols;
|
2019-06-10 20:43:18 +08:00
|
|
|
|
|
|
|
ELFYAML::RawContentSection *RawSec =
|
|
|
|
dyn_cast_or_null<ELFYAML::RawContentSection>(YAMLSec);
|
|
|
|
if (RawSec && !Symbols.empty() && (RawSec->Content || RawSec->Size)) {
|
|
|
|
if (RawSec->Content)
|
2019-09-09 17:43:03 +08:00
|
|
|
reportError("cannot specify both `Content` and " +
|
|
|
|
(IsStatic ? Twine("`Symbols`") : Twine("`DynamicSymbols`")) +
|
|
|
|
" for symbol table section '" + RawSec->Name + "'");
|
2019-06-10 20:43:18 +08:00
|
|
|
if (RawSec->Size)
|
2019-09-09 17:43:03 +08:00
|
|
|
reportError("cannot specify both `Size` and " +
|
|
|
|
(IsStatic ? Twine("`Symbols`") : Twine("`DynamicSymbols`")) +
|
|
|
|
" for symbol table section '" + RawSec->Name + "'");
|
|
|
|
return;
|
2019-06-10 20:43:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
zero(SHeader);
|
2017-11-17 02:10:15 +08:00
|
|
|
SHeader.sh_name = DotShStrtab.getOffset(IsStatic ? ".symtab" : ".dynsym");
|
2019-06-14 22:25:34 +08:00
|
|
|
|
|
|
|
if (YAMLSec)
|
|
|
|
SHeader.sh_type = YAMLSec->Type;
|
|
|
|
else
|
|
|
|
SHeader.sh_type = IsStatic ? ELF::SHT_SYMTAB : ELF::SHT_DYNSYM;
|
2019-06-10 19:38:06 +08:00
|
|
|
|
2019-06-11 18:00:51 +08:00
|
|
|
if (RawSec && !RawSec->Link.empty()) {
|
|
|
|
// If the Link field is explicitly defined in the document,
|
|
|
|
// we should use it.
|
2019-09-09 17:43:03 +08:00
|
|
|
SHeader.sh_link = toSectionIndex(RawSec->Link, RawSec->Name);
|
2019-06-11 18:00:51 +08:00
|
|
|
} else {
|
|
|
|
// When we describe the .dynsym section in the document explicitly, it is
|
|
|
|
// allowed to omit the "DynamicSymbols" tag. In this case .dynstr is not
|
|
|
|
// added implicitly and we should be able to leave the Link zeroed if
|
|
|
|
// .dynstr is not defined.
|
|
|
|
unsigned Link = 0;
|
|
|
|
if (IsStatic)
|
|
|
|
Link = SN2I.get(".strtab");
|
|
|
|
else
|
|
|
|
SN2I.lookup(".dynstr", Link);
|
|
|
|
SHeader.sh_link = Link;
|
|
|
|
}
|
2019-06-10 19:38:06 +08:00
|
|
|
|
2019-06-14 19:01:14 +08:00
|
|
|
if (YAMLSec && YAMLSec->Flags)
|
|
|
|
SHeader.sh_flags = *YAMLSec->Flags;
|
|
|
|
else if (!IsStatic)
|
|
|
|
SHeader.sh_flags = ELF::SHF_ALLOC;
|
2019-04-26 20:45:54 +08:00
|
|
|
|
2019-03-01 18:18:16 +08:00
|
|
|
// If the symbol table section is explicitly described in the YAML
|
|
|
|
// then we should set the fields requested.
|
2019-06-19 16:57:38 +08:00
|
|
|
SHeader.sh_info = (RawSec && RawSec->Info) ? (unsigned)(*RawSec->Info)
|
|
|
|
: findFirstNonGlobal(Symbols) + 1;
|
2019-06-05 21:16:53 +08:00
|
|
|
SHeader.sh_entsize = (YAMLSec && YAMLSec->EntSize)
|
|
|
|
? (uint64_t)(*YAMLSec->EntSize)
|
|
|
|
: sizeof(Elf_Sym);
|
|
|
|
SHeader.sh_addralign = YAMLSec ? (uint64_t)YAMLSec->AddressAlign : 8;
|
|
|
|
SHeader.sh_addr = YAMLSec ? (uint64_t)YAMLSec->Address : 0;
|
|
|
|
|
2019-06-10 20:43:18 +08:00
|
|
|
auto &OS = CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign);
|
|
|
|
if (RawSec && (RawSec->Content || RawSec->Size)) {
|
|
|
|
assert(Symbols.empty());
|
2019-09-25 19:40:11 +08:00
|
|
|
SHeader.sh_size = writeContent(OS, RawSec->Content, RawSec->Size);
|
2019-06-10 20:43:18 +08:00
|
|
|
return;
|
|
|
|
}
|
2013-06-19 07:14:03 +08:00
|
|
|
|
2019-06-20 22:44:48 +08:00
|
|
|
std::vector<Elf_Sym> Syms =
|
2019-09-09 17:43:03 +08:00
|
|
|
toELFSymbols(Symbols, IsStatic ? DotStrtab : DotDynstr);
|
2019-06-10 20:43:18 +08:00
|
|
|
writeArrayData(OS, makeArrayRef(Syms));
|
|
|
|
SHeader.sh_size = arrayDataSize(makeArrayRef(Syms));
|
2013-06-19 07:14:03 +08:00
|
|
|
}
|
|
|
|
|
2013-06-11 07:44:15 +08:00
|
|
|
template <class ELFT>
|
2014-04-03 00:34:54 +08:00
|
|
|
void ELFState<ELFT>::initStrtabSectionHeader(Elf_Shdr &SHeader, StringRef Name,
|
|
|
|
StringTableBuilder &STB,
|
2019-06-05 21:16:53 +08:00
|
|
|
ContiguousBlobAccumulator &CBA,
|
|
|
|
ELFYAML::Section *YAMLSec) {
|
2014-04-03 00:34:54 +08:00
|
|
|
zero(SHeader);
|
2014-05-01 03:38:09 +08:00
|
|
|
SHeader.sh_name = DotShStrtab.getOffset(Name);
|
2019-06-14 22:25:34 +08:00
|
|
|
SHeader.sh_type = YAMLSec ? YAMLSec->Type : ELF::SHT_STRTAB;
|
2019-06-05 21:16:53 +08:00
|
|
|
SHeader.sh_addralign = YAMLSec ? (uint64_t)YAMLSec->AddressAlign : 1;
|
|
|
|
|
|
|
|
ELFYAML::RawContentSection *RawSec =
|
|
|
|
dyn_cast_or_null<ELFYAML::RawContentSection>(YAMLSec);
|
2019-06-10 20:43:18 +08:00
|
|
|
|
|
|
|
auto &OS = CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign);
|
|
|
|
if (RawSec && (RawSec->Content || RawSec->Size)) {
|
2019-09-25 19:40:11 +08:00
|
|
|
SHeader.sh_size = writeContent(OS, RawSec->Content, RawSec->Size);
|
2019-06-05 21:16:53 +08:00
|
|
|
} else {
|
2019-06-10 20:43:18 +08:00
|
|
|
STB.write(OS);
|
2019-06-05 21:16:53 +08:00
|
|
|
SHeader.sh_size = STB.getSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (YAMLSec && YAMLSec->EntSize)
|
|
|
|
SHeader.sh_entsize = *YAMLSec->EntSize;
|
2019-02-19 20:15:04 +08:00
|
|
|
|
2019-06-19 16:57:38 +08:00
|
|
|
if (RawSec && RawSec->Info)
|
|
|
|
SHeader.sh_info = *RawSec->Info;
|
|
|
|
|
2019-06-14 19:01:14 +08:00
|
|
|
if (YAMLSec && YAMLSec->Flags)
|
|
|
|
SHeader.sh_flags = *YAMLSec->Flags;
|
|
|
|
else if (Name == ".dynstr")
|
|
|
|
SHeader.sh_flags = ELF::SHF_ALLOC;
|
|
|
|
|
2019-06-14 19:13:32 +08:00
|
|
|
// If the section is explicitly described in the YAML
|
2019-02-19 20:15:04 +08:00
|
|
|
// then we want to use its section address.
|
2019-06-14 19:13:32 +08:00
|
|
|
if (YAMLSec)
|
2019-06-14 19:01:14 +08:00
|
|
|
SHeader.sh_addr = YAMLSec->Address;
|
2014-04-03 00:34:54 +08:00
|
|
|
}
|
2013-06-14 06:19:48 +08:00
|
|
|
|
2019-09-09 17:43:03 +08:00
|
|
|
template <class ELFT> void ELFState<ELFT>::reportError(const Twine &Msg) {
|
2019-09-14 00:00:16 +08:00
|
|
|
ErrHandler(Msg);
|
2019-09-09 17:43:03 +08:00
|
|
|
HasError = true;
|
|
|
|
}
|
|
|
|
|
2017-07-20 04:38:46 +08:00
|
|
|
template <class ELFT>
|
|
|
|
void ELFState<ELFT>::setProgramHeaderLayout(std::vector<Elf_Phdr> &PHeaders,
|
|
|
|
std::vector<Elf_Shdr> &SHeaders) {
|
|
|
|
uint32_t PhdrIdx = 0;
|
|
|
|
for (auto &YamlPhdr : Doc.ProgramHeaders) {
|
2019-05-01 17:45:55 +08:00
|
|
|
Elf_Phdr &PHeader = PHeaders[PhdrIdx++];
|
|
|
|
|
2019-05-12 01:03:36 +08:00
|
|
|
std::vector<Elf_Shdr *> Sections;
|
|
|
|
for (const ELFYAML::SectionName &SecName : YamlPhdr.Sections) {
|
|
|
|
unsigned Index;
|
|
|
|
if (!SN2I.lookup(SecName.Section, Index)) {
|
2019-09-09 17:43:03 +08:00
|
|
|
reportError("unknown section referenced: '" + SecName.Section +
|
|
|
|
"' by program header");
|
|
|
|
continue;
|
2019-05-01 17:45:55 +08:00
|
|
|
}
|
|
|
|
Sections.push_back(&SHeaders[Index]);
|
|
|
|
}
|
2017-07-20 04:38:46 +08:00
|
|
|
|
2019-03-15 18:35:27 +08:00
|
|
|
if (YamlPhdr.Offset) {
|
|
|
|
PHeader.p_offset = *YamlPhdr.Offset;
|
|
|
|
} else {
|
|
|
|
if (YamlPhdr.Sections.size())
|
|
|
|
PHeader.p_offset = UINT32_MAX;
|
|
|
|
else
|
|
|
|
PHeader.p_offset = 0;
|
|
|
|
|
|
|
|
// Find the minimum offset for the program header.
|
2019-05-01 17:45:55 +08:00
|
|
|
for (Elf_Shdr *SHeader : Sections)
|
|
|
|
PHeader.p_offset = std::min(PHeader.p_offset, SHeader->sh_offset);
|
2017-07-20 04:38:46 +08:00
|
|
|
}
|
|
|
|
|
2019-09-10 00:45:17 +08:00
|
|
|
// Find the maximum offset of the end of a section in order to set p_filesz
|
|
|
|
// and p_memsz. When setting p_filesz, trailing SHT_NOBITS sections are not
|
|
|
|
// counted.
|
|
|
|
uint64_t FileOffset = PHeader.p_offset, MemOffset = PHeader.p_offset;
|
|
|
|
for (Elf_Shdr *SHeader : Sections) {
|
|
|
|
uint64_t End = SHeader->sh_offset + SHeader->sh_size;
|
|
|
|
MemOffset = std::max(MemOffset, End);
|
|
|
|
|
|
|
|
if (SHeader->sh_type != llvm::ELF::SHT_NOBITS)
|
|
|
|
FileOffset = std::max(FileOffset, End);
|
2017-07-20 04:38:46 +08:00
|
|
|
}
|
|
|
|
|
2019-09-10 00:45:17 +08:00
|
|
|
// Set the file size and the memory size if not set explicitly.
|
|
|
|
PHeader.p_filesz = YamlPhdr.FileSize ? uint64_t(*YamlPhdr.FileSize)
|
|
|
|
: FileOffset - PHeader.p_offset;
|
|
|
|
PHeader.p_memsz = YamlPhdr.MemSize ? uint64_t(*YamlPhdr.MemSize)
|
|
|
|
: MemOffset - PHeader.p_offset;
|
2017-07-20 04:38:46 +08:00
|
|
|
|
2017-11-02 07:14:48 +08:00
|
|
|
if (YamlPhdr.Align) {
|
|
|
|
PHeader.p_align = *YamlPhdr.Align;
|
|
|
|
} else {
|
2019-09-10 17:16:34 +08:00
|
|
|
// Set the alignment of the segment to be the maximum alignment of the
|
|
|
|
// sections so that by default the segment has a valid and sensible
|
|
|
|
// alignment.
|
2017-11-02 07:14:48 +08:00
|
|
|
PHeader.p_align = 1;
|
2019-05-01 17:45:55 +08:00
|
|
|
for (Elf_Shdr *SHeader : Sections)
|
2019-09-10 17:16:34 +08:00
|
|
|
PHeader.p_align = std::max(PHeader.p_align, SHeader->sh_addralign);
|
2017-07-20 04:38:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-11 12:13:39 +08:00
|
|
|
template <class ELFT>
|
2019-09-09 17:43:03 +08:00
|
|
|
void ELFState<ELFT>::writeSectionContent(
|
2019-04-24 21:02:15 +08:00
|
|
|
Elf_Shdr &SHeader, const ELFYAML::RawContentSection &Section,
|
|
|
|
ContiguousBlobAccumulator &CBA) {
|
2015-07-08 18:12:40 +08:00
|
|
|
raw_ostream &OS =
|
|
|
|
CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign);
|
2019-09-25 19:40:11 +08:00
|
|
|
SHeader.sh_size = writeContent(OS, Section.Content, Section.Size);
|
2019-04-24 21:02:15 +08:00
|
|
|
|
2018-08-07 16:11:38 +08:00
|
|
|
if (Section.EntSize)
|
|
|
|
SHeader.sh_entsize = *Section.EntSize;
|
|
|
|
else if (Section.Type == llvm::ELF::SHT_RELR)
|
2018-06-29 05:07:34 +08:00
|
|
|
SHeader.sh_entsize = sizeof(Elf_Relr);
|
|
|
|
else
|
|
|
|
SHeader.sh_entsize = 0;
|
2019-06-19 16:57:38 +08:00
|
|
|
|
|
|
|
if (Section.Info)
|
|
|
|
SHeader.sh_info = *Section.Info;
|
2014-04-11 12:13:39 +08:00
|
|
|
}
|
|
|
|
|
2015-01-25 21:29:25 +08:00
|
|
|
static bool isMips64EL(const ELFYAML::Object &Doc) {
|
|
|
|
return Doc.Header.Machine == ELFYAML::ELF_EM(llvm::ELF::EM_MIPS) &&
|
|
|
|
Doc.Header.Class == ELFYAML::ELF_ELFCLASS(ELF::ELFCLASS64) &&
|
|
|
|
Doc.Header.Data == ELFYAML::ELF_ELFDATA(ELF::ELFDATA2LSB);
|
|
|
|
}
|
|
|
|
|
2014-04-11 12:13:39 +08:00
|
|
|
template <class ELFT>
|
2019-09-09 17:43:03 +08:00
|
|
|
void ELFState<ELFT>::writeSectionContent(
|
[yaml2obj] Move core yaml2obj code into lib and include for use in unit tests
Reviewers: jhenderson, rupprecht, MaskRay, grimar, labath
Reviewed By: rupprecht
Subscribers: gribozavr, mgrang, seiya, mgorny, sbc100, hiraditya, aheejin, jakehehrlich, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D65255
llvm-svn: 368119
2019-08-07 10:44:49 +08:00
|
|
|
Elf_Shdr &SHeader, const ELFYAML::RelocationSection &Section,
|
|
|
|
ContiguousBlobAccumulator &CBA) {
|
2015-05-08 15:05:04 +08:00
|
|
|
assert((Section.Type == llvm::ELF::SHT_REL ||
|
|
|
|
Section.Type == llvm::ELF::SHT_RELA) &&
|
|
|
|
"Section type is not SHT_REL nor SHT_RELA");
|
2014-04-11 12:13:39 +08:00
|
|
|
|
|
|
|
bool IsRela = Section.Type == llvm::ELF::SHT_RELA;
|
|
|
|
SHeader.sh_entsize = IsRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel);
|
|
|
|
SHeader.sh_size = SHeader.sh_entsize * Section.Relocations.size();
|
|
|
|
|
2019-04-26 20:15:32 +08:00
|
|
|
// For relocation section set link to .symtab by default.
|
|
|
|
if (Section.Link.empty())
|
2019-06-10 17:57:29 +08:00
|
|
|
SHeader.sh_link = SN2I.get(".symtab");
|
2019-04-26 20:15:32 +08:00
|
|
|
|
2019-09-09 17:43:03 +08:00
|
|
|
if (!Section.RelocatableSec.empty())
|
|
|
|
SHeader.sh_info = toSectionIndex(Section.RelocatableSec, Section.Name);
|
2019-04-26 20:15:32 +08:00
|
|
|
|
2015-07-08 18:12:40 +08:00
|
|
|
auto &OS = CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign);
|
2014-04-11 12:13:39 +08:00
|
|
|
for (const auto &Rel : Section.Relocations) {
|
2019-09-09 17:43:03 +08:00
|
|
|
unsigned SymIdx = Rel.Symbol ? toSymbolIndex(*Rel.Symbol, Section.Name,
|
|
|
|
Section.Link == ".dynsym")
|
|
|
|
: 0;
|
2014-04-11 12:13:39 +08:00
|
|
|
if (IsRela) {
|
|
|
|
Elf_Rela REntry;
|
|
|
|
zero(REntry);
|
|
|
|
REntry.r_offset = Rel.Offset;
|
|
|
|
REntry.r_addend = Rel.Addend;
|
2015-01-25 21:29:25 +08:00
|
|
|
REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc));
|
2014-04-11 12:13:39 +08:00
|
|
|
OS.write((const char *)&REntry, sizeof(REntry));
|
|
|
|
} else {
|
|
|
|
Elf_Rel REntry;
|
|
|
|
zero(REntry);
|
|
|
|
REntry.r_offset = Rel.Offset;
|
2015-01-25 21:29:25 +08:00
|
|
|
REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc));
|
2014-04-11 12:13:39 +08:00
|
|
|
OS.write((const char *)&REntry, sizeof(REntry));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-08 17:49:05 +08:00
|
|
|
template <class ELFT>
|
2019-09-09 17:43:03 +08:00
|
|
|
void ELFState<ELFT>::writeSectionContent(
|
2019-08-08 17:49:05 +08:00
|
|
|
Elf_Shdr &SHeader, const ELFYAML::SymtabShndxSection &Shndx,
|
|
|
|
ContiguousBlobAccumulator &CBA) {
|
|
|
|
raw_ostream &OS =
|
|
|
|
CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign);
|
|
|
|
|
|
|
|
for (uint32_t E : Shndx.Entries)
|
|
|
|
support::endian::write<uint32_t>(OS, E, ELFT::TargetEndianness);
|
|
|
|
|
|
|
|
SHeader.sh_entsize = Shndx.EntSize ? (uint64_t)*Shndx.EntSize : 4;
|
|
|
|
SHeader.sh_size = Shndx.Entries.size() * SHeader.sh_entsize;
|
|
|
|
}
|
|
|
|
|
2015-02-21 12:28:26 +08:00
|
|
|
template <class ELFT>
|
2019-09-09 17:43:03 +08:00
|
|
|
void ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader,
|
2015-02-21 12:28:26 +08:00
|
|
|
const ELFYAML::Group &Section,
|
|
|
|
ContiguousBlobAccumulator &CBA) {
|
2015-05-08 15:05:04 +08:00
|
|
|
assert(Section.Type == llvm::ELF::SHT_GROUP &&
|
|
|
|
"Section type is not SHT_GROUP");
|
2015-02-21 12:28:26 +08:00
|
|
|
|
2019-02-20 21:58:43 +08:00
|
|
|
SHeader.sh_entsize = 4;
|
2019-05-07 20:10:51 +08:00
|
|
|
SHeader.sh_size = SHeader.sh_entsize * Section.Members.size();
|
2019-09-09 17:43:03 +08:00
|
|
|
SHeader.sh_info =
|
|
|
|
toSymbolIndex(Section.Signature, Section.Name, /*IsDynamic=*/false);
|
2019-04-26 20:15:32 +08:00
|
|
|
|
2019-02-20 21:58:43 +08:00
|
|
|
raw_ostream &OS =
|
|
|
|
CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign);
|
2015-02-21 12:28:26 +08:00
|
|
|
|
2019-04-26 20:20:51 +08:00
|
|
|
for (const ELFYAML::SectionOrType &Member : Section.Members) {
|
|
|
|
unsigned int SectionIndex = 0;
|
|
|
|
if (Member.sectionNameOrType == "GRP_COMDAT")
|
|
|
|
SectionIndex = llvm::ELF::GRP_COMDAT;
|
2019-09-09 17:43:03 +08:00
|
|
|
else
|
|
|
|
SectionIndex = toSectionIndex(Member.sectionNameOrType, Section.Name);
|
2019-04-26 20:20:51 +08:00
|
|
|
support::endian::write<uint32_t>(OS, SectionIndex, ELFT::TargetEndianness);
|
2015-02-21 12:28:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-19 23:29:07 +08:00
|
|
|
template <class ELFT>
|
2019-09-09 17:43:03 +08:00
|
|
|
void ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader,
|
2019-02-19 23:29:07 +08:00
|
|
|
const ELFYAML::SymverSection &Section,
|
|
|
|
ContiguousBlobAccumulator &CBA) {
|
|
|
|
raw_ostream &OS =
|
|
|
|
CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign);
|
2019-02-20 22:01:02 +08:00
|
|
|
for (uint16_t Version : Section.Entries)
|
|
|
|
support::endian::write<uint16_t>(OS, Version, ELFT::TargetEndianness);
|
2019-02-19 23:29:07 +08:00
|
|
|
|
2019-08-05 21:54:35 +08:00
|
|
|
SHeader.sh_entsize = Section.EntSize ? (uint64_t)*Section.EntSize : 2;
|
2019-02-20 21:58:43 +08:00
|
|
|
SHeader.sh_size = Section.Entries.size() * SHeader.sh_entsize;
|
2019-02-19 23:29:07 +08:00
|
|
|
}
|
|
|
|
|
2019-09-24 22:22:37 +08:00
|
|
|
template <class ELFT>
|
|
|
|
void ELFState<ELFT>::writeSectionContent(
|
|
|
|
Elf_Shdr &SHeader, const ELFYAML::StackSizesSection &Section,
|
|
|
|
ContiguousBlobAccumulator &CBA) {
|
|
|
|
using uintX_t = typename ELFT::uint;
|
|
|
|
raw_ostream &OS =
|
|
|
|
CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign);
|
|
|
|
|
2019-09-25 19:40:11 +08:00
|
|
|
if (Section.Content || Section.Size) {
|
|
|
|
SHeader.sh_size = writeContent(OS, Section.Content, Section.Size);
|
2019-09-24 22:22:37 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const ELFYAML::StackSizeEntry &E : *Section.Entries) {
|
|
|
|
support::endian::write<uintX_t>(OS, E.Address, ELFT::TargetEndianness);
|
|
|
|
SHeader.sh_size += sizeof(uintX_t) + encodeULEB128(E.Size, OS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-01 17:45:59 +08:00
|
|
|
template <class ELFT>
|
|
|
|
void ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader,
|
|
|
|
const ELFYAML::HashSection &Section,
|
|
|
|
ContiguousBlobAccumulator &CBA) {
|
|
|
|
raw_ostream &OS =
|
|
|
|
CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign);
|
|
|
|
|
|
|
|
unsigned Link = 0;
|
2019-10-01 17:54:40 +08:00
|
|
|
if (Section.Link.empty() && SN2I.lookup(".dynsym", Link))
|
2019-10-01 17:45:59 +08:00
|
|
|
SHeader.sh_link = Link;
|
|
|
|
|
2019-10-02 21:52:37 +08:00
|
|
|
if (Section.Content || Section.Size) {
|
|
|
|
SHeader.sh_size = writeContent(OS, Section.Content, Section.Size);
|
2019-10-01 17:45:59 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
support::endian::write<uint32_t>(OS, Section.Bucket->size(),
|
|
|
|
ELFT::TargetEndianness);
|
|
|
|
support::endian::write<uint32_t>(OS, Section.Chain->size(),
|
|
|
|
ELFT::TargetEndianness);
|
|
|
|
for (uint32_t Val : *Section.Bucket)
|
|
|
|
support::endian::write<uint32_t>(OS, Val, ELFT::TargetEndianness);
|
|
|
|
for (uint32_t Val : *Section.Chain)
|
|
|
|
support::endian::write<uint32_t>(OS, Val, ELFT::TargetEndianness);
|
|
|
|
|
|
|
|
SHeader.sh_size = (2 + Section.Bucket->size() + Section.Chain->size()) * 4;
|
|
|
|
}
|
|
|
|
|
2019-02-21 20:21:43 +08:00
|
|
|
template <class ELFT>
|
2019-09-09 17:43:03 +08:00
|
|
|
void ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader,
|
2019-02-21 20:21:43 +08:00
|
|
|
const ELFYAML::VerdefSection &Section,
|
|
|
|
ContiguousBlobAccumulator &CBA) {
|
|
|
|
typedef typename ELFT::Verdef Elf_Verdef;
|
|
|
|
typedef typename ELFT::Verdaux Elf_Verdaux;
|
|
|
|
raw_ostream &OS =
|
|
|
|
CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign);
|
|
|
|
|
|
|
|
uint64_t AuxCnt = 0;
|
|
|
|
for (size_t I = 0; I < Section.Entries.size(); ++I) {
|
|
|
|
const ELFYAML::VerdefEntry &E = Section.Entries[I];
|
|
|
|
|
|
|
|
Elf_Verdef VerDef;
|
|
|
|
VerDef.vd_version = E.Version;
|
|
|
|
VerDef.vd_flags = E.Flags;
|
|
|
|
VerDef.vd_ndx = E.VersionNdx;
|
|
|
|
VerDef.vd_hash = E.Hash;
|
|
|
|
VerDef.vd_aux = sizeof(Elf_Verdef);
|
|
|
|
VerDef.vd_cnt = E.VerNames.size();
|
|
|
|
if (I == Section.Entries.size() - 1)
|
|
|
|
VerDef.vd_next = 0;
|
|
|
|
else
|
|
|
|
VerDef.vd_next =
|
|
|
|
sizeof(Elf_Verdef) + E.VerNames.size() * sizeof(Elf_Verdaux);
|
|
|
|
OS.write((const char *)&VerDef, sizeof(Elf_Verdef));
|
|
|
|
|
|
|
|
for (size_t J = 0; J < E.VerNames.size(); ++J, ++AuxCnt) {
|
|
|
|
Elf_Verdaux VernAux;
|
|
|
|
VernAux.vda_name = DotDynstr.getOffset(E.VerNames[J]);
|
|
|
|
if (J == E.VerNames.size() - 1)
|
|
|
|
VernAux.vda_next = 0;
|
|
|
|
else
|
|
|
|
VernAux.vda_next = sizeof(Elf_Verdaux);
|
|
|
|
OS.write((const char *)&VernAux, sizeof(Elf_Verdaux));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SHeader.sh_size = Section.Entries.size() * sizeof(Elf_Verdef) +
|
|
|
|
AuxCnt * sizeof(Elf_Verdaux);
|
|
|
|
SHeader.sh_info = Section.Info;
|
|
|
|
}
|
|
|
|
|
2019-02-19 22:53:48 +08:00
|
|
|
template <class ELFT>
|
2019-09-09 17:43:03 +08:00
|
|
|
void ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader,
|
2019-02-19 22:53:48 +08:00
|
|
|
const ELFYAML::VerneedSection &Section,
|
|
|
|
ContiguousBlobAccumulator &CBA) {
|
2019-04-26 20:15:32 +08:00
|
|
|
typedef typename ELFT::Verneed Elf_Verneed;
|
|
|
|
typedef typename ELFT::Vernaux Elf_Vernaux;
|
|
|
|
|
|
|
|
auto &OS = CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign);
|
|
|
|
|
|
|
|
uint64_t AuxCnt = 0;
|
|
|
|
for (size_t I = 0; I < Section.VerneedV.size(); ++I) {
|
|
|
|
const ELFYAML::VerneedEntry &VE = Section.VerneedV[I];
|
|
|
|
|
|
|
|
Elf_Verneed VerNeed;
|
|
|
|
VerNeed.vn_version = VE.Version;
|
|
|
|
VerNeed.vn_file = DotDynstr.getOffset(VE.File);
|
|
|
|
if (I == Section.VerneedV.size() - 1)
|
|
|
|
VerNeed.vn_next = 0;
|
|
|
|
else
|
|
|
|
VerNeed.vn_next =
|
|
|
|
sizeof(Elf_Verneed) + VE.AuxV.size() * sizeof(Elf_Vernaux);
|
|
|
|
VerNeed.vn_cnt = VE.AuxV.size();
|
|
|
|
VerNeed.vn_aux = sizeof(Elf_Verneed);
|
|
|
|
OS.write((const char *)&VerNeed, sizeof(Elf_Verneed));
|
|
|
|
|
|
|
|
for (size_t J = 0; J < VE.AuxV.size(); ++J, ++AuxCnt) {
|
|
|
|
const ELFYAML::VernauxEntry &VAuxE = VE.AuxV[J];
|
|
|
|
|
|
|
|
Elf_Vernaux VernAux;
|
|
|
|
VernAux.vna_hash = VAuxE.Hash;
|
|
|
|
VernAux.vna_flags = VAuxE.Flags;
|
|
|
|
VernAux.vna_other = VAuxE.Other;
|
|
|
|
VernAux.vna_name = DotDynstr.getOffset(VAuxE.Name);
|
|
|
|
if (J == VE.AuxV.size() - 1)
|
|
|
|
VernAux.vna_next = 0;
|
|
|
|
else
|
|
|
|
VernAux.vna_next = sizeof(Elf_Vernaux);
|
|
|
|
OS.write((const char *)&VernAux, sizeof(Elf_Vernaux));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SHeader.sh_size = Section.VerneedV.size() * sizeof(Elf_Verneed) +
|
|
|
|
AuxCnt * sizeof(Elf_Vernaux);
|
|
|
|
SHeader.sh_info = Section.Info;
|
2019-02-19 22:53:48 +08:00
|
|
|
}
|
|
|
|
|
2015-05-07 23:40:48 +08:00
|
|
|
template <class ELFT>
|
2019-09-09 17:43:03 +08:00
|
|
|
void ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader,
|
2015-05-07 23:40:48 +08:00
|
|
|
const ELFYAML::MipsABIFlags &Section,
|
|
|
|
ContiguousBlobAccumulator &CBA) {
|
2015-05-08 15:05:04 +08:00
|
|
|
assert(Section.Type == llvm::ELF::SHT_MIPS_ABIFLAGS &&
|
|
|
|
"Section type is not SHT_MIPS_ABIFLAGS");
|
2015-05-07 23:40:48 +08:00
|
|
|
|
|
|
|
object::Elf_Mips_ABIFlags<ELFT> Flags;
|
|
|
|
zero(Flags);
|
|
|
|
SHeader.sh_entsize = sizeof(Flags);
|
|
|
|
SHeader.sh_size = SHeader.sh_entsize;
|
|
|
|
|
2015-07-08 18:12:40 +08:00
|
|
|
auto &OS = CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign);
|
2015-05-07 23:40:48 +08:00
|
|
|
Flags.version = Section.Version;
|
|
|
|
Flags.isa_level = Section.ISALevel;
|
|
|
|
Flags.isa_rev = Section.ISARevision;
|
|
|
|
Flags.gpr_size = Section.GPRSize;
|
|
|
|
Flags.cpr1_size = Section.CPR1Size;
|
|
|
|
Flags.cpr2_size = Section.CPR2Size;
|
|
|
|
Flags.fp_abi = Section.FpABI;
|
|
|
|
Flags.isa_ext = Section.ISAExtension;
|
|
|
|
Flags.ases = Section.ASEs;
|
|
|
|
Flags.flags1 = Section.Flags1;
|
|
|
|
Flags.flags2 = Section.Flags2;
|
|
|
|
OS.write((const char *)&Flags, sizeof(Flags));
|
|
|
|
}
|
|
|
|
|
2019-02-09 19:34:28 +08:00
|
|
|
template <class ELFT>
|
2019-09-09 17:43:03 +08:00
|
|
|
void ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader,
|
2019-02-09 19:34:28 +08:00
|
|
|
const ELFYAML::DynamicSection &Section,
|
|
|
|
ContiguousBlobAccumulator &CBA) {
|
2019-02-20 21:58:43 +08:00
|
|
|
typedef typename ELFT::uint uintX_t;
|
|
|
|
|
2019-02-09 19:34:28 +08:00
|
|
|
assert(Section.Type == llvm::ELF::SHT_DYNAMIC &&
|
|
|
|
"Section type is not SHT_DYNAMIC");
|
|
|
|
|
2019-09-09 17:43:03 +08:00
|
|
|
if (!Section.Entries.empty() && Section.Content)
|
|
|
|
reportError("cannot specify both raw content and explicit entries "
|
|
|
|
"for dynamic section '" +
|
|
|
|
Section.Name + "'");
|
2019-02-25 19:02:24 +08:00
|
|
|
|
|
|
|
if (Section.Content)
|
|
|
|
SHeader.sh_size = Section.Content->binary_size();
|
|
|
|
else
|
|
|
|
SHeader.sh_size = 2 * sizeof(uintX_t) * Section.Entries.size();
|
2019-02-09 19:34:28 +08:00
|
|
|
if (Section.EntSize)
|
|
|
|
SHeader.sh_entsize = *Section.EntSize;
|
|
|
|
else
|
|
|
|
SHeader.sh_entsize = sizeof(Elf_Dyn);
|
|
|
|
|
[yaml2obj] Move core yaml2obj code into lib and include for use in unit tests
Reviewers: jhenderson, rupprecht, MaskRay, grimar, labath
Reviewed By: rupprecht
Subscribers: gribozavr, mgrang, seiya, mgorny, sbc100, hiraditya, aheejin, jakehehrlich, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D65255
llvm-svn: 368119
2019-08-07 10:44:49 +08:00
|
|
|
raw_ostream &OS =
|
|
|
|
CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign);
|
2019-02-09 19:34:28 +08:00
|
|
|
for (const ELFYAML::DynamicEntry &DE : Section.Entries) {
|
2019-02-20 21:58:43 +08:00
|
|
|
support::endian::write<uintX_t>(OS, DE.Tag, ELFT::TargetEndianness);
|
|
|
|
support::endian::write<uintX_t>(OS, DE.Val, ELFT::TargetEndianness);
|
2019-02-09 19:34:28 +08:00
|
|
|
}
|
2019-02-25 19:02:24 +08:00
|
|
|
if (Section.Content)
|
|
|
|
Section.Content->writeAsBinary(OS);
|
2019-02-09 19:34:28 +08:00
|
|
|
}
|
|
|
|
|
2019-10-03 22:52:33 +08:00
|
|
|
template <class ELFT>
|
|
|
|
void ELFState<ELFT>::writeSectionContent(Elf_Shdr &SHeader,
|
|
|
|
const ELFYAML::AddrsigSection &Section,
|
|
|
|
ContiguousBlobAccumulator &CBA) {
|
|
|
|
raw_ostream &OS =
|
|
|
|
CBA.getOSAndAlignedOffset(SHeader.sh_offset, SHeader.sh_addralign);
|
|
|
|
|
|
|
|
unsigned Link = 0;
|
|
|
|
if (Section.Link.empty() && SN2I.lookup(".symtab", Link))
|
|
|
|
SHeader.sh_link = Link;
|
|
|
|
|
2019-10-03 23:02:18 +08:00
|
|
|
if (Section.Content || Section.Size) {
|
|
|
|
SHeader.sh_size = writeContent(OS, Section.Content, Section.Size);
|
2019-10-03 22:52:33 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const ELFYAML::AddrsigSymbol &Sym : *Section.Symbols) {
|
|
|
|
uint64_t Val =
|
|
|
|
Sym.Name ? toSymbolIndex(*Sym.Name, Section.Name, /*IsDynamic=*/false)
|
|
|
|
: (uint32_t)*Sym.Index;
|
|
|
|
SHeader.sh_size += encodeULEB128(Val, OS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-09 17:43:03 +08:00
|
|
|
template <class ELFT> void ELFState<ELFT>::buildSectionIndex() {
|
2019-07-25 18:19:23 +08:00
|
|
|
for (unsigned I = 0, E = Doc.Sections.size(); I != E; ++I) {
|
2019-07-23 15:38:44 +08:00
|
|
|
StringRef Name = Doc.Sections[I]->Name;
|
2019-07-25 18:19:23 +08:00
|
|
|
if (Name.empty())
|
|
|
|
continue;
|
|
|
|
|
2019-09-25 20:09:30 +08:00
|
|
|
DotShStrtab.add(ELFYAML::dropUniqueSuffix(Name));
|
2019-09-09 17:43:03 +08:00
|
|
|
if (!SN2I.addName(Name, I))
|
|
|
|
reportError("repeated section name: '" + Name +
|
|
|
|
"' at YAML section number " + Twine(I));
|
2014-04-03 00:34:54 +08:00
|
|
|
}
|
2017-11-09 22:53:43 +08:00
|
|
|
|
|
|
|
DotShStrtab.finalize();
|
2014-04-03 00:34:54 +08:00
|
|
|
}
|
|
|
|
|
2019-09-09 17:43:03 +08:00
|
|
|
template <class ELFT> void ELFState<ELFT>::buildSymbolIndexes() {
|
|
|
|
auto Build = [this](ArrayRef<ELFYAML::Symbol> V, NameToIdxMap &Map) {
|
|
|
|
for (size_t I = 0, S = V.size(); I < S; ++I) {
|
|
|
|
const ELFYAML::Symbol &Sym = V[I];
|
|
|
|
if (!Sym.Name.empty() && !Map.addName(Sym.Name, I + 1))
|
|
|
|
reportError("repeated symbol name: '" + Sym.Name + "'");
|
|
|
|
}
|
|
|
|
};
|
2014-04-11 12:13:39 +08:00
|
|
|
|
2019-10-20 22:47:17 +08:00
|
|
|
if (Doc.Symbols)
|
|
|
|
Build(*Doc.Symbols, SymN2I);
|
2019-09-09 17:43:03 +08:00
|
|
|
Build(Doc.DynamicSymbols, DynSymN2I);
|
2019-08-22 20:39:56 +08:00
|
|
|
}
|
|
|
|
|
2019-02-19 22:53:48 +08:00
|
|
|
template <class ELFT> void ELFState<ELFT>::finalizeStrings() {
|
|
|
|
// Add the regular symbol names to .strtab section.
|
2019-10-20 22:47:17 +08:00
|
|
|
if (Doc.Symbols)
|
|
|
|
for (const ELFYAML::Symbol &Sym : *Doc.Symbols)
|
|
|
|
DotStrtab.add(ELFYAML::dropUniqueSuffix(Sym.Name));
|
2019-02-19 22:53:48 +08:00
|
|
|
DotStrtab.finalize();
|
|
|
|
|
|
|
|
// Add the dynamic symbol names to .dynstr section.
|
2019-04-03 22:53:42 +08:00
|
|
|
for (const ELFYAML::Symbol &Sym : Doc.DynamicSymbols)
|
2019-09-25 20:09:30 +08:00
|
|
|
DotDynstr.add(ELFYAML::dropUniqueSuffix(Sym.Name));
|
2019-02-19 22:53:48 +08:00
|
|
|
|
2019-02-21 20:21:43 +08:00
|
|
|
// SHT_GNU_verdef and SHT_GNU_verneed sections might also
|
|
|
|
// add strings to .dynstr section.
|
2019-02-19 22:53:48 +08:00
|
|
|
for (const std::unique_ptr<ELFYAML::Section> &Sec : Doc.Sections) {
|
2019-02-21 20:21:43 +08:00
|
|
|
if (auto VerNeed = dyn_cast<ELFYAML::VerneedSection>(Sec.get())) {
|
|
|
|
for (const ELFYAML::VerneedEntry &VE : VerNeed->VerneedV) {
|
|
|
|
DotDynstr.add(VE.File);
|
|
|
|
for (const ELFYAML::VernauxEntry &Aux : VE.AuxV)
|
|
|
|
DotDynstr.add(Aux.Name);
|
|
|
|
}
|
|
|
|
} else if (auto VerDef = dyn_cast<ELFYAML::VerdefSection>(Sec.get())) {
|
|
|
|
for (const ELFYAML::VerdefEntry &E : VerDef->Entries)
|
|
|
|
for (StringRef Name : E.VerNames)
|
|
|
|
DotDynstr.add(Name);
|
2019-02-19 22:53:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DotDynstr.finalize();
|
|
|
|
}
|
|
|
|
|
2014-04-03 00:34:54 +08:00
|
|
|
template <class ELFT>
|
2019-09-14 00:00:16 +08:00
|
|
|
bool ELFState<ELFT>::writeELF(raw_ostream &OS, ELFYAML::Object &Doc,
|
|
|
|
yaml::ErrorHandler EH) {
|
|
|
|
ELFState<ELFT> State(Doc, EH);
|
2019-02-19 22:53:48 +08:00
|
|
|
|
|
|
|
// Finalize .strtab and .dynstr sections. We do that early because want to
|
|
|
|
// finalize the string table builders before writing the content of the
|
|
|
|
// sections that might want to use them.
|
|
|
|
State.finalizeStrings();
|
|
|
|
|
2019-09-09 17:43:03 +08:00
|
|
|
State.buildSectionIndex();
|
|
|
|
State.buildSymbolIndexes();
|
2014-04-11 12:13:39 +08:00
|
|
|
|
2017-07-20 04:38:46 +08:00
|
|
|
std::vector<Elf_Phdr> PHeaders;
|
|
|
|
State.initProgramHeaders(PHeaders);
|
2013-06-14 06:19:48 +08:00
|
|
|
|
2013-06-21 03:11:44 +08:00
|
|
|
// XXX: This offset is tightly coupled with the order that we write
|
|
|
|
// things to `OS`.
|
2019-09-05 22:25:57 +08:00
|
|
|
const size_t SectionContentBeginOffset =
|
|
|
|
sizeof(Elf_Ehdr) + sizeof(Elf_Phdr) * Doc.ProgramHeaders.size();
|
2013-06-21 03:11:44 +08:00
|
|
|
ContiguousBlobAccumulator CBA(SectionContentBeginOffset);
|
2013-06-21 04:59:34 +08:00
|
|
|
|
2013-06-14 06:19:48 +08:00
|
|
|
std::vector<Elf_Shdr> SHeaders;
|
2019-09-09 17:43:03 +08:00
|
|
|
State.initSectionHeaders(SHeaders, CBA);
|
2013-06-11 07:44:15 +08:00
|
|
|
|
2017-07-20 04:38:46 +08:00
|
|
|
// Now we can decide segment offsets
|
|
|
|
State.setProgramHeaderLayout(PHeaders, SHeaders);
|
|
|
|
|
2019-09-09 17:43:03 +08:00
|
|
|
if (State.HasError)
|
2019-09-13 17:12:38 +08:00
|
|
|
return false;
|
2019-09-09 17:43:03 +08:00
|
|
|
|
2019-09-05 22:25:57 +08:00
|
|
|
State.writeELFHeader(CBA, OS);
|
2017-07-20 04:38:46 +08:00
|
|
|
writeArrayData(OS, makeArrayRef(PHeaders));
|
2013-06-14 06:20:01 +08:00
|
|
|
CBA.writeBlobToStream(OS);
|
2019-09-05 22:25:57 +08:00
|
|
|
writeArrayData(OS, makeArrayRef(SHeaders));
|
2019-09-13 17:12:38 +08:00
|
|
|
return true;
|
2013-06-11 07:44:15 +08:00
|
|
|
}
|
|
|
|
|
[yaml2obj] Move core yaml2obj code into lib and include for use in unit tests
Reviewers: jhenderson, rupprecht, MaskRay, grimar, labath
Reviewed By: rupprecht
Subscribers: gribozavr, mgrang, seiya, mgorny, sbc100, hiraditya, aheejin, jakehehrlich, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D65255
llvm-svn: 368119
2019-08-07 10:44:49 +08:00
|
|
|
namespace llvm {
|
|
|
|
namespace yaml {
|
|
|
|
|
2019-09-14 00:00:16 +08:00
|
|
|
bool yaml2elf(llvm::ELFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH) {
|
2019-04-29 20:25:01 +08:00
|
|
|
bool IsLE = Doc.Header.Data == ELFYAML::ELF_ELFDATA(ELF::ELFDATA2LSB);
|
|
|
|
bool Is64Bit = Doc.Header.Class == ELFYAML::ELF_ELFCLASS(ELF::ELFCLASS64);
|
|
|
|
if (Is64Bit) {
|
|
|
|
if (IsLE)
|
2019-09-14 00:00:16 +08:00
|
|
|
return ELFState<object::ELF64LE>::writeELF(Out, Doc, EH);
|
|
|
|
return ELFState<object::ELF64BE>::writeELF(Out, Doc, EH);
|
2013-06-11 07:44:15 +08:00
|
|
|
}
|
2019-04-29 20:25:01 +08:00
|
|
|
if (IsLE)
|
2019-09-14 00:00:16 +08:00
|
|
|
return ELFState<object::ELF32LE>::writeELF(Out, Doc, EH);
|
|
|
|
return ELFState<object::ELF32BE>::writeELF(Out, Doc, EH);
|
2013-06-11 07:44:15 +08:00
|
|
|
}
|
[yaml2obj] Move core yaml2obj code into lib and include for use in unit tests
Reviewers: jhenderson, rupprecht, MaskRay, grimar, labath
Reviewed By: rupprecht
Subscribers: gribozavr, mgrang, seiya, mgorny, sbc100, hiraditya, aheejin, jakehehrlich, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D65255
llvm-svn: 368119
2019-08-07 10:44:49 +08:00
|
|
|
|
|
|
|
} // namespace yaml
|
|
|
|
} // namespace llvm
|