Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 1 | //===- LinkerScript.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 | // |
| 10 | // This file contains the parser/evaluator of the linker script. |
Rui Ueyama | 629e0aa5 | 2016-07-21 19:45:22 +0000 | [diff] [blame] | 11 | // It parses a linker script and write the result to Config or ScriptConfig |
| 12 | // objects. |
| 13 | // |
| 14 | // If SECTIONS command is used, a ScriptConfig contains an AST |
| 15 | // of the command which will later be consumed by createSections() and |
| 16 | // assignAddresses(). |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 17 | // |
| 18 | //===----------------------------------------------------------------------===// |
| 19 | |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 20 | #include "LinkerScript.h" |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 21 | #include "Config.h" |
| 22 | #include "Driver.h" |
Rui Ueyama | 1ebc8ed | 2016-02-12 21:47:28 +0000 | [diff] [blame] | 23 | #include "InputSection.h" |
George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 24 | #include "OutputSections.h" |
Adhemerval Zanella | e77b5bf | 2016-04-06 20:59:11 +0000 | [diff] [blame] | 25 | #include "ScriptParser.h" |
Rui Ueyama | 93c9af4 | 2016-06-29 08:01:32 +0000 | [diff] [blame] | 26 | #include "Strings.h" |
Eugene Leviant | eda81a1 | 2016-07-12 06:39:48 +0000 | [diff] [blame] | 27 | #include "Symbols.h" |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 28 | #include "SymbolTable.h" |
Eugene Leviant | 467c4d5 | 2016-07-01 10:27:36 +0000 | [diff] [blame] | 29 | #include "Target.h" |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 30 | #include "Writer.h" |
Rui Ueyama | 960504b | 2016-04-19 18:58:11 +0000 | [diff] [blame] | 31 | #include "llvm/ADT/StringSwitch.h" |
George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 32 | #include "llvm/Support/ELF.h" |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 33 | #include "llvm/Support/FileSystem.h" |
| 34 | #include "llvm/Support/MemoryBuffer.h" |
Rui Ueyama | f03f3cc | 2015-10-13 00:09:21 +0000 | [diff] [blame] | 35 | #include "llvm/Support/Path.h" |
Rui Ueyama | a47ee68 | 2015-10-11 01:53:04 +0000 | [diff] [blame] | 36 | #include "llvm/Support/StringSaver.h" |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 37 | |
| 38 | using namespace llvm; |
George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 39 | using namespace llvm::ELF; |
Rui Ueyama | 1ebc8ed | 2016-02-12 21:47:28 +0000 | [diff] [blame] | 40 | using namespace llvm::object; |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 41 | using namespace lld; |
Rafael Espindola | e0df00b | 2016-02-28 00:25:54 +0000 | [diff] [blame] | 42 | using namespace lld::elf; |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 43 | |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 44 | ScriptConfiguration *elf::ScriptConfig; |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 45 | |
George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 46 | bool SymbolAssignment::classof(const BaseCommand *C) { |
| 47 | return C->Kind == AssignmentKind; |
| 48 | } |
| 49 | |
| 50 | bool OutputSectionCommand::classof(const BaseCommand *C) { |
| 51 | return C->Kind == OutputSectionKind; |
| 52 | } |
| 53 | |
George Rimar | eea3114 | 2016-07-21 14:26:59 +0000 | [diff] [blame] | 54 | bool InputSectionDescription::classof(const BaseCommand *C) { |
| 55 | return C->Kind == InputSectionKind; |
| 56 | } |
| 57 | |
Rui Ueyama | 36a153c | 2016-07-23 14:09:58 +0000 | [diff] [blame] | 58 | template <class ELFT> static bool isDiscarded(InputSectionBase<ELFT> *S) { |
George Rimar | eea3114 | 2016-07-21 14:26:59 +0000 | [diff] [blame] | 59 | return !S || !S->Live; |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 60 | } |
| 61 | |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 62 | template <class ELFT> |
| 63 | bool LinkerScript<ELFT>::shouldKeep(InputSectionBase<ELFT> *S) { |
Rui Ueyama | 8ec77e6 | 2016-04-21 22:00:51 +0000 | [diff] [blame] | 64 | for (StringRef Pat : Opt.KeptSections) |
Rui Ueyama | 722830a | 2016-06-29 05:32:09 +0000 | [diff] [blame] | 65 | if (globMatch(Pat, S->getSectionName())) |
Rui Ueyama | 8ec77e6 | 2016-04-21 22:00:51 +0000 | [diff] [blame] | 66 | return true; |
| 67 | return false; |
George Rimar | 481c2ce | 2016-02-23 07:47:54 +0000 | [diff] [blame] | 68 | } |
| 69 | |
Rui Ueyama | 63dc650 | 2016-07-25 22:41:42 +0000 | [diff] [blame] | 70 | static bool match(ArrayRef<StringRef> Patterns, StringRef S) { |
| 71 | for (StringRef Pat : Patterns) |
| 72 | if (globMatch(Pat, S)) |
George Rimar | eea3114 | 2016-07-21 14:26:59 +0000 | [diff] [blame] | 73 | return true; |
| 74 | return false; |
| 75 | } |
| 76 | |
George Rimar | eaee2af | 2016-07-29 15:07:11 +0000 | [diff] [blame] | 77 | // Create a vector of (<output section name>, <input section description>). |
Rui Ueyama | 6b27481 | 2016-07-25 22:51:07 +0000 | [diff] [blame] | 78 | template <class ELFT> |
Davide Italiano | e728279 | 2016-07-27 01:44:01 +0000 | [diff] [blame] | 79 | std::vector<std::pair<StringRef, const InputSectionDescription *>> |
Rui Ueyama | 6b27481 | 2016-07-25 22:51:07 +0000 | [diff] [blame] | 80 | LinkerScript<ELFT>::getSectionMap() { |
Davide Italiano | e728279 | 2016-07-27 01:44:01 +0000 | [diff] [blame] | 81 | std::vector<std::pair<StringRef, const InputSectionDescription *>> Ret; |
Rui Ueyama | 6b27481 | 2016-07-25 22:51:07 +0000 | [diff] [blame] | 82 | |
| 83 | for (const std::unique_ptr<BaseCommand> &Base1 : Opt.Commands) |
| 84 | if (auto *Cmd1 = dyn_cast<OutputSectionCommand>(Base1.get())) |
| 85 | for (const std::unique_ptr<BaseCommand> &Base2 : Cmd1->Commands) |
| 86 | if (auto *Cmd2 = dyn_cast<InputSectionDescription>(Base2.get())) |
Davide Italiano | e728279 | 2016-07-27 01:44:01 +0000 | [diff] [blame] | 87 | Ret.emplace_back(Cmd1->Name, Cmd2); |
Rui Ueyama | 6b27481 | 2016-07-25 22:51:07 +0000 | [diff] [blame] | 88 | |
| 89 | return Ret; |
| 90 | } |
| 91 | |
George Rimar | 0659800 | 2016-07-28 21:51:30 +0000 | [diff] [blame] | 92 | static bool fileMatches(const InputSectionDescription *Desc, |
| 93 | StringRef Filename) { |
| 94 | if (!globMatch(Desc->FilePattern, Filename)) |
| 95 | return false; |
| 96 | return Desc->ExcludedFiles.empty() || !match(Desc->ExcludedFiles, Filename); |
| 97 | } |
| 98 | |
Rui Ueyama | 6b27481 | 2016-07-25 22:51:07 +0000 | [diff] [blame] | 99 | // Returns input sections filtered by given glob patterns. |
| 100 | template <class ELFT> |
| 101 | std::vector<InputSectionBase<ELFT> *> |
Rui Ueyama | ad10c3d | 2016-07-28 21:05:04 +0000 | [diff] [blame] | 102 | LinkerScript<ELFT>::getInputSections(const InputSectionDescription *I) { |
George Rimar | 0659800 | 2016-07-28 21:51:30 +0000 | [diff] [blame] | 103 | ArrayRef<StringRef> Patterns = I->SectionPatterns; |
Rui Ueyama | 6b27481 | 2016-07-25 22:51:07 +0000 | [diff] [blame] | 104 | std::vector<InputSectionBase<ELFT> *> Ret; |
| 105 | for (const std::unique_ptr<ObjectFile<ELFT>> &F : |
George Rimar | 0659800 | 2016-07-28 21:51:30 +0000 | [diff] [blame] | 106 | Symtab<ELFT>::X->getObjectFiles()) { |
| 107 | if (fileMatches(I, sys::path::filename(F->getName()))) |
| 108 | for (InputSectionBase<ELFT> *S : F->getSections()) |
| 109 | if (!isDiscarded(S) && !S->OutSec && |
| 110 | match(Patterns, S->getSectionName())) |
Davide Italiano | e728279 | 2016-07-27 01:44:01 +0000 | [diff] [blame] | 111 | Ret.push_back(S); |
George Rimar | 0659800 | 2016-07-28 21:51:30 +0000 | [diff] [blame] | 112 | } |
Eugene Leviant | 3e6b027 | 2016-07-28 19:24:13 +0000 | [diff] [blame] | 113 | |
| 114 | if ((llvm::find(Patterns, "COMMON") != Patterns.end())) |
Rui Ueyama | ad10c3d | 2016-07-28 21:05:04 +0000 | [diff] [blame] | 115 | Ret.push_back(CommonInputSection<ELFT>::X); |
Eugene Leviant | 3e6b027 | 2016-07-28 19:24:13 +0000 | [diff] [blame] | 116 | |
Rui Ueyama | 6b27481 | 2016-07-25 22:51:07 +0000 | [diff] [blame] | 117 | return Ret; |
| 118 | } |
| 119 | |
George Rimar | c3cb884 | 2016-07-29 15:12:48 +0000 | [diff] [blame] | 120 | // Add input section to output section. If there is no output section yet, |
| 121 | // then create it and add to output section list. |
| 122 | template <class ELFT> |
| 123 | static void addSection(OutputSectionFactory<ELFT> &Factory, |
| 124 | std::vector<OutputSectionBase<ELFT> *> &Out, |
| 125 | InputSectionBase<ELFT> *C, StringRef Name) { |
| 126 | OutputSectionBase<ELFT> *Sec; |
| 127 | bool IsNew; |
| 128 | std::tie(Sec, IsNew) = Factory.create(C, Name); |
| 129 | if (IsNew) |
| 130 | Out.push_back(Sec); |
| 131 | Sec->addSection(C); |
| 132 | } |
| 133 | |
George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 134 | template <class ELFT> |
George Rimar | 0702c4e | 2016-07-29 15:32:46 +0000 | [diff] [blame] | 135 | static bool compareByName(InputSectionBase<ELFT> *A, |
| 136 | InputSectionBase<ELFT> *B) { |
| 137 | return A->getSectionName() < B->getSectionName(); |
| 138 | } |
| 139 | |
| 140 | template <class ELFT> |
George Rimar | 9e69450 | 2016-07-29 16:18:47 +0000 | [diff] [blame] | 141 | void LinkerScript<ELFT>::createSections( |
| 142 | std::vector<OutputSectionBase<ELFT> *> *Out, |
| 143 | OutputSectionFactory<ELFT> &Factory) { |
| 144 | OutputSections = Out; |
Rui Ueyama | a7f7884 | 2016-07-20 17:19:03 +0000 | [diff] [blame] | 145 | |
Rui Ueyama | 6b27481 | 2016-07-25 22:51:07 +0000 | [diff] [blame] | 146 | for (auto &P : getSectionMap()) { |
George Rimar | 0702c4e | 2016-07-29 15:32:46 +0000 | [diff] [blame] | 147 | std::vector<InputSectionBase<ELFT> *> Sections; |
Rui Ueyama | 6b27481 | 2016-07-25 22:51:07 +0000 | [diff] [blame] | 148 | StringRef OutputName = P.first; |
Davide Italiano | e728279 | 2016-07-27 01:44:01 +0000 | [diff] [blame] | 149 | const InputSectionDescription *I = P.second; |
Rui Ueyama | ad10c3d | 2016-07-28 21:05:04 +0000 | [diff] [blame] | 150 | for (InputSectionBase<ELFT> *S : getInputSections(I)) { |
Rui Ueyama | 6b27481 | 2016-07-25 22:51:07 +0000 | [diff] [blame] | 151 | if (OutputName == "/DISCARD/") { |
| 152 | S->Live = false; |
| 153 | reportDiscarded(S); |
George Rimar | eea3114 | 2016-07-21 14:26:59 +0000 | [diff] [blame] | 154 | continue; |
George Rimar | eea3114 | 2016-07-21 14:26:59 +0000 | [diff] [blame] | 155 | } |
George Rimar | 0702c4e | 2016-07-29 15:32:46 +0000 | [diff] [blame] | 156 | Sections.push_back(S); |
George Rimar | eea3114 | 2016-07-21 14:26:59 +0000 | [diff] [blame] | 157 | } |
George Rimar | 0702c4e | 2016-07-29 15:32:46 +0000 | [diff] [blame] | 158 | if (I->Sort) |
| 159 | std::stable_sort(Sections.begin(), Sections.end(), compareByName<ELFT>); |
| 160 | for (InputSectionBase<ELFT> *S : Sections) |
George Rimar | 9e69450 | 2016-07-29 16:18:47 +0000 | [diff] [blame] | 161 | addSection(Factory, *Out, S, OutputName); |
George Rimar | eea3114 | 2016-07-21 14:26:59 +0000 | [diff] [blame] | 162 | } |
Eugene Leviant | e63d81b | 2016-07-20 14:43:20 +0000 | [diff] [blame] | 163 | |
| 164 | // Add all other input sections, which are not listed in script. |
Rui Ueyama | 6b27481 | 2016-07-25 22:51:07 +0000 | [diff] [blame] | 165 | for (const std::unique_ptr<ObjectFile<ELFT>> &F : |
| 166 | Symtab<ELFT>::X->getObjectFiles()) |
| 167 | for (InputSectionBase<ELFT> *S : F->getSections()) |
| 168 | if (!isDiscarded(S) && !S->OutSec) |
George Rimar | 9e69450 | 2016-07-29 16:18:47 +0000 | [diff] [blame] | 169 | addSection(Factory, *Out, S, getOutputSectionName(S)); |
Eugene Leviant | e63d81b | 2016-07-20 14:43:20 +0000 | [diff] [blame] | 170 | |
Rui Ueyama | 3c291e1 | 2016-07-25 21:30:00 +0000 | [diff] [blame] | 171 | // Remove from the output all the sections which did not meet |
| 172 | // the optional constraints. |
George Rimar | 9e69450 | 2016-07-29 16:18:47 +0000 | [diff] [blame] | 173 | filter(); |
Rui Ueyama | 3c291e1 | 2016-07-25 21:30:00 +0000 | [diff] [blame] | 174 | } |
| 175 | |
| 176 | // Process ONLY_IF_RO and ONLY_IF_RW. |
George Rimar | 9e69450 | 2016-07-29 16:18:47 +0000 | [diff] [blame] | 177 | template <class ELFT> void LinkerScript<ELFT>::filter() { |
Rui Ueyama | 3c291e1 | 2016-07-25 21:30:00 +0000 | [diff] [blame] | 178 | // In this loop, we remove output sections if they don't satisfy |
| 179 | // requested properties. |
Rui Ueyama | 3c291e1 | 2016-07-25 21:30:00 +0000 | [diff] [blame] | 180 | for (const std::unique_ptr<BaseCommand> &Base : Opt.Commands) { |
| 181 | auto *Cmd = dyn_cast<OutputSectionCommand>(Base.get()); |
| 182 | if (!Cmd || Cmd->Name == "/DISCARD/") |
| 183 | continue; |
| 184 | |
George Rimar | bfc4a4b | 2016-07-26 10:47:09 +0000 | [diff] [blame] | 185 | if (Cmd->Constraint == ConstraintKind::NoConstraint) |
Rui Ueyama | 3c291e1 | 2016-07-25 21:30:00 +0000 | [diff] [blame] | 186 | continue; |
George Rimar | bfc4a4b | 2016-07-26 10:47:09 +0000 | [diff] [blame] | 187 | |
George Rimar | 9e69450 | 2016-07-29 16:18:47 +0000 | [diff] [blame] | 188 | auto It = llvm::find_if(*OutputSections, [&](OutputSectionBase<ELFT> *S) { |
George Rimar | bfc4a4b | 2016-07-26 10:47:09 +0000 | [diff] [blame] | 189 | return S->getName() == Cmd->Name; |
| 190 | }); |
George Rimar | 9e69450 | 2016-07-29 16:18:47 +0000 | [diff] [blame] | 191 | if (It == OutputSections->end()) |
George Rimar | bfc4a4b | 2016-07-26 10:47:09 +0000 | [diff] [blame] | 192 | continue; |
Rui Ueyama | 3c291e1 | 2016-07-25 21:30:00 +0000 | [diff] [blame] | 193 | |
| 194 | OutputSectionBase<ELFT> *Sec = *It; |
| 195 | bool Writable = (Sec->getFlags() & SHF_WRITE); |
| 196 | bool RO = (Cmd->Constraint == ConstraintKind::ReadOnly); |
| 197 | bool RW = (Cmd->Constraint == ConstraintKind::ReadWrite); |
| 198 | |
Rui Ueyama | ed94271 | 2016-07-29 06:21:06 +0000 | [diff] [blame] | 199 | if ((RO && Writable) || (RW && !Writable)) |
George Rimar | 9e69450 | 2016-07-29 16:18:47 +0000 | [diff] [blame] | 200 | OutputSections->erase(It); |
Rui Ueyama | 3c291e1 | 2016-07-25 21:30:00 +0000 | [diff] [blame] | 201 | } |
Eugene Leviant | e63d81b | 2016-07-20 14:43:20 +0000 | [diff] [blame] | 202 | } |
| 203 | |
| 204 | template <class ELFT> |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 205 | void LinkerScript<ELFT>::assignAddresses( |
George Rimar | dbbd8b1 | 2016-04-21 11:21:48 +0000 | [diff] [blame] | 206 | ArrayRef<OutputSectionBase<ELFT> *> Sections) { |
George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 207 | // Orphan sections are sections present in the input files which |
Rui Ueyama | 7c18c28 | 2016-04-18 21:00:40 +0000 | [diff] [blame] | 208 | // are not explicitly placed into the output file by the linker script. |
| 209 | // We place orphan sections at end of file. |
| 210 | // Other linkers places them using some heuristics as described in |
George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 211 | // https://sourceware.org/binutils/docs/ld/Orphan-Sections.html#Orphan-Sections. |
Rui Ueyama | 7c18c28 | 2016-04-18 21:00:40 +0000 | [diff] [blame] | 212 | for (OutputSectionBase<ELFT> *Sec : Sections) { |
George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 213 | StringRef Name = Sec->getName(); |
Rui Ueyama | c3e2a4b | 2016-04-21 20:30:00 +0000 | [diff] [blame] | 214 | if (getSectionIndex(Name) == INT_MAX) |
George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 215 | Opt.Commands.push_back(llvm::make_unique<OutputSectionCommand>(Name)); |
George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 216 | } |
George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 217 | |
Rui Ueyama | 7c18c28 | 2016-04-18 21:00:40 +0000 | [diff] [blame] | 218 | // Assign addresses as instructed by linker script SECTIONS sub-commands. |
Rui Ueyama | 52c4e17 | 2016-07-01 10:42:25 +0000 | [diff] [blame] | 219 | Dot = Out<ELFT>::ElfHeader->getSize() + Out<ELFT>::ProgramHeaders->getSize(); |
Eugene Leviant | 467c4d5 | 2016-07-01 10:27:36 +0000 | [diff] [blame] | 220 | uintX_t MinVA = std::numeric_limits<uintX_t>::max(); |
George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 221 | uintX_t ThreadBssOffset = 0; |
George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 222 | |
George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 223 | for (const std::unique_ptr<BaseCommand> &Base : Opt.Commands) { |
| 224 | if (auto *Cmd = dyn_cast<SymbolAssignment>(Base.get())) { |
Rui Ueyama | 8d083e6 | 2016-07-29 05:48:39 +0000 | [diff] [blame] | 225 | if (Cmd->Name == ".") { |
| 226 | Dot = Cmd->Expression(Dot); |
| 227 | } else if (Cmd->Sym) { |
| 228 | cast<DefinedRegular<ELFT>>(Cmd->Sym)->Value = Cmd->Expression(Dot); |
| 229 | } |
George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 230 | continue; |
| 231 | } |
| 232 | |
Dima Stepanov | fb8978f | 2016-05-19 18:15:54 +0000 | [diff] [blame] | 233 | // Find all the sections with required name. There can be more than |
George Rimar | 6ad330a | 2016-07-19 07:39:07 +0000 | [diff] [blame] | 234 | // one section with such name, if the alignment, flags or type |
Dima Stepanov | fb8978f | 2016-05-19 18:15:54 +0000 | [diff] [blame] | 235 | // attribute differs. |
George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 236 | auto *Cmd = cast<OutputSectionCommand>(Base.get()); |
Dima Stepanov | fb8978f | 2016-05-19 18:15:54 +0000 | [diff] [blame] | 237 | for (OutputSectionBase<ELFT> *Sec : Sections) { |
George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 238 | if (Sec->getName() != Cmd->Name) |
Dima Stepanov | fb8978f | 2016-05-19 18:15:54 +0000 | [diff] [blame] | 239 | continue; |
George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 240 | |
George Rimar | 58e5c4d | 2016-07-25 08:29:46 +0000 | [diff] [blame] | 241 | if (Cmd->AddrExpr) |
| 242 | Dot = Cmd->AddrExpr(Dot); |
| 243 | |
George Rimar | 630c617 | 2016-07-26 18:06:29 +0000 | [diff] [blame] | 244 | if (Cmd->AlignExpr) |
| 245 | Sec->updateAlignment(Cmd->AlignExpr(Dot)); |
| 246 | |
Dima Stepanov | fb8978f | 2016-05-19 18:15:54 +0000 | [diff] [blame] | 247 | if ((Sec->getFlags() & SHF_TLS) && Sec->getType() == SHT_NOBITS) { |
| 248 | uintX_t TVA = Dot + ThreadBssOffset; |
Rui Ueyama | 424b408 | 2016-06-17 01:18:46 +0000 | [diff] [blame] | 249 | TVA = alignTo(TVA, Sec->getAlignment()); |
Dima Stepanov | fb8978f | 2016-05-19 18:15:54 +0000 | [diff] [blame] | 250 | Sec->setVA(TVA); |
| 251 | ThreadBssOffset = TVA - Dot + Sec->getSize(); |
| 252 | continue; |
| 253 | } |
George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 254 | |
Dima Stepanov | fb8978f | 2016-05-19 18:15:54 +0000 | [diff] [blame] | 255 | if (Sec->getFlags() & SHF_ALLOC) { |
Rui Ueyama | 424b408 | 2016-06-17 01:18:46 +0000 | [diff] [blame] | 256 | Dot = alignTo(Dot, Sec->getAlignment()); |
Dima Stepanov | fb8978f | 2016-05-19 18:15:54 +0000 | [diff] [blame] | 257 | Sec->setVA(Dot); |
Rui Ueyama | 52c4e17 | 2016-07-01 10:42:25 +0000 | [diff] [blame] | 258 | MinVA = std::min(MinVA, Dot); |
Dima Stepanov | fb8978f | 2016-05-19 18:15:54 +0000 | [diff] [blame] | 259 | Dot += Sec->getSize(); |
| 260 | continue; |
| 261 | } |
George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 262 | } |
| 263 | } |
Rui Ueyama | 52c4e17 | 2016-07-01 10:42:25 +0000 | [diff] [blame] | 264 | |
Rafael Espindola | 64c32d6 | 2016-07-07 14:28:47 +0000 | [diff] [blame] | 265 | // ELF and Program headers need to be right before the first section in |
George Rimar | b91e711 | 2016-07-19 07:42:07 +0000 | [diff] [blame] | 266 | // memory. Set their addresses accordingly. |
Eugene Leviant | 467c4d5 | 2016-07-01 10:27:36 +0000 | [diff] [blame] | 267 | MinVA = alignDown(MinVA - Out<ELFT>::ElfHeader->getSize() - |
| 268 | Out<ELFT>::ProgramHeaders->getSize(), |
| 269 | Target->PageSize); |
| 270 | Out<ELFT>::ElfHeader->setVA(MinVA); |
| 271 | Out<ELFT>::ProgramHeaders->setVA(Out<ELFT>::ElfHeader->getSize() + MinVA); |
George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 272 | } |
| 273 | |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 274 | template <class ELFT> |
Rafael Espindola | 74df5c7 | 2016-07-19 12:33:46 +0000 | [diff] [blame] | 275 | std::vector<PhdrEntry<ELFT>> |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 276 | LinkerScript<ELFT>::createPhdrs(ArrayRef<OutputSectionBase<ELFT> *> Sections) { |
Rui Ueyama | edebbdf | 2016-07-24 23:47:31 +0000 | [diff] [blame] | 277 | std::vector<PhdrEntry<ELFT>> Ret; |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 278 | |
| 279 | for (const PhdrsCommand &Cmd : Opt.PhdrsCommands) { |
Rui Ueyama | edebbdf | 2016-07-24 23:47:31 +0000 | [diff] [blame] | 280 | Ret.emplace_back(Cmd.Type, Cmd.Flags == UINT_MAX ? PF_R : Cmd.Flags); |
| 281 | PhdrEntry<ELFT> &Phdr = Ret.back(); |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 282 | |
| 283 | if (Cmd.HasFilehdr) |
Rui Ueyama | adca245 | 2016-07-23 14:18:48 +0000 | [diff] [blame] | 284 | Phdr.add(Out<ELFT>::ElfHeader); |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 285 | if (Cmd.HasPhdrs) |
Rui Ueyama | adca245 | 2016-07-23 14:18:48 +0000 | [diff] [blame] | 286 | Phdr.add(Out<ELFT>::ProgramHeaders); |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 287 | |
| 288 | switch (Cmd.Type) { |
| 289 | case PT_INTERP: |
Rui Ueyama | fd03cfd | 2016-07-21 11:01:23 +0000 | [diff] [blame] | 290 | if (Out<ELFT>::Interp) |
Rui Ueyama | adca245 | 2016-07-23 14:18:48 +0000 | [diff] [blame] | 291 | Phdr.add(Out<ELFT>::Interp); |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 292 | break; |
| 293 | case PT_DYNAMIC: |
| 294 | if (isOutputDynamic<ELFT>()) { |
Rafael Espindola | 0b11367 | 2016-07-27 14:10:56 +0000 | [diff] [blame] | 295 | Phdr.H.p_flags = Out<ELFT>::Dynamic->getPhdrFlags(); |
Rui Ueyama | adca245 | 2016-07-23 14:18:48 +0000 | [diff] [blame] | 296 | Phdr.add(Out<ELFT>::Dynamic); |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 297 | } |
| 298 | break; |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 299 | case PT_GNU_EH_FRAME: |
| 300 | if (!Out<ELFT>::EhFrame->empty() && Out<ELFT>::EhFrameHdr) { |
Rafael Espindola | 0b11367 | 2016-07-27 14:10:56 +0000 | [diff] [blame] | 301 | Phdr.H.p_flags = Out<ELFT>::EhFrameHdr->getPhdrFlags(); |
Rui Ueyama | adca245 | 2016-07-23 14:18:48 +0000 | [diff] [blame] | 302 | Phdr.add(Out<ELFT>::EhFrameHdr); |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 303 | } |
| 304 | break; |
| 305 | } |
| 306 | } |
| 307 | |
Rui Ueyama | edebbdf | 2016-07-24 23:47:31 +0000 | [diff] [blame] | 308 | PhdrEntry<ELFT> *Load = nullptr; |
| 309 | uintX_t Flags = PF_R; |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 310 | for (OutputSectionBase<ELFT> *Sec : Sections) { |
| 311 | if (!(Sec->getFlags() & SHF_ALLOC)) |
| 312 | break; |
| 313 | |
Rui Ueyama | edebbdf | 2016-07-24 23:47:31 +0000 | [diff] [blame] | 314 | std::vector<size_t> PhdrIds = getPhdrIndices(Sec->getName()); |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 315 | if (!PhdrIds.empty()) { |
| 316 | // Assign headers specified by linker script |
| 317 | for (size_t Id : PhdrIds) { |
Rui Ueyama | edebbdf | 2016-07-24 23:47:31 +0000 | [diff] [blame] | 318 | Ret[Id].add(Sec); |
Eugene Leviant | 865bf86 | 2016-07-21 10:43:25 +0000 | [diff] [blame] | 319 | if (Opt.PhdrsCommands[Id].Flags == UINT_MAX) |
Rafael Espindola | 0b11367 | 2016-07-27 14:10:56 +0000 | [diff] [blame] | 320 | Ret[Id].H.p_flags |= Sec->getPhdrFlags(); |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 321 | } |
| 322 | } else { |
| 323 | // If we have no load segment or flags've changed then we want new load |
| 324 | // segment. |
Rafael Espindola | 0b11367 | 2016-07-27 14:10:56 +0000 | [diff] [blame] | 325 | uintX_t NewFlags = Sec->getPhdrFlags(); |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 326 | if (Load == nullptr || Flags != NewFlags) { |
Rui Ueyama | edebbdf | 2016-07-24 23:47:31 +0000 | [diff] [blame] | 327 | Load = &*Ret.emplace(Ret.end(), PT_LOAD, NewFlags); |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 328 | Flags = NewFlags; |
| 329 | } |
Rui Ueyama | 18f084f | 2016-07-20 19:36:41 +0000 | [diff] [blame] | 330 | Load->add(Sec); |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 331 | } |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 332 | } |
Rui Ueyama | edebbdf | 2016-07-24 23:47:31 +0000 | [diff] [blame] | 333 | return Ret; |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 334 | } |
| 335 | |
| 336 | template <class ELFT> |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 337 | ArrayRef<uint8_t> LinkerScript<ELFT>::getFiller(StringRef Name) { |
George Rimar | f6c3cce | 2016-07-21 07:48:54 +0000 | [diff] [blame] | 338 | for (const std::unique_ptr<BaseCommand> &Base : Opt.Commands) |
| 339 | if (auto *Cmd = dyn_cast<OutputSectionCommand>(Base.get())) |
| 340 | if (Cmd->Name == Name) |
| 341 | return Cmd->Filler; |
| 342 | return {}; |
George Rimar | e2ee72b | 2016-02-26 14:48:31 +0000 | [diff] [blame] | 343 | } |
| 344 | |
Rui Ueyama | c3e2a4b | 2016-04-21 20:30:00 +0000 | [diff] [blame] | 345 | // Returns the index of the given section name in linker script |
| 346 | // SECTIONS commands. Sections are laid out as the same order as they |
| 347 | // were in the script. If a given name did not appear in the script, |
| 348 | // it returns INT_MAX, so that it will be laid out at end of file. |
George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 349 | template <class ELFT> int LinkerScript<ELFT>::getSectionIndex(StringRef Name) { |
Rui Ueyama | f510fa6 | 2016-07-26 00:21:15 +0000 | [diff] [blame] | 350 | int I = 0; |
| 351 | for (std::unique_ptr<BaseCommand> &Base : Opt.Commands) { |
| 352 | if (auto *Cmd = dyn_cast<OutputSectionCommand>(Base.get())) |
| 353 | if (Cmd->Name == Name) |
| 354 | return I; |
| 355 | ++I; |
| 356 | } |
| 357 | return INT_MAX; |
George Rimar | 71b26e9 | 2016-04-21 10:22:02 +0000 | [diff] [blame] | 358 | } |
| 359 | |
| 360 | // A compartor to sort output sections. Returns -1 or 1 if |
| 361 | // A or B are mentioned in linker script. Otherwise, returns 0. |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 362 | template <class ELFT> |
| 363 | int LinkerScript<ELFT>::compareSections(StringRef A, StringRef B) { |
Rui Ueyama | c3e2a4b | 2016-04-21 20:30:00 +0000 | [diff] [blame] | 364 | int I = getSectionIndex(A); |
| 365 | int J = getSectionIndex(B); |
| 366 | if (I == INT_MAX && J == INT_MAX) |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 367 | return 0; |
| 368 | return I < J ? -1 : 1; |
| 369 | } |
| 370 | |
Rui Ueyama | 8d083e6 | 2016-07-29 05:48:39 +0000 | [diff] [blame] | 371 | // Add symbols defined by linker scripts. |
George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 372 | template <class ELFT> void LinkerScript<ELFT>::addScriptedSymbols() { |
Eugene Leviant | a31c91b | 2016-07-22 07:38:40 +0000 | [diff] [blame] | 373 | for (const std::unique_ptr<BaseCommand> &Base : Opt.Commands) { |
| 374 | auto *Cmd = dyn_cast<SymbolAssignment>(Base.get()); |
| 375 | if (!Cmd || Cmd->Name == ".") |
| 376 | continue; |
| 377 | |
Rui Ueyama | 8d083e6 | 2016-07-29 05:48:39 +0000 | [diff] [blame] | 378 | // If a symbol was in PROVIDE(), define it only when it is an |
| 379 | // undefined symbol. |
Davide Italiano | 8ab4108 | 2016-07-23 22:09:04 +0000 | [diff] [blame] | 380 | SymbolBody *B = Symtab<ELFT>::X->find(Cmd->Name); |
Rui Ueyama | 8d083e6 | 2016-07-29 05:48:39 +0000 | [diff] [blame] | 381 | if (Cmd->Provide && !(B && B->isUndefined())) |
| 382 | continue; |
| 383 | |
| 384 | // Define an absolute symbol. The symbol value will be assigned later. |
| 385 | // (At this point, we don't know the final address yet.) |
| 386 | Symbol *Sym = Symtab<ELFT>::X->addUndefined(Cmd->Name); |
| 387 | replaceBody<DefinedRegular<ELFT>>(Sym, Cmd->Name, STV_DEFAULT); |
| 388 | Sym->Visibility = Cmd->Hidden ? STV_HIDDEN : STV_DEFAULT; |
| 389 | Cmd->Sym = Sym->body(); |
Eugene Leviant | a31c91b | 2016-07-22 07:38:40 +0000 | [diff] [blame] | 390 | } |
Eugene Leviant | eda81a1 | 2016-07-12 06:39:48 +0000 | [diff] [blame] | 391 | } |
| 392 | |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 393 | template <class ELFT> bool LinkerScript<ELFT>::hasPhdrsCommands() { |
| 394 | return !Opt.PhdrsCommands.empty(); |
| 395 | } |
| 396 | |
George Rimar | 9e69450 | 2016-07-29 16:18:47 +0000 | [diff] [blame] | 397 | template <class ELFT> |
| 398 | typename ELFT::uint LinkerScript<ELFT>::getOutputSectionSize(StringRef Name) { |
| 399 | for (OutputSectionBase<ELFT> *Sec : *OutputSections) |
| 400 | if (Sec->getName() == Name) |
| 401 | return Sec->getSize(); |
| 402 | error("undefined section " + Name); |
| 403 | return 0; |
| 404 | } |
| 405 | |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 406 | // Returns indices of ELF headers containing specific section, identified |
| 407 | // by Name. Each index is a zero based number of ELF header listed within |
| 408 | // PHDRS {} script block. |
| 409 | template <class ELFT> |
Rui Ueyama | edebbdf | 2016-07-24 23:47:31 +0000 | [diff] [blame] | 410 | std::vector<size_t> LinkerScript<ELFT>::getPhdrIndices(StringRef SectionName) { |
George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 411 | for (const std::unique_ptr<BaseCommand> &Base : Opt.Commands) { |
| 412 | auto *Cmd = dyn_cast<OutputSectionCommand>(Base.get()); |
Rui Ueyama | edebbdf | 2016-07-24 23:47:31 +0000 | [diff] [blame] | 413 | if (!Cmd || Cmd->Name != SectionName) |
George Rimar | 31d842f | 2016-07-20 16:43:03 +0000 | [diff] [blame] | 414 | continue; |
| 415 | |
Rui Ueyama | 29c5a2a | 2016-07-26 00:27:36 +0000 | [diff] [blame] | 416 | std::vector<size_t> Ret; |
| 417 | for (StringRef PhdrName : Cmd->Phdrs) |
| 418 | Ret.push_back(getPhdrIndex(PhdrName)); |
| 419 | return Ret; |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 420 | } |
George Rimar | 31d842f | 2016-07-20 16:43:03 +0000 | [diff] [blame] | 421 | return {}; |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 422 | } |
| 423 | |
Rui Ueyama | 29c5a2a | 2016-07-26 00:27:36 +0000 | [diff] [blame] | 424 | template <class ELFT> |
| 425 | size_t LinkerScript<ELFT>::getPhdrIndex(StringRef PhdrName) { |
| 426 | size_t I = 0; |
| 427 | for (PhdrsCommand &Cmd : Opt.PhdrsCommands) { |
| 428 | if (Cmd.Name == PhdrName) |
| 429 | return I; |
| 430 | ++I; |
| 431 | } |
| 432 | error("section header '" + PhdrName + "' is not listed in PHDRS"); |
| 433 | return 0; |
| 434 | } |
| 435 | |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 436 | class elf::ScriptParser : public ScriptParserBase { |
George Rimar | c3794e5 | 2016-02-24 09:21:47 +0000 | [diff] [blame] | 437 | typedef void (ScriptParser::*Handler)(); |
| 438 | |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 439 | public: |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 440 | ScriptParser(StringRef S, bool B) : ScriptParserBase(S), IsUnderSysroot(B) {} |
George Rimar | f23b232 | 2016-02-19 10:45:45 +0000 | [diff] [blame] | 441 | |
Rui Ueyama | 4a46539 | 2016-04-22 22:59:24 +0000 | [diff] [blame] | 442 | void run(); |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 443 | |
| 444 | private: |
Rui Ueyama | 52a1509 | 2015-10-11 03:28:42 +0000 | [diff] [blame] | 445 | void addFile(StringRef Path); |
| 446 | |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 447 | void readAsNeeded(); |
Denis Protivensky | 90c5099 | 2015-10-08 06:48:38 +0000 | [diff] [blame] | 448 | void readEntry(); |
George Rimar | 83f406c | 2015-10-19 17:35:12 +0000 | [diff] [blame] | 449 | void readExtern(); |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 450 | void readGroup(); |
Rui Ueyama | 31aa1f8 | 2015-10-11 01:31:55 +0000 | [diff] [blame] | 451 | void readInclude(); |
George Rimar | c3794e5 | 2016-02-24 09:21:47 +0000 | [diff] [blame] | 452 | void readNothing() {} |
Rui Ueyama | ee59282 | 2015-10-07 00:25:09 +0000 | [diff] [blame] | 453 | void readOutput(); |
Davide Italiano | 9159ce9 | 2015-10-12 21:50:08 +0000 | [diff] [blame] | 454 | void readOutputArch(); |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 455 | void readOutputFormat(); |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 456 | void readPhdrs(); |
Davide Italiano | 68a39a6 | 2015-10-08 17:51:41 +0000 | [diff] [blame] | 457 | void readSearchDir(); |
Denis Protivensky | 8e3b38a | 2015-11-12 09:52:08 +0000 | [diff] [blame] | 458 | void readSections(); |
| 459 | |
Rui Ueyama | 113cdec | 2016-07-24 23:05:57 +0000 | [diff] [blame] | 460 | SymbolAssignment *readAssignment(StringRef Name); |
Eugene Leviant | eda81a1 | 2016-07-12 06:39:48 +0000 | [diff] [blame] | 461 | void readOutputSectionDescription(StringRef OutSec); |
Rui Ueyama | f71caa2 | 2016-07-29 06:14:07 +0000 | [diff] [blame] | 462 | std::vector<uint8_t> readOutputSectionFiller(); |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 463 | std::vector<StringRef> readOutputSectionPhdrs(); |
George Rimar | 0659800 | 2016-07-28 21:51:30 +0000 | [diff] [blame] | 464 | std::unique_ptr<InputSectionDescription> readInputSectionDescription(); |
George Rimar | 0702c4e | 2016-07-29 15:32:46 +0000 | [diff] [blame] | 465 | void readInputFilePattern(InputSectionDescription *InCmd, bool Keep); |
George Rimar | 0659800 | 2016-07-28 21:51:30 +0000 | [diff] [blame] | 466 | void readInputSectionRules(InputSectionDescription *InCmd, bool Keep); |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 467 | unsigned readPhdrType(); |
Eugene Leviant | a31c91b | 2016-07-22 07:38:40 +0000 | [diff] [blame] | 468 | void readProvide(bool Hidden); |
George Rimar | 630c617 | 2016-07-26 18:06:29 +0000 | [diff] [blame] | 469 | void readAlign(OutputSectionCommand *Cmd); |
George Rimar | 03fc010 | 2016-07-28 07:18:23 +0000 | [diff] [blame] | 470 | void readSort(); |
Rui Ueyama | 708019c | 2016-07-24 18:19:40 +0000 | [diff] [blame] | 471 | |
| 472 | Expr readExpr(); |
| 473 | Expr readExpr1(Expr Lhs, int MinPrec); |
| 474 | Expr readPrimary(); |
| 475 | Expr readTernary(Expr Cond); |
| 476 | Expr combine(StringRef Op, Expr Lhs, Expr Rhs); |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 477 | |
George Rimar | c3794e5 | 2016-02-24 09:21:47 +0000 | [diff] [blame] | 478 | const static StringMap<Handler> Cmd; |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 479 | ScriptConfiguration &Opt = *ScriptConfig; |
| 480 | StringSaver Saver = {ScriptConfig->Alloc}; |
Simon Atanasyan | 16b0cc9 | 2015-11-26 05:53:00 +0000 | [diff] [blame] | 481 | bool IsUnderSysroot; |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 482 | }; |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 483 | |
Rafael Espindola | e0df00b | 2016-02-28 00:25:54 +0000 | [diff] [blame] | 484 | const StringMap<elf::ScriptParser::Handler> elf::ScriptParser::Cmd = { |
George Rimar | c3794e5 | 2016-02-24 09:21:47 +0000 | [diff] [blame] | 485 | {"ENTRY", &ScriptParser::readEntry}, |
| 486 | {"EXTERN", &ScriptParser::readExtern}, |
| 487 | {"GROUP", &ScriptParser::readGroup}, |
| 488 | {"INCLUDE", &ScriptParser::readInclude}, |
| 489 | {"INPUT", &ScriptParser::readGroup}, |
| 490 | {"OUTPUT", &ScriptParser::readOutput}, |
| 491 | {"OUTPUT_ARCH", &ScriptParser::readOutputArch}, |
| 492 | {"OUTPUT_FORMAT", &ScriptParser::readOutputFormat}, |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 493 | {"PHDRS", &ScriptParser::readPhdrs}, |
George Rimar | c3794e5 | 2016-02-24 09:21:47 +0000 | [diff] [blame] | 494 | {"SEARCH_DIR", &ScriptParser::readSearchDir}, |
| 495 | {"SECTIONS", &ScriptParser::readSections}, |
| 496 | {";", &ScriptParser::readNothing}}; |
| 497 | |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 498 | void ScriptParser::run() { |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 499 | while (!atEOF()) { |
| 500 | StringRef Tok = next(); |
George Rimar | c3794e5 | 2016-02-24 09:21:47 +0000 | [diff] [blame] | 501 | if (Handler Fn = Cmd.lookup(Tok)) |
| 502 | (this->*Fn)(); |
| 503 | else |
George Rimar | 5761042 | 2016-03-11 14:43:02 +0000 | [diff] [blame] | 504 | setError("unknown directive: " + Tok); |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 505 | } |
| 506 | } |
| 507 | |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 508 | void ScriptParser::addFile(StringRef S) { |
Simon Atanasyan | 16b0cc9 | 2015-11-26 05:53:00 +0000 | [diff] [blame] | 509 | if (IsUnderSysroot && S.startswith("/")) { |
| 510 | SmallString<128> Path; |
| 511 | (Config->Sysroot + S).toStringRef(Path); |
| 512 | if (sys::fs::exists(Path)) { |
| 513 | Driver->addFile(Saver.save(Path.str())); |
| 514 | return; |
| 515 | } |
| 516 | } |
| 517 | |
Rui Ueyama | f03f3cc | 2015-10-13 00:09:21 +0000 | [diff] [blame] | 518 | if (sys::path::is_absolute(S)) { |
Rui Ueyama | 52a1509 | 2015-10-11 03:28:42 +0000 | [diff] [blame] | 519 | Driver->addFile(S); |
| 520 | } else if (S.startswith("=")) { |
| 521 | if (Config->Sysroot.empty()) |
| 522 | Driver->addFile(S.substr(1)); |
| 523 | else |
| 524 | Driver->addFile(Saver.save(Config->Sysroot + "/" + S.substr(1))); |
| 525 | } else if (S.startswith("-l")) { |
Rui Ueyama | 21eecb4 | 2016-02-02 21:13:09 +0000 | [diff] [blame] | 526 | Driver->addLibrary(S.substr(2)); |
Simon Atanasyan | a1b8fc3 | 2015-11-26 20:23:46 +0000 | [diff] [blame] | 527 | } else if (sys::fs::exists(S)) { |
| 528 | Driver->addFile(S); |
Rui Ueyama | 52a1509 | 2015-10-11 03:28:42 +0000 | [diff] [blame] | 529 | } else { |
| 530 | std::string Path = findFromSearchPaths(S); |
| 531 | if (Path.empty()) |
George Rimar | 777f963 | 2016-03-12 08:31:34 +0000 | [diff] [blame] | 532 | setError("unable to find " + S); |
Rui Ueyama | 025d59b | 2016-02-02 20:27:59 +0000 | [diff] [blame] | 533 | else |
| 534 | Driver->addFile(Saver.save(Path)); |
Rui Ueyama | 52a1509 | 2015-10-11 03:28:42 +0000 | [diff] [blame] | 535 | } |
| 536 | } |
| 537 | |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 538 | void ScriptParser::readAsNeeded() { |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 539 | expect("("); |
Rui Ueyama | 35da9b6 | 2015-10-11 20:59:12 +0000 | [diff] [blame] | 540 | bool Orig = Config->AsNeeded; |
| 541 | Config->AsNeeded = true; |
Rui Ueyama | 025d59b | 2016-02-02 20:27:59 +0000 | [diff] [blame] | 542 | while (!Error) { |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 543 | StringRef Tok = next(); |
| 544 | if (Tok == ")") |
Rui Ueyama | 35da9b6 | 2015-10-11 20:59:12 +0000 | [diff] [blame] | 545 | break; |
Rui Ueyama | 52a1509 | 2015-10-11 03:28:42 +0000 | [diff] [blame] | 546 | addFile(Tok); |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 547 | } |
Rui Ueyama | 35da9b6 | 2015-10-11 20:59:12 +0000 | [diff] [blame] | 548 | Config->AsNeeded = Orig; |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 549 | } |
| 550 | |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 551 | void ScriptParser::readEntry() { |
Denis Protivensky | 90c5099 | 2015-10-08 06:48:38 +0000 | [diff] [blame] | 552 | // -e <symbol> takes predecence over ENTRY(<symbol>). |
| 553 | expect("("); |
| 554 | StringRef Tok = next(); |
| 555 | if (Config->Entry.empty()) |
| 556 | Config->Entry = Tok; |
| 557 | expect(")"); |
| 558 | } |
| 559 | |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 560 | void ScriptParser::readExtern() { |
George Rimar | 83f406c | 2015-10-19 17:35:12 +0000 | [diff] [blame] | 561 | expect("("); |
Rui Ueyama | 025d59b | 2016-02-02 20:27:59 +0000 | [diff] [blame] | 562 | while (!Error) { |
George Rimar | 83f406c | 2015-10-19 17:35:12 +0000 | [diff] [blame] | 563 | StringRef Tok = next(); |
| 564 | if (Tok == ")") |
| 565 | return; |
| 566 | Config->Undefined.push_back(Tok); |
| 567 | } |
| 568 | } |
| 569 | |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 570 | void ScriptParser::readGroup() { |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 571 | expect("("); |
Rui Ueyama | 025d59b | 2016-02-02 20:27:59 +0000 | [diff] [blame] | 572 | while (!Error) { |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 573 | StringRef Tok = next(); |
| 574 | if (Tok == ")") |
| 575 | return; |
| 576 | if (Tok == "AS_NEEDED") { |
| 577 | readAsNeeded(); |
| 578 | continue; |
| 579 | } |
Rui Ueyama | 52a1509 | 2015-10-11 03:28:42 +0000 | [diff] [blame] | 580 | addFile(Tok); |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 581 | } |
| 582 | } |
| 583 | |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 584 | void ScriptParser::readInclude() { |
Rui Ueyama | 31aa1f8 | 2015-10-11 01:31:55 +0000 | [diff] [blame] | 585 | StringRef Tok = next(); |
| 586 | auto MBOrErr = MemoryBuffer::getFile(Tok); |
Rui Ueyama | 025d59b | 2016-02-02 20:27:59 +0000 | [diff] [blame] | 587 | if (!MBOrErr) { |
George Rimar | 5761042 | 2016-03-11 14:43:02 +0000 | [diff] [blame] | 588 | setError("cannot open " + Tok); |
Rui Ueyama | 025d59b | 2016-02-02 20:27:59 +0000 | [diff] [blame] | 589 | return; |
| 590 | } |
Rui Ueyama | 31aa1f8 | 2015-10-11 01:31:55 +0000 | [diff] [blame] | 591 | std::unique_ptr<MemoryBuffer> &MB = *MBOrErr; |
Rui Ueyama | a47ee68 | 2015-10-11 01:53:04 +0000 | [diff] [blame] | 592 | StringRef S = Saver.save(MB->getMemBufferRef().getBuffer()); |
| 593 | std::vector<StringRef> V = tokenize(S); |
Rui Ueyama | 31aa1f8 | 2015-10-11 01:31:55 +0000 | [diff] [blame] | 594 | Tokens.insert(Tokens.begin() + Pos, V.begin(), V.end()); |
Rui Ueyama | 31aa1f8 | 2015-10-11 01:31:55 +0000 | [diff] [blame] | 595 | } |
| 596 | |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 597 | void ScriptParser::readOutput() { |
Rui Ueyama | ee59282 | 2015-10-07 00:25:09 +0000 | [diff] [blame] | 598 | // -o <file> takes predecence over OUTPUT(<file>). |
| 599 | expect("("); |
| 600 | StringRef Tok = next(); |
| 601 | if (Config->OutputFile.empty()) |
| 602 | Config->OutputFile = Tok; |
| 603 | expect(")"); |
| 604 | } |
| 605 | |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 606 | void ScriptParser::readOutputArch() { |
Davide Italiano | 9159ce9 | 2015-10-12 21:50:08 +0000 | [diff] [blame] | 607 | // Error checking only for now. |
| 608 | expect("("); |
| 609 | next(); |
| 610 | expect(")"); |
| 611 | } |
| 612 | |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 613 | void ScriptParser::readOutputFormat() { |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 614 | // Error checking only for now. |
| 615 | expect("("); |
| 616 | next(); |
Davide Italiano | 6836c61 | 2015-10-12 21:08:41 +0000 | [diff] [blame] | 617 | StringRef Tok = next(); |
| 618 | if (Tok == ")") |
| 619 | return; |
Rui Ueyama | 025d59b | 2016-02-02 20:27:59 +0000 | [diff] [blame] | 620 | if (Tok != ",") { |
George Rimar | 5761042 | 2016-03-11 14:43:02 +0000 | [diff] [blame] | 621 | setError("unexpected token: " + Tok); |
Rui Ueyama | 025d59b | 2016-02-02 20:27:59 +0000 | [diff] [blame] | 622 | return; |
| 623 | } |
Davide Italiano | 6836c61 | 2015-10-12 21:08:41 +0000 | [diff] [blame] | 624 | next(); |
| 625 | expect(","); |
| 626 | next(); |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 627 | expect(")"); |
| 628 | } |
| 629 | |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 630 | void ScriptParser::readPhdrs() { |
| 631 | expect("{"); |
| 632 | while (!Error && !skip("}")) { |
| 633 | StringRef Tok = next(); |
Eugene Leviant | 865bf86 | 2016-07-21 10:43:25 +0000 | [diff] [blame] | 634 | Opt.PhdrsCommands.push_back({Tok, PT_NULL, false, false, UINT_MAX}); |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 635 | PhdrsCommand &PhdrCmd = Opt.PhdrsCommands.back(); |
| 636 | |
| 637 | PhdrCmd.Type = readPhdrType(); |
| 638 | do { |
| 639 | Tok = next(); |
| 640 | if (Tok == ";") |
| 641 | break; |
| 642 | if (Tok == "FILEHDR") |
| 643 | PhdrCmd.HasFilehdr = true; |
| 644 | else if (Tok == "PHDRS") |
| 645 | PhdrCmd.HasPhdrs = true; |
Eugene Leviant | 865bf86 | 2016-07-21 10:43:25 +0000 | [diff] [blame] | 646 | else if (Tok == "FLAGS") { |
| 647 | expect("("); |
| 648 | next().getAsInteger(0, PhdrCmd.Flags); |
| 649 | expect(")"); |
| 650 | } else |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 651 | setError("unexpected header attribute: " + Tok); |
| 652 | } while (!Error); |
| 653 | } |
| 654 | } |
| 655 | |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 656 | void ScriptParser::readSearchDir() { |
Davide Italiano | 68a39a6 | 2015-10-08 17:51:41 +0000 | [diff] [blame] | 657 | expect("("); |
Rafael Espindola | 0650192 | 2016-03-08 17:13:12 +0000 | [diff] [blame] | 658 | Config->SearchPaths.push_back(next()); |
Davide Italiano | 68a39a6 | 2015-10-08 17:51:41 +0000 | [diff] [blame] | 659 | expect(")"); |
| 660 | } |
| 661 | |
Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 662 | void ScriptParser::readSections() { |
Rui Ueyama | 3de0a33 | 2016-07-29 03:31:09 +0000 | [diff] [blame] | 663 | Opt.HasContents = true; |
Denis Protivensky | 8e3b38a | 2015-11-12 09:52:08 +0000 | [diff] [blame] | 664 | expect("{"); |
George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 665 | while (!Error && !skip("}")) { |
Rui Ueyama | 113cdec | 2016-07-24 23:05:57 +0000 | [diff] [blame] | 666 | StringRef Tok = next(); |
George Rimar | 30835ea | 2016-07-28 21:08:56 +0000 | [diff] [blame] | 667 | if (peek() == "=" || peek() == "+=") { |
Rui Ueyama | 113cdec | 2016-07-24 23:05:57 +0000 | [diff] [blame] | 668 | readAssignment(Tok); |
| 669 | expect(";"); |
| 670 | } else if (Tok == "PROVIDE") { |
Eugene Leviant | a31c91b | 2016-07-22 07:38:40 +0000 | [diff] [blame] | 671 | readProvide(false); |
Rui Ueyama | 708019c | 2016-07-24 18:19:40 +0000 | [diff] [blame] | 672 | } else if (Tok == "PROVIDE_HIDDEN") { |
Eugene Leviant | a31c91b | 2016-07-22 07:38:40 +0000 | [diff] [blame] | 673 | readProvide(true); |
Rui Ueyama | 708019c | 2016-07-24 18:19:40 +0000 | [diff] [blame] | 674 | } else { |
Eugene Leviant | eda81a1 | 2016-07-12 06:39:48 +0000 | [diff] [blame] | 675 | readOutputSectionDescription(Tok); |
Rui Ueyama | 708019c | 2016-07-24 18:19:40 +0000 | [diff] [blame] | 676 | } |
George Rimar | 652852c | 2016-04-16 10:10:32 +0000 | [diff] [blame] | 677 | } |
Denis Protivensky | 8e3b38a | 2015-11-12 09:52:08 +0000 | [diff] [blame] | 678 | } |
| 679 | |
Rui Ueyama | 708019c | 2016-07-24 18:19:40 +0000 | [diff] [blame] | 680 | static int precedence(StringRef Op) { |
| 681 | return StringSwitch<int>(Op) |
| 682 | .Case("*", 4) |
| 683 | .Case("/", 4) |
| 684 | .Case("+", 3) |
| 685 | .Case("-", 3) |
| 686 | .Case("<", 2) |
| 687 | .Case(">", 2) |
| 688 | .Case(">=", 2) |
| 689 | .Case("<=", 2) |
| 690 | .Case("==", 2) |
| 691 | .Case("!=", 2) |
| 692 | .Case("&", 1) |
| 693 | .Default(-1); |
| 694 | } |
| 695 | |
George Rimar | 0702c4e | 2016-07-29 15:32:46 +0000 | [diff] [blame] | 696 | void ScriptParser::readInputFilePattern(InputSectionDescription *InCmd, |
| 697 | bool Keep) { |
| 698 | while (!Error && !skip(")")) { |
| 699 | if (Keep) |
| 700 | Opt.KeptSections.push_back(peek()); |
| 701 | InCmd->SectionPatterns.push_back(next()); |
| 702 | } |
| 703 | } |
| 704 | |
| 705 | void ScriptParser::readInputSectionRules(InputSectionDescription *InCmd, |
| 706 | bool Keep) { |
George Rimar | 0659800 | 2016-07-28 21:51:30 +0000 | [diff] [blame] | 707 | InCmd->FilePattern = next(); |
Davide Italiano | 0ed42b0 | 2016-07-25 21:47:13 +0000 | [diff] [blame] | 708 | expect("("); |
Davide Italiano | e728279 | 2016-07-27 01:44:01 +0000 | [diff] [blame] | 709 | |
Davide Italiano | e728279 | 2016-07-27 01:44:01 +0000 | [diff] [blame] | 710 | if (skip("EXCLUDE_FILE")) { |
| 711 | expect("("); |
| 712 | while (!Error && !skip(")")) |
| 713 | InCmd->ExcludedFiles.push_back(next()); |
Davide Italiano | 0ed42b0 | 2016-07-25 21:47:13 +0000 | [diff] [blame] | 714 | } |
George Rimar | 0659800 | 2016-07-28 21:51:30 +0000 | [diff] [blame] | 715 | |
George Rimar | 0702c4e | 2016-07-29 15:32:46 +0000 | [diff] [blame] | 716 | if (skip("SORT")) { |
| 717 | expect("("); |
| 718 | InCmd->Sort = true; |
| 719 | readInputFilePattern(InCmd, Keep); |
| 720 | expect(")"); |
| 721 | return; |
George Rimar | 0659800 | 2016-07-28 21:51:30 +0000 | [diff] [blame] | 722 | } |
George Rimar | 0702c4e | 2016-07-29 15:32:46 +0000 | [diff] [blame] | 723 | |
| 724 | readInputFilePattern(InCmd, Keep); |
Davide Italiano | e728279 | 2016-07-27 01:44:01 +0000 | [diff] [blame] | 725 | } |
| 726 | |
George Rimar | 0659800 | 2016-07-28 21:51:30 +0000 | [diff] [blame] | 727 | std::unique_ptr<InputSectionDescription> |
| 728 | ScriptParser::readInputSectionDescription() { |
George Rimar | 352eac3 | 2016-07-28 22:10:50 +0000 | [diff] [blame] | 729 | auto InCmd = llvm::make_unique<InputSectionDescription>(); |
George Rimar | 0659800 | 2016-07-28 21:51:30 +0000 | [diff] [blame] | 730 | |
| 731 | // Input section wildcard can be surrounded by KEEP. |
| 732 | // https://sourceware.org/binutils/docs/ld/Input-Section-Keep.html#Input-Section-Keep |
| 733 | if (skip("KEEP")) { |
| 734 | expect("("); |
| 735 | readInputSectionRules(InCmd.get(), true); |
| 736 | expect(")"); |
| 737 | } else { |
| 738 | readInputSectionRules(InCmd.get(), false); |
| 739 | } |
| 740 | |
| 741 | return InCmd; |
Davide Italiano | 0ed42b0 | 2016-07-25 21:47:13 +0000 | [diff] [blame] | 742 | } |
| 743 | |
George Rimar | 630c617 | 2016-07-26 18:06:29 +0000 | [diff] [blame] | 744 | void ScriptParser::readAlign(OutputSectionCommand *Cmd) { |
| 745 | expect("("); |
| 746 | Cmd->AlignExpr = readExpr(); |
| 747 | expect(")"); |
| 748 | } |
| 749 | |
George Rimar | 03fc010 | 2016-07-28 07:18:23 +0000 | [diff] [blame] | 750 | void ScriptParser::readSort() { |
| 751 | expect("("); |
| 752 | expect("CONSTRUCTORS"); |
| 753 | expect(")"); |
| 754 | } |
| 755 | |
Eugene Leviant | eda81a1 | 2016-07-12 06:39:48 +0000 | [diff] [blame] | 756 | void ScriptParser::readOutputSectionDescription(StringRef OutSec) { |
George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 757 | OutputSectionCommand *Cmd = new OutputSectionCommand(OutSec); |
| 758 | Opt.Commands.emplace_back(Cmd); |
George Rimar | 58e5c4d | 2016-07-25 08:29:46 +0000 | [diff] [blame] | 759 | |
| 760 | // Read an address expression. |
| 761 | // https://sourceware.org/binutils/docs/ld/Output-Section-Address.html#Output-Section-Address |
| 762 | if (peek() != ":") |
| 763 | Cmd->AddrExpr = readExpr(); |
| 764 | |
Denis Protivensky | 8e3b38a | 2015-11-12 09:52:08 +0000 | [diff] [blame] | 765 | expect(":"); |
Davide Italiano | 246f681 | 2016-07-22 03:36:24 +0000 | [diff] [blame] | 766 | |
George Rimar | 630c617 | 2016-07-26 18:06:29 +0000 | [diff] [blame] | 767 | if (skip("ALIGN")) |
| 768 | readAlign(Cmd); |
| 769 | |
Davide Italiano | 246f681 | 2016-07-22 03:36:24 +0000 | [diff] [blame] | 770 | // Parse constraints. |
| 771 | if (skip("ONLY_IF_RO")) |
Rui Ueyama | efc4066 | 2016-07-25 22:00:10 +0000 | [diff] [blame] | 772 | Cmd->Constraint = ConstraintKind::ReadOnly; |
Davide Italiano | 246f681 | 2016-07-22 03:36:24 +0000 | [diff] [blame] | 773 | if (skip("ONLY_IF_RW")) |
Rui Ueyama | efc4066 | 2016-07-25 22:00:10 +0000 | [diff] [blame] | 774 | Cmd->Constraint = ConstraintKind::ReadWrite; |
Denis Protivensky | 8e3b38a | 2015-11-12 09:52:08 +0000 | [diff] [blame] | 775 | expect("{"); |
Rui Ueyama | 8ec77e6 | 2016-04-21 22:00:51 +0000 | [diff] [blame] | 776 | |
Rui Ueyama | 025d59b | 2016-02-02 20:27:59 +0000 | [diff] [blame] | 777 | while (!Error && !skip("}")) { |
George Rimar | f586ff7 | 2016-07-28 22:15:44 +0000 | [diff] [blame] | 778 | if (peek().startswith("*") || peek() == "KEEP") { |
George Rimar | 0659800 | 2016-07-28 21:51:30 +0000 | [diff] [blame] | 779 | Cmd->Commands.push_back(readInputSectionDescription()); |
| 780 | continue; |
| 781 | } |
| 782 | |
George Rimar | 481c2ce | 2016-02-23 07:47:54 +0000 | [diff] [blame] | 783 | StringRef Tok = next(); |
George Rimar | 0659800 | 2016-07-28 21:51:30 +0000 | [diff] [blame] | 784 | if (Tok == "PROVIDE") { |
Davide Italiano | 054a679 | 2016-07-24 23:13:48 +0000 | [diff] [blame] | 785 | readProvide(false); |
| 786 | } else if (Tok == "PROVIDE_HIDDEN") { |
| 787 | readProvide(true); |
George Rimar | 03fc010 | 2016-07-28 07:18:23 +0000 | [diff] [blame] | 788 | } else if (Tok == "SORT") { |
| 789 | readSort(); |
George Rimar | 481c2ce | 2016-02-23 07:47:54 +0000 | [diff] [blame] | 790 | } else { |
George Rimar | 777f963 | 2016-03-12 08:31:34 +0000 | [diff] [blame] | 791 | setError("unknown command " + Tok); |
George Rimar | 481c2ce | 2016-02-23 07:47:54 +0000 | [diff] [blame] | 792 | } |
Denis Protivensky | 8e3b38a | 2015-11-12 09:52:08 +0000 | [diff] [blame] | 793 | } |
George Rimar | 076fe15 | 2016-07-21 06:43:01 +0000 | [diff] [blame] | 794 | Cmd->Phdrs = readOutputSectionPhdrs(); |
Rui Ueyama | f71caa2 | 2016-07-29 06:14:07 +0000 | [diff] [blame] | 795 | Cmd->Filler = readOutputSectionFiller(); |
| 796 | } |
Rui Ueyama | 8ec77e6 | 2016-04-21 22:00:51 +0000 | [diff] [blame] | 797 | |
Rui Ueyama | f71caa2 | 2016-07-29 06:14:07 +0000 | [diff] [blame] | 798 | std::vector<uint8_t> ScriptParser::readOutputSectionFiller() { |
George Rimar | e2ee72b | 2016-02-26 14:48:31 +0000 | [diff] [blame] | 799 | StringRef Tok = peek(); |
Rui Ueyama | f71caa2 | 2016-07-29 06:14:07 +0000 | [diff] [blame] | 800 | if (!Tok.startswith("=")) |
| 801 | return {}; |
Davide Italiano | 5ac0d7c | 2016-07-29 22:21:28 +0000 | [diff] [blame^] | 802 | next(); |
| 803 | if (Tok.startswith("=0x")) |
| 804 | return parseHex(Tok.substr(3)); |
| 805 | |
| 806 | // This must be a decimal. |
| 807 | unsigned int Value; |
| 808 | if (Tok.substr(1).getAsInteger(10, Value)) { |
| 809 | setError("filler should be a decimal/hexadecimal value"); |
Rui Ueyama | f71caa2 | 2016-07-29 06:14:07 +0000 | [diff] [blame] | 810 | return {}; |
George Rimar | e2ee72b | 2016-02-26 14:48:31 +0000 | [diff] [blame] | 811 | } |
Davide Italiano | 5ac0d7c | 2016-07-29 22:21:28 +0000 | [diff] [blame^] | 812 | if (Value > 255) |
| 813 | setError("only single bytes decimal are supported for the filler now"); |
| 814 | return {static_cast<unsigned char>(Value)}; |
Denis Protivensky | 8e3b38a | 2015-11-12 09:52:08 +0000 | [diff] [blame] | 815 | } |
| 816 | |
Eugene Leviant | a31c91b | 2016-07-22 07:38:40 +0000 | [diff] [blame] | 817 | void ScriptParser::readProvide(bool Hidden) { |
| 818 | expect("("); |
Rui Ueyama | 174e0a1 | 2016-07-29 00:29:25 +0000 | [diff] [blame] | 819 | SymbolAssignment *Cmd = readAssignment(next()); |
| 820 | Cmd->Provide = true; |
| 821 | Cmd->Hidden = Hidden; |
Eugene Leviant | a31c91b | 2016-07-22 07:38:40 +0000 | [diff] [blame] | 822 | expect(")"); |
| 823 | expect(";"); |
Eugene Leviant | eda81a1 | 2016-07-12 06:39:48 +0000 | [diff] [blame] | 824 | } |
| 825 | |
George Rimar | 30835ea | 2016-07-28 21:08:56 +0000 | [diff] [blame] | 826 | static uint64_t getSymbolValue(StringRef S, uint64_t Dot) { |
| 827 | if (S == ".") |
| 828 | return Dot; |
Eugene Leviant | a31c91b | 2016-07-22 07:38:40 +0000 | [diff] [blame] | 829 | |
George Rimar | a9c5a52 | 2016-07-26 18:18:58 +0000 | [diff] [blame] | 830 | switch (Config->EKind) { |
| 831 | case ELF32LEKind: |
| 832 | if (SymbolBody *B = Symtab<ELF32LE>::X->find(S)) |
| 833 | return B->getVA<ELF32LE>(); |
| 834 | break; |
| 835 | case ELF32BEKind: |
| 836 | if (SymbolBody *B = Symtab<ELF32BE>::X->find(S)) |
| 837 | return B->getVA<ELF32BE>(); |
| 838 | break; |
| 839 | case ELF64LEKind: |
| 840 | if (SymbolBody *B = Symtab<ELF64LE>::X->find(S)) |
| 841 | return B->getVA<ELF64LE>(); |
| 842 | break; |
| 843 | case ELF64BEKind: |
| 844 | if (SymbolBody *B = Symtab<ELF64BE>::X->find(S)) |
| 845 | return B->getVA<ELF64BE>(); |
| 846 | break; |
George Rimar | 6930a6d | 2016-07-26 18:41:06 +0000 | [diff] [blame] | 847 | default: |
George Rimar | b567b62 | 2016-07-26 18:46:13 +0000 | [diff] [blame] | 848 | llvm_unreachable("unsupported target"); |
George Rimar | a9c5a52 | 2016-07-26 18:18:58 +0000 | [diff] [blame] | 849 | } |
| 850 | error("symbol not found: " + S); |
| 851 | return 0; |
| 852 | } |
| 853 | |
George Rimar | 9e69450 | 2016-07-29 16:18:47 +0000 | [diff] [blame] | 854 | static uint64_t getSectionSize(StringRef Name) { |
| 855 | switch (Config->EKind) { |
| 856 | case ELF32LEKind: |
| 857 | return Script<ELF32LE>::X->getOutputSectionSize(Name); |
| 858 | case ELF32BEKind: |
| 859 | return Script<ELF32BE>::X->getOutputSectionSize(Name); |
| 860 | case ELF64LEKind: |
| 861 | return Script<ELF64LE>::X->getOutputSectionSize(Name); |
| 862 | case ELF64BEKind: |
| 863 | return Script<ELF64BE>::X->getOutputSectionSize(Name); |
| 864 | default: |
| 865 | llvm_unreachable("unsupported target"); |
| 866 | } |
| 867 | return 0; |
| 868 | } |
| 869 | |
George Rimar | 30835ea | 2016-07-28 21:08:56 +0000 | [diff] [blame] | 870 | SymbolAssignment *ScriptParser::readAssignment(StringRef Name) { |
| 871 | StringRef Op = next(); |
| 872 | assert(Op == "=" || Op == "+="); |
| 873 | Expr E = readExpr(); |
| 874 | if (Op == "+=") |
| 875 | E = [=](uint64_t Dot) { return getSymbolValue(Name, Dot) + E(Dot); }; |
| 876 | auto *Cmd = new SymbolAssignment(Name, E); |
| 877 | Opt.Commands.emplace_back(Cmd); |
| 878 | return Cmd; |
| 879 | } |
| 880 | |
| 881 | // This is an operator-precedence parser to parse a linker |
| 882 | // script expression. |
| 883 | Expr ScriptParser::readExpr() { return readExpr1(readPrimary(), 0); } |
| 884 | |
Rui Ueyama | 708019c | 2016-07-24 18:19:40 +0000 | [diff] [blame] | 885 | // This is a part of the operator-precedence parser. This function |
| 886 | // assumes that the remaining token stream starts with an operator. |
| 887 | Expr ScriptParser::readExpr1(Expr Lhs, int MinPrec) { |
| 888 | while (!atEOF() && !Error) { |
| 889 | // Read an operator and an expression. |
| 890 | StringRef Op1 = peek(); |
| 891 | if (Op1 == "?") |
| 892 | return readTernary(Lhs); |
| 893 | if (precedence(Op1) < MinPrec) |
Eugene Leviant | eda81a1 | 2016-07-12 06:39:48 +0000 | [diff] [blame] | 894 | break; |
Rui Ueyama | 708019c | 2016-07-24 18:19:40 +0000 | [diff] [blame] | 895 | next(); |
| 896 | Expr Rhs = readPrimary(); |
| 897 | |
| 898 | // Evaluate the remaining part of the expression first if the |
| 899 | // next operator has greater precedence than the previous one. |
| 900 | // For example, if we have read "+" and "3", and if the next |
| 901 | // operator is "*", then we'll evaluate 3 * ... part first. |
| 902 | while (!atEOF()) { |
| 903 | StringRef Op2 = peek(); |
| 904 | if (precedence(Op2) <= precedence(Op1)) |
| 905 | break; |
| 906 | Rhs = readExpr1(Rhs, precedence(Op2)); |
| 907 | } |
| 908 | |
| 909 | Lhs = combine(Op1, Lhs, Rhs); |
Eugene Leviant | eda81a1 | 2016-07-12 06:39:48 +0000 | [diff] [blame] | 910 | } |
Rui Ueyama | 708019c | 2016-07-24 18:19:40 +0000 | [diff] [blame] | 911 | return Lhs; |
| 912 | } |
| 913 | |
| 914 | uint64_t static getConstant(StringRef S) { |
| 915 | if (S == "COMMONPAGESIZE" || S == "MAXPAGESIZE") |
| 916 | return Target->PageSize; |
| 917 | error("unknown constant: " + S); |
| 918 | return 0; |
| 919 | } |
| 920 | |
| 921 | Expr ScriptParser::readPrimary() { |
| 922 | StringRef Tok = next(); |
| 923 | |
Rui Ueyama | 708019c | 2016-07-24 18:19:40 +0000 | [diff] [blame] | 924 | if (Tok == "(") { |
| 925 | Expr E = readExpr(); |
| 926 | expect(")"); |
| 927 | return E; |
| 928 | } |
| 929 | |
| 930 | // Built-in functions are parsed here. |
| 931 | // https://sourceware.org/binutils/docs/ld/Builtin-Functions.html. |
| 932 | if (Tok == "ALIGN") { |
| 933 | expect("("); |
| 934 | Expr E = readExpr(); |
| 935 | expect(")"); |
| 936 | return [=](uint64_t Dot) { return alignTo(Dot, E(Dot)); }; |
| 937 | } |
| 938 | if (Tok == "CONSTANT") { |
| 939 | expect("("); |
| 940 | StringRef Tok = next(); |
| 941 | expect(")"); |
| 942 | return [=](uint64_t Dot) { return getConstant(Tok); }; |
| 943 | } |
Rafael Espindola | 54c145c | 2016-07-28 18:16:24 +0000 | [diff] [blame] | 944 | if (Tok == "SEGMENT_START") { |
| 945 | expect("("); |
| 946 | next(); |
| 947 | expect(","); |
| 948 | uint64_t Val; |
| 949 | next().getAsInteger(0, Val); |
| 950 | expect(")"); |
| 951 | return [=](uint64_t Dot) { return Val; }; |
| 952 | } |
Rui Ueyama | 708019c | 2016-07-24 18:19:40 +0000 | [diff] [blame] | 953 | if (Tok == "DATA_SEGMENT_ALIGN") { |
| 954 | expect("("); |
| 955 | Expr E = readExpr(); |
| 956 | expect(","); |
| 957 | readExpr(); |
| 958 | expect(")"); |
Rui Ueyama | f7791bb | 2016-07-26 19:34:10 +0000 | [diff] [blame] | 959 | return [=](uint64_t Dot) { return alignTo(Dot, E(Dot)); }; |
Rui Ueyama | 708019c | 2016-07-24 18:19:40 +0000 | [diff] [blame] | 960 | } |
| 961 | if (Tok == "DATA_SEGMENT_END") { |
| 962 | expect("("); |
| 963 | expect("."); |
| 964 | expect(")"); |
| 965 | return [](uint64_t Dot) { return Dot; }; |
| 966 | } |
George Rimar | 276b4e6 | 2016-07-26 17:58:44 +0000 | [diff] [blame] | 967 | // GNU linkers implements more complicated logic to handle |
| 968 | // DATA_SEGMENT_RELRO_END. We instead ignore the arguments and just align to |
| 969 | // the next page boundary for simplicity. |
| 970 | if (Tok == "DATA_SEGMENT_RELRO_END") { |
| 971 | expect("("); |
| 972 | next(); |
| 973 | expect(","); |
| 974 | readExpr(); |
| 975 | expect(")"); |
| 976 | return [](uint64_t Dot) { return alignTo(Dot, Target->PageSize); }; |
| 977 | } |
George Rimar | 9e69450 | 2016-07-29 16:18:47 +0000 | [diff] [blame] | 978 | if (Tok == "SIZEOF") { |
| 979 | expect("("); |
| 980 | StringRef Name = next(); |
| 981 | expect(")"); |
| 982 | return [=](uint64_t Dot) { return getSectionSize(Name); }; |
| 983 | } |
Rui Ueyama | 708019c | 2016-07-24 18:19:40 +0000 | [diff] [blame] | 984 | |
George Rimar | a9c5a52 | 2016-07-26 18:18:58 +0000 | [diff] [blame] | 985 | // Parse a symbol name or a number literal. |
Rui Ueyama | 708019c | 2016-07-24 18:19:40 +0000 | [diff] [blame] | 986 | uint64_t V = 0; |
George Rimar | a9c5a52 | 2016-07-26 18:18:58 +0000 | [diff] [blame] | 987 | if (Tok.getAsInteger(0, V)) { |
George Rimar | 30835ea | 2016-07-28 21:08:56 +0000 | [diff] [blame] | 988 | if (Tok != "." && !isValidCIdentifier(Tok)) |
George Rimar | a9c5a52 | 2016-07-26 18:18:58 +0000 | [diff] [blame] | 989 | setError("malformed number: " + Tok); |
George Rimar | 30835ea | 2016-07-28 21:08:56 +0000 | [diff] [blame] | 990 | return [=](uint64_t Dot) { return getSymbolValue(Tok, Dot); }; |
George Rimar | a9c5a52 | 2016-07-26 18:18:58 +0000 | [diff] [blame] | 991 | } |
Rui Ueyama | 708019c | 2016-07-24 18:19:40 +0000 | [diff] [blame] | 992 | return [=](uint64_t Dot) { return V; }; |
| 993 | } |
| 994 | |
| 995 | Expr ScriptParser::readTernary(Expr Cond) { |
| 996 | next(); |
| 997 | Expr L = readExpr(); |
| 998 | expect(":"); |
| 999 | Expr R = readExpr(); |
| 1000 | return [=](uint64_t Dot) { return Cond(Dot) ? L(Dot) : R(Dot); }; |
| 1001 | } |
| 1002 | |
| 1003 | Expr ScriptParser::combine(StringRef Op, Expr L, Expr R) { |
| 1004 | if (Op == "*") |
| 1005 | return [=](uint64_t Dot) { return L(Dot) * R(Dot); }; |
| 1006 | if (Op == "/") { |
| 1007 | return [=](uint64_t Dot) -> uint64_t { |
| 1008 | uint64_t RHS = R(Dot); |
| 1009 | if (RHS == 0) { |
| 1010 | error("division by zero"); |
| 1011 | return 0; |
| 1012 | } |
| 1013 | return L(Dot) / RHS; |
| 1014 | }; |
| 1015 | } |
| 1016 | if (Op == "+") |
| 1017 | return [=](uint64_t Dot) { return L(Dot) + R(Dot); }; |
| 1018 | if (Op == "-") |
| 1019 | return [=](uint64_t Dot) { return L(Dot) - R(Dot); }; |
| 1020 | if (Op == "<") |
| 1021 | return [=](uint64_t Dot) { return L(Dot) < R(Dot); }; |
| 1022 | if (Op == ">") |
| 1023 | return [=](uint64_t Dot) { return L(Dot) > R(Dot); }; |
| 1024 | if (Op == ">=") |
| 1025 | return [=](uint64_t Dot) { return L(Dot) >= R(Dot); }; |
| 1026 | if (Op == "<=") |
| 1027 | return [=](uint64_t Dot) { return L(Dot) <= R(Dot); }; |
| 1028 | if (Op == "==") |
| 1029 | return [=](uint64_t Dot) { return L(Dot) == R(Dot); }; |
| 1030 | if (Op == "!=") |
| 1031 | return [=](uint64_t Dot) { return L(Dot) != R(Dot); }; |
| 1032 | if (Op == "&") |
| 1033 | return [=](uint64_t Dot) { return L(Dot) & R(Dot); }; |
| 1034 | llvm_unreachable("invalid operator"); |
Eugene Leviant | eda81a1 | 2016-07-12 06:39:48 +0000 | [diff] [blame] | 1035 | } |
| 1036 | |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 1037 | std::vector<StringRef> ScriptParser::readOutputSectionPhdrs() { |
| 1038 | std::vector<StringRef> Phdrs; |
| 1039 | while (!Error && peek().startswith(":")) { |
| 1040 | StringRef Tok = next(); |
| 1041 | Tok = (Tok.size() == 1) ? next() : Tok.substr(1); |
| 1042 | if (Tok.empty()) { |
| 1043 | setError("section header name is empty"); |
| 1044 | break; |
| 1045 | } |
Rui Ueyama | 047404f | 2016-07-20 19:36:36 +0000 | [diff] [blame] | 1046 | Phdrs.push_back(Tok); |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 1047 | } |
| 1048 | return Phdrs; |
| 1049 | } |
| 1050 | |
| 1051 | unsigned ScriptParser::readPhdrType() { |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 1052 | StringRef Tok = next(); |
Rui Ueyama | b0f6c59 | 2016-07-20 19:36:38 +0000 | [diff] [blame] | 1053 | unsigned Ret = StringSwitch<unsigned>(Tok) |
| 1054 | .Case("PT_NULL", PT_NULL) |
| 1055 | .Case("PT_LOAD", PT_LOAD) |
| 1056 | .Case("PT_DYNAMIC", PT_DYNAMIC) |
| 1057 | .Case("PT_INTERP", PT_INTERP) |
| 1058 | .Case("PT_NOTE", PT_NOTE) |
| 1059 | .Case("PT_SHLIB", PT_SHLIB) |
| 1060 | .Case("PT_PHDR", PT_PHDR) |
| 1061 | .Case("PT_TLS", PT_TLS) |
| 1062 | .Case("PT_GNU_EH_FRAME", PT_GNU_EH_FRAME) |
| 1063 | .Case("PT_GNU_STACK", PT_GNU_STACK) |
| 1064 | .Case("PT_GNU_RELRO", PT_GNU_RELRO) |
| 1065 | .Default(-1); |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 1066 | |
Rui Ueyama | b0f6c59 | 2016-07-20 19:36:38 +0000 | [diff] [blame] | 1067 | if (Ret == (unsigned)-1) { |
| 1068 | setError("invalid program header type: " + Tok); |
| 1069 | return PT_NULL; |
| 1070 | } |
| 1071 | return Ret; |
Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 1072 | } |
| 1073 | |
Simon Atanasyan | 16b0cc9 | 2015-11-26 05:53:00 +0000 | [diff] [blame] | 1074 | static bool isUnderSysroot(StringRef Path) { |
| 1075 | if (Config->Sysroot == "") |
| 1076 | return false; |
| 1077 | for (; !Path.empty(); Path = sys::path::parent_path(Path)) |
| 1078 | if (sys::fs::equivalent(Config->Sysroot, Path)) |
| 1079 | return true; |
| 1080 | return false; |
| 1081 | } |
| 1082 | |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 1083 | // Entry point. |
| 1084 | void elf::readLinkerScript(MemoryBufferRef MB) { |
Simon Atanasyan | 16b0cc9 | 2015-11-26 05:53:00 +0000 | [diff] [blame] | 1085 | StringRef Path = MB.getBufferIdentifier(); |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 1086 | ScriptParser(MB.getBuffer(), isUnderSysroot(Path)).run(); |
Rui Ueyama | f7c5fbb | 2015-09-30 17:23:26 +0000 | [diff] [blame] | 1087 | } |
Rui Ueyama | 1ebc8ed | 2016-02-12 21:47:28 +0000 | [diff] [blame] | 1088 | |
Rui Ueyama | 07320e4 | 2016-04-20 20:13:41 +0000 | [diff] [blame] | 1089 | template class elf::LinkerScript<ELF32LE>; |
| 1090 | template class elf::LinkerScript<ELF32BE>; |
| 1091 | template class elf::LinkerScript<ELF64LE>; |
| 1092 | template class elf::LinkerScript<ELF64BE>; |