1 //===- InputSection.h -------------------------------------------*- C++ -*-===//
2 //
3 //                             The LLVM Linker
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #ifndef LLD_ELF_INPUT_SECTION_H
11 #define LLD_ELF_INPUT_SECTION_H
12 
13 #include "Config.h"
14 #include "Relocations.h"
15 #include "Thunks.h"
16 #include "lld/Common/LLVM.h"
17 #include "llvm/ADT/CachedHashString.h"
18 #include "llvm/ADT/DenseSet.h"
19 #include "llvm/ADT/TinyPtrVector.h"
20 #include "llvm/Object/ELF.h"
21 
22 namespace lld {
23 namespace elf {
24 
25 class Symbol;
26 struct SectionPiece;
27 
28 class Defined;
29 class SyntheticSection;
30 class MergeSyntheticSection;
31 template <class ELFT> class ObjFile;
32 class OutputSection;
33 
34 // This is the base class of all sections that lld handles. Some are sections in
35 // input files, some are sections in the produced output file and some exist
36 // just as a convenience for implementing special ways of combining some
37 // sections.
38 class SectionBase {
39 public:
40   enum Kind { Regular, EHFrame, Merge, Synthetic, Output };
41 
kind()42   Kind kind() const { return (Kind)SectionKind; }
43 
44   StringRef Name;
45 
46   // This pointer points to the "real" instance of this instance.
47   // Usually Repl == this. However, if ICF merges two sections,
48   // Repl pointer of one section points to another section. So,
49   // if you need to get a pointer to this instance, do not use
50   // this but instead this->Repl.
51   SectionBase *Repl;
52 
53   unsigned SectionKind : 3;
54 
55   // The next two bit fields are only used by InputSectionBase, but we
56   // put them here so the struct packs better.
57 
58   // The garbage collector sets sections' Live bits.
59   // If GC is disabled, all sections are considered live by default.
60   unsigned Live : 1;
61 
62   unsigned Bss : 1;
63 
64   // Set for sections that should not be folded by ICF.
65   unsigned KeepUnique : 1;
66 
67   // These corresponds to the fields in Elf_Shdr.
68   uint32_t Alignment;
69   uint64_t Flags;
70   uint64_t Entsize;
71   uint32_t Type;
72   uint32_t Link;
73   uint32_t Info;
74 
75   OutputSection *getOutputSection();
getOutputSection()76   const OutputSection *getOutputSection() const {
77     return const_cast<SectionBase *>(this)->getOutputSection();
78   }
79 
80   // Translate an offset in the input section to an offset in the output
81   // section.
82   uint64_t getOffset(uint64_t Offset) const;
83 
84   uint64_t getVA(uint64_t Offset = 0) const;
85 
86 protected:
SectionBase(Kind SectionKind,StringRef Name,uint64_t Flags,uint64_t Entsize,uint64_t Alignment,uint32_t Type,uint32_t Info,uint32_t Link)87   SectionBase(Kind SectionKind, StringRef Name, uint64_t Flags,
88               uint64_t Entsize, uint64_t Alignment, uint32_t Type,
89               uint32_t Info, uint32_t Link)
90       : Name(Name), Repl(this), SectionKind(SectionKind), Live(false),
91         Bss(false), KeepUnique(false), Alignment(Alignment), Flags(Flags),
92         Entsize(Entsize), Type(Type), Link(Link), Info(Info) {}
93 };
94 
95 // This corresponds to a section of an input file.
96 class InputSectionBase : public SectionBase {
97 public:
98   template <class ELFT>
99   InputSectionBase(ObjFile<ELFT> &File, const typename ELFT::Shdr &Header,
100                    StringRef Name, Kind SectionKind);
101 
102   InputSectionBase(InputFile *File, uint64_t Flags, uint32_t Type,
103                    uint64_t Entsize, uint32_t Link, uint32_t Info,
104                    uint32_t Alignment, ArrayRef<uint8_t> Data, StringRef Name,
105                    Kind SectionKind);
106 
classof(const SectionBase * S)107   static bool classof(const SectionBase *S) { return S->kind() != Output; }
108 
109   // The file which contains this section. Its dynamic type is always
110   // ObjFile<ELFT>, but in order to avoid ELFT, we use InputFile as
111   // its static type.
112   InputFile *File;
113 
getFile()114   template <class ELFT> ObjFile<ELFT> *getFile() const {
115     return cast_or_null<ObjFile<ELFT>>(File);
116   }
117 
data()118   ArrayRef<uint8_t> data() const {
119     if (UncompressedSize >= 0 && !UncompressedBuf)
120       uncompress();
121     return RawData;
122   }
123 
124   uint64_t getOffsetInFile() const;
125 
126   // True if this section has already been placed to a linker script
127   // output section. This is needed because, in a linker script, you
128   // can refer to the same section more than once. For example, in
129   // the following linker script,
130   //
131   //   .foo : { *(.text) }
132   //   .bar : { *(.text) }
133   //
134   // .foo takes all .text sections, and .bar becomes empty. To achieve
135   // this, we need to memorize whether a section has been placed or
136   // not for each input section.
137   bool Assigned = false;
138 
139   // Input sections are part of an output section. Special sections
140   // like .eh_frame and merge sections are first combined into a
141   // synthetic section that is then added to an output section. In all
142   // cases this points one level up.
143   SectionBase *Parent = nullptr;
144 
145   // Relocations that refer to this section.
146   const void *FirstRelocation = nullptr;
147   unsigned NumRelocations : 31;
148   unsigned AreRelocsRela : 1;
149 
rels()150   template <class ELFT> ArrayRef<typename ELFT::Rel> rels() const {
151     assert(!AreRelocsRela);
152     return llvm::makeArrayRef(
153         static_cast<const typename ELFT::Rel *>(FirstRelocation),
154         NumRelocations);
155   }
156 
relas()157   template <class ELFT> ArrayRef<typename ELFT::Rela> relas() const {
158     assert(AreRelocsRela);
159     return llvm::makeArrayRef(
160         static_cast<const typename ELFT::Rela *>(FirstRelocation),
161         NumRelocations);
162   }
163 
164   // InputSections that are dependent on us (reverse dependency for GC)
165   llvm::TinyPtrVector<InputSection *> DependentSections;
166 
167   // Returns the size of this section (even if this is a common or BSS.)
168   size_t getSize() const;
169 
170   InputSection *getLinkOrderDep() const;
171 
172   // Get the function symbol that encloses this offset from within the
173   // section.
174   template <class ELFT>
175   Defined *getEnclosingFunction(uint64_t Offset);
176 
177   // Returns a source location string. Used to construct an error message.
178   template <class ELFT> std::string getLocation(uint64_t Offset);
179   std::string getSrcMsg(const Symbol &Sym, uint64_t Offset);
180   std::string getObjMsg(uint64_t Offset);
181 
182   // Each section knows how to relocate itself. These functions apply
183   // relocations, assuming that Buf points to this section's copy in
184   // the mmap'ed output buffer.
185   template <class ELFT> void relocate(uint8_t *Buf, uint8_t *BufEnd);
186   void relocateAlloc(uint8_t *Buf, uint8_t *BufEnd);
187 
188   // The native ELF reloc data type is not very convenient to handle.
189   // So we convert ELF reloc records to our own records in Relocations.cpp.
190   // This vector contains such "cooked" relocations.
191   std::vector<Relocation> Relocations;
192 
193   // A function compiled with -fsplit-stack calling a function
194   // compiled without -fsplit-stack needs its prologue adjusted. Find
195   // such functions and adjust their prologues.  This is very similar
196   // to relocation. See https://gcc.gnu.org/wiki/SplitStacks for more
197   // information.
198   template <typename ELFT>
199   void adjustSplitStackFunctionPrologues(uint8_t *Buf, uint8_t *End);
200 
201 
getDataAs()202   template <typename T> llvm::ArrayRef<T> getDataAs() const {
203     size_t S = data().size();
204     assert(S % sizeof(T) == 0);
205     return llvm::makeArrayRef<T>((const T *)data().data(), S / sizeof(T));
206   }
207 
208 protected:
209   void parseCompressedHeader();
210   void uncompress() const;
211 
212   mutable ArrayRef<uint8_t> RawData;
213 
214   // A pointer that owns uncompressed data if a section is compressed by zlib.
215   // Since the feature is not used often, this is usually a nullptr.
216   mutable std::unique_ptr<char[]> UncompressedBuf;
217   int64_t UncompressedSize = -1;
218 };
219 
220 // SectionPiece represents a piece of splittable section contents.
221 // We allocate a lot of these and binary search on them. This means that they
222 // have to be as compact as possible, which is why we don't store the size (can
223 // be found by looking at the next one).
224 struct SectionPiece {
SectionPieceSectionPiece225   SectionPiece(size_t Off, uint32_t Hash, bool Live)
226       : InputOff(Off), Hash(Hash), OutputOff(0),
227         Live(Live || !Config->GcSections) {}
228 
229   uint32_t InputOff;
230   uint32_t Hash;
231   int64_t OutputOff : 63;
232   uint64_t Live : 1;
233 };
234 
235 static_assert(sizeof(SectionPiece) == 16, "SectionPiece is too big");
236 
237 // This corresponds to a SHF_MERGE section of an input file.
238 class MergeInputSection : public InputSectionBase {
239 public:
240   template <class ELFT>
241   MergeInputSection(ObjFile<ELFT> &F, const typename ELFT::Shdr &Header,
242                     StringRef Name);
243   MergeInputSection(uint64_t Flags, uint32_t Type, uint64_t Entsize,
244                     ArrayRef<uint8_t> Data, StringRef Name);
245 
classof(const SectionBase * S)246   static bool classof(const SectionBase *S) { return S->kind() == Merge; }
247   void splitIntoPieces();
248 
249   // Translate an offset in the input section to an offset in the parent
250   // MergeSyntheticSection.
251   uint64_t getParentOffset(uint64_t Offset) const;
252 
253   // Splittable sections are handled as a sequence of data
254   // rather than a single large blob of data.
255   std::vector<SectionPiece> Pieces;
256 
257   // Returns I'th piece's data. This function is very hot when
258   // string merging is enabled, so we want to inline.
259   LLVM_ATTRIBUTE_ALWAYS_INLINE
getData(size_t I)260   llvm::CachedHashStringRef getData(size_t I) const {
261     size_t Begin = Pieces[I].InputOff;
262     size_t End =
263         (Pieces.size() - 1 == I) ? data().size() : Pieces[I + 1].InputOff;
264     return {toStringRef(data().slice(Begin, End - Begin)), Pieces[I].Hash};
265   }
266 
267   // Returns the SectionPiece at a given input section offset.
268   SectionPiece *getSectionPiece(uint64_t Offset);
getSectionPiece(uint64_t Offset)269   const SectionPiece *getSectionPiece(uint64_t Offset) const {
270     return const_cast<MergeInputSection *>(this)->getSectionPiece(Offset);
271   }
272 
273   SyntheticSection *getParent() const;
274 
275 private:
276   void splitStrings(ArrayRef<uint8_t> A, size_t Size);
277   void splitNonStrings(ArrayRef<uint8_t> A, size_t Size);
278 };
279 
280 struct EhSectionPiece {
EhSectionPieceEhSectionPiece281   EhSectionPiece(size_t Off, InputSectionBase *Sec, uint32_t Size,
282                  unsigned FirstRelocation)
283       : InputOff(Off), Sec(Sec), Size(Size), FirstRelocation(FirstRelocation) {}
284 
dataEhSectionPiece285   ArrayRef<uint8_t> data() {
286     return {Sec->data().data() + this->InputOff, Size};
287   }
288 
289   size_t InputOff;
290   ssize_t OutputOff = -1;
291   InputSectionBase *Sec;
292   uint32_t Size;
293   unsigned FirstRelocation;
294 };
295 
296 // This corresponds to a .eh_frame section of an input file.
297 class EhInputSection : public InputSectionBase {
298 public:
299   template <class ELFT>
300   EhInputSection(ObjFile<ELFT> &F, const typename ELFT::Shdr &Header,
301                  StringRef Name);
classof(const SectionBase * S)302   static bool classof(const SectionBase *S) { return S->kind() == EHFrame; }
303   template <class ELFT> void split();
304   template <class ELFT, class RelTy> void split(ArrayRef<RelTy> Rels);
305 
306   // Splittable sections are handled as a sequence of data
307   // rather than a single large blob of data.
308   std::vector<EhSectionPiece> Pieces;
309 
310   SyntheticSection *getParent() const;
311 };
312 
313 // This is a section that is added directly to an output section
314 // instead of needing special combination via a synthetic section. This
315 // includes all input sections with the exceptions of SHF_MERGE and
316 // .eh_frame. It also includes the synthetic sections themselves.
317 class InputSection : public InputSectionBase {
318 public:
319   InputSection(InputFile *F, uint64_t Flags, uint32_t Type, uint32_t Alignment,
320                ArrayRef<uint8_t> Data, StringRef Name, Kind K = Regular);
321   template <class ELFT>
322   InputSection(ObjFile<ELFT> &F, const typename ELFT::Shdr &Header,
323                StringRef Name);
324 
325   // Write this section to a mmap'ed file, assuming Buf is pointing to
326   // beginning of the output section.
327   template <class ELFT> void writeTo(uint8_t *Buf);
328 
getOffset(uint64_t Offset)329   uint64_t getOffset(uint64_t Offset) const { return OutSecOff + Offset; }
330 
331   OutputSection *getParent() const;
332 
333   // This variable has two usages. Initially, it represents an index in the
334   // OutputSection's InputSection list, and is used when ordering SHF_LINK_ORDER
335   // sections. After assignAddresses is called, it represents the offset from
336   // the beginning of the output section this section was assigned to.
337   uint64_t OutSecOff = 0;
338 
339   static bool classof(const SectionBase *S);
340 
341   InputSectionBase *getRelocatedSection() const;
342 
343   template <class ELFT, class RelTy>
344   void relocateNonAlloc(uint8_t *Buf, llvm::ArrayRef<RelTy> Rels);
345 
346   // Used by ICF.
347   uint32_t Class[2] = {0, 0};
348 
349   // Called by ICF to merge two input sections.
350   void replace(InputSection *Other);
351 
352   static InputSection Discarded;
353 
354 private:
355   template <class ELFT, class RelTy>
356   void copyRelocations(uint8_t *Buf, llvm::ArrayRef<RelTy> Rels);
357 
358   template <class ELFT> void copyShtGroup(uint8_t *Buf);
359 };
360 
361 // The list of all input sections.
362 extern std::vector<InputSectionBase *> InputSections;
363 
364 } // namespace elf
365 
366 std::string toString(const elf::InputSectionBase *);
367 } // namespace lld
368 
369 #endif
370