1 //===- MarkLive.cpp -------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements --gc-sections, which is a feature to remove unused
10 // sections from output. Unused sections are sections that are not reachable
11 // from known GC-root symbols or sections. Naturally the feature is
12 // implemented as a mark-sweep garbage collector.
13 //
14 // Here's how it works. Each InputSectionBase has a "Live" bit. The bit is off
15 // by default. Starting with GC-root symbols or sections, markLive function
16 // defined in this file visits all reachable sections to set their Live
17 // bits. Writer will then ignore sections whose Live bits are off, so that
18 // such sections are not included into output.
19 //
20 //===----------------------------------------------------------------------===//
21 
22 #include "MarkLive.h"
23 #include "InputSection.h"
24 #include "LinkerScript.h"
25 #include "OutputSections.h"
26 #include "SymbolTable.h"
27 #include "Symbols.h"
28 #include "SyntheticSections.h"
29 #include "Target.h"
30 #include "lld/Common/CommonLinkerContext.h"
31 #include "lld/Common/Strings.h"
32 #include "llvm/ADT/STLExtras.h"
33 #include "llvm/Object/ELF.h"
34 #include "llvm/Support/TimeProfiler.h"
35 #include <functional>
36 #include <vector>
37 
38 using namespace llvm;
39 using namespace llvm::ELF;
40 using namespace llvm::object;
41 using namespace llvm::support::endian;
42 using namespace lld;
43 using namespace lld::elf;
44 
45 namespace {
46 template <class ELFT> class MarkLive {
47 public:
48   MarkLive(unsigned partition) : partition(partition) {}
49 
50   void run();
51   void moveToMain();
52 
53 private:
54   void enqueue(InputSectionBase *sec, uint64_t offset);
55   void markSymbol(Symbol *sym);
56   void mark();
57 
58   template <class RelTy>
59   void resolveReloc(InputSectionBase &sec, RelTy &rel, bool fromFDE);
60 
61   template <class RelTy>
62   void scanEhFrameSection(EhInputSection &eh, ArrayRef<RelTy> rels);
63 
64   // The index of the partition that we are currently processing.
65   unsigned partition;
66 
67   // A list of sections to visit.
68   SmallVector<InputSection *, 0> queue;
69 
70   // There are normally few input sections whose names are valid C
71   // identifiers, so we just store a SmallVector instead of a multimap.
72   DenseMap<StringRef, SmallVector<InputSectionBase *, 0>> cNamedSections;
73 };
74 } // namespace
75 
76 template <class ELFT>
77 static uint64_t getAddend(InputSectionBase &sec,
78                           const typename ELFT::Rel &rel) {
79   return target->getImplicitAddend(sec.data().begin() + rel.r_offset,
80                                    rel.getType(config->isMips64EL));
81 }
82 
83 template <class ELFT>
84 static uint64_t getAddend(InputSectionBase &sec,
85                           const typename ELFT::Rela &rel) {
86   return rel.r_addend;
87 }
88 
89 template <class ELFT>
90 template <class RelTy>
91 void MarkLive<ELFT>::resolveReloc(InputSectionBase &sec, RelTy &rel,
92                                   bool fromFDE) {
93   Symbol &sym = sec.getFile<ELFT>()->getRelocTargetSym(rel);
94 
95   // If a symbol is referenced in a live section, it is used.
96   sym.used = true;
97 
98   if (auto *d = dyn_cast<Defined>(&sym)) {
99     auto *relSec = dyn_cast_or_null<InputSectionBase>(d->section);
100     if (!relSec)
101       return;
102 
103     uint64_t offset = d->value;
104     if (d->isSection())
105       offset += getAddend<ELFT>(sec, rel);
106 
107     // fromFDE being true means this is referenced by a FDE in a .eh_frame
108     // piece. The relocation points to the described function or to a LSDA. We
109     // only need to keep the LSDA live, so ignore anything that points to
110     // executable sections. If the LSDA is in a section group or has the
111     // SHF_LINK_ORDER flag, we ignore the relocation as well because (a) if the
112     // associated text section is live, the LSDA will be retained due to section
113     // group/SHF_LINK_ORDER rules (b) if the associated text section should be
114     // discarded, marking the LSDA will unnecessarily retain the text section.
115     if (!(fromFDE && ((relSec->flags & (SHF_EXECINSTR | SHF_LINK_ORDER)) ||
116                       relSec->nextInSectionGroup)))
117       enqueue(relSec, offset);
118     return;
119   }
120 
121   if (auto *ss = dyn_cast<SharedSymbol>(&sym))
122     if (!ss->isWeak())
123       ss->getFile().isNeeded = true;
124 
125   for (InputSectionBase *sec : cNamedSections.lookup(sym.getName()))
126     enqueue(sec, 0);
127 }
128 
129 // The .eh_frame section is an unfortunate special case.
130 // The section is divided in CIEs and FDEs and the relocations it can have are
131 // * CIEs can refer to a personality function.
132 // * FDEs can refer to a LSDA
133 // * FDEs refer to the function they contain information about
134 // The last kind of relocation cannot keep the referred section alive, or they
135 // would keep everything alive in a common object file. In fact, each FDE is
136 // alive if the section it refers to is alive.
137 // To keep things simple, in here we just ignore the last relocation kind. The
138 // other two keep the referred section alive.
139 //
140 // A possible improvement would be to fully process .eh_frame in the middle of
141 // the gc pass. With that we would be able to also gc some sections holding
142 // LSDAs and personality functions if we found that they were unused.
143 template <class ELFT>
144 template <class RelTy>
145 void MarkLive<ELFT>::scanEhFrameSection(EhInputSection &eh,
146                                         ArrayRef<RelTy> rels) {
147   for (size_t i = 0, end = eh.pieces.size(); i < end; ++i) {
148     EhSectionPiece &piece = eh.pieces[i];
149     size_t firstRelI = piece.firstRelocation;
150     if (firstRelI == (unsigned)-1)
151       continue;
152 
153     if (read32<ELFT::TargetEndianness>(piece.data().data() + 4) == 0) {
154       // This is a CIE, we only need to worry about the first relocation. It is
155       // known to point to the personality function.
156       resolveReloc(eh, rels[firstRelI], false);
157       continue;
158     }
159 
160     uint64_t pieceEnd = piece.inputOff + piece.size;
161     for (size_t j = firstRelI, end2 = rels.size();
162          j < end2 && rels[j].r_offset < pieceEnd; ++j)
163       resolveReloc(eh, rels[j], true);
164   }
165 }
166 
167 // Some sections are used directly by the loader, so they should never be
168 // garbage-collected. This function returns true if a given section is such
169 // section.
170 static bool isReserved(InputSectionBase *sec) {
171   switch (sec->type) {
172   case SHT_FINI_ARRAY:
173   case SHT_INIT_ARRAY:
174   case SHT_PREINIT_ARRAY:
175     return true;
176   case SHT_NOTE:
177     // SHT_NOTE sections in a group are subject to garbage collection.
178     return !sec->nextInSectionGroup;
179   default:
180     // Support SHT_PROGBITS .init_array (https://golang.org/issue/50295) and
181     // .init_array.N (https://github.com/rust-lang/rust/issues/92181) for a
182     // while.
183     StringRef s = sec->name;
184     return s == ".init" || s == ".fini" || s.startswith(".init_array") ||
185            s == ".jcr" || s.startswith(".ctors") || s.startswith(".dtors");
186   }
187 }
188 
189 template <class ELFT>
190 void MarkLive<ELFT>::enqueue(InputSectionBase *sec, uint64_t offset) {
191   // Skip over discarded sections. This in theory shouldn't happen, because
192   // the ELF spec doesn't allow a relocation to point to a deduplicated
193   // COMDAT section directly. Unfortunately this happens in practice (e.g.
194   // .eh_frame) so we need to add a check.
195   if (sec == &InputSection::discarded)
196     return;
197 
198   // Usually, a whole section is marked as live or dead, but in mergeable
199   // (splittable) sections, each piece of data has independent liveness bit.
200   // So we explicitly tell it which offset is in use.
201   if (auto *ms = dyn_cast<MergeInputSection>(sec))
202     ms->getSectionPiece(offset)->live = true;
203 
204   // Set Sec->Partition to the meet (i.e. the "minimum") of Partition and
205   // Sec->Partition in the following lattice: 1 < other < 0. If Sec->Partition
206   // doesn't change, we don't need to do anything.
207   if (sec->partition == 1 || sec->partition == partition)
208     return;
209   sec->partition = sec->partition ? 1 : partition;
210 
211   // Add input section to the queue.
212   if (InputSection *s = dyn_cast<InputSection>(sec))
213     queue.push_back(s);
214 }
215 
216 template <class ELFT> void MarkLive<ELFT>::markSymbol(Symbol *sym) {
217   if (auto *d = dyn_cast_or_null<Defined>(sym))
218     if (auto *isec = dyn_cast_or_null<InputSectionBase>(d->section))
219       enqueue(isec, d->value);
220 }
221 
222 // This is the main function of the garbage collector.
223 // Starting from GC-root sections, this function visits all reachable
224 // sections to set their "Live" bits.
225 template <class ELFT> void MarkLive<ELFT>::run() {
226   // Add GC root symbols.
227 
228   // Preserve externally-visible symbols if the symbols defined by this
229   // file can interrupt other ELF file's symbols at runtime.
230   for (Symbol *sym : symtab->symbols())
231     if (sym->includeInDynsym() && sym->partition == partition)
232       markSymbol(sym);
233 
234   // If this isn't the main partition, that's all that we need to preserve.
235   if (partition != 1) {
236     mark();
237     return;
238   }
239 
240   markSymbol(symtab->find(config->entry));
241   markSymbol(symtab->find(config->init));
242   markSymbol(symtab->find(config->fini));
243   for (StringRef s : config->undefined)
244     markSymbol(symtab->find(s));
245   for (StringRef s : script->referencedSymbols)
246     markSymbol(symtab->find(s));
247 
248   for (InputSectionBase *sec : inputSections) {
249     // Mark .eh_frame sections as live because there are usually no relocations
250     // that point to .eh_frames. Otherwise, the garbage collector would drop
251     // all of them. We also want to preserve personality routines and LSDA
252     // referenced by .eh_frame sections, so we scan them for that here.
253     if (auto *eh = dyn_cast<EhInputSection>(sec)) {
254       eh->markLive();
255 
256       const RelsOrRelas<ELFT> rels = eh->template relsOrRelas<ELFT>();
257       if (rels.areRelocsRel())
258         scanEhFrameSection(*eh, rels.rels);
259       else if (rels.relas.size())
260         scanEhFrameSection(*eh, rels.relas);
261       continue;
262     }
263 
264     if (sec->flags & SHF_GNU_RETAIN) {
265       enqueue(sec, 0);
266       continue;
267     }
268     if (sec->flags & SHF_LINK_ORDER)
269       continue;
270 
271     // Usually, non-SHF_ALLOC sections are not removed even if they are
272     // unreachable through relocations because reachability is not a good signal
273     // whether they are garbage or not (e.g. there is usually no section
274     // referring to a .comment section, but we want to keep it.) When a
275     // non-SHF_ALLOC section is retained, we also retain sections dependent on
276     // it.
277     //
278     // Note on SHF_LINK_ORDER: Such sections contain metadata and they
279     // have a reverse dependency on the InputSection they are linked with.
280     // We are able to garbage collect them.
281     //
282     // Note on SHF_REL{,A}: Such sections reach here only when -r
283     // or --emit-reloc were given. And they are subject of garbage
284     // collection because, if we remove a text section, we also
285     // remove its relocation section.
286     //
287     // Note on nextInSectionGroup: The ELF spec says that group sections are
288     // included or omitted as a unit. We take the interpretation that:
289     //
290     // - Group members (nextInSectionGroup != nullptr) are subject to garbage
291     //   collection.
292     // - Groups members are retained or discarded as a unit.
293     if (!(sec->flags & SHF_ALLOC)) {
294       bool isRel = sec->type == SHT_REL || sec->type == SHT_RELA;
295       if (!isRel && !sec->nextInSectionGroup) {
296         sec->markLive();
297         for (InputSection *isec : sec->dependentSections)
298           isec->markLive();
299       }
300     }
301 
302     // Preserve special sections and those which are specified in linker
303     // script KEEP command.
304     if (isReserved(sec) || script->shouldKeep(sec)) {
305       enqueue(sec, 0);
306     } else if ((!config->zStartStopGC || sec->name.startswith("__libc_")) &&
307                isValidCIdentifier(sec->name)) {
308       // As a workaround for glibc libc.a before 2.34
309       // (https://sourceware.org/PR27492), retain __libc_atexit and similar
310       // sections regardless of zStartStopGC.
311       cNamedSections[saver().save("__start_" + sec->name)].push_back(sec);
312       cNamedSections[saver().save("__stop_" + sec->name)].push_back(sec);
313     }
314   }
315 
316   mark();
317 }
318 
319 template <class ELFT> void MarkLive<ELFT>::mark() {
320   // Mark all reachable sections.
321   while (!queue.empty()) {
322     InputSectionBase &sec = *queue.pop_back_val();
323 
324     const RelsOrRelas<ELFT> rels = sec.template relsOrRelas<ELFT>();
325     for (const typename ELFT::Rel &rel : rels.rels)
326       resolveReloc(sec, rel, false);
327     for (const typename ELFT::Rela &rel : rels.relas)
328       resolveReloc(sec, rel, false);
329 
330     for (InputSectionBase *isec : sec.dependentSections)
331       enqueue(isec, 0);
332 
333     // Mark the next group member.
334     if (sec.nextInSectionGroup)
335       enqueue(sec.nextInSectionGroup, 0);
336   }
337 }
338 
339 // Move the sections for some symbols to the main partition, specifically ifuncs
340 // (because they can result in an IRELATIVE being added to the main partition's
341 // GOT, which means that the ifunc must be available when the main partition is
342 // loaded) and TLS symbols (because we only know how to correctly process TLS
343 // relocations for the main partition).
344 //
345 // We also need to move sections whose names are C identifiers that are referred
346 // to from __start_/__stop_ symbols because there will only be one set of
347 // symbols for the whole program.
348 template <class ELFT> void MarkLive<ELFT>::moveToMain() {
349   for (ELFFileBase *file : objectFiles)
350     for (Symbol *s : file->getSymbols())
351       if (auto *d = dyn_cast<Defined>(s))
352         if ((d->type == STT_GNU_IFUNC || d->type == STT_TLS) && d->section &&
353             d->section->isLive())
354           markSymbol(s);
355 
356   for (InputSectionBase *sec : inputSections) {
357     if (!sec->isLive() || !isValidCIdentifier(sec->name))
358       continue;
359     if (symtab->find(("__start_" + sec->name).str()) ||
360         symtab->find(("__stop_" + sec->name).str()))
361       enqueue(sec, 0);
362   }
363 
364   mark();
365 }
366 
367 // Before calling this function, Live bits are off for all
368 // input sections. This function make some or all of them on
369 // so that they are emitted to the output file.
370 template <class ELFT> void elf::markLive() {
371   llvm::TimeTraceScope timeScope("markLive");
372   // If --gc-sections is not given, retain all input sections.
373   if (!config->gcSections) {
374     // If a DSO defines a symbol referenced in a regular object, it is needed.
375     for (Symbol *sym : symtab->symbols())
376       if (auto *s = dyn_cast<SharedSymbol>(sym))
377         if (s->isUsedInRegularObj && !s->isWeak())
378           s->getFile().isNeeded = true;
379     return;
380   }
381 
382   for (InputSectionBase *sec : inputSections)
383     sec->markDead();
384 
385   // Follow the graph to mark all live sections.
386   for (unsigned curPart = 1; curPart <= partitions.size(); ++curPart)
387     MarkLive<ELFT>(curPart).run();
388 
389   // If we have multiple partitions, some sections need to live in the main
390   // partition even if they were allocated to a loadable partition. Move them
391   // there now.
392   if (partitions.size() != 1)
393     MarkLive<ELFT>(1).moveToMain();
394 
395   // Report garbage-collected sections.
396   if (config->printGcSections)
397     for (InputSectionBase *sec : inputSections)
398       if (!sec->isLive())
399         message("removing unused section " + toString(sec));
400 }
401 
402 template void elf::markLive<ELF32LE>();
403 template void elf::markLive<ELF32BE>();
404 template void elf::markLive<ELF64LE>();
405 template void elf::markLive<ELF64BE>();
406