blob: 142fd2a7670e5fab71badc4c49e1c0da5cb15934 [file] [log] [blame]
Rui Ueyama717677a2016-02-11 21:17:59 +00001//===- LinkerScript.h -------------------------------------------*- C++ -*-===//
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
10#ifndef LLD_ELF_LINKER_SCRIPT_H
11#define LLD_ELF_LINKER_SCRIPT_H
12
George Rimarbe394db2016-09-16 20:21:55 +000013#include "Config.h"
George Rimarc91930a2016-09-02 21:17:20 +000014#include "Strings.h"
Eugene Leviantbbe38602016-07-19 09:25:43 +000015#include "Writer.h"
Rui Ueyama717677a2016-02-11 21:17:59 +000016#include "lld/Core/LLVM.h"
17#include "llvm/ADT/DenseMap.h"
Rafael Espindolad3190792016-09-16 15:10:23 +000018#include "llvm/ADT/DenseSet.h"
Rui Ueyama717677a2016-02-11 21:17:59 +000019#include "llvm/ADT/MapVector.h"
Rui Ueyamaf9de0d62016-02-11 21:38:55 +000020#include "llvm/Support/Allocator.h"
21#include "llvm/Support/MemoryBuffer.h"
George Rimarc91930a2016-09-02 21:17:20 +000022#include "llvm/Support/Regex.h"
Rui Ueyama708019c2016-07-24 18:19:40 +000023#include <functional>
George Rimar395281c2016-09-16 17:42:10 +000024#include <list>
Rui Ueyama717677a2016-02-11 21:17:59 +000025
26namespace lld {
Rafael Espindolae0df00b2016-02-28 00:25:54 +000027namespace elf {
Rafael Espindolae7553e42016-08-31 13:28:33 +000028class DefinedCommon;
George Rimardbb76db2016-08-18 13:00:49 +000029class ScriptParser;
Rui Ueyama8d083e62016-07-29 05:48:39 +000030class SymbolBody;
Eugene Leviante63d81b2016-07-20 14:43:20 +000031template <class ELFT> class InputSectionBase;
Rafael Espindolad3190792016-09-16 15:10:23 +000032template <class ELFT> class InputSection;
Eugene Leviante63d81b2016-07-20 14:43:20 +000033template <class ELFT> class OutputSectionBase;
34template <class ELFT> class OutputSectionFactory;
Eugene Leviant97403d12016-09-01 09:55:57 +000035class InputSectionData;
Rui Ueyama717677a2016-02-11 21:17:59 +000036
Rui Ueyama708019c2016-07-24 18:19:40 +000037typedef std::function<uint64_t(uint64_t)> Expr;
38
Rui Ueyama07320e42016-04-20 20:13:41 +000039// Parses a linker script. Calling this function updates
40// Config and ScriptConfig.
41void readLinkerScript(MemoryBufferRef MB);
42
George Rimar20b65982016-08-31 09:08:26 +000043void readVersionScript(MemoryBufferRef MB);
44
George Rimareea31142016-07-21 14:26:59 +000045// This enum is used to implement linker script SECTIONS command.
46// https://sourceware.org/binutils/docs/ld/SECTIONS.html#SECTIONS
47enum SectionsCommandKind {
48 AssignmentKind,
49 OutputSectionKind,
George Rimareefa7582016-08-04 09:29:31 +000050 InputSectionKind,
51 AssertKind
Rui Ueyama1ebc8ed2016-02-12 21:47:28 +000052};
53
George Rimar076fe152016-07-21 06:43:01 +000054struct BaseCommand {
55 BaseCommand(int K) : Kind(K) {}
56 virtual ~BaseCommand() {}
57 int Kind;
58};
59
60struct SymbolAssignment : BaseCommand {
Eugene Leviantdb741e72016-09-07 07:08:43 +000061 SymbolAssignment(StringRef Name, Expr E, bool IsAbsolute)
62 : BaseCommand(AssignmentKind), Name(Name), Expression(E),
63 IsAbsolute(IsAbsolute) {}
George Rimar076fe152016-07-21 06:43:01 +000064 static bool classof(const BaseCommand *C);
Rui Ueyama20204242016-07-29 05:52:33 +000065
66 // The LHS of an expression. Name is either a symbol name or ".".
George Rimar076fe152016-07-21 06:43:01 +000067 StringRef Name;
Rui Ueyama20204242016-07-29 05:52:33 +000068 SymbolBody *Sym = nullptr;
69
70 // The RHS of an expression.
Rui Ueyama708019c2016-07-24 18:19:40 +000071 Expr Expression;
Rui Ueyama20204242016-07-29 05:52:33 +000072
73 // Command attributes for PROVIDE, HIDDEN and PROVIDE_HIDDEN.
Eugene Levianta31c91b2016-07-22 07:38:40 +000074 bool Provide = false;
Eugene Levianta31c91b2016-07-22 07:38:40 +000075 bool Hidden = false;
Eugene Leviantdb741e72016-09-07 07:08:43 +000076 bool IsAbsolute;
George Rimar076fe152016-07-21 06:43:01 +000077};
78
Davide Italiano246f6812016-07-22 03:36:24 +000079// Linker scripts allow additional constraints to be put on ouput sections.
80// An output section will only be created if all of its input sections are
81// read-only
82// or all of its input sections are read-write by using the keyword ONLY_IF_RO
83// and ONLY_IF_RW respectively.
Rui Ueyamaefc40662016-07-25 22:00:10 +000084enum class ConstraintKind { NoConstraint, ReadOnly, ReadWrite };
Davide Italiano246f6812016-07-22 03:36:24 +000085
George Rimar076fe152016-07-21 06:43:01 +000086struct OutputSectionCommand : BaseCommand {
87 OutputSectionCommand(StringRef Name)
88 : BaseCommand(OutputSectionKind), Name(Name) {}
89 static bool classof(const BaseCommand *C);
Eugene Levianteda81a12016-07-12 06:39:48 +000090 StringRef Name;
George Rimar58e5c4d2016-07-25 08:29:46 +000091 Expr AddrExpr;
George Rimar630c6172016-07-26 18:06:29 +000092 Expr AlignExpr;
George Rimar8ceadb32016-08-17 07:44:19 +000093 Expr LmaExpr;
George Rimardb24d9c2016-08-19 15:18:23 +000094 Expr SubalignExpr;
George Rimareea31142016-07-21 14:26:59 +000095 std::vector<std::unique_ptr<BaseCommand>> Commands;
Eugene Leviantbbe38602016-07-19 09:25:43 +000096 std::vector<StringRef> Phdrs;
George Rimar076fe152016-07-21 06:43:01 +000097 std::vector<uint8_t> Filler;
Rui Ueyamaefc40662016-07-25 22:00:10 +000098 ConstraintKind Constraint = ConstraintKind::NoConstraint;
Eugene Leviantbbe38602016-07-19 09:25:43 +000099};
100
Rui Ueyama4dc07be2016-09-17 02:23:40 +0000101// This struct reprents one section match pattern in SECTIONS() command.
102// It can optionally have negative match pattern for EXCLUDED_FILE command.
103struct SectionPattern {
104 llvm::Regex ExcludedFileRe;
105 llvm::Regex SectionRe;
106};
107
George Rimareea31142016-07-21 14:26:59 +0000108struct InputSectionDescription : BaseCommand {
George Rimarc91930a2016-09-02 21:17:20 +0000109 InputSectionDescription(StringRef FilePattern)
110 : BaseCommand(InputSectionKind),
111 FileRe(compileGlobPatterns({FilePattern})) {}
George Rimareea31142016-07-21 14:26:59 +0000112 static bool classof(const BaseCommand *C);
George Rimarc91930a2016-09-02 21:17:20 +0000113 llvm::Regex FileRe;
Rui Ueyamab2a0abd2016-09-16 21:14:55 +0000114 SortSectionPolicy SortOuter = SortSectionPolicy::Default;
115 SortSectionPolicy SortInner = SortSectionPolicy::Default;
Rui Ueyama4dc07be2016-09-17 02:23:40 +0000116
Rui Ueyama70efa2f2016-09-17 02:34:50 +0000117 // Input sections that matches at lesat one of SectionPatterns
118 // will be associated with this InputSectionDescription.
119 // We use std::list instead of std::vector because SectionPattern
120 // do not support move assignment.
121 std::list<SectionPattern> SectionPatterns;
Rui Ueyama4dc07be2016-09-17 02:23:40 +0000122
Rafael Espindolad3190792016-09-16 15:10:23 +0000123 std::vector<InputSectionData *> Sections;
George Rimareea31142016-07-21 14:26:59 +0000124};
125
George Rimareefa7582016-08-04 09:29:31 +0000126struct AssertCommand : BaseCommand {
127 AssertCommand(Expr E) : BaseCommand(AssertKind), Expression(E) {}
128 static bool classof(const BaseCommand *C);
129 Expr Expression;
130};
131
Eugene Leviantbbe38602016-07-19 09:25:43 +0000132struct PhdrsCommand {
133 StringRef Name;
134 unsigned Type;
135 bool HasFilehdr;
136 bool HasPhdrs;
Eugene Leviant865bf862016-07-21 10:43:25 +0000137 unsigned Flags;
Eugene Leviant56b21c82016-09-09 09:46:16 +0000138 Expr LMAExpr;
George Rimar652852c2016-04-16 10:10:32 +0000139};
140
George Rimar884e7862016-09-08 08:19:13 +0000141class LinkerScriptBase {
Rafael Espindola4d1e4d72016-09-08 14:11:08 +0000142protected:
143 ~LinkerScriptBase() = default;
144
George Rimar884e7862016-09-08 08:19:13 +0000145public:
146 virtual uint64_t getOutputSectionAddress(StringRef Name) = 0;
147 virtual uint64_t getOutputSectionSize(StringRef Name) = 0;
Eugene Leviant36fac7f2016-09-08 09:08:30 +0000148 virtual uint64_t getOutputSectionAlign(StringRef Name) = 0;
George Rimar884e7862016-09-08 08:19:13 +0000149 virtual uint64_t getHeaderSize() = 0;
150 virtual uint64_t getSymbolValue(StringRef S) = 0;
151};
152
Rui Ueyama07320e42016-04-20 20:13:41 +0000153// ScriptConfiguration holds linker script parse results.
154struct ScriptConfiguration {
George Rimar652852c2016-04-16 10:10:32 +0000155 // Used to assign addresses to sections.
George Rimar076fe152016-07-21 06:43:01 +0000156 std::vector<std::unique_ptr<BaseCommand>> Commands;
George Rimar652852c2016-04-16 10:10:32 +0000157
Eugene Leviantbbe38602016-07-19 09:25:43 +0000158 // Used to assign sections to headers.
George Rimar70ce0a92016-07-20 15:09:10 +0000159 std::vector<PhdrsCommand> PhdrsCommands;
160
Eugene Leviante05336ff2016-09-14 08:32:36 +0000161 bool HasSections = false;
Rui Ueyama07320e42016-04-20 20:13:41 +0000162
Rui Ueyamaf9de0d62016-02-11 21:38:55 +0000163 llvm::BumpPtrAllocator Alloc;
Rui Ueyama8ec77e62016-04-21 22:00:51 +0000164
165 // List of section patterns specified with KEEP commands. They will
166 // be kept even if they are unused and --gc-sections is specified.
George Rimarc91930a2016-09-02 21:17:20 +0000167 std::vector<llvm::Regex *> KeptSections;
Rui Ueyama717677a2016-02-11 21:17:59 +0000168};
169
Rui Ueyama07320e42016-04-20 20:13:41 +0000170extern ScriptConfiguration *ScriptConfig;
171
172// This is a runner of the linker script.
George Rimar884e7862016-09-08 08:19:13 +0000173template <class ELFT> class LinkerScript final : public LinkerScriptBase {
Rui Ueyama0b3868e2016-04-22 20:41:07 +0000174 typedef typename ELFT::uint uintX_t;
175
Rui Ueyama07320e42016-04-20 20:13:41 +0000176public:
Rui Ueyamaf34d0e02016-08-12 01:24:53 +0000177 LinkerScript();
178 ~LinkerScript();
Eugene Leviant20d03192016-09-16 15:30:47 +0000179 void processCommands(OutputSectionFactory<ELFT> &Factory);
Rafael Espindolaa4b41dc2016-08-04 12:13:05 +0000180 void createSections(OutputSectionFactory<ELFT> &Factory);
Rui Ueyamaa7f78842016-07-20 17:19:03 +0000181
Rafael Espindolaa4b41dc2016-08-04 12:13:05 +0000182 std::vector<PhdrEntry<ELFT>> createPhdrs();
Eugene Leviantf9bc3bd2016-08-16 06:40:58 +0000183 bool ignoreInterpSection();
Rui Ueyamaadca2452016-07-23 14:18:48 +0000184
Rui Ueyama07320e42016-04-20 20:13:41 +0000185 ArrayRef<uint8_t> getFiller(StringRef Name);
George Rimar8ceadb32016-08-17 07:44:19 +0000186 Expr getLma(StringRef Name);
Rui Ueyama07320e42016-04-20 20:13:41 +0000187 bool shouldKeep(InputSectionBase<ELFT> *S);
Rafael Espindolad3190792016-09-16 15:10:23 +0000188 void assignOffsets(OutputSectionCommand *Cmd);
Rafael Espindolaa4b41dc2016-08-04 12:13:05 +0000189 void assignAddresses();
Rui Ueyama07320e42016-04-20 20:13:41 +0000190 int compareSections(StringRef A, StringRef B);
Eugene Leviantbbe38602016-07-19 09:25:43 +0000191 bool hasPhdrsCommands();
George Rimar884e7862016-09-08 08:19:13 +0000192 uint64_t getOutputSectionAddress(StringRef Name) override;
193 uint64_t getOutputSectionSize(StringRef Name) override;
Eugene Leviant36fac7f2016-09-08 09:08:30 +0000194 uint64_t getOutputSectionAlign(StringRef Name) override;
George Rimar884e7862016-09-08 08:19:13 +0000195 uint64_t getHeaderSize() override;
196 uint64_t getSymbolValue(StringRef S) override;
Rui Ueyama07320e42016-04-20 20:13:41 +0000197
Rafael Espindolaa4b41dc2016-08-04 12:13:05 +0000198 std::vector<OutputSectionBase<ELFT> *> *OutputSections;
199
Rui Ueyama07320e42016-04-20 20:13:41 +0000200private:
Rafael Espindolae71a3f8a2016-09-16 20:34:02 +0000201 void computeInputSections(InputSectionDescription *);
Rui Ueyama6b274812016-07-25 22:51:07 +0000202
Eugene Leviant20d03192016-09-16 15:30:47 +0000203 void addSection(OutputSectionFactory<ELFT> &Factory,
204 InputSectionBase<ELFT> *Sec, StringRef Name);
Rafael Espindola7bd37872016-09-12 16:05:16 +0000205 void discard(ArrayRef<InputSectionBase<ELFT> *> V);
Rui Ueyama48c3f1c2016-08-12 00:27:23 +0000206
Rui Ueyama0b9ce6a2016-08-12 03:16:56 +0000207 std::vector<InputSectionBase<ELFT> *>
208 createInputSectionList(OutputSectionCommand &Cmd);
209
Rui Ueyamac998a8c2016-04-22 00:03:13 +0000210 // "ScriptConfig" is a bit too long, so define a short name for it.
211 ScriptConfiguration &Opt = *ScriptConfig;
212
Rui Ueyamac3e2a4b2016-04-21 20:30:00 +0000213 int getSectionIndex(StringRef Name);
Rui Ueyamaedebbdf2016-07-24 23:47:31 +0000214 std::vector<size_t> getPhdrIndices(StringRef SectionName);
Rui Ueyama29c5a2a2016-07-26 00:27:36 +0000215 size_t getPhdrIndex(StringRef PhdrName);
Rui Ueyama07320e42016-04-20 20:13:41 +0000216
Rui Ueyama0b3868e2016-04-22 20:41:07 +0000217 uintX_t Dot;
Rafael Espindolad3190792016-09-16 15:10:23 +0000218 OutputSectionBase<ELFT> *CurOutSec = nullptr;
219 uintX_t ThreadBssOffset = 0;
220 void switchTo(OutputSectionBase<ELFT> *Sec);
221 void flush();
222 void output(InputSection<ELFT> *Sec);
223 void process(BaseCommand &Base);
224 llvm::DenseSet<OutputSectionBase<ELFT> *> AlreadyOutputOS;
225 llvm::DenseSet<InputSectionData *> AlreadyOutputIS;
Rui Ueyama07320e42016-04-20 20:13:41 +0000226};
227
228// Variable template is a C++14 feature, so we can't template
229// a global variable. Use a struct to workaround.
230template <class ELFT> struct Script { static LinkerScript<ELFT> *X; };
231template <class ELFT> LinkerScript<ELFT> *Script<ELFT>::X;
Rui Ueyama717677a2016-02-11 21:17:59 +0000232
George Rimar884e7862016-09-08 08:19:13 +0000233extern LinkerScriptBase *ScriptBase;
234
Rafael Espindolae0df00b2016-02-28 00:25:54 +0000235} // namespace elf
Rui Ueyama717677a2016-02-11 21:17:59 +0000236} // namespace lld
237
238#endif