blob: 664d468e2efed1403cc47754d67efce85f513233 [file] [log] [blame]
Michael J. Spencer84487f12015-07-24 21:03:07 +00001//===- Writer.cpp ---------------------------------------------------------===//
2//
3// The LLVM Linker
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Michael J. Spencerf8325412015-09-04 22:48:30 +000010#include "Writer.h"
Rui Ueyamacb8474ed2015-08-05 23:51:50 +000011#include "Config.h"
Rui Ueyama9b55e922017-03-24 00:15:16 +000012#include "Filesystem.h"
Rui Ueyama717677a2016-02-11 21:17:59 +000013#include "LinkerScript.h"
Rafael Espindola1ebfc592017-01-13 21:05:46 +000014#include "MapFile.h"
Rui Ueyama9381eb12016-12-18 14:06:06 +000015#include "Memory.h"
Rafael Espindola5805c4f2015-09-21 21:38:08 +000016#include "OutputSections.h"
Rui Ueyama0fcdc732016-05-24 20:24:43 +000017#include "Relocations.h"
Rui Ueyamafbbde542016-06-29 09:08:02 +000018#include "Strings.h"
Rui Ueyamaafff74e22015-08-05 23:24:46 +000019#include "SymbolTable.h"
Rui Ueyama6dc7fcb2016-11-01 20:28:21 +000020#include "SyntheticSections.h"
Rafael Espindola01205f72015-09-22 18:19:46 +000021#include "Target.h"
George Rimardbf93392017-04-17 08:58:12 +000022#include "Threads.h"
Denis Protivensky8e3b38a2015-11-12 09:52:08 +000023#include "llvm/ADT/StringMap.h"
Hal Finkel3bae2d82015-10-12 20:51:48 +000024#include "llvm/ADT/StringSwitch.h"
Rui Ueyamaafff74e22015-08-05 23:24:46 +000025#include "llvm/Support/FileOutputBuffer.h"
Rui Ueyamae8b2df42016-09-29 01:45:22 +000026#include <climits>
Michael J. Spencer84487f12015-07-24 21:03:07 +000027
28using namespace llvm;
29using namespace llvm::ELF;
30using namespace llvm::object;
Peter Smith0a259f32016-10-10 09:39:26 +000031using namespace llvm::support;
32using namespace llvm::support::endian;
Michael J. Spencer84487f12015-07-24 21:03:07 +000033
34using namespace lld;
Rafael Espindolae0df00b2016-02-28 00:25:54 +000035using namespace lld::elf;
Michael J. Spencer84487f12015-07-24 21:03:07 +000036
Rui Ueyamaafff74e22015-08-05 23:24:46 +000037namespace {
38// The writer writes a SymbolTable result to a file.
39template <class ELFT> class Writer {
40public:
Rui Ueyama9328b2c2016-03-14 23:16:09 +000041 typedef typename ELFT::Shdr Elf_Shdr;
42 typedef typename ELFT::Ehdr Elf_Ehdr;
43 typedef typename ELFT::Phdr Elf_Phdr;
Rui Ueyama0ce388b2017-04-05 21:46:06 +000044
Rui Ueyamaafff74e22015-08-05 23:24:46 +000045 void run();
46
47private:
Rui Ueyamaf83aca42016-11-01 23:17:45 +000048 void createSyntheticSections();
Rui Ueyama5a9640b2015-10-08 23:49:30 +000049 void copyLocalSymbols();
Rafael Espindola08d6a3f2017-02-11 01:40:49 +000050 void addSectionSymbols();
Rui Ueyamaf18fe7b2015-12-26 07:50:39 +000051 void addReservedSymbols();
George Rimar9e694502016-07-29 16:18:47 +000052 void createSections();
Rafael Espindolab4c9b812017-02-23 02:28:28 +000053 void forEachRelSec(std::function<void(InputSectionBase &)> Fn);
Rafael Espindola24c073d2016-09-21 22:36:19 +000054 void sortSections();
Eugene Leviante63d81b2016-07-20 14:43:20 +000055 void finalizeSections();
Rui Ueyama84417f82015-12-26 07:50:41 +000056 void addPredefinedSections();
Petr Hosek18821b62017-09-01 02:23:31 +000057 void addPredefinedSymbols();
Rui Ueyama2df0fd82015-12-25 07:38:58 +000058
George Rimaraa354182017-07-27 07:46:50 +000059 std::vector<PhdrEntry *> createPhdrs();
Rafael Espindola074ba932016-12-06 13:43:34 +000060 void removeEmptyPTLoad();
George Rimaraa354182017-07-27 07:46:50 +000061 void addPtArmExid(std::vector<PhdrEntry *> &Phdrs);
Rui Ueyamae044e9c2016-04-01 17:07:17 +000062 void assignFileOffsets();
George Rimar86ce2672016-08-25 09:05:47 +000063 void assignFileOffsetsBinary();
Rui Ueyamae044e9c2016-04-01 17:07:17 +000064 void setPhdrs();
Rui Ueyama47091902016-03-30 19:41:51 +000065 void fixSectionAlignments();
Rafael Espindola78493a22017-01-28 17:48:21 +000066 void fixPredefinedSymbols();
Rui Ueyamaf7f52ef2016-04-01 17:24:19 +000067 void openFile();
Petr Hosekedd6c352017-08-02 16:35:00 +000068 void writeTrapInstr();
Rui Ueyamaafff74e22015-08-05 23:24:46 +000069 void writeHeader();
70 void writeSections();
George Rimar86ce2672016-08-25 09:05:47 +000071 void writeSectionsBinary();
Rui Ueyama634ddf02016-03-11 20:51:53 +000072 void writeBuildId();
Rui Ueyamaafff74e22015-08-05 23:24:46 +000073
Rui Ueyama818bb2f2016-07-16 18:55:47 +000074 std::unique_ptr<FileOutputBuffer> Buffer;
Michael J. Spencer2f008242015-09-17 19:58:07 +000075
Rafael Espindola05531242017-07-06 16:40:44 +000076 OutputSectionFactory Factory;
Rafael Espindola4fc60442016-02-10 22:43:13 +000077
Rui Ueyama01687222015-12-26 09:47:57 +000078 void addRelIpltSymbols();
Rui Ueyamaa5d79d12015-12-26 09:48:00 +000079 void addStartEndSymbols();
Rafael Espindola24e6f362017-02-24 15:07:30 +000080 void addStartStopSymbols(OutputSection *Sec);
Rui Ueyama6bd38222017-04-05 21:37:09 +000081 uint64_t getEntryAddr();
Rafael Espindola8c022ca2017-07-27 19:22:43 +000082 OutputSection *findSection(StringRef Name);
Rui Ueyama2f1b79f2015-10-10 22:34:30 +000083
George Rimaraa354182017-07-27 07:46:50 +000084 std::vector<PhdrEntry *> Phdrs;
Michael J. Spencer2f008242015-09-17 19:58:07 +000085
Rui Ueyama6bd38222017-04-05 21:37:09 +000086 uint64_t FileSize;
87 uint64_t SectionHeaderOff;
Peter Smith113a59e2017-06-26 10:22:17 +000088
89 bool HasGotBaseSym = false;
Rui Ueyamaafff74e22015-08-05 23:24:46 +000090};
91} // anonymous namespace
92
Rui Ueyama55518e72016-10-28 20:57:25 +000093StringRef elf::getOutputSectionName(StringRef Name) {
George Rimar60a0ea12017-06-05 12:49:21 +000094 // ".zdebug_" is a prefix for ZLIB-compressed sections.
95 // Because we decompressed input sections, we want to remove 'z'.
96 if (Name.startswith(".zdebug_"))
97 return Saver.save("." + Name.substr(2));
98
Eugene Levianta8d12ef2016-10-05 10:10:45 +000099 if (Config->Relocatable)
100 return Name;
101
Rafael Espindola7d382732016-09-19 19:59:21 +0000102 for (StringRef V :
George Rimar1ab9cf42017-03-17 10:14:53 +0000103 {".text.", ".rodata.", ".data.rel.ro.", ".data.", ".bss.rel.ro.",
104 ".bss.", ".init_array.", ".fini_array.", ".ctors.", ".dtors.", ".tbss.",
Peter Smith691ff762017-06-28 09:12:38 +0000105 ".gcc_except_table.", ".tdata.", ".ARM.exidx.", ".ARM.extab."}) {
Rafael Espindola7d382732016-09-19 19:59:21 +0000106 StringRef Prefix = V.drop_back();
107 if (Name.startswith(V) || Name == Prefix)
108 return Prefix;
109 }
Rui Ueyama05384082016-10-12 22:36:31 +0000110
Rui Ueyamae8a61022016-11-05 23:05:47 +0000111 // CommonSection is identified as "COMMON" in linker scripts.
112 // By default, it should go to .bss section.
113 if (Name == "COMMON")
114 return ".bss";
115
George Rimar5d53d1f2016-07-12 08:50:42 +0000116 return Name;
117}
118
Rui Ueyamafd03cfd2016-07-21 11:01:23 +0000119template <class ELFT> static bool needsInterpSection() {
Rafael Espindola244ef982017-07-26 18:42:48 +0000120 return !SharedFile<ELFT>::Instances.empty() &&
George Rimara8dba482017-03-20 10:09:58 +0000121 !Config->DynamicLinker.empty() && !Script->ignoreInterpSection();
Rui Ueyamafd03cfd2016-07-21 11:01:23 +0000122}
123
George Rimard8b27762016-11-14 10:14:18 +0000124template <class ELFT> void elf::writeResult() { Writer<ELFT>().run(); }
Rafael Espindola4fc60442016-02-10 22:43:13 +0000125
Rafael Espindola074ba932016-12-06 13:43:34 +0000126template <class ELFT> void Writer<ELFT>::removeEmptyPTLoad() {
George Rimar60608a82017-08-28 09:28:15 +0000127 llvm::erase_if(Phdrs, [&](const PhdrEntry *P) {
George Rimaraa354182017-07-27 07:46:50 +0000128 if (P->p_type != PT_LOAD)
Rafael Espindola074ba932016-12-06 13:43:34 +0000129 return false;
George Rimar6823c5f2017-09-07 11:01:10 +0000130 if (!P->FirstSec)
Rafael Espindola41217612016-12-08 03:17:05 +0000131 return true;
George Rimar6823c5f2017-09-07 11:01:10 +0000132 uint64_t Size = P->LastSec->Addr + P->LastSec->Size - P->FirstSec->Addr;
Rafael Espindola074ba932016-12-06 13:43:34 +0000133 return Size == 0;
134 });
Rafael Espindola074ba932016-12-06 13:43:34 +0000135}
136
Petr Hosek7b793212017-03-10 20:00:42 +0000137template <class ELFT> static void combineEhFrameSections() {
138 for (InputSectionBase *&S : InputSections) {
139 EhInputSection *ES = dyn_cast<EhInputSection>(S);
Rafael Espindolaa1565552017-03-15 12:31:54 +0000140 if (!ES || !ES->Live)
Petr Hosek7b793212017-03-10 20:00:42 +0000141 continue;
142
143 In<ELFT>::EhFrame->addSection(ES);
144 S = nullptr;
145 }
146
147 std::vector<InputSectionBase *> &V = InputSections;
148 V.erase(std::remove(V.begin(), V.end(), nullptr), V.end());
149}
150
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000151// The main function of the writer.
152template <class ELFT> void Writer<ELFT>::run() {
Rui Ueyama0b1b6952016-11-21 02:11:05 +0000153 // Create linker-synthesized sections such as .got or .plt.
154 // Such sections are of type input section.
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000155 createSyntheticSections();
George Rimar7beff422016-11-15 08:19:02 +0000156
Petr Hosek7b793212017-03-10 20:00:42 +0000157 if (!Config->Relocatable)
158 combineEhFrameSections<ELFT>();
159
Rui Ueyama0b1b6952016-11-21 02:11:05 +0000160 // We need to create some reserved symbols such as _end. Create them.
George Rimar7beff422016-11-15 08:19:02 +0000161 if (!Config->Relocatable)
162 addReservedSymbols();
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000163
Rui Ueyama0b1b6952016-11-21 02:11:05 +0000164 // Create output sections.
Rui Ueyamaa34da932017-03-21 23:03:09 +0000165 if (Script->Opt.HasSections) {
Rui Ueyama0b1b6952016-11-21 02:11:05 +0000166 // If linker script contains SECTIONS commands, let it create sections.
George Rimara8dba482017-03-20 10:09:58 +0000167 Script->processCommands(Factory);
Rui Ueyama0b1b6952016-11-21 02:11:05 +0000168
169 // Linker scripts may have left some input sections unassigned.
170 // Assign such sections using the default rule.
George Rimara8dba482017-03-20 10:09:58 +0000171 Script->addOrphanSections(Factory);
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000172 } else {
Rui Ueyama0b1b6952016-11-21 02:11:05 +0000173 // If linker script does not contain SECTIONS commands, create
174 // output sections by default rules. We still need to give the
175 // linker script a chance to run, because it might contain
176 // non-SECTIONS commands such as ASSERT.
George Rimara8dba482017-03-20 10:09:58 +0000177 Script->processCommands(Factory);
Rafael Espindola21263342017-07-05 23:36:24 +0000178 createSections();
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000179 }
180
181 if (Config->Discard != DiscardPolicy::All)
182 copyLocalSymbols();
183
Rui Ueyamad57e74b72017-03-17 23:29:01 +0000184 if (Config->CopyRelocs)
Rafael Espindola08d6a3f2017-02-11 01:40:49 +0000185 addSectionSymbols();
186
Rui Ueyama0b1b6952016-11-21 02:11:05 +0000187 // Now that we have a complete set of output sections. This function
188 // completes section contents. For example, we need to add strings
189 // to the string table, and add entries to .got and .plt.
190 // finalizeSections does that.
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000191 finalizeSections();
Rui Ueyamaf373dd72016-11-24 01:43:21 +0000192 if (ErrorCount)
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000193 return;
194
Rafael Espindola55b169b2017-05-24 18:08:04 +0000195 // If -compressed-debug-sections is specified, we need to compress
196 // .debug_* sections. Do it right now because it changes the size of
197 // output sections.
George Rimara9b07142017-08-04 08:30:16 +0000198 parallelForEach(OutputSections,
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000199 [](OutputSection *Sec) { Sec->maybeCompress<ELFT>(); });
Rafael Espindola805f5152017-06-01 16:30:12 +0000200
Petr Hosek18821b62017-09-01 02:23:31 +0000201 // Generate assignments for predefined symbols (e.g. _end or _etext)
202 // before assigning addresses. These symbols may be referred to from
203 // the linker script and we need to ensure they have the correct value
204 // prior evaluating any expressions using these symbols.
205 addPredefinedSymbols();
206
Peter Smith5aedebf2017-07-05 09:12:54 +0000207 Script->assignAddresses();
208 Script->allocateHeaders(Phdrs);
Rafael Espindola189860c2017-06-07 02:24:08 +0000209
210 // Remove empty PT_LOAD to avoid causing the dynamic linker to try to mmap a
211 // 0 sized region. This has to be done late since only after assignAddresses
212 // we know the size of the sections.
213 removeEmptyPTLoad();
214
215 if (!Config->OFormatBinary)
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000216 assignFileOffsets();
Rafael Espindola189860c2017-06-07 02:24:08 +0000217 else
218 assignFileOffsetsBinary();
219
220 setPhdrs();
221
222 if (Config->Relocatable) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000223 for (OutputSection *Sec : OutputSections)
224 Sec->Addr = 0;
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000225 } else {
Rafael Espindola78493a22017-01-28 17:48:21 +0000226 fixPredefinedSymbols();
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000227 }
228
George Rimar2ddab6d2017-01-17 13:50:34 +0000229 // It does not make sense try to open the file if we have error already.
230 if (ErrorCount)
231 return;
Rui Ueyama0b1b6952016-11-21 02:11:05 +0000232 // Write the result down to a file.
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000233 openFile();
Rui Ueyamaf373dd72016-11-24 01:43:21 +0000234 if (ErrorCount)
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000235 return;
Rafael Espindola3f235c72017-06-01 16:32:58 +0000236
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000237 if (!Config->OFormatBinary) {
Petr Hosekedd6c352017-08-02 16:35:00 +0000238 writeTrapInstr();
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000239 writeHeader();
240 writeSections();
241 } else {
242 writeSectionsBinary();
243 }
Rui Ueyama0b1b6952016-11-21 02:11:05 +0000244
245 // Backfill .note.gnu.build-id section content. This is done at last
246 // because the content is usually a hash value of the entire output file.
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000247 writeBuildId();
Rui Ueyamaf373dd72016-11-24 01:43:21 +0000248 if (ErrorCount)
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000249 return;
Rui Ueyama0b1b6952016-11-21 02:11:05 +0000250
Rui Ueyama40eaa992017-01-18 03:34:38 +0000251 // Handle -Map option.
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000252 writeMapFile<ELFT>();
Rui Ueyama40eaa992017-01-18 03:34:38 +0000253 if (ErrorCount)
254 return;
255
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000256 if (auto EC = Buffer->commit())
Rui Ueyamac8d3a832017-01-12 22:18:04 +0000257 error("failed to write to the output file: " + EC.message());
Rui Ueyama0b1b6952016-11-21 02:11:05 +0000258
259 // Flush the output streams and exit immediately. A full shutdown
260 // is a good test that we are keeping track of all allocated memory,
261 // but actually freeing it is a waste of time in a regular linker run.
262 if (Config->ExitEarly)
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000263 exitLld(0);
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000264}
265
Rui Ueyama9d1bacb12017-02-27 02:31:26 +0000266// Initialize Out members.
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000267template <class ELFT> void Writer<ELFT>::createSyntheticSections() {
268 // Initialize all pointers with NULL. This is needed because
269 // you can call lld::elf::main more than once as a library.
Rui Ueyama9d1bacb12017-02-27 02:31:26 +0000270 memset(&Out::First, 0, sizeof(Out));
Rui Ueyamacfadbd92016-11-01 23:12:51 +0000271
Rui Ueyama536a2672017-02-27 02:32:08 +0000272 auto Add = [](InputSectionBase *Sec) { InputSections.push_back(Sec); };
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000273
Rafael Espindola895aea62017-05-11 22:02:41 +0000274 InX::DynStrTab = make<StringTableSection>(".dynstr", true);
Rafael Espindola5ab19892017-05-11 23:16:43 +0000275 InX::Dynamic = make<DynamicSection<ELFT>>();
Eugene Levianta96d9022016-11-16 10:02:27 +0000276 In<ELFT>::RelaDyn = make<RelocationSection<ELFT>>(
Rui Ueyamad57e74b72017-03-17 23:29:01 +0000277 Config->IsRela ? ".rela.dyn" : ".rel.dyn", Config->ZCombreloc);
Rafael Espindola895aea62017-05-11 22:02:41 +0000278 InX::ShStrTab = make<StringTableSection>(".shstrtab", false);
Rui Ueyama4197a6a2016-02-05 18:41:40 +0000279
Rui Ueyama9d1bacb12017-02-27 02:31:26 +0000280 Out::ElfHeader = make<OutputSection>("", 0, SHF_ALLOC);
281 Out::ElfHeader->Size = sizeof(Elf_Ehdr);
282 Out::ProgramHeaders = make<OutputSection>("", 0, SHF_ALLOC);
Rui Ueyama6bd38222017-04-05 21:37:09 +0000283 Out::ProgramHeaders->updateAlignment(Config->Wordsize);
Rui Ueyama4197a6a2016-02-05 18:41:40 +0000284
Rui Ueyamae8a61022016-11-05 23:05:47 +0000285 if (needsInterpSection<ELFT>()) {
Rafael Espindola895aea62017-05-11 22:02:41 +0000286 InX::Interp = createInterpSection();
287 Add(InX::Interp);
Rui Ueyamae8a61022016-11-05 23:05:47 +0000288 } else {
Rafael Espindola895aea62017-05-11 22:02:41 +0000289 InX::Interp = nullptr;
Rui Ueyamae8a61022016-11-05 23:05:47 +0000290 }
Rui Ueyama3a41be22016-04-07 22:49:21 +0000291
George Rimarf21aade2016-08-31 08:38:11 +0000292 if (Config->Strip != StripPolicy::All) {
Rafael Espindola895aea62017-05-11 22:02:41 +0000293 InX::StrTab = make<StringTableSection>(".strtab", false);
George Rimarf45f6812017-05-16 08:53:30 +0000294 InX::SymTab = make<SymbolTableSection<ELFT>>(*InX::StrTab);
Rui Ueyama4197a6a2016-02-05 18:41:40 +0000295 }
Rui Ueyamacfadbd92016-11-01 23:12:51 +0000296
Rui Ueyamac4030a12016-11-22 00:54:15 +0000297 if (Config->BuildId != BuildIdKind::None) {
Rafael Espindola895aea62017-05-11 22:02:41 +0000298 InX::BuildId = make<BuildIdSection>();
299 Add(InX::BuildId);
Rui Ueyamac4030a12016-11-22 00:54:15 +0000300 }
Rui Ueyamae8a61022016-11-05 23:05:47 +0000301
Rafael Espindola895aea62017-05-11 22:02:41 +0000302 InX::Common = createCommonSection<ELFT>();
303 if (InX::Common)
George Rimar176d6062017-03-17 13:31:07 +0000304 Add(InX::Common);
Simon Atanasyance02cf02016-11-09 21:36:56 +0000305
Rafael Espindola895aea62017-05-11 22:02:41 +0000306 InX::Bss = make<BssSection>(".bss");
307 Add(InX::Bss);
308 InX::BssRelRo = make<BssSection>(".bss.rel.ro");
309 Add(InX::BssRelRo);
George Rimar1ab9cf42017-03-17 10:14:53 +0000310
Rui Ueyama1d75de02016-11-22 04:28:39 +0000311 // Add MIPS-specific sections.
Rafael Espindola244ef982017-07-26 18:42:48 +0000312 bool HasDynSymTab = !SharedFile<ELFT>::Instances.empty() || Config->Pic ||
313 Config->ExportDynamic;
Simon Atanasyance02cf02016-11-09 21:36:56 +0000314 if (Config->EMachine == EM_MIPS) {
George Rimar11992c862016-11-25 08:05:41 +0000315 if (!Config->Shared && HasDynSymTab) {
Rafael Espindola895aea62017-05-11 22:02:41 +0000316 InX::MipsRldMap = make<MipsRldMapSection>();
317 Add(InX::MipsRldMap);
Eugene Leviant17b7a572016-11-22 17:49:14 +0000318 }
Rui Ueyama1d75de02016-11-22 04:28:39 +0000319 if (auto *Sec = MipsAbiFlagsSection<ELFT>::create())
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000320 Add(Sec);
Rui Ueyama1d75de02016-11-22 04:28:39 +0000321 if (auto *Sec = MipsOptionsSection<ELFT>::create())
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000322 Add(Sec);
Rui Ueyama1d75de02016-11-22 04:28:39 +0000323 if (auto *Sec = MipsReginfoSection<ELFT>::create())
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000324 Add(Sec);
Simon Atanasyance02cf02016-11-09 21:36:56 +0000325 }
Eugene Leviant41ca3272016-11-10 09:48:29 +0000326
George Rimar11992c862016-11-25 08:05:41 +0000327 if (HasDynSymTab) {
George Rimar69b17c32017-05-16 10:04:42 +0000328 InX::DynSymTab = make<SymbolTableSection<ELFT>>(*InX::DynStrTab);
329 Add(InX::DynSymTab);
George Rimar11992c862016-11-25 08:05:41 +0000330
331 In<ELFT>::VerSym = make<VersionTableSection<ELFT>>();
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000332 Add(In<ELFT>::VerSym);
George Rimar11992c862016-11-25 08:05:41 +0000333
334 if (!Config->VersionDefinitions.empty()) {
335 In<ELFT>::VerDef = make<VersionDefinitionSection<ELFT>>();
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000336 Add(In<ELFT>::VerDef);
George Rimar11992c862016-11-25 08:05:41 +0000337 }
338
339 In<ELFT>::VerNeed = make<VersionNeedSection<ELFT>>();
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000340 Add(In<ELFT>::VerNeed);
George Rimar11992c862016-11-25 08:05:41 +0000341
342 if (Config->GnuHash) {
George Rimar69b17c32017-05-16 10:04:42 +0000343 InX::GnuHashTab = make<GnuHashTableSection>();
344 Add(InX::GnuHashTab);
George Rimar11992c862016-11-25 08:05:41 +0000345 }
346
347 if (Config->SysvHash) {
348 In<ELFT>::HashTab = make<HashTableSection<ELFT>>();
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000349 Add(In<ELFT>::HashTab);
George Rimar11992c862016-11-25 08:05:41 +0000350 }
351
Rafael Espindola5ab19892017-05-11 23:16:43 +0000352 Add(InX::Dynamic);
Rafael Espindola895aea62017-05-11 22:02:41 +0000353 Add(InX::DynStrTab);
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000354 Add(In<ELFT>::RelaDyn);
George Rimar11992c862016-11-25 08:05:41 +0000355 }
356
Rui Ueyama1d75de02016-11-22 04:28:39 +0000357 // Add .got. MIPS' .got is so different from the other archs,
358 // it has its own class.
George Rimar11992c862016-11-25 08:05:41 +0000359 if (Config->EMachine == EM_MIPS) {
Rafael Espindolab3aa2c92017-05-11 21:33:30 +0000360 InX::MipsGot = make<MipsGotSection>();
361 Add(InX::MipsGot);
George Rimar11992c862016-11-25 08:05:41 +0000362 } else {
Rafael Espindolaa6465bb2017-05-18 16:45:36 +0000363 InX::Got = make<GotSection>();
Rafael Espindola88ab9fb2017-05-11 23:26:03 +0000364 Add(InX::Got);
George Rimar11992c862016-11-25 08:05:41 +0000365 }
Simon Atanasyan725dc142016-11-16 21:01:02 +0000366
Rafael Espindola4b1c3692017-05-11 21:23:38 +0000367 InX::GotPlt = make<GotPltSection>();
368 Add(InX::GotPlt);
Rafael Espindola895aea62017-05-11 22:02:41 +0000369 InX::IgotPlt = make<IgotPltSection>();
370 Add(InX::IgotPlt);
George Rimar3fb5a6d2016-11-29 16:05:27 +0000371
372 if (Config->GdbIndex) {
Rafael Espindola300b3862017-07-12 23:56:53 +0000373 InX::GdbIndex = createGdbIndex<ELFT>();
Rafael Espindola895aea62017-05-11 22:02:41 +0000374 Add(InX::GdbIndex);
George Rimar3fb5a6d2016-11-29 16:05:27 +0000375 }
376
377 // We always need to add rel[a].plt to output if it has entries.
378 // Even for static linking it can contain R_[*]_IRELATIVE relocations.
379 In<ELFT>::RelaPlt = make<RelocationSection<ELFT>>(
Rui Ueyamad57e74b72017-03-17 23:29:01 +0000380 Config->IsRela ? ".rela.plt" : ".rel.plt", false /*Sort*/);
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000381 Add(In<ELFT>::RelaPlt);
George Rimar3fb5a6d2016-11-29 16:05:27 +0000382
Peter Smithbaffdb82016-12-08 12:58:55 +0000383 // The RelaIplt immediately follows .rel.plt (.rel.dyn for ARM) to ensure
384 // that the IRelative relocations are processed last by the dynamic loader
385 In<ELFT>::RelaIplt = make<RelocationSection<ELFT>>(
386 (Config->EMachine == EM_ARM) ? ".rel.dyn" : In<ELFT>::RelaPlt->Name,
387 false /*Sort*/);
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000388 Add(In<ELFT>::RelaIplt);
Peter Smithbaffdb82016-12-08 12:58:55 +0000389
Rafael Espindola895aea62017-05-11 22:02:41 +0000390 InX::Plt = make<PltSection>(Target->PltHeaderSize);
391 Add(InX::Plt);
392 InX::Iplt = make<PltSection>(0);
393 Add(InX::Iplt);
George Rimar3fb5a6d2016-11-29 16:05:27 +0000394
Rafael Espindola66b4e212017-02-23 22:06:28 +0000395 if (!Config->Relocatable) {
George Rimar1c74c2f2017-03-09 08:45:25 +0000396 if (Config->EhFrameHdr) {
397 In<ELFT>::EhFrameHdr = make<EhFrameHeader<ELFT>>();
398 Add(In<ELFT>::EhFrameHdr);
399 }
Rafael Espindola66b4e212017-02-23 22:06:28 +0000400 In<ELFT>::EhFrame = make<EhFrameSection<ELFT>>();
401 Add(In<ELFT>::EhFrame);
402 }
403
George Rimar69b17c32017-05-16 10:04:42 +0000404 if (InX::SymTab)
405 Add(InX::SymTab);
Rafael Espindola895aea62017-05-11 22:02:41 +0000406 Add(InX::ShStrTab);
407 if (InX::StrTab)
408 Add(InX::StrTab);
Michael J. Spencer84487f12015-07-24 21:03:07 +0000409}
410
Rafael Espindola5616adf2017-03-08 22:36:28 +0000411static bool shouldKeepInSymtab(SectionBase *Sec, StringRef SymName,
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +0000412 const SymbolBody &B) {
Rafael Espindola08d6a3f2017-02-11 01:40:49 +0000413 if (B.isFile() || B.isSection())
Rafael Espindola10d71ff2016-01-27 18:04:26 +0000414 return false;
415
Rafael Espindola10d71ff2016-01-27 18:04:26 +0000416 // If sym references a section in a discarded group, don't keep it.
Rafael Espindola774ea7d2017-02-23 16:49:07 +0000417 if (Sec == &InputSection::Discarded)
Rafael Espindola10d71ff2016-01-27 18:04:26 +0000418 return false;
419
George Rimar9503f6d2016-08-31 08:46:30 +0000420 if (Config->Discard == DiscardPolicy::None)
Rafael Espindola10d71ff2016-01-27 18:04:26 +0000421 return true;
422
423 // In ELF assembly .L symbols are normally discarded by the assembler.
424 // If the assembler fails to do so, the linker discards them if
425 // * --discard-locals is used.
426 // * The symbol is in a SHF_MERGE section, which is normally the reason for
427 // the assembler keeping the .L symbol.
428 if (!SymName.startswith(".L") && !SymName.empty())
429 return true;
430
George Rimar9503f6d2016-08-31 08:46:30 +0000431 if (Config->Discard == DiscardPolicy::Locals)
Rafael Espindola10d71ff2016-01-27 18:04:26 +0000432 return false;
433
Rafael Espindola1854a8e2016-10-26 12:36:56 +0000434 return !Sec || !(Sec->Flags & SHF_MERGE);
Rafael Espindola10d71ff2016-01-27 18:04:26 +0000435}
436
George Rimar7702bc22017-03-16 11:20:02 +0000437static bool includeInSymtab(const SymbolBody &B) {
Rafael Espindola474eb012016-05-05 16:40:28 +0000438 if (!B.isLocal() && !B.symbol()->IsUsedInRegularObj)
439 return false;
440
Rui Ueyama80474a22017-02-28 19:29:55 +0000441 if (auto *D = dyn_cast<DefinedRegular>(&B)) {
Rafael Espindola474eb012016-05-05 16:40:28 +0000442 // Always include absolute symbols.
Rafael Espindola5616adf2017-03-08 22:36:28 +0000443 SectionBase *Sec = D->Section;
444 if (!Sec)
Rafael Espindola474eb012016-05-05 16:40:28 +0000445 return true;
Rafael Espindola5616adf2017-03-08 22:36:28 +0000446 if (auto *IS = dyn_cast<InputSectionBase>(Sec)) {
447 Sec = IS->Repl;
448 IS = cast<InputSectionBase>(Sec);
449 // Exclude symbols pointing to garbage-collected sections.
450 if (!IS->Live)
451 return false;
452 }
453 if (auto *S = dyn_cast<MergeInputSection>(Sec))
Rui Ueyama90fa3722016-05-22 00:41:38 +0000454 if (!S->getSectionPiece(D->Value)->Live)
Rafael Espindola474eb012016-05-05 16:40:28 +0000455 return false;
Rui Ueyama9c77d272017-08-10 15:54:27 +0000456 return true;
Rafael Espindola474eb012016-05-05 16:40:28 +0000457 }
Rui Ueyama9c77d272017-08-10 15:54:27 +0000458
459 if (auto *Sym = dyn_cast<DefinedCommon>(&B))
460 return Sym->Live;
Rafael Espindola474eb012016-05-05 16:40:28 +0000461 return true;
462}
Rafael Espindola462220d2016-05-05 16:38:46 +0000463
Rui Ueyama5a9640b2015-10-08 23:49:30 +0000464// Local symbols are not in the linker's symbol table. This function scans
465// each object file's symbol table to copy local symbols to the output.
466template <class ELFT> void Writer<ELFT>::copyLocalSymbols() {
George Rimar69b17c32017-05-16 10:04:42 +0000467 if (!InX::SymTab)
Rui Ueyama90f76fb2016-01-21 03:07:38 +0000468 return;
Rui Ueyama709fb2bb12017-07-26 22:13:32 +0000469 for (ObjFile<ELFT> *F : ObjFile<ELFT>::Instances) {
Rafael Espindola67d72c02016-03-11 12:06:30 +0000470 for (SymbolBody *B : F->getLocalSymbols()) {
George Rimar78fe56e2016-10-11 09:07:14 +0000471 if (!B->IsLocal)
Rui Ueyama3fc0f7e2016-11-23 18:07:33 +0000472 fatal(toString(F) +
George Rimar78fe56e2016-10-11 09:07:14 +0000473 ": broken object: getLocalSymbols returns a non-local symbol");
Rui Ueyama80474a22017-02-28 19:29:55 +0000474 auto *DR = dyn_cast<DefinedRegular>(B);
Rui Ueyama3fc0f7e2016-11-23 18:07:33 +0000475
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +0000476 // No reason to keep local undefined symbol in symtab.
477 if (!DR)
Rafael Espindola444576d2015-10-09 19:25:07 +0000478 continue;
George Rimar7702bc22017-03-16 11:20:02 +0000479 if (!includeInSymtab(*B))
Rafael Espindola462220d2016-05-05 16:38:46 +0000480 continue;
Rui Ueyama3fc0f7e2016-11-23 18:07:33 +0000481
Rafael Espindola5616adf2017-03-08 22:36:28 +0000482 SectionBase *Sec = DR->Section;
George Rimar7702bc22017-03-16 11:20:02 +0000483 if (!shouldKeepInSymtab(Sec, B->getName(), *B))
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +0000484 continue;
George Rimar69b17c32017-05-16 10:04:42 +0000485 InX::SymTab->addSymbol(B);
Rui Ueyama5a9640b2015-10-08 23:49:30 +0000486 }
487 }
488}
489
Rafael Espindola08d6a3f2017-02-11 01:40:49 +0000490template <class ELFT> void Writer<ELFT>::addSectionSymbols() {
491 // Create one STT_SECTION symbol for each output section we might
492 // have a relocation with.
Rafael Espindolad48b2082017-07-04 19:08:40 +0000493 for (BaseCommand *Base : Script->Opt.Commands) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000494 auto *Sec = dyn_cast<OutputSection>(Base);
495 if (!Sec)
Rui Ueyama73d29ab2017-02-28 19:43:54 +0000496 continue;
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000497 auto I = llvm::find_if(Sec->Commands, [](BaseCommand *Base) {
Rafael Espindolad48b2082017-07-04 19:08:40 +0000498 if (auto *ISD = dyn_cast<InputSectionDescription>(Base))
499 return !ISD->Sections.empty();
500 return false;
501 });
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000502 if (I == Sec->Commands.end())
Rafael Espindolad48b2082017-07-04 19:08:40 +0000503 continue;
504 InputSection *IS = cast<InputSectionDescription>(*I)->Sections[0];
Rui Ueyama73d29ab2017-02-28 19:43:54 +0000505 if (isa<SyntheticSection>(IS) || IS->Type == SHT_REL ||
Rafael Espindola08d6a3f2017-02-11 01:40:49 +0000506 IS->Type == SHT_RELA)
507 continue;
Rafael Espindola08d6a3f2017-02-11 01:40:49 +0000508
Rui Ueyama175e81c2017-02-28 19:36:30 +0000509 auto *Sym =
510 make<DefinedRegular>("", /*IsLocal=*/true, /*StOther=*/0, STT_SECTION,
Rafael Espindola6e93d052017-08-04 22:31:42 +0000511 /*Value=*/0, /*Size=*/0, IS);
George Rimar69b17c32017-05-16 10:04:42 +0000512 InX::SymTab->addSymbol(Sym);
Rafael Espindola08d6a3f2017-02-11 01:40:49 +0000513 }
514}
515
Rui Ueyama26ad0572017-02-16 04:51:46 +0000516// Today's loaders have a feature to make segments read-only after
517// processing dynamic relocations to enhance security. PT_GNU_RELRO
518// is defined for that.
519//
520// This function returns true if a section needs to be put into a
521// PT_GNU_RELRO segment.
Rafael Espindoladc49af92017-07-24 23:55:33 +0000522static bool isRelroSection(const OutputSection *Sec) {
Rafael Espindola4fc60442016-02-10 22:43:13 +0000523 if (!Config->ZRelro)
524 return false;
Rui Ueyama26ad0572017-02-16 04:51:46 +0000525
Rafael Espindolae08e78d2016-11-09 23:23:45 +0000526 uint64_t Flags = Sec->Flags;
Rui Ueyama9d773f32017-04-13 05:40:07 +0000527
528 // Non-allocatable or non-writable sections don't need RELRO because
529 // they are not writable or not even mapped to memory in the first place.
530 // RELRO is for sections that are essentially read-only but need to
531 // be writable only at process startup to allow dynamic linker to
532 // apply relocations.
George Rimare3336c02015-11-24 10:15:50 +0000533 if (!(Flags & SHF_ALLOC) || !(Flags & SHF_WRITE))
534 return false;
Rui Ueyama9d773f32017-04-13 05:40:07 +0000535
536 // Once initialized, TLS data segments are used as data templates
537 // for a thread-local storage. For each new thread, runtime
538 // allocates memory for a TLS and copy templates there. No thread
539 // are supposed to use templates directly. Thus, it can be in RELRO.
Rui Ueyamaccfc3262015-12-10 19:13:08 +0000540 if (Flags & SHF_TLS)
541 return true;
Rui Ueyama26ad0572017-02-16 04:51:46 +0000542
Rui Ueyama9d773f32017-04-13 05:40:07 +0000543 // .init_array, .preinit_array and .fini_array contain pointers to
544 // functions that are executed on process startup or exit. These
545 // pointers are set by the static linker, and they are not expected
546 // to change at runtime. But if you are an attacker, you could do
547 // interesting things by manipulating pointers in .fini_array, for
548 // example. So they are put into RELRO.
Rafael Espindola04a2e342016-11-09 01:42:41 +0000549 uint32_t Type = Sec->Type;
Rui Ueyamaccfc3262015-12-10 19:13:08 +0000550 if (Type == SHT_INIT_ARRAY || Type == SHT_FINI_ARRAY ||
551 Type == SHT_PREINIT_ARRAY)
George Rimare3336c02015-11-24 10:15:50 +0000552 return true;
Rui Ueyama26ad0572017-02-16 04:51:46 +0000553
Rui Ueyama9d773f32017-04-13 05:40:07 +0000554 // .got contains pointers to external symbols. They are resolved by
555 // the dynamic linker when a module is loaded into memory, and after
556 // that they are not expected to change. So, it can be in RELRO.
Rafael Espindoladb5e56f2017-05-31 20:17:44 +0000557 if (InX::Got && Sec == InX::Got->getParent())
Simon Atanasyan725dc142016-11-16 21:01:02 +0000558 return true;
Rui Ueyama9d773f32017-04-13 05:40:07 +0000559
560 // .got.plt contains pointers to external function symbols. They are
561 // by default resolved lazily, so we usually cannot put it into RELRO.
562 // However, if "-z now" is given, the lazy symbol resolution is
563 // disabled, which enables us to put it into RELRO.
Rafael Espindoladb5e56f2017-05-31 20:17:44 +0000564 if (Sec == InX::GotPlt->getParent())
Rui Ueyama9d773f32017-04-13 05:40:07 +0000565 return Config->ZNow;
566
567 // .dynamic section contains data for the dynamic linker, and
568 // there's no need to write to it at runtime, so it's better to put
569 // it into RELRO.
Rafael Espindoladb5e56f2017-05-31 20:17:44 +0000570 if (Sec == InX::Dynamic->getParent())
Rui Ueyama9d773f32017-04-13 05:40:07 +0000571 return true;
572
573 // .bss.rel.ro is used for copy relocations for read-only symbols.
574 // Since the dynamic linker needs to process copy relocations, the
575 // section cannot be read-only, but once initialized, they shouldn't
576 // change.
Rafael Espindoladb5e56f2017-05-31 20:17:44 +0000577 if (Sec == InX::BssRelRo->getParent())
Peter Collingbournefeb66292017-01-10 01:21:50 +0000578 return true;
Rui Ueyama26ad0572017-02-16 04:51:46 +0000579
Rui Ueyama9d773f32017-04-13 05:40:07 +0000580 // Sections with some special names are put into RELRO. This is a
581 // bit unfortunate because section names shouldn't be significant in
582 // ELF in spirit. But in reality many linker features depend on
583 // magic section names.
Rafael Espindola40849412017-02-24 14:28:00 +0000584 StringRef S = Sec->Name;
Rui Ueyama01faef02015-12-10 19:19:04 +0000585 return S == ".data.rel.ro" || S == ".ctors" || S == ".dtors" || S == ".jcr" ||
George Rimard003c7f2016-12-20 11:28:54 +0000586 S == ".eh_frame" || S == ".openbsd.randomdata";
George Rimare3336c02015-11-24 10:15:50 +0000587}
588
Rafael Espindola52101412017-05-12 14:52:22 +0000589// We compute a rank for each section. The rank indicates where the
590// section should be placed in the file. Instead of using simple
591// numbers (0,1,2...), we use a series of flags. One for each decision
592// point when placing the section.
593// Using flags has two key properties:
594// * It is easy to check if a give branch was taken.
595// * It is easy two see how similar two ranks are (see getRankProximity).
596enum RankFlags {
Rafael Espindolad23e9262017-05-26 17:23:25 +0000597 RF_NOT_ADDR_SET = 1 << 16,
598 RF_NOT_INTERP = 1 << 15,
599 RF_NOT_ALLOC = 1 << 14,
600 RF_WRITE = 1 << 13,
601 RF_EXEC_WRITE = 1 << 12,
Rafael Espindola246c1c42017-05-18 16:20:12 +0000602 RF_EXEC = 1 << 11,
603 RF_NON_TLS_BSS = 1 << 10,
604 RF_NON_TLS_BSS_RO = 1 << 9,
605 RF_NOT_TLS = 1 << 8,
606 RF_BSS = 1 << 7,
607 RF_PPC_NOT_TOCBSS = 1 << 6,
608 RF_PPC_OPD = 1 << 5,
609 RF_PPC_TOCL = 1 << 4,
610 RF_PPC_TOC = 1 << 3,
611 RF_PPC_BRANCH_LT = 1 << 2,
612 RF_MIPS_GPREL = 1 << 1,
613 RF_MIPS_NOT_GOT = 1 << 0
Rafael Espindola52101412017-05-12 14:52:22 +0000614};
Rui Ueyamae288eef2016-11-02 18:58:44 +0000615
Rafael Espindola52101412017-05-12 14:52:22 +0000616static unsigned getSectionRank(const OutputSection *Sec) {
617 unsigned Rank = 0;
Rui Ueyama5a9640b2015-10-08 23:49:30 +0000618
Rafael Espindola5967c972016-12-19 21:21:07 +0000619 // We want to put section specified by -T option first, so we
620 // can start assigning VA starting from them later.
Rafael Espindola52101412017-05-12 14:52:22 +0000621 if (Config->SectionStartMap.count(Sec->Name))
622 return Rank;
623 Rank |= RF_NOT_ADDR_SET;
624
625 // Put .interp first because some loaders want to see that section
626 // on the first page of the executable file when loaded into memory.
627 if (Sec->Name == ".interp")
628 return Rank;
629 Rank |= RF_NOT_INTERP;
630
631 // Allocatable sections go first to reduce the total PT_LOAD size and
632 // so debug info doesn't change addresses in actual code.
633 if (!(Sec->Flags & SHF_ALLOC))
634 return Rank | RF_NOT_ALLOC;
Rafael Espindola5967c972016-12-19 21:21:07 +0000635
Rafael Espindolad23e9262017-05-26 17:23:25 +0000636 // Sort sections based on their access permission in the following
637 // order: R, RX, RWX, RW. This order is based on the following
638 // considerations:
639 // * Read-only sections come first such that they go in the
640 // PT_LOAD covering the program headers at the start of the file.
641 // * Read-only, executable sections come next, unless the
642 // -no-rosegment option is used.
643 // * Writable, executable sections follow such that .plt on
644 // architectures where it needs to be writable will be placed
645 // between .text and .data.
646 // * Writable sections come last, such that .bss lands at the very
647 // end of the last PT_LOAD.
648 bool IsExec = Sec->Flags & SHF_EXECINSTR;
649 bool IsWrite = Sec->Flags & SHF_WRITE;
Rui Ueyama5a9640b2015-10-08 23:49:30 +0000650
Rafael Espindolad23e9262017-05-26 17:23:25 +0000651 if (IsExec) {
652 if (IsWrite)
653 Rank |= RF_EXEC_WRITE;
654 else if (!Config->SingleRoRx)
Rafael Espindola52101412017-05-12 14:52:22 +0000655 Rank |= RF_EXEC;
Rafael Espindolad23e9262017-05-26 17:23:25 +0000656 } else {
657 if (IsWrite)
658 Rank |= RF_WRITE;
Rafael Espindolae979fd12016-09-29 22:48:55 +0000659 }
Rui Ueyama5a9640b2015-10-08 23:49:30 +0000660
Hal Finkel0d7e83b2015-10-13 17:57:46 +0000661 // If we got here we know that both A and B are in the same PT_LOAD.
Michael J. Spencer1bf73002015-10-16 23:11:07 +0000662
Rafael Espindola52101412017-05-12 14:52:22 +0000663 bool IsTls = Sec->Flags & SHF_TLS;
664 bool IsNoBits = Sec->Type == SHT_NOBITS;
Hal Finkel3bae2d82015-10-12 20:51:48 +0000665
Peter Collingbourne628ec9f2017-01-10 01:21:30 +0000666 // The first requirement we have is to put (non-TLS) nobits sections last. The
667 // reason is that the only thing the dynamic linker will see about them is a
668 // p_memsz that is larger than p_filesz. Seeing that it zeros the end of the
669 // PT_LOAD, so that has to correspond to the nobits sections.
Rafael Espindola52101412017-05-12 14:52:22 +0000670 bool IsNonTlsNoBits = IsNoBits && !IsTls;
671 if (IsNonTlsNoBits)
672 Rank |= RF_NON_TLS_BSS;
Peter Collingbourne628ec9f2017-01-10 01:21:30 +0000673
674 // We place nobits RelRo sections before plain r/w ones, and non-nobits RelRo
675 // sections after r/w ones, so that the RelRo sections are contiguous.
Rafael Espindola52101412017-05-12 14:52:22 +0000676 bool IsRelRo = isRelroSection(Sec);
677 if (IsNonTlsNoBits && !IsRelRo)
678 Rank |= RF_NON_TLS_BSS_RO;
679 if (!IsNonTlsNoBits && IsRelRo)
680 Rank |= RF_NON_TLS_BSS_RO;
Peter Collingbourne628ec9f2017-01-10 01:21:30 +0000681
682 // The TLS initialization block needs to be a single contiguous block in a R/W
683 // PT_LOAD, so stick TLS sections directly before the other RelRo R/W
684 // sections. The TLS NOBITS sections are placed here as they don't take up
685 // virtual address space in the PT_LOAD.
Rafael Espindola52101412017-05-12 14:52:22 +0000686 if (!IsTls)
687 Rank |= RF_NOT_TLS;
Peter Collingbourne628ec9f2017-01-10 01:21:30 +0000688
689 // Within the TLS initialization block, the non-nobits sections need to appear
690 // first.
Rafael Espindola52101412017-05-12 14:52:22 +0000691 if (IsNoBits)
692 Rank |= RF_BSS;
George Rimare3336c02015-11-24 10:15:50 +0000693
Ben Dunbobbin95637552017-08-18 16:15:36 +0000694 // Some architectures have additional ordering restrictions for sections
695 // within the same PT_LOAD.
Rafael Espindola52101412017-05-12 14:52:22 +0000696 if (Config->EMachine == EM_PPC64) {
697 // PPC64 has a number of special SHT_PROGBITS+SHF_ALLOC+SHF_WRITE sections
698 // that we would like to make sure appear is a specific order to maximize
699 // their coverage by a single signed 16-bit offset from the TOC base
700 // pointer. Conversely, the special .tocbss section should be first among
701 // all SHT_NOBITS sections. This will put it next to the loaded special
702 // PPC64 sections (and, thus, within reach of the TOC base pointer).
703 StringRef Name = Sec->Name;
704 if (Name != ".tocbss")
705 Rank |= RF_PPC_NOT_TOCBSS;
Hal Finkel9abc2a52015-10-13 19:07:29 +0000706
Rafael Espindola52101412017-05-12 14:52:22 +0000707 if (Name == ".opd")
708 Rank |= RF_PPC_OPD;
709
710 if (Name == ".toc1")
711 Rank |= RF_PPC_TOCL;
712
713 if (Name == ".toc")
714 Rank |= RF_PPC_TOC;
715
716 if (Name == ".branch_lt")
717 Rank |= RF_PPC_BRANCH_LT;
718 }
719 if (Config->EMachine == EM_MIPS) {
720 // All sections with SHF_MIPS_GPREL flag should be grouped together
721 // because data in these sections is addressable with a gp relative address.
722 if (Sec->Flags & SHF_MIPS_GPREL)
723 Rank |= RF_MIPS_GPREL;
724
725 if (Sec->Name != ".got")
726 Rank |= RF_MIPS_NOT_GOT;
727 }
728
729 return Rank;
730}
731
Rafael Espindola383971d2017-06-15 21:51:01 +0000732static bool compareSections(const BaseCommand *ACmd, const BaseCommand *BCmd) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000733 const OutputSection *A = cast<OutputSection>(ACmd);
734 const OutputSection *B = cast<OutputSection>(BCmd);
Rafael Espindola52101412017-05-12 14:52:22 +0000735 if (A->SortRank != B->SortRank)
736 return A->SortRank < B->SortRank;
737 if (!(A->SortRank & RF_NOT_ADDR_SET))
738 return Config->SectionStartMap.lookup(A->Name) <
739 Config->SectionStartMap.lookup(B->Name);
Rafael Espindola24c073d2016-09-21 22:36:19 +0000740 return false;
741}
742
Rafael Espindola24e6f362017-02-24 15:07:30 +0000743void PhdrEntry::add(OutputSection *Sec) {
George Rimar6823c5f2017-09-07 11:01:10 +0000744 LastSec = Sec;
745 if (!FirstSec)
746 FirstSec = Sec;
Rafael Espindola37707632017-03-07 14:55:52 +0000747 p_align = std::max(p_align, Sec->Alignment);
Rafael Espindola17cb7c02016-12-19 17:01:01 +0000748 if (p_type == PT_LOAD)
George Rimar582ede82017-09-07 10:53:07 +0000749 Sec->PtLoad = this;
Eugene Leviantbbe38602016-07-19 09:25:43 +0000750}
751
Denis Protivensky8e3b38a2015-11-12 09:52:08 +0000752template <class ELFT>
Rafael Espindola5616adf2017-03-08 22:36:28 +0000753static Symbol *addRegular(StringRef Name, SectionBase *Sec, uint64_t Value,
754 uint8_t StOther = STV_HIDDEN,
755 uint8_t Binding = STB_WEAK) {
Rafael Espindoladab02d42016-11-17 21:20:16 +0000756 // The linker generated symbols are added as STB_WEAK to allow user defined
757 // ones to override them.
Rafael Espindola244ef982017-07-26 18:42:48 +0000758 return Symtab->addRegular<ELFT>(Name, StOther, STT_NOTYPE, Value,
759 /*Size=*/0, Binding, Sec,
760 /*File=*/nullptr);
Eugene Leviantad4439e2016-11-11 11:33:32 +0000761}
762
763template <class ELFT>
Rafael Espindola5616adf2017-03-08 22:36:28 +0000764static DefinedRegular *
765addOptionalRegular(StringRef Name, SectionBase *Sec, uint64_t Val,
766 uint8_t StOther = STV_HIDDEN, uint8_t Binding = STB_GLOBAL) {
Rafael Espindola244ef982017-07-26 18:42:48 +0000767 SymbolBody *S = Symtab->find(Name);
Eugene Leviantad4439e2016-11-11 11:33:32 +0000768 if (!S)
769 return nullptr;
Rafael Espindola1d6d1b42017-01-17 16:08:06 +0000770 if (S->isInCurrentDSO())
Rafael Espindola5616adf2017-03-08 22:36:28 +0000771 return nullptr;
772 return cast<DefinedRegular>(
773 addRegular<ELFT>(Name, Sec, Val, StOther, Binding)->body());
Eugene Leviantad4439e2016-11-11 11:33:32 +0000774}
775
Rui Ueyama01687222015-12-26 09:47:57 +0000776// The beginning and the ending of .rel[a].plt section are marked
777// with __rel[a]_iplt_{start,end} symbols if it is a statically linked
778// executable. The runtime needs these symbols in order to resolve
779// all IRELATIVE relocs on startup. For dynamic executables, we don't
780// need these symbols, since IRELATIVE relocs are resolved through GOT
781// and PLT. For details, see http://www.airs.com/blog/archives/403.
George Rimaree741cf2016-04-14 13:23:02 +0000782template <class ELFT> void Writer<ELFT>::addRelIpltSymbols() {
Shoaib Meenai335fad12017-08-05 05:01:07 +0000783 if (!Config->Static)
George Rimara07ff662015-12-21 10:12:06 +0000784 return;
Rui Ueyamad57e74b72017-03-17 23:29:01 +0000785 StringRef S = Config->IsRela ? "__rela_iplt_start" : "__rel_iplt_start";
Rafael Espindola5616adf2017-03-08 22:36:28 +0000786 addOptionalRegular<ELFT>(S, In<ELFT>::RelaIplt, 0, STV_HIDDEN, STB_WEAK);
Rui Ueyama01687222015-12-26 09:47:57 +0000787
Rui Ueyamad57e74b72017-03-17 23:29:01 +0000788 S = Config->IsRela ? "__rela_iplt_end" : "__rel_iplt_end";
Rafael Espindola5616adf2017-03-08 22:36:28 +0000789 addOptionalRegular<ELFT>(S, In<ELFT>::RelaIplt, -1, STV_HIDDEN, STB_WEAK);
George Rimara07ff662015-12-21 10:12:06 +0000790}
791
Rui Ueyamaf18fe7b2015-12-26 07:50:39 +0000792// The linker is expected to define some symbols depending on
793// the linking result. This function defines such symbols.
794template <class ELFT> void Writer<ELFT>::addReservedSymbols() {
George Rimar7beff422016-11-15 08:19:02 +0000795 if (Config->EMachine == EM_MIPS) {
Rafael Espindola9b3f99e2016-04-12 02:24:43 +0000796 // Define _gp for MIPS. st_value of _gp symbol will be updated by Writer
Simon Atanasyan6a4eb752016-12-08 06:19:47 +0000797 // so that it points to an absolute address which by default is relative
798 // to GOT. Default offset is 0x7ff0.
Rafael Espindola9b3f99e2016-04-12 02:24:43 +0000799 // See "Global Data Symbols" in Chapter 6 in the following document:
800 // ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf
Rafael Espindola244ef982017-07-26 18:42:48 +0000801 ElfSym::MipsGp = Symtab->addAbsolute<ELFT>("_gp", STV_HIDDEN, STB_LOCAL);
Rafael Espindola9b3f99e2016-04-12 02:24:43 +0000802
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +0000803 // On MIPS O32 ABI, _gp_disp is a magic symbol designates offset between
Simon Atanasyand34a3632017-03-20 21:03:43 +0000804 // start of function and 'gp' pointer into GOT.
Rafael Espindola244ef982017-07-26 18:42:48 +0000805 if (Symtab->find("_gp_disp"))
Rui Ueyama80474a22017-02-28 19:29:55 +0000806 ElfSym::MipsGpDisp =
Rafael Espindola244ef982017-07-26 18:42:48 +0000807 Symtab->addAbsolute<ELFT>("_gp_disp", STV_HIDDEN, STB_LOCAL);
Peter Collingbourne6f535b72016-05-03 18:03:45 +0000808
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +0000809 // The __gnu_local_gp is a magic symbol equal to the current value of 'gp'
810 // pointer. This symbol is used in the code generated by .cpload pseudo-op
811 // in case of using -mno-shared option.
812 // https://sourceware.org/ml/binutils/2004-12/msg00094.html
Rafael Espindola244ef982017-07-26 18:42:48 +0000813 if (Symtab->find("__gnu_local_gp"))
Rui Ueyama80474a22017-02-28 19:29:55 +0000814 ElfSym::MipsLocalGp =
Rafael Espindola244ef982017-07-26 18:42:48 +0000815 Symtab->addAbsolute<ELFT>("__gnu_local_gp", STV_HIDDEN, STB_LOCAL);
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +0000816 }
817
Peter Smith113a59e2017-06-26 10:22:17 +0000818 // The _GLOBAL_OFFSET_TABLE_ symbol is defined by target convention to
819 // be at some offset from the base of the .got section, usually 0 or the end
820 // of the .got
Rui Ueyama92c37812017-06-26 15:11:24 +0000821 InputSection *GotSection = InX::MipsGot ? cast<InputSection>(InX::MipsGot)
822 : cast<InputSection>(InX::Got);
823 ElfSym::GlobalOffsetTable = addOptionalRegular<ELFT>(
824 "_GLOBAL_OFFSET_TABLE_", GotSection, Target->GotBaseSymOff);
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +0000825
Rui Ueyamaf18fe7b2015-12-26 07:50:39 +0000826 // __tls_get_addr is defined by the dynamic linker for dynamic ELFs. For
827 // static linking the linker is required to optimize away any references to
828 // __tls_get_addr, so it's not defined anywhere. Create a hidden definition
Rui Ueyamaa2a46a92017-04-25 04:44:54 +0000829 // to avoid the undefined symbol error.
George Rimar69b17c32017-05-16 10:04:42 +0000830 if (!InX::DynSymTab)
Rafael Espindola244ef982017-07-26 18:42:48 +0000831 Symtab->addIgnored<ELFT>("__tls_get_addr");
Rui Ueyamaf18fe7b2015-12-26 07:50:39 +0000832
Petr Hosek6b936bf2017-05-10 16:20:33 +0000833 // __ehdr_start is the location of ELF file headers. Note that we define
834 // this symbol unconditionally even when using a linker script, which
835 // differs from the behavior implemented by GNU linker which only define
836 // this symbol if ELF headers are in the memory mapped segment.
Rafael Espindola0e454a92017-06-06 16:18:48 +0000837 // __executable_start is not documented, but the expectation of at
838 // least the android libc is that it points to the elf header too.
839 // __dso_handle symbol is passed to cxa_finalize as a marker to identify
840 // each DSO. The address of the symbol doesn't matter as long as they are
841 // different in different DSOs, so we chose the start address of the DSO.
842 for (const char *Name :
843 {"__ehdr_start", "__executable_start", "__dso_handle"})
844 addOptionalRegular<ELFT>(Name, Out::ElfHeader, 0, STV_HIDDEN);
Petr Hosek6b936bf2017-05-10 16:20:33 +0000845
George Rimar28ac19c2016-08-08 08:42:48 +0000846 // If linker script do layout we do not need to create any standart symbols.
Rui Ueyamaa34da932017-03-21 23:03:09 +0000847 if (Script->Opt.HasSections)
George Rimar28ac19c2016-08-08 08:42:48 +0000848 return;
849
Rui Ueyama1505ba82017-04-13 21:23:03 +0000850 auto Add = [](StringRef S) {
851 return addOptionalRegular<ELFT>(S, Out::ElfHeader, 0, STV_DEFAULT);
George Rimar9e859392016-02-26 14:36:36 +0000852 };
853
Rui Ueyama1505ba82017-04-13 21:23:03 +0000854 ElfSym::Bss = Add("__bss_start");
Rui Ueyama3e1fc3f2017-04-13 21:37:56 +0000855 ElfSym::End1 = Add("end");
856 ElfSym::End2 = Add("_end");
857 ElfSym::Etext1 = Add("etext");
858 ElfSym::Etext2 = Add("_etext");
859 ElfSym::Edata1 = Add("edata");
860 ElfSym::Edata2 = Add("_edata");
Rui Ueyamaf18fe7b2015-12-26 07:50:39 +0000861}
862
Rui Ueyamac4185702016-02-10 23:20:42 +0000863// Sort input sections by section name suffixes for
864// __attribute__((init_priority(N))).
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000865static void sortInitFini(OutputSection *Cmd) {
Rafael Espindola21263342017-07-05 23:36:24 +0000866 if (Cmd)
867 Cmd->sortInitFini();
Rui Ueyama5af83682016-02-11 23:41:38 +0000868}
869
870// Sort input sections by the special rule for .ctors and .dtors.
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000871static void sortCtorsDtors(OutputSection *Cmd) {
Rafael Espindola21263342017-07-05 23:36:24 +0000872 if (Cmd)
873 Cmd->sortCtorsDtors();
Rui Ueyamac4185702016-02-10 23:20:42 +0000874}
875
George Rimar1a33c0f2016-11-10 09:05:20 +0000876// Sort input sections using the list provided by --symbol-ordering-file.
Rafael Espindola21263342017-07-05 23:36:24 +0000877template <class ELFT> static void sortBySymbolsOrder() {
George Rimar1a33c0f2016-11-10 09:05:20 +0000878 if (Config->SymbolOrderingFile.empty())
879 return;
880
Rui Ueyama31270312016-12-20 01:51:08 +0000881 // Sort sections by priority.
George Rimard6bcde32017-08-04 10:25:29 +0000882 DenseMap<SectionBase *, int> SectionOrder = buildSectionOrder<ELFT>();
Rafael Espindola21263342017-07-05 23:36:24 +0000883 for (BaseCommand *Base : Script->Opt.Commands)
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000884 if (auto *Sec = dyn_cast<OutputSection>(Base))
885 Sec->sort([&](InputSectionBase *S) { return SectionOrder.lookup(S); });
George Rimar1a33c0f2016-11-10 09:05:20 +0000886}
887
Eugene Leviante63d81b2016-07-20 14:43:20 +0000888template <class ELFT>
Rafael Espindolab4c9b812017-02-23 02:28:28 +0000889void Writer<ELFT>::forEachRelSec(std::function<void(InputSectionBase &)> Fn) {
Rui Ueyama536a2672017-02-27 02:32:08 +0000890 for (InputSectionBase *IS : InputSections) {
Rafael Espindola8f9026b2016-11-08 18:23:02 +0000891 if (!IS->Live)
Rui Ueyama8c6a5aa2016-11-05 22:37:59 +0000892 continue;
893 // Scan all relocations. Each relocation goes through a series
894 // of tests to determine if it needs special treatment, such as
895 // creating GOT, PLT, copy relocations, etc.
896 // Note that relocations for non-alloc sections are directly
897 // processed by InputSection::relocateNonAlloc.
898 if (!(IS->Flags & SHF_ALLOC))
899 continue;
Rafael Espindola5c02b742017-03-06 21:17:18 +0000900 if (isa<InputSection>(IS) || isa<EhInputSection>(IS))
Rafael Espindola9f0c4bb2016-11-10 14:53:24 +0000901 Fn(*IS);
Rafael Espindola0f7ceda2016-07-20 17:58:07 +0000902 }
Petr Hosek7b793212017-03-10 20:00:42 +0000903
904 if (!Config->Relocatable) {
905 for (EhInputSection *ES : In<ELFT>::EhFrame->Sections)
906 Fn(*ES);
907 }
Rafael Espindola0f7ceda2016-07-20 17:58:07 +0000908}
909
Eugene Leviant282251a2016-11-01 09:49:24 +0000910template <class ELFT> void Writer<ELFT>::createSections() {
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000911 std::vector<BaseCommand *> Old = Script->Opt.Commands;
912 Script->Opt.Commands.clear();
Rui Ueyama536a2672017-02-27 02:32:08 +0000913 for (InputSectionBase *IS : InputSections)
Rafael Espindola82902742017-02-16 17:32:26 +0000914 if (IS)
George Rimare21c3af2017-03-14 09:30:25 +0000915 Factory.addInputSec(IS, getOutputSectionName(IS->Name));
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000916 Script->Opt.Commands.insert(Script->Opt.Commands.end(), Old.begin(),
917 Old.end());
Eugene Leviantceabe802016-08-11 07:56:43 +0000918
Rafael Espindola21263342017-07-05 23:36:24 +0000919 Script->fabricateDefaultCommands();
920 sortBySymbolsOrder<ELFT>();
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000921 sortInitFini(findSection(".init_array"));
922 sortInitFini(findSection(".fini_array"));
923 sortCtorsDtors(findSection(".ctors"));
924 sortCtorsDtors(findSection(".dtors"));
Eugene Leviante63d81b2016-07-20 14:43:20 +0000925}
926
Petr Hosek18821b62017-09-01 02:23:31 +0000927// This function generates assignments for predefined symbols (e.g. _end or
928// _etext) and inserts them into the commands sequence to be processed at the
929// appropriate time. This ensures that the value is going to be correct by the
930// time any references to these symbols are processed and is equivalent to
931// defining these symbols explicitly in the linker script.
932template <class ELFT> void Writer<ELFT>::addPredefinedSymbols() {
933 PhdrEntry *Last = nullptr;
934 PhdrEntry *LastRO = nullptr;
935 PhdrEntry *LastRW = nullptr;
Rui Ueyama888da8c2017-09-05 20:17:37 +0000936
Petr Hosek18821b62017-09-01 02:23:31 +0000937 for (PhdrEntry *P : Phdrs) {
938 if (P->p_type != PT_LOAD)
939 continue;
940 Last = P;
941 if (P->p_flags & PF_W)
942 LastRW = P;
943 else
944 LastRO = P;
945 }
946
947 auto Make = [](DefinedRegular *S) {
948 auto *Cmd = make<SymbolAssignment>(
949 S->getName(), [=] { return Script->getSymbolValue("", "."); }, "");
950 Cmd->Sym = S;
951 return Cmd;
952 };
953
Rui Ueyama888da8c2017-09-05 20:17:37 +0000954 std::vector<BaseCommand *> &V = Script->Opt.Commands;
Petr Hosek18821b62017-09-01 02:23:31 +0000955
Rui Ueyama888da8c2017-09-05 20:17:37 +0000956 // _end is the first location after the uninitialized data region.
Petr Hosek18821b62017-09-01 02:23:31 +0000957 if (Last) {
Rui Ueyama888da8c2017-09-05 20:17:37 +0000958 for (size_t I = 0; I < V.size(); ++I) {
George Rimar6823c5f2017-09-07 11:01:10 +0000959 if (V[I] != Last->LastSec)
Rui Ueyama888da8c2017-09-05 20:17:37 +0000960 continue;
Petr Hosek18821b62017-09-01 02:23:31 +0000961 if (ElfSym::End2)
Rui Ueyama888da8c2017-09-05 20:17:37 +0000962 V.insert(V.begin() + I + 1, Make(ElfSym::End2));
963 if (ElfSym::End1)
964 V.insert(V.begin() + I + 1, Make(ElfSym::End1));
965 break;
Petr Hosek18821b62017-09-01 02:23:31 +0000966 }
967 }
Rui Ueyama888da8c2017-09-05 20:17:37 +0000968
969 // _etext is the first location after the last read-only loadable segment.
Petr Hosek18821b62017-09-01 02:23:31 +0000970 if (LastRO) {
Rui Ueyama888da8c2017-09-05 20:17:37 +0000971 for (size_t I = 0; I < V.size(); ++I) {
George Rimar6823c5f2017-09-07 11:01:10 +0000972 if (V[I] != LastRO->LastSec)
Rui Ueyama888da8c2017-09-05 20:17:37 +0000973 continue;
Petr Hosek18821b62017-09-01 02:23:31 +0000974 if (ElfSym::Etext2)
Rui Ueyama888da8c2017-09-05 20:17:37 +0000975 V.insert(V.begin() + I + 1, Make(ElfSym::Etext2));
976 if (ElfSym::Etext1)
977 V.insert(V.begin() + I + 1, Make(ElfSym::Etext1));
978 break;
Petr Hosek18821b62017-09-01 02:23:31 +0000979 }
980 }
Rui Ueyama888da8c2017-09-05 20:17:37 +0000981
982 // _edata points to the end of the last non SHT_NOBITS section.
Petr Hosek18821b62017-09-01 02:23:31 +0000983 if (LastRW) {
Rui Ueyama888da8c2017-09-05 20:17:37 +0000984 size_t I = 0;
985 for (; I < V.size(); ++I)
George Rimar6823c5f2017-09-07 11:01:10 +0000986 if (V[I] == LastRW->FirstSec)
Rui Ueyama888da8c2017-09-05 20:17:37 +0000987 break;
988
989 for (; I < V.size(); ++I) {
990 auto *Sec = dyn_cast<OutputSection>(V[I]);
991 if (!Sec || Sec->Type != SHT_NOBITS)
992 continue;
Petr Hosek18821b62017-09-01 02:23:31 +0000993 if (ElfSym::Edata2)
Rui Ueyama888da8c2017-09-05 20:17:37 +0000994 V.insert(V.begin() + I, Make(ElfSym::Edata2));
Petr Hosek18821b62017-09-01 02:23:31 +0000995 if (ElfSym::Edata1)
Rui Ueyama888da8c2017-09-05 20:17:37 +0000996 V.insert(V.begin() + I, Make(ElfSym::Edata1));
997 break;
Petr Hosek18821b62017-09-01 02:23:31 +0000998 }
999 }
1000}
1001
Rafael Espindola52101412017-05-12 14:52:22 +00001002// We want to find how similar two ranks are.
1003// The more branches in getSectionRank that match, the more similar they are.
1004// Since each branch corresponds to a bit flag, we can just use
1005// countLeadingZeros.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001006static int getRankProximityAux(OutputSection *A, OutputSection *B) {
Rafael Espindola52101412017-05-12 14:52:22 +00001007 return countLeadingZeros(A->SortRank ^ B->SortRank);
Eugene Leviantbae1c652016-11-08 10:44:48 +00001008}
1009
Rafael Espindola383971d2017-06-15 21:51:01 +00001010static int getRankProximity(OutputSection *A, BaseCommand *B) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001011 if (auto *Sec = dyn_cast<OutputSection>(B))
1012 if (Sec->Live)
1013 return getRankProximityAux(A, Sec);
Rafael Espindola383971d2017-06-15 21:51:01 +00001014 return -1;
1015}
1016
1017// When placing orphan sections, we want to place them after symbol assignments
1018// so that an orphan after
1019// begin_foo = .;
1020// foo : { *(foo) }
1021// end_foo = .;
1022// doesn't break the intended meaning of the begin/end symbols.
1023// We don't want to go over sections since findOrphanPos is the
1024// one in charge of deciding the order of the sections.
1025// We don't want to go over changes to '.', since doing so in
1026// rx_sec : { *(rx_sec) }
1027// . = ALIGN(0x1000);
1028// /* The RW PT_LOAD starts here*/
1029// rw_sec : { *(rw_sec) }
1030// would mean that the RW PT_LOAD would become unaligned.
1031static bool shouldSkip(BaseCommand *Cmd) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001032 if (isa<OutputSection>(Cmd))
Rafael Espindola383971d2017-06-15 21:51:01 +00001033 return false;
1034 if (auto *Assign = dyn_cast<SymbolAssignment>(Cmd))
1035 return Assign->Name != ".";
1036 return true;
1037}
1038
Rafael Espindola52101412017-05-12 14:52:22 +00001039// We want to place orphan sections so that they share as much
1040// characteristics with their neighbors as possible. For example, if
1041// both are rw, or both are tls.
Rafael Espindola0ca37122017-05-09 13:58:46 +00001042template <typename ELFT>
Rafael Espindola383971d2017-06-15 21:51:01 +00001043static std::vector<BaseCommand *>::iterator
1044findOrphanPos(std::vector<BaseCommand *>::iterator B,
1045 std::vector<BaseCommand *>::iterator E) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001046 OutputSection *Sec = cast<OutputSection>(*E);
Rafael Espindola0ca37122017-05-09 13:58:46 +00001047
Rafael Espindola52101412017-05-12 14:52:22 +00001048 // Find the first element that has as close a rank as possible.
Rafael Espindola383971d2017-06-15 21:51:01 +00001049 auto I = std::max_element(B, E, [=](BaseCommand *A, BaseCommand *B) {
Rafael Espindola52101412017-05-12 14:52:22 +00001050 return getRankProximity(Sec, A) < getRankProximity(Sec, B);
1051 });
1052 if (I == E)
Rafael Espindola0ca37122017-05-09 13:58:46 +00001053 return E;
1054
Rafael Espindola52101412017-05-12 14:52:22 +00001055 // Consider all existing sections with the same proximity.
Rafael Espindola383971d2017-06-15 21:51:01 +00001056 int Proximity = getRankProximity(Sec, *I);
1057 for (; I != E; ++I) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001058 auto *CurSec = dyn_cast<OutputSection>(*I);
1059 if (!CurSec || !CurSec->Live)
Rafael Espindola383971d2017-06-15 21:51:01 +00001060 continue;
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001061 if (getRankProximity(Sec, CurSec) != Proximity ||
1062 Sec->SortRank < CurSec->SortRank)
Rafael Espindola383971d2017-06-15 21:51:01 +00001063 break;
1064 }
1065 auto J = std::find_if(
Rafael Espindolac54b1c82017-06-15 22:03:06 +00001066 llvm::make_reverse_iterator(I), llvm::make_reverse_iterator(B),
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001067 [](BaseCommand *Cmd) { return isa<OutputSection>(Cmd); });
Rafael Espindola383971d2017-06-15 21:51:01 +00001068 I = J.base();
1069 while (I != E && shouldSkip(*I))
Rafael Espindola52101412017-05-12 14:52:22 +00001070 ++I;
1071 return I;
Rafael Espindola0ca37122017-05-09 13:58:46 +00001072}
1073
Rafael Espindola24c073d2016-09-21 22:36:19 +00001074template <class ELFT> void Writer<ELFT>::sortSections() {
George Rimare0b43df2017-06-28 09:59:34 +00001075 if (Script->Opt.HasSections)
1076 Script->adjustSectionsBeforeSorting();
1077
Rafael Espindola1960bcd2016-11-11 22:43:27 +00001078 // Don't sort if using -r. It is not necessary and we want to preserve the
1079 // relative order for SHF_LINK_ORDER sections.
1080 if (Config->Relocatable)
Rafael Espindola85de6782017-06-28 22:44:11 +00001081 return;
Rafael Espindola52101412017-05-12 14:52:22 +00001082
Rafael Espindola383971d2017-06-15 21:51:01 +00001083 for (BaseCommand *Base : Script->Opt.Commands)
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001084 if (auto *Sec = dyn_cast<OutputSection>(Base))
1085 Sec->SortRank = getSectionRank(Sec);
Rafael Espindola52101412017-05-12 14:52:22 +00001086
Rui Ueyamaa34da932017-03-21 23:03:09 +00001087 if (!Script->Opt.HasSections) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001088 // We know that all the OutputSections are contiguous in
Rafael Espindola383971d2017-06-15 21:51:01 +00001089 // this case.
1090 auto E = Script->Opt.Commands.end();
1091 auto I = Script->Opt.Commands.begin();
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001092 auto IsSection = [](BaseCommand *Base) { return isa<OutputSection>(Base); };
Rafael Espindola383971d2017-06-15 21:51:01 +00001093 I = std::find_if(I, E, IsSection);
Rafael Espindolac54b1c82017-06-15 22:03:06 +00001094 E = std::find_if(llvm::make_reverse_iterator(E),
1095 llvm::make_reverse_iterator(I), IsSection)
Rafael Espindola383971d2017-06-15 21:51:01 +00001096 .base();
1097 std::stable_sort(I, E, compareSections);
Rafael Espindola24c073d2016-09-21 22:36:19 +00001098 return;
1099 }
1100
Rafael Espindola383971d2017-06-15 21:51:01 +00001101 // Orphan sections are sections present in the input files which are
1102 // not explicitly placed into the output file by the linker script.
1103 //
1104 // The sections in the linker script are already in the correct
1105 // order. We have to figuere out where to insert the orphan
1106 // sections.
1107 //
Rafael Espindola24c073d2016-09-21 22:36:19 +00001108 // The order of the sections in the script is arbitrary and may not agree with
Rafael Espindola383971d2017-06-15 21:51:01 +00001109 // compareSections. This means that we cannot easily define a strict weak
1110 // ordering. To see why, consider a comparison of a section in the script and
1111 // one not in the script. We have a two simple options:
Rafael Espindola24c073d2016-09-21 22:36:19 +00001112 // * Make them equivalent (a is not less than b, and b is not less than a).
1113 // The problem is then that equivalence has to be transitive and we can
1114 // have sections a, b and c with only b in a script and a less than c
1115 // which breaks this property.
1116 // * Use compareSectionsNonScript. Given that the script order doesn't have
1117 // to match, we can end up with sections a, b, c, d where b and c are in the
1118 // script and c is compareSectionsNonScript less than b. In which case d
1119 // can be equivalent to c, a to b and d < a. As a concrete example:
1120 // .a (rx) # not in script
1121 // .b (rx) # in script
1122 // .c (ro) # in script
1123 // .d (ro) # not in script
1124 //
1125 // The way we define an order then is:
Rafael Espindola383971d2017-06-15 21:51:01 +00001126 // * Sort only the orphan sections. They are in the end right now.
1127 // * Move each orphan section to its preferred position. We try
Eugene Leviantbae1c652016-11-08 10:44:48 +00001128 // to put each section in the last position where it it can share
1129 // a PT_LOAD.
Rafael Espindola383971d2017-06-15 21:51:01 +00001130 //
1131 // There is some ambiguity as to where exactly a new entry should be
1132 // inserted, because Opt.Commands contains not only output section
1133 // commands but also other types of commands such as symbol assignment
1134 // expressions. There's no correct answer here due to the lack of the
1135 // formal specification of the linker script. We use heuristics to
1136 // determine whether a new output command should be added before or
1137 // after another commands. For the details, look at shouldSkip
1138 // function.
Rafael Espindola24c073d2016-09-21 22:36:19 +00001139
Rafael Espindola383971d2017-06-15 21:51:01 +00001140 auto I = Script->Opt.Commands.begin();
1141 auto E = Script->Opt.Commands.end();
1142 auto NonScriptI = std::find_if(I, E, [](BaseCommand *Base) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001143 if (auto *Sec = dyn_cast<OutputSection>(Base))
1144 return Sec->Live && Sec->SectionIndex == INT_MAX;
Rafael Espindola383971d2017-06-15 21:51:01 +00001145 return false;
1146 });
Rafael Espindola24c073d2016-09-21 22:36:19 +00001147
Rafael Espindola383971d2017-06-15 21:51:01 +00001148 // Sort the orphan sections.
1149 std::stable_sort(NonScriptI, E, compareSections);
1150
1151 // As a horrible special case, skip the first . assignment if it is before any
1152 // section. We do this because it is common to set a load address by starting
1153 // the script with ". = 0xabcd" and the expectation is that every section is
1154 // after that.
1155 auto FirstSectionOrDotAssignment =
1156 std::find_if(I, E, [](BaseCommand *Cmd) { return !shouldSkip(Cmd); });
1157 if (FirstSectionOrDotAssignment != E &&
1158 isa<SymbolAssignment>(**FirstSectionOrDotAssignment))
1159 ++FirstSectionOrDotAssignment;
1160 I = FirstSectionOrDotAssignment;
1161
Rafael Espindola52101412017-05-12 14:52:22 +00001162 while (NonScriptI != E) {
1163 auto Pos = findOrphanPos<ELFT>(I, NonScriptI);
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001164 OutputSection *Orphan = cast<OutputSection>(*NonScriptI);
Rafael Espindola52101412017-05-12 14:52:22 +00001165
1166 // As an optimization, find all sections with the same sort rank
1167 // and insert them with one rotate.
Rafael Espindola383971d2017-06-15 21:51:01 +00001168 unsigned Rank = Orphan->SortRank;
1169 auto End = std::find_if(NonScriptI + 1, E, [=](BaseCommand *Cmd) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001170 return cast<OutputSection>(Cmd)->SortRank != Rank;
Rafael Espindola52101412017-05-12 14:52:22 +00001171 });
1172 std::rotate(Pos, NonScriptI, End);
1173 NonScriptI = End;
1174 }
Rafael Espindolaf7a17442016-11-14 15:39:38 +00001175
George Rimara8dba482017-03-20 10:09:58 +00001176 Script->adjustSectionsAfterSorting();
Rafael Espindola24c073d2016-09-21 22:36:19 +00001177}
1178
Peter Smith1ec42d92017-03-08 14:06:24 +00001179static void applySynthetic(const std::vector<SyntheticSection *> &Sections,
1180 std::function<void(SyntheticSection *)> Fn) {
Rui Ueyama9320cb02017-02-27 02:56:02 +00001181 for (SyntheticSection *SS : Sections)
Rafael Espindolad57c58d2017-06-07 02:31:19 +00001182 if (SS && SS->getParent() && !SS->empty())
Peter Smith1ec42d92017-03-08 14:06:24 +00001183 Fn(SS);
Eugene Leviant6380ce22016-11-15 12:26:55 +00001184}
1185
George Rimar11992c862016-11-25 08:05:41 +00001186// We need to add input synthetic sections early in createSyntheticSections()
Rui Ueyamac38860b2016-12-05 21:39:35 +00001187// to make them visible from linkescript side. But not all sections are always
1188// required to be in output. For example we don't need dynamic section content
James Henderson7ee22752017-04-06 09:40:03 +00001189// sometimes. This function filters out such unused sections from the output.
Rafael Espindolac080ff62017-07-03 16:54:39 +00001190static void removeUnusedSyntheticSections() {
Rafael Espindola9e9754b2017-02-03 13:06:18 +00001191 // All input synthetic sections that can be empty are placed after
1192 // all regular ones. We iterate over them all and exit at first
1193 // non-synthetic.
Rui Ueyama536a2672017-02-27 02:32:08 +00001194 for (InputSectionBase *S : llvm::reverse(InputSections)) {
Rui Ueyama9320cb02017-02-27 02:56:02 +00001195 SyntheticSection *SS = dyn_cast<SyntheticSection>(S);
Rui Ueyamac38860b2016-12-05 21:39:35 +00001196 if (!SS)
George Rimar11992c862016-11-25 08:05:41 +00001197 return;
Rafael Espindoladb5e56f2017-05-31 20:17:44 +00001198 OutputSection *OS = SS->getParent();
1199 if (!SS->empty() || !OS)
George Rimar11992c862016-11-25 08:05:41 +00001200 continue;
Rui Ueyama92c37812017-06-26 15:11:24 +00001201 if ((SS == InX::Got || SS == InX::MipsGot) && ElfSym::GlobalOffsetTable)
Peter Smith113a59e2017-06-26 10:22:17 +00001202 continue;
Rafael Espindolac080ff62017-07-03 16:54:39 +00001203
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001204 std::vector<BaseCommand *>::iterator Empty = OS->Commands.end();
1205 for (auto I = OS->Commands.begin(), E = OS->Commands.end(); I != E; ++I) {
Rafael Espindola43ee3602017-07-03 17:32:09 +00001206 BaseCommand *B = *I;
Rafael Espindolac080ff62017-07-03 16:54:39 +00001207 if (auto *ISD = dyn_cast<InputSectionDescription>(B)) {
Rafael Espindola43ee3602017-07-03 17:32:09 +00001208 auto P = std::find(ISD->Sections.begin(), ISD->Sections.end(), SS);
1209 if (P != ISD->Sections.end())
1210 ISD->Sections.erase(P);
Rafael Espindolac080ff62017-07-03 16:54:39 +00001211 if (ISD->Sections.empty())
Rafael Espindola43ee3602017-07-03 17:32:09 +00001212 Empty = I;
Rafael Espindolac080ff62017-07-03 16:54:39 +00001213 }
1214 }
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001215 if (Empty != OS->Commands.end())
1216 OS->Commands.erase(Empty);
Rafael Espindolac080ff62017-07-03 16:54:39 +00001217
James Henderson7ee22752017-04-06 09:40:03 +00001218 // If there are no other sections in the output section, remove it from the
1219 // output.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001220 if (OS->Commands.empty()) {
Petr Hosek52db9a42017-07-03 15:49:25 +00001221 // Also remove script commands matching the output section.
George Rimar60608a82017-08-28 09:28:15 +00001222 llvm::erase_if(Script->Opt.Commands, [&](BaseCommand *Cmd) {
1223 if (auto *Sec = dyn_cast<OutputSection>(Cmd))
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001224 return Sec == OS;
Petr Hosek52db9a42017-07-03 15:49:25 +00001225 return false;
1226 });
Petr Hosek52db9a42017-07-03 15:49:25 +00001227 }
George Rimar11992c862016-11-25 08:05:41 +00001228 }
1229}
1230
Rafael Espindola35c908f2017-08-10 15:05:37 +00001231// Returns true if a symbol can be replaced at load-time by a symbol
1232// with the same name defined in other ELF executable or DSO.
1233static bool computeIsPreemptible(const SymbolBody &B) {
1234 assert(!B.isLocal());
1235 // Shared symbols resolve to the definition in the DSO. The exceptions are
1236 // symbols with copy relocations (which resolve to .bss) or preempt plt
1237 // entries (which resolve to that plt entry).
1238 if (auto *SS = dyn_cast<SharedSymbol>(&B))
1239 return !SS->CopyRelSec && !SS->NeedsPltAddr;
1240
1241 // Only symbols that appear in dynsym can be preempted.
1242 if (!B.symbol()->includeInDynsym())
1243 return false;
1244
1245 // Only default visibility symbols can be preempted.
1246 if (B.symbol()->Visibility != STV_DEFAULT)
1247 return false;
1248
1249 // Undefined symbols in non-DSOs are usually just an error, so it
1250 // doesn't matter whether we return true or false here. However, if
1251 // -unresolved-symbols=ignore-all is specified, undefined symbols in
1252 // executables are automatically exported so that the runtime linker
Davide Italianoa0186dd2017-09-06 21:16:51 +00001253 // can try to resolve them. In that case, they are preemptible. So, we
Rafael Espindola35c908f2017-08-10 15:05:37 +00001254 // return true for an undefined symbol in case the option is specified.
1255 if (!Config->Shared)
1256 return B.isUndefined();
1257
1258 // -Bsymbolic means that definitions are not preempted.
1259 if (Config->Bsymbolic || (Config->BsymbolicFunctions && B.isFunc()))
1260 return !B.isDefined();
1261 return true;
1262}
1263
Eugene Leviante63d81b2016-07-20 14:43:20 +00001264// Create output section objects and add them to OutputSections.
1265template <class ELFT> void Writer<ELFT>::finalizeSections() {
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001266 Out::DebugInfo = findSection(".debug_info");
1267 Out::PreinitArray = findSection(".preinit_array");
1268 Out::InitArray = findSection(".init_array");
1269 Out::FiniArray = findSection(".fini_array");
Rafael Espindola77572242015-10-02 19:37:55 +00001270
Rui Ueyamaa5d79d12015-12-26 09:48:00 +00001271 // The linker needs to define SECNAME_start, SECNAME_end and SECNAME_stop
1272 // symbols for sections, so that the runtime can get the start and end
1273 // addresses of each section by section name. Add such symbols.
George Rimarc1034a82016-03-01 19:12:35 +00001274 if (!Config->Relocatable) {
1275 addStartEndSymbols();
Rafael Espindolab6915452017-07-04 19:05:03 +00001276 for (BaseCommand *Base : Script->Opt.Commands)
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001277 if (auto *Sec = dyn_cast<OutputSection>(Base))
1278 addStartStopSymbols(Sec);
George Rimarc1034a82016-03-01 19:12:35 +00001279 }
Rui Ueyamad4530c62016-03-04 18:34:14 +00001280
1281 // Add _DYNAMIC symbol. Unlike GNU gold, our _DYNAMIC symbol has no type.
1282 // It should be okay as no one seems to care about the type.
1283 // Even the author of gold doesn't remember why gold behaves that way.
1284 // https://sourceware.org/ml/binutils/2002-03/msg00360.html
George Rimar69b17c32017-05-16 10:04:42 +00001285 if (InX::DynSymTab)
Rafael Espindola5ab19892017-05-11 23:16:43 +00001286 addRegular<ELFT>("_DYNAMIC", InX::Dynamic, 0);
Rafael Espindola334c3e12015-10-19 15:21:42 +00001287
Rafael Espindolade9857e2016-02-04 21:33:05 +00001288 // Define __rel[a]_iplt_{start,end} symbols if needed.
1289 addRelIpltSymbols();
1290
Rafael Espindola66b4e212017-02-23 22:06:28 +00001291 // This responsible for splitting up .eh_frame section into
Peter Smith1ec42d92017-03-08 14:06:24 +00001292 // pieces. The relocation scan uses those pieces, so this has to be
Rafael Espindola66b4e212017-02-23 22:06:28 +00001293 // earlier.
George Rimar49a47f22017-03-16 10:29:44 +00001294 applySynthetic({In<ELFT>::EhFrame},
1295 [](SyntheticSection *SS) { SS->finalizeContents(); });
Rafael Espindola56004c52016-04-07 14:22:09 +00001296
Rui Ueyamae158f7c2017-08-22 21:54:58 +00001297 for (Symbol *S : Symtab->getSymbols())
1298 S->body()->IsPreemptible = computeIsPreemptible(*S->body());
Rafael Espindola35c908f2017-08-10 15:05:37 +00001299
Rafael Espindola0f7ceda2016-07-20 17:58:07 +00001300 // Scan relocations. This must be done after every symbol is declared so that
1301 // we can correctly decide if a dynamic relocation is needed.
1302 forEachRelSec(scanRelocations<ELFT>);
1303
Rafael Espindola895aea62017-05-11 22:02:41 +00001304 if (InX::Plt && !InX::Plt->empty())
1305 InX::Plt->addSymbols();
1306 if (InX::Iplt && !InX::Iplt->empty())
1307 InX::Iplt->addSymbols();
Peter Smith96943762017-01-25 10:31:16 +00001308
Peter Smith55865432017-02-20 11:12:33 +00001309 // Now that we have defined all possible global symbols including linker-
Rui Ueyama1b2a8bf2015-12-26 10:22:16 +00001310 // synthesized ones. Visit all symbols to give the finishing touches.
Rafael Espindola244ef982017-07-26 18:42:48 +00001311 for (Symbol *S : Symtab->getSymbols()) {
Peter Collingbourne4f952702016-05-01 04:55:03 +00001312 SymbolBody *Body = S->body();
Rafael Espindola0baa73f2016-04-26 13:56:26 +00001313
George Rimar7702bc22017-03-16 11:20:02 +00001314 if (!includeInSymtab(*Body))
Rafael Espindola05a3dd22015-09-22 23:38:23 +00001315 continue;
George Rimar69b17c32017-05-16 10:04:42 +00001316 if (InX::SymTab)
1317 InX::SymTab->addSymbol(Body);
Rafael Espindola05a3dd22015-09-22 23:38:23 +00001318
George Rimar69b17c32017-05-16 10:04:42 +00001319 if (InX::DynSymTab && S->includeInDynsym()) {
1320 InX::DynSymTab->addSymbol(Body);
Rui Ueyama4076fa12017-02-26 23:35:34 +00001321 if (auto *SS = dyn_cast<SharedSymbol>(Body))
Rafael Espindola6e93d052017-08-04 22:31:42 +00001322 if (cast<SharedFile<ELFT>>(S->File)->isNeeded())
Eugene Leviante9bab5d2016-11-21 16:59:33 +00001323 In<ELFT>::VerNeed->addSymbol(SS);
Peter Collingbourne21a12fc2016-04-27 20:22:31 +00001324 }
Rafael Espindola05a3dd22015-09-22 23:38:23 +00001325 }
Rui Ueyamac2a0d7e2016-01-28 22:56:29 +00001326
1327 // Do not proceed if there was an undefined symbol.
Rui Ueyamaf373dd72016-11-24 01:43:21 +00001328 if (ErrorCount)
Rui Ueyamaf7f52ef2016-04-01 17:24:19 +00001329 return;
Rui Ueyamac2a0d7e2016-01-28 22:56:29 +00001330
Rafael Espindola1eb3a0f2017-07-04 18:26:21 +00001331 addPredefinedSections();
Rafael Espindolac080ff62017-07-03 16:54:39 +00001332 removeUnusedSyntheticSections();
1333
Rafael Espindola24c073d2016-09-21 22:36:19 +00001334 sortSections();
Rafael Espindola383971d2017-06-15 21:51:01 +00001335
1336 // Now that we have the final list, create a list of all the
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001337 // OutputSections for convenience.
Rafael Espindolacdf813b2017-06-13 22:36:20 +00001338 for (BaseCommand *Base : Script->Opt.Commands)
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001339 if (auto *Sec = dyn_cast<OutputSection>(Base))
1340 OutputSections.push_back(Sec);
Rui Ueyama84417f82015-12-26 07:50:41 +00001341
Rafael Espindola9c0395e2017-06-20 01:51:50 +00001342 // Prefer command line supplied address over other constraints.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001343 for (OutputSection *Sec : OutputSections) {
1344 auto I = Config->SectionStartMap.find(Sec->Name);
Rafael Espindola9c0395e2017-06-20 01:51:50 +00001345 if (I != Config->SectionStartMap.end())
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001346 Sec->AddrExpr = [=] { return I->second; };
Rafael Espindola9c0395e2017-06-20 01:51:50 +00001347 }
1348
Rafael Espindola78493a22017-01-28 17:48:21 +00001349 // This is a bit of a hack. A value of 0 means undef, so we set it
1350 // to 1 t make __ehdr_start defined. The section number is not
1351 // particularly relevant.
Rui Ueyama9d1bacb12017-02-27 02:31:26 +00001352 Out::ElfHeader->SectionIndex = 1;
Rafael Espindola78493a22017-01-28 17:48:21 +00001353
George Rimar7ca06272016-04-06 07:20:45 +00001354 unsigned I = 1;
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001355 for (OutputSection *Sec : OutputSections) {
George Rimar7ca06272016-04-06 07:20:45 +00001356 Sec->SectionIndex = I++;
Rafael Espindola895aea62017-05-11 22:02:41 +00001357 Sec->ShName = InX::ShStrTab->addString(Sec->Name);
George Rimar7ca06272016-04-06 07:20:45 +00001358 }
Rui Ueyama84417f82015-12-26 07:50:41 +00001359
Rafael Espindola5967c972016-12-19 21:21:07 +00001360 // Binary and relocatable output does not have PHDRS.
1361 // The headers have to be created before finalize as that can influence the
1362 // image base and the dynamic section on mips includes the image base.
1363 if (!Config->Relocatable && !Config->OFormatBinary) {
Rafael Espindolaf51c8052017-06-13 23:26:31 +00001364 Phdrs = Script->hasPhdrsCommands() ? Script->createPhdrs() : createPhdrs();
Rafael Espindola5967c972016-12-19 21:21:07 +00001365 addPtArmExid(Phdrs);
Rafael Espindola02ed7572017-05-04 19:34:17 +00001366 Out::ProgramHeaders->Size = sizeof(Elf_Phdr) * Phdrs.size();
Rafael Espindola5967c972016-12-19 21:21:07 +00001367 }
1368
Eugene Leviantbe809a72016-11-18 06:44:18 +00001369 // Dynamic section must be the last one in this list and dynamic
1370 // symbol table section (DynSymTab) must be the first one.
Rui Ueyama2b6631b2017-08-15 17:01:39 +00001371 applySynthetic({InX::DynSymTab, InX::Bss,
1372 InX::BssRelRo, InX::GnuHashTab,
1373 In<ELFT>::HashTab, InX::SymTab,
1374 InX::ShStrTab, InX::StrTab,
1375 In<ELFT>::VerDef, InX::DynStrTab,
1376 InX::Got, InX::MipsGot,
1377 InX::IgotPlt, InX::GotPlt,
1378 In<ELFT>::RelaDyn, In<ELFT>::RelaIplt,
1379 In<ELFT>::RelaPlt, InX::Plt,
1380 InX::Iplt, In<ELFT>::EhFrameHdr,
1381 In<ELFT>::VerSym, In<ELFT>::VerNeed,
1382 InX::Dynamic},
George Rimar49a47f22017-03-16 10:29:44 +00001383 [](SyntheticSection *SS) { SS->finalizeContents(); });
Peter Smith1ec42d92017-03-08 14:06:24 +00001384
Peter Smith3ef89b02017-09-06 14:02:14 +00001385 if (!Script->Opt.HasSections && !Config->Relocatable)
1386 fixSectionAlignments();
1387
Peter Smith1ec42d92017-03-08 14:06:24 +00001388 // Some architectures use small displacements for jump instructions.
1389 // It is linker's responsibility to create thunks containing long
1390 // jump instructions if jump targets are too far. Create thunks.
1391 if (Target->NeedsThunks) {
1392 // FIXME: only ARM Interworking and Mips LA25 Thunks are implemented,
1393 // these
1394 // do not require address information. To support range extension Thunks
1395 // we need to assign addresses so that we can tell if jump instructions
1396 // are out of range. This will need to turn into a loop that converges
1397 // when no more Thunks are added
George Rimarec84ffc2017-05-17 07:10:59 +00001398 ThunkCreator TC;
Peter Smith96f813d2017-07-07 10:03:37 +00001399 Script->assignAddresses();
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001400 if (TC.createThunks(OutputSections)) {
Rafael Espindolab3aa2c92017-05-11 21:33:30 +00001401 applySynthetic({InX::MipsGot},
George Rimar49a47f22017-03-16 10:29:44 +00001402 [](SyntheticSection *SS) { SS->updateAllocSize(); });
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001403 if (TC.createThunks(OutputSections))
Peter Smith32980272017-06-16 13:10:08 +00001404 fatal("All non-range thunks should be created in first call");
1405 }
Peter Smith1ec42d92017-03-08 14:06:24 +00001406 }
Peter Smith43e852f2017-06-05 08:51:15 +00001407
Peter Smith1ec42d92017-03-08 14:06:24 +00001408 // Fill other section headers. The dynamic table is finalized
1409 // at the end because some tags like RELSZ depend on result
1410 // of finalizing other sections.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001411 for (OutputSection *Sec : OutputSections)
1412 Sec->finalize<ELFT>();
Peter Smith1ec42d92017-03-08 14:06:24 +00001413
1414 // createThunks may have added local symbols to the static symbol table
George Rimar69b17c32017-05-16 10:04:42 +00001415 applySynthetic({InX::SymTab, InX::ShStrTab, InX::StrTab},
George Rimar49a47f22017-03-16 10:29:44 +00001416 [](SyntheticSection *SS) { SS->postThunkContents(); });
Rui Ueyama84417f82015-12-26 07:50:41 +00001417}
1418
Rui Ueyama84417f82015-12-26 07:50:41 +00001419template <class ELFT> void Writer<ELFT>::addPredefinedSections() {
Rui Ueyamadec4ab02017-02-16 04:19:03 +00001420 // ARM ABI requires .ARM.exidx to be terminated by some piece of data.
1421 // We have the terminater synthetic section class. Add that at the end.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001422 OutputSection *Cmd = findSection(".ARM.exidx");
1423 if (!Cmd || !Cmd->Live || Config->Relocatable)
Peter Smith626c9972017-05-30 11:51:02 +00001424 return;
1425
1426 auto *Sentinel = make<ARMExidxSentinelSection>();
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001427 Cmd->addSection(Sentinel);
Rafael Espindolaabad6182015-08-13 15:23:46 +00001428}
1429
Rui Ueyamaa5d79d12015-12-26 09:48:00 +00001430// The linker is expected to define SECNAME_start and SECNAME_end
1431// symbols for a few sections. This function defines them.
1432template <class ELFT> void Writer<ELFT>::addStartEndSymbols() {
Rafael Espindola24e6f362017-02-24 15:07:30 +00001433 auto Define = [&](StringRef Start, StringRef End, OutputSection *OS) {
Peter Collingbourne0fab40b2016-10-24 20:46:21 +00001434 // These symbols resolve to the image base if the section does not exist.
Rui Ueyama4f2f50d2016-12-21 08:40:09 +00001435 // A special value -1 indicates end of the section.
Peter Collingbournef8435a92017-03-13 16:40:20 +00001436 if (OS) {
1437 addOptionalRegular<ELFT>(Start, OS, 0);
1438 addOptionalRegular<ELFT>(End, OS, -1);
1439 } else {
Rui Ueyamad57e74b72017-03-17 23:29:01 +00001440 if (Config->Pic)
Peter Collingbournef8435a92017-03-13 16:40:20 +00001441 OS = Out::ElfHeader;
1442 addOptionalRegular<ELFT>(Start, OS, 0);
1443 addOptionalRegular<ELFT>(End, OS, 0);
1444 }
Rui Ueyamaa5d79d12015-12-26 09:48:00 +00001445 };
1446
Rui Ueyama9d1bacb12017-02-27 02:31:26 +00001447 Define("__preinit_array_start", "__preinit_array_end", Out::PreinitArray);
1448 Define("__init_array_start", "__init_array_end", Out::InitArray);
1449 Define("__fini_array_start", "__fini_array_end", Out::FiniArray);
Peter Smith17cd3752016-10-27 10:28:53 +00001450
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001451 if (OutputSection *Sec = findSection(".ARM.exidx"))
Peter Smith17cd3752016-10-27 10:28:53 +00001452 Define("__exidx_start", "__exidx_end", Sec);
Rui Ueyamaa5d79d12015-12-26 09:48:00 +00001453}
1454
Rui Ueyamad9189ce2015-10-15 17:11:03 +00001455// If a section name is valid as a C identifier (which is rare because of
1456// the leading '.'), linkers are expected to define __start_<secname> and
1457// __stop_<secname> symbols. They are at beginning and end of the section,
1458// respectively. This is not requested by the ELF standard, but GNU ld and
1459// gold provide the feature, and used by many programs.
1460template <class ELFT>
Rafael Espindola24e6f362017-02-24 15:07:30 +00001461void Writer<ELFT>::addStartStopSymbols(OutputSection *Sec) {
Rafael Espindola40849412017-02-24 14:28:00 +00001462 StringRef S = Sec->Name;
Rui Ueyamad9189ce2015-10-15 17:11:03 +00001463 if (!isValidCIdentifier(S))
1464 return;
Rafael Espindola5616adf2017-03-08 22:36:28 +00001465 addOptionalRegular<ELFT>(Saver.save("__start_" + S), Sec, 0, STV_DEFAULT);
1466 addOptionalRegular<ELFT>(Saver.save("__stop_" + S), Sec, -1, STV_DEFAULT);
Rui Ueyamad9189ce2015-10-15 17:11:03 +00001467}
1468
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001469template <class ELFT> OutputSection *Writer<ELFT>::findSection(StringRef Name) {
Rafael Espindola1eb3a0f2017-07-04 18:26:21 +00001470 for (BaseCommand *Base : Script->Opt.Commands)
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001471 if (auto *Sec = dyn_cast<OutputSection>(Base))
1472 if (Sec->Name == Name)
1473 return Sec;
Rafael Espindola43e76cd2017-05-26 17:48:27 +00001474 return nullptr;
1475}
1476
George Rimar7702bc22017-03-16 11:20:02 +00001477static bool needsPtLoad(OutputSection *Sec) {
Rafael Espindola04a2e342016-11-09 01:42:41 +00001478 if (!(Sec->Flags & SHF_ALLOC))
Rafael Espindolaef762f22016-02-10 23:29:38 +00001479 return false;
1480
1481 // Don't allocate VA space for TLS NOBITS sections. The PT_TLS PHDR is
1482 // responsible for allocating space for them, not the PT_LOAD that
1483 // contains the TLS initialization image.
Rafael Espindola04a2e342016-11-09 01:42:41 +00001484 if (Sec->Flags & SHF_TLS && Sec->Type == SHT_NOBITS)
Rafael Espindolaef762f22016-02-10 23:29:38 +00001485 return false;
1486 return true;
Michael J. Spencer1d299a82015-09-09 20:48:09 +00001487}
1488
Rafael Espindolab45fd702016-09-20 15:22:27 +00001489// Linker scripts are responsible for aligning addresses. Unfortunately, most
1490// linker scripts are designed for creating two PT_LOADs only, one RX and one
1491// RW. This means that there is no alignment in the RO to RX transition and we
1492// cannot create a PT_LOAD there.
Rui Ueyama6bd38222017-04-05 21:37:09 +00001493static uint64_t computeFlags(uint64_t Flags) {
Rui Ueyamaa37ace8d2017-02-25 01:52:03 +00001494 if (Config->Omagic)
George Rimar595a7632016-11-29 09:43:51 +00001495 return PF_R | PF_W | PF_X;
Rui Ueyama6bd38222017-04-05 21:37:09 +00001496 if (Config->SingleRoRx && !(Flags & PF_W))
1497 return Flags | PF_X;
1498 return Flags;
Rafael Espindolab45fd702016-09-20 15:22:27 +00001499}
1500
Rafael Espindola4fc60442016-02-10 22:43:13 +00001501// Decide which program headers to create and which sections to include in each
1502// one.
George Rimaraa354182017-07-27 07:46:50 +00001503template <class ELFT> std::vector<PhdrEntry *> Writer<ELFT>::createPhdrs() {
1504 std::vector<PhdrEntry *> Ret;
Rafael Espindola17cb7c02016-12-19 17:01:01 +00001505 auto AddHdr = [&](unsigned Type, unsigned Flags) -> PhdrEntry * {
George Rimaraa354182017-07-27 07:46:50 +00001506 Ret.push_back(make<PhdrEntry>(Type, Flags));
1507 return Ret.back();
Rafael Espindola4fc60442016-02-10 22:43:13 +00001508 };
George Rimare3336c02015-11-24 10:15:50 +00001509
Rui Ueyama803195e2015-10-23 21:45:59 +00001510 // The first phdr entry is PT_PHDR which describes the program header itself.
Rui Ueyama9d1bacb12017-02-27 02:31:26 +00001511 AddHdr(PT_PHDR, PF_R)->add(Out::ProgramHeaders);
Rui Ueyama953c2c42015-10-10 23:59:57 +00001512
Rui Ueyama803195e2015-10-23 21:45:59 +00001513 // PT_INTERP must be the second entry if exists.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001514 if (OutputSection *Cmd = findSection(".interp"))
1515 AddHdr(PT_INTERP, Cmd->getPhdrFlags())->add(Cmd);
Rafael Espindola70107762015-09-11 18:49:42 +00001516
Rui Ueyama803195e2015-10-23 21:45:59 +00001517 // Add the first PT_LOAD segment for regular output sections.
Rui Ueyama6bd38222017-04-05 21:37:09 +00001518 uint64_t Flags = computeFlags(PF_R);
Rafael Espindola17cb7c02016-12-19 17:01:01 +00001519 PhdrEntry *Load = AddHdr(PT_LOAD, Flags);
Rafael Espindola02ed7572017-05-04 19:34:17 +00001520
1521 // Add the headers. We will remove them if they don't fit.
1522 Load->add(Out::ElfHeader);
1523 Load->add(Out::ProgramHeaders);
1524
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001525 for (OutputSection *Sec : OutputSections) {
Rafael Espindola04a2e342016-11-09 01:42:41 +00001526 if (!(Sec->Flags & SHF_ALLOC))
Rafael Espindolaaab6d5c2016-09-16 21:29:07 +00001527 break;
George Rimar7702bc22017-03-16 11:20:02 +00001528 if (!needsPtLoad(Sec))
Rafael Espindolaef762f22016-02-10 23:29:38 +00001529 continue;
1530
George Rimar8ceadb32016-08-17 07:44:19 +00001531 // Segments are contiguous memory regions that has the same attributes
1532 // (e.g. executable or writable). There is one phdr for each segment.
1533 // Therefore, we need to create a new phdr when the next section has
1534 // different flags or is loaded at a discontiguous address using AT linker
1535 // script command.
Rui Ueyama6bd38222017-04-05 21:37:09 +00001536 uint64_t NewFlags = computeFlags(Sec->getPhdrFlags());
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001537 if (Sec->LMAExpr || Flags != NewFlags) {
Rafael Espindolae090fb22016-03-09 21:37:22 +00001538 Load = AddHdr(PT_LOAD, NewFlags);
Rafael Espindola4fc60442016-02-10 22:43:13 +00001539 Flags = NewFlags;
1540 }
Michael J. Spencer78aa1de2015-11-03 00:34:39 +00001541
Rui Ueyama18f084f2016-07-20 19:36:41 +00001542 Load->add(Sec);
Michael J. Spencer84487f12015-07-24 21:03:07 +00001543 }
Rafael Espindola6b83b902015-08-12 00:00:24 +00001544
Rui Ueyamadb00b612017-02-01 22:42:17 +00001545 // Add a TLS segment if any.
George Rimaraa354182017-07-27 07:46:50 +00001546 PhdrEntry *TlsHdr = make<PhdrEntry>(PT_TLS, PF_R);
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001547 for (OutputSection *Sec : OutputSections)
Rui Ueyamadb00b612017-02-01 22:42:17 +00001548 if (Sec->Flags & SHF_TLS)
George Rimaraa354182017-07-27 07:46:50 +00001549 TlsHdr->add(Sec);
George Rimar6823c5f2017-09-07 11:01:10 +00001550 if (TlsHdr->FirstSec)
George Rimaraa354182017-07-27 07:46:50 +00001551 Ret.push_back(TlsHdr);
Michael J. Spencer78aa1de2015-11-03 00:34:39 +00001552
Rui Ueyama803195e2015-10-23 21:45:59 +00001553 // Add an entry for .dynamic.
George Rimar69b17c32017-05-16 10:04:42 +00001554 if (InX::DynSymTab)
Rafael Espindoladb5e56f2017-05-31 20:17:44 +00001555 AddHdr(PT_DYNAMIC, InX::Dynamic->getParent()->getPhdrFlags())
1556 ->add(InX::Dynamic->getParent());
Rafael Espindola91009b32015-08-12 01:45:28 +00001557
Rafael Espindola4fc60442016-02-10 22:43:13 +00001558 // PT_GNU_RELRO includes all sections that should be marked as
1559 // read-only by dynamic linker after proccessing relocations.
George Rimaraa354182017-07-27 07:46:50 +00001560 PhdrEntry *RelRo = make<PhdrEntry>(PT_GNU_RELRO, PF_R);
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001561 for (OutputSection *Sec : OutputSections)
Rafael Espindola9e889eb2017-05-11 23:31:06 +00001562 if (needsPtLoad(Sec) && isRelroSection(Sec))
George Rimaraa354182017-07-27 07:46:50 +00001563 RelRo->add(Sec);
George Rimar6823c5f2017-09-07 11:01:10 +00001564 if (RelRo->FirstSec)
George Rimaraa354182017-07-27 07:46:50 +00001565 Ret.push_back(RelRo);
George Rimare3336c02015-11-24 10:15:50 +00001566
Rafael Espindola4fc60442016-02-10 22:43:13 +00001567 // PT_GNU_EH_FRAME is a special section pointing on .eh_frame_hdr.
Eugene Leviant30c1b432017-03-14 08:49:09 +00001568 if (!In<ELFT>::EhFrame->empty() && In<ELFT>::EhFrameHdr &&
Rafael Espindoladb5e56f2017-05-31 20:17:44 +00001569 In<ELFT>::EhFrame->getParent() && In<ELFT>::EhFrameHdr->getParent())
1570 AddHdr(PT_GNU_EH_FRAME, In<ELFT>::EhFrameHdr->getParent()->getPhdrFlags())
1571 ->add(In<ELFT>::EhFrameHdr->getParent());
George Rimarf6bc65a2016-01-15 13:34:52 +00001572
Rui Ueyama81cb7102017-03-24 00:15:57 +00001573 // PT_OPENBSD_RANDOMIZE is an OpenBSD-specific feature. That makes
1574 // the dynamic linker fill the segment with random data.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001575 if (OutputSection *Cmd = findSection(".openbsd.randomdata"))
1576 AddHdr(PT_OPENBSD_RANDOMIZE, Cmd->getPhdrFlags())->add(Cmd);
George Rimar270173f2016-10-14 13:02:22 +00001577
Rui Ueyamae79b09a2015-11-21 22:19:32 +00001578 // PT_GNU_STACK is a special section to tell the loader to make the
Rui Ueyamaa7e87252017-02-23 08:09:51 +00001579 // pages for the stack non-executable. If you really want an executable
1580 // stack, you can pass -z execstack, but that's not recommended for
1581 // security reasons.
1582 unsigned Perm;
1583 if (Config->ZExecstack)
1584 Perm = PF_R | PF_W | PF_X;
1585 else
1586 Perm = PF_R | PF_W;
1587 AddHdr(PT_GNU_STACK, Perm)->p_memsz = Config->ZStackSize;
Rafael Espindola9907eb02016-03-01 13:23:29 +00001588
George Rimarcc6e5672016-10-14 10:34:36 +00001589 // PT_OPENBSD_WXNEEDED is a OpenBSD-specific header to mark the executable
1590 // is expected to perform W^X violations, such as calling mprotect(2) or
1591 // mmap(2) with PROT_WRITE | PROT_EXEC, which is prohibited by default on
1592 // OpenBSD.
1593 if (Config->ZWxneeded)
1594 AddHdr(PT_OPENBSD_WXNEEDED, PF_X);
1595
Petr Hosek4d65ef3b2017-02-01 20:58:41 +00001596 // Create one PT_NOTE per a group of contiguous .note sections.
1597 PhdrEntry *Note = nullptr;
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001598 for (OutputSection *Sec : OutputSections) {
Petr Hosek4d65ef3b2017-02-01 20:58:41 +00001599 if (Sec->Type == SHT_NOTE) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001600 if (!Note || Sec->LMAExpr)
Petr Hosek4d65ef3b2017-02-01 20:58:41 +00001601 Note = AddHdr(PT_NOTE, PF_R);
1602 Note->add(Sec);
1603 } else {
1604 Note = nullptr;
1605 }
1606 }
Rui Ueyama703296a2016-07-20 19:36:39 +00001607 return Ret;
Rafael Espindola4fc60442016-02-10 22:43:13 +00001608}
1609
Rafael Espindola8e670002016-11-28 00:40:21 +00001610template <class ELFT>
George Rimaraa354182017-07-27 07:46:50 +00001611void Writer<ELFT>::addPtArmExid(std::vector<PhdrEntry *> &Phdrs) {
Rafael Espindola8e670002016-11-28 00:40:21 +00001612 if (Config->EMachine != EM_ARM)
1613 return;
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001614 auto I = llvm::find_if(OutputSections, [](OutputSection *Cmd) {
1615 return Cmd->Type == SHT_ARM_EXIDX;
George Rimara951d5c2017-07-04 13:10:37 +00001616 });
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001617 if (I == OutputSections.end())
Rafael Espindola8e670002016-11-28 00:40:21 +00001618 return;
1619
1620 // PT_ARM_EXIDX is the ARM EHABI equivalent of PT_GNU_EH_FRAME
George Rimaraa354182017-07-27 07:46:50 +00001621 PhdrEntry *ARMExidx = make<PhdrEntry>(PT_ARM_EXIDX, PF_R);
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001622 ARMExidx->add(*I);
Rafael Espindola8e670002016-11-28 00:40:21 +00001623 Phdrs.push_back(ARMExidx);
1624}
1625
Peter Collingbourne628ec9f2017-01-10 01:21:30 +00001626// The first section of each PT_LOAD, the first section in PT_GNU_RELRO and the
1627// first section after PT_GNU_RELRO have to be page aligned so that the dynamic
1628// linker can set the permissions.
Rui Ueyama47091902016-03-30 19:41:51 +00001629template <class ELFT> void Writer<ELFT>::fixSectionAlignments() {
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001630 auto PageAlign = [](OutputSection *Cmd) {
Rafael Espindola0f7dc0e2017-06-02 01:37:58 +00001631 if (Cmd && !Cmd->AddrExpr)
1632 Cmd->AddrExpr = [=] {
1633 return alignTo(Script->getDot(), Config->MaxPageSize);
1634 };
1635 };
1636
George Rimaraa354182017-07-27 07:46:50 +00001637 for (const PhdrEntry *P : Phdrs)
George Rimar6823c5f2017-09-07 11:01:10 +00001638 if (P->p_type == PT_LOAD && P->FirstSec)
1639 PageAlign(P->FirstSec);
Rui Ueyama47091902016-03-30 19:41:51 +00001640
George Rimaraa354182017-07-27 07:46:50 +00001641 for (const PhdrEntry *P : Phdrs) {
1642 if (P->p_type != PT_GNU_RELRO)
Rui Ueyama47091902016-03-30 19:41:51 +00001643 continue;
George Rimar6823c5f2017-09-07 11:01:10 +00001644 if (P->FirstSec)
1645 PageAlign(P->FirstSec);
Rui Ueyama47091902016-03-30 19:41:51 +00001646 // Find the first section after PT_GNU_RELRO. If it is in a PT_LOAD we
1647 // have to align it to a page.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001648 auto End = OutputSections.end();
George Rimar6823c5f2017-09-07 11:01:10 +00001649 auto I = std::find(OutputSections.begin(), End, P->LastSec);
Rui Ueyama47091902016-03-30 19:41:51 +00001650 if (I == End || (I + 1) == End)
1651 continue;
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001652 OutputSection *Cmd = (*(I + 1));
1653 if (needsPtLoad(Cmd))
1654 PageAlign(Cmd);
Rui Ueyama47091902016-03-30 19:41:51 +00001655 }
1656}
1657
George Rimar5f857322016-04-27 09:16:28 +00001658// Adjusts the file alignment for a given output section and returns
1659// its new file offset. The file offset must be the same with its
1660// virtual address (modulo the page size) so that the loader can load
1661// executables without any address adjustment.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001662static uint64_t getFileAlignment(uint64_t Off, OutputSection *Cmd) {
Rafael Espindola8b8f74f2016-12-07 20:20:39 +00001663 // If the section is not in a PT_LOAD, we just have to align it.
George Rimar582ede82017-09-07 10:53:07 +00001664 if (!Cmd->PtLoad)
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001665 return alignTo(Off, Cmd->Alignment);
Eugene Leviant3d9abec2016-09-29 09:20:33 +00001666
George Rimar6823c5f2017-09-07 11:01:10 +00001667 OutputSection *First = Cmd->PtLoad->FirstSec;
Rafael Espindola8b8f74f2016-12-07 20:20:39 +00001668 // The first section in a PT_LOAD has to have congruent offset and address
1669 // module the page size.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001670 if (Cmd == First)
1671 return alignTo(Off, std::max<uint64_t>(Cmd->Alignment, Config->MaxPageSize),
1672 Cmd->Addr);
Rafael Espindola8b8f74f2016-12-07 20:20:39 +00001673
1674 // If two sections share the same PT_LOAD the file offset is calculated
1675 // using this formula: Off2 = Off1 + (VA2 - VA1).
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001676 return First->Offset + Cmd->Addr - First->Addr;
George Rimar5f857322016-04-27 09:16:28 +00001677}
1678
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001679static uint64_t setOffset(OutputSection *Cmd, uint64_t Off) {
1680 if (Cmd->Type == SHT_NOBITS) {
1681 Cmd->Offset = Off;
Rui Ueyama35723f02017-02-14 23:35:42 +00001682 return Off;
George Rimar86ce2672016-08-25 09:05:47 +00001683 }
1684
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001685 Off = getFileAlignment(Off, Cmd);
1686 Cmd->Offset = Off;
1687 return Off + Cmd->Size;
George Rimar86ce2672016-08-25 09:05:47 +00001688}
1689
1690template <class ELFT> void Writer<ELFT>::assignFileOffsetsBinary() {
Rui Ueyama6bd38222017-04-05 21:37:09 +00001691 uint64_t Off = 0;
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001692 for (OutputSection *Sec : OutputSections)
Rafael Espindola04a2e342016-11-09 01:42:41 +00001693 if (Sec->Flags & SHF_ALLOC)
Rui Ueyama6bd38222017-04-05 21:37:09 +00001694 Off = setOffset(Sec, Off);
1695 FileSize = alignTo(Off, Config->Wordsize);
George Rimar86ce2672016-08-25 09:05:47 +00001696}
1697
Rui Ueyamae044e9c2016-04-01 17:07:17 +00001698// Assign file offsets to output sections.
1699template <class ELFT> void Writer<ELFT>::assignFileOffsets() {
Rui Ueyama6bd38222017-04-05 21:37:09 +00001700 uint64_t Off = 0;
1701 Off = setOffset(Out::ElfHeader, Off);
1702 Off = setOffset(Out::ProgramHeaders, Off);
George Rimar7ca06272016-04-06 07:20:45 +00001703
Petr Hosekedd6c352017-08-02 16:35:00 +00001704 PhdrEntry *LastRX = nullptr;
1705 for (PhdrEntry *P : Phdrs)
1706 if (P->p_type == PT_LOAD && (P->p_flags & PF_X))
1707 LastRX = P;
1708
1709 for (OutputSection *Sec : OutputSections) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001710 Off = setOffset(Sec, Off);
Petr Hosekedd6c352017-08-02 16:35:00 +00001711 if (Script->Opt.HasSections)
1712 continue;
1713 // If this is a last section of the last executable segment and that
1714 // segment is the last loadable segment, align the offset of the
1715 // following section to avoid loading non-segments parts of the file.
George Rimar6823c5f2017-09-07 11:01:10 +00001716 if (LastRX && LastRX->LastSec == Sec)
Petr Hosekedd6c352017-08-02 16:35:00 +00001717 Off = alignTo(Off, Target->PageSize);
1718 }
Eugene Leviant467c4d52016-07-01 10:27:36 +00001719
Rui Ueyama6bd38222017-04-05 21:37:09 +00001720 SectionHeaderOff = alignTo(Off, Config->Wordsize);
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001721 FileSize = SectionHeaderOff + (OutputSections.size() + 1) * sizeof(Elf_Shdr);
Rui Ueyamae044e9c2016-04-01 17:07:17 +00001722}
1723
1724// Finalize the program headers. We call this function after we assign
1725// file offsets and VAs to all sections.
1726template <class ELFT> void Writer<ELFT>::setPhdrs() {
George Rimaraa354182017-07-27 07:46:50 +00001727 for (PhdrEntry *P : Phdrs) {
George Rimar6823c5f2017-09-07 11:01:10 +00001728 OutputSection *First = P->FirstSec;
1729 OutputSection *Last = P->LastSec;
Rui Ueyamae8a45e42016-04-01 22:42:04 +00001730 if (First) {
George Rimaraa354182017-07-27 07:46:50 +00001731 P->p_filesz = Last->Offset - First->Offset;
Rafael Espindola04a2e342016-11-09 01:42:41 +00001732 if (Last->Type != SHT_NOBITS)
George Rimaraa354182017-07-27 07:46:50 +00001733 P->p_filesz += Last->Size;
1734 P->p_memsz = Last->Addr + Last->Size - First->Addr;
1735 P->p_offset = First->Offset;
1736 P->p_vaddr = First->Addr;
1737 if (!P->HasLMA)
1738 P->p_paddr = First->getLMA();
Rafael Espindola4fc60442016-02-10 22:43:13 +00001739 }
George Rimaraa354182017-07-27 07:46:50 +00001740 if (P->p_type == PT_LOAD)
1741 P->p_align = std::max<uint64_t>(P->p_align, Config->MaxPageSize);
1742 else if (P->p_type == PT_GNU_RELRO) {
1743 P->p_align = 1;
Peter Collingbourne7b5088b2017-01-04 18:56:15 +00001744 // The glibc dynamic loader rounds the size down, so we need to round up
1745 // to protect the last page. This is a no-op on FreeBSD which always
1746 // rounds up.
George Rimaraa354182017-07-27 07:46:50 +00001747 P->p_memsz = alignTo(P->p_memsz, Target->PageSize);
Peter Collingbourne7b5088b2017-01-04 18:56:15 +00001748 }
George Rimar8ceadb32016-08-17 07:44:19 +00001749
Rafael Espindola4fc60442016-02-10 22:43:13 +00001750 // The TLS pointer goes after PT_TLS. At least glibc will align it,
1751 // so round up the size to make sure the offsets are correct.
George Rimaraa354182017-07-27 07:46:50 +00001752 if (P->p_type == PT_TLS) {
1753 Out::TlsPhdr = P;
1754 if (P->p_memsz)
1755 P->p_memsz = alignTo(P->p_memsz, P->p_align);
Rui Ueyama803195e2015-10-23 21:45:59 +00001756 }
1757 }
Michael J. Spencer84487f12015-07-24 21:03:07 +00001758}
1759
Rui Ueyama2eda6d12016-11-23 22:41:00 +00001760// The entry point address is chosen in the following ways.
1761//
1762// 1. the '-e' entry command-line option;
1763// 2. the ENTRY(symbol) command in a linker control script;
1764// 3. the value of the symbol start, if present;
1765// 4. the address of the first byte of the .text section, if present;
1766// 5. the address 0.
Rui Ueyama6bd38222017-04-05 21:37:09 +00001767template <class ELFT> uint64_t Writer<ELFT>::getEntryAddr() {
Rui Ueyamaa1407c42016-12-07 03:23:06 +00001768 // Case 1, 2 or 3. As a special case, if the symbol is actually
1769 // a number, we'll use that number as an address.
Rafael Espindola244ef982017-07-26 18:42:48 +00001770 if (SymbolBody *B = Symtab->find(Config->Entry))
George Rimarf64618a2017-03-17 11:56:54 +00001771 return B->getVA();
Rui Ueyamaa1407c42016-12-07 03:23:06 +00001772 uint64_t Addr;
George Rimarab947682017-05-16 08:19:25 +00001773 if (to_integer(Config->Entry, Addr))
Rui Ueyamaa1407c42016-12-07 03:23:06 +00001774 return Addr;
Rui Ueyama2eda6d12016-11-23 22:41:00 +00001775
1776 // Case 4
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001777 if (OutputSection *Sec = findSection(".text")) {
Rui Ueyama9e5f5ef2016-12-07 04:06:21 +00001778 if (Config->WarnMissingEntry)
Petr Hosek2f50fef2016-12-07 02:26:16 +00001779 warn("cannot find entry symbol " + Config->Entry + "; defaulting to 0x" +
1780 utohexstr(Sec->Addr));
Rui Ueyama2eda6d12016-11-23 22:41:00 +00001781 return Sec->Addr;
1782 }
1783
1784 // Case 5
Rui Ueyama9e5f5ef2016-12-07 04:06:21 +00001785 if (Config->WarnMissingEntry)
Petr Hosek2f50fef2016-12-07 02:26:16 +00001786 warn("cannot find entry symbol " + Config->Entry +
1787 "; not setting start address");
Rui Ueyama8da7aa02016-10-20 00:07:36 +00001788 return 0;
Rui Ueyama3bfaba92015-12-24 08:37:34 +00001789}
1790
Rui Ueyama4cea4e82016-02-25 19:28:37 +00001791static uint16_t getELFType() {
Rui Ueyamad57e74b72017-03-17 23:29:01 +00001792 if (Config->Pic)
Rui Ueyama4cea4e82016-02-25 19:28:37 +00001793 return ET_DYN;
1794 if (Config->Relocatable)
1795 return ET_REL;
1796 return ET_EXEC;
1797}
1798
Rui Ueyama1a311f12015-12-26 10:52:26 +00001799// This function is called after we have assigned address and size
Rafael Espindola78493a22017-01-28 17:48:21 +00001800// to each section. This function fixes some predefined
Rui Ueyama1a311f12015-12-26 10:52:26 +00001801// symbol values that depend on section address and size.
Rafael Espindola78493a22017-01-28 17:48:21 +00001802template <class ELFT> void Writer<ELFT>::fixPredefinedSymbols() {
George Rimare6c5d382017-04-05 10:03:25 +00001803 if (ElfSym::Bss)
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001804 ElfSym::Bss->Section = findSection(".bss");
George Rimare6c5d382017-04-05 10:03:25 +00001805
Simon Atanasyan8469b882016-11-23 22:22:16 +00001806 // Setup MIPS _gp_disp/__gnu_local_gp symbols which should
1807 // be equal to the _gp symbol's value.
Rafael Espindolacccd2c62017-05-31 22:46:19 +00001808 if (Config->EMachine == EM_MIPS && !ElfSym::MipsGp->Value) {
1809 // Find GP-relative section with the lowest address
1810 // and use this address to calculate default _gp value.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001811 for (const OutputSection *Cmd : OutputSections) {
1812 const OutputSection *OS = Cmd;
Rafael Espindola47c9f842017-05-31 22:49:50 +00001813 if (OS->Flags & SHF_MIPS_GPREL) {
1814 ElfSym::MipsGp->Value = OS->Addr + 0x7ff0;
1815 break;
1816 }
1817 }
Simon Atanasyan8469b882016-11-23 22:22:16 +00001818 }
Rui Ueyama1a311f12015-12-26 10:52:26 +00001819}
1820
Michael J. Spencer84487f12015-07-24 21:03:07 +00001821template <class ELFT> void Writer<ELFT>::writeHeader() {
1822 uint8_t *Buf = Buffer->getBufferStart();
Rui Ueyamae08cd672015-10-23 22:44:39 +00001823 memcpy(Buf, "\177ELF", 4);
1824
Rui Ueyama6621d8e2015-10-24 17:57:40 +00001825 // Write the ELF header.
Rafael Espindola18608a02015-09-08 21:57:31 +00001826 auto *EHdr = reinterpret_cast<Elf_Ehdr *>(Buf);
Rui Ueyamaf2dc4362017-04-05 21:08:47 +00001827 EHdr->e_ident[EI_CLASS] = Config->Is64 ? ELFCLASS64 : ELFCLASS32;
1828 EHdr->e_ident[EI_DATA] = Config->IsLE ? ELFDATA2LSB : ELFDATA2MSB;
Michael J. Spencer84487f12015-07-24 21:03:07 +00001829 EHdr->e_ident[EI_VERSION] = EV_CURRENT;
Rafael Espindola7cc713a2016-10-27 14:00:51 +00001830 EHdr->e_ident[EI_OSABI] = Config->OSABI;
Rui Ueyama4cea4e82016-02-25 19:28:37 +00001831 EHdr->e_type = getELFType();
Rafael Espindola7cc713a2016-10-27 14:00:51 +00001832 EHdr->e_machine = Config->EMachine;
Michael J. Spencer84487f12015-07-24 21:03:07 +00001833 EHdr->e_version = EV_CURRENT;
Rui Ueyama2eda6d12016-11-23 22:41:00 +00001834 EHdr->e_entry = getEntryAddr();
Michael J. Spencer8039dae22015-07-29 00:30:10 +00001835 EHdr->e_shoff = SectionHeaderOff;
Rafael Espindola18608a02015-09-08 21:57:31 +00001836 EHdr->e_ehsize = sizeof(Elf_Ehdr);
Rui Ueyama2f1b79f2015-10-10 22:34:30 +00001837 EHdr->e_phnum = Phdrs.size();
Rafael Espindola18608a02015-09-08 21:57:31 +00001838 EHdr->e_shentsize = sizeof(Elf_Shdr);
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001839 EHdr->e_shnum = OutputSections.size() + 1;
Rafael Espindoladb5e56f2017-05-31 20:17:44 +00001840 EHdr->e_shstrndx = InX::ShStrTab->getParent()->SectionIndex;
Rui Ueyama6621d8e2015-10-24 17:57:40 +00001841
Rui Ueyama1e2e8ea2016-09-13 20:51:32 +00001842 if (Config->EMachine == EM_ARM)
1843 // We don't currently use any features incompatible with EF_ARM_EABI_VER5,
1844 // but we don't have any firm guarantees of conformance. Linux AArch64
1845 // kernels (as of 2016) require an EABI version to be set.
1846 EHdr->e_flags = EF_ARM_EABI_VER5;
1847 else if (Config->EMachine == EM_MIPS)
Simon Atanasyan4f90c2f2016-07-20 20:30:41 +00001848 EHdr->e_flags = getMipsEFlags<ELFT>();
Rui Ueyama22b5d1f2016-03-13 19:29:17 +00001849
George Rimar58941ee2016-02-25 08:23:37 +00001850 if (!Config->Relocatable) {
1851 EHdr->e_phoff = sizeof(Elf_Ehdr);
1852 EHdr->e_phentsize = sizeof(Elf_Phdr);
1853 }
1854
Rui Ueyama6621d8e2015-10-24 17:57:40 +00001855 // Write the program header table.
Rafael Espindola4fc60442016-02-10 22:43:13 +00001856 auto *HBuf = reinterpret_cast<Elf_Phdr *>(Buf + EHdr->e_phoff);
George Rimaraa354182017-07-27 07:46:50 +00001857 for (PhdrEntry *P : Phdrs) {
1858 HBuf->p_type = P->p_type;
1859 HBuf->p_flags = P->p_flags;
1860 HBuf->p_offset = P->p_offset;
1861 HBuf->p_vaddr = P->p_vaddr;
1862 HBuf->p_paddr = P->p_paddr;
1863 HBuf->p_filesz = P->p_filesz;
1864 HBuf->p_memsz = P->p_memsz;
1865 HBuf->p_align = P->p_align;
Rafael Espindola17cb7c02016-12-19 17:01:01 +00001866 ++HBuf;
1867 }
Rafael Espindolae438e072015-09-08 22:55:28 +00001868
Rui Ueyama6621d8e2015-10-24 17:57:40 +00001869 // Write the section header table. Note that the first table entry is null.
Rui Ueyamaad59b652016-02-25 23:58:21 +00001870 auto *SHdrs = reinterpret_cast<Elf_Shdr *>(Buf + EHdr->e_shoff);
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001871 for (OutputSection *Sec : OutputSections)
1872 Sec->writeHeaderTo<ELFT>(++SHdrs);
Michael J. Spencer84487f12015-07-24 21:03:07 +00001873}
1874
Rui Ueyama6d12eae2016-12-05 17:40:37 +00001875// Open a result file.
Rui Ueyamaf7f52ef2016-04-01 17:24:19 +00001876template <class ELFT> void Writer<ELFT>::openFile() {
Rui Ueyama6bd38222017-04-05 21:37:09 +00001877 if (!Config->Is64 && FileSize > UINT32_MAX) {
1878 error("output file too large: " + Twine(FileSize) + " bytes");
1879 return;
1880 }
1881
Rui Ueyama6d12eae2016-12-05 17:40:37 +00001882 unlinkAsync(Config->OutputFile);
Rafael Espindolabdc8f2f2015-08-13 00:31:46 +00001883 ErrorOr<std::unique_ptr<FileOutputBuffer>> BufferOrErr =
Rui Ueyamacbe39262016-02-02 22:48:04 +00001884 FileOutputBuffer::create(Config->OutputFile, FileSize,
1885 FileOutputBuffer::F_executable);
Rui Ueyama6d12eae2016-12-05 17:40:37 +00001886
Rui Ueyamaaa2db882016-07-15 01:38:54 +00001887 if (auto EC = BufferOrErr.getError())
Rui Ueyamac8d3a832017-01-12 22:18:04 +00001888 error("failed to open " + Config->OutputFile + ": " + EC.message());
Rui Ueyamaf7f52ef2016-04-01 17:24:19 +00001889 else
Rui Ueyamaaa2db882016-07-15 01:38:54 +00001890 Buffer = std::move(*BufferOrErr);
Michael J. Spencer84487f12015-07-24 21:03:07 +00001891}
1892
George Rimar86ce2672016-08-25 09:05:47 +00001893template <class ELFT> void Writer<ELFT>::writeSectionsBinary() {
1894 uint8_t *Buf = Buffer->getBufferStart();
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001895 for (OutputSection *Sec : OutputSections)
Rafael Espindola04a2e342016-11-09 01:42:41 +00001896 if (Sec->Flags & SHF_ALLOC)
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001897 Sec->writeTo<ELFT>(Buf + Sec->Offset);
George Rimar86ce2672016-08-25 09:05:47 +00001898}
1899
Rui Ueyama6238ed22017-08-14 21:18:12 +00001900static void fillTrap(uint8_t *I, uint8_t *End) {
George Rimarf7ef2a12017-08-21 08:31:14 +00001901 for (; I + 4 <= End; I += 4)
Petr Hosekedd6c352017-08-02 16:35:00 +00001902 memcpy(I, &Target->TrapInstr, 4);
1903}
1904
Rui Ueyama6238ed22017-08-14 21:18:12 +00001905// Fill the last page of executable segments with trap instructions
1906// instead of leaving them as zero. Even though it is not required by any
1907// standard, it is in general a good thing to do for security reasons.
1908//
1909// We'll leave other pages in segments as-is because the rest will be
1910// overwritten by output sections.
Petr Hosekedd6c352017-08-02 16:35:00 +00001911template <class ELFT> void Writer<ELFT>::writeTrapInstr() {
1912 if (Script->Opt.HasSections)
1913 return;
1914
Rui Ueyama6238ed22017-08-14 21:18:12 +00001915 // Fill the last page.
Petr Hosekedd6c352017-08-02 16:35:00 +00001916 uint8_t *Buf = Buffer->getBufferStart();
Rui Ueyama6238ed22017-08-14 21:18:12 +00001917 for (PhdrEntry *P : Phdrs)
1918 if (P->p_type == PT_LOAD && (P->p_flags & PF_X))
1919 fillTrap(Buf + alignDown(P->p_offset + P->p_filesz, Target->PageSize),
1920 Buf + alignTo(P->p_offset + P->p_filesz, Target->PageSize));
Petr Hosekedd6c352017-08-02 16:35:00 +00001921
Rui Ueyama6238ed22017-08-14 21:18:12 +00001922 // Round up the file size of the last segment to the page boundary iff it is
1923 // an executable segment to ensure that other other tools don't accidentally
1924 // trim the instruction padding (e.g. when stripping the file).
Petr Hosekedd6c352017-08-02 16:35:00 +00001925 PhdrEntry *LastRX = nullptr;
1926 for (PhdrEntry *P : Phdrs) {
1927 if (P->p_type != PT_LOAD)
1928 continue;
1929 if (P->p_flags & PF_X)
1930 LastRX = P;
1931 else
1932 LastRX = nullptr;
1933 }
Petr Hosekedd6c352017-08-02 16:35:00 +00001934 if (LastRX)
Petr Hosek7ab9f7b2017-09-01 21:48:20 +00001935 LastRX->p_memsz = LastRX->p_filesz =
1936 alignTo(LastRX->p_filesz, Target->PageSize);
Petr Hosekedd6c352017-08-02 16:35:00 +00001937}
1938
Michael J. Spencer84487f12015-07-24 21:03:07 +00001939// Write section contents to a mmap'ed file.
1940template <class ELFT> void Writer<ELFT>::writeSections() {
1941 uint8_t *Buf = Buffer->getBufferStart();
Hal Finkeldaedc122015-10-12 23:16:53 +00001942
Rui Ueyama75118252016-08-09 01:35:37 +00001943 // PPC64 needs to process relocations in the .opd section
1944 // before processing relocations in code-containing sections.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001945 if (auto *OpdCmd = findSection(".opd")) {
1946 Out::Opd = OpdCmd;
Rui Ueyama9d1bacb12017-02-27 02:31:26 +00001947 Out::OpdBuf = Buf + Out::Opd->Offset;
Rafael Espindola55b169b2017-05-24 18:08:04 +00001948 OpdCmd->template writeTo<ELFT>(Buf + Out::Opd->Offset);
Rafael Espindola7a513052015-10-13 14:45:51 +00001949 }
Hal Finkeldaedc122015-10-12 23:16:53 +00001950
Rafael Espindola24e6f362017-02-24 15:07:30 +00001951 OutputSection *EhFrameHdr =
Rafael Espindola881cc162017-05-26 17:28:17 +00001952 (In<ELFT>::EhFrameHdr && !In<ELFT>::EhFrameHdr->empty())
Rafael Espindoladb5e56f2017-05-31 20:17:44 +00001953 ? In<ELFT>::EhFrameHdr->getParent()
Rafael Espindola881cc162017-05-26 17:28:17 +00001954 : nullptr;
Rafael Espindola08d6a3f2017-02-11 01:40:49 +00001955
1956 // In -r or -emit-relocs mode, write the relocation sections first as in
1957 // ELf_Rel targets we might find out that we need to modify the relocated
1958 // section while doing it.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001959 for (OutputSection *Sec : OutputSections)
Rafael Espindola08d6a3f2017-02-11 01:40:49 +00001960 if (Sec->Type == SHT_REL || Sec->Type == SHT_RELA)
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001961 Sec->writeTo<ELFT>(Buf + Sec->Offset);
Rafael Espindola08d6a3f2017-02-11 01:40:49 +00001962
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001963 for (OutputSection *Sec : OutputSections)
Rui Ueyama9d1bacb12017-02-27 02:31:26 +00001964 if (Sec != Out::Opd && Sec != EhFrameHdr && Sec->Type != SHT_REL &&
Rafael Espindola08d6a3f2017-02-11 01:40:49 +00001965 Sec->Type != SHT_RELA)
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001966 Sec->writeTo<ELFT>(Buf + Sec->Offset);
Eugene Leviante4f590f2016-08-31 07:43:50 +00001967
1968 // The .eh_frame_hdr depends on .eh_frame section contents, therefore
1969 // it should be written after .eh_frame is written.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001970 if (EhFrameHdr)
1971 EhFrameHdr->writeTo<ELFT>(Buf + EhFrameHdr->Offset);
Michael J. Spencer84487f12015-07-24 21:03:07 +00001972}
Rui Ueyama3ce825e2015-10-09 21:07:25 +00001973
Rui Ueyama634ddf02016-03-11 20:51:53 +00001974template <class ELFT> void Writer<ELFT>::writeBuildId() {
Rafael Espindoladb5e56f2017-05-31 20:17:44 +00001975 if (!InX::BuildId || !InX::BuildId->getParent())
Rui Ueyama634ddf02016-03-11 20:51:53 +00001976 return;
1977
Petr Hosekfdfcb792016-09-01 22:43:03 +00001978 // Compute a hash of all sections of the output file.
Rui Ueyama634ddf02016-03-11 20:51:53 +00001979 uint8_t *Start = Buffer->getBufferStart();
Petr Hosekfdfcb792016-09-01 22:43:03 +00001980 uint8_t *End = Start + FileSize;
Rafael Espindola895aea62017-05-11 22:02:41 +00001981 InX::BuildId->writeBuildId({Start, End});
Rui Ueyama634ddf02016-03-11 20:51:53 +00001982}
1983
Rui Ueyama84907c52016-08-09 03:38:23 +00001984template void elf::writeResult<ELF32LE>();
1985template void elf::writeResult<ELF32BE>();
1986template void elf::writeResult<ELF64LE>();
1987template void elf::writeResult<ELF64BE>();