1 //===- lib/MC/ELFObjectWriter.cpp - ELF File Writer -----------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file implements ELF object file writer information. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "llvm/MC/MCELFObjectWriter.h" 15 #include "llvm/ADT/STLExtras.h" 16 #include "llvm/ADT/SmallPtrSet.h" 17 #include "llvm/ADT/SmallString.h" 18 #include "llvm/ADT/StringMap.h" 19 #include "llvm/MC/MCAsmBackend.h" 20 #include "llvm/MC/MCAsmInfo.h" 21 #include "llvm/MC/MCAsmLayout.h" 22 #include "llvm/MC/MCAssembler.h" 23 #include "llvm/MC/MCContext.h" 24 #include "llvm/MC/MCELF.h" 25 #include "llvm/MC/MCELFSymbolFlags.h" 26 #include "llvm/MC/MCExpr.h" 27 #include "llvm/MC/MCFixupKindInfo.h" 28 #include "llvm/MC/MCObjectWriter.h" 29 #include "llvm/MC/MCSectionELF.h" 30 #include "llvm/MC/MCValue.h" 31 #include "llvm/MC/StringTableBuilder.h" 32 #include "llvm/Support/Compression.h" 33 #include "llvm/Support/Debug.h" 34 #include "llvm/Support/ELF.h" 35 #include "llvm/Support/Endian.h" 36 #include "llvm/Support/ErrorHandling.h" 37 #include <vector> 38 using namespace llvm; 39 40 #undef DEBUG_TYPE 41 #define DEBUG_TYPE "reloc-info" 42 43 namespace { 44 45 typedef DenseMap<const MCSectionELF *, uint32_t> SectionIndexMapTy; 46 47 class ELFObjectWriter; 48 49 class SymbolTableWriter { 50 ELFObjectWriter &EWriter; 51 bool Is64Bit; 52 53 // indexes we are going to write to .symtab_shndx. 54 std::vector<uint32_t> ShndxIndexes; 55 56 // The numbel of symbols written so far. 57 unsigned NumWritten; 58 59 void createSymtabShndx(); 60 61 template <typename T> void write(T Value); 62 63 public: 64 SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit); 65 66 void writeSymbol(uint32_t name, uint8_t info, uint64_t value, uint64_t size, 67 uint8_t other, uint32_t shndx, bool Reserved); 68 69 ArrayRef<uint32_t> getShndxIndexes() const { return ShndxIndexes; } 70 }; 71 72 class ELFObjectWriter : public MCObjectWriter { 73 static bool isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind); 74 static bool RelocNeedsGOT(MCSymbolRefExpr::VariantKind Variant); 75 static uint64_t SymbolValue(MCSymbolData &Data, const MCAsmLayout &Layout); 76 static bool isInSymtab(const MCAsmLayout &Layout, const MCSymbolData &Data, 77 bool Used, bool Renamed); 78 static bool isLocal(const MCSymbolData &Data, bool isUsedInReloc); 79 80 /// Helper struct for containing some precomputed information on symbols. 81 struct ELFSymbolData { 82 MCSymbolData *SymbolData; 83 uint64_t StringIndex; 84 uint32_t SectionIndex; 85 StringRef Name; 86 87 // Support lexicographic sorting. 88 bool operator<(const ELFSymbolData &RHS) const { 89 unsigned LHSType = MCELF::GetType(*SymbolData); 90 unsigned RHSType = MCELF::GetType(*RHS.SymbolData); 91 if (LHSType == ELF::STT_SECTION && RHSType != ELF::STT_SECTION) 92 return false; 93 if (LHSType != ELF::STT_SECTION && RHSType == ELF::STT_SECTION) 94 return true; 95 if (LHSType == ELF::STT_SECTION && RHSType == ELF::STT_SECTION) 96 return SectionIndex < RHS.SectionIndex; 97 return Name < RHS.Name; 98 } 99 }; 100 101 /// The target specific ELF writer instance. 102 std::unique_ptr<MCELFObjectTargetWriter> TargetObjectWriter; 103 104 SmallPtrSet<const MCSymbol *, 16> UsedInReloc; 105 SmallPtrSet<const MCSymbol *, 16> WeakrefUsedInReloc; 106 DenseMap<const MCSymbol *, const MCSymbol *> Renames; 107 108 llvm::DenseMap<const MCSectionELF *, std::vector<ELFRelocationEntry>> 109 Relocations; 110 StringTableBuilder ShStrTabBuilder; 111 112 /// @} 113 /// @name Symbol Table Data 114 /// @{ 115 116 StringTableBuilder StrTabBuilder; 117 std::vector<uint64_t> FileSymbolData; 118 std::vector<ELFSymbolData> LocalSymbolData; 119 std::vector<ELFSymbolData> ExternalSymbolData; 120 std::vector<ELFSymbolData> UndefinedSymbolData; 121 122 /// @} 123 124 bool NeedsGOT; 125 126 // This holds the symbol table index of the last local symbol. 127 unsigned LastLocalSymbolIndex; 128 // This holds the .strtab section index. 129 unsigned StringTableIndex; 130 // This holds the .symtab section index. 131 unsigned SymbolTableIndex; 132 133 unsigned ShstrtabIndex; 134 135 // Sections in the order they are to be output in the section table. 136 std::vector<const MCSectionELF *> SectionTable; 137 unsigned addToSectionTable(const MCSectionELF *Sec); 138 139 // TargetObjectWriter wrappers. 140 bool is64Bit() const { return TargetObjectWriter->is64Bit(); } 141 bool hasRelocationAddend() const { 142 return TargetObjectWriter->hasRelocationAddend(); 143 } 144 unsigned GetRelocType(const MCValue &Target, const MCFixup &Fixup, 145 bool IsPCRel) const { 146 return TargetObjectWriter->GetRelocType(Target, Fixup, IsPCRel); 147 } 148 149 public: 150 ELFObjectWriter(MCELFObjectTargetWriter *MOTW, raw_pwrite_stream &OS, 151 bool IsLittleEndian) 152 : MCObjectWriter(OS, IsLittleEndian), TargetObjectWriter(MOTW), 153 NeedsGOT(false) {} 154 155 void reset() override { 156 UsedInReloc.clear(); 157 WeakrefUsedInReloc.clear(); 158 Renames.clear(); 159 Relocations.clear(); 160 ShStrTabBuilder.clear(); 161 StrTabBuilder.clear(); 162 FileSymbolData.clear(); 163 LocalSymbolData.clear(); 164 ExternalSymbolData.clear(); 165 UndefinedSymbolData.clear(); 166 NeedsGOT = false; 167 SectionTable.clear(); 168 MCObjectWriter::reset(); 169 } 170 171 ~ELFObjectWriter() override; 172 173 void WriteWord(uint64_t W) { 174 if (is64Bit()) 175 Write64(W); 176 else 177 Write32(W); 178 } 179 180 template <typename T> void write(T Val) { 181 if (IsLittleEndian) 182 support::endian::Writer<support::little>(OS).write(Val); 183 else 184 support::endian::Writer<support::big>(OS).write(Val); 185 } 186 187 void writeHeader(const MCAssembler &Asm); 188 189 void WriteSymbol(SymbolTableWriter &Writer, ELFSymbolData &MSD, 190 const MCAsmLayout &Layout); 191 192 // Start and end offset of each section 193 typedef std::map<const MCSectionELF *, std::pair<uint64_t, uint64_t>> 194 SectionOffsetsTy; 195 196 void WriteSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout, 197 SectionOffsetsTy &SectionOffsets); 198 199 bool shouldRelocateWithSymbol(const MCAssembler &Asm, 200 const MCSymbolRefExpr *RefA, 201 const MCSymbolData *SD, uint64_t C, 202 unsigned Type) const; 203 204 void RecordRelocation(MCAssembler &Asm, const MCAsmLayout &Layout, 205 const MCFragment *Fragment, const MCFixup &Fixup, 206 MCValue Target, bool &IsPCRel, 207 uint64_t &FixedValue) override; 208 209 uint64_t getSymbolIndexInSymbolTable(const MCAssembler &Asm, 210 const MCSymbol *S); 211 212 // Map from a signature symbol to the group section index 213 typedef DenseMap<const MCSymbol *, unsigned> RevGroupMapTy; 214 215 /// Compute the symbol table data 216 /// 217 /// \param Asm - The assembler. 218 /// \param SectionIndexMap - Maps a section to its index. 219 /// \param RevGroupMap - Maps a signature symbol to the group section. 220 void computeSymbolTable(MCAssembler &Asm, const MCAsmLayout &Layout, 221 const SectionIndexMapTy &SectionIndexMap, 222 const RevGroupMapTy &RevGroupMap); 223 224 const MCSectionELF *createRelocationSection(MCAssembler &Asm, 225 const MCSectionELF &Sec); 226 227 const MCSectionELF *createSectionHeaderStringTable(); 228 const MCSectionELF *createStringTable(MCContext &Ctx); 229 230 void ExecutePostLayoutBinding(MCAssembler &Asm, 231 const MCAsmLayout &Layout) override; 232 233 void writeSectionHeader(MCAssembler &Asm, const MCAsmLayout &Layout, 234 const SectionIndexMapTy &SectionIndexMap, 235 const SectionOffsetsTy &SectionOffsets); 236 237 void writeSectionData(const MCAssembler &Asm, const MCSectionData &SD, 238 const MCAsmLayout &Layout); 239 240 void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags, 241 uint64_t Address, uint64_t Offset, uint64_t Size, 242 uint32_t Link, uint32_t Info, uint64_t Alignment, 243 uint64_t EntrySize); 244 245 void writeRelocations(const MCAssembler &Asm, const MCSectionELF &Sec); 246 247 bool IsSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm, 248 const MCSymbol &SymA, 249 const MCFragment &FB, 250 bool InSet, 251 bool IsPCRel) const override; 252 253 bool isWeak(const MCSymbolData &SD) const override; 254 255 void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout) override; 256 void writeSection(MCAssembler &Asm, 257 const SectionIndexMapTy &SectionIndexMap, 258 uint32_t GroupSymbolIndex, 259 uint64_t Offset, uint64_t Size, uint64_t Alignment, 260 const MCSectionELF &Section); 261 }; 262 } 263 264 unsigned ELFObjectWriter::addToSectionTable(const MCSectionELF *Sec) { 265 SectionTable.push_back(Sec); 266 ShStrTabBuilder.add(Sec->getSectionName()); 267 return SectionTable.size(); 268 } 269 270 void SymbolTableWriter::createSymtabShndx() { 271 if (!ShndxIndexes.empty()) 272 return; 273 274 ShndxIndexes.resize(NumWritten); 275 } 276 277 template <typename T> void SymbolTableWriter::write(T Value) { 278 EWriter.write(Value); 279 } 280 281 SymbolTableWriter::SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit) 282 : EWriter(EWriter), Is64Bit(Is64Bit), NumWritten(0) {} 283 284 void SymbolTableWriter::writeSymbol(uint32_t name, uint8_t info, uint64_t value, 285 uint64_t size, uint8_t other, 286 uint32_t shndx, bool Reserved) { 287 bool LargeIndex = shndx >= ELF::SHN_LORESERVE && !Reserved; 288 289 if (LargeIndex) 290 createSymtabShndx(); 291 292 if (!ShndxIndexes.empty()) { 293 if (LargeIndex) 294 ShndxIndexes.push_back(shndx); 295 else 296 ShndxIndexes.push_back(0); 297 } 298 299 uint16_t Index = LargeIndex ? uint16_t(ELF::SHN_XINDEX) : shndx; 300 301 if (Is64Bit) { 302 write(name); // st_name 303 write(info); // st_info 304 write(other); // st_other 305 write(Index); // st_shndx 306 write(value); // st_value 307 write(size); // st_size 308 } else { 309 write(name); // st_name 310 write(uint32_t(value)); // st_value 311 write(uint32_t(size)); // st_size 312 write(info); // st_info 313 write(other); // st_other 314 write(Index); // st_shndx 315 } 316 317 ++NumWritten; 318 } 319 320 bool ELFObjectWriter::isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind) { 321 const MCFixupKindInfo &FKI = 322 Asm.getBackend().getFixupKindInfo((MCFixupKind) Kind); 323 324 return FKI.Flags & MCFixupKindInfo::FKF_IsPCRel; 325 } 326 327 bool ELFObjectWriter::RelocNeedsGOT(MCSymbolRefExpr::VariantKind Variant) { 328 switch (Variant) { 329 default: 330 return false; 331 case MCSymbolRefExpr::VK_GOT: 332 case MCSymbolRefExpr::VK_PLT: 333 case MCSymbolRefExpr::VK_GOTPCREL: 334 case MCSymbolRefExpr::VK_GOTOFF: 335 case MCSymbolRefExpr::VK_TPOFF: 336 case MCSymbolRefExpr::VK_TLSGD: 337 case MCSymbolRefExpr::VK_GOTTPOFF: 338 case MCSymbolRefExpr::VK_INDNTPOFF: 339 case MCSymbolRefExpr::VK_NTPOFF: 340 case MCSymbolRefExpr::VK_GOTNTPOFF: 341 case MCSymbolRefExpr::VK_TLSLDM: 342 case MCSymbolRefExpr::VK_DTPOFF: 343 case MCSymbolRefExpr::VK_TLSLD: 344 return true; 345 } 346 } 347 348 ELFObjectWriter::~ELFObjectWriter() 349 {} 350 351 // Emit the ELF header. 352 void ELFObjectWriter::writeHeader(const MCAssembler &Asm) { 353 // ELF Header 354 // ---------- 355 // 356 // Note 357 // ---- 358 // emitWord method behaves differently for ELF32 and ELF64, writing 359 // 4 bytes in the former and 8 in the latter. 360 361 WriteBytes(ELF::ElfMagic); // e_ident[EI_MAG0] to e_ident[EI_MAG3] 362 363 Write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS] 364 365 // e_ident[EI_DATA] 366 Write8(isLittleEndian() ? ELF::ELFDATA2LSB : ELF::ELFDATA2MSB); 367 368 Write8(ELF::EV_CURRENT); // e_ident[EI_VERSION] 369 // e_ident[EI_OSABI] 370 Write8(TargetObjectWriter->getOSABI()); 371 Write8(0); // e_ident[EI_ABIVERSION] 372 373 WriteZeros(ELF::EI_NIDENT - ELF::EI_PAD); 374 375 Write16(ELF::ET_REL); // e_type 376 377 Write16(TargetObjectWriter->getEMachine()); // e_machine = target 378 379 Write32(ELF::EV_CURRENT); // e_version 380 WriteWord(0); // e_entry, no entry point in .o file 381 WriteWord(0); // e_phoff, no program header for .o 382 WriteWord(0); // e_shoff = sec hdr table off in bytes 383 384 // e_flags = whatever the target wants 385 Write32(Asm.getELFHeaderEFlags()); 386 387 // e_ehsize = ELF header size 388 Write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr)); 389 390 Write16(0); // e_phentsize = prog header entry size 391 Write16(0); // e_phnum = # prog header entries = 0 392 393 // e_shentsize = Section header entry size 394 Write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr)); 395 396 // e_shnum = # of section header ents 397 Write16(0); 398 399 // e_shstrndx = Section # of '.shstrtab' 400 assert(ShstrtabIndex < ELF::SHN_LORESERVE); 401 Write16(ShstrtabIndex); 402 } 403 404 uint64_t ELFObjectWriter::SymbolValue(MCSymbolData &Data, 405 const MCAsmLayout &Layout) { 406 if (Data.isCommon() && Data.isExternal()) 407 return Data.getCommonAlignment(); 408 409 uint64_t Res; 410 if (!Layout.getSymbolOffset(&Data, Res)) 411 return 0; 412 413 if (Layout.getAssembler().isThumbFunc(&Data.getSymbol())) 414 Res |= 1; 415 416 return Res; 417 } 418 419 void ELFObjectWriter::ExecutePostLayoutBinding(MCAssembler &Asm, 420 const MCAsmLayout &Layout) { 421 // The presence of symbol versions causes undefined symbols and 422 // versions declared with @@@ to be renamed. 423 424 for (const MCSymbol &Alias : Asm.symbols()) { 425 MCSymbolData &OriginalData = Alias.getData(); 426 427 // Not an alias. 428 if (!Alias.isVariable()) 429 continue; 430 auto *Ref = dyn_cast<MCSymbolRefExpr>(Alias.getVariableValue()); 431 if (!Ref) 432 continue; 433 const MCSymbol &Symbol = Ref->getSymbol(); 434 MCSymbolData &SD = Asm.getSymbolData(Symbol); 435 436 StringRef AliasName = Alias.getName(); 437 size_t Pos = AliasName.find('@'); 438 if (Pos == StringRef::npos) 439 continue; 440 441 // Aliases defined with .symvar copy the binding from the symbol they alias. 442 // This is the first place we are able to copy this information. 443 OriginalData.setExternal(SD.isExternal()); 444 MCELF::SetBinding(OriginalData, MCELF::GetBinding(SD)); 445 446 StringRef Rest = AliasName.substr(Pos); 447 if (!Symbol.isUndefined() && !Rest.startswith("@@@")) 448 continue; 449 450 // FIXME: produce a better error message. 451 if (Symbol.isUndefined() && Rest.startswith("@@") && 452 !Rest.startswith("@@@")) 453 report_fatal_error("A @@ version cannot be undefined"); 454 455 Renames.insert(std::make_pair(&Symbol, &Alias)); 456 } 457 } 458 459 static uint8_t mergeTypeForSet(uint8_t origType, uint8_t newType) { 460 uint8_t Type = newType; 461 462 // Propagation rules: 463 // IFUNC > FUNC > OBJECT > NOTYPE 464 // TLS_OBJECT > OBJECT > NOTYPE 465 // 466 // dont let the new type degrade the old type 467 switch (origType) { 468 default: 469 break; 470 case ELF::STT_GNU_IFUNC: 471 if (Type == ELF::STT_FUNC || Type == ELF::STT_OBJECT || 472 Type == ELF::STT_NOTYPE || Type == ELF::STT_TLS) 473 Type = ELF::STT_GNU_IFUNC; 474 break; 475 case ELF::STT_FUNC: 476 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE || 477 Type == ELF::STT_TLS) 478 Type = ELF::STT_FUNC; 479 break; 480 case ELF::STT_OBJECT: 481 if (Type == ELF::STT_NOTYPE) 482 Type = ELF::STT_OBJECT; 483 break; 484 case ELF::STT_TLS: 485 if (Type == ELF::STT_OBJECT || Type == ELF::STT_NOTYPE || 486 Type == ELF::STT_GNU_IFUNC || Type == ELF::STT_FUNC) 487 Type = ELF::STT_TLS; 488 break; 489 } 490 491 return Type; 492 } 493 494 void ELFObjectWriter::WriteSymbol(SymbolTableWriter &Writer, ELFSymbolData &MSD, 495 const MCAsmLayout &Layout) { 496 MCSymbolData &OrigData = *MSD.SymbolData; 497 assert((!OrigData.getFragment() || 498 (&OrigData.getFragment()->getParent()->getSection() == 499 &OrigData.getSymbol().getSection())) && 500 "The symbol's section doesn't match the fragment's symbol"); 501 const MCSymbol *Base = Layout.getBaseSymbol(OrigData.getSymbol()); 502 503 // This has to be in sync with when computeSymbolTable uses SHN_ABS or 504 // SHN_COMMON. 505 bool IsReserved = !Base || OrigData.isCommon(); 506 507 // Binding and Type share the same byte as upper and lower nibbles 508 uint8_t Binding = MCELF::GetBinding(OrigData); 509 uint8_t Type = MCELF::GetType(OrigData); 510 MCSymbolData *BaseSD = nullptr; 511 if (Base) { 512 BaseSD = &Layout.getAssembler().getSymbolData(*Base); 513 Type = mergeTypeForSet(Type, MCELF::GetType(*BaseSD)); 514 } 515 uint8_t Info = (Binding << ELF_STB_Shift) | (Type << ELF_STT_Shift); 516 517 // Other and Visibility share the same byte with Visibility using the lower 518 // 2 bits 519 uint8_t Visibility = MCELF::GetVisibility(OrigData); 520 uint8_t Other = MCELF::getOther(OrigData) << (ELF_STO_Shift - ELF_STV_Shift); 521 Other |= Visibility; 522 523 uint64_t Value = SymbolValue(OrigData, Layout); 524 uint64_t Size = 0; 525 526 const MCExpr *ESize = OrigData.getSize(); 527 if (!ESize && Base) 528 ESize = BaseSD->getSize(); 529 530 if (ESize) { 531 int64_t Res; 532 if (!ESize->evaluateKnownAbsolute(Res, Layout)) 533 report_fatal_error("Size expression must be absolute."); 534 Size = Res; 535 } 536 537 // Write out the symbol table entry 538 Writer.writeSymbol(MSD.StringIndex, Info, Value, Size, Other, 539 MSD.SectionIndex, IsReserved); 540 } 541 542 void ELFObjectWriter::WriteSymbolTable(MCAssembler &Asm, 543 const MCAsmLayout &Layout, 544 SectionOffsetsTy &SectionOffsets) { 545 546 MCContext &Ctx = Asm.getContext(); 547 548 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32; 549 550 // Symbol table 551 const MCSectionELF *SymtabSection = 552 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0, EntrySize, ""); 553 MCSectionData &SymtabSD = Asm.getOrCreateSectionData(*SymtabSection); 554 SymtabSD.setAlignment(is64Bit() ? 8 : 4); 555 SymbolTableIndex = addToSectionTable(SymtabSection); 556 557 // The string table must be emitted first because we need the index 558 // into the string table for all the symbol names. 559 560 SymbolTableWriter Writer(*this, is64Bit()); 561 562 uint64_t Padding = OffsetToAlignment(OS.tell(), SymtabSD.getAlignment()); 563 WriteZeros(Padding); 564 565 uint64_t SecStart = OS.tell(); 566 567 // The first entry is the undefined symbol entry. 568 Writer.writeSymbol(0, 0, 0, 0, 0, 0, false); 569 570 for (unsigned i = 0, e = FileSymbolData.size(); i != e; ++i) { 571 Writer.writeSymbol(FileSymbolData[i], ELF::STT_FILE | ELF::STB_LOCAL, 0, 0, 572 ELF::STV_DEFAULT, ELF::SHN_ABS, true); 573 } 574 575 // Write the symbol table entries. 576 LastLocalSymbolIndex = FileSymbolData.size() + LocalSymbolData.size() + 1; 577 578 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i) { 579 ELFSymbolData &MSD = LocalSymbolData[i]; 580 WriteSymbol(Writer, MSD, Layout); 581 } 582 583 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i) { 584 ELFSymbolData &MSD = ExternalSymbolData[i]; 585 MCSymbolData &Data = *MSD.SymbolData; 586 assert(((Data.getFlags() & ELF_STB_Global) || 587 (Data.getFlags() & ELF_STB_Weak)) && 588 "External symbol requires STB_GLOBAL or STB_WEAK flag"); 589 WriteSymbol(Writer, MSD, Layout); 590 if (MCELF::GetBinding(Data) == ELF::STB_LOCAL) 591 LastLocalSymbolIndex++; 592 } 593 594 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i) { 595 ELFSymbolData &MSD = UndefinedSymbolData[i]; 596 MCSymbolData &Data = *MSD.SymbolData; 597 WriteSymbol(Writer, MSD, Layout); 598 if (MCELF::GetBinding(Data) == ELF::STB_LOCAL) 599 LastLocalSymbolIndex++; 600 } 601 602 uint64_t SecEnd = OS.tell(); 603 SectionOffsets[SymtabSection] = std::make_pair(SecStart, SecEnd); 604 605 ArrayRef<uint32_t> ShndxIndexes = Writer.getShndxIndexes(); 606 if (ShndxIndexes.empty()) 607 return; 608 609 SecStart = OS.tell(); 610 const MCSectionELF *SymtabShndxSection = 611 Ctx.getELFSection(".symtab_shndxr", ELF::SHT_SYMTAB_SHNDX, 0, 4, ""); 612 addToSectionTable(SymtabShndxSection); 613 MCSectionData *SymtabShndxSD = 614 &Asm.getOrCreateSectionData(*SymtabShndxSection); 615 SymtabShndxSD->setAlignment(4); 616 for (uint32_t Index : ShndxIndexes) 617 write(Index); 618 SecEnd = OS.tell(); 619 SectionOffsets[SymtabShndxSection] = std::make_pair(SecStart, SecEnd); 620 } 621 622 // It is always valid to create a relocation with a symbol. It is preferable 623 // to use a relocation with a section if that is possible. Using the section 624 // allows us to omit some local symbols from the symbol table. 625 bool ELFObjectWriter::shouldRelocateWithSymbol(const MCAssembler &Asm, 626 const MCSymbolRefExpr *RefA, 627 const MCSymbolData *SD, 628 uint64_t C, 629 unsigned Type) const { 630 // A PCRel relocation to an absolute value has no symbol (or section). We 631 // represent that with a relocation to a null section. 632 if (!RefA) 633 return false; 634 635 MCSymbolRefExpr::VariantKind Kind = RefA->getKind(); 636 switch (Kind) { 637 default: 638 break; 639 // The .odp creation emits a relocation against the symbol ".TOC." which 640 // create a R_PPC64_TOC relocation. However the relocation symbol name 641 // in final object creation should be NULL, since the symbol does not 642 // really exist, it is just the reference to TOC base for the current 643 // object file. Since the symbol is undefined, returning false results 644 // in a relocation with a null section which is the desired result. 645 case MCSymbolRefExpr::VK_PPC_TOCBASE: 646 return false; 647 648 // These VariantKind cause the relocation to refer to something other than 649 // the symbol itself, like a linker generated table. Since the address of 650 // symbol is not relevant, we cannot replace the symbol with the 651 // section and patch the difference in the addend. 652 case MCSymbolRefExpr::VK_GOT: 653 case MCSymbolRefExpr::VK_PLT: 654 case MCSymbolRefExpr::VK_GOTPCREL: 655 case MCSymbolRefExpr::VK_Mips_GOT: 656 case MCSymbolRefExpr::VK_PPC_GOT_LO: 657 case MCSymbolRefExpr::VK_PPC_GOT_HI: 658 case MCSymbolRefExpr::VK_PPC_GOT_HA: 659 return true; 660 } 661 662 // An undefined symbol is not in any section, so the relocation has to point 663 // to the symbol itself. 664 const MCSymbol &Sym = SD->getSymbol(); 665 if (Sym.isUndefined()) 666 return true; 667 668 unsigned Binding = MCELF::GetBinding(*SD); 669 switch(Binding) { 670 default: 671 llvm_unreachable("Invalid Binding"); 672 case ELF::STB_LOCAL: 673 break; 674 case ELF::STB_WEAK: 675 // If the symbol is weak, it might be overridden by a symbol in another 676 // file. The relocation has to point to the symbol so that the linker 677 // can update it. 678 return true; 679 case ELF::STB_GLOBAL: 680 // Global ELF symbols can be preempted by the dynamic linker. The relocation 681 // has to point to the symbol for a reason analogous to the STB_WEAK case. 682 return true; 683 } 684 685 // If a relocation points to a mergeable section, we have to be careful. 686 // If the offset is zero, a relocation with the section will encode the 687 // same information. With a non-zero offset, the situation is different. 688 // For example, a relocation can point 42 bytes past the end of a string. 689 // If we change such a relocation to use the section, the linker would think 690 // that it pointed to another string and subtracting 42 at runtime will 691 // produce the wrong value. 692 auto &Sec = cast<MCSectionELF>(Sym.getSection()); 693 unsigned Flags = Sec.getFlags(); 694 if (Flags & ELF::SHF_MERGE) { 695 if (C != 0) 696 return true; 697 698 // It looks like gold has a bug (http://sourceware.org/PR16794) and can 699 // only handle section relocations to mergeable sections if using RELA. 700 if (!hasRelocationAddend()) 701 return true; 702 } 703 704 // Most TLS relocations use a got, so they need the symbol. Even those that 705 // are just an offset (@tpoff), require a symbol in gold versions before 706 // 5efeedf61e4fe720fd3e9a08e6c91c10abb66d42 (2014-09-26) which fixed 707 // http://sourceware.org/PR16773. 708 if (Flags & ELF::SHF_TLS) 709 return true; 710 711 // If the symbol is a thumb function the final relocation must set the lowest 712 // bit. With a symbol that is done by just having the symbol have that bit 713 // set, so we would lose the bit if we relocated with the section. 714 // FIXME: We could use the section but add the bit to the relocation value. 715 if (Asm.isThumbFunc(&Sym)) 716 return true; 717 718 if (TargetObjectWriter->needsRelocateWithSymbol(*SD, Type)) 719 return true; 720 return false; 721 } 722 723 static const MCSymbol *getWeakRef(const MCSymbolRefExpr &Ref) { 724 const MCSymbol &Sym = Ref.getSymbol(); 725 726 if (Ref.getKind() == MCSymbolRefExpr::VK_WEAKREF) 727 return &Sym; 728 729 if (!Sym.isVariable()) 730 return nullptr; 731 732 const MCExpr *Expr = Sym.getVariableValue(); 733 const auto *Inner = dyn_cast<MCSymbolRefExpr>(Expr); 734 if (!Inner) 735 return nullptr; 736 737 if (Inner->getKind() == MCSymbolRefExpr::VK_WEAKREF) 738 return &Inner->getSymbol(); 739 return nullptr; 740 } 741 742 // True if the assembler knows nothing about the final value of the symbol. 743 // This doesn't cover the comdat issues, since in those cases the assembler 744 // can at least know that all symbols in the section will move together. 745 static bool isWeak(const MCSymbolData &D) { 746 if (MCELF::GetType(D) == ELF::STT_GNU_IFUNC) 747 return true; 748 749 switch (MCELF::GetBinding(D)) { 750 default: 751 llvm_unreachable("Unknown binding"); 752 case ELF::STB_LOCAL: 753 return false; 754 case ELF::STB_GLOBAL: 755 return false; 756 case ELF::STB_WEAK: 757 case ELF::STB_GNU_UNIQUE: 758 return true; 759 } 760 } 761 762 void ELFObjectWriter::RecordRelocation(MCAssembler &Asm, 763 const MCAsmLayout &Layout, 764 const MCFragment *Fragment, 765 const MCFixup &Fixup, MCValue Target, 766 bool &IsPCRel, uint64_t &FixedValue) { 767 const MCSectionData *FixupSectionD = Fragment->getParent(); 768 const MCSectionELF &FixupSection = 769 cast<MCSectionELF>(FixupSectionD->getSection()); 770 uint64_t C = Target.getConstant(); 771 uint64_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset(); 772 773 if (const MCSymbolRefExpr *RefB = Target.getSymB()) { 774 assert(RefB->getKind() == MCSymbolRefExpr::VK_None && 775 "Should not have constructed this"); 776 777 // Let A, B and C being the components of Target and R be the location of 778 // the fixup. If the fixup is not pcrel, we want to compute (A - B + C). 779 // If it is pcrel, we want to compute (A - B + C - R). 780 781 // In general, ELF has no relocations for -B. It can only represent (A + C) 782 // or (A + C - R). If B = R + K and the relocation is not pcrel, we can 783 // replace B to implement it: (A - R - K + C) 784 if (IsPCRel) 785 Asm.getContext().reportFatalError( 786 Fixup.getLoc(), 787 "No relocation available to represent this relative expression"); 788 789 const MCSymbol &SymB = RefB->getSymbol(); 790 791 if (SymB.isUndefined()) 792 Asm.getContext().reportFatalError( 793 Fixup.getLoc(), 794 Twine("symbol '") + SymB.getName() + 795 "' can not be undefined in a subtraction expression"); 796 797 assert(!SymB.isAbsolute() && "Should have been folded"); 798 const MCSection &SecB = SymB.getSection(); 799 if (&SecB != &FixupSection) 800 Asm.getContext().reportFatalError( 801 Fixup.getLoc(), "Cannot represent a difference across sections"); 802 803 const MCSymbolData &SymBD = Asm.getSymbolData(SymB); 804 if (::isWeak(SymBD)) 805 Asm.getContext().reportFatalError( 806 Fixup.getLoc(), "Cannot represent a subtraction with a weak symbol"); 807 808 uint64_t SymBOffset = Layout.getSymbolOffset(&SymBD); 809 uint64_t K = SymBOffset - FixupOffset; 810 IsPCRel = true; 811 C -= K; 812 } 813 814 // We either rejected the fixup or folded B into C at this point. 815 const MCSymbolRefExpr *RefA = Target.getSymA(); 816 const MCSymbol *SymA = RefA ? &RefA->getSymbol() : nullptr; 817 const MCSymbolData *SymAD = SymA ? &Asm.getSymbolData(*SymA) : nullptr; 818 819 unsigned Type = GetRelocType(Target, Fixup, IsPCRel); 820 bool RelocateWithSymbol = shouldRelocateWithSymbol(Asm, RefA, SymAD, C, Type); 821 if (!RelocateWithSymbol && SymA && !SymA->isUndefined()) 822 C += Layout.getSymbolOffset(SymAD); 823 824 uint64_t Addend = 0; 825 if (hasRelocationAddend()) { 826 Addend = C; 827 C = 0; 828 } 829 830 FixedValue = C; 831 832 // FIXME: What is this!?!? 833 MCSymbolRefExpr::VariantKind Modifier = 834 RefA ? RefA->getKind() : MCSymbolRefExpr::VK_None; 835 if (RelocNeedsGOT(Modifier)) 836 NeedsGOT = true; 837 838 if (!RelocateWithSymbol) { 839 const MCSection *SecA = 840 (SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr; 841 auto *ELFSec = cast_or_null<MCSectionELF>(SecA); 842 MCSymbol *SectionSymbol = 843 ELFSec ? Asm.getContext().getOrCreateSectionSymbol(*ELFSec) 844 : nullptr; 845 ELFRelocationEntry Rec(FixupOffset, SectionSymbol, Type, Addend); 846 Relocations[&FixupSection].push_back(Rec); 847 return; 848 } 849 850 if (SymA) { 851 if (const MCSymbol *R = Renames.lookup(SymA)) 852 SymA = R; 853 854 if (const MCSymbol *WeakRef = getWeakRef(*RefA)) 855 WeakrefUsedInReloc.insert(WeakRef); 856 else 857 UsedInReloc.insert(SymA); 858 } 859 ELFRelocationEntry Rec(FixupOffset, SymA, Type, Addend); 860 Relocations[&FixupSection].push_back(Rec); 861 return; 862 } 863 864 865 uint64_t 866 ELFObjectWriter::getSymbolIndexInSymbolTable(const MCAssembler &Asm, 867 const MCSymbol *S) { 868 const MCSymbolData &SD = Asm.getSymbolData(*S); 869 return SD.getIndex(); 870 } 871 872 bool ELFObjectWriter::isInSymtab(const MCAsmLayout &Layout, 873 const MCSymbolData &Data, bool Used, 874 bool Renamed) { 875 const MCSymbol &Symbol = Data.getSymbol(); 876 if (Symbol.isVariable()) { 877 const MCExpr *Expr = Symbol.getVariableValue(); 878 if (const MCSymbolRefExpr *Ref = dyn_cast<MCSymbolRefExpr>(Expr)) { 879 if (Ref->getKind() == MCSymbolRefExpr::VK_WEAKREF) 880 return false; 881 } 882 } 883 884 if (Used) 885 return true; 886 887 if (Renamed) 888 return false; 889 890 if (Symbol.getName() == "_GLOBAL_OFFSET_TABLE_") 891 return true; 892 893 if (Symbol.isVariable()) { 894 const MCSymbol *Base = Layout.getBaseSymbol(Symbol); 895 if (Base && Base->isUndefined()) 896 return false; 897 } 898 899 bool IsGlobal = MCELF::GetBinding(Data) == ELF::STB_GLOBAL; 900 if (!Symbol.isVariable() && Symbol.isUndefined() && !IsGlobal) 901 return false; 902 903 if (Symbol.isTemporary()) 904 return false; 905 906 return true; 907 } 908 909 bool ELFObjectWriter::isLocal(const MCSymbolData &Data, bool isUsedInReloc) { 910 if (Data.isExternal()) 911 return false; 912 913 const MCSymbol &Symbol = Data.getSymbol(); 914 if (Symbol.isDefined()) 915 return true; 916 917 if (isUsedInReloc) 918 return false; 919 920 return true; 921 } 922 923 void ELFObjectWriter::computeSymbolTable( 924 MCAssembler &Asm, const MCAsmLayout &Layout, 925 const SectionIndexMapTy &SectionIndexMap, 926 const RevGroupMapTy &RevGroupMap) { 927 // FIXME: Is this the correct place to do this? 928 // FIXME: Why is an undefined reference to _GLOBAL_OFFSET_TABLE_ needed? 929 if (NeedsGOT) { 930 StringRef Name = "_GLOBAL_OFFSET_TABLE_"; 931 MCSymbol *Sym = Asm.getContext().getOrCreateSymbol(Name); 932 MCSymbolData &Data = Asm.getOrCreateSymbolData(*Sym); 933 Data.setExternal(true); 934 MCELF::SetBinding(Data, ELF::STB_GLOBAL); 935 } 936 937 // Add the data for the symbols. 938 for (const MCSymbol &Symbol : Asm.symbols()) { 939 MCSymbolData &SD = Symbol.getData(); 940 941 bool Used = UsedInReloc.count(&Symbol); 942 bool WeakrefUsed = WeakrefUsedInReloc.count(&Symbol); 943 bool isSignature = RevGroupMap.count(&Symbol); 944 945 if (!isInSymtab(Layout, SD, 946 Used || WeakrefUsed || isSignature, 947 Renames.count(&Symbol))) 948 continue; 949 950 ELFSymbolData MSD; 951 MSD.SymbolData = &SD; 952 const MCSymbol *BaseSymbol = Layout.getBaseSymbol(Symbol); 953 954 // Undefined symbols are global, but this is the first place we 955 // are able to set it. 956 bool Local = isLocal(SD, Used); 957 if (!Local && MCELF::GetBinding(SD) == ELF::STB_LOCAL) { 958 assert(BaseSymbol); 959 MCSymbolData &BaseData = Asm.getSymbolData(*BaseSymbol); 960 MCELF::SetBinding(SD, ELF::STB_GLOBAL); 961 MCELF::SetBinding(BaseData, ELF::STB_GLOBAL); 962 } 963 964 if (!BaseSymbol) { 965 MSD.SectionIndex = ELF::SHN_ABS; 966 } else if (SD.isCommon()) { 967 assert(!Local); 968 MSD.SectionIndex = ELF::SHN_COMMON; 969 } else if (BaseSymbol->isUndefined()) { 970 if (isSignature && !Used) 971 MSD.SectionIndex = RevGroupMap.lookup(&Symbol); 972 else 973 MSD.SectionIndex = ELF::SHN_UNDEF; 974 if (!Used && WeakrefUsed) 975 MCELF::SetBinding(SD, ELF::STB_WEAK); 976 } else { 977 const MCSectionELF &Section = 978 static_cast<const MCSectionELF&>(BaseSymbol->getSection()); 979 MSD.SectionIndex = SectionIndexMap.lookup(&Section); 980 assert(MSD.SectionIndex && "Invalid section index!"); 981 } 982 983 // The @@@ in symbol version is replaced with @ in undefined symbols and @@ 984 // in defined ones. 985 // 986 // FIXME: All name handling should be done before we get to the writer, 987 // including dealing with GNU-style version suffixes. Fixing this isn't 988 // trivial. 989 // 990 // We thus have to be careful to not perform the symbol version replacement 991 // blindly: 992 // 993 // The ELF format is used on Windows by the MCJIT engine. Thus, on 994 // Windows, the ELFObjectWriter can encounter symbols mangled using the MS 995 // Visual Studio C++ name mangling scheme. Symbols mangled using the MSVC 996 // C++ name mangling can legally have "@@@" as a sub-string. In that case, 997 // the EFLObjectWriter should not interpret the "@@@" sub-string as 998 // specifying GNU-style symbol versioning. The ELFObjectWriter therefore 999 // checks for the MSVC C++ name mangling prefix which is either "?", "@?", 1000 // "__imp_?" or "__imp_@?". 1001 // 1002 // It would have been interesting to perform the MS mangling prefix check 1003 // only when the target triple is of the form *-pc-windows-elf. But, it 1004 // seems that this information is not easily accessible from the 1005 // ELFObjectWriter. 1006 StringRef Name = Symbol.getName(); 1007 if (!Name.startswith("?") && !Name.startswith("@?") && 1008 !Name.startswith("__imp_?") && !Name.startswith("__imp_@?")) { 1009 // This symbol isn't following the MSVC C++ name mangling convention. We 1010 // can thus safely interpret the @@@ in symbol names as specifying symbol 1011 // versioning. 1012 SmallString<32> Buf; 1013 size_t Pos = Name.find("@@@"); 1014 if (Pos != StringRef::npos) { 1015 Buf += Name.substr(0, Pos); 1016 unsigned Skip = MSD.SectionIndex == ELF::SHN_UNDEF ? 2 : 1; 1017 Buf += Name.substr(Pos + Skip); 1018 Name = Buf; 1019 } 1020 } 1021 1022 // Sections have their own string table 1023 if (MCELF::GetType(SD) != ELF::STT_SECTION) 1024 MSD.Name = StrTabBuilder.add(Name); 1025 1026 if (MSD.SectionIndex == ELF::SHN_UNDEF) 1027 UndefinedSymbolData.push_back(MSD); 1028 else if (Local) 1029 LocalSymbolData.push_back(MSD); 1030 else 1031 ExternalSymbolData.push_back(MSD); 1032 } 1033 1034 for (auto i = Asm.file_names_begin(), e = Asm.file_names_end(); i != e; ++i) 1035 StrTabBuilder.add(*i); 1036 1037 StrTabBuilder.finalize(StringTableBuilder::ELF); 1038 1039 for (auto i = Asm.file_names_begin(), e = Asm.file_names_end(); i != e; ++i) 1040 FileSymbolData.push_back(StrTabBuilder.getOffset(*i)); 1041 1042 for (ELFSymbolData &MSD : LocalSymbolData) 1043 MSD.StringIndex = MCELF::GetType(*MSD.SymbolData) == ELF::STT_SECTION 1044 ? 0 1045 : StrTabBuilder.getOffset(MSD.Name); 1046 for (ELFSymbolData &MSD : ExternalSymbolData) 1047 MSD.StringIndex = StrTabBuilder.getOffset(MSD.Name); 1048 for (ELFSymbolData& MSD : UndefinedSymbolData) 1049 MSD.StringIndex = StrTabBuilder.getOffset(MSD.Name); 1050 1051 // Symbols are required to be in lexicographic order. 1052 array_pod_sort(LocalSymbolData.begin(), LocalSymbolData.end()); 1053 array_pod_sort(ExternalSymbolData.begin(), ExternalSymbolData.end()); 1054 array_pod_sort(UndefinedSymbolData.begin(), UndefinedSymbolData.end()); 1055 1056 // Set the symbol indices. Local symbols must come before all other 1057 // symbols with non-local bindings. 1058 unsigned Index = FileSymbolData.size() + 1; 1059 for (unsigned i = 0, e = LocalSymbolData.size(); i != e; ++i) 1060 LocalSymbolData[i].SymbolData->setIndex(Index++); 1061 1062 for (unsigned i = 0, e = ExternalSymbolData.size(); i != e; ++i) 1063 ExternalSymbolData[i].SymbolData->setIndex(Index++); 1064 for (unsigned i = 0, e = UndefinedSymbolData.size(); i != e; ++i) 1065 UndefinedSymbolData[i].SymbolData->setIndex(Index++); 1066 } 1067 1068 const MCSectionELF * 1069 ELFObjectWriter::createRelocationSection(MCAssembler &Asm, 1070 const MCSectionELF &Sec) { 1071 if (Relocations[&Sec].empty()) 1072 return nullptr; 1073 1074 MCContext &Ctx = Asm.getContext(); 1075 const StringRef SectionName = Sec.getSectionName(); 1076 std::string RelaSectionName = hasRelocationAddend() ? ".rela" : ".rel"; 1077 RelaSectionName += SectionName; 1078 1079 unsigned EntrySize; 1080 if (hasRelocationAddend()) 1081 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela); 1082 else 1083 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel); 1084 1085 unsigned Flags = 0; 1086 if (Sec.getFlags() & ELF::SHF_GROUP) 1087 Flags = ELF::SHF_GROUP; 1088 1089 const MCSectionELF *RelaSection = Ctx.createELFRelSection( 1090 RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL, 1091 Flags, EntrySize, Sec.getGroup(), &Sec); 1092 MCSectionData &RelSD = Asm.getOrCreateSectionData(*RelaSection); 1093 RelSD.setAlignment(is64Bit() ? 8 : 4); 1094 return RelaSection; 1095 } 1096 1097 static SmallVector<char, 128> 1098 getUncompressedData(const MCAsmLayout &Layout, 1099 const MCSectionData::FragmentListType &Fragments) { 1100 SmallVector<char, 128> UncompressedData; 1101 for (const MCFragment &F : Fragments) { 1102 const SmallVectorImpl<char> *Contents; 1103 switch (F.getKind()) { 1104 case MCFragment::FT_Data: 1105 Contents = &cast<MCDataFragment>(F).getContents(); 1106 break; 1107 case MCFragment::FT_Dwarf: 1108 Contents = &cast<MCDwarfLineAddrFragment>(F).getContents(); 1109 break; 1110 case MCFragment::FT_DwarfFrame: 1111 Contents = &cast<MCDwarfCallFrameFragment>(F).getContents(); 1112 break; 1113 default: 1114 llvm_unreachable( 1115 "Not expecting any other fragment types in a debug_* section"); 1116 } 1117 UncompressedData.append(Contents->begin(), Contents->end()); 1118 } 1119 return UncompressedData; 1120 } 1121 1122 // Include the debug info compression header: 1123 // "ZLIB" followed by 8 bytes representing the uncompressed size of the section, 1124 // useful for consumers to preallocate a buffer to decompress into. 1125 static bool 1126 prependCompressionHeader(uint64_t Size, 1127 SmallVectorImpl<char> &CompressedContents) { 1128 const StringRef Magic = "ZLIB"; 1129 if (Size <= Magic.size() + sizeof(Size) + CompressedContents.size()) 1130 return false; 1131 if (sys::IsLittleEndianHost) 1132 sys::swapByteOrder(Size); 1133 CompressedContents.insert(CompressedContents.begin(), 1134 Magic.size() + sizeof(Size), 0); 1135 std::copy(Magic.begin(), Magic.end(), CompressedContents.begin()); 1136 std::copy(reinterpret_cast<char *>(&Size), 1137 reinterpret_cast<char *>(&Size + 1), 1138 CompressedContents.begin() + Magic.size()); 1139 return true; 1140 } 1141 1142 void ELFObjectWriter::writeSectionData(const MCAssembler &Asm, 1143 const MCSectionData &SD, 1144 const MCAsmLayout &Layout) { 1145 const MCSectionELF &Section = 1146 static_cast<const MCSectionELF &>(SD.getSection()); 1147 StringRef SectionName = Section.getSectionName(); 1148 1149 // Compressing debug_frame requires handling alignment fragments which is 1150 // more work (possibly generalizing MCAssembler.cpp:writeFragment to allow 1151 // for writing to arbitrary buffers) for little benefit. 1152 if (!Asm.getContext().getAsmInfo()->compressDebugSections() || 1153 !SectionName.startswith(".debug_") || SectionName == ".debug_frame") { 1154 Asm.writeSectionData(&SD, Layout); 1155 return; 1156 } 1157 1158 // Gather the uncompressed data from all the fragments. 1159 const MCSectionData::FragmentListType &Fragments = SD.getFragmentList(); 1160 SmallVector<char, 128> UncompressedData = 1161 getUncompressedData(Layout, Fragments); 1162 1163 SmallVector<char, 128> CompressedContents; 1164 zlib::Status Success = zlib::compress( 1165 StringRef(UncompressedData.data(), UncompressedData.size()), 1166 CompressedContents); 1167 if (Success != zlib::StatusOK) { 1168 Asm.writeSectionData(&SD, Layout); 1169 return; 1170 } 1171 1172 if (!prependCompressionHeader(UncompressedData.size(), CompressedContents)) { 1173 Asm.writeSectionData(&SD, Layout); 1174 return; 1175 } 1176 Asm.getContext().renameELFSection(&Section, 1177 (".z" + SectionName.drop_front(1)).str()); 1178 OS << CompressedContents; 1179 } 1180 1181 void ELFObjectWriter::WriteSecHdrEntry(uint32_t Name, uint32_t Type, 1182 uint64_t Flags, uint64_t Address, 1183 uint64_t Offset, uint64_t Size, 1184 uint32_t Link, uint32_t Info, 1185 uint64_t Alignment, 1186 uint64_t EntrySize) { 1187 Write32(Name); // sh_name: index into string table 1188 Write32(Type); // sh_type 1189 WriteWord(Flags); // sh_flags 1190 WriteWord(Address); // sh_addr 1191 WriteWord(Offset); // sh_offset 1192 WriteWord(Size); // sh_size 1193 Write32(Link); // sh_link 1194 Write32(Info); // sh_info 1195 WriteWord(Alignment); // sh_addralign 1196 WriteWord(EntrySize); // sh_entsize 1197 } 1198 1199 void ELFObjectWriter::writeRelocations(const MCAssembler &Asm, 1200 const MCSectionELF &Sec) { 1201 std::vector<ELFRelocationEntry> &Relocs = Relocations[&Sec]; 1202 1203 // Sort the relocation entries. Most targets just sort by Offset, but some 1204 // (e.g., MIPS) have additional constraints. 1205 TargetObjectWriter->sortRelocs(Asm, Relocs); 1206 1207 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) { 1208 const ELFRelocationEntry &Entry = Relocs[e - i - 1]; 1209 unsigned Index = 1210 Entry.Symbol ? getSymbolIndexInSymbolTable(Asm, Entry.Symbol) : 0; 1211 1212 if (is64Bit()) { 1213 write(Entry.Offset); 1214 if (TargetObjectWriter->isN64()) { 1215 write(uint32_t(Index)); 1216 1217 write(TargetObjectWriter->getRSsym(Entry.Type)); 1218 write(TargetObjectWriter->getRType3(Entry.Type)); 1219 write(TargetObjectWriter->getRType2(Entry.Type)); 1220 write(TargetObjectWriter->getRType(Entry.Type)); 1221 } else { 1222 struct ELF::Elf64_Rela ERE64; 1223 ERE64.setSymbolAndType(Index, Entry.Type); 1224 write(ERE64.r_info); 1225 } 1226 if (hasRelocationAddend()) 1227 write(Entry.Addend); 1228 } else { 1229 write(uint32_t(Entry.Offset)); 1230 1231 struct ELF::Elf32_Rela ERE32; 1232 ERE32.setSymbolAndType(Index, Entry.Type); 1233 write(ERE32.r_info); 1234 1235 if (hasRelocationAddend()) 1236 write(uint32_t(Entry.Addend)); 1237 } 1238 } 1239 } 1240 1241 const MCSectionELF *ELFObjectWriter::createSectionHeaderStringTable() { 1242 const MCSectionELF *ShstrtabSection = SectionTable[ShstrtabIndex - 1]; 1243 ShStrTabBuilder.finalize(StringTableBuilder::ELF); 1244 OS << ShStrTabBuilder.data(); 1245 return ShstrtabSection; 1246 } 1247 1248 const MCSectionELF *ELFObjectWriter::createStringTable(MCContext &Ctx) { 1249 const MCSectionELF *StrtabSection = 1250 Ctx.getELFSection(".strtab", ELF::SHT_STRTAB, 0); 1251 StringTableIndex = addToSectionTable(StrtabSection); 1252 OS << StrTabBuilder.data(); 1253 return StrtabSection; 1254 } 1255 1256 void ELFObjectWriter::writeSection(MCAssembler &Asm, 1257 const SectionIndexMapTy &SectionIndexMap, 1258 uint32_t GroupSymbolIndex, 1259 uint64_t Offset, uint64_t Size, 1260 uint64_t Alignment, 1261 const MCSectionELF &Section) { 1262 uint64_t sh_link = 0; 1263 uint64_t sh_info = 0; 1264 1265 switch(Section.getType()) { 1266 default: 1267 // Nothing to do. 1268 break; 1269 1270 case ELF::SHT_DYNAMIC: 1271 llvm_unreachable("SHT_DYNAMIC in a relocatable object"); 1272 1273 case ELF::SHT_REL: 1274 case ELF::SHT_RELA: { 1275 sh_link = SymbolTableIndex; 1276 assert(sh_link && ".symtab not found"); 1277 const MCSectionELF *InfoSection = Section.getAssociatedSection(); 1278 sh_info = SectionIndexMap.lookup(InfoSection); 1279 break; 1280 } 1281 1282 case ELF::SHT_SYMTAB: 1283 case ELF::SHT_DYNSYM: 1284 sh_link = StringTableIndex; 1285 sh_info = LastLocalSymbolIndex; 1286 break; 1287 1288 case ELF::SHT_SYMTAB_SHNDX: 1289 sh_link = SymbolTableIndex; 1290 break; 1291 1292 case ELF::SHT_GROUP: 1293 sh_link = SymbolTableIndex; 1294 sh_info = GroupSymbolIndex; 1295 break; 1296 } 1297 1298 if (TargetObjectWriter->getEMachine() == ELF::EM_ARM && 1299 Section.getType() == ELF::SHT_ARM_EXIDX) 1300 sh_link = SectionIndexMap.lookup(Section.getAssociatedSection()); 1301 1302 WriteSecHdrEntry(ShStrTabBuilder.getOffset(Section.getSectionName()), 1303 Section.getType(), 1304 Section.getFlags(), 0, Offset, Size, sh_link, sh_info, 1305 Alignment, Section.getEntrySize()); 1306 } 1307 1308 void ELFObjectWriter::writeSectionHeader( 1309 MCAssembler &Asm, const MCAsmLayout &Layout, 1310 const SectionIndexMapTy &SectionIndexMap, 1311 const SectionOffsetsTy &SectionOffsets) { 1312 const unsigned NumSections = SectionTable.size(); 1313 1314 // Null section first. 1315 uint64_t FirstSectionSize = 1316 (NumSections + 1) >= ELF::SHN_LORESERVE ? NumSections + 1 : 0; 1317 WriteSecHdrEntry(0, 0, 0, 0, 0, FirstSectionSize, 0, 0, 0, 0); 1318 1319 for (const MCSectionELF *Section : SectionTable) { 1320 const MCSectionData &SD = Asm.getOrCreateSectionData(*Section); 1321 uint32_t GroupSymbolIndex; 1322 unsigned Type = Section->getType(); 1323 if (Type != ELF::SHT_GROUP) 1324 GroupSymbolIndex = 0; 1325 else 1326 GroupSymbolIndex = getSymbolIndexInSymbolTable(Asm, Section->getGroup()); 1327 1328 const std::pair<uint64_t, uint64_t> &Offsets = 1329 SectionOffsets.find(Section)->second; 1330 uint64_t Size = Type == ELF::SHT_NOBITS ? Layout.getSectionAddressSize(&SD) 1331 : Offsets.second - Offsets.first; 1332 1333 writeSection(Asm, SectionIndexMap, GroupSymbolIndex, Offsets.first, Size, 1334 SD.getAlignment(), *Section); 1335 } 1336 } 1337 1338 void ELFObjectWriter::WriteObject(MCAssembler &Asm, 1339 const MCAsmLayout &Layout) { 1340 MCContext &Ctx = Asm.getContext(); 1341 const MCSectionELF *ShstrtabSection = 1342 Ctx.getELFSection(".shstrtab", ELF::SHT_STRTAB, 0); 1343 ShstrtabIndex = addToSectionTable(ShstrtabSection); 1344 1345 RevGroupMapTy RevGroupMap; 1346 SectionIndexMapTy SectionIndexMap; 1347 1348 std::map<const MCSymbol *, std::vector<const MCSectionELF *>> GroupMembers; 1349 1350 // Write out the ELF header ... 1351 writeHeader(Asm); 1352 1353 // ... then the sections ... 1354 SectionOffsetsTy SectionOffsets; 1355 bool ComputedSymtab = false; 1356 for (const MCSectionData &SD : Asm) { 1357 const MCSectionELF &Section = 1358 static_cast<const MCSectionELF &>(SD.getSection()); 1359 1360 uint64_t Padding = OffsetToAlignment(OS.tell(), SD.getAlignment()); 1361 WriteZeros(Padding); 1362 1363 // Remember the offset into the file for this section. 1364 uint64_t SecStart = OS.tell(); 1365 1366 const MCSymbol *SignatureSymbol = Section.getGroup(); 1367 unsigned Type = Section.getType(); 1368 if (Type == ELF::SHT_GROUP) { 1369 assert(SignatureSymbol); 1370 write(uint32_t(ELF::GRP_COMDAT)); 1371 for (const MCSectionELF *Member : GroupMembers[SignatureSymbol]) { 1372 uint32_t SecIndex = SectionIndexMap.lookup(Member); 1373 write(SecIndex); 1374 } 1375 } else if (Type == ELF::SHT_REL || Type == ELF::SHT_RELA) { 1376 if (!ComputedSymtab) { 1377 // Compute symbol table information. 1378 computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap); 1379 ComputedSymtab = true; 1380 } 1381 writeRelocations(Asm, *Section.getAssociatedSection()); 1382 } else { 1383 writeSectionData(Asm, SD, Layout); 1384 } 1385 1386 uint64_t SecEnd = OS.tell(); 1387 SectionOffsets[&Section] = std::make_pair(SecStart, SecEnd); 1388 1389 if (Type == ELF::SHT_GROUP || Type == ELF::SHT_REL || Type == ELF::SHT_RELA) 1390 continue; 1391 1392 const MCSectionELF *RelSection = createRelocationSection(Asm, Section); 1393 1394 if (SignatureSymbol) { 1395 Asm.getOrCreateSymbolData(*SignatureSymbol); 1396 unsigned &GroupIdx = RevGroupMap[SignatureSymbol]; 1397 if (!GroupIdx) { 1398 const MCSectionELF *Group = Ctx.createELFGroupSection(SignatureSymbol); 1399 GroupIdx = addToSectionTable(Group); 1400 MCSectionData *GroupD = &Asm.getOrCreateSectionData(*Group); 1401 GroupD->setAlignment(4); 1402 } 1403 GroupMembers[SignatureSymbol].push_back(&Section); 1404 if (RelSection) 1405 GroupMembers[SignatureSymbol].push_back(RelSection); 1406 } 1407 1408 SectionIndexMap[&Section] = addToSectionTable(&Section); 1409 if (RelSection) 1410 SectionIndexMap[RelSection] = addToSectionTable(RelSection); 1411 } 1412 1413 if (!ComputedSymtab) { 1414 // Compute symbol table information. 1415 computeSymbolTable(Asm, Layout, SectionIndexMap, RevGroupMap); 1416 ComputedSymtab = true; 1417 } 1418 1419 WriteSymbolTable(Asm, Layout, SectionOffsets); 1420 1421 { 1422 uint64_t SecStart = OS.tell(); 1423 const MCSectionELF *Sec = createStringTable(Ctx); 1424 uint64_t SecEnd = OS.tell(); 1425 SectionOffsets[Sec] = std::make_pair(SecStart, SecEnd); 1426 } 1427 1428 { 1429 uint64_t SecStart = OS.tell(); 1430 const MCSectionELF *Sec = createSectionHeaderStringTable(); 1431 uint64_t SecEnd = OS.tell(); 1432 SectionOffsets[Sec] = std::make_pair(SecStart, SecEnd); 1433 } 1434 1435 uint64_t NaturalAlignment = is64Bit() ? 8 : 4; 1436 uint64_t Padding = OffsetToAlignment(OS.tell(), NaturalAlignment); 1437 WriteZeros(Padding); 1438 1439 const unsigned SectionHeaderOffset = OS.tell(); 1440 1441 // ... then the section header table ... 1442 writeSectionHeader(Asm, Layout, SectionIndexMap, SectionOffsets); 1443 1444 uint16_t NumSections = (SectionTable.size() + 1 >= ELF::SHN_LORESERVE) 1445 ? (uint16_t)ELF::SHN_UNDEF 1446 : SectionTable.size() + 1; 1447 if (sys::IsLittleEndianHost != IsLittleEndian) 1448 sys::swapByteOrder(NumSections); 1449 unsigned NumSectionsOffset; 1450 1451 if (is64Bit()) { 1452 uint64_t Val = SectionHeaderOffset; 1453 if (sys::IsLittleEndianHost != IsLittleEndian) 1454 sys::swapByteOrder(Val); 1455 OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val), 1456 offsetof(ELF::Elf64_Ehdr, e_shoff)); 1457 NumSectionsOffset = offsetof(ELF::Elf64_Ehdr, e_shnum); 1458 } else { 1459 uint32_t Val = SectionHeaderOffset; 1460 if (sys::IsLittleEndianHost != IsLittleEndian) 1461 sys::swapByteOrder(Val); 1462 OS.pwrite(reinterpret_cast<char *>(&Val), sizeof(Val), 1463 offsetof(ELF::Elf32_Ehdr, e_shoff)); 1464 NumSectionsOffset = offsetof(ELF::Elf32_Ehdr, e_shnum); 1465 } 1466 OS.pwrite(reinterpret_cast<char *>(&NumSections), sizeof(NumSections), 1467 NumSectionsOffset); 1468 } 1469 1470 bool ELFObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl( 1471 const MCAssembler &Asm, const MCSymbol &SymA, const MCFragment &FB, 1472 bool InSet, bool IsPCRel) const { 1473 if (IsPCRel) { 1474 assert(!InSet); 1475 if (::isWeak(SymA.getData())) 1476 return false; 1477 } 1478 return MCObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(Asm, SymA, FB, 1479 InSet, IsPCRel); 1480 } 1481 1482 bool ELFObjectWriter::isWeak(const MCSymbolData &SD) const { 1483 if (::isWeak(SD)) 1484 return true; 1485 1486 // It is invalid to replace a reference to a global in a comdat 1487 // with a reference to a local since out of comdat references 1488 // to a local are forbidden. 1489 // We could try to return false for more cases, like the reference 1490 // being in the same comdat or Sym being an alias to another global, 1491 // but it is not clear if it is worth the effort. 1492 if (MCELF::GetBinding(SD) != ELF::STB_GLOBAL) 1493 return false; 1494 1495 const MCSymbol &Sym = SD.getSymbol(); 1496 if (!Sym.isInSection()) 1497 return false; 1498 1499 const auto &Sec = cast<MCSectionELF>(Sym.getSection()); 1500 return Sec.getGroup(); 1501 } 1502 1503 MCObjectWriter *llvm::createELFObjectWriter(MCELFObjectTargetWriter *MOTW, 1504 raw_pwrite_stream &OS, 1505 bool IsLittleEndian) { 1506 return new ELFObjectWriter(MOTW, OS, IsLittleEndian); 1507 } 1508