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