blob: 2dce30aaf40bde2bcf7e88e76c7c022c616c67d9 [file] [log] [blame]
Rui Ueyama0fcdc732016-05-24 20:24:43 +00001//===- Relocations.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//
George Rimar95912d02016-06-08 12:29:29 +000010// This file contains platform-independent functions to process relocations.
Rui Ueyama0fcdc732016-05-24 20:24:43 +000011// I'll describe the overview of this file here.
12//
13// Simple relocations are easy to handle for the linker. For example,
14// for R_X86_64_PC64 relocs, the linker just has to fix up locations
15// with the relative offsets to the target symbols. It would just be
16// reading records from relocation sections and applying them to output.
17//
18// But not all relocations are that easy to handle. For example, for
19// R_386_GOTOFF relocs, the linker has to create new GOT entries for
20// symbols if they don't exist, and fix up locations with GOT entry
21// offsets from the beginning of GOT section. So there is more than
22// fixing addresses in relocation processing.
23//
24// ELF defines a large number of complex relocations.
25//
26// The functions in this file analyze relocations and do whatever needs
27// to be done. It includes, but not limited to, the following.
28//
29// - create GOT/PLT entries
30// - create new relocations in .dynsym to let the dynamic linker resolve
31// them at runtime (since ELF supports dynamic linking, not all
32// relocations can be resolved at link-time)
33// - create COPY relocs and reserve space in .bss
34// - replace expensive relocs (in terms of runtime cost) with cheap ones
35// - error out infeasible combinations such as PIC and non-relative relocs
36//
37// Note that the functions in this file don't actually apply relocations
38// because it doesn't know about the output file nor the output file buffer.
39// It instead stores Relocation objects to InputSection's Relocations
40// vector to let it apply later in InputSection::writeTo.
41//
42//===----------------------------------------------------------------------===//
43
44#include "Relocations.h"
45#include "Config.h"
46#include "OutputSections.h"
47#include "SymbolTable.h"
48#include "Target.h"
Peter Smithfb05cd92016-07-08 16:10:27 +000049#include "Thunks.h"
Rui Ueyama0fcdc732016-05-24 20:24:43 +000050
51#include "llvm/Support/Endian.h"
52#include "llvm/Support/raw_ostream.h"
53
54using namespace llvm;
55using namespace llvm::ELF;
56using namespace llvm::object;
57using namespace llvm::support::endian;
58
59namespace lld {
60namespace elf {
61
62static bool refersToGotEntry(RelExpr Expr) {
Simon Atanasyan41325112016-06-19 21:39:37 +000063 return Expr == R_GOT || Expr == R_GOT_OFF || Expr == R_MIPS_GOT_LOCAL_PAGE ||
Simon Atanasyan002e2442016-06-23 15:26:31 +000064 Expr == R_MIPS_GOT_OFF || Expr == R_MIPS_TLSGD ||
65 Expr == R_MIPS_TLSLD || Expr == R_GOT_PAGE_PC || Expr == R_GOT_PC ||
Simon Atanasyan41325112016-06-19 21:39:37 +000066 Expr == R_GOT_FROM_END || Expr == R_TLSGD || Expr == R_TLSGD_PC ||
67 Expr == R_TLSDESC || Expr == R_TLSDESC_PAGE;
Rui Ueyama0fcdc732016-05-24 20:24:43 +000068}
69
Simon Atanasyan9a9a3162016-05-28 04:49:57 +000070static bool isPreemptible(const SymbolBody &Body, uint32_t Type) {
71 // In case of MIPS GP-relative relocations always resolve to a definition
72 // in a regular input file, ignoring the one-definition rule. So we,
73 // for example, should not attempt to create a dynamic relocation even
74 // if the target symbol is preemptible. There are two two MIPS GP-relative
75 // relocations R_MIPS_GPREL16 and R_MIPS_GPREL32. But only R_MIPS_GPREL16
76 // can be against a preemptible symbol.
Simon Atanasyana26a1572016-06-10 12:26:09 +000077 // To get MIPS relocation type we apply 0xff mask. In case of O32 ABI all
Simon Atanasyan9a9a3162016-05-28 04:49:57 +000078 // relocation types occupy eight bit. In case of N64 ABI we extract first
79 // relocation from 3-in-1 packet because only the first relocation can
80 // be against a real symbol.
Simon Atanasyana26a1572016-06-10 12:26:09 +000081 if (Config->EMachine == EM_MIPS && (Type & 0xff) == R_MIPS_GPREL16)
Simon Atanasyan9a9a3162016-05-28 04:49:57 +000082 return false;
83 return Body.isPreemptible();
84}
85
Simon Atanasyan002e2442016-06-23 15:26:31 +000086// This function is similar to the `handleTlsRelocation`. MIPS does not support
87// any relaxations for TLS relocations so by factoring out MIPS handling into
88// the separate function we can simplify the code and does not pollute
89// `handleTlsRelocation` by MIPS `ifs` statements.
90template <class ELFT>
91static unsigned
92handleMipsTlsRelocation(uint32_t Type, SymbolBody &Body,
93 InputSectionBase<ELFT> &C, typename ELFT::uint Offset,
94 typename ELFT::uint Addend, RelExpr Expr) {
95 if (Expr == R_MIPS_TLSLD) {
Simon Atanasyan919a58c2016-09-08 09:07:19 +000096 if (Out<ELFT>::Got->addTlsIndex() && Config->Pic)
Simon Atanasyan002e2442016-06-23 15:26:31 +000097 Out<ELFT>::RelaDyn->addReloc({Target->TlsModuleIndexRel, Out<ELFT>::Got,
98 Out<ELFT>::Got->getTlsIndexOff(), false,
99 nullptr, 0});
Rafael Espindola664c6522016-09-07 20:37:34 +0000100 C.Relocations.push_back({Expr, Type, Offset, Addend, &Body});
Simon Atanasyan002e2442016-06-23 15:26:31 +0000101 return 1;
102 }
103 if (Target->isTlsGlobalDynamicRel(Type)) {
Simon Atanasyan919a58c2016-09-08 09:07:19 +0000104 if (Out<ELFT>::Got->addDynTlsEntry(Body) && Body.isPreemptible()) {
Simon Atanasyan002e2442016-06-23 15:26:31 +0000105 typedef typename ELFT::uint uintX_t;
106 uintX_t Off = Out<ELFT>::Got->getGlobalDynOffset(Body);
107 Out<ELFT>::RelaDyn->addReloc(
108 {Target->TlsModuleIndexRel, Out<ELFT>::Got, Off, false, &Body, 0});
109 Out<ELFT>::RelaDyn->addReloc({Target->TlsOffsetRel, Out<ELFT>::Got,
110 Off + (uintX_t)sizeof(uintX_t), false,
111 &Body, 0});
112 }
Rafael Espindola664c6522016-09-07 20:37:34 +0000113 C.Relocations.push_back({Expr, Type, Offset, Addend, &Body});
Simon Atanasyan002e2442016-06-23 15:26:31 +0000114 return 1;
115 }
116 return 0;
117}
118
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000119// Returns the number of relocations processed.
120template <class ELFT>
121static unsigned handleTlsRelocation(uint32_t Type, SymbolBody &Body,
122 InputSectionBase<ELFT> &C,
123 typename ELFT::uint Offset,
124 typename ELFT::uint Addend, RelExpr Expr) {
125 if (!(C.getSectionHdr()->sh_flags & SHF_ALLOC))
126 return 0;
127
128 if (!Body.isTls())
129 return 0;
130
131 typedef typename ELFT::uint uintX_t;
Rafael Espindolae37d13b2016-06-02 19:49:53 +0000132
Simon Atanasyan002e2442016-06-23 15:26:31 +0000133 if (Config->EMachine == EM_MIPS)
134 return handleMipsTlsRelocation<ELFT>(Type, Body, C, Offset, Addend, Expr);
135
Rafael Espindolae37d13b2016-06-02 19:49:53 +0000136 if ((Expr == R_TLSDESC || Expr == R_TLSDESC_PAGE || Expr == R_HINT) &&
137 Config->Shared) {
138 if (Out<ELFT>::Got->addDynTlsEntry(Body)) {
139 uintX_t Off = Out<ELFT>::Got->getGlobalDynOffset(Body);
140 Out<ELFT>::RelaDyn->addReloc(
141 {Target->TlsDescRel, Out<ELFT>::Got, Off, false, &Body, 0});
142 }
143 if (Expr != R_HINT)
Rafael Espindola664c6522016-09-07 20:37:34 +0000144 C.Relocations.push_back({Expr, Type, Offset, Addend, &Body});
Rafael Espindolae37d13b2016-06-02 19:49:53 +0000145 return 1;
146 }
147
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000148 if (Expr == R_TLSLD_PC || Expr == R_TLSLD) {
149 // Local-Dynamic relocs can be relaxed to Local-Exec.
150 if (!Config->Shared) {
151 C.Relocations.push_back(
Rafael Espindola664c6522016-09-07 20:37:34 +0000152 {R_RELAX_TLS_LD_TO_LE, Type, Offset, Addend, &Body});
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000153 return 2;
154 }
155 if (Out<ELFT>::Got->addTlsIndex())
156 Out<ELFT>::RelaDyn->addReloc({Target->TlsModuleIndexRel, Out<ELFT>::Got,
157 Out<ELFT>::Got->getTlsIndexOff(), false,
158 nullptr, 0});
Rafael Espindola664c6522016-09-07 20:37:34 +0000159 C.Relocations.push_back({Expr, Type, Offset, Addend, &Body});
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000160 return 1;
161 }
162
163 // Local-Dynamic relocs can be relaxed to Local-Exec.
164 if (Target->isTlsLocalDynamicRel(Type) && !Config->Shared) {
165 C.Relocations.push_back(
Rafael Espindola664c6522016-09-07 20:37:34 +0000166 {R_RELAX_TLS_LD_TO_LE, Type, Offset, Addend, &Body});
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000167 return 1;
168 }
169
Rafael Espindolae37d13b2016-06-02 19:49:53 +0000170 if (Expr == R_TLSDESC_PAGE || Expr == R_TLSDESC || Expr == R_HINT ||
171 Target->isTlsGlobalDynamicRel(Type)) {
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000172 if (Config->Shared) {
173 if (Out<ELFT>::Got->addDynTlsEntry(Body)) {
174 uintX_t Off = Out<ELFT>::Got->getGlobalDynOffset(Body);
175 Out<ELFT>::RelaDyn->addReloc(
176 {Target->TlsModuleIndexRel, Out<ELFT>::Got, Off, false, &Body, 0});
Rafael Espindolaa8777c22016-06-08 21:31:59 +0000177
178 // If the symbol is preemptible we need the dynamic linker to write
179 // the offset too.
Simon Atanasyan9b861182016-06-10 12:26:39 +0000180 if (isPreemptible(Body, Type))
Rafael Espindolaa8777c22016-06-08 21:31:59 +0000181 Out<ELFT>::RelaDyn->addReloc({Target->TlsOffsetRel, Out<ELFT>::Got,
182 Off + (uintX_t)sizeof(uintX_t), false,
183 &Body, 0});
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000184 }
Rafael Espindola664c6522016-09-07 20:37:34 +0000185 C.Relocations.push_back({Expr, Type, Offset, Addend, &Body});
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000186 return 1;
187 }
188
189 // Global-Dynamic relocs can be relaxed to Initial-Exec or Local-Exec
190 // depending on the symbol being locally defined or not.
Simon Atanasyan9a9a3162016-05-28 04:49:57 +0000191 if (isPreemptible(Body, Type)) {
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000192 C.Relocations.push_back(
Rafael Espindola69f54022016-06-04 23:22:34 +0000193 {Target->adjustRelaxExpr(Type, nullptr, R_RELAX_TLS_GD_TO_IE), Type,
Rafael Espindola664c6522016-09-07 20:37:34 +0000194 Offset, Addend, &Body});
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000195 if (!Body.isInGot()) {
196 Out<ELFT>::Got->addEntry(Body);
197 Out<ELFT>::RelaDyn->addReloc({Target->TlsGotRel, Out<ELFT>::Got,
198 Body.getGotOffset<ELFT>(), false, &Body,
199 0});
200 }
Rafael Espindolae1979ae2016-06-04 23:33:31 +0000201 return Target->TlsGdRelaxSkip;
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000202 }
203 C.Relocations.push_back(
Rafael Espindola664c6522016-09-07 20:37:34 +0000204 {Target->adjustRelaxExpr(Type, nullptr, R_RELAX_TLS_GD_TO_LE), Type,
Rafael Espindola69f54022016-06-04 23:22:34 +0000205 Offset, Addend, &Body});
Rafael Espindolaf807d472016-06-04 23:04:39 +0000206 return Target->TlsGdRelaxSkip;
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000207 }
208
209 // Initial-Exec relocs can be relaxed to Local-Exec if the symbol is locally
210 // defined.
211 if (Target->isTlsInitialExecRel(Type) && !Config->Shared &&
Simon Atanasyan9a9a3162016-05-28 04:49:57 +0000212 !isPreemptible(Body, Type)) {
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000213 C.Relocations.push_back(
Rafael Espindola664c6522016-09-07 20:37:34 +0000214 {R_RELAX_TLS_IE_TO_LE, Type, Offset, Addend, &Body});
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000215 return 1;
216 }
217 return 0;
218}
219
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000220template <endianness E> static int16_t readSignedLo16(const uint8_t *Loc) {
221 return read32<E>(Loc) & 0xffff;
222}
223
224template <class RelTy>
225static uint32_t getMipsPairType(const RelTy *Rel, const SymbolBody &Sym) {
226 switch (Rel->getType(Config->Mips64EL)) {
227 case R_MIPS_HI16:
228 return R_MIPS_LO16;
229 case R_MIPS_GOT16:
230 return Sym.isLocal() ? R_MIPS_LO16 : R_MIPS_NONE;
231 case R_MIPS_PCHI16:
232 return R_MIPS_PCLO16;
233 case R_MICROMIPS_HI16:
234 return R_MICROMIPS_LO16;
235 default:
236 return R_MIPS_NONE;
237 }
238}
239
240template <class ELFT, class RelTy>
241static int32_t findMipsPairedAddend(const uint8_t *Buf, const uint8_t *BufLoc,
242 SymbolBody &Sym, const RelTy *Rel,
243 const RelTy *End) {
244 uint32_t SymIndex = Rel->getSymbol(Config->Mips64EL);
245 uint32_t Type = getMipsPairType(Rel, Sym);
246
247 // Some MIPS relocations use addend calculated from addend of the relocation
248 // itself and addend of paired relocation. ABI requires to compute such
249 // combined addend in case of REL relocation record format only.
250 // See p. 4-17 at ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf
251 if (RelTy::IsRela || Type == R_MIPS_NONE)
252 return 0;
253
254 for (const RelTy *RI = Rel; RI != End; ++RI) {
255 if (RI->getType(Config->Mips64EL) != Type)
256 continue;
257 if (RI->getSymbol(Config->Mips64EL) != SymIndex)
258 continue;
259 const endianness E = ELFT::TargetEndianness;
260 return ((read32<E>(BufLoc) & 0xffff) << 16) +
261 readSignedLo16<E>(Buf + RI->r_offset);
262 }
George Rimare6389d12016-06-08 12:22:26 +0000263 warning("can't find matching " + getRelName(Type) + " relocation for " +
264 getRelName(Rel->getType(Config->Mips64EL)));
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000265 return 0;
266}
267
268// True if non-preemptable symbol always has the same value regardless of where
269// the DSO is loaded.
270template <class ELFT> static bool isAbsolute(const SymbolBody &Body) {
271 if (Body.isUndefined())
272 return !Body.isLocal() && Body.symbol()->isWeak();
273 if (const auto *DR = dyn_cast<DefinedRegular<ELFT>>(&Body))
274 return DR->Section == nullptr; // Absolute symbol.
275 return false;
276}
277
278static bool needsPlt(RelExpr Expr) {
Rafael Espindola12dc4462016-06-04 19:11:14 +0000279 return Expr == R_PLT_PC || Expr == R_PPC_PLT_OPD || Expr == R_PLT ||
Peter Smithfb05cd92016-07-08 16:10:27 +0000280 Expr == R_PLT_PAGE_PC || Expr == R_THUNK_PLT_PC;
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000281}
282
283// True if this expression is of the form Sym - X, where X is a position in the
284// file (PC, or GOT for example).
285static bool isRelExpr(RelExpr Expr) {
Rafael Espindola719f55d2016-09-06 13:57:15 +0000286 return Expr == R_PC || Expr == R_GOTREL || Expr == R_GOTREL_FROM_END ||
287 Expr == R_PAGE_PC || Expr == R_RELAX_GOT_PC || Expr == R_THUNK_PC ||
288 Expr == R_THUNK_PLT_PC;
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000289}
290
291template <class ELFT>
292static bool isStaticLinkTimeConstant(RelExpr E, uint32_t Type,
293 const SymbolBody &Body) {
294 // These expressions always compute a constant
295 if (E == R_SIZE || E == R_GOT_FROM_END || E == R_GOT_OFF ||
Simon Atanasyan002e2442016-06-23 15:26:31 +0000296 E == R_MIPS_GOT_LOCAL_PAGE || E == R_MIPS_GOT_OFF || E == R_MIPS_TLSGD ||
297 E == R_GOT_PAGE_PC || E == R_GOT_PC || E == R_PLT_PC || E == R_TLSGD_PC ||
Peter Smithfb05cd92016-07-08 16:10:27 +0000298 E == R_TLSGD || E == R_PPC_PLT_OPD || E == R_TLSDESC_PAGE ||
299 E == R_HINT || E == R_THUNK_PC || E == R_THUNK_PLT_PC)
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000300 return true;
301
302 // These never do, except if the entire file is position dependent or if
303 // only the low bits are used.
Rafael Espindolae37d13b2016-06-02 19:49:53 +0000304 if (E == R_GOT || E == R_PLT || E == R_TLSDESC)
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000305 return Target->usesOnlyLowPageBits(Type) || !Config->Pic;
306
Simon Atanasyan9a9a3162016-05-28 04:49:57 +0000307 if (isPreemptible(Body, Type))
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000308 return false;
309
310 if (!Config->Pic)
311 return true;
312
313 bool AbsVal = isAbsolute<ELFT>(Body) || Body.isTls();
314 bool RelE = isRelExpr(E);
315 if (AbsVal && !RelE)
316 return true;
317 if (!AbsVal && RelE)
318 return true;
319
320 // Relative relocation to an absolute value. This is normally unrepresentable,
321 // but if the relocation refers to a weak undefined symbol, we allow it to
322 // resolve to the image base. This is a little strange, but it allows us to
323 // link function calls to such symbols. Normally such a call will be guarded
324 // with a comparison, which will load a zero from the GOT.
325 if (AbsVal && RelE) {
326 if (Body.isUndefined() && !Body.isLocal() && Body.symbol()->isWeak())
327 return true;
George Rimare6389d12016-06-08 12:22:26 +0000328 error("relocation " + getRelName(Type) +
329 " cannot refer to absolute symbol " + Body.getName());
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000330 return true;
331 }
332
333 return Target->usesOnlyLowPageBits(Type);
334}
335
336static RelExpr toPlt(RelExpr Expr) {
337 if (Expr == R_PPC_OPD)
338 return R_PPC_PLT_OPD;
339 if (Expr == R_PC)
340 return R_PLT_PC;
Rafael Espindola12dc4462016-06-04 19:11:14 +0000341 if (Expr == R_PAGE_PC)
342 return R_PLT_PAGE_PC;
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000343 if (Expr == R_ABS)
344 return R_PLT;
345 return Expr;
346}
347
348static RelExpr fromPlt(RelExpr Expr) {
349 // We decided not to use a plt. Optimize a reference to the plt to a
350 // reference to the symbol itself.
351 if (Expr == R_PLT_PC)
352 return R_PC;
353 if (Expr == R_PPC_PLT_OPD)
354 return R_PPC_OPD;
355 if (Expr == R_PLT)
356 return R_ABS;
357 return Expr;
358}
359
360template <class ELFT> static uint32_t getAlignment(SharedSymbol<ELFT> *SS) {
361 typedef typename ELFT::uint uintX_t;
362
Rui Ueyama434b5612016-07-17 03:11:46 +0000363 uintX_t SecAlign = SS->file()->getSection(SS->Sym)->sh_addralign;
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000364 uintX_t SymValue = SS->Sym.st_value;
365 int TrailingZeros =
366 std::min(countTrailingZeros(SecAlign), countTrailingZeros(SymValue));
367 return 1 << TrailingZeros;
368}
369
370// Reserve space in .bss for copy relocation.
371template <class ELFT> static void addCopyRelSymbol(SharedSymbol<ELFT> *SS) {
372 typedef typename ELFT::uint uintX_t;
373 typedef typename ELFT::Sym Elf_Sym;
374
375 // Copy relocation against zero-sized symbol doesn't make sense.
376 uintX_t SymSize = SS->template getSize<ELFT>();
377 if (SymSize == 0)
Petr Hosek4071b1b2016-08-18 21:55:23 +0000378 fatal("cannot create a copy relocation for symbol " + SS->getName());
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000379
Rui Ueyama424b4082016-06-17 01:18:46 +0000380 uintX_t Alignment = getAlignment(SS);
381 uintX_t Off = alignTo(Out<ELFT>::Bss->getSize(), Alignment);
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000382 Out<ELFT>::Bss->setSize(Off + SymSize);
Rui Ueyama424b4082016-06-17 01:18:46 +0000383 Out<ELFT>::Bss->updateAlignment(Alignment);
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000384 uintX_t Shndx = SS->Sym.st_shndx;
385 uintX_t Value = SS->Sym.st_value;
386 // Look through the DSO's dynamic symbol table for aliases and create a
387 // dynamic symbol for each one. This causes the copy relocation to correctly
388 // interpose any aliases.
Rui Ueyama434b5612016-07-17 03:11:46 +0000389 for (const Elf_Sym &S : SS->file()->getElfSymbols(true)) {
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000390 if (S.st_shndx != Shndx || S.st_value != Value)
391 continue;
392 auto *Alias = dyn_cast_or_null<SharedSymbol<ELFT>>(
Rui Ueyama434b5612016-07-17 03:11:46 +0000393 Symtab<ELFT>::X->find(check(S.getName(SS->file()->getStringTable()))));
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000394 if (!Alias)
395 continue;
396 Alias->OffsetInBss = Off;
397 Alias->NeedsCopyOrPltAddr = true;
398 Alias->symbol()->IsUsedInRegularObj = true;
399 }
400 Out<ELFT>::RelaDyn->addReloc(
401 {Target->CopyRel, Out<ELFT>::Bss, SS->OffsetInBss, false, SS, 0});
402}
403
404template <class ELFT>
Petr Hosek5b4f6c62016-08-22 19:01:53 +0000405static StringRef getSymbolName(const elf::ObjectFile<ELFT> &File,
406 SymbolBody &Body) {
407 if (Body.isLocal() && Body.getNameOffset())
408 return File.getStringTable().data() + Body.getNameOffset();
409 if (!Body.isLocal())
410 return Body.getName();
411 return "";
Petr Hosek4071b1b2016-08-18 21:55:23 +0000412}
413
414template <class ELFT>
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000415static RelExpr adjustExpr(const elf::ObjectFile<ELFT> &File, SymbolBody &Body,
George Rimar5c33b912016-05-25 14:31:37 +0000416 bool IsWrite, RelExpr Expr, uint32_t Type,
Rafael Espindolaf2956a32016-06-17 15:01:50 +0000417 const uint8_t *Data) {
Simon Atanasyan9a9a3162016-05-28 04:49:57 +0000418 bool Preemptible = isPreemptible(Body, Type);
George Rimar5c33b912016-05-25 14:31:37 +0000419 if (Body.isGnuIFunc()) {
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000420 Expr = toPlt(Expr);
George Rimar5c33b912016-05-25 14:31:37 +0000421 } else if (!Preemptible) {
422 if (needsPlt(Expr))
423 Expr = fromPlt(Expr);
George Rimarf10c8292016-06-01 16:45:30 +0000424 if (Expr == R_GOT_PC)
Rafael Espindolaf2956a32016-06-17 15:01:50 +0000425 Expr = Target->adjustRelaxExpr(Type, Data, Expr);
George Rimar5c33b912016-05-25 14:31:37 +0000426 }
Peter Smithfb05cd92016-07-08 16:10:27 +0000427 Expr = Target->getThunkExpr(Expr, Type, File, Body);
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000428
429 if (IsWrite || isStaticLinkTimeConstant<ELFT>(Expr, Type, Body))
430 return Expr;
431
432 // This relocation would require the dynamic linker to write a value to read
433 // only memory. We can hack around it if we are producing an executable and
434 // the refered symbol can be preemepted to refer to the executable.
435 if (Config->Shared || (Config->Pic && !isRelExpr(Expr))) {
Petr Hosek5b4f6c62016-08-22 19:01:53 +0000436 StringRef Name = getSymbolName(File, Body);
George Rimar3ed2b082016-06-10 08:00:01 +0000437 error("can't create dynamic relocation " + getRelName(Type) +
Petr Hosek5b4f6c62016-08-22 19:01:53 +0000438 " against " + (Name.empty() ? "readonly segment" : "symbol " + Name));
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000439 return Expr;
440 }
441 if (Body.getVisibility() != STV_DEFAULT) {
Petr Hosek4071b1b2016-08-18 21:55:23 +0000442 error("cannot preempt symbol " + Body.getName());
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000443 return Expr;
444 }
445 if (Body.isObject()) {
446 // Produce a copy relocation.
447 auto *B = cast<SharedSymbol<ELFT>>(&Body);
448 if (!B->needsCopy())
449 addCopyRelSymbol(B);
450 return Expr;
451 }
452 if (Body.isFunc()) {
453 // This handles a non PIC program call to function in a shared library. In
454 // an ideal world, we could just report an error saying the relocation can
455 // overflow at runtime. In the real world with glibc, crt1.o has a
456 // R_X86_64_PC32 pointing to libc.so.
457 //
458 // The general idea on how to handle such cases is to create a PLT entry and
459 // use that as the function value.
460 //
461 // For the static linking part, we just return a plt expr and everything
462 // else will use the the PLT entry as the address.
463 //
464 // The remaining problem is making sure pointer equality still works. We
465 // need the help of the dynamic linker for that. We let it know that we have
466 // a direct reference to a so symbol by creating an undefined symbol with a
467 // non zero st_value. Seeing that, the dynamic linker resolves the symbol to
468 // the value of the symbol we created. This is true even for got entries, so
469 // pointer equality is maintained. To avoid an infinite loop, the only entry
470 // that points to the real function is a dedicated got entry used by the
471 // plt. That is identified by special relocation types (R_X86_64_JUMP_SLOT,
472 // R_386_JMP_SLOT, etc).
473 Body.NeedsCopyOrPltAddr = true;
474 return toPlt(Expr);
475 }
Petr Hosek4071b1b2016-08-18 21:55:23 +0000476 error("symbol " + Body.getName() + " is missing type");
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000477
478 return Expr;
479}
480
481template <class ELFT, class RelTy>
482static typename ELFT::uint computeAddend(const elf::ObjectFile<ELFT> &File,
483 const uint8_t *SectionData,
484 const RelTy *End, const RelTy &RI,
485 RelExpr Expr, SymbolBody &Body) {
486 typedef typename ELFT::uint uintX_t;
487
488 uint32_t Type = RI.getType(Config->Mips64EL);
489 uintX_t Addend = getAddend<ELFT>(RI);
490 const uint8_t *BufLoc = SectionData + RI.r_offset;
491 if (!RelTy::IsRela)
492 Addend += Target->getImplicitAddend(BufLoc, Type);
493 if (Config->EMachine == EM_MIPS) {
494 Addend += findMipsPairedAddend<ELFT>(SectionData, BufLoc, Body, &RI, End);
495 if (Type == R_MIPS_LO16 && Expr == R_PC)
496 // R_MIPS_LO16 expression has R_PC type iif the target is _gp_disp
497 // symbol. In that case we should use the following formula for
498 // calculation "AHL + GP - P + 4". Let's add 4 right here.
499 // For details see p. 4-19 at
500 // ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf
501 Addend += 4;
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000502 if (Expr == R_GOTREL) {
503 Addend -= MipsGPOffset;
504 if (Body.isLocal())
505 Addend += File.getMipsGp0();
506 }
507 }
508 if (Config->Pic && Config->EMachine == EM_PPC64 && Type == R_PPC64_TOC)
509 Addend += getPPC64TocBase();
510 return Addend;
511}
512
513// The reason we have to do this early scan is as follows
514// * To mmap the output file, we need to know the size
515// * For that, we need to know how many dynamic relocs we will have.
516// It might be possible to avoid this by outputting the file with write:
517// * Write the allocated output sections, computing addresses.
518// * Apply relocations, recording which ones require a dynamic reloc.
519// * Write the dynamic relocations.
520// * Write the rest of the file.
521// This would have some drawbacks. For example, we would only know if .rela.dyn
522// is needed after applying relocations. If it is, it will go after rw and rx
523// sections. Given that it is ro, we will need an extra PT_LOAD. This
524// complicates things for the dynamic linker and means we would have to reserve
525// space for the extra PT_LOAD even if we end up not using it.
526template <class ELFT, class RelTy>
Rui Ueyama2487f192016-05-25 03:40:02 +0000527static void scanRelocs(InputSectionBase<ELFT> &C, ArrayRef<RelTy> Rels) {
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000528 typedef typename ELFT::uint uintX_t;
529
George Rimardb0168d2016-06-09 15:17:29 +0000530 bool IsWrite = C.getSectionHdr()->sh_flags & SHF_WRITE;
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000531
532 auto AddDyn = [=](const DynamicReloc<ELFT> &Reloc) {
533 Out<ELFT>::RelaDyn->addReloc(Reloc);
534 };
535
536 const elf::ObjectFile<ELFT> &File = *C.getFile();
Rafael Espindolac7e1e032016-09-12 13:13:53 +0000537 ArrayRef<uint8_t> SectionData = C.Data;
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000538 const uint8_t *Buf = SectionData.begin();
Rafael Espindola5b7a79f2016-07-20 11:47:50 +0000539
Rafael Espindola3abe3aa2016-07-21 21:15:32 +0000540 ArrayRef<EhSectionPiece> Pieces;
541 if (auto *Eh = dyn_cast<EhInputSection<ELFT>>(&C))
542 Pieces = Eh->Pieces;
543
544 ArrayRef<EhSectionPiece>::iterator PieceI = Pieces.begin();
545 ArrayRef<EhSectionPiece>::iterator PieceE = Pieces.end();
Rafael Espindola5b7a79f2016-07-20 11:47:50 +0000546
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000547 for (auto I = Rels.begin(), E = Rels.end(); I != E; ++I) {
548 const RelTy &RI = *I;
549 SymbolBody &Body = File.getRelocTargetSym(RI);
550 uint32_t Type = RI.getType(Config->Mips64EL);
551
552 RelExpr Expr = Target->getRelExpr(Type, Body);
Rafael Espindola678844e2016-06-17 15:42:36 +0000553 bool Preemptible = isPreemptible(Body, Type);
554 Expr = adjustExpr(File, Body, IsWrite, Expr, Type, Buf + RI.r_offset);
555 if (HasError)
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000556 continue;
557
Rui Ueyama809d8e22016-06-23 04:33:42 +0000558 // Skip a relocation that points to a dead piece
Rafael Espindola5b7a79f2016-07-20 11:47:50 +0000559 // in a eh_frame section.
560 while (PieceI != PieceE &&
561 (PieceI->InputOff + PieceI->size() <= RI.r_offset))
562 ++PieceI;
Rafael Espindola0f7ceda2016-07-20 17:58:07 +0000563
564 // Compute the offset of this section in the output section. We do it here
565 // to try to compute it only once.
566 uintX_t Offset;
567 if (PieceI != PieceE) {
568 assert(PieceI->InputOff <= RI.r_offset && "Relocation not in any piece");
George Rimare37dde82016-07-21 15:35:06 +0000569 if (PieceI->OutputOff == (size_t)-1)
Rafael Espindola0f7ceda2016-07-20 17:58:07 +0000570 continue;
571 Offset = PieceI->OutputOff + RI.r_offset - PieceI->InputOff;
Rafael Espindola0f7ceda2016-07-20 17:58:07 +0000572 } else {
George Rimar3e6833b2016-08-19 15:46:28 +0000573 Offset = RI.r_offset;
Rafael Espindola0f7ceda2016-07-20 17:58:07 +0000574 }
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000575
576 // This relocation does not require got entry, but it is relative to got and
577 // needs it to be created. Here we request for that.
Rafael Espindola79202c32016-08-31 23:24:11 +0000578 if (Expr == R_GOTONLY_PC || Expr == R_GOTONLY_PC_FROM_END ||
579 Expr == R_GOTREL || Expr == R_GOTREL_FROM_END || Expr == R_PPC_TOC)
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000580 Out<ELFT>::Got->HasGotOffRel = true;
581
582 uintX_t Addend = computeAddend(File, Buf, E, RI, Expr, Body);
583
Rafael Espindola0f7ceda2016-07-20 17:58:07 +0000584 if (unsigned Processed =
585 handleTlsRelocation<ELFT>(Type, Body, C, Offset, Addend, Expr)) {
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000586 I += (Processed - 1);
587 continue;
588 }
589
Rafael Espindolae37d13b2016-06-02 19:49:53 +0000590 // Ignore "hint" relocation because it is for optional code optimization.
591 if (Expr == R_HINT)
592 continue;
593
Peter Smithfb05cd92016-07-08 16:10:27 +0000594 if (needsPlt(Expr) || Expr == R_THUNK_ABS || Expr == R_THUNK_PC ||
595 Expr == R_THUNK_PLT_PC || refersToGotEntry(Expr) ||
Simon Atanasyan9a9a3162016-05-28 04:49:57 +0000596 !isPreemptible(Body, Type)) {
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000597 // If the relocation points to something in the file, we can process it.
598 bool Constant = isStaticLinkTimeConstant<ELFT>(Expr, Type, Body);
599
600 // If the output being produced is position independent, the final value
601 // is still not known. In that case we still need some help from the
602 // dynamic linker. We can however do better than just copying the incoming
603 // relocation. We can process some of it and and just ask the dynamic
604 // linker to add the load address.
605 if (!Constant)
Rafael Espindola0f7ceda2016-07-20 17:58:07 +0000606 AddDyn({Target->RelativeRel, &C, Offset, true, &Body, Addend});
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000607
608 // If the produced value is a constant, we just remember to write it
609 // when outputting this section. We also have to do it if the format
610 // uses Elf_Rel, since in that case the written value is the addend.
611 if (Constant || !RelTy::IsRela)
Rafael Espindola664c6522016-09-07 20:37:34 +0000612 C.Relocations.push_back({Expr, Type, Offset, Addend, &Body});
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000613 } else {
614 // We don't know anything about the finaly symbol. Just ask the dynamic
615 // linker to handle the relocation for us.
Rafael Espindola0f7ceda2016-07-20 17:58:07 +0000616 AddDyn({Target->getDynRel(Type), &C, Offset, false, &Body, Addend});
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000617 // MIPS ABI turns using of GOT and dynamic relocations inside out.
618 // While regular ABI uses dynamic relocations to fill up GOT entries
619 // MIPS ABI requires dynamic linker to fills up GOT entries using
620 // specially sorted dynamic symbol table. This affects even dynamic
621 // relocations against symbols which do not require GOT entries
622 // creation explicitly, i.e. do not have any GOT-relocations. So if
623 // a preemptible symbol has a dynamic relocation we anyway have
624 // to create a GOT entry for it.
625 // If a non-preemptible symbol has a dynamic relocation against it,
626 // dynamic linker takes it st_value, adds offset and writes down
627 // result of the dynamic relocation. In case of preemptible symbol
628 // dynamic linker performs symbol resolution, writes the symbol value
629 // to the GOT entry and reads the GOT entry when it needs to perform
630 // a dynamic relocation.
631 // ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf p.4-19
Simon Atanasyan41325112016-06-19 21:39:37 +0000632 if (Config->EMachine == EM_MIPS)
633 Out<ELFT>::Got->addMipsEntry(Body, Addend, Expr);
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000634 continue;
635 }
636
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000637 // At this point we are done with the relocated position. Some relocations
638 // also require us to create a got or plt entry.
639
640 // If a relocation needs PLT, we create a PLT and a GOT slot for the symbol.
641 if (needsPlt(Expr)) {
642 if (Body.isInPlt())
643 continue;
644 Out<ELFT>::Plt->addEntry(Body);
645
646 uint32_t Rel;
647 if (Body.isGnuIFunc() && !Preemptible)
648 Rel = Target->IRelativeRel;
649 else
650 Rel = Target->PltRel;
651
652 Out<ELFT>::GotPlt->addEntry(Body);
653 Out<ELFT>::RelaPlt->addReloc({Rel, Out<ELFT>::GotPlt,
654 Body.getGotPltOffset<ELFT>(), !Preemptible,
655 &Body, 0});
656 continue;
657 }
658
659 if (refersToGotEntry(Expr)) {
Simon Atanasyan41325112016-06-19 21:39:37 +0000660 if (Config->EMachine == EM_MIPS) {
Simon Atanasyanaf52f6a2016-09-08 09:07:12 +0000661 // MIPS ABI has special rules to process GOT entries and doesn't
662 // require relocation entries for them. A special case is TLS
663 // relocations. In that case dynamic loader applies dynamic
664 // relocations to initialize TLS GOT entries.
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000665 // See "Global Offset Table" in Chapter 5 in the following document
666 // for detailed description:
667 // ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf
Simon Atanasyan41325112016-06-19 21:39:37 +0000668 Out<ELFT>::Got->addMipsEntry(Body, Addend, Expr);
Simon Atanasyan919a58c2016-09-08 09:07:19 +0000669 if (Body.isTls() && Body.isPreemptible())
Simon Atanasyan002e2442016-06-23 15:26:31 +0000670 AddDyn({Target->TlsGotRel, Out<ELFT>::Got, Body.getGotOffset<ELFT>(),
Simon Atanasyan919a58c2016-09-08 09:07:19 +0000671 false, &Body, 0});
Simon Atanasyan41325112016-06-19 21:39:37 +0000672 continue;
673 }
674
675 if (Body.isInGot())
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000676 continue;
677
Simon Atanasyan41325112016-06-19 21:39:37 +0000678 Out<ELFT>::Got->addEntry(Body);
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000679 if (Preemptible || (Config->Pic && !isAbsolute<ELFT>(Body))) {
680 uint32_t DynType;
681 if (Body.isTls())
682 DynType = Target->TlsGotRel;
683 else if (Preemptible)
684 DynType = Target->GotRel;
685 else
686 DynType = Target->RelativeRel;
687 AddDyn({DynType, Out<ELFT>::Got, Body.getGotOffset<ELFT>(),
688 !Preemptible, &Body, 0});
689 }
690 continue;
691 }
692 }
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000693}
694
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000695template <class ELFT>
696void scanRelocations(InputSectionBase<ELFT> &S,
697 const typename ELFT::Shdr &RelSec) {
698 ELFFile<ELFT> &EObj = S.getFile()->getObj();
699 if (RelSec.sh_type == SHT_RELA)
700 scanRelocs(S, EObj.relas(&RelSec));
701 else
702 scanRelocs(S, EObj.rels(&RelSec));
703}
704
Rafael Espindola0f7ceda2016-07-20 17:58:07 +0000705template <class ELFT, class RelTy>
706static void createThunks(InputSectionBase<ELFT> &C, ArrayRef<RelTy> Rels) {
707 const elf::ObjectFile<ELFT> &File = *C.getFile();
708 for (const RelTy &Rel : Rels) {
709 SymbolBody &Body = File.getRelocTargetSym(Rel);
710 uint32_t Type = Rel.getType(Config->Mips64EL);
711 RelExpr Expr = Target->getRelExpr(Type, Body);
712 if (!isPreemptible(Body, Type) && needsPlt(Expr))
713 Expr = fromPlt(Expr);
714 Expr = Target->getThunkExpr(Expr, Type, File, Body);
715 // Some targets might require creation of thunks for relocations.
716 // Now we support only MIPS which requires LA25 thunk to call PIC
717 // code from non-PIC one, and ARM which requires interworking.
718 if (Expr == R_THUNK_ABS || Expr == R_THUNK_PC || Expr == R_THUNK_PLT_PC) {
719 auto *Sec = cast<InputSection<ELFT>>(&C);
720 addThunk<ELFT>(Type, Body, *Sec);
721 }
722 }
723}
724
725template <class ELFT>
726void createThunks(InputSectionBase<ELFT> &S,
727 const typename ELFT::Shdr &RelSec) {
728 ELFFile<ELFT> &EObj = S.getFile()->getObj();
729 if (RelSec.sh_type == SHT_RELA)
730 createThunks(S, EObj.relas(&RelSec));
731 else
732 createThunks(S, EObj.rels(&RelSec));
733}
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000734
735template void scanRelocations<ELF32LE>(InputSectionBase<ELF32LE> &,
736 const ELF32LE::Shdr &);
737template void scanRelocations<ELF32BE>(InputSectionBase<ELF32BE> &,
738 const ELF32BE::Shdr &);
739template void scanRelocations<ELF64LE>(InputSectionBase<ELF64LE> &,
740 const ELF64LE::Shdr &);
741template void scanRelocations<ELF64BE>(InputSectionBase<ELF64BE> &,
742 const ELF64BE::Shdr &);
Rafael Espindola0f7ceda2016-07-20 17:58:07 +0000743
744template void createThunks<ELF32LE>(InputSectionBase<ELF32LE> &,
745 const ELF32LE::Shdr &);
746template void createThunks<ELF32BE>(InputSectionBase<ELF32BE> &,
747 const ELF32BE::Shdr &);
748template void createThunks<ELF64LE>(InputSectionBase<ELF64LE> &,
749 const ELF64LE::Shdr &);
750template void createThunks<ELF64BE>(InputSectionBase<ELF64BE> &,
751 const ELF64BE::Shdr &);
Rui Ueyama0fcdc732016-05-24 20:24:43 +0000752}
753}