1 //===- InputSection.cpp ---------------------------------------------------===//
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 #include "InputSection.h"
11 #include "Config.h"
12 #include "Error.h"
13 #include "InputFiles.h"
14 #include "OutputSections.h"
15 #include "Target.h"
16 
17 #include "llvm/Support/Endian.h"
18 
19 using namespace llvm;
20 using namespace llvm::ELF;
21 using namespace llvm::object;
22 using namespace llvm::support::endian;
23 
24 using namespace lld;
25 using namespace lld::elf;
26 
27 template <class ELFT>
28 InputSectionBase<ELFT>::InputSectionBase(elf::ObjectFile<ELFT> *File,
29                                          const Elf_Shdr *Header,
30                                          Kind SectionKind)
31     : Header(Header), File(File), SectionKind(SectionKind), Repl(this) {
32   // The garbage collector sets sections' Live bits.
33   // If GC is disabled, all sections are considered live by default.
34   Live = !Config->GcSections;
35 
36   // The ELF spec states that a value of 0 means the section has
37   // no alignment constraits.
38   Align = std::max<uintX_t>(Header->sh_addralign, 1);
39 }
40 
41 template <class ELFT> size_t InputSectionBase<ELFT>::getSize() const {
42   if (auto *D = dyn_cast<InputSection<ELFT>>(this))
43     if (D->getThunksSize() > 0)
44       return D->getThunkOff() + D->getThunksSize();
45   return Header->sh_size;
46 }
47 
48 template <class ELFT> StringRef InputSectionBase<ELFT>::getSectionName() const {
49   return check(File->getObj().getSectionName(this->Header));
50 }
51 
52 template <class ELFT>
53 ArrayRef<uint8_t> InputSectionBase<ELFT>::getSectionData() const {
54   return check(this->File->getObj().getSectionContents(this->Header));
55 }
56 
57 template <class ELFT>
58 typename ELFT::uint InputSectionBase<ELFT>::getOffset(uintX_t Offset) {
59   switch (SectionKind) {
60   case Regular:
61     return cast<InputSection<ELFT>>(this)->OutSecOff + Offset;
62   case EHFrame:
63     return cast<EHInputSection<ELFT>>(this)->getOffset(Offset);
64   case Merge:
65     return cast<MergeInputSection<ELFT>>(this)->getOffset(Offset);
66   case MipsReginfo:
67     // MIPS .reginfo sections are consumed by the linker,
68     // so it should never be copied to output.
69     llvm_unreachable("MIPS .reginfo reached writeTo().");
70   }
71   llvm_unreachable("invalid section kind");
72 }
73 
74 template <class ELFT>
75 typename ELFT::uint
76 InputSectionBase<ELFT>::getOffset(const DefinedRegular<ELFT> &Sym) {
77   return getOffset(Sym.Value);
78 }
79 
80 // Returns a section that Rel relocation is pointing to.
81 template <class ELFT>
82 InputSectionBase<ELFT> *
83 InputSectionBase<ELFT>::getRelocTarget(const Elf_Rel &Rel) const {
84   // Global symbol
85   uint32_t SymIndex = Rel.getSymbol(Config->Mips64EL);
86   SymbolBody &B = File->getSymbolBody(SymIndex).repl();
87   if (auto *D = dyn_cast<DefinedRegular<ELFT>>(&B))
88     if (D->Section)
89       return D->Section->Repl;
90   return nullptr;
91 }
92 
93 template <class ELFT>
94 InputSectionBase<ELFT> *
95 InputSectionBase<ELFT>::getRelocTarget(const Elf_Rela &Rel) const {
96   return getRelocTarget(reinterpret_cast<const Elf_Rel &>(Rel));
97 }
98 
99 template <class ELFT>
100 InputSection<ELFT>::InputSection(elf::ObjectFile<ELFT> *F,
101                                  const Elf_Shdr *Header)
102     : InputSectionBase<ELFT>(F, Header, Base::Regular) {}
103 
104 template <class ELFT>
105 bool InputSection<ELFT>::classof(const InputSectionBase<ELFT> *S) {
106   return S->SectionKind == Base::Regular;
107 }
108 
109 template <class ELFT>
110 InputSectionBase<ELFT> *InputSection<ELFT>::getRelocatedSection() {
111   assert(this->Header->sh_type == SHT_RELA || this->Header->sh_type == SHT_REL);
112   ArrayRef<InputSectionBase<ELFT> *> Sections = this->File->getSections();
113   return Sections[this->Header->sh_info];
114 }
115 
116 template <class ELFT> void InputSection<ELFT>::addThunk(SymbolBody &Body) {
117   Body.ThunkIndex = Thunks.size();
118   Thunks.push_back(&Body);
119 }
120 
121 template <class ELFT> uint64_t InputSection<ELFT>::getThunkOff() const {
122   return this->Header->sh_size;
123 }
124 
125 template <class ELFT> uint64_t InputSection<ELFT>::getThunksSize() const {
126   return Thunks.size() * Target->ThunkSize;
127 }
128 
129 // This is used for -r. We can't use memcpy to copy relocations because we need
130 // to update symbol table offset and section index for each relocation. So we
131 // copy relocations one by one.
132 template <class ELFT>
133 template <class RelTy>
134 void InputSection<ELFT>::copyRelocations(uint8_t *Buf, ArrayRef<RelTy> Rels) {
135   InputSectionBase<ELFT> *RelocatedSection = getRelocatedSection();
136 
137   for (const RelTy &Rel : Rels) {
138     uint32_t SymIndex = Rel.getSymbol(Config->Mips64EL);
139     uint32_t Type = Rel.getType(Config->Mips64EL);
140     SymbolBody &Body = this->File->getSymbolBody(SymIndex).repl();
141 
142     RelTy *P = reinterpret_cast<RelTy *>(Buf);
143     Buf += sizeof(RelTy);
144 
145     P->r_offset = RelocatedSection->getOffset(Rel.r_offset);
146     P->setSymbolAndType(Body.DynsymIndex, Type, Config->Mips64EL);
147   }
148 }
149 
150 // Page(Expr) is the page address of the expression Expr, defined
151 // as (Expr & ~0xFFF). (This applies even if the machine page size
152 // supported by the platform has a different value.)
153 static uint64_t getAArch64Page(uint64_t Expr) {
154   return Expr & (~static_cast<uint64_t>(0xFFF));
155 }
156 
157 template <class ELFT>
158 static typename ELFT::uint
159 getSymVA(uint32_t Type, typename ELFT::uint A, typename ELFT::uint P,
160          const SymbolBody &Body, uint8_t *BufLoc,
161          const elf::ObjectFile<ELFT> &File, RelExpr Expr) {
162   typedef typename ELFT::uint uintX_t;
163   switch (Expr) {
164   case R_TLSLD:
165     return Out<ELFT>::Got->getTlsIndexOff() + A -
166            Out<ELFT>::Got->getNumEntries() * sizeof(uintX_t);
167   case R_TLSLD_PC:
168     return Out<ELFT>::Got->getTlsIndexVA() + A - P;
169   case R_THUNK:
170     return Body.getThunkVA<ELFT>();
171   case R_PPC_TOC:
172     return getPPC64TocBase() + A;
173   case R_TLSGD:
174     return Out<ELFT>::Got->getGlobalDynOffset(Body) + A -
175            Out<ELFT>::Got->getNumEntries() * sizeof(uintX_t);
176   case R_TLSGD_PC:
177     return Out<ELFT>::Got->getGlobalDynAddr(Body) + A - P;
178   case R_PLT:
179     return Body.getPltVA<ELFT>() + A;
180   case R_PLT_PC:
181   case R_PPC_PLT_OPD:
182     return Body.getPltVA<ELFT>() + A - P;
183   case R_SIZE:
184     return Body.getSize<ELFT>() + A;
185   case R_GOTREL:
186     return Body.getVA<ELFT>(A) - Out<ELFT>::Got->getVA();
187   case R_GOT_FROM_END:
188     return Body.getGotOffset<ELFT>() + A -
189            Out<ELFT>::Got->getNumEntries() * sizeof(uintX_t);
190   case R_GOT:
191   case R_RELAX_TLS_GD_TO_IE:
192     return Body.getGotVA<ELFT>() + A;
193   case R_GOT_PAGE_PC:
194     return getAArch64Page(Body.getGotVA<ELFT>() + A) - getAArch64Page(P);
195   case R_GOT_PC:
196   case R_RELAX_TLS_GD_TO_IE_PC:
197     return Body.getGotVA<ELFT>() + A - P;
198   case R_GOTONLY_PC:
199     return Out<ELFT>::Got->getVA() + A - P;
200   case R_TLS:
201     return Body.getVA<ELFT>(A) - Out<ELFT>::TlsPhdr->p_memsz;
202   case R_NEG_TLS:
203     return Out<ELF32LE>::TlsPhdr->p_memsz - Body.getVA<ELFT>(A);
204   case R_ABS:
205   case R_RELAX_TLS_GD_TO_LE:
206   case R_RELAX_TLS_IE_TO_LE:
207   case R_RELAX_TLS_LD_TO_LE:
208     return Body.getVA<ELFT>(A);
209   case R_MIPS_GP0:
210     // We need to adjust SymVA value in case of R_MIPS_GPREL16/32
211     // relocations because they use the following expression to calculate
212     // the relocation's result for local symbol: S + A + GP0 - G.
213     return Body.getVA<ELFT>(A) + File.getMipsGp0();
214   case R_GOT_OFF:
215     return Body.getGotOffset<ELFT>() + A;
216   case R_MIPS_GOT_LOCAL:
217     // If relocation against MIPS local symbol requires GOT entry, this entry
218     // should be initialized by 'page address'. This address is high 16-bits
219     // of sum the symbol's value and the addend.
220     return Out<ELFT>::Got->getMipsLocalPageOffset(Body.getVA<ELFT>(A));
221   case R_MIPS_GOT:
222     // For non-local symbols GOT entries should contain their full
223     // addresses. But if such symbol cannot be preempted, we do not
224     // have to put them into the "global" part of GOT and use dynamic
225     // linker to determine their actual addresses. That is why we
226     // create GOT entries for them in the "local" part of GOT.
227     return Out<ELFT>::Got->getMipsLocalEntryOffset(Body.getVA<ELFT>(A));
228   case R_PPC_OPD: {
229     uint64_t SymVA = Body.getVA<ELFT>(A);
230     // If we have an undefined weak symbol, we might get here with a symbol
231     // address of zero. That could overflow, but the code must be unreachable,
232     // so don't bother doing anything at all.
233     if (!SymVA)
234       return 0;
235     if (Out<ELF64BE>::Opd) {
236       // If this is a local call, and we currently have the address of a
237       // function-descriptor, get the underlying code address instead.
238       uint64_t OpdStart = Out<ELF64BE>::Opd->getVA();
239       uint64_t OpdEnd = OpdStart + Out<ELF64BE>::Opd->getSize();
240       bool InOpd = OpdStart <= SymVA && SymVA < OpdEnd;
241       if (InOpd)
242         SymVA = read64be(&Out<ELF64BE>::OpdBuf[SymVA - OpdStart]);
243     }
244     return SymVA - P;
245   }
246   case R_PC:
247     return Body.getVA<ELFT>(A) - P;
248   case R_PAGE_PC:
249     return getAArch64Page(Body.getVA<ELFT>(A)) - getAArch64Page(P);
250   }
251   llvm_unreachable("Invalid expression");
252 }
253 
254 template <class ELFT>
255 void InputSectionBase<ELFT>::relocate(uint8_t *Buf, uint8_t *BufEnd) {
256   const unsigned Bits = sizeof(uintX_t) * 8;
257   for (const Relocation &Rel : Relocations) {
258     uintX_t Offset = Rel.Offset;
259     uint8_t *BufLoc = Buf + Offset;
260     uint32_t Type = Rel.Type;
261     uintX_t A = Rel.Addend;
262 
263     uintX_t AddrLoc = OutSec->getVA() + Offset;
264     RelExpr Expr = Rel.Expr;
265     uint64_t SymVA = SignExtend64<Bits>(
266         getSymVA<ELFT>(Type, A, AddrLoc, *Rel.Sym, BufLoc, *File, Expr));
267 
268     if (Expr == R_RELAX_TLS_IE_TO_LE) {
269       Target->relaxTlsIeToLe(BufLoc, Type, SymVA);
270       continue;
271     }
272     if (Expr == R_RELAX_TLS_LD_TO_LE) {
273       Target->relaxTlsLdToLe(BufLoc, Type, SymVA);
274       continue;
275     }
276     if (Expr == R_RELAX_TLS_GD_TO_LE) {
277       Target->relaxTlsGdToLe(BufLoc, Type, SymVA);
278       continue;
279     }
280     if (Expr == R_RELAX_TLS_GD_TO_IE_PC || Expr == R_RELAX_TLS_GD_TO_IE) {
281       Target->relaxTlsGdToIe(BufLoc, Type, SymVA);
282       continue;
283     }
284 
285     if (Expr == R_PPC_PLT_OPD) {
286       uint32_t Nop = 0x60000000;
287       if (BufLoc + 8 <= BufEnd && read32be(BufLoc + 4) == Nop)
288         write32be(BufLoc + 4, 0xe8410028); // ld %r2, 40(%r1)
289     }
290 
291     Target->relocateOne(BufLoc, Type, SymVA);
292   }
293 }
294 
295 template <class ELFT> void InputSection<ELFT>::writeTo(uint8_t *Buf) {
296   if (this->Header->sh_type == SHT_NOBITS)
297     return;
298   ELFFile<ELFT> &EObj = this->File->getObj();
299 
300   // If -r is given, then an InputSection may be a relocation section.
301   if (this->Header->sh_type == SHT_RELA) {
302     copyRelocations(Buf + OutSecOff, EObj.relas(this->Header));
303     return;
304   }
305   if (this->Header->sh_type == SHT_REL) {
306     copyRelocations(Buf + OutSecOff, EObj.rels(this->Header));
307     return;
308   }
309 
310   // Copy section contents from source object file to output file.
311   ArrayRef<uint8_t> Data = this->getSectionData();
312   memcpy(Buf + OutSecOff, Data.data(), Data.size());
313 
314   // Iterate over all relocation sections that apply to this section.
315   uint8_t *BufEnd = Buf + OutSecOff + Data.size();
316   this->relocate(Buf, BufEnd);
317 
318   // The section might have a data/code generated by the linker and need
319   // to be written after the section. Usually these are thunks - small piece
320   // of code used to jump between "incompatible" functions like PIC and non-PIC
321   // or if the jump target too far and its address does not fit to the short
322   // jump istruction.
323   if (!Thunks.empty()) {
324     Buf += OutSecOff + getThunkOff();
325     for (const SymbolBody *S : Thunks) {
326       Target->writeThunk(Buf, S->getVA<ELFT>());
327       Buf += Target->ThunkSize;
328     }
329   }
330 }
331 
332 template <class ELFT>
333 void InputSection<ELFT>::replace(InputSection<ELFT> *Other) {
334   this->Align = std::max(this->Align, Other->Align);
335   Other->Repl = this->Repl;
336   Other->Live = false;
337 }
338 
339 template <class ELFT>
340 SplitInputSection<ELFT>::SplitInputSection(
341     elf::ObjectFile<ELFT> *File, const Elf_Shdr *Header,
342     typename InputSectionBase<ELFT>::Kind SectionKind)
343     : InputSectionBase<ELFT>(File, Header, SectionKind) {}
344 
345 template <class ELFT>
346 EHInputSection<ELFT>::EHInputSection(elf::ObjectFile<ELFT> *F,
347                                      const Elf_Shdr *Header)
348     : SplitInputSection<ELFT>(F, Header, InputSectionBase<ELFT>::EHFrame) {
349   // Mark .eh_frame sections as live by default because there are
350   // usually no relocations that point to .eh_frames. Otherwise,
351   // the garbage collector would drop all .eh_frame sections.
352   this->Live = true;
353 }
354 
355 template <class ELFT>
356 bool EHInputSection<ELFT>::classof(const InputSectionBase<ELFT> *S) {
357   return S->SectionKind == InputSectionBase<ELFT>::EHFrame;
358 }
359 
360 template <class ELFT>
361 typename ELFT::uint EHInputSection<ELFT>::getOffset(uintX_t Offset) {
362   // The file crtbeginT.o has relocations pointing to the start of an empty
363   // .eh_frame that is known to be the first in the link. It does that to
364   // identify the start of the output .eh_frame. Handle this special case.
365   if (this->getSectionHdr()->sh_size == 0)
366     return Offset;
367   std::pair<uintX_t, uintX_t> *I = this->getRangeAndSize(Offset).first;
368   uintX_t Base = I->second;
369   if (Base == uintX_t(-1))
370     return -1; // Not in the output
371 
372   uintX_t Addend = Offset - I->first;
373   return Base + Addend;
374 }
375 
376 template <class ELFT>
377 MergeInputSection<ELFT>::MergeInputSection(elf::ObjectFile<ELFT> *F,
378                                            const Elf_Shdr *Header)
379     : SplitInputSection<ELFT>(F, Header, InputSectionBase<ELFT>::Merge) {}
380 
381 template <class ELFT>
382 bool MergeInputSection<ELFT>::classof(const InputSectionBase<ELFT> *S) {
383   return S->SectionKind == InputSectionBase<ELFT>::Merge;
384 }
385 
386 template <class ELFT>
387 std::pair<std::pair<typename ELFT::uint, typename ELFT::uint> *,
388           typename ELFT::uint>
389 SplitInputSection<ELFT>::getRangeAndSize(uintX_t Offset) {
390   ArrayRef<uint8_t> D = this->getSectionData();
391   StringRef Data((const char *)D.data(), D.size());
392   uintX_t Size = Data.size();
393   if (Offset >= Size)
394     fatal("entry is past the end of the section");
395 
396   // Find the element this offset points to.
397   auto I = std::upper_bound(
398       Offsets.begin(), Offsets.end(), Offset,
399       [](const uintX_t &A, const std::pair<uintX_t, uintX_t> &B) {
400         return A < B.first;
401       });
402   uintX_t End = I == Offsets.end() ? Data.size() : I->first;
403   --I;
404   return std::make_pair(&*I, End);
405 }
406 
407 template <class ELFT>
408 typename ELFT::uint MergeInputSection<ELFT>::getOffset(uintX_t Offset) {
409   std::pair<std::pair<uintX_t, uintX_t> *, uintX_t> T =
410       this->getRangeAndSize(Offset);
411   std::pair<uintX_t, uintX_t> *I = T.first;
412   uintX_t End = T.second;
413   uintX_t Start = I->first;
414 
415   // Compute the Addend and if the Base is cached, return.
416   uintX_t Addend = Offset - Start;
417   uintX_t &Base = I->second;
418   if (Base != uintX_t(-1))
419     return Base + Addend;
420 
421   // Map the base to the offset in the output section and cache it.
422   ArrayRef<uint8_t> D = this->getSectionData();
423   StringRef Data((const char *)D.data(), D.size());
424   StringRef Entry = Data.substr(Start, End - Start);
425   Base =
426       static_cast<MergeOutputSection<ELFT> *>(this->OutSec)->getOffset(Entry);
427   return Base + Addend;
428 }
429 
430 template <class ELFT>
431 MipsReginfoInputSection<ELFT>::MipsReginfoInputSection(elf::ObjectFile<ELFT> *F,
432                                                        const Elf_Shdr *Hdr)
433     : InputSectionBase<ELFT>(F, Hdr, InputSectionBase<ELFT>::MipsReginfo) {
434   // Initialize this->Reginfo.
435   ArrayRef<uint8_t> D = this->getSectionData();
436   if (D.size() != sizeof(Elf_Mips_RegInfo<ELFT>))
437     fatal("invalid size of .reginfo section");
438   Reginfo = reinterpret_cast<const Elf_Mips_RegInfo<ELFT> *>(D.data());
439 }
440 
441 template <class ELFT>
442 bool MipsReginfoInputSection<ELFT>::classof(const InputSectionBase<ELFT> *S) {
443   return S->SectionKind == InputSectionBase<ELFT>::MipsReginfo;
444 }
445 
446 template class elf::InputSectionBase<ELF32LE>;
447 template class elf::InputSectionBase<ELF32BE>;
448 template class elf::InputSectionBase<ELF64LE>;
449 template class elf::InputSectionBase<ELF64BE>;
450 
451 template class elf::InputSection<ELF32LE>;
452 template class elf::InputSection<ELF32BE>;
453 template class elf::InputSection<ELF64LE>;
454 template class elf::InputSection<ELF64BE>;
455 
456 template class elf::EHInputSection<ELF32LE>;
457 template class elf::EHInputSection<ELF32BE>;
458 template class elf::EHInputSection<ELF64LE>;
459 template class elf::EHInputSection<ELF64BE>;
460 
461 template class elf::MergeInputSection<ELF32LE>;
462 template class elf::MergeInputSection<ELF32BE>;
463 template class elf::MergeInputSection<ELF64LE>;
464 template class elf::MergeInputSection<ELF64BE>;
465 
466 template class elf::MipsReginfoInputSection<ELF32LE>;
467 template class elf::MipsReginfoInputSection<ELF32BE>;
468 template class elf::MipsReginfoInputSection<ELF64LE>;
469 template class elf::MipsReginfoInputSection<ELF64BE>;
470