1f7c5fbb1SRui Ueyama //===- LinkerScript.cpp ---------------------------------------------------===// 2f7c5fbb1SRui Ueyama // 3f7c5fbb1SRui Ueyama // The LLVM Linker 4f7c5fbb1SRui Ueyama // 5f7c5fbb1SRui Ueyama // This file is distributed under the University of Illinois Open Source 6f7c5fbb1SRui Ueyama // License. See LICENSE.TXT for details. 7f7c5fbb1SRui Ueyama // 8f7c5fbb1SRui Ueyama //===----------------------------------------------------------------------===// 9f7c5fbb1SRui Ueyama // 10f7c5fbb1SRui Ueyama // This file contains the parser/evaluator of the linker script. 11f7c5fbb1SRui Ueyama // 12f7c5fbb1SRui Ueyama //===----------------------------------------------------------------------===// 13f7c5fbb1SRui Ueyama 14717677afSRui Ueyama #include "LinkerScript.h" 15f7c5fbb1SRui Ueyama #include "Config.h" 161ebc8ed7SRui Ueyama #include "InputSection.h" 179381eb10SRui Ueyama #include "Memory.h" 18652852c5SGeorge Rimar #include "OutputSections.h" 1993c9af42SRui Ueyama #include "Strings.h" 20f7c5fbb1SRui Ueyama #include "SymbolTable.h" 2155518e7dSRui Ueyama #include "Symbols.h" 223fb5a6dcSGeorge Rimar #include "SyntheticSections.h" 2355b169bfSRafael Espindola #include "Target.h" 24bbe38602SEugene Leviant #include "Writer.h" 254f5c8c29SBob Haarman #include "lld/Common/Threads.h" 2622886a28SEugene Zelenko #include "llvm/ADT/STLExtras.h" 2722886a28SEugene Zelenko #include "llvm/ADT/StringRef.h" 28264b5d9eSZachary Turner #include "llvm/BinaryFormat/ELF.h" 2922886a28SEugene Zelenko #include "llvm/Support/Casting.h" 3022886a28SEugene Zelenko #include "llvm/Support/Endian.h" 3122886a28SEugene Zelenko #include "llvm/Support/ErrorHandling.h" 32f7c5fbb1SRui Ueyama #include "llvm/Support/FileSystem.h" 33f03f3cc1SRui Ueyama #include "llvm/Support/Path.h" 3422886a28SEugene Zelenko #include <algorithm> 3522886a28SEugene Zelenko #include <cassert> 3622886a28SEugene Zelenko #include <cstddef> 3722886a28SEugene Zelenko #include <cstdint> 3822886a28SEugene Zelenko #include <iterator> 3922886a28SEugene Zelenko #include <limits> 4022886a28SEugene Zelenko #include <string> 4122886a28SEugene Zelenko #include <vector> 42f7c5fbb1SRui Ueyama 43f7c5fbb1SRui Ueyama using namespace llvm; 44652852c5SGeorge Rimar using namespace llvm::ELF; 451ebc8ed7SRui Ueyama using namespace llvm::object; 46e38cbab5SGeorge Rimar using namespace llvm::support::endian; 47f7c5fbb1SRui Ueyama using namespace lld; 48e0df00b9SRafael Espindola using namespace lld::elf; 49f7c5fbb1SRui Ueyama 50a34da938SRui Ueyama LinkerScript *elf::Script; 51a34da938SRui Ueyama 525d0ea70aSGeorge Rimar static uint64_t getOutputSectionVA(SectionBase *InputSec, StringRef Loc) { 535d0ea70aSGeorge Rimar if (OutputSection *OS = InputSec->getOutputSection()) 545d0ea70aSGeorge Rimar return OS->Addr; 555d0ea70aSGeorge Rimar error(Loc + ": unable to evaluate expression: input section " + 565d0ea70aSGeorge Rimar InputSec->Name + " has no output section assigned"); 575d0ea70aSGeorge Rimar return 0; 58608cf670SGeorge Rimar } 595d0ea70aSGeorge Rimar 605d0ea70aSGeorge Rimar uint64_t ExprValue::getValue() const { 615d0ea70aSGeorge Rimar if (Sec) 625d0ea70aSGeorge Rimar return alignTo(Sec->getOffset(Val) + getOutputSectionVA(Sec, Loc), 635d0ea70aSGeorge Rimar Alignment); 643c6de1a6SPetr Hosek return alignTo(Val, Alignment); 6572dc195dSRafael Espindola } 6672dc195dSRafael Espindola 677ba5f47eSRafael Espindola uint64_t ExprValue::getSecAddr() const { 687ba5f47eSRafael Espindola if (Sec) 695d0ea70aSGeorge Rimar return Sec->getOffset(0) + getOutputSectionVA(Sec, Loc); 707ba5f47eSRafael Espindola return 0; 717ba5f47eSRafael Espindola } 727ba5f47eSRafael Espindola 73a6acd23cSRafael Espindola uint64_t ExprValue::getSectionOffset() const { 748b250344SRafael Espindola // If the alignment is trivial, we don't have to compute the full 758b250344SRafael Espindola // value to know the offset. This allows this function to succeed in 768b250344SRafael Espindola // cases where the output section is not yet known. 778b250344SRafael Espindola if (Alignment == 1) 788b250344SRafael Espindola return Val; 79a6acd23cSRafael Espindola return getValue() - getSecAddr(); 80a6acd23cSRafael Espindola } 81a6acd23cSRafael Espindola 828c022ca7SRafael Espindola OutputSection *LinkerScript::createOutputSection(StringRef Name, 838c022ca7SRafael Espindola StringRef Location) { 848c022ca7SRafael Espindola OutputSection *&SecRef = NameToOutputSection[Name]; 858c022ca7SRafael Espindola OutputSection *Sec; 868c022ca7SRafael Espindola if (SecRef && SecRef->Location.empty()) { 8705c4f67cSRafael Espindola // There was a forward reference. 888c022ca7SRafael Espindola Sec = SecRef; 8905c4f67cSRafael Espindola } else { 908c022ca7SRafael Espindola Sec = make<OutputSection>(Name, SHT_PROGBITS, 0); 918c022ca7SRafael Espindola if (!SecRef) 928c022ca7SRafael Espindola SecRef = Sec; 9305c4f67cSRafael Espindola } 948c022ca7SRafael Espindola Sec->Location = Location; 958c022ca7SRafael Espindola return Sec; 96851dc1e8SGeorge Rimar } 97851dc1e8SGeorge Rimar 988c022ca7SRafael Espindola OutputSection *LinkerScript::getOrCreateOutputSection(StringRef Name) { 998c022ca7SRafael Espindola OutputSection *&CmdRef = NameToOutputSection[Name]; 10005c4f67cSRafael Espindola if (!CmdRef) 1018c022ca7SRafael Espindola CmdRef = make<OutputSection>(Name, SHT_PROGBITS, 0); 10205c4f67cSRafael Espindola return CmdRef; 103d83ce1b4SGeorge Rimar } 104d83ce1b4SGeorge Rimar 105b8dd23f5SRui Ueyama void LinkerScript::setDot(Expr E, const Twine &Loc, bool InSec) { 10672dc195dSRafael Espindola uint64_t Val = E().getValue(); 1078c804d97SGeorge Rimar if (Val < Dot && InSec) 1082ee2d2dcSGeorge Rimar error(Loc + ": unable to move location counter backward for: " + 10929b240c6SRui Ueyama Ctx->OutSec->Name); 1104cd7352cSRafael Espindola Dot = Val; 11118d19687SRui Ueyama 1124cd7352cSRafael Espindola // Update to location counter means update to section size. 1134cd7352cSRafael Espindola if (InSec) 11429b240c6SRui Ueyama Ctx->OutSec->Size = Dot - Ctx->OutSec->Addr; 115679828ffSRafael Espindola } 116679828ffSRafael Espindola 1175908c2f8SRui Ueyama // This function is called from processSectionCommands, 1185908c2f8SRui Ueyama // while we are fixing the output section layout. 119b8dd23f5SRui Ueyama void LinkerScript::addSymbol(SymbolAssignment *Cmd) { 1201602421cSRui Ueyama if (Cmd->Name == ".") 1218f1f3c40SMeador Inge return; 1228f1f3c40SMeador Inge 1238f1f3c40SMeador Inge // If a symbol was in PROVIDE(), we need to define it only when 1248f1f3c40SMeador Inge // it is a referenced undefined symbol. 125f52496e1SRui Ueyama Symbol *B = Symtab->find(Cmd->Name); 1268f1f3c40SMeador Inge if (Cmd->Provide && (!B || B->isDefined())) 1278f1f3c40SMeador Inge return; 1288f1f3c40SMeador Inge 12918d19687SRui Ueyama // Define a symbol. 130f52496e1SRui Ueyama Symbol *Sym; 13118d19687SRui Ueyama uint8_t Visibility = Cmd->Hidden ? STV_HIDDEN : STV_DEFAULT; 13218d19687SRui Ueyama std::tie(Sym, std::ignore) = Symtab->insert(Cmd->Name, /*Type*/ 0, Visibility, 13318d19687SRui Ueyama /*CanOmitFromDynSym*/ false, 13418d19687SRui Ueyama /*File*/ nullptr); 13518d19687SRui Ueyama Sym->Binding = STB_GLOBAL; 13618d19687SRui Ueyama ExprValue Value = Cmd->Expression(); 13718d19687SRui Ueyama SectionBase *Sec = Value.isAbsolute() ? nullptr : Value.Sec; 13818d19687SRui Ueyama 13918d19687SRui Ueyama // When this function is called, section addresses have not been 14018d19687SRui Ueyama // fixed yet. So, we may or may not know the value of the RHS 14118d19687SRui Ueyama // expression. 14218d19687SRui Ueyama // 14318d19687SRui Ueyama // For example, if an expression is `x = 42`, we know x is always 42. 14418d19687SRui Ueyama // However, if an expression is `x = .`, there's no way to know its 14518d19687SRui Ueyama // value at the moment. 14618d19687SRui Ueyama // 14718d19687SRui Ueyama // We want to set symbol values early if we can. This allows us to 14818d19687SRui Ueyama // use symbols as variables in linker scripts. Doing so allows us to 14918d19687SRui Ueyama // write expressions like this: `alignment = 16; . = ALIGN(., alignment)`. 15018d19687SRui Ueyama uint64_t SymValue = Value.Sec ? 0 : Value.getValue(); 15118d19687SRui Ueyama 152f483da00SRui Ueyama replaceSymbol<DefinedRegular>(Sym, nullptr, Cmd->Name, /*IsLocal=*/false, 15318d19687SRui Ueyama Visibility, STT_NOTYPE, SymValue, 0, Sec); 154f1f00841SRui Ueyama Cmd->Sym = cast<DefinedRegular>(Sym); 15518d19687SRui Ueyama } 15618d19687SRui Ueyama 15718d19687SRui Ueyama // This function is called from assignAddresses, while we are 15818d19687SRui Ueyama // fixing the output section addresses. This function is supposed 15918d19687SRui Ueyama // to set the final value for a given symbol assignment. 16018d19687SRui Ueyama void LinkerScript::assignSymbol(SymbolAssignment *Cmd, bool InSec) { 16118d19687SRui Ueyama if (Cmd->Name == ".") { 16218d19687SRui Ueyama setDot(Cmd->Expression, Cmd->Location, InSec); 16318d19687SRui Ueyama return; 16418d19687SRui Ueyama } 16518d19687SRui Ueyama 16618d19687SRui Ueyama if (!Cmd->Sym) 16718d19687SRui Ueyama return; 16818d19687SRui Ueyama 16918d19687SRui Ueyama ExprValue V = Cmd->Expression(); 17018d19687SRui Ueyama if (V.isAbsolute()) { 17118d19687SRui Ueyama Cmd->Sym->Section = nullptr; 17218d19687SRui Ueyama Cmd->Sym->Value = V.getValue(); 17318d19687SRui Ueyama } else { 17418d19687SRui Ueyama Cmd->Sym->Section = V.Sec; 17518d19687SRui Ueyama Cmd->Sym->Value = V.getSectionOffset(); 17618d19687SRui Ueyama } 177ceabe80eSEugene Leviant } 178ceabe80eSEugene Leviant 17904c9ca74SRui Ueyama static std::string getFilename(InputFile *File) { 1801e30f07cSDmitry Mikulin if (!File) 181e0be2901SRui Ueyama return ""; 1821e30f07cSDmitry Mikulin if (File->ArchiveName.empty()) 1831e30f07cSDmitry Mikulin return File->getName(); 1841e30f07cSDmitry Mikulin return (File->ArchiveName + "(" + File->getName() + ")").str(); 185e0be2901SRui Ueyama } 186e0be2901SRui Ueyama 187b8dd23f5SRui Ueyama bool LinkerScript::shouldKeep(InputSectionBase *S) { 18804c9ca74SRui Ueyama std::string Filename = getFilename(S->File); 1897f1c266eSRui Ueyama for (InputSectionDescription *ID : KeptSections) 190f300ca21SDmitry Mikulin if (ID->FilePat.match(Filename)) 191cf43f179SEugene Leviant for (SectionPattern &P : ID->SectionPatterns) 192f91282e1SRui Ueyama if (P.SectionPat.match(S->Name)) 193eea3114fSGeorge Rimar return true; 194eea3114fSGeorge Rimar return false; 195eea3114fSGeorge Rimar } 196eea3114fSGeorge Rimar 197ea93fe00SRui Ueyama // A helper function for the SORT() command. 198c404d50dSRafael Espindola static std::function<bool(InputSectionBase *, InputSectionBase *)> 199be394db3SGeorge Rimar getComparator(SortSectionPolicy K) { 200be394db3SGeorge Rimar switch (K) { 201be394db3SGeorge Rimar case SortSectionPolicy::Alignment: 202ea93fe00SRui Ueyama return [](InputSectionBase *A, InputSectionBase *B) { 203ea93fe00SRui Ueyama // ">" is not a mistake. Sections with larger alignments are placed 204ea93fe00SRui Ueyama // before sections with smaller alignments in order to reduce the 205ea93fe00SRui Ueyama // amount of padding necessary. This is compatible with GNU. 206ea93fe00SRui Ueyama return A->Alignment > B->Alignment; 207ea93fe00SRui Ueyama }; 208be394db3SGeorge Rimar case SortSectionPolicy::Name: 209ea93fe00SRui Ueyama return [](InputSectionBase *A, InputSectionBase *B) { 210ea93fe00SRui Ueyama return A->Name < B->Name; 211ea93fe00SRui Ueyama }; 212be394db3SGeorge Rimar case SortSectionPolicy::Priority: 213ea93fe00SRui Ueyama return [](InputSectionBase *A, InputSectionBase *B) { 214ea93fe00SRui Ueyama return getPriority(A->Name) < getPriority(B->Name); 215ea93fe00SRui Ueyama }; 216be394db3SGeorge Rimar default: 217be394db3SGeorge Rimar llvm_unreachable("unknown sort policy"); 218be394db3SGeorge Rimar } 219742c3836SRui Ueyama } 2200702c4e8SGeorge Rimar 221ea93fe00SRui Ueyama // A helper function for the SORT() command. 22205433431SRui Ueyama static bool matchConstraints(ArrayRef<InputSection *> Sections, 22306ae6836SGeorge Rimar ConstraintKind Kind) { 2248f66df92SGeorge Rimar if (Kind == ConstraintKind::NoConstraint) 2258f66df92SGeorge Rimar return true; 2262c7171bfSRui Ueyama 227b801441eSRui Ueyama bool IsRW = llvm::any_of( 22805433431SRui Ueyama Sections, [](InputSection *Sec) { return Sec->Flags & SHF_WRITE; }); 2292c7171bfSRui Ueyama 230e746e52cSRafael Espindola return (IsRW && Kind == ConstraintKind::ReadWrite) || 231e746e52cSRafael Espindola (!IsRW && Kind == ConstraintKind::ReadOnly); 23206ae6836SGeorge Rimar } 23306ae6836SGeorge Rimar 2341f4d7b56SRui Ueyama static void sortSections(MutableArrayRef<InputSection *> Vec, 235ee924709SRui Ueyama SortSectionPolicy K) { 236ee924709SRui Ueyama if (K != SortSectionPolicy::Default && K != SortSectionPolicy::None) 2371f4d7b56SRui Ueyama std::stable_sort(Vec.begin(), Vec.end(), getComparator(K)); 238ee924709SRui Ueyama } 239ee924709SRui Ueyama 2407ad1e310SRui Ueyama // Sort sections as instructed by SORT-family commands and --sort-section 2417ad1e310SRui Ueyama // option. Because SORT-family commands can be nested at most two depth 2427ad1e310SRui Ueyama // (e.g. SORT_BY_NAME(SORT_BY_ALIGNMENT(.text.*))) and because the command 2437ad1e310SRui Ueyama // line option is respected even if a SORT command is given, the exact 2447ad1e310SRui Ueyama // behavior we have here is a bit complicated. Here are the rules. 2457ad1e310SRui Ueyama // 2467ad1e310SRui Ueyama // 1. If two SORT commands are given, --sort-section is ignored. 2477ad1e310SRui Ueyama // 2. If one SORT command is given, and if it is not SORT_NONE, 2487ad1e310SRui Ueyama // --sort-section is handled as an inner SORT command. 2497ad1e310SRui Ueyama // 3. If one SORT command is given, and if it is SORT_NONE, don't sort. 2507ad1e310SRui Ueyama // 4. If no SORT command is given, sort according to --sort-section. 2517ad1e310SRui Ueyama // 5. If no SORT commands are given and --sort-section is not specified, 2527ad1e310SRui Ueyama // apply sorting provided by --symbol-ordering-file if any exist. 2537ad1e310SRui Ueyama static void sortInputSections( 2547ad1e310SRui Ueyama MutableArrayRef<InputSection *> Vec, const SectionPattern &Pat, 2557ad1e310SRui Ueyama const DenseMap<SectionBase *, int> &Order) { 2567ad1e310SRui Ueyama if (Pat.SortOuter == SortSectionPolicy::None) 2577ad1e310SRui Ueyama return; 2587ad1e310SRui Ueyama 2597ad1e310SRui Ueyama if (Pat.SortOuter == SortSectionPolicy::Default && 2607ad1e310SRui Ueyama Config->SortSection == SortSectionPolicy::Default) { 2617ad1e310SRui Ueyama // If -symbol-ordering-file was given, sort accordingly. 2627ad1e310SRui Ueyama // Usually, Order is empty. 2637ad1e310SRui Ueyama if (!Order.empty()) 2647ad1e310SRui Ueyama sortByOrder(Vec, [&](InputSectionBase *S) { return Order.lookup(S); }); 2657ad1e310SRui Ueyama return; 2667ad1e310SRui Ueyama } 2677ad1e310SRui Ueyama 2687ad1e310SRui Ueyama if (Pat.SortInner == SortSectionPolicy::Default) 2697ad1e310SRui Ueyama sortSections(Vec, Config->SortSection); 2707ad1e310SRui Ueyama else 2717ad1e310SRui Ueyama sortSections(Vec, Pat.SortInner); 2727ad1e310SRui Ueyama sortSections(Vec, Pat.SortOuter); 2737ad1e310SRui Ueyama } 2747ad1e310SRui Ueyama 275d3190795SRafael Espindola // Compute and remember which sections the InputSectionDescription matches. 2766a1aa8d9SRafael Espindola std::vector<InputSection *> 277849d499eSRafael Espindola LinkerScript::computeInputSections(const InputSectionDescription *Cmd, 278849d499eSRafael Espindola const DenseMap<SectionBase *, int> &Order) { 2796a1aa8d9SRafael Espindola std::vector<InputSection *> Ret; 2808c6a5aafSRui Ueyama 28172e107f3SRui Ueyama // Collects all sections that satisfy constraints of Cmd. 28272e107f3SRui Ueyama for (const SectionPattern &Pat : Cmd->SectionPatterns) { 28372e107f3SRui Ueyama size_t SizeBefore = Ret.size(); 28472e107f3SRui Ueyama 28572e107f3SRui Ueyama for (InputSectionBase *Sec : InputSections) { 28696b11578SGeorge Rimar if (!Sec->Live || Sec->Assigned) 2878c6a5aafSRui Ueyama continue; 28872e107f3SRui Ueyama 289908a3d34SRafael Espindola // For -emit-relocs we have to ignore entries like 290908a3d34SRafael Espindola // .rela.dyn : { *(.rela.data) } 291908a3d34SRafael Espindola // which are common because they are in the default bfd script. 29272e107f3SRui Ueyama if (Sec->Type == SHT_REL || Sec->Type == SHT_RELA) 293908a3d34SRafael Espindola continue; 2948c6a5aafSRui Ueyama 29504c9ca74SRui Ueyama std::string Filename = getFilename(Sec->File); 29672e107f3SRui Ueyama if (!Cmd->FilePat.match(Filename) || 29772e107f3SRui Ueyama Pat.ExcludedFilePat.match(Filename) || 29872e107f3SRui Ueyama !Pat.SectionPat.match(Sec->Name)) 299e0be2901SRui Ueyama continue; 30072e107f3SRui Ueyama 301ec5c4adbSRui Ueyama // It is safe to assume that Sec is an InputSection 302ec5c4adbSRui Ueyama // because mergeable or EH input sections have already been 303ec5c4adbSRui Ueyama // handled and eliminated. 3046a1aa8d9SRafael Espindola Ret.push_back(cast<InputSection>(Sec)); 30572e107f3SRui Ueyama Sec->Assigned = true; 306f94efdddSRui Ueyama } 307d3190795SRafael Espindola 3087ad1e310SRui Ueyama sortInputSections(MutableArrayRef<InputSection *>(Ret).slice(SizeBefore), 3097ad1e310SRui Ueyama Pat, Order); 310ee924709SRui Ueyama } 31172e107f3SRui Ueyama return Ret; 312be94e1b6SRafael Espindola } 313be94e1b6SRafael Espindola 31405433431SRui Ueyama void LinkerScript::discard(ArrayRef<InputSection *> V) { 31505433431SRui Ueyama for (InputSection *S : V) { 3161e30f07cSDmitry Mikulin if (S == InX::ShStrTab || S == InX::Dynamic || S == InX::DynSymTab || 3171e30f07cSDmitry Mikulin S == InX::DynStrTab) 3182af64b0bSRafael Espindola error("discarding " + S->Name + " section is not allowed"); 3198e38ea8bSRui Ueyama 3208e38ea8bSRui Ueyama S->Assigned = false; 3218e38ea8bSRui Ueyama S->Live = false; 322647c1685SGeorge Rimar discard(S->DependentSections); 323be94e1b6SRafael Espindola } 324be94e1b6SRafael Espindola } 325be94e1b6SRafael Espindola 326849d499eSRafael Espindola std::vector<InputSection *> LinkerScript::createInputSectionList( 327849d499eSRafael Espindola OutputSection &OutCmd, const DenseMap<SectionBase *, int> &Order) { 32805433431SRui Ueyama std::vector<InputSection *> Ret; 329e7f912cdSRui Ueyama 3306b394caaSRui Ueyama for (BaseCommand *Base : OutCmd.SectionCommands) { 33105433431SRui Ueyama if (auto *Cmd = dyn_cast<InputSectionDescription>(Base)) { 332849d499eSRafael Espindola Cmd->Sections = computeInputSections(Cmd, Order); 333e4c8b9b7SRafael Espindola Ret.insert(Ret.end(), Cmd->Sections.begin(), Cmd->Sections.end()); 3340b9ce6a4SRui Ueyama } 33505433431SRui Ueyama } 3360b9ce6a4SRui Ueyama return Ret; 3370b9ce6a4SRui Ueyama } 3380b9ce6a4SRui Ueyama 3393558e24aSRafael Espindola void LinkerScript::processSectionCommands() { 3405616adf6SRafael Espindola // A symbol can be assigned before any section is mentioned in the linker 3415616adf6SRafael Espindola // script. In an DSO, the symbol values are addresses, so the only important 3425616adf6SRafael Espindola // section values are: 3435616adf6SRafael Espindola // * SHN_UNDEF 3445616adf6SRafael Espindola // * SHN_ABS 3455616adf6SRafael Espindola // * Any value meaning a regular section. 3465616adf6SRafael Espindola // To handle that, create a dummy aether section that fills the void before 3475616adf6SRafael Espindola // the linker scripts switches to another section. It has an index of one 3485616adf6SRafael Espindola // which will map to whatever the first actual section is. 3495616adf6SRafael Espindola Aether = make<OutputSection>("", 0, SHF_ALLOC); 3505616adf6SRafael Espindola Aether->SectionIndex = 1; 35118d19687SRui Ueyama 35229b240c6SRui Ueyama // Ctx captures the local AddressState and makes it accessible deliberately. 35329b240c6SRui Ueyama // This is needed as there are some cases where we cannot just 354c1ace40bSPeter Smith // thread the current state through to a lambda function created by the 355c1ace40bSPeter Smith // script parser. 356089dac7bSRafael Espindola auto Deleter = make_unique<AddressState>(); 357089dac7bSRafael Espindola Ctx = Deleter.get(); 35829b240c6SRui Ueyama Ctx->OutSec = Aether; 3595616adf6SRafael Espindola 3601b45d377SGeorge Rimar size_t I = 0; 361849d499eSRafael Espindola DenseMap<SectionBase *, int> Order = buildSectionOrder(); 362355a8dd6SRui Ueyama // Add input sections to output sections. 3631b45d377SGeorge Rimar for (BaseCommand *Base : SectionCommands) { 3640b1b695aSRui Ueyama // Handle symbol assignments outside of any output section. 3651b45d377SGeorge Rimar if (auto *Cmd = dyn_cast<SymbolAssignment>(Base)) { 3664cd7352cSRafael Espindola addSymbol(Cmd); 3672ab5f73dSRui Ueyama continue; 3682ab5f73dSRui Ueyama } 3690b1b695aSRui Ueyama 3701b45d377SGeorge Rimar if (auto *Sec = dyn_cast<OutputSection>(Base)) { 371849d499eSRafael Espindola std::vector<InputSection *> V = createInputSectionList(*Sec, Order); 3727bd37870SRafael Espindola 3730b1b695aSRui Ueyama // The output section name `/DISCARD/' is special. 3740b1b695aSRui Ueyama // Any input section assigned to it is discarded. 3758c022ca7SRafael Espindola if (Sec->Name == "/DISCARD/") { 3767bd37870SRafael Espindola discard(V); 37748c3f1ceSRui Ueyama continue; 37848c3f1ceSRui Ueyama } 3790b9ce6a4SRui Ueyama 3800b1b695aSRui Ueyama // This is for ONLY_IF_RO and ONLY_IF_RW. An output section directive 3810b1b695aSRui Ueyama // ".foo : ONLY_IF_R[OW] { ... }" is handled only if all member input 3820b1b695aSRui Ueyama // sections satisfy a given constraint. If not, a directive is handled 38307d7c42cSGeorge Rimar // as if it wasn't present from the beginning. 3840b1b695aSRui Ueyama // 3851b45d377SGeorge Rimar // Because we'll iterate over SectionCommands many more times, the easy 3861b45d377SGeorge Rimar // way to "make it as if it wasn't present" is to make it empty. 3878c022ca7SRafael Espindola if (!matchConstraints(V, Sec->Constraint)) { 388b4c9b81aSRafael Espindola for (InputSectionBase *S : V) 389f94efdddSRui Ueyama S->Assigned = false; 3901b45d377SGeorge Rimar Sec->SectionCommands.clear(); 3917c3ff2ebSRafael Espindola continue; 3927c3ff2ebSRafael Espindola } 3937c3ff2ebSRafael Espindola 3940b1b695aSRui Ueyama // A directive may contain symbol definitions like this: 3950b1b695aSRui Ueyama // ".foo : { ...; bar = .; }". Handle them. 3966b394caaSRui Ueyama for (BaseCommand *Base : Sec->SectionCommands) 3978f99f73cSRui Ueyama if (auto *OutCmd = dyn_cast<SymbolAssignment>(Base)) 3984cd7352cSRafael Espindola addSymbol(OutCmd); 3997c3ff2ebSRafael Espindola 4000b1b695aSRui Ueyama // Handle subalign (e.g. ".foo : SUBALIGN(32) { ... }"). If subalign 4010b1b695aSRui Ueyama // is given, input sections are aligned to that value, whether the 4020b1b695aSRui Ueyama // given value is larger or smaller than the original section alignment. 4038c022ca7SRafael Espindola if (Sec->SubalignExpr) { 4048c022ca7SRafael Espindola uint32_t Subalign = Sec->SubalignExpr().getValue(); 405b4c9b81aSRafael Espindola for (InputSectionBase *S : V) 4060b1b695aSRui Ueyama S->Alignment = Subalign; 40720d03194SEugene Leviant } 4080b1b695aSRui Ueyama 4090b1b695aSRui Ueyama // Add input sections to an output section. 41005433431SRui Ueyama for (InputSection *S : V) 41105433431SRui Ueyama Sec->addSection(S); 412c54d5b16SRui Ueyama 4131b45d377SGeorge Rimar Sec->SectionIndex = I++; 4148c022ca7SRafael Espindola if (Sec->Noload) 415fbb0463fSGeorge Rimar Sec->Type = SHT_NOBITS; 41648c3f1ceSRui Ueyama } 4174aa2ef5bSRafael Espindola } 4181b45d377SGeorge Rimar Ctx = nullptr; 4191b45d377SGeorge Rimar } 420e63d81bdSEugene Leviant 421d2f225fdSRui Ueyama static OutputSection *findByName(ArrayRef<BaseCommand *> Vec, 422d2f225fdSRui Ueyama StringRef Name) { 423d2f225fdSRui Ueyama for (BaseCommand *Base : Vec) 424d2f225fdSRui Ueyama if (auto *Sec = dyn_cast<OutputSection>(Base)) 425d2f225fdSRui Ueyama if (Sec->Name == Name) 426d2f225fdSRui Ueyama return Sec; 427d2f225fdSRui Ueyama return nullptr; 428d2f225fdSRui Ueyama } 429d2f225fdSRui Ueyama 430aa8523e4SRui Ueyama static OutputSection *createSection(InputSectionBase *IS, 431aa8523e4SRui Ueyama StringRef OutsecName) { 432aa8523e4SRui Ueyama OutputSection *Sec = Script->createOutputSection(OutsecName, "<internal>"); 433aa8523e4SRui Ueyama Sec->addSection(cast<InputSection>(IS)); 434aa8523e4SRui Ueyama return Sec; 435aa8523e4SRui Ueyama } 436aa8523e4SRui Ueyama 437aa8523e4SRui Ueyama static OutputSection *addInputSec(StringMap<OutputSection *> &Map, 438aa8523e4SRui Ueyama InputSectionBase *IS, StringRef OutsecName) { 439aa8523e4SRui Ueyama // Sections with SHT_GROUP or SHF_GROUP attributes reach here only when the -r 440aa8523e4SRui Ueyama // option is given. A section with SHT_GROUP defines a "section group", and 441aa8523e4SRui Ueyama // its members have SHF_GROUP attribute. Usually these flags have already been 442aa8523e4SRui Ueyama // stripped by InputFiles.cpp as section groups are processed and uniquified. 443aa8523e4SRui Ueyama // However, for the -r option, we want to pass through all section groups 444aa8523e4SRui Ueyama // as-is because adding/removing members or merging them with other groups 445aa8523e4SRui Ueyama // change their semantics. 446aa8523e4SRui Ueyama if (IS->Type == SHT_GROUP || (IS->Flags & SHF_GROUP)) 447aa8523e4SRui Ueyama return createSection(IS, OutsecName); 448aa8523e4SRui Ueyama 449aa8523e4SRui Ueyama // Imagine .zed : { *(.foo) *(.bar) } script. Both foo and bar may have 450aa8523e4SRui Ueyama // relocation sections .rela.foo and .rela.bar for example. Most tools do 451aa8523e4SRui Ueyama // not allow multiple REL[A] sections for output section. Hence we 452aa8523e4SRui Ueyama // should combine these relocation sections into single output. 453aa8523e4SRui Ueyama // We skip synthetic sections because it can be .rela.dyn/.rela.plt or any 454aa8523e4SRui Ueyama // other REL[A] sections created by linker itself. 455aa8523e4SRui Ueyama if (!isa<SyntheticSection>(IS) && 456aa8523e4SRui Ueyama (IS->Type == SHT_REL || IS->Type == SHT_RELA)) { 457aa8523e4SRui Ueyama auto *Sec = cast<InputSection>(IS); 458aa8523e4SRui Ueyama OutputSection *Out = Sec->getRelocatedSection()->getOutputSection(); 459aa8523e4SRui Ueyama 460aa8523e4SRui Ueyama if (Out->RelocationSection) { 461aa8523e4SRui Ueyama Out->RelocationSection->addSection(Sec); 462aa8523e4SRui Ueyama return nullptr; 463aa8523e4SRui Ueyama } 464aa8523e4SRui Ueyama 465aa8523e4SRui Ueyama Out->RelocationSection = createSection(IS, OutsecName); 466aa8523e4SRui Ueyama return Out->RelocationSection; 467aa8523e4SRui Ueyama } 468aa8523e4SRui Ueyama 469aa8523e4SRui Ueyama // When control reaches here, mergeable sections have already been 470aa8523e4SRui Ueyama // merged except the -r case. If that's the case, we do not combine them 471aa8523e4SRui Ueyama // and let final link to handle this optimization. 472aa8523e4SRui Ueyama if (Config->Relocatable && (IS->Flags & SHF_MERGE)) 473aa8523e4SRui Ueyama return createSection(IS, OutsecName); 474aa8523e4SRui Ueyama 475aa8523e4SRui Ueyama // The ELF spec just says 476aa8523e4SRui Ueyama // ---------------------------------------------------------------- 477aa8523e4SRui Ueyama // In the first phase, input sections that match in name, type and 478aa8523e4SRui Ueyama // attribute flags should be concatenated into single sections. 479aa8523e4SRui Ueyama // ---------------------------------------------------------------- 480aa8523e4SRui Ueyama // 481aa8523e4SRui Ueyama // However, it is clear that at least some flags have to be ignored for 482aa8523e4SRui Ueyama // section merging. At the very least SHF_GROUP and SHF_COMPRESSED have to be 483aa8523e4SRui Ueyama // ignored. We should not have two output .text sections just because one was 484aa8523e4SRui Ueyama // in a group and another was not for example. 485aa8523e4SRui Ueyama // 486aa8523e4SRui Ueyama // It also seems that that wording was a late addition and didn't get the 487aa8523e4SRui Ueyama // necessary scrutiny. 488aa8523e4SRui Ueyama // 489aa8523e4SRui Ueyama // Merging sections with different flags is expected by some users. One 490aa8523e4SRui Ueyama // reason is that if one file has 491aa8523e4SRui Ueyama // 492aa8523e4SRui Ueyama // int *const bar __attribute__((section(".foo"))) = (int *)0; 493aa8523e4SRui Ueyama // 494aa8523e4SRui Ueyama // gcc with -fPIC will produce a read only .foo section. But if another 495aa8523e4SRui Ueyama // file has 496aa8523e4SRui Ueyama // 497aa8523e4SRui Ueyama // int zed; 498aa8523e4SRui Ueyama // int *const bar __attribute__((section(".foo"))) = (int *)&zed; 499aa8523e4SRui Ueyama // 500aa8523e4SRui Ueyama // gcc with -fPIC will produce a read write section. 501aa8523e4SRui Ueyama // 502aa8523e4SRui Ueyama // Last but not least, when using linker script the merge rules are forced by 503aa8523e4SRui Ueyama // the script. Unfortunately, linker scripts are name based. This means that 504aa8523e4SRui Ueyama // expressions like *(.foo*) can refer to multiple input sections with 505aa8523e4SRui Ueyama // different flags. We cannot put them in different output sections or we 506aa8523e4SRui Ueyama // would produce wrong results for 507aa8523e4SRui Ueyama // 508aa8523e4SRui Ueyama // start = .; *(.foo.*) end = .; *(.bar) 509aa8523e4SRui Ueyama // 510aa8523e4SRui Ueyama // and a mapping of .foo1 and .bar1 to one section and .foo2 and .bar2 to 511aa8523e4SRui Ueyama // another. The problem is that there is no way to layout those output 512aa8523e4SRui Ueyama // sections such that the .foo sections are the only thing between the start 513aa8523e4SRui Ueyama // and end symbols. 514aa8523e4SRui Ueyama // 515aa8523e4SRui Ueyama // Given the above issues, we instead merge sections by name and error on 516aa8523e4SRui Ueyama // incompatible types and flags. 517aa8523e4SRui Ueyama OutputSection *&Sec = Map[OutsecName]; 518aa8523e4SRui Ueyama if (Sec) { 519aa8523e4SRui Ueyama Sec->addSection(cast<InputSection>(IS)); 520aa8523e4SRui Ueyama return nullptr; 521aa8523e4SRui Ueyama } 522aa8523e4SRui Ueyama 523aa8523e4SRui Ueyama Sec = createSection(IS, OutsecName); 524aa8523e4SRui Ueyama return Sec; 525aa8523e4SRui Ueyama } 526aa8523e4SRui Ueyama 5270b1b695aSRui Ueyama // Add sections that didn't match any sections command. 528aa8523e4SRui Ueyama void LinkerScript::addOrphanSections() { 5296b394caaSRui Ueyama unsigned End = SectionCommands.size(); 530aa8523e4SRui Ueyama StringMap<OutputSection *> Map; 531d2f225fdSRui Ueyama 532f9b04fd9SGeorge Rimar std::vector<OutputSection *> V; 5334f013bb3SRafael Espindola for (InputSectionBase *S : InputSections) { 534db5e56f7SRafael Espindola if (!S->Live || S->Parent) 5354f013bb3SRafael Espindola continue; 536d2f225fdSRui Ueyama 5374f013bb3SRafael Espindola StringRef Name = getOutputSectionName(S->Name); 538*5c4cb8a9SRui Ueyama 539*5c4cb8a9SRui Ueyama if (Config->OrphanHandling == OrphanHandlingPolicy::Error) 540*5c4cb8a9SRui Ueyama error(toString(S) + " is being placed in '" + Name + "'"); 541*5c4cb8a9SRui Ueyama else if (Config->OrphanHandling == OrphanHandlingPolicy::Warn) 542*5c4cb8a9SRui Ueyama warn(toString(S) + " is being placed in '" + Name + "'"); 543d2f225fdSRui Ueyama 544ac27de9dSRui Ueyama if (OutputSection *Sec = 5456b394caaSRui Ueyama findByName(makeArrayRef(SectionCommands).slice(0, End), Name)) { 5460e2bfb1eSRui Ueyama Sec->addSection(cast<InputSection>(S)); 547c54d5b16SRui Ueyama continue; 548660c9ab9SRafael Espindola } 549c54d5b16SRui Ueyama 550aa8523e4SRui Ueyama if (OutputSection *OS = addInputSec(Map, S, Name)) 551f9b04fd9SGeorge Rimar V.push_back(OS); 552c54d5b16SRui Ueyama assert(S->getOutputSection()->SectionIndex == INT_MAX); 553d7faa916SRafael Espindola } 554f9b04fd9SGeorge Rimar 555f9b04fd9SGeorge Rimar // If no SECTIONS command was given, we should insert sections commands 556f9b04fd9SGeorge Rimar // before others, so that we can handle scripts which refers them, 557f9b04fd9SGeorge Rimar // for example: "foo = ABSOLUTE(ADDR(.text)));". 558f9b04fd9SGeorge Rimar // When SECTIONS command is present we just add all orphans to the end. 559f9b04fd9SGeorge Rimar if (HasSectionsCommand) 560f9b04fd9SGeorge Rimar SectionCommands.insert(SectionCommands.end(), V.begin(), V.end()); 561f9b04fd9SGeorge Rimar else 562f9b04fd9SGeorge Rimar SectionCommands.insert(SectionCommands.begin(), V.begin(), V.end()); 5634f013bb3SRafael Espindola } 564e63d81bdSEugene Leviant 56571f84067SRui Ueyama uint64_t LinkerScript::advance(uint64_t Size, unsigned Alignment) { 56629b240c6SRui Ueyama bool IsTbss = 56729b240c6SRui Ueyama (Ctx->OutSec->Flags & SHF_TLS) && Ctx->OutSec->Type == SHT_NOBITS; 56829b240c6SRui Ueyama uint64_t Start = IsTbss ? Dot + Ctx->ThreadBssOffset : Dot; 56971f84067SRui Ueyama Start = alignTo(Start, Alignment); 5707c4eafa3SRafael Espindola uint64_t End = Start + Size; 5717c4eafa3SRafael Espindola 5727c4eafa3SRafael Espindola if (IsTbss) 57329b240c6SRui Ueyama Ctx->ThreadBssOffset = End - Dot; 5747c4eafa3SRafael Espindola else 5757c4eafa3SRafael Espindola Dot = End; 5767c4eafa3SRafael Espindola return End; 577a940e539SRafael Espindola } 578a940e539SRafael Espindola 579b8dd23f5SRui Ueyama void LinkerScript::output(InputSection *S) { 580f694d33fSGeorge Rimar uint64_t Before = advance(0, 1); 5817c4eafa3SRafael Espindola uint64_t Pos = advance(S->getSize(), S->Alignment); 58229b240c6SRui Ueyama S->OutSecOff = Pos - S->getSize() - Ctx->OutSec->Addr; 583d3190795SRafael Espindola 584d3190795SRafael Espindola // Update output section size after adding each section. This is so that 585d3190795SRafael Espindola // SIZEOF works correctly in the case below: 586d3190795SRafael Espindola // .foo { *(.aaa) a = SIZEOF(.foo); *(.bbb) } 58729b240c6SRui Ueyama Ctx->OutSec->Size = Pos - Ctx->OutSec->Addr; 588d3190795SRafael Espindola 589b889744eSMeador Inge // If there is a memory region associated with this input section, then 590b889744eSMeador Inge // place the section in that region and update the region index. 59129b240c6SRui Ueyama if (Ctx->MemRegion) { 59229b240c6SRui Ueyama uint64_t &CurOffset = Ctx->MemRegionOffset[Ctx->MemRegion]; 593f694d33fSGeorge Rimar CurOffset += Pos - Before; 59429b240c6SRui Ueyama uint64_t CurSize = CurOffset - Ctx->MemRegion->Origin; 59529b240c6SRui Ueyama if (CurSize > Ctx->MemRegion->Length) { 59629b240c6SRui Ueyama uint64_t OverflowAmt = CurSize - Ctx->MemRegion->Length; 59729b240c6SRui Ueyama error("section '" + Ctx->OutSec->Name + "' will not fit in region '" + 59829b240c6SRui Ueyama Ctx->MemRegion->Name + "': overflowed by " + Twine(OverflowAmt) + 59929b240c6SRui Ueyama " bytes"); 600b889744eSMeador Inge } 601b889744eSMeador Inge } 6022de509c3SRui Ueyama } 603ceabe80eSEugene Leviant 604b8dd23f5SRui Ueyama void LinkerScript::switchTo(OutputSection *Sec) { 60529b240c6SRui Ueyama if (Ctx->OutSec == Sec) 606d3190795SRafael Espindola return; 607d3190795SRafael Espindola 60829b240c6SRui Ueyama Ctx->OutSec = Sec; 60929b240c6SRui Ueyama Ctx->OutSec->Addr = advance(0, Ctx->OutSec->Alignment); 610b71d6f7aSEugene Leviant 611b71d6f7aSEugene Leviant // If neither AT nor AT> is specified for an allocatable section, the linker 612b71d6f7aSEugene Leviant // will set the LMA such that the difference between VMA and LMA for the 613b71d6f7aSEugene Leviant // section is the same as the preceding output section in the same region 614b71d6f7aSEugene Leviant // https://sourceware.org/binutils/docs-2.20/ld/Output-Section-LMA.html 61529b240c6SRui Ueyama if (Ctx->LMAOffset) 61629b240c6SRui Ueyama Ctx->OutSec->LMAOffset = Ctx->LMAOffset(); 617d3190795SRafael Espindola } 618d3190795SRafael Espindola 619b889744eSMeador Inge // This function searches for a memory region to place the given output 620b889744eSMeador Inge // section in. If found, a pointer to the appropriate memory region is 621b889744eSMeador Inge // returned. Otherwise, a nullptr is returned. 6228c022ca7SRafael Espindola MemoryRegion *LinkerScript::findMemoryRegion(OutputSection *Sec) { 623b889744eSMeador Inge // If a memory region name was specified in the output section command, 624b889744eSMeador Inge // then try to find that region first. 6258c022ca7SRafael Espindola if (!Sec->MemoryRegionName.empty()) { 626ac27de9dSRui Ueyama auto It = MemoryRegions.find(Sec->MemoryRegionName); 627ac27de9dSRui Ueyama if (It != MemoryRegions.end()) 6285f37541cSGeorge Rimar return It->second; 6298c022ca7SRafael Espindola error("memory region '" + Sec->MemoryRegionName + "' not declared"); 630b889744eSMeador Inge return nullptr; 631b889744eSMeador Inge } 632b889744eSMeador Inge 633d7c5400fSRui Ueyama // If at least one memory region is defined, all sections must 634d7c5400fSRui Ueyama // belong to some memory region. Otherwise, we don't need to do 635d7c5400fSRui Ueyama // anything for memory regions. 636ac27de9dSRui Ueyama if (MemoryRegions.empty()) 637b889744eSMeador Inge return nullptr; 638b889744eSMeador Inge 639b889744eSMeador Inge // See if a region can be found by matching section flags. 640ac27de9dSRui Ueyama for (auto &Pair : MemoryRegions) { 6415f37541cSGeorge Rimar MemoryRegion *M = Pair.second; 6425f37541cSGeorge Rimar if ((M->Flags & Sec->Flags) && (M->NegFlags & Sec->Flags) == 0) 6435f37541cSGeorge Rimar return M; 644b889744eSMeador Inge } 645b889744eSMeador Inge 646b889744eSMeador Inge // Otherwise, no suitable region was found. 647b889744eSMeador Inge if (Sec->Flags & SHF_ALLOC) 648b889744eSMeador Inge error("no memory region specified for section '" + Sec->Name + "'"); 649b889744eSMeador Inge return nullptr; 650b889744eSMeador Inge } 651b889744eSMeador Inge 6520b1b695aSRui Ueyama // This function assigns offsets to input sections and an output section 6530b1b695aSRui Ueyama // for a single sections command (e.g. ".text { *(.text); }"). 6548c022ca7SRafael Espindola void LinkerScript::assignOffsets(OutputSection *Sec) { 655dece2808SRafael Espindola if (!(Sec->Flags & SHF_ALLOC)) 656dece2808SRafael Espindola Dot = 0; 6578c022ca7SRafael Espindola else if (Sec->AddrExpr) 6588c022ca7SRafael Espindola setDot(Sec->AddrExpr, Sec->Location, false); 659679828ffSRafael Espindola 66029b240c6SRui Ueyama Ctx->MemRegion = Sec->MemRegion; 66129b240c6SRui Ueyama if (Ctx->MemRegion) 66229b240c6SRui Ueyama Dot = Ctx->MemRegionOffset[Ctx->MemRegion]; 663c2dffe3aSGeorge Rimar 6648c022ca7SRafael Espindola if (Sec->LMAExpr) { 6650c1c8085SGeorge Rimar uint64_t D = Dot; 66629b240c6SRui Ueyama Ctx->LMAOffset = [=] { return Sec->LMAExpr().getValue() - D; }; 6675784e96fSEugene Leviant } 6685784e96fSEugene Leviant 669b889744eSMeador Inge switchTo(Sec); 6700b1b695aSRui Ueyama 671d86a4e50SGeorge Rimar // We do not support custom layout for compressed debug sectons. 672d86a4e50SGeorge Rimar // At this point we already know their size and have compressed content. 67329b240c6SRui Ueyama if (Ctx->OutSec->Flags & SHF_COMPRESSED) 674d86a4e50SGeorge Rimar return; 675d86a4e50SGeorge Rimar 6762f4c121dSRui Ueyama // We visited SectionsCommands from processSectionCommands to 6772f4c121dSRui Ueyama // layout sections. Now, we visit SectionsCommands again to fix 6782f4c121dSRui Ueyama // section offsets. 6792f4c121dSRui Ueyama for (BaseCommand *Base : Sec->SectionCommands) { 6802f4c121dSRui Ueyama // This handles the assignments to symbol or to the dot. 6812f4c121dSRui Ueyama if (auto *Cmd = dyn_cast<SymbolAssignment>(Base)) { 6822f4c121dSRui Ueyama assignSymbol(Cmd, true); 6832f4c121dSRui Ueyama continue; 6842f4c121dSRui Ueyama } 6852f4c121dSRui Ueyama 6862f4c121dSRui Ueyama // Handle BYTE(), SHORT(), LONG(), or QUAD(). 687f0403c60SRui Ueyama if (auto *Cmd = dyn_cast<ByteCommand>(Base)) { 6882f4c121dSRui Ueyama Cmd->Offset = Dot - Ctx->OutSec->Addr; 6892f4c121dSRui Ueyama Dot += Cmd->Size; 6902f4c121dSRui Ueyama Ctx->OutSec->Size = Dot - Ctx->OutSec->Addr; 6912f4c121dSRui Ueyama continue; 6922f4c121dSRui Ueyama } 6932f4c121dSRui Ueyama 6942f4c121dSRui Ueyama // Handle ASSERT(). 6952f4c121dSRui Ueyama if (auto *Cmd = dyn_cast<AssertCommand>(Base)) { 6962f4c121dSRui Ueyama Cmd->Expression(); 6972f4c121dSRui Ueyama continue; 6982f4c121dSRui Ueyama } 6992f4c121dSRui Ueyama 7002f4c121dSRui Ueyama // Handle a single input section description command. 7012f4c121dSRui Ueyama // It calculates and assigns the offsets for each section and also 7022f4c121dSRui Ueyama // updates the output section size. 7032f4c121dSRui Ueyama auto *Cmd = cast<InputSectionDescription>(Base); 7042f4c121dSRui Ueyama for (InputSection *Sec : Cmd->Sections) { 7052f4c121dSRui Ueyama // We tentatively added all synthetic sections at the beginning and 7062f4c121dSRui Ueyama // removed empty ones afterwards (because there is no way to know 7072f4c121dSRui Ueyama // whether they were going be empty or not other than actually running 7082f4c121dSRui Ueyama // linker scripts.) We need to ignore remains of empty sections. 7092f4c121dSRui Ueyama if (auto *S = dyn_cast<SyntheticSection>(Sec)) 7102f4c121dSRui Ueyama if (S->empty()) 7112f4c121dSRui Ueyama continue; 7122f4c121dSRui Ueyama 7132f4c121dSRui Ueyama if (!Sec->Live) 7142f4c121dSRui Ueyama continue; 7152f4c121dSRui Ueyama assert(Ctx->OutSec == Sec->getParent()); 7162f4c121dSRui Ueyama output(Sec); 7172f4c121dSRui Ueyama } 7182f4c121dSRui Ueyama } 719d3190795SRafael Espindola } 720d3190795SRafael Espindola 721b8dd23f5SRui Ueyama void LinkerScript::removeEmptyCommands() { 7226d38e4dbSRafael Espindola // It is common practice to use very generic linker scripts. So for any 7236d38e4dbSRafael Espindola // given run some of the output sections in the script will be empty. 7246d38e4dbSRafael Espindola // We could create corresponding empty output sections, but that would 7256d38e4dbSRafael Espindola // clutter the output. 7266d38e4dbSRafael Espindola // We instead remove trivially empty sections. The bfd linker seems even 7276d38e4dbSRafael Espindola // more aggressive at removing them. 7286b394caaSRui Ueyama llvm::erase_if(SectionCommands, [&](BaseCommand *Base) { 7298c022ca7SRafael Espindola if (auto *Sec = dyn_cast<OutputSection>(Base)) 7308c022ca7SRafael Espindola return !Sec->Live; 7310b1b695aSRui Ueyama return false; 7326d38e4dbSRafael Espindola }); 73307fe6129SRafael Espindola } 73407fe6129SRafael Espindola 7358c022ca7SRafael Espindola static bool isAllSectionDescription(const OutputSection &Cmd) { 7366b394caaSRui Ueyama for (BaseCommand *Base : Cmd.SectionCommands) 7378f99f73cSRui Ueyama if (!isa<InputSectionDescription>(*Base)) 7386a53737cSRafael Espindola return false; 7396a53737cSRafael Espindola return true; 7406a53737cSRafael Espindola } 7416d38e4dbSRafael Espindola 742b8dd23f5SRui Ueyama void LinkerScript::adjustSectionsBeforeSorting() { 7439546fffbSRafael Espindola // If the output section contains only symbol assignments, create a 74426fa916dSGeorge Rimar // corresponding output section. The issue is what to do with linker script 74526fa916dSGeorge Rimar // like ".foo : { symbol = 42; }". One option would be to convert it to 74626fa916dSGeorge Rimar // "symbol = 42;". That is, move the symbol out of the empty section 74726fa916dSGeorge Rimar // description. That seems to be what bfd does for this simple case. The 74826fa916dSGeorge Rimar // problem is that this is not completely general. bfd will give up and 74926fa916dSGeorge Rimar // create a dummy section too if there is a ". = . + 1" inside the section 75026fa916dSGeorge Rimar // for example. 75126fa916dSGeorge Rimar // Given that we want to create the section, we have to worry what impact 75226fa916dSGeorge Rimar // it will have on the link. For example, if we just create a section with 75326fa916dSGeorge Rimar // 0 for flags, it would change which PT_LOADs are created. 75426fa916dSGeorge Rimar // We could remember that that particular section is dummy and ignore it in 75526fa916dSGeorge Rimar // other parts of the linker, but unfortunately there are quite a few places 75626fa916dSGeorge Rimar // that would need to change: 75726fa916dSGeorge Rimar // * The program header creation. 75826fa916dSGeorge Rimar // * The orphan section placement. 75926fa916dSGeorge Rimar // * The address assignment. 76026fa916dSGeorge Rimar // The other option is to pick flags that minimize the impact the section 76126fa916dSGeorge Rimar // will have on the rest of the linker. That is why we copy the flags from 76226fa916dSGeorge Rimar // the previous sections. Only a few flags are needed to keep the impact low. 7630c1c8085SGeorge Rimar uint64_t Flags = SHF_ALLOC; 764660c9ab9SRafael Espindola 7656b394caaSRui Ueyama for (BaseCommand *Cmd : SectionCommands) { 7668962db91SGeorge Rimar auto *Sec = dyn_cast<OutputSection>(Cmd); 7678c022ca7SRafael Espindola if (!Sec) 7689546fffbSRafael Espindola continue; 7698c022ca7SRafael Espindola if (Sec->Live) { 77026fa916dSGeorge Rimar Flags = Sec->Flags & (SHF_ALLOC | SHF_WRITE | SHF_EXECINSTR); 7719546fffbSRafael Espindola continue; 7729546fffbSRafael Espindola } 7739546fffbSRafael Espindola 7748c022ca7SRafael Espindola if (isAllSectionDescription(*Sec)) 7756a53737cSRafael Espindola continue; 7766a53737cSRafael Espindola 7778c022ca7SRafael Espindola Sec->Live = true; 7788c022ca7SRafael Espindola Sec->Flags = Flags; 7799546fffbSRafael Espindola } 780f7a17448SRafael Espindola } 781f7a17448SRafael Espindola 782b8dd23f5SRui Ueyama void LinkerScript::adjustSectionsAfterSorting() { 783feed7506SRafael Espindola // Try and find an appropriate memory region to assign offsets in. 7846b394caaSRui Ueyama for (BaseCommand *Base : SectionCommands) { 7858c022ca7SRafael Espindola if (auto *Sec = dyn_cast<OutputSection>(Base)) { 786ba45584cSGeorge Rimar if (!Sec->Live) 787ba45584cSGeorge Rimar continue; 7888c022ca7SRafael Espindola Sec->MemRegion = findMemoryRegion(Sec); 789d1960dc0SRafael Espindola // Handle align (e.g. ".foo : ALIGN(16) { ... }"). 7908c022ca7SRafael Espindola if (Sec->AlignExpr) 7918befefb2SRui Ueyama Sec->Alignment = 7928befefb2SRui Ueyama std::max<uint32_t>(Sec->Alignment, Sec->AlignExpr().getValue()); 793d1960dc0SRafael Espindola } 794d1960dc0SRafael Espindola } 795feed7506SRafael Espindola 796f7a17448SRafael Espindola // If output section command doesn't specify any segments, 797f7a17448SRafael Espindola // and we haven't previously assigned any section to segment, 798f7a17448SRafael Espindola // then we simply assign section to the very first load segment. 799f7a17448SRafael Espindola // Below is an example of such linker script: 800f7a17448SRafael Espindola // PHDRS { seg PT_LOAD; } 801f7a17448SRafael Espindola // SECTIONS { .aaa : { *(.aaa) } } 802f7a17448SRafael Espindola std::vector<StringRef> DefPhdrs; 803f7a17448SRafael Espindola auto FirstPtLoad = 804ac27de9dSRui Ueyama std::find_if(PhdrsCommands.begin(), PhdrsCommands.end(), 805f7a17448SRafael Espindola [](const PhdrsCommand &Cmd) { return Cmd.Type == PT_LOAD; }); 806ac27de9dSRui Ueyama if (FirstPtLoad != PhdrsCommands.end()) 807f7a17448SRafael Espindola DefPhdrs.push_back(FirstPtLoad->Name); 808f7a17448SRafael Espindola 809f7a17448SRafael Espindola // Walk the commands and propagate the program headers to commands that don't 810f7a17448SRafael Espindola // explicitly specify them. 8116b394caaSRui Ueyama for (BaseCommand *Base : SectionCommands) { 8128c022ca7SRafael Espindola auto *Sec = dyn_cast<OutputSection>(Base); 8138c022ca7SRafael Espindola if (!Sec) 814f7a17448SRafael Espindola continue; 8158f99f73cSRui Ueyama 8168c022ca7SRafael Espindola if (Sec->Phdrs.empty()) { 817a020d348SAndrew Ng // To match the bfd linker script behaviour, only propagate program 818a020d348SAndrew Ng // headers to sections that are allocated. 8198c022ca7SRafael Espindola if (Sec->Flags & SHF_ALLOC) 8208c022ca7SRafael Espindola Sec->Phdrs = DefPhdrs; 821a020d348SAndrew Ng } else { 8228c022ca7SRafael Espindola DefPhdrs = Sec->Phdrs; 823f7a17448SRafael Espindola } 824a020d348SAndrew Ng } 8259546fffbSRafael Espindola } 8269546fffbSRafael Espindola 827582ede89SGeorge Rimar static OutputSection *findFirstSection(PhdrEntry *Load) { 828582ede89SGeorge Rimar for (OutputSection *Sec : OutputSections) 829582ede89SGeorge Rimar if (Sec->PtLoad == Load) 830582ede89SGeorge Rimar return Sec; 831582ede89SGeorge Rimar return nullptr; 832582ede89SGeorge Rimar } 833582ede89SGeorge Rimar 834b93c5b9fSPetr Hosek // Try to find an address for the file and program headers output sections, 835b93c5b9fSPetr Hosek // which were unconditionally added to the first PT_LOAD segment earlier. 836b93c5b9fSPetr Hosek // 837b93c5b9fSPetr Hosek // When using the default layout, we check if the headers fit below the first 838b93c5b9fSPetr Hosek // allocated section. When using a linker script, we also check if the headers 839b93c5b9fSPetr Hosek // are covered by the output section. This allows omitting the headers by not 840b93c5b9fSPetr Hosek // leaving enough space for them in the linker script; this pattern is common 841b93c5b9fSPetr Hosek // in embedded systems. 842b93c5b9fSPetr Hosek // 843b93c5b9fSPetr Hosek // If there isn't enough space for these sections, we'll remove them from the 844b93c5b9fSPetr Hosek // PT_LOAD segment, and we'll also remove the PT_PHDR segment. 845aa354187SGeorge Rimar void LinkerScript::allocateHeaders(std::vector<PhdrEntry *> &Phdrs) { 8465aedebffSPeter Smith uint64_t Min = std::numeric_limits<uint64_t>::max(); 8478c022ca7SRafael Espindola for (OutputSection *Sec : OutputSections) 8485aedebffSPeter Smith if (Sec->Flags & SHF_ALLOC) 8495aedebffSPeter Smith Min = std::min<uint64_t>(Min, Sec->Addr); 8505aedebffSPeter Smith 851aa354187SGeorge Rimar auto It = llvm::find_if( 852aa354187SGeorge Rimar Phdrs, [](const PhdrEntry *E) { return E->p_type == PT_LOAD; }); 853aa354187SGeorge Rimar if (It == Phdrs.end()) 854d971e703SGeorge Rimar return; 855aa354187SGeorge Rimar PhdrEntry *FirstPTLoad = *It; 85602ed7575SRafael Espindola 85702ed7575SRafael Espindola uint64_t HeaderSize = getHeaderSize(); 858b93c5b9fSPetr Hosek // When linker script with SECTIONS is being used, don't output headers 859b93c5b9fSPetr Hosek // unless there's a space for them. 860a323e2a7SRui Ueyama uint64_t Base = HasSectionsCommand ? alignDown(Min, Config->MaxPageSize) : 0; 861b93c5b9fSPetr Hosek if (HeaderSize <= Min - Base || Script->hasPhdrsCommands()) { 8621f0fe88aSRafael Espindola Min = alignDown(Min - HeaderSize, Config->MaxPageSize); 86302ed7575SRafael Espindola Out::ElfHeader->Addr = Min; 86402ed7575SRafael Espindola Out::ProgramHeaders->Addr = Min + Out::ElfHeader->Size; 865d971e703SGeorge Rimar return; 86602ed7575SRafael Espindola } 86702ed7575SRafael Espindola 868582ede89SGeorge Rimar Out::ElfHeader->PtLoad = nullptr; 869582ede89SGeorge Rimar Out::ProgramHeaders->PtLoad = nullptr; 8706823c5f0SGeorge Rimar FirstPTLoad->FirstSec = findFirstSection(FirstPTLoad); 87102ed7575SRafael Espindola 87260608a8aSGeorge Rimar llvm::erase_if(Phdrs, 87360608a8aSGeorge Rimar [](const PhdrEntry *E) { return E->p_type == PT_PHDR; }); 87402ed7575SRafael Espindola } 87502ed7575SRafael Espindola 876ac27de9dSRui Ueyama LinkerScript::AddressState::AddressState() { 877ac27de9dSRui Ueyama for (auto &MRI : Script->MemoryRegions) { 8785f37541cSGeorge Rimar const MemoryRegion *MR = MRI.second; 879906e9a18SPeter Smith MemRegionOffset[MR] = MR->Origin; 880906e9a18SPeter Smith } 881906e9a18SPeter Smith } 882906e9a18SPeter Smith 883f9b04fd9SGeorge Rimar static uint64_t getInitialDot() { 884f9b04fd9SGeorge Rimar // By default linker scripts use an initial value of 0 for '.', 885f9b04fd9SGeorge Rimar // but prefer -image-base if set. 886f9b04fd9SGeorge Rimar if (Script->HasSectionsCommand) 887f9b04fd9SGeorge Rimar return Config->ImageBase ? *Config->ImageBase : 0; 888f9b04fd9SGeorge Rimar 889f9b04fd9SGeorge Rimar uint64_t StartAddr = UINT64_MAX; 890f9b04fd9SGeorge Rimar // The Sections with -T<section> have been sorted in order of ascending 891f9b04fd9SGeorge Rimar // address. We must lower StartAddr if the lowest -T<section address> as 892f9b04fd9SGeorge Rimar // calls to setDot() must be monotonically increasing. 893f9b04fd9SGeorge Rimar for (auto &KV : Config->SectionStartMap) 894f9b04fd9SGeorge Rimar StartAddr = std::min(StartAddr, KV.second); 895f9b04fd9SGeorge Rimar return std::min(StartAddr, Target->getImageBase() + elf::getHeaderSize()); 896f9b04fd9SGeorge Rimar } 897f9b04fd9SGeorge Rimar 898f9b04fd9SGeorge Rimar // Here we assign addresses as instructed by linker script SECTIONS 899f9b04fd9SGeorge Rimar // sub-commands. Doing that allows us to use final VA values, so here 900f9b04fd9SGeorge Rimar // we also handle rest commands like symbol assignments and ASSERTs. 901b5ca92efSJames Henderson void LinkerScript::assignAddresses() { 902f9b04fd9SGeorge Rimar Dot = getInitialDot(); 90318d19687SRui Ueyama 904089dac7bSRafael Espindola auto Deleter = make_unique<AddressState>(); 905089dac7bSRafael Espindola Ctx = Deleter.get(); 90672dc195dSRafael Espindola ErrorOnMissingSection = true; 90706f4743aSRafael Espindola switchTo(Aether); 90806f4743aSRafael Espindola 9096b394caaSRui Ueyama for (BaseCommand *Base : SectionCommands) { 9108f99f73cSRui Ueyama if (auto *Cmd = dyn_cast<SymbolAssignment>(Base)) { 911d379f735SRui Ueyama assignSymbol(Cmd, false); 91205ef4cffSRui Ueyama continue; 913652852c5SGeorge Rimar } 914652852c5SGeorge Rimar 9158f99f73cSRui Ueyama if (auto *Cmd = dyn_cast<AssertCommand>(Base)) { 9164595df94SRafael Espindola Cmd->Expression(); 917eefa758eSGeorge Rimar continue; 918eefa758eSGeorge Rimar } 919eefa758eSGeorge Rimar 9208c022ca7SRafael Espindola assignOffsets(cast<OutputSection>(Base)); 921a14b13d8SGeorge Rimar } 92229b240c6SRui Ueyama Ctx = nullptr; 923fb8978fcSDima Stepanov } 924652852c5SGeorge Rimar 925464daadcSRui Ueyama // Creates program headers as instructed by PHDRS linker script command. 926aa354187SGeorge Rimar std::vector<PhdrEntry *> LinkerScript::createPhdrs() { 927aa354187SGeorge Rimar std::vector<PhdrEntry *> Ret; 928bbe38602SEugene Leviant 929464daadcSRui Ueyama // Process PHDRS and FILEHDR keywords because they are not 930464daadcSRui Ueyama // real output sections and cannot be added in the following loop. 931ac27de9dSRui Ueyama for (const PhdrsCommand &Cmd : PhdrsCommands) { 9320ae2c24cSRui Ueyama PhdrEntry *Phdr = make<PhdrEntry>(Cmd.Type, Cmd.Flags ? *Cmd.Flags : PF_R); 933bbe38602SEugene Leviant 934bbe38602SEugene Leviant if (Cmd.HasFilehdr) 935aa354187SGeorge Rimar Phdr->add(Out::ElfHeader); 936bbe38602SEugene Leviant if (Cmd.HasPhdrs) 937aa354187SGeorge Rimar Phdr->add(Out::ProgramHeaders); 93856b21c86SEugene Leviant 93956b21c86SEugene Leviant if (Cmd.LMAExpr) { 940aa354187SGeorge Rimar Phdr->p_paddr = Cmd.LMAExpr().getValue(); 941aa354187SGeorge Rimar Phdr->HasLMA = true; 94256b21c86SEugene Leviant } 943aa354187SGeorge Rimar Ret.push_back(Phdr); 944bbe38602SEugene Leviant } 945bbe38602SEugene Leviant 946464daadcSRui Ueyama // Add output sections to program headers. 9478c022ca7SRafael Espindola for (OutputSection *Sec : OutputSections) { 948bbe38602SEugene Leviant // Assign headers specified by linker script 9498c022ca7SRafael Espindola for (size_t Id : getPhdrIndices(Sec)) { 950aa354187SGeorge Rimar Ret[Id]->add(Sec); 951ac27de9dSRui Ueyama if (!PhdrsCommands[Id].Flags.hasValue()) 952aa354187SGeorge Rimar Ret[Id]->p_flags |= Sec->getPhdrFlags(); 953bbe38602SEugene Leviant } 954bbe38602SEugene Leviant } 955edebbdf1SRui Ueyama return Ret; 956bbe38602SEugene Leviant } 957bbe38602SEugene Leviant 958e03ba023SRui Ueyama // Returns true if we should emit an .interp section. 959e03ba023SRui Ueyama // 960e03ba023SRui Ueyama // We usually do. But if PHDRS commands are given, and 961e03ba023SRui Ueyama // no PT_INTERP is there, there's no place to emit an 962e03ba023SRui Ueyama // .interp, so we don't do that in that case. 963e03ba023SRui Ueyama bool LinkerScript::needsInterpSection() { 964ac27de9dSRui Ueyama if (PhdrsCommands.empty()) 965e03ba023SRui Ueyama return true; 966ac27de9dSRui Ueyama for (PhdrsCommand &Cmd : PhdrsCommands) 967e31d9886SRui Ueyama if (Cmd.Type == PT_INTERP) 968e31d9886SRui Ueyama return true; 969e03ba023SRui Ueyama return false; 970f9bc3bd2SEugene Leviant } 971f9bc3bd2SEugene Leviant 972722221f5SRui Ueyama ExprValue LinkerScript::getSymbolValue(StringRef Name, const Twine &Loc) { 973722221f5SRui Ueyama if (Name == ".") { 97429b240c6SRui Ueyama if (Ctx) 97529b240c6SRui Ueyama return {Ctx->OutSec, false, Dot - Ctx->OutSec->Addr, Loc}; 9767e5b0a59SGeorge Rimar error(Loc + ": unable to get location counter value"); 9777e5b0a59SGeorge Rimar return 0; 9787e5b0a59SGeorge Rimar } 979f5733500SRui Ueyama 980722221f5SRui Ueyama if (auto *Sym = dyn_cast_or_null<DefinedRegular>(Symtab->find(Name))) 981f5733500SRui Ueyama return {Sym->Section, false, Sym->Value, Loc}; 982f5733500SRui Ueyama 983722221f5SRui Ueyama error(Loc + ": symbol not found: " + Name); 984884e786dSGeorge Rimar return 0; 985884e786dSGeorge Rimar } 986884e786dSGeorge Rimar 987656be311SRui Ueyama // Returns the index of the segment named Name. 988656be311SRui Ueyama static Optional<size_t> getPhdrIndex(ArrayRef<PhdrsCommand> Vec, 989656be311SRui Ueyama StringRef Name) { 990656be311SRui Ueyama for (size_t I = 0; I < Vec.size(); ++I) 991656be311SRui Ueyama if (Vec[I].Name == Name) 992656be311SRui Ueyama return I; 993656be311SRui Ueyama return None; 994656be311SRui Ueyama } 995656be311SRui Ueyama 9962c923c2cSRafael Espindola // Returns indices of ELF headers containing specific section. Each index is a 9972c923c2cSRafael Espindola // zero based number of ELF header listed within PHDRS {} script block. 9988c022ca7SRafael Espindola std::vector<size_t> LinkerScript::getPhdrIndices(OutputSection *Cmd) { 99929c5a2a9SRui Ueyama std::vector<size_t> Ret; 1000656be311SRui Ueyama 1001656be311SRui Ueyama for (StringRef S : Cmd->Phdrs) { 1002ac27de9dSRui Ueyama if (Optional<size_t> Idx = getPhdrIndex(PhdrsCommands, S)) 100387223574SRui Ueyama Ret.push_back(*Idx); 1004656be311SRui Ueyama else if (S != "NONE") 1005656be311SRui Ueyama error(Cmd->Location + ": section header '" + S + 1006656be311SRui Ueyama "' is not listed in PHDRS"); 1007bbe38602SEugene Leviant } 1008656be311SRui Ueyama return Ret; 100929c5a2a9SRui Ueyama } 1010