1 //===- Driver.cpp ---------------------------------------------------------===// 2 // 3 // The LLVM Linker 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // The driver drives the entire linking process. It is responsible for 11 // parsing command line options and doing whatever it is instructed to do. 12 // 13 // One notable thing in the LLD's driver when compared to other linkers is 14 // that the LLD's driver is agnostic on the host operating system. 15 // Other linkers usually have implicit default values (such as a dynamic 16 // linker path or library paths) for each host OS. 17 // 18 // I don't think implicit default values are useful because they are 19 // usually explicitly specified by the compiler driver. They can even 20 // be harmful when you are doing cross-linking. Therefore, in LLD, we 21 // simply trust the compiler driver to pass all required options and 22 // don't try to make effort on our side. 23 // 24 //===----------------------------------------------------------------------===// 25 26 #include "Driver.h" 27 #include "Config.h" 28 #include "Filesystem.h" 29 #include "ICF.h" 30 #include "InputFiles.h" 31 #include "InputSection.h" 32 #include "LinkerScript.h" 33 #include "OutputSections.h" 34 #include "ScriptParser.h" 35 #include "Strings.h" 36 #include "SymbolTable.h" 37 #include "Symbols.h" 38 #include "SyntheticSections.h" 39 #include "Target.h" 40 #include "Writer.h" 41 #include "lld/Common/Args.h" 42 #include "lld/Common/Driver.h" 43 #include "lld/Common/ErrorHandler.h" 44 #include "lld/Common/Memory.h" 45 #include "lld/Common/Threads.h" 46 #include "lld/Common/Version.h" 47 #include "llvm/ADT/StringExtras.h" 48 #include "llvm/ADT/StringSwitch.h" 49 #include "llvm/Support/CommandLine.h" 50 #include "llvm/Support/Compression.h" 51 #include "llvm/Support/Path.h" 52 #include "llvm/Support/TarWriter.h" 53 #include "llvm/Support/TargetSelect.h" 54 #include "llvm/Support/raw_ostream.h" 55 #include <cstdlib> 56 #include <utility> 57 58 using namespace llvm; 59 using namespace llvm::ELF; 60 using namespace llvm::object; 61 using namespace llvm::sys; 62 63 using namespace lld; 64 using namespace lld::elf; 65 66 Configuration *elf::Config; 67 LinkerDriver *elf::Driver; 68 69 static void setConfigs(); 70 71 bool elf::link(ArrayRef<const char *> Args, bool CanExitEarly, 72 raw_ostream &Error) { 73 errorHandler().LogName = Args[0]; 74 errorHandler().ErrorLimitExceededMsg = 75 "too many errors emitted, stopping now (use " 76 "-error-limit=0 to see all errors)"; 77 errorHandler().ErrorOS = &Error; 78 errorHandler().ColorDiagnostics = Error.has_colors(); 79 InputSections.clear(); 80 OutputSections.clear(); 81 Tar = nullptr; 82 BinaryFiles.clear(); 83 BitcodeFiles.clear(); 84 ObjectFiles.clear(); 85 SharedFiles.clear(); 86 87 Config = make<Configuration>(); 88 Driver = make<LinkerDriver>(); 89 Script = make<LinkerScript>(); 90 Symtab = make<SymbolTable>(); 91 Config->Argv = {Args.begin(), Args.end()}; 92 93 Driver->main(Args, CanExitEarly); 94 95 // Exit immediately if we don't need to return to the caller. 96 // This saves time because the overhead of calling destructors 97 // for all globally-allocated objects is not negligible. 98 if (Config->ExitEarly) 99 exitLld(errorCount() ? 1 : 0); 100 101 freeArena(); 102 return !errorCount(); 103 } 104 105 // Parses a linker -m option. 106 static std::tuple<ELFKind, uint16_t, uint8_t> parseEmulation(StringRef Emul) { 107 uint8_t OSABI = 0; 108 StringRef S = Emul; 109 if (S.endswith("_fbsd")) { 110 S = S.drop_back(5); 111 OSABI = ELFOSABI_FREEBSD; 112 } 113 114 std::pair<ELFKind, uint16_t> Ret = 115 StringSwitch<std::pair<ELFKind, uint16_t>>(S) 116 .Cases("aarch64elf", "aarch64linux", {ELF64LEKind, EM_AARCH64}) 117 .Cases("armelf", "armelf_linux_eabi", {ELF32LEKind, EM_ARM}) 118 .Case("elf32_x86_64", {ELF32LEKind, EM_X86_64}) 119 .Cases("elf32btsmip", "elf32btsmipn32", {ELF32BEKind, EM_MIPS}) 120 .Cases("elf32ltsmip", "elf32ltsmipn32", {ELF32LEKind, EM_MIPS}) 121 .Case("elf32ppc", {ELF32BEKind, EM_PPC}) 122 .Case("elf64btsmip", {ELF64BEKind, EM_MIPS}) 123 .Case("elf64ltsmip", {ELF64LEKind, EM_MIPS}) 124 .Case("elf64ppc", {ELF64BEKind, EM_PPC64}) 125 .Cases("elf_amd64", "elf_x86_64", {ELF64LEKind, EM_X86_64}) 126 .Case("elf_i386", {ELF32LEKind, EM_386}) 127 .Case("elf_iamcu", {ELF32LEKind, EM_IAMCU}) 128 .Default({ELFNoneKind, EM_NONE}); 129 130 if (Ret.first == ELFNoneKind) 131 error("unknown emulation: " + Emul); 132 return std::make_tuple(Ret.first, Ret.second, OSABI); 133 } 134 135 // Returns slices of MB by parsing MB as an archive file. 136 // Each slice consists of a member file in the archive. 137 std::vector<std::pair<MemoryBufferRef, uint64_t>> static getArchiveMembers( 138 MemoryBufferRef MB) { 139 std::unique_ptr<Archive> File = 140 CHECK(Archive::create(MB), 141 MB.getBufferIdentifier() + ": failed to parse archive"); 142 143 std::vector<std::pair<MemoryBufferRef, uint64_t>> V; 144 Error Err = Error::success(); 145 bool AddToTar = File->isThin() && Tar; 146 for (const ErrorOr<Archive::Child> &COrErr : File->children(Err)) { 147 Archive::Child C = 148 CHECK(COrErr, MB.getBufferIdentifier() + 149 ": could not get the child of the archive"); 150 MemoryBufferRef MBRef = 151 CHECK(C.getMemoryBufferRef(), 152 MB.getBufferIdentifier() + 153 ": could not get the buffer for a child of the archive"); 154 if (AddToTar) 155 Tar->append(relativeToRoot(check(C.getFullName())), MBRef.getBuffer()); 156 V.push_back(std::make_pair(MBRef, C.getChildOffset())); 157 } 158 if (Err) 159 fatal(MB.getBufferIdentifier() + ": Archive::children failed: " + 160 toString(std::move(Err))); 161 162 // Take ownership of memory buffers created for members of thin archives. 163 for (std::unique_ptr<MemoryBuffer> &MB : File->takeThinBuffers()) 164 make<std::unique_ptr<MemoryBuffer>>(std::move(MB)); 165 166 return V; 167 } 168 169 // Opens a file and create a file object. Path has to be resolved already. 170 void LinkerDriver::addFile(StringRef Path, bool WithLOption) { 171 using namespace sys::fs; 172 173 Optional<MemoryBufferRef> Buffer = readFile(Path); 174 if (!Buffer.hasValue()) 175 return; 176 MemoryBufferRef MBRef = *Buffer; 177 178 if (InBinary) { 179 Files.push_back(make<BinaryFile>(MBRef)); 180 return; 181 } 182 183 switch (identify_magic(MBRef.getBuffer())) { 184 case file_magic::unknown: 185 readLinkerScript(MBRef); 186 return; 187 case file_magic::archive: { 188 // Handle -whole-archive. 189 if (InWholeArchive) { 190 for (const auto &P : getArchiveMembers(MBRef)) 191 Files.push_back(createObjectFile(P.first, Path, P.second)); 192 return; 193 } 194 195 std::unique_ptr<Archive> File = 196 CHECK(Archive::create(MBRef), Path + ": failed to parse archive"); 197 198 // If an archive file has no symbol table, it is likely that a user 199 // is attempting LTO and using a default ar command that doesn't 200 // understand the LLVM bitcode file. It is a pretty common error, so 201 // we'll handle it as if it had a symbol table. 202 if (!File->isEmpty() && !File->hasSymbolTable()) { 203 for (const auto &P : getArchiveMembers(MBRef)) 204 Files.push_back(make<LazyObjFile>(P.first, Path, P.second)); 205 return; 206 } 207 208 // Handle the regular case. 209 Files.push_back(make<ArchiveFile>(std::move(File))); 210 return; 211 } 212 case file_magic::elf_shared_object: 213 if (Config->Relocatable) { 214 error("attempted static link of dynamic object " + Path); 215 return; 216 } 217 218 // DSOs usually have DT_SONAME tags in their ELF headers, and the 219 // sonames are used to identify DSOs. But if they are missing, 220 // they are identified by filenames. We don't know whether the new 221 // file has a DT_SONAME or not because we haven't parsed it yet. 222 // Here, we set the default soname for the file because we might 223 // need it later. 224 // 225 // If a file was specified by -lfoo, the directory part is not 226 // significant, as a user did not specify it. This behavior is 227 // compatible with GNU. 228 Files.push_back( 229 createSharedFile(MBRef, WithLOption ? path::filename(Path) : Path)); 230 return; 231 default: 232 if (InLib) 233 Files.push_back(make<LazyObjFile>(MBRef, "", 0)); 234 else 235 Files.push_back(createObjectFile(MBRef)); 236 } 237 } 238 239 // Add a given library by searching it from input search paths. 240 void LinkerDriver::addLibrary(StringRef Name) { 241 if (Optional<std::string> Path = searchLibrary(Name)) 242 addFile(*Path, /*WithLOption=*/true); 243 else 244 error("unable to find library -l" + Name); 245 } 246 247 // This function is called on startup. We need this for LTO since 248 // LTO calls LLVM functions to compile bitcode files to native code. 249 // Technically this can be delayed until we read bitcode files, but 250 // we don't bother to do lazily because the initialization is fast. 251 static void initLLVM(opt::InputArgList &Args) { 252 InitializeAllTargets(); 253 InitializeAllTargetMCs(); 254 InitializeAllAsmPrinters(); 255 InitializeAllAsmParsers(); 256 257 // Parse and evaluate -mllvm options. 258 std::vector<const char *> V; 259 V.push_back("lld (LLVM option parsing)"); 260 for (auto *Arg : Args.filtered(OPT_mllvm)) 261 V.push_back(Arg->getValue()); 262 cl::ParseCommandLineOptions(V.size(), V.data()); 263 } 264 265 // Some command line options or some combinations of them are not allowed. 266 // This function checks for such errors. 267 static void checkOptions(opt::InputArgList &Args) { 268 // The MIPS ABI as of 2016 does not support the GNU-style symbol lookup 269 // table which is a relatively new feature. 270 if (Config->EMachine == EM_MIPS && Config->GnuHash) 271 error("the .gnu.hash section is not compatible with the MIPS target."); 272 273 if (Config->FixCortexA53Errata843419 && Config->EMachine != EM_AARCH64) 274 error("--fix-cortex-a53-843419 is only supported on AArch64 targets."); 275 276 if (Config->Pie && Config->Shared) 277 error("-shared and -pie may not be used together"); 278 279 if (!Config->Shared && !Config->FilterList.empty()) 280 error("-F may not be used without -shared"); 281 282 if (!Config->Shared && !Config->AuxiliaryList.empty()) 283 error("-f may not be used without -shared"); 284 285 if (!Config->Relocatable && !Config->DefineCommon) 286 error("-no-define-common not supported in non relocatable output"); 287 288 if (Config->Relocatable) { 289 if (Config->Shared) 290 error("-r and -shared may not be used together"); 291 if (Config->GcSections) 292 error("-r and --gc-sections may not be used together"); 293 if (Config->ICF) 294 error("-r and --icf may not be used together"); 295 if (Config->Pie) 296 error("-r and -pie may not be used together"); 297 } 298 } 299 300 static const char *getReproduceOption(opt::InputArgList &Args) { 301 if (auto *Arg = Args.getLastArg(OPT_reproduce)) 302 return Arg->getValue(); 303 return getenv("LLD_REPRODUCE"); 304 } 305 306 static bool hasZOption(opt::InputArgList &Args, StringRef Key) { 307 for (auto *Arg : Args.filtered(OPT_z)) 308 if (Key == Arg->getValue()) 309 return true; 310 return false; 311 } 312 313 void LinkerDriver::main(ArrayRef<const char *> ArgsArr, bool CanExitEarly) { 314 ELFOptTable Parser; 315 opt::InputArgList Args = Parser.parse(ArgsArr.slice(1)); 316 317 // Interpret this flag early because error() depends on them. 318 errorHandler().ErrorLimit = args::getInteger(Args, OPT_error_limit, 20); 319 320 // Handle -help 321 if (Args.hasArg(OPT_help)) { 322 printHelp(ArgsArr[0]); 323 return; 324 } 325 326 // Handle -v or -version. 327 // 328 // A note about "compatible with GNU linkers" message: this is a hack for 329 // scripts generated by GNU Libtool 2.4.6 (released in February 2014 and 330 // still the newest version in March 2017) or earlier to recognize LLD as 331 // a GNU compatible linker. As long as an output for the -v option 332 // contains "GNU" or "with BFD", they recognize us as GNU-compatible. 333 // 334 // This is somewhat ugly hack, but in reality, we had no choice other 335 // than doing this. Considering the very long release cycle of Libtool, 336 // it is not easy to improve it to recognize LLD as a GNU compatible 337 // linker in a timely manner. Even if we can make it, there are still a 338 // lot of "configure" scripts out there that are generated by old version 339 // of Libtool. We cannot convince every software developer to migrate to 340 // the latest version and re-generate scripts. So we have this hack. 341 if (Args.hasArg(OPT_v) || Args.hasArg(OPT_version)) 342 message(getLLDVersion() + " (compatible with GNU linkers)"); 343 344 // The behavior of -v or --version is a bit strange, but this is 345 // needed for compatibility with GNU linkers. 346 if (Args.hasArg(OPT_v) && !Args.hasArg(OPT_INPUT)) 347 return; 348 if (Args.hasArg(OPT_version)) 349 return; 350 351 Config->ExitEarly = CanExitEarly && !Args.hasArg(OPT_full_shutdown); 352 errorHandler().ExitEarly = Config->ExitEarly; 353 354 if (const char *Path = getReproduceOption(Args)) { 355 // Note that --reproduce is a debug option so you can ignore it 356 // if you are trying to understand the whole picture of the code. 357 Expected<std::unique_ptr<TarWriter>> ErrOrWriter = 358 TarWriter::create(Path, path::stem(Path)); 359 if (ErrOrWriter) { 360 Tar = ErrOrWriter->get(); 361 Tar->append("response.txt", createResponseFile(Args)); 362 Tar->append("version.txt", getLLDVersion() + "\n"); 363 make<std::unique_ptr<TarWriter>>(std::move(*ErrOrWriter)); 364 } else { 365 error(Twine("--reproduce: failed to open ") + Path + ": " + 366 toString(ErrOrWriter.takeError())); 367 } 368 } 369 370 readConfigs(Args); 371 initLLVM(Args); 372 createFiles(Args); 373 inferMachineType(); 374 setConfigs(); 375 checkOptions(Args); 376 if (errorCount()) 377 return; 378 379 switch (Config->EKind) { 380 case ELF32LEKind: 381 link<ELF32LE>(Args); 382 return; 383 case ELF32BEKind: 384 link<ELF32BE>(Args); 385 return; 386 case ELF64LEKind: 387 link<ELF64LE>(Args); 388 return; 389 case ELF64BEKind: 390 link<ELF64BE>(Args); 391 return; 392 default: 393 llvm_unreachable("unknown Config->EKind"); 394 } 395 } 396 397 static std::string getRpath(opt::InputArgList &Args) { 398 std::vector<StringRef> V = args::getStrings(Args, OPT_rpath); 399 return llvm::join(V.begin(), V.end(), ":"); 400 } 401 402 // Determines what we should do if there are remaining unresolved 403 // symbols after the name resolution. 404 static UnresolvedPolicy getUnresolvedSymbolPolicy(opt::InputArgList &Args) { 405 if (Args.hasArg(OPT_relocatable)) 406 return UnresolvedPolicy::IgnoreAll; 407 408 UnresolvedPolicy ErrorOrWarn = Args.hasFlag(OPT_error_unresolved_symbols, 409 OPT_warn_unresolved_symbols, true) 410 ? UnresolvedPolicy::ReportError 411 : UnresolvedPolicy::Warn; 412 413 // Process the last of -unresolved-symbols, -no-undefined or -z defs. 414 for (auto *Arg : llvm::reverse(Args)) { 415 switch (Arg->getOption().getID()) { 416 case OPT_unresolved_symbols: { 417 StringRef S = Arg->getValue(); 418 if (S == "ignore-all" || S == "ignore-in-object-files") 419 return UnresolvedPolicy::Ignore; 420 if (S == "ignore-in-shared-libs" || S == "report-all") 421 return ErrorOrWarn; 422 error("unknown --unresolved-symbols value: " + S); 423 continue; 424 } 425 case OPT_no_undefined: 426 return ErrorOrWarn; 427 case OPT_z: 428 if (StringRef(Arg->getValue()) == "defs") 429 return ErrorOrWarn; 430 continue; 431 } 432 } 433 434 // -shared implies -unresolved-symbols=ignore-all because missing 435 // symbols are likely to be resolved at runtime using other DSOs. 436 if (Config->Shared) 437 return UnresolvedPolicy::Ignore; 438 return ErrorOrWarn; 439 } 440 441 static Target2Policy getTarget2(opt::InputArgList &Args) { 442 StringRef S = Args.getLastArgValue(OPT_target2, "got-rel"); 443 if (S == "rel") 444 return Target2Policy::Rel; 445 if (S == "abs") 446 return Target2Policy::Abs; 447 if (S == "got-rel") 448 return Target2Policy::GotRel; 449 error("unknown --target2 option: " + S); 450 return Target2Policy::GotRel; 451 } 452 453 static bool isOutputFormatBinary(opt::InputArgList &Args) { 454 if (auto *Arg = Args.getLastArg(OPT_oformat)) { 455 StringRef S = Arg->getValue(); 456 if (S == "binary") 457 return true; 458 error("unknown --oformat value: " + S); 459 } 460 return false; 461 } 462 463 static DiscardPolicy getDiscard(opt::InputArgList &Args) { 464 if (Args.hasArg(OPT_relocatable)) 465 return DiscardPolicy::None; 466 467 auto *Arg = 468 Args.getLastArg(OPT_discard_all, OPT_discard_locals, OPT_discard_none); 469 if (!Arg) 470 return DiscardPolicy::Default; 471 if (Arg->getOption().getID() == OPT_discard_all) 472 return DiscardPolicy::All; 473 if (Arg->getOption().getID() == OPT_discard_locals) 474 return DiscardPolicy::Locals; 475 return DiscardPolicy::None; 476 } 477 478 static StringRef getDynamicLinker(opt::InputArgList &Args) { 479 auto *Arg = Args.getLastArg(OPT_dynamic_linker, OPT_no_dynamic_linker); 480 if (!Arg || Arg->getOption().getID() == OPT_no_dynamic_linker) 481 return ""; 482 return Arg->getValue(); 483 } 484 485 static StripPolicy getStrip(opt::InputArgList &Args) { 486 if (Args.hasArg(OPT_relocatable)) 487 return StripPolicy::None; 488 489 auto *Arg = Args.getLastArg(OPT_strip_all, OPT_strip_debug); 490 if (!Arg) 491 return StripPolicy::None; 492 if (Arg->getOption().getID() == OPT_strip_all) 493 return StripPolicy::All; 494 return StripPolicy::Debug; 495 } 496 497 static uint64_t parseSectionAddress(StringRef S, const opt::Arg &Arg) { 498 uint64_t VA = 0; 499 if (S.startswith("0x")) 500 S = S.drop_front(2); 501 if (!to_integer(S, VA, 16)) 502 error("invalid argument: " + toString(Arg)); 503 return VA; 504 } 505 506 static StringMap<uint64_t> getSectionStartMap(opt::InputArgList &Args) { 507 StringMap<uint64_t> Ret; 508 for (auto *Arg : Args.filtered(OPT_section_start)) { 509 StringRef Name; 510 StringRef Addr; 511 std::tie(Name, Addr) = StringRef(Arg->getValue()).split('='); 512 Ret[Name] = parseSectionAddress(Addr, *Arg); 513 } 514 515 if (auto *Arg = Args.getLastArg(OPT_Ttext)) 516 Ret[".text"] = parseSectionAddress(Arg->getValue(), *Arg); 517 if (auto *Arg = Args.getLastArg(OPT_Tdata)) 518 Ret[".data"] = parseSectionAddress(Arg->getValue(), *Arg); 519 if (auto *Arg = Args.getLastArg(OPT_Tbss)) 520 Ret[".bss"] = parseSectionAddress(Arg->getValue(), *Arg); 521 return Ret; 522 } 523 524 static SortSectionPolicy getSortSection(opt::InputArgList &Args) { 525 StringRef S = Args.getLastArgValue(OPT_sort_section); 526 if (S == "alignment") 527 return SortSectionPolicy::Alignment; 528 if (S == "name") 529 return SortSectionPolicy::Name; 530 if (!S.empty()) 531 error("unknown --sort-section rule: " + S); 532 return SortSectionPolicy::Default; 533 } 534 535 static OrphanHandlingPolicy getOrphanHandling(opt::InputArgList &Args) { 536 StringRef S = Args.getLastArgValue(OPT_orphan_handling, "place"); 537 if (S == "warn") 538 return OrphanHandlingPolicy::Warn; 539 if (S == "error") 540 return OrphanHandlingPolicy::Error; 541 if (S != "place") 542 error("unknown --orphan-handling mode: " + S); 543 return OrphanHandlingPolicy::Place; 544 } 545 546 // Parse --build-id or --build-id=<style>. We handle "tree" as a 547 // synonym for "sha1" because all our hash functions including 548 // -build-id=sha1 are actually tree hashes for performance reasons. 549 static std::pair<BuildIdKind, std::vector<uint8_t>> 550 getBuildId(opt::InputArgList &Args) { 551 auto *Arg = Args.getLastArg(OPT_build_id, OPT_build_id_eq); 552 if (!Arg) 553 return {BuildIdKind::None, {}}; 554 555 if (Arg->getOption().getID() == OPT_build_id) 556 return {BuildIdKind::Fast, {}}; 557 558 StringRef S = Arg->getValue(); 559 if (S == "md5") 560 return {BuildIdKind::Md5, {}}; 561 if (S == "sha1" || S == "tree") 562 return {BuildIdKind::Sha1, {}}; 563 if (S == "uuid") 564 return {BuildIdKind::Uuid, {}}; 565 if (S.startswith("0x")) 566 return {BuildIdKind::Hexstring, parseHex(S.substr(2))}; 567 568 if (S != "none") 569 error("unknown --build-id style: " + S); 570 return {BuildIdKind::None, {}}; 571 } 572 573 static bool getCompressDebugSections(opt::InputArgList &Args) { 574 StringRef S = Args.getLastArgValue(OPT_compress_debug_sections, "none"); 575 if (S == "none") 576 return false; 577 if (S != "zlib") 578 error("unknown --compress-debug-sections value: " + S); 579 if (!zlib::isAvailable()) 580 error("--compress-debug-sections: zlib is not available"); 581 return true; 582 } 583 584 static int parseInt(StringRef S, opt::Arg *Arg) { 585 int V = 0; 586 if (!to_integer(S, V, 10)) 587 error(Arg->getSpelling() + "=" + Arg->getValue() + 588 ": number expected, but got '" + S + "'"); 589 return V; 590 } 591 592 // Initializes Config members by the command line options. 593 void LinkerDriver::readConfigs(opt::InputArgList &Args) { 594 Config->AllowMultipleDefinition = 595 Args.hasArg(OPT_allow_multiple_definition) || hasZOption(Args, "muldefs"); 596 Config->AuxiliaryList = args::getStrings(Args, OPT_auxiliary); 597 Config->Bsymbolic = Args.hasArg(OPT_Bsymbolic); 598 Config->BsymbolicFunctions = Args.hasArg(OPT_Bsymbolic_functions); 599 Config->Chroot = Args.getLastArgValue(OPT_chroot); 600 Config->CompressDebugSections = getCompressDebugSections(Args); 601 Config->DefineCommon = Args.hasFlag(OPT_define_common, OPT_no_define_common, 602 !Args.hasArg(OPT_relocatable)); 603 Config->Demangle = Args.hasFlag(OPT_demangle, OPT_no_demangle, true); 604 Config->DisableVerify = Args.hasArg(OPT_disable_verify); 605 Config->Discard = getDiscard(Args); 606 Config->DynamicLinker = getDynamicLinker(Args); 607 Config->EhFrameHdr = 608 Args.hasFlag(OPT_eh_frame_hdr, OPT_no_eh_frame_hdr, false); 609 Config->EmitRelocs = Args.hasArg(OPT_emit_relocs); 610 Config->EnableNewDtags = !Args.hasArg(OPT_disable_new_dtags); 611 Config->Entry = Args.getLastArgValue(OPT_entry); 612 Config->ExportDynamic = 613 Args.hasFlag(OPT_export_dynamic, OPT_no_export_dynamic, false); 614 errorHandler().FatalWarnings = 615 Args.hasFlag(OPT_fatal_warnings, OPT_no_fatal_warnings, false); 616 Config->FilterList = args::getStrings(Args, OPT_filter); 617 Config->Fini = Args.getLastArgValue(OPT_fini, "_fini"); 618 Config->FixCortexA53Errata843419 = Args.hasArg(OPT_fix_cortex_a53_843419); 619 Config->GcSections = Args.hasFlag(OPT_gc_sections, OPT_no_gc_sections, false); 620 Config->GdbIndex = Args.hasFlag(OPT_gdb_index, OPT_no_gdb_index, false); 621 Config->ICF = Args.hasFlag(OPT_icf_all, OPT_icf_none, false); 622 Config->IgnoreDataAddressEquality = 623 Args.hasArg(OPT_ignore_data_address_equality); 624 Config->IgnoreFunctionAddressEquality = 625 Args.hasArg(OPT_ignore_function_address_equality); 626 Config->Init = Args.getLastArgValue(OPT_init, "_init"); 627 Config->LTOAAPipeline = Args.getLastArgValue(OPT_lto_aa_pipeline); 628 Config->LTONewPmPasses = Args.getLastArgValue(OPT_lto_newpm_passes); 629 Config->LTOO = args::getInteger(Args, OPT_lto_O, 2); 630 Config->LTOPartitions = args::getInteger(Args, OPT_lto_partitions, 1); 631 Config->MapFile = Args.getLastArgValue(OPT_Map); 632 Config->NoGnuUnique = Args.hasArg(OPT_no_gnu_unique); 633 Config->MergeArmExidx = 634 Args.hasFlag(OPT_merge_exidx_entries, OPT_no_merge_exidx_entries, true); 635 Config->NoUndefinedVersion = Args.hasArg(OPT_no_undefined_version); 636 Config->NoinhibitExec = Args.hasArg(OPT_noinhibit_exec); 637 Config->Nostdlib = Args.hasArg(OPT_nostdlib); 638 Config->OFormatBinary = isOutputFormatBinary(Args); 639 Config->Omagic = Args.hasFlag(OPT_omagic, OPT_no_omagic, false); 640 Config->OptRemarksFilename = Args.getLastArgValue(OPT_opt_remarks_filename); 641 Config->OptRemarksWithHotness = Args.hasArg(OPT_opt_remarks_with_hotness); 642 Config->Optimize = args::getInteger(Args, OPT_O, 1); 643 Config->OrphanHandling = getOrphanHandling(Args); 644 Config->OutputFile = Args.getLastArgValue(OPT_o); 645 Config->Pie = Args.hasFlag(OPT_pie, OPT_nopie, false); 646 Config->PrintGcSections = 647 Args.hasFlag(OPT_print_gc_sections, OPT_no_print_gc_sections, false); 648 Config->Rpath = getRpath(Args); 649 Config->Relocatable = Args.hasArg(OPT_relocatable); 650 Config->SaveTemps = Args.hasArg(OPT_save_temps); 651 Config->SearchPaths = args::getStrings(Args, OPT_library_path); 652 Config->SectionStartMap = getSectionStartMap(Args); 653 Config->Shared = Args.hasArg(OPT_shared); 654 Config->SingleRoRx = Args.hasArg(OPT_no_rosegment); 655 Config->SoName = Args.getLastArgValue(OPT_soname); 656 Config->SortSection = getSortSection(Args); 657 Config->Strip = getStrip(Args); 658 Config->Sysroot = Args.getLastArgValue(OPT_sysroot); 659 Config->Target1Rel = Args.hasFlag(OPT_target1_rel, OPT_target1_abs, false); 660 Config->Target2 = getTarget2(Args); 661 Config->ThinLTOCacheDir = Args.getLastArgValue(OPT_thinlto_cache_dir); 662 Config->ThinLTOCachePolicy = CHECK( 663 parseCachePruningPolicy(Args.getLastArgValue(OPT_thinlto_cache_policy)), 664 "--thinlto-cache-policy: invalid cache policy"); 665 Config->ThinLTOJobs = args::getInteger(Args, OPT_thinlto_jobs, -1u); 666 ThreadsEnabled = Args.hasFlag(OPT_threads, OPT_no_threads, true); 667 Config->Trace = Args.hasArg(OPT_trace); 668 Config->Undefined = args::getStrings(Args, OPT_undefined); 669 Config->UnresolvedSymbols = getUnresolvedSymbolPolicy(Args); 670 Config->Verbose = Args.hasArg(OPT_verbose); 671 errorHandler().Verbose = Config->Verbose; 672 Config->WarnCommon = Args.hasArg(OPT_warn_common); 673 Config->ZCombreloc = !hasZOption(Args, "nocombreloc"); 674 Config->ZExecstack = hasZOption(Args, "execstack"); 675 Config->ZNocopyreloc = hasZOption(Args, "nocopyreloc"); 676 Config->ZNodelete = hasZOption(Args, "nodelete"); 677 Config->ZNodlopen = hasZOption(Args, "nodlopen"); 678 Config->ZNow = hasZOption(Args, "now"); 679 Config->ZOrigin = hasZOption(Args, "origin"); 680 Config->ZRelro = !hasZOption(Args, "norelro"); 681 Config->ZRetpolineplt = hasZOption(Args, "retpolineplt"); 682 Config->ZRodynamic = hasZOption(Args, "rodynamic"); 683 Config->ZStackSize = args::getZOptionValue(Args, OPT_z, "stack-size", 0); 684 Config->ZText = !hasZOption(Args, "notext"); 685 Config->ZWxneeded = hasZOption(Args, "wxneeded"); 686 687 // Parse LTO plugin-related options for compatibility with gold. 688 for (auto *Arg : Args.filtered(OPT_plugin_opt)) { 689 StringRef S = Arg->getValue(); 690 if (S == "disable-verify") 691 Config->DisableVerify = true; 692 else if (S == "save-temps") 693 Config->SaveTemps = true; 694 else if (S.startswith("O")) 695 Config->LTOO = parseInt(S.substr(1), Arg); 696 else if (S.startswith("lto-partitions=")) 697 Config->LTOPartitions = parseInt(S.substr(15), Arg); 698 else if (S.startswith("jobs=")) 699 Config->ThinLTOJobs = parseInt(S.substr(5), Arg); 700 else if (!S.startswith("/") && !S.startswith("-fresolution=") && 701 !S.startswith("-pass-through=") && !S.startswith("mcpu=") && 702 !S.startswith("thinlto") && S != "-function-sections" && 703 S != "-data-sections") 704 error(Arg->getSpelling() + ": unknown option: " + S); 705 } 706 707 if (Config->LTOO > 3) 708 error("invalid optimization level for LTO: " + Twine(Config->LTOO)); 709 if (Config->LTOPartitions == 0) 710 error("--lto-partitions: number of threads must be > 0"); 711 if (Config->ThinLTOJobs == 0) 712 error("--thinlto-jobs: number of threads must be > 0"); 713 714 // Parse ELF{32,64}{LE,BE} and CPU type. 715 if (auto *Arg = Args.getLastArg(OPT_m)) { 716 StringRef S = Arg->getValue(); 717 std::tie(Config->EKind, Config->EMachine, Config->OSABI) = 718 parseEmulation(S); 719 Config->MipsN32Abi = (S == "elf32btsmipn32" || S == "elf32ltsmipn32"); 720 Config->Emulation = S; 721 } 722 723 // Parse -hash-style={sysv,gnu,both}. 724 if (auto *Arg = Args.getLastArg(OPT_hash_style)) { 725 StringRef S = Arg->getValue(); 726 if (S == "sysv") 727 Config->SysvHash = true; 728 else if (S == "gnu") 729 Config->GnuHash = true; 730 else if (S == "both") 731 Config->SysvHash = Config->GnuHash = true; 732 else 733 error("unknown -hash-style: " + S); 734 } 735 736 if (Args.hasArg(OPT_print_map)) 737 Config->MapFile = "-"; 738 739 // --omagic is an option to create old-fashioned executables in which 740 // .text segments are writable. Today, the option is still in use to 741 // create special-purpose programs such as boot loaders. It doesn't 742 // make sense to create PT_GNU_RELRO for such executables. 743 if (Config->Omagic) 744 Config->ZRelro = false; 745 746 std::tie(Config->BuildId, Config->BuildIdVector) = getBuildId(Args); 747 748 if (auto *Arg = Args.getLastArg(OPT_pack_dyn_relocs_eq)) { 749 StringRef S = Arg->getValue(); 750 if (S == "android") 751 Config->AndroidPackDynRelocs = true; 752 else if (S != "none") 753 error("unknown -pack-dyn-relocs format: " + S); 754 } 755 756 if (auto *Arg = Args.getLastArg(OPT_symbol_ordering_file)) 757 if (Optional<MemoryBufferRef> Buffer = readFile(Arg->getValue())) 758 Config->SymbolOrderingFile = args::getLines(*Buffer); 759 760 // If --retain-symbol-file is used, we'll keep only the symbols listed in 761 // the file and discard all others. 762 if (auto *Arg = Args.getLastArg(OPT_retain_symbols_file)) { 763 Config->DefaultSymbolVersion = VER_NDX_LOCAL; 764 if (Optional<MemoryBufferRef> Buffer = readFile(Arg->getValue())) 765 for (StringRef S : args::getLines(*Buffer)) 766 Config->VersionScriptGlobals.push_back( 767 {S, /*IsExternCpp*/ false, /*HasWildcard*/ false}); 768 } 769 770 bool HasExportDynamic = 771 Args.hasFlag(OPT_export_dynamic, OPT_no_export_dynamic, false); 772 773 // Parses -dynamic-list and -export-dynamic-symbol. They make some 774 // symbols private. Note that -export-dynamic takes precedence over them 775 // as it says all symbols should be exported. 776 if (!HasExportDynamic) { 777 for (auto *Arg : Args.filtered(OPT_dynamic_list)) 778 if (Optional<MemoryBufferRef> Buffer = readFile(Arg->getValue())) 779 readDynamicList(*Buffer); 780 781 for (auto *Arg : Args.filtered(OPT_export_dynamic_symbol)) 782 Config->DynamicList.push_back( 783 {Arg->getValue(), /*IsExternCpp*/ false, /*HasWildcard*/ false}); 784 } 785 786 for (auto *Arg : Args.filtered(OPT_version_script)) 787 if (Optional<MemoryBufferRef> Buffer = readFile(Arg->getValue())) 788 readVersionScript(*Buffer); 789 } 790 791 // Some Config members do not directly correspond to any particular 792 // command line options, but computed based on other Config values. 793 // This function initialize such members. See Config.h for the details 794 // of these values. 795 static void setConfigs() { 796 ELFKind Kind = Config->EKind; 797 uint16_t Machine = Config->EMachine; 798 799 // There is an ILP32 ABI for x86-64, although it's not very popular. 800 // It is called the x32 ABI. 801 bool IsX32 = (Kind == ELF32LEKind && Machine == EM_X86_64); 802 803 Config->CopyRelocs = (Config->Relocatable || Config->EmitRelocs); 804 Config->Is64 = (Kind == ELF64LEKind || Kind == ELF64BEKind); 805 Config->IsLE = (Kind == ELF32LEKind || Kind == ELF64LEKind); 806 Config->Endianness = 807 Config->IsLE ? support::endianness::little : support::endianness::big; 808 Config->IsMips64EL = (Kind == ELF64LEKind && Machine == EM_MIPS); 809 Config->IsRela = Config->Is64 || IsX32 || Config->MipsN32Abi; 810 Config->Pic = Config->Pie || Config->Shared; 811 Config->Wordsize = Config->Is64 ? 8 : 4; 812 } 813 814 // Returns a value of "-format" option. 815 static bool getBinaryOption(StringRef S) { 816 if (S == "binary") 817 return true; 818 if (S == "elf" || S == "default") 819 return false; 820 error("unknown -format value: " + S + 821 " (supported formats: elf, default, binary)"); 822 return false; 823 } 824 825 void LinkerDriver::createFiles(opt::InputArgList &Args) { 826 for (auto *Arg : Args) { 827 switch (Arg->getOption().getUnaliasedOption().getID()) { 828 case OPT_library: 829 addLibrary(Arg->getValue()); 830 break; 831 case OPT_INPUT: 832 addFile(Arg->getValue(), /*WithLOption=*/false); 833 break; 834 case OPT_defsym: { 835 StringRef From; 836 StringRef To; 837 std::tie(From, To) = StringRef(Arg->getValue()).split('='); 838 readDefsym(From, MemoryBufferRef(To, "-defsym")); 839 break; 840 } 841 case OPT_script: 842 if (Optional<std::string> Path = searchLinkerScript(Arg->getValue())) { 843 if (Optional<MemoryBufferRef> MB = readFile(*Path)) 844 readLinkerScript(*MB); 845 break; 846 } 847 error(Twine("cannot find linker script ") + Arg->getValue()); 848 break; 849 case OPT_as_needed: 850 Config->AsNeeded = true; 851 break; 852 case OPT_format: 853 InBinary = getBinaryOption(Arg->getValue()); 854 break; 855 case OPT_no_as_needed: 856 Config->AsNeeded = false; 857 break; 858 case OPT_Bstatic: 859 Config->Static = true; 860 break; 861 case OPT_Bdynamic: 862 Config->Static = false; 863 break; 864 case OPT_whole_archive: 865 InWholeArchive = true; 866 break; 867 case OPT_no_whole_archive: 868 InWholeArchive = false; 869 break; 870 case OPT_start_lib: 871 InLib = true; 872 break; 873 case OPT_end_lib: 874 InLib = false; 875 break; 876 } 877 } 878 879 if (Files.empty() && errorCount() == 0) 880 error("no input files"); 881 } 882 883 // If -m <machine_type> was not given, infer it from object files. 884 void LinkerDriver::inferMachineType() { 885 if (Config->EKind != ELFNoneKind) 886 return; 887 888 for (InputFile *F : Files) { 889 if (F->EKind == ELFNoneKind) 890 continue; 891 Config->EKind = F->EKind; 892 Config->EMachine = F->EMachine; 893 Config->OSABI = F->OSABI; 894 Config->MipsN32Abi = Config->EMachine == EM_MIPS && isMipsN32Abi(F); 895 return; 896 } 897 error("target emulation unknown: -m or at least one .o file required"); 898 } 899 900 // Parse -z max-page-size=<value>. The default value is defined by 901 // each target. 902 static uint64_t getMaxPageSize(opt::InputArgList &Args) { 903 uint64_t Val = args::getZOptionValue(Args, OPT_z, "max-page-size", 904 Target->DefaultMaxPageSize); 905 if (!isPowerOf2_64(Val)) 906 error("max-page-size: value isn't a power of 2"); 907 return Val; 908 } 909 910 // Parses -image-base option. 911 static Optional<uint64_t> getImageBase(opt::InputArgList &Args) { 912 // Because we are using "Config->MaxPageSize" here, this function has to be 913 // called after the variable is initialized. 914 auto *Arg = Args.getLastArg(OPT_image_base); 915 if (!Arg) 916 return None; 917 918 StringRef S = Arg->getValue(); 919 uint64_t V; 920 if (!to_integer(S, V)) { 921 error("-image-base: number expected, but got " + S); 922 return 0; 923 } 924 if ((V % Config->MaxPageSize) != 0) 925 warn("-image-base: address isn't multiple of page size: " + S); 926 return V; 927 } 928 929 // Parses `--exclude-libs=lib,lib,...`. 930 // The library names may be delimited by commas or colons. 931 static DenseSet<StringRef> getExcludeLibs(opt::InputArgList &Args) { 932 DenseSet<StringRef> Ret; 933 for (auto *Arg : Args.filtered(OPT_exclude_libs)) { 934 StringRef S = Arg->getValue(); 935 for (;;) { 936 size_t Pos = S.find_first_of(",:"); 937 if (Pos == StringRef::npos) 938 break; 939 Ret.insert(S.substr(0, Pos)); 940 S = S.substr(Pos + 1); 941 } 942 Ret.insert(S); 943 } 944 return Ret; 945 } 946 947 static Optional<StringRef> getArchiveName(InputFile *File) { 948 if (isa<ArchiveFile>(File)) 949 return File->getName(); 950 if (!File->ArchiveName.empty()) 951 return File->ArchiveName; 952 return None; 953 } 954 955 // Handles the -exclude-libs option. If a static library file is specified 956 // by the -exclude-libs option, all public symbols from the archive become 957 // private unless otherwise specified by version scripts or something. 958 // A special library name "ALL" means all archive files. 959 // 960 // This is not a popular option, but some programs such as bionic libc use it. 961 template <class ELFT> 962 static void excludeLibs(opt::InputArgList &Args, ArrayRef<InputFile *> Files) { 963 DenseSet<StringRef> Libs = getExcludeLibs(Args); 964 bool All = Libs.count("ALL"); 965 966 for (InputFile *File : Files) 967 if (Optional<StringRef> Archive = getArchiveName(File)) 968 if (All || Libs.count(path::filename(*Archive))) 969 for (Symbol *Sym : File->getSymbols()) 970 if (!Sym->isLocal()) 971 Sym->VersionId = VER_NDX_LOCAL; 972 } 973 974 // Do actual linking. Note that when this function is called, 975 // all linker scripts have already been parsed. 976 template <class ELFT> void LinkerDriver::link(opt::InputArgList &Args) { 977 Target = getTarget(); 978 979 Config->MaxPageSize = getMaxPageSize(Args); 980 Config->ImageBase = getImageBase(Args); 981 982 // If a -hash-style option was not given, set to a default value, 983 // which varies depending on the target. 984 if (!Args.hasArg(OPT_hash_style)) { 985 if (Config->EMachine == EM_MIPS) 986 Config->SysvHash = true; 987 else 988 Config->SysvHash = Config->GnuHash = true; 989 } 990 991 // Default output filename is "a.out" by the Unix tradition. 992 if (Config->OutputFile.empty()) 993 Config->OutputFile = "a.out"; 994 995 // Fail early if the output file or map file is not writable. If a user has a 996 // long link, e.g. due to a large LTO link, they do not wish to run it and 997 // find that it failed because there was a mistake in their command-line. 998 if (auto E = tryCreateFile(Config->OutputFile)) 999 error("cannot open output file " + Config->OutputFile + ": " + E.message()); 1000 if (auto E = tryCreateFile(Config->MapFile)) 1001 error("cannot open map file " + Config->MapFile + ": " + E.message()); 1002 if (errorCount()) 1003 return; 1004 1005 // Use default entry point name if no name was given via the command 1006 // line nor linker scripts. For some reason, MIPS entry point name is 1007 // different from others. 1008 Config->WarnMissingEntry = 1009 (!Config->Entry.empty() || (!Config->Shared && !Config->Relocatable)); 1010 if (Config->Entry.empty() && !Config->Relocatable) 1011 Config->Entry = (Config->EMachine == EM_MIPS) ? "__start" : "_start"; 1012 1013 // Handle --trace-symbol. 1014 for (auto *Arg : Args.filtered(OPT_trace_symbol)) 1015 Symtab->trace(Arg->getValue()); 1016 1017 // Add all files to the symbol table. This will add almost all 1018 // symbols that we need to the symbol table. 1019 for (InputFile *F : Files) 1020 Symtab->addFile<ELFT>(F); 1021 1022 // Now that we have every file, we can decide if we will need a 1023 // dynamic symbol table. 1024 // We need one if we were asked to export dynamic symbols or if we are 1025 // producing a shared library. 1026 // We also need one if any shared libraries are used and for pie executables 1027 // (probably because the dynamic linker needs it). 1028 Config->HasDynSymTab = 1029 !SharedFiles.empty() || Config->Pic || Config->ExportDynamic; 1030 1031 // Some symbols (such as __ehdr_start) are defined lazily only when there 1032 // are undefined symbols for them, so we add these to trigger that logic. 1033 for (StringRef Sym : Script->ReferencedSymbols) 1034 Symtab->addUndefined<ELFT>(Sym); 1035 1036 // Handle the `--undefined <sym>` options. 1037 for (StringRef S : Config->Undefined) 1038 Symtab->fetchIfLazy<ELFT>(S); 1039 1040 // If an entry symbol is in a static archive, pull out that file now 1041 // to complete the symbol table. After this, no new names except a 1042 // few linker-synthesized ones will be added to the symbol table. 1043 Symtab->fetchIfLazy<ELFT>(Config->Entry); 1044 1045 // Return if there were name resolution errors. 1046 if (errorCount()) 1047 return; 1048 1049 // Handle undefined symbols in DSOs. 1050 if (!Config->Shared) 1051 Symtab->scanShlibUndefined<ELFT>(); 1052 1053 // Handle the -exclude-libs option. 1054 if (Args.hasArg(OPT_exclude_libs)) 1055 excludeLibs<ELFT>(Args, Files); 1056 1057 // Create ElfHeader early. We need a dummy section in 1058 // addReservedSymbols to mark the created symbols as not absolute. 1059 Out::ElfHeader = make<OutputSection>("", 0, SHF_ALLOC); 1060 Out::ElfHeader->Size = sizeof(typename ELFT::Ehdr); 1061 1062 // We need to create some reserved symbols such as _end. Create them. 1063 if (!Config->Relocatable) 1064 addReservedSymbols(); 1065 1066 // Apply version scripts. 1067 Symtab->scanVersionScript(); 1068 1069 // Create wrapped symbols for -wrap option. 1070 for (auto *Arg : Args.filtered(OPT_wrap)) 1071 Symtab->addSymbolWrap<ELFT>(Arg->getValue()); 1072 1073 Symtab->addCombinedLTOObject<ELFT>(); 1074 if (errorCount()) 1075 return; 1076 1077 // Apply symbol renames for -wrap. 1078 Symtab->applySymbolWrap(); 1079 1080 // Now that we have a complete list of input files. 1081 // Beyond this point, no new files are added. 1082 // Aggregate all input sections into one place. 1083 for (InputFile *F : ObjectFiles) 1084 for (InputSectionBase *S : F->getSections()) 1085 if (S && S != &InputSection::Discarded) 1086 InputSections.push_back(S); 1087 for (BinaryFile *F : BinaryFiles) 1088 for (InputSectionBase *S : F->getSections()) 1089 InputSections.push_back(cast<InputSection>(S)); 1090 1091 // We do not want to emit debug sections if --strip-all 1092 // or -strip-debug are given. 1093 if (Config->Strip != StripPolicy::None) 1094 llvm::erase_if(InputSections, [](InputSectionBase *S) { 1095 return S->Name.startswith(".debug") || S->Name.startswith(".zdebug"); 1096 }); 1097 1098 Config->EFlags = Target->calcEFlags(); 1099 1100 if (Config->EMachine == EM_ARM) { 1101 // FIXME: These warnings can be removed when lld only uses these features 1102 // when the input objects have been compiled with an architecture that 1103 // supports them. 1104 if (Config->ARMHasBlx == false) 1105 warn("lld uses blx instruction, no object with architecture supporting " 1106 "feature detected."); 1107 if (Config->ARMJ1J2BranchEncoding == false) 1108 warn("lld uses extended branch encoding, no object with architecture " 1109 "supporting feature detected."); 1110 if (Config->ARMHasMovtMovw == false) 1111 warn("lld may use movt/movw, no object with architecture supporting " 1112 "feature detected."); 1113 } 1114 1115 // This adds a .comment section containing a version string. We have to add it 1116 // before decompressAndMergeSections because the .comment section is a 1117 // mergeable section. 1118 if (!Config->Relocatable) 1119 InputSections.push_back(createCommentSection()); 1120 1121 // Do size optimizations: garbage collection, merging of SHF_MERGE sections 1122 // and identical code folding. 1123 markLive<ELFT>(); 1124 decompressSections(); 1125 mergeSections(); 1126 if (Config->ICF) 1127 doIcf<ELFT>(); 1128 1129 // Write the result to the file. 1130 writeResult<ELFT>(); 1131 } 1132