2015-08-14 22:12:54 +08:00
|
|
|
//===- InputFiles.h ---------------------------------------------*- C++ -*-===//
|
2015-07-25 05:03:07 +08:00
|
|
|
//
|
|
|
|
// The LLVM Linker
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLD_ELF_INPUT_FILES_H
|
|
|
|
#define LLD_ELF_INPUT_FILES_H
|
|
|
|
|
2015-08-05 21:55:34 +08:00
|
|
|
#include "Chunks.h"
|
2015-09-05 06:28:10 +08:00
|
|
|
#include "Error.h"
|
2015-08-28 10:40:04 +08:00
|
|
|
#include "Symbols.h"
|
|
|
|
|
2015-07-25 05:03:07 +08:00
|
|
|
#include "lld/Core/LLVM.h"
|
2015-09-05 06:28:10 +08:00
|
|
|
#include "llvm/ADT/DenseSet.h"
|
|
|
|
#include "llvm/ADT/STLExtras.h"
|
|
|
|
#include "llvm/Object/Archive.h"
|
2015-07-25 05:03:07 +08:00
|
|
|
#include "llvm/Object/ELF.h"
|
|
|
|
|
|
|
|
namespace lld {
|
|
|
|
namespace elf2 {
|
2015-09-05 06:28:10 +08:00
|
|
|
|
|
|
|
using llvm::object::Archive;
|
|
|
|
|
|
|
|
class Lazy;
|
2015-07-25 05:03:07 +08:00
|
|
|
class SymbolBody;
|
|
|
|
|
|
|
|
// The root class of input files.
|
|
|
|
class InputFile {
|
|
|
|
public:
|
2015-09-05 06:28:10 +08:00
|
|
|
enum Kind { ObjectKind, SharedKind, ArchiveKind };
|
2015-07-25 05:03:07 +08:00
|
|
|
Kind kind() const { return FileKind; }
|
|
|
|
virtual ~InputFile() {}
|
|
|
|
|
|
|
|
// Reads a file (constructors don't do that).
|
|
|
|
virtual void parse() = 0;
|
|
|
|
|
2015-08-05 20:03:34 +08:00
|
|
|
StringRef getName() const { return MB.getBufferIdentifier(); }
|
|
|
|
|
2015-07-25 05:03:07 +08:00
|
|
|
protected:
|
|
|
|
explicit InputFile(Kind K, MemoryBufferRef M) : MB(M), FileKind(K) {}
|
|
|
|
MemoryBufferRef MB;
|
|
|
|
|
|
|
|
private:
|
|
|
|
const Kind FileKind;
|
|
|
|
};
|
|
|
|
|
2015-09-03 04:43:43 +08:00
|
|
|
enum ELFKind { ELF32LEKind, ELF32BEKind, ELF64LEKind, ELF64BEKind };
|
|
|
|
|
2015-09-04 04:03:54 +08:00
|
|
|
class ELFFileBase : public InputFile {
|
|
|
|
public:
|
|
|
|
explicit ELFFileBase(Kind K, ELFKind EKind, MemoryBufferRef M)
|
|
|
|
: InputFile(K, M), EKind(EKind) {}
|
|
|
|
static bool classof(const InputFile *F) {
|
|
|
|
Kind K = F->kind();
|
|
|
|
return K == ObjectKind || K == SharedKind;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isCompatibleWith(const ELFFileBase &Other) const;
|
|
|
|
ELFKind getELFKind() const { return EKind; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
const ELFKind EKind;
|
|
|
|
};
|
|
|
|
|
2015-07-25 05:03:07 +08:00
|
|
|
// .o file.
|
2015-09-04 04:03:54 +08:00
|
|
|
class ObjectFileBase : public ELFFileBase {
|
2015-08-04 22:29:01 +08:00
|
|
|
public:
|
2015-09-03 04:43:43 +08:00
|
|
|
explicit ObjectFileBase(ELFKind EKind, MemoryBufferRef M)
|
2015-09-04 04:03:54 +08:00
|
|
|
: ELFFileBase(ObjectKind, EKind, M) {}
|
2015-09-03 04:43:43 +08:00
|
|
|
static bool classof(const InputFile *F) { return F->kind() == ObjectKind; }
|
2015-08-04 22:29:01 +08:00
|
|
|
|
2015-09-03 07:01:37 +08:00
|
|
|
ArrayRef<SymbolBody *> getSymbols() { return SymbolBodies; }
|
2015-08-04 22:29:01 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
// List of all symbols referenced or defined by this file.
|
|
|
|
std::vector<SymbolBody *> SymbolBodies;
|
|
|
|
|
|
|
|
llvm::BumpPtrAllocator Alloc;
|
|
|
|
};
|
|
|
|
|
2015-09-04 04:03:54 +08:00
|
|
|
template <class ELFT> static ELFKind getStaticELFKind() {
|
|
|
|
if (!ELFT::Is64Bits) {
|
|
|
|
if (ELFT::TargetEndianness == llvm::support::little)
|
|
|
|
return ELF32LEKind;
|
|
|
|
return ELF32BEKind;
|
|
|
|
}
|
|
|
|
if (ELFT::TargetEndianness == llvm::support::little)
|
|
|
|
return ELF64LEKind;
|
|
|
|
return ELF64BEKind;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class ELFT> class ELFData {
|
|
|
|
public:
|
2015-09-08 23:50:05 +08:00
|
|
|
typedef typename llvm::object::ELFFile<ELFT>::Elf_Shdr Elf_Shdr;
|
|
|
|
typedef typename llvm::object::ELFFile<ELFT>::Elf_Sym_Range Elf_Sym_Range;
|
|
|
|
|
2015-09-04 04:03:54 +08:00
|
|
|
llvm::object::ELFFile<ELFT> *getObj() const { return ELFObj.get(); }
|
|
|
|
|
|
|
|
uint16_t getEMachine() const { return getObj()->getHeader()->e_machine; }
|
|
|
|
|
2015-09-17 04:45:57 +08:00
|
|
|
StringRef getStringTable() const { return StringTable; }
|
|
|
|
|
2015-09-04 04:03:54 +08:00
|
|
|
protected:
|
|
|
|
std::unique_ptr<llvm::object::ELFFile<ELFT>> ELFObj;
|
2015-09-08 23:50:05 +08:00
|
|
|
const Elf_Shdr *Symtab = nullptr;
|
|
|
|
StringRef StringTable;
|
|
|
|
Elf_Sym_Range getNonLocalSymbols();
|
2015-09-17 04:45:57 +08:00
|
|
|
Elf_Sym_Range getSymbolsHelper(bool);
|
2015-09-04 04:03:54 +08:00
|
|
|
|
|
|
|
void openELF(MemoryBufferRef MB);
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class ELFT>
|
|
|
|
class ObjectFile : public ObjectFileBase, public ELFData<ELFT> {
|
2015-07-25 05:03:07 +08:00
|
|
|
typedef typename llvm::object::ELFFile<ELFT>::Elf_Sym Elf_Sym;
|
|
|
|
typedef typename llvm::object::ELFFile<ELFT>::Elf_Shdr Elf_Shdr;
|
|
|
|
typedef typename llvm::object::ELFFile<ELFT>::Elf_Sym_Range Elf_Sym_Range;
|
2015-08-25 05:43:25 +08:00
|
|
|
typedef typename llvm::object::ELFFile<ELFT>::Elf_Word Elf_Word;
|
2015-07-25 05:03:07 +08:00
|
|
|
|
|
|
|
public:
|
2015-08-05 20:03:34 +08:00
|
|
|
|
2015-09-03 04:43:43 +08:00
|
|
|
static bool classof(const InputFile *F) {
|
|
|
|
return F->kind() == ObjectKind &&
|
2015-09-04 04:03:54 +08:00
|
|
|
cast<ELFFileBase>(F)->getELFKind() == getStaticELFKind<ELFT>();
|
2015-09-03 04:43:43 +08:00
|
|
|
}
|
2015-08-05 20:03:34 +08:00
|
|
|
|
2015-09-03 04:43:43 +08:00
|
|
|
explicit ObjectFile(MemoryBufferRef M)
|
2015-09-04 04:03:54 +08:00
|
|
|
: ObjectFileBase(getStaticELFKind<ELFT>(), M) {}
|
2015-07-25 05:03:07 +08:00
|
|
|
void parse() override;
|
|
|
|
|
2015-08-05 21:55:34 +08:00
|
|
|
ArrayRef<SectionChunk<ELFT> *> getChunks() { return Chunks; }
|
|
|
|
|
2015-09-16 23:54:15 +08:00
|
|
|
const SymbolBody *getSymbolBody(uint32_t SymbolIndex) const {
|
2015-09-08 23:50:05 +08:00
|
|
|
uint32_t FirstNonLocal = this->Symtab->sh_info;
|
2015-08-28 07:15:56 +08:00
|
|
|
if (SymbolIndex < FirstNonLocal)
|
|
|
|
return nullptr;
|
|
|
|
return SymbolBodies[SymbolIndex - FirstNonLocal]->getReplacement();
|
|
|
|
}
|
|
|
|
|
2015-09-17 04:45:57 +08:00
|
|
|
Elf_Sym_Range getLocalSymbols();
|
|
|
|
|
2015-07-25 05:03:07 +08:00
|
|
|
private:
|
|
|
|
void initializeChunks();
|
|
|
|
void initializeSymbols();
|
|
|
|
|
|
|
|
SymbolBody *createSymbolBody(StringRef StringTable, const Elf_Sym *Sym);
|
|
|
|
|
2015-08-05 21:55:34 +08:00
|
|
|
// List of all chunks defined by this file.
|
|
|
|
std::vector<SectionChunk<ELFT> *> Chunks;
|
2015-08-10 23:12:17 +08:00
|
|
|
|
2015-08-25 05:43:25 +08:00
|
|
|
ArrayRef<Elf_Word> SymtabSHNDX;
|
2015-07-25 05:03:07 +08:00
|
|
|
};
|
|
|
|
|
2015-09-05 06:28:10 +08:00
|
|
|
class ArchiveFile : public InputFile {
|
|
|
|
public:
|
|
|
|
explicit ArchiveFile(MemoryBufferRef M) : InputFile(ArchiveKind, M) {}
|
|
|
|
static bool classof(const InputFile *F) { return F->kind() == ArchiveKind; }
|
|
|
|
void parse() override;
|
|
|
|
|
|
|
|
// Returns a memory buffer for a given symbol. An empty memory buffer
|
|
|
|
// is returned if we have already returned the same memory buffer.
|
|
|
|
// (So that we don't instantiate same members more than once.)
|
|
|
|
MemoryBufferRef getMember(const Archive::Symbol *Sym);
|
|
|
|
|
|
|
|
llvm::MutableArrayRef<Lazy> getLazySymbols() { return LazySymbols; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::unique_ptr<Archive> File;
|
|
|
|
std::vector<Lazy> LazySymbols;
|
|
|
|
llvm::DenseSet<uint64_t> Seen;
|
|
|
|
};
|
|
|
|
|
2015-09-04 04:03:54 +08:00
|
|
|
// .so file.
|
|
|
|
class SharedFileBase : public ELFFileBase {
|
|
|
|
public:
|
|
|
|
explicit SharedFileBase(ELFKind EKind, MemoryBufferRef M)
|
|
|
|
: ELFFileBase(SharedKind, EKind, M) {}
|
|
|
|
static bool classof(const InputFile *F) { return F->kind() == SharedKind; }
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class ELFT>
|
|
|
|
class SharedFile : public SharedFileBase, public ELFData<ELFT> {
|
2015-09-08 23:50:05 +08:00
|
|
|
typedef typename llvm::object::ELFFile<ELFT>::Elf_Shdr Elf_Shdr;
|
|
|
|
typedef typename llvm::object::ELFFile<ELFT>::Elf_Sym Elf_Sym;
|
|
|
|
typedef typename llvm::object::ELFFile<ELFT>::Elf_Sym_Range Elf_Sym_Range;
|
|
|
|
|
|
|
|
std::vector<SharedSymbol<ELFT>> SymbolBodies;
|
|
|
|
|
2015-09-04 04:03:54 +08:00
|
|
|
public:
|
2015-09-08 23:50:05 +08:00
|
|
|
llvm::MutableArrayRef<SharedSymbol<ELFT>> getSharedSymbols() {
|
|
|
|
return SymbolBodies;
|
|
|
|
}
|
|
|
|
|
2015-09-04 04:03:54 +08:00
|
|
|
static bool classof(const InputFile *F) {
|
|
|
|
return F->kind() == SharedKind &&
|
|
|
|
cast<ELFFileBase>(F)->getELFKind() == getStaticELFKind<ELFT>();
|
|
|
|
}
|
|
|
|
|
|
|
|
explicit SharedFile(MemoryBufferRef M)
|
|
|
|
: SharedFileBase(getStaticELFKind<ELFT>(), M) {}
|
|
|
|
|
|
|
|
void parse() override;
|
|
|
|
};
|
|
|
|
|
2015-09-05 06:28:10 +08:00
|
|
|
template <template <class> class T>
|
|
|
|
std::unique_ptr<ELFFileBase> createELFFile(MemoryBufferRef MB) {
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
std::pair<unsigned char, unsigned char> Type =
|
|
|
|
object::getElfArchType(MB.getBuffer());
|
|
|
|
if (Type.second != ELF::ELFDATA2LSB && Type.second != ELF::ELFDATA2MSB)
|
|
|
|
error("Invalid data encoding");
|
|
|
|
|
|
|
|
if (Type.first == ELF::ELFCLASS32) {
|
|
|
|
if (Type.second == ELF::ELFDATA2LSB)
|
|
|
|
return make_unique<T<object::ELF32LE>>(MB);
|
|
|
|
return make_unique<T<object::ELF32BE>>(MB);
|
|
|
|
}
|
|
|
|
if (Type.first == ELF::ELFCLASS64) {
|
|
|
|
if (Type.second == ELF::ELFDATA2LSB)
|
|
|
|
return make_unique<T<object::ELF64LE>>(MB);
|
|
|
|
return make_unique<T<object::ELF64BE>>(MB);
|
|
|
|
}
|
|
|
|
error("Invalid file class");
|
|
|
|
}
|
|
|
|
|
2015-07-25 05:03:07 +08:00
|
|
|
} // namespace elf2
|
|
|
|
} // namespace lld
|
|
|
|
|
|
|
|
#endif
|