1 //===- Relocations.cpp ----------------------------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file contains platform-independent functions to process relocations. 10 // I'll describe the overview of this file here. 11 // 12 // Simple relocations are easy to handle for the linker. For example, 13 // for R_X86_64_PC64 relocs, the linker just has to fix up locations 14 // with the relative offsets to the target symbols. It would just be 15 // reading records from relocation sections and applying them to output. 16 // 17 // But not all relocations are that easy to handle. For example, for 18 // R_386_GOTOFF relocs, the linker has to create new GOT entries for 19 // symbols if they don't exist, and fix up locations with GOT entry 20 // offsets from the beginning of GOT section. So there is more than 21 // fixing addresses in relocation processing. 22 // 23 // ELF defines a large number of complex relocations. 24 // 25 // The functions in this file analyze relocations and do whatever needs 26 // to be done. It includes, but not limited to, the following. 27 // 28 // - create GOT/PLT entries 29 // - create new relocations in .dynsym to let the dynamic linker resolve 30 // them at runtime (since ELF supports dynamic linking, not all 31 // relocations can be resolved at link-time) 32 // - create COPY relocs and reserve space in .bss 33 // - replace expensive relocs (in terms of runtime cost) with cheap ones 34 // - error out infeasible combinations such as PIC and non-relative relocs 35 // 36 // Note that the functions in this file don't actually apply relocations 37 // because it doesn't know about the output file nor the output file buffer. 38 // It instead stores Relocation objects to InputSection's Relocations 39 // vector to let it apply later in InputSection::writeTo. 40 // 41 //===----------------------------------------------------------------------===// 42 43 #include "Relocations.h" 44 #include "Config.h" 45 #include "LinkerScript.h" 46 #include "OutputSections.h" 47 #include "SymbolTable.h" 48 #include "Symbols.h" 49 #include "SyntheticSections.h" 50 #include "Target.h" 51 #include "Thunks.h" 52 #include "lld/Common/ErrorHandler.h" 53 #include "lld/Common/Memory.h" 54 #include "lld/Common/Strings.h" 55 #include "llvm/ADT/SmallSet.h" 56 #include "llvm/Demangle/Demangle.h" 57 #include "llvm/Support/Endian.h" 58 #include "llvm/Support/raw_ostream.h" 59 #include <algorithm> 60 61 using namespace llvm; 62 using namespace llvm::ELF; 63 using namespace llvm::object; 64 using namespace llvm::support::endian; 65 66 namespace lld { 67 namespace elf { 68 static Optional<std::string> getLinkerScriptLocation(const Symbol &sym) { 69 for (BaseCommand *base : script->sectionCommands) 70 if (auto *cmd = dyn_cast<SymbolAssignment>(base)) 71 if (cmd->sym == &sym) 72 return cmd->location; 73 return None; 74 } 75 76 static std::string getDefinedLocation(const Symbol &sym) { 77 std::string msg = "\n>>> defined in "; 78 if (sym.file) 79 msg += toString(sym.file); 80 else if (Optional<std::string> loc = getLinkerScriptLocation(sym)) 81 msg += *loc; 82 return msg; 83 } 84 85 // Construct a message in the following format. 86 // 87 // >>> defined in /home/alice/src/foo.o 88 // >>> referenced by bar.c:12 (/home/alice/src/bar.c:12) 89 // >>> /home/alice/src/bar.o:(.text+0x1) 90 static std::string getLocation(InputSectionBase &s, const Symbol &sym, 91 uint64_t off) { 92 std::string msg = getDefinedLocation(sym) + "\n>>> referenced by "; 93 std::string src = s.getSrcMsg(sym, off); 94 if (!src.empty()) 95 msg += src + "\n>>> "; 96 return msg + s.getObjMsg(off); 97 } 98 99 void reportRangeError(uint8_t *loc, const Relocation &rel, const Twine &v, 100 int64_t min, uint64_t max) { 101 ErrorPlace errPlace = getErrorPlace(loc); 102 std::string hint; 103 if (rel.sym && !rel.sym->isLocal()) 104 hint = "; references " + lld::toString(*rel.sym) + 105 getDefinedLocation(*rel.sym); 106 107 if (errPlace.isec && errPlace.isec->name.startswith(".debug")) 108 hint += "; consider recompiling with -fdebug-types-section to reduce size " 109 "of debug sections"; 110 111 errorOrWarn(errPlace.loc + "relocation " + lld::toString(rel.type) + 112 " out of range: " + v.str() + " is not in [" + Twine(min).str() + 113 ", " + Twine(max).str() + "]" + hint); 114 } 115 116 namespace { 117 // Build a bitmask with one bit set for each RelExpr. 118 // 119 // Constexpr function arguments can't be used in static asserts, so we 120 // use template arguments to build the mask. 121 // But function template partial specializations don't exist (needed 122 // for base case of the recursion), so we need a dummy struct. 123 template <RelExpr... Exprs> struct RelExprMaskBuilder { 124 static inline uint64_t build() { return 0; } 125 }; 126 127 // Specialization for recursive case. 128 template <RelExpr Head, RelExpr... Tail> 129 struct RelExprMaskBuilder<Head, Tail...> { 130 static inline uint64_t build() { 131 static_assert(0 <= Head && Head < 64, 132 "RelExpr is too large for 64-bit mask!"); 133 return (uint64_t(1) << Head) | RelExprMaskBuilder<Tail...>::build(); 134 } 135 }; 136 } // namespace 137 138 // Return true if `Expr` is one of `Exprs`. 139 // There are fewer than 64 RelExpr's, so we can represent any set of 140 // RelExpr's as a constant bit mask and test for membership with a 141 // couple cheap bitwise operations. 142 template <RelExpr... Exprs> bool oneof(RelExpr expr) { 143 assert(0 <= expr && (int)expr < 64 && 144 "RelExpr is too large for 64-bit mask!"); 145 return (uint64_t(1) << expr) & RelExprMaskBuilder<Exprs...>::build(); 146 } 147 148 // This function is similar to the `handleTlsRelocation`. MIPS does not 149 // support any relaxations for TLS relocations so by factoring out MIPS 150 // handling in to the separate function we can simplify the code and do not 151 // pollute other `handleTlsRelocation` by MIPS `ifs` statements. 152 // Mips has a custom MipsGotSection that handles the writing of GOT entries 153 // without dynamic relocations. 154 static unsigned handleMipsTlsRelocation(RelType type, Symbol &sym, 155 InputSectionBase &c, uint64_t offset, 156 int64_t addend, RelExpr expr) { 157 if (expr == R_MIPS_TLSLD) { 158 in.mipsGot->addTlsIndex(*c.file); 159 c.relocations.push_back({expr, type, offset, addend, &sym}); 160 return 1; 161 } 162 if (expr == R_MIPS_TLSGD) { 163 in.mipsGot->addDynTlsEntry(*c.file, sym); 164 c.relocations.push_back({expr, type, offset, addend, &sym}); 165 return 1; 166 } 167 return 0; 168 } 169 170 // Notes about General Dynamic and Local Dynamic TLS models below. They may 171 // require the generation of a pair of GOT entries that have associated dynamic 172 // relocations. The pair of GOT entries created are of the form GOT[e0] Module 173 // Index (Used to find pointer to TLS block at run-time) GOT[e1] Offset of 174 // symbol in TLS block. 175 // 176 // Returns the number of relocations processed. 177 template <class ELFT> 178 static unsigned 179 handleTlsRelocation(RelType type, Symbol &sym, InputSectionBase &c, 180 typename ELFT::uint offset, int64_t addend, RelExpr expr) { 181 if (!sym.isTls()) 182 return 0; 183 184 if (config->emachine == EM_MIPS) 185 return handleMipsTlsRelocation(type, sym, c, offset, addend, expr); 186 187 if (oneof<R_AARCH64_TLSDESC_PAGE, R_TLSDESC, R_TLSDESC_CALL, R_TLSDESC_PC>( 188 expr) && 189 config->shared) { 190 if (in.got->addDynTlsEntry(sym)) { 191 uint64_t off = in.got->getGlobalDynOffset(sym); 192 mainPart->relaDyn->addReloc( 193 {target->tlsDescRel, in.got, off, !sym.isPreemptible, &sym, 0}); 194 } 195 if (expr != R_TLSDESC_CALL) 196 c.relocations.push_back({expr, type, offset, addend, &sym}); 197 return 1; 198 } 199 200 bool canRelax = config->emachine != EM_ARM && 201 config->emachine != EM_HEXAGON && 202 config->emachine != EM_RISCV; 203 204 // If we are producing an executable and the symbol is non-preemptable, it 205 // must be defined and the code sequence can be relaxed to use Local-Exec. 206 // 207 // ARM and RISC-V do not support any relaxations for TLS relocations, however, 208 // we can omit the DTPMOD dynamic relocations and resolve them at link time 209 // because them are always 1. This may be necessary for static linking as 210 // DTPMOD may not be expected at load time. 211 bool isLocalInExecutable = !sym.isPreemptible && !config->shared; 212 213 // Local Dynamic is for access to module local TLS variables, while still 214 // being suitable for being dynamically loaded via dlopen. GOT[e0] is the 215 // module index, with a special value of 0 for the current module. GOT[e1] is 216 // unused. There only needs to be one module index entry. 217 if (oneof<R_TLSLD_GOT, R_TLSLD_GOTPLT, R_TLSLD_PC, R_TLSLD_HINT>( 218 expr)) { 219 // Local-Dynamic relocs can be relaxed to Local-Exec. 220 if (canRelax && !config->shared) { 221 c.relocations.push_back( 222 {target->adjustRelaxExpr(type, nullptr, R_RELAX_TLS_LD_TO_LE), type, 223 offset, addend, &sym}); 224 return target->getTlsGdRelaxSkip(type); 225 } 226 if (expr == R_TLSLD_HINT) 227 return 1; 228 if (in.got->addTlsIndex()) { 229 if (isLocalInExecutable) 230 in.got->relocations.push_back( 231 {R_ADDEND, target->symbolicRel, in.got->getTlsIndexOff(), 1, &sym}); 232 else 233 mainPart->relaDyn->addReloc(target->tlsModuleIndexRel, in.got, 234 in.got->getTlsIndexOff(), nullptr); 235 } 236 c.relocations.push_back({expr, type, offset, addend, &sym}); 237 return 1; 238 } 239 240 // Local-Dynamic relocs can be relaxed to Local-Exec. 241 if (expr == R_DTPREL && !config->shared) { 242 c.relocations.push_back( 243 {target->adjustRelaxExpr(type, nullptr, R_RELAX_TLS_LD_TO_LE), type, 244 offset, addend, &sym}); 245 return 1; 246 } 247 248 // Local-Dynamic sequence where offset of tls variable relative to dynamic 249 // thread pointer is stored in the got. This cannot be relaxed to Local-Exec. 250 if (expr == R_TLSLD_GOT_OFF) { 251 if (!sym.isInGot()) { 252 in.got->addEntry(sym); 253 uint64_t off = sym.getGotOffset(); 254 in.got->relocations.push_back( 255 {R_ABS, target->tlsOffsetRel, off, 0, &sym}); 256 } 257 c.relocations.push_back({expr, type, offset, addend, &sym}); 258 return 1; 259 } 260 261 if (oneof<R_AARCH64_TLSDESC_PAGE, R_TLSDESC, R_TLSDESC_CALL, R_TLSDESC_PC, 262 R_TLSGD_GOT, R_TLSGD_GOTPLT, R_TLSGD_PC>(expr)) { 263 if (!canRelax || config->shared) { 264 if (in.got->addDynTlsEntry(sym)) { 265 uint64_t off = in.got->getGlobalDynOffset(sym); 266 267 if (isLocalInExecutable) 268 // Write one to the GOT slot. 269 in.got->relocations.push_back( 270 {R_ADDEND, target->symbolicRel, off, 1, &sym}); 271 else 272 mainPart->relaDyn->addReloc(target->tlsModuleIndexRel, in.got, off, &sym); 273 274 // If the symbol is preemptible we need the dynamic linker to write 275 // the offset too. 276 uint64_t offsetOff = off + config->wordsize; 277 if (sym.isPreemptible) 278 mainPart->relaDyn->addReloc(target->tlsOffsetRel, in.got, offsetOff, 279 &sym); 280 else 281 in.got->relocations.push_back( 282 {R_ABS, target->tlsOffsetRel, offsetOff, 0, &sym}); 283 } 284 c.relocations.push_back({expr, type, offset, addend, &sym}); 285 return 1; 286 } 287 288 // Global-Dynamic relocs can be relaxed to Initial-Exec or Local-Exec 289 // depending on the symbol being locally defined or not. 290 if (sym.isPreemptible) { 291 c.relocations.push_back( 292 {target->adjustRelaxExpr(type, nullptr, R_RELAX_TLS_GD_TO_IE), type, 293 offset, addend, &sym}); 294 if (!sym.isInGot()) { 295 in.got->addEntry(sym); 296 mainPart->relaDyn->addReloc(target->tlsGotRel, in.got, sym.getGotOffset(), 297 &sym); 298 } 299 } else { 300 c.relocations.push_back( 301 {target->adjustRelaxExpr(type, nullptr, R_RELAX_TLS_GD_TO_LE), type, 302 offset, addend, &sym}); 303 } 304 return target->getTlsGdRelaxSkip(type); 305 } 306 307 // Initial-Exec relocs can be relaxed to Local-Exec if the symbol is locally 308 // defined. 309 if (oneof<R_GOT, R_GOTPLT, R_GOT_PC, R_AARCH64_GOT_PAGE_PC, R_GOT_OFF, 310 R_TLSIE_HINT>(expr) && 311 canRelax && isLocalInExecutable) { 312 c.relocations.push_back({R_RELAX_TLS_IE_TO_LE, type, offset, addend, &sym}); 313 return 1; 314 } 315 316 if (expr == R_TLSIE_HINT) 317 return 1; 318 return 0; 319 } 320 321 static RelType getMipsPairType(RelType type, bool isLocal) { 322 switch (type) { 323 case R_MIPS_HI16: 324 return R_MIPS_LO16; 325 case R_MIPS_GOT16: 326 // In case of global symbol, the R_MIPS_GOT16 relocation does not 327 // have a pair. Each global symbol has a unique entry in the GOT 328 // and a corresponding instruction with help of the R_MIPS_GOT16 329 // relocation loads an address of the symbol. In case of local 330 // symbol, the R_MIPS_GOT16 relocation creates a GOT entry to hold 331 // the high 16 bits of the symbol's value. A paired R_MIPS_LO16 332 // relocations handle low 16 bits of the address. That allows 333 // to allocate only one GOT entry for every 64 KBytes of local data. 334 return isLocal ? R_MIPS_LO16 : R_MIPS_NONE; 335 case R_MICROMIPS_GOT16: 336 return isLocal ? R_MICROMIPS_LO16 : R_MIPS_NONE; 337 case R_MIPS_PCHI16: 338 return R_MIPS_PCLO16; 339 case R_MICROMIPS_HI16: 340 return R_MICROMIPS_LO16; 341 default: 342 return R_MIPS_NONE; 343 } 344 } 345 346 // True if non-preemptable symbol always has the same value regardless of where 347 // the DSO is loaded. 348 static bool isAbsolute(const Symbol &sym) { 349 if (sym.isUndefWeak()) 350 return true; 351 if (const auto *dr = dyn_cast<Defined>(&sym)) 352 return dr->section == nullptr; // Absolute symbol. 353 return false; 354 } 355 356 static bool isAbsoluteValue(const Symbol &sym) { 357 return isAbsolute(sym) || sym.isTls(); 358 } 359 360 // Returns true if Expr refers a PLT entry. 361 static bool needsPlt(RelExpr expr) { 362 return oneof<R_PLT_PC, R_PPC32_PLTREL, R_PPC64_CALL_PLT, R_PLT>(expr); 363 } 364 365 // Returns true if Expr refers a GOT entry. Note that this function 366 // returns false for TLS variables even though they need GOT, because 367 // TLS variables uses GOT differently than the regular variables. 368 static bool needsGot(RelExpr expr) { 369 return oneof<R_GOT, R_GOT_OFF, R_MIPS_GOT_LOCAL_PAGE, R_MIPS_GOT_OFF, 370 R_MIPS_GOT_OFF32, R_AARCH64_GOT_PAGE_PC, R_GOT_PC, R_GOTPLT>( 371 expr); 372 } 373 374 // True if this expression is of the form Sym - X, where X is a position in the 375 // file (PC, or GOT for example). 376 static bool isRelExpr(RelExpr expr) { 377 return oneof<R_PC, R_GOTREL, R_GOTPLTREL, R_MIPS_GOTREL, R_PPC64_CALL, 378 R_PPC64_RELAX_TOC, R_AARCH64_PAGE_PC, R_RELAX_GOT_PC, 379 R_RISCV_PC_INDIRECT>(expr); 380 } 381 382 // Returns true if a given relocation can be computed at link-time. 383 // 384 // For instance, we know the offset from a relocation to its target at 385 // link-time if the relocation is PC-relative and refers a 386 // non-interposable function in the same executable. This function 387 // will return true for such relocation. 388 // 389 // If this function returns false, that means we need to emit a 390 // dynamic relocation so that the relocation will be fixed at load-time. 391 static bool isStaticLinkTimeConstant(RelExpr e, RelType type, const Symbol &sym, 392 InputSectionBase &s, uint64_t relOff) { 393 // These expressions always compute a constant 394 if (oneof<R_DTPREL, R_GOTPLT, R_GOT_OFF, R_TLSLD_GOT_OFF, 395 R_MIPS_GOT_LOCAL_PAGE, R_MIPS_GOTREL, R_MIPS_GOT_OFF, 396 R_MIPS_GOT_OFF32, R_MIPS_GOT_GP_PC, R_MIPS_TLSGD, 397 R_AARCH64_GOT_PAGE_PC, R_GOT_PC, R_GOTONLY_PC, R_GOTPLTONLY_PC, 398 R_PLT_PC, R_TLSGD_GOT, R_TLSGD_GOTPLT, R_TLSGD_PC, R_PPC32_PLTREL, 399 R_PPC64_CALL_PLT, R_PPC64_RELAX_TOC, R_RISCV_ADD, R_TLSDESC_CALL, 400 R_TLSDESC_PC, R_AARCH64_TLSDESC_PAGE, R_TLSLD_HINT, R_TLSIE_HINT>( 401 e)) 402 return true; 403 404 // These never do, except if the entire file is position dependent or if 405 // only the low bits are used. 406 if (e == R_GOT || e == R_PLT || e == R_TLSDESC) 407 return target->usesOnlyLowPageBits(type) || !config->isPic; 408 409 if (sym.isPreemptible) 410 return false; 411 if (!config->isPic) 412 return true; 413 414 // The size of a non preemptible symbol is a constant. 415 if (e == R_SIZE) 416 return true; 417 418 // For the target and the relocation, we want to know if they are 419 // absolute or relative. 420 bool absVal = isAbsoluteValue(sym); 421 bool relE = isRelExpr(e); 422 if (absVal && !relE) 423 return true; 424 if (!absVal && relE) 425 return true; 426 if (!absVal && !relE) 427 return target->usesOnlyLowPageBits(type); 428 429 assert(absVal && relE); 430 431 // Allow R_PLT_PC (optimized to R_PC here) to a hidden undefined weak symbol 432 // in PIC mode. This is a little strange, but it allows us to link function 433 // calls to such symbols (e.g. glibc/stdlib/exit.c:__run_exit_handlers). 434 // Normally such a call will be guarded with a comparison, which will load a 435 // zero from the GOT. 436 if (sym.isUndefWeak()) 437 return true; 438 439 // We set the final symbols values for linker script defined symbols later. 440 // They always can be computed as a link time constant. 441 if (sym.scriptDefined) 442 return true; 443 444 error("relocation " + toString(type) + " cannot refer to absolute symbol: " + 445 toString(sym) + getLocation(s, sym, relOff)); 446 return true; 447 } 448 449 static RelExpr toPlt(RelExpr expr) { 450 switch (expr) { 451 case R_PPC64_CALL: 452 return R_PPC64_CALL_PLT; 453 case R_PC: 454 return R_PLT_PC; 455 case R_ABS: 456 return R_PLT; 457 default: 458 return expr; 459 } 460 } 461 462 static RelExpr fromPlt(RelExpr expr) { 463 // We decided not to use a plt. Optimize a reference to the plt to a 464 // reference to the symbol itself. 465 switch (expr) { 466 case R_PLT_PC: 467 case R_PPC32_PLTREL: 468 return R_PC; 469 case R_PPC64_CALL_PLT: 470 return R_PPC64_CALL; 471 case R_PLT: 472 return R_ABS; 473 default: 474 return expr; 475 } 476 } 477 478 // Returns true if a given shared symbol is in a read-only segment in a DSO. 479 template <class ELFT> static bool isReadOnly(SharedSymbol &ss) { 480 using Elf_Phdr = typename ELFT::Phdr; 481 482 // Determine if the symbol is read-only by scanning the DSO's program headers. 483 const SharedFile &file = ss.getFile(); 484 for (const Elf_Phdr &phdr : 485 check(file.template getObj<ELFT>().program_headers())) 486 if ((phdr.p_type == ELF::PT_LOAD || phdr.p_type == ELF::PT_GNU_RELRO) && 487 !(phdr.p_flags & ELF::PF_W) && ss.value >= phdr.p_vaddr && 488 ss.value < phdr.p_vaddr + phdr.p_memsz) 489 return true; 490 return false; 491 } 492 493 // Returns symbols at the same offset as a given symbol, including SS itself. 494 // 495 // If two or more symbols are at the same offset, and at least one of 496 // them are copied by a copy relocation, all of them need to be copied. 497 // Otherwise, they would refer to different places at runtime. 498 template <class ELFT> 499 static SmallSet<SharedSymbol *, 4> getSymbolsAt(SharedSymbol &ss) { 500 using Elf_Sym = typename ELFT::Sym; 501 502 SharedFile &file = ss.getFile(); 503 504 SmallSet<SharedSymbol *, 4> ret; 505 for (const Elf_Sym &s : file.template getGlobalELFSyms<ELFT>()) { 506 if (s.st_shndx == SHN_UNDEF || s.st_shndx == SHN_ABS || 507 s.getType() == STT_TLS || s.st_value != ss.value) 508 continue; 509 StringRef name = check(s.getName(file.getStringTable())); 510 Symbol *sym = symtab->find(name); 511 if (auto *alias = dyn_cast_or_null<SharedSymbol>(sym)) 512 ret.insert(alias); 513 } 514 return ret; 515 } 516 517 // When a symbol is copy relocated or we create a canonical plt entry, it is 518 // effectively a defined symbol. In the case of copy relocation the symbol is 519 // in .bss and in the case of a canonical plt entry it is in .plt. This function 520 // replaces the existing symbol with a Defined pointing to the appropriate 521 // location. 522 static void replaceWithDefined(Symbol &sym, SectionBase *sec, uint64_t value, 523 uint64_t size) { 524 Symbol old = sym; 525 526 sym.replace(Defined{sym.file, sym.getName(), sym.binding, sym.stOther, 527 sym.type, value, size, sec}); 528 529 sym.pltIndex = old.pltIndex; 530 sym.gotIndex = old.gotIndex; 531 sym.verdefIndex = old.verdefIndex; 532 sym.exportDynamic = true; 533 sym.isUsedInRegularObj = true; 534 } 535 536 // Reserve space in .bss or .bss.rel.ro for copy relocation. 537 // 538 // The copy relocation is pretty much a hack. If you use a copy relocation 539 // in your program, not only the symbol name but the symbol's size, RW/RO 540 // bit and alignment become part of the ABI. In addition to that, if the 541 // symbol has aliases, the aliases become part of the ABI. That's subtle, 542 // but if you violate that implicit ABI, that can cause very counter- 543 // intuitive consequences. 544 // 545 // So, what is the copy relocation? It's for linking non-position 546 // independent code to DSOs. In an ideal world, all references to data 547 // exported by DSOs should go indirectly through GOT. But if object files 548 // are compiled as non-PIC, all data references are direct. There is no 549 // way for the linker to transform the code to use GOT, as machine 550 // instructions are already set in stone in object files. This is where 551 // the copy relocation takes a role. 552 // 553 // A copy relocation instructs the dynamic linker to copy data from a DSO 554 // to a specified address (which is usually in .bss) at load-time. If the 555 // static linker (that's us) finds a direct data reference to a DSO 556 // symbol, it creates a copy relocation, so that the symbol can be 557 // resolved as if it were in .bss rather than in a DSO. 558 // 559 // As you can see in this function, we create a copy relocation for the 560 // dynamic linker, and the relocation contains not only symbol name but 561 // various other information about the symbol. So, such attributes become a 562 // part of the ABI. 563 // 564 // Note for application developers: I can give you a piece of advice if 565 // you are writing a shared library. You probably should export only 566 // functions from your library. You shouldn't export variables. 567 // 568 // As an example what can happen when you export variables without knowing 569 // the semantics of copy relocations, assume that you have an exported 570 // variable of type T. It is an ABI-breaking change to add new members at 571 // end of T even though doing that doesn't change the layout of the 572 // existing members. That's because the space for the new members are not 573 // reserved in .bss unless you recompile the main program. That means they 574 // are likely to overlap with other data that happens to be laid out next 575 // to the variable in .bss. This kind of issue is sometimes very hard to 576 // debug. What's a solution? Instead of exporting a variable V from a DSO, 577 // define an accessor getV(). 578 template <class ELFT> static void addCopyRelSymbol(SharedSymbol &ss) { 579 // Copy relocation against zero-sized symbol doesn't make sense. 580 uint64_t symSize = ss.getSize(); 581 if (symSize == 0 || ss.alignment == 0) 582 fatal("cannot create a copy relocation for symbol " + toString(ss)); 583 584 // See if this symbol is in a read-only segment. If so, preserve the symbol's 585 // memory protection by reserving space in the .bss.rel.ro section. 586 bool isRO = isReadOnly<ELFT>(ss); 587 BssSection *sec = 588 make<BssSection>(isRO ? ".bss.rel.ro" : ".bss", symSize, ss.alignment); 589 OutputSection *osec = (isRO ? in.bssRelRo : in.bss)->getParent(); 590 591 // At this point, sectionBases has been migrated to sections. Append sec to 592 // sections. 593 if (osec->sectionCommands.empty() || 594 !isa<InputSectionDescription>(osec->sectionCommands.back())) 595 osec->sectionCommands.push_back(make<InputSectionDescription>("")); 596 auto *isd = cast<InputSectionDescription>(osec->sectionCommands.back()); 597 isd->sections.push_back(sec); 598 osec->commitSection(sec); 599 600 // Look through the DSO's dynamic symbol table for aliases and create a 601 // dynamic symbol for each one. This causes the copy relocation to correctly 602 // interpose any aliases. 603 for (SharedSymbol *sym : getSymbolsAt<ELFT>(ss)) 604 replaceWithDefined(*sym, sec, 0, sym->size); 605 606 mainPart->relaDyn->addReloc(target->copyRel, sec, 0, &ss); 607 } 608 609 // MIPS has an odd notion of "paired" relocations to calculate addends. 610 // For example, if a relocation is of R_MIPS_HI16, there must be a 611 // R_MIPS_LO16 relocation after that, and an addend is calculated using 612 // the two relocations. 613 template <class ELFT, class RelTy> 614 static int64_t computeMipsAddend(const RelTy &rel, const RelTy *end, 615 InputSectionBase &sec, RelExpr expr, 616 bool isLocal) { 617 if (expr == R_MIPS_GOTREL && isLocal) 618 return sec.getFile<ELFT>()->mipsGp0; 619 620 // The ABI says that the paired relocation is used only for REL. 621 // See p. 4-17 at ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf 622 if (RelTy::IsRela) 623 return 0; 624 625 RelType type = rel.getType(config->isMips64EL); 626 uint32_t pairTy = getMipsPairType(type, isLocal); 627 if (pairTy == R_MIPS_NONE) 628 return 0; 629 630 const uint8_t *buf = sec.data().data(); 631 uint32_t symIndex = rel.getSymbol(config->isMips64EL); 632 633 // To make things worse, paired relocations might not be contiguous in 634 // the relocation table, so we need to do linear search. *sigh* 635 for (const RelTy *ri = &rel; ri != end; ++ri) 636 if (ri->getType(config->isMips64EL) == pairTy && 637 ri->getSymbol(config->isMips64EL) == symIndex) 638 return target->getImplicitAddend(buf + ri->r_offset, pairTy); 639 640 warn("can't find matching " + toString(pairTy) + " relocation for " + 641 toString(type)); 642 return 0; 643 } 644 645 // Returns an addend of a given relocation. If it is RELA, an addend 646 // is in a relocation itself. If it is REL, we need to read it from an 647 // input section. 648 template <class ELFT, class RelTy> 649 static int64_t computeAddend(const RelTy &rel, const RelTy *end, 650 InputSectionBase &sec, RelExpr expr, 651 bool isLocal) { 652 int64_t addend; 653 RelType type = rel.getType(config->isMips64EL); 654 655 if (RelTy::IsRela) { 656 addend = getAddend<ELFT>(rel); 657 } else { 658 const uint8_t *buf = sec.data().data(); 659 addend = target->getImplicitAddend(buf + rel.r_offset, type); 660 } 661 662 if (config->emachine == EM_PPC64 && config->isPic && type == R_PPC64_TOC) 663 addend += getPPC64TocBase(); 664 if (config->emachine == EM_MIPS) 665 addend += computeMipsAddend<ELFT>(rel, end, sec, expr, isLocal); 666 667 return addend; 668 } 669 670 // Custom error message if Sym is defined in a discarded section. 671 template <class ELFT> 672 static std::string maybeReportDiscarded(Undefined &sym) { 673 auto *file = dyn_cast_or_null<ObjFile<ELFT>>(sym.file); 674 if (!file || !sym.discardedSecIdx || 675 file->getSections()[sym.discardedSecIdx] != &InputSection::discarded) 676 return ""; 677 ArrayRef<Elf_Shdr_Impl<ELFT>> objSections = 678 CHECK(file->getObj().sections(), file); 679 680 std::string msg; 681 if (sym.type == ELF::STT_SECTION) { 682 msg = "relocation refers to a discarded section: "; 683 msg += CHECK( 684 file->getObj().getSectionName(&objSections[sym.discardedSecIdx]), file); 685 } else { 686 msg = "relocation refers to a symbol in a discarded section: " + 687 toString(sym); 688 } 689 msg += "\n>>> defined in " + toString(file); 690 691 Elf_Shdr_Impl<ELFT> elfSec = objSections[sym.discardedSecIdx - 1]; 692 if (elfSec.sh_type != SHT_GROUP) 693 return msg; 694 695 // If the discarded section is a COMDAT. 696 StringRef signature = file->getShtGroupSignature(objSections, elfSec); 697 if (const InputFile *prevailing = 698 symtab->comdatGroups.lookup(CachedHashStringRef(signature))) 699 msg += "\n>>> section group signature: " + signature.str() + 700 "\n>>> prevailing definition is in " + toString(prevailing); 701 return msg; 702 } 703 704 // Undefined diagnostics are collected in a vector and emitted once all of 705 // them are known, so that some postprocessing on the list of undefined symbols 706 // can happen before lld emits diagnostics. 707 struct UndefinedDiag { 708 Symbol *sym; 709 struct Loc { 710 InputSectionBase *sec; 711 uint64_t offset; 712 }; 713 std::vector<Loc> locs; 714 bool isWarning; 715 }; 716 717 static std::vector<UndefinedDiag> undefs; 718 719 // Check whether the definition name def is a mangled function name that matches 720 // the reference name ref. 721 static bool canSuggestExternCForCXX(StringRef ref, StringRef def) { 722 llvm::ItaniumPartialDemangler d; 723 std::string name = def.str(); 724 if (d.partialDemangle(name.c_str())) 725 return false; 726 char *buf = d.getFunctionName(nullptr, nullptr); 727 if (!buf) 728 return false; 729 bool ret = ref == buf; 730 free(buf); 731 return ret; 732 } 733 734 // Suggest an alternative spelling of an "undefined symbol" diagnostic. Returns 735 // the suggested symbol, which is either in the symbol table, or in the same 736 // file of sym. 737 template <class ELFT> 738 static const Symbol *getAlternativeSpelling(const Undefined &sym, 739 std::string &pre_hint, 740 std::string &post_hint) { 741 DenseMap<StringRef, const Symbol *> map; 742 if (auto *file = dyn_cast_or_null<ObjFile<ELFT>>(sym.file)) { 743 // If sym is a symbol defined in a discarded section, maybeReportDiscarded() 744 // will give an error. Don't suggest an alternative spelling. 745 if (file && sym.discardedSecIdx != 0 && 746 file->getSections()[sym.discardedSecIdx] == &InputSection::discarded) 747 return nullptr; 748 749 // Build a map of local defined symbols. 750 for (const Symbol *s : sym.file->getSymbols()) 751 if (s->isLocal() && s->isDefined()) 752 map.try_emplace(s->getName(), s); 753 } 754 755 auto suggest = [&](StringRef newName) -> const Symbol * { 756 // If defined locally. 757 if (const Symbol *s = map.lookup(newName)) 758 return s; 759 760 // If in the symbol table and not undefined. 761 if (const Symbol *s = symtab->find(newName)) 762 if (!s->isUndefined()) 763 return s; 764 765 return nullptr; 766 }; 767 768 // This loop enumerates all strings of Levenshtein distance 1 as typo 769 // correction candidates and suggests the one that exists as a non-undefined 770 // symbol. 771 StringRef name = sym.getName(); 772 for (size_t i = 0, e = name.size(); i != e + 1; ++i) { 773 // Insert a character before name[i]. 774 std::string newName = (name.substr(0, i) + "0" + name.substr(i)).str(); 775 for (char c = '0'; c <= 'z'; ++c) { 776 newName[i] = c; 777 if (const Symbol *s = suggest(newName)) 778 return s; 779 } 780 if (i == e) 781 break; 782 783 // Substitute name[i]. 784 newName = std::string(name); 785 for (char c = '0'; c <= 'z'; ++c) { 786 newName[i] = c; 787 if (const Symbol *s = suggest(newName)) 788 return s; 789 } 790 791 // Transpose name[i] and name[i+1]. This is of edit distance 2 but it is 792 // common. 793 if (i + 1 < e) { 794 newName[i] = name[i + 1]; 795 newName[i + 1] = name[i]; 796 if (const Symbol *s = suggest(newName)) 797 return s; 798 } 799 800 // Delete name[i]. 801 newName = (name.substr(0, i) + name.substr(i + 1)).str(); 802 if (const Symbol *s = suggest(newName)) 803 return s; 804 } 805 806 // Case mismatch, e.g. Foo vs FOO. 807 for (auto &it : map) 808 if (name.equals_lower(it.first)) 809 return it.second; 810 for (Symbol *sym : symtab->symbols()) 811 if (!sym->isUndefined() && name.equals_lower(sym->getName())) 812 return sym; 813 814 // The reference may be a mangled name while the definition is not. Suggest a 815 // missing extern "C". 816 if (name.startswith("_Z")) { 817 std::string buf = name.str(); 818 llvm::ItaniumPartialDemangler d; 819 if (!d.partialDemangle(buf.c_str())) 820 if (char *buf = d.getFunctionName(nullptr, nullptr)) { 821 const Symbol *s = suggest(buf); 822 free(buf); 823 if (s) { 824 pre_hint = ": extern \"C\" "; 825 return s; 826 } 827 } 828 } else { 829 const Symbol *s = nullptr; 830 for (auto &it : map) 831 if (canSuggestExternCForCXX(name, it.first)) { 832 s = it.second; 833 break; 834 } 835 if (!s) 836 for (Symbol *sym : symtab->symbols()) 837 if (canSuggestExternCForCXX(name, sym->getName())) { 838 s = sym; 839 break; 840 } 841 if (s) { 842 pre_hint = " to declare "; 843 post_hint = " as extern \"C\"?"; 844 return s; 845 } 846 } 847 848 return nullptr; 849 } 850 851 template <class ELFT> 852 static void reportUndefinedSymbol(const UndefinedDiag &undef, 853 bool correctSpelling) { 854 Symbol &sym = *undef.sym; 855 856 auto visibility = [&]() -> std::string { 857 switch (sym.visibility) { 858 case STV_INTERNAL: 859 return "internal "; 860 case STV_HIDDEN: 861 return "hidden "; 862 case STV_PROTECTED: 863 return "protected "; 864 default: 865 return ""; 866 } 867 }; 868 869 std::string msg = maybeReportDiscarded<ELFT>(cast<Undefined>(sym)); 870 if (msg.empty()) 871 msg = "undefined " + visibility() + "symbol: " + toString(sym); 872 873 const size_t maxUndefReferences = 10; 874 size_t i = 0; 875 for (UndefinedDiag::Loc l : undef.locs) { 876 if (i >= maxUndefReferences) 877 break; 878 InputSectionBase &sec = *l.sec; 879 uint64_t offset = l.offset; 880 881 msg += "\n>>> referenced by "; 882 std::string src = sec.getSrcMsg(sym, offset); 883 if (!src.empty()) 884 msg += src + "\n>>> "; 885 msg += sec.getObjMsg(offset); 886 i++; 887 } 888 889 if (i < undef.locs.size()) 890 msg += ("\n>>> referenced " + Twine(undef.locs.size() - i) + " more times") 891 .str(); 892 893 if (correctSpelling) { 894 std::string pre_hint = ": ", post_hint; 895 if (const Symbol *corrected = getAlternativeSpelling<ELFT>( 896 cast<Undefined>(sym), pre_hint, post_hint)) { 897 msg += "\n>>> did you mean" + pre_hint + toString(*corrected) + post_hint; 898 if (corrected->file) 899 msg += "\n>>> defined in: " + toString(corrected->file); 900 } 901 } 902 903 if (sym.getName().startswith("_ZTV")) 904 msg += "\nthe vtable symbol may be undefined because the class is missing " 905 "its key function (see https://lld.llvm.org/missingkeyfunction)"; 906 907 if (undef.isWarning) 908 warn(msg); 909 else 910 error(msg); 911 } 912 913 template <class ELFT> void reportUndefinedSymbols() { 914 // Find the first "undefined symbol" diagnostic for each diagnostic, and 915 // collect all "referenced from" lines at the first diagnostic. 916 DenseMap<Symbol *, UndefinedDiag *> firstRef; 917 for (UndefinedDiag &undef : undefs) { 918 assert(undef.locs.size() == 1); 919 if (UndefinedDiag *canon = firstRef.lookup(undef.sym)) { 920 canon->locs.push_back(undef.locs[0]); 921 undef.locs.clear(); 922 } else 923 firstRef[undef.sym] = &undef; 924 } 925 926 // Enable spell corrector for the first 2 diagnostics. 927 for (auto it : enumerate(undefs)) 928 if (!it.value().locs.empty()) 929 reportUndefinedSymbol<ELFT>(it.value(), it.index() < 2); 930 undefs.clear(); 931 } 932 933 // Report an undefined symbol if necessary. 934 // Returns true if the undefined symbol will produce an error message. 935 static bool maybeReportUndefined(Symbol &sym, InputSectionBase &sec, 936 uint64_t offset) { 937 if (!sym.isUndefined() || sym.isWeak()) 938 return false; 939 940 bool canBeExternal = !sym.isLocal() && sym.visibility == STV_DEFAULT; 941 if (config->unresolvedSymbols == UnresolvedPolicy::Ignore && canBeExternal) 942 return false; 943 944 // clang (as of 2019-06-12) / gcc (as of 8.2.1) PPC64 may emit a .rela.toc 945 // which references a switch table in a discarded .rodata/.text section. The 946 // .toc and the .rela.toc are incorrectly not placed in the comdat. The ELF 947 // spec says references from outside the group to a STB_LOCAL symbol are not 948 // allowed. Work around the bug. 949 if (config->emachine == EM_PPC64 && 950 cast<Undefined>(sym).discardedSecIdx != 0 && sec.name == ".toc") 951 return false; 952 953 bool isWarning = 954 (config->unresolvedSymbols == UnresolvedPolicy::Warn && canBeExternal) || 955 config->noinhibitExec; 956 undefs.push_back({&sym, {{&sec, offset}}, isWarning}); 957 return !isWarning; 958 } 959 960 // MIPS N32 ABI treats series of successive relocations with the same offset 961 // as a single relocation. The similar approach used by N64 ABI, but this ABI 962 // packs all relocations into the single relocation record. Here we emulate 963 // this for the N32 ABI. Iterate over relocation with the same offset and put 964 // theirs types into the single bit-set. 965 template <class RelTy> static RelType getMipsN32RelType(RelTy *&rel, RelTy *end) { 966 RelType type = 0; 967 uint64_t offset = rel->r_offset; 968 969 int n = 0; 970 while (rel != end && rel->r_offset == offset) 971 type |= (rel++)->getType(config->isMips64EL) << (8 * n++); 972 return type; 973 } 974 975 // .eh_frame sections are mergeable input sections, so their input 976 // offsets are not linearly mapped to output section. For each input 977 // offset, we need to find a section piece containing the offset and 978 // add the piece's base address to the input offset to compute the 979 // output offset. That isn't cheap. 980 // 981 // This class is to speed up the offset computation. When we process 982 // relocations, we access offsets in the monotonically increasing 983 // order. So we can optimize for that access pattern. 984 // 985 // For sections other than .eh_frame, this class doesn't do anything. 986 namespace { 987 class OffsetGetter { 988 public: 989 explicit OffsetGetter(InputSectionBase &sec) { 990 if (auto *eh = dyn_cast<EhInputSection>(&sec)) 991 pieces = eh->pieces; 992 } 993 994 // Translates offsets in input sections to offsets in output sections. 995 // Given offset must increase monotonically. We assume that Piece is 996 // sorted by inputOff. 997 uint64_t get(uint64_t off) { 998 if (pieces.empty()) 999 return off; 1000 1001 while (i != pieces.size() && pieces[i].inputOff + pieces[i].size <= off) 1002 ++i; 1003 if (i == pieces.size()) 1004 fatal(".eh_frame: relocation is not in any piece"); 1005 1006 // Pieces must be contiguous, so there must be no holes in between. 1007 assert(pieces[i].inputOff <= off && "Relocation not in any piece"); 1008 1009 // Offset -1 means that the piece is dead (i.e. garbage collected). 1010 if (pieces[i].outputOff == -1) 1011 return -1; 1012 return pieces[i].outputOff + off - pieces[i].inputOff; 1013 } 1014 1015 private: 1016 ArrayRef<EhSectionPiece> pieces; 1017 size_t i = 0; 1018 }; 1019 } // namespace 1020 1021 static void addRelativeReloc(InputSectionBase *isec, uint64_t offsetInSec, 1022 Symbol *sym, int64_t addend, RelExpr expr, 1023 RelType type) { 1024 Partition &part = isec->getPartition(); 1025 1026 // Add a relative relocation. If relrDyn section is enabled, and the 1027 // relocation offset is guaranteed to be even, add the relocation to 1028 // the relrDyn section, otherwise add it to the relaDyn section. 1029 // relrDyn sections don't support odd offsets. Also, relrDyn sections 1030 // don't store the addend values, so we must write it to the relocated 1031 // address. 1032 if (part.relrDyn && isec->alignment >= 2 && offsetInSec % 2 == 0) { 1033 isec->relocations.push_back({expr, type, offsetInSec, addend, sym}); 1034 part.relrDyn->relocs.push_back({isec, offsetInSec}); 1035 return; 1036 } 1037 part.relaDyn->addReloc(target->relativeRel, isec, offsetInSec, sym, addend, 1038 expr, type); 1039 } 1040 1041 template <class PltSection, class GotPltSection> 1042 static void addPltEntry(PltSection *plt, GotPltSection *gotPlt, 1043 RelocationBaseSection *rel, RelType type, Symbol &sym) { 1044 plt->addEntry(sym); 1045 gotPlt->addEntry(sym); 1046 rel->addReloc( 1047 {type, gotPlt, sym.getGotPltOffset(), !sym.isPreemptible, &sym, 0}); 1048 } 1049 1050 static void addGotEntry(Symbol &sym) { 1051 in.got->addEntry(sym); 1052 1053 RelExpr expr = sym.isTls() ? R_TLS : R_ABS; 1054 uint64_t off = sym.getGotOffset(); 1055 1056 // If a GOT slot value can be calculated at link-time, which is now, 1057 // we can just fill that out. 1058 // 1059 // (We don't actually write a value to a GOT slot right now, but we 1060 // add a static relocation to a Relocations vector so that 1061 // InputSection::relocate will do the work for us. We may be able 1062 // to just write a value now, but it is a TODO.) 1063 bool isLinkTimeConstant = 1064 !sym.isPreemptible && (!config->isPic || isAbsolute(sym)); 1065 if (isLinkTimeConstant) { 1066 in.got->relocations.push_back({expr, target->symbolicRel, off, 0, &sym}); 1067 return; 1068 } 1069 1070 // Otherwise, we emit a dynamic relocation to .rel[a].dyn so that 1071 // the GOT slot will be fixed at load-time. 1072 if (!sym.isTls() && !sym.isPreemptible && config->isPic && !isAbsolute(sym)) { 1073 addRelativeReloc(in.got, off, &sym, 0, R_ABS, target->symbolicRel); 1074 return; 1075 } 1076 mainPart->relaDyn->addReloc( 1077 sym.isTls() ? target->tlsGotRel : target->gotRel, in.got, off, &sym, 0, 1078 sym.isPreemptible ? R_ADDEND : R_ABS, target->symbolicRel); 1079 } 1080 1081 // Return true if we can define a symbol in the executable that 1082 // contains the value/function of a symbol defined in a shared 1083 // library. 1084 static bool canDefineSymbolInExecutable(Symbol &sym) { 1085 // If the symbol has default visibility the symbol defined in the 1086 // executable will preempt it. 1087 // Note that we want the visibility of the shared symbol itself, not 1088 // the visibility of the symbol in the output file we are producing. That is 1089 // why we use Sym.stOther. 1090 if ((sym.stOther & 0x3) == STV_DEFAULT) 1091 return true; 1092 1093 // If we are allowed to break address equality of functions, defining 1094 // a plt entry will allow the program to call the function in the 1095 // .so, but the .so and the executable will no agree on the address 1096 // of the function. Similar logic for objects. 1097 return ((sym.isFunc() && config->ignoreFunctionAddressEquality) || 1098 (sym.isObject() && config->ignoreDataAddressEquality)); 1099 } 1100 1101 // The reason we have to do this early scan is as follows 1102 // * To mmap the output file, we need to know the size 1103 // * For that, we need to know how many dynamic relocs we will have. 1104 // It might be possible to avoid this by outputting the file with write: 1105 // * Write the allocated output sections, computing addresses. 1106 // * Apply relocations, recording which ones require a dynamic reloc. 1107 // * Write the dynamic relocations. 1108 // * Write the rest of the file. 1109 // This would have some drawbacks. For example, we would only know if .rela.dyn 1110 // is needed after applying relocations. If it is, it will go after rw and rx 1111 // sections. Given that it is ro, we will need an extra PT_LOAD. This 1112 // complicates things for the dynamic linker and means we would have to reserve 1113 // space for the extra PT_LOAD even if we end up not using it. 1114 template <class ELFT, class RelTy> 1115 static void processRelocAux(InputSectionBase &sec, RelExpr expr, RelType type, 1116 uint64_t offset, Symbol &sym, const RelTy &rel, 1117 int64_t addend) { 1118 // If the relocation is known to be a link-time constant, we know no dynamic 1119 // relocation will be created, pass the control to relocateAlloc() or 1120 // relocateNonAlloc() to resolve it. 1121 // 1122 // The behavior of an undefined weak reference is implementation defined. If 1123 // the relocation is to a weak undef, and we are producing an executable, let 1124 // relocate{,Non}Alloc() resolve it. 1125 if (isStaticLinkTimeConstant(expr, type, sym, sec, offset) || 1126 (!config->shared && sym.isUndefWeak())) { 1127 sec.relocations.push_back({expr, type, offset, addend, &sym}); 1128 return; 1129 } 1130 1131 bool canWrite = (sec.flags & SHF_WRITE) || !config->zText; 1132 if (canWrite) { 1133 RelType rel = target->getDynRel(type); 1134 if (expr == R_GOT || (rel == target->symbolicRel && !sym.isPreemptible)) { 1135 addRelativeReloc(&sec, offset, &sym, addend, expr, type); 1136 return; 1137 } else if (rel != 0) { 1138 if (config->emachine == EM_MIPS && rel == target->symbolicRel) 1139 rel = target->relativeRel; 1140 sec.getPartition().relaDyn->addReloc(rel, &sec, offset, &sym, addend, 1141 R_ADDEND, type); 1142 1143 // MIPS ABI turns using of GOT and dynamic relocations inside out. 1144 // While regular ABI uses dynamic relocations to fill up GOT entries 1145 // MIPS ABI requires dynamic linker to fills up GOT entries using 1146 // specially sorted dynamic symbol table. This affects even dynamic 1147 // relocations against symbols which do not require GOT entries 1148 // creation explicitly, i.e. do not have any GOT-relocations. So if 1149 // a preemptible symbol has a dynamic relocation we anyway have 1150 // to create a GOT entry for it. 1151 // If a non-preemptible symbol has a dynamic relocation against it, 1152 // dynamic linker takes it st_value, adds offset and writes down 1153 // result of the dynamic relocation. In case of preemptible symbol 1154 // dynamic linker performs symbol resolution, writes the symbol value 1155 // to the GOT entry and reads the GOT entry when it needs to perform 1156 // a dynamic relocation. 1157 // ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf p.4-19 1158 if (config->emachine == EM_MIPS) 1159 in.mipsGot->addEntry(*sec.file, sym, addend, expr); 1160 return; 1161 } 1162 } 1163 1164 // When producing an executable, we can perform copy relocations (for 1165 // STT_OBJECT) and canonical PLT (for STT_FUNC). 1166 if (!config->shared) { 1167 if (!canDefineSymbolInExecutable(sym)) { 1168 errorOrWarn("cannot preempt symbol: " + toString(sym) + 1169 getLocation(sec, sym, offset)); 1170 return; 1171 } 1172 1173 if (sym.isObject()) { 1174 // Produce a copy relocation. 1175 if (auto *ss = dyn_cast<SharedSymbol>(&sym)) { 1176 if (!config->zCopyreloc) 1177 error("unresolvable relocation " + toString(type) + 1178 " against symbol '" + toString(*ss) + 1179 "'; recompile with -fPIC or remove '-z nocopyreloc'" + 1180 getLocation(sec, sym, offset)); 1181 addCopyRelSymbol<ELFT>(*ss); 1182 } 1183 sec.relocations.push_back({expr, type, offset, addend, &sym}); 1184 return; 1185 } 1186 1187 // This handles a non PIC program call to function in a shared library. In 1188 // an ideal world, we could just report an error saying the relocation can 1189 // overflow at runtime. In the real world with glibc, crt1.o has a 1190 // R_X86_64_PC32 pointing to libc.so. 1191 // 1192 // The general idea on how to handle such cases is to create a PLT entry and 1193 // use that as the function value. 1194 // 1195 // For the static linking part, we just return a plt expr and everything 1196 // else will use the PLT entry as the address. 1197 // 1198 // The remaining problem is making sure pointer equality still works. We 1199 // need the help of the dynamic linker for that. We let it know that we have 1200 // a direct reference to a so symbol by creating an undefined symbol with a 1201 // non zero st_value. Seeing that, the dynamic linker resolves the symbol to 1202 // the value of the symbol we created. This is true even for got entries, so 1203 // pointer equality is maintained. To avoid an infinite loop, the only entry 1204 // that points to the real function is a dedicated got entry used by the 1205 // plt. That is identified by special relocation types (R_X86_64_JUMP_SLOT, 1206 // R_386_JMP_SLOT, etc). 1207 1208 // For position independent executable on i386, the plt entry requires ebx 1209 // to be set. This causes two problems: 1210 // * If some code has a direct reference to a function, it was probably 1211 // compiled without -fPIE/-fPIC and doesn't maintain ebx. 1212 // * If a library definition gets preempted to the executable, it will have 1213 // the wrong ebx value. 1214 if (sym.isFunc()) { 1215 if (config->pie && config->emachine == EM_386) 1216 errorOrWarn("symbol '" + toString(sym) + 1217 "' cannot be preempted; recompile with -fPIE" + 1218 getLocation(sec, sym, offset)); 1219 if (!sym.isInPlt()) 1220 addPltEntry(in.plt, in.gotPlt, in.relaPlt, target->pltRel, sym); 1221 if (!sym.isDefined()) { 1222 replaceWithDefined( 1223 sym, in.plt, 1224 target->pltHeaderSize + target->pltEntrySize * sym.pltIndex, 0); 1225 if (config->emachine == EM_PPC) { 1226 // PPC32 canonical PLT entries are at the beginning of .glink 1227 cast<Defined>(sym).value = in.plt->headerSize; 1228 in.plt->headerSize += 16; 1229 } 1230 } 1231 sym.needsPltAddr = true; 1232 sec.relocations.push_back({expr, type, offset, addend, &sym}); 1233 return; 1234 } 1235 } 1236 1237 if (config->isPic) { 1238 if (!canWrite && !isRelExpr(expr)) 1239 errorOrWarn( 1240 "can't create dynamic relocation " + toString(type) + " against " + 1241 (sym.getName().empty() ? "local symbol" 1242 : "symbol: " + toString(sym)) + 1243 " in readonly segment; recompile object files with -fPIC " 1244 "or pass '-Wl,-z,notext' to allow text relocations in the output" + 1245 getLocation(sec, sym, offset)); 1246 else 1247 errorOrWarn( 1248 "relocation " + toString(type) + " cannot be used against " + 1249 (sym.getName().empty() ? "local symbol" : "symbol " + toString(sym)) + 1250 "; recompile with -fPIC" + getLocation(sec, sym, offset)); 1251 return; 1252 } 1253 1254 errorOrWarn("symbol '" + toString(sym) + "' has no type" + 1255 getLocation(sec, sym, offset)); 1256 } 1257 1258 template <class ELFT, class RelTy> 1259 static void scanReloc(InputSectionBase &sec, OffsetGetter &getOffset, RelTy *&i, 1260 RelTy *end) { 1261 const RelTy &rel = *i; 1262 uint32_t symIndex = rel.getSymbol(config->isMips64EL); 1263 Symbol &sym = sec.getFile<ELFT>()->getSymbol(symIndex); 1264 RelType type; 1265 1266 // Deal with MIPS oddity. 1267 if (config->mipsN32Abi) { 1268 type = getMipsN32RelType(i, end); 1269 } else { 1270 type = rel.getType(config->isMips64EL); 1271 ++i; 1272 } 1273 1274 // Get an offset in an output section this relocation is applied to. 1275 uint64_t offset = getOffset.get(rel.r_offset); 1276 if (offset == uint64_t(-1)) 1277 return; 1278 1279 // Error if the target symbol is undefined. Symbol index 0 may be used by 1280 // marker relocations, e.g. R_*_NONE and R_ARM_V4BX. Don't error on them. 1281 if (symIndex != 0 && maybeReportUndefined(sym, sec, rel.r_offset)) 1282 return; 1283 1284 const uint8_t *relocatedAddr = sec.data().begin() + rel.r_offset; 1285 RelExpr expr = target->getRelExpr(type, sym, relocatedAddr); 1286 1287 // Ignore R_*_NONE and other marker relocations. 1288 if (expr == R_NONE) 1289 return; 1290 1291 // We can separate the small code model relocations into 2 categories: 1292 // 1) Those that access the compiler generated .toc sections. 1293 // 2) Those that access the linker allocated got entries. 1294 // lld allocates got entries to symbols on demand. Since we don't try to sort 1295 // the got entries in any way, we don't have to track which objects have 1296 // got-based small code model relocs. The .toc sections get placed after the 1297 // end of the linker allocated .got section and we do sort those so sections 1298 // addressed with small code model relocations come first. 1299 if (config->emachine == EM_PPC64 && isPPC64SmallCodeModelTocReloc(type)) 1300 sec.file->ppc64SmallCodeModelTocRelocs = true; 1301 1302 if (sym.isGnuIFunc() && !config->zText && config->warnIfuncTextrel) { 1303 warn("using ifunc symbols when text relocations are allowed may produce " 1304 "a binary that will segfault, if the object file is linked with " 1305 "old version of glibc (glibc 2.28 and earlier). If this applies to " 1306 "you, consider recompiling the object files without -fPIC and " 1307 "without -Wl,-z,notext option. Use -no-warn-ifunc-textrel to " 1308 "turn off this warning." + 1309 getLocation(sec, sym, offset)); 1310 } 1311 1312 // Read an addend. 1313 int64_t addend = computeAddend<ELFT>(rel, end, sec, expr, sym.isLocal()); 1314 1315 // Relax relocations. 1316 // 1317 // If we know that a PLT entry will be resolved within the same ELF module, we 1318 // can skip PLT access and directly jump to the destination function. For 1319 // example, if we are linking a main executable, all dynamic symbols that can 1320 // be resolved within the executable will actually be resolved that way at 1321 // runtime, because the main executable is always at the beginning of a search 1322 // list. We can leverage that fact. 1323 if (!sym.isPreemptible && (!sym.isGnuIFunc() || config->zIfuncNoplt)) { 1324 if (expr == R_GOT_PC && !isAbsoluteValue(sym)) { 1325 expr = target->adjustRelaxExpr(type, relocatedAddr, expr); 1326 } else { 1327 // The 0x8000 bit of r_addend of R_PPC_PLTREL24 is used to choose call 1328 // stub type. It should be ignored if optimized to R_PC. 1329 if (config->emachine == EM_PPC && expr == R_PPC32_PLTREL) 1330 addend &= ~0x8000; 1331 expr = fromPlt(expr); 1332 } 1333 } 1334 1335 // If the relocation does not emit a GOT or GOTPLT entry but its computation 1336 // uses their addresses, we need GOT or GOTPLT to be created. 1337 // 1338 // The 4 types that relative GOTPLT are all x86 and x86-64 specific. 1339 if (oneof<R_GOTPLTONLY_PC, R_GOTPLTREL, R_GOTPLT, R_TLSGD_GOTPLT>(expr)) { 1340 in.gotPlt->hasGotPltOffRel = true; 1341 } else if (oneof<R_GOTONLY_PC, R_GOTREL, R_PPC64_TOCBASE, R_PPC64_RELAX_TOC>( 1342 expr)) { 1343 in.got->hasGotOffRel = true; 1344 } 1345 1346 // Process some TLS relocations, including relaxing TLS relocations. 1347 // Note that this function does not handle all TLS relocations. 1348 if (unsigned processed = 1349 handleTlsRelocation<ELFT>(type, sym, sec, offset, addend, expr)) { 1350 i += (processed - 1); 1351 return; 1352 } 1353 1354 // We were asked not to generate PLT entries for ifuncs. Instead, pass the 1355 // direct relocation on through. 1356 if (sym.isGnuIFunc() && config->zIfuncNoplt) { 1357 sym.exportDynamic = true; 1358 mainPart->relaDyn->addReloc(type, &sec, offset, &sym, addend, R_ADDEND, type); 1359 return; 1360 } 1361 1362 // Non-preemptible ifuncs require special handling. First, handle the usual 1363 // case where the symbol isn't one of these. 1364 if (!sym.isGnuIFunc() || sym.isPreemptible) { 1365 // If a relocation needs PLT, we create PLT and GOTPLT slots for the symbol. 1366 if (needsPlt(expr) && !sym.isInPlt()) 1367 addPltEntry(in.plt, in.gotPlt, in.relaPlt, target->pltRel, sym); 1368 1369 // Create a GOT slot if a relocation needs GOT. 1370 if (needsGot(expr)) { 1371 if (config->emachine == EM_MIPS) { 1372 // MIPS ABI has special rules to process GOT entries and doesn't 1373 // require relocation entries for them. A special case is TLS 1374 // relocations. In that case dynamic loader applies dynamic 1375 // relocations to initialize TLS GOT entries. 1376 // See "Global Offset Table" in Chapter 5 in the following document 1377 // for detailed description: 1378 // ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf 1379 in.mipsGot->addEntry(*sec.file, sym, addend, expr); 1380 } else if (!sym.isInGot()) { 1381 addGotEntry(sym); 1382 } 1383 } 1384 } else { 1385 // Handle a reference to a non-preemptible ifunc. These are special in a 1386 // few ways: 1387 // 1388 // - Unlike most non-preemptible symbols, non-preemptible ifuncs do not have 1389 // a fixed value. But assuming that all references to the ifunc are 1390 // GOT-generating or PLT-generating, the handling of an ifunc is 1391 // relatively straightforward. We create a PLT entry in Iplt, which is 1392 // usually at the end of .plt, which makes an indirect call using a 1393 // matching GOT entry in igotPlt, which is usually at the end of .got.plt. 1394 // The GOT entry is relocated using an IRELATIVE relocation in relaIplt, 1395 // which is usually at the end of .rela.plt. Unlike most relocations in 1396 // .rela.plt, which may be evaluated lazily without -z now, dynamic 1397 // loaders evaluate IRELATIVE relocs eagerly, which means that for 1398 // IRELATIVE relocs only, GOT-generating relocations can point directly to 1399 // .got.plt without requiring a separate GOT entry. 1400 // 1401 // - Despite the fact that an ifunc does not have a fixed value, compilers 1402 // that are not passed -fPIC will assume that they do, and will emit 1403 // direct (non-GOT-generating, non-PLT-generating) relocations to the 1404 // symbol. This means that if a direct relocation to the symbol is 1405 // seen, the linker must set a value for the symbol, and this value must 1406 // be consistent no matter what type of reference is made to the symbol. 1407 // This can be done by creating a PLT entry for the symbol in the way 1408 // described above and making it canonical, that is, making all references 1409 // point to the PLT entry instead of the resolver. In lld we also store 1410 // the address of the PLT entry in the dynamic symbol table, which means 1411 // that the symbol will also have the same value in other modules. 1412 // Because the value loaded from the GOT needs to be consistent with 1413 // the value computed using a direct relocation, a non-preemptible ifunc 1414 // may end up with two GOT entries, one in .got.plt that points to the 1415 // address returned by the resolver and is used only by the PLT entry, 1416 // and another in .got that points to the PLT entry and is used by 1417 // GOT-generating relocations. 1418 // 1419 // - The fact that these symbols do not have a fixed value makes them an 1420 // exception to the general rule that a statically linked executable does 1421 // not require any form of dynamic relocation. To handle these relocations 1422 // correctly, the IRELATIVE relocations are stored in an array which a 1423 // statically linked executable's startup code must enumerate using the 1424 // linker-defined symbols __rela?_iplt_{start,end}. 1425 if (!sym.isInPlt()) { 1426 // Create PLT and GOTPLT slots for the symbol. 1427 sym.isInIplt = true; 1428 1429 // Create a copy of the symbol to use as the target of the IRELATIVE 1430 // relocation in the igotPlt. This is in case we make the PLT canonical 1431 // later, which would overwrite the original symbol. 1432 // 1433 // FIXME: Creating a copy of the symbol here is a bit of a hack. All 1434 // that's really needed to create the IRELATIVE is the section and value, 1435 // so ideally we should just need to copy those. 1436 auto *directSym = make<Defined>(cast<Defined>(sym)); 1437 addPltEntry(in.iplt, in.igotPlt, in.relaIplt, target->iRelativeRel, 1438 *directSym); 1439 sym.pltIndex = directSym->pltIndex; 1440 } 1441 if (needsGot(expr)) { 1442 // Redirect GOT accesses to point to the Igot. 1443 // 1444 // This field is also used to keep track of whether we ever needed a GOT 1445 // entry. If we did and we make the PLT canonical later, we'll need to 1446 // create a GOT entry pointing to the PLT entry for Sym. 1447 sym.gotInIgot = true; 1448 } else if (!needsPlt(expr)) { 1449 // Make the ifunc's PLT entry canonical by changing the value of its 1450 // symbol to redirect all references to point to it. 1451 auto &d = cast<Defined>(sym); 1452 d.section = in.iplt; 1453 d.value = sym.pltIndex * target->ipltEntrySize; 1454 d.size = 0; 1455 // It's important to set the symbol type here so that dynamic loaders 1456 // don't try to call the PLT as if it were an ifunc resolver. 1457 d.type = STT_FUNC; 1458 1459 if (sym.gotInIgot) { 1460 // We previously encountered a GOT generating reference that we 1461 // redirected to the Igot. Now that the PLT entry is canonical we must 1462 // clear the redirection to the Igot and add a GOT entry. As we've 1463 // changed the symbol type to STT_FUNC future GOT generating references 1464 // will naturally use this GOT entry. 1465 // 1466 // We don't need to worry about creating a MIPS GOT here because ifuncs 1467 // aren't a thing on MIPS. 1468 sym.gotInIgot = false; 1469 addGotEntry(sym); 1470 } 1471 } 1472 } 1473 1474 processRelocAux<ELFT>(sec, expr, type, offset, sym, rel, addend); 1475 } 1476 1477 template <class ELFT, class RelTy> 1478 static void scanRelocs(InputSectionBase &sec, ArrayRef<RelTy> rels) { 1479 OffsetGetter getOffset(sec); 1480 1481 // Not all relocations end up in Sec.Relocations, but a lot do. 1482 sec.relocations.reserve(rels.size()); 1483 1484 for (auto i = rels.begin(), end = rels.end(); i != end;) 1485 scanReloc<ELFT>(sec, getOffset, i, end); 1486 1487 // Sort relocations by offset for more efficient searching for 1488 // R_RISCV_PCREL_HI20 and R_PPC64_ADDR64. 1489 if (config->emachine == EM_RISCV || 1490 (config->emachine == EM_PPC64 && sec.name == ".toc")) 1491 llvm::stable_sort(sec.relocations, 1492 [](const Relocation &lhs, const Relocation &rhs) { 1493 return lhs.offset < rhs.offset; 1494 }); 1495 } 1496 1497 template <class ELFT> void scanRelocations(InputSectionBase &s) { 1498 if (s.areRelocsRela) 1499 scanRelocs<ELFT>(s, s.relas<ELFT>()); 1500 else 1501 scanRelocs<ELFT>(s, s.rels<ELFT>()); 1502 } 1503 1504 static bool mergeCmp(const InputSection *a, const InputSection *b) { 1505 // std::merge requires a strict weak ordering. 1506 if (a->outSecOff < b->outSecOff) 1507 return true; 1508 1509 if (a->outSecOff == b->outSecOff) { 1510 auto *ta = dyn_cast<ThunkSection>(a); 1511 auto *tb = dyn_cast<ThunkSection>(b); 1512 1513 // Check if Thunk is immediately before any specific Target 1514 // InputSection for example Mips LA25 Thunks. 1515 if (ta && ta->getTargetInputSection() == b) 1516 return true; 1517 1518 // Place Thunk Sections without specific targets before 1519 // non-Thunk Sections. 1520 if (ta && !tb && !ta->getTargetInputSection()) 1521 return true; 1522 } 1523 1524 return false; 1525 } 1526 1527 // Call Fn on every executable InputSection accessed via the linker script 1528 // InputSectionDescription::Sections. 1529 static void forEachInputSectionDescription( 1530 ArrayRef<OutputSection *> outputSections, 1531 llvm::function_ref<void(OutputSection *, InputSectionDescription *)> fn) { 1532 for (OutputSection *os : outputSections) { 1533 if (!(os->flags & SHF_ALLOC) || !(os->flags & SHF_EXECINSTR)) 1534 continue; 1535 for (BaseCommand *bc : os->sectionCommands) 1536 if (auto *isd = dyn_cast<InputSectionDescription>(bc)) 1537 fn(os, isd); 1538 } 1539 } 1540 1541 // Thunk Implementation 1542 // 1543 // Thunks (sometimes called stubs, veneers or branch islands) are small pieces 1544 // of code that the linker inserts inbetween a caller and a callee. The thunks 1545 // are added at link time rather than compile time as the decision on whether 1546 // a thunk is needed, such as the caller and callee being out of range, can only 1547 // be made at link time. 1548 // 1549 // It is straightforward to tell given the current state of the program when a 1550 // thunk is needed for a particular call. The more difficult part is that 1551 // the thunk needs to be placed in the program such that the caller can reach 1552 // the thunk and the thunk can reach the callee; furthermore, adding thunks to 1553 // the program alters addresses, which can mean more thunks etc. 1554 // 1555 // In lld we have a synthetic ThunkSection that can hold many Thunks. 1556 // The decision to have a ThunkSection act as a container means that we can 1557 // more easily handle the most common case of a single block of contiguous 1558 // Thunks by inserting just a single ThunkSection. 1559 // 1560 // The implementation of Thunks in lld is split across these areas 1561 // Relocations.cpp : Framework for creating and placing thunks 1562 // Thunks.cpp : The code generated for each supported thunk 1563 // Target.cpp : Target specific hooks that the framework uses to decide when 1564 // a thunk is used 1565 // Synthetic.cpp : Implementation of ThunkSection 1566 // Writer.cpp : Iteratively call framework until no more Thunks added 1567 // 1568 // Thunk placement requirements: 1569 // Mips LA25 thunks. These must be placed immediately before the callee section 1570 // We can assume that the caller is in range of the Thunk. These are modelled 1571 // by Thunks that return the section they must precede with 1572 // getTargetInputSection(). 1573 // 1574 // ARM interworking and range extension thunks. These thunks must be placed 1575 // within range of the caller. All implemented ARM thunks can always reach the 1576 // callee as they use an indirect jump via a register that has no range 1577 // restrictions. 1578 // 1579 // Thunk placement algorithm: 1580 // For Mips LA25 ThunkSections; the placement is explicit, it has to be before 1581 // getTargetInputSection(). 1582 // 1583 // For thunks that must be placed within range of the caller there are many 1584 // possible choices given that the maximum range from the caller is usually 1585 // much larger than the average InputSection size. Desirable properties include: 1586 // - Maximize reuse of thunks by multiple callers 1587 // - Minimize number of ThunkSections to simplify insertion 1588 // - Handle impact of already added Thunks on addresses 1589 // - Simple to understand and implement 1590 // 1591 // In lld for the first pass, we pre-create one or more ThunkSections per 1592 // InputSectionDescription at Target specific intervals. A ThunkSection is 1593 // placed so that the estimated end of the ThunkSection is within range of the 1594 // start of the InputSectionDescription or the previous ThunkSection. For 1595 // example: 1596 // InputSectionDescription 1597 // Section 0 1598 // ... 1599 // Section N 1600 // ThunkSection 0 1601 // Section N + 1 1602 // ... 1603 // Section N + K 1604 // Thunk Section 1 1605 // 1606 // The intention is that we can add a Thunk to a ThunkSection that is well 1607 // spaced enough to service a number of callers without having to do a lot 1608 // of work. An important principle is that it is not an error if a Thunk cannot 1609 // be placed in a pre-created ThunkSection; when this happens we create a new 1610 // ThunkSection placed next to the caller. This allows us to handle the vast 1611 // majority of thunks simply, but also handle rare cases where the branch range 1612 // is smaller than the target specific spacing. 1613 // 1614 // The algorithm is expected to create all the thunks that are needed in a 1615 // single pass, with a small number of programs needing a second pass due to 1616 // the insertion of thunks in the first pass increasing the offset between 1617 // callers and callees that were only just in range. 1618 // 1619 // A consequence of allowing new ThunkSections to be created outside of the 1620 // pre-created ThunkSections is that in rare cases calls to Thunks that were in 1621 // range in pass K, are out of range in some pass > K due to the insertion of 1622 // more Thunks in between the caller and callee. When this happens we retarget 1623 // the relocation back to the original target and create another Thunk. 1624 1625 // Remove ThunkSections that are empty, this should only be the initial set 1626 // precreated on pass 0. 1627 1628 // Insert the Thunks for OutputSection OS into their designated place 1629 // in the Sections vector, and recalculate the InputSection output section 1630 // offsets. 1631 // This may invalidate any output section offsets stored outside of InputSection 1632 void ThunkCreator::mergeThunks(ArrayRef<OutputSection *> outputSections) { 1633 forEachInputSectionDescription( 1634 outputSections, [&](OutputSection *os, InputSectionDescription *isd) { 1635 if (isd->thunkSections.empty()) 1636 return; 1637 1638 // Remove any zero sized precreated Thunks. 1639 llvm::erase_if(isd->thunkSections, 1640 [](const std::pair<ThunkSection *, uint32_t> &ts) { 1641 return ts.first->getSize() == 0; 1642 }); 1643 1644 // ISD->ThunkSections contains all created ThunkSections, including 1645 // those inserted in previous passes. Extract the Thunks created this 1646 // pass and order them in ascending outSecOff. 1647 std::vector<ThunkSection *> newThunks; 1648 for (std::pair<ThunkSection *, uint32_t> ts : isd->thunkSections) 1649 if (ts.second == pass) 1650 newThunks.push_back(ts.first); 1651 llvm::stable_sort(newThunks, 1652 [](const ThunkSection *a, const ThunkSection *b) { 1653 return a->outSecOff < b->outSecOff; 1654 }); 1655 1656 // Merge sorted vectors of Thunks and InputSections by outSecOff 1657 std::vector<InputSection *> tmp; 1658 tmp.reserve(isd->sections.size() + newThunks.size()); 1659 1660 std::merge(isd->sections.begin(), isd->sections.end(), 1661 newThunks.begin(), newThunks.end(), std::back_inserter(tmp), 1662 mergeCmp); 1663 1664 isd->sections = std::move(tmp); 1665 }); 1666 } 1667 1668 // Find or create a ThunkSection within the InputSectionDescription (ISD) that 1669 // is in range of Src. An ISD maps to a range of InputSections described by a 1670 // linker script section pattern such as { .text .text.* }. 1671 ThunkSection *ThunkCreator::getISDThunkSec(OutputSection *os, InputSection *isec, 1672 InputSectionDescription *isd, 1673 uint32_t type, uint64_t src) { 1674 for (std::pair<ThunkSection *, uint32_t> tp : isd->thunkSections) { 1675 ThunkSection *ts = tp.first; 1676 uint64_t tsBase = os->addr + ts->outSecOff; 1677 uint64_t tsLimit = tsBase + ts->getSize(); 1678 if (target->inBranchRange(type, src, (src > tsLimit) ? tsBase : tsLimit)) 1679 return ts; 1680 } 1681 1682 // No suitable ThunkSection exists. This can happen when there is a branch 1683 // with lower range than the ThunkSection spacing or when there are too 1684 // many Thunks. Create a new ThunkSection as close to the InputSection as 1685 // possible. Error if InputSection is so large we cannot place ThunkSection 1686 // anywhere in Range. 1687 uint64_t thunkSecOff = isec->outSecOff; 1688 if (!target->inBranchRange(type, src, os->addr + thunkSecOff)) { 1689 thunkSecOff = isec->outSecOff + isec->getSize(); 1690 if (!target->inBranchRange(type, src, os->addr + thunkSecOff)) 1691 fatal("InputSection too large for range extension thunk " + 1692 isec->getObjMsg(src - (os->addr + isec->outSecOff))); 1693 } 1694 return addThunkSection(os, isd, thunkSecOff); 1695 } 1696 1697 // Add a Thunk that needs to be placed in a ThunkSection that immediately 1698 // precedes its Target. 1699 ThunkSection *ThunkCreator::getISThunkSec(InputSection *isec) { 1700 ThunkSection *ts = thunkedSections.lookup(isec); 1701 if (ts) 1702 return ts; 1703 1704 // Find InputSectionRange within Target Output Section (TOS) that the 1705 // InputSection (IS) that we need to precede is in. 1706 OutputSection *tos = isec->getParent(); 1707 for (BaseCommand *bc : tos->sectionCommands) { 1708 auto *isd = dyn_cast<InputSectionDescription>(bc); 1709 if (!isd || isd->sections.empty()) 1710 continue; 1711 1712 InputSection *first = isd->sections.front(); 1713 InputSection *last = isd->sections.back(); 1714 1715 if (isec->outSecOff < first->outSecOff || last->outSecOff < isec->outSecOff) 1716 continue; 1717 1718 ts = addThunkSection(tos, isd, isec->outSecOff); 1719 thunkedSections[isec] = ts; 1720 return ts; 1721 } 1722 1723 return nullptr; 1724 } 1725 1726 // Create one or more ThunkSections per OS that can be used to place Thunks. 1727 // We attempt to place the ThunkSections using the following desirable 1728 // properties: 1729 // - Within range of the maximum number of callers 1730 // - Minimise the number of ThunkSections 1731 // 1732 // We follow a simple but conservative heuristic to place ThunkSections at 1733 // offsets that are multiples of a Target specific branch range. 1734 // For an InputSectionDescription that is smaller than the range, a single 1735 // ThunkSection at the end of the range will do. 1736 // 1737 // For an InputSectionDescription that is more than twice the size of the range, 1738 // we place the last ThunkSection at range bytes from the end of the 1739 // InputSectionDescription in order to increase the likelihood that the 1740 // distance from a thunk to its target will be sufficiently small to 1741 // allow for the creation of a short thunk. 1742 void ThunkCreator::createInitialThunkSections( 1743 ArrayRef<OutputSection *> outputSections) { 1744 uint32_t thunkSectionSpacing = target->getThunkSectionSpacing(); 1745 1746 forEachInputSectionDescription( 1747 outputSections, [&](OutputSection *os, InputSectionDescription *isd) { 1748 if (isd->sections.empty()) 1749 return; 1750 1751 uint32_t isdBegin = isd->sections.front()->outSecOff; 1752 uint32_t isdEnd = 1753 isd->sections.back()->outSecOff + isd->sections.back()->getSize(); 1754 uint32_t lastThunkLowerBound = -1; 1755 if (isdEnd - isdBegin > thunkSectionSpacing * 2) 1756 lastThunkLowerBound = isdEnd - thunkSectionSpacing; 1757 1758 uint32_t isecLimit; 1759 uint32_t prevIsecLimit = isdBegin; 1760 uint32_t thunkUpperBound = isdBegin + thunkSectionSpacing; 1761 1762 for (const InputSection *isec : isd->sections) { 1763 isecLimit = isec->outSecOff + isec->getSize(); 1764 if (isecLimit > thunkUpperBound) { 1765 addThunkSection(os, isd, prevIsecLimit); 1766 thunkUpperBound = prevIsecLimit + thunkSectionSpacing; 1767 } 1768 if (isecLimit > lastThunkLowerBound) 1769 break; 1770 prevIsecLimit = isecLimit; 1771 } 1772 addThunkSection(os, isd, isecLimit); 1773 }); 1774 } 1775 1776 ThunkSection *ThunkCreator::addThunkSection(OutputSection *os, 1777 InputSectionDescription *isd, 1778 uint64_t off) { 1779 auto *ts = make<ThunkSection>(os, off); 1780 ts->partition = os->partition; 1781 if ((config->fixCortexA53Errata843419 || config->fixCortexA8) && 1782 !isd->sections.empty()) { 1783 // The errata fixes are sensitive to addresses modulo 4 KiB. When we add 1784 // thunks we disturb the base addresses of sections placed after the thunks 1785 // this makes patches we have generated redundant, and may cause us to 1786 // generate more patches as different instructions are now in sensitive 1787 // locations. When we generate more patches we may force more branches to 1788 // go out of range, causing more thunks to be generated. In pathological 1789 // cases this can cause the address dependent content pass not to converge. 1790 // We fix this by rounding up the size of the ThunkSection to 4KiB, this 1791 // limits the insertion of a ThunkSection on the addresses modulo 4 KiB, 1792 // which means that adding Thunks to the section does not invalidate 1793 // errata patches for following code. 1794 // Rounding up the size to 4KiB has consequences for code-size and can 1795 // trip up linker script defined assertions. For example the linux kernel 1796 // has an assertion that what LLD represents as an InputSectionDescription 1797 // does not exceed 4 KiB even if the overall OutputSection is > 128 Mib. 1798 // We use the heuristic of rounding up the size when both of the following 1799 // conditions are true: 1800 // 1.) The OutputSection is larger than the ThunkSectionSpacing. This 1801 // accounts for the case where no single InputSectionDescription is 1802 // larger than the OutputSection size. This is conservative but simple. 1803 // 2.) The InputSectionDescription is larger than 4 KiB. This will prevent 1804 // any assertion failures that an InputSectionDescription is < 4 KiB 1805 // in size. 1806 uint64_t isdSize = isd->sections.back()->outSecOff + 1807 isd->sections.back()->getSize() - 1808 isd->sections.front()->outSecOff; 1809 if (os->size > target->getThunkSectionSpacing() && isdSize > 4096) 1810 ts->roundUpSizeForErrata = true; 1811 } 1812 isd->thunkSections.push_back({ts, pass}); 1813 return ts; 1814 } 1815 1816 static bool isThunkSectionCompatible(InputSection *source, 1817 SectionBase *target) { 1818 // We can't reuse thunks in different loadable partitions because they might 1819 // not be loaded. But partition 1 (the main partition) will always be loaded. 1820 if (source->partition != target->partition) 1821 return target->partition == 1; 1822 return true; 1823 } 1824 1825 static int64_t getPCBias(RelType type) { 1826 if (config->emachine != EM_ARM) 1827 return 0; 1828 switch (type) { 1829 case R_ARM_THM_JUMP19: 1830 case R_ARM_THM_JUMP24: 1831 case R_ARM_THM_CALL: 1832 return 4; 1833 default: 1834 return 8; 1835 } 1836 } 1837 1838 std::pair<Thunk *, bool> ThunkCreator::getThunk(InputSection *isec, 1839 Relocation &rel, uint64_t src) { 1840 std::vector<Thunk *> *thunkVec = nullptr; 1841 int64_t addend = rel.addend + getPCBias(rel.type); 1842 1843 // We use a ((section, offset), addend) pair to find the thunk position if 1844 // possible so that we create only one thunk for aliased symbols or ICFed 1845 // sections. There may be multiple relocations sharing the same (section, 1846 // offset + addend) pair. We may revert the relocation back to its original 1847 // non-Thunk target, so we cannot fold offset + addend. 1848 if (auto *d = dyn_cast<Defined>(rel.sym)) 1849 if (!d->isInPlt() && d->section) 1850 thunkVec = &thunkedSymbolsBySectionAndAddend[{ 1851 {d->section->repl, d->value}, addend}]; 1852 if (!thunkVec) 1853 thunkVec = &thunkedSymbols[{rel.sym, addend}]; 1854 1855 // Check existing Thunks for Sym to see if they can be reused 1856 for (Thunk *t : *thunkVec) 1857 if (isThunkSectionCompatible(isec, t->getThunkTargetSym()->section) && 1858 t->isCompatibleWith(*isec, rel) && 1859 target->inBranchRange(rel.type, src, 1860 t->getThunkTargetSym()->getVA(rel.addend) + 1861 getPCBias(rel.type))) 1862 return std::make_pair(t, false); 1863 1864 // No existing compatible Thunk in range, create a new one 1865 Thunk *t = addThunk(*isec, rel); 1866 thunkVec->push_back(t); 1867 return std::make_pair(t, true); 1868 } 1869 1870 // Return true if the relocation target is an in range Thunk. 1871 // Return false if the relocation is not to a Thunk. If the relocation target 1872 // was originally to a Thunk, but is no longer in range we revert the 1873 // relocation back to its original non-Thunk target. 1874 bool ThunkCreator::normalizeExistingThunk(Relocation &rel, uint64_t src) { 1875 if (Thunk *t = thunks.lookup(rel.sym)) { 1876 if (target->inBranchRange(rel.type, src, 1877 rel.sym->getVA(rel.addend) + getPCBias(rel.type))) 1878 return true; 1879 rel.sym = &t->destination; 1880 rel.addend = t->addend; 1881 if (rel.sym->isInPlt()) 1882 rel.expr = toPlt(rel.expr); 1883 } 1884 return false; 1885 } 1886 1887 // Process all relocations from the InputSections that have been assigned 1888 // to InputSectionDescriptions and redirect through Thunks if needed. The 1889 // function should be called iteratively until it returns false. 1890 // 1891 // PreConditions: 1892 // All InputSections that may need a Thunk are reachable from 1893 // OutputSectionCommands. 1894 // 1895 // All OutputSections have an address and all InputSections have an offset 1896 // within the OutputSection. 1897 // 1898 // The offsets between caller (relocation place) and callee 1899 // (relocation target) will not be modified outside of createThunks(). 1900 // 1901 // PostConditions: 1902 // If return value is true then ThunkSections have been inserted into 1903 // OutputSections. All relocations that needed a Thunk based on the information 1904 // available to createThunks() on entry have been redirected to a Thunk. Note 1905 // that adding Thunks changes offsets between caller and callee so more Thunks 1906 // may be required. 1907 // 1908 // If return value is false then no more Thunks are needed, and createThunks has 1909 // made no changes. If the target requires range extension thunks, currently 1910 // ARM, then any future change in offset between caller and callee risks a 1911 // relocation out of range error. 1912 bool ThunkCreator::createThunks(ArrayRef<OutputSection *> outputSections) { 1913 bool addressesChanged = false; 1914 1915 if (pass == 0 && target->getThunkSectionSpacing()) 1916 createInitialThunkSections(outputSections); 1917 1918 // Create all the Thunks and insert them into synthetic ThunkSections. The 1919 // ThunkSections are later inserted back into InputSectionDescriptions. 1920 // We separate the creation of ThunkSections from the insertion of the 1921 // ThunkSections as ThunkSections are not always inserted into the same 1922 // InputSectionDescription as the caller. 1923 forEachInputSectionDescription( 1924 outputSections, [&](OutputSection *os, InputSectionDescription *isd) { 1925 for (InputSection *isec : isd->sections) 1926 for (Relocation &rel : isec->relocations) { 1927 uint64_t src = isec->getVA(rel.offset); 1928 1929 // If we are a relocation to an existing Thunk, check if it is 1930 // still in range. If not then Rel will be altered to point to its 1931 // original target so another Thunk can be generated. 1932 if (pass > 0 && normalizeExistingThunk(rel, src)) 1933 continue; 1934 1935 if (!target->needsThunk(rel.expr, rel.type, isec->file, src, 1936 *rel.sym, rel.addend)) 1937 continue; 1938 1939 Thunk *t; 1940 bool isNew; 1941 std::tie(t, isNew) = getThunk(isec, rel, src); 1942 1943 if (isNew) { 1944 // Find or create a ThunkSection for the new Thunk 1945 ThunkSection *ts; 1946 if (auto *tis = t->getTargetInputSection()) 1947 ts = getISThunkSec(tis); 1948 else 1949 ts = getISDThunkSec(os, isec, isd, rel.type, src); 1950 ts->addThunk(t); 1951 thunks[t->getThunkTargetSym()] = t; 1952 } 1953 1954 // Redirect relocation to Thunk, we never go via the PLT to a Thunk 1955 rel.sym = t->getThunkTargetSym(); 1956 rel.expr = fromPlt(rel.expr); 1957 1958 // On AArch64 and PPC, a jump/call relocation may be encoded as 1959 // STT_SECTION + non-zero addend, clear the addend after 1960 // redirection. 1961 if (config->emachine != EM_MIPS) 1962 rel.addend = -getPCBias(rel.type); 1963 } 1964 1965 for (auto &p : isd->thunkSections) 1966 addressesChanged |= p.first->assignOffsets(); 1967 }); 1968 1969 for (auto &p : thunkedSections) 1970 addressesChanged |= p.second->assignOffsets(); 1971 1972 // Merge all created synthetic ThunkSections back into OutputSection 1973 mergeThunks(outputSections); 1974 ++pass; 1975 return addressesChanged; 1976 } 1977 1978 template void scanRelocations<ELF32LE>(InputSectionBase &); 1979 template void scanRelocations<ELF32BE>(InputSectionBase &); 1980 template void scanRelocations<ELF64LE>(InputSectionBase &); 1981 template void scanRelocations<ELF64BE>(InputSectionBase &); 1982 template void reportUndefinedSymbols<ELF32LE>(); 1983 template void reportUndefinedSymbols<ELF32BE>(); 1984 template void reportUndefinedSymbols<ELF64LE>(); 1985 template void reportUndefinedSymbols<ELF64BE>(); 1986 1987 } // namespace elf 1988 } // namespace lld 1989