| Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 1 | //===- 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. Spencer | f832541 | 2015-09-04 22:48:30 +0000 | [diff] [blame] | 10 | #include "Writer.h" | 
| Rui Ueyama | cb8474ed | 2015-08-05 23:51:50 +0000 | [diff] [blame] | 11 | #include "Config.h" | 
| Rui Ueyama | 9b55e92 | 2017-03-24 00:15:16 +0000 | [diff] [blame] | 12 | #include "Filesystem.h" | 
| Rui Ueyama | 717677a | 2016-02-11 21:17:59 +0000 | [diff] [blame] | 13 | #include "LinkerScript.h" | 
| Rafael Espindola | 1ebfc59 | 2017-01-13 21:05:46 +0000 | [diff] [blame] | 14 | #include "MapFile.h" | 
| Rui Ueyama | 9381eb1 | 2016-12-18 14:06:06 +0000 | [diff] [blame] | 15 | #include "Memory.h" | 
| Rafael Espindola | 5805c4f | 2015-09-21 21:38:08 +0000 | [diff] [blame] | 16 | #include "OutputSections.h" | 
| Rui Ueyama | 0fcdc73 | 2016-05-24 20:24:43 +0000 | [diff] [blame] | 17 | #include "Relocations.h" | 
| Rui Ueyama | fbbde54 | 2016-06-29 09:08:02 +0000 | [diff] [blame] | 18 | #include "Strings.h" | 
| Rui Ueyama | afff74e2 | 2015-08-05 23:24:46 +0000 | [diff] [blame] | 19 | #include "SymbolTable.h" | 
| Rui Ueyama | 6dc7fcb | 2016-11-01 20:28:21 +0000 | [diff] [blame] | 20 | #include "SyntheticSections.h" | 
| Rafael Espindola | 01205f7 | 2015-09-22 18:19:46 +0000 | [diff] [blame] | 21 | #include "Target.h" | 
| George Rimar | dbf9339 | 2017-04-17 08:58:12 +0000 | [diff] [blame] | 22 | #include "Threads.h" | 
| Denis Protivensky | 8e3b38a | 2015-11-12 09:52:08 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/StringMap.h" | 
| Hal Finkel | 3bae2d8 | 2015-10-12 20:51:48 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/StringSwitch.h" | 
| Rui Ueyama | afff74e2 | 2015-08-05 23:24:46 +0000 | [diff] [blame] | 25 | #include "llvm/Support/FileOutputBuffer.h" | 
| Rui Ueyama | e8b2df4 | 2016-09-29 01:45:22 +0000 | [diff] [blame] | 26 | #include <climits> | 
| Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 27 |  | 
|  | 28 | using namespace llvm; | 
|  | 29 | using namespace llvm::ELF; | 
|  | 30 | using namespace llvm::object; | 
| Peter Smith | 0a259f3 | 2016-10-10 09:39:26 +0000 | [diff] [blame] | 31 | using namespace llvm::support; | 
|  | 32 | using namespace llvm::support::endian; | 
| Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 33 |  | 
|  | 34 | using namespace lld; | 
| Rafael Espindola | e0df00b | 2016-02-28 00:25:54 +0000 | [diff] [blame] | 35 | using namespace lld::elf; | 
| Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 36 |  | 
| Rui Ueyama | afff74e2 | 2015-08-05 23:24:46 +0000 | [diff] [blame] | 37 | namespace { | 
|  | 38 | // The writer writes a SymbolTable result to a file. | 
|  | 39 | template <class ELFT> class Writer { | 
|  | 40 | public: | 
| Rui Ueyama | 9328b2c | 2016-03-14 23:16:09 +0000 | [diff] [blame] | 41 | typedef typename ELFT::Shdr Elf_Shdr; | 
|  | 42 | typedef typename ELFT::Ehdr Elf_Ehdr; | 
|  | 43 | typedef typename ELFT::Phdr Elf_Phdr; | 
| Rui Ueyama | 0ce388b | 2017-04-05 21:46:06 +0000 | [diff] [blame] | 44 |  | 
| Rui Ueyama | afff74e2 | 2015-08-05 23:24:46 +0000 | [diff] [blame] | 45 | void run(); | 
|  | 46 |  | 
|  | 47 | private: | 
| Rui Ueyama | f83aca4 | 2016-11-01 23:17:45 +0000 | [diff] [blame] | 48 | void createSyntheticSections(); | 
| Rui Ueyama | 5a9640b | 2015-10-08 23:49:30 +0000 | [diff] [blame] | 49 | void copyLocalSymbols(); | 
| Rafael Espindola | 08d6a3f | 2017-02-11 01:40:49 +0000 | [diff] [blame] | 50 | void addSectionSymbols(); | 
| Rui Ueyama | f18fe7b | 2015-12-26 07:50:39 +0000 | [diff] [blame] | 51 | void addReservedSymbols(); | 
| George Rimar | 9e69450 | 2016-07-29 16:18:47 +0000 | [diff] [blame] | 52 | void createSections(); | 
| Rafael Espindola | b4c9b81 | 2017-02-23 02:28:28 +0000 | [diff] [blame] | 53 | void forEachRelSec(std::function<void(InputSectionBase &)> Fn); | 
| Rafael Espindola | 24c073d | 2016-09-21 22:36:19 +0000 | [diff] [blame] | 54 | void sortSections(); | 
| Eugene Leviant | e63d81b | 2016-07-20 14:43:20 +0000 | [diff] [blame] | 55 | void finalizeSections(); | 
| Rui Ueyama | 84417f8 | 2015-12-26 07:50:41 +0000 | [diff] [blame] | 56 | void addPredefinedSections(); | 
| Petr Hosek | 18821b6 | 2017-09-01 02:23:31 +0000 | [diff] [blame] | 57 | void addPredefinedSymbols(); | 
| Rui Ueyama | 2df0fd8 | 2015-12-25 07:38:58 +0000 | [diff] [blame] | 58 |  | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 59 | std::vector<PhdrEntry *> createPhdrs(); | 
| Rafael Espindola | 074ba93 | 2016-12-06 13:43:34 +0000 | [diff] [blame] | 60 | void removeEmptyPTLoad(); | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 61 | void addPtArmExid(std::vector<PhdrEntry *> &Phdrs); | 
| Rui Ueyama | e044e9c | 2016-04-01 17:07:17 +0000 | [diff] [blame] | 62 | void assignFileOffsets(); | 
| George Rimar | 86ce267 | 2016-08-25 09:05:47 +0000 | [diff] [blame] | 63 | void assignFileOffsetsBinary(); | 
| Rui Ueyama | e044e9c | 2016-04-01 17:07:17 +0000 | [diff] [blame] | 64 | void setPhdrs(); | 
| Rui Ueyama | 4709190 | 2016-03-30 19:41:51 +0000 | [diff] [blame] | 65 | void fixSectionAlignments(); | 
| Rafael Espindola | 78493a2 | 2017-01-28 17:48:21 +0000 | [diff] [blame] | 66 | void fixPredefinedSymbols(); | 
| Rui Ueyama | f7f52ef | 2016-04-01 17:24:19 +0000 | [diff] [blame] | 67 | void openFile(); | 
| Petr Hosek | edd6c35 | 2017-08-02 16:35:00 +0000 | [diff] [blame] | 68 | void writeTrapInstr(); | 
| Rui Ueyama | afff74e2 | 2015-08-05 23:24:46 +0000 | [diff] [blame] | 69 | void writeHeader(); | 
|  | 70 | void writeSections(); | 
| George Rimar | 86ce267 | 2016-08-25 09:05:47 +0000 | [diff] [blame] | 71 | void writeSectionsBinary(); | 
| Rui Ueyama | 634ddf0 | 2016-03-11 20:51:53 +0000 | [diff] [blame] | 72 | void writeBuildId(); | 
| Rui Ueyama | afff74e2 | 2015-08-05 23:24:46 +0000 | [diff] [blame] | 73 |  | 
| Rui Ueyama | 818bb2f | 2016-07-16 18:55:47 +0000 | [diff] [blame] | 74 | std::unique_ptr<FileOutputBuffer> Buffer; | 
| Michael J. Spencer | 2f00824 | 2015-09-17 19:58:07 +0000 | [diff] [blame] | 75 |  | 
| Rafael Espindola | 0553124 | 2017-07-06 16:40:44 +0000 | [diff] [blame] | 76 | OutputSectionFactory Factory; | 
| Rafael Espindola | 4fc6044 | 2016-02-10 22:43:13 +0000 | [diff] [blame] | 77 |  | 
| Rui Ueyama | 0168722 | 2015-12-26 09:47:57 +0000 | [diff] [blame] | 78 | void addRelIpltSymbols(); | 
| Rui Ueyama | a5d79d1 | 2015-12-26 09:48:00 +0000 | [diff] [blame] | 79 | void addStartEndSymbols(); | 
| Rafael Espindola | 24e6f36 | 2017-02-24 15:07:30 +0000 | [diff] [blame] | 80 | void addStartStopSymbols(OutputSection *Sec); | 
| Rui Ueyama | 6bd3822 | 2017-04-05 21:37:09 +0000 | [diff] [blame] | 81 | uint64_t getEntryAddr(); | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 82 | OutputSection *findSection(StringRef Name); | 
| Rui Ueyama | 2f1b79f | 2015-10-10 22:34:30 +0000 | [diff] [blame] | 83 |  | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 84 | std::vector<PhdrEntry *> Phdrs; | 
| Michael J. Spencer | 2f00824 | 2015-09-17 19:58:07 +0000 | [diff] [blame] | 85 |  | 
| Rui Ueyama | 6bd3822 | 2017-04-05 21:37:09 +0000 | [diff] [blame] | 86 | uint64_t FileSize; | 
|  | 87 | uint64_t SectionHeaderOff; | 
| Peter Smith | 113a59e | 2017-06-26 10:22:17 +0000 | [diff] [blame] | 88 |  | 
|  | 89 | bool HasGotBaseSym = false; | 
| Rui Ueyama | afff74e2 | 2015-08-05 23:24:46 +0000 | [diff] [blame] | 90 | }; | 
|  | 91 | } // anonymous namespace | 
|  | 92 |  | 
| Rui Ueyama | 55518e7 | 2016-10-28 20:57:25 +0000 | [diff] [blame] | 93 | StringRef elf::getOutputSectionName(StringRef Name) { | 
| George Rimar | 60a0ea1 | 2017-06-05 12:49:21 +0000 | [diff] [blame] | 94 | // ".zdebug_" is a prefix for ZLIB-compressed sections. | 
|  | 95 | // Because we decompressed input sections, we want to remove 'z'. | 
|  | 96 | if (Name.startswith(".zdebug_")) | 
|  | 97 | return Saver.save("." + Name.substr(2)); | 
|  | 98 |  | 
| Eugene Leviant | a8d12ef | 2016-10-05 10:10:45 +0000 | [diff] [blame] | 99 | if (Config->Relocatable) | 
|  | 100 | return Name; | 
|  | 101 |  | 
| Rafael Espindola | 7d38273 | 2016-09-19 19:59:21 +0000 | [diff] [blame] | 102 | for (StringRef V : | 
| George Rimar | 1ab9cf4 | 2017-03-17 10:14:53 +0000 | [diff] [blame] | 103 | {".text.", ".rodata.", ".data.rel.ro.", ".data.", ".bss.rel.ro.", | 
|  | 104 | ".bss.", ".init_array.", ".fini_array.", ".ctors.", ".dtors.", ".tbss.", | 
| Peter Smith | 691ff76 | 2017-06-28 09:12:38 +0000 | [diff] [blame] | 105 | ".gcc_except_table.", ".tdata.", ".ARM.exidx.", ".ARM.extab."}) { | 
| Rafael Espindola | 7d38273 | 2016-09-19 19:59:21 +0000 | [diff] [blame] | 106 | StringRef Prefix = V.drop_back(); | 
|  | 107 | if (Name.startswith(V) || Name == Prefix) | 
|  | 108 | return Prefix; | 
|  | 109 | } | 
| Rui Ueyama | 0538408 | 2016-10-12 22:36:31 +0000 | [diff] [blame] | 110 |  | 
| Rui Ueyama | e8a6102 | 2016-11-05 23:05:47 +0000 | [diff] [blame] | 111 | // CommonSection is identified as "COMMON" in linker scripts. | 
|  | 112 | // By default, it should go to .bss section. | 
|  | 113 | if (Name == "COMMON") | 
|  | 114 | return ".bss"; | 
|  | 115 |  | 
| George Rimar | 5d53d1f | 2016-07-12 08:50:42 +0000 | [diff] [blame] | 116 | return Name; | 
|  | 117 | } | 
|  | 118 |  | 
| Rui Ueyama | fd03cfd | 2016-07-21 11:01:23 +0000 | [diff] [blame] | 119 | template <class ELFT> static bool needsInterpSection() { | 
| Rafael Espindola | 244ef98 | 2017-07-26 18:42:48 +0000 | [diff] [blame] | 120 | return !SharedFile<ELFT>::Instances.empty() && | 
| George Rimar | a8dba48 | 2017-03-20 10:09:58 +0000 | [diff] [blame] | 121 | !Config->DynamicLinker.empty() && !Script->ignoreInterpSection(); | 
| Rui Ueyama | fd03cfd | 2016-07-21 11:01:23 +0000 | [diff] [blame] | 122 | } | 
|  | 123 |  | 
| George Rimar | d8b2776 | 2016-11-14 10:14:18 +0000 | [diff] [blame] | 124 | template <class ELFT> void elf::writeResult() { Writer<ELFT>().run(); } | 
| Rafael Espindola | 4fc6044 | 2016-02-10 22:43:13 +0000 | [diff] [blame] | 125 |  | 
| Rafael Espindola | 074ba93 | 2016-12-06 13:43:34 +0000 | [diff] [blame] | 126 | template <class ELFT> void Writer<ELFT>::removeEmptyPTLoad() { | 
| George Rimar | 60608a8 | 2017-08-28 09:28:15 +0000 | [diff] [blame] | 127 | llvm::erase_if(Phdrs, [&](const PhdrEntry *P) { | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 128 | if (P->p_type != PT_LOAD) | 
| Rafael Espindola | 074ba93 | 2016-12-06 13:43:34 +0000 | [diff] [blame] | 129 | return false; | 
| George Rimar | 6823c5f | 2017-09-07 11:01:10 +0000 | [diff] [blame] | 130 | if (!P->FirstSec) | 
| Rafael Espindola | 4121761 | 2016-12-08 03:17:05 +0000 | [diff] [blame] | 131 | return true; | 
| George Rimar | 6823c5f | 2017-09-07 11:01:10 +0000 | [diff] [blame] | 132 | uint64_t Size = P->LastSec->Addr + P->LastSec->Size - P->FirstSec->Addr; | 
| Rafael Espindola | 074ba93 | 2016-12-06 13:43:34 +0000 | [diff] [blame] | 133 | return Size == 0; | 
|  | 134 | }); | 
| Rafael Espindola | 074ba93 | 2016-12-06 13:43:34 +0000 | [diff] [blame] | 135 | } | 
|  | 136 |  | 
| Petr Hosek | 7b79321 | 2017-03-10 20:00:42 +0000 | [diff] [blame] | 137 | template <class ELFT> static void combineEhFrameSections() { | 
|  | 138 | for (InputSectionBase *&S : InputSections) { | 
|  | 139 | EhInputSection *ES = dyn_cast<EhInputSection>(S); | 
| Rafael Espindola | a156555 | 2017-03-15 12:31:54 +0000 | [diff] [blame] | 140 | if (!ES || !ES->Live) | 
| Petr Hosek | 7b79321 | 2017-03-10 20:00:42 +0000 | [diff] [blame] | 141 | 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 Ueyama | f83aca4 | 2016-11-01 23:17:45 +0000 | [diff] [blame] | 151 | // The main function of the writer. | 
|  | 152 | template <class ELFT> void Writer<ELFT>::run() { | 
| Rui Ueyama | 0b1b695 | 2016-11-21 02:11:05 +0000 | [diff] [blame] | 153 | // Create linker-synthesized sections such as .got or .plt. | 
|  | 154 | // Such sections are of type input section. | 
| Rui Ueyama | f83aca4 | 2016-11-01 23:17:45 +0000 | [diff] [blame] | 155 | createSyntheticSections(); | 
| George Rimar | 7beff42 | 2016-11-15 08:19:02 +0000 | [diff] [blame] | 156 |  | 
| Petr Hosek | 7b79321 | 2017-03-10 20:00:42 +0000 | [diff] [blame] | 157 | if (!Config->Relocatable) | 
|  | 158 | combineEhFrameSections<ELFT>(); | 
|  | 159 |  | 
| Rui Ueyama | 0b1b695 | 2016-11-21 02:11:05 +0000 | [diff] [blame] | 160 | // We need to create some reserved symbols such as _end. Create them. | 
| George Rimar | 7beff42 | 2016-11-15 08:19:02 +0000 | [diff] [blame] | 161 | if (!Config->Relocatable) | 
|  | 162 | addReservedSymbols(); | 
| Rui Ueyama | f83aca4 | 2016-11-01 23:17:45 +0000 | [diff] [blame] | 163 |  | 
| Rui Ueyama | 0b1b695 | 2016-11-21 02:11:05 +0000 | [diff] [blame] | 164 | // Create output sections. | 
| Rui Ueyama | a34da93 | 2017-03-21 23:03:09 +0000 | [diff] [blame] | 165 | if (Script->Opt.HasSections) { | 
| Rui Ueyama | 0b1b695 | 2016-11-21 02:11:05 +0000 | [diff] [blame] | 166 | // If linker script contains SECTIONS commands, let it create sections. | 
| George Rimar | a8dba48 | 2017-03-20 10:09:58 +0000 | [diff] [blame] | 167 | Script->processCommands(Factory); | 
| Rui Ueyama | 0b1b695 | 2016-11-21 02:11:05 +0000 | [diff] [blame] | 168 |  | 
|  | 169 | // Linker scripts may have left some input sections unassigned. | 
|  | 170 | // Assign such sections using the default rule. | 
| George Rimar | a8dba48 | 2017-03-20 10:09:58 +0000 | [diff] [blame] | 171 | Script->addOrphanSections(Factory); | 
| Rui Ueyama | f83aca4 | 2016-11-01 23:17:45 +0000 | [diff] [blame] | 172 | } else { | 
| Rui Ueyama | 0b1b695 | 2016-11-21 02:11:05 +0000 | [diff] [blame] | 173 | // 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 Rimar | a8dba48 | 2017-03-20 10:09:58 +0000 | [diff] [blame] | 177 | Script->processCommands(Factory); | 
| Rafael Espindola | 2126334 | 2017-07-05 23:36:24 +0000 | [diff] [blame] | 178 | createSections(); | 
| Rui Ueyama | f83aca4 | 2016-11-01 23:17:45 +0000 | [diff] [blame] | 179 | } | 
|  | 180 |  | 
|  | 181 | if (Config->Discard != DiscardPolicy::All) | 
|  | 182 | copyLocalSymbols(); | 
|  | 183 |  | 
| Rui Ueyama | d57e74b7 | 2017-03-17 23:29:01 +0000 | [diff] [blame] | 184 | if (Config->CopyRelocs) | 
| Rafael Espindola | 08d6a3f | 2017-02-11 01:40:49 +0000 | [diff] [blame] | 185 | addSectionSymbols(); | 
|  | 186 |  | 
| Rui Ueyama | 0b1b695 | 2016-11-21 02:11:05 +0000 | [diff] [blame] | 187 | // 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 Ueyama | f83aca4 | 2016-11-01 23:17:45 +0000 | [diff] [blame] | 191 | finalizeSections(); | 
| Rui Ueyama | f373dd7 | 2016-11-24 01:43:21 +0000 | [diff] [blame] | 192 | if (ErrorCount) | 
| Rui Ueyama | f83aca4 | 2016-11-01 23:17:45 +0000 | [diff] [blame] | 193 | return; | 
|  | 194 |  | 
| Rafael Espindola | 55b169b | 2017-05-24 18:08:04 +0000 | [diff] [blame] | 195 | // If -compressed-debug-sections is specified, we need to compress | 
|  | 196 | // .debug_* sections. Do it right now because it changes the size of | 
|  | 197 | // output sections. | 
| George Rimar | a9b0714 | 2017-08-04 08:30:16 +0000 | [diff] [blame] | 198 | parallelForEach(OutputSections, | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 199 | [](OutputSection *Sec) { Sec->maybeCompress<ELFT>(); }); | 
| Rafael Espindola | 805f515 | 2017-06-01 16:30:12 +0000 | [diff] [blame] | 200 |  | 
| Petr Hosek | 18821b6 | 2017-09-01 02:23:31 +0000 | [diff] [blame] | 201 | // Generate assignments for predefined symbols (e.g. _end or _etext) | 
|  | 202 | // before assigning addresses. These symbols may be referred to from | 
|  | 203 | // the linker script and we need to ensure they have the correct value | 
|  | 204 | // prior evaluating any expressions using these symbols. | 
|  | 205 | addPredefinedSymbols(); | 
|  | 206 |  | 
| Peter Smith | 5aedebf | 2017-07-05 09:12:54 +0000 | [diff] [blame] | 207 | Script->assignAddresses(); | 
|  | 208 | Script->allocateHeaders(Phdrs); | 
| Rafael Espindola | 189860c | 2017-06-07 02:24:08 +0000 | [diff] [blame] | 209 |  | 
|  | 210 | // Remove empty PT_LOAD to avoid causing the dynamic linker to try to mmap a | 
|  | 211 | // 0 sized region. This has to be done late since only after assignAddresses | 
|  | 212 | // we know the size of the sections. | 
|  | 213 | removeEmptyPTLoad(); | 
|  | 214 |  | 
|  | 215 | if (!Config->OFormatBinary) | 
| Rui Ueyama | f83aca4 | 2016-11-01 23:17:45 +0000 | [diff] [blame] | 216 | assignFileOffsets(); | 
| Rafael Espindola | 189860c | 2017-06-07 02:24:08 +0000 | [diff] [blame] | 217 | else | 
|  | 218 | assignFileOffsetsBinary(); | 
|  | 219 |  | 
|  | 220 | setPhdrs(); | 
|  | 221 |  | 
|  | 222 | if (Config->Relocatable) { | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 223 | for (OutputSection *Sec : OutputSections) | 
|  | 224 | Sec->Addr = 0; | 
| Rui Ueyama | f83aca4 | 2016-11-01 23:17:45 +0000 | [diff] [blame] | 225 | } else { | 
| Rafael Espindola | 78493a2 | 2017-01-28 17:48:21 +0000 | [diff] [blame] | 226 | fixPredefinedSymbols(); | 
| Rui Ueyama | f83aca4 | 2016-11-01 23:17:45 +0000 | [diff] [blame] | 227 | } | 
|  | 228 |  | 
| George Rimar | 2ddab6d | 2017-01-17 13:50:34 +0000 | [diff] [blame] | 229 | // It does not make sense try to open the file if we have error already. | 
|  | 230 | if (ErrorCount) | 
|  | 231 | return; | 
| Rui Ueyama | 0b1b695 | 2016-11-21 02:11:05 +0000 | [diff] [blame] | 232 | // Write the result down to a file. | 
| Rui Ueyama | f83aca4 | 2016-11-01 23:17:45 +0000 | [diff] [blame] | 233 | openFile(); | 
| Rui Ueyama | f373dd7 | 2016-11-24 01:43:21 +0000 | [diff] [blame] | 234 | if (ErrorCount) | 
| Rui Ueyama | f83aca4 | 2016-11-01 23:17:45 +0000 | [diff] [blame] | 235 | return; | 
| Rafael Espindola | 3f235c7 | 2017-06-01 16:32:58 +0000 | [diff] [blame] | 236 |  | 
| Rui Ueyama | f83aca4 | 2016-11-01 23:17:45 +0000 | [diff] [blame] | 237 | if (!Config->OFormatBinary) { | 
| Petr Hosek | edd6c35 | 2017-08-02 16:35:00 +0000 | [diff] [blame] | 238 | writeTrapInstr(); | 
| Rui Ueyama | f83aca4 | 2016-11-01 23:17:45 +0000 | [diff] [blame] | 239 | writeHeader(); | 
|  | 240 | writeSections(); | 
|  | 241 | } else { | 
|  | 242 | writeSectionsBinary(); | 
|  | 243 | } | 
| Rui Ueyama | 0b1b695 | 2016-11-21 02:11:05 +0000 | [diff] [blame] | 244 |  | 
|  | 245 | // Backfill .note.gnu.build-id section content. This is done at last | 
|  | 246 | // because the content is usually a hash value of the entire output file. | 
| Rui Ueyama | f83aca4 | 2016-11-01 23:17:45 +0000 | [diff] [blame] | 247 | writeBuildId(); | 
| Rui Ueyama | f373dd7 | 2016-11-24 01:43:21 +0000 | [diff] [blame] | 248 | if (ErrorCount) | 
| Rui Ueyama | f83aca4 | 2016-11-01 23:17:45 +0000 | [diff] [blame] | 249 | return; | 
| Rui Ueyama | 0b1b695 | 2016-11-21 02:11:05 +0000 | [diff] [blame] | 250 |  | 
| Rui Ueyama | 40eaa99 | 2017-01-18 03:34:38 +0000 | [diff] [blame] | 251 | // Handle -Map option. | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 252 | writeMapFile<ELFT>(); | 
| Rui Ueyama | 40eaa99 | 2017-01-18 03:34:38 +0000 | [diff] [blame] | 253 | if (ErrorCount) | 
|  | 254 | return; | 
|  | 255 |  | 
| Rui Ueyama | f83aca4 | 2016-11-01 23:17:45 +0000 | [diff] [blame] | 256 | if (auto EC = Buffer->commit()) | 
| Rui Ueyama | c8d3a83 | 2017-01-12 22:18:04 +0000 | [diff] [blame] | 257 | error("failed to write to the output file: " + EC.message()); | 
| Rui Ueyama | 0b1b695 | 2016-11-21 02:11:05 +0000 | [diff] [blame] | 258 |  | 
|  | 259 | // Flush the output streams and exit immediately. A full shutdown | 
|  | 260 | // is a good test that we are keeping track of all allocated memory, | 
|  | 261 | // but actually freeing it is a waste of time in a regular linker run. | 
|  | 262 | if (Config->ExitEarly) | 
| Rui Ueyama | f83aca4 | 2016-11-01 23:17:45 +0000 | [diff] [blame] | 263 | exitLld(0); | 
| Rui Ueyama | f83aca4 | 2016-11-01 23:17:45 +0000 | [diff] [blame] | 264 | } | 
|  | 265 |  | 
| Rui Ueyama | 9d1bacb1 | 2017-02-27 02:31:26 +0000 | [diff] [blame] | 266 | // Initialize Out members. | 
| Rui Ueyama | f83aca4 | 2016-11-01 23:17:45 +0000 | [diff] [blame] | 267 | template <class ELFT> void Writer<ELFT>::createSyntheticSections() { | 
|  | 268 | // Initialize all pointers with NULL. This is needed because | 
|  | 269 | // you can call lld::elf::main more than once as a library. | 
| Rui Ueyama | 9d1bacb1 | 2017-02-27 02:31:26 +0000 | [diff] [blame] | 270 | memset(&Out::First, 0, sizeof(Out)); | 
| Rui Ueyama | cfadbd9 | 2016-11-01 23:12:51 +0000 | [diff] [blame] | 271 |  | 
| Rui Ueyama | 536a267 | 2017-02-27 02:32:08 +0000 | [diff] [blame] | 272 | auto Add = [](InputSectionBase *Sec) { InputSections.push_back(Sec); }; | 
| Rui Ueyama | 7ddd7a8 | 2017-02-05 05:18:58 +0000 | [diff] [blame] | 273 |  | 
| Rafael Espindola | 895aea6 | 2017-05-11 22:02:41 +0000 | [diff] [blame] | 274 | InX::DynStrTab = make<StringTableSection>(".dynstr", true); | 
| Rafael Espindola | 5ab1989 | 2017-05-11 23:16:43 +0000 | [diff] [blame] | 275 | InX::Dynamic = make<DynamicSection<ELFT>>(); | 
| Eugene Leviant | a96d902 | 2016-11-16 10:02:27 +0000 | [diff] [blame] | 276 | In<ELFT>::RelaDyn = make<RelocationSection<ELFT>>( | 
| Rui Ueyama | d57e74b7 | 2017-03-17 23:29:01 +0000 | [diff] [blame] | 277 | Config->IsRela ? ".rela.dyn" : ".rel.dyn", Config->ZCombreloc); | 
| Rafael Espindola | 895aea6 | 2017-05-11 22:02:41 +0000 | [diff] [blame] | 278 | InX::ShStrTab = make<StringTableSection>(".shstrtab", false); | 
| Rui Ueyama | 4197a6a | 2016-02-05 18:41:40 +0000 | [diff] [blame] | 279 |  | 
| Rui Ueyama | 9d1bacb1 | 2017-02-27 02:31:26 +0000 | [diff] [blame] | 280 | Out::ElfHeader = make<OutputSection>("", 0, SHF_ALLOC); | 
|  | 281 | Out::ElfHeader->Size = sizeof(Elf_Ehdr); | 
|  | 282 | Out::ProgramHeaders = make<OutputSection>("", 0, SHF_ALLOC); | 
| Rui Ueyama | 6bd3822 | 2017-04-05 21:37:09 +0000 | [diff] [blame] | 283 | Out::ProgramHeaders->updateAlignment(Config->Wordsize); | 
| Rui Ueyama | 4197a6a | 2016-02-05 18:41:40 +0000 | [diff] [blame] | 284 |  | 
| Rui Ueyama | e8a6102 | 2016-11-05 23:05:47 +0000 | [diff] [blame] | 285 | if (needsInterpSection<ELFT>()) { | 
| Rafael Espindola | 895aea6 | 2017-05-11 22:02:41 +0000 | [diff] [blame] | 286 | InX::Interp = createInterpSection(); | 
|  | 287 | Add(InX::Interp); | 
| Rui Ueyama | e8a6102 | 2016-11-05 23:05:47 +0000 | [diff] [blame] | 288 | } else { | 
| Rafael Espindola | 895aea6 | 2017-05-11 22:02:41 +0000 | [diff] [blame] | 289 | InX::Interp = nullptr; | 
| Rui Ueyama | e8a6102 | 2016-11-05 23:05:47 +0000 | [diff] [blame] | 290 | } | 
| Rui Ueyama | 3a41be2 | 2016-04-07 22:49:21 +0000 | [diff] [blame] | 291 |  | 
| George Rimar | f21aade | 2016-08-31 08:38:11 +0000 | [diff] [blame] | 292 | if (Config->Strip != StripPolicy::All) { | 
| Rafael Espindola | 895aea6 | 2017-05-11 22:02:41 +0000 | [diff] [blame] | 293 | InX::StrTab = make<StringTableSection>(".strtab", false); | 
| George Rimar | f45f681 | 2017-05-16 08:53:30 +0000 | [diff] [blame] | 294 | InX::SymTab = make<SymbolTableSection<ELFT>>(*InX::StrTab); | 
| Rui Ueyama | 4197a6a | 2016-02-05 18:41:40 +0000 | [diff] [blame] | 295 | } | 
| Rui Ueyama | cfadbd9 | 2016-11-01 23:12:51 +0000 | [diff] [blame] | 296 |  | 
| Rui Ueyama | c4030a1 | 2016-11-22 00:54:15 +0000 | [diff] [blame] | 297 | if (Config->BuildId != BuildIdKind::None) { | 
| Rafael Espindola | 895aea6 | 2017-05-11 22:02:41 +0000 | [diff] [blame] | 298 | InX::BuildId = make<BuildIdSection>(); | 
|  | 299 | Add(InX::BuildId); | 
| Rui Ueyama | c4030a1 | 2016-11-22 00:54:15 +0000 | [diff] [blame] | 300 | } | 
| Rui Ueyama | e8a6102 | 2016-11-05 23:05:47 +0000 | [diff] [blame] | 301 |  | 
| Rafael Espindola | 895aea6 | 2017-05-11 22:02:41 +0000 | [diff] [blame] | 302 | InX::Common = createCommonSection<ELFT>(); | 
|  | 303 | if (InX::Common) | 
| George Rimar | 176d606 | 2017-03-17 13:31:07 +0000 | [diff] [blame] | 304 | Add(InX::Common); | 
| Simon Atanasyan | ce02cf0 | 2016-11-09 21:36:56 +0000 | [diff] [blame] | 305 |  | 
| Rafael Espindola | 895aea6 | 2017-05-11 22:02:41 +0000 | [diff] [blame] | 306 | InX::Bss = make<BssSection>(".bss"); | 
|  | 307 | Add(InX::Bss); | 
|  | 308 | InX::BssRelRo = make<BssSection>(".bss.rel.ro"); | 
|  | 309 | Add(InX::BssRelRo); | 
| George Rimar | 1ab9cf4 | 2017-03-17 10:14:53 +0000 | [diff] [blame] | 310 |  | 
| Rui Ueyama | 1d75de0 | 2016-11-22 04:28:39 +0000 | [diff] [blame] | 311 | // Add MIPS-specific sections. | 
| Rafael Espindola | 244ef98 | 2017-07-26 18:42:48 +0000 | [diff] [blame] | 312 | bool HasDynSymTab = !SharedFile<ELFT>::Instances.empty() || Config->Pic || | 
|  | 313 | Config->ExportDynamic; | 
| Simon Atanasyan | ce02cf0 | 2016-11-09 21:36:56 +0000 | [diff] [blame] | 314 | if (Config->EMachine == EM_MIPS) { | 
| George Rimar | 11992c86 | 2016-11-25 08:05:41 +0000 | [diff] [blame] | 315 | if (!Config->Shared && HasDynSymTab) { | 
| Rafael Espindola | 895aea6 | 2017-05-11 22:02:41 +0000 | [diff] [blame] | 316 | InX::MipsRldMap = make<MipsRldMapSection>(); | 
|  | 317 | Add(InX::MipsRldMap); | 
| Eugene Leviant | 17b7a57 | 2016-11-22 17:49:14 +0000 | [diff] [blame] | 318 | } | 
| Rui Ueyama | 1d75de0 | 2016-11-22 04:28:39 +0000 | [diff] [blame] | 319 | if (auto *Sec = MipsAbiFlagsSection<ELFT>::create()) | 
| Rui Ueyama | 7ddd7a8 | 2017-02-05 05:18:58 +0000 | [diff] [blame] | 320 | Add(Sec); | 
| Rui Ueyama | 1d75de0 | 2016-11-22 04:28:39 +0000 | [diff] [blame] | 321 | if (auto *Sec = MipsOptionsSection<ELFT>::create()) | 
| Rui Ueyama | 7ddd7a8 | 2017-02-05 05:18:58 +0000 | [diff] [blame] | 322 | Add(Sec); | 
| Rui Ueyama | 1d75de0 | 2016-11-22 04:28:39 +0000 | [diff] [blame] | 323 | if (auto *Sec = MipsReginfoSection<ELFT>::create()) | 
| Rui Ueyama | 7ddd7a8 | 2017-02-05 05:18:58 +0000 | [diff] [blame] | 324 | Add(Sec); | 
| Simon Atanasyan | ce02cf0 | 2016-11-09 21:36:56 +0000 | [diff] [blame] | 325 | } | 
| Eugene Leviant | 41ca327 | 2016-11-10 09:48:29 +0000 | [diff] [blame] | 326 |  | 
| George Rimar | 11992c86 | 2016-11-25 08:05:41 +0000 | [diff] [blame] | 327 | if (HasDynSymTab) { | 
| George Rimar | 69b17c3 | 2017-05-16 10:04:42 +0000 | [diff] [blame] | 328 | InX::DynSymTab = make<SymbolTableSection<ELFT>>(*InX::DynStrTab); | 
|  | 329 | Add(InX::DynSymTab); | 
| George Rimar | 11992c86 | 2016-11-25 08:05:41 +0000 | [diff] [blame] | 330 |  | 
|  | 331 | In<ELFT>::VerSym = make<VersionTableSection<ELFT>>(); | 
| Rui Ueyama | 7ddd7a8 | 2017-02-05 05:18:58 +0000 | [diff] [blame] | 332 | Add(In<ELFT>::VerSym); | 
| George Rimar | 11992c86 | 2016-11-25 08:05:41 +0000 | [diff] [blame] | 333 |  | 
|  | 334 | if (!Config->VersionDefinitions.empty()) { | 
|  | 335 | In<ELFT>::VerDef = make<VersionDefinitionSection<ELFT>>(); | 
| Rui Ueyama | 7ddd7a8 | 2017-02-05 05:18:58 +0000 | [diff] [blame] | 336 | Add(In<ELFT>::VerDef); | 
| George Rimar | 11992c86 | 2016-11-25 08:05:41 +0000 | [diff] [blame] | 337 | } | 
|  | 338 |  | 
|  | 339 | In<ELFT>::VerNeed = make<VersionNeedSection<ELFT>>(); | 
| Rui Ueyama | 7ddd7a8 | 2017-02-05 05:18:58 +0000 | [diff] [blame] | 340 | Add(In<ELFT>::VerNeed); | 
| George Rimar | 11992c86 | 2016-11-25 08:05:41 +0000 | [diff] [blame] | 341 |  | 
|  | 342 | if (Config->GnuHash) { | 
| George Rimar | 69b17c3 | 2017-05-16 10:04:42 +0000 | [diff] [blame] | 343 | InX::GnuHashTab = make<GnuHashTableSection>(); | 
|  | 344 | Add(InX::GnuHashTab); | 
| George Rimar | 11992c86 | 2016-11-25 08:05:41 +0000 | [diff] [blame] | 345 | } | 
|  | 346 |  | 
|  | 347 | if (Config->SysvHash) { | 
|  | 348 | In<ELFT>::HashTab = make<HashTableSection<ELFT>>(); | 
| Rui Ueyama | 7ddd7a8 | 2017-02-05 05:18:58 +0000 | [diff] [blame] | 349 | Add(In<ELFT>::HashTab); | 
| George Rimar | 11992c86 | 2016-11-25 08:05:41 +0000 | [diff] [blame] | 350 | } | 
|  | 351 |  | 
| Rafael Espindola | 5ab1989 | 2017-05-11 23:16:43 +0000 | [diff] [blame] | 352 | Add(InX::Dynamic); | 
| Rafael Espindola | 895aea6 | 2017-05-11 22:02:41 +0000 | [diff] [blame] | 353 | Add(InX::DynStrTab); | 
| Rui Ueyama | 7ddd7a8 | 2017-02-05 05:18:58 +0000 | [diff] [blame] | 354 | Add(In<ELFT>::RelaDyn); | 
| George Rimar | 11992c86 | 2016-11-25 08:05:41 +0000 | [diff] [blame] | 355 | } | 
|  | 356 |  | 
| Rui Ueyama | 1d75de0 | 2016-11-22 04:28:39 +0000 | [diff] [blame] | 357 | // Add .got. MIPS' .got is so different from the other archs, | 
|  | 358 | // it has its own class. | 
| George Rimar | 11992c86 | 2016-11-25 08:05:41 +0000 | [diff] [blame] | 359 | if (Config->EMachine == EM_MIPS) { | 
| Rafael Espindola | b3aa2c9 | 2017-05-11 21:33:30 +0000 | [diff] [blame] | 360 | InX::MipsGot = make<MipsGotSection>(); | 
|  | 361 | Add(InX::MipsGot); | 
| George Rimar | 11992c86 | 2016-11-25 08:05:41 +0000 | [diff] [blame] | 362 | } else { | 
| Rafael Espindola | a6465bb | 2017-05-18 16:45:36 +0000 | [diff] [blame] | 363 | InX::Got = make<GotSection>(); | 
| Rafael Espindola | 88ab9fb | 2017-05-11 23:26:03 +0000 | [diff] [blame] | 364 | Add(InX::Got); | 
| George Rimar | 11992c86 | 2016-11-25 08:05:41 +0000 | [diff] [blame] | 365 | } | 
| Simon Atanasyan | 725dc14 | 2016-11-16 21:01:02 +0000 | [diff] [blame] | 366 |  | 
| Rafael Espindola | 4b1c369 | 2017-05-11 21:23:38 +0000 | [diff] [blame] | 367 | InX::GotPlt = make<GotPltSection>(); | 
|  | 368 | Add(InX::GotPlt); | 
| Rafael Espindola | 895aea6 | 2017-05-11 22:02:41 +0000 | [diff] [blame] | 369 | InX::IgotPlt = make<IgotPltSection>(); | 
|  | 370 | Add(InX::IgotPlt); | 
| George Rimar | 3fb5a6d | 2016-11-29 16:05:27 +0000 | [diff] [blame] | 371 |  | 
|  | 372 | if (Config->GdbIndex) { | 
| Rafael Espindola | 300b386 | 2017-07-12 23:56:53 +0000 | [diff] [blame] | 373 | InX::GdbIndex = createGdbIndex<ELFT>(); | 
| Rafael Espindola | 895aea6 | 2017-05-11 22:02:41 +0000 | [diff] [blame] | 374 | Add(InX::GdbIndex); | 
| George Rimar | 3fb5a6d | 2016-11-29 16:05:27 +0000 | [diff] [blame] | 375 | } | 
|  | 376 |  | 
|  | 377 | // We always need to add rel[a].plt to output if it has entries. | 
|  | 378 | // Even for static linking it can contain R_[*]_IRELATIVE relocations. | 
|  | 379 | In<ELFT>::RelaPlt = make<RelocationSection<ELFT>>( | 
| Rui Ueyama | d57e74b7 | 2017-03-17 23:29:01 +0000 | [diff] [blame] | 380 | Config->IsRela ? ".rela.plt" : ".rel.plt", false /*Sort*/); | 
| Rui Ueyama | 7ddd7a8 | 2017-02-05 05:18:58 +0000 | [diff] [blame] | 381 | Add(In<ELFT>::RelaPlt); | 
| George Rimar | 3fb5a6d | 2016-11-29 16:05:27 +0000 | [diff] [blame] | 382 |  | 
| Peter Smith | baffdb8 | 2016-12-08 12:58:55 +0000 | [diff] [blame] | 383 | // The RelaIplt immediately follows .rel.plt (.rel.dyn for ARM) to ensure | 
|  | 384 | // that the IRelative relocations are processed last by the dynamic loader | 
|  | 385 | In<ELFT>::RelaIplt = make<RelocationSection<ELFT>>( | 
|  | 386 | (Config->EMachine == EM_ARM) ? ".rel.dyn" : In<ELFT>::RelaPlt->Name, | 
|  | 387 | false /*Sort*/); | 
| Rui Ueyama | 7ddd7a8 | 2017-02-05 05:18:58 +0000 | [diff] [blame] | 388 | Add(In<ELFT>::RelaIplt); | 
| Peter Smith | baffdb8 | 2016-12-08 12:58:55 +0000 | [diff] [blame] | 389 |  | 
| Rafael Espindola | 895aea6 | 2017-05-11 22:02:41 +0000 | [diff] [blame] | 390 | InX::Plt = make<PltSection>(Target->PltHeaderSize); | 
|  | 391 | Add(InX::Plt); | 
|  | 392 | InX::Iplt = make<PltSection>(0); | 
|  | 393 | Add(InX::Iplt); | 
| George Rimar | 3fb5a6d | 2016-11-29 16:05:27 +0000 | [diff] [blame] | 394 |  | 
| Rafael Espindola | 66b4e21 | 2017-02-23 22:06:28 +0000 | [diff] [blame] | 395 | if (!Config->Relocatable) { | 
| George Rimar | 1c74c2f | 2017-03-09 08:45:25 +0000 | [diff] [blame] | 396 | if (Config->EhFrameHdr) { | 
|  | 397 | In<ELFT>::EhFrameHdr = make<EhFrameHeader<ELFT>>(); | 
|  | 398 | Add(In<ELFT>::EhFrameHdr); | 
|  | 399 | } | 
| Rafael Espindola | 66b4e21 | 2017-02-23 22:06:28 +0000 | [diff] [blame] | 400 | In<ELFT>::EhFrame = make<EhFrameSection<ELFT>>(); | 
|  | 401 | Add(In<ELFT>::EhFrame); | 
|  | 402 | } | 
|  | 403 |  | 
| George Rimar | 69b17c3 | 2017-05-16 10:04:42 +0000 | [diff] [blame] | 404 | if (InX::SymTab) | 
|  | 405 | Add(InX::SymTab); | 
| Rafael Espindola | 895aea6 | 2017-05-11 22:02:41 +0000 | [diff] [blame] | 406 | Add(InX::ShStrTab); | 
|  | 407 | if (InX::StrTab) | 
|  | 408 | Add(InX::StrTab); | 
| Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 409 | } | 
|  | 410 |  | 
| Rafael Espindola | 5616adf | 2017-03-08 22:36:28 +0000 | [diff] [blame] | 411 | static bool shouldKeepInSymtab(SectionBase *Sec, StringRef SymName, | 
| Rafael Espindola | ccfe3cb | 2016-04-04 14:04:16 +0000 | [diff] [blame] | 412 | const SymbolBody &B) { | 
| Rafael Espindola | 08d6a3f | 2017-02-11 01:40:49 +0000 | [diff] [blame] | 413 | if (B.isFile() || B.isSection()) | 
| Rafael Espindola | 10d71ff | 2016-01-27 18:04:26 +0000 | [diff] [blame] | 414 | return false; | 
|  | 415 |  | 
| Rafael Espindola | 10d71ff | 2016-01-27 18:04:26 +0000 | [diff] [blame] | 416 | // If sym references a section in a discarded group, don't keep it. | 
| Rafael Espindola | 774ea7d | 2017-02-23 16:49:07 +0000 | [diff] [blame] | 417 | if (Sec == &InputSection::Discarded) | 
| Rafael Espindola | 10d71ff | 2016-01-27 18:04:26 +0000 | [diff] [blame] | 418 | return false; | 
|  | 419 |  | 
| George Rimar | 9503f6d | 2016-08-31 08:46:30 +0000 | [diff] [blame] | 420 | if (Config->Discard == DiscardPolicy::None) | 
| Rafael Espindola | 10d71ff | 2016-01-27 18:04:26 +0000 | [diff] [blame] | 421 | return true; | 
|  | 422 |  | 
|  | 423 | // In ELF assembly .L symbols are normally discarded by the assembler. | 
|  | 424 | // If the assembler fails to do so, the linker discards them if | 
|  | 425 | // * --discard-locals is used. | 
|  | 426 | // * The symbol is in a SHF_MERGE section, which is normally the reason for | 
|  | 427 | //   the assembler keeping the .L symbol. | 
|  | 428 | if (!SymName.startswith(".L") && !SymName.empty()) | 
|  | 429 | return true; | 
|  | 430 |  | 
| George Rimar | 9503f6d | 2016-08-31 08:46:30 +0000 | [diff] [blame] | 431 | if (Config->Discard == DiscardPolicy::Locals) | 
| Rafael Espindola | 10d71ff | 2016-01-27 18:04:26 +0000 | [diff] [blame] | 432 | return false; | 
|  | 433 |  | 
| Rafael Espindola | 1854a8e | 2016-10-26 12:36:56 +0000 | [diff] [blame] | 434 | return !Sec || !(Sec->Flags & SHF_MERGE); | 
| Rafael Espindola | 10d71ff | 2016-01-27 18:04:26 +0000 | [diff] [blame] | 435 | } | 
|  | 436 |  | 
| George Rimar | 7702bc2 | 2017-03-16 11:20:02 +0000 | [diff] [blame] | 437 | static bool includeInSymtab(const SymbolBody &B) { | 
| Rafael Espindola | 474eb01 | 2016-05-05 16:40:28 +0000 | [diff] [blame] | 438 | if (!B.isLocal() && !B.symbol()->IsUsedInRegularObj) | 
|  | 439 | return false; | 
|  | 440 |  | 
| Rui Ueyama | 80474a2 | 2017-02-28 19:29:55 +0000 | [diff] [blame] | 441 | if (auto *D = dyn_cast<DefinedRegular>(&B)) { | 
| Rafael Espindola | 474eb01 | 2016-05-05 16:40:28 +0000 | [diff] [blame] | 442 | // Always include absolute symbols. | 
| Rafael Espindola | 5616adf | 2017-03-08 22:36:28 +0000 | [diff] [blame] | 443 | SectionBase *Sec = D->Section; | 
|  | 444 | if (!Sec) | 
| Rafael Espindola | 474eb01 | 2016-05-05 16:40:28 +0000 | [diff] [blame] | 445 | return true; | 
| Rafael Espindola | 5616adf | 2017-03-08 22:36:28 +0000 | [diff] [blame] | 446 | if (auto *IS = dyn_cast<InputSectionBase>(Sec)) { | 
|  | 447 | Sec = IS->Repl; | 
|  | 448 | IS = cast<InputSectionBase>(Sec); | 
|  | 449 | // Exclude symbols pointing to garbage-collected sections. | 
|  | 450 | if (!IS->Live) | 
|  | 451 | return false; | 
|  | 452 | } | 
|  | 453 | if (auto *S = dyn_cast<MergeInputSection>(Sec)) | 
| Rui Ueyama | 90fa372 | 2016-05-22 00:41:38 +0000 | [diff] [blame] | 454 | if (!S->getSectionPiece(D->Value)->Live) | 
| Rafael Espindola | 474eb01 | 2016-05-05 16:40:28 +0000 | [diff] [blame] | 455 | return false; | 
| Rui Ueyama | 9c77d27 | 2017-08-10 15:54:27 +0000 | [diff] [blame] | 456 | return true; | 
| Rafael Espindola | 474eb01 | 2016-05-05 16:40:28 +0000 | [diff] [blame] | 457 | } | 
| Rui Ueyama | 9c77d27 | 2017-08-10 15:54:27 +0000 | [diff] [blame] | 458 |  | 
|  | 459 | if (auto *Sym = dyn_cast<DefinedCommon>(&B)) | 
|  | 460 | return Sym->Live; | 
| Rafael Espindola | 474eb01 | 2016-05-05 16:40:28 +0000 | [diff] [blame] | 461 | return true; | 
|  | 462 | } | 
| Rafael Espindola | 462220d | 2016-05-05 16:38:46 +0000 | [diff] [blame] | 463 |  | 
| Rui Ueyama | 5a9640b | 2015-10-08 23:49:30 +0000 | [diff] [blame] | 464 | // Local symbols are not in the linker's symbol table. This function scans | 
|  | 465 | // each object file's symbol table to copy local symbols to the output. | 
|  | 466 | template <class ELFT> void Writer<ELFT>::copyLocalSymbols() { | 
| George Rimar | 69b17c3 | 2017-05-16 10:04:42 +0000 | [diff] [blame] | 467 | if (!InX::SymTab) | 
| Rui Ueyama | 90f76fb | 2016-01-21 03:07:38 +0000 | [diff] [blame] | 468 | return; | 
| Rui Ueyama | 709fb2bb1 | 2017-07-26 22:13:32 +0000 | [diff] [blame] | 469 | for (ObjFile<ELFT> *F : ObjFile<ELFT>::Instances) { | 
| Rafael Espindola | 67d72c0 | 2016-03-11 12:06:30 +0000 | [diff] [blame] | 470 | for (SymbolBody *B : F->getLocalSymbols()) { | 
| George Rimar | 78fe56e | 2016-10-11 09:07:14 +0000 | [diff] [blame] | 471 | if (!B->IsLocal) | 
| Rui Ueyama | 3fc0f7e | 2016-11-23 18:07:33 +0000 | [diff] [blame] | 472 | fatal(toString(F) + | 
| George Rimar | 78fe56e | 2016-10-11 09:07:14 +0000 | [diff] [blame] | 473 | ": broken object: getLocalSymbols returns a non-local symbol"); | 
| Rui Ueyama | 80474a2 | 2017-02-28 19:29:55 +0000 | [diff] [blame] | 474 | auto *DR = dyn_cast<DefinedRegular>(B); | 
| Rui Ueyama | 3fc0f7e | 2016-11-23 18:07:33 +0000 | [diff] [blame] | 475 |  | 
| Rafael Espindola | ccfe3cb | 2016-04-04 14:04:16 +0000 | [diff] [blame] | 476 | // No reason to keep local undefined symbol in symtab. | 
|  | 477 | if (!DR) | 
| Rafael Espindola | 444576d | 2015-10-09 19:25:07 +0000 | [diff] [blame] | 478 | continue; | 
| George Rimar | 7702bc2 | 2017-03-16 11:20:02 +0000 | [diff] [blame] | 479 | if (!includeInSymtab(*B)) | 
| Rafael Espindola | 462220d | 2016-05-05 16:38:46 +0000 | [diff] [blame] | 480 | continue; | 
| Rui Ueyama | 3fc0f7e | 2016-11-23 18:07:33 +0000 | [diff] [blame] | 481 |  | 
| Rafael Espindola | 5616adf | 2017-03-08 22:36:28 +0000 | [diff] [blame] | 482 | SectionBase *Sec = DR->Section; | 
| George Rimar | 7702bc2 | 2017-03-16 11:20:02 +0000 | [diff] [blame] | 483 | if (!shouldKeepInSymtab(Sec, B->getName(), *B)) | 
| Rafael Espindola | ccfe3cb | 2016-04-04 14:04:16 +0000 | [diff] [blame] | 484 | continue; | 
| George Rimar | 69b17c3 | 2017-05-16 10:04:42 +0000 | [diff] [blame] | 485 | InX::SymTab->addSymbol(B); | 
| Rui Ueyama | 5a9640b | 2015-10-08 23:49:30 +0000 | [diff] [blame] | 486 | } | 
|  | 487 | } | 
|  | 488 | } | 
|  | 489 |  | 
| Rafael Espindola | 08d6a3f | 2017-02-11 01:40:49 +0000 | [diff] [blame] | 490 | template <class ELFT> void Writer<ELFT>::addSectionSymbols() { | 
|  | 491 | // Create one STT_SECTION symbol for each output section we might | 
|  | 492 | // have a relocation with. | 
| Rafael Espindola | d48b208 | 2017-07-04 19:08:40 +0000 | [diff] [blame] | 493 | for (BaseCommand *Base : Script->Opt.Commands) { | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 494 | auto *Sec = dyn_cast<OutputSection>(Base); | 
|  | 495 | if (!Sec) | 
| Rui Ueyama | 73d29ab | 2017-02-28 19:43:54 +0000 | [diff] [blame] | 496 | continue; | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 497 | auto I = llvm::find_if(Sec->Commands, [](BaseCommand *Base) { | 
| Rafael Espindola | d48b208 | 2017-07-04 19:08:40 +0000 | [diff] [blame] | 498 | if (auto *ISD = dyn_cast<InputSectionDescription>(Base)) | 
|  | 499 | return !ISD->Sections.empty(); | 
|  | 500 | return false; | 
|  | 501 | }); | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 502 | if (I == Sec->Commands.end()) | 
| Rafael Espindola | d48b208 | 2017-07-04 19:08:40 +0000 | [diff] [blame] | 503 | continue; | 
|  | 504 | InputSection *IS = cast<InputSectionDescription>(*I)->Sections[0]; | 
| Rui Ueyama | 73d29ab | 2017-02-28 19:43:54 +0000 | [diff] [blame] | 505 | if (isa<SyntheticSection>(IS) || IS->Type == SHT_REL || | 
| Rafael Espindola | 08d6a3f | 2017-02-11 01:40:49 +0000 | [diff] [blame] | 506 | IS->Type == SHT_RELA) | 
|  | 507 | continue; | 
| Rafael Espindola | 08d6a3f | 2017-02-11 01:40:49 +0000 | [diff] [blame] | 508 |  | 
| Rui Ueyama | 175e81c | 2017-02-28 19:36:30 +0000 | [diff] [blame] | 509 | auto *Sym = | 
|  | 510 | make<DefinedRegular>("", /*IsLocal=*/true, /*StOther=*/0, STT_SECTION, | 
| Rafael Espindola | 6e93d05 | 2017-08-04 22:31:42 +0000 | [diff] [blame] | 511 | /*Value=*/0, /*Size=*/0, IS); | 
| George Rimar | 69b17c3 | 2017-05-16 10:04:42 +0000 | [diff] [blame] | 512 | InX::SymTab->addSymbol(Sym); | 
| Rafael Espindola | 08d6a3f | 2017-02-11 01:40:49 +0000 | [diff] [blame] | 513 | } | 
|  | 514 | } | 
|  | 515 |  | 
| Rui Ueyama | 26ad057 | 2017-02-16 04:51:46 +0000 | [diff] [blame] | 516 | // Today's loaders have a feature to make segments read-only after | 
|  | 517 | // processing dynamic relocations to enhance security. PT_GNU_RELRO | 
|  | 518 | // is defined for that. | 
|  | 519 | // | 
|  | 520 | // This function returns true if a section needs to be put into a | 
|  | 521 | // PT_GNU_RELRO segment. | 
| Rafael Espindola | dc49af9 | 2017-07-24 23:55:33 +0000 | [diff] [blame] | 522 | static bool isRelroSection(const OutputSection *Sec) { | 
| Rafael Espindola | 4fc6044 | 2016-02-10 22:43:13 +0000 | [diff] [blame] | 523 | if (!Config->ZRelro) | 
|  | 524 | return false; | 
| Rui Ueyama | 26ad057 | 2017-02-16 04:51:46 +0000 | [diff] [blame] | 525 |  | 
| Rafael Espindola | e08e78d | 2016-11-09 23:23:45 +0000 | [diff] [blame] | 526 | uint64_t Flags = Sec->Flags; | 
| Rui Ueyama | 9d773f3 | 2017-04-13 05:40:07 +0000 | [diff] [blame] | 527 |  | 
|  | 528 | // Non-allocatable or non-writable sections don't need RELRO because | 
|  | 529 | // they are not writable or not even mapped to memory in the first place. | 
|  | 530 | // RELRO is for sections that are essentially read-only but need to | 
|  | 531 | // be writable only at process startup to allow dynamic linker to | 
|  | 532 | // apply relocations. | 
| George Rimar | e3336c0 | 2015-11-24 10:15:50 +0000 | [diff] [blame] | 533 | if (!(Flags & SHF_ALLOC) || !(Flags & SHF_WRITE)) | 
|  | 534 | return false; | 
| Rui Ueyama | 9d773f3 | 2017-04-13 05:40:07 +0000 | [diff] [blame] | 535 |  | 
|  | 536 | // Once initialized, TLS data segments are used as data templates | 
|  | 537 | // for a thread-local storage. For each new thread, runtime | 
|  | 538 | // allocates memory for a TLS and copy templates there. No thread | 
|  | 539 | // are supposed to use templates directly. Thus, it can be in RELRO. | 
| Rui Ueyama | ccfc326 | 2015-12-10 19:13:08 +0000 | [diff] [blame] | 540 | if (Flags & SHF_TLS) | 
|  | 541 | return true; | 
| Rui Ueyama | 26ad057 | 2017-02-16 04:51:46 +0000 | [diff] [blame] | 542 |  | 
| Rui Ueyama | 9d773f3 | 2017-04-13 05:40:07 +0000 | [diff] [blame] | 543 | // .init_array, .preinit_array and .fini_array contain pointers to | 
|  | 544 | // functions that are executed on process startup or exit. These | 
|  | 545 | // pointers are set by the static linker, and they are not expected | 
|  | 546 | // to change at runtime. But if you are an attacker, you could do | 
|  | 547 | // interesting things by manipulating pointers in .fini_array, for | 
|  | 548 | // example. So they are put into RELRO. | 
| Rafael Espindola | 04a2e34 | 2016-11-09 01:42:41 +0000 | [diff] [blame] | 549 | uint32_t Type = Sec->Type; | 
| Rui Ueyama | ccfc326 | 2015-12-10 19:13:08 +0000 | [diff] [blame] | 550 | if (Type == SHT_INIT_ARRAY || Type == SHT_FINI_ARRAY || | 
|  | 551 | Type == SHT_PREINIT_ARRAY) | 
| George Rimar | e3336c0 | 2015-11-24 10:15:50 +0000 | [diff] [blame] | 552 | return true; | 
| Rui Ueyama | 26ad057 | 2017-02-16 04:51:46 +0000 | [diff] [blame] | 553 |  | 
| Rui Ueyama | 9d773f3 | 2017-04-13 05:40:07 +0000 | [diff] [blame] | 554 | // .got contains pointers to external symbols. They are resolved by | 
|  | 555 | // the dynamic linker when a module is loaded into memory, and after | 
|  | 556 | // that they are not expected to change. So, it can be in RELRO. | 
| Rafael Espindola | db5e56f | 2017-05-31 20:17:44 +0000 | [diff] [blame] | 557 | if (InX::Got && Sec == InX::Got->getParent()) | 
| Simon Atanasyan | 725dc14 | 2016-11-16 21:01:02 +0000 | [diff] [blame] | 558 | return true; | 
| Rui Ueyama | 9d773f3 | 2017-04-13 05:40:07 +0000 | [diff] [blame] | 559 |  | 
|  | 560 | // .got.plt contains pointers to external function symbols. They are | 
|  | 561 | // by default resolved lazily, so we usually cannot put it into RELRO. | 
|  | 562 | // However, if "-z now" is given, the lazy symbol resolution is | 
|  | 563 | // disabled, which enables us to put it into RELRO. | 
| Rafael Espindola | db5e56f | 2017-05-31 20:17:44 +0000 | [diff] [blame] | 564 | if (Sec == InX::GotPlt->getParent()) | 
| Rui Ueyama | 9d773f3 | 2017-04-13 05:40:07 +0000 | [diff] [blame] | 565 | return Config->ZNow; | 
|  | 566 |  | 
|  | 567 | // .dynamic section contains data for the dynamic linker, and | 
|  | 568 | // there's no need to write to it at runtime, so it's better to put | 
|  | 569 | // it into RELRO. | 
| Rafael Espindola | db5e56f | 2017-05-31 20:17:44 +0000 | [diff] [blame] | 570 | if (Sec == InX::Dynamic->getParent()) | 
| Rui Ueyama | 9d773f3 | 2017-04-13 05:40:07 +0000 | [diff] [blame] | 571 | return true; | 
|  | 572 |  | 
|  | 573 | // .bss.rel.ro is used for copy relocations for read-only symbols. | 
|  | 574 | // Since the dynamic linker needs to process copy relocations, the | 
|  | 575 | // section cannot be read-only, but once initialized, they shouldn't | 
|  | 576 | // change. | 
| Rafael Espindola | db5e56f | 2017-05-31 20:17:44 +0000 | [diff] [blame] | 577 | if (Sec == InX::BssRelRo->getParent()) | 
| Peter Collingbourne | feb6629 | 2017-01-10 01:21:50 +0000 | [diff] [blame] | 578 | return true; | 
| Rui Ueyama | 26ad057 | 2017-02-16 04:51:46 +0000 | [diff] [blame] | 579 |  | 
| Rui Ueyama | 9d773f3 | 2017-04-13 05:40:07 +0000 | [diff] [blame] | 580 | // Sections with some special names are put into RELRO. This is a | 
|  | 581 | // bit unfortunate because section names shouldn't be significant in | 
|  | 582 | // ELF in spirit. But in reality many linker features depend on | 
|  | 583 | // magic section names. | 
| Rafael Espindola | 4084941 | 2017-02-24 14:28:00 +0000 | [diff] [blame] | 584 | StringRef S = Sec->Name; | 
| Rui Ueyama | 01faef0 | 2015-12-10 19:19:04 +0000 | [diff] [blame] | 585 | return S == ".data.rel.ro" || S == ".ctors" || S == ".dtors" || S == ".jcr" || | 
| George Rimar | d003c7f | 2016-12-20 11:28:54 +0000 | [diff] [blame] | 586 | S == ".eh_frame" || S == ".openbsd.randomdata"; | 
| George Rimar | e3336c0 | 2015-11-24 10:15:50 +0000 | [diff] [blame] | 587 | } | 
|  | 588 |  | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 589 | // We compute a rank for each section. The rank indicates where the | 
|  | 590 | // section should be placed in the file.  Instead of using simple | 
|  | 591 | // numbers (0,1,2...), we use a series of flags. One for each decision | 
|  | 592 | // point when placing the section. | 
|  | 593 | // Using flags has two key properties: | 
|  | 594 | // * It is easy to check if a give branch was taken. | 
|  | 595 | // * It is easy two see how similar two ranks are (see getRankProximity). | 
|  | 596 | enum RankFlags { | 
| Rafael Espindola | d23e926 | 2017-05-26 17:23:25 +0000 | [diff] [blame] | 597 | RF_NOT_ADDR_SET = 1 << 16, | 
|  | 598 | RF_NOT_INTERP = 1 << 15, | 
|  | 599 | RF_NOT_ALLOC = 1 << 14, | 
|  | 600 | RF_WRITE = 1 << 13, | 
|  | 601 | RF_EXEC_WRITE = 1 << 12, | 
| Rafael Espindola | 246c1c4 | 2017-05-18 16:20:12 +0000 | [diff] [blame] | 602 | RF_EXEC = 1 << 11, | 
|  | 603 | RF_NON_TLS_BSS = 1 << 10, | 
|  | 604 | RF_NON_TLS_BSS_RO = 1 << 9, | 
|  | 605 | RF_NOT_TLS = 1 << 8, | 
|  | 606 | RF_BSS = 1 << 7, | 
|  | 607 | RF_PPC_NOT_TOCBSS = 1 << 6, | 
|  | 608 | RF_PPC_OPD = 1 << 5, | 
|  | 609 | RF_PPC_TOCL = 1 << 4, | 
|  | 610 | RF_PPC_TOC = 1 << 3, | 
|  | 611 | RF_PPC_BRANCH_LT = 1 << 2, | 
|  | 612 | RF_MIPS_GPREL = 1 << 1, | 
|  | 613 | RF_MIPS_NOT_GOT = 1 << 0 | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 614 | }; | 
| Rui Ueyama | e288eef | 2016-11-02 18:58:44 +0000 | [diff] [blame] | 615 |  | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 616 | static unsigned getSectionRank(const OutputSection *Sec) { | 
|  | 617 | unsigned Rank = 0; | 
| Rui Ueyama | 5a9640b | 2015-10-08 23:49:30 +0000 | [diff] [blame] | 618 |  | 
| Rafael Espindola | 5967c97 | 2016-12-19 21:21:07 +0000 | [diff] [blame] | 619 | // We want to put section specified by -T option first, so we | 
|  | 620 | // can start assigning VA starting from them later. | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 621 | if (Config->SectionStartMap.count(Sec->Name)) | 
|  | 622 | return Rank; | 
|  | 623 | Rank |= RF_NOT_ADDR_SET; | 
|  | 624 |  | 
|  | 625 | // Put .interp first because some loaders want to see that section | 
|  | 626 | // on the first page of the executable file when loaded into memory. | 
|  | 627 | if (Sec->Name == ".interp") | 
|  | 628 | return Rank; | 
|  | 629 | Rank |= RF_NOT_INTERP; | 
|  | 630 |  | 
|  | 631 | // Allocatable sections go first to reduce the total PT_LOAD size and | 
|  | 632 | // so debug info doesn't change addresses in actual code. | 
|  | 633 | if (!(Sec->Flags & SHF_ALLOC)) | 
|  | 634 | return Rank | RF_NOT_ALLOC; | 
| Rafael Espindola | 5967c97 | 2016-12-19 21:21:07 +0000 | [diff] [blame] | 635 |  | 
| Rafael Espindola | d23e926 | 2017-05-26 17:23:25 +0000 | [diff] [blame] | 636 | // Sort sections based on their access permission in the following | 
|  | 637 | // order: R, RX, RWX, RW.  This order is based on the following | 
|  | 638 | // considerations: | 
|  | 639 | // * Read-only sections come first such that they go in the | 
|  | 640 | //   PT_LOAD covering the program headers at the start of the file. | 
|  | 641 | // * Read-only, executable sections come next, unless the | 
|  | 642 | //   -no-rosegment option is used. | 
|  | 643 | // * Writable, executable sections follow such that .plt on | 
|  | 644 | //   architectures where it needs to be writable will be placed | 
|  | 645 | //   between .text and .data. | 
|  | 646 | // * Writable sections come last, such that .bss lands at the very | 
|  | 647 | //   end of the last PT_LOAD. | 
|  | 648 | bool IsExec = Sec->Flags & SHF_EXECINSTR; | 
|  | 649 | bool IsWrite = Sec->Flags & SHF_WRITE; | 
| Rui Ueyama | 5a9640b | 2015-10-08 23:49:30 +0000 | [diff] [blame] | 650 |  | 
| Rafael Espindola | d23e926 | 2017-05-26 17:23:25 +0000 | [diff] [blame] | 651 | if (IsExec) { | 
|  | 652 | if (IsWrite) | 
|  | 653 | Rank |= RF_EXEC_WRITE; | 
|  | 654 | else if (!Config->SingleRoRx) | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 655 | Rank |= RF_EXEC; | 
| Rafael Espindola | d23e926 | 2017-05-26 17:23:25 +0000 | [diff] [blame] | 656 | } else { | 
|  | 657 | if (IsWrite) | 
|  | 658 | Rank |= RF_WRITE; | 
| Rafael Espindola | e979fd1 | 2016-09-29 22:48:55 +0000 | [diff] [blame] | 659 | } | 
| Rui Ueyama | 5a9640b | 2015-10-08 23:49:30 +0000 | [diff] [blame] | 660 |  | 
| Hal Finkel | 0d7e83b | 2015-10-13 17:57:46 +0000 | [diff] [blame] | 661 | // If we got here we know that both A and B are in the same PT_LOAD. | 
| Michael J. Spencer | 1bf7300 | 2015-10-16 23:11:07 +0000 | [diff] [blame] | 662 |  | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 663 | bool IsTls = Sec->Flags & SHF_TLS; | 
|  | 664 | bool IsNoBits = Sec->Type == SHT_NOBITS; | 
| Hal Finkel | 3bae2d8 | 2015-10-12 20:51:48 +0000 | [diff] [blame] | 665 |  | 
| Peter Collingbourne | 628ec9f | 2017-01-10 01:21:30 +0000 | [diff] [blame] | 666 | // The first requirement we have is to put (non-TLS) nobits sections last. The | 
|  | 667 | // reason is that the only thing the dynamic linker will see about them is a | 
|  | 668 | // p_memsz that is larger than p_filesz. Seeing that it zeros the end of the | 
|  | 669 | // PT_LOAD, so that has to correspond to the nobits sections. | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 670 | bool IsNonTlsNoBits = IsNoBits && !IsTls; | 
|  | 671 | if (IsNonTlsNoBits) | 
|  | 672 | Rank |= RF_NON_TLS_BSS; | 
| Peter Collingbourne | 628ec9f | 2017-01-10 01:21:30 +0000 | [diff] [blame] | 673 |  | 
|  | 674 | // We place nobits RelRo sections before plain r/w ones, and non-nobits RelRo | 
|  | 675 | // sections after r/w ones, so that the RelRo sections are contiguous. | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 676 | bool IsRelRo = isRelroSection(Sec); | 
|  | 677 | if (IsNonTlsNoBits && !IsRelRo) | 
|  | 678 | Rank |= RF_NON_TLS_BSS_RO; | 
|  | 679 | if (!IsNonTlsNoBits && IsRelRo) | 
|  | 680 | Rank |= RF_NON_TLS_BSS_RO; | 
| Peter Collingbourne | 628ec9f | 2017-01-10 01:21:30 +0000 | [diff] [blame] | 681 |  | 
|  | 682 | // The TLS initialization block needs to be a single contiguous block in a R/W | 
|  | 683 | // PT_LOAD, so stick TLS sections directly before the other RelRo R/W | 
|  | 684 | // sections. The TLS NOBITS sections are placed here as they don't take up | 
|  | 685 | // virtual address space in the PT_LOAD. | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 686 | if (!IsTls) | 
|  | 687 | Rank |= RF_NOT_TLS; | 
| Peter Collingbourne | 628ec9f | 2017-01-10 01:21:30 +0000 | [diff] [blame] | 688 |  | 
|  | 689 | // Within the TLS initialization block, the non-nobits sections need to appear | 
|  | 690 | // first. | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 691 | if (IsNoBits) | 
|  | 692 | Rank |= RF_BSS; | 
| George Rimar | e3336c0 | 2015-11-24 10:15:50 +0000 | [diff] [blame] | 693 |  | 
| Ben Dunbobbin | 9563755 | 2017-08-18 16:15:36 +0000 | [diff] [blame] | 694 | // Some architectures have additional ordering restrictions for sections | 
|  | 695 | // within the same PT_LOAD. | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 696 | if (Config->EMachine == EM_PPC64) { | 
|  | 697 | // PPC64 has a number of special SHT_PROGBITS+SHF_ALLOC+SHF_WRITE sections | 
|  | 698 | // that we would like to make sure appear is a specific order to maximize | 
|  | 699 | // their coverage by a single signed 16-bit offset from the TOC base | 
|  | 700 | // pointer. Conversely, the special .tocbss section should be first among | 
|  | 701 | // all SHT_NOBITS sections. This will put it next to the loaded special | 
|  | 702 | // PPC64 sections (and, thus, within reach of the TOC base pointer). | 
|  | 703 | StringRef Name = Sec->Name; | 
|  | 704 | if (Name != ".tocbss") | 
|  | 705 | Rank |= RF_PPC_NOT_TOCBSS; | 
| Hal Finkel | 9abc2a5 | 2015-10-13 19:07:29 +0000 | [diff] [blame] | 706 |  | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 707 | if (Name == ".opd") | 
|  | 708 | Rank |= RF_PPC_OPD; | 
|  | 709 |  | 
|  | 710 | if (Name == ".toc1") | 
|  | 711 | Rank |= RF_PPC_TOCL; | 
|  | 712 |  | 
|  | 713 | if (Name == ".toc") | 
|  | 714 | Rank |= RF_PPC_TOC; | 
|  | 715 |  | 
|  | 716 | if (Name == ".branch_lt") | 
|  | 717 | Rank |= RF_PPC_BRANCH_LT; | 
|  | 718 | } | 
|  | 719 | if (Config->EMachine == EM_MIPS) { | 
|  | 720 | // All sections with SHF_MIPS_GPREL flag should be grouped together | 
|  | 721 | // because data in these sections is addressable with a gp relative address. | 
|  | 722 | if (Sec->Flags & SHF_MIPS_GPREL) | 
|  | 723 | Rank |= RF_MIPS_GPREL; | 
|  | 724 |  | 
|  | 725 | if (Sec->Name != ".got") | 
|  | 726 | Rank |= RF_MIPS_NOT_GOT; | 
|  | 727 | } | 
|  | 728 |  | 
|  | 729 | return Rank; | 
|  | 730 | } | 
|  | 731 |  | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 732 | static bool compareSections(const BaseCommand *ACmd, const BaseCommand *BCmd) { | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 733 | const OutputSection *A = cast<OutputSection>(ACmd); | 
|  | 734 | const OutputSection *B = cast<OutputSection>(BCmd); | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 735 | if (A->SortRank != B->SortRank) | 
|  | 736 | return A->SortRank < B->SortRank; | 
|  | 737 | if (!(A->SortRank & RF_NOT_ADDR_SET)) | 
|  | 738 | return Config->SectionStartMap.lookup(A->Name) < | 
|  | 739 | Config->SectionStartMap.lookup(B->Name); | 
| Rafael Espindola | 24c073d | 2016-09-21 22:36:19 +0000 | [diff] [blame] | 740 | return false; | 
|  | 741 | } | 
|  | 742 |  | 
| Rafael Espindola | 24e6f36 | 2017-02-24 15:07:30 +0000 | [diff] [blame] | 743 | void PhdrEntry::add(OutputSection *Sec) { | 
| George Rimar | 6823c5f | 2017-09-07 11:01:10 +0000 | [diff] [blame] | 744 | LastSec = Sec; | 
|  | 745 | if (!FirstSec) | 
|  | 746 | FirstSec = Sec; | 
| Rafael Espindola | 3770763 | 2017-03-07 14:55:52 +0000 | [diff] [blame] | 747 | p_align = std::max(p_align, Sec->Alignment); | 
| Rafael Espindola | 17cb7c0 | 2016-12-19 17:01:01 +0000 | [diff] [blame] | 748 | if (p_type == PT_LOAD) | 
| George Rimar | 582ede8 | 2017-09-07 10:53:07 +0000 | [diff] [blame] | 749 | Sec->PtLoad = this; | 
| Eugene Leviant | bbe3860 | 2016-07-19 09:25:43 +0000 | [diff] [blame] | 750 | } | 
|  | 751 |  | 
| Denis Protivensky | 8e3b38a | 2015-11-12 09:52:08 +0000 | [diff] [blame] | 752 | template <class ELFT> | 
| Rafael Espindola | 5616adf | 2017-03-08 22:36:28 +0000 | [diff] [blame] | 753 | static Symbol *addRegular(StringRef Name, SectionBase *Sec, uint64_t Value, | 
|  | 754 | uint8_t StOther = STV_HIDDEN, | 
|  | 755 | uint8_t Binding = STB_WEAK) { | 
| Rafael Espindola | dab02d4 | 2016-11-17 21:20:16 +0000 | [diff] [blame] | 756 | // The linker generated symbols are added as STB_WEAK to allow user defined | 
|  | 757 | // ones to override them. | 
| Rafael Espindola | 244ef98 | 2017-07-26 18:42:48 +0000 | [diff] [blame] | 758 | return Symtab->addRegular<ELFT>(Name, StOther, STT_NOTYPE, Value, | 
|  | 759 | /*Size=*/0, Binding, Sec, | 
|  | 760 | /*File=*/nullptr); | 
| Eugene Leviant | ad4439e | 2016-11-11 11:33:32 +0000 | [diff] [blame] | 761 | } | 
|  | 762 |  | 
|  | 763 | template <class ELFT> | 
| Rafael Espindola | 5616adf | 2017-03-08 22:36:28 +0000 | [diff] [blame] | 764 | static DefinedRegular * | 
|  | 765 | addOptionalRegular(StringRef Name, SectionBase *Sec, uint64_t Val, | 
|  | 766 | uint8_t StOther = STV_HIDDEN, uint8_t Binding = STB_GLOBAL) { | 
| Rafael Espindola | 244ef98 | 2017-07-26 18:42:48 +0000 | [diff] [blame] | 767 | SymbolBody *S = Symtab->find(Name); | 
| Eugene Leviant | ad4439e | 2016-11-11 11:33:32 +0000 | [diff] [blame] | 768 | if (!S) | 
|  | 769 | return nullptr; | 
| Rafael Espindola | 1d6d1b4 | 2017-01-17 16:08:06 +0000 | [diff] [blame] | 770 | if (S->isInCurrentDSO()) | 
| Rafael Espindola | 5616adf | 2017-03-08 22:36:28 +0000 | [diff] [blame] | 771 | return nullptr; | 
|  | 772 | return cast<DefinedRegular>( | 
|  | 773 | addRegular<ELFT>(Name, Sec, Val, StOther, Binding)->body()); | 
| Eugene Leviant | ad4439e | 2016-11-11 11:33:32 +0000 | [diff] [blame] | 774 | } | 
|  | 775 |  | 
| Rui Ueyama | 0168722 | 2015-12-26 09:47:57 +0000 | [diff] [blame] | 776 | // The beginning and the ending of .rel[a].plt section are marked | 
|  | 777 | // with __rel[a]_iplt_{start,end} symbols if it is a statically linked | 
|  | 778 | // executable. The runtime needs these symbols in order to resolve | 
|  | 779 | // all IRELATIVE relocs on startup. For dynamic executables, we don't | 
|  | 780 | // need these symbols, since IRELATIVE relocs are resolved through GOT | 
|  | 781 | // and PLT. For details, see http://www.airs.com/blog/archives/403. | 
| George Rimar | ee741cf | 2016-04-14 13:23:02 +0000 | [diff] [blame] | 782 | template <class ELFT> void Writer<ELFT>::addRelIpltSymbols() { | 
| Shoaib Meenai | 335fad1 | 2017-08-05 05:01:07 +0000 | [diff] [blame] | 783 | if (!Config->Static) | 
| George Rimar | a07ff66 | 2015-12-21 10:12:06 +0000 | [diff] [blame] | 784 | return; | 
| Rui Ueyama | d57e74b7 | 2017-03-17 23:29:01 +0000 | [diff] [blame] | 785 | StringRef S = Config->IsRela ? "__rela_iplt_start" : "__rel_iplt_start"; | 
| Rafael Espindola | 5616adf | 2017-03-08 22:36:28 +0000 | [diff] [blame] | 786 | addOptionalRegular<ELFT>(S, In<ELFT>::RelaIplt, 0, STV_HIDDEN, STB_WEAK); | 
| Rui Ueyama | 0168722 | 2015-12-26 09:47:57 +0000 | [diff] [blame] | 787 |  | 
| Rui Ueyama | d57e74b7 | 2017-03-17 23:29:01 +0000 | [diff] [blame] | 788 | S = Config->IsRela ? "__rela_iplt_end" : "__rel_iplt_end"; | 
| Rafael Espindola | 5616adf | 2017-03-08 22:36:28 +0000 | [diff] [blame] | 789 | addOptionalRegular<ELFT>(S, In<ELFT>::RelaIplt, -1, STV_HIDDEN, STB_WEAK); | 
| George Rimar | a07ff66 | 2015-12-21 10:12:06 +0000 | [diff] [blame] | 790 | } | 
|  | 791 |  | 
| Rui Ueyama | f18fe7b | 2015-12-26 07:50:39 +0000 | [diff] [blame] | 792 | // The linker is expected to define some symbols depending on | 
|  | 793 | // the linking result. This function defines such symbols. | 
|  | 794 | template <class ELFT> void Writer<ELFT>::addReservedSymbols() { | 
| George Rimar | 7beff42 | 2016-11-15 08:19:02 +0000 | [diff] [blame] | 795 | if (Config->EMachine == EM_MIPS) { | 
| Rafael Espindola | 9b3f99e | 2016-04-12 02:24:43 +0000 | [diff] [blame] | 796 | // Define _gp for MIPS. st_value of _gp symbol will be updated by Writer | 
| Simon Atanasyan | 6a4eb75 | 2016-12-08 06:19:47 +0000 | [diff] [blame] | 797 | // so that it points to an absolute address which by default is relative | 
|  | 798 | // to GOT. Default offset is 0x7ff0. | 
| Rafael Espindola | 9b3f99e | 2016-04-12 02:24:43 +0000 | [diff] [blame] | 799 | // See "Global Data Symbols" in Chapter 6 in the following document: | 
|  | 800 | // ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf | 
| Rafael Espindola | 244ef98 | 2017-07-26 18:42:48 +0000 | [diff] [blame] | 801 | ElfSym::MipsGp = Symtab->addAbsolute<ELFT>("_gp", STV_HIDDEN, STB_LOCAL); | 
| Rafael Espindola | 9b3f99e | 2016-04-12 02:24:43 +0000 | [diff] [blame] | 802 |  | 
| Rafael Espindola | ccfe3cb | 2016-04-04 14:04:16 +0000 | [diff] [blame] | 803 | // On MIPS O32 ABI, _gp_disp is a magic symbol designates offset between | 
| Simon Atanasyan | d34a363 | 2017-03-20 21:03:43 +0000 | [diff] [blame] | 804 | // start of function and 'gp' pointer into GOT. | 
| Rafael Espindola | 244ef98 | 2017-07-26 18:42:48 +0000 | [diff] [blame] | 805 | if (Symtab->find("_gp_disp")) | 
| Rui Ueyama | 80474a2 | 2017-02-28 19:29:55 +0000 | [diff] [blame] | 806 | ElfSym::MipsGpDisp = | 
| Rafael Espindola | 244ef98 | 2017-07-26 18:42:48 +0000 | [diff] [blame] | 807 | Symtab->addAbsolute<ELFT>("_gp_disp", STV_HIDDEN, STB_LOCAL); | 
| Peter Collingbourne | 6f535b7 | 2016-05-03 18:03:45 +0000 | [diff] [blame] | 808 |  | 
| Rafael Espindola | ccfe3cb | 2016-04-04 14:04:16 +0000 | [diff] [blame] | 809 | // The __gnu_local_gp is a magic symbol equal to the current value of 'gp' | 
|  | 810 | // pointer. This symbol is used in the code generated by .cpload pseudo-op | 
|  | 811 | // in case of using -mno-shared option. | 
|  | 812 | // https://sourceware.org/ml/binutils/2004-12/msg00094.html | 
| Rafael Espindola | 244ef98 | 2017-07-26 18:42:48 +0000 | [diff] [blame] | 813 | if (Symtab->find("__gnu_local_gp")) | 
| Rui Ueyama | 80474a2 | 2017-02-28 19:29:55 +0000 | [diff] [blame] | 814 | ElfSym::MipsLocalGp = | 
| Rafael Espindola | 244ef98 | 2017-07-26 18:42:48 +0000 | [diff] [blame] | 815 | Symtab->addAbsolute<ELFT>("__gnu_local_gp", STV_HIDDEN, STB_LOCAL); | 
| Rafael Espindola | ccfe3cb | 2016-04-04 14:04:16 +0000 | [diff] [blame] | 816 | } | 
|  | 817 |  | 
| Peter Smith | 113a59e | 2017-06-26 10:22:17 +0000 | [diff] [blame] | 818 | // The _GLOBAL_OFFSET_TABLE_ symbol is defined by target convention to | 
|  | 819 | // be at some offset from the base of the .got section, usually 0 or the end | 
|  | 820 | // of the .got | 
| Rui Ueyama | 92c3781 | 2017-06-26 15:11:24 +0000 | [diff] [blame] | 821 | InputSection *GotSection = InX::MipsGot ? cast<InputSection>(InX::MipsGot) | 
|  | 822 | : cast<InputSection>(InX::Got); | 
|  | 823 | ElfSym::GlobalOffsetTable = addOptionalRegular<ELFT>( | 
|  | 824 | "_GLOBAL_OFFSET_TABLE_", GotSection, Target->GotBaseSymOff); | 
| Rafael Espindola | ccfe3cb | 2016-04-04 14:04:16 +0000 | [diff] [blame] | 825 |  | 
| Rui Ueyama | f18fe7b | 2015-12-26 07:50:39 +0000 | [diff] [blame] | 826 | // __tls_get_addr is defined by the dynamic linker for dynamic ELFs. For | 
|  | 827 | // static linking the linker is required to optimize away any references to | 
|  | 828 | // __tls_get_addr, so it's not defined anywhere. Create a hidden definition | 
| Rui Ueyama | a2a46a9 | 2017-04-25 04:44:54 +0000 | [diff] [blame] | 829 | // to avoid the undefined symbol error. | 
| George Rimar | 69b17c3 | 2017-05-16 10:04:42 +0000 | [diff] [blame] | 830 | if (!InX::DynSymTab) | 
| Rafael Espindola | 244ef98 | 2017-07-26 18:42:48 +0000 | [diff] [blame] | 831 | Symtab->addIgnored<ELFT>("__tls_get_addr"); | 
| Rui Ueyama | f18fe7b | 2015-12-26 07:50:39 +0000 | [diff] [blame] | 832 |  | 
| Petr Hosek | 6b936bf | 2017-05-10 16:20:33 +0000 | [diff] [blame] | 833 | // __ehdr_start is the location of ELF file headers. Note that we define | 
|  | 834 | // this symbol unconditionally even when using a linker script, which | 
|  | 835 | // differs from the behavior implemented by GNU linker which only define | 
|  | 836 | // this symbol if ELF headers are in the memory mapped segment. | 
| Rafael Espindola | 0e454a9 | 2017-06-06 16:18:48 +0000 | [diff] [blame] | 837 | // __executable_start is not documented, but the expectation of at | 
|  | 838 | // least the android libc is that it points to the elf header too. | 
|  | 839 | // __dso_handle symbol is passed to cxa_finalize as a marker to identify | 
|  | 840 | // each DSO. The address of the symbol doesn't matter as long as they are | 
|  | 841 | // different in different DSOs, so we chose the start address of the DSO. | 
|  | 842 | for (const char *Name : | 
|  | 843 | {"__ehdr_start", "__executable_start", "__dso_handle"}) | 
|  | 844 | addOptionalRegular<ELFT>(Name, Out::ElfHeader, 0, STV_HIDDEN); | 
| Petr Hosek | 6b936bf | 2017-05-10 16:20:33 +0000 | [diff] [blame] | 845 |  | 
| George Rimar | 28ac19c | 2016-08-08 08:42:48 +0000 | [diff] [blame] | 846 | // If linker script do layout we do not need to create any standart symbols. | 
| Rui Ueyama | a34da93 | 2017-03-21 23:03:09 +0000 | [diff] [blame] | 847 | if (Script->Opt.HasSections) | 
| George Rimar | 28ac19c | 2016-08-08 08:42:48 +0000 | [diff] [blame] | 848 | return; | 
|  | 849 |  | 
| Rui Ueyama | 1505ba8 | 2017-04-13 21:23:03 +0000 | [diff] [blame] | 850 | auto Add = [](StringRef S) { | 
|  | 851 | return addOptionalRegular<ELFT>(S, Out::ElfHeader, 0, STV_DEFAULT); | 
| George Rimar | 9e85939 | 2016-02-26 14:36:36 +0000 | [diff] [blame] | 852 | }; | 
|  | 853 |  | 
| Rui Ueyama | 1505ba8 | 2017-04-13 21:23:03 +0000 | [diff] [blame] | 854 | ElfSym::Bss = Add("__bss_start"); | 
| Rui Ueyama | 3e1fc3f | 2017-04-13 21:37:56 +0000 | [diff] [blame] | 855 | ElfSym::End1 = Add("end"); | 
|  | 856 | ElfSym::End2 = Add("_end"); | 
|  | 857 | ElfSym::Etext1 = Add("etext"); | 
|  | 858 | ElfSym::Etext2 = Add("_etext"); | 
|  | 859 | ElfSym::Edata1 = Add("edata"); | 
|  | 860 | ElfSym::Edata2 = Add("_edata"); | 
| Rui Ueyama | f18fe7b | 2015-12-26 07:50:39 +0000 | [diff] [blame] | 861 | } | 
|  | 862 |  | 
| Rui Ueyama | c418570 | 2016-02-10 23:20:42 +0000 | [diff] [blame] | 863 | // Sort input sections by section name suffixes for | 
|  | 864 | // __attribute__((init_priority(N))). | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 865 | static void sortInitFini(OutputSection *Cmd) { | 
| Rafael Espindola | 2126334 | 2017-07-05 23:36:24 +0000 | [diff] [blame] | 866 | if (Cmd) | 
|  | 867 | Cmd->sortInitFini(); | 
| Rui Ueyama | 5af8368 | 2016-02-11 23:41:38 +0000 | [diff] [blame] | 868 | } | 
|  | 869 |  | 
|  | 870 | // Sort input sections by the special rule for .ctors and .dtors. | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 871 | static void sortCtorsDtors(OutputSection *Cmd) { | 
| Rafael Espindola | 2126334 | 2017-07-05 23:36:24 +0000 | [diff] [blame] | 872 | if (Cmd) | 
|  | 873 | Cmd->sortCtorsDtors(); | 
| Rui Ueyama | c418570 | 2016-02-10 23:20:42 +0000 | [diff] [blame] | 874 | } | 
|  | 875 |  | 
| George Rimar | 1a33c0f | 2016-11-10 09:05:20 +0000 | [diff] [blame] | 876 | // Sort input sections using the list provided by --symbol-ordering-file. | 
| Rafael Espindola | 2126334 | 2017-07-05 23:36:24 +0000 | [diff] [blame] | 877 | template <class ELFT> static void sortBySymbolsOrder() { | 
| George Rimar | 1a33c0f | 2016-11-10 09:05:20 +0000 | [diff] [blame] | 878 | if (Config->SymbolOrderingFile.empty()) | 
|  | 879 | return; | 
|  | 880 |  | 
| Rui Ueyama | 3127031 | 2016-12-20 01:51:08 +0000 | [diff] [blame] | 881 | // Sort sections by priority. | 
| George Rimar | d6bcde3 | 2017-08-04 10:25:29 +0000 | [diff] [blame] | 882 | DenseMap<SectionBase *, int> SectionOrder = buildSectionOrder<ELFT>(); | 
| Rafael Espindola | 2126334 | 2017-07-05 23:36:24 +0000 | [diff] [blame] | 883 | for (BaseCommand *Base : Script->Opt.Commands) | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 884 | if (auto *Sec = dyn_cast<OutputSection>(Base)) | 
|  | 885 | Sec->sort([&](InputSectionBase *S) { return SectionOrder.lookup(S); }); | 
| George Rimar | 1a33c0f | 2016-11-10 09:05:20 +0000 | [diff] [blame] | 886 | } | 
|  | 887 |  | 
| Eugene Leviant | e63d81b | 2016-07-20 14:43:20 +0000 | [diff] [blame] | 888 | template <class ELFT> | 
| Rafael Espindola | b4c9b81 | 2017-02-23 02:28:28 +0000 | [diff] [blame] | 889 | void Writer<ELFT>::forEachRelSec(std::function<void(InputSectionBase &)> Fn) { | 
| Rui Ueyama | 536a267 | 2017-02-27 02:32:08 +0000 | [diff] [blame] | 890 | for (InputSectionBase *IS : InputSections) { | 
| Rafael Espindola | 8f9026b | 2016-11-08 18:23:02 +0000 | [diff] [blame] | 891 | if (!IS->Live) | 
| Rui Ueyama | 8c6a5aa | 2016-11-05 22:37:59 +0000 | [diff] [blame] | 892 | continue; | 
|  | 893 | // Scan all relocations. Each relocation goes through a series | 
|  | 894 | // of tests to determine if it needs special treatment, such as | 
|  | 895 | // creating GOT, PLT, copy relocations, etc. | 
|  | 896 | // Note that relocations for non-alloc sections are directly | 
|  | 897 | // processed by InputSection::relocateNonAlloc. | 
|  | 898 | if (!(IS->Flags & SHF_ALLOC)) | 
|  | 899 | continue; | 
| Rafael Espindola | 5c02b74 | 2017-03-06 21:17:18 +0000 | [diff] [blame] | 900 | if (isa<InputSection>(IS) || isa<EhInputSection>(IS)) | 
| Rafael Espindola | 9f0c4bb | 2016-11-10 14:53:24 +0000 | [diff] [blame] | 901 | Fn(*IS); | 
| Rafael Espindola | 0f7ceda | 2016-07-20 17:58:07 +0000 | [diff] [blame] | 902 | } | 
| Petr Hosek | 7b79321 | 2017-03-10 20:00:42 +0000 | [diff] [blame] | 903 |  | 
|  | 904 | if (!Config->Relocatable) { | 
|  | 905 | for (EhInputSection *ES : In<ELFT>::EhFrame->Sections) | 
|  | 906 | Fn(*ES); | 
|  | 907 | } | 
| Rafael Espindola | 0f7ceda | 2016-07-20 17:58:07 +0000 | [diff] [blame] | 908 | } | 
|  | 909 |  | 
| Eugene Leviant | 282251a | 2016-11-01 09:49:24 +0000 | [diff] [blame] | 910 | template <class ELFT> void Writer<ELFT>::createSections() { | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 911 | std::vector<BaseCommand *> Old = Script->Opt.Commands; | 
|  | 912 | Script->Opt.Commands.clear(); | 
| Rui Ueyama | 536a267 | 2017-02-27 02:32:08 +0000 | [diff] [blame] | 913 | for (InputSectionBase *IS : InputSections) | 
| Rafael Espindola | 8290274 | 2017-02-16 17:32:26 +0000 | [diff] [blame] | 914 | if (IS) | 
| George Rimar | e21c3af | 2017-03-14 09:30:25 +0000 | [diff] [blame] | 915 | Factory.addInputSec(IS, getOutputSectionName(IS->Name)); | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 916 | Script->Opt.Commands.insert(Script->Opt.Commands.end(), Old.begin(), | 
|  | 917 | Old.end()); | 
| Eugene Leviant | ceabe80 | 2016-08-11 07:56:43 +0000 | [diff] [blame] | 918 |  | 
| Rafael Espindola | 2126334 | 2017-07-05 23:36:24 +0000 | [diff] [blame] | 919 | Script->fabricateDefaultCommands(); | 
|  | 920 | sortBySymbolsOrder<ELFT>(); | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 921 | sortInitFini(findSection(".init_array")); | 
|  | 922 | sortInitFini(findSection(".fini_array")); | 
|  | 923 | sortCtorsDtors(findSection(".ctors")); | 
|  | 924 | sortCtorsDtors(findSection(".dtors")); | 
| Eugene Leviant | e63d81b | 2016-07-20 14:43:20 +0000 | [diff] [blame] | 925 | } | 
|  | 926 |  | 
| Petr Hosek | 18821b6 | 2017-09-01 02:23:31 +0000 | [diff] [blame] | 927 | // This function generates assignments for predefined symbols (e.g. _end or | 
|  | 928 | // _etext) and inserts them into the commands sequence to be processed at the | 
|  | 929 | // appropriate time. This ensures that the value is going to be correct by the | 
|  | 930 | // time any references to these symbols are processed and is equivalent to | 
|  | 931 | // defining these symbols explicitly in the linker script. | 
|  | 932 | template <class ELFT> void Writer<ELFT>::addPredefinedSymbols() { | 
|  | 933 | PhdrEntry *Last = nullptr; | 
|  | 934 | PhdrEntry *LastRO = nullptr; | 
|  | 935 | PhdrEntry *LastRW = nullptr; | 
| Rui Ueyama | 888da8c | 2017-09-05 20:17:37 +0000 | [diff] [blame] | 936 |  | 
| Petr Hosek | 18821b6 | 2017-09-01 02:23:31 +0000 | [diff] [blame] | 937 | for (PhdrEntry *P : Phdrs) { | 
|  | 938 | if (P->p_type != PT_LOAD) | 
|  | 939 | continue; | 
|  | 940 | Last = P; | 
|  | 941 | if (P->p_flags & PF_W) | 
|  | 942 | LastRW = P; | 
|  | 943 | else | 
|  | 944 | LastRO = P; | 
|  | 945 | } | 
|  | 946 |  | 
|  | 947 | auto Make = [](DefinedRegular *S) { | 
|  | 948 | auto *Cmd = make<SymbolAssignment>( | 
|  | 949 | S->getName(), [=] { return Script->getSymbolValue("", "."); }, ""); | 
|  | 950 | Cmd->Sym = S; | 
|  | 951 | return Cmd; | 
|  | 952 | }; | 
|  | 953 |  | 
| Rui Ueyama | 888da8c | 2017-09-05 20:17:37 +0000 | [diff] [blame] | 954 | std::vector<BaseCommand *> &V = Script->Opt.Commands; | 
| Petr Hosek | 18821b6 | 2017-09-01 02:23:31 +0000 | [diff] [blame] | 955 |  | 
| Rui Ueyama | 888da8c | 2017-09-05 20:17:37 +0000 | [diff] [blame] | 956 | // _end is the first location after the uninitialized data region. | 
| Petr Hosek | 18821b6 | 2017-09-01 02:23:31 +0000 | [diff] [blame] | 957 | if (Last) { | 
| Rui Ueyama | 888da8c | 2017-09-05 20:17:37 +0000 | [diff] [blame] | 958 | for (size_t I = 0; I < V.size(); ++I) { | 
| George Rimar | 6823c5f | 2017-09-07 11:01:10 +0000 | [diff] [blame] | 959 | if (V[I] != Last->LastSec) | 
| Rui Ueyama | 888da8c | 2017-09-05 20:17:37 +0000 | [diff] [blame] | 960 | continue; | 
| Petr Hosek | 18821b6 | 2017-09-01 02:23:31 +0000 | [diff] [blame] | 961 | if (ElfSym::End2) | 
| Rui Ueyama | 888da8c | 2017-09-05 20:17:37 +0000 | [diff] [blame] | 962 | V.insert(V.begin() + I + 1, Make(ElfSym::End2)); | 
|  | 963 | if (ElfSym::End1) | 
|  | 964 | V.insert(V.begin() + I + 1, Make(ElfSym::End1)); | 
|  | 965 | break; | 
| Petr Hosek | 18821b6 | 2017-09-01 02:23:31 +0000 | [diff] [blame] | 966 | } | 
|  | 967 | } | 
| Rui Ueyama | 888da8c | 2017-09-05 20:17:37 +0000 | [diff] [blame] | 968 |  | 
|  | 969 | // _etext is the first location after the last read-only loadable segment. | 
| Petr Hosek | 18821b6 | 2017-09-01 02:23:31 +0000 | [diff] [blame] | 970 | if (LastRO) { | 
| Rui Ueyama | 888da8c | 2017-09-05 20:17:37 +0000 | [diff] [blame] | 971 | for (size_t I = 0; I < V.size(); ++I) { | 
| George Rimar | 6823c5f | 2017-09-07 11:01:10 +0000 | [diff] [blame] | 972 | if (V[I] != LastRO->LastSec) | 
| Rui Ueyama | 888da8c | 2017-09-05 20:17:37 +0000 | [diff] [blame] | 973 | continue; | 
| Petr Hosek | 18821b6 | 2017-09-01 02:23:31 +0000 | [diff] [blame] | 974 | if (ElfSym::Etext2) | 
| Rui Ueyama | 888da8c | 2017-09-05 20:17:37 +0000 | [diff] [blame] | 975 | V.insert(V.begin() + I + 1, Make(ElfSym::Etext2)); | 
|  | 976 | if (ElfSym::Etext1) | 
|  | 977 | V.insert(V.begin() + I + 1, Make(ElfSym::Etext1)); | 
|  | 978 | break; | 
| Petr Hosek | 18821b6 | 2017-09-01 02:23:31 +0000 | [diff] [blame] | 979 | } | 
|  | 980 | } | 
| Rui Ueyama | 888da8c | 2017-09-05 20:17:37 +0000 | [diff] [blame] | 981 |  | 
|  | 982 | // _edata points to the end of the last non SHT_NOBITS section. | 
| Petr Hosek | 18821b6 | 2017-09-01 02:23:31 +0000 | [diff] [blame] | 983 | if (LastRW) { | 
| Rui Ueyama | 888da8c | 2017-09-05 20:17:37 +0000 | [diff] [blame] | 984 | size_t I = 0; | 
|  | 985 | for (; I < V.size(); ++I) | 
| George Rimar | 6823c5f | 2017-09-07 11:01:10 +0000 | [diff] [blame] | 986 | if (V[I] == LastRW->FirstSec) | 
| Rui Ueyama | 888da8c | 2017-09-05 20:17:37 +0000 | [diff] [blame] | 987 | break; | 
|  | 988 |  | 
|  | 989 | for (; I < V.size(); ++I) { | 
|  | 990 | auto *Sec = dyn_cast<OutputSection>(V[I]); | 
|  | 991 | if (!Sec || Sec->Type != SHT_NOBITS) | 
|  | 992 | continue; | 
| Petr Hosek | 18821b6 | 2017-09-01 02:23:31 +0000 | [diff] [blame] | 993 | if (ElfSym::Edata2) | 
| Rui Ueyama | 888da8c | 2017-09-05 20:17:37 +0000 | [diff] [blame] | 994 | V.insert(V.begin() + I, Make(ElfSym::Edata2)); | 
| Petr Hosek | 18821b6 | 2017-09-01 02:23:31 +0000 | [diff] [blame] | 995 | if (ElfSym::Edata1) | 
| Rui Ueyama | 888da8c | 2017-09-05 20:17:37 +0000 | [diff] [blame] | 996 | V.insert(V.begin() + I, Make(ElfSym::Edata1)); | 
|  | 997 | break; | 
| Petr Hosek | 18821b6 | 2017-09-01 02:23:31 +0000 | [diff] [blame] | 998 | } | 
|  | 999 | } | 
|  | 1000 | } | 
|  | 1001 |  | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 1002 | // We want to find how similar two ranks are. | 
|  | 1003 | // The more branches in getSectionRank that match, the more similar they are. | 
|  | 1004 | // Since each branch corresponds to a bit flag, we can just use | 
|  | 1005 | // countLeadingZeros. | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1006 | static int getRankProximityAux(OutputSection *A, OutputSection *B) { | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 1007 | return countLeadingZeros(A->SortRank ^ B->SortRank); | 
| Eugene Leviant | bae1c65 | 2016-11-08 10:44:48 +0000 | [diff] [blame] | 1008 | } | 
|  | 1009 |  | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1010 | static int getRankProximity(OutputSection *A, BaseCommand *B) { | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1011 | if (auto *Sec = dyn_cast<OutputSection>(B)) | 
|  | 1012 | if (Sec->Live) | 
|  | 1013 | return getRankProximityAux(A, Sec); | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1014 | return -1; | 
|  | 1015 | } | 
|  | 1016 |  | 
|  | 1017 | // When placing orphan sections, we want to place them after symbol assignments | 
|  | 1018 | // so that an orphan after | 
|  | 1019 | //   begin_foo = .; | 
|  | 1020 | //   foo : { *(foo) } | 
|  | 1021 | //   end_foo = .; | 
|  | 1022 | // doesn't break the intended meaning of the begin/end symbols. | 
|  | 1023 | // We don't want to go over sections since findOrphanPos is the | 
|  | 1024 | // one in charge of deciding the order of the sections. | 
|  | 1025 | // We don't want to go over changes to '.', since doing so in | 
|  | 1026 | //  rx_sec : { *(rx_sec) } | 
|  | 1027 | //  . = ALIGN(0x1000); | 
|  | 1028 | //  /* The RW PT_LOAD starts here*/ | 
|  | 1029 | //  rw_sec : { *(rw_sec) } | 
|  | 1030 | // would mean that the RW PT_LOAD would become unaligned. | 
|  | 1031 | static bool shouldSkip(BaseCommand *Cmd) { | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1032 | if (isa<OutputSection>(Cmd)) | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1033 | return false; | 
|  | 1034 | if (auto *Assign = dyn_cast<SymbolAssignment>(Cmd)) | 
|  | 1035 | return Assign->Name != "."; | 
|  | 1036 | return true; | 
|  | 1037 | } | 
|  | 1038 |  | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 1039 | // We want to place orphan sections so that they share as much | 
|  | 1040 | // characteristics with their neighbors as possible. For example, if | 
|  | 1041 | // both are rw, or both are tls. | 
| Rafael Espindola | 0ca3712 | 2017-05-09 13:58:46 +0000 | [diff] [blame] | 1042 | template <typename ELFT> | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1043 | static std::vector<BaseCommand *>::iterator | 
|  | 1044 | findOrphanPos(std::vector<BaseCommand *>::iterator B, | 
|  | 1045 | std::vector<BaseCommand *>::iterator E) { | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1046 | OutputSection *Sec = cast<OutputSection>(*E); | 
| Rafael Espindola | 0ca3712 | 2017-05-09 13:58:46 +0000 | [diff] [blame] | 1047 |  | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 1048 | // Find the first element that has as close a rank as possible. | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1049 | auto I = std::max_element(B, E, [=](BaseCommand *A, BaseCommand *B) { | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 1050 | return getRankProximity(Sec, A) < getRankProximity(Sec, B); | 
|  | 1051 | }); | 
|  | 1052 | if (I == E) | 
| Rafael Espindola | 0ca3712 | 2017-05-09 13:58:46 +0000 | [diff] [blame] | 1053 | return E; | 
|  | 1054 |  | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 1055 | // Consider all existing sections with the same proximity. | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1056 | int Proximity = getRankProximity(Sec, *I); | 
|  | 1057 | for (; I != E; ++I) { | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1058 | auto *CurSec = dyn_cast<OutputSection>(*I); | 
|  | 1059 | if (!CurSec || !CurSec->Live) | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1060 | continue; | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1061 | if (getRankProximity(Sec, CurSec) != Proximity || | 
|  | 1062 | Sec->SortRank < CurSec->SortRank) | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1063 | break; | 
|  | 1064 | } | 
|  | 1065 | auto J = std::find_if( | 
| Rafael Espindola | c54b1c8 | 2017-06-15 22:03:06 +0000 | [diff] [blame] | 1066 | llvm::make_reverse_iterator(I), llvm::make_reverse_iterator(B), | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1067 | [](BaseCommand *Cmd) { return isa<OutputSection>(Cmd); }); | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1068 | I = J.base(); | 
|  | 1069 | while (I != E && shouldSkip(*I)) | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 1070 | ++I; | 
|  | 1071 | return I; | 
| Rafael Espindola | 0ca3712 | 2017-05-09 13:58:46 +0000 | [diff] [blame] | 1072 | } | 
|  | 1073 |  | 
| Rafael Espindola | 24c073d | 2016-09-21 22:36:19 +0000 | [diff] [blame] | 1074 | template <class ELFT> void Writer<ELFT>::sortSections() { | 
| George Rimar | e0b43df | 2017-06-28 09:59:34 +0000 | [diff] [blame] | 1075 | if (Script->Opt.HasSections) | 
|  | 1076 | Script->adjustSectionsBeforeSorting(); | 
|  | 1077 |  | 
| Rafael Espindola | 1960bcd | 2016-11-11 22:43:27 +0000 | [diff] [blame] | 1078 | // Don't sort if using -r. It is not necessary and we want to preserve the | 
|  | 1079 | // relative order for SHF_LINK_ORDER sections. | 
|  | 1080 | if (Config->Relocatable) | 
| Rafael Espindola | 85de678 | 2017-06-28 22:44:11 +0000 | [diff] [blame] | 1081 | return; | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 1082 |  | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1083 | for (BaseCommand *Base : Script->Opt.Commands) | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1084 | if (auto *Sec = dyn_cast<OutputSection>(Base)) | 
|  | 1085 | Sec->SortRank = getSectionRank(Sec); | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 1086 |  | 
| Rui Ueyama | a34da93 | 2017-03-21 23:03:09 +0000 | [diff] [blame] | 1087 | if (!Script->Opt.HasSections) { | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1088 | // We know that all the OutputSections are contiguous in | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1089 | // this case. | 
|  | 1090 | auto E = Script->Opt.Commands.end(); | 
|  | 1091 | auto I = Script->Opt.Commands.begin(); | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1092 | auto IsSection = [](BaseCommand *Base) { return isa<OutputSection>(Base); }; | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1093 | I = std::find_if(I, E, IsSection); | 
| Rafael Espindola | c54b1c8 | 2017-06-15 22:03:06 +0000 | [diff] [blame] | 1094 | E = std::find_if(llvm::make_reverse_iterator(E), | 
|  | 1095 | llvm::make_reverse_iterator(I), IsSection) | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1096 | .base(); | 
|  | 1097 | std::stable_sort(I, E, compareSections); | 
| Rafael Espindola | 24c073d | 2016-09-21 22:36:19 +0000 | [diff] [blame] | 1098 | return; | 
|  | 1099 | } | 
|  | 1100 |  | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1101 | // Orphan sections are sections present in the input files which are | 
|  | 1102 | // not explicitly placed into the output file by the linker script. | 
|  | 1103 | // | 
|  | 1104 | // The sections in the linker script are already in the correct | 
|  | 1105 | // order. We have to figuere out where to insert the orphan | 
|  | 1106 | // sections. | 
|  | 1107 | // | 
| Rafael Espindola | 24c073d | 2016-09-21 22:36:19 +0000 | [diff] [blame] | 1108 | // The order of the sections in the script is arbitrary and may not agree with | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1109 | // compareSections. This means that we cannot easily define a strict weak | 
|  | 1110 | // ordering. To see why, consider a comparison of a section in the script and | 
|  | 1111 | // one not in the script. We have a two simple options: | 
| Rafael Espindola | 24c073d | 2016-09-21 22:36:19 +0000 | [diff] [blame] | 1112 | // * Make them equivalent (a is not less than b, and b is not less than a). | 
|  | 1113 | //   The problem is then that equivalence has to be transitive and we can | 
|  | 1114 | //   have sections a, b and c with only b in a script and a less than c | 
|  | 1115 | //   which breaks this property. | 
|  | 1116 | // * Use compareSectionsNonScript. Given that the script order doesn't have | 
|  | 1117 | //   to match, we can end up with sections a, b, c, d where b and c are in the | 
|  | 1118 | //   script and c is compareSectionsNonScript less than b. In which case d | 
|  | 1119 | //   can be equivalent to c, a to b and d < a. As a concrete example: | 
|  | 1120 | //   .a (rx) # not in script | 
|  | 1121 | //   .b (rx) # in script | 
|  | 1122 | //   .c (ro) # in script | 
|  | 1123 | //   .d (ro) # not in script | 
|  | 1124 | // | 
|  | 1125 | // The way we define an order then is: | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1126 | // *  Sort only the orphan sections. They are in the end right now. | 
|  | 1127 | // *  Move each orphan section to its preferred position. We try | 
| Eugene Leviant | bae1c65 | 2016-11-08 10:44:48 +0000 | [diff] [blame] | 1128 | //    to put each section in the last position where it it can share | 
|  | 1129 | //    a PT_LOAD. | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1130 | // | 
|  | 1131 | // There is some ambiguity as to where exactly a new entry should be | 
|  | 1132 | // inserted, because Opt.Commands contains not only output section | 
|  | 1133 | // commands but also other types of commands such as symbol assignment | 
|  | 1134 | // expressions. There's no correct answer here due to the lack of the | 
|  | 1135 | // formal specification of the linker script. We use heuristics to | 
|  | 1136 | // determine whether a new output command should be added before or | 
|  | 1137 | // after another commands. For the details, look at shouldSkip | 
|  | 1138 | // function. | 
| Rafael Espindola | 24c073d | 2016-09-21 22:36:19 +0000 | [diff] [blame] | 1139 |  | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1140 | auto I = Script->Opt.Commands.begin(); | 
|  | 1141 | auto E = Script->Opt.Commands.end(); | 
|  | 1142 | auto NonScriptI = std::find_if(I, E, [](BaseCommand *Base) { | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1143 | if (auto *Sec = dyn_cast<OutputSection>(Base)) | 
|  | 1144 | return Sec->Live && Sec->SectionIndex == INT_MAX; | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1145 | return false; | 
|  | 1146 | }); | 
| Rafael Espindola | 24c073d | 2016-09-21 22:36:19 +0000 | [diff] [blame] | 1147 |  | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1148 | // Sort the orphan sections. | 
|  | 1149 | std::stable_sort(NonScriptI, E, compareSections); | 
|  | 1150 |  | 
|  | 1151 | // As a horrible special case, skip the first . assignment if it is before any | 
|  | 1152 | // section. We do this because it is common to set a load address by starting | 
|  | 1153 | // the script with ". = 0xabcd" and the expectation is that every section is | 
|  | 1154 | // after that. | 
|  | 1155 | auto FirstSectionOrDotAssignment = | 
|  | 1156 | std::find_if(I, E, [](BaseCommand *Cmd) { return !shouldSkip(Cmd); }); | 
|  | 1157 | if (FirstSectionOrDotAssignment != E && | 
|  | 1158 | isa<SymbolAssignment>(**FirstSectionOrDotAssignment)) | 
|  | 1159 | ++FirstSectionOrDotAssignment; | 
|  | 1160 | I = FirstSectionOrDotAssignment; | 
|  | 1161 |  | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 1162 | while (NonScriptI != E) { | 
|  | 1163 | auto Pos = findOrphanPos<ELFT>(I, NonScriptI); | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1164 | OutputSection *Orphan = cast<OutputSection>(*NonScriptI); | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 1165 |  | 
|  | 1166 | // As an optimization, find all sections with the same sort rank | 
|  | 1167 | // and insert them with one rotate. | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1168 | unsigned Rank = Orphan->SortRank; | 
|  | 1169 | auto End = std::find_if(NonScriptI + 1, E, [=](BaseCommand *Cmd) { | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1170 | return cast<OutputSection>(Cmd)->SortRank != Rank; | 
| Rafael Espindola | 5210141 | 2017-05-12 14:52:22 +0000 | [diff] [blame] | 1171 | }); | 
|  | 1172 | std::rotate(Pos, NonScriptI, End); | 
|  | 1173 | NonScriptI = End; | 
|  | 1174 | } | 
| Rafael Espindola | f7a1744 | 2016-11-14 15:39:38 +0000 | [diff] [blame] | 1175 |  | 
| George Rimar | a8dba48 | 2017-03-20 10:09:58 +0000 | [diff] [blame] | 1176 | Script->adjustSectionsAfterSorting(); | 
| Rafael Espindola | 24c073d | 2016-09-21 22:36:19 +0000 | [diff] [blame] | 1177 | } | 
|  | 1178 |  | 
| Peter Smith | 1ec42d9 | 2017-03-08 14:06:24 +0000 | [diff] [blame] | 1179 | static void applySynthetic(const std::vector<SyntheticSection *> &Sections, | 
|  | 1180 | std::function<void(SyntheticSection *)> Fn) { | 
| Rui Ueyama | 9320cb0 | 2017-02-27 02:56:02 +0000 | [diff] [blame] | 1181 | for (SyntheticSection *SS : Sections) | 
| Rafael Espindola | d57c58d | 2017-06-07 02:31:19 +0000 | [diff] [blame] | 1182 | if (SS && SS->getParent() && !SS->empty()) | 
| Peter Smith | 1ec42d9 | 2017-03-08 14:06:24 +0000 | [diff] [blame] | 1183 | Fn(SS); | 
| Eugene Leviant | 6380ce2 | 2016-11-15 12:26:55 +0000 | [diff] [blame] | 1184 | } | 
|  | 1185 |  | 
| George Rimar | 11992c86 | 2016-11-25 08:05:41 +0000 | [diff] [blame] | 1186 | // We need to add input synthetic sections early in createSyntheticSections() | 
| Rui Ueyama | c38860b | 2016-12-05 21:39:35 +0000 | [diff] [blame] | 1187 | // to make them visible from linkescript side. But not all sections are always | 
|  | 1188 | // required to be in output. For example we don't need dynamic section content | 
| James Henderson | 7ee2275 | 2017-04-06 09:40:03 +0000 | [diff] [blame] | 1189 | // sometimes. This function filters out such unused sections from the output. | 
| Rafael Espindola | c080ff6 | 2017-07-03 16:54:39 +0000 | [diff] [blame] | 1190 | static void removeUnusedSyntheticSections() { | 
| Rafael Espindola | 9e9754b | 2017-02-03 13:06:18 +0000 | [diff] [blame] | 1191 | // All input synthetic sections that can be empty are placed after | 
|  | 1192 | // all regular ones. We iterate over them all and exit at first | 
|  | 1193 | // non-synthetic. | 
| Rui Ueyama | 536a267 | 2017-02-27 02:32:08 +0000 | [diff] [blame] | 1194 | for (InputSectionBase *S : llvm::reverse(InputSections)) { | 
| Rui Ueyama | 9320cb0 | 2017-02-27 02:56:02 +0000 | [diff] [blame] | 1195 | SyntheticSection *SS = dyn_cast<SyntheticSection>(S); | 
| Rui Ueyama | c38860b | 2016-12-05 21:39:35 +0000 | [diff] [blame] | 1196 | if (!SS) | 
| George Rimar | 11992c86 | 2016-11-25 08:05:41 +0000 | [diff] [blame] | 1197 | return; | 
| Rafael Espindola | db5e56f | 2017-05-31 20:17:44 +0000 | [diff] [blame] | 1198 | OutputSection *OS = SS->getParent(); | 
|  | 1199 | if (!SS->empty() || !OS) | 
| George Rimar | 11992c86 | 2016-11-25 08:05:41 +0000 | [diff] [blame] | 1200 | continue; | 
| Rui Ueyama | 92c3781 | 2017-06-26 15:11:24 +0000 | [diff] [blame] | 1201 | if ((SS == InX::Got || SS == InX::MipsGot) && ElfSym::GlobalOffsetTable) | 
| Peter Smith | 113a59e | 2017-06-26 10:22:17 +0000 | [diff] [blame] | 1202 | continue; | 
| Rafael Espindola | c080ff6 | 2017-07-03 16:54:39 +0000 | [diff] [blame] | 1203 |  | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1204 | std::vector<BaseCommand *>::iterator Empty = OS->Commands.end(); | 
|  | 1205 | for (auto I = OS->Commands.begin(), E = OS->Commands.end(); I != E; ++I) { | 
| Rafael Espindola | 43ee360 | 2017-07-03 17:32:09 +0000 | [diff] [blame] | 1206 | BaseCommand *B = *I; | 
| Rafael Espindola | c080ff6 | 2017-07-03 16:54:39 +0000 | [diff] [blame] | 1207 | if (auto *ISD = dyn_cast<InputSectionDescription>(B)) { | 
| George Rimar | 7ac3825 | 2017-09-08 13:26:45 +0000 | [diff] [blame^] | 1208 | llvm::erase_if(ISD->Sections, | 
|  | 1209 | [=](InputSection *IS) { return IS == SS; }); | 
| Rafael Espindola | c080ff6 | 2017-07-03 16:54:39 +0000 | [diff] [blame] | 1210 | if (ISD->Sections.empty()) | 
| Rafael Espindola | 43ee360 | 2017-07-03 17:32:09 +0000 | [diff] [blame] | 1211 | Empty = I; | 
| Rafael Espindola | c080ff6 | 2017-07-03 16:54:39 +0000 | [diff] [blame] | 1212 | } | 
|  | 1213 | } | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1214 | if (Empty != OS->Commands.end()) | 
|  | 1215 | OS->Commands.erase(Empty); | 
| Rafael Espindola | c080ff6 | 2017-07-03 16:54:39 +0000 | [diff] [blame] | 1216 |  | 
| James Henderson | 7ee2275 | 2017-04-06 09:40:03 +0000 | [diff] [blame] | 1217 | // If there are no other sections in the output section, remove it from the | 
|  | 1218 | // output. | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1219 | if (OS->Commands.empty()) { | 
| Petr Hosek | 52db9a4 | 2017-07-03 15:49:25 +0000 | [diff] [blame] | 1220 | // Also remove script commands matching the output section. | 
| George Rimar | 60608a8 | 2017-08-28 09:28:15 +0000 | [diff] [blame] | 1221 | llvm::erase_if(Script->Opt.Commands, [&](BaseCommand *Cmd) { | 
|  | 1222 | if (auto *Sec = dyn_cast<OutputSection>(Cmd)) | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1223 | return Sec == OS; | 
| Petr Hosek | 52db9a4 | 2017-07-03 15:49:25 +0000 | [diff] [blame] | 1224 | return false; | 
|  | 1225 | }); | 
| Petr Hosek | 52db9a4 | 2017-07-03 15:49:25 +0000 | [diff] [blame] | 1226 | } | 
| George Rimar | 11992c86 | 2016-11-25 08:05:41 +0000 | [diff] [blame] | 1227 | } | 
|  | 1228 | } | 
|  | 1229 |  | 
| Rafael Espindola | 35c908f | 2017-08-10 15:05:37 +0000 | [diff] [blame] | 1230 | // Returns true if a symbol can be replaced at load-time by a symbol | 
|  | 1231 | // with the same name defined in other ELF executable or DSO. | 
|  | 1232 | static bool computeIsPreemptible(const SymbolBody &B) { | 
|  | 1233 | assert(!B.isLocal()); | 
|  | 1234 | // Shared symbols resolve to the definition in the DSO. The exceptions are | 
|  | 1235 | // symbols with copy relocations (which resolve to .bss) or preempt plt | 
|  | 1236 | // entries (which resolve to that plt entry). | 
|  | 1237 | if (auto *SS = dyn_cast<SharedSymbol>(&B)) | 
|  | 1238 | return !SS->CopyRelSec && !SS->NeedsPltAddr; | 
|  | 1239 |  | 
|  | 1240 | // Only symbols that appear in dynsym can be preempted. | 
|  | 1241 | if (!B.symbol()->includeInDynsym()) | 
|  | 1242 | return false; | 
|  | 1243 |  | 
|  | 1244 | // Only default visibility symbols can be preempted. | 
|  | 1245 | if (B.symbol()->Visibility != STV_DEFAULT) | 
|  | 1246 | return false; | 
|  | 1247 |  | 
|  | 1248 | // Undefined symbols in non-DSOs are usually just an error, so it | 
|  | 1249 | // doesn't matter whether we return true or false here. However, if | 
|  | 1250 | // -unresolved-symbols=ignore-all is specified, undefined symbols in | 
|  | 1251 | // executables are automatically exported so that the runtime linker | 
| Davide Italiano | a0186dd | 2017-09-06 21:16:51 +0000 | [diff] [blame] | 1252 | // can try to resolve them. In that case, they are preemptible. So, we | 
| Rafael Espindola | 35c908f | 2017-08-10 15:05:37 +0000 | [diff] [blame] | 1253 | // return true for an undefined symbol in case the option is specified. | 
|  | 1254 | if (!Config->Shared) | 
|  | 1255 | return B.isUndefined(); | 
|  | 1256 |  | 
|  | 1257 | // -Bsymbolic means that definitions are not preempted. | 
|  | 1258 | if (Config->Bsymbolic || (Config->BsymbolicFunctions && B.isFunc())) | 
|  | 1259 | return !B.isDefined(); | 
|  | 1260 | return true; | 
|  | 1261 | } | 
|  | 1262 |  | 
| Eugene Leviant | e63d81b | 2016-07-20 14:43:20 +0000 | [diff] [blame] | 1263 | // Create output section objects and add them to OutputSections. | 
|  | 1264 | template <class ELFT> void Writer<ELFT>::finalizeSections() { | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1265 | Out::DebugInfo = findSection(".debug_info"); | 
|  | 1266 | Out::PreinitArray = findSection(".preinit_array"); | 
|  | 1267 | Out::InitArray = findSection(".init_array"); | 
|  | 1268 | Out::FiniArray = findSection(".fini_array"); | 
| Rafael Espindola | 7757224 | 2015-10-02 19:37:55 +0000 | [diff] [blame] | 1269 |  | 
| Rui Ueyama | a5d79d1 | 2015-12-26 09:48:00 +0000 | [diff] [blame] | 1270 | // The linker needs to define SECNAME_start, SECNAME_end and SECNAME_stop | 
|  | 1271 | // symbols for sections, so that the runtime can get the start and end | 
|  | 1272 | // addresses of each section by section name. Add such symbols. | 
| George Rimar | c1034a8 | 2016-03-01 19:12:35 +0000 | [diff] [blame] | 1273 | if (!Config->Relocatable) { | 
|  | 1274 | addStartEndSymbols(); | 
| Rafael Espindola | b691545 | 2017-07-04 19:05:03 +0000 | [diff] [blame] | 1275 | for (BaseCommand *Base : Script->Opt.Commands) | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1276 | if (auto *Sec = dyn_cast<OutputSection>(Base)) | 
|  | 1277 | addStartStopSymbols(Sec); | 
| George Rimar | c1034a8 | 2016-03-01 19:12:35 +0000 | [diff] [blame] | 1278 | } | 
| Rui Ueyama | d4530c6 | 2016-03-04 18:34:14 +0000 | [diff] [blame] | 1279 |  | 
|  | 1280 | // Add _DYNAMIC symbol. Unlike GNU gold, our _DYNAMIC symbol has no type. | 
|  | 1281 | // It should be okay as no one seems to care about the type. | 
|  | 1282 | // Even the author of gold doesn't remember why gold behaves that way. | 
|  | 1283 | // https://sourceware.org/ml/binutils/2002-03/msg00360.html | 
| George Rimar | 69b17c3 | 2017-05-16 10:04:42 +0000 | [diff] [blame] | 1284 | if (InX::DynSymTab) | 
| Rafael Espindola | 5ab1989 | 2017-05-11 23:16:43 +0000 | [diff] [blame] | 1285 | addRegular<ELFT>("_DYNAMIC", InX::Dynamic, 0); | 
| Rafael Espindola | 334c3e1 | 2015-10-19 15:21:42 +0000 | [diff] [blame] | 1286 |  | 
| Rafael Espindola | de9857e | 2016-02-04 21:33:05 +0000 | [diff] [blame] | 1287 | // Define __rel[a]_iplt_{start,end} symbols if needed. | 
|  | 1288 | addRelIpltSymbols(); | 
|  | 1289 |  | 
| Rafael Espindola | 66b4e21 | 2017-02-23 22:06:28 +0000 | [diff] [blame] | 1290 | // This responsible for splitting up .eh_frame section into | 
| Peter Smith | 1ec42d9 | 2017-03-08 14:06:24 +0000 | [diff] [blame] | 1291 | // pieces. The relocation scan uses those pieces, so this has to be | 
| Rafael Espindola | 66b4e21 | 2017-02-23 22:06:28 +0000 | [diff] [blame] | 1292 | // earlier. | 
| George Rimar | 49a47f2 | 2017-03-16 10:29:44 +0000 | [diff] [blame] | 1293 | applySynthetic({In<ELFT>::EhFrame}, | 
|  | 1294 | [](SyntheticSection *SS) { SS->finalizeContents(); }); | 
| Rafael Espindola | 56004c5 | 2016-04-07 14:22:09 +0000 | [diff] [blame] | 1295 |  | 
| Rafael Espindola | 0ff545c | 2017-09-08 01:09:52 +0000 | [diff] [blame] | 1296 | for (Symbol *S : Symtab->getSymbols()) | 
|  | 1297 | S->body()->IsPreemptible = computeIsPreemptible(*S->body()); | 
| Rafael Espindola | 35c908f | 2017-08-10 15:05:37 +0000 | [diff] [blame] | 1298 |  | 
| Rafael Espindola | 0f7ceda | 2016-07-20 17:58:07 +0000 | [diff] [blame] | 1299 | // Scan relocations. This must be done after every symbol is declared so that | 
|  | 1300 | // we can correctly decide if a dynamic relocation is needed. | 
|  | 1301 | forEachRelSec(scanRelocations<ELFT>); | 
|  | 1302 |  | 
| Rafael Espindola | 895aea6 | 2017-05-11 22:02:41 +0000 | [diff] [blame] | 1303 | if (InX::Plt && !InX::Plt->empty()) | 
|  | 1304 | InX::Plt->addSymbols(); | 
|  | 1305 | if (InX::Iplt && !InX::Iplt->empty()) | 
|  | 1306 | InX::Iplt->addSymbols(); | 
| Peter Smith | 9694376 | 2017-01-25 10:31:16 +0000 | [diff] [blame] | 1307 |  | 
| Peter Smith | 5586543 | 2017-02-20 11:12:33 +0000 | [diff] [blame] | 1308 | // Now that we have defined all possible global symbols including linker- | 
| Rui Ueyama | 1b2a8bf | 2015-12-26 10:22:16 +0000 | [diff] [blame] | 1309 | // synthesized ones. Visit all symbols to give the finishing touches. | 
| Rafael Espindola | 244ef98 | 2017-07-26 18:42:48 +0000 | [diff] [blame] | 1310 | for (Symbol *S : Symtab->getSymbols()) { | 
| Peter Collingbourne | 4f95270 | 2016-05-01 04:55:03 +0000 | [diff] [blame] | 1311 | SymbolBody *Body = S->body(); | 
| Rafael Espindola | 0baa73f | 2016-04-26 13:56:26 +0000 | [diff] [blame] | 1312 |  | 
| George Rimar | 7702bc2 | 2017-03-16 11:20:02 +0000 | [diff] [blame] | 1313 | if (!includeInSymtab(*Body)) | 
| Rafael Espindola | 05a3dd2 | 2015-09-22 23:38:23 +0000 | [diff] [blame] | 1314 | continue; | 
| George Rimar | 69b17c3 | 2017-05-16 10:04:42 +0000 | [diff] [blame] | 1315 | if (InX::SymTab) | 
|  | 1316 | InX::SymTab->addSymbol(Body); | 
| Rafael Espindola | 05a3dd2 | 2015-09-22 23:38:23 +0000 | [diff] [blame] | 1317 |  | 
| George Rimar | 69b17c3 | 2017-05-16 10:04:42 +0000 | [diff] [blame] | 1318 | if (InX::DynSymTab && S->includeInDynsym()) { | 
|  | 1319 | InX::DynSymTab->addSymbol(Body); | 
| Rui Ueyama | 4076fa1 | 2017-02-26 23:35:34 +0000 | [diff] [blame] | 1320 | if (auto *SS = dyn_cast<SharedSymbol>(Body)) | 
| Rafael Espindola | 6e93d05 | 2017-08-04 22:31:42 +0000 | [diff] [blame] | 1321 | if (cast<SharedFile<ELFT>>(S->File)->isNeeded()) | 
| Eugene Leviant | e9bab5d | 2016-11-21 16:59:33 +0000 | [diff] [blame] | 1322 | In<ELFT>::VerNeed->addSymbol(SS); | 
| Peter Collingbourne | 21a12fc | 2016-04-27 20:22:31 +0000 | [diff] [blame] | 1323 | } | 
| Rafael Espindola | 05a3dd2 | 2015-09-22 23:38:23 +0000 | [diff] [blame] | 1324 | } | 
| Rui Ueyama | c2a0d7e | 2016-01-28 22:56:29 +0000 | [diff] [blame] | 1325 |  | 
|  | 1326 | // Do not proceed if there was an undefined symbol. | 
| Rui Ueyama | f373dd7 | 2016-11-24 01:43:21 +0000 | [diff] [blame] | 1327 | if (ErrorCount) | 
| Rui Ueyama | f7f52ef | 2016-04-01 17:24:19 +0000 | [diff] [blame] | 1328 | return; | 
| Rui Ueyama | c2a0d7e | 2016-01-28 22:56:29 +0000 | [diff] [blame] | 1329 |  | 
| Rafael Espindola | 1eb3a0f | 2017-07-04 18:26:21 +0000 | [diff] [blame] | 1330 | addPredefinedSections(); | 
| Rafael Espindola | c080ff6 | 2017-07-03 16:54:39 +0000 | [diff] [blame] | 1331 | removeUnusedSyntheticSections(); | 
|  | 1332 |  | 
| Rafael Espindola | 24c073d | 2016-09-21 22:36:19 +0000 | [diff] [blame] | 1333 | sortSections(); | 
| Rafael Espindola | 383971d | 2017-06-15 21:51:01 +0000 | [diff] [blame] | 1334 |  | 
|  | 1335 | // Now that we have the final list, create a list of all the | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1336 | // OutputSections for convenience. | 
| Rafael Espindola | cdf813b | 2017-06-13 22:36:20 +0000 | [diff] [blame] | 1337 | for (BaseCommand *Base : Script->Opt.Commands) | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1338 | if (auto *Sec = dyn_cast<OutputSection>(Base)) | 
|  | 1339 | OutputSections.push_back(Sec); | 
| Rui Ueyama | 84417f8 | 2015-12-26 07:50:41 +0000 | [diff] [blame] | 1340 |  | 
| Rafael Espindola | 9c0395e | 2017-06-20 01:51:50 +0000 | [diff] [blame] | 1341 | // Prefer command line supplied address over other constraints. | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1342 | for (OutputSection *Sec : OutputSections) { | 
|  | 1343 | auto I = Config->SectionStartMap.find(Sec->Name); | 
| Rafael Espindola | 9c0395e | 2017-06-20 01:51:50 +0000 | [diff] [blame] | 1344 | if (I != Config->SectionStartMap.end()) | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1345 | Sec->AddrExpr = [=] { return I->second; }; | 
| Rafael Espindola | 9c0395e | 2017-06-20 01:51:50 +0000 | [diff] [blame] | 1346 | } | 
|  | 1347 |  | 
| Rafael Espindola | 78493a2 | 2017-01-28 17:48:21 +0000 | [diff] [blame] | 1348 | // This is a bit of a hack. A value of 0 means undef, so we set it | 
|  | 1349 | // to 1 t make __ehdr_start defined. The section number is not | 
|  | 1350 | // particularly relevant. | 
| Rui Ueyama | 9d1bacb1 | 2017-02-27 02:31:26 +0000 | [diff] [blame] | 1351 | Out::ElfHeader->SectionIndex = 1; | 
| Rafael Espindola | 78493a2 | 2017-01-28 17:48:21 +0000 | [diff] [blame] | 1352 |  | 
| George Rimar | 7ca0627 | 2016-04-06 07:20:45 +0000 | [diff] [blame] | 1353 | unsigned I = 1; | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1354 | for (OutputSection *Sec : OutputSections) { | 
| George Rimar | 7ca0627 | 2016-04-06 07:20:45 +0000 | [diff] [blame] | 1355 | Sec->SectionIndex = I++; | 
| Rafael Espindola | 895aea6 | 2017-05-11 22:02:41 +0000 | [diff] [blame] | 1356 | Sec->ShName = InX::ShStrTab->addString(Sec->Name); | 
| George Rimar | 7ca0627 | 2016-04-06 07:20:45 +0000 | [diff] [blame] | 1357 | } | 
| Rui Ueyama | 84417f8 | 2015-12-26 07:50:41 +0000 | [diff] [blame] | 1358 |  | 
| Rafael Espindola | 5967c97 | 2016-12-19 21:21:07 +0000 | [diff] [blame] | 1359 | // Binary and relocatable output does not have PHDRS. | 
|  | 1360 | // The headers have to be created before finalize as that can influence the | 
|  | 1361 | // image base and the dynamic section on mips includes the image base. | 
|  | 1362 | if (!Config->Relocatable && !Config->OFormatBinary) { | 
| Rafael Espindola | f51c805 | 2017-06-13 23:26:31 +0000 | [diff] [blame] | 1363 | Phdrs = Script->hasPhdrsCommands() ? Script->createPhdrs() : createPhdrs(); | 
| Rafael Espindola | 5967c97 | 2016-12-19 21:21:07 +0000 | [diff] [blame] | 1364 | addPtArmExid(Phdrs); | 
| Rafael Espindola | 02ed757 | 2017-05-04 19:34:17 +0000 | [diff] [blame] | 1365 | Out::ProgramHeaders->Size = sizeof(Elf_Phdr) * Phdrs.size(); | 
| Rafael Espindola | 5967c97 | 2016-12-19 21:21:07 +0000 | [diff] [blame] | 1366 | } | 
|  | 1367 |  | 
| Eugene Leviant | be809a7 | 2016-11-18 06:44:18 +0000 | [diff] [blame] | 1368 | // Dynamic section must be the last one in this list and dynamic | 
|  | 1369 | // symbol table section (DynSymTab) must be the first one. | 
| Rui Ueyama | 2b6631b | 2017-08-15 17:01:39 +0000 | [diff] [blame] | 1370 | applySynthetic({InX::DynSymTab,    InX::Bss, | 
|  | 1371 | InX::BssRelRo,     InX::GnuHashTab, | 
|  | 1372 | In<ELFT>::HashTab, InX::SymTab, | 
|  | 1373 | InX::ShStrTab,     InX::StrTab, | 
|  | 1374 | In<ELFT>::VerDef,  InX::DynStrTab, | 
|  | 1375 | InX::Got,          InX::MipsGot, | 
|  | 1376 | InX::IgotPlt,      InX::GotPlt, | 
|  | 1377 | In<ELFT>::RelaDyn, In<ELFT>::RelaIplt, | 
|  | 1378 | In<ELFT>::RelaPlt, InX::Plt, | 
|  | 1379 | InX::Iplt,         In<ELFT>::EhFrameHdr, | 
|  | 1380 | In<ELFT>::VerSym,  In<ELFT>::VerNeed, | 
|  | 1381 | InX::Dynamic}, | 
| George Rimar | 49a47f2 | 2017-03-16 10:29:44 +0000 | [diff] [blame] | 1382 | [](SyntheticSection *SS) { SS->finalizeContents(); }); | 
| Peter Smith | 1ec42d9 | 2017-03-08 14:06:24 +0000 | [diff] [blame] | 1383 |  | 
| Peter Smith | 3ef89b0 | 2017-09-06 14:02:14 +0000 | [diff] [blame] | 1384 | if (!Script->Opt.HasSections && !Config->Relocatable) | 
|  | 1385 | fixSectionAlignments(); | 
|  | 1386 |  | 
| Peter Smith | 1ec42d9 | 2017-03-08 14:06:24 +0000 | [diff] [blame] | 1387 | // Some architectures use small displacements for jump instructions. | 
|  | 1388 | // It is linker's responsibility to create thunks containing long | 
|  | 1389 | // jump instructions if jump targets are too far. Create thunks. | 
|  | 1390 | if (Target->NeedsThunks) { | 
|  | 1391 | // FIXME: only ARM Interworking and Mips LA25 Thunks are implemented, | 
|  | 1392 | // these | 
|  | 1393 | // do not require address information. To support range extension Thunks | 
|  | 1394 | // we need to assign addresses so that we can tell if jump instructions | 
|  | 1395 | // are out of range. This will need to turn into a loop that converges | 
|  | 1396 | // when no more Thunks are added | 
| George Rimar | ec84ffc | 2017-05-17 07:10:59 +0000 | [diff] [blame] | 1397 | ThunkCreator TC; | 
| Peter Smith | 96f813d | 2017-07-07 10:03:37 +0000 | [diff] [blame] | 1398 | Script->assignAddresses(); | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1399 | if (TC.createThunks(OutputSections)) { | 
| Rafael Espindola | b3aa2c9 | 2017-05-11 21:33:30 +0000 | [diff] [blame] | 1400 | applySynthetic({InX::MipsGot}, | 
| George Rimar | 49a47f2 | 2017-03-16 10:29:44 +0000 | [diff] [blame] | 1401 | [](SyntheticSection *SS) { SS->updateAllocSize(); }); | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1402 | if (TC.createThunks(OutputSections)) | 
| Peter Smith | 3298027 | 2017-06-16 13:10:08 +0000 | [diff] [blame] | 1403 | fatal("All non-range thunks should be created in first call"); | 
|  | 1404 | } | 
| Peter Smith | 1ec42d9 | 2017-03-08 14:06:24 +0000 | [diff] [blame] | 1405 | } | 
| Peter Smith | 43e852f | 2017-06-05 08:51:15 +0000 | [diff] [blame] | 1406 |  | 
| Peter Smith | 1ec42d9 | 2017-03-08 14:06:24 +0000 | [diff] [blame] | 1407 | // Fill other section headers. The dynamic table is finalized | 
|  | 1408 | // at the end because some tags like RELSZ depend on result | 
|  | 1409 | // of finalizing other sections. | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1410 | for (OutputSection *Sec : OutputSections) | 
|  | 1411 | Sec->finalize<ELFT>(); | 
| Peter Smith | 1ec42d9 | 2017-03-08 14:06:24 +0000 | [diff] [blame] | 1412 |  | 
|  | 1413 | // createThunks may have added local symbols to the static symbol table | 
| George Rimar | 69b17c3 | 2017-05-16 10:04:42 +0000 | [diff] [blame] | 1414 | applySynthetic({InX::SymTab, InX::ShStrTab, InX::StrTab}, | 
| George Rimar | 49a47f2 | 2017-03-16 10:29:44 +0000 | [diff] [blame] | 1415 | [](SyntheticSection *SS) { SS->postThunkContents(); }); | 
| Rui Ueyama | 84417f8 | 2015-12-26 07:50:41 +0000 | [diff] [blame] | 1416 | } | 
|  | 1417 |  | 
| Rui Ueyama | 84417f8 | 2015-12-26 07:50:41 +0000 | [diff] [blame] | 1418 | template <class ELFT> void Writer<ELFT>::addPredefinedSections() { | 
| Rui Ueyama | dec4ab0 | 2017-02-16 04:19:03 +0000 | [diff] [blame] | 1419 | // ARM ABI requires .ARM.exidx to be terminated by some piece of data. | 
|  | 1420 | // We have the terminater synthetic section class. Add that at the end. | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1421 | OutputSection *Cmd = findSection(".ARM.exidx"); | 
|  | 1422 | if (!Cmd || !Cmd->Live || Config->Relocatable) | 
| Peter Smith | 626c997 | 2017-05-30 11:51:02 +0000 | [diff] [blame] | 1423 | return; | 
|  | 1424 |  | 
|  | 1425 | auto *Sentinel = make<ARMExidxSentinelSection>(); | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1426 | Cmd->addSection(Sentinel); | 
| Rafael Espindola | abad618 | 2015-08-13 15:23:46 +0000 | [diff] [blame] | 1427 | } | 
|  | 1428 |  | 
| Rui Ueyama | a5d79d1 | 2015-12-26 09:48:00 +0000 | [diff] [blame] | 1429 | // The linker is expected to define SECNAME_start and SECNAME_end | 
|  | 1430 | // symbols for a few sections. This function defines them. | 
|  | 1431 | template <class ELFT> void Writer<ELFT>::addStartEndSymbols() { | 
| Rafael Espindola | 24e6f36 | 2017-02-24 15:07:30 +0000 | [diff] [blame] | 1432 | auto Define = [&](StringRef Start, StringRef End, OutputSection *OS) { | 
| Peter Collingbourne | 0fab40b | 2016-10-24 20:46:21 +0000 | [diff] [blame] | 1433 | // These symbols resolve to the image base if the section does not exist. | 
| Rui Ueyama | 4f2f50d | 2016-12-21 08:40:09 +0000 | [diff] [blame] | 1434 | // A special value -1 indicates end of the section. | 
| Peter Collingbourne | f8435a9 | 2017-03-13 16:40:20 +0000 | [diff] [blame] | 1435 | if (OS) { | 
|  | 1436 | addOptionalRegular<ELFT>(Start, OS, 0); | 
|  | 1437 | addOptionalRegular<ELFT>(End, OS, -1); | 
|  | 1438 | } else { | 
| Rui Ueyama | d57e74b7 | 2017-03-17 23:29:01 +0000 | [diff] [blame] | 1439 | if (Config->Pic) | 
| Peter Collingbourne | f8435a9 | 2017-03-13 16:40:20 +0000 | [diff] [blame] | 1440 | OS = Out::ElfHeader; | 
|  | 1441 | addOptionalRegular<ELFT>(Start, OS, 0); | 
|  | 1442 | addOptionalRegular<ELFT>(End, OS, 0); | 
|  | 1443 | } | 
| Rui Ueyama | a5d79d1 | 2015-12-26 09:48:00 +0000 | [diff] [blame] | 1444 | }; | 
|  | 1445 |  | 
| Rui Ueyama | 9d1bacb1 | 2017-02-27 02:31:26 +0000 | [diff] [blame] | 1446 | Define("__preinit_array_start", "__preinit_array_end", Out::PreinitArray); | 
|  | 1447 | Define("__init_array_start", "__init_array_end", Out::InitArray); | 
|  | 1448 | Define("__fini_array_start", "__fini_array_end", Out::FiniArray); | 
| Peter Smith | 17cd375 | 2016-10-27 10:28:53 +0000 | [diff] [blame] | 1449 |  | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1450 | if (OutputSection *Sec = findSection(".ARM.exidx")) | 
| Peter Smith | 17cd375 | 2016-10-27 10:28:53 +0000 | [diff] [blame] | 1451 | Define("__exidx_start", "__exidx_end", Sec); | 
| Rui Ueyama | a5d79d1 | 2015-12-26 09:48:00 +0000 | [diff] [blame] | 1452 | } | 
|  | 1453 |  | 
| Rui Ueyama | d9189ce | 2015-10-15 17:11:03 +0000 | [diff] [blame] | 1454 | // If a section name is valid as a C identifier (which is rare because of | 
|  | 1455 | // the leading '.'), linkers are expected to define __start_<secname> and | 
|  | 1456 | // __stop_<secname> symbols. They are at beginning and end of the section, | 
|  | 1457 | // respectively. This is not requested by the ELF standard, but GNU ld and | 
|  | 1458 | // gold provide the feature, and used by many programs. | 
|  | 1459 | template <class ELFT> | 
| Rafael Espindola | 24e6f36 | 2017-02-24 15:07:30 +0000 | [diff] [blame] | 1460 | void Writer<ELFT>::addStartStopSymbols(OutputSection *Sec) { | 
| Rafael Espindola | 4084941 | 2017-02-24 14:28:00 +0000 | [diff] [blame] | 1461 | StringRef S = Sec->Name; | 
| Rui Ueyama | d9189ce | 2015-10-15 17:11:03 +0000 | [diff] [blame] | 1462 | if (!isValidCIdentifier(S)) | 
|  | 1463 | return; | 
| Rafael Espindola | 5616adf | 2017-03-08 22:36:28 +0000 | [diff] [blame] | 1464 | addOptionalRegular<ELFT>(Saver.save("__start_" + S), Sec, 0, STV_DEFAULT); | 
|  | 1465 | addOptionalRegular<ELFT>(Saver.save("__stop_" + S), Sec, -1, STV_DEFAULT); | 
| Rui Ueyama | d9189ce | 2015-10-15 17:11:03 +0000 | [diff] [blame] | 1466 | } | 
|  | 1467 |  | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1468 | template <class ELFT> OutputSection *Writer<ELFT>::findSection(StringRef Name) { | 
| Rafael Espindola | 1eb3a0f | 2017-07-04 18:26:21 +0000 | [diff] [blame] | 1469 | for (BaseCommand *Base : Script->Opt.Commands) | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1470 | if (auto *Sec = dyn_cast<OutputSection>(Base)) | 
|  | 1471 | if (Sec->Name == Name) | 
|  | 1472 | return Sec; | 
| Rafael Espindola | 43e76cd | 2017-05-26 17:48:27 +0000 | [diff] [blame] | 1473 | return nullptr; | 
|  | 1474 | } | 
|  | 1475 |  | 
| George Rimar | 7702bc2 | 2017-03-16 11:20:02 +0000 | [diff] [blame] | 1476 | static bool needsPtLoad(OutputSection *Sec) { | 
| Rafael Espindola | 04a2e34 | 2016-11-09 01:42:41 +0000 | [diff] [blame] | 1477 | if (!(Sec->Flags & SHF_ALLOC)) | 
| Rafael Espindola | ef762f2 | 2016-02-10 23:29:38 +0000 | [diff] [blame] | 1478 | return false; | 
|  | 1479 |  | 
|  | 1480 | // Don't allocate VA space for TLS NOBITS sections. The PT_TLS PHDR is | 
|  | 1481 | // responsible for allocating space for them, not the PT_LOAD that | 
|  | 1482 | // contains the TLS initialization image. | 
| Rafael Espindola | 04a2e34 | 2016-11-09 01:42:41 +0000 | [diff] [blame] | 1483 | if (Sec->Flags & SHF_TLS && Sec->Type == SHT_NOBITS) | 
| Rafael Espindola | ef762f2 | 2016-02-10 23:29:38 +0000 | [diff] [blame] | 1484 | return false; | 
|  | 1485 | return true; | 
| Michael J. Spencer | 1d299a8 | 2015-09-09 20:48:09 +0000 | [diff] [blame] | 1486 | } | 
|  | 1487 |  | 
| Rafael Espindola | b45fd70 | 2016-09-20 15:22:27 +0000 | [diff] [blame] | 1488 | // Linker scripts are responsible for aligning addresses. Unfortunately, most | 
|  | 1489 | // linker scripts are designed for creating two PT_LOADs only, one RX and one | 
|  | 1490 | // RW. This means that there is no alignment in the RO to RX transition and we | 
|  | 1491 | // cannot create a PT_LOAD there. | 
| Rui Ueyama | 6bd3822 | 2017-04-05 21:37:09 +0000 | [diff] [blame] | 1492 | static uint64_t computeFlags(uint64_t Flags) { | 
| Rui Ueyama | a37ace8d | 2017-02-25 01:52:03 +0000 | [diff] [blame] | 1493 | if (Config->Omagic) | 
| George Rimar | 595a763 | 2016-11-29 09:43:51 +0000 | [diff] [blame] | 1494 | return PF_R | PF_W | PF_X; | 
| Rui Ueyama | 6bd3822 | 2017-04-05 21:37:09 +0000 | [diff] [blame] | 1495 | if (Config->SingleRoRx && !(Flags & PF_W)) | 
|  | 1496 | return Flags | PF_X; | 
|  | 1497 | return Flags; | 
| Rafael Espindola | b45fd70 | 2016-09-20 15:22:27 +0000 | [diff] [blame] | 1498 | } | 
|  | 1499 |  | 
| Rafael Espindola | 4fc6044 | 2016-02-10 22:43:13 +0000 | [diff] [blame] | 1500 | // Decide which program headers to create and which sections to include in each | 
|  | 1501 | // one. | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 1502 | template <class ELFT> std::vector<PhdrEntry *> Writer<ELFT>::createPhdrs() { | 
|  | 1503 | std::vector<PhdrEntry *> Ret; | 
| Rafael Espindola | 17cb7c0 | 2016-12-19 17:01:01 +0000 | [diff] [blame] | 1504 | auto AddHdr = [&](unsigned Type, unsigned Flags) -> PhdrEntry * { | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 1505 | Ret.push_back(make<PhdrEntry>(Type, Flags)); | 
|  | 1506 | return Ret.back(); | 
| Rafael Espindola | 4fc6044 | 2016-02-10 22:43:13 +0000 | [diff] [blame] | 1507 | }; | 
| George Rimar | e3336c0 | 2015-11-24 10:15:50 +0000 | [diff] [blame] | 1508 |  | 
| Rui Ueyama | 803195e | 2015-10-23 21:45:59 +0000 | [diff] [blame] | 1509 | // The first phdr entry is PT_PHDR which describes the program header itself. | 
| Rui Ueyama | 9d1bacb1 | 2017-02-27 02:31:26 +0000 | [diff] [blame] | 1510 | AddHdr(PT_PHDR, PF_R)->add(Out::ProgramHeaders); | 
| Rui Ueyama | 953c2c4 | 2015-10-10 23:59:57 +0000 | [diff] [blame] | 1511 |  | 
| Rui Ueyama | 803195e | 2015-10-23 21:45:59 +0000 | [diff] [blame] | 1512 | // PT_INTERP must be the second entry if exists. | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1513 | if (OutputSection *Cmd = findSection(".interp")) | 
|  | 1514 | AddHdr(PT_INTERP, Cmd->getPhdrFlags())->add(Cmd); | 
| Rafael Espindola | 7010776 | 2015-09-11 18:49:42 +0000 | [diff] [blame] | 1515 |  | 
| Rui Ueyama | 803195e | 2015-10-23 21:45:59 +0000 | [diff] [blame] | 1516 | // Add the first PT_LOAD segment for regular output sections. | 
| Rui Ueyama | 6bd3822 | 2017-04-05 21:37:09 +0000 | [diff] [blame] | 1517 | uint64_t Flags = computeFlags(PF_R); | 
| Rafael Espindola | 17cb7c0 | 2016-12-19 17:01:01 +0000 | [diff] [blame] | 1518 | PhdrEntry *Load = AddHdr(PT_LOAD, Flags); | 
| Rafael Espindola | 02ed757 | 2017-05-04 19:34:17 +0000 | [diff] [blame] | 1519 |  | 
|  | 1520 | // Add the headers. We will remove them if they don't fit. | 
|  | 1521 | Load->add(Out::ElfHeader); | 
|  | 1522 | Load->add(Out::ProgramHeaders); | 
|  | 1523 |  | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1524 | for (OutputSection *Sec : OutputSections) { | 
| Rafael Espindola | 04a2e34 | 2016-11-09 01:42:41 +0000 | [diff] [blame] | 1525 | if (!(Sec->Flags & SHF_ALLOC)) | 
| Rafael Espindola | aab6d5c | 2016-09-16 21:29:07 +0000 | [diff] [blame] | 1526 | break; | 
| George Rimar | 7702bc2 | 2017-03-16 11:20:02 +0000 | [diff] [blame] | 1527 | if (!needsPtLoad(Sec)) | 
| Rafael Espindola | ef762f2 | 2016-02-10 23:29:38 +0000 | [diff] [blame] | 1528 | continue; | 
|  | 1529 |  | 
| George Rimar | 8ceadb3 | 2016-08-17 07:44:19 +0000 | [diff] [blame] | 1530 | // Segments are contiguous memory regions that has the same attributes | 
|  | 1531 | // (e.g. executable or writable). There is one phdr for each segment. | 
|  | 1532 | // Therefore, we need to create a new phdr when the next section has | 
|  | 1533 | // different flags or is loaded at a discontiguous address using AT linker | 
|  | 1534 | // script command. | 
| Rui Ueyama | 6bd3822 | 2017-04-05 21:37:09 +0000 | [diff] [blame] | 1535 | uint64_t NewFlags = computeFlags(Sec->getPhdrFlags()); | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1536 | if (Sec->LMAExpr || Flags != NewFlags) { | 
| Rafael Espindola | e090fb2 | 2016-03-09 21:37:22 +0000 | [diff] [blame] | 1537 | Load = AddHdr(PT_LOAD, NewFlags); | 
| Rafael Espindola | 4fc6044 | 2016-02-10 22:43:13 +0000 | [diff] [blame] | 1538 | Flags = NewFlags; | 
|  | 1539 | } | 
| Michael J. Spencer | 78aa1de | 2015-11-03 00:34:39 +0000 | [diff] [blame] | 1540 |  | 
| Rui Ueyama | 18f084f | 2016-07-20 19:36:41 +0000 | [diff] [blame] | 1541 | Load->add(Sec); | 
| Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 1542 | } | 
| Rafael Espindola | 6b83b90 | 2015-08-12 00:00:24 +0000 | [diff] [blame] | 1543 |  | 
| Rui Ueyama | db00b61 | 2017-02-01 22:42:17 +0000 | [diff] [blame] | 1544 | // Add a TLS segment if any. | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 1545 | PhdrEntry *TlsHdr = make<PhdrEntry>(PT_TLS, PF_R); | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1546 | for (OutputSection *Sec : OutputSections) | 
| Rui Ueyama | db00b61 | 2017-02-01 22:42:17 +0000 | [diff] [blame] | 1547 | if (Sec->Flags & SHF_TLS) | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 1548 | TlsHdr->add(Sec); | 
| George Rimar | 6823c5f | 2017-09-07 11:01:10 +0000 | [diff] [blame] | 1549 | if (TlsHdr->FirstSec) | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 1550 | Ret.push_back(TlsHdr); | 
| Michael J. Spencer | 78aa1de | 2015-11-03 00:34:39 +0000 | [diff] [blame] | 1551 |  | 
| Rui Ueyama | 803195e | 2015-10-23 21:45:59 +0000 | [diff] [blame] | 1552 | // Add an entry for .dynamic. | 
| George Rimar | 69b17c3 | 2017-05-16 10:04:42 +0000 | [diff] [blame] | 1553 | if (InX::DynSymTab) | 
| Rafael Espindola | db5e56f | 2017-05-31 20:17:44 +0000 | [diff] [blame] | 1554 | AddHdr(PT_DYNAMIC, InX::Dynamic->getParent()->getPhdrFlags()) | 
|  | 1555 | ->add(InX::Dynamic->getParent()); | 
| Rafael Espindola | 91009b3 | 2015-08-12 01:45:28 +0000 | [diff] [blame] | 1556 |  | 
| Rafael Espindola | 4fc6044 | 2016-02-10 22:43:13 +0000 | [diff] [blame] | 1557 | // PT_GNU_RELRO includes all sections that should be marked as | 
|  | 1558 | // read-only by dynamic linker after proccessing relocations. | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 1559 | PhdrEntry *RelRo = make<PhdrEntry>(PT_GNU_RELRO, PF_R); | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1560 | for (OutputSection *Sec : OutputSections) | 
| Rafael Espindola | 9e889eb | 2017-05-11 23:31:06 +0000 | [diff] [blame] | 1561 | if (needsPtLoad(Sec) && isRelroSection(Sec)) | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 1562 | RelRo->add(Sec); | 
| George Rimar | 6823c5f | 2017-09-07 11:01:10 +0000 | [diff] [blame] | 1563 | if (RelRo->FirstSec) | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 1564 | Ret.push_back(RelRo); | 
| George Rimar | e3336c0 | 2015-11-24 10:15:50 +0000 | [diff] [blame] | 1565 |  | 
| Rafael Espindola | 4fc6044 | 2016-02-10 22:43:13 +0000 | [diff] [blame] | 1566 | // PT_GNU_EH_FRAME is a special section pointing on .eh_frame_hdr. | 
| Eugene Leviant | 30c1b43 | 2017-03-14 08:49:09 +0000 | [diff] [blame] | 1567 | if (!In<ELFT>::EhFrame->empty() && In<ELFT>::EhFrameHdr && | 
| Rafael Espindola | db5e56f | 2017-05-31 20:17:44 +0000 | [diff] [blame] | 1568 | In<ELFT>::EhFrame->getParent() && In<ELFT>::EhFrameHdr->getParent()) | 
|  | 1569 | AddHdr(PT_GNU_EH_FRAME, In<ELFT>::EhFrameHdr->getParent()->getPhdrFlags()) | 
|  | 1570 | ->add(In<ELFT>::EhFrameHdr->getParent()); | 
| George Rimar | f6bc65a | 2016-01-15 13:34:52 +0000 | [diff] [blame] | 1571 |  | 
| Rui Ueyama | 81cb710 | 2017-03-24 00:15:57 +0000 | [diff] [blame] | 1572 | // PT_OPENBSD_RANDOMIZE is an OpenBSD-specific feature. That makes | 
|  | 1573 | // the dynamic linker fill the segment with random data. | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1574 | if (OutputSection *Cmd = findSection(".openbsd.randomdata")) | 
|  | 1575 | AddHdr(PT_OPENBSD_RANDOMIZE, Cmd->getPhdrFlags())->add(Cmd); | 
| George Rimar | 270173f | 2016-10-14 13:02:22 +0000 | [diff] [blame] | 1576 |  | 
| Rui Ueyama | e79b09a | 2015-11-21 22:19:32 +0000 | [diff] [blame] | 1577 | // PT_GNU_STACK is a special section to tell the loader to make the | 
| Rui Ueyama | a7e8725 | 2017-02-23 08:09:51 +0000 | [diff] [blame] | 1578 | // pages for the stack non-executable. If you really want an executable | 
|  | 1579 | // stack, you can pass -z execstack, but that's not recommended for | 
|  | 1580 | // security reasons. | 
|  | 1581 | unsigned Perm; | 
|  | 1582 | if (Config->ZExecstack) | 
|  | 1583 | Perm = PF_R | PF_W | PF_X; | 
|  | 1584 | else | 
|  | 1585 | Perm = PF_R | PF_W; | 
|  | 1586 | AddHdr(PT_GNU_STACK, Perm)->p_memsz = Config->ZStackSize; | 
| Rafael Espindola | 9907eb0 | 2016-03-01 13:23:29 +0000 | [diff] [blame] | 1587 |  | 
| George Rimar | cc6e567 | 2016-10-14 10:34:36 +0000 | [diff] [blame] | 1588 | // PT_OPENBSD_WXNEEDED is a OpenBSD-specific header to mark the executable | 
|  | 1589 | // is expected to perform W^X violations, such as calling mprotect(2) or | 
|  | 1590 | // mmap(2) with PROT_WRITE | PROT_EXEC, which is prohibited by default on | 
|  | 1591 | // OpenBSD. | 
|  | 1592 | if (Config->ZWxneeded) | 
|  | 1593 | AddHdr(PT_OPENBSD_WXNEEDED, PF_X); | 
|  | 1594 |  | 
| Petr Hosek | 4d65ef3b | 2017-02-01 20:58:41 +0000 | [diff] [blame] | 1595 | // Create one PT_NOTE per a group of contiguous .note sections. | 
|  | 1596 | PhdrEntry *Note = nullptr; | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1597 | for (OutputSection *Sec : OutputSections) { | 
| Petr Hosek | 4d65ef3b | 2017-02-01 20:58:41 +0000 | [diff] [blame] | 1598 | if (Sec->Type == SHT_NOTE) { | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1599 | if (!Note || Sec->LMAExpr) | 
| Petr Hosek | 4d65ef3b | 2017-02-01 20:58:41 +0000 | [diff] [blame] | 1600 | Note = AddHdr(PT_NOTE, PF_R); | 
|  | 1601 | Note->add(Sec); | 
|  | 1602 | } else { | 
|  | 1603 | Note = nullptr; | 
|  | 1604 | } | 
|  | 1605 | } | 
| Rui Ueyama | 703296a | 2016-07-20 19:36:39 +0000 | [diff] [blame] | 1606 | return Ret; | 
| Rafael Espindola | 4fc6044 | 2016-02-10 22:43:13 +0000 | [diff] [blame] | 1607 | } | 
|  | 1608 |  | 
| Rafael Espindola | 8e67000 | 2016-11-28 00:40:21 +0000 | [diff] [blame] | 1609 | template <class ELFT> | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 1610 | void Writer<ELFT>::addPtArmExid(std::vector<PhdrEntry *> &Phdrs) { | 
| Rafael Espindola | 8e67000 | 2016-11-28 00:40:21 +0000 | [diff] [blame] | 1611 | if (Config->EMachine != EM_ARM) | 
|  | 1612 | return; | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1613 | auto I = llvm::find_if(OutputSections, [](OutputSection *Cmd) { | 
|  | 1614 | return Cmd->Type == SHT_ARM_EXIDX; | 
| George Rimar | a951d5c | 2017-07-04 13:10:37 +0000 | [diff] [blame] | 1615 | }); | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1616 | if (I == OutputSections.end()) | 
| Rafael Espindola | 8e67000 | 2016-11-28 00:40:21 +0000 | [diff] [blame] | 1617 | return; | 
|  | 1618 |  | 
|  | 1619 | // PT_ARM_EXIDX is the ARM EHABI equivalent of PT_GNU_EH_FRAME | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 1620 | PhdrEntry *ARMExidx = make<PhdrEntry>(PT_ARM_EXIDX, PF_R); | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1621 | ARMExidx->add(*I); | 
| Rafael Espindola | 8e67000 | 2016-11-28 00:40:21 +0000 | [diff] [blame] | 1622 | Phdrs.push_back(ARMExidx); | 
|  | 1623 | } | 
|  | 1624 |  | 
| Peter Collingbourne | 628ec9f | 2017-01-10 01:21:30 +0000 | [diff] [blame] | 1625 | // The first section of each PT_LOAD, the first section in PT_GNU_RELRO and the | 
|  | 1626 | // first section after PT_GNU_RELRO have to be page aligned so that the dynamic | 
|  | 1627 | // linker can set the permissions. | 
| Rui Ueyama | 4709190 | 2016-03-30 19:41:51 +0000 | [diff] [blame] | 1628 | template <class ELFT> void Writer<ELFT>::fixSectionAlignments() { | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1629 | auto PageAlign = [](OutputSection *Cmd) { | 
| Rafael Espindola | 0f7dc0e | 2017-06-02 01:37:58 +0000 | [diff] [blame] | 1630 | if (Cmd && !Cmd->AddrExpr) | 
|  | 1631 | Cmd->AddrExpr = [=] { | 
|  | 1632 | return alignTo(Script->getDot(), Config->MaxPageSize); | 
|  | 1633 | }; | 
|  | 1634 | }; | 
|  | 1635 |  | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 1636 | for (const PhdrEntry *P : Phdrs) | 
| George Rimar | 6823c5f | 2017-09-07 11:01:10 +0000 | [diff] [blame] | 1637 | if (P->p_type == PT_LOAD && P->FirstSec) | 
|  | 1638 | PageAlign(P->FirstSec); | 
| Rui Ueyama | 4709190 | 2016-03-30 19:41:51 +0000 | [diff] [blame] | 1639 |  | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 1640 | for (const PhdrEntry *P : Phdrs) { | 
|  | 1641 | if (P->p_type != PT_GNU_RELRO) | 
| Rui Ueyama | 4709190 | 2016-03-30 19:41:51 +0000 | [diff] [blame] | 1642 | continue; | 
| George Rimar | 6823c5f | 2017-09-07 11:01:10 +0000 | [diff] [blame] | 1643 | if (P->FirstSec) | 
|  | 1644 | PageAlign(P->FirstSec); | 
| Rui Ueyama | 4709190 | 2016-03-30 19:41:51 +0000 | [diff] [blame] | 1645 | // Find the first section after PT_GNU_RELRO. If it is in a PT_LOAD we | 
|  | 1646 | // have to align it to a page. | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1647 | auto End = OutputSections.end(); | 
| George Rimar | 6823c5f | 2017-09-07 11:01:10 +0000 | [diff] [blame] | 1648 | auto I = std::find(OutputSections.begin(), End, P->LastSec); | 
| Rui Ueyama | 4709190 | 2016-03-30 19:41:51 +0000 | [diff] [blame] | 1649 | if (I == End || (I + 1) == End) | 
|  | 1650 | continue; | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1651 | OutputSection *Cmd = (*(I + 1)); | 
|  | 1652 | if (needsPtLoad(Cmd)) | 
|  | 1653 | PageAlign(Cmd); | 
| Rui Ueyama | 4709190 | 2016-03-30 19:41:51 +0000 | [diff] [blame] | 1654 | } | 
|  | 1655 | } | 
|  | 1656 |  | 
| George Rimar | 5f85732 | 2016-04-27 09:16:28 +0000 | [diff] [blame] | 1657 | // Adjusts the file alignment for a given output section and returns | 
|  | 1658 | // its new file offset. The file offset must be the same with its | 
|  | 1659 | // virtual address (modulo the page size) so that the loader can load | 
|  | 1660 | // executables without any address adjustment. | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1661 | static uint64_t getFileAlignment(uint64_t Off, OutputSection *Cmd) { | 
| Rafael Espindola | 8b8f74f | 2016-12-07 20:20:39 +0000 | [diff] [blame] | 1662 | // If the section is not in a PT_LOAD, we just have to align it. | 
| George Rimar | 582ede8 | 2017-09-07 10:53:07 +0000 | [diff] [blame] | 1663 | if (!Cmd->PtLoad) | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1664 | return alignTo(Off, Cmd->Alignment); | 
| Eugene Leviant | 3d9abec | 2016-09-29 09:20:33 +0000 | [diff] [blame] | 1665 |  | 
| George Rimar | 6823c5f | 2017-09-07 11:01:10 +0000 | [diff] [blame] | 1666 | OutputSection *First = Cmd->PtLoad->FirstSec; | 
| Rafael Espindola | 8b8f74f | 2016-12-07 20:20:39 +0000 | [diff] [blame] | 1667 | // The first section in a PT_LOAD has to have congruent offset and address | 
|  | 1668 | // module the page size. | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1669 | if (Cmd == First) | 
|  | 1670 | return alignTo(Off, std::max<uint64_t>(Cmd->Alignment, Config->MaxPageSize), | 
|  | 1671 | Cmd->Addr); | 
| Rafael Espindola | 8b8f74f | 2016-12-07 20:20:39 +0000 | [diff] [blame] | 1672 |  | 
|  | 1673 | // If two sections share the same PT_LOAD the file offset is calculated | 
|  | 1674 | // using this formula: Off2 = Off1 + (VA2 - VA1). | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1675 | return First->Offset + Cmd->Addr - First->Addr; | 
| George Rimar | 5f85732 | 2016-04-27 09:16:28 +0000 | [diff] [blame] | 1676 | } | 
|  | 1677 |  | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1678 | static uint64_t setOffset(OutputSection *Cmd, uint64_t Off) { | 
|  | 1679 | if (Cmd->Type == SHT_NOBITS) { | 
|  | 1680 | Cmd->Offset = Off; | 
| Rui Ueyama | 35723f0 | 2017-02-14 23:35:42 +0000 | [diff] [blame] | 1681 | return Off; | 
| George Rimar | 86ce267 | 2016-08-25 09:05:47 +0000 | [diff] [blame] | 1682 | } | 
|  | 1683 |  | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1684 | Off = getFileAlignment(Off, Cmd); | 
|  | 1685 | Cmd->Offset = Off; | 
|  | 1686 | return Off + Cmd->Size; | 
| George Rimar | 86ce267 | 2016-08-25 09:05:47 +0000 | [diff] [blame] | 1687 | } | 
|  | 1688 |  | 
|  | 1689 | template <class ELFT> void Writer<ELFT>::assignFileOffsetsBinary() { | 
| Rui Ueyama | 6bd3822 | 2017-04-05 21:37:09 +0000 | [diff] [blame] | 1690 | uint64_t Off = 0; | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1691 | for (OutputSection *Sec : OutputSections) | 
| Rafael Espindola | 04a2e34 | 2016-11-09 01:42:41 +0000 | [diff] [blame] | 1692 | if (Sec->Flags & SHF_ALLOC) | 
| Rui Ueyama | 6bd3822 | 2017-04-05 21:37:09 +0000 | [diff] [blame] | 1693 | Off = setOffset(Sec, Off); | 
|  | 1694 | FileSize = alignTo(Off, Config->Wordsize); | 
| George Rimar | 86ce267 | 2016-08-25 09:05:47 +0000 | [diff] [blame] | 1695 | } | 
|  | 1696 |  | 
| Rui Ueyama | e044e9c | 2016-04-01 17:07:17 +0000 | [diff] [blame] | 1697 | // Assign file offsets to output sections. | 
|  | 1698 | template <class ELFT> void Writer<ELFT>::assignFileOffsets() { | 
| Rui Ueyama | 6bd3822 | 2017-04-05 21:37:09 +0000 | [diff] [blame] | 1699 | uint64_t Off = 0; | 
|  | 1700 | Off = setOffset(Out::ElfHeader, Off); | 
|  | 1701 | Off = setOffset(Out::ProgramHeaders, Off); | 
| George Rimar | 7ca0627 | 2016-04-06 07:20:45 +0000 | [diff] [blame] | 1702 |  | 
| Petr Hosek | edd6c35 | 2017-08-02 16:35:00 +0000 | [diff] [blame] | 1703 | PhdrEntry *LastRX = nullptr; | 
|  | 1704 | for (PhdrEntry *P : Phdrs) | 
|  | 1705 | if (P->p_type == PT_LOAD && (P->p_flags & PF_X)) | 
|  | 1706 | LastRX = P; | 
|  | 1707 |  | 
|  | 1708 | for (OutputSection *Sec : OutputSections) { | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1709 | Off = setOffset(Sec, Off); | 
| Petr Hosek | edd6c35 | 2017-08-02 16:35:00 +0000 | [diff] [blame] | 1710 | if (Script->Opt.HasSections) | 
|  | 1711 | continue; | 
|  | 1712 | // If this is a last section of the last executable segment and that | 
|  | 1713 | // segment is the last loadable segment, align the offset of the | 
|  | 1714 | // following section to avoid loading non-segments parts of the file. | 
| George Rimar | 6823c5f | 2017-09-07 11:01:10 +0000 | [diff] [blame] | 1715 | if (LastRX && LastRX->LastSec == Sec) | 
| Petr Hosek | edd6c35 | 2017-08-02 16:35:00 +0000 | [diff] [blame] | 1716 | Off = alignTo(Off, Target->PageSize); | 
|  | 1717 | } | 
| Eugene Leviant | 467c4d5 | 2016-07-01 10:27:36 +0000 | [diff] [blame] | 1718 |  | 
| Rui Ueyama | 6bd3822 | 2017-04-05 21:37:09 +0000 | [diff] [blame] | 1719 | SectionHeaderOff = alignTo(Off, Config->Wordsize); | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1720 | FileSize = SectionHeaderOff + (OutputSections.size() + 1) * sizeof(Elf_Shdr); | 
| Rui Ueyama | e044e9c | 2016-04-01 17:07:17 +0000 | [diff] [blame] | 1721 | } | 
|  | 1722 |  | 
|  | 1723 | // Finalize the program headers. We call this function after we assign | 
|  | 1724 | // file offsets and VAs to all sections. | 
|  | 1725 | template <class ELFT> void Writer<ELFT>::setPhdrs() { | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 1726 | for (PhdrEntry *P : Phdrs) { | 
| George Rimar | 6823c5f | 2017-09-07 11:01:10 +0000 | [diff] [blame] | 1727 | OutputSection *First = P->FirstSec; | 
|  | 1728 | OutputSection *Last = P->LastSec; | 
| Rui Ueyama | e8a45e4 | 2016-04-01 22:42:04 +0000 | [diff] [blame] | 1729 | if (First) { | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 1730 | P->p_filesz = Last->Offset - First->Offset; | 
| Rafael Espindola | 04a2e34 | 2016-11-09 01:42:41 +0000 | [diff] [blame] | 1731 | if (Last->Type != SHT_NOBITS) | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 1732 | P->p_filesz += Last->Size; | 
|  | 1733 | P->p_memsz = Last->Addr + Last->Size - First->Addr; | 
|  | 1734 | P->p_offset = First->Offset; | 
|  | 1735 | P->p_vaddr = First->Addr; | 
|  | 1736 | if (!P->HasLMA) | 
|  | 1737 | P->p_paddr = First->getLMA(); | 
| Rafael Espindola | 4fc6044 | 2016-02-10 22:43:13 +0000 | [diff] [blame] | 1738 | } | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 1739 | if (P->p_type == PT_LOAD) | 
|  | 1740 | P->p_align = std::max<uint64_t>(P->p_align, Config->MaxPageSize); | 
|  | 1741 | else if (P->p_type == PT_GNU_RELRO) { | 
|  | 1742 | P->p_align = 1; | 
| Peter Collingbourne | 7b5088b | 2017-01-04 18:56:15 +0000 | [diff] [blame] | 1743 | // The glibc dynamic loader rounds the size down, so we need to round up | 
|  | 1744 | // to protect the last page. This is a no-op on FreeBSD which always | 
|  | 1745 | // rounds up. | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 1746 | P->p_memsz = alignTo(P->p_memsz, Target->PageSize); | 
| Peter Collingbourne | 7b5088b | 2017-01-04 18:56:15 +0000 | [diff] [blame] | 1747 | } | 
| George Rimar | 8ceadb3 | 2016-08-17 07:44:19 +0000 | [diff] [blame] | 1748 |  | 
| Rafael Espindola | 4fc6044 | 2016-02-10 22:43:13 +0000 | [diff] [blame] | 1749 | // The TLS pointer goes after PT_TLS. At least glibc will align it, | 
|  | 1750 | // so round up the size to make sure the offsets are correct. | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 1751 | if (P->p_type == PT_TLS) { | 
|  | 1752 | Out::TlsPhdr = P; | 
|  | 1753 | if (P->p_memsz) | 
|  | 1754 | P->p_memsz = alignTo(P->p_memsz, P->p_align); | 
| Rui Ueyama | 803195e | 2015-10-23 21:45:59 +0000 | [diff] [blame] | 1755 | } | 
|  | 1756 | } | 
| Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 1757 | } | 
|  | 1758 |  | 
| Rui Ueyama | 2eda6d1 | 2016-11-23 22:41:00 +0000 | [diff] [blame] | 1759 | // The entry point address is chosen in the following ways. | 
|  | 1760 | // | 
|  | 1761 | // 1. the '-e' entry command-line option; | 
|  | 1762 | // 2. the ENTRY(symbol) command in a linker control script; | 
|  | 1763 | // 3. the value of the symbol start, if present; | 
|  | 1764 | // 4. the address of the first byte of the .text section, if present; | 
|  | 1765 | // 5. the address 0. | 
| Rui Ueyama | 6bd3822 | 2017-04-05 21:37:09 +0000 | [diff] [blame] | 1766 | template <class ELFT> uint64_t Writer<ELFT>::getEntryAddr() { | 
| Rui Ueyama | a1407c4 | 2016-12-07 03:23:06 +0000 | [diff] [blame] | 1767 | // Case 1, 2 or 3. As a special case, if the symbol is actually | 
|  | 1768 | // a number, we'll use that number as an address. | 
| Rafael Espindola | 244ef98 | 2017-07-26 18:42:48 +0000 | [diff] [blame] | 1769 | if (SymbolBody *B = Symtab->find(Config->Entry)) | 
| George Rimar | f64618a | 2017-03-17 11:56:54 +0000 | [diff] [blame] | 1770 | return B->getVA(); | 
| Rui Ueyama | a1407c4 | 2016-12-07 03:23:06 +0000 | [diff] [blame] | 1771 | uint64_t Addr; | 
| George Rimar | ab94768 | 2017-05-16 08:19:25 +0000 | [diff] [blame] | 1772 | if (to_integer(Config->Entry, Addr)) | 
| Rui Ueyama | a1407c4 | 2016-12-07 03:23:06 +0000 | [diff] [blame] | 1773 | return Addr; | 
| Rui Ueyama | 2eda6d1 | 2016-11-23 22:41:00 +0000 | [diff] [blame] | 1774 |  | 
|  | 1775 | // Case 4 | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1776 | if (OutputSection *Sec = findSection(".text")) { | 
| Rui Ueyama | 9e5f5ef | 2016-12-07 04:06:21 +0000 | [diff] [blame] | 1777 | if (Config->WarnMissingEntry) | 
| Petr Hosek | 2f50fef | 2016-12-07 02:26:16 +0000 | [diff] [blame] | 1778 | warn("cannot find entry symbol " + Config->Entry + "; defaulting to 0x" + | 
|  | 1779 | utohexstr(Sec->Addr)); | 
| Rui Ueyama | 2eda6d1 | 2016-11-23 22:41:00 +0000 | [diff] [blame] | 1780 | return Sec->Addr; | 
|  | 1781 | } | 
|  | 1782 |  | 
|  | 1783 | // Case 5 | 
| Rui Ueyama | 9e5f5ef | 2016-12-07 04:06:21 +0000 | [diff] [blame] | 1784 | if (Config->WarnMissingEntry) | 
| Petr Hosek | 2f50fef | 2016-12-07 02:26:16 +0000 | [diff] [blame] | 1785 | warn("cannot find entry symbol " + Config->Entry + | 
|  | 1786 | "; not setting start address"); | 
| Rui Ueyama | 8da7aa0 | 2016-10-20 00:07:36 +0000 | [diff] [blame] | 1787 | return 0; | 
| Rui Ueyama | 3bfaba9 | 2015-12-24 08:37:34 +0000 | [diff] [blame] | 1788 | } | 
|  | 1789 |  | 
| Rui Ueyama | 4cea4e8 | 2016-02-25 19:28:37 +0000 | [diff] [blame] | 1790 | static uint16_t getELFType() { | 
| Rui Ueyama | d57e74b7 | 2017-03-17 23:29:01 +0000 | [diff] [blame] | 1791 | if (Config->Pic) | 
| Rui Ueyama | 4cea4e8 | 2016-02-25 19:28:37 +0000 | [diff] [blame] | 1792 | return ET_DYN; | 
|  | 1793 | if (Config->Relocatable) | 
|  | 1794 | return ET_REL; | 
|  | 1795 | return ET_EXEC; | 
|  | 1796 | } | 
|  | 1797 |  | 
| Rui Ueyama | 1a311f1 | 2015-12-26 10:52:26 +0000 | [diff] [blame] | 1798 | // This function is called after we have assigned address and size | 
| Rafael Espindola | 78493a2 | 2017-01-28 17:48:21 +0000 | [diff] [blame] | 1799 | // to each section. This function fixes some predefined | 
| Rui Ueyama | 1a311f1 | 2015-12-26 10:52:26 +0000 | [diff] [blame] | 1800 | // symbol values that depend on section address and size. | 
| Rafael Espindola | 78493a2 | 2017-01-28 17:48:21 +0000 | [diff] [blame] | 1801 | template <class ELFT> void Writer<ELFT>::fixPredefinedSymbols() { | 
| George Rimar | e6c5d38 | 2017-04-05 10:03:25 +0000 | [diff] [blame] | 1802 | if (ElfSym::Bss) | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1803 | ElfSym::Bss->Section = findSection(".bss"); | 
| George Rimar | e6c5d38 | 2017-04-05 10:03:25 +0000 | [diff] [blame] | 1804 |  | 
| Simon Atanasyan | 8469b88 | 2016-11-23 22:22:16 +0000 | [diff] [blame] | 1805 | // Setup MIPS _gp_disp/__gnu_local_gp symbols which should | 
|  | 1806 | // be equal to the _gp symbol's value. | 
| Rafael Espindola | cccd2c6 | 2017-05-31 22:46:19 +0000 | [diff] [blame] | 1807 | if (Config->EMachine == EM_MIPS && !ElfSym::MipsGp->Value) { | 
|  | 1808 | // Find GP-relative section with the lowest address | 
|  | 1809 | // and use this address to calculate default _gp value. | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1810 | for (const OutputSection *Cmd : OutputSections) { | 
|  | 1811 | const OutputSection *OS = Cmd; | 
| Rafael Espindola | 47c9f84 | 2017-05-31 22:49:50 +0000 | [diff] [blame] | 1812 | if (OS->Flags & SHF_MIPS_GPREL) { | 
|  | 1813 | ElfSym::MipsGp->Value = OS->Addr + 0x7ff0; | 
|  | 1814 | break; | 
|  | 1815 | } | 
|  | 1816 | } | 
| Simon Atanasyan | 8469b88 | 2016-11-23 22:22:16 +0000 | [diff] [blame] | 1817 | } | 
| Rui Ueyama | 1a311f1 | 2015-12-26 10:52:26 +0000 | [diff] [blame] | 1818 | } | 
|  | 1819 |  | 
| Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 1820 | template <class ELFT> void Writer<ELFT>::writeHeader() { | 
|  | 1821 | uint8_t *Buf = Buffer->getBufferStart(); | 
| Rui Ueyama | e08cd67 | 2015-10-23 22:44:39 +0000 | [diff] [blame] | 1822 | memcpy(Buf, "\177ELF", 4); | 
|  | 1823 |  | 
| Rui Ueyama | 6621d8e | 2015-10-24 17:57:40 +0000 | [diff] [blame] | 1824 | // Write the ELF header. | 
| Rafael Espindola | 18608a0 | 2015-09-08 21:57:31 +0000 | [diff] [blame] | 1825 | auto *EHdr = reinterpret_cast<Elf_Ehdr *>(Buf); | 
| Rui Ueyama | f2dc436 | 2017-04-05 21:08:47 +0000 | [diff] [blame] | 1826 | EHdr->e_ident[EI_CLASS] = Config->Is64 ? ELFCLASS64 : ELFCLASS32; | 
|  | 1827 | EHdr->e_ident[EI_DATA] = Config->IsLE ? ELFDATA2LSB : ELFDATA2MSB; | 
| Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 1828 | EHdr->e_ident[EI_VERSION] = EV_CURRENT; | 
| Rafael Espindola | 7cc713a | 2016-10-27 14:00:51 +0000 | [diff] [blame] | 1829 | EHdr->e_ident[EI_OSABI] = Config->OSABI; | 
| Rui Ueyama | 4cea4e8 | 2016-02-25 19:28:37 +0000 | [diff] [blame] | 1830 | EHdr->e_type = getELFType(); | 
| Rafael Espindola | 7cc713a | 2016-10-27 14:00:51 +0000 | [diff] [blame] | 1831 | EHdr->e_machine = Config->EMachine; | 
| Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 1832 | EHdr->e_version = EV_CURRENT; | 
| Rui Ueyama | 2eda6d1 | 2016-11-23 22:41:00 +0000 | [diff] [blame] | 1833 | EHdr->e_entry = getEntryAddr(); | 
| Michael J. Spencer | 8039dae2 | 2015-07-29 00:30:10 +0000 | [diff] [blame] | 1834 | EHdr->e_shoff = SectionHeaderOff; | 
| Rafael Espindola | 18608a0 | 2015-09-08 21:57:31 +0000 | [diff] [blame] | 1835 | EHdr->e_ehsize = sizeof(Elf_Ehdr); | 
| Rui Ueyama | 2f1b79f | 2015-10-10 22:34:30 +0000 | [diff] [blame] | 1836 | EHdr->e_phnum = Phdrs.size(); | 
| Rafael Espindola | 18608a0 | 2015-09-08 21:57:31 +0000 | [diff] [blame] | 1837 | EHdr->e_shentsize = sizeof(Elf_Shdr); | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1838 | EHdr->e_shnum = OutputSections.size() + 1; | 
| Rafael Espindola | db5e56f | 2017-05-31 20:17:44 +0000 | [diff] [blame] | 1839 | EHdr->e_shstrndx = InX::ShStrTab->getParent()->SectionIndex; | 
| Rui Ueyama | 6621d8e | 2015-10-24 17:57:40 +0000 | [diff] [blame] | 1840 |  | 
| Rui Ueyama | 1e2e8ea | 2016-09-13 20:51:32 +0000 | [diff] [blame] | 1841 | if (Config->EMachine == EM_ARM) | 
|  | 1842 | // We don't currently use any features incompatible with EF_ARM_EABI_VER5, | 
|  | 1843 | // but we don't have any firm guarantees of conformance. Linux AArch64 | 
|  | 1844 | // kernels (as of 2016) require an EABI version to be set. | 
|  | 1845 | EHdr->e_flags = EF_ARM_EABI_VER5; | 
|  | 1846 | else if (Config->EMachine == EM_MIPS) | 
| Simon Atanasyan | 4f90c2f | 2016-07-20 20:30:41 +0000 | [diff] [blame] | 1847 | EHdr->e_flags = getMipsEFlags<ELFT>(); | 
| Rui Ueyama | 22b5d1f | 2016-03-13 19:29:17 +0000 | [diff] [blame] | 1848 |  | 
| George Rimar | 58941ee | 2016-02-25 08:23:37 +0000 | [diff] [blame] | 1849 | if (!Config->Relocatable) { | 
|  | 1850 | EHdr->e_phoff = sizeof(Elf_Ehdr); | 
|  | 1851 | EHdr->e_phentsize = sizeof(Elf_Phdr); | 
|  | 1852 | } | 
|  | 1853 |  | 
| Rui Ueyama | 6621d8e | 2015-10-24 17:57:40 +0000 | [diff] [blame] | 1854 | // Write the program header table. | 
| Rafael Espindola | 4fc6044 | 2016-02-10 22:43:13 +0000 | [diff] [blame] | 1855 | auto *HBuf = reinterpret_cast<Elf_Phdr *>(Buf + EHdr->e_phoff); | 
| George Rimar | aa35418 | 2017-07-27 07:46:50 +0000 | [diff] [blame] | 1856 | for (PhdrEntry *P : Phdrs) { | 
|  | 1857 | HBuf->p_type = P->p_type; | 
|  | 1858 | HBuf->p_flags = P->p_flags; | 
|  | 1859 | HBuf->p_offset = P->p_offset; | 
|  | 1860 | HBuf->p_vaddr = P->p_vaddr; | 
|  | 1861 | HBuf->p_paddr = P->p_paddr; | 
|  | 1862 | HBuf->p_filesz = P->p_filesz; | 
|  | 1863 | HBuf->p_memsz = P->p_memsz; | 
|  | 1864 | HBuf->p_align = P->p_align; | 
| Rafael Espindola | 17cb7c0 | 2016-12-19 17:01:01 +0000 | [diff] [blame] | 1865 | ++HBuf; | 
|  | 1866 | } | 
| Rafael Espindola | e438e07 | 2015-09-08 22:55:28 +0000 | [diff] [blame] | 1867 |  | 
| Rui Ueyama | 6621d8e | 2015-10-24 17:57:40 +0000 | [diff] [blame] | 1868 | // Write the section header table. Note that the first table entry is null. | 
| Rui Ueyama | ad59b65 | 2016-02-25 23:58:21 +0000 | [diff] [blame] | 1869 | auto *SHdrs = reinterpret_cast<Elf_Shdr *>(Buf + EHdr->e_shoff); | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1870 | for (OutputSection *Sec : OutputSections) | 
|  | 1871 | Sec->writeHeaderTo<ELFT>(++SHdrs); | 
| Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 1872 | } | 
|  | 1873 |  | 
| Rui Ueyama | 6d12eae | 2016-12-05 17:40:37 +0000 | [diff] [blame] | 1874 | // Open a result file. | 
| Rui Ueyama | f7f52ef | 2016-04-01 17:24:19 +0000 | [diff] [blame] | 1875 | template <class ELFT> void Writer<ELFT>::openFile() { | 
| Rui Ueyama | 6bd3822 | 2017-04-05 21:37:09 +0000 | [diff] [blame] | 1876 | if (!Config->Is64 && FileSize > UINT32_MAX) { | 
|  | 1877 | error("output file too large: " + Twine(FileSize) + " bytes"); | 
|  | 1878 | return; | 
|  | 1879 | } | 
|  | 1880 |  | 
| Rui Ueyama | 6d12eae | 2016-12-05 17:40:37 +0000 | [diff] [blame] | 1881 | unlinkAsync(Config->OutputFile); | 
| Rafael Espindola | bdc8f2f | 2015-08-13 00:31:46 +0000 | [diff] [blame] | 1882 | ErrorOr<std::unique_ptr<FileOutputBuffer>> BufferOrErr = | 
| Rui Ueyama | cbe3926 | 2016-02-02 22:48:04 +0000 | [diff] [blame] | 1883 | FileOutputBuffer::create(Config->OutputFile, FileSize, | 
|  | 1884 | FileOutputBuffer::F_executable); | 
| Rui Ueyama | 6d12eae | 2016-12-05 17:40:37 +0000 | [diff] [blame] | 1885 |  | 
| Rui Ueyama | aa2db88 | 2016-07-15 01:38:54 +0000 | [diff] [blame] | 1886 | if (auto EC = BufferOrErr.getError()) | 
| Rui Ueyama | c8d3a83 | 2017-01-12 22:18:04 +0000 | [diff] [blame] | 1887 | error("failed to open " + Config->OutputFile + ": " + EC.message()); | 
| Rui Ueyama | f7f52ef | 2016-04-01 17:24:19 +0000 | [diff] [blame] | 1888 | else | 
| Rui Ueyama | aa2db88 | 2016-07-15 01:38:54 +0000 | [diff] [blame] | 1889 | Buffer = std::move(*BufferOrErr); | 
| Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 1890 | } | 
|  | 1891 |  | 
| George Rimar | 86ce267 | 2016-08-25 09:05:47 +0000 | [diff] [blame] | 1892 | template <class ELFT> void Writer<ELFT>::writeSectionsBinary() { | 
|  | 1893 | uint8_t *Buf = Buffer->getBufferStart(); | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1894 | for (OutputSection *Sec : OutputSections) | 
| Rafael Espindola | 04a2e34 | 2016-11-09 01:42:41 +0000 | [diff] [blame] | 1895 | if (Sec->Flags & SHF_ALLOC) | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1896 | Sec->writeTo<ELFT>(Buf + Sec->Offset); | 
| George Rimar | 86ce267 | 2016-08-25 09:05:47 +0000 | [diff] [blame] | 1897 | } | 
|  | 1898 |  | 
| Rui Ueyama | 6238ed2 | 2017-08-14 21:18:12 +0000 | [diff] [blame] | 1899 | static void fillTrap(uint8_t *I, uint8_t *End) { | 
| George Rimar | f7ef2a1 | 2017-08-21 08:31:14 +0000 | [diff] [blame] | 1900 | for (; I + 4 <= End; I += 4) | 
| Petr Hosek | edd6c35 | 2017-08-02 16:35:00 +0000 | [diff] [blame] | 1901 | memcpy(I, &Target->TrapInstr, 4); | 
|  | 1902 | } | 
|  | 1903 |  | 
| Rui Ueyama | 6238ed2 | 2017-08-14 21:18:12 +0000 | [diff] [blame] | 1904 | // Fill the last page of executable segments with trap instructions | 
|  | 1905 | // instead of leaving them as zero. Even though it is not required by any | 
|  | 1906 | // standard, it is in general a good thing to do for security reasons. | 
|  | 1907 | // | 
|  | 1908 | // We'll leave other pages in segments as-is because the rest will be | 
|  | 1909 | // overwritten by output sections. | 
| Petr Hosek | edd6c35 | 2017-08-02 16:35:00 +0000 | [diff] [blame] | 1910 | template <class ELFT> void Writer<ELFT>::writeTrapInstr() { | 
|  | 1911 | if (Script->Opt.HasSections) | 
|  | 1912 | return; | 
|  | 1913 |  | 
| Rui Ueyama | 6238ed2 | 2017-08-14 21:18:12 +0000 | [diff] [blame] | 1914 | // Fill the last page. | 
| Petr Hosek | edd6c35 | 2017-08-02 16:35:00 +0000 | [diff] [blame] | 1915 | uint8_t *Buf = Buffer->getBufferStart(); | 
| Rui Ueyama | 6238ed2 | 2017-08-14 21:18:12 +0000 | [diff] [blame] | 1916 | for (PhdrEntry *P : Phdrs) | 
|  | 1917 | if (P->p_type == PT_LOAD && (P->p_flags & PF_X)) | 
|  | 1918 | fillTrap(Buf + alignDown(P->p_offset + P->p_filesz, Target->PageSize), | 
|  | 1919 | Buf + alignTo(P->p_offset + P->p_filesz, Target->PageSize)); | 
| Petr Hosek | edd6c35 | 2017-08-02 16:35:00 +0000 | [diff] [blame] | 1920 |  | 
| Rui Ueyama | 6238ed2 | 2017-08-14 21:18:12 +0000 | [diff] [blame] | 1921 | // Round up the file size of the last segment to the page boundary iff it is | 
|  | 1922 | // an executable segment to ensure that other other tools don't accidentally | 
|  | 1923 | // trim the instruction padding (e.g. when stripping the file). | 
| Petr Hosek | edd6c35 | 2017-08-02 16:35:00 +0000 | [diff] [blame] | 1924 | PhdrEntry *LastRX = nullptr; | 
|  | 1925 | for (PhdrEntry *P : Phdrs) { | 
|  | 1926 | if (P->p_type != PT_LOAD) | 
|  | 1927 | continue; | 
|  | 1928 | if (P->p_flags & PF_X) | 
|  | 1929 | LastRX = P; | 
|  | 1930 | else | 
|  | 1931 | LastRX = nullptr; | 
|  | 1932 | } | 
| Petr Hosek | edd6c35 | 2017-08-02 16:35:00 +0000 | [diff] [blame] | 1933 | if (LastRX) | 
| Petr Hosek | 7ab9f7b | 2017-09-01 21:48:20 +0000 | [diff] [blame] | 1934 | LastRX->p_memsz = LastRX->p_filesz = | 
|  | 1935 | alignTo(LastRX->p_filesz, Target->PageSize); | 
| Petr Hosek | edd6c35 | 2017-08-02 16:35:00 +0000 | [diff] [blame] | 1936 | } | 
|  | 1937 |  | 
| Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 1938 | // Write section contents to a mmap'ed file. | 
|  | 1939 | template <class ELFT> void Writer<ELFT>::writeSections() { | 
|  | 1940 | uint8_t *Buf = Buffer->getBufferStart(); | 
| Hal Finkel | daedc12 | 2015-10-12 23:16:53 +0000 | [diff] [blame] | 1941 |  | 
| Rui Ueyama | 7511825 | 2016-08-09 01:35:37 +0000 | [diff] [blame] | 1942 | // PPC64 needs to process relocations in the .opd section | 
|  | 1943 | // before processing relocations in code-containing sections. | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1944 | if (auto *OpdCmd = findSection(".opd")) { | 
|  | 1945 | Out::Opd = OpdCmd; | 
| Rui Ueyama | 9d1bacb1 | 2017-02-27 02:31:26 +0000 | [diff] [blame] | 1946 | Out::OpdBuf = Buf + Out::Opd->Offset; | 
| Rafael Espindola | 55b169b | 2017-05-24 18:08:04 +0000 | [diff] [blame] | 1947 | OpdCmd->template writeTo<ELFT>(Buf + Out::Opd->Offset); | 
| Rafael Espindola | 7a51305 | 2015-10-13 14:45:51 +0000 | [diff] [blame] | 1948 | } | 
| Hal Finkel | daedc12 | 2015-10-12 23:16:53 +0000 | [diff] [blame] | 1949 |  | 
| Rafael Espindola | 24e6f36 | 2017-02-24 15:07:30 +0000 | [diff] [blame] | 1950 | OutputSection *EhFrameHdr = | 
| Rafael Espindola | 881cc16 | 2017-05-26 17:28:17 +0000 | [diff] [blame] | 1951 | (In<ELFT>::EhFrameHdr && !In<ELFT>::EhFrameHdr->empty()) | 
| Rafael Espindola | db5e56f | 2017-05-31 20:17:44 +0000 | [diff] [blame] | 1952 | ? In<ELFT>::EhFrameHdr->getParent() | 
| Rafael Espindola | 881cc16 | 2017-05-26 17:28:17 +0000 | [diff] [blame] | 1953 | : nullptr; | 
| Rafael Espindola | 08d6a3f | 2017-02-11 01:40:49 +0000 | [diff] [blame] | 1954 |  | 
|  | 1955 | // In -r or -emit-relocs mode, write the relocation sections first as in | 
|  | 1956 | // ELf_Rel targets we might find out that we need to modify the relocated | 
|  | 1957 | // section while doing it. | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1958 | for (OutputSection *Sec : OutputSections) | 
| Rafael Espindola | 08d6a3f | 2017-02-11 01:40:49 +0000 | [diff] [blame] | 1959 | if (Sec->Type == SHT_REL || Sec->Type == SHT_RELA) | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1960 | Sec->writeTo<ELFT>(Buf + Sec->Offset); | 
| Rafael Espindola | 08d6a3f | 2017-02-11 01:40:49 +0000 | [diff] [blame] | 1961 |  | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1962 | for (OutputSection *Sec : OutputSections) | 
| Rui Ueyama | 9d1bacb1 | 2017-02-27 02:31:26 +0000 | [diff] [blame] | 1963 | if (Sec != Out::Opd && Sec != EhFrameHdr && Sec->Type != SHT_REL && | 
| Rafael Espindola | 08d6a3f | 2017-02-11 01:40:49 +0000 | [diff] [blame] | 1964 | Sec->Type != SHT_RELA) | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1965 | Sec->writeTo<ELFT>(Buf + Sec->Offset); | 
| Eugene Leviant | e4f590f | 2016-08-31 07:43:50 +0000 | [diff] [blame] | 1966 |  | 
|  | 1967 | // The .eh_frame_hdr depends on .eh_frame section contents, therefore | 
|  | 1968 | // it should be written after .eh_frame is written. | 
| Rafael Espindola | 8c022ca | 2017-07-27 19:22:43 +0000 | [diff] [blame] | 1969 | if (EhFrameHdr) | 
|  | 1970 | EhFrameHdr->writeTo<ELFT>(Buf + EhFrameHdr->Offset); | 
| Michael J. Spencer | 84487f1 | 2015-07-24 21:03:07 +0000 | [diff] [blame] | 1971 | } | 
| Rui Ueyama | 3ce825e | 2015-10-09 21:07:25 +0000 | [diff] [blame] | 1972 |  | 
| Rui Ueyama | 634ddf0 | 2016-03-11 20:51:53 +0000 | [diff] [blame] | 1973 | template <class ELFT> void Writer<ELFT>::writeBuildId() { | 
| Rafael Espindola | db5e56f | 2017-05-31 20:17:44 +0000 | [diff] [blame] | 1974 | if (!InX::BuildId || !InX::BuildId->getParent()) | 
| Rui Ueyama | 634ddf0 | 2016-03-11 20:51:53 +0000 | [diff] [blame] | 1975 | return; | 
|  | 1976 |  | 
| Petr Hosek | fdfcb79 | 2016-09-01 22:43:03 +0000 | [diff] [blame] | 1977 | // Compute a hash of all sections of the output file. | 
| Rui Ueyama | 634ddf0 | 2016-03-11 20:51:53 +0000 | [diff] [blame] | 1978 | uint8_t *Start = Buffer->getBufferStart(); | 
| Petr Hosek | fdfcb79 | 2016-09-01 22:43:03 +0000 | [diff] [blame] | 1979 | uint8_t *End = Start + FileSize; | 
| Rafael Espindola | 895aea6 | 2017-05-11 22:02:41 +0000 | [diff] [blame] | 1980 | InX::BuildId->writeBuildId({Start, End}); | 
| Rui Ueyama | 634ddf0 | 2016-03-11 20:51:53 +0000 | [diff] [blame] | 1981 | } | 
|  | 1982 |  | 
| Rui Ueyama | 84907c5 | 2016-08-09 03:38:23 +0000 | [diff] [blame] | 1983 | template void elf::writeResult<ELF32LE>(); | 
|  | 1984 | template void elf::writeResult<ELF32BE>(); | 
|  | 1985 | template void elf::writeResult<ELF64LE>(); | 
|  | 1986 | template void elf::writeResult<ELF64BE>(); |