forked from OSchip/llvm-project
170 lines
5.0 KiB
C++
170 lines
5.0 KiB
C++
//===- SyntheticSections.h -------------------------------------*- C++ -*-===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLD_MACHO_SYNTHETIC_SECTIONS_H
|
|
#define LLD_MACHO_SYNTHETIC_SECTIONS_H
|
|
|
|
#include "ExportTrie.h"
|
|
#include "InputSection.h"
|
|
#include "Target.h"
|
|
#include "llvm/ADT/SetVector.h"
|
|
|
|
using namespace llvm::MachO;
|
|
|
|
namespace lld {
|
|
namespace macho {
|
|
|
|
namespace section_names {
|
|
|
|
constexpr const char *pageZero = "__pagezero";
|
|
constexpr const char *header = "__mach_header";
|
|
constexpr const char *binding = "__binding";
|
|
constexpr const char *export_ = "__export";
|
|
constexpr const char *symbolTable = "__symbol_table";
|
|
constexpr const char *stringTable = "__string_table";
|
|
|
|
} // namespace section_names
|
|
|
|
class DylibSymbol;
|
|
class LoadCommand;
|
|
|
|
// The header of the Mach-O file, which must have a file offset of zero.
|
|
class MachHeaderSection : public InputSection {
|
|
public:
|
|
MachHeaderSection();
|
|
void addLoadCommand(LoadCommand *);
|
|
bool isHidden() const override { return true; }
|
|
size_t getSize() const override;
|
|
void writeTo(uint8_t *buf) override;
|
|
|
|
private:
|
|
std::vector<LoadCommand *> loadCommands;
|
|
uint32_t sizeOfCmds = 0;
|
|
};
|
|
|
|
// A hidden section that exists solely for the purpose of creating the
|
|
// __PAGEZERO segment, which is used to catch null pointer dereferences.
|
|
class PageZeroSection : public InputSection {
|
|
public:
|
|
PageZeroSection();
|
|
bool isHidden() const override { return true; }
|
|
size_t getSize() const override { return ImageBase; }
|
|
uint64_t getFileSize() const override { return 0; }
|
|
};
|
|
|
|
// This section will be populated by dyld with addresses to non-lazily-loaded
|
|
// dylib symbols.
|
|
class GotSection : public InputSection {
|
|
public:
|
|
GotSection();
|
|
|
|
void addEntry(DylibSymbol &sym);
|
|
const llvm::SetVector<const DylibSymbol *> &getEntries() const {
|
|
return entries;
|
|
}
|
|
|
|
size_t getSize() const override { return entries.size() * WordSize; }
|
|
|
|
bool isNeeded() const override { return !entries.empty(); }
|
|
|
|
void writeTo(uint8_t *buf) override {
|
|
// Nothing to write, GOT contains all zeros at link time; it's populated at
|
|
// runtime by dyld.
|
|
}
|
|
|
|
private:
|
|
llvm::SetVector<const DylibSymbol *> entries;
|
|
};
|
|
|
|
// Stores bind opcodes for telling dyld which symbols to load non-lazily.
|
|
class BindingSection : public InputSection {
|
|
public:
|
|
BindingSection();
|
|
void finalizeContents();
|
|
size_t getSize() const override { return contents.size(); }
|
|
// Like other sections in __LINKEDIT, the binding section is special: its
|
|
// offsets are recorded in the LC_DYLD_INFO_ONLY load command, instead of in
|
|
// section headers.
|
|
bool isHidden() const override { return true; }
|
|
bool isNeeded() const override;
|
|
void writeTo(uint8_t *buf) override;
|
|
|
|
SmallVector<char, 128> contents;
|
|
};
|
|
|
|
// Stores a trie that describes the set of exported symbols.
|
|
class ExportSection : public InputSection {
|
|
public:
|
|
ExportSection();
|
|
void finalizeContents();
|
|
size_t getSize() const override { return size; }
|
|
// Like other sections in __LINKEDIT, the export section is special: its
|
|
// offsets are recorded in the LC_DYLD_INFO_ONLY load command, instead of in
|
|
// section headers.
|
|
bool isHidden() const override { return true; }
|
|
void writeTo(uint8_t *buf) override;
|
|
|
|
private:
|
|
TrieBuilder trieBuilder;
|
|
size_t size = 0;
|
|
};
|
|
|
|
// Stores the strings referenced by the symbol table.
|
|
class StringTableSection : public InputSection {
|
|
public:
|
|
StringTableSection();
|
|
// Returns the start offset of the added string.
|
|
uint32_t addString(StringRef);
|
|
size_t getSize() const override { return size; }
|
|
// Like other sections in __LINKEDIT, the string table section is special: its
|
|
// offsets are recorded in the LC_SYMTAB load command, instead of in section
|
|
// headers.
|
|
bool isHidden() const override { return true; }
|
|
void writeTo(uint8_t *buf) override;
|
|
|
|
private:
|
|
// An n_strx value of 0 always indicates the empty string, so we must locate
|
|
// our non-empty string values at positive offsets in the string table.
|
|
// Therefore we insert a dummy value at position zero.
|
|
std::vector<StringRef> strings{"\0"};
|
|
size_t size = 1;
|
|
};
|
|
|
|
struct SymtabEntry {
|
|
Symbol *sym;
|
|
size_t strx;
|
|
};
|
|
|
|
class SymtabSection : public InputSection {
|
|
public:
|
|
SymtabSection(StringTableSection &);
|
|
void finalizeContents();
|
|
size_t getNumSymbols() const { return symbols.size(); }
|
|
size_t getSize() const override;
|
|
// Like other sections in __LINKEDIT, the symtab section is special: its
|
|
// offsets are recorded in the LC_SYMTAB load command, instead of in section
|
|
// headers.
|
|
bool isHidden() const override { return true; }
|
|
void writeTo(uint8_t *buf) override;
|
|
|
|
private:
|
|
StringTableSection &stringTableSection;
|
|
std::vector<SymtabEntry> symbols;
|
|
};
|
|
|
|
struct InStruct {
|
|
GotSection *got = nullptr;
|
|
};
|
|
|
|
extern InStruct in;
|
|
|
|
} // namespace macho
|
|
} // namespace lld
|
|
|
|
#endif
|