blob: 4db4f0a1d7011d6251c6e98c089bca7f168260fb [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();
Rui Ueyama2df0fd82015-12-25 07:38:58 +000057
George Rimaraa354182017-07-27 07:46:50 +000058 std::vector<PhdrEntry *> createPhdrs();
Rafael Espindola074ba932016-12-06 13:43:34 +000059 void removeEmptyPTLoad();
George Rimaraa354182017-07-27 07:46:50 +000060 void addPtArmExid(std::vector<PhdrEntry *> &Phdrs);
Rui Ueyamae044e9c2016-04-01 17:07:17 +000061 void assignFileOffsets();
George Rimar86ce2672016-08-25 09:05:47 +000062 void assignFileOffsetsBinary();
Rui Ueyamae044e9c2016-04-01 17:07:17 +000063 void setPhdrs();
Rui Ueyama47091902016-03-30 19:41:51 +000064 void fixSectionAlignments();
Rafael Espindola78493a22017-01-28 17:48:21 +000065 void fixPredefinedSymbols();
Rui Ueyamaf7f52ef2016-04-01 17:24:19 +000066 void openFile();
Petr Hosekedd6c352017-08-02 16:35:00 +000067 void writeTrapInstr();
Rui Ueyamaafff74e22015-08-05 23:24:46 +000068 void writeHeader();
69 void writeSections();
George Rimar86ce2672016-08-25 09:05:47 +000070 void writeSectionsBinary();
Rui Ueyama634ddf02016-03-11 20:51:53 +000071 void writeBuildId();
Rui Ueyamaafff74e22015-08-05 23:24:46 +000072
Rui Ueyama818bb2f2016-07-16 18:55:47 +000073 std::unique_ptr<FileOutputBuffer> Buffer;
Michael J. Spencer2f008242015-09-17 19:58:07 +000074
Rafael Espindola05531242017-07-06 16:40:44 +000075 OutputSectionFactory Factory;
Rafael Espindola4fc60442016-02-10 22:43:13 +000076
Rui Ueyama01687222015-12-26 09:47:57 +000077 void addRelIpltSymbols();
Rui Ueyamaa5d79d12015-12-26 09:48:00 +000078 void addStartEndSymbols();
Rafael Espindola24e6f362017-02-24 15:07:30 +000079 void addStartStopSymbols(OutputSection *Sec);
Rui Ueyama6bd38222017-04-05 21:37:09 +000080 uint64_t getEntryAddr();
Rafael Espindola8c022ca2017-07-27 19:22:43 +000081 OutputSection *findSection(StringRef Name);
Rui Ueyama2f1b79f2015-10-10 22:34:30 +000082
George Rimaraa354182017-07-27 07:46:50 +000083 std::vector<PhdrEntry *> Phdrs;
Michael J. Spencer2f008242015-09-17 19:58:07 +000084
Rui Ueyama6bd38222017-04-05 21:37:09 +000085 uint64_t FileSize;
86 uint64_t SectionHeaderOff;
Peter Smith113a59e2017-06-26 10:22:17 +000087
88 bool HasGotBaseSym = false;
Rui Ueyamaafff74e22015-08-05 23:24:46 +000089};
90} // anonymous namespace
91
Rui Ueyama55518e72016-10-28 20:57:25 +000092StringRef elf::getOutputSectionName(StringRef Name) {
George Rimar60a0ea12017-06-05 12:49:21 +000093 // ".zdebug_" is a prefix for ZLIB-compressed sections.
94 // Because we decompressed input sections, we want to remove 'z'.
95 if (Name.startswith(".zdebug_"))
96 return Saver.save("." + Name.substr(2));
97
Eugene Levianta8d12ef2016-10-05 10:10:45 +000098 if (Config->Relocatable)
99 return Name;
100
Rafael Espindola7d382732016-09-19 19:59:21 +0000101 for (StringRef V :
George Rimar1ab9cf42017-03-17 10:14:53 +0000102 {".text.", ".rodata.", ".data.rel.ro.", ".data.", ".bss.rel.ro.",
103 ".bss.", ".init_array.", ".fini_array.", ".ctors.", ".dtors.", ".tbss.",
Peter Smith691ff762017-06-28 09:12:38 +0000104 ".gcc_except_table.", ".tdata.", ".ARM.exidx.", ".ARM.extab."}) {
Rafael Espindola7d382732016-09-19 19:59:21 +0000105 StringRef Prefix = V.drop_back();
106 if (Name.startswith(V) || Name == Prefix)
107 return Prefix;
108 }
Rui Ueyama05384082016-10-12 22:36:31 +0000109
Rui Ueyamae8a61022016-11-05 23:05:47 +0000110 // CommonSection is identified as "COMMON" in linker scripts.
111 // By default, it should go to .bss section.
112 if (Name == "COMMON")
113 return ".bss";
114
George Rimar5d53d1f2016-07-12 08:50:42 +0000115 return Name;
116}
117
Rui Ueyamafd03cfd2016-07-21 11:01:23 +0000118template <class ELFT> static bool needsInterpSection() {
Rafael Espindola244ef982017-07-26 18:42:48 +0000119 return !SharedFile<ELFT>::Instances.empty() &&
George Rimara8dba482017-03-20 10:09:58 +0000120 !Config->DynamicLinker.empty() && !Script->ignoreInterpSection();
Rui Ueyamafd03cfd2016-07-21 11:01:23 +0000121}
122
George Rimard8b27762016-11-14 10:14:18 +0000123template <class ELFT> void elf::writeResult() { Writer<ELFT>().run(); }
Rafael Espindola4fc60442016-02-10 22:43:13 +0000124
Rafael Espindola074ba932016-12-06 13:43:34 +0000125template <class ELFT> void Writer<ELFT>::removeEmptyPTLoad() {
George Rimaraa354182017-07-27 07:46:50 +0000126 auto I = llvm::remove_if(Phdrs, [&](const PhdrEntry *P) {
127 if (P->p_type != PT_LOAD)
Rafael Espindola074ba932016-12-06 13:43:34 +0000128 return false;
George Rimaraa354182017-07-27 07:46:50 +0000129 if (!P->First)
Rafael Espindola41217612016-12-08 03:17:05 +0000130 return true;
George Rimaraa354182017-07-27 07:46:50 +0000131 uint64_t Size = P->Last->Addr + P->Last->Size - P->First->Addr;
Rafael Espindola074ba932016-12-06 13:43:34 +0000132 return Size == 0;
133 });
134 Phdrs.erase(I, Phdrs.end());
135}
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 Espindolaa6fef0e2017-06-05 23:43:49 +0000195 if (!Script->Opt.HasSections && !Config->Relocatable)
Rafael Espindolac7c42f62017-06-03 06:51:22 +0000196 fixSectionAlignments();
197
Rafael Espindola55b169b2017-05-24 18:08:04 +0000198 // If -compressed-debug-sections is specified, we need to compress
199 // .debug_* sections. Do it right now because it changes the size of
200 // output sections.
George Rimara9b07142017-08-04 08:30:16 +0000201 parallelForEach(OutputSections,
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000202 [](OutputSection *Sec) { Sec->maybeCompress<ELFT>(); });
Rafael Espindola805f5152017-06-01 16:30:12 +0000203
Peter Smith5aedebf2017-07-05 09:12:54 +0000204 Script->assignAddresses();
205 Script->allocateHeaders(Phdrs);
Rafael Espindola189860c2017-06-07 02:24:08 +0000206
207 // Remove empty PT_LOAD to avoid causing the dynamic linker to try to mmap a
208 // 0 sized region. This has to be done late since only after assignAddresses
209 // we know the size of the sections.
210 removeEmptyPTLoad();
211
212 if (!Config->OFormatBinary)
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000213 assignFileOffsets();
Rafael Espindola189860c2017-06-07 02:24:08 +0000214 else
215 assignFileOffsetsBinary();
216
217 setPhdrs();
218
219 if (Config->Relocatable) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000220 for (OutputSection *Sec : OutputSections)
221 Sec->Addr = 0;
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000222 } else {
Rafael Espindola78493a22017-01-28 17:48:21 +0000223 fixPredefinedSymbols();
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000224 }
225
George Rimar2ddab6d2017-01-17 13:50:34 +0000226 // It does not make sense try to open the file if we have error already.
227 if (ErrorCount)
228 return;
Rui Ueyama0b1b6952016-11-21 02:11:05 +0000229 // Write the result down to a file.
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000230 openFile();
Rui Ueyamaf373dd72016-11-24 01:43:21 +0000231 if (ErrorCount)
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000232 return;
Rafael Espindola3f235c72017-06-01 16:32:58 +0000233
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000234 if (!Config->OFormatBinary) {
Petr Hosekedd6c352017-08-02 16:35:00 +0000235 writeTrapInstr();
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000236 writeHeader();
237 writeSections();
238 } else {
239 writeSectionsBinary();
240 }
Rui Ueyama0b1b6952016-11-21 02:11:05 +0000241
242 // Backfill .note.gnu.build-id section content. This is done at last
243 // because the content is usually a hash value of the entire output file.
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000244 writeBuildId();
Rui Ueyamaf373dd72016-11-24 01:43:21 +0000245 if (ErrorCount)
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000246 return;
Rui Ueyama0b1b6952016-11-21 02:11:05 +0000247
Rui Ueyama40eaa992017-01-18 03:34:38 +0000248 // Handle -Map option.
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000249 writeMapFile<ELFT>();
Rui Ueyama40eaa992017-01-18 03:34:38 +0000250 if (ErrorCount)
251 return;
252
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000253 if (auto EC = Buffer->commit())
Rui Ueyamac8d3a832017-01-12 22:18:04 +0000254 error("failed to write to the output file: " + EC.message());
Rui Ueyama0b1b6952016-11-21 02:11:05 +0000255
256 // Flush the output streams and exit immediately. A full shutdown
257 // is a good test that we are keeping track of all allocated memory,
258 // but actually freeing it is a waste of time in a regular linker run.
259 if (Config->ExitEarly)
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000260 exitLld(0);
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000261}
262
Rui Ueyama9d1bacb12017-02-27 02:31:26 +0000263// Initialize Out members.
Rui Ueyamaf83aca42016-11-01 23:17:45 +0000264template <class ELFT> void Writer<ELFT>::createSyntheticSections() {
265 // Initialize all pointers with NULL. This is needed because
266 // you can call lld::elf::main more than once as a library.
Rui Ueyama9d1bacb12017-02-27 02:31:26 +0000267 memset(&Out::First, 0, sizeof(Out));
Rui Ueyamacfadbd92016-11-01 23:12:51 +0000268
Rui Ueyama536a2672017-02-27 02:32:08 +0000269 auto Add = [](InputSectionBase *Sec) { InputSections.push_back(Sec); };
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000270
Rafael Espindola895aea62017-05-11 22:02:41 +0000271 InX::DynStrTab = make<StringTableSection>(".dynstr", true);
Rafael Espindola5ab19892017-05-11 23:16:43 +0000272 InX::Dynamic = make<DynamicSection<ELFT>>();
Eugene Levianta96d9022016-11-16 10:02:27 +0000273 In<ELFT>::RelaDyn = make<RelocationSection<ELFT>>(
Rui Ueyamad57e74b72017-03-17 23:29:01 +0000274 Config->IsRela ? ".rela.dyn" : ".rel.dyn", Config->ZCombreloc);
Rafael Espindola895aea62017-05-11 22:02:41 +0000275 InX::ShStrTab = make<StringTableSection>(".shstrtab", false);
Rui Ueyama4197a6a2016-02-05 18:41:40 +0000276
Rui Ueyama9d1bacb12017-02-27 02:31:26 +0000277 Out::ElfHeader = make<OutputSection>("", 0, SHF_ALLOC);
278 Out::ElfHeader->Size = sizeof(Elf_Ehdr);
279 Out::ProgramHeaders = make<OutputSection>("", 0, SHF_ALLOC);
Rui Ueyama6bd38222017-04-05 21:37:09 +0000280 Out::ProgramHeaders->updateAlignment(Config->Wordsize);
Rui Ueyama4197a6a2016-02-05 18:41:40 +0000281
Rui Ueyamae8a61022016-11-05 23:05:47 +0000282 if (needsInterpSection<ELFT>()) {
Rafael Espindola895aea62017-05-11 22:02:41 +0000283 InX::Interp = createInterpSection();
284 Add(InX::Interp);
Rui Ueyamae8a61022016-11-05 23:05:47 +0000285 } else {
Rafael Espindola895aea62017-05-11 22:02:41 +0000286 InX::Interp = nullptr;
Rui Ueyamae8a61022016-11-05 23:05:47 +0000287 }
Rui Ueyama3a41be22016-04-07 22:49:21 +0000288
George Rimarf21aade2016-08-31 08:38:11 +0000289 if (Config->Strip != StripPolicy::All) {
Rafael Espindola895aea62017-05-11 22:02:41 +0000290 InX::StrTab = make<StringTableSection>(".strtab", false);
George Rimarf45f6812017-05-16 08:53:30 +0000291 InX::SymTab = make<SymbolTableSection<ELFT>>(*InX::StrTab);
Rui Ueyama4197a6a2016-02-05 18:41:40 +0000292 }
Rui Ueyamacfadbd92016-11-01 23:12:51 +0000293
Rui Ueyamac4030a12016-11-22 00:54:15 +0000294 if (Config->BuildId != BuildIdKind::None) {
Rafael Espindola895aea62017-05-11 22:02:41 +0000295 InX::BuildId = make<BuildIdSection>();
296 Add(InX::BuildId);
Rui Ueyamac4030a12016-11-22 00:54:15 +0000297 }
Rui Ueyamae8a61022016-11-05 23:05:47 +0000298
Rafael Espindola895aea62017-05-11 22:02:41 +0000299 InX::Common = createCommonSection<ELFT>();
300 if (InX::Common)
George Rimar176d6062017-03-17 13:31:07 +0000301 Add(InX::Common);
Simon Atanasyance02cf02016-11-09 21:36:56 +0000302
Rafael Espindola895aea62017-05-11 22:02:41 +0000303 InX::Bss = make<BssSection>(".bss");
304 Add(InX::Bss);
305 InX::BssRelRo = make<BssSection>(".bss.rel.ro");
306 Add(InX::BssRelRo);
George Rimar1ab9cf42017-03-17 10:14:53 +0000307
Rui Ueyama1d75de02016-11-22 04:28:39 +0000308 // Add MIPS-specific sections.
Rafael Espindola244ef982017-07-26 18:42:48 +0000309 bool HasDynSymTab = !SharedFile<ELFT>::Instances.empty() || Config->Pic ||
310 Config->ExportDynamic;
Simon Atanasyance02cf02016-11-09 21:36:56 +0000311 if (Config->EMachine == EM_MIPS) {
George Rimar11992c862016-11-25 08:05:41 +0000312 if (!Config->Shared && HasDynSymTab) {
Rafael Espindola895aea62017-05-11 22:02:41 +0000313 InX::MipsRldMap = make<MipsRldMapSection>();
314 Add(InX::MipsRldMap);
Eugene Leviant17b7a572016-11-22 17:49:14 +0000315 }
Rui Ueyama1d75de02016-11-22 04:28:39 +0000316 if (auto *Sec = MipsAbiFlagsSection<ELFT>::create())
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000317 Add(Sec);
Rui Ueyama1d75de02016-11-22 04:28:39 +0000318 if (auto *Sec = MipsOptionsSection<ELFT>::create())
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000319 Add(Sec);
Rui Ueyama1d75de02016-11-22 04:28:39 +0000320 if (auto *Sec = MipsReginfoSection<ELFT>::create())
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000321 Add(Sec);
Simon Atanasyance02cf02016-11-09 21:36:56 +0000322 }
Eugene Leviant41ca3272016-11-10 09:48:29 +0000323
George Rimar11992c862016-11-25 08:05:41 +0000324 if (HasDynSymTab) {
George Rimar69b17c32017-05-16 10:04:42 +0000325 InX::DynSymTab = make<SymbolTableSection<ELFT>>(*InX::DynStrTab);
326 Add(InX::DynSymTab);
George Rimar11992c862016-11-25 08:05:41 +0000327
328 In<ELFT>::VerSym = make<VersionTableSection<ELFT>>();
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000329 Add(In<ELFT>::VerSym);
George Rimar11992c862016-11-25 08:05:41 +0000330
331 if (!Config->VersionDefinitions.empty()) {
332 In<ELFT>::VerDef = make<VersionDefinitionSection<ELFT>>();
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000333 Add(In<ELFT>::VerDef);
George Rimar11992c862016-11-25 08:05:41 +0000334 }
335
336 In<ELFT>::VerNeed = make<VersionNeedSection<ELFT>>();
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000337 Add(In<ELFT>::VerNeed);
George Rimar11992c862016-11-25 08:05:41 +0000338
339 if (Config->GnuHash) {
George Rimar69b17c32017-05-16 10:04:42 +0000340 InX::GnuHashTab = make<GnuHashTableSection>();
341 Add(InX::GnuHashTab);
George Rimar11992c862016-11-25 08:05:41 +0000342 }
343
344 if (Config->SysvHash) {
345 In<ELFT>::HashTab = make<HashTableSection<ELFT>>();
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000346 Add(In<ELFT>::HashTab);
George Rimar11992c862016-11-25 08:05:41 +0000347 }
348
Rafael Espindola5ab19892017-05-11 23:16:43 +0000349 Add(InX::Dynamic);
Rafael Espindola895aea62017-05-11 22:02:41 +0000350 Add(InX::DynStrTab);
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000351 Add(In<ELFT>::RelaDyn);
George Rimar11992c862016-11-25 08:05:41 +0000352 }
353
Rui Ueyama1d75de02016-11-22 04:28:39 +0000354 // Add .got. MIPS' .got is so different from the other archs,
355 // it has its own class.
George Rimar11992c862016-11-25 08:05:41 +0000356 if (Config->EMachine == EM_MIPS) {
Rafael Espindolab3aa2c92017-05-11 21:33:30 +0000357 InX::MipsGot = make<MipsGotSection>();
358 Add(InX::MipsGot);
George Rimar11992c862016-11-25 08:05:41 +0000359 } else {
Rafael Espindolaa6465bb2017-05-18 16:45:36 +0000360 InX::Got = make<GotSection>();
Rafael Espindola88ab9fb2017-05-11 23:26:03 +0000361 Add(InX::Got);
George Rimar11992c862016-11-25 08:05:41 +0000362 }
Simon Atanasyan725dc142016-11-16 21:01:02 +0000363
Rafael Espindola4b1c3692017-05-11 21:23:38 +0000364 InX::GotPlt = make<GotPltSection>();
365 Add(InX::GotPlt);
Rafael Espindola895aea62017-05-11 22:02:41 +0000366 InX::IgotPlt = make<IgotPltSection>();
367 Add(InX::IgotPlt);
George Rimar3fb5a6d2016-11-29 16:05:27 +0000368
369 if (Config->GdbIndex) {
Rafael Espindola300b3862017-07-12 23:56:53 +0000370 InX::GdbIndex = createGdbIndex<ELFT>();
Rafael Espindola895aea62017-05-11 22:02:41 +0000371 Add(InX::GdbIndex);
George Rimar3fb5a6d2016-11-29 16:05:27 +0000372 }
373
374 // We always need to add rel[a].plt to output if it has entries.
375 // Even for static linking it can contain R_[*]_IRELATIVE relocations.
376 In<ELFT>::RelaPlt = make<RelocationSection<ELFT>>(
Rui Ueyamad57e74b72017-03-17 23:29:01 +0000377 Config->IsRela ? ".rela.plt" : ".rel.plt", false /*Sort*/);
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000378 Add(In<ELFT>::RelaPlt);
George Rimar3fb5a6d2016-11-29 16:05:27 +0000379
Peter Smithbaffdb82016-12-08 12:58:55 +0000380 // The RelaIplt immediately follows .rel.plt (.rel.dyn for ARM) to ensure
381 // that the IRelative relocations are processed last by the dynamic loader
382 In<ELFT>::RelaIplt = make<RelocationSection<ELFT>>(
383 (Config->EMachine == EM_ARM) ? ".rel.dyn" : In<ELFT>::RelaPlt->Name,
384 false /*Sort*/);
Rui Ueyama7ddd7a82017-02-05 05:18:58 +0000385 Add(In<ELFT>::RelaIplt);
Peter Smithbaffdb82016-12-08 12:58:55 +0000386
Rafael Espindola895aea62017-05-11 22:02:41 +0000387 InX::Plt = make<PltSection>(Target->PltHeaderSize);
388 Add(InX::Plt);
389 InX::Iplt = make<PltSection>(0);
390 Add(InX::Iplt);
George Rimar3fb5a6d2016-11-29 16:05:27 +0000391
Rafael Espindola66b4e212017-02-23 22:06:28 +0000392 if (!Config->Relocatable) {
George Rimar1c74c2f2017-03-09 08:45:25 +0000393 if (Config->EhFrameHdr) {
394 In<ELFT>::EhFrameHdr = make<EhFrameHeader<ELFT>>();
395 Add(In<ELFT>::EhFrameHdr);
396 }
Rafael Espindola66b4e212017-02-23 22:06:28 +0000397 In<ELFT>::EhFrame = make<EhFrameSection<ELFT>>();
398 Add(In<ELFT>::EhFrame);
399 }
400
George Rimar69b17c32017-05-16 10:04:42 +0000401 if (InX::SymTab)
402 Add(InX::SymTab);
Rafael Espindola895aea62017-05-11 22:02:41 +0000403 Add(InX::ShStrTab);
404 if (InX::StrTab)
405 Add(InX::StrTab);
Michael J. Spencer84487f12015-07-24 21:03:07 +0000406}
407
Rafael Espindola5616adf2017-03-08 22:36:28 +0000408static bool shouldKeepInSymtab(SectionBase *Sec, StringRef SymName,
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +0000409 const SymbolBody &B) {
Rafael Espindola08d6a3f2017-02-11 01:40:49 +0000410 if (B.isFile() || B.isSection())
Rafael Espindola10d71ff2016-01-27 18:04:26 +0000411 return false;
412
Rafael Espindola10d71ff2016-01-27 18:04:26 +0000413 // If sym references a section in a discarded group, don't keep it.
Rafael Espindola774ea7d2017-02-23 16:49:07 +0000414 if (Sec == &InputSection::Discarded)
Rafael Espindola10d71ff2016-01-27 18:04:26 +0000415 return false;
416
George Rimar9503f6d2016-08-31 08:46:30 +0000417 if (Config->Discard == DiscardPolicy::None)
Rafael Espindola10d71ff2016-01-27 18:04:26 +0000418 return true;
419
420 // In ELF assembly .L symbols are normally discarded by the assembler.
421 // If the assembler fails to do so, the linker discards them if
422 // * --discard-locals is used.
423 // * The symbol is in a SHF_MERGE section, which is normally the reason for
424 // the assembler keeping the .L symbol.
425 if (!SymName.startswith(".L") && !SymName.empty())
426 return true;
427
George Rimar9503f6d2016-08-31 08:46:30 +0000428 if (Config->Discard == DiscardPolicy::Locals)
Rafael Espindola10d71ff2016-01-27 18:04:26 +0000429 return false;
430
Rafael Espindola1854a8e2016-10-26 12:36:56 +0000431 return !Sec || !(Sec->Flags & SHF_MERGE);
Rafael Espindola10d71ff2016-01-27 18:04:26 +0000432}
433
George Rimar7702bc22017-03-16 11:20:02 +0000434static bool includeInSymtab(const SymbolBody &B) {
Rafael Espindola474eb012016-05-05 16:40:28 +0000435 if (!B.isLocal() && !B.symbol()->IsUsedInRegularObj)
436 return false;
437
Rui Ueyama80474a22017-02-28 19:29:55 +0000438 if (auto *D = dyn_cast<DefinedRegular>(&B)) {
Rafael Espindola474eb012016-05-05 16:40:28 +0000439 // Always include absolute symbols.
Rafael Espindola5616adf2017-03-08 22:36:28 +0000440 SectionBase *Sec = D->Section;
441 if (!Sec)
Rafael Espindola474eb012016-05-05 16:40:28 +0000442 return true;
Rafael Espindola5616adf2017-03-08 22:36:28 +0000443 if (auto *IS = dyn_cast<InputSectionBase>(Sec)) {
444 Sec = IS->Repl;
445 IS = cast<InputSectionBase>(Sec);
446 // Exclude symbols pointing to garbage-collected sections.
447 if (!IS->Live)
448 return false;
449 }
450 if (auto *S = dyn_cast<MergeInputSection>(Sec))
Rui Ueyama90fa3722016-05-22 00:41:38 +0000451 if (!S->getSectionPiece(D->Value)->Live)
Rafael Espindola474eb012016-05-05 16:40:28 +0000452 return false;
Rui Ueyama9c77d272017-08-10 15:54:27 +0000453 return true;
Rafael Espindola474eb012016-05-05 16:40:28 +0000454 }
Rui Ueyama9c77d272017-08-10 15:54:27 +0000455
456 if (auto *Sym = dyn_cast<DefinedCommon>(&B))
457 return Sym->Live;
Rafael Espindola474eb012016-05-05 16:40:28 +0000458 return true;
459}
Rafael Espindola462220d2016-05-05 16:38:46 +0000460
Rui Ueyama5a9640b2015-10-08 23:49:30 +0000461// Local symbols are not in the linker's symbol table. This function scans
462// each object file's symbol table to copy local symbols to the output.
463template <class ELFT> void Writer<ELFT>::copyLocalSymbols() {
George Rimar69b17c32017-05-16 10:04:42 +0000464 if (!InX::SymTab)
Rui Ueyama90f76fb2016-01-21 03:07:38 +0000465 return;
Rui Ueyama709fb2bb12017-07-26 22:13:32 +0000466 for (ObjFile<ELFT> *F : ObjFile<ELFT>::Instances) {
Rafael Espindola67d72c02016-03-11 12:06:30 +0000467 for (SymbolBody *B : F->getLocalSymbols()) {
George Rimar78fe56e2016-10-11 09:07:14 +0000468 if (!B->IsLocal)
Rui Ueyama3fc0f7e2016-11-23 18:07:33 +0000469 fatal(toString(F) +
George Rimar78fe56e2016-10-11 09:07:14 +0000470 ": broken object: getLocalSymbols returns a non-local symbol");
Rui Ueyama80474a22017-02-28 19:29:55 +0000471 auto *DR = dyn_cast<DefinedRegular>(B);
Rui Ueyama3fc0f7e2016-11-23 18:07:33 +0000472
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +0000473 // No reason to keep local undefined symbol in symtab.
474 if (!DR)
Rafael Espindola444576d2015-10-09 19:25:07 +0000475 continue;
George Rimar7702bc22017-03-16 11:20:02 +0000476 if (!includeInSymtab(*B))
Rafael Espindola462220d2016-05-05 16:38:46 +0000477 continue;
Rui Ueyama3fc0f7e2016-11-23 18:07:33 +0000478
Rafael Espindola5616adf2017-03-08 22:36:28 +0000479 SectionBase *Sec = DR->Section;
George Rimar7702bc22017-03-16 11:20:02 +0000480 if (!shouldKeepInSymtab(Sec, B->getName(), *B))
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +0000481 continue;
George Rimar69b17c32017-05-16 10:04:42 +0000482 InX::SymTab->addSymbol(B);
Rui Ueyama5a9640b2015-10-08 23:49:30 +0000483 }
484 }
485}
486
Rafael Espindola08d6a3f2017-02-11 01:40:49 +0000487template <class ELFT> void Writer<ELFT>::addSectionSymbols() {
488 // Create one STT_SECTION symbol for each output section we might
489 // have a relocation with.
Rafael Espindolad48b2082017-07-04 19:08:40 +0000490 for (BaseCommand *Base : Script->Opt.Commands) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000491 auto *Sec = dyn_cast<OutputSection>(Base);
492 if (!Sec)
Rui Ueyama73d29ab2017-02-28 19:43:54 +0000493 continue;
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000494 auto I = llvm::find_if(Sec->Commands, [](BaseCommand *Base) {
Rafael Espindolad48b2082017-07-04 19:08:40 +0000495 if (auto *ISD = dyn_cast<InputSectionDescription>(Base))
496 return !ISD->Sections.empty();
497 return false;
498 });
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000499 if (I == Sec->Commands.end())
Rafael Espindolad48b2082017-07-04 19:08:40 +0000500 continue;
501 InputSection *IS = cast<InputSectionDescription>(*I)->Sections[0];
Rui Ueyama73d29ab2017-02-28 19:43:54 +0000502 if (isa<SyntheticSection>(IS) || IS->Type == SHT_REL ||
Rafael Espindola08d6a3f2017-02-11 01:40:49 +0000503 IS->Type == SHT_RELA)
504 continue;
Rafael Espindola08d6a3f2017-02-11 01:40:49 +0000505
Rui Ueyama175e81c2017-02-28 19:36:30 +0000506 auto *Sym =
507 make<DefinedRegular>("", /*IsLocal=*/true, /*StOther=*/0, STT_SECTION,
Rafael Espindola6e93d052017-08-04 22:31:42 +0000508 /*Value=*/0, /*Size=*/0, IS);
George Rimar69b17c32017-05-16 10:04:42 +0000509 InX::SymTab->addSymbol(Sym);
Rafael Espindola08d6a3f2017-02-11 01:40:49 +0000510 }
511}
512
Rui Ueyama26ad0572017-02-16 04:51:46 +0000513// Today's loaders have a feature to make segments read-only after
514// processing dynamic relocations to enhance security. PT_GNU_RELRO
515// is defined for that.
516//
517// This function returns true if a section needs to be put into a
518// PT_GNU_RELRO segment.
Rafael Espindoladc49af92017-07-24 23:55:33 +0000519static bool isRelroSection(const OutputSection *Sec) {
Rafael Espindola4fc60442016-02-10 22:43:13 +0000520 if (!Config->ZRelro)
521 return false;
Rui Ueyama26ad0572017-02-16 04:51:46 +0000522
Rafael Espindolae08e78d2016-11-09 23:23:45 +0000523 uint64_t Flags = Sec->Flags;
Rui Ueyama9d773f32017-04-13 05:40:07 +0000524
525 // Non-allocatable or non-writable sections don't need RELRO because
526 // they are not writable or not even mapped to memory in the first place.
527 // RELRO is for sections that are essentially read-only but need to
528 // be writable only at process startup to allow dynamic linker to
529 // apply relocations.
George Rimare3336c02015-11-24 10:15:50 +0000530 if (!(Flags & SHF_ALLOC) || !(Flags & SHF_WRITE))
531 return false;
Rui Ueyama9d773f32017-04-13 05:40:07 +0000532
533 // Once initialized, TLS data segments are used as data templates
534 // for a thread-local storage. For each new thread, runtime
535 // allocates memory for a TLS and copy templates there. No thread
536 // are supposed to use templates directly. Thus, it can be in RELRO.
Rui Ueyamaccfc3262015-12-10 19:13:08 +0000537 if (Flags & SHF_TLS)
538 return true;
Rui Ueyama26ad0572017-02-16 04:51:46 +0000539
Rui Ueyama9d773f32017-04-13 05:40:07 +0000540 // .init_array, .preinit_array and .fini_array contain pointers to
541 // functions that are executed on process startup or exit. These
542 // pointers are set by the static linker, and they are not expected
543 // to change at runtime. But if you are an attacker, you could do
544 // interesting things by manipulating pointers in .fini_array, for
545 // example. So they are put into RELRO.
Rafael Espindola04a2e342016-11-09 01:42:41 +0000546 uint32_t Type = Sec->Type;
Rui Ueyamaccfc3262015-12-10 19:13:08 +0000547 if (Type == SHT_INIT_ARRAY || Type == SHT_FINI_ARRAY ||
548 Type == SHT_PREINIT_ARRAY)
George Rimare3336c02015-11-24 10:15:50 +0000549 return true;
Rui Ueyama26ad0572017-02-16 04:51:46 +0000550
Rui Ueyama9d773f32017-04-13 05:40:07 +0000551 // .got contains pointers to external symbols. They are resolved by
552 // the dynamic linker when a module is loaded into memory, and after
553 // that they are not expected to change. So, it can be in RELRO.
Rafael Espindoladb5e56f2017-05-31 20:17:44 +0000554 if (InX::Got && Sec == InX::Got->getParent())
Simon Atanasyan725dc142016-11-16 21:01:02 +0000555 return true;
Rui Ueyama9d773f32017-04-13 05:40:07 +0000556
557 // .got.plt contains pointers to external function symbols. They are
558 // by default resolved lazily, so we usually cannot put it into RELRO.
559 // However, if "-z now" is given, the lazy symbol resolution is
560 // disabled, which enables us to put it into RELRO.
Rafael Espindoladb5e56f2017-05-31 20:17:44 +0000561 if (Sec == InX::GotPlt->getParent())
Rui Ueyama9d773f32017-04-13 05:40:07 +0000562 return Config->ZNow;
563
564 // .dynamic section contains data for the dynamic linker, and
565 // there's no need to write to it at runtime, so it's better to put
566 // it into RELRO.
Rafael Espindoladb5e56f2017-05-31 20:17:44 +0000567 if (Sec == InX::Dynamic->getParent())
Rui Ueyama9d773f32017-04-13 05:40:07 +0000568 return true;
569
570 // .bss.rel.ro is used for copy relocations for read-only symbols.
571 // Since the dynamic linker needs to process copy relocations, the
572 // section cannot be read-only, but once initialized, they shouldn't
573 // change.
Rafael Espindoladb5e56f2017-05-31 20:17:44 +0000574 if (Sec == InX::BssRelRo->getParent())
Peter Collingbournefeb66292017-01-10 01:21:50 +0000575 return true;
Rui Ueyama26ad0572017-02-16 04:51:46 +0000576
Rui Ueyama9d773f32017-04-13 05:40:07 +0000577 // Sections with some special names are put into RELRO. This is a
578 // bit unfortunate because section names shouldn't be significant in
579 // ELF in spirit. But in reality many linker features depend on
580 // magic section names.
Rafael Espindola40849412017-02-24 14:28:00 +0000581 StringRef S = Sec->Name;
Rui Ueyama01faef02015-12-10 19:19:04 +0000582 return S == ".data.rel.ro" || S == ".ctors" || S == ".dtors" || S == ".jcr" ||
George Rimard003c7f2016-12-20 11:28:54 +0000583 S == ".eh_frame" || S == ".openbsd.randomdata";
George Rimare3336c02015-11-24 10:15:50 +0000584}
585
Rafael Espindola52101412017-05-12 14:52:22 +0000586// We compute a rank for each section. The rank indicates where the
587// section should be placed in the file. Instead of using simple
588// numbers (0,1,2...), we use a series of flags. One for each decision
589// point when placing the section.
590// Using flags has two key properties:
591// * It is easy to check if a give branch was taken.
592// * It is easy two see how similar two ranks are (see getRankProximity).
593enum RankFlags {
Rafael Espindolad23e9262017-05-26 17:23:25 +0000594 RF_NOT_ADDR_SET = 1 << 16,
595 RF_NOT_INTERP = 1 << 15,
596 RF_NOT_ALLOC = 1 << 14,
597 RF_WRITE = 1 << 13,
598 RF_EXEC_WRITE = 1 << 12,
Rafael Espindola246c1c42017-05-18 16:20:12 +0000599 RF_EXEC = 1 << 11,
600 RF_NON_TLS_BSS = 1 << 10,
601 RF_NON_TLS_BSS_RO = 1 << 9,
602 RF_NOT_TLS = 1 << 8,
603 RF_BSS = 1 << 7,
604 RF_PPC_NOT_TOCBSS = 1 << 6,
605 RF_PPC_OPD = 1 << 5,
606 RF_PPC_TOCL = 1 << 4,
607 RF_PPC_TOC = 1 << 3,
608 RF_PPC_BRANCH_LT = 1 << 2,
609 RF_MIPS_GPREL = 1 << 1,
610 RF_MIPS_NOT_GOT = 1 << 0
Rafael Espindola52101412017-05-12 14:52:22 +0000611};
Rui Ueyamae288eef2016-11-02 18:58:44 +0000612
Rafael Espindola52101412017-05-12 14:52:22 +0000613static unsigned getSectionRank(const OutputSection *Sec) {
614 unsigned Rank = 0;
Rui Ueyama5a9640b2015-10-08 23:49:30 +0000615
Rafael Espindola5967c972016-12-19 21:21:07 +0000616 // We want to put section specified by -T option first, so we
617 // can start assigning VA starting from them later.
Rafael Espindola52101412017-05-12 14:52:22 +0000618 if (Config->SectionStartMap.count(Sec->Name))
619 return Rank;
620 Rank |= RF_NOT_ADDR_SET;
621
622 // Put .interp first because some loaders want to see that section
623 // on the first page of the executable file when loaded into memory.
624 if (Sec->Name == ".interp")
625 return Rank;
626 Rank |= RF_NOT_INTERP;
627
628 // Allocatable sections go first to reduce the total PT_LOAD size and
629 // so debug info doesn't change addresses in actual code.
630 if (!(Sec->Flags & SHF_ALLOC))
631 return Rank | RF_NOT_ALLOC;
Rafael Espindola5967c972016-12-19 21:21:07 +0000632
Rafael Espindolad23e9262017-05-26 17:23:25 +0000633 // Sort sections based on their access permission in the following
634 // order: R, RX, RWX, RW. This order is based on the following
635 // considerations:
636 // * Read-only sections come first such that they go in the
637 // PT_LOAD covering the program headers at the start of the file.
638 // * Read-only, executable sections come next, unless the
639 // -no-rosegment option is used.
640 // * Writable, executable sections follow such that .plt on
641 // architectures where it needs to be writable will be placed
642 // between .text and .data.
643 // * Writable sections come last, such that .bss lands at the very
644 // end of the last PT_LOAD.
645 bool IsExec = Sec->Flags & SHF_EXECINSTR;
646 bool IsWrite = Sec->Flags & SHF_WRITE;
Rui Ueyama5a9640b2015-10-08 23:49:30 +0000647
Rafael Espindolad23e9262017-05-26 17:23:25 +0000648 if (IsExec) {
649 if (IsWrite)
650 Rank |= RF_EXEC_WRITE;
651 else if (!Config->SingleRoRx)
Rafael Espindola52101412017-05-12 14:52:22 +0000652 Rank |= RF_EXEC;
Rafael Espindolad23e9262017-05-26 17:23:25 +0000653 } else {
654 if (IsWrite)
655 Rank |= RF_WRITE;
Rafael Espindolae979fd12016-09-29 22:48:55 +0000656 }
Rui Ueyama5a9640b2015-10-08 23:49:30 +0000657
Hal Finkel0d7e83b2015-10-13 17:57:46 +0000658 // 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 +0000659
Rafael Espindola52101412017-05-12 14:52:22 +0000660 bool IsTls = Sec->Flags & SHF_TLS;
661 bool IsNoBits = Sec->Type == SHT_NOBITS;
Hal Finkel3bae2d82015-10-12 20:51:48 +0000662
Peter Collingbourne628ec9f2017-01-10 01:21:30 +0000663 // The first requirement we have is to put (non-TLS) nobits sections last. The
664 // reason is that the only thing the dynamic linker will see about them is a
665 // p_memsz that is larger than p_filesz. Seeing that it zeros the end of the
666 // PT_LOAD, so that has to correspond to the nobits sections.
Rafael Espindola52101412017-05-12 14:52:22 +0000667 bool IsNonTlsNoBits = IsNoBits && !IsTls;
668 if (IsNonTlsNoBits)
669 Rank |= RF_NON_TLS_BSS;
Peter Collingbourne628ec9f2017-01-10 01:21:30 +0000670
671 // We place nobits RelRo sections before plain r/w ones, and non-nobits RelRo
672 // sections after r/w ones, so that the RelRo sections are contiguous.
Rafael Espindola52101412017-05-12 14:52:22 +0000673 bool IsRelRo = isRelroSection(Sec);
674 if (IsNonTlsNoBits && !IsRelRo)
675 Rank |= RF_NON_TLS_BSS_RO;
676 if (!IsNonTlsNoBits && IsRelRo)
677 Rank |= RF_NON_TLS_BSS_RO;
Peter Collingbourne628ec9f2017-01-10 01:21:30 +0000678
679 // The TLS initialization block needs to be a single contiguous block in a R/W
680 // PT_LOAD, so stick TLS sections directly before the other RelRo R/W
681 // sections. The TLS NOBITS sections are placed here as they don't take up
682 // virtual address space in the PT_LOAD.
Rafael Espindola52101412017-05-12 14:52:22 +0000683 if (!IsTls)
684 Rank |= RF_NOT_TLS;
Peter Collingbourne628ec9f2017-01-10 01:21:30 +0000685
686 // Within the TLS initialization block, the non-nobits sections need to appear
687 // first.
Rafael Espindola52101412017-05-12 14:52:22 +0000688 if (IsNoBits)
689 Rank |= RF_BSS;
George Rimare3336c02015-11-24 10:15:50 +0000690
Ben Dunbobbin95637552017-08-18 16:15:36 +0000691 // Some architectures have additional ordering restrictions for sections
692 // within the same PT_LOAD.
Rafael Espindola52101412017-05-12 14:52:22 +0000693 if (Config->EMachine == EM_PPC64) {
694 // PPC64 has a number of special SHT_PROGBITS+SHF_ALLOC+SHF_WRITE sections
695 // that we would like to make sure appear is a specific order to maximize
696 // their coverage by a single signed 16-bit offset from the TOC base
697 // pointer. Conversely, the special .tocbss section should be first among
698 // all SHT_NOBITS sections. This will put it next to the loaded special
699 // PPC64 sections (and, thus, within reach of the TOC base pointer).
700 StringRef Name = Sec->Name;
701 if (Name != ".tocbss")
702 Rank |= RF_PPC_NOT_TOCBSS;
Hal Finkel9abc2a52015-10-13 19:07:29 +0000703
Rafael Espindola52101412017-05-12 14:52:22 +0000704 if (Name == ".opd")
705 Rank |= RF_PPC_OPD;
706
707 if (Name == ".toc1")
708 Rank |= RF_PPC_TOCL;
709
710 if (Name == ".toc")
711 Rank |= RF_PPC_TOC;
712
713 if (Name == ".branch_lt")
714 Rank |= RF_PPC_BRANCH_LT;
715 }
716 if (Config->EMachine == EM_MIPS) {
717 // All sections with SHF_MIPS_GPREL flag should be grouped together
718 // because data in these sections is addressable with a gp relative address.
719 if (Sec->Flags & SHF_MIPS_GPREL)
720 Rank |= RF_MIPS_GPREL;
721
722 if (Sec->Name != ".got")
723 Rank |= RF_MIPS_NOT_GOT;
724 }
725
726 return Rank;
727}
728
Rafael Espindola383971d2017-06-15 21:51:01 +0000729static bool compareSections(const BaseCommand *ACmd, const BaseCommand *BCmd) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000730 const OutputSection *A = cast<OutputSection>(ACmd);
731 const OutputSection *B = cast<OutputSection>(BCmd);
Rafael Espindola52101412017-05-12 14:52:22 +0000732 if (A->SortRank != B->SortRank)
733 return A->SortRank < B->SortRank;
734 if (!(A->SortRank & RF_NOT_ADDR_SET))
735 return Config->SectionStartMap.lookup(A->Name) <
736 Config->SectionStartMap.lookup(B->Name);
Rafael Espindola24c073d2016-09-21 22:36:19 +0000737 return false;
738}
739
Rafael Espindola24e6f362017-02-24 15:07:30 +0000740void PhdrEntry::add(OutputSection *Sec) {
Eugene Leviantbbe38602016-07-19 09:25:43 +0000741 Last = Sec;
742 if (!First)
743 First = Sec;
Rafael Espindola37707632017-03-07 14:55:52 +0000744 p_align = std::max(p_align, Sec->Alignment);
Rafael Espindola17cb7c02016-12-19 17:01:01 +0000745 if (p_type == PT_LOAD)
Eugene Leviant3d9abec2016-09-29 09:20:33 +0000746 Sec->FirstInPtLoad = First;
Eugene Leviantbbe38602016-07-19 09:25:43 +0000747}
748
Denis Protivensky8e3b38a2015-11-12 09:52:08 +0000749template <class ELFT>
Rafael Espindola5616adf2017-03-08 22:36:28 +0000750static Symbol *addRegular(StringRef Name, SectionBase *Sec, uint64_t Value,
751 uint8_t StOther = STV_HIDDEN,
752 uint8_t Binding = STB_WEAK) {
Rafael Espindoladab02d42016-11-17 21:20:16 +0000753 // The linker generated symbols are added as STB_WEAK to allow user defined
754 // ones to override them.
Rafael Espindola244ef982017-07-26 18:42:48 +0000755 return Symtab->addRegular<ELFT>(Name, StOther, STT_NOTYPE, Value,
756 /*Size=*/0, Binding, Sec,
757 /*File=*/nullptr);
Eugene Leviantad4439e2016-11-11 11:33:32 +0000758}
759
760template <class ELFT>
Rafael Espindola5616adf2017-03-08 22:36:28 +0000761static DefinedRegular *
762addOptionalRegular(StringRef Name, SectionBase *Sec, uint64_t Val,
763 uint8_t StOther = STV_HIDDEN, uint8_t Binding = STB_GLOBAL) {
Rafael Espindola244ef982017-07-26 18:42:48 +0000764 SymbolBody *S = Symtab->find(Name);
Eugene Leviantad4439e2016-11-11 11:33:32 +0000765 if (!S)
766 return nullptr;
Rafael Espindola1d6d1b42017-01-17 16:08:06 +0000767 if (S->isInCurrentDSO())
Rafael Espindola5616adf2017-03-08 22:36:28 +0000768 return nullptr;
769 return cast<DefinedRegular>(
770 addRegular<ELFT>(Name, Sec, Val, StOther, Binding)->body());
Eugene Leviantad4439e2016-11-11 11:33:32 +0000771}
772
Rui Ueyama01687222015-12-26 09:47:57 +0000773// The beginning and the ending of .rel[a].plt section are marked
774// with __rel[a]_iplt_{start,end} symbols if it is a statically linked
775// executable. The runtime needs these symbols in order to resolve
776// all IRELATIVE relocs on startup. For dynamic executables, we don't
777// need these symbols, since IRELATIVE relocs are resolved through GOT
778// and PLT. For details, see http://www.airs.com/blog/archives/403.
George Rimaree741cf2016-04-14 13:23:02 +0000779template <class ELFT> void Writer<ELFT>::addRelIpltSymbols() {
Shoaib Meenai335fad12017-08-05 05:01:07 +0000780 if (!Config->Static)
George Rimara07ff662015-12-21 10:12:06 +0000781 return;
Rui Ueyamad57e74b72017-03-17 23:29:01 +0000782 StringRef S = Config->IsRela ? "__rela_iplt_start" : "__rel_iplt_start";
Rafael Espindola5616adf2017-03-08 22:36:28 +0000783 addOptionalRegular<ELFT>(S, In<ELFT>::RelaIplt, 0, STV_HIDDEN, STB_WEAK);
Rui Ueyama01687222015-12-26 09:47:57 +0000784
Rui Ueyamad57e74b72017-03-17 23:29:01 +0000785 S = Config->IsRela ? "__rela_iplt_end" : "__rel_iplt_end";
Rafael Espindola5616adf2017-03-08 22:36:28 +0000786 addOptionalRegular<ELFT>(S, In<ELFT>::RelaIplt, -1, STV_HIDDEN, STB_WEAK);
George Rimara07ff662015-12-21 10:12:06 +0000787}
788
Rui Ueyamaf18fe7b2015-12-26 07:50:39 +0000789// The linker is expected to define some symbols depending on
790// the linking result. This function defines such symbols.
791template <class ELFT> void Writer<ELFT>::addReservedSymbols() {
George Rimar7beff422016-11-15 08:19:02 +0000792 if (Config->EMachine == EM_MIPS) {
Rafael Espindola9b3f99e2016-04-12 02:24:43 +0000793 // Define _gp for MIPS. st_value of _gp symbol will be updated by Writer
Simon Atanasyan6a4eb752016-12-08 06:19:47 +0000794 // so that it points to an absolute address which by default is relative
795 // to GOT. Default offset is 0x7ff0.
Rafael Espindola9b3f99e2016-04-12 02:24:43 +0000796 // See "Global Data Symbols" in Chapter 6 in the following document:
797 // ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf
Rafael Espindola244ef982017-07-26 18:42:48 +0000798 ElfSym::MipsGp = Symtab->addAbsolute<ELFT>("_gp", STV_HIDDEN, STB_LOCAL);
Rafael Espindola9b3f99e2016-04-12 02:24:43 +0000799
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +0000800 // On MIPS O32 ABI, _gp_disp is a magic symbol designates offset between
Simon Atanasyand34a3632017-03-20 21:03:43 +0000801 // start of function and 'gp' pointer into GOT.
Rafael Espindola244ef982017-07-26 18:42:48 +0000802 if (Symtab->find("_gp_disp"))
Rui Ueyama80474a22017-02-28 19:29:55 +0000803 ElfSym::MipsGpDisp =
Rafael Espindola244ef982017-07-26 18:42:48 +0000804 Symtab->addAbsolute<ELFT>("_gp_disp", STV_HIDDEN, STB_LOCAL);
Peter Collingbourne6f535b72016-05-03 18:03:45 +0000805
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +0000806 // The __gnu_local_gp is a magic symbol equal to the current value of 'gp'
807 // pointer. This symbol is used in the code generated by .cpload pseudo-op
808 // in case of using -mno-shared option.
809 // https://sourceware.org/ml/binutils/2004-12/msg00094.html
Rafael Espindola244ef982017-07-26 18:42:48 +0000810 if (Symtab->find("__gnu_local_gp"))
Rui Ueyama80474a22017-02-28 19:29:55 +0000811 ElfSym::MipsLocalGp =
Rafael Espindola244ef982017-07-26 18:42:48 +0000812 Symtab->addAbsolute<ELFT>("__gnu_local_gp", STV_HIDDEN, STB_LOCAL);
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +0000813 }
814
Peter Smith113a59e2017-06-26 10:22:17 +0000815 // The _GLOBAL_OFFSET_TABLE_ symbol is defined by target convention to
816 // be at some offset from the base of the .got section, usually 0 or the end
817 // of the .got
Rui Ueyama92c37812017-06-26 15:11:24 +0000818 InputSection *GotSection = InX::MipsGot ? cast<InputSection>(InX::MipsGot)
819 : cast<InputSection>(InX::Got);
820 ElfSym::GlobalOffsetTable = addOptionalRegular<ELFT>(
821 "_GLOBAL_OFFSET_TABLE_", GotSection, Target->GotBaseSymOff);
Rafael Espindolaccfe3cb2016-04-04 14:04:16 +0000822
Rui Ueyamaf18fe7b2015-12-26 07:50:39 +0000823 // __tls_get_addr is defined by the dynamic linker for dynamic ELFs. For
824 // static linking the linker is required to optimize away any references to
825 // __tls_get_addr, so it's not defined anywhere. Create a hidden definition
Rui Ueyamaa2a46a92017-04-25 04:44:54 +0000826 // to avoid the undefined symbol error.
George Rimar69b17c32017-05-16 10:04:42 +0000827 if (!InX::DynSymTab)
Rafael Espindola244ef982017-07-26 18:42:48 +0000828 Symtab->addIgnored<ELFT>("__tls_get_addr");
Rui Ueyamaf18fe7b2015-12-26 07:50:39 +0000829
Petr Hosek6b936bf2017-05-10 16:20:33 +0000830 // __ehdr_start is the location of ELF file headers. Note that we define
831 // this symbol unconditionally even when using a linker script, which
832 // differs from the behavior implemented by GNU linker which only define
833 // this symbol if ELF headers are in the memory mapped segment.
Rafael Espindola0e454a92017-06-06 16:18:48 +0000834 // __executable_start is not documented, but the expectation of at
835 // least the android libc is that it points to the elf header too.
836 // __dso_handle symbol is passed to cxa_finalize as a marker to identify
837 // each DSO. The address of the symbol doesn't matter as long as they are
838 // different in different DSOs, so we chose the start address of the DSO.
839 for (const char *Name :
840 {"__ehdr_start", "__executable_start", "__dso_handle"})
841 addOptionalRegular<ELFT>(Name, Out::ElfHeader, 0, STV_HIDDEN);
Petr Hosek6b936bf2017-05-10 16:20:33 +0000842
George Rimar28ac19c2016-08-08 08:42:48 +0000843 // If linker script do layout we do not need to create any standart symbols.
Rui Ueyamaa34da932017-03-21 23:03:09 +0000844 if (Script->Opt.HasSections)
George Rimar28ac19c2016-08-08 08:42:48 +0000845 return;
846
Rui Ueyama1505ba82017-04-13 21:23:03 +0000847 auto Add = [](StringRef S) {
848 return addOptionalRegular<ELFT>(S, Out::ElfHeader, 0, STV_DEFAULT);
George Rimar9e859392016-02-26 14:36:36 +0000849 };
850
Rui Ueyama1505ba82017-04-13 21:23:03 +0000851 ElfSym::Bss = Add("__bss_start");
Rui Ueyama3e1fc3f2017-04-13 21:37:56 +0000852 ElfSym::End1 = Add("end");
853 ElfSym::End2 = Add("_end");
854 ElfSym::Etext1 = Add("etext");
855 ElfSym::Etext2 = Add("_etext");
856 ElfSym::Edata1 = Add("edata");
857 ElfSym::Edata2 = Add("_edata");
Rui Ueyamaf18fe7b2015-12-26 07:50:39 +0000858}
859
Rui Ueyamac4185702016-02-10 23:20:42 +0000860// Sort input sections by section name suffixes for
861// __attribute__((init_priority(N))).
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000862static void sortInitFini(OutputSection *Cmd) {
Rafael Espindola21263342017-07-05 23:36:24 +0000863 if (Cmd)
864 Cmd->sortInitFini();
Rui Ueyama5af83682016-02-11 23:41:38 +0000865}
866
867// Sort input sections by the special rule for .ctors and .dtors.
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000868static void sortCtorsDtors(OutputSection *Cmd) {
Rafael Espindola21263342017-07-05 23:36:24 +0000869 if (Cmd)
870 Cmd->sortCtorsDtors();
Rui Ueyamac4185702016-02-10 23:20:42 +0000871}
872
George Rimar1a33c0f2016-11-10 09:05:20 +0000873// Sort input sections using the list provided by --symbol-ordering-file.
Rafael Espindola21263342017-07-05 23:36:24 +0000874template <class ELFT> static void sortBySymbolsOrder() {
George Rimar1a33c0f2016-11-10 09:05:20 +0000875 if (Config->SymbolOrderingFile.empty())
876 return;
877
Rui Ueyama31270312016-12-20 01:51:08 +0000878 // Sort sections by priority.
George Rimard6bcde32017-08-04 10:25:29 +0000879 DenseMap<SectionBase *, int> SectionOrder = buildSectionOrder<ELFT>();
Rafael Espindola21263342017-07-05 23:36:24 +0000880 for (BaseCommand *Base : Script->Opt.Commands)
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000881 if (auto *Sec = dyn_cast<OutputSection>(Base))
882 Sec->sort([&](InputSectionBase *S) { return SectionOrder.lookup(S); });
George Rimar1a33c0f2016-11-10 09:05:20 +0000883}
884
Eugene Leviante63d81b2016-07-20 14:43:20 +0000885template <class ELFT>
Rafael Espindolab4c9b812017-02-23 02:28:28 +0000886void Writer<ELFT>::forEachRelSec(std::function<void(InputSectionBase &)> Fn) {
Rui Ueyama536a2672017-02-27 02:32:08 +0000887 for (InputSectionBase *IS : InputSections) {
Rafael Espindola8f9026b2016-11-08 18:23:02 +0000888 if (!IS->Live)
Rui Ueyama8c6a5aa2016-11-05 22:37:59 +0000889 continue;
890 // Scan all relocations. Each relocation goes through a series
891 // of tests to determine if it needs special treatment, such as
892 // creating GOT, PLT, copy relocations, etc.
893 // Note that relocations for non-alloc sections are directly
894 // processed by InputSection::relocateNonAlloc.
895 if (!(IS->Flags & SHF_ALLOC))
896 continue;
Rafael Espindola5c02b742017-03-06 21:17:18 +0000897 if (isa<InputSection>(IS) || isa<EhInputSection>(IS))
Rafael Espindola9f0c4bb2016-11-10 14:53:24 +0000898 Fn(*IS);
Rafael Espindola0f7ceda2016-07-20 17:58:07 +0000899 }
Petr Hosek7b793212017-03-10 20:00:42 +0000900
901 if (!Config->Relocatable) {
902 for (EhInputSection *ES : In<ELFT>::EhFrame->Sections)
903 Fn(*ES);
904 }
Rafael Espindola0f7ceda2016-07-20 17:58:07 +0000905}
906
Eugene Leviant282251a2016-11-01 09:49:24 +0000907template <class ELFT> void Writer<ELFT>::createSections() {
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000908 std::vector<BaseCommand *> Old = Script->Opt.Commands;
909 Script->Opt.Commands.clear();
Rui Ueyama536a2672017-02-27 02:32:08 +0000910 for (InputSectionBase *IS : InputSections)
Rafael Espindola82902742017-02-16 17:32:26 +0000911 if (IS)
George Rimare21c3af2017-03-14 09:30:25 +0000912 Factory.addInputSec(IS, getOutputSectionName(IS->Name));
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000913 Script->Opt.Commands.insert(Script->Opt.Commands.end(), Old.begin(),
914 Old.end());
Eugene Leviantceabe802016-08-11 07:56:43 +0000915
Rafael Espindola21263342017-07-05 23:36:24 +0000916 Script->fabricateDefaultCommands();
917 sortBySymbolsOrder<ELFT>();
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000918 sortInitFini(findSection(".init_array"));
919 sortInitFini(findSection(".fini_array"));
920 sortCtorsDtors(findSection(".ctors"));
921 sortCtorsDtors(findSection(".dtors"));
Eugene Leviante63d81b2016-07-20 14:43:20 +0000922}
923
Rafael Espindola52101412017-05-12 14:52:22 +0000924// We want to find how similar two ranks are.
925// The more branches in getSectionRank that match, the more similar they are.
926// Since each branch corresponds to a bit flag, we can just use
927// countLeadingZeros.
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000928static int getRankProximityAux(OutputSection *A, OutputSection *B) {
Rafael Espindola52101412017-05-12 14:52:22 +0000929 return countLeadingZeros(A->SortRank ^ B->SortRank);
Eugene Leviantbae1c652016-11-08 10:44:48 +0000930}
931
Rafael Espindola383971d2017-06-15 21:51:01 +0000932static int getRankProximity(OutputSection *A, BaseCommand *B) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000933 if (auto *Sec = dyn_cast<OutputSection>(B))
934 if (Sec->Live)
935 return getRankProximityAux(A, Sec);
Rafael Espindola383971d2017-06-15 21:51:01 +0000936 return -1;
937}
938
939// When placing orphan sections, we want to place them after symbol assignments
940// so that an orphan after
941// begin_foo = .;
942// foo : { *(foo) }
943// end_foo = .;
944// doesn't break the intended meaning of the begin/end symbols.
945// We don't want to go over sections since findOrphanPos is the
946// one in charge of deciding the order of the sections.
947// We don't want to go over changes to '.', since doing so in
948// rx_sec : { *(rx_sec) }
949// . = ALIGN(0x1000);
950// /* The RW PT_LOAD starts here*/
951// rw_sec : { *(rw_sec) }
952// would mean that the RW PT_LOAD would become unaligned.
953static bool shouldSkip(BaseCommand *Cmd) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000954 if (isa<OutputSection>(Cmd))
Rafael Espindola383971d2017-06-15 21:51:01 +0000955 return false;
956 if (auto *Assign = dyn_cast<SymbolAssignment>(Cmd))
957 return Assign->Name != ".";
958 return true;
959}
960
Rafael Espindola52101412017-05-12 14:52:22 +0000961// We want to place orphan sections so that they share as much
962// characteristics with their neighbors as possible. For example, if
963// both are rw, or both are tls.
Rafael Espindola0ca37122017-05-09 13:58:46 +0000964template <typename ELFT>
Rafael Espindola383971d2017-06-15 21:51:01 +0000965static std::vector<BaseCommand *>::iterator
966findOrphanPos(std::vector<BaseCommand *>::iterator B,
967 std::vector<BaseCommand *>::iterator E) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000968 OutputSection *Sec = cast<OutputSection>(*E);
Rafael Espindola0ca37122017-05-09 13:58:46 +0000969
Rafael Espindola52101412017-05-12 14:52:22 +0000970 // Find the first element that has as close a rank as possible.
Rafael Espindola383971d2017-06-15 21:51:01 +0000971 auto I = std::max_element(B, E, [=](BaseCommand *A, BaseCommand *B) {
Rafael Espindola52101412017-05-12 14:52:22 +0000972 return getRankProximity(Sec, A) < getRankProximity(Sec, B);
973 });
974 if (I == E)
Rafael Espindola0ca37122017-05-09 13:58:46 +0000975 return E;
976
Rafael Espindola52101412017-05-12 14:52:22 +0000977 // Consider all existing sections with the same proximity.
Rafael Espindola383971d2017-06-15 21:51:01 +0000978 int Proximity = getRankProximity(Sec, *I);
979 for (; I != E; ++I) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000980 auto *CurSec = dyn_cast<OutputSection>(*I);
981 if (!CurSec || !CurSec->Live)
Rafael Espindola383971d2017-06-15 21:51:01 +0000982 continue;
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000983 if (getRankProximity(Sec, CurSec) != Proximity ||
984 Sec->SortRank < CurSec->SortRank)
Rafael Espindola383971d2017-06-15 21:51:01 +0000985 break;
986 }
987 auto J = std::find_if(
Rafael Espindolac54b1c82017-06-15 22:03:06 +0000988 llvm::make_reverse_iterator(I), llvm::make_reverse_iterator(B),
Rafael Espindola8c022ca2017-07-27 19:22:43 +0000989 [](BaseCommand *Cmd) { return isa<OutputSection>(Cmd); });
Rafael Espindola383971d2017-06-15 21:51:01 +0000990 I = J.base();
991 while (I != E && shouldSkip(*I))
Rafael Espindola52101412017-05-12 14:52:22 +0000992 ++I;
993 return I;
Rafael Espindola0ca37122017-05-09 13:58:46 +0000994}
995
Rafael Espindola24c073d2016-09-21 22:36:19 +0000996template <class ELFT> void Writer<ELFT>::sortSections() {
George Rimare0b43df2017-06-28 09:59:34 +0000997 if (Script->Opt.HasSections)
998 Script->adjustSectionsBeforeSorting();
999
Rafael Espindola1960bcd2016-11-11 22:43:27 +00001000 // Don't sort if using -r. It is not necessary and we want to preserve the
1001 // relative order for SHF_LINK_ORDER sections.
1002 if (Config->Relocatable)
Rafael Espindola85de6782017-06-28 22:44:11 +00001003 return;
Rafael Espindola52101412017-05-12 14:52:22 +00001004
Rafael Espindola383971d2017-06-15 21:51:01 +00001005 for (BaseCommand *Base : Script->Opt.Commands)
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001006 if (auto *Sec = dyn_cast<OutputSection>(Base))
1007 Sec->SortRank = getSectionRank(Sec);
Rafael Espindola52101412017-05-12 14:52:22 +00001008
Rui Ueyamaa34da932017-03-21 23:03:09 +00001009 if (!Script->Opt.HasSections) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001010 // We know that all the OutputSections are contiguous in
Rafael Espindola383971d2017-06-15 21:51:01 +00001011 // this case.
1012 auto E = Script->Opt.Commands.end();
1013 auto I = Script->Opt.Commands.begin();
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001014 auto IsSection = [](BaseCommand *Base) { return isa<OutputSection>(Base); };
Rafael Espindola383971d2017-06-15 21:51:01 +00001015 I = std::find_if(I, E, IsSection);
Rafael Espindolac54b1c82017-06-15 22:03:06 +00001016 E = std::find_if(llvm::make_reverse_iterator(E),
1017 llvm::make_reverse_iterator(I), IsSection)
Rafael Espindola383971d2017-06-15 21:51:01 +00001018 .base();
1019 std::stable_sort(I, E, compareSections);
Rafael Espindola24c073d2016-09-21 22:36:19 +00001020 return;
1021 }
1022
Rafael Espindola383971d2017-06-15 21:51:01 +00001023 // Orphan sections are sections present in the input files which are
1024 // not explicitly placed into the output file by the linker script.
1025 //
1026 // The sections in the linker script are already in the correct
1027 // order. We have to figuere out where to insert the orphan
1028 // sections.
1029 //
Rafael Espindola24c073d2016-09-21 22:36:19 +00001030 // The order of the sections in the script is arbitrary and may not agree with
Rafael Espindola383971d2017-06-15 21:51:01 +00001031 // compareSections. This means that we cannot easily define a strict weak
1032 // ordering. To see why, consider a comparison of a section in the script and
1033 // one not in the script. We have a two simple options:
Rafael Espindola24c073d2016-09-21 22:36:19 +00001034 // * Make them equivalent (a is not less than b, and b is not less than a).
1035 // The problem is then that equivalence has to be transitive and we can
1036 // have sections a, b and c with only b in a script and a less than c
1037 // which breaks this property.
1038 // * Use compareSectionsNonScript. Given that the script order doesn't have
1039 // to match, we can end up with sections a, b, c, d where b and c are in the
1040 // script and c is compareSectionsNonScript less than b. In which case d
1041 // can be equivalent to c, a to b and d < a. As a concrete example:
1042 // .a (rx) # not in script
1043 // .b (rx) # in script
1044 // .c (ro) # in script
1045 // .d (ro) # not in script
1046 //
1047 // The way we define an order then is:
Rafael Espindola383971d2017-06-15 21:51:01 +00001048 // * Sort only the orphan sections. They are in the end right now.
1049 // * Move each orphan section to its preferred position. We try
Eugene Leviantbae1c652016-11-08 10:44:48 +00001050 // to put each section in the last position where it it can share
1051 // a PT_LOAD.
Rafael Espindola383971d2017-06-15 21:51:01 +00001052 //
1053 // There is some ambiguity as to where exactly a new entry should be
1054 // inserted, because Opt.Commands contains not only output section
1055 // commands but also other types of commands such as symbol assignment
1056 // expressions. There's no correct answer here due to the lack of the
1057 // formal specification of the linker script. We use heuristics to
1058 // determine whether a new output command should be added before or
1059 // after another commands. For the details, look at shouldSkip
1060 // function.
Rafael Espindola24c073d2016-09-21 22:36:19 +00001061
Rafael Espindola383971d2017-06-15 21:51:01 +00001062 auto I = Script->Opt.Commands.begin();
1063 auto E = Script->Opt.Commands.end();
1064 auto NonScriptI = std::find_if(I, E, [](BaseCommand *Base) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001065 if (auto *Sec = dyn_cast<OutputSection>(Base))
1066 return Sec->Live && Sec->SectionIndex == INT_MAX;
Rafael Espindola383971d2017-06-15 21:51:01 +00001067 return false;
1068 });
Rafael Espindola24c073d2016-09-21 22:36:19 +00001069
Rafael Espindola383971d2017-06-15 21:51:01 +00001070 // Sort the orphan sections.
1071 std::stable_sort(NonScriptI, E, compareSections);
1072
1073 // As a horrible special case, skip the first . assignment if it is before any
1074 // section. We do this because it is common to set a load address by starting
1075 // the script with ". = 0xabcd" and the expectation is that every section is
1076 // after that.
1077 auto FirstSectionOrDotAssignment =
1078 std::find_if(I, E, [](BaseCommand *Cmd) { return !shouldSkip(Cmd); });
1079 if (FirstSectionOrDotAssignment != E &&
1080 isa<SymbolAssignment>(**FirstSectionOrDotAssignment))
1081 ++FirstSectionOrDotAssignment;
1082 I = FirstSectionOrDotAssignment;
1083
Rafael Espindola52101412017-05-12 14:52:22 +00001084 while (NonScriptI != E) {
1085 auto Pos = findOrphanPos<ELFT>(I, NonScriptI);
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001086 OutputSection *Orphan = cast<OutputSection>(*NonScriptI);
Rafael Espindola52101412017-05-12 14:52:22 +00001087
1088 // As an optimization, find all sections with the same sort rank
1089 // and insert them with one rotate.
Rafael Espindola383971d2017-06-15 21:51:01 +00001090 unsigned Rank = Orphan->SortRank;
1091 auto End = std::find_if(NonScriptI + 1, E, [=](BaseCommand *Cmd) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001092 return cast<OutputSection>(Cmd)->SortRank != Rank;
Rafael Espindola52101412017-05-12 14:52:22 +00001093 });
1094 std::rotate(Pos, NonScriptI, End);
1095 NonScriptI = End;
1096 }
Rafael Espindolaf7a17442016-11-14 15:39:38 +00001097
George Rimara8dba482017-03-20 10:09:58 +00001098 Script->adjustSectionsAfterSorting();
Rafael Espindola24c073d2016-09-21 22:36:19 +00001099}
1100
Peter Smith1ec42d92017-03-08 14:06:24 +00001101static void applySynthetic(const std::vector<SyntheticSection *> &Sections,
1102 std::function<void(SyntheticSection *)> Fn) {
Rui Ueyama9320cb02017-02-27 02:56:02 +00001103 for (SyntheticSection *SS : Sections)
Rafael Espindolad57c58d2017-06-07 02:31:19 +00001104 if (SS && SS->getParent() && !SS->empty())
Peter Smith1ec42d92017-03-08 14:06:24 +00001105 Fn(SS);
Eugene Leviant6380ce22016-11-15 12:26:55 +00001106}
1107
George Rimar11992c862016-11-25 08:05:41 +00001108// We need to add input synthetic sections early in createSyntheticSections()
Rui Ueyamac38860b2016-12-05 21:39:35 +00001109// to make them visible from linkescript side. But not all sections are always
1110// required to be in output. For example we don't need dynamic section content
James Henderson7ee22752017-04-06 09:40:03 +00001111// sometimes. This function filters out such unused sections from the output.
Rafael Espindolac080ff62017-07-03 16:54:39 +00001112static void removeUnusedSyntheticSections() {
Rafael Espindola9e9754b2017-02-03 13:06:18 +00001113 // All input synthetic sections that can be empty are placed after
1114 // all regular ones. We iterate over them all and exit at first
1115 // non-synthetic.
Rui Ueyama536a2672017-02-27 02:32:08 +00001116 for (InputSectionBase *S : llvm::reverse(InputSections)) {
Rui Ueyama9320cb02017-02-27 02:56:02 +00001117 SyntheticSection *SS = dyn_cast<SyntheticSection>(S);
Rui Ueyamac38860b2016-12-05 21:39:35 +00001118 if (!SS)
George Rimar11992c862016-11-25 08:05:41 +00001119 return;
Rafael Espindoladb5e56f2017-05-31 20:17:44 +00001120 OutputSection *OS = SS->getParent();
1121 if (!SS->empty() || !OS)
George Rimar11992c862016-11-25 08:05:41 +00001122 continue;
Rui Ueyama92c37812017-06-26 15:11:24 +00001123 if ((SS == InX::Got || SS == InX::MipsGot) && ElfSym::GlobalOffsetTable)
Peter Smith113a59e2017-06-26 10:22:17 +00001124 continue;
Rafael Espindolac080ff62017-07-03 16:54:39 +00001125
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001126 std::vector<BaseCommand *>::iterator Empty = OS->Commands.end();
1127 for (auto I = OS->Commands.begin(), E = OS->Commands.end(); I != E; ++I) {
Rafael Espindola43ee3602017-07-03 17:32:09 +00001128 BaseCommand *B = *I;
Rafael Espindolac080ff62017-07-03 16:54:39 +00001129 if (auto *ISD = dyn_cast<InputSectionDescription>(B)) {
Rafael Espindola43ee3602017-07-03 17:32:09 +00001130 auto P = std::find(ISD->Sections.begin(), ISD->Sections.end(), SS);
1131 if (P != ISD->Sections.end())
1132 ISD->Sections.erase(P);
Rafael Espindolac080ff62017-07-03 16:54:39 +00001133 if (ISD->Sections.empty())
Rafael Espindola43ee3602017-07-03 17:32:09 +00001134 Empty = I;
Rafael Espindolac080ff62017-07-03 16:54:39 +00001135 }
1136 }
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001137 if (Empty != OS->Commands.end())
1138 OS->Commands.erase(Empty);
Rafael Espindolac080ff62017-07-03 16:54:39 +00001139
James Henderson7ee22752017-04-06 09:40:03 +00001140 // If there are no other sections in the output section, remove it from the
1141 // output.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001142 if (OS->Commands.empty()) {
Petr Hosek52db9a42017-07-03 15:49:25 +00001143 // Also remove script commands matching the output section.
1144 auto &Cmds = Script->Opt.Commands;
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001145 auto I = std::remove_if(Cmds.begin(), Cmds.end(), [&](BaseCommand *Cmd2) {
1146 if (auto *Sec = dyn_cast<OutputSection>(Cmd2))
1147 return Sec == OS;
Petr Hosek52db9a42017-07-03 15:49:25 +00001148 return false;
1149 });
1150 Cmds.erase(I, Cmds.end());
1151 }
George Rimar11992c862016-11-25 08:05:41 +00001152 }
1153}
1154
Rafael Espindola35c908f2017-08-10 15:05:37 +00001155// Returns true if a symbol can be replaced at load-time by a symbol
1156// with the same name defined in other ELF executable or DSO.
1157static bool computeIsPreemptible(const SymbolBody &B) {
1158 assert(!B.isLocal());
1159 // Shared symbols resolve to the definition in the DSO. The exceptions are
1160 // symbols with copy relocations (which resolve to .bss) or preempt plt
1161 // entries (which resolve to that plt entry).
1162 if (auto *SS = dyn_cast<SharedSymbol>(&B))
1163 return !SS->CopyRelSec && !SS->NeedsPltAddr;
1164
1165 // Only symbols that appear in dynsym can be preempted.
1166 if (!B.symbol()->includeInDynsym())
1167 return false;
1168
1169 // Only default visibility symbols can be preempted.
1170 if (B.symbol()->Visibility != STV_DEFAULT)
1171 return false;
1172
1173 // Undefined symbols in non-DSOs are usually just an error, so it
1174 // doesn't matter whether we return true or false here. However, if
1175 // -unresolved-symbols=ignore-all is specified, undefined symbols in
1176 // executables are automatically exported so that the runtime linker
1177 // can try to resolve them. In that case, they is preemptible. So, we
1178 // return true for an undefined symbol in case the option is specified.
1179 if (!Config->Shared)
1180 return B.isUndefined();
1181
1182 // -Bsymbolic means that definitions are not preempted.
1183 if (Config->Bsymbolic || (Config->BsymbolicFunctions && B.isFunc()))
1184 return !B.isDefined();
1185 return true;
1186}
1187
Eugene Leviante63d81b2016-07-20 14:43:20 +00001188// Create output section objects and add them to OutputSections.
1189template <class ELFT> void Writer<ELFT>::finalizeSections() {
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001190 Out::DebugInfo = findSection(".debug_info");
1191 Out::PreinitArray = findSection(".preinit_array");
1192 Out::InitArray = findSection(".init_array");
1193 Out::FiniArray = findSection(".fini_array");
Rafael Espindola77572242015-10-02 19:37:55 +00001194
Rui Ueyamaa5d79d12015-12-26 09:48:00 +00001195 // The linker needs to define SECNAME_start, SECNAME_end and SECNAME_stop
1196 // symbols for sections, so that the runtime can get the start and end
1197 // addresses of each section by section name. Add such symbols.
George Rimarc1034a82016-03-01 19:12:35 +00001198 if (!Config->Relocatable) {
1199 addStartEndSymbols();
Rafael Espindolab6915452017-07-04 19:05:03 +00001200 for (BaseCommand *Base : Script->Opt.Commands)
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001201 if (auto *Sec = dyn_cast<OutputSection>(Base))
1202 addStartStopSymbols(Sec);
George Rimarc1034a82016-03-01 19:12:35 +00001203 }
Rui Ueyamad4530c62016-03-04 18:34:14 +00001204
1205 // Add _DYNAMIC symbol. Unlike GNU gold, our _DYNAMIC symbol has no type.
1206 // It should be okay as no one seems to care about the type.
1207 // Even the author of gold doesn't remember why gold behaves that way.
1208 // https://sourceware.org/ml/binutils/2002-03/msg00360.html
George Rimar69b17c32017-05-16 10:04:42 +00001209 if (InX::DynSymTab)
Rafael Espindola5ab19892017-05-11 23:16:43 +00001210 addRegular<ELFT>("_DYNAMIC", InX::Dynamic, 0);
Rafael Espindola334c3e12015-10-19 15:21:42 +00001211
Rafael Espindolade9857e2016-02-04 21:33:05 +00001212 // Define __rel[a]_iplt_{start,end} symbols if needed.
1213 addRelIpltSymbols();
1214
Rafael Espindola66b4e212017-02-23 22:06:28 +00001215 // This responsible for splitting up .eh_frame section into
Peter Smith1ec42d92017-03-08 14:06:24 +00001216 // pieces. The relocation scan uses those pieces, so this has to be
Rafael Espindola66b4e212017-02-23 22:06:28 +00001217 // earlier.
George Rimar49a47f22017-03-16 10:29:44 +00001218 applySynthetic({In<ELFT>::EhFrame},
1219 [](SyntheticSection *SS) { SS->finalizeContents(); });
Rafael Espindola56004c52016-04-07 14:22:09 +00001220
Rui Ueyamae158f7c2017-08-22 21:54:58 +00001221 for (Symbol *S : Symtab->getSymbols())
1222 S->body()->IsPreemptible = computeIsPreemptible(*S->body());
Rafael Espindola35c908f2017-08-10 15:05:37 +00001223
Rafael Espindola0f7ceda2016-07-20 17:58:07 +00001224 // Scan relocations. This must be done after every symbol is declared so that
1225 // we can correctly decide if a dynamic relocation is needed.
1226 forEachRelSec(scanRelocations<ELFT>);
1227
Rafael Espindola895aea62017-05-11 22:02:41 +00001228 if (InX::Plt && !InX::Plt->empty())
1229 InX::Plt->addSymbols();
1230 if (InX::Iplt && !InX::Iplt->empty())
1231 InX::Iplt->addSymbols();
Peter Smith96943762017-01-25 10:31:16 +00001232
Peter Smith55865432017-02-20 11:12:33 +00001233 // Now that we have defined all possible global symbols including linker-
Rui Ueyama1b2a8bf2015-12-26 10:22:16 +00001234 // synthesized ones. Visit all symbols to give the finishing touches.
Rafael Espindola244ef982017-07-26 18:42:48 +00001235 for (Symbol *S : Symtab->getSymbols()) {
Peter Collingbourne4f952702016-05-01 04:55:03 +00001236 SymbolBody *Body = S->body();
Rafael Espindola0baa73f2016-04-26 13:56:26 +00001237
George Rimar7702bc22017-03-16 11:20:02 +00001238 if (!includeInSymtab(*Body))
Rafael Espindola05a3dd22015-09-22 23:38:23 +00001239 continue;
George Rimar69b17c32017-05-16 10:04:42 +00001240 if (InX::SymTab)
1241 InX::SymTab->addSymbol(Body);
Rafael Espindola05a3dd22015-09-22 23:38:23 +00001242
George Rimar69b17c32017-05-16 10:04:42 +00001243 if (InX::DynSymTab && S->includeInDynsym()) {
1244 InX::DynSymTab->addSymbol(Body);
Rui Ueyama4076fa12017-02-26 23:35:34 +00001245 if (auto *SS = dyn_cast<SharedSymbol>(Body))
Rafael Espindola6e93d052017-08-04 22:31:42 +00001246 if (cast<SharedFile<ELFT>>(S->File)->isNeeded())
Eugene Leviante9bab5d2016-11-21 16:59:33 +00001247 In<ELFT>::VerNeed->addSymbol(SS);
Peter Collingbourne21a12fc2016-04-27 20:22:31 +00001248 }
Rafael Espindola05a3dd22015-09-22 23:38:23 +00001249 }
Rui Ueyamac2a0d7e2016-01-28 22:56:29 +00001250
1251 // Do not proceed if there was an undefined symbol.
Rui Ueyamaf373dd72016-11-24 01:43:21 +00001252 if (ErrorCount)
Rui Ueyamaf7f52ef2016-04-01 17:24:19 +00001253 return;
Rui Ueyamac2a0d7e2016-01-28 22:56:29 +00001254
Rafael Espindola1eb3a0f2017-07-04 18:26:21 +00001255 addPredefinedSections();
Rafael Espindolac080ff62017-07-03 16:54:39 +00001256 removeUnusedSyntheticSections();
1257
Rafael Espindola24c073d2016-09-21 22:36:19 +00001258 sortSections();
Rafael Espindola383971d2017-06-15 21:51:01 +00001259
1260 // Now that we have the final list, create a list of all the
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001261 // OutputSections for convenience.
Rafael Espindolacdf813b2017-06-13 22:36:20 +00001262 for (BaseCommand *Base : Script->Opt.Commands)
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001263 if (auto *Sec = dyn_cast<OutputSection>(Base))
1264 OutputSections.push_back(Sec);
Rui Ueyama84417f82015-12-26 07:50:41 +00001265
Rafael Espindola9c0395e2017-06-20 01:51:50 +00001266 // Prefer command line supplied address over other constraints.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001267 for (OutputSection *Sec : OutputSections) {
1268 auto I = Config->SectionStartMap.find(Sec->Name);
Rafael Espindola9c0395e2017-06-20 01:51:50 +00001269 if (I != Config->SectionStartMap.end())
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001270 Sec->AddrExpr = [=] { return I->second; };
Rafael Espindola9c0395e2017-06-20 01:51:50 +00001271 }
1272
Rafael Espindola78493a22017-01-28 17:48:21 +00001273 // This is a bit of a hack. A value of 0 means undef, so we set it
1274 // to 1 t make __ehdr_start defined. The section number is not
1275 // particularly relevant.
Rui Ueyama9d1bacb12017-02-27 02:31:26 +00001276 Out::ElfHeader->SectionIndex = 1;
Rafael Espindola78493a22017-01-28 17:48:21 +00001277
George Rimar7ca06272016-04-06 07:20:45 +00001278 unsigned I = 1;
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001279 for (OutputSection *Sec : OutputSections) {
George Rimar7ca06272016-04-06 07:20:45 +00001280 Sec->SectionIndex = I++;
Rafael Espindola895aea62017-05-11 22:02:41 +00001281 Sec->ShName = InX::ShStrTab->addString(Sec->Name);
George Rimar7ca06272016-04-06 07:20:45 +00001282 }
Rui Ueyama84417f82015-12-26 07:50:41 +00001283
Rafael Espindola5967c972016-12-19 21:21:07 +00001284 // Binary and relocatable output does not have PHDRS.
1285 // The headers have to be created before finalize as that can influence the
1286 // image base and the dynamic section on mips includes the image base.
1287 if (!Config->Relocatable && !Config->OFormatBinary) {
Rafael Espindolaf51c8052017-06-13 23:26:31 +00001288 Phdrs = Script->hasPhdrsCommands() ? Script->createPhdrs() : createPhdrs();
Rafael Espindola5967c972016-12-19 21:21:07 +00001289 addPtArmExid(Phdrs);
Rafael Espindola02ed7572017-05-04 19:34:17 +00001290 Out::ProgramHeaders->Size = sizeof(Elf_Phdr) * Phdrs.size();
Rafael Espindola5967c972016-12-19 21:21:07 +00001291 }
1292
Eugene Leviantbe809a72016-11-18 06:44:18 +00001293 // Dynamic section must be the last one in this list and dynamic
1294 // symbol table section (DynSymTab) must be the first one.
Rui Ueyama2b6631b2017-08-15 17:01:39 +00001295 applySynthetic({InX::DynSymTab, InX::Bss,
1296 InX::BssRelRo, InX::GnuHashTab,
1297 In<ELFT>::HashTab, InX::SymTab,
1298 InX::ShStrTab, InX::StrTab,
1299 In<ELFT>::VerDef, InX::DynStrTab,
1300 InX::Got, InX::MipsGot,
1301 InX::IgotPlt, InX::GotPlt,
1302 In<ELFT>::RelaDyn, In<ELFT>::RelaIplt,
1303 In<ELFT>::RelaPlt, InX::Plt,
1304 InX::Iplt, In<ELFT>::EhFrameHdr,
1305 In<ELFT>::VerSym, In<ELFT>::VerNeed,
1306 InX::Dynamic},
George Rimar49a47f22017-03-16 10:29:44 +00001307 [](SyntheticSection *SS) { SS->finalizeContents(); });
Peter Smith1ec42d92017-03-08 14:06:24 +00001308
1309 // Some architectures use small displacements for jump instructions.
1310 // It is linker's responsibility to create thunks containing long
1311 // jump instructions if jump targets are too far. Create thunks.
1312 if (Target->NeedsThunks) {
1313 // FIXME: only ARM Interworking and Mips LA25 Thunks are implemented,
1314 // these
1315 // do not require address information. To support range extension Thunks
1316 // we need to assign addresses so that we can tell if jump instructions
1317 // are out of range. This will need to turn into a loop that converges
1318 // when no more Thunks are added
George Rimarec84ffc2017-05-17 07:10:59 +00001319 ThunkCreator TC;
Peter Smith96f813d2017-07-07 10:03:37 +00001320 Script->assignAddresses();
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001321 if (TC.createThunks(OutputSections)) {
Rafael Espindolab3aa2c92017-05-11 21:33:30 +00001322 applySynthetic({InX::MipsGot},
George Rimar49a47f22017-03-16 10:29:44 +00001323 [](SyntheticSection *SS) { SS->updateAllocSize(); });
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001324 if (TC.createThunks(OutputSections))
Peter Smith32980272017-06-16 13:10:08 +00001325 fatal("All non-range thunks should be created in first call");
1326 }
Peter Smith1ec42d92017-03-08 14:06:24 +00001327 }
Peter Smith43e852f2017-06-05 08:51:15 +00001328
Peter Smith1ec42d92017-03-08 14:06:24 +00001329 // Fill other section headers. The dynamic table is finalized
1330 // at the end because some tags like RELSZ depend on result
1331 // of finalizing other sections.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001332 for (OutputSection *Sec : OutputSections)
1333 Sec->finalize<ELFT>();
Peter Smith1ec42d92017-03-08 14:06:24 +00001334
1335 // createThunks may have added local symbols to the static symbol table
George Rimar69b17c32017-05-16 10:04:42 +00001336 applySynthetic({InX::SymTab, InX::ShStrTab, InX::StrTab},
George Rimar49a47f22017-03-16 10:29:44 +00001337 [](SyntheticSection *SS) { SS->postThunkContents(); });
Rui Ueyama84417f82015-12-26 07:50:41 +00001338}
1339
Rui Ueyama84417f82015-12-26 07:50:41 +00001340template <class ELFT> void Writer<ELFT>::addPredefinedSections() {
Rui Ueyamadec4ab02017-02-16 04:19:03 +00001341 // ARM ABI requires .ARM.exidx to be terminated by some piece of data.
1342 // We have the terminater synthetic section class. Add that at the end.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001343 OutputSection *Cmd = findSection(".ARM.exidx");
1344 if (!Cmd || !Cmd->Live || Config->Relocatable)
Peter Smith626c9972017-05-30 11:51:02 +00001345 return;
1346
1347 auto *Sentinel = make<ARMExidxSentinelSection>();
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001348 Cmd->addSection(Sentinel);
Rafael Espindolaabad6182015-08-13 15:23:46 +00001349}
1350
Rui Ueyamaa5d79d12015-12-26 09:48:00 +00001351// The linker is expected to define SECNAME_start and SECNAME_end
1352// symbols for a few sections. This function defines them.
1353template <class ELFT> void Writer<ELFT>::addStartEndSymbols() {
Rafael Espindola24e6f362017-02-24 15:07:30 +00001354 auto Define = [&](StringRef Start, StringRef End, OutputSection *OS) {
Peter Collingbourne0fab40b2016-10-24 20:46:21 +00001355 // These symbols resolve to the image base if the section does not exist.
Rui Ueyama4f2f50d2016-12-21 08:40:09 +00001356 // A special value -1 indicates end of the section.
Peter Collingbournef8435a92017-03-13 16:40:20 +00001357 if (OS) {
1358 addOptionalRegular<ELFT>(Start, OS, 0);
1359 addOptionalRegular<ELFT>(End, OS, -1);
1360 } else {
Rui Ueyamad57e74b72017-03-17 23:29:01 +00001361 if (Config->Pic)
Peter Collingbournef8435a92017-03-13 16:40:20 +00001362 OS = Out::ElfHeader;
1363 addOptionalRegular<ELFT>(Start, OS, 0);
1364 addOptionalRegular<ELFT>(End, OS, 0);
1365 }
Rui Ueyamaa5d79d12015-12-26 09:48:00 +00001366 };
1367
Rui Ueyama9d1bacb12017-02-27 02:31:26 +00001368 Define("__preinit_array_start", "__preinit_array_end", Out::PreinitArray);
1369 Define("__init_array_start", "__init_array_end", Out::InitArray);
1370 Define("__fini_array_start", "__fini_array_end", Out::FiniArray);
Peter Smith17cd3752016-10-27 10:28:53 +00001371
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001372 if (OutputSection *Sec = findSection(".ARM.exidx"))
Peter Smith17cd3752016-10-27 10:28:53 +00001373 Define("__exidx_start", "__exidx_end", Sec);
Rui Ueyamaa5d79d12015-12-26 09:48:00 +00001374}
1375
Rui Ueyamad9189ce2015-10-15 17:11:03 +00001376// If a section name is valid as a C identifier (which is rare because of
1377// the leading '.'), linkers are expected to define __start_<secname> and
1378// __stop_<secname> symbols. They are at beginning and end of the section,
1379// respectively. This is not requested by the ELF standard, but GNU ld and
1380// gold provide the feature, and used by many programs.
1381template <class ELFT>
Rafael Espindola24e6f362017-02-24 15:07:30 +00001382void Writer<ELFT>::addStartStopSymbols(OutputSection *Sec) {
Rafael Espindola40849412017-02-24 14:28:00 +00001383 StringRef S = Sec->Name;
Rui Ueyamad9189ce2015-10-15 17:11:03 +00001384 if (!isValidCIdentifier(S))
1385 return;
Rafael Espindola5616adf2017-03-08 22:36:28 +00001386 addOptionalRegular<ELFT>(Saver.save("__start_" + S), Sec, 0, STV_DEFAULT);
1387 addOptionalRegular<ELFT>(Saver.save("__stop_" + S), Sec, -1, STV_DEFAULT);
Rui Ueyamad9189ce2015-10-15 17:11:03 +00001388}
1389
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001390template <class ELFT> OutputSection *Writer<ELFT>::findSection(StringRef Name) {
Rafael Espindola1eb3a0f2017-07-04 18:26:21 +00001391 for (BaseCommand *Base : Script->Opt.Commands)
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001392 if (auto *Sec = dyn_cast<OutputSection>(Base))
1393 if (Sec->Name == Name)
1394 return Sec;
Rafael Espindola43e76cd2017-05-26 17:48:27 +00001395 return nullptr;
1396}
1397
George Rimar7702bc22017-03-16 11:20:02 +00001398static bool needsPtLoad(OutputSection *Sec) {
Rafael Espindola04a2e342016-11-09 01:42:41 +00001399 if (!(Sec->Flags & SHF_ALLOC))
Rafael Espindolaef762f22016-02-10 23:29:38 +00001400 return false;
1401
1402 // Don't allocate VA space for TLS NOBITS sections. The PT_TLS PHDR is
1403 // responsible for allocating space for them, not the PT_LOAD that
1404 // contains the TLS initialization image.
Rafael Espindola04a2e342016-11-09 01:42:41 +00001405 if (Sec->Flags & SHF_TLS && Sec->Type == SHT_NOBITS)
Rafael Espindolaef762f22016-02-10 23:29:38 +00001406 return false;
1407 return true;
Michael J. Spencer1d299a82015-09-09 20:48:09 +00001408}
1409
Rafael Espindolab45fd702016-09-20 15:22:27 +00001410// Linker scripts are responsible for aligning addresses. Unfortunately, most
1411// linker scripts are designed for creating two PT_LOADs only, one RX and one
1412// RW. This means that there is no alignment in the RO to RX transition and we
1413// cannot create a PT_LOAD there.
Rui Ueyama6bd38222017-04-05 21:37:09 +00001414static uint64_t computeFlags(uint64_t Flags) {
Rui Ueyamaa37ace8d2017-02-25 01:52:03 +00001415 if (Config->Omagic)
George Rimar595a7632016-11-29 09:43:51 +00001416 return PF_R | PF_W | PF_X;
Rui Ueyama6bd38222017-04-05 21:37:09 +00001417 if (Config->SingleRoRx && !(Flags & PF_W))
1418 return Flags | PF_X;
1419 return Flags;
Rafael Espindolab45fd702016-09-20 15:22:27 +00001420}
1421
Rafael Espindola4fc60442016-02-10 22:43:13 +00001422// Decide which program headers to create and which sections to include in each
1423// one.
George Rimaraa354182017-07-27 07:46:50 +00001424template <class ELFT> std::vector<PhdrEntry *> Writer<ELFT>::createPhdrs() {
1425 std::vector<PhdrEntry *> Ret;
Rafael Espindola17cb7c02016-12-19 17:01:01 +00001426 auto AddHdr = [&](unsigned Type, unsigned Flags) -> PhdrEntry * {
George Rimaraa354182017-07-27 07:46:50 +00001427 Ret.push_back(make<PhdrEntry>(Type, Flags));
1428 return Ret.back();
Rafael Espindola4fc60442016-02-10 22:43:13 +00001429 };
George Rimare3336c02015-11-24 10:15:50 +00001430
Rui Ueyama803195e2015-10-23 21:45:59 +00001431 // The first phdr entry is PT_PHDR which describes the program header itself.
Rui Ueyama9d1bacb12017-02-27 02:31:26 +00001432 AddHdr(PT_PHDR, PF_R)->add(Out::ProgramHeaders);
Rui Ueyama953c2c42015-10-10 23:59:57 +00001433
Rui Ueyama803195e2015-10-23 21:45:59 +00001434 // PT_INTERP must be the second entry if exists.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001435 if (OutputSection *Cmd = findSection(".interp"))
1436 AddHdr(PT_INTERP, Cmd->getPhdrFlags())->add(Cmd);
Rafael Espindola70107762015-09-11 18:49:42 +00001437
Rui Ueyama803195e2015-10-23 21:45:59 +00001438 // Add the first PT_LOAD segment for regular output sections.
Rui Ueyama6bd38222017-04-05 21:37:09 +00001439 uint64_t Flags = computeFlags(PF_R);
Rafael Espindola17cb7c02016-12-19 17:01:01 +00001440 PhdrEntry *Load = AddHdr(PT_LOAD, Flags);
Rafael Espindola02ed7572017-05-04 19:34:17 +00001441
1442 // Add the headers. We will remove them if they don't fit.
1443 Load->add(Out::ElfHeader);
1444 Load->add(Out::ProgramHeaders);
1445
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001446 for (OutputSection *Sec : OutputSections) {
Rafael Espindola04a2e342016-11-09 01:42:41 +00001447 if (!(Sec->Flags & SHF_ALLOC))
Rafael Espindolaaab6d5c2016-09-16 21:29:07 +00001448 break;
George Rimar7702bc22017-03-16 11:20:02 +00001449 if (!needsPtLoad(Sec))
Rafael Espindolaef762f22016-02-10 23:29:38 +00001450 continue;
1451
George Rimar8ceadb32016-08-17 07:44:19 +00001452 // Segments are contiguous memory regions that has the same attributes
1453 // (e.g. executable or writable). There is one phdr for each segment.
1454 // Therefore, we need to create a new phdr when the next section has
1455 // different flags or is loaded at a discontiguous address using AT linker
1456 // script command.
Rui Ueyama6bd38222017-04-05 21:37:09 +00001457 uint64_t NewFlags = computeFlags(Sec->getPhdrFlags());
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001458 if (Sec->LMAExpr || Flags != NewFlags) {
Rafael Espindolae090fb22016-03-09 21:37:22 +00001459 Load = AddHdr(PT_LOAD, NewFlags);
Rafael Espindola4fc60442016-02-10 22:43:13 +00001460 Flags = NewFlags;
1461 }
Michael J. Spencer78aa1de2015-11-03 00:34:39 +00001462
Rui Ueyama18f084f2016-07-20 19:36:41 +00001463 Load->add(Sec);
Michael J. Spencer84487f12015-07-24 21:03:07 +00001464 }
Rafael Espindola6b83b902015-08-12 00:00:24 +00001465
Rui Ueyamadb00b612017-02-01 22:42:17 +00001466 // Add a TLS segment if any.
George Rimaraa354182017-07-27 07:46:50 +00001467 PhdrEntry *TlsHdr = make<PhdrEntry>(PT_TLS, PF_R);
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001468 for (OutputSection *Sec : OutputSections)
Rui Ueyamadb00b612017-02-01 22:42:17 +00001469 if (Sec->Flags & SHF_TLS)
George Rimaraa354182017-07-27 07:46:50 +00001470 TlsHdr->add(Sec);
George Rimaraa354182017-07-27 07:46:50 +00001471 if (TlsHdr->First)
1472 Ret.push_back(TlsHdr);
Michael J. Spencer78aa1de2015-11-03 00:34:39 +00001473
Rui Ueyama803195e2015-10-23 21:45:59 +00001474 // Add an entry for .dynamic.
George Rimar69b17c32017-05-16 10:04:42 +00001475 if (InX::DynSymTab)
Rafael Espindoladb5e56f2017-05-31 20:17:44 +00001476 AddHdr(PT_DYNAMIC, InX::Dynamic->getParent()->getPhdrFlags())
1477 ->add(InX::Dynamic->getParent());
Rafael Espindola91009b32015-08-12 01:45:28 +00001478
Rafael Espindola4fc60442016-02-10 22:43:13 +00001479 // PT_GNU_RELRO includes all sections that should be marked as
1480 // read-only by dynamic linker after proccessing relocations.
George Rimaraa354182017-07-27 07:46:50 +00001481 PhdrEntry *RelRo = make<PhdrEntry>(PT_GNU_RELRO, PF_R);
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001482 for (OutputSection *Sec : OutputSections)
Rafael Espindola9e889eb2017-05-11 23:31:06 +00001483 if (needsPtLoad(Sec) && isRelroSection(Sec))
George Rimaraa354182017-07-27 07:46:50 +00001484 RelRo->add(Sec);
George Rimaraa354182017-07-27 07:46:50 +00001485 if (RelRo->First)
1486 Ret.push_back(RelRo);
George Rimare3336c02015-11-24 10:15:50 +00001487
Rafael Espindola4fc60442016-02-10 22:43:13 +00001488 // PT_GNU_EH_FRAME is a special section pointing on .eh_frame_hdr.
Eugene Leviant30c1b432017-03-14 08:49:09 +00001489 if (!In<ELFT>::EhFrame->empty() && In<ELFT>::EhFrameHdr &&
Rafael Espindoladb5e56f2017-05-31 20:17:44 +00001490 In<ELFT>::EhFrame->getParent() && In<ELFT>::EhFrameHdr->getParent())
1491 AddHdr(PT_GNU_EH_FRAME, In<ELFT>::EhFrameHdr->getParent()->getPhdrFlags())
1492 ->add(In<ELFT>::EhFrameHdr->getParent());
George Rimarf6bc65a2016-01-15 13:34:52 +00001493
Rui Ueyama81cb7102017-03-24 00:15:57 +00001494 // PT_OPENBSD_RANDOMIZE is an OpenBSD-specific feature. That makes
1495 // the dynamic linker fill the segment with random data.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001496 if (OutputSection *Cmd = findSection(".openbsd.randomdata"))
1497 AddHdr(PT_OPENBSD_RANDOMIZE, Cmd->getPhdrFlags())->add(Cmd);
George Rimar270173f2016-10-14 13:02:22 +00001498
Rui Ueyamae79b09a2015-11-21 22:19:32 +00001499 // PT_GNU_STACK is a special section to tell the loader to make the
Rui Ueyamaa7e87252017-02-23 08:09:51 +00001500 // pages for the stack non-executable. If you really want an executable
1501 // stack, you can pass -z execstack, but that's not recommended for
1502 // security reasons.
1503 unsigned Perm;
1504 if (Config->ZExecstack)
1505 Perm = PF_R | PF_W | PF_X;
1506 else
1507 Perm = PF_R | PF_W;
1508 AddHdr(PT_GNU_STACK, Perm)->p_memsz = Config->ZStackSize;
Rafael Espindola9907eb02016-03-01 13:23:29 +00001509
George Rimarcc6e5672016-10-14 10:34:36 +00001510 // PT_OPENBSD_WXNEEDED is a OpenBSD-specific header to mark the executable
1511 // is expected to perform W^X violations, such as calling mprotect(2) or
1512 // mmap(2) with PROT_WRITE | PROT_EXEC, which is prohibited by default on
1513 // OpenBSD.
1514 if (Config->ZWxneeded)
1515 AddHdr(PT_OPENBSD_WXNEEDED, PF_X);
1516
Petr Hosek4d65ef3b2017-02-01 20:58:41 +00001517 // Create one PT_NOTE per a group of contiguous .note sections.
1518 PhdrEntry *Note = nullptr;
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001519 for (OutputSection *Sec : OutputSections) {
Petr Hosek4d65ef3b2017-02-01 20:58:41 +00001520 if (Sec->Type == SHT_NOTE) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001521 if (!Note || Sec->LMAExpr)
Petr Hosek4d65ef3b2017-02-01 20:58:41 +00001522 Note = AddHdr(PT_NOTE, PF_R);
1523 Note->add(Sec);
1524 } else {
1525 Note = nullptr;
1526 }
1527 }
Rui Ueyama703296a2016-07-20 19:36:39 +00001528 return Ret;
Rafael Espindola4fc60442016-02-10 22:43:13 +00001529}
1530
Rafael Espindola8e670002016-11-28 00:40:21 +00001531template <class ELFT>
George Rimaraa354182017-07-27 07:46:50 +00001532void Writer<ELFT>::addPtArmExid(std::vector<PhdrEntry *> &Phdrs) {
Rafael Espindola8e670002016-11-28 00:40:21 +00001533 if (Config->EMachine != EM_ARM)
1534 return;
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001535 auto I = llvm::find_if(OutputSections, [](OutputSection *Cmd) {
1536 return Cmd->Type == SHT_ARM_EXIDX;
George Rimara951d5c2017-07-04 13:10:37 +00001537 });
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001538 if (I == OutputSections.end())
Rafael Espindola8e670002016-11-28 00:40:21 +00001539 return;
1540
1541 // PT_ARM_EXIDX is the ARM EHABI equivalent of PT_GNU_EH_FRAME
George Rimaraa354182017-07-27 07:46:50 +00001542 PhdrEntry *ARMExidx = make<PhdrEntry>(PT_ARM_EXIDX, PF_R);
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001543 ARMExidx->add(*I);
Rafael Espindola8e670002016-11-28 00:40:21 +00001544 Phdrs.push_back(ARMExidx);
1545}
1546
Peter Collingbourne628ec9f2017-01-10 01:21:30 +00001547// The first section of each PT_LOAD, the first section in PT_GNU_RELRO and the
1548// first section after PT_GNU_RELRO have to be page aligned so that the dynamic
1549// linker can set the permissions.
Rui Ueyama47091902016-03-30 19:41:51 +00001550template <class ELFT> void Writer<ELFT>::fixSectionAlignments() {
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001551 auto PageAlign = [](OutputSection *Cmd) {
Rafael Espindola0f7dc0e2017-06-02 01:37:58 +00001552 if (Cmd && !Cmd->AddrExpr)
1553 Cmd->AddrExpr = [=] {
1554 return alignTo(Script->getDot(), Config->MaxPageSize);
1555 };
1556 };
1557
George Rimaraa354182017-07-27 07:46:50 +00001558 for (const PhdrEntry *P : Phdrs)
1559 if (P->p_type == PT_LOAD && P->First)
1560 PageAlign(P->First);
Rui Ueyama47091902016-03-30 19:41:51 +00001561
George Rimaraa354182017-07-27 07:46:50 +00001562 for (const PhdrEntry *P : Phdrs) {
1563 if (P->p_type != PT_GNU_RELRO)
Rui Ueyama47091902016-03-30 19:41:51 +00001564 continue;
George Rimaraa354182017-07-27 07:46:50 +00001565 if (P->First)
1566 PageAlign(P->First);
Rui Ueyama47091902016-03-30 19:41:51 +00001567 // Find the first section after PT_GNU_RELRO. If it is in a PT_LOAD we
1568 // have to align it to a page.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001569 auto End = OutputSections.end();
1570 auto I = std::find(OutputSections.begin(), End, P->Last);
Rui Ueyama47091902016-03-30 19:41:51 +00001571 if (I == End || (I + 1) == End)
1572 continue;
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001573 OutputSection *Cmd = (*(I + 1));
1574 if (needsPtLoad(Cmd))
1575 PageAlign(Cmd);
Rui Ueyama47091902016-03-30 19:41:51 +00001576 }
1577}
1578
George Rimar5f857322016-04-27 09:16:28 +00001579// Adjusts the file alignment for a given output section and returns
1580// its new file offset. The file offset must be the same with its
1581// virtual address (modulo the page size) so that the loader can load
1582// executables without any address adjustment.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001583static uint64_t getFileAlignment(uint64_t Off, OutputSection *Cmd) {
1584 OutputSection *First = Cmd->FirstInPtLoad;
Rafael Espindola8b8f74f2016-12-07 20:20:39 +00001585 // If the section is not in a PT_LOAD, we just have to align it.
Rafael Espindolac94678b2016-09-29 16:29:55 +00001586 if (!First)
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001587 return alignTo(Off, Cmd->Alignment);
Eugene Leviant3d9abec2016-09-29 09:20:33 +00001588
Rafael Espindola8b8f74f2016-12-07 20:20:39 +00001589 // The first section in a PT_LOAD has to have congruent offset and address
1590 // module the page size.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001591 if (Cmd == First)
1592 return alignTo(Off, std::max<uint64_t>(Cmd->Alignment, Config->MaxPageSize),
1593 Cmd->Addr);
Rafael Espindola8b8f74f2016-12-07 20:20:39 +00001594
1595 // If two sections share the same PT_LOAD the file offset is calculated
1596 // using this formula: Off2 = Off1 + (VA2 - VA1).
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001597 return First->Offset + Cmd->Addr - First->Addr;
George Rimar5f857322016-04-27 09:16:28 +00001598}
1599
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001600static uint64_t setOffset(OutputSection *Cmd, uint64_t Off) {
1601 if (Cmd->Type == SHT_NOBITS) {
1602 Cmd->Offset = Off;
Rui Ueyama35723f02017-02-14 23:35:42 +00001603 return Off;
George Rimar86ce2672016-08-25 09:05:47 +00001604 }
1605
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001606 Off = getFileAlignment(Off, Cmd);
1607 Cmd->Offset = Off;
1608 return Off + Cmd->Size;
George Rimar86ce2672016-08-25 09:05:47 +00001609}
1610
1611template <class ELFT> void Writer<ELFT>::assignFileOffsetsBinary() {
Rui Ueyama6bd38222017-04-05 21:37:09 +00001612 uint64_t Off = 0;
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001613 for (OutputSection *Sec : OutputSections)
Rafael Espindola04a2e342016-11-09 01:42:41 +00001614 if (Sec->Flags & SHF_ALLOC)
Rui Ueyama6bd38222017-04-05 21:37:09 +00001615 Off = setOffset(Sec, Off);
1616 FileSize = alignTo(Off, Config->Wordsize);
George Rimar86ce2672016-08-25 09:05:47 +00001617}
1618
Rui Ueyamae044e9c2016-04-01 17:07:17 +00001619// Assign file offsets to output sections.
1620template <class ELFT> void Writer<ELFT>::assignFileOffsets() {
Rui Ueyama6bd38222017-04-05 21:37:09 +00001621 uint64_t Off = 0;
1622 Off = setOffset(Out::ElfHeader, Off);
1623 Off = setOffset(Out::ProgramHeaders, Off);
George Rimar7ca06272016-04-06 07:20:45 +00001624
Petr Hosekedd6c352017-08-02 16:35:00 +00001625 PhdrEntry *LastRX = nullptr;
1626 for (PhdrEntry *P : Phdrs)
1627 if (P->p_type == PT_LOAD && (P->p_flags & PF_X))
1628 LastRX = P;
1629
1630 for (OutputSection *Sec : OutputSections) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001631 Off = setOffset(Sec, Off);
Petr Hosekedd6c352017-08-02 16:35:00 +00001632 if (Script->Opt.HasSections)
1633 continue;
1634 // If this is a last section of the last executable segment and that
1635 // segment is the last loadable segment, align the offset of the
1636 // following section to avoid loading non-segments parts of the file.
1637 if (LastRX && LastRX->Last == Sec)
1638 Off = alignTo(Off, Target->PageSize);
1639 }
Eugene Leviant467c4d52016-07-01 10:27:36 +00001640
Rui Ueyama6bd38222017-04-05 21:37:09 +00001641 SectionHeaderOff = alignTo(Off, Config->Wordsize);
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001642 FileSize = SectionHeaderOff + (OutputSections.size() + 1) * sizeof(Elf_Shdr);
Rui Ueyamae044e9c2016-04-01 17:07:17 +00001643}
1644
1645// Finalize the program headers. We call this function after we assign
1646// file offsets and VAs to all sections.
1647template <class ELFT> void Writer<ELFT>::setPhdrs() {
George Rimaraa354182017-07-27 07:46:50 +00001648 for (PhdrEntry *P : Phdrs) {
1649 OutputSection *First = P->First;
1650 OutputSection *Last = P->Last;
Rui Ueyamae8a45e42016-04-01 22:42:04 +00001651 if (First) {
George Rimaraa354182017-07-27 07:46:50 +00001652 P->p_filesz = Last->Offset - First->Offset;
Rafael Espindola04a2e342016-11-09 01:42:41 +00001653 if (Last->Type != SHT_NOBITS)
George Rimaraa354182017-07-27 07:46:50 +00001654 P->p_filesz += Last->Size;
1655 P->p_memsz = Last->Addr + Last->Size - First->Addr;
1656 P->p_offset = First->Offset;
1657 P->p_vaddr = First->Addr;
1658 if (!P->HasLMA)
1659 P->p_paddr = First->getLMA();
Rafael Espindola4fc60442016-02-10 22:43:13 +00001660 }
George Rimaraa354182017-07-27 07:46:50 +00001661 if (P->p_type == PT_LOAD)
1662 P->p_align = std::max<uint64_t>(P->p_align, Config->MaxPageSize);
1663 else if (P->p_type == PT_GNU_RELRO) {
1664 P->p_align = 1;
Peter Collingbourne7b5088b2017-01-04 18:56:15 +00001665 // The glibc dynamic loader rounds the size down, so we need to round up
1666 // to protect the last page. This is a no-op on FreeBSD which always
1667 // rounds up.
George Rimaraa354182017-07-27 07:46:50 +00001668 P->p_memsz = alignTo(P->p_memsz, Target->PageSize);
Peter Collingbourne7b5088b2017-01-04 18:56:15 +00001669 }
George Rimar8ceadb32016-08-17 07:44:19 +00001670
Rafael Espindola4fc60442016-02-10 22:43:13 +00001671 // The TLS pointer goes after PT_TLS. At least glibc will align it,
1672 // so round up the size to make sure the offsets are correct.
George Rimaraa354182017-07-27 07:46:50 +00001673 if (P->p_type == PT_TLS) {
1674 Out::TlsPhdr = P;
1675 if (P->p_memsz)
1676 P->p_memsz = alignTo(P->p_memsz, P->p_align);
Rui Ueyama803195e2015-10-23 21:45:59 +00001677 }
1678 }
Michael J. Spencer84487f12015-07-24 21:03:07 +00001679}
1680
Rui Ueyama2eda6d12016-11-23 22:41:00 +00001681// The entry point address is chosen in the following ways.
1682//
1683// 1. the '-e' entry command-line option;
1684// 2. the ENTRY(symbol) command in a linker control script;
1685// 3. the value of the symbol start, if present;
1686// 4. the address of the first byte of the .text section, if present;
1687// 5. the address 0.
Rui Ueyama6bd38222017-04-05 21:37:09 +00001688template <class ELFT> uint64_t Writer<ELFT>::getEntryAddr() {
Rui Ueyamaa1407c42016-12-07 03:23:06 +00001689 // Case 1, 2 or 3. As a special case, if the symbol is actually
1690 // a number, we'll use that number as an address.
Rafael Espindola244ef982017-07-26 18:42:48 +00001691 if (SymbolBody *B = Symtab->find(Config->Entry))
George Rimarf64618a2017-03-17 11:56:54 +00001692 return B->getVA();
Rui Ueyamaa1407c42016-12-07 03:23:06 +00001693 uint64_t Addr;
George Rimarab947682017-05-16 08:19:25 +00001694 if (to_integer(Config->Entry, Addr))
Rui Ueyamaa1407c42016-12-07 03:23:06 +00001695 return Addr;
Rui Ueyama2eda6d12016-11-23 22:41:00 +00001696
1697 // Case 4
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001698 if (OutputSection *Sec = findSection(".text")) {
Rui Ueyama9e5f5ef2016-12-07 04:06:21 +00001699 if (Config->WarnMissingEntry)
Petr Hosek2f50fef2016-12-07 02:26:16 +00001700 warn("cannot find entry symbol " + Config->Entry + "; defaulting to 0x" +
1701 utohexstr(Sec->Addr));
Rui Ueyama2eda6d12016-11-23 22:41:00 +00001702 return Sec->Addr;
1703 }
1704
1705 // Case 5
Rui Ueyama9e5f5ef2016-12-07 04:06:21 +00001706 if (Config->WarnMissingEntry)
Petr Hosek2f50fef2016-12-07 02:26:16 +00001707 warn("cannot find entry symbol " + Config->Entry +
1708 "; not setting start address");
Rui Ueyama8da7aa02016-10-20 00:07:36 +00001709 return 0;
Rui Ueyama3bfaba92015-12-24 08:37:34 +00001710}
1711
Rui Ueyama4cea4e82016-02-25 19:28:37 +00001712static uint16_t getELFType() {
Rui Ueyamad57e74b72017-03-17 23:29:01 +00001713 if (Config->Pic)
Rui Ueyama4cea4e82016-02-25 19:28:37 +00001714 return ET_DYN;
1715 if (Config->Relocatable)
1716 return ET_REL;
1717 return ET_EXEC;
1718}
1719
Rui Ueyama1a311f12015-12-26 10:52:26 +00001720// This function is called after we have assigned address and size
Rafael Espindola78493a22017-01-28 17:48:21 +00001721// to each section. This function fixes some predefined
Rui Ueyama1a311f12015-12-26 10:52:26 +00001722// symbol values that depend on section address and size.
Rafael Espindola78493a22017-01-28 17:48:21 +00001723template <class ELFT> void Writer<ELFT>::fixPredefinedSymbols() {
George Rimar2abc5872016-03-01 19:18:07 +00001724 // _etext is the first location after the last read-only loadable segment.
1725 // _edata is the first location after the last read-write loadable segment.
George Rimarefded312016-04-01 10:23:32 +00001726 // _end is the first location after the uninitialized data region.
Rafael Espindola78493a22017-01-28 17:48:21 +00001727 PhdrEntry *Last = nullptr;
1728 PhdrEntry *LastRO = nullptr;
1729 PhdrEntry *LastRW = nullptr;
George Rimaraa354182017-07-27 07:46:50 +00001730 for (PhdrEntry *P : Phdrs) {
1731 if (P->p_type != PT_LOAD)
George Rimar9e859392016-02-26 14:36:36 +00001732 continue;
George Rimaraa354182017-07-27 07:46:50 +00001733 Last = P;
1734 if (P->p_flags & PF_W)
1735 LastRW = P;
George Rimar8bbff7e2016-04-14 14:37:59 +00001736 else
George Rimaraa354182017-07-27 07:46:50 +00001737 LastRO = P;
George Rimar9e859392016-02-26 14:36:36 +00001738 }
Rui Ueyamae962e372017-05-26 02:27:19 +00001739
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001740 auto Set = [](DefinedRegular *S, OutputSection *Cmd, uint64_t Value) {
Rui Ueyamae962e372017-05-26 02:27:19 +00001741 if (S) {
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001742 S->Section = Cmd;
Rui Ueyamae962e372017-05-26 02:27:19 +00001743 S->Value = Value;
1744 }
1745 };
1746
1747 if (Last) {
1748 Set(ElfSym::End1, Last->First, Last->p_memsz);
1749 Set(ElfSym::End2, Last->First, Last->p_memsz);
1750 }
1751 if (LastRO) {
1752 Set(ElfSym::Etext1, LastRO->First, LastRO->p_filesz);
1753 Set(ElfSym::Etext2, LastRO->First, LastRO->p_filesz);
1754 }
1755 if (LastRW) {
1756 Set(ElfSym::Edata1, LastRW->First, LastRW->p_filesz);
1757 Set(ElfSym::Edata2, LastRW->First, LastRW->p_filesz);
1758 }
Simon Atanasyan8469b882016-11-23 22:22:16 +00001759
George Rimare6c5d382017-04-05 10:03:25 +00001760 if (ElfSym::Bss)
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001761 ElfSym::Bss->Section = findSection(".bss");
George Rimare6c5d382017-04-05 10:03:25 +00001762
Simon Atanasyan8469b882016-11-23 22:22:16 +00001763 // Setup MIPS _gp_disp/__gnu_local_gp symbols which should
1764 // be equal to the _gp symbol's value.
Rafael Espindolacccd2c62017-05-31 22:46:19 +00001765 if (Config->EMachine == EM_MIPS && !ElfSym::MipsGp->Value) {
1766 // Find GP-relative section with the lowest address
1767 // and use this address to calculate default _gp value.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001768 for (const OutputSection *Cmd : OutputSections) {
1769 const OutputSection *OS = Cmd;
Rafael Espindola47c9f842017-05-31 22:49:50 +00001770 if (OS->Flags & SHF_MIPS_GPREL) {
1771 ElfSym::MipsGp->Value = OS->Addr + 0x7ff0;
1772 break;
1773 }
1774 }
Simon Atanasyan8469b882016-11-23 22:22:16 +00001775 }
Rui Ueyama1a311f12015-12-26 10:52:26 +00001776}
1777
Michael J. Spencer84487f12015-07-24 21:03:07 +00001778template <class ELFT> void Writer<ELFT>::writeHeader() {
1779 uint8_t *Buf = Buffer->getBufferStart();
Rui Ueyamae08cd672015-10-23 22:44:39 +00001780 memcpy(Buf, "\177ELF", 4);
1781
Rui Ueyama6621d8e2015-10-24 17:57:40 +00001782 // Write the ELF header.
Rafael Espindola18608a02015-09-08 21:57:31 +00001783 auto *EHdr = reinterpret_cast<Elf_Ehdr *>(Buf);
Rui Ueyamaf2dc4362017-04-05 21:08:47 +00001784 EHdr->e_ident[EI_CLASS] = Config->Is64 ? ELFCLASS64 : ELFCLASS32;
1785 EHdr->e_ident[EI_DATA] = Config->IsLE ? ELFDATA2LSB : ELFDATA2MSB;
Michael J. Spencer84487f12015-07-24 21:03:07 +00001786 EHdr->e_ident[EI_VERSION] = EV_CURRENT;
Rafael Espindola7cc713a2016-10-27 14:00:51 +00001787 EHdr->e_ident[EI_OSABI] = Config->OSABI;
Rui Ueyama4cea4e82016-02-25 19:28:37 +00001788 EHdr->e_type = getELFType();
Rafael Espindola7cc713a2016-10-27 14:00:51 +00001789 EHdr->e_machine = Config->EMachine;
Michael J. Spencer84487f12015-07-24 21:03:07 +00001790 EHdr->e_version = EV_CURRENT;
Rui Ueyama2eda6d12016-11-23 22:41:00 +00001791 EHdr->e_entry = getEntryAddr();
Michael J. Spencer8039dae22015-07-29 00:30:10 +00001792 EHdr->e_shoff = SectionHeaderOff;
Rafael Espindola18608a02015-09-08 21:57:31 +00001793 EHdr->e_ehsize = sizeof(Elf_Ehdr);
Rui Ueyama2f1b79f2015-10-10 22:34:30 +00001794 EHdr->e_phnum = Phdrs.size();
Rafael Espindola18608a02015-09-08 21:57:31 +00001795 EHdr->e_shentsize = sizeof(Elf_Shdr);
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001796 EHdr->e_shnum = OutputSections.size() + 1;
Rafael Espindoladb5e56f2017-05-31 20:17:44 +00001797 EHdr->e_shstrndx = InX::ShStrTab->getParent()->SectionIndex;
Rui Ueyama6621d8e2015-10-24 17:57:40 +00001798
Rui Ueyama1e2e8ea2016-09-13 20:51:32 +00001799 if (Config->EMachine == EM_ARM)
1800 // We don't currently use any features incompatible with EF_ARM_EABI_VER5,
1801 // but we don't have any firm guarantees of conformance. Linux AArch64
1802 // kernels (as of 2016) require an EABI version to be set.
1803 EHdr->e_flags = EF_ARM_EABI_VER5;
1804 else if (Config->EMachine == EM_MIPS)
Simon Atanasyan4f90c2f2016-07-20 20:30:41 +00001805 EHdr->e_flags = getMipsEFlags<ELFT>();
Rui Ueyama22b5d1f2016-03-13 19:29:17 +00001806
George Rimar58941ee2016-02-25 08:23:37 +00001807 if (!Config->Relocatable) {
1808 EHdr->e_phoff = sizeof(Elf_Ehdr);
1809 EHdr->e_phentsize = sizeof(Elf_Phdr);
1810 }
1811
Rui Ueyama6621d8e2015-10-24 17:57:40 +00001812 // Write the program header table.
Rafael Espindola4fc60442016-02-10 22:43:13 +00001813 auto *HBuf = reinterpret_cast<Elf_Phdr *>(Buf + EHdr->e_phoff);
George Rimaraa354182017-07-27 07:46:50 +00001814 for (PhdrEntry *P : Phdrs) {
1815 HBuf->p_type = P->p_type;
1816 HBuf->p_flags = P->p_flags;
1817 HBuf->p_offset = P->p_offset;
1818 HBuf->p_vaddr = P->p_vaddr;
1819 HBuf->p_paddr = P->p_paddr;
1820 HBuf->p_filesz = P->p_filesz;
1821 HBuf->p_memsz = P->p_memsz;
1822 HBuf->p_align = P->p_align;
Rafael Espindola17cb7c02016-12-19 17:01:01 +00001823 ++HBuf;
1824 }
Rafael Espindolae438e072015-09-08 22:55:28 +00001825
Rui Ueyama6621d8e2015-10-24 17:57:40 +00001826 // Write the section header table. Note that the first table entry is null.
Rui Ueyamaad59b652016-02-25 23:58:21 +00001827 auto *SHdrs = reinterpret_cast<Elf_Shdr *>(Buf + EHdr->e_shoff);
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001828 for (OutputSection *Sec : OutputSections)
1829 Sec->writeHeaderTo<ELFT>(++SHdrs);
Michael J. Spencer84487f12015-07-24 21:03:07 +00001830}
1831
Rui Ueyama6d12eae2016-12-05 17:40:37 +00001832// Open a result file.
Rui Ueyamaf7f52ef2016-04-01 17:24:19 +00001833template <class ELFT> void Writer<ELFT>::openFile() {
Rui Ueyama6bd38222017-04-05 21:37:09 +00001834 if (!Config->Is64 && FileSize > UINT32_MAX) {
1835 error("output file too large: " + Twine(FileSize) + " bytes");
1836 return;
1837 }
1838
Rui Ueyama6d12eae2016-12-05 17:40:37 +00001839 unlinkAsync(Config->OutputFile);
Rafael Espindolabdc8f2f2015-08-13 00:31:46 +00001840 ErrorOr<std::unique_ptr<FileOutputBuffer>> BufferOrErr =
Rui Ueyamacbe39262016-02-02 22:48:04 +00001841 FileOutputBuffer::create(Config->OutputFile, FileSize,
1842 FileOutputBuffer::F_executable);
Rui Ueyama6d12eae2016-12-05 17:40:37 +00001843
Rui Ueyamaaa2db882016-07-15 01:38:54 +00001844 if (auto EC = BufferOrErr.getError())
Rui Ueyamac8d3a832017-01-12 22:18:04 +00001845 error("failed to open " + Config->OutputFile + ": " + EC.message());
Rui Ueyamaf7f52ef2016-04-01 17:24:19 +00001846 else
Rui Ueyamaaa2db882016-07-15 01:38:54 +00001847 Buffer = std::move(*BufferOrErr);
Michael J. Spencer84487f12015-07-24 21:03:07 +00001848}
1849
George Rimar86ce2672016-08-25 09:05:47 +00001850template <class ELFT> void Writer<ELFT>::writeSectionsBinary() {
1851 uint8_t *Buf = Buffer->getBufferStart();
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001852 for (OutputSection *Sec : OutputSections)
Rafael Espindola04a2e342016-11-09 01:42:41 +00001853 if (Sec->Flags & SHF_ALLOC)
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001854 Sec->writeTo<ELFT>(Buf + Sec->Offset);
George Rimar86ce2672016-08-25 09:05:47 +00001855}
1856
Rui Ueyama6238ed22017-08-14 21:18:12 +00001857static void fillTrap(uint8_t *I, uint8_t *End) {
George Rimarf7ef2a12017-08-21 08:31:14 +00001858 for (; I + 4 <= End; I += 4)
Petr Hosekedd6c352017-08-02 16:35:00 +00001859 memcpy(I, &Target->TrapInstr, 4);
1860}
1861
Rui Ueyama6238ed22017-08-14 21:18:12 +00001862// Fill the last page of executable segments with trap instructions
1863// instead of leaving them as zero. Even though it is not required by any
1864// standard, it is in general a good thing to do for security reasons.
1865//
1866// We'll leave other pages in segments as-is because the rest will be
1867// overwritten by output sections.
Petr Hosekedd6c352017-08-02 16:35:00 +00001868template <class ELFT> void Writer<ELFT>::writeTrapInstr() {
1869 if (Script->Opt.HasSections)
1870 return;
1871
Rui Ueyama6238ed22017-08-14 21:18:12 +00001872 // Fill the last page.
Petr Hosekedd6c352017-08-02 16:35:00 +00001873 uint8_t *Buf = Buffer->getBufferStart();
Rui Ueyama6238ed22017-08-14 21:18:12 +00001874 for (PhdrEntry *P : Phdrs)
1875 if (P->p_type == PT_LOAD && (P->p_flags & PF_X))
1876 fillTrap(Buf + alignDown(P->p_offset + P->p_filesz, Target->PageSize),
1877 Buf + alignTo(P->p_offset + P->p_filesz, Target->PageSize));
Petr Hosekedd6c352017-08-02 16:35:00 +00001878
Rui Ueyama6238ed22017-08-14 21:18:12 +00001879 // Round up the file size of the last segment to the page boundary iff it is
1880 // an executable segment to ensure that other other tools don't accidentally
1881 // trim the instruction padding (e.g. when stripping the file).
Petr Hosekedd6c352017-08-02 16:35:00 +00001882 PhdrEntry *LastRX = nullptr;
1883 for (PhdrEntry *P : Phdrs) {
1884 if (P->p_type != PT_LOAD)
1885 continue;
1886 if (P->p_flags & PF_X)
1887 LastRX = P;
1888 else
1889 LastRX = nullptr;
1890 }
Petr Hosekedd6c352017-08-02 16:35:00 +00001891 if (LastRX)
1892 LastRX->p_filesz = alignTo(LastRX->p_filesz, Target->PageSize);
1893}
1894
Michael J. Spencer84487f12015-07-24 21:03:07 +00001895// Write section contents to a mmap'ed file.
1896template <class ELFT> void Writer<ELFT>::writeSections() {
1897 uint8_t *Buf = Buffer->getBufferStart();
Hal Finkeldaedc122015-10-12 23:16:53 +00001898
Rui Ueyama75118252016-08-09 01:35:37 +00001899 // PPC64 needs to process relocations in the .opd section
1900 // before processing relocations in code-containing sections.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001901 if (auto *OpdCmd = findSection(".opd")) {
1902 Out::Opd = OpdCmd;
Rui Ueyama9d1bacb12017-02-27 02:31:26 +00001903 Out::OpdBuf = Buf + Out::Opd->Offset;
Rafael Espindola55b169b2017-05-24 18:08:04 +00001904 OpdCmd->template writeTo<ELFT>(Buf + Out::Opd->Offset);
Rafael Espindola7a513052015-10-13 14:45:51 +00001905 }
Hal Finkeldaedc122015-10-12 23:16:53 +00001906
Rafael Espindola24e6f362017-02-24 15:07:30 +00001907 OutputSection *EhFrameHdr =
Rafael Espindola881cc162017-05-26 17:28:17 +00001908 (In<ELFT>::EhFrameHdr && !In<ELFT>::EhFrameHdr->empty())
Rafael Espindoladb5e56f2017-05-31 20:17:44 +00001909 ? In<ELFT>::EhFrameHdr->getParent()
Rafael Espindola881cc162017-05-26 17:28:17 +00001910 : nullptr;
Rafael Espindola08d6a3f2017-02-11 01:40:49 +00001911
1912 // In -r or -emit-relocs mode, write the relocation sections first as in
1913 // ELf_Rel targets we might find out that we need to modify the relocated
1914 // section while doing it.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001915 for (OutputSection *Sec : OutputSections)
Rafael Espindola08d6a3f2017-02-11 01:40:49 +00001916 if (Sec->Type == SHT_REL || Sec->Type == SHT_RELA)
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001917 Sec->writeTo<ELFT>(Buf + Sec->Offset);
Rafael Espindola08d6a3f2017-02-11 01:40:49 +00001918
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001919 for (OutputSection *Sec : OutputSections)
Rui Ueyama9d1bacb12017-02-27 02:31:26 +00001920 if (Sec != Out::Opd && Sec != EhFrameHdr && Sec->Type != SHT_REL &&
Rafael Espindola08d6a3f2017-02-11 01:40:49 +00001921 Sec->Type != SHT_RELA)
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001922 Sec->writeTo<ELFT>(Buf + Sec->Offset);
Eugene Leviante4f590f2016-08-31 07:43:50 +00001923
1924 // The .eh_frame_hdr depends on .eh_frame section contents, therefore
1925 // it should be written after .eh_frame is written.
Rafael Espindola8c022ca2017-07-27 19:22:43 +00001926 if (EhFrameHdr)
1927 EhFrameHdr->writeTo<ELFT>(Buf + EhFrameHdr->Offset);
Michael J. Spencer84487f12015-07-24 21:03:07 +00001928}
Rui Ueyama3ce825e2015-10-09 21:07:25 +00001929
Rui Ueyama634ddf02016-03-11 20:51:53 +00001930template <class ELFT> void Writer<ELFT>::writeBuildId() {
Rafael Espindoladb5e56f2017-05-31 20:17:44 +00001931 if (!InX::BuildId || !InX::BuildId->getParent())
Rui Ueyama634ddf02016-03-11 20:51:53 +00001932 return;
1933
Petr Hosekfdfcb792016-09-01 22:43:03 +00001934 // Compute a hash of all sections of the output file.
Rui Ueyama634ddf02016-03-11 20:51:53 +00001935 uint8_t *Start = Buffer->getBufferStart();
Petr Hosekfdfcb792016-09-01 22:43:03 +00001936 uint8_t *End = Start + FileSize;
Rafael Espindola895aea62017-05-11 22:02:41 +00001937 InX::BuildId->writeBuildId({Start, End});
Rui Ueyama634ddf02016-03-11 20:51:53 +00001938}
1939
Rui Ueyama84907c52016-08-09 03:38:23 +00001940template void elf::writeResult<ELF32LE>();
1941template void elf::writeResult<ELF32BE>();
1942template void elf::writeResult<ELF64LE>();
1943template void elf::writeResult<ELF64BE>();