1 //===- ELFObject.h ----------------------------------------------*- C++ -*-===//
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 #ifndef LLVM_LIB_OBJCOPY_ELF_ELFOBJECT_H
10 #define LLVM_LIB_OBJCOPY_ELF_ELFOBJECT_H
11 
12 #include "llvm/ADT/ArrayRef.h"
13 #include "llvm/ADT/StringRef.h"
14 #include "llvm/ADT/Twine.h"
15 #include "llvm/BinaryFormat/ELF.h"
16 #include "llvm/MC/StringTableBuilder.h"
17 #include "llvm/ObjCopy/CommonConfig.h"
18 #include "llvm/Object/ELFObjectFile.h"
19 #include "llvm/Support/Errc.h"
20 #include "llvm/Support/FileOutputBuffer.h"
21 #include "llvm/Support/MemoryBuffer.h"
22 #include <cstddef>
23 #include <cstdint>
24 #include <functional>
25 #include <memory>
26 #include <set>
27 #include <vector>
28 
29 namespace llvm {
30 enum class DebugCompressionType;
31 namespace objcopy {
32 namespace elf {
33 
34 class SectionBase;
35 class Section;
36 class OwnedDataSection;
37 class StringTableSection;
38 class SymbolTableSection;
39 class RelocationSection;
40 class DynamicRelocationSection;
41 class GnuDebugLinkSection;
42 class GroupSection;
43 class SectionIndexSection;
44 class CompressedSection;
45 class DecompressedSection;
46 class Segment;
47 class Object;
48 struct Symbol;
49 
50 class SectionTableRef {
51   ArrayRef<std::unique_ptr<SectionBase>> Sections;
52 
53 public:
54   using iterator = pointee_iterator<const std::unique_ptr<SectionBase> *>;
55 
56   explicit SectionTableRef(ArrayRef<std::unique_ptr<SectionBase>> Secs)
57       : Sections(Secs) {}
58   SectionTableRef(const SectionTableRef &) = default;
59 
60   iterator begin() const { return iterator(Sections.data()); }
61   iterator end() const { return iterator(Sections.data() + Sections.size()); }
62   size_t size() const { return Sections.size(); }
63 
64   Expected<SectionBase *> getSection(uint32_t Index, Twine ErrMsg);
65 
66   template <class T>
67   Expected<T *> getSectionOfType(uint32_t Index, Twine IndexErrMsg,
68                                  Twine TypeErrMsg);
69 };
70 
71 enum ElfType { ELFT_ELF32LE, ELFT_ELF64LE, ELFT_ELF32BE, ELFT_ELF64BE };
72 
73 class SectionVisitor {
74 public:
75   virtual ~SectionVisitor() = default;
76 
77   virtual Error visit(const Section &Sec) = 0;
78   virtual Error visit(const OwnedDataSection &Sec) = 0;
79   virtual Error visit(const StringTableSection &Sec) = 0;
80   virtual Error visit(const SymbolTableSection &Sec) = 0;
81   virtual Error visit(const RelocationSection &Sec) = 0;
82   virtual Error visit(const DynamicRelocationSection &Sec) = 0;
83   virtual Error visit(const GnuDebugLinkSection &Sec) = 0;
84   virtual Error visit(const GroupSection &Sec) = 0;
85   virtual Error visit(const SectionIndexSection &Sec) = 0;
86   virtual Error visit(const CompressedSection &Sec) = 0;
87   virtual Error visit(const DecompressedSection &Sec) = 0;
88 };
89 
90 class MutableSectionVisitor {
91 public:
92   virtual ~MutableSectionVisitor() = default;
93 
94   virtual Error visit(Section &Sec) = 0;
95   virtual Error visit(OwnedDataSection &Sec) = 0;
96   virtual Error visit(StringTableSection &Sec) = 0;
97   virtual Error visit(SymbolTableSection &Sec) = 0;
98   virtual Error visit(RelocationSection &Sec) = 0;
99   virtual Error visit(DynamicRelocationSection &Sec) = 0;
100   virtual Error visit(GnuDebugLinkSection &Sec) = 0;
101   virtual Error visit(GroupSection &Sec) = 0;
102   virtual Error visit(SectionIndexSection &Sec) = 0;
103   virtual Error visit(CompressedSection &Sec) = 0;
104   virtual Error visit(DecompressedSection &Sec) = 0;
105 };
106 
107 class SectionWriter : public SectionVisitor {
108 protected:
109   WritableMemoryBuffer &Out;
110 
111 public:
112   virtual ~SectionWriter() = default;
113 
114   Error visit(const Section &Sec) override;
115   Error visit(const OwnedDataSection &Sec) override;
116   Error visit(const StringTableSection &Sec) override;
117   Error visit(const DynamicRelocationSection &Sec) override;
118   virtual Error visit(const SymbolTableSection &Sec) override = 0;
119   virtual Error visit(const RelocationSection &Sec) override = 0;
120   virtual Error visit(const GnuDebugLinkSection &Sec) override = 0;
121   virtual Error visit(const GroupSection &Sec) override = 0;
122   virtual Error visit(const SectionIndexSection &Sec) override = 0;
123   virtual Error visit(const CompressedSection &Sec) override = 0;
124   virtual Error visit(const DecompressedSection &Sec) override = 0;
125 
126   explicit SectionWriter(WritableMemoryBuffer &Buf) : Out(Buf) {}
127 };
128 
129 template <class ELFT> class ELFSectionWriter : public SectionWriter {
130 private:
131   using Elf_Word = typename ELFT::Word;
132   using Elf_Rel = typename ELFT::Rel;
133   using Elf_Rela = typename ELFT::Rela;
134   using Elf_Sym = typename ELFT::Sym;
135 
136 public:
137   virtual ~ELFSectionWriter() {}
138   Error visit(const SymbolTableSection &Sec) override;
139   Error visit(const RelocationSection &Sec) override;
140   Error visit(const GnuDebugLinkSection &Sec) override;
141   Error visit(const GroupSection &Sec) override;
142   Error visit(const SectionIndexSection &Sec) override;
143   Error visit(const CompressedSection &Sec) override;
144   Error visit(const DecompressedSection &Sec) override;
145 
146   explicit ELFSectionWriter(WritableMemoryBuffer &Buf) : SectionWriter(Buf) {}
147 };
148 
149 template <class ELFT> class ELFSectionSizer : public MutableSectionVisitor {
150 private:
151   using Elf_Rel = typename ELFT::Rel;
152   using Elf_Rela = typename ELFT::Rela;
153   using Elf_Sym = typename ELFT::Sym;
154   using Elf_Word = typename ELFT::Word;
155   using Elf_Xword = typename ELFT::Xword;
156 
157 public:
158   Error visit(Section &Sec) override;
159   Error visit(OwnedDataSection &Sec) override;
160   Error visit(StringTableSection &Sec) override;
161   Error visit(DynamicRelocationSection &Sec) override;
162   Error visit(SymbolTableSection &Sec) override;
163   Error visit(RelocationSection &Sec) override;
164   Error visit(GnuDebugLinkSection &Sec) override;
165   Error visit(GroupSection &Sec) override;
166   Error visit(SectionIndexSection &Sec) override;
167   Error visit(CompressedSection &Sec) override;
168   Error visit(DecompressedSection &Sec) override;
169 };
170 
171 #define MAKE_SEC_WRITER_FRIEND                                                 \
172   friend class SectionWriter;                                                  \
173   friend class IHexSectionWriterBase;                                          \
174   friend class IHexSectionWriter;                                              \
175   template <class ELFT> friend class ELFSectionWriter;                         \
176   template <class ELFT> friend class ELFSectionSizer;
177 
178 class BinarySectionWriter : public SectionWriter {
179 public:
180   virtual ~BinarySectionWriter() {}
181 
182   Error visit(const SymbolTableSection &Sec) override;
183   Error visit(const RelocationSection &Sec) override;
184   Error visit(const GnuDebugLinkSection &Sec) override;
185   Error visit(const GroupSection &Sec) override;
186   Error visit(const SectionIndexSection &Sec) override;
187   Error visit(const CompressedSection &Sec) override;
188   Error visit(const DecompressedSection &Sec) override;
189 
190   explicit BinarySectionWriter(WritableMemoryBuffer &Buf)
191       : SectionWriter(Buf) {}
192 };
193 
194 using IHexLineData = SmallVector<char, 64>;
195 
196 struct IHexRecord {
197   // Memory address of the record.
198   uint16_t Addr;
199   // Record type (see below).
200   uint16_t Type;
201   // Record data in hexadecimal form.
202   StringRef HexData;
203 
204   // Helper method to get file length of the record
205   // including newline character
206   static size_t getLength(size_t DataSize) {
207     // :LLAAAATT[DD...DD]CC'
208     return DataSize * 2 + 11;
209   }
210 
211   // Gets length of line in a file (getLength + CRLF).
212   static size_t getLineLength(size_t DataSize) {
213     return getLength(DataSize) + 2;
214   }
215 
216   // Given type, address and data returns line which can
217   // be written to output file.
218   static IHexLineData getLine(uint8_t Type, uint16_t Addr,
219                               ArrayRef<uint8_t> Data);
220 
221   // Parses the line and returns record if possible.
222   // Line should be trimmed from whitespace characters.
223   static Expected<IHexRecord> parse(StringRef Line);
224 
225   // Calculates checksum of stringified record representation
226   // S must NOT contain leading ':' and trailing whitespace
227   // characters
228   static uint8_t getChecksum(StringRef S);
229 
230   enum Type {
231     // Contains data and a 16-bit starting address for the data.
232     // The byte count specifies number of data bytes in the record.
233     Data = 0,
234     // Must occur exactly once per file in the last line of the file.
235     // The data field is empty (thus byte count is 00) and the address
236     // field is typically 0000.
237     EndOfFile = 1,
238     // The data field contains a 16-bit segment base address (thus byte
239     // count is always 02) compatible with 80x86 real mode addressing.
240     // The address field (typically 0000) is ignored. The segment address
241     // from the most recent 02 record is multiplied by 16 and added to each
242     // subsequent data record address to form the physical starting address
243     // for the data. This allows addressing up to one megabyte of address
244     // space.
245     SegmentAddr = 2,
246     // or 80x86 processors, specifies the initial content of the CS:IP
247     // registers. The address field is 0000, the byte count is always 04,
248     // the first two data bytes are the CS value, the latter two are the
249     // IP value.
250     StartAddr80x86 = 3,
251     // Allows for 32 bit addressing (up to 4GiB). The record's address field
252     // is ignored (typically 0000) and its byte count is always 02. The two
253     // data bytes (big endian) specify the upper 16 bits of the 32 bit
254     // absolute address for all subsequent type 00 records
255     ExtendedAddr = 4,
256     // The address field is 0000 (not used) and the byte count is always 04.
257     // The four data bytes represent a 32-bit address value. In the case of
258     // 80386 and higher CPUs, this address is loaded into the EIP register.
259     StartAddr = 5,
260     // We have no other valid types
261     InvalidType = 6
262   };
263 };
264 
265 // Base class for IHexSectionWriter. This class implements writing algorithm,
266 // but doesn't actually write records. It is used for output buffer size
267 // calculation in IHexWriter::finalize.
268 class IHexSectionWriterBase : public BinarySectionWriter {
269   // 20-bit segment address
270   uint32_t SegmentAddr = 0;
271   // Extended linear address
272   uint32_t BaseAddr = 0;
273 
274   // Write segment address corresponding to 'Addr'
275   uint64_t writeSegmentAddr(uint64_t Addr);
276   // Write extended linear (base) address corresponding to 'Addr'
277   uint64_t writeBaseAddr(uint64_t Addr);
278 
279 protected:
280   // Offset in the output buffer
281   uint64_t Offset = 0;
282 
283   void writeSection(const SectionBase *Sec, ArrayRef<uint8_t> Data);
284   virtual void writeData(uint8_t Type, uint16_t Addr, ArrayRef<uint8_t> Data);
285 
286 public:
287   explicit IHexSectionWriterBase(WritableMemoryBuffer &Buf)
288       : BinarySectionWriter(Buf) {}
289 
290   uint64_t getBufferOffset() const { return Offset; }
291   Error visit(const Section &Sec) final;
292   Error visit(const OwnedDataSection &Sec) final;
293   Error visit(const StringTableSection &Sec) override;
294   Error visit(const DynamicRelocationSection &Sec) final;
295   using BinarySectionWriter::visit;
296 };
297 
298 // Real IHEX section writer
299 class IHexSectionWriter : public IHexSectionWriterBase {
300 public:
301   IHexSectionWriter(WritableMemoryBuffer &Buf) : IHexSectionWriterBase(Buf) {}
302 
303   void writeData(uint8_t Type, uint16_t Addr, ArrayRef<uint8_t> Data) override;
304   Error visit(const StringTableSection &Sec) override;
305 };
306 
307 class Writer {
308 protected:
309   Object &Obj;
310   std::unique_ptr<WritableMemoryBuffer> Buf;
311   raw_ostream &Out;
312 
313 public:
314   virtual ~Writer();
315   virtual Error finalize() = 0;
316   virtual Error write() = 0;
317 
318   Writer(Object &O, raw_ostream &Out) : Obj(O), Out(Out) {}
319 };
320 
321 template <class ELFT> class ELFWriter : public Writer {
322 private:
323   using Elf_Addr = typename ELFT::Addr;
324   using Elf_Shdr = typename ELFT::Shdr;
325   using Elf_Phdr = typename ELFT::Phdr;
326   using Elf_Ehdr = typename ELFT::Ehdr;
327 
328   void initEhdrSegment();
329 
330   void writeEhdr();
331   void writePhdr(const Segment &Seg);
332   void writeShdr(const SectionBase &Sec);
333 
334   void writePhdrs();
335   void writeShdrs();
336   Error writeSectionData();
337   void writeSegmentData();
338 
339   void assignOffsets();
340 
341   std::unique_ptr<ELFSectionWriter<ELFT>> SecWriter;
342 
343   size_t totalSize() const;
344 
345 public:
346   virtual ~ELFWriter() {}
347   bool WriteSectionHeaders;
348 
349   // For --only-keep-debug, select an alternative section/segment layout
350   // algorithm.
351   bool OnlyKeepDebug;
352 
353   Error finalize() override;
354   Error write() override;
355   ELFWriter(Object &Obj, raw_ostream &Out, bool WSH, bool OnlyKeepDebug);
356 };
357 
358 class BinaryWriter : public Writer {
359 private:
360   std::unique_ptr<BinarySectionWriter> SecWriter;
361 
362   uint64_t TotalSize = 0;
363 
364 public:
365   ~BinaryWriter() {}
366   Error finalize() override;
367   Error write() override;
368   BinaryWriter(Object &Obj, raw_ostream &Out) : Writer(Obj, Out) {}
369 };
370 
371 class IHexWriter : public Writer {
372   struct SectionCompare {
373     bool operator()(const SectionBase *Lhs, const SectionBase *Rhs) const;
374   };
375 
376   std::set<const SectionBase *, SectionCompare> Sections;
377   size_t TotalSize = 0;
378 
379   Error checkSection(const SectionBase &Sec);
380   uint64_t writeEntryPointRecord(uint8_t *Buf);
381   uint64_t writeEndOfFileRecord(uint8_t *Buf);
382 
383 public:
384   ~IHexWriter() {}
385   Error finalize() override;
386   Error write() override;
387   IHexWriter(Object &Obj, raw_ostream &Out) : Writer(Obj, Out) {}
388 };
389 
390 class SectionBase {
391 public:
392   std::string Name;
393   Segment *ParentSegment = nullptr;
394   uint64_t HeaderOffset = 0;
395   uint32_t Index = 0;
396 
397   uint32_t OriginalIndex = 0;
398   uint64_t OriginalFlags = 0;
399   uint64_t OriginalType = ELF::SHT_NULL;
400   uint64_t OriginalOffset = std::numeric_limits<uint64_t>::max();
401 
402   uint64_t Addr = 0;
403   uint64_t Align = 1;
404   uint32_t EntrySize = 0;
405   uint64_t Flags = 0;
406   uint64_t Info = 0;
407   uint64_t Link = ELF::SHN_UNDEF;
408   uint64_t NameIndex = 0;
409   uint64_t Offset = 0;
410   uint64_t Size = 0;
411   uint64_t Type = ELF::SHT_NULL;
412   ArrayRef<uint8_t> OriginalData;
413   bool HasSymbol = false;
414 
415   SectionBase() = default;
416   SectionBase(const SectionBase &) = default;
417 
418   virtual ~SectionBase() = default;
419 
420   virtual Error initialize(SectionTableRef SecTable);
421   virtual void finalize();
422   // Remove references to these sections. The list of sections must be sorted.
423   virtual Error
424   removeSectionReferences(bool AllowBrokenLinks,
425                           function_ref<bool(const SectionBase *)> ToRemove);
426   virtual Error removeSymbols(function_ref<bool(const Symbol &)> ToRemove);
427   virtual Error accept(SectionVisitor &Visitor) const = 0;
428   virtual Error accept(MutableSectionVisitor &Visitor) = 0;
429   virtual void markSymbols();
430   virtual void
431   replaceSectionReferences(const DenseMap<SectionBase *, SectionBase *> &);
432   virtual bool hasContents() const { return false; }
433   // Notify the section that it is subject to removal.
434   virtual void onRemove();
435 };
436 
437 class Segment {
438 private:
439   struct SectionCompare {
440     bool operator()(const SectionBase *Lhs, const SectionBase *Rhs) const {
441       // Some sections might have the same address if one of them is empty. To
442       // fix this we can use the lexicographic ordering on ->Addr and the
443       // original index.
444       if (Lhs->OriginalOffset == Rhs->OriginalOffset)
445         return Lhs->OriginalIndex < Rhs->OriginalIndex;
446       return Lhs->OriginalOffset < Rhs->OriginalOffset;
447     }
448   };
449 
450 public:
451   uint32_t Type = 0;
452   uint32_t Flags = 0;
453   uint64_t Offset = 0;
454   uint64_t VAddr = 0;
455   uint64_t PAddr = 0;
456   uint64_t FileSize = 0;
457   uint64_t MemSize = 0;
458   uint64_t Align = 0;
459 
460   uint32_t Index = 0;
461   uint64_t OriginalOffset = 0;
462   Segment *ParentSegment = nullptr;
463   ArrayRef<uint8_t> Contents;
464   std::set<const SectionBase *, SectionCompare> Sections;
465 
466   explicit Segment(ArrayRef<uint8_t> Data) : Contents(Data) {}
467   Segment() = default;
468 
469   const SectionBase *firstSection() const {
470     if (!Sections.empty())
471       return *Sections.begin();
472     return nullptr;
473   }
474 
475   void removeSection(const SectionBase *Sec) { Sections.erase(Sec); }
476   void addSection(const SectionBase *Sec) { Sections.insert(Sec); }
477 
478   ArrayRef<uint8_t> getContents() const { return Contents; }
479 };
480 
481 class Section : public SectionBase {
482   MAKE_SEC_WRITER_FRIEND
483 
484   ArrayRef<uint8_t> Contents;
485   SectionBase *LinkSection = nullptr;
486 
487 public:
488   explicit Section(ArrayRef<uint8_t> Data) : Contents(Data) {}
489 
490   Error accept(SectionVisitor &Visitor) const override;
491   Error accept(MutableSectionVisitor &Visitor) override;
492   Error removeSectionReferences(
493       bool AllowBrokenLinks,
494       function_ref<bool(const SectionBase *)> ToRemove) override;
495   Error initialize(SectionTableRef SecTable) override;
496   void finalize() override;
497   bool hasContents() const override {
498     return Type != ELF::SHT_NOBITS && Type != ELF::SHT_NULL;
499   }
500 };
501 
502 class OwnedDataSection : public SectionBase {
503   MAKE_SEC_WRITER_FRIEND
504 
505   std::vector<uint8_t> Data;
506 
507 public:
508   OwnedDataSection(StringRef SecName, ArrayRef<uint8_t> Data)
509       : Data(std::begin(Data), std::end(Data)) {
510     Name = SecName.str();
511     Type = OriginalType = ELF::SHT_PROGBITS;
512     Size = Data.size();
513     OriginalOffset = std::numeric_limits<uint64_t>::max();
514   }
515 
516   OwnedDataSection(const Twine &SecName, uint64_t SecAddr, uint64_t SecFlags,
517                    uint64_t SecOff) {
518     Name = SecName.str();
519     Type = OriginalType = ELF::SHT_PROGBITS;
520     Addr = SecAddr;
521     Flags = OriginalFlags = SecFlags;
522     OriginalOffset = SecOff;
523   }
524 
525   OwnedDataSection(SectionBase &S, ArrayRef<uint8_t> Data)
526       : SectionBase(S), Data(std::begin(Data), std::end(Data)) {
527     Size = Data.size();
528   }
529 
530   void appendHexData(StringRef HexData);
531   Error accept(SectionVisitor &Sec) const override;
532   Error accept(MutableSectionVisitor &Visitor) override;
533   bool hasContents() const override { return true; }
534 };
535 
536 class CompressedSection : public SectionBase {
537   MAKE_SEC_WRITER_FRIEND
538 
539   DebugCompressionType CompressionType;
540   uint64_t DecompressedSize;
541   uint64_t DecompressedAlign;
542   SmallVector<char, 128> CompressedData;
543 
544 public:
545   static Expected<CompressedSection>
546   create(const SectionBase &Sec, DebugCompressionType CompressionType);
547   static Expected<CompressedSection> create(ArrayRef<uint8_t> CompressedData,
548                                             uint64_t DecompressedSize,
549                                             uint64_t DecompressedAlign);
550 
551   uint64_t getDecompressedSize() const { return DecompressedSize; }
552   uint64_t getDecompressedAlign() const { return DecompressedAlign; }
553 
554   Error accept(SectionVisitor &Visitor) const override;
555   Error accept(MutableSectionVisitor &Visitor) override;
556 
557   static bool classof(const SectionBase *S) {
558     return (S->OriginalFlags & ELF::SHF_COMPRESSED) ||
559            (StringRef(S->Name).startswith(".zdebug"));
560   }
561 
562 private:
563   CompressedSection(const SectionBase &Sec,
564                     DebugCompressionType CompressionType, Error &Err);
565   CompressedSection(ArrayRef<uint8_t> CompressedData, uint64_t DecompressedSize,
566                     uint64_t DecompressedAlign);
567 };
568 
569 class DecompressedSection : public SectionBase {
570   MAKE_SEC_WRITER_FRIEND
571 
572 public:
573   explicit DecompressedSection(const CompressedSection &Sec)
574       : SectionBase(Sec) {
575     Size = Sec.getDecompressedSize();
576     Align = Sec.getDecompressedAlign();
577     Flags = OriginalFlags = (Flags & ~ELF::SHF_COMPRESSED);
578     if (StringRef(Name).startswith(".zdebug"))
579       Name = "." + Name.substr(2);
580   }
581 
582   Error accept(SectionVisitor &Visitor) const override;
583   Error accept(MutableSectionVisitor &Visitor) override;
584 };
585 
586 // There are two types of string tables that can exist, dynamic and not dynamic.
587 // In the dynamic case the string table is allocated. Changing a dynamic string
588 // table would mean altering virtual addresses and thus the memory image. So
589 // dynamic string tables should not have an interface to modify them or
590 // reconstruct them. This type lets us reconstruct a string table. To avoid
591 // this class being used for dynamic string tables (which has happened) the
592 // classof method checks that the particular instance is not allocated. This
593 // then agrees with the makeSection method used to construct most sections.
594 class StringTableSection : public SectionBase {
595   MAKE_SEC_WRITER_FRIEND
596 
597   StringTableBuilder StrTabBuilder;
598 
599 public:
600   StringTableSection() : StrTabBuilder(StringTableBuilder::ELF) {
601     Type = OriginalType = ELF::SHT_STRTAB;
602   }
603 
604   void addString(StringRef Name);
605   uint32_t findIndex(StringRef Name) const;
606   void prepareForLayout();
607   Error accept(SectionVisitor &Visitor) const override;
608   Error accept(MutableSectionVisitor &Visitor) override;
609 
610   static bool classof(const SectionBase *S) {
611     if (S->OriginalFlags & ELF::SHF_ALLOC)
612       return false;
613     return S->OriginalType == ELF::SHT_STRTAB;
614   }
615 };
616 
617 // Symbols have a st_shndx field that normally stores an index but occasionally
618 // stores a different special value. This enum keeps track of what the st_shndx
619 // field means. Most of the values are just copies of the special SHN_* values.
620 // SYMBOL_SIMPLE_INDEX means that the st_shndx is just an index of a section.
621 enum SymbolShndxType {
622   SYMBOL_SIMPLE_INDEX = 0,
623   SYMBOL_ABS = ELF::SHN_ABS,
624   SYMBOL_COMMON = ELF::SHN_COMMON,
625   SYMBOL_LOPROC = ELF::SHN_LOPROC,
626   SYMBOL_AMDGPU_LDS = ELF::SHN_AMDGPU_LDS,
627   SYMBOL_HEXAGON_SCOMMON = ELF::SHN_HEXAGON_SCOMMON,
628   SYMBOL_HEXAGON_SCOMMON_2 = ELF::SHN_HEXAGON_SCOMMON_2,
629   SYMBOL_HEXAGON_SCOMMON_4 = ELF::SHN_HEXAGON_SCOMMON_4,
630   SYMBOL_HEXAGON_SCOMMON_8 = ELF::SHN_HEXAGON_SCOMMON_8,
631   SYMBOL_HIPROC = ELF::SHN_HIPROC,
632   SYMBOL_LOOS = ELF::SHN_LOOS,
633   SYMBOL_HIOS = ELF::SHN_HIOS,
634   SYMBOL_XINDEX = ELF::SHN_XINDEX,
635 };
636 
637 struct Symbol {
638   uint8_t Binding;
639   SectionBase *DefinedIn = nullptr;
640   SymbolShndxType ShndxType;
641   uint32_t Index;
642   std::string Name;
643   uint32_t NameIndex;
644   uint64_t Size;
645   uint8_t Type;
646   uint64_t Value;
647   uint8_t Visibility;
648   bool Referenced = false;
649 
650   uint16_t getShndx() const;
651   bool isCommon() const;
652 };
653 
654 class SectionIndexSection : public SectionBase {
655   MAKE_SEC_WRITER_FRIEND
656 
657 private:
658   std::vector<uint32_t> Indexes;
659   SymbolTableSection *Symbols = nullptr;
660 
661 public:
662   virtual ~SectionIndexSection() {}
663   void addIndex(uint32_t Index) {
664     assert(Size > 0);
665     Indexes.push_back(Index);
666   }
667 
668   void reserve(size_t NumSymbols) {
669     Indexes.reserve(NumSymbols);
670     Size = NumSymbols * 4;
671   }
672   void setSymTab(SymbolTableSection *SymTab) { Symbols = SymTab; }
673   Error initialize(SectionTableRef SecTable) override;
674   void finalize() override;
675   Error accept(SectionVisitor &Visitor) const override;
676   Error accept(MutableSectionVisitor &Visitor) override;
677 
678   SectionIndexSection() {
679     Name = ".symtab_shndx";
680     Align = 4;
681     EntrySize = 4;
682     Type = OriginalType = ELF::SHT_SYMTAB_SHNDX;
683   }
684 };
685 
686 class SymbolTableSection : public SectionBase {
687   MAKE_SEC_WRITER_FRIEND
688 
689   void setStrTab(StringTableSection *StrTab) { SymbolNames = StrTab; }
690   void assignIndices();
691 
692 protected:
693   std::vector<std::unique_ptr<Symbol>> Symbols;
694   StringTableSection *SymbolNames = nullptr;
695   SectionIndexSection *SectionIndexTable = nullptr;
696 
697   using SymPtr = std::unique_ptr<Symbol>;
698 
699 public:
700   SymbolTableSection() { Type = OriginalType = ELF::SHT_SYMTAB; }
701 
702   void addSymbol(Twine Name, uint8_t Bind, uint8_t Type, SectionBase *DefinedIn,
703                  uint64_t Value, uint8_t Visibility, uint16_t Shndx,
704                  uint64_t SymbolSize);
705   void prepareForLayout();
706   // An 'empty' symbol table still contains a null symbol.
707   bool empty() const { return Symbols.size() == 1; }
708   void setShndxTable(SectionIndexSection *ShndxTable) {
709     SectionIndexTable = ShndxTable;
710   }
711   const SectionIndexSection *getShndxTable() const { return SectionIndexTable; }
712   void fillShndxTable();
713   const SectionBase *getStrTab() const { return SymbolNames; }
714   Expected<const Symbol *> getSymbolByIndex(uint32_t Index) const;
715   Expected<Symbol *> getSymbolByIndex(uint32_t Index);
716   void updateSymbols(function_ref<void(Symbol &)> Callable);
717 
718   Error removeSectionReferences(
719       bool AllowBrokenLinks,
720       function_ref<bool(const SectionBase *)> ToRemove) override;
721   Error initialize(SectionTableRef SecTable) override;
722   void finalize() override;
723   Error accept(SectionVisitor &Visitor) const override;
724   Error accept(MutableSectionVisitor &Visitor) override;
725   Error removeSymbols(function_ref<bool(const Symbol &)> ToRemove) override;
726   void replaceSectionReferences(
727       const DenseMap<SectionBase *, SectionBase *> &FromTo) override;
728 
729   static bool classof(const SectionBase *S) {
730     return S->OriginalType == ELF::SHT_SYMTAB;
731   }
732 };
733 
734 struct Relocation {
735   Symbol *RelocSymbol = nullptr;
736   uint64_t Offset;
737   uint64_t Addend;
738   uint32_t Type;
739 };
740 
741 // All relocation sections denote relocations to apply to another section.
742 // However, some relocation sections use a dynamic symbol table and others use
743 // a regular symbol table. Because the types of the two symbol tables differ in
744 // our system (because they should behave differently) we can't uniformly
745 // represent all relocations with the same base class if we expose an interface
746 // that mentions the symbol table type. So we split the two base types into two
747 // different classes, one which handles the section the relocation is applied to
748 // and another which handles the symbol table type. The symbol table type is
749 // taken as a type parameter to the class (see RelocSectionWithSymtabBase).
750 class RelocationSectionBase : public SectionBase {
751 protected:
752   SectionBase *SecToApplyRel = nullptr;
753 
754 public:
755   const SectionBase *getSection() const { return SecToApplyRel; }
756   void setSection(SectionBase *Sec) { SecToApplyRel = Sec; }
757 
758   StringRef getNamePrefix() const;
759 
760   static bool classof(const SectionBase *S) {
761     return S->OriginalType == ELF::SHT_REL || S->OriginalType == ELF::SHT_RELA;
762   }
763 };
764 
765 // Takes the symbol table type to use as a parameter so that we can deduplicate
766 // that code between the two symbol table types.
767 template <class SymTabType>
768 class RelocSectionWithSymtabBase : public RelocationSectionBase {
769   void setSymTab(SymTabType *SymTab) { Symbols = SymTab; }
770 
771 protected:
772   RelocSectionWithSymtabBase() = default;
773 
774   SymTabType *Symbols = nullptr;
775 
776 public:
777   Error initialize(SectionTableRef SecTable) override;
778   void finalize() override;
779 };
780 
781 class RelocationSection
782     : public RelocSectionWithSymtabBase<SymbolTableSection> {
783   MAKE_SEC_WRITER_FRIEND
784 
785   std::vector<Relocation> Relocations;
786   const Object &Obj;
787 
788 public:
789   RelocationSection(const Object &O) : Obj(O) {}
790   void addRelocation(Relocation Rel) { Relocations.push_back(Rel); }
791   Error accept(SectionVisitor &Visitor) const override;
792   Error accept(MutableSectionVisitor &Visitor) override;
793   Error removeSectionReferences(
794       bool AllowBrokenLinks,
795       function_ref<bool(const SectionBase *)> ToRemove) override;
796   Error removeSymbols(function_ref<bool(const Symbol &)> ToRemove) override;
797   void markSymbols() override;
798   void replaceSectionReferences(
799       const DenseMap<SectionBase *, SectionBase *> &FromTo) override;
800   const Object &getObject() const { return Obj; }
801 
802   static bool classof(const SectionBase *S) {
803     if (S->OriginalFlags & ELF::SHF_ALLOC)
804       return false;
805     return S->OriginalType == ELF::SHT_REL || S->OriginalType == ELF::SHT_RELA;
806   }
807 };
808 
809 // TODO: The way stripping and groups interact is complicated
810 // and still needs to be worked on.
811 
812 class GroupSection : public SectionBase {
813   MAKE_SEC_WRITER_FRIEND
814   const SymbolTableSection *SymTab = nullptr;
815   Symbol *Sym = nullptr;
816   ELF::Elf32_Word FlagWord;
817   SmallVector<SectionBase *, 3> GroupMembers;
818 
819 public:
820   // TODO: Contents is present in several classes of the hierarchy.
821   // This needs to be refactored to avoid duplication.
822   ArrayRef<uint8_t> Contents;
823 
824   explicit GroupSection(ArrayRef<uint8_t> Data) : Contents(Data) {}
825 
826   void setSymTab(const SymbolTableSection *SymTabSec) { SymTab = SymTabSec; }
827   void setSymbol(Symbol *S) { Sym = S; }
828   void setFlagWord(ELF::Elf32_Word W) { FlagWord = W; }
829   void addMember(SectionBase *Sec) { GroupMembers.push_back(Sec); }
830 
831   Error accept(SectionVisitor &) const override;
832   Error accept(MutableSectionVisitor &Visitor) override;
833   void finalize() override;
834   Error removeSectionReferences(
835       bool AllowBrokenLinks,
836       function_ref<bool(const SectionBase *)> ToRemove) override;
837   Error removeSymbols(function_ref<bool(const Symbol &)> ToRemove) override;
838   void markSymbols() override;
839   void replaceSectionReferences(
840       const DenseMap<SectionBase *, SectionBase *> &FromTo) override;
841   void onRemove() override;
842 
843   static bool classof(const SectionBase *S) {
844     return S->OriginalType == ELF::SHT_GROUP;
845   }
846 };
847 
848 class DynamicSymbolTableSection : public Section {
849 public:
850   explicit DynamicSymbolTableSection(ArrayRef<uint8_t> Data) : Section(Data) {}
851 
852   static bool classof(const SectionBase *S) {
853     return S->OriginalType == ELF::SHT_DYNSYM;
854   }
855 };
856 
857 class DynamicSection : public Section {
858 public:
859   explicit DynamicSection(ArrayRef<uint8_t> Data) : Section(Data) {}
860 
861   static bool classof(const SectionBase *S) {
862     return S->OriginalType == ELF::SHT_DYNAMIC;
863   }
864 };
865 
866 class DynamicRelocationSection
867     : public RelocSectionWithSymtabBase<DynamicSymbolTableSection> {
868   MAKE_SEC_WRITER_FRIEND
869 
870 private:
871   ArrayRef<uint8_t> Contents;
872 
873 public:
874   explicit DynamicRelocationSection(ArrayRef<uint8_t> Data) : Contents(Data) {}
875 
876   Error accept(SectionVisitor &) const override;
877   Error accept(MutableSectionVisitor &Visitor) override;
878   Error removeSectionReferences(
879       bool AllowBrokenLinks,
880       function_ref<bool(const SectionBase *)> ToRemove) override;
881 
882   static bool classof(const SectionBase *S) {
883     if (!(S->OriginalFlags & ELF::SHF_ALLOC))
884       return false;
885     return S->OriginalType == ELF::SHT_REL || S->OriginalType == ELF::SHT_RELA;
886   }
887 };
888 
889 class GnuDebugLinkSection : public SectionBase {
890   MAKE_SEC_WRITER_FRIEND
891 
892 private:
893   StringRef FileName;
894   uint32_t CRC32;
895 
896   void init(StringRef File);
897 
898 public:
899   // If we add this section from an external source we can use this ctor.
900   explicit GnuDebugLinkSection(StringRef File, uint32_t PrecomputedCRC);
901   Error accept(SectionVisitor &Visitor) const override;
902   Error accept(MutableSectionVisitor &Visitor) override;
903 };
904 
905 class Reader {
906 public:
907   virtual ~Reader();
908   virtual Expected<std::unique_ptr<Object>> create(bool EnsureSymtab) const = 0;
909 };
910 
911 using object::Binary;
912 using object::ELFFile;
913 using object::ELFObjectFile;
914 using object::OwningBinary;
915 
916 class BasicELFBuilder {
917 protected:
918   std::unique_ptr<Object> Obj;
919 
920   void initFileHeader();
921   void initHeaderSegment();
922   StringTableSection *addStrTab();
923   SymbolTableSection *addSymTab(StringTableSection *StrTab);
924   Error initSections();
925 
926 public:
927   BasicELFBuilder() : Obj(std::make_unique<Object>()) {}
928 };
929 
930 class BinaryELFBuilder : public BasicELFBuilder {
931   MemoryBuffer *MemBuf;
932   uint8_t NewSymbolVisibility;
933   void addData(SymbolTableSection *SymTab);
934 
935 public:
936   BinaryELFBuilder(MemoryBuffer *MB, uint8_t NewSymbolVisibility)
937       : MemBuf(MB), NewSymbolVisibility(NewSymbolVisibility) {}
938 
939   Expected<std::unique_ptr<Object>> build();
940 };
941 
942 class IHexELFBuilder : public BasicELFBuilder {
943   const std::vector<IHexRecord> &Records;
944 
945   void addDataSections();
946 
947 public:
948   IHexELFBuilder(const std::vector<IHexRecord> &Records) : Records(Records) {}
949 
950   Expected<std::unique_ptr<Object>> build();
951 };
952 
953 template <class ELFT> class ELFBuilder {
954 private:
955   using Elf_Addr = typename ELFT::Addr;
956   using Elf_Shdr = typename ELFT::Shdr;
957   using Elf_Word = typename ELFT::Word;
958 
959   const ELFFile<ELFT> &ElfFile;
960   Object &Obj;
961   size_t EhdrOffset = 0;
962   Optional<StringRef> ExtractPartition;
963 
964   void setParentSegment(Segment &Child);
965   Error readProgramHeaders(const ELFFile<ELFT> &HeadersFile);
966   Error initGroupSection(GroupSection *GroupSec);
967   Error initSymbolTable(SymbolTableSection *SymTab);
968   Error readSectionHeaders();
969   Error readSections(bool EnsureSymtab);
970   Error findEhdrOffset();
971   Expected<SectionBase &> makeSection(const Elf_Shdr &Shdr);
972 
973 public:
974   ELFBuilder(const ELFObjectFile<ELFT> &ElfObj, Object &Obj,
975              Optional<StringRef> ExtractPartition);
976 
977   Error build(bool EnsureSymtab);
978 };
979 
980 class BinaryReader : public Reader {
981   MemoryBuffer *MemBuf;
982   uint8_t NewSymbolVisibility;
983 
984 public:
985   BinaryReader(MemoryBuffer *MB, const uint8_t NewSymbolVisibility)
986       : MemBuf(MB), NewSymbolVisibility(NewSymbolVisibility) {}
987   Expected<std::unique_ptr<Object>> create(bool EnsureSymtab) const override;
988 };
989 
990 class IHexReader : public Reader {
991   MemoryBuffer *MemBuf;
992 
993   Expected<std::vector<IHexRecord>> parse() const;
994   Error parseError(size_t LineNo, Error E) const {
995     return LineNo == -1U
996                ? createFileError(MemBuf->getBufferIdentifier(), std::move(E))
997                : createFileError(MemBuf->getBufferIdentifier(), LineNo,
998                                  std::move(E));
999   }
1000   template <typename... Ts>
1001   Error parseError(size_t LineNo, char const *Fmt, const Ts &...Vals) const {
1002     Error E = createStringError(errc::invalid_argument, Fmt, Vals...);
1003     return parseError(LineNo, std::move(E));
1004   }
1005 
1006 public:
1007   IHexReader(MemoryBuffer *MB) : MemBuf(MB) {}
1008 
1009   Expected<std::unique_ptr<Object>> create(bool EnsureSymtab) const override;
1010 };
1011 
1012 class ELFReader : public Reader {
1013   Binary *Bin;
1014   Optional<StringRef> ExtractPartition;
1015 
1016 public:
1017   Expected<std::unique_ptr<Object>> create(bool EnsureSymtab) const override;
1018   explicit ELFReader(Binary *B, Optional<StringRef> ExtractPartition)
1019       : Bin(B), ExtractPartition(ExtractPartition) {}
1020 };
1021 
1022 class Object {
1023 private:
1024   using SecPtr = std::unique_ptr<SectionBase>;
1025   using SegPtr = std::unique_ptr<Segment>;
1026 
1027   std::vector<SecPtr> Sections;
1028   std::vector<SegPtr> Segments;
1029   std::vector<SecPtr> RemovedSections;
1030   DenseMap<SectionBase *, std::vector<uint8_t>> UpdatedSections;
1031 
1032   static bool sectionIsAlloc(const SectionBase &Sec) {
1033     return Sec.Flags & ELF::SHF_ALLOC;
1034   };
1035 
1036 public:
1037   template <class T>
1038   using ConstRange = iterator_range<pointee_iterator<
1039       typename std::vector<std::unique_ptr<T>>::const_iterator>>;
1040 
1041   // It is often the case that the ELF header and the program header table are
1042   // not present in any segment. This could be a problem during file layout,
1043   // because other segments may get assigned an offset where either of the
1044   // two should reside, which will effectively corrupt the resulting binary.
1045   // Other than that we use these segments to track program header offsets
1046   // when they may not follow the ELF header.
1047   Segment ElfHdrSegment;
1048   Segment ProgramHdrSegment;
1049 
1050   uint8_t OSABI;
1051   uint8_t ABIVersion;
1052   uint64_t Entry;
1053   uint64_t SHOff;
1054   uint32_t Type;
1055   uint32_t Machine;
1056   uint32_t Version;
1057   uint32_t Flags;
1058 
1059   bool HadShdrs = true;
1060   bool MustBeRelocatable = false;
1061   StringTableSection *SectionNames = nullptr;
1062   SymbolTableSection *SymbolTable = nullptr;
1063   SectionIndexSection *SectionIndexTable = nullptr;
1064 
1065   bool IsMips64EL = false;
1066 
1067   SectionTableRef sections() const { return SectionTableRef(Sections); }
1068   iterator_range<
1069       filter_iterator<pointee_iterator<std::vector<SecPtr>::const_iterator>,
1070                       decltype(&sectionIsAlloc)>>
1071   allocSections() const {
1072     return make_filter_range(make_pointee_range(Sections), sectionIsAlloc);
1073   }
1074 
1075   const auto &getUpdatedSections() const { return UpdatedSections; }
1076   Error updateSection(StringRef Name, ArrayRef<uint8_t> Data);
1077 
1078   SectionBase *findSection(StringRef Name) {
1079     auto SecIt =
1080         find_if(Sections, [&](const SecPtr &Sec) { return Sec->Name == Name; });
1081     return SecIt == Sections.end() ? nullptr : SecIt->get();
1082   }
1083   SectionTableRef removedSections() { return SectionTableRef(RemovedSections); }
1084 
1085   ConstRange<Segment> segments() const { return make_pointee_range(Segments); }
1086 
1087   Error removeSections(bool AllowBrokenLinks,
1088                        std::function<bool(const SectionBase &)> ToRemove);
1089   Error replaceSections(const DenseMap<SectionBase *, SectionBase *> &FromTo);
1090   Error removeSymbols(function_ref<bool(const Symbol &)> ToRemove);
1091   template <class T, class... Ts> T &addSection(Ts &&...Args) {
1092     auto Sec = std::make_unique<T>(std::forward<Ts>(Args)...);
1093     auto Ptr = Sec.get();
1094     MustBeRelocatable |= isa<RelocationSection>(*Ptr);
1095     Sections.emplace_back(std::move(Sec));
1096     Ptr->Index = Sections.size();
1097     return *Ptr;
1098   }
1099   Error addNewSymbolTable();
1100   Segment &addSegment(ArrayRef<uint8_t> Data) {
1101     Segments.emplace_back(std::make_unique<Segment>(Data));
1102     return *Segments.back();
1103   }
1104   bool isRelocatable() const {
1105     return (Type != ELF::ET_DYN && Type != ELF::ET_EXEC) || MustBeRelocatable;
1106   }
1107 };
1108 
1109 } // end namespace elf
1110 } // end namespace objcopy
1111 } // end namespace llvm
1112 
1113 #endif // LLVM_LIB_OBJCOPY_ELF_ELFOBJECT_H
1114