Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 | [diff] [blame] | 1 | //===- Symbols.cpp --------------------------------------------------------===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #include "Symbols.h" |
Michael J. Spencer | cdae0a4 | 2015-07-28 22:58:25 | [diff] [blame] | 10 | #include "InputFiles.h" |
Rui Ueyama | b5a6970 | 2016-02-01 21:00:35 | [diff] [blame] | 11 | #include "InputSection.h" |
| 12 | #include "OutputSections.h" |
Rui Ueyama | e8a6102 | 2016-11-05 23:05:47 | [diff] [blame] | 13 | #include "SyntheticSections.h" |
Rui Ueyama | b5a6970 | 2016-02-01 21:00:35 | [diff] [blame] | 14 | #include "Target.h" |
Rafael Espindola | 17cb7c0 | 2016-12-19 17:01:01 | [diff] [blame] | 15 | #include "Writer.h" |
Bob Haarman | b8a59c8 | 2017-10-25 22:28:38 | [diff] [blame] | 16 | #include "lld/Common/ErrorHandler.h" |
Rui Ueyama | 53fe469 | 2017-11-28 02:15:26 | [diff] [blame] | 17 | #include "lld/Common/Strings.h" |
Michael J. Spencer | 1b348a6 | 2015-09-04 22:28:10 | [diff] [blame] | 18 | #include "llvm/ADT/STLExtras.h" |
Eugene Leviant | c958d8d | 2016-10-12 08:19:30 | [diff] [blame] | 19 | #include "llvm/Support/Path.h" |
Rui Ueyama | c72ba3a | 2016-11-23 04:57:25 | [diff] [blame] | 20 | #include <cstring> |
Michael J. Spencer | 1b348a6 | 2015-09-04 22:28:10 | [diff] [blame] | 21 | |
| 22 | using namespace llvm; |
Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 | [diff] [blame] | 23 | using namespace llvm::object; |
Rafael Espindola | 78471f0 | 2015-09-01 23:12:52 | [diff] [blame] | 24 | using namespace llvm::ELF; |
Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 | [diff] [blame] | 25 | |
Fangrui Song | bd8cfe6 | 2019-10-07 08:31:18 | [diff] [blame] | 26 | namespace lld { |
| 27 | // Returns a symbol for an error message. |
| 28 | static std::string demangle(StringRef symName) { |
| 29 | if (elf::config->demangle) |
| 30 | return demangleItanium(symName); |
| 31 | return symName; |
| 32 | } |
Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 | [diff] [blame] | 33 | |
Fangrui Song | bd8cfe6 | 2019-10-07 08:31:18 | [diff] [blame] | 34 | std::string toString(const elf::Symbol &b) { return demangle(b.getName()); } |
| 35 | std::string toELFString(const Archive::Symbol &b) { |
| 36 | return demangle(b.getName()); |
| 37 | } |
| 38 | |
| 39 | namespace elf { |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 40 | Defined *ElfSym::bss; |
| 41 | Defined *ElfSym::etext1; |
| 42 | Defined *ElfSym::etext2; |
| 43 | Defined *ElfSym::edata1; |
| 44 | Defined *ElfSym::edata2; |
| 45 | Defined *ElfSym::end1; |
| 46 | Defined *ElfSym::end2; |
| 47 | Defined *ElfSym::globalOffsetTable; |
| 48 | Defined *ElfSym::mipsGp; |
| 49 | Defined *ElfSym::mipsGpDisp; |
| 50 | Defined *ElfSym::mipsLocalGp; |
| 51 | Defined *ElfSym::relaIpltStart; |
| 52 | Defined *ElfSym::relaIpltEnd; |
| 53 | Defined *ElfSym::riscvGlobalPointer; |
| 54 | Defined *ElfSym::tlsModuleBase; |
Rui Ueyama | 80474a2 | 2017-02-28 19:29:55 | [diff] [blame] | 55 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 56 | static uint64_t getSymVA(const Symbol &sym, int64_t &addend) { |
| 57 | switch (sym.kind()) { |
Peter Collingbourne | e9a9e0a | 2017-11-06 04:35:31 | [diff] [blame] | 58 | case Symbol::DefinedKind: { |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 59 | auto &d = cast<Defined>(sym); |
| 60 | SectionBase *isec = d.section; |
Rui Ueyama | b5a6970 | 2016-02-01 21:00:35 | [diff] [blame] | 61 | |
| 62 | // This is an absolute symbol. |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 63 | if (!isec) |
| 64 | return d.value; |
Rui Ueyama | b5a6970 | 2016-02-01 21:00:35 | [diff] [blame] | 65 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 66 | assert(isec != &InputSection::discarded); |
| 67 | isec = isec->repl; |
Rafael Espindola | f4d6e8c | 2018-04-19 17:26:50 | [diff] [blame] | 68 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 69 | uint64_t offset = d.value; |
Sean Silva | a9ba450 | 2017-02-28 08:32:56 | [diff] [blame] | 70 | |
| 71 | // An object in an SHF_MERGE section might be referenced via a |
| 72 | // section symbol (as a hack for reducing the number of local |
| 73 | // symbols). |
Sean Silva | d4e6062 | 2017-03-01 04:44:04 | [diff] [blame] | 74 | // Depending on the addend, the reference via a section symbol |
| 75 | // refers to a different object in the merge section. |
| 76 | // Since the objects in the merge section are not necessarily |
| 77 | // contiguous in the output, the addend can thus affect the final |
| 78 | // VA in a non-linear way. |
| 79 | // To make this work, we incorporate the addend into the section |
| 80 | // offset (and zero out the addend for later processing) so that |
| 81 | // we find the right object in the section. |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 82 | if (d.isSection()) { |
| 83 | offset += addend; |
| 84 | addend = 0; |
Rafael Espindola | 1f5b70f | 2016-03-11 14:21:37 | [diff] [blame] | 85 | } |
Sean Silva | a9ba450 | 2017-02-28 08:32:56 | [diff] [blame] | 86 | |
Sean Silva | 6ab3926 | 2017-02-28 09:01:58 | [diff] [blame] | 87 | // In the typical case, this is actually very simple and boils |
| 88 | // down to adding together 3 numbers: |
| 89 | // 1. The address of the output section. |
| 90 | // 2. The offset of the input section within the output section. |
| 91 | // 3. The offset within the input section (this addition happens |
| 92 | // inside InputSection::getOffset). |
| 93 | // |
| 94 | // If you understand the data structures involved with this next |
| 95 | // line (and how they get built), then you have a pretty good |
| 96 | // understanding of the linker. |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 97 | uint64_t va = isec->getVA(offset); |
Sean Silva | 6ab3926 | 2017-02-28 09:01:58 | [diff] [blame] | 98 | |
Simon Atanasyan | fae2a509 | 2019-02-19 10:36:58 | [diff] [blame] | 99 | // MIPS relocatable files can mix regular and microMIPS code. |
| 100 | // Linker needs to distinguish such code. To do so microMIPS |
| 101 | // symbols has the `STO_MIPS_MICROMIPS` flag in the `st_other` |
Fangrui Song | deb5819 | 2020-01-23 05:39:16 | [diff] [blame^] | 102 | // field. Unfortunately, the `MIPS::relocate()` method has |
Simon Atanasyan | fae2a509 | 2019-02-19 10:36:58 | [diff] [blame] | 103 | // a symbol value only. To pass type of the symbol (regular/microMIPS) |
| 104 | // to that routine as well as other places where we write |
| 105 | // a symbol value as-is (.dynamic section, `Elf_Ehdr::e_entry` |
| 106 | // field etc) do the same trick as compiler uses to mark microMIPS |
| 107 | // for CPU - set the less-significant bit. |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 108 | if (config->emachine == EM_MIPS && isMicroMips() && |
| 109 | ((sym.stOther & STO_MIPS_MICROMIPS) || sym.needsPltAddr)) |
| 110 | va |= 1; |
Simon Atanasyan | fae2a509 | 2019-02-19 10:36:58 | [diff] [blame] | 111 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 112 | if (d.isTls() && !config->relocatable) { |
Ryan Prichard | 1c33d14 | 2018-09-18 00:24:48 | [diff] [blame] | 113 | // Use the address of the TLS segment's first section rather than the |
| 114 | // segment's address, because segment addresses aren't initialized until |
| 115 | // after sections are finalized. (e.g. Measuring the size of .rela.dyn |
| 116 | // for Android relocation packing requires knowing TLS symbol addresses |
| 117 | // during section finalization.) |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 118 | if (!Out::tlsPhdr || !Out::tlsPhdr->firstSec) |
| 119 | fatal(toString(d.file) + |
Peter Collingbourne | 3e2abde | 2017-07-14 00:22:46 | [diff] [blame] | 120 | " has an STT_TLS symbol but doesn't have an SHF_TLS section"); |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 121 | return va - Out::tlsPhdr->firstSec->addr; |
George Rimar | 6a3b154 | 2016-10-04 08:52:51 | [diff] [blame] | 122 | } |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 123 | return va; |
Rui Ueyama | b5a6970 | 2016-02-01 21:00:35 | [diff] [blame] | 124 | } |
Rafael Espindola | ab0cce5 | 2018-04-26 17:58:58 | [diff] [blame] | 125 | case Symbol::SharedKind: |
Rui Ueyama | f52496e | 2017-11-03 21:21:47 | [diff] [blame] | 126 | case Symbol::UndefinedKind: |
Rui Ueyama | b5a6970 | 2016-02-01 21:00:35 | [diff] [blame] | 127 | return 0; |
Rui Ueyama | f52496e | 2017-11-03 21:21:47 | [diff] [blame] | 128 | case Symbol::LazyArchiveKind: |
| 129 | case Symbol::LazyObjectKind: |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 130 | assert(sym.isUsedInRegularObj && "lazy symbol reached writer"); |
Chih-Hung Hsieh | 73e0484 | 2018-09-11 23:00:36 | [diff] [blame] | 131 | return 0; |
Rui Ueyama | 5c073a9 | 2019-05-16 03:29:03 | [diff] [blame] | 132 | case Symbol::CommonKind: |
| 133 | llvm_unreachable("common symbol reached writer"); |
Rui Ueyama | f3fad55 | 2018-10-12 18:29:18 | [diff] [blame] | 134 | case Symbol::PlaceholderKind: |
| 135 | llvm_unreachable("placeholder symbol reached writer"); |
Rui Ueyama | b5a6970 | 2016-02-01 21:00:35 | [diff] [blame] | 136 | } |
George Rimar | 777f963 | 2016-03-12 08:31:34 | [diff] [blame] | 137 | llvm_unreachable("invalid symbol kind"); |
Rui Ueyama | b5a6970 | 2016-02-01 21:00:35 | [diff] [blame] | 138 | } |
| 139 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 140 | uint64_t Symbol::getVA(int64_t addend) const { |
| 141 | uint64_t outVA = getSymVA(*this, addend); |
| 142 | return outVA + addend; |
Rafael Espindola | 87d9f10 | 2016-03-11 12:19:05 | [diff] [blame] | 143 | } |
| 144 | |
Peter Collingbourne | 8331f61 | 2019-02-13 21:49:55 | [diff] [blame] | 145 | uint64_t Symbol::getGotVA() const { |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 146 | if (gotInIgot) |
| 147 | return in.igotPlt->getVA() + getGotPltOffset(); |
| 148 | return in.got->getVA() + getGotOffset(); |
Peter Collingbourne | 8331f61 | 2019-02-13 21:49:55 | [diff] [blame] | 149 | } |
Rafael Espindola | 74031ba | 2016-04-07 15:20:56 | [diff] [blame] | 150 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 151 | uint64_t Symbol::getGotOffset() const { return gotIndex * config->wordsize; } |
Rui Ueyama | b5a6970 | 2016-02-01 21:00:35 | [diff] [blame] | 152 | |
Rui Ueyama | f52496e | 2017-11-03 21:21:47 | [diff] [blame] | 153 | uint64_t Symbol::getGotPltVA() const { |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 154 | if (isInIplt) |
| 155 | return in.igotPlt->getVA() + getGotPltOffset(); |
| 156 | return in.gotPlt->getVA() + getGotPltOffset(); |
Rafael Espindola | 74031ba | 2016-04-07 15:20:56 | [diff] [blame] | 157 | } |
| 158 | |
Rui Ueyama | f52496e | 2017-11-03 21:21:47 | [diff] [blame] | 159 | uint64_t Symbol::getGotPltOffset() const { |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 160 | if (isInIplt) |
| 161 | return pltIndex * config->wordsize; |
| 162 | return (pltIndex + target->gotPltHeaderEntriesNum) * config->wordsize; |
Rui Ueyama | b5a6970 | 2016-02-01 21:00:35 | [diff] [blame] | 163 | } |
| 164 | |
Rui Ueyama | f52496e | 2017-11-03 21:21:47 | [diff] [blame] | 165 | uint64_t Symbol::getPltVA() const { |
Fangrui Song | 891a865 | 2019-12-14 22:17:35 | [diff] [blame] | 166 | uint64_t outVA = isInIplt |
| 167 | ? in.iplt->getVA() + pltIndex * target->ipltEntrySize |
| 168 | : in.plt->getVA() + in.plt->headerSize + |
| 169 | pltIndex * target->pltEntrySize; |
| 170 | |
Simon Atanasyan | fae2a509 | 2019-02-19 10:36:58 | [diff] [blame] | 171 | // While linking microMIPS code PLT code are always microMIPS |
| 172 | // code. Set the less-significant bit to track that fact. |
| 173 | // See detailed comment in the `getSymVA` function. |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 174 | if (config->emachine == EM_MIPS && isMicroMips()) |
| 175 | outVA |= 1; |
| 176 | return outVA; |
Rafael Espindola | ab0cce5 | 2018-04-26 17:58:58 | [diff] [blame] | 177 | } |
| 178 | |
Rui Ueyama | f52496e | 2017-11-03 21:21:47 | [diff] [blame] | 179 | uint64_t Symbol::getSize() const { |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 180 | if (const auto *dr = dyn_cast<Defined>(this)) |
| 181 | return dr->size; |
| 182 | return cast<SharedSymbol>(this)->size; |
Rui Ueyama | 512c61d | 2016-02-03 00:12:24 | [diff] [blame] | 183 | } |
| 184 | |
Rui Ueyama | f52496e | 2017-11-03 21:21:47 | [diff] [blame] | 185 | OutputSection *Symbol::getOutputSection() const { |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 186 | if (auto *s = dyn_cast<Defined>(this)) { |
| 187 | if (auto *sec = s->section) |
| 188 | return sec->repl->getOutputSection(); |
Rui Ueyama | 968db48 | 2017-02-28 04:02:42 | [diff] [blame] | 189 | return nullptr; |
| 190 | } |
Rui Ueyama | 968db48 | 2017-02-28 04:02:42 | [diff] [blame] | 191 | return nullptr; |
| 192 | } |
| 193 | |
Rui Ueyama | 35fa6c5 | 2016-11-23 05:48:40 | [diff] [blame] | 194 | // If a symbol name contains '@', the characters after that is |
| 195 | // a symbol version name. This function parses that. |
Rui Ueyama | f52496e | 2017-11-03 21:21:47 | [diff] [blame] | 196 | void Symbol::parseSymbolVersion() { |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 197 | StringRef s = getName(); |
| 198 | size_t pos = s.find('@'); |
| 199 | if (pos == 0 || pos == StringRef::npos) |
Rui Ueyama | 35fa6c5 | 2016-11-23 05:48:40 | [diff] [blame] | 200 | return; |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 201 | StringRef verstr = s.substr(pos + 1); |
| 202 | if (verstr.empty()) |
Rui Ueyama | 35fa6c5 | 2016-11-23 05:48:40 | [diff] [blame] | 203 | return; |
| 204 | |
| 205 | // Truncate the symbol name so that it doesn't include the version string. |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 206 | nameSize = pos; |
Rui Ueyama | 35fa6c5 | 2016-11-23 05:48:40 | [diff] [blame] | 207 | |
Rafael Espindola | 1d6d1b4 | 2017-01-17 16:08:06 | [diff] [blame] | 208 | // If this is not in this DSO, it is not a definition. |
Peter Collingbourne | b472aa0 | 2017-11-06 04:39:07 | [diff] [blame] | 209 | if (!isDefined()) |
Rafael Espindola | 2756e04 | 2017-01-06 22:30:35 | [diff] [blame] | 210 | return; |
| 211 | |
Rui Ueyama | 35fa6c5 | 2016-11-23 05:48:40 | [diff] [blame] | 212 | // '@@' in a symbol name means the default version. |
| 213 | // It is usually the most recent one. |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 214 | bool isDefault = (verstr[0] == '@'); |
| 215 | if (isDefault) |
| 216 | verstr = verstr.substr(1); |
Rui Ueyama | 35fa6c5 | 2016-11-23 05:48:40 | [diff] [blame] | 217 | |
Fangrui Song | e28a70d | 2019-08-05 14:31:39 | [diff] [blame] | 218 | for (const VersionDefinition &ver : namedVersionDefs()) { |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 219 | if (ver.name != verstr) |
Rui Ueyama | 35fa6c5 | 2016-11-23 05:48:40 | [diff] [blame] | 220 | continue; |
| 221 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 222 | if (isDefault) |
| 223 | versionId = ver.id; |
Rui Ueyama | 35fa6c5 | 2016-11-23 05:48:40 | [diff] [blame] | 224 | else |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 225 | versionId = ver.id | VERSYM_HIDDEN; |
Rui Ueyama | 35fa6c5 | 2016-11-23 05:48:40 | [diff] [blame] | 226 | return; |
| 227 | } |
| 228 | |
| 229 | // It is an error if the specified version is not defined. |
George Rimar | 4d2f9762 | 2017-07-04 13:19:13 | [diff] [blame] | 230 | // Usually version script is not provided when linking executable, |
| 231 | // but we may still want to override a versioned symbol from DSO, |
Peter Smith | 796fb99 | 2018-05-14 10:13:56 | [diff] [blame] | 232 | // so we do not report error in this case. We also do not error |
| 233 | // if the symbol has a local version as it won't be in the dynamic |
| 234 | // symbol table. |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 235 | if (config->shared && versionId != VER_NDX_LOCAL) |
| 236 | error(toString(file) + ": symbol " + s + " has undefined version " + |
| 237 | verstr); |
Rui Ueyama | 35fa6c5 | 2016-11-23 05:48:40 | [diff] [blame] | 238 | } |
| 239 | |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 240 | void Symbol::fetch() const { |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 241 | if (auto *sym = dyn_cast<LazyArchive>(this)) { |
| 242 | cast<ArchiveFile>(sym->file)->fetch(sym->sym); |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 243 | return; |
| 244 | } |
| 245 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 246 | if (auto *sym = dyn_cast<LazyObject>(this)) { |
| 247 | dyn_cast<LazyObjFile>(sym->file)->fetch(); |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 248 | return; |
| 249 | } |
| 250 | |
| 251 | llvm_unreachable("Symbol::fetch() is called on a non-lazy symbol"); |
Rui Ueyama | 7d47619 | 2019-05-16 02:14:00 | [diff] [blame] | 252 | } |
Rui Ueyama | f8baa66 | 2016-04-07 19:24:51 | [diff] [blame] | 253 | |
Peter Collingbourne | 9893011 | 2018-08-08 23:48:12 | [diff] [blame] | 254 | MemoryBufferRef LazyArchive::getMemberBuffer() { |
Nico Weber | 9c0716f | 2019-07-23 19:00:01 | [diff] [blame] | 255 | Archive::Child c = |
| 256 | CHECK(sym.getMember(), |
| 257 | "could not get the member for symbol " + toELFString(sym)); |
Peter Collingbourne | 9893011 | 2018-08-08 23:48:12 | [diff] [blame] | 258 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 259 | return CHECK(c.getMemoryBufferRef(), |
Peter Collingbourne | 9893011 | 2018-08-08 23:48:12 | [diff] [blame] | 260 | "could not get the buffer for the member defining symbol " + |
Nico Weber | 9c0716f | 2019-07-23 19:00:01 | [diff] [blame] | 261 | toELFString(sym)); |
Peter Collingbourne | 9893011 | 2018-08-08 23:48:12 | [diff] [blame] | 262 | } |
| 263 | |
Rui Ueyama | f52496e | 2017-11-03 21:21:47 | [diff] [blame] | 264 | uint8_t Symbol::computeBinding() const { |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 265 | if (config->relocatable) |
| 266 | return binding; |
Fangrui Song | cfdd458 | 2019-08-11 17:03:00 | [diff] [blame] | 267 | if ((visibility != STV_DEFAULT && visibility != STV_PROTECTED) || |
| 268 | versionId == VER_NDX_LOCAL) |
Rafael Espindola | b7e2ee2 | 2017-01-10 17:08:13 | [diff] [blame] | 269 | return STB_LOCAL; |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 270 | if (!config->gnuUnique && binding == STB_GNU_UNIQUE) |
Rafael Espindola | b7e2ee2 | 2017-01-10 17:08:13 | [diff] [blame] | 271 | return STB_GLOBAL; |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 272 | return binding; |
Rafael Espindola | b7e2ee2 | 2017-01-10 17:08:13 | [diff] [blame] | 273 | } |
| 274 | |
Rui Ueyama | f52496e | 2017-11-03 21:21:47 | [diff] [blame] | 275 | bool Symbol::includeInDynsym() const { |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 276 | if (!config->hasDynSymTab) |
Rafael Espindola | e05e2f8 | 2017-09-15 18:05:02 | [diff] [blame] | 277 | return false; |
Rafael Espindola | b7e2ee2 | 2017-01-10 17:08:13 | [diff] [blame] | 278 | if (computeBinding() == STB_LOCAL) |
Rafael Espindola | ae605c1 | 2016-04-21 20:35:25 | [diff] [blame] | 279 | return false; |
Fangrui Song | 375371c | 2020-01-09 23:53:52 | [diff] [blame] | 280 | if (!isDefined() && !isCommon()) |
Fangrui Song | 0fbf28f | 2020-01-23 19:52:03 | [diff] [blame] | 281 | // This should unconditionally return true, unfortunately glibc -static-pie |
| 282 | // expects undefined weak symbols not to exist in .dynsym, e.g. |
| 283 | // __pthread_mutex_lock reference in _dl_add_to_namespace_list, |
| 284 | // __pthread_initialize_minimal reference in csu/libc-start.c. |
| 285 | return !(config->noDynamicLinker && isUndefWeak()); |
Rui Ueyama | e63ae7f | 2019-06-25 06:58:07 | [diff] [blame] | 286 | |
Fangrui Song | 375371c | 2020-01-09 23:53:52 | [diff] [blame] | 287 | return exportDynamic || inDynamicList; |
Rafael Espindola | ae605c1 | 2016-04-21 20:35:25 | [diff] [blame] | 288 | } |
Rui Ueyama | 69c778c | 2016-07-17 17:50:09 | [diff] [blame] | 289 | |
| 290 | // Print out a log message for --trace-symbol. |
Fangrui Song | bd8cfe6 | 2019-10-07 08:31:18 | [diff] [blame] | 291 | void printTraceSymbol(const Symbol *sym) { |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 292 | std::string s; |
| 293 | if (sym->isUndefined()) |
| 294 | s = ": reference to "; |
| 295 | else if (sym->isLazy()) |
| 296 | s = ": lazy definition of "; |
| 297 | else if (sym->isShared()) |
| 298 | s = ": shared definition of "; |
| 299 | else if (sym->isCommon()) |
| 300 | s = ": common definition of "; |
Rui Ueyama | 69c778c | 2016-07-17 17:50:09 | [diff] [blame] | 301 | else |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 302 | s = ": definition of "; |
Rui Ueyama | e6e206d | 2017-02-21 23:22:56 | [diff] [blame] | 303 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 304 | message(toString(sym->file) + s + sym->getName()); |
Rui Ueyama | 69c778c | 2016-07-17 17:50:09 | [diff] [blame] | 305 | } |
| 306 | |
Fangrui Song | bd8cfe6 | 2019-10-07 08:31:18 | [diff] [blame] | 307 | void maybeWarnUnorderableSymbol(const Symbol *sym) { |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 308 | if (!config->warnSymbolOrdering) |
Michael J. Spencer | b842725 | 2018-04-17 23:30:05 | [diff] [blame] | 309 | return; |
Rui Ueyama | b774c3c | 2018-04-26 01:38:29 | [diff] [blame] | 310 | |
Fangrui Song | 11ca54f | 2018-10-10 22:48:57 | [diff] [blame] | 311 | // If UnresolvedPolicy::Ignore is used, no "undefined symbol" error/warning |
| 312 | // is emitted. It makes sense to not warn on undefined symbols. |
| 313 | // |
| 314 | // Note, ld.bfd --symbol-ordering-file= does not warn on undefined symbols, |
| 315 | // but we don't have to be compatible here. |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 316 | if (sym->isUndefined() && |
| 317 | config->unresolvedSymbols == UnresolvedPolicy::Ignore) |
Fangrui Song | 11ca54f | 2018-10-10 22:48:57 | [diff] [blame] | 318 | return; |
| 319 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 320 | const InputFile *file = sym->file; |
| 321 | auto *d = dyn_cast<Defined>(sym); |
Rui Ueyama | b774c3c | 2018-04-26 01:38:29 | [diff] [blame] | 322 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 323 | auto report = [&](StringRef s) { warn(toString(file) + s + sym->getName()); }; |
Rui Ueyama | b774c3c | 2018-04-26 01:38:29 | [diff] [blame] | 324 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 325 | if (sym->isUndefined()) |
| 326 | report(": unable to order undefined symbol: "); |
| 327 | else if (sym->isShared()) |
| 328 | report(": unable to order shared symbol: "); |
| 329 | else if (d && !d->section) |
| 330 | report(": unable to order absolute symbol: "); |
| 331 | else if (d && isa<OutputSection>(d->section)) |
| 332 | report(": unable to order synthetic symbol: "); |
| 333 | else if (d && !d->section->repl->isLive()) |
| 334 | report(": unable to order discarded symbol: "); |
Michael J. Spencer | b842725 | 2018-04-17 23:30:05 | [diff] [blame] | 335 | } |
| 336 | |
Fangrui Song | cd0ab24 | 2019-11-30 05:58:36 | [diff] [blame] | 337 | // Returns true if a symbol can be replaced at load-time by a symbol |
| 338 | // with the same name defined in other ELF executable or DSO. |
| 339 | bool computeIsPreemptible(const Symbol &sym) { |
| 340 | assert(!sym.isLocal()); |
| 341 | |
| 342 | // Only symbols with default visibility that appear in dynsym can be |
| 343 | // preempted. Symbols with protected visibility cannot be preempted. |
| 344 | if (!sym.includeInDynsym() || sym.visibility != STV_DEFAULT) |
| 345 | return false; |
| 346 | |
| 347 | // At this point copy relocations have not been created yet, so any |
| 348 | // symbol that is not defined locally is preemptible. |
| 349 | if (!sym.isDefined()) |
| 350 | return true; |
| 351 | |
| 352 | if (!config->shared) |
| 353 | return false; |
| 354 | |
| 355 | // If the dynamic list is present, it specifies preemptable symbols in a DSO. |
| 356 | if (config->hasDynamicList) |
| 357 | return sym.inDynamicList; |
| 358 | |
| 359 | // -Bsymbolic means that definitions are not preempted. |
| 360 | if (config->bsymbolic || (config->bsymbolicFunctions && sym.isFunc())) |
| 361 | return false; |
| 362 | return true; |
| 363 | } |
| 364 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 365 | static uint8_t getMinVisibility(uint8_t va, uint8_t vb) { |
| 366 | if (va == STV_DEFAULT) |
| 367 | return vb; |
| 368 | if (vb == STV_DEFAULT) |
| 369 | return va; |
| 370 | return std::min(va, vb); |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 371 | } |
| 372 | |
| 373 | // Merge symbol properties. |
| 374 | // |
| 375 | // When we have many symbols of the same name, we choose one of them, |
| 376 | // and that's the result of symbol resolution. However, symbols that |
| 377 | // were not chosen still affect some symbol properties. |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 378 | void Symbol::mergeProperties(const Symbol &other) { |
| 379 | if (other.exportDynamic) |
| 380 | exportDynamic = true; |
| 381 | if (other.isUsedInRegularObj) |
| 382 | isUsedInRegularObj = true; |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 383 | |
| 384 | // DSO symbols do not affect visibility in the output. |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 385 | if (!other.isShared()) |
| 386 | visibility = getMinVisibility(visibility, other.visibility); |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 387 | } |
| 388 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 389 | void Symbol::resolve(const Symbol &other) { |
| 390 | mergeProperties(other); |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 391 | |
| 392 | if (isPlaceholder()) { |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 393 | replace(other); |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 394 | return; |
| 395 | } |
| 396 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 397 | switch (other.kind()) { |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 398 | case Symbol::UndefinedKind: |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 399 | resolveUndefined(cast<Undefined>(other)); |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 400 | break; |
| 401 | case Symbol::CommonKind: |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 402 | resolveCommon(cast<CommonSymbol>(other)); |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 403 | break; |
| 404 | case Symbol::DefinedKind: |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 405 | resolveDefined(cast<Defined>(other)); |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 406 | break; |
| 407 | case Symbol::LazyArchiveKind: |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 408 | resolveLazy(cast<LazyArchive>(other)); |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 409 | break; |
| 410 | case Symbol::LazyObjectKind: |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 411 | resolveLazy(cast<LazyObject>(other)); |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 412 | break; |
| 413 | case Symbol::SharedKind: |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 414 | resolveShared(cast<SharedSymbol>(other)); |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 415 | break; |
| 416 | case Symbol::PlaceholderKind: |
| 417 | llvm_unreachable("bad symbol kind"); |
| 418 | } |
| 419 | } |
| 420 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 421 | void Symbol::resolveUndefined(const Undefined &other) { |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 422 | // An undefined symbol with non default visibility must be satisfied |
| 423 | // in the same DSO. |
| 424 | // |
| 425 | // If this is a non-weak defined symbol in a discarded section, override the |
| 426 | // existing undefined symbol for better error message later. |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 427 | if ((isShared() && other.visibility != STV_DEFAULT) || |
| 428 | (isUndefined() && other.binding != STB_WEAK && other.discardedSecIdx)) { |
| 429 | replace(other); |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 430 | return; |
| 431 | } |
| 432 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 433 | if (traced) |
| 434 | printTraceSymbol(&other); |
Sam Clegg | 7991b68 | 2019-05-24 13:29:17 | [diff] [blame] | 435 | |
Fangrui Song | f347541 | 2019-07-04 10:38:04 | [diff] [blame] | 436 | if (isLazy()) { |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 437 | // An undefined weak will not fetch archive members. See comment on Lazy in |
| 438 | // Symbols.h for the details. |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 439 | if (other.binding == STB_WEAK) { |
| 440 | binding = STB_WEAK; |
| 441 | type = other.type; |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 442 | return; |
| 443 | } |
| 444 | |
| 445 | // Do extra check for --warn-backrefs. |
| 446 | // |
| 447 | // --warn-backrefs is an option to prevent an undefined reference from |
| 448 | // fetching an archive member written earlier in the command line. It can be |
| 449 | // used to keep compatibility with GNU linkers to some degree. |
| 450 | // I'll explain the feature and why you may find it useful in this comment. |
| 451 | // |
| 452 | // lld's symbol resolution semantics is more relaxed than traditional Unix |
| 453 | // linkers. For example, |
| 454 | // |
| 455 | // ld.lld foo.a bar.o |
| 456 | // |
| 457 | // succeeds even if bar.o contains an undefined symbol that has to be |
| 458 | // resolved by some object file in foo.a. Traditional Unix linkers don't |
| 459 | // allow this kind of backward reference, as they visit each file only once |
| 460 | // from left to right in the command line while resolving all undefined |
| 461 | // symbols at the moment of visiting. |
| 462 | // |
| 463 | // In the above case, since there's no undefined symbol when a linker visits |
| 464 | // foo.a, no files are pulled out from foo.a, and because the linker forgets |
| 465 | // about foo.a after visiting, it can't resolve undefined symbols in bar.o |
| 466 | // that could have been resolved otherwise. |
| 467 | // |
| 468 | // That lld accepts more relaxed form means that (besides it'd make more |
| 469 | // sense) you can accidentally write a command line or a build file that |
| 470 | // works only with lld, even if you have a plan to distribute it to wider |
| 471 | // users who may be using GNU linkers. With --warn-backrefs, you can detect |
| 472 | // a library order that doesn't work with other Unix linkers. |
| 473 | // |
| 474 | // The option is also useful to detect cyclic dependencies between static |
| 475 | // archives. Again, lld accepts |
| 476 | // |
| 477 | // ld.lld foo.a bar.a |
| 478 | // |
| 479 | // even if foo.a and bar.a depend on each other. With --warn-backrefs, it is |
| 480 | // handled as an error. |
| 481 | // |
| 482 | // Here is how the option works. We assign a group ID to each file. A file |
| 483 | // with a smaller group ID can pull out object files from an archive file |
| 484 | // with an equal or greater group ID. Otherwise, it is a reverse dependency |
| 485 | // and an error. |
| 486 | // |
| 487 | // A file outside --{start,end}-group gets a fresh ID when instantiated. All |
| 488 | // files within the same --{start,end}-group get the same group ID. E.g. |
| 489 | // |
| 490 | // ld.lld A B --start-group C D --end-group E |
| 491 | // |
| 492 | // A forms group 0. B form group 1. C and D (including their member object |
| 493 | // files) form group 2. E forms group 3. I think that you can see how this |
| 494 | // group assignment rule simulates the traditional linker's semantics. |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 495 | bool backref = config->warnBackrefs && other.file && |
| 496 | file->groupId < other.file->groupId; |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 497 | fetch(); |
| 498 | |
| 499 | // We don't report backward references to weak symbols as they can be |
| 500 | // overridden later. |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 501 | if (backref && !isWeak()) |
| 502 | warn("backward reference detected: " + other.getName() + " in " + |
| 503 | toString(other.file) + " refers to " + toString(file)); |
Fangrui Song | f347541 | 2019-07-04 10:38:04 | [diff] [blame] | 504 | return; |
| 505 | } |
| 506 | |
| 507 | // Undefined symbols in a SharedFile do not change the binding. |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 508 | if (dyn_cast_or_null<SharedFile>(other.file)) |
Fangrui Song | f347541 | 2019-07-04 10:38:04 | [diff] [blame] | 509 | return; |
| 510 | |
Fangrui Song | e49c417 | 2019-08-06 14:03:45 | [diff] [blame] | 511 | if (isUndefined() || isShared()) { |
| 512 | // The binding will be weak if there is at least one reference and all are |
| 513 | // weak. The binding has one opportunity to change to weak: if the first |
| 514 | // reference is weak. |
| 515 | if (other.binding != STB_WEAK || !referenced) |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 516 | binding = other.binding; |
Fangrui Song | e49c417 | 2019-08-06 14:03:45 | [diff] [blame] | 517 | referenced = true; |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 518 | } |
| 519 | } |
| 520 | |
| 521 | // Using .symver foo,foo@@VER unfortunately creates two symbols: foo and |
| 522 | // foo@@VER. We want to effectively ignore foo, so give precedence to |
| 523 | // foo@@VER. |
| 524 | // FIXME: If users can transition to using |
| 525 | // .symver foo,foo@@@VER |
| 526 | // we can delete this hack. |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 527 | static int compareVersion(StringRef a, StringRef b) { |
| 528 | bool x = a.contains("@@"); |
| 529 | bool y = b.contains("@@"); |
| 530 | if (!x && y) |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 531 | return 1; |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 532 | if (x && !y) |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 533 | return -1; |
| 534 | return 0; |
| 535 | } |
| 536 | |
| 537 | // Compare two symbols. Return 1 if the new symbol should win, -1 if |
| 538 | // the new symbol should lose, or 0 if there is a conflict. |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 539 | int Symbol::compare(const Symbol *other) const { |
| 540 | assert(other->isDefined() || other->isCommon()); |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 541 | |
| 542 | if (!isDefined() && !isCommon()) |
| 543 | return 1; |
| 544 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 545 | if (int cmp = compareVersion(getName(), other->getName())) |
| 546 | return cmp; |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 547 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 548 | if (other->isWeak()) |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 549 | return -1; |
| 550 | |
| 551 | if (isWeak()) |
| 552 | return 1; |
| 553 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 554 | if (isCommon() && other->isCommon()) { |
| 555 | if (config->warnCommon) |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 556 | warn("multiple common of " + getName()); |
| 557 | return 0; |
| 558 | } |
| 559 | |
| 560 | if (isCommon()) { |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 561 | if (config->warnCommon) |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 562 | warn("common " + getName() + " is overridden"); |
| 563 | return 1; |
| 564 | } |
| 565 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 566 | if (other->isCommon()) { |
| 567 | if (config->warnCommon) |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 568 | warn("common " + getName() + " is overridden"); |
| 569 | return -1; |
| 570 | } |
| 571 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 572 | auto *oldSym = cast<Defined>(this); |
| 573 | auto *newSym = cast<Defined>(other); |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 574 | |
Fangrui Song | d6c4482 | 2019-07-26 16:29:15 | [diff] [blame] | 575 | if (dyn_cast_or_null<BitcodeFile>(other->file)) |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 576 | return 0; |
| 577 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 578 | if (!oldSym->section && !newSym->section && oldSym->value == newSym->value && |
| 579 | newSym->binding == STB_GLOBAL) |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 580 | return -1; |
| 581 | |
| 582 | return 0; |
| 583 | } |
| 584 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 585 | static void reportDuplicate(Symbol *sym, InputFile *newFile, |
| 586 | InputSectionBase *errSec, uint64_t errOffset) { |
| 587 | if (config->allowMultipleDefinition) |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 588 | return; |
| 589 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 590 | Defined *d = cast<Defined>(sym); |
| 591 | if (!d->section || !errSec) { |
| 592 | error("duplicate symbol: " + toString(*sym) + "\n>>> defined in " + |
| 593 | toString(sym->file) + "\n>>> defined in " + toString(newFile)); |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 594 | return; |
| 595 | } |
| 596 | |
| 597 | // Construct and print an error message in the form of: |
| 598 | // |
| 599 | // ld.lld: error: duplicate symbol: foo |
| 600 | // >>> defined at bar.c:30 |
| 601 | // >>> bar.o (/home/alice/src/bar.o) |
| 602 | // >>> defined at baz.c:563 |
| 603 | // >>> baz.o in archive libbaz.a |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 604 | auto *sec1 = cast<InputSectionBase>(d->section); |
| 605 | std::string src1 = sec1->getSrcMsg(*sym, d->value); |
| 606 | std::string obj1 = sec1->getObjMsg(d->value); |
| 607 | std::string src2 = errSec->getSrcMsg(*sym, errOffset); |
| 608 | std::string obj2 = errSec->getObjMsg(errOffset); |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 609 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 610 | std::string msg = "duplicate symbol: " + toString(*sym) + "\n>>> defined at "; |
| 611 | if (!src1.empty()) |
| 612 | msg += src1 + "\n>>> "; |
| 613 | msg += obj1 + "\n>>> defined at "; |
| 614 | if (!src2.empty()) |
| 615 | msg += src2 + "\n>>> "; |
| 616 | msg += obj2; |
| 617 | error(msg); |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 618 | } |
| 619 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 620 | void Symbol::resolveCommon(const CommonSymbol &other) { |
| 621 | int cmp = compare(&other); |
| 622 | if (cmp < 0) |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 623 | return; |
| 624 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 625 | if (cmp > 0) { |
Fangrui Song | 69d10d2 | 2019-12-07 05:18:31 | [diff] [blame] | 626 | if (auto *s = dyn_cast<SharedSymbol>(this)) { |
| 627 | // Increase st_size if the shared symbol has a larger st_size. The shared |
| 628 | // symbol may be created from common symbols. The fact that some object |
| 629 | // files were linked into a shared object first should not change the |
| 630 | // regular rule that picks the largest st_size. |
| 631 | uint64_t size = s->size; |
| 632 | replace(other); |
| 633 | if (size > cast<CommonSymbol>(this)->size) |
| 634 | cast<CommonSymbol>(this)->size = size; |
| 635 | } else { |
| 636 | replace(other); |
| 637 | } |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 638 | return; |
| 639 | } |
| 640 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 641 | CommonSymbol *oldSym = cast<CommonSymbol>(this); |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 642 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 643 | oldSym->alignment = std::max(oldSym->alignment, other.alignment); |
| 644 | if (oldSym->size < other.size) { |
| 645 | oldSym->file = other.file; |
| 646 | oldSym->size = other.size; |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 647 | } |
| 648 | } |
| 649 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 650 | void Symbol::resolveDefined(const Defined &other) { |
| 651 | int cmp = compare(&other); |
| 652 | if (cmp > 0) |
| 653 | replace(other); |
| 654 | else if (cmp == 0) |
| 655 | reportDuplicate(this, other.file, |
| 656 | dyn_cast_or_null<InputSectionBase>(other.section), |
| 657 | other.value); |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 658 | } |
| 659 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 660 | template <class LazyT> void Symbol::resolveLazy(const LazyT &other) { |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 661 | if (!isUndefined()) |
| 662 | return; |
| 663 | |
| 664 | // An undefined weak will not fetch archive members. See comment on Lazy in |
| 665 | // Symbols.h for the details. |
| 666 | if (isWeak()) { |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 667 | uint8_t ty = type; |
| 668 | replace(other); |
| 669 | type = ty; |
| 670 | binding = STB_WEAK; |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 671 | return; |
| 672 | } |
| 673 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 674 | other.fetch(); |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 675 | } |
| 676 | |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 677 | void Symbol::resolveShared(const SharedSymbol &other) { |
Fangrui Song | 69d10d2 | 2019-12-07 05:18:31 | [diff] [blame] | 678 | if (isCommon()) { |
| 679 | // See the comment in resolveCommon() above. |
| 680 | if (other.size > cast<CommonSymbol>(this)->size) |
| 681 | cast<CommonSymbol>(this)->size = other.size; |
| 682 | return; |
| 683 | } |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 684 | if (visibility == STV_DEFAULT && (isUndefined() || isLazy())) { |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 685 | // An undefined symbol with non default visibility must be satisfied |
| 686 | // in the same DSO. |
Rui Ueyama | 3837f42 | 2019-07-10 05:00:37 | [diff] [blame] | 687 | uint8_t bind = binding; |
| 688 | replace(other); |
| 689 | binding = bind; |
Fangrui Song | e49c417 | 2019-08-06 14:03:45 | [diff] [blame] | 690 | referenced = true; |
Rui Ueyama | 7f7d2b2 | 2019-05-23 09:58:08 | [diff] [blame] | 691 | } |
| 692 | } |
Fangrui Song | bd8cfe6 | 2019-10-07 08:31:18 | [diff] [blame] | 693 | |
| 694 | } // namespace elf |
| 695 | } // namespace lld |