Don't return error_code from a function that doesn't fail.
[oota-llvm.git] / include / llvm / Object / MachO.h
1 //===- MachO.h - MachO object file implementation ---------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file declares the MachOObjectFile class, which implement the ObjectFile
11 // interface for MachO files.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_OBJECT_MACHO_H
16 #define LLVM_OBJECT_MACHO_H
17
18 #include "llvm/ADT/ArrayRef.h"
19 #include "llvm/ADT/SmallVector.h"
20 #include "llvm/ADT/Triple.h"
21 #include "llvm/Object/ObjectFile.h"
22 #include "llvm/Support/MachO.h"
23
24 namespace llvm {
25 namespace object {
26
27 /// DiceRef - This is a value type class that represents a single
28 /// data in code entry in the table in a Mach-O object file.
29 class DiceRef {
30   DataRefImpl DicePimpl;
31   const ObjectFile *OwningObject;
32
33 public:
34   DiceRef() : OwningObject(nullptr) { }
35
36   DiceRef(DataRefImpl DiceP, const ObjectFile *Owner);
37
38   bool operator==(const DiceRef &Other) const;
39   bool operator<(const DiceRef &Other) const;
40
41   void moveNext();
42
43   std::error_code getOffset(uint32_t &Result) const;
44   std::error_code getLength(uint16_t &Result) const;
45   std::error_code getKind(uint16_t &Result) const;
46
47   DataRefImpl getRawDataRefImpl() const;
48   const ObjectFile *getObjectFile() const;
49 };
50 typedef content_iterator<DiceRef> dice_iterator;
51
52 /// ExportEntry encapsulates the current-state-of-the-walk used when doing a
53 /// non-recursive walk of the trie data structure.  This allows you to iterate
54 /// across all exported symbols using:
55 ///      for (const llvm::object::ExportEntry &AnExport : Obj->exports()) {
56 ///      }
57 class ExportEntry {
58 public:
59   ExportEntry(ArrayRef<uint8_t> Trie);
60
61   StringRef name() const;
62   uint64_t flags() const;
63   uint64_t address() const;
64   uint64_t other() const;
65   StringRef otherName() const;
66   uint32_t nodeOffset() const;
67
68   bool operator==(const ExportEntry &) const;
69
70   void moveNext();
71
72 private:
73   friend class MachOObjectFile;
74   void moveToFirst();
75   void moveToEnd();
76   uint64_t readULEB128(const uint8_t *&p);
77   void pushDownUntilBottom();
78   void pushNode(uint64_t Offset);
79
80   // Represents a node in the mach-o exports trie.
81   struct NodeState {
82     NodeState(const uint8_t *Ptr);
83     const uint8_t *Start;
84     const uint8_t *Current;
85     uint64_t Flags;
86     uint64_t Address;
87     uint64_t Other;
88     const char *ImportName;
89     unsigned ChildCount;
90     unsigned NextChildIndex;
91     unsigned ParentStringLength;
92     bool IsExportNode;
93   };
94
95   ArrayRef<uint8_t> Trie;
96   SmallString<256> CumulativeString;
97   SmallVector<NodeState, 16> Stack;
98   bool Malformed;
99   bool Done;
100 };
101 typedef content_iterator<ExportEntry> export_iterator;
102
103 /// MachORebaseEntry encapsulates the current state in the decompression of   
104 /// rebasing opcodes. This allows you to iterate through the compressed table of
105 /// rebasing using:
106 ///    for (const llvm::object::MachORebaseEntry &Entry : Obj->rebaseTable()) {
107 ///    }
108 class MachORebaseEntry {
109 public:
110   MachORebaseEntry(ArrayRef<uint8_t> opcodes, bool is64Bit);
111
112   uint32_t segmentIndex() const;
113   uint64_t segmentOffset() const;
114   StringRef typeName() const;
115
116   bool operator==(const MachORebaseEntry &) const;
117
118   void moveNext();
119   
120 private:
121   friend class MachOObjectFile;
122   void moveToFirst();
123   void moveToEnd();
124   uint64_t readULEB128();
125
126   ArrayRef<uint8_t> Opcodes;
127   const uint8_t *Ptr;
128   uint64_t SegmentOffset;
129   uint32_t SegmentIndex;
130   uint64_t RemainingLoopCount;
131   uint64_t AdvanceAmount;
132   uint8_t  RebaseType;
133   uint8_t  PointerSize;
134   bool     Malformed;
135   bool     Done;
136 };
137 typedef content_iterator<MachORebaseEntry> rebase_iterator;
138
139 /// MachOBindEntry encapsulates the current state in the decompression of
140 /// binding opcodes. This allows you to iterate through the compressed table of
141 /// bindings using:
142 ///    for (const llvm::object::MachOBindEntry &Entry : Obj->bindTable()) {
143 ///    }
144 class MachOBindEntry {
145 public:
146   enum class Kind { Regular, Lazy, Weak };
147
148   MachOBindEntry(ArrayRef<uint8_t> Opcodes, bool is64Bit, MachOBindEntry::Kind);
149
150   uint32_t segmentIndex() const;
151   uint64_t segmentOffset() const;
152   StringRef typeName() const;
153   StringRef symbolName() const;
154   uint32_t flags() const;
155   int64_t addend() const;
156   int ordinal() const;
157
158   bool operator==(const MachOBindEntry &) const;
159
160   void moveNext();
161
162 private:
163   friend class MachOObjectFile;
164   void moveToFirst();
165   void moveToEnd();
166   uint64_t readULEB128();
167   int64_t readSLEB128();
168
169   ArrayRef<uint8_t> Opcodes;
170   const uint8_t *Ptr;
171   uint64_t SegmentOffset;
172   uint32_t SegmentIndex;
173   StringRef SymbolName;
174   int      Ordinal;
175   uint32_t Flags;
176   int64_t  Addend;
177   uint64_t RemainingLoopCount;
178   uint64_t AdvanceAmount;
179   uint8_t  BindType;
180   uint8_t  PointerSize;
181   Kind     TableKind;
182   bool     Malformed;
183   bool     Done;
184 };
185 typedef content_iterator<MachOBindEntry> bind_iterator;
186
187 class MachOObjectFile : public ObjectFile {
188 public:
189   struct LoadCommandInfo {
190     const char *Ptr;      // Where in memory the load command is.
191     MachO::load_command C; // The command itself.
192   };
193   typedef SmallVector<LoadCommandInfo, 4> LoadCommandList;
194   typedef LoadCommandList::const_iterator load_command_iterator;
195
196   MachOObjectFile(MemoryBufferRef Object, bool IsLittleEndian, bool Is64Bits,
197                   std::error_code &EC);
198
199   void moveSymbolNext(DataRefImpl &Symb) const override;
200
201   uint64_t getNValue(DataRefImpl Sym) const;
202   std::error_code getSymbolName(DataRefImpl Symb,
203                                 StringRef &Res) const override;
204
205   // MachO specific.
206   std::error_code getIndirectName(DataRefImpl Symb, StringRef &Res) const;
207   unsigned getSectionType(SectionRef Sec) const;
208
209   std::error_code getSymbolAddress(DataRefImpl Symb,
210                                    uint64_t &Res) const override;
211   uint64_t getSymbolValue(DataRefImpl Symb) const override;
212   uint32_t getSymbolAlignment(DataRefImpl Symb) const override;
213   uint64_t getCommonSymbolSizeImpl(DataRefImpl Symb) const override;
214   SymbolRef::Type getSymbolType(DataRefImpl Symb) const override;
215   uint32_t getSymbolFlags(DataRefImpl Symb) const override;
216   std::error_code getSymbolSection(DataRefImpl Symb,
217                                    section_iterator &Res) const override;
218   unsigned getSymbolSectionID(SymbolRef Symb) const;
219   unsigned getSectionID(SectionRef Sec) const;
220
221   void moveSectionNext(DataRefImpl &Sec) const override;
222   std::error_code getSectionName(DataRefImpl Sec,
223                                  StringRef &Res) const override;
224   uint64_t getSectionAddress(DataRefImpl Sec) const override;
225   uint64_t getSectionSize(DataRefImpl Sec) const override;
226   std::error_code getSectionContents(DataRefImpl Sec,
227                                      StringRef &Res) const override;
228   uint64_t getSectionAlignment(DataRefImpl Sec) const override;
229   bool isSectionText(DataRefImpl Sec) const override;
230   bool isSectionData(DataRefImpl Sec) const override;
231   bool isSectionBSS(DataRefImpl Sec) const override;
232   bool isSectionVirtual(DataRefImpl Sec) const override;
233   bool sectionContainsSymbol(DataRefImpl Sec, DataRefImpl Symb) const override;
234   relocation_iterator section_rel_begin(DataRefImpl Sec) const override;
235   relocation_iterator section_rel_end(DataRefImpl Sec) const override;
236
237   void moveRelocationNext(DataRefImpl &Rel) const override;
238   std::error_code getRelocationAddress(DataRefImpl Rel,
239                                        uint64_t &Res) const override;
240   uint64_t getRelocationOffset(DataRefImpl Rel) const override;
241   symbol_iterator getRelocationSymbol(DataRefImpl Rel) const override;
242   section_iterator getRelocationSection(DataRefImpl Rel) const;
243   uint64_t getRelocationType(DataRefImpl Rel) const override;
244   std::error_code
245   getRelocationTypeName(DataRefImpl Rel,
246                         SmallVectorImpl<char> &Result) const override;
247   bool getRelocationHidden(DataRefImpl Rel) const override;
248   uint8_t getRelocationLength(DataRefImpl Rel) const;
249
250   // MachO specific.
251   std::error_code getLibraryShortNameByIndex(unsigned Index, StringRef &) const;
252
253   // TODO: Would be useful to have an iterator based version
254   // of the load command interface too.
255
256   basic_symbol_iterator symbol_begin_impl() const override;
257   basic_symbol_iterator symbol_end_impl() const override;
258
259   // MachO specific.
260   basic_symbol_iterator getSymbolByIndex(unsigned Index) const;
261
262   section_iterator section_begin() const override;
263   section_iterator section_end() const override;
264
265   uint8_t getBytesInAddress() const override;
266
267   StringRef getFileFormatName() const override;
268   unsigned getArch() const override;
269   Triple getArch(const char **McpuDefault, Triple *ThumbTriple) const;
270
271   relocation_iterator section_rel_begin(unsigned Index) const;
272   relocation_iterator section_rel_end(unsigned Index) const;
273
274   dice_iterator begin_dices() const;
275   dice_iterator end_dices() const;
276
277   load_command_iterator begin_load_commands() const;
278   load_command_iterator end_load_commands() const;
279   iterator_range<load_command_iterator> load_commands() const;
280
281   /// For use iterating over all exported symbols.
282   iterator_range<export_iterator> exports() const;
283
284   /// For use examining a trie not in a MachOObjectFile.
285   static iterator_range<export_iterator> exports(ArrayRef<uint8_t> Trie);
286
287   /// For use iterating over all rebase table entries.
288   iterator_range<rebase_iterator> rebaseTable() const;
289
290   /// For use examining rebase opcodes not in a MachOObjectFile.
291   static iterator_range<rebase_iterator> rebaseTable(ArrayRef<uint8_t> Opcodes,
292                                                      bool is64);
293
294   /// For use iterating over all bind table entries.
295   iterator_range<bind_iterator> bindTable() const;
296
297   /// For use iterating over all lazy bind table entries.
298   iterator_range<bind_iterator> lazyBindTable() const;
299
300   /// For use iterating over all lazy bind table entries.
301   iterator_range<bind_iterator> weakBindTable() const;
302
303   /// For use examining bind opcodes not in a MachOObjectFile.
304   static iterator_range<bind_iterator> bindTable(ArrayRef<uint8_t> Opcodes,
305                                                  bool is64,
306                                                  MachOBindEntry::Kind);
307
308
309   // In a MachO file, sections have a segment name. This is used in the .o
310   // files. They have a single segment, but this field specifies which segment
311   // a section should be put in in the final object.
312   StringRef getSectionFinalSegmentName(DataRefImpl Sec) const;
313
314   // Names are stored as 16 bytes. These returns the raw 16 bytes without
315   // interpreting them as a C string.
316   ArrayRef<char> getSectionRawName(DataRefImpl Sec) const;
317   ArrayRef<char> getSectionRawFinalSegmentName(DataRefImpl Sec) const;
318
319   // MachO specific Info about relocations.
320   bool isRelocationScattered(const MachO::any_relocation_info &RE) const;
321   unsigned getPlainRelocationSymbolNum(
322                                     const MachO::any_relocation_info &RE) const;
323   bool getPlainRelocationExternal(const MachO::any_relocation_info &RE) const;
324   bool getScatteredRelocationScattered(
325                                     const MachO::any_relocation_info &RE) const;
326   uint32_t getScatteredRelocationValue(
327                                     const MachO::any_relocation_info &RE) const;
328   uint32_t getScatteredRelocationType(
329                                     const MachO::any_relocation_info &RE) const;
330   unsigned getAnyRelocationAddress(const MachO::any_relocation_info &RE) const;
331   unsigned getAnyRelocationPCRel(const MachO::any_relocation_info &RE) const;
332   unsigned getAnyRelocationLength(const MachO::any_relocation_info &RE) const;
333   unsigned getAnyRelocationType(const MachO::any_relocation_info &RE) const;
334   SectionRef getAnyRelocationSection(const MachO::any_relocation_info &RE) const;
335
336   // MachO specific structures.
337   MachO::section getSection(DataRefImpl DRI) const;
338   MachO::section_64 getSection64(DataRefImpl DRI) const;
339   MachO::section getSection(const LoadCommandInfo &L, unsigned Index) const;
340   MachO::section_64 getSection64(const LoadCommandInfo &L,unsigned Index) const;
341   MachO::nlist getSymbolTableEntry(DataRefImpl DRI) const;
342   MachO::nlist_64 getSymbol64TableEntry(DataRefImpl DRI) const;
343
344   MachO::linkedit_data_command
345   getLinkeditDataLoadCommand(const LoadCommandInfo &L) const;
346   MachO::segment_command
347   getSegmentLoadCommand(const LoadCommandInfo &L) const;
348   MachO::segment_command_64
349   getSegment64LoadCommand(const LoadCommandInfo &L) const;
350   MachO::linker_option_command
351   getLinkerOptionLoadCommand(const LoadCommandInfo &L) const;
352   MachO::version_min_command
353   getVersionMinLoadCommand(const LoadCommandInfo &L) const;
354   MachO::dylib_command
355   getDylibIDLoadCommand(const LoadCommandInfo &L) const;
356   MachO::dyld_info_command
357   getDyldInfoLoadCommand(const LoadCommandInfo &L) const;
358   MachO::dylinker_command
359   getDylinkerCommand(const LoadCommandInfo &L) const;
360   MachO::uuid_command
361   getUuidCommand(const LoadCommandInfo &L) const;
362   MachO::rpath_command
363   getRpathCommand(const LoadCommandInfo &L) const;
364   MachO::source_version_command
365   getSourceVersionCommand(const LoadCommandInfo &L) const;
366   MachO::entry_point_command
367   getEntryPointCommand(const LoadCommandInfo &L) const;
368   MachO::encryption_info_command
369   getEncryptionInfoCommand(const LoadCommandInfo &L) const;
370   MachO::encryption_info_command_64
371   getEncryptionInfoCommand64(const LoadCommandInfo &L) const;
372   MachO::sub_framework_command
373   getSubFrameworkCommand(const LoadCommandInfo &L) const;
374   MachO::sub_umbrella_command
375   getSubUmbrellaCommand(const LoadCommandInfo &L) const;
376   MachO::sub_library_command
377   getSubLibraryCommand(const LoadCommandInfo &L) const;
378   MachO::sub_client_command
379   getSubClientCommand(const LoadCommandInfo &L) const;
380   MachO::routines_command
381   getRoutinesCommand(const LoadCommandInfo &L) const;
382   MachO::routines_command_64
383   getRoutinesCommand64(const LoadCommandInfo &L) const;
384   MachO::thread_command
385   getThreadCommand(const LoadCommandInfo &L) const;
386
387   MachO::any_relocation_info getRelocation(DataRefImpl Rel) const;
388   MachO::data_in_code_entry getDice(DataRefImpl Rel) const;
389   const MachO::mach_header &getHeader() const;
390   const MachO::mach_header_64 &getHeader64() const;
391   uint32_t
392   getIndirectSymbolTableEntry(const MachO::dysymtab_command &DLC,
393                               unsigned Index) const;
394   MachO::data_in_code_entry getDataInCodeTableEntry(uint32_t DataOffset,
395                                                     unsigned Index) const;
396   MachO::symtab_command getSymtabLoadCommand() const;
397   MachO::dysymtab_command getDysymtabLoadCommand() const;
398   MachO::linkedit_data_command getDataInCodeLoadCommand() const;
399   MachO::linkedit_data_command getLinkOptHintsLoadCommand() const;
400   ArrayRef<uint8_t> getDyldInfoRebaseOpcodes() const;
401   ArrayRef<uint8_t> getDyldInfoBindOpcodes() const;
402   ArrayRef<uint8_t> getDyldInfoWeakBindOpcodes() const;
403   ArrayRef<uint8_t> getDyldInfoLazyBindOpcodes() const;
404   ArrayRef<uint8_t> getDyldInfoExportsTrie() const;
405   ArrayRef<uint8_t> getUuid() const;
406
407   StringRef getStringTableData() const;
408   bool is64Bit() const;
409   void ReadULEB128s(uint64_t Index, SmallVectorImpl<uint64_t> &Out) const;
410
411   static StringRef guessLibraryShortName(StringRef Name, bool &isFramework,
412                                          StringRef &Suffix);
413
414   static Triple::ArchType getArch(uint32_t CPUType);
415   static Triple getArch(uint32_t CPUType, uint32_t CPUSubType,
416                         const char **McpuDefault = nullptr);
417   static Triple getThumbArch(uint32_t CPUType, uint32_t CPUSubType,
418                              const char **McpuDefault = nullptr);
419   static Triple getArch(uint32_t CPUType, uint32_t CPUSubType,
420                         const char **McpuDefault, Triple *ThumbTriple);
421   static bool isValidArch(StringRef ArchFlag);
422   static Triple getHostArch();
423
424   bool isRelocatableObject() const override;
425
426   bool hasPageZeroSegment() const { return HasPageZeroSegment; }
427
428   static bool classof(const Binary *v) {
429     return v->isMachO();
430   }
431
432 private:
433   union {
434     MachO::mach_header_64 Header64;
435     MachO::mach_header Header;
436   };
437   typedef SmallVector<const char*, 1> SectionList;
438   SectionList Sections;
439   typedef SmallVector<const char*, 1> LibraryList;
440   LibraryList Libraries;
441   LoadCommandList LoadCommands;
442   typedef SmallVector<StringRef, 1> LibraryShortName;
443   mutable LibraryShortName LibrariesShortNames;
444   const char *SymtabLoadCmd;
445   const char *DysymtabLoadCmd;
446   const char *DataInCodeLoadCmd;
447   const char *LinkOptHintsLoadCmd;
448   const char *DyldInfoLoadCmd;
449   const char *UuidLoadCmd;
450   bool HasPageZeroSegment;
451 };
452
453 /// DiceRef
454 inline DiceRef::DiceRef(DataRefImpl DiceP, const ObjectFile *Owner)
455   : DicePimpl(DiceP) , OwningObject(Owner) {}
456
457 inline bool DiceRef::operator==(const DiceRef &Other) const {
458   return DicePimpl == Other.DicePimpl;
459 }
460
461 inline bool DiceRef::operator<(const DiceRef &Other) const {
462   return DicePimpl < Other.DicePimpl;
463 }
464
465 inline void DiceRef::moveNext() {
466   const MachO::data_in_code_entry *P =
467     reinterpret_cast<const MachO::data_in_code_entry *>(DicePimpl.p);
468   DicePimpl.p = reinterpret_cast<uintptr_t>(P + 1);
469 }
470
471 // Since a Mach-O data in code reference, a DiceRef, can only be created when
472 // the OwningObject ObjectFile is a MachOObjectFile a static_cast<> is used for
473 // the methods that get the values of the fields of the reference.
474
475 inline std::error_code DiceRef::getOffset(uint32_t &Result) const {
476   const MachOObjectFile *MachOOF =
477     static_cast<const MachOObjectFile *>(OwningObject);
478   MachO::data_in_code_entry Dice = MachOOF->getDice(DicePimpl);
479   Result = Dice.offset;
480   return std::error_code();
481 }
482
483 inline std::error_code DiceRef::getLength(uint16_t &Result) const {
484   const MachOObjectFile *MachOOF =
485     static_cast<const MachOObjectFile *>(OwningObject);
486   MachO::data_in_code_entry Dice = MachOOF->getDice(DicePimpl);
487   Result = Dice.length;
488   return std::error_code();
489 }
490
491 inline std::error_code DiceRef::getKind(uint16_t &Result) const {
492   const MachOObjectFile *MachOOF =
493     static_cast<const MachOObjectFile *>(OwningObject);
494   MachO::data_in_code_entry Dice = MachOOF->getDice(DicePimpl);
495   Result = Dice.kind;
496   return std::error_code();
497 }
498
499 inline DataRefImpl DiceRef::getRawDataRefImpl() const {
500   return DicePimpl;
501 }
502
503 inline const ObjectFile *DiceRef::getObjectFile() const {
504   return OwningObject;
505 }
506
507 }
508 }
509
510 #endif
511