1 //===- SymbolTable.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 // Symbol table is a bag of all known symbols. We put all symbols of 11 // all input files to the symbol table. The symbol table is basically 12 // a hash table with the logic to resolve symbol name conflicts using 13 // the symbol types. 14 // 15 //===----------------------------------------------------------------------===// 16 17 #include "SymbolTable.h" 18 #include "Config.h" 19 #include "Error.h" 20 #include "LinkerScript.h" 21 #include "Memory.h" 22 #include "Symbols.h" 23 #include "llvm/ADT/STLExtras.h" 24 25 using namespace llvm; 26 using namespace llvm::object; 27 using namespace llvm::ELF; 28 29 using namespace lld; 30 using namespace lld::elf; 31 32 // All input object files must be for the same architecture 33 // (e.g. it does not make sense to link x86 object files with 34 // MIPS object files.) This function checks for that error. 35 template <class ELFT> static bool isCompatible(InputFile *F) { 36 if (!isa<ELFFileBase<ELFT>>(F) && !isa<BitcodeFile>(F)) 37 return true; 38 39 if (F->EKind == Config->EKind && F->EMachine == Config->EMachine) { 40 if (Config->EMachine != EM_MIPS) 41 return true; 42 if (isMipsN32Abi(F) == Config->MipsN32Abi) 43 return true; 44 } 45 46 if (!Config->Emulation.empty()) 47 error(toString(F) + " is incompatible with " + Config->Emulation); 48 else 49 error(toString(F) + " is incompatible with " + toString(Config->FirstElf)); 50 return false; 51 } 52 53 // Add symbols in File to the symbol table. 54 template <class ELFT> void SymbolTable<ELFT>::addFile(InputFile *File) { 55 if (!Config->FirstElf && isa<ELFFileBase<ELFT>>(File)) 56 Config->FirstElf = File; 57 58 if (!isCompatible<ELFT>(File)) 59 return; 60 61 // Binary file 62 if (auto *F = dyn_cast<BinaryFile>(File)) { 63 BinaryFiles.push_back(F); 64 F->parse<ELFT>(); 65 return; 66 } 67 68 // .a file 69 if (auto *F = dyn_cast<ArchiveFile>(File)) { 70 F->parse<ELFT>(); 71 return; 72 } 73 74 // Lazy object file 75 if (auto *F = dyn_cast<LazyObjectFile>(File)) { 76 F->parse<ELFT>(); 77 return; 78 } 79 80 if (Config->Trace) 81 message(toString(File)); 82 83 // .so file 84 if (auto *F = dyn_cast<SharedFile<ELFT>>(File)) { 85 // DSOs are uniquified not by filename but by soname. 86 F->parseSoName(); 87 if (ErrorCount || !SoNames.insert(F->SoName).second) 88 return; 89 SharedFiles.push_back(F); 90 F->parseRest(); 91 return; 92 } 93 94 // LLVM bitcode file 95 if (auto *F = dyn_cast<BitcodeFile>(File)) { 96 BitcodeFiles.push_back(F); 97 F->parse<ELFT>(ComdatGroups); 98 return; 99 } 100 101 // Regular object file 102 auto *F = cast<ObjectFile<ELFT>>(File); 103 ObjectFiles.push_back(F); 104 F->parse(ComdatGroups); 105 } 106 107 // This function is where all the optimizations of link-time 108 // optimization happens. When LTO is in use, some input files are 109 // not in native object file format but in the LLVM bitcode format. 110 // This function compiles bitcode files into a few big native files 111 // using LLVM functions and replaces bitcode symbols with the results. 112 // Because all bitcode files that consist of a program are passed 113 // to the compiler at once, it can do whole-program optimization. 114 template <class ELFT> void SymbolTable<ELFT>::addCombinedLTOObject() { 115 if (BitcodeFiles.empty()) 116 return; 117 118 // Compile bitcode files and replace bitcode symbols. 119 LTO.reset(new BitcodeCompiler); 120 for (BitcodeFile *F : BitcodeFiles) 121 LTO->add(*F); 122 123 for (InputFile *File : LTO->compile()) { 124 ObjectFile<ELFT> *Obj = cast<ObjectFile<ELFT>>(File); 125 DenseSet<CachedHashStringRef> DummyGroups; 126 Obj->parse(DummyGroups); 127 ObjectFiles.push_back(Obj); 128 } 129 } 130 131 template <class ELFT> 132 DefinedRegular *SymbolTable<ELFT>::addAbsolute(StringRef Name, 133 uint8_t Visibility, 134 uint8_t Binding) { 135 Symbol *Sym = 136 addRegular(Name, Visibility, STT_NOTYPE, 0, 0, Binding, nullptr, nullptr); 137 return cast<DefinedRegular>(Sym->body()); 138 } 139 140 // Add Name as an "ignored" symbol. An ignored symbol is a regular 141 // linker-synthesized defined symbol, but is only defined if needed. 142 template <class ELFT> 143 DefinedRegular *SymbolTable<ELFT>::addIgnored(StringRef Name, 144 uint8_t Visibility) { 145 SymbolBody *S = find(Name); 146 if (!S || S->isInCurrentDSO()) 147 return nullptr; 148 return addAbsolute(Name, Visibility); 149 } 150 151 // Set a flag for --trace-symbol so that we can print out a log message 152 // if a new symbol with the same name is inserted into the symbol table. 153 template <class ELFT> void SymbolTable<ELFT>::trace(StringRef Name) { 154 Symtab.insert({CachedHashStringRef(Name), {-1, true}}); 155 } 156 157 // Rename SYM as __wrap_SYM. The original symbol is preserved as __real_SYM. 158 // Used to implement --wrap. 159 template <class ELFT> void SymbolTable<ELFT>::addSymbolWrap(StringRef Name) { 160 SymbolBody *B = find(Name); 161 if (!B) 162 return; 163 Symbol *Sym = B->symbol(); 164 Symbol *Real = addUndefined(Saver.save("__real_" + Name)); 165 Symbol *Wrap = addUndefined(Saver.save("__wrap_" + Name)); 166 167 // Tell LTO not to eliminate this symbol 168 Wrap->IsUsedInRegularObj = true; 169 170 Config->RenamedSymbols[Real] = {Sym, Real->Binding}; 171 Config->RenamedSymbols[Sym] = {Wrap, Sym->Binding}; 172 } 173 174 // Creates alias for symbol. Used to implement --defsym=ALIAS=SYM. 175 template <class ELFT> void SymbolTable<ELFT>::addSymbolAlias(StringRef Alias, 176 StringRef Name) { 177 SymbolBody *B = find(Name); 178 if (!B) { 179 error("-defsym: undefined symbol: " + Name); 180 return; 181 } 182 Symbol *Sym = B->symbol(); 183 Symbol *AliasSym = addUndefined(Alias); 184 185 // Tell LTO not to eliminate this symbol 186 Sym->IsUsedInRegularObj = true; 187 Config->RenamedSymbols[AliasSym] = {Sym, AliasSym->Binding}; 188 } 189 190 // Apply symbol renames created by -wrap and -defsym. The renames are created 191 // before LTO in addSymbolWrap() and addSymbolAlias() to have a chance to inform 192 // LTO (if LTO is running) not to include these symbols in IPO. Now that the 193 // symbols are finalized, we can perform the replacement. 194 template <class ELFT> void SymbolTable<ELFT>::applySymbolRenames() { 195 for (auto &KV : Config->RenamedSymbols) { 196 Symbol *Dst = KV.first; 197 Symbol *Src = KV.second.Target; 198 Dst->Binding = KV.second.OriginalBinding; 199 200 // We rename symbols by replacing the old symbol's SymbolBody with 201 // the new symbol's SymbolBody. The only attribute we want to keep 202 // is the symbol name, so that two symbols don't have the same name. 203 StringRef S = Dst->body()->getName(); 204 memcpy(Dst->Body.buffer, Src->Body.buffer, sizeof(Symbol::Body)); 205 Dst->body()->setName(S); 206 } 207 } 208 209 static uint8_t getMinVisibility(uint8_t VA, uint8_t VB) { 210 if (VA == STV_DEFAULT) 211 return VB; 212 if (VB == STV_DEFAULT) 213 return VA; 214 return std::min(VA, VB); 215 } 216 217 // Find an existing symbol or create and insert a new one. 218 template <class ELFT> 219 std::pair<Symbol *, bool> SymbolTable<ELFT>::insert(StringRef Name) { 220 auto P = Symtab.insert( 221 {CachedHashStringRef(Name), SymIndex((int)SymVector.size(), false)}); 222 SymIndex &V = P.first->second; 223 bool IsNew = P.second; 224 225 if (V.Idx == -1) { 226 IsNew = true; 227 V = SymIndex((int)SymVector.size(), true); 228 } 229 230 Symbol *Sym; 231 if (IsNew) { 232 Sym = make<Symbol>(); 233 Sym->InVersionScript = false; 234 Sym->Binding = STB_WEAK; 235 Sym->Visibility = STV_DEFAULT; 236 Sym->IsUsedInRegularObj = false; 237 Sym->ExportDynamic = false; 238 Sym->Traced = V.Traced; 239 Sym->VersionId = Config->DefaultSymbolVersion; 240 SymVector.push_back(Sym); 241 } else { 242 Sym = SymVector[V.Idx]; 243 } 244 return {Sym, IsNew}; 245 } 246 247 // Find an existing symbol or create and insert a new one, then apply the given 248 // attributes. 249 template <class ELFT> 250 std::pair<Symbol *, bool> 251 SymbolTable<ELFT>::insert(StringRef Name, uint8_t Type, uint8_t Visibility, 252 bool CanOmitFromDynSym, InputFile *File) { 253 bool IsUsedInRegularObj = !File || File->kind() == InputFile::ObjectKind; 254 Symbol *S; 255 bool WasInserted; 256 std::tie(S, WasInserted) = insert(Name); 257 258 // Merge in the new symbol's visibility. 259 S->Visibility = getMinVisibility(S->Visibility, Visibility); 260 261 if (!CanOmitFromDynSym && (Config->Shared || Config->ExportDynamic)) 262 S->ExportDynamic = true; 263 264 if (IsUsedInRegularObj) 265 S->IsUsedInRegularObj = true; 266 267 if (!WasInserted && S->body()->Type != SymbolBody::UnknownType && 268 ((Type == STT_TLS) != S->body()->isTls())) { 269 error("TLS attribute mismatch: " + toString(*S->body()) + 270 "\n>>> defined in " + toString(S->body()->File) + 271 "\n>>> defined in " + toString(File)); 272 } 273 274 return {S, WasInserted}; 275 } 276 277 template <class ELFT> Symbol *SymbolTable<ELFT>::addUndefined(StringRef Name) { 278 return addUndefined(Name, /*IsLocal=*/false, STB_GLOBAL, STV_DEFAULT, 279 /*Type*/ 0, 280 /*CanOmitFromDynSym*/ false, /*File*/ nullptr); 281 } 282 283 static uint8_t getVisibility(uint8_t StOther) { return StOther & 3; } 284 285 template <class ELFT> 286 Symbol *SymbolTable<ELFT>::addUndefined(StringRef Name, bool IsLocal, 287 uint8_t Binding, uint8_t StOther, 288 uint8_t Type, bool CanOmitFromDynSym, 289 InputFile *File) { 290 Symbol *S; 291 bool WasInserted; 292 uint8_t Visibility = getVisibility(StOther); 293 std::tie(S, WasInserted) = 294 insert(Name, Type, Visibility, CanOmitFromDynSym, File); 295 // An undefined symbol with non default visibility must be satisfied 296 // in the same DSO. 297 if (WasInserted || 298 (isa<SharedSymbol>(S->body()) && Visibility != STV_DEFAULT)) { 299 S->Binding = Binding; 300 replaceBody<Undefined>(S, Name, IsLocal, StOther, Type, File); 301 return S; 302 } 303 if (Binding != STB_WEAK) { 304 SymbolBody *B = S->body(); 305 if (B->isShared() || B->isLazy() || B->isUndefined()) 306 S->Binding = Binding; 307 if (auto *SS = dyn_cast<SharedSymbol>(B)) 308 cast<SharedFile<ELFT>>(SS->File)->IsUsed = true; 309 } 310 if (auto *L = dyn_cast<Lazy>(S->body())) { 311 // An undefined weak will not fetch archive members, but we have to remember 312 // its type. See also comment in addLazyArchive. 313 if (S->isWeak()) 314 L->Type = Type; 315 else if (InputFile *F = L->fetch()) 316 addFile(F); 317 } 318 return S; 319 } 320 321 // We have a new defined symbol with the specified binding. Return 1 if the new 322 // symbol should win, -1 if the new symbol should lose, or 0 if both symbols are 323 // strong defined symbols. 324 static int compareDefined(Symbol *S, bool WasInserted, uint8_t Binding) { 325 if (WasInserted) 326 return 1; 327 SymbolBody *Body = S->body(); 328 if (Body->isLazy() || !Body->isInCurrentDSO()) 329 return 1; 330 if (Binding == STB_WEAK) 331 return -1; 332 if (S->isWeak()) 333 return 1; 334 return 0; 335 } 336 337 // We have a new non-common defined symbol with the specified binding. Return 1 338 // if the new symbol should win, -1 if the new symbol should lose, or 0 if there 339 // is a conflict. If the new symbol wins, also update the binding. 340 template <typename ELFT> 341 static int compareDefinedNonCommon(Symbol *S, bool WasInserted, uint8_t Binding, 342 bool IsAbsolute, typename ELFT::uint Value) { 343 if (int Cmp = compareDefined(S, WasInserted, Binding)) { 344 if (Cmp > 0) 345 S->Binding = Binding; 346 return Cmp; 347 } 348 SymbolBody *B = S->body(); 349 if (isa<DefinedCommon>(B)) { 350 // Non-common symbols take precedence over common symbols. 351 if (Config->WarnCommon) 352 warn("common " + S->body()->getName() + " is overridden"); 353 return 1; 354 } else if (auto *R = dyn_cast<DefinedRegular>(B)) { 355 if (R->Section == nullptr && Binding == STB_GLOBAL && IsAbsolute && 356 R->Value == Value) 357 return -1; 358 } 359 return 0; 360 } 361 362 template <class ELFT> 363 Symbol *SymbolTable<ELFT>::addCommon(StringRef N, uint64_t Size, 364 uint32_t Alignment, uint8_t Binding, 365 uint8_t StOther, uint8_t Type, 366 InputFile *File) { 367 Symbol *S; 368 bool WasInserted; 369 std::tie(S, WasInserted) = insert(N, Type, getVisibility(StOther), 370 /*CanOmitFromDynSym*/ false, File); 371 int Cmp = compareDefined(S, WasInserted, Binding); 372 if (Cmp > 0) { 373 S->Binding = Binding; 374 replaceBody<DefinedCommon>(S, N, Size, Alignment, StOther, Type, File); 375 } else if (Cmp == 0) { 376 auto *C = dyn_cast<DefinedCommon>(S->body()); 377 if (!C) { 378 // Non-common symbols take precedence over common symbols. 379 if (Config->WarnCommon) 380 warn("common " + S->body()->getName() + " is overridden"); 381 return S; 382 } 383 384 if (Config->WarnCommon) 385 warn("multiple common of " + S->body()->getName()); 386 387 Alignment = C->Alignment = std::max(C->Alignment, Alignment); 388 if (Size > C->Size) 389 replaceBody<DefinedCommon>(S, N, Size, Alignment, StOther, Type, File); 390 } 391 return S; 392 } 393 394 static void warnOrError(const Twine &Msg) { 395 if (Config->AllowMultipleDefinition) 396 warn(Msg); 397 else 398 error(Msg); 399 } 400 401 static void reportDuplicate(SymbolBody *Sym, InputFile *NewFile) { 402 warnOrError("duplicate symbol: " + toString(*Sym) + 403 "\n>>> defined in " + toString(Sym->File) + 404 "\n>>> defined in " + toString(NewFile)); 405 } 406 407 template <class ELFT> 408 static void reportDuplicate(SymbolBody *Sym, InputSectionBase *ErrSec, 409 typename ELFT::uint ErrOffset) { 410 DefinedRegular *D = dyn_cast<DefinedRegular>(Sym); 411 if (!D || !D->Section || !ErrSec) { 412 reportDuplicate(Sym, ErrSec ? ErrSec->getFile<ELFT>() : nullptr); 413 return; 414 } 415 416 // Construct and print an error message in the form of: 417 // 418 // ld.lld: error: duplicate symbol: foo 419 // >>> defined at bar.c:30 420 // >>> bar.o (/home/alice/src/bar.o) 421 // >>> defined at baz.c:563 422 // >>> baz.o in archive libbaz.a 423 auto *Sec1 = cast<InputSectionBase>(D->Section); 424 std::string Src1 = Sec1->getSrcMsg<ELFT>(D->Value); 425 std::string Obj1 = Sec1->getObjMsg<ELFT>(D->Value); 426 std::string Src2 = ErrSec->getSrcMsg<ELFT>(ErrOffset); 427 std::string Obj2 = ErrSec->getObjMsg<ELFT>(ErrOffset); 428 429 std::string Msg = "duplicate symbol: " + toString(*Sym) + "\n>>> defined at "; 430 if (!Src1.empty()) 431 Msg += Src1 + "\n>>> "; 432 Msg += Obj1 + "\n>>> defined at "; 433 if (!Src2.empty()) 434 Msg += Src2 + "\n>>> "; 435 Msg += Obj2; 436 warnOrError(Msg); 437 } 438 439 template <typename ELFT> 440 Symbol *SymbolTable<ELFT>::addRegular(StringRef Name, uint8_t StOther, 441 uint8_t Type, uint64_t Value, 442 uint64_t Size, uint8_t Binding, 443 SectionBase *Section, InputFile *File) { 444 Symbol *S; 445 bool WasInserted; 446 std::tie(S, WasInserted) = insert(Name, Type, getVisibility(StOther), 447 /*CanOmitFromDynSym*/ false, File); 448 int Cmp = compareDefinedNonCommon<ELFT>(S, WasInserted, Binding, 449 Section == nullptr, Value); 450 if (Cmp > 0) 451 replaceBody<DefinedRegular>(S, Name, /*IsLocal=*/false, StOther, Type, 452 Value, Size, Section, File); 453 else if (Cmp == 0) 454 reportDuplicate<ELFT>(S->body(), 455 dyn_cast_or_null<InputSectionBase>(Section), Value); 456 return S; 457 } 458 459 template <typename ELFT> 460 void SymbolTable<ELFT>::addShared(SharedFile<ELFT> *File, StringRef Name, 461 const Elf_Sym &Sym, 462 const typename ELFT::Verdef *Verdef) { 463 // DSO symbols do not affect visibility in the output, so we pass STV_DEFAULT 464 // as the visibility, which will leave the visibility in the symbol table 465 // unchanged. 466 Symbol *S; 467 bool WasInserted; 468 std::tie(S, WasInserted) = insert(Name, Sym.getType(), STV_DEFAULT, 469 /*CanOmitFromDynSym*/ true, File); 470 // Make sure we preempt DSO symbols with default visibility. 471 if (Sym.getVisibility() == STV_DEFAULT) 472 S->ExportDynamic = true; 473 474 SymbolBody *Body = S->body(); 475 // An undefined symbol with non default visibility must be satisfied 476 // in the same DSO. 477 if (WasInserted || 478 (isa<Undefined>(Body) && Body->getVisibility() == STV_DEFAULT)) { 479 replaceBody<SharedSymbol>(S, File, Name, Sym.st_other, Sym.getType(), &Sym, 480 Verdef); 481 if (!S->isWeak()) 482 File->IsUsed = true; 483 } 484 } 485 486 template <class ELFT> 487 Symbol *SymbolTable<ELFT>::addBitcode(StringRef Name, uint8_t Binding, 488 uint8_t StOther, uint8_t Type, 489 bool CanOmitFromDynSym, BitcodeFile *F) { 490 Symbol *S; 491 bool WasInserted; 492 std::tie(S, WasInserted) = 493 insert(Name, Type, getVisibility(StOther), CanOmitFromDynSym, F); 494 int Cmp = compareDefinedNonCommon<ELFT>(S, WasInserted, Binding, 495 /*IsAbs*/ false, /*Value*/ 0); 496 if (Cmp > 0) 497 replaceBody<DefinedRegular>(S, Name, /*IsLocal=*/false, StOther, Type, 0, 0, 498 nullptr, F); 499 else if (Cmp == 0) 500 reportDuplicate(S->body(), F); 501 return S; 502 } 503 504 template <class ELFT> SymbolBody *SymbolTable<ELFT>::find(StringRef Name) { 505 auto It = Symtab.find(CachedHashStringRef(Name)); 506 if (It == Symtab.end()) 507 return nullptr; 508 SymIndex V = It->second; 509 if (V.Idx == -1) 510 return nullptr; 511 return SymVector[V.Idx]->body(); 512 } 513 514 template <class ELFT> 515 SymbolBody *SymbolTable<ELFT>::findInCurrentDSO(StringRef Name) { 516 if (SymbolBody *S = find(Name)) 517 if (S->isInCurrentDSO()) 518 return S; 519 return nullptr; 520 } 521 522 template <class ELFT> 523 Symbol *SymbolTable<ELFT>::addLazyArchive(ArchiveFile *F, 524 const object::Archive::Symbol Sym) { 525 Symbol *S; 526 bool WasInserted; 527 StringRef Name = Sym.getName(); 528 std::tie(S, WasInserted) = insert(Name); 529 if (WasInserted) { 530 replaceBody<LazyArchive>(S, *F, Sym, SymbolBody::UnknownType); 531 return S; 532 } 533 if (!S->body()->isUndefined()) 534 return S; 535 536 // Weak undefined symbols should not fetch members from archives. If we were 537 // to keep old symbol we would not know that an archive member was available 538 // if a strong undefined symbol shows up afterwards in the link. If a strong 539 // undefined symbol never shows up, this lazy symbol will get to the end of 540 // the link and must be treated as the weak undefined one. We already marked 541 // this symbol as used when we added it to the symbol table, but we also need 542 // to preserve its type. FIXME: Move the Type field to Symbol. 543 if (S->isWeak()) { 544 replaceBody<LazyArchive>(S, *F, Sym, S->body()->Type); 545 return S; 546 } 547 std::pair<MemoryBufferRef, uint64_t> MBInfo = F->getMember(&Sym); 548 if (!MBInfo.first.getBuffer().empty()) 549 addFile(createObjectFile(MBInfo.first, F->getName(), MBInfo.second)); 550 return S; 551 } 552 553 template <class ELFT> 554 void SymbolTable<ELFT>::addLazyObject(StringRef Name, LazyObjectFile &Obj) { 555 Symbol *S; 556 bool WasInserted; 557 std::tie(S, WasInserted) = insert(Name); 558 if (WasInserted) { 559 replaceBody<LazyObject>(S, Name, Obj, SymbolBody::UnknownType); 560 return; 561 } 562 if (!S->body()->isUndefined()) 563 return; 564 565 // See comment for addLazyArchive above. 566 if (S->isWeak()) 567 replaceBody<LazyObject>(S, Name, Obj, S->body()->Type); 568 else if (InputFile *F = Obj.fetch()) 569 addFile(F); 570 } 571 572 // Process undefined (-u) flags by loading lazy symbols named by those flags. 573 template <class ELFT> void SymbolTable<ELFT>::scanUndefinedFlags() { 574 for (StringRef S : Config->Undefined) 575 if (auto *L = dyn_cast_or_null<Lazy>(find(S))) 576 if (InputFile *File = L->fetch()) 577 addFile(File); 578 } 579 580 // This function takes care of the case in which shared libraries depend on 581 // the user program (not the other way, which is usual). Shared libraries 582 // may have undefined symbols, expecting that the user program provides 583 // the definitions for them. An example is BSD's __progname symbol. 584 // We need to put such symbols to the main program's .dynsym so that 585 // shared libraries can find them. 586 // Except this, we ignore undefined symbols in DSOs. 587 template <class ELFT> void SymbolTable<ELFT>::scanShlibUndefined() { 588 for (SharedFile<ELFT> *File : SharedFiles) { 589 for (StringRef U : File->getUndefinedSymbols()) { 590 SymbolBody *Sym = find(U); 591 if (!Sym || !Sym->isDefined()) 592 continue; 593 Sym->symbol()->ExportDynamic = true; 594 595 // If -dynamic-list is given, the default version is set to 596 // VER_NDX_LOCAL, which prevents a symbol to be exported via .dynsym. 597 // Set to VER_NDX_GLOBAL so the symbol will be handled as if it were 598 // specified by -dynamic-list. 599 Sym->symbol()->VersionId = VER_NDX_GLOBAL; 600 } 601 } 602 } 603 604 // Initialize DemangledSyms with a map from demangled symbols to symbol 605 // objects. Used to handle "extern C++" directive in version scripts. 606 // 607 // The map will contain all demangled symbols. That can be very large, 608 // and in LLD we generally want to avoid do anything for each symbol. 609 // Then, why are we doing this? Here's why. 610 // 611 // Users can use "extern C++ {}" directive to match against demangled 612 // C++ symbols. For example, you can write a pattern such as 613 // "llvm::*::foo(int, ?)". Obviously, there's no way to handle this 614 // other than trying to match a pattern against all demangled symbols. 615 // So, if "extern C++" feature is used, we need to demangle all known 616 // symbols. 617 template <class ELFT> 618 StringMap<std::vector<SymbolBody *>> &SymbolTable<ELFT>::getDemangledSyms() { 619 if (!DemangledSyms) { 620 DemangledSyms.emplace(); 621 for (Symbol *Sym : SymVector) { 622 SymbolBody *B = Sym->body(); 623 if (B->isUndefined()) 624 continue; 625 if (Optional<std::string> S = demangle(B->getName())) 626 (*DemangledSyms)[*S].push_back(B); 627 else 628 (*DemangledSyms)[B->getName()].push_back(B); 629 } 630 } 631 return *DemangledSyms; 632 } 633 634 template <class ELFT> 635 std::vector<SymbolBody *> SymbolTable<ELFT>::findByVersion(SymbolVersion Ver) { 636 if (Ver.IsExternCpp) 637 return getDemangledSyms().lookup(Ver.Name); 638 if (SymbolBody *B = find(Ver.Name)) 639 if (!B->isUndefined()) 640 return {B}; 641 return {}; 642 } 643 644 template <class ELFT> 645 std::vector<SymbolBody *> 646 SymbolTable<ELFT>::findAllByVersion(SymbolVersion Ver) { 647 std::vector<SymbolBody *> Res; 648 StringMatcher M(Ver.Name); 649 650 if (Ver.IsExternCpp) { 651 for (auto &P : getDemangledSyms()) 652 if (M.match(P.first())) 653 Res.insert(Res.end(), P.second.begin(), P.second.end()); 654 return Res; 655 } 656 657 for (Symbol *Sym : SymVector) { 658 SymbolBody *B = Sym->body(); 659 if (!B->isUndefined() && M.match(B->getName())) 660 Res.push_back(B); 661 } 662 return Res; 663 } 664 665 // If there's only one anonymous version definition in a version 666 // script file, the script does not actually define any symbol version, 667 // but just specifies symbols visibilities. 668 template <class ELFT> void SymbolTable<ELFT>::handleAnonymousVersion() { 669 for (SymbolVersion &Ver : Config->VersionScriptGlobals) 670 assignExactVersion(Ver, VER_NDX_GLOBAL, "global"); 671 for (SymbolVersion &Ver : Config->VersionScriptGlobals) 672 assignWildcardVersion(Ver, VER_NDX_GLOBAL); 673 for (SymbolVersion &Ver : Config->VersionScriptLocals) 674 assignExactVersion(Ver, VER_NDX_LOCAL, "local"); 675 for (SymbolVersion &Ver : Config->VersionScriptLocals) 676 assignWildcardVersion(Ver, VER_NDX_LOCAL); 677 } 678 679 // Set symbol versions to symbols. This function handles patterns 680 // containing no wildcard characters. 681 template <class ELFT> 682 void SymbolTable<ELFT>::assignExactVersion(SymbolVersion Ver, uint16_t VersionId, 683 StringRef VersionName) { 684 if (Ver.HasWildcard) 685 return; 686 687 // Get a list of symbols which we need to assign the version to. 688 std::vector<SymbolBody *> Syms = findByVersion(Ver); 689 if (Syms.empty()) { 690 if (Config->NoUndefinedVersion) 691 error("version script assignment of '" + VersionName + "' to symbol '" + 692 Ver.Name + "' failed: symbol not defined"); 693 return; 694 } 695 696 // Assign the version. 697 for (SymbolBody *B : Syms) { 698 Symbol *Sym = B->symbol(); 699 if (Sym->InVersionScript) 700 warn("duplicate symbol '" + Ver.Name + "' in version script"); 701 Sym->VersionId = VersionId; 702 Sym->InVersionScript = true; 703 } 704 } 705 706 template <class ELFT> 707 void SymbolTable<ELFT>::assignWildcardVersion(SymbolVersion Ver, 708 uint16_t VersionId) { 709 if (!Ver.HasWildcard) 710 return; 711 std::vector<SymbolBody *> Syms = findAllByVersion(Ver); 712 713 // Exact matching takes precendence over fuzzy matching, 714 // so we set a version to a symbol only if no version has been assigned 715 // to the symbol. This behavior is compatible with GNU. 716 for (SymbolBody *B : Syms) 717 if (B->symbol()->VersionId == Config->DefaultSymbolVersion) 718 B->symbol()->VersionId = VersionId; 719 } 720 721 // This function processes version scripts by updating VersionId 722 // member of symbols. 723 template <class ELFT> void SymbolTable<ELFT>::scanVersionScript() { 724 // Symbol themselves might know their versions because symbols 725 // can contain versions in the form of <name>@<version>. 726 // Let them parse their names. 727 if (!Config->VersionDefinitions.empty()) 728 for (Symbol *Sym : SymVector) 729 Sym->body()->parseSymbolVersion(); 730 731 // Handle edge cases first. 732 handleAnonymousVersion(); 733 734 if (Config->VersionDefinitions.empty()) 735 return; 736 737 // Now we have version definitions, so we need to set version ids to symbols. 738 // Each version definition has a glob pattern, and all symbols that match 739 // with the pattern get that version. 740 741 // First, we assign versions to exact matching symbols, 742 // i.e. version definitions not containing any glob meta-characters. 743 for (VersionDefinition &V : Config->VersionDefinitions) 744 for (SymbolVersion &Ver : V.Globals) 745 assignExactVersion(Ver, V.Id, V.Name); 746 747 // Next, we assign versions to fuzzy matching symbols, 748 // i.e. version definitions containing glob meta-characters. 749 // Note that because the last match takes precedence over previous matches, 750 // we iterate over the definitions in the reverse order. 751 for (VersionDefinition &V : llvm::reverse(Config->VersionDefinitions)) 752 for (SymbolVersion &Ver : V.Globals) 753 assignWildcardVersion(Ver, V.Id); 754 } 755 756 template class elf::SymbolTable<ELF32LE>; 757 template class elf::SymbolTable<ELF32BE>; 758 template class elf::SymbolTable<ELF64LE>; 759 template class elf::SymbolTable<ELF64BE>; 760