2015-07-25 05:03:07 +08:00
|
|
|
//===- InputFiles.cpp -----------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Linker
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "InputFiles.h"
|
|
|
|
#include "Chunks.h"
|
2015-08-06 23:08:23 +08:00
|
|
|
#include "Error.h"
|
2015-07-25 05:03:07 +08:00
|
|
|
#include "Symbols.h"
|
|
|
|
#include "llvm/ADT/STLExtras.h"
|
|
|
|
|
|
|
|
using namespace llvm::ELF;
|
2015-09-04 04:03:54 +08:00
|
|
|
using namespace llvm::object;
|
2015-07-25 05:03:07 +08:00
|
|
|
|
|
|
|
using namespace lld;
|
|
|
|
using namespace lld::elf2;
|
|
|
|
|
2015-09-04 04:03:54 +08:00
|
|
|
template <class ELFT> static uint16_t getEMachine(const ELFFileBase &B) {
|
|
|
|
bool IsShared = isa<SharedFileBase>(B);
|
|
|
|
if (IsShared)
|
|
|
|
return cast<SharedFile<ELFT>>(B).getEMachine();
|
|
|
|
return cast<ObjectFile<ELFT>>(B).getEMachine();
|
2015-08-05 20:03:34 +08:00
|
|
|
}
|
|
|
|
|
2015-09-04 04:03:54 +08:00
|
|
|
static uint16_t getEMachine(const ELFFileBase &B) {
|
|
|
|
ELFKind K = B.getELFKind();
|
|
|
|
switch (K) {
|
|
|
|
case ELF32BEKind:
|
|
|
|
return getEMachine<ELF32BE>(B);
|
|
|
|
case ELF32LEKind:
|
|
|
|
return getEMachine<ELF32LE>(B);
|
|
|
|
case ELF64BEKind:
|
|
|
|
return getEMachine<ELF64BE>(B);
|
|
|
|
case ELF64LEKind:
|
|
|
|
return getEMachine<ELF64LE>(B);
|
|
|
|
}
|
2015-09-04 06:25:11 +08:00
|
|
|
llvm_unreachable("Invalid kind");
|
2015-09-04 04:03:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ELFFileBase::isCompatibleWith(const ELFFileBase &Other) const {
|
|
|
|
return getELFKind() == Other.getELFKind() &&
|
|
|
|
getEMachine(*this) == getEMachine(Other);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class ELFT> void ELFData<ELFT>::openELF(MemoryBufferRef MB) {
|
2015-07-25 05:03:07 +08:00
|
|
|
// Parse a memory buffer as a ELF file.
|
|
|
|
std::error_code EC;
|
|
|
|
ELFObj = llvm::make_unique<ELFFile<ELFT>>(MB.getBuffer(), EC);
|
|
|
|
error(EC);
|
2015-09-04 04:03:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class ELFT> void elf2::ObjectFile<ELFT>::parse() {
|
|
|
|
this->openELF(MB);
|
2015-07-25 05:03:07 +08:00
|
|
|
|
|
|
|
// Read section and symbol tables.
|
|
|
|
initializeChunks();
|
|
|
|
initializeSymbols();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class ELFT> void elf2::ObjectFile<ELFT>::initializeChunks() {
|
2015-09-04 04:03:54 +08:00
|
|
|
uint64_t Size = this->ELFObj->getNumSections();
|
2015-08-25 04:06:32 +08:00
|
|
|
Chunks.resize(Size);
|
|
|
|
unsigned I = 0;
|
2015-09-04 04:03:54 +08:00
|
|
|
for (const Elf_Shdr &Sec : this->ELFObj->sections()) {
|
2015-08-13 22:45:44 +08:00
|
|
|
switch (Sec.sh_type) {
|
|
|
|
case SHT_SYMTAB:
|
2015-08-10 23:12:17 +08:00
|
|
|
Symtab = &Sec;
|
2015-08-13 22:45:44 +08:00
|
|
|
break;
|
2015-08-25 05:43:25 +08:00
|
|
|
case SHT_SYMTAB_SHNDX: {
|
2015-09-04 04:03:54 +08:00
|
|
|
ErrorOr<ArrayRef<Elf_Word>> ErrorOrTable =
|
|
|
|
this->ELFObj->getSHNDXTable(Sec);
|
2015-08-25 05:43:25 +08:00
|
|
|
error(ErrorOrTable);
|
|
|
|
SymtabSHNDX = *ErrorOrTable;
|
|
|
|
break;
|
|
|
|
}
|
2015-08-13 22:45:44 +08:00
|
|
|
case SHT_STRTAB:
|
|
|
|
case SHT_NULL:
|
2015-08-28 07:15:56 +08:00
|
|
|
break;
|
2015-08-13 22:45:44 +08:00
|
|
|
case SHT_RELA:
|
2015-08-28 07:15:56 +08:00
|
|
|
case SHT_REL: {
|
|
|
|
uint32_t RelocatedSectionIndex = Sec.sh_info;
|
|
|
|
if (RelocatedSectionIndex >= Size)
|
|
|
|
error("Invalid relocated section index");
|
|
|
|
SectionChunk<ELFT> *RelocatedSection = Chunks[RelocatedSectionIndex];
|
|
|
|
if (!RelocatedSection)
|
|
|
|
error("Unsupported relocation reference");
|
|
|
|
RelocatedSection->RelocSections.push_back(&Sec);
|
2015-08-13 22:45:44 +08:00
|
|
|
break;
|
2015-08-28 07:15:56 +08:00
|
|
|
}
|
2015-08-13 22:45:44 +08:00
|
|
|
default:
|
2015-08-28 07:15:56 +08:00
|
|
|
Chunks[I] = new (Alloc) SectionChunk<ELFT>(this, &Sec);
|
2015-08-13 22:45:44 +08:00
|
|
|
break;
|
2015-07-25 05:03:07 +08:00
|
|
|
}
|
2015-08-25 04:06:32 +08:00
|
|
|
++I;
|
2015-07-25 05:03:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class ELFT> void elf2::ObjectFile<ELFT>::initializeSymbols() {
|
|
|
|
ErrorOr<StringRef> StringTableOrErr =
|
2015-09-04 04:03:54 +08:00
|
|
|
this->ELFObj->getStringTableForSymtab(*Symtab);
|
2015-07-25 05:03:07 +08:00
|
|
|
error(StringTableOrErr.getError());
|
|
|
|
StringRef StringTable = *StringTableOrErr;
|
|
|
|
|
2015-09-04 04:03:54 +08:00
|
|
|
Elf_Sym_Range Syms = this->ELFObj->symbols(Symtab);
|
2015-08-12 04:06:51 +08:00
|
|
|
uint32_t NumSymbols = std::distance(Syms.begin(), Syms.end());
|
2015-08-12 00:30:34 +08:00
|
|
|
uint32_t FirstNonLocal = Symtab->sh_info;
|
|
|
|
if (FirstNonLocal > NumSymbols)
|
|
|
|
error("Invalid sh_info in symbol table");
|
|
|
|
Syms = llvm::make_range(Syms.begin() + FirstNonLocal, Syms.end());
|
2015-09-04 04:25:54 +08:00
|
|
|
SymbolBodies.reserve(NumSymbols - FirstNonLocal);
|
2015-08-04 22:00:56 +08:00
|
|
|
for (const Elf_Sym &Sym : Syms)
|
|
|
|
SymbolBodies.push_back(createSymbolBody(StringTable, &Sym));
|
2015-07-25 05:03:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class ELFT>
|
|
|
|
SymbolBody *elf2::ObjectFile<ELFT>::createSymbolBody(StringRef StringTable,
|
|
|
|
const Elf_Sym *Sym) {
|
|
|
|
ErrorOr<StringRef> NameOrErr = Sym->getName(StringTable);
|
|
|
|
error(NameOrErr.getError());
|
|
|
|
StringRef Name = *NameOrErr;
|
2015-08-25 05:43:25 +08:00
|
|
|
|
|
|
|
uint32_t SecIndex = Sym->st_shndx;
|
2015-08-29 05:26:51 +08:00
|
|
|
switch (SecIndex) {
|
|
|
|
case SHN_ABS:
|
2015-08-27 20:40:06 +08:00
|
|
|
return new (Alloc) DefinedAbsolute<ELFT>(Name, *Sym);
|
2015-08-29 05:26:51 +08:00
|
|
|
case SHN_UNDEF:
|
|
|
|
return new (Alloc) Undefined<ELFT>(Name, *Sym);
|
|
|
|
case SHN_COMMON:
|
|
|
|
return new (Alloc) DefinedCommon<ELFT>(Name, *Sym);
|
|
|
|
case SHN_XINDEX:
|
2015-09-04 04:03:54 +08:00
|
|
|
SecIndex =
|
|
|
|
this->ELFObj->getExtendedSymbolTableIndex(Sym, Symtab, SymtabSHNDX);
|
2015-08-29 05:26:51 +08:00
|
|
|
break;
|
|
|
|
}
|
2015-08-25 05:43:25 +08:00
|
|
|
|
2015-08-25 06:00:25 +08:00
|
|
|
if (SecIndex >= Chunks.size() ||
|
|
|
|
(SecIndex != 0 && !Chunks[SecIndex]))
|
|
|
|
error("Invalid section index");
|
|
|
|
|
2015-08-12 01:33:02 +08:00
|
|
|
switch (Sym->getBinding()) {
|
|
|
|
default:
|
|
|
|
error("unexpected binding");
|
|
|
|
case STB_GLOBAL:
|
2015-08-29 04:19:34 +08:00
|
|
|
case STB_WEAK:
|
2015-08-25 04:06:32 +08:00
|
|
|
return new (Alloc) DefinedRegular<ELFT>(Name, *Sym, *Chunks[SecIndex]);
|
2015-08-12 01:33:02 +08:00
|
|
|
}
|
2015-07-25 05:03:07 +08:00
|
|
|
}
|
|
|
|
|
2015-09-04 04:03:54 +08:00
|
|
|
template <class ELFT> void SharedFile<ELFT>::parse() { this->openELF(MB); }
|
|
|
|
|
2015-07-25 05:03:07 +08:00
|
|
|
namespace lld {
|
|
|
|
namespace elf2 {
|
|
|
|
template class elf2::ObjectFile<llvm::object::ELF32LE>;
|
|
|
|
template class elf2::ObjectFile<llvm::object::ELF32BE>;
|
|
|
|
template class elf2::ObjectFile<llvm::object::ELF64LE>;
|
|
|
|
template class elf2::ObjectFile<llvm::object::ELF64BE>;
|
2015-09-04 04:03:54 +08:00
|
|
|
|
|
|
|
template class elf2::SharedFile<llvm::object::ELF32LE>;
|
|
|
|
template class elf2::SharedFile<llvm::object::ELF32BE>;
|
|
|
|
template class elf2::SharedFile<llvm::object::ELF64LE>;
|
|
|
|
template class elf2::SharedFile<llvm::object::ELF64BE>;
|
2015-07-25 05:03:07 +08:00
|
|
|
}
|
|
|
|
}
|