LLVM 24.0.0git
MachOObjectFile.cpp
Go to the documentation of this file.
1//===- MachOObjectFile.cpp - Mach-O object file binding -------------------===//
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 defines the MachOObjectFile class, which binds the MachOObject
10// class to the generic ObjectFile wrapper.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/ADT/ArrayRef.h"
15#include "llvm/ADT/STLExtras.h"
17#include "llvm/ADT/StringRef.h"
19#include "llvm/ADT/Twine.h"
20#include "llvm/ADT/bit.h"
23#include "llvm/Object/Error.h"
24#include "llvm/Object/MachO.h"
28#include "llvm/Support/Debug.h"
29#include "llvm/Support/Errc.h"
30#include "llvm/Support/Error.h"
33#include "llvm/Support/Format.h"
34#include "llvm/Support/LEB128.h"
36#include "llvm/Support/Path.h"
41#include <algorithm>
42#include <cassert>
43#include <cstddef>
44#include <cstdint>
45#include <cstring>
46#include <limits>
47#include <list>
48#include <memory>
49#include <system_error>
50
51using namespace llvm;
52using namespace object;
53
54namespace {
55
56 struct section_base {
57 char sectname[16];
58 char segname[16];
59 };
60
61} // end anonymous namespace
62
63static Error malformedError(const Twine &Msg) {
64 return make_error<GenericBinaryError>("truncated or malformed object (" +
65 Msg + ")",
66 object_error::parse_failed);
67}
68
69// FIXME: Replace all uses of this function with getStructOrErr.
70template <typename T>
71static T getStruct(const MachOObjectFile &O, const char *P) {
72 // Don't read before the beginning or past the end of the file
73 if (P < O.getData().begin() || P + sizeof(T) > O.getData().end())
74 report_fatal_error("Malformed MachO file.");
75
76 T Cmd;
77 memcpy(&Cmd, P, sizeof(T));
78 if (O.isLittleEndian() != sys::IsLittleEndianHost)
80 return Cmd;
81}
82
83template <typename T>
84static Expected<T> getStructOrErr(const MachOObjectFile &O, const char *P) {
85 // Don't read before the beginning or past the end of the file
86 if (P < O.getData().begin() || P + sizeof(T) > O.getData().end())
87 return malformedError("Structure read out-of-range");
88
89 T Cmd;
90 memcpy(&Cmd, P, sizeof(T));
91 if (O.isLittleEndian() != sys::IsLittleEndianHost)
93 return Cmd;
94}
95
96static const char *
98 unsigned Sec) {
99 uintptr_t CommandAddr = reinterpret_cast<uintptr_t>(L.Ptr);
100
101 bool Is64 = O.is64Bit();
102 unsigned SegmentLoadSize = Is64 ? sizeof(MachO::segment_command_64) :
104 unsigned SectionSize = Is64 ? sizeof(MachO::section_64) :
105 sizeof(MachO::section);
106
107 uintptr_t SectionAddr = CommandAddr + SegmentLoadSize + Sec * SectionSize;
108 return reinterpret_cast<const char*>(SectionAddr);
109}
110
111static const char *getPtr(const MachOObjectFile &O, size_t Offset,
112 size_t MachOFilesetEntryOffset = 0) {
113 assert(Offset <= O.getData().size() &&
114 MachOFilesetEntryOffset <= O.getData().size());
115 return O.getData().data() + Offset + MachOFilesetEntryOffset;
116}
117
120 const char *P = reinterpret_cast<const char *>(DRI.p);
122}
123
125 if (P[15] == 0)
126 // Null terminated.
127 return P;
128 // Not null terminated, so this is a 16 char string.
129 return StringRef(P, 16);
130}
131
132static unsigned getCPUType(const MachOObjectFile &O) {
133 return O.getHeader().cputype;
134}
135
136static unsigned getCPUSubType(const MachOObjectFile &O) {
137 return O.getHeader().cpusubtype & ~MachO::CPU_SUBTYPE_MASK;
138}
139
140static uint32_t
144
145static unsigned
147 return RE.r_word0 & 0xffffff;
148}
149
151 const MachO::any_relocation_info &RE) {
152 if (O.isLittleEndian())
153 return (RE.r_word1 >> 24) & 1;
154 return (RE.r_word1 >> 7) & 1;
155}
156
157static bool
159 return (RE.r_word0 >> 30) & 1;
160}
161
163 const MachO::any_relocation_info &RE) {
164 if (O.isLittleEndian())
165 return (RE.r_word1 >> 25) & 3;
166 return (RE.r_word1 >> 5) & 3;
167}
168
169static unsigned
171 return (RE.r_word0 >> 28) & 3;
172}
173
175 const MachO::any_relocation_info &RE) {
176 if (O.isLittleEndian())
177 return RE.r_word1 >> 28;
178 return RE.r_word1 & 0xf;
179}
180
182 DataRefImpl Sec) {
183 if (O.is64Bit()) {
184 MachO::section_64 Sect = O.getSection64(Sec);
185 return Sect.flags;
186 }
187 MachO::section Sect = O.getSection(Sec);
188 return Sect.flags;
189}
190
192getLoadCommandInfo(const MachOObjectFile &Obj, const char *Ptr,
193 uint32_t LoadCommandIndex) {
194 if (auto CmdOrErr = getStructOrErr<MachO::load_command>(Obj, Ptr)) {
195 assert(Ptr <= Obj.getData().end() && "Start must be before end");
196 if (CmdOrErr->cmdsize > (uintptr_t)(Obj.getData().end() - Ptr))
197 return malformedError("load command " + Twine(LoadCommandIndex) +
198 " extends past end of file");
199 if (CmdOrErr->cmdsize < 8)
200 return malformedError("load command " + Twine(LoadCommandIndex) +
201 " with size less than 8 bytes");
202 return MachOObjectFile::LoadCommandInfo({Ptr, *CmdOrErr});
203 } else
204 return CmdOrErr.takeError();
205}
206
209 unsigned HeaderSize = Obj.is64Bit() ? sizeof(MachO::mach_header_64)
210 : sizeof(MachO::mach_header);
211 if (sizeof(MachO::load_command) > Obj.getHeader().sizeofcmds)
212 return malformedError("load command 0 extends past the end all load "
213 "commands in the file");
214 return getLoadCommandInfo(
215 Obj, getPtr(Obj, HeaderSize, Obj.getMachOFilesetEntryOffset()), 0);
216}
217
221 unsigned HeaderSize = Obj.is64Bit() ? sizeof(MachO::mach_header_64)
222 : sizeof(MachO::mach_header);
223 if (L.Ptr + L.C.cmdsize + sizeof(MachO::load_command) >
224 Obj.getData().data() + Obj.getMachOFilesetEntryOffset() + HeaderSize +
225 Obj.getHeader().sizeofcmds)
226 return malformedError("load command " + Twine(LoadCommandIndex + 1) +
227 " extends past the end all load commands in the file");
228 return getLoadCommandInfo(Obj, L.Ptr + L.C.cmdsize, LoadCommandIndex + 1);
229}
230
231template <typename T>
232static void parseHeader(const MachOObjectFile &Obj, T &Header,
233 Error &Err) {
234 if (sizeof(T) > Obj.getData().size()) {
235 Err = malformedError("the mach header extends past the end of the "
236 "file");
237 return;
238 }
239 if (auto HeaderOrErr = getStructOrErr<T>(
240 Obj, getPtr(Obj, 0, Obj.getMachOFilesetEntryOffset())))
241 Header = *HeaderOrErr;
242 else
243 Err = HeaderOrErr.takeError();
244}
245
246// This is used to check for overlapping of Mach-O elements.
252
253static Error checkOverlappingElement(std::list<MachOElement> &Elements,
255 const char *Name) {
256 if (Size == 0)
257 return Error::success();
258
259 for (auto it = Elements.begin(); it != Elements.end(); ++it) {
260 const auto &E = *it;
261 if ((Offset >= E.Offset && Offset < E.Offset + E.Size) ||
262 (Offset + Size > E.Offset && Offset + Size < E.Offset + E.Size) ||
264 return malformedError(Twine(Name) + " at offset " + Twine(Offset) +
265 " with a size of " + Twine(Size) + ", overlaps " +
266 E.Name + " at offset " + Twine(E.Offset) + " with "
267 "a size of " + Twine(E.Size));
268 auto nt = it;
269 nt++;
270 if (nt != Elements.end()) {
271 const auto &N = *nt;
272 if (Offset + Size <= N.Offset) {
273 Elements.insert(nt, {Offset, Size, Name});
274 return Error::success();
275 }
276 }
277 }
278 Elements.push_back({Offset, Size, Name});
279 return Error::success();
280}
281
282// Parses LC_SEGMENT or LC_SEGMENT_64 load command, adds addresses of all
283// sections to \param Sections, and optionally sets
284// \param IsPageZeroSegment to true.
285template <typename Segment, typename Section>
288 SmallVectorImpl<const char *> &Sections, bool &IsPageZeroSegment,
289 uint32_t LoadCommandIndex, const char *CmdName, uint64_t SizeOfHeaders,
290 std::list<MachOElement> &Elements) {
291 const unsigned SegmentLoadSize = sizeof(Segment);
292 if (Load.C.cmdsize < SegmentLoadSize)
293 return malformedError("load command " + Twine(LoadCommandIndex) +
294 " " + CmdName + " cmdsize too small");
295 if (auto SegOrErr = getStructOrErr<Segment>(Obj, Load.Ptr)) {
296 Segment S = SegOrErr.get();
297 const unsigned SectionSize = sizeof(Section);
298 uint64_t FileSize = Obj.getData().size();
299 if (S.nsects > std::numeric_limits<uint32_t>::max() / SectionSize ||
300 S.nsects * SectionSize > Load.C.cmdsize - SegmentLoadSize)
301 return malformedError("load command " + Twine(LoadCommandIndex) +
302 " inconsistent cmdsize in " + CmdName +
303 " for the number of sections");
304 for (unsigned J = 0; J < S.nsects; ++J) {
305 const char *Sec = getSectionPtr(Obj, Load, J);
306 Sections.push_back(Sec);
307 auto SectionOrErr = getStructOrErr<Section>(Obj, Sec);
308 if (!SectionOrErr)
309 return SectionOrErr.takeError();
310 Section s = SectionOrErr.get();
311 if (Obj.getHeader().filetype != MachO::MH_DYLIB_STUB &&
312 Obj.getHeader().filetype != MachO::MH_DSYM &&
313 s.flags != MachO::S_ZEROFILL &&
315 s.offset > FileSize)
316 return malformedError("offset field of section " + Twine(J) + " in " +
317 CmdName + " command " + Twine(LoadCommandIndex) +
318 " extends past the end of the file");
319 if (Obj.getHeader().filetype != MachO::MH_DYLIB_STUB &&
320 Obj.getHeader().filetype != MachO::MH_DSYM &&
321 s.flags != MachO::S_ZEROFILL &&
322 s.flags != MachO::S_THREAD_LOCAL_ZEROFILL && S.fileoff == 0 &&
323 s.offset < SizeOfHeaders && s.size != 0)
324 return malformedError("offset field of section " + Twine(J) + " in " +
325 CmdName + " command " + Twine(LoadCommandIndex) +
326 " not past the headers of the file");
327 uint64_t BigSize = s.offset;
328 BigSize += s.size;
329 if (Obj.getHeader().filetype != MachO::MH_DYLIB_STUB &&
330 Obj.getHeader().filetype != MachO::MH_DSYM &&
331 s.flags != MachO::S_ZEROFILL &&
333 BigSize > FileSize)
334 return malformedError("offset field plus size field of section " +
335 Twine(J) + " in " + CmdName + " command " +
336 Twine(LoadCommandIndex) +
337 " extends past the end of the file");
338 if (Obj.getHeader().filetype != MachO::MH_DYLIB_STUB &&
339 Obj.getHeader().filetype != MachO::MH_DSYM &&
340 s.flags != MachO::S_ZEROFILL &&
342 s.size > S.filesize)
343 return malformedError("size field of section " +
344 Twine(J) + " in " + CmdName + " command " +
345 Twine(LoadCommandIndex) +
346 " greater than the segment");
347 if (Obj.getHeader().filetype != MachO::MH_DYLIB_STUB &&
348 Obj.getHeader().filetype != MachO::MH_DSYM && s.size != 0 &&
349 s.addr < S.vmaddr)
350 return malformedError("addr field of section " + Twine(J) + " in " +
351 CmdName + " command " + Twine(LoadCommandIndex) +
352 " less than the segment's vmaddr");
353 BigSize = s.addr;
354 BigSize += s.size;
355 uint64_t BigEnd = S.vmaddr;
356 BigEnd += S.vmsize;
357 if (S.vmsize != 0 && s.size != 0 && BigSize > BigEnd)
358 return malformedError("addr field plus size of section " + Twine(J) +
359 " in " + CmdName + " command " +
360 Twine(LoadCommandIndex) +
361 " greater than than "
362 "the segment's vmaddr plus vmsize");
363 if (Obj.getHeader().filetype != MachO::MH_DYLIB_STUB &&
364 Obj.getHeader().filetype != MachO::MH_DSYM &&
365 s.flags != MachO::S_ZEROFILL &&
367 if (Error Err = checkOverlappingElement(Elements, s.offset, s.size,
368 "section contents"))
369 return Err;
370 if (s.reloff > FileSize)
371 return malformedError("reloff field of section " + Twine(J) + " in " +
372 CmdName + " command " + Twine(LoadCommandIndex) +
373 " extends past the end of the file");
374 BigSize = s.nreloc;
375 BigSize *= sizeof(struct MachO::relocation_info);
376 BigSize += s.reloff;
377 if (BigSize > FileSize)
378 return malformedError("reloff field plus nreloc field times sizeof("
379 "struct relocation_info) of section " +
380 Twine(J) + " in " + CmdName + " command " +
381 Twine(LoadCommandIndex) +
382 " extends past the end of the file");
383 if (Error Err = checkOverlappingElement(Elements, s.reloff, s.nreloc *
384 sizeof(struct
386 "section relocation entries"))
387 return Err;
388 }
389 if (S.fileoff > FileSize)
390 return malformedError("load command " + Twine(LoadCommandIndex) +
391 " fileoff field in " + CmdName +
392 " extends past the end of the file");
393 uint64_t BigSize = S.fileoff;
394 BigSize += S.filesize;
395 if (BigSize > FileSize)
396 return malformedError("load command " + Twine(LoadCommandIndex) +
397 " fileoff field plus filesize field in " +
398 CmdName + " extends past the end of the file");
399 if (S.vmsize != 0 && S.filesize > S.vmsize)
400 return malformedError("load command " + Twine(LoadCommandIndex) +
401 " filesize field in " + CmdName +
402 " greater than vmsize field");
403 IsPageZeroSegment |= StringRef("__PAGEZERO") == S.segname;
404 } else
405 return SegOrErr.takeError();
406
407 return Error::success();
408}
409
412 uint32_t LoadCommandIndex,
413 const char **SymtabLoadCmd,
414 std::list<MachOElement> &Elements) {
415 if (Load.C.cmdsize < sizeof(MachO::symtab_command))
416 return malformedError("load command " + Twine(LoadCommandIndex) +
417 " LC_SYMTAB cmdsize too small");
418 if (*SymtabLoadCmd != nullptr)
419 return malformedError("more than one LC_SYMTAB command");
420 auto SymtabOrErr = getStructOrErr<MachO::symtab_command>(Obj, Load.Ptr);
421 if (!SymtabOrErr)
422 return SymtabOrErr.takeError();
423 MachO::symtab_command Symtab = SymtabOrErr.get();
424 if (Symtab.cmdsize != sizeof(MachO::symtab_command))
425 return malformedError("LC_SYMTAB command " + Twine(LoadCommandIndex) +
426 " has incorrect cmdsize");
427 uint64_t FileSize = Obj.getData().size();
428 if (Symtab.symoff > FileSize)
429 return malformedError("symoff field of LC_SYMTAB command " +
430 Twine(LoadCommandIndex) + " extends past the end "
431 "of the file");
432 uint64_t SymtabSize = Symtab.nsyms;
433 const char *struct_nlist_name;
434 if (Obj.is64Bit()) {
435 SymtabSize *= sizeof(MachO::nlist_64);
436 struct_nlist_name = "struct nlist_64";
437 } else {
438 SymtabSize *= sizeof(MachO::nlist);
439 struct_nlist_name = "struct nlist";
440 }
441 uint64_t BigSize = SymtabSize;
442 BigSize += Symtab.symoff;
443 if (BigSize > FileSize)
444 return malformedError("symoff field plus nsyms field times sizeof(" +
445 Twine(struct_nlist_name) + ") of LC_SYMTAB command " +
446 Twine(LoadCommandIndex) + " extends past the end "
447 "of the file");
448 if (Error Err = checkOverlappingElement(Elements, Symtab.symoff, SymtabSize,
449 "symbol table"))
450 return Err;
451 if (Symtab.stroff > FileSize)
452 return malformedError("stroff field of LC_SYMTAB command " +
453 Twine(LoadCommandIndex) + " extends past the end "
454 "of the file");
455 BigSize = Symtab.stroff;
456 BigSize += Symtab.strsize;
457 if (BigSize > FileSize)
458 return malformedError("stroff field plus strsize field of LC_SYMTAB "
459 "command " + Twine(LoadCommandIndex) + " extends "
460 "past the end of the file");
461 if (Error Err = checkOverlappingElement(Elements, Symtab.stroff,
462 Symtab.strsize, "string table"))
463 return Err;
464 *SymtabLoadCmd = Load.Ptr;
465 return Error::success();
466}
467
470 uint32_t LoadCommandIndex,
471 const char **DysymtabLoadCmd,
472 std::list<MachOElement> &Elements) {
473 if (Load.C.cmdsize < sizeof(MachO::dysymtab_command))
474 return malformedError("load command " + Twine(LoadCommandIndex) +
475 " LC_DYSYMTAB cmdsize too small");
476 if (*DysymtabLoadCmd != nullptr)
477 return malformedError("more than one LC_DYSYMTAB command");
478 auto DysymtabOrErr =
480 if (!DysymtabOrErr)
481 return DysymtabOrErr.takeError();
482 MachO::dysymtab_command Dysymtab = DysymtabOrErr.get();
483 if (Dysymtab.cmdsize != sizeof(MachO::dysymtab_command))
484 return malformedError("LC_DYSYMTAB command " + Twine(LoadCommandIndex) +
485 " has incorrect cmdsize");
486 uint64_t FileSize = Obj.getData().size();
487 if (Dysymtab.tocoff > FileSize)
488 return malformedError("tocoff field of LC_DYSYMTAB command " +
489 Twine(LoadCommandIndex) + " extends past the end of "
490 "the file");
491 uint64_t BigSize = Dysymtab.ntoc;
492 BigSize *= sizeof(MachO::dylib_table_of_contents);
493 BigSize += Dysymtab.tocoff;
494 if (BigSize > FileSize)
495 return malformedError("tocoff field plus ntoc field times sizeof(struct "
496 "dylib_table_of_contents) of LC_DYSYMTAB command " +
497 Twine(LoadCommandIndex) + " extends past the end of "
498 "the file");
499 if (Error Err = checkOverlappingElement(Elements, Dysymtab.tocoff,
500 Dysymtab.ntoc * sizeof(struct
502 "table of contents"))
503 return Err;
504 if (Dysymtab.modtaboff > FileSize)
505 return malformedError("modtaboff field of LC_DYSYMTAB command " +
506 Twine(LoadCommandIndex) + " extends past the end of "
507 "the file");
508 BigSize = Dysymtab.nmodtab;
509 const char *struct_dylib_module_name;
510 uint64_t sizeof_modtab;
511 if (Obj.is64Bit()) {
512 sizeof_modtab = sizeof(MachO::dylib_module_64);
513 struct_dylib_module_name = "struct dylib_module_64";
514 } else {
515 sizeof_modtab = sizeof(MachO::dylib_module);
516 struct_dylib_module_name = "struct dylib_module";
517 }
518 BigSize *= sizeof_modtab;
519 BigSize += Dysymtab.modtaboff;
520 if (BigSize > FileSize)
521 return malformedError("modtaboff field plus nmodtab field times sizeof(" +
522 Twine(struct_dylib_module_name) + ") of LC_DYSYMTAB "
523 "command " + Twine(LoadCommandIndex) + " extends "
524 "past the end of the file");
525 if (Error Err = checkOverlappingElement(Elements, Dysymtab.modtaboff,
526 Dysymtab.nmodtab * sizeof_modtab,
527 "module table"))
528 return Err;
529 if (Dysymtab.extrefsymoff > FileSize)
530 return malformedError("extrefsymoff field of LC_DYSYMTAB command " +
531 Twine(LoadCommandIndex) + " extends past the end of "
532 "the file");
533 BigSize = Dysymtab.nextrefsyms;
534 BigSize *= sizeof(MachO::dylib_reference);
535 BigSize += Dysymtab.extrefsymoff;
536 if (BigSize > FileSize)
537 return malformedError("extrefsymoff field plus nextrefsyms field times "
538 "sizeof(struct dylib_reference) of LC_DYSYMTAB "
539 "command " + Twine(LoadCommandIndex) + " extends "
540 "past the end of the file");
541 if (Error Err = checkOverlappingElement(Elements, Dysymtab.extrefsymoff,
542 Dysymtab.nextrefsyms *
544 "reference table"))
545 return Err;
546 if (Dysymtab.indirectsymoff > FileSize)
547 return malformedError("indirectsymoff field of LC_DYSYMTAB command " +
548 Twine(LoadCommandIndex) + " extends past the end of "
549 "the file");
550 BigSize = Dysymtab.nindirectsyms;
551 BigSize *= sizeof(uint32_t);
552 BigSize += Dysymtab.indirectsymoff;
553 if (BigSize > FileSize)
554 return malformedError("indirectsymoff field plus nindirectsyms field times "
555 "sizeof(uint32_t) of LC_DYSYMTAB command " +
556 Twine(LoadCommandIndex) + " extends past the end of "
557 "the file");
558 if (Error Err = checkOverlappingElement(Elements, Dysymtab.indirectsymoff,
559 Dysymtab.nindirectsyms *
560 sizeof(uint32_t),
561 "indirect table"))
562 return Err;
563 if (Dysymtab.extreloff > FileSize)
564 return malformedError("extreloff field of LC_DYSYMTAB command " +
565 Twine(LoadCommandIndex) + " extends past the end of "
566 "the file");
567 BigSize = Dysymtab.nextrel;
568 BigSize *= sizeof(MachO::relocation_info);
569 BigSize += Dysymtab.extreloff;
570 if (BigSize > FileSize)
571 return malformedError("extreloff field plus nextrel field times sizeof"
572 "(struct relocation_info) of LC_DYSYMTAB command " +
573 Twine(LoadCommandIndex) + " extends past the end of "
574 "the file");
575 if (Error Err = checkOverlappingElement(Elements, Dysymtab.extreloff,
576 Dysymtab.nextrel *
578 "external relocation table"))
579 return Err;
580 if (Dysymtab.locreloff > FileSize)
581 return malformedError("locreloff field of LC_DYSYMTAB command " +
582 Twine(LoadCommandIndex) + " extends past the end of "
583 "the file");
584 BigSize = Dysymtab.nlocrel;
585 BigSize *= sizeof(MachO::relocation_info);
586 BigSize += Dysymtab.locreloff;
587 if (BigSize > FileSize)
588 return malformedError("locreloff field plus nlocrel field times sizeof"
589 "(struct relocation_info) of LC_DYSYMTAB command " +
590 Twine(LoadCommandIndex) + " extends past the end of "
591 "the file");
592 if (Error Err = checkOverlappingElement(Elements, Dysymtab.locreloff,
593 Dysymtab.nlocrel *
595 "local relocation table"))
596 return Err;
597 *DysymtabLoadCmd = Load.Ptr;
598 return Error::success();
599}
600
603 uint32_t LoadCommandIndex,
604 const char **LoadCmd, const char *CmdName,
605 std::list<MachOElement> &Elements,
606 const char *ElementName) {
607 if (Load.C.cmdsize < sizeof(MachO::linkedit_data_command))
608 return malformedError("load command " + Twine(LoadCommandIndex) + " " +
609 CmdName + " cmdsize too small");
610 if (*LoadCmd != nullptr)
611 return malformedError("more than one " + Twine(CmdName) + " command");
612 auto LinkDataOrError =
614 if (!LinkDataOrError)
615 return LinkDataOrError.takeError();
616 MachO::linkedit_data_command LinkData = LinkDataOrError.get();
617 if (LinkData.cmdsize != sizeof(MachO::linkedit_data_command))
618 return malformedError(Twine(CmdName) + " command " +
619 Twine(LoadCommandIndex) + " has incorrect cmdsize");
620 uint64_t FileSize = Obj.getData().size();
621 if (LinkData.dataoff > FileSize)
622 return malformedError("dataoff field of " + Twine(CmdName) + " command " +
623 Twine(LoadCommandIndex) + " extends past the end of "
624 "the file");
625 uint64_t BigSize = LinkData.dataoff;
626 BigSize += LinkData.datasize;
627 if (BigSize > FileSize)
628 return malformedError("dataoff field plus datasize field of " +
629 Twine(CmdName) + " command " +
630 Twine(LoadCommandIndex) + " extends past the end of "
631 "the file");
632 if (Error Err = checkOverlappingElement(Elements, LinkData.dataoff,
633 LinkData.datasize, ElementName))
634 return Err;
635 *LoadCmd = Load.Ptr;
636 return Error::success();
637}
638
641 uint32_t LoadCommandIndex,
642 const char **LoadCmd, const char *CmdName,
643 std::list<MachOElement> &Elements) {
644 if (Load.C.cmdsize < sizeof(MachO::dyld_info_command))
645 return malformedError("load command " + Twine(LoadCommandIndex) + " " +
646 CmdName + " cmdsize too small");
647 if (*LoadCmd != nullptr)
648 return malformedError("more than one LC_DYLD_INFO and or LC_DYLD_INFO_ONLY "
649 "command");
650 auto DyldInfoOrErr =
652 if (!DyldInfoOrErr)
653 return DyldInfoOrErr.takeError();
654 MachO::dyld_info_command DyldInfo = DyldInfoOrErr.get();
655 if (DyldInfo.cmdsize != sizeof(MachO::dyld_info_command))
656 return malformedError(Twine(CmdName) + " command " +
657 Twine(LoadCommandIndex) + " has incorrect cmdsize");
658 uint64_t FileSize = Obj.getData().size();
659 if (DyldInfo.rebase_off > FileSize)
660 return malformedError("rebase_off field of " + Twine(CmdName) +
661 " command " + Twine(LoadCommandIndex) + " extends "
662 "past the end of the file");
663 uint64_t BigSize = DyldInfo.rebase_off;
664 BigSize += DyldInfo.rebase_size;
665 if (BigSize > FileSize)
666 return malformedError("rebase_off field plus rebase_size field of " +
667 Twine(CmdName) + " command " +
668 Twine(LoadCommandIndex) + " extends past the end of "
669 "the file");
670 if (Error Err = checkOverlappingElement(Elements, DyldInfo.rebase_off,
671 DyldInfo.rebase_size,
672 "dyld rebase info"))
673 return Err;
674 if (DyldInfo.bind_off > FileSize)
675 return malformedError("bind_off field of " + Twine(CmdName) +
676 " command " + Twine(LoadCommandIndex) + " extends "
677 "past the end of the file");
678 BigSize = DyldInfo.bind_off;
679 BigSize += DyldInfo.bind_size;
680 if (BigSize > FileSize)
681 return malformedError("bind_off field plus bind_size field of " +
682 Twine(CmdName) + " command " +
683 Twine(LoadCommandIndex) + " extends past the end of "
684 "the file");
685 if (Error Err = checkOverlappingElement(Elements, DyldInfo.bind_off,
686 DyldInfo.bind_size,
687 "dyld bind info"))
688 return Err;
689 if (DyldInfo.weak_bind_off > FileSize)
690 return malformedError("weak_bind_off field of " + Twine(CmdName) +
691 " command " + Twine(LoadCommandIndex) + " extends "
692 "past the end of the file");
693 BigSize = DyldInfo.weak_bind_off;
694 BigSize += DyldInfo.weak_bind_size;
695 if (BigSize > FileSize)
696 return malformedError("weak_bind_off field plus weak_bind_size field of " +
697 Twine(CmdName) + " command " +
698 Twine(LoadCommandIndex) + " extends past the end of "
699 "the file");
700 if (Error Err = checkOverlappingElement(Elements, DyldInfo.weak_bind_off,
701 DyldInfo.weak_bind_size,
702 "dyld weak bind info"))
703 return Err;
704 if (DyldInfo.lazy_bind_off > FileSize)
705 return malformedError("lazy_bind_off field of " + Twine(CmdName) +
706 " command " + Twine(LoadCommandIndex) + " extends "
707 "past the end of the file");
708 BigSize = DyldInfo.lazy_bind_off;
709 BigSize += DyldInfo.lazy_bind_size;
710 if (BigSize > FileSize)
711 return malformedError("lazy_bind_off field plus lazy_bind_size field of " +
712 Twine(CmdName) + " command " +
713 Twine(LoadCommandIndex) + " extends past the end of "
714 "the file");
715 if (Error Err = checkOverlappingElement(Elements, DyldInfo.lazy_bind_off,
716 DyldInfo.lazy_bind_size,
717 "dyld lazy bind info"))
718 return Err;
719 if (DyldInfo.export_off > FileSize)
720 return malformedError("export_off field of " + Twine(CmdName) +
721 " command " + Twine(LoadCommandIndex) + " extends "
722 "past the end of the file");
723 BigSize = DyldInfo.export_off;
724 BigSize += DyldInfo.export_size;
725 if (BigSize > FileSize)
726 return malformedError("export_off field plus export_size field of " +
727 Twine(CmdName) + " command " +
728 Twine(LoadCommandIndex) + " extends past the end of "
729 "the file");
730 if (Error Err = checkOverlappingElement(Elements, DyldInfo.export_off,
731 DyldInfo.export_size,
732 "dyld export info"))
733 return Err;
734 *LoadCmd = Load.Ptr;
735 return Error::success();
736}
737
740 uint32_t LoadCommandIndex, const char *CmdName) {
741 if (Load.C.cmdsize < sizeof(MachO::dylib_command))
742 return malformedError("load command " + Twine(LoadCommandIndex) + " " +
743 CmdName + " cmdsize too small");
744 auto CommandOrErr = getStructOrErr<MachO::dylib_command>(Obj, Load.Ptr);
745 if (!CommandOrErr)
746 return CommandOrErr.takeError();
747 MachO::dylib_command D = CommandOrErr.get();
748 if (D.dylib.name < sizeof(MachO::dylib_command))
749 return malformedError("load command " + Twine(LoadCommandIndex) + " " +
750 CmdName + " name.offset field too small, not past "
751 "the end of the dylib_command struct");
752 if (D.dylib.name >= D.cmdsize)
753 return malformedError("load command " + Twine(LoadCommandIndex) + " " +
754 CmdName + " name.offset field extends past the end "
755 "of the load command");
756 // Make sure there is a null between the starting offset of the name and
757 // the end of the load command.
758 uint32_t i;
759 const char *P = (const char *)Load.Ptr;
760 for (i = D.dylib.name; i < D.cmdsize; i++)
761 if (P[i] == '\0')
762 break;
763 if (i >= D.cmdsize)
764 return malformedError("load command " + Twine(LoadCommandIndex) + " " +
765 CmdName + " library name extends past the end of the "
766 "load command");
767 return Error::success();
768}
769
772 uint32_t LoadCommandIndex,
773 const char **LoadCmd) {
774 if (Error Err = checkDylibCommand(Obj, Load, LoadCommandIndex,
775 "LC_ID_DYLIB"))
776 return Err;
777 if (*LoadCmd != nullptr)
778 return malformedError("more than one LC_ID_DYLIB command");
779 if (Obj.getHeader().filetype != MachO::MH_DYLIB &&
780 Obj.getHeader().filetype != MachO::MH_DYLIB_STUB)
781 return malformedError("LC_ID_DYLIB load command in non-dynamic library "
782 "file type");
783 *LoadCmd = Load.Ptr;
784 return Error::success();
785}
786
789 uint32_t LoadCommandIndex, const char *CmdName) {
790 if (Load.C.cmdsize < sizeof(MachO::dylinker_command))
791 return malformedError("load command " + Twine(LoadCommandIndex) + " " +
792 CmdName + " cmdsize too small");
793 auto CommandOrErr = getStructOrErr<MachO::dylinker_command>(Obj, Load.Ptr);
794 if (!CommandOrErr)
795 return CommandOrErr.takeError();
796 MachO::dylinker_command D = CommandOrErr.get();
797 if (D.name < sizeof(MachO::dylinker_command))
798 return malformedError("load command " + Twine(LoadCommandIndex) + " " +
799 CmdName + " name.offset field too small, not past "
800 "the end of the dylinker_command struct");
801 if (D.name >= D.cmdsize)
802 return malformedError("load command " + Twine(LoadCommandIndex) + " " +
803 CmdName + " name.offset field extends past the end "
804 "of the load command");
805 // Make sure there is a null between the starting offset of the name and
806 // the end of the load command.
807 uint32_t i;
808 const char *P = (const char *)Load.Ptr;
809 for (i = D.name; i < D.cmdsize; i++)
810 if (P[i] == '\0')
811 break;
812 if (i >= D.cmdsize)
813 return malformedError("load command " + Twine(LoadCommandIndex) + " " +
814 CmdName + " dyld name extends past the end of the "
815 "load command");
816 return Error::success();
817}
818
821 uint32_t LoadCommandIndex,
822 const char **LoadCmd, const char *CmdName) {
823 if (Load.C.cmdsize != sizeof(MachO::version_min_command))
824 return malformedError("load command " + Twine(LoadCommandIndex) + " " +
825 CmdName + " has incorrect cmdsize");
826 if (*LoadCmd != nullptr)
827 return malformedError("more than one LC_VERSION_MIN_MACOSX, "
828 "LC_VERSION_MIN_IPHONEOS, LC_VERSION_MIN_TVOS or "
829 "LC_VERSION_MIN_WATCHOS command");
830 *LoadCmd = Load.Ptr;
831 return Error::success();
832}
833
836 uint32_t LoadCommandIndex,
837 std::list<MachOElement> &Elements) {
838 if (Load.C.cmdsize != sizeof(MachO::note_command))
839 return malformedError("load command " + Twine(LoadCommandIndex) +
840 " LC_NOTE has incorrect cmdsize");
841 auto NoteCmdOrErr = getStructOrErr<MachO::note_command>(Obj, Load.Ptr);
842 if (!NoteCmdOrErr)
843 return NoteCmdOrErr.takeError();
844 MachO::note_command Nt = NoteCmdOrErr.get();
845 uint64_t FileSize = Obj.getData().size();
846 if (Nt.offset > FileSize)
847 return malformedError("offset field of LC_NOTE command " +
848 Twine(LoadCommandIndex) + " extends "
849 "past the end of the file");
850 uint64_t BigSize = Nt.offset;
851 BigSize += Nt.size;
852 if (BigSize > FileSize)
853 return malformedError("size field plus offset field of LC_NOTE command " +
854 Twine(LoadCommandIndex) + " extends past the end of "
855 "the file");
856 if (Error Err = checkOverlappingElement(Elements, Nt.offset, Nt.size,
857 "LC_NOTE data"))
858 return Err;
859 return Error::success();
860}
861
862static Error
866 uint32_t LoadCommandIndex) {
867 auto BVCOrErr =
869 if (!BVCOrErr)
870 return BVCOrErr.takeError();
871 MachO::build_version_command BVC = BVCOrErr.get();
872 if (Load.C.cmdsize !=
874 BVC.ntools * sizeof(MachO::build_tool_version))
875 return malformedError("load command " + Twine(LoadCommandIndex) +
876 " LC_BUILD_VERSION_COMMAND has incorrect cmdsize");
877
878 auto Start = Load.Ptr + sizeof(MachO::build_version_command);
879 BuildTools.resize(BVC.ntools);
880 for (unsigned i = 0; i < BVC.ntools; ++i)
881 BuildTools[i] = Start + i * sizeof(MachO::build_tool_version);
882
883 return Error::success();
884}
885
886static Error
889 uint32_t LoadCommandIndex) {
890 // Check the command size is big enough for the command struct.
891 if (Load.C.cmdsize < sizeof(MachO::target_triple_command))
892 return malformedError("load command " + Twine(LoadCommandIndex) +
893 " LC_TARGET_TRIPLE cmdsize too small");
894
895 auto TTOrErr = getStructOrErr<MachO::target_triple_command>(Obj, Load.Ptr);
896 if (!TTOrErr)
897 return TTOrErr.takeError();
898 MachO::target_triple_command TT = TTOrErr.get();
899
900 // Check the triple offset is after the command struct.
901 if (TT.triple < sizeof(MachO::target_triple_command))
902 return malformedError(
903 "load command " + Twine(LoadCommandIndex) +
904 " LC_TARGET_TRIPLE triple.offset field too small, not past the end of "
905 "the target_triple_command struct");
906
907 // Check the triple offset is before the end of the command.
908 if (TT.triple >= TT.cmdsize)
909 return malformedError("load command " + Twine(LoadCommandIndex) +
910 " LC_TARGET_TRIPLE triple.offset field extends past "
911 "the end of the load command");
912
913 // Check there is a NUL between the starting offset of the triple and the end
914 // of the command.
915 uint32_t i;
916 const char *P = (const char *)Load.Ptr;
917 for (i = TT.triple; i < TT.cmdsize; i++)
918 if (P[i] == '\0')
919 break;
920 if (i >= TT.cmdsize)
921 return malformedError("load command " + Twine(LoadCommandIndex) +
922 " LC_TARGET_TRIPLE triple name extends past the end "
923 "of the load command");
924
925 return Error::success();
926}
927
930 uint32_t LoadCommandIndex) {
931 if (Load.C.cmdsize < sizeof(MachO::rpath_command))
932 return malformedError("load command " + Twine(LoadCommandIndex) +
933 " LC_RPATH cmdsize too small");
934 auto ROrErr = getStructOrErr<MachO::rpath_command>(Obj, Load.Ptr);
935 if (!ROrErr)
936 return ROrErr.takeError();
937 MachO::rpath_command R = ROrErr.get();
938 if (R.path < sizeof(MachO::rpath_command))
939 return malformedError("load command " + Twine(LoadCommandIndex) +
940 " LC_RPATH path.offset field too small, not past "
941 "the end of the rpath_command struct");
942 if (R.path >= R.cmdsize)
943 return malformedError("load command " + Twine(LoadCommandIndex) +
944 " LC_RPATH path.offset field extends past the end "
945 "of the load command");
946 // Make sure there is a null between the starting offset of the path and
947 // the end of the load command.
948 uint32_t i;
949 const char *P = (const char *)Load.Ptr;
950 for (i = R.path; i < R.cmdsize; i++)
951 if (P[i] == '\0')
952 break;
953 if (i >= R.cmdsize)
954 return malformedError("load command " + Twine(LoadCommandIndex) +
955 " LC_RPATH library name extends past the end of the "
956 "load command");
957 return Error::success();
958}
959
962 uint32_t LoadCommandIndex,
963 uint64_t cryptoff, uint64_t cryptsize,
964 const char **LoadCmd, const char *CmdName) {
965 if (*LoadCmd != nullptr)
966 return malformedError("more than one LC_ENCRYPTION_INFO and or "
967 "LC_ENCRYPTION_INFO_64 command");
968 uint64_t FileSize = Obj.getData().size();
969 if (cryptoff > FileSize)
970 return malformedError("cryptoff field of " + Twine(CmdName) +
971 " command " + Twine(LoadCommandIndex) + " extends "
972 "past the end of the file");
973 uint64_t BigSize = cryptoff;
974 BigSize += cryptsize;
975 if (BigSize > FileSize)
976 return malformedError("cryptoff field plus cryptsize field of " +
977 Twine(CmdName) + " command " +
978 Twine(LoadCommandIndex) + " extends past the end of "
979 "the file");
980 *LoadCmd = Load.Ptr;
981 return Error::success();
982}
983
986 uint32_t LoadCommandIndex) {
987 if (Load.C.cmdsize < sizeof(MachO::linker_option_command))
988 return malformedError("load command " + Twine(LoadCommandIndex) +
989 " LC_LINKER_OPTION cmdsize too small");
990 auto LinkOptionOrErr =
992 if (!LinkOptionOrErr)
993 return LinkOptionOrErr.takeError();
994 MachO::linker_option_command L = LinkOptionOrErr.get();
995 // Make sure the count of strings is correct.
996 const char *string = (const char *)Load.Ptr +
997 sizeof(struct MachO::linker_option_command);
998 uint32_t left = L.cmdsize - sizeof(struct MachO::linker_option_command);
999 uint32_t i = 0;
1000 while (left > 0) {
1001 while (*string == '\0' && left > 0) {
1002 string++;
1003 left--;
1004 }
1005 if (left > 0) {
1006 i++;
1007 uint32_t NullPos = StringRef(string, left).find('\0');
1008 if (0xffffffff == NullPos)
1009 return malformedError("load command " + Twine(LoadCommandIndex) +
1010 " LC_LINKER_OPTION string #" + Twine(i) +
1011 " is not NULL terminated");
1012 uint32_t len = std::min(NullPos, left) + 1;
1013 string += len;
1014 left -= len;
1015 }
1016 }
1017 if (L.count != i)
1018 return malformedError("load command " + Twine(LoadCommandIndex) +
1019 " LC_LINKER_OPTION string count " + Twine(L.count) +
1020 " does not match number of strings");
1021 return Error::success();
1022}
1023
1026 uint32_t LoadCommandIndex, const char *CmdName,
1027 size_t SizeOfCmd, const char *CmdStructName,
1028 uint32_t PathOffset, const char *PathFieldName) {
1029 if (PathOffset < SizeOfCmd)
1030 return malformedError("load command " + Twine(LoadCommandIndex) + " " +
1031 CmdName + " " + PathFieldName + ".offset field too "
1032 "small, not past the end of the " + CmdStructName);
1033 if (PathOffset >= Load.C.cmdsize)
1034 return malformedError("load command " + Twine(LoadCommandIndex) + " " +
1035 CmdName + " " + PathFieldName + ".offset field "
1036 "extends past the end of the load command");
1037 // Make sure there is a null between the starting offset of the path and
1038 // the end of the load command.
1039 uint32_t i;
1040 const char *P = (const char *)Load.Ptr;
1041 for (i = PathOffset; i < Load.C.cmdsize; i++)
1042 if (P[i] == '\0')
1043 break;
1044 if (i >= Load.C.cmdsize)
1045 return malformedError("load command " + Twine(LoadCommandIndex) + " " +
1046 CmdName + " " + PathFieldName + " name extends past "
1047 "the end of the load command");
1048 return Error::success();
1049}
1050
1053 uint32_t LoadCommandIndex,
1054 const char *CmdName) {
1055 if (Load.C.cmdsize < sizeof(MachO::thread_command))
1056 return malformedError("load command " + Twine(LoadCommandIndex) +
1057 CmdName + " cmdsize too small");
1058 auto ThreadCommandOrErr =
1060 if (!ThreadCommandOrErr)
1061 return ThreadCommandOrErr.takeError();
1062 MachO::thread_command T = ThreadCommandOrErr.get();
1063 const char *state = Load.Ptr + sizeof(MachO::thread_command);
1064 const char *end = Load.Ptr + T.cmdsize;
1065 uint32_t nflavor = 0;
1066 uint32_t cputype = getCPUType(Obj);
1067 while (state < end) {
1068 if(state + sizeof(uint32_t) > end)
1069 return malformedError("load command " + Twine(LoadCommandIndex) +
1070 "flavor in " + CmdName + " extends past end of "
1071 "command");
1072 uint32_t flavor;
1073 memcpy(&flavor, state, sizeof(uint32_t));
1074 if (Obj.isLittleEndian() != sys::IsLittleEndianHost)
1075 sys::swapByteOrder(flavor);
1076 state += sizeof(uint32_t);
1077
1078 if(state + sizeof(uint32_t) > end)
1079 return malformedError("load command " + Twine(LoadCommandIndex) +
1080 " count in " + CmdName + " extends past end of "
1081 "command");
1083 memcpy(&count, state, sizeof(uint32_t));
1084 if (Obj.isLittleEndian() != sys::IsLittleEndianHost)
1086 state += sizeof(uint32_t);
1087
1088 if (cputype == MachO::CPU_TYPE_I386) {
1089 if (flavor == MachO::x86_THREAD_STATE32) {
1091 return malformedError("load command " + Twine(LoadCommandIndex) +
1092 " count not x86_THREAD_STATE32_COUNT for "
1093 "flavor number " + Twine(nflavor) + " which is "
1094 "a x86_THREAD_STATE32 flavor in " + CmdName +
1095 " command");
1096 if (state + sizeof(MachO::x86_thread_state32_t) > end)
1097 return malformedError("load command " + Twine(LoadCommandIndex) +
1098 " x86_THREAD_STATE32 extends past end of "
1099 "command in " + CmdName + " command");
1100 state += sizeof(MachO::x86_thread_state32_t);
1101 } else {
1102 return malformedError("load command " + Twine(LoadCommandIndex) +
1103 " unknown flavor (" + Twine(flavor) + ") for "
1104 "flavor number " + Twine(nflavor) + " in " +
1105 CmdName + " command");
1106 }
1107 } else if (cputype == MachO::CPU_TYPE_X86_64) {
1108 if (flavor == MachO::x86_THREAD_STATE) {
1110 return malformedError("load command " + Twine(LoadCommandIndex) +
1111 " count not x86_THREAD_STATE_COUNT for "
1112 "flavor number " + Twine(nflavor) + " which is "
1113 "a x86_THREAD_STATE flavor in " + CmdName +
1114 " command");
1115 if (state + sizeof(MachO::x86_thread_state_t) > end)
1116 return malformedError("load command " + Twine(LoadCommandIndex) +
1117 " x86_THREAD_STATE extends past end of "
1118 "command in " + CmdName + " command");
1119 state += sizeof(MachO::x86_thread_state_t);
1120 } else if (flavor == MachO::x86_FLOAT_STATE) {
1122 return malformedError("load command " + Twine(LoadCommandIndex) +
1123 " count not x86_FLOAT_STATE_COUNT for "
1124 "flavor number " + Twine(nflavor) + " which is "
1125 "a x86_FLOAT_STATE flavor in " + CmdName +
1126 " command");
1127 if (state + sizeof(MachO::x86_float_state_t) > end)
1128 return malformedError("load command " + Twine(LoadCommandIndex) +
1129 " x86_FLOAT_STATE extends past end of "
1130 "command in " + CmdName + " command");
1131 state += sizeof(MachO::x86_float_state_t);
1132 } else if (flavor == MachO::x86_EXCEPTION_STATE) {
1134 return malformedError("load command " + Twine(LoadCommandIndex) +
1135 " count not x86_EXCEPTION_STATE_COUNT for "
1136 "flavor number " + Twine(nflavor) + " which is "
1137 "a x86_EXCEPTION_STATE flavor in " + CmdName +
1138 " command");
1139 if (state + sizeof(MachO::x86_exception_state_t) > end)
1140 return malformedError("load command " + Twine(LoadCommandIndex) +
1141 " x86_EXCEPTION_STATE extends past end of "
1142 "command in " + CmdName + " command");
1143 state += sizeof(MachO::x86_exception_state_t);
1144 } else if (flavor == MachO::x86_THREAD_STATE64) {
1146 return malformedError("load command " + Twine(LoadCommandIndex) +
1147 " count not x86_THREAD_STATE64_COUNT for "
1148 "flavor number " + Twine(nflavor) + " which is "
1149 "a x86_THREAD_STATE64 flavor in " + CmdName +
1150 " command");
1151 if (state + sizeof(MachO::x86_thread_state64_t) > end)
1152 return malformedError("load command " + Twine(LoadCommandIndex) +
1153 " x86_THREAD_STATE64 extends past end of "
1154 "command in " + CmdName + " command");
1155 state += sizeof(MachO::x86_thread_state64_t);
1156 } else if (flavor == MachO::x86_EXCEPTION_STATE64) {
1158 return malformedError("load command " + Twine(LoadCommandIndex) +
1159 " count not x86_EXCEPTION_STATE64_COUNT for "
1160 "flavor number " + Twine(nflavor) + " which is "
1161 "a x86_EXCEPTION_STATE64 flavor in " + CmdName +
1162 " command");
1163 if (state + sizeof(MachO::x86_exception_state64_t) > end)
1164 return malformedError("load command " + Twine(LoadCommandIndex) +
1165 " x86_EXCEPTION_STATE64 extends past end of "
1166 "command in " + CmdName + " command");
1167 state += sizeof(MachO::x86_exception_state64_t);
1168 } else {
1169 return malformedError("load command " + Twine(LoadCommandIndex) +
1170 " unknown flavor (" + Twine(flavor) + ") for "
1171 "flavor number " + Twine(nflavor) + " in " +
1172 CmdName + " command");
1173 }
1174 } else if (cputype == MachO::CPU_TYPE_ARM) {
1175 if (flavor == MachO::ARM_THREAD_STATE) {
1177 return malformedError("load command " + Twine(LoadCommandIndex) +
1178 " count not ARM_THREAD_STATE_COUNT for "
1179 "flavor number " + Twine(nflavor) + " which is "
1180 "a ARM_THREAD_STATE flavor in " + CmdName +
1181 " command");
1182 if (state + sizeof(MachO::arm_thread_state32_t) > end)
1183 return malformedError("load command " + Twine(LoadCommandIndex) +
1184 " ARM_THREAD_STATE extends past end of "
1185 "command in " + CmdName + " command");
1186 state += sizeof(MachO::arm_thread_state32_t);
1187 } else {
1188 return malformedError("load command " + Twine(LoadCommandIndex) +
1189 " unknown flavor (" + Twine(flavor) + ") for "
1190 "flavor number " + Twine(nflavor) + " in " +
1191 CmdName + " command");
1192 }
1193 } else if (cputype == MachO::CPU_TYPE_ARM64 ||
1194 cputype == MachO::CPU_TYPE_ARM64_32) {
1195 if (flavor == MachO::ARM_THREAD_STATE64) {
1197 return malformedError("load command " + Twine(LoadCommandIndex) +
1198 " count not ARM_THREAD_STATE64_COUNT for "
1199 "flavor number " + Twine(nflavor) + " which is "
1200 "a ARM_THREAD_STATE64 flavor in " + CmdName +
1201 " command");
1202 if (state + sizeof(MachO::arm_thread_state64_t) > end)
1203 return malformedError("load command " + Twine(LoadCommandIndex) +
1204 " ARM_THREAD_STATE64 extends past end of "
1205 "command in " + CmdName + " command");
1206 state += sizeof(MachO::arm_thread_state64_t);
1207 } else {
1208 return malformedError("load command " + Twine(LoadCommandIndex) +
1209 " unknown flavor (" + Twine(flavor) + ") for "
1210 "flavor number " + Twine(nflavor) + " in " +
1211 CmdName + " command");
1212 }
1213 } else if (cputype == MachO::CPU_TYPE_POWERPC) {
1214 if (flavor == MachO::PPC_THREAD_STATE) {
1216 return malformedError("load command " + Twine(LoadCommandIndex) +
1217 " count not PPC_THREAD_STATE_COUNT for "
1218 "flavor number " + Twine(nflavor) + " which is "
1219 "a PPC_THREAD_STATE flavor in " + CmdName +
1220 " command");
1221 if (state + sizeof(MachO::ppc_thread_state32_t) > end)
1222 return malformedError("load command " + Twine(LoadCommandIndex) +
1223 " PPC_THREAD_STATE extends past end of "
1224 "command in " + CmdName + " command");
1225 state += sizeof(MachO::ppc_thread_state32_t);
1226 } else {
1227 return malformedError("load command " + Twine(LoadCommandIndex) +
1228 " unknown flavor (" + Twine(flavor) + ") for "
1229 "flavor number " + Twine(nflavor) + " in " +
1230 CmdName + " command");
1231 }
1232 } else {
1233 return malformedError("unknown cputype (" + Twine(cputype) + ") load "
1234 "command " + Twine(LoadCommandIndex) + " for " +
1235 CmdName + " command can't be checked");
1236 }
1237 nflavor++;
1238 }
1239 return Error::success();
1240}
1241
1244 &Load,
1245 uint32_t LoadCommandIndex,
1246 const char **LoadCmd,
1247 std::list<MachOElement> &Elements) {
1248 if (Load.C.cmdsize != sizeof(MachO::twolevel_hints_command))
1249 return malformedError("load command " + Twine(LoadCommandIndex) +
1250 " LC_TWOLEVEL_HINTS has incorrect cmdsize");
1251 if (*LoadCmd != nullptr)
1252 return malformedError("more than one LC_TWOLEVEL_HINTS command");
1253 auto HintsOrErr = getStructOrErr<MachO::twolevel_hints_command>(Obj, Load.Ptr);
1254 if(!HintsOrErr)
1255 return HintsOrErr.takeError();
1256 MachO::twolevel_hints_command Hints = HintsOrErr.get();
1257 uint64_t FileSize = Obj.getData().size();
1258 if (Hints.offset > FileSize)
1259 return malformedError("offset field of LC_TWOLEVEL_HINTS command " +
1260 Twine(LoadCommandIndex) + " extends past the end of "
1261 "the file");
1262 uint64_t BigSize = Hints.nhints;
1263 BigSize *= sizeof(MachO::twolevel_hint);
1264 BigSize += Hints.offset;
1265 if (BigSize > FileSize)
1266 return malformedError("offset field plus nhints times sizeof(struct "
1267 "twolevel_hint) field of LC_TWOLEVEL_HINTS command " +
1268 Twine(LoadCommandIndex) + " extends past the end of "
1269 "the file");
1270 if (Error Err = checkOverlappingElement(Elements, Hints.offset, Hints.nhints *
1271 sizeof(MachO::twolevel_hint),
1272 "two level hints"))
1273 return Err;
1274 *LoadCmd = Load.Ptr;
1275 return Error::success();
1276}
1277
1278// Returns true if the libObject code does not support the load command and its
1279// contents. The cmd value it is treated as an unknown load command but with
1280// an error message that says the cmd value is obsolete.
1282 if (cmd == MachO::LC_SYMSEG ||
1283 cmd == MachO::LC_LOADFVMLIB ||
1284 cmd == MachO::LC_IDFVMLIB ||
1285 cmd == MachO::LC_IDENT ||
1286 cmd == MachO::LC_FVMFILE ||
1287 cmd == MachO::LC_PREPAGE ||
1288 cmd == MachO::LC_PREBOUND_DYLIB ||
1289 cmd == MachO::LC_TWOLEVEL_HINTS ||
1290 cmd == MachO::LC_PREBIND_CKSUM)
1291 return true;
1292 return false;
1293}
1294
1296MachOObjectFile::create(MemoryBufferRef Object, bool IsLittleEndian,
1297 bool Is64Bits, uint32_t UniversalCputype,
1298 uint32_t UniversalIndex,
1299 size_t MachOFilesetEntryOffset) {
1300 Error Err = Error::success();
1301 std::unique_ptr<MachOObjectFile> Obj(new MachOObjectFile(
1302 std::move(Object), IsLittleEndian, Is64Bits, Err, UniversalCputype,
1303 UniversalIndex, MachOFilesetEntryOffset));
1304 if (Err)
1305 return std::move(Err);
1306 return std::move(Obj);
1307}
1308
1309MachOObjectFile::MachOObjectFile(MemoryBufferRef Object, bool IsLittleEndian,
1310 bool Is64bits, Error &Err,
1311 uint32_t UniversalCputype,
1312 uint32_t UniversalIndex,
1313 size_t MachOFilesetEntryOffset)
1314 : ObjectFile(getMachOType(IsLittleEndian, Is64bits), Object),
1315 MachOFilesetEntryOffset(MachOFilesetEntryOffset) {
1316 ErrorAsOutParameter ErrAsOutParam(Err);
1317 uint64_t SizeOfHeaders;
1318 uint32_t cputype;
1319 if (is64Bit()) {
1320 parseHeader(*this, Header64, Err);
1321 SizeOfHeaders = sizeof(MachO::mach_header_64);
1322 cputype = Header64.cputype;
1323 } else {
1324 parseHeader(*this, Header, Err);
1325 SizeOfHeaders = sizeof(MachO::mach_header);
1326 cputype = Header.cputype;
1327 }
1328 if (Err)
1329 return;
1330 SizeOfHeaders += getHeader().sizeofcmds;
1331 if (getData().data() + SizeOfHeaders > getData().end()) {
1332 Err = malformedError("load commands extend past the end of the file");
1333 return;
1334 }
1335 if (UniversalCputype != 0 && cputype != UniversalCputype) {
1336 Err = malformedError("universal header architecture: " +
1337 Twine(UniversalIndex) + "'s cputype does not match "
1338 "object file's mach header");
1339 return;
1340 }
1341 std::list<MachOElement> Elements;
1342 Elements.push_back({0, SizeOfHeaders, "Mach-O headers"});
1343
1344 uint32_t LoadCommandCount = getHeader().ncmds;
1346 if (LoadCommandCount != 0) {
1347 if (auto LoadOrErr = getFirstLoadCommandInfo(*this))
1348 Load = *LoadOrErr;
1349 else {
1350 Err = LoadOrErr.takeError();
1351 return;
1352 }
1353 }
1354
1355 const char *DyldIdLoadCmd = nullptr;
1356 const char *SplitInfoLoadCmd = nullptr;
1357 const char *CodeSignDrsLoadCmd = nullptr;
1358 const char *CodeSignLoadCmd = nullptr;
1359 const char *VersLoadCmd = nullptr;
1360 const char *SourceLoadCmd = nullptr;
1361 const char *EntryPointLoadCmd = nullptr;
1362 const char *EncryptLoadCmd = nullptr;
1363 const char *RoutinesLoadCmd = nullptr;
1364 const char *UnixThreadLoadCmd = nullptr;
1365 const char *TwoLevelHintsLoadCmd = nullptr;
1366 for (unsigned I = 0; I < LoadCommandCount; ++I) {
1367 if (is64Bit()) {
1368 if (Load.C.cmdsize % 8 != 0) {
1369 // We have a hack here to allow 64-bit Mach-O core files to have
1370 // LC_THREAD commands that are only a multiple of 4 and not 8 to be
1371 // allowed since the macOS kernel produces them.
1372 if (getHeader().filetype != MachO::MH_CORE ||
1373 Load.C.cmd != MachO::LC_THREAD || Load.C.cmdsize % 4) {
1374 Err = malformedError("load command " + Twine(I) + " cmdsize not a "
1375 "multiple of 8");
1376 return;
1377 }
1378 }
1379 } else {
1380 if (Load.C.cmdsize % 4 != 0) {
1381 Err = malformedError("load command " + Twine(I) + " cmdsize not a "
1382 "multiple of 4");
1383 return;
1384 }
1385 }
1386 LoadCommands.push_back(Load);
1387 if (Load.C.cmd == MachO::LC_SYMTAB) {
1388 if ((Err = checkSymtabCommand(*this, Load, I, &SymtabLoadCmd, Elements)))
1389 return;
1390 } else if (Load.C.cmd == MachO::LC_DYSYMTAB) {
1391 if ((Err = checkDysymtabCommand(*this, Load, I, &DysymtabLoadCmd,
1392 Elements)))
1393 return;
1394 } else if (Load.C.cmd == MachO::LC_DATA_IN_CODE) {
1395 if ((Err = checkLinkeditDataCommand(*this, Load, I, &DataInCodeLoadCmd,
1396 "LC_DATA_IN_CODE", Elements,
1397 "data in code info")))
1398 return;
1399 } else if (Load.C.cmd == MachO::LC_LINKER_OPTIMIZATION_HINT) {
1400 if ((Err = checkLinkeditDataCommand(*this, Load, I, &LinkOptHintsLoadCmd,
1401 "LC_LINKER_OPTIMIZATION_HINT",
1402 Elements, "linker optimization "
1403 "hints")))
1404 return;
1405 } else if (Load.C.cmd == MachO::LC_FUNCTION_STARTS) {
1406 if ((Err = checkLinkeditDataCommand(*this, Load, I, &FuncStartsLoadCmd,
1407 "LC_FUNCTION_STARTS", Elements,
1408 "function starts data")))
1409 return;
1410 } else if (Load.C.cmd == MachO::LC_SEGMENT_SPLIT_INFO) {
1411 if ((Err = checkLinkeditDataCommand(*this, Load, I, &SplitInfoLoadCmd,
1412 "LC_SEGMENT_SPLIT_INFO", Elements,
1413 "split info data")))
1414 return;
1415 } else if (Load.C.cmd == MachO::LC_DYLIB_CODE_SIGN_DRS) {
1416 if ((Err = checkLinkeditDataCommand(*this, Load, I, &CodeSignDrsLoadCmd,
1417 "LC_DYLIB_CODE_SIGN_DRS", Elements,
1418 "code signing RDs data")))
1419 return;
1420 } else if (Load.C.cmd == MachO::LC_CODE_SIGNATURE) {
1421 if ((Err = checkLinkeditDataCommand(*this, Load, I, &CodeSignLoadCmd,
1422 "LC_CODE_SIGNATURE", Elements,
1423 "code signature data")))
1424 return;
1425 } else if (Load.C.cmd == MachO::LC_DYLD_INFO) {
1426 if ((Err = checkDyldInfoCommand(*this, Load, I, &DyldInfoLoadCmd,
1427 "LC_DYLD_INFO", Elements)))
1428 return;
1429 } else if (Load.C.cmd == MachO::LC_DYLD_INFO_ONLY) {
1430 if ((Err = checkDyldInfoCommand(*this, Load, I, &DyldInfoLoadCmd,
1431 "LC_DYLD_INFO_ONLY", Elements)))
1432 return;
1433 } else if (Load.C.cmd == MachO::LC_DYLD_CHAINED_FIXUPS) {
1434 if ((Err = checkLinkeditDataCommand(
1435 *this, Load, I, &DyldChainedFixupsLoadCmd,
1436 "LC_DYLD_CHAINED_FIXUPS", Elements, "chained fixups")))
1437 return;
1438 } else if (Load.C.cmd == MachO::LC_DYLD_EXPORTS_TRIE) {
1439 if ((Err = checkLinkeditDataCommand(
1440 *this, Load, I, &DyldExportsTrieLoadCmd, "LC_DYLD_EXPORTS_TRIE",
1441 Elements, "exports trie")))
1442 return;
1443 } else if (Load.C.cmd == MachO::LC_UUID) {
1444 if (Load.C.cmdsize != sizeof(MachO::uuid_command)) {
1445 Err = malformedError("LC_UUID command " + Twine(I) + " has incorrect "
1446 "cmdsize");
1447 return;
1448 }
1449 if (UuidLoadCmd) {
1450 Err = malformedError("more than one LC_UUID command");
1451 return;
1452 }
1453 UuidLoadCmd = Load.Ptr;
1454 } else if (Load.C.cmd == MachO::LC_SEGMENT_64) {
1455 if ((Err = parseSegmentLoadCommand<MachO::segment_command_64,
1456 MachO::section_64>(
1457 *this, Load, Sections, HasPageZeroSegment, I,
1458 "LC_SEGMENT_64", SizeOfHeaders, Elements)))
1459 return;
1460 } else if (Load.C.cmd == MachO::LC_SEGMENT) {
1461 if ((Err = parseSegmentLoadCommand<MachO::segment_command,
1462 MachO::section>(
1463 *this, Load, Sections, HasPageZeroSegment, I,
1464 "LC_SEGMENT", SizeOfHeaders, Elements)))
1465 return;
1466 } else if (Load.C.cmd == MachO::LC_ID_DYLIB) {
1467 if ((Err = checkDylibIdCommand(*this, Load, I, &DyldIdLoadCmd)))
1468 return;
1469 } else if (Load.C.cmd == MachO::LC_LOAD_DYLIB) {
1470 if ((Err = checkDylibCommand(*this, Load, I, "LC_LOAD_DYLIB")))
1471 return;
1472 Libraries.push_back(Load.Ptr);
1473 } else if (Load.C.cmd == MachO::LC_LOAD_WEAK_DYLIB) {
1474 if ((Err = checkDylibCommand(*this, Load, I, "LC_LOAD_WEAK_DYLIB")))
1475 return;
1476 Libraries.push_back(Load.Ptr);
1477 } else if (Load.C.cmd == MachO::LC_LAZY_LOAD_DYLIB) {
1478 if ((Err = checkDylibCommand(*this, Load, I, "LC_LAZY_LOAD_DYLIB")))
1479 return;
1480 Libraries.push_back(Load.Ptr);
1481 } else if (Load.C.cmd == MachO::LC_REEXPORT_DYLIB) {
1482 if ((Err = checkDylibCommand(*this, Load, I, "LC_REEXPORT_DYLIB")))
1483 return;
1484 Libraries.push_back(Load.Ptr);
1485 } else if (Load.C.cmd == MachO::LC_LOAD_UPWARD_DYLIB) {
1486 if ((Err = checkDylibCommand(*this, Load, I, "LC_LOAD_UPWARD_DYLIB")))
1487 return;
1488 Libraries.push_back(Load.Ptr);
1489 } else if (Load.C.cmd == MachO::LC_ID_DYLINKER) {
1490 if ((Err = checkDyldCommand(*this, Load, I, "LC_ID_DYLINKER")))
1491 return;
1492 } else if (Load.C.cmd == MachO::LC_LOAD_DYLINKER) {
1493 if ((Err = checkDyldCommand(*this, Load, I, "LC_LOAD_DYLINKER")))
1494 return;
1495 } else if (Load.C.cmd == MachO::LC_DYLD_ENVIRONMENT) {
1496 if ((Err = checkDyldCommand(*this, Load, I, "LC_DYLD_ENVIRONMENT")))
1497 return;
1498 } else if (Load.C.cmd == MachO::LC_VERSION_MIN_MACOSX) {
1499 if ((Err = checkVersCommand(*this, Load, I, &VersLoadCmd,
1500 "LC_VERSION_MIN_MACOSX")))
1501 return;
1502 } else if (Load.C.cmd == MachO::LC_VERSION_MIN_IPHONEOS) {
1503 if ((Err = checkVersCommand(*this, Load, I, &VersLoadCmd,
1504 "LC_VERSION_MIN_IPHONEOS")))
1505 return;
1506 } else if (Load.C.cmd == MachO::LC_VERSION_MIN_TVOS) {
1507 if ((Err = checkVersCommand(*this, Load, I, &VersLoadCmd,
1508 "LC_VERSION_MIN_TVOS")))
1509 return;
1510 } else if (Load.C.cmd == MachO::LC_VERSION_MIN_WATCHOS) {
1511 if ((Err = checkVersCommand(*this, Load, I, &VersLoadCmd,
1512 "LC_VERSION_MIN_WATCHOS")))
1513 return;
1514 } else if (Load.C.cmd == MachO::LC_NOTE) {
1515 if ((Err = checkNoteCommand(*this, Load, I, Elements)))
1516 return;
1517 } else if (Load.C.cmd == MachO::LC_BUILD_VERSION) {
1518 if ((Err = parseBuildVersionCommand(*this, Load, BuildTools, I)))
1519 return;
1520 } else if (Load.C.cmd == MachO::LC_TARGET_TRIPLE) {
1521 if ((Err = checkTargetTripleCommand(*this, Load, I)))
1522 return;
1523 } else if (Load.C.cmd == MachO::LC_RPATH) {
1524 if ((Err = checkRpathCommand(*this, Load, I)))
1525 return;
1526 } else if (Load.C.cmd == MachO::LC_SOURCE_VERSION) {
1527 if (Load.C.cmdsize != sizeof(MachO::source_version_command)) {
1528 Err = malformedError("LC_SOURCE_VERSION command " + Twine(I) +
1529 " has incorrect cmdsize");
1530 return;
1531 }
1532 if (SourceLoadCmd) {
1533 Err = malformedError("more than one LC_SOURCE_VERSION command");
1534 return;
1535 }
1536 SourceLoadCmd = Load.Ptr;
1537 } else if (Load.C.cmd == MachO::LC_MAIN) {
1538 if (Load.C.cmdsize != sizeof(MachO::entry_point_command)) {
1539 Err = malformedError("LC_MAIN command " + Twine(I) +
1540 " has incorrect cmdsize");
1541 return;
1542 }
1543 if (EntryPointLoadCmd) {
1544 Err = malformedError("more than one LC_MAIN command");
1545 return;
1546 }
1547 EntryPointLoadCmd = Load.Ptr;
1548 } else if (Load.C.cmd == MachO::LC_ENCRYPTION_INFO) {
1549 if (Load.C.cmdsize != sizeof(MachO::encryption_info_command)) {
1550 Err = malformedError("LC_ENCRYPTION_INFO command " + Twine(I) +
1551 " has incorrect cmdsize");
1552 return;
1553 }
1554 MachO::encryption_info_command E =
1556 if ((Err = checkEncryptCommand(*this, Load, I, E.cryptoff, E.cryptsize,
1557 &EncryptLoadCmd, "LC_ENCRYPTION_INFO")))
1558 return;
1559 } else if (Load.C.cmd == MachO::LC_ENCRYPTION_INFO_64) {
1560 if (Load.C.cmdsize != sizeof(MachO::encryption_info_command_64)) {
1561 Err = malformedError("LC_ENCRYPTION_INFO_64 command " + Twine(I) +
1562 " has incorrect cmdsize");
1563 return;
1564 }
1565 MachO::encryption_info_command_64 E =
1567 if ((Err = checkEncryptCommand(*this, Load, I, E.cryptoff, E.cryptsize,
1568 &EncryptLoadCmd, "LC_ENCRYPTION_INFO_64")))
1569 return;
1570 } else if (Load.C.cmd == MachO::LC_LINKER_OPTION) {
1571 if ((Err = checkLinkerOptCommand(*this, Load, I)))
1572 return;
1573 } else if (Load.C.cmd == MachO::LC_SUB_FRAMEWORK) {
1574 if (Load.C.cmdsize < sizeof(MachO::sub_framework_command)) {
1575 Err = malformedError("load command " + Twine(I) +
1576 " LC_SUB_FRAMEWORK cmdsize too small");
1577 return;
1578 }
1579 MachO::sub_framework_command S =
1581 if ((Err = checkSubCommand(*this, Load, I, "LC_SUB_FRAMEWORK",
1582 sizeof(MachO::sub_framework_command),
1583 "sub_framework_command", S.umbrella,
1584 "umbrella")))
1585 return;
1586 } else if (Load.C.cmd == MachO::LC_SUB_UMBRELLA) {
1587 if (Load.C.cmdsize < sizeof(MachO::sub_umbrella_command)) {
1588 Err = malformedError("load command " + Twine(I) +
1589 " LC_SUB_UMBRELLA cmdsize too small");
1590 return;
1591 }
1592 MachO::sub_umbrella_command S =
1594 if ((Err = checkSubCommand(*this, Load, I, "LC_SUB_UMBRELLA",
1595 sizeof(MachO::sub_umbrella_command),
1596 "sub_umbrella_command", S.sub_umbrella,
1597 "sub_umbrella")))
1598 return;
1599 } else if (Load.C.cmd == MachO::LC_SUB_LIBRARY) {
1600 if (Load.C.cmdsize < sizeof(MachO::sub_library_command)) {
1601 Err = malformedError("load command " + Twine(I) +
1602 " LC_SUB_LIBRARY cmdsize too small");
1603 return;
1604 }
1605 MachO::sub_library_command S =
1607 if ((Err = checkSubCommand(*this, Load, I, "LC_SUB_LIBRARY",
1608 sizeof(MachO::sub_library_command),
1609 "sub_library_command", S.sub_library,
1610 "sub_library")))
1611 return;
1612 } else if (Load.C.cmd == MachO::LC_SUB_CLIENT) {
1613 if (Load.C.cmdsize < sizeof(MachO::sub_client_command)) {
1614 Err = malformedError("load command " + Twine(I) +
1615 " LC_SUB_CLIENT cmdsize too small");
1616 return;
1617 }
1618 MachO::sub_client_command S =
1620 if ((Err = checkSubCommand(*this, Load, I, "LC_SUB_CLIENT",
1621 sizeof(MachO::sub_client_command),
1622 "sub_client_command", S.client, "client")))
1623 return;
1624 } else if (Load.C.cmd == MachO::LC_ROUTINES) {
1625 if (Load.C.cmdsize != sizeof(MachO::routines_command)) {
1626 Err = malformedError("LC_ROUTINES command " + Twine(I) +
1627 " has incorrect cmdsize");
1628 return;
1629 }
1630 if (RoutinesLoadCmd) {
1631 Err = malformedError("more than one LC_ROUTINES and or LC_ROUTINES_64 "
1632 "command");
1633 return;
1634 }
1635 RoutinesLoadCmd = Load.Ptr;
1636 } else if (Load.C.cmd == MachO::LC_ROUTINES_64) {
1637 if (Load.C.cmdsize != sizeof(MachO::routines_command_64)) {
1638 Err = malformedError("LC_ROUTINES_64 command " + Twine(I) +
1639 " has incorrect cmdsize");
1640 return;
1641 }
1642 if (RoutinesLoadCmd) {
1643 Err = malformedError("more than one LC_ROUTINES_64 and or LC_ROUTINES "
1644 "command");
1645 return;
1646 }
1647 RoutinesLoadCmd = Load.Ptr;
1648 } else if (Load.C.cmd == MachO::LC_UNIXTHREAD) {
1649 if ((Err = checkThreadCommand(*this, Load, I, "LC_UNIXTHREAD")))
1650 return;
1651 if (UnixThreadLoadCmd) {
1652 Err = malformedError("more than one LC_UNIXTHREAD command");
1653 return;
1654 }
1655 UnixThreadLoadCmd = Load.Ptr;
1656 } else if (Load.C.cmd == MachO::LC_THREAD) {
1657 if ((Err = checkThreadCommand(*this, Load, I, "LC_THREAD")))
1658 return;
1659 // Note: LC_TWOLEVEL_HINTS is really obsolete and is not supported.
1660 } else if (Load.C.cmd == MachO::LC_TWOLEVEL_HINTS) {
1661 if ((Err = checkTwoLevelHintsCommand(*this, Load, I,
1662 &TwoLevelHintsLoadCmd, Elements)))
1663 return;
1664 } else if (Load.C.cmd == MachO::LC_IDENT) {
1665 // Note: LC_IDENT is ignored.
1666 continue;
1667 } else if (isLoadCommandObsolete(Load.C.cmd)) {
1668 Err = malformedError("load command " + Twine(I) + " for cmd value of: " +
1669 Twine(Load.C.cmd) + " is obsolete and not "
1670 "supported");
1671 return;
1672 }
1673 // TODO: generate a error for unknown load commands by default. But still
1674 // need work out an approach to allow or not allow unknown values like this
1675 // as an option for some uses like lldb.
1676 if (I < LoadCommandCount - 1) {
1677 if (auto LoadOrErr = getNextLoadCommandInfo(*this, I, Load))
1678 Load = *LoadOrErr;
1679 else {
1680 Err = LoadOrErr.takeError();
1681 return;
1682 }
1683 }
1684 }
1685 if (!SymtabLoadCmd) {
1686 if (DysymtabLoadCmd) {
1687 Err = malformedError("contains LC_DYSYMTAB load command without a "
1688 "LC_SYMTAB load command");
1689 return;
1690 }
1691 } else if (DysymtabLoadCmd) {
1692 MachO::symtab_command Symtab =
1693 getStruct<MachO::symtab_command>(*this, SymtabLoadCmd);
1694 MachO::dysymtab_command Dysymtab =
1695 getStruct<MachO::dysymtab_command>(*this, DysymtabLoadCmd);
1696 if (Dysymtab.nlocalsym != 0 && Dysymtab.ilocalsym > Symtab.nsyms) {
1697 Err = malformedError("ilocalsym in LC_DYSYMTAB load command "
1698 "extends past the end of the symbol table");
1699 return;
1700 }
1701 uint64_t BigSize = Dysymtab.ilocalsym;
1702 BigSize += Dysymtab.nlocalsym;
1703 if (Dysymtab.nlocalsym != 0 && BigSize > Symtab.nsyms) {
1704 Err = malformedError("ilocalsym plus nlocalsym in LC_DYSYMTAB load "
1705 "command extends past the end of the symbol table");
1706 return;
1707 }
1708 if (Dysymtab.nextdefsym != 0 && Dysymtab.iextdefsym > Symtab.nsyms) {
1709 Err = malformedError("iextdefsym in LC_DYSYMTAB load command "
1710 "extends past the end of the symbol table");
1711 return;
1712 }
1713 BigSize = Dysymtab.iextdefsym;
1714 BigSize += Dysymtab.nextdefsym;
1715 if (Dysymtab.nextdefsym != 0 && BigSize > Symtab.nsyms) {
1716 Err = malformedError("iextdefsym plus nextdefsym in LC_DYSYMTAB "
1717 "load command extends past the end of the symbol "
1718 "table");
1719 return;
1720 }
1721 if (Dysymtab.nundefsym != 0 && Dysymtab.iundefsym > Symtab.nsyms) {
1722 Err = malformedError("iundefsym in LC_DYSYMTAB load command "
1723 "extends past the end of the symbol table");
1724 return;
1725 }
1726 BigSize = Dysymtab.iundefsym;
1727 BigSize += Dysymtab.nundefsym;
1728 if (Dysymtab.nundefsym != 0 && BigSize > Symtab.nsyms) {
1729 Err = malformedError("iundefsym plus nundefsym in LC_DYSYMTAB load "
1730 " command extends past the end of the symbol table");
1731 return;
1732 }
1733 }
1734 if ((getHeader().filetype == MachO::MH_DYLIB ||
1735 getHeader().filetype == MachO::MH_DYLIB_STUB) &&
1736 DyldIdLoadCmd == nullptr) {
1737 Err = malformedError("no LC_ID_DYLIB load command in dynamic library "
1738 "filetype");
1739 return;
1740 }
1741 assert(LoadCommands.size() == LoadCommandCount);
1742
1743 Err = Error::success();
1744}
1745
1747 uint32_t Flags = 0;
1748 if (is64Bit()) {
1750 Flags = H_64.flags;
1751 } else {
1753 Flags = H.flags;
1754 }
1755 uint8_t NType = 0;
1756 uint8_t NSect = 0;
1757 uint16_t NDesc = 0;
1758 uint32_t NStrx = 0;
1759 uint64_t NValue = 0;
1760 uint32_t SymbolIndex = 0;
1762 for (const SymbolRef &Symbol : symbols()) {
1763 DataRefImpl SymDRI = Symbol.getRawDataRefImpl();
1764 if (is64Bit()) {
1765 MachO::nlist_64 STE_64 = getSymbol64TableEntry(SymDRI);
1766 NType = STE_64.n_type;
1767 NSect = STE_64.n_sect;
1768 NDesc = STE_64.n_desc;
1769 NStrx = STE_64.n_strx;
1770 NValue = STE_64.n_value;
1771 } else {
1772 MachO::nlist STE = getSymbolTableEntry(SymDRI);
1773 NType = STE.n_type;
1774 NSect = STE.n_sect;
1775 NDesc = STE.n_desc;
1776 NStrx = STE.n_strx;
1777 NValue = STE.n_value;
1778 }
1779 if ((NType & MachO::N_STAB) == 0) {
1780 if ((NType & MachO::N_TYPE) == MachO::N_SECT) {
1781 if (NSect == 0 || NSect > Sections.size())
1782 return malformedError("bad section index: " + Twine((int)NSect) +
1783 " for symbol at index " + Twine(SymbolIndex));
1784 }
1785 if ((NType & MachO::N_TYPE) == MachO::N_INDR) {
1786 if (NValue >= S.strsize)
1787 return malformedError("bad n_value: " + Twine((int)NValue) + " past "
1788 "the end of string table, for N_INDR symbol at "
1789 "index " + Twine(SymbolIndex));
1790 }
1791 if ((Flags & MachO::MH_TWOLEVEL) == MachO::MH_TWOLEVEL &&
1792 (((NType & MachO::N_TYPE) == MachO::N_UNDF && NValue == 0) ||
1793 (NType & MachO::N_TYPE) == MachO::N_PBUD)) {
1794 uint32_t LibraryOrdinal = MachO::GET_LIBRARY_ORDINAL(NDesc);
1795 if (LibraryOrdinal != 0 &&
1796 LibraryOrdinal != MachO::EXECUTABLE_ORDINAL &&
1797 LibraryOrdinal != MachO::DYNAMIC_LOOKUP_ORDINAL &&
1798 LibraryOrdinal - 1 >= Libraries.size() ) {
1799 return malformedError("bad library ordinal: " + Twine(LibraryOrdinal) +
1800 " for symbol at index " + Twine(SymbolIndex));
1801 }
1802 }
1803 }
1804 if (NStrx >= S.strsize)
1805 return malformedError("bad string table index: " + Twine((int)NStrx) +
1806 " past the end of string table, for symbol at "
1807 "index " + Twine(SymbolIndex));
1808 SymbolIndex++;
1809 }
1810 return Error::success();
1811}
1812
1814 unsigned SymbolTableEntrySize = is64Bit() ?
1815 sizeof(MachO::nlist_64) :
1816 sizeof(MachO::nlist);
1817 Symb.p += SymbolTableEntrySize;
1818}
1819
1822 MachO::nlist_base Entry = getSymbolTableEntryBase(*this, Symb);
1823 if (Entry.n_strx == 0)
1824 // A n_strx value of 0 indicates that no name is associated with a
1825 // particular symbol table entry.
1826 return StringRef();
1827 const char *Start = &StringTable.data()[Entry.n_strx];
1828 if (Start < getData().begin() || Start >= getData().end()) {
1829 return malformedError("bad string index: " + Twine(Entry.n_strx) +
1830 " for symbol at index " + Twine(getSymbolIndex(Symb)));
1831 }
1832 return StringRef(Start);
1833}
1834
1836 DataRefImpl DRI = Sec.getRawDataRefImpl();
1837 uint32_t Flags = getSectionFlags(*this, DRI);
1838 return Flags & MachO::SECTION_TYPE;
1839}
1840
1842 if (is64Bit()) {
1844 return Entry.n_value;
1845 }
1846 MachO::nlist Entry = getSymbolTableEntry(Sym);
1847 return Entry.n_value;
1848}
1849
1850// getIndirectName() returns the name of the alias'ed symbol who's string table
1851// index is in the n_value field.
1853 StringRef &Res) const {
1855 MachO::nlist_base Entry = getSymbolTableEntryBase(*this, Symb);
1856 if ((Entry.n_type & MachO::N_TYPE) != MachO::N_INDR)
1858 uint64_t NValue = getNValue(Symb);
1859 if (NValue >= StringTable.size())
1861 const char *Start = &StringTable.data()[NValue];
1862 Res = StringRef(Start);
1863 return std::error_code();
1864}
1865
1866uint64_t MachOObjectFile::getSymbolValueImpl(DataRefImpl Sym) const {
1867 return getNValue(Sym);
1868}
1869
1873
1875 uint32_t Flags = cantFail(getSymbolFlags(DRI));
1876 if (Flags & SymbolRef::SF_Common) {
1877 MachO::nlist_base Entry = getSymbolTableEntryBase(*this, DRI);
1878 return 1 << MachO::GET_COMM_ALIGN(Entry.n_desc);
1879 }
1880 return 0;
1881}
1882
1886
1889 MachO::nlist_base Entry = getSymbolTableEntryBase(*this, Symb);
1890 uint8_t n_type = Entry.n_type;
1891
1892 // If this is a STAB debugging symbol, we can do nothing more.
1893 if (n_type & MachO::N_STAB)
1894 return SymbolRef::ST_Debug;
1895
1896 switch (n_type & MachO::N_TYPE) {
1897 case MachO::N_UNDF :
1898 return SymbolRef::ST_Unknown;
1899 case MachO::N_SECT :
1901 if (!SecOrError)
1902 return SecOrError.takeError();
1903 section_iterator Sec = *SecOrError;
1904 if (Sec == section_end())
1905 return SymbolRef::ST_Other;
1906 if (Sec->isData() || Sec->isBSS())
1907 return SymbolRef::ST_Data;
1909 }
1910 return SymbolRef::ST_Other;
1911}
1912
1914 MachO::nlist_base Entry = getSymbolTableEntryBase(*this, DRI);
1915
1916 uint8_t MachOType = Entry.n_type;
1917 uint16_t MachOFlags = Entry.n_desc;
1918
1920
1921 if ((MachOType & MachO::N_TYPE) == MachO::N_INDR)
1922 Result |= SymbolRef::SF_Indirect;
1923
1924 if (MachOType & MachO::N_STAB)
1926
1927 if (MachOType & MachO::N_EXT) {
1928 Result |= SymbolRef::SF_Global;
1929 if ((MachOType & MachO::N_TYPE) == MachO::N_UNDF) {
1930 if (getNValue(DRI))
1931 Result |= SymbolRef::SF_Common;
1932 else
1933 Result |= SymbolRef::SF_Undefined;
1934 }
1935
1936 if (MachOType & MachO::N_PEXT)
1937 Result |= SymbolRef::SF_Hidden;
1938 else
1939 Result |= SymbolRef::SF_Exported;
1940
1941 } else if (MachOType & MachO::N_PEXT)
1942 Result |= SymbolRef::SF_Hidden;
1943
1944 if (MachOFlags & (MachO::N_WEAK_REF | MachO::N_WEAK_DEF))
1945 Result |= SymbolRef::SF_Weak;
1946
1947 if (MachOFlags & (MachO::N_ARM_THUMB_DEF))
1948 Result |= SymbolRef::SF_Thumb;
1949
1950 if ((MachOType & MachO::N_TYPE) == MachO::N_ABS)
1951 Result |= SymbolRef::SF_Absolute;
1952
1953 return Result;
1954}
1955
1958 MachO::nlist_base Entry = getSymbolTableEntryBase(*this, Symb);
1959 uint8_t index = Entry.n_sect;
1960
1961 if (index == 0)
1962 return section_end();
1963 DataRefImpl DRI;
1964 DRI.d.a = index - 1;
1965 if (DRI.d.a >= Sections.size()){
1966 return malformedError("bad section index: " + Twine((int)index) +
1967 " for symbol at index " + Twine(getSymbolIndex(Symb)));
1968 }
1969 return section_iterator(SectionRef(DRI, this));
1970}
1971
1973 MachO::nlist_base Entry =
1975 return Entry.n_sect - 1;
1976}
1977
1979 Sec.d.a++;
1980}
1981
1986
1988 if (is64Bit())
1989 return getSection64(Sec).addr;
1990 return getSection(Sec).addr;
1991}
1992
1994 return Sec.d.a;
1995}
1996
1998 // In the case if a malformed Mach-O file where the section offset is past
1999 // the end of the file or some part of the section size is past the end of
2000 // the file return a size of zero or a size that covers the rest of the file
2001 // but does not extend past the end of the file.
2002 uint32_t SectOffset, SectType;
2003 uint64_t SectSize;
2004
2005 if (is64Bit()) {
2006 MachO::section_64 Sect = getSection64(Sec);
2007 SectOffset = Sect.offset;
2008 SectSize = Sect.size;
2009 SectType = Sect.flags & MachO::SECTION_TYPE;
2010 } else {
2011 MachO::section Sect = getSection(Sec);
2012 SectOffset = Sect.offset;
2013 SectSize = Sect.size;
2014 SectType = Sect.flags & MachO::SECTION_TYPE;
2015 }
2016 if (SectType == MachO::S_ZEROFILL || SectType == MachO::S_GB_ZEROFILL)
2017 return SectSize;
2018 uint64_t FileSize = getData().size();
2019 if (SectOffset > FileSize)
2020 return 0;
2021 if (FileSize - SectOffset < SectSize)
2022 return FileSize - SectOffset;
2023 return SectSize;
2024}
2025
2030
2034 uint64_t Size;
2035
2036 if (is64Bit()) {
2037 MachO::section_64 Sect = getSection64(Sec);
2038 Offset = Sect.offset;
2039 Size = Sect.size;
2040 // Check for large mach-o files where the section contents might exceed
2041 // 4GB. MachO::section_64 objects only have 32 bit file offsets to the
2042 // section contents and can overflow in dSYM files. We can track this and
2043 // adjust the section offset to be 64 bit safe. If sections overflow then
2044 // section ordering is enforced. If sections are not ordered, then an error
2045 // will be returned stopping invalid section data from being returned.
2046 uint64_t PrevTrueOffset = 0;
2047 uint64_t SectOffsetAdjust = 0;
2048 for (uint32_t SectIdx = 0; SectIdx < Sec.d.a; ++SectIdx) {
2049 MachO::section_64 CurrSect =
2050 getStruct<MachO::section_64>(*this, Sections[SectIdx]);
2051 uint64_t CurrTrueOffset = (uint64_t)CurrSect.offset + SectOffsetAdjust;
2052 if ((SectOffsetAdjust > 0) && (PrevTrueOffset > CurrTrueOffset))
2053 return malformedError("section data exceeds 4GB and section file "
2054 "offsets are not ordered");
2055 const uint64_t EndSectFileOffset =
2056 (uint64_t)CurrSect.offset + CurrSect.size;
2057 if (EndSectFileOffset > UINT32_MAX)
2058 SectOffsetAdjust += EndSectFileOffset & 0xFFFFFFFF00000000ull;
2059 PrevTrueOffset = CurrTrueOffset;
2060 }
2061 Offset += SectOffsetAdjust;
2062 } else {
2063 MachO::section Sect = getSection(Sec);
2064 Offset = Sect.offset;
2065 Size = Sect.size;
2066 }
2067
2069}
2070
2073 if (is64Bit()) {
2074 MachO::section_64 Sect = getSection64(Sec);
2075 Align = Sect.align;
2076 } else {
2077 MachO::section Sect = getSection(Sec);
2078 Align = Sect.align;
2079 }
2080
2081 return uint64_t(1) << Align;
2082}
2083
2085 if (SectionIndex < 1 || SectionIndex > Sections.size())
2086 return malformedError("bad section index: " + Twine((int)SectionIndex));
2087
2088 DataRefImpl DRI;
2089 DRI.d.a = SectionIndex - 1;
2090 return SectionRef(DRI, this);
2091}
2092
2094 for (const SectionRef &Section : sections()) {
2095 auto NameOrErr = Section.getName();
2096 if (!NameOrErr)
2097 return NameOrErr.takeError();
2098 if (*NameOrErr == SectionName)
2099 return Section;
2100 }
2102}
2103
2105 return false;
2106}
2107
2109 uint32_t Flags = getSectionFlags(*this, Sec);
2110 return Flags & MachO::S_ATTR_PURE_INSTRUCTIONS;
2111}
2112
2114 uint32_t Flags = getSectionFlags(*this, Sec);
2115 unsigned SectionType = Flags & MachO::SECTION_TYPE;
2116 return !(Flags & MachO::S_ATTR_PURE_INSTRUCTIONS) &&
2117 !(SectionType == MachO::S_ZEROFILL ||
2118 SectionType == MachO::S_GB_ZEROFILL);
2119}
2120
2122 uint32_t Flags = getSectionFlags(*this, Sec);
2123 unsigned SectionType = Flags & MachO::SECTION_TYPE;
2124 return !(Flags & MachO::S_ATTR_PURE_INSTRUCTIONS) &&
2125 (SectionType == MachO::S_ZEROFILL ||
2126 SectionType == MachO::S_GB_ZEROFILL);
2127}
2128
2130 Expected<StringRef> SectionNameOrErr = getSectionName(Sec);
2131 if (!SectionNameOrErr) {
2132 // TODO: Report the error message properly.
2133 consumeError(SectionNameOrErr.takeError());
2134 return false;
2135 }
2136 StringRef SectionName = SectionNameOrErr.get();
2137 return SectionName.starts_with("__debug") ||
2138 SectionName.starts_with("__zdebug") ||
2139 SectionName.starts_with("__apple") || SectionName == "__gdb_index" ||
2140 SectionName == "__swift_ast";
2141}
2142
2143namespace {
2144template <typename LoadCommandType>
2145ArrayRef<uint8_t> getSegmentContents(const MachOObjectFile &Obj,
2147 StringRef SegmentName) {
2148 auto SegmentOrErr = getStructOrErr<LoadCommandType>(Obj, LoadCmd.Ptr);
2149 if (!SegmentOrErr) {
2150 consumeError(SegmentOrErr.takeError());
2151 return {};
2152 }
2153 auto &Segment = SegmentOrErr.get();
2154 if (StringRef(Segment.segname, 16).starts_with(SegmentName))
2155 return arrayRefFromStringRef(Obj.getData().slice(
2156 Segment.fileoff, Segment.fileoff + Segment.filesize));
2157 return {};
2158}
2159
2160template <typename LoadCommandType>
2161ArrayRef<uint8_t> getSegmentContents(const MachOObjectFile &Obj,
2162 MachOObjectFile::LoadCommandInfo LoadCmd) {
2163 auto SegmentOrErr = getStructOrErr<LoadCommandType>(Obj, LoadCmd.Ptr);
2164 if (!SegmentOrErr) {
2165 consumeError(SegmentOrErr.takeError());
2166 return {};
2167 }
2168 auto &Segment = SegmentOrErr.get();
2169 return arrayRefFromStringRef(
2170 Obj.getData().substr(Segment.fileoff, Segment.filesize));
2171}
2172} // namespace
2173
2174ArrayRef<uint8_t>
2176 for (auto LoadCmd : load_commands()) {
2177 ArrayRef<uint8_t> Contents;
2178 switch (LoadCmd.C.cmd) {
2179 case MachO::LC_SEGMENT:
2180 Contents = ::getSegmentContents<MachO::segment_command>(*this, LoadCmd,
2181 SegmentName);
2182 break;
2183 case MachO::LC_SEGMENT_64:
2184 Contents = ::getSegmentContents<MachO::segment_command_64>(*this, LoadCmd,
2185 SegmentName);
2186 break;
2187 default:
2188 continue;
2189 }
2190 if (!Contents.empty())
2191 return Contents;
2192 }
2193 return {};
2194}
2195
2197MachOObjectFile::getSegmentContents(size_t SegmentIndex) const {
2198 size_t Idx = 0;
2199 for (auto LoadCmd : load_commands()) {
2200 switch (LoadCmd.C.cmd) {
2201 case MachO::LC_SEGMENT:
2202 if (Idx == SegmentIndex)
2203 return ::getSegmentContents<MachO::segment_command>(*this, LoadCmd);
2204 ++Idx;
2205 break;
2206 case MachO::LC_SEGMENT_64:
2207 if (Idx == SegmentIndex)
2208 return ::getSegmentContents<MachO::segment_command_64>(*this, LoadCmd);
2209 ++Idx;
2210 break;
2211 default:
2212 continue;
2213 }
2214 }
2215 return {};
2216}
2217
2219 return Sec.getRawDataRefImpl().d.a;
2220}
2221
2223 uint32_t Flags = getSectionFlags(*this, Sec);
2224 unsigned SectionType = Flags & MachO::SECTION_TYPE;
2225 return SectionType == MachO::S_ZEROFILL ||
2226 SectionType == MachO::S_GB_ZEROFILL;
2227}
2228
2230 StringRef SegmentName = getSectionFinalSegmentName(Sec);
2231 if (Expected<StringRef> NameOrErr = getSectionName(Sec))
2232 return (SegmentName == "__LLVM" && *NameOrErr == "__bitcode");
2233 return false;
2234}
2235
2237 if (is64Bit())
2238 return getSection64(Sec).offset == 0;
2239 return getSection(Sec).offset == 0;
2240}
2241
2243 DataRefImpl Ret;
2244 Ret.d.a = Sec.d.a;
2245 Ret.d.b = 0;
2246 return relocation_iterator(RelocationRef(Ret, this));
2247}
2248
2251 uint32_t Num;
2252 if (is64Bit()) {
2253 MachO::section_64 Sect = getSection64(Sec);
2254 Num = Sect.nreloc;
2255 } else {
2256 MachO::section Sect = getSection(Sec);
2257 Num = Sect.nreloc;
2258 }
2259
2260 DataRefImpl Ret;
2261 Ret.d.a = Sec.d.a;
2262 Ret.d.b = Num;
2263 return relocation_iterator(RelocationRef(Ret, this));
2264}
2265
2267 DataRefImpl Ret;
2268 // for DYSYMTAB symbols, Ret.d.a == 0 for external relocations
2269 Ret.d.a = 0; // Would normally be a section index.
2270 Ret.d.b = 0; // Index into the external relocations
2271 return relocation_iterator(RelocationRef(Ret, this));
2272}
2273
2276 DataRefImpl Ret;
2277 // for DYSYMTAB symbols, Ret.d.a == 0 for external relocations
2278 Ret.d.a = 0; // Would normally be a section index.
2279 Ret.d.b = DysymtabLoadCmd.nextrel; // Index into the external relocations
2280 return relocation_iterator(RelocationRef(Ret, this));
2281}
2282
2284 DataRefImpl Ret;
2285 // for DYSYMTAB symbols, Ret.d.a == 1 for local relocations
2286 Ret.d.a = 1; // Would normally be a section index.
2287 Ret.d.b = 0; // Index into the local relocations
2288 return relocation_iterator(RelocationRef(Ret, this));
2289}
2290
2293 DataRefImpl Ret;
2294 // for DYSYMTAB symbols, Ret.d.a == 1 for local relocations
2295 Ret.d.a = 1; // Would normally be a section index.
2296 Ret.d.b = DysymtabLoadCmd.nlocrel; // Index into the local relocations
2297 return relocation_iterator(RelocationRef(Ret, this));
2298}
2299
2301 ++Rel.d.b;
2302}
2303
2305 assert((getHeader().filetype == MachO::MH_OBJECT ||
2306 getHeader().filetype == MachO::MH_KEXT_BUNDLE) &&
2307 "Only implemented for MH_OBJECT && MH_KEXT_BUNDLE");
2309 return getAnyRelocationAddress(RE);
2310}
2311
2315 if (isRelocationScattered(RE))
2316 return symbol_end();
2317
2318 uint32_t SymbolIdx = getPlainRelocationSymbolNum(RE);
2319 bool isExtern = getPlainRelocationExternal(RE);
2320 if (!isExtern)
2321 return symbol_end();
2322
2324 unsigned SymbolTableEntrySize = is64Bit() ?
2325 sizeof(MachO::nlist_64) :
2326 sizeof(MachO::nlist);
2327 uint64_t Offset = S.symoff + SymbolIdx * SymbolTableEntrySize;
2328 DataRefImpl Sym;
2329 Sym.p = reinterpret_cast<uintptr_t>(getPtr(*this, Offset));
2330 return symbol_iterator(SymbolRef(Sym, this));
2331}
2332
2337
2342
2344 DataRefImpl Rel, SmallVectorImpl<char> &Result) const {
2345 StringRef res;
2346 uint64_t RType = getRelocationType(Rel);
2347
2348 unsigned Arch = this->getArch();
2349
2350 switch (Arch) {
2351 case Triple::x86: {
2352 static const char *const Table[] = {
2353 "GENERIC_RELOC_VANILLA",
2354 "GENERIC_RELOC_PAIR",
2355 "GENERIC_RELOC_SECTDIFF",
2356 "GENERIC_RELOC_PB_LA_PTR",
2357 "GENERIC_RELOC_LOCAL_SECTDIFF",
2358 "GENERIC_RELOC_TLV" };
2359
2360 if (RType > 5)
2361 res = "Unknown";
2362 else
2363 res = Table[RType];
2364 break;
2365 }
2366 case Triple::x86_64: {
2367 static const char *const Table[] = {
2368 "X86_64_RELOC_UNSIGNED",
2369 "X86_64_RELOC_SIGNED",
2370 "X86_64_RELOC_BRANCH",
2371 "X86_64_RELOC_GOT_LOAD",
2372 "X86_64_RELOC_GOT",
2373 "X86_64_RELOC_SUBTRACTOR",
2374 "X86_64_RELOC_SIGNED_1",
2375 "X86_64_RELOC_SIGNED_2",
2376 "X86_64_RELOC_SIGNED_4",
2377 "X86_64_RELOC_TLV" };
2378
2379 if (RType > 9)
2380 res = "Unknown";
2381 else
2382 res = Table[RType];
2383 break;
2384 }
2385 case Triple::arm: {
2386 static const char *const Table[] = {
2387 "ARM_RELOC_VANILLA",
2388 "ARM_RELOC_PAIR",
2389 "ARM_RELOC_SECTDIFF",
2390 "ARM_RELOC_LOCAL_SECTDIFF",
2391 "ARM_RELOC_PB_LA_PTR",
2392 "ARM_RELOC_BR24",
2393 "ARM_THUMB_RELOC_BR22",
2394 "ARM_THUMB_32BIT_BRANCH",
2395 "ARM_RELOC_HALF",
2396 "ARM_RELOC_HALF_SECTDIFF" };
2397
2398 if (RType > 9)
2399 res = "Unknown";
2400 else
2401 res = Table[RType];
2402 break;
2403 }
2404 case Triple::aarch64:
2405 case Triple::aarch64_32: {
2406 static const char *const Table[] = {
2407 "ARM64_RELOC_UNSIGNED", "ARM64_RELOC_SUBTRACTOR",
2408 "ARM64_RELOC_BRANCH26", "ARM64_RELOC_PAGE21",
2409 "ARM64_RELOC_PAGEOFF12", "ARM64_RELOC_GOT_LOAD_PAGE21",
2410 "ARM64_RELOC_GOT_LOAD_PAGEOFF12", "ARM64_RELOC_POINTER_TO_GOT",
2411 "ARM64_RELOC_TLVP_LOAD_PAGE21", "ARM64_RELOC_TLVP_LOAD_PAGEOFF12",
2412 "ARM64_RELOC_ADDEND", "ARM64_RELOC_AUTHENTICATED_POINTER"
2413 };
2414
2415 if (RType >= std::size(Table))
2416 res = "Unknown";
2417 else
2418 res = Table[RType];
2419 break;
2420 }
2421 case Triple::ppc: {
2422 static const char *const Table[] = {
2423 "PPC_RELOC_VANILLA",
2424 "PPC_RELOC_PAIR",
2425 "PPC_RELOC_BR14",
2426 "PPC_RELOC_BR24",
2427 "PPC_RELOC_HI16",
2428 "PPC_RELOC_LO16",
2429 "PPC_RELOC_HA16",
2430 "PPC_RELOC_LO14",
2431 "PPC_RELOC_SECTDIFF",
2432 "PPC_RELOC_PB_LA_PTR",
2433 "PPC_RELOC_HI16_SECTDIFF",
2434 "PPC_RELOC_LO16_SECTDIFF",
2435 "PPC_RELOC_HA16_SECTDIFF",
2436 "PPC_RELOC_JBSR",
2437 "PPC_RELOC_LO14_SECTDIFF",
2438 "PPC_RELOC_LOCAL_SECTDIFF" };
2439
2440 if (RType > 15)
2441 res = "Unknown";
2442 else
2443 res = Table[RType];
2444 break;
2445 }
2446 case Triple::riscv32: {
2447 static const char *const Table[] = {
2448 "RISCV_RELOC_UNSIGNED", "RISCV_RELOC_SUBTRACTOR",
2449 "RISCV_RELOC_BRANCH21", "RISCV_RELOC_HI20",
2450 "RISCV_RELOC_LO12", "RISCV_RELOC_GOT_HI20",
2451 "RISCV_RELOC_GOT_LO12", "RISCV_RELOC_POINTER_TO_GOT",
2452 "RISCV_RELOC_ADDEND",
2453 };
2454
2455 if (RType >= std::size(Table))
2456 res = "Unknown";
2457 else
2458 res = Table[RType];
2459 Result.append(res.begin(), res.end());
2460 if ((RType == MachO::RISCV_RELOC_HI20 ||
2461 RType == MachO::RISCV_RELOC_GOT_HI20 ||
2462 RType == MachO::RISCV_RELOC_LO12 ||
2463 RType == MachO::RISCV_RELOC_GOT_LO12) &&
2465 StringRef PCRel("(pcrel)");
2466 Result.append(PCRel.begin(), PCRel.end());
2467 }
2468 return;
2469 }
2471 res = "Unknown";
2472 break;
2473 }
2474 Result.append(res.begin(), res.end());
2475}
2476
2481
2482//
2483// guessLibraryShortName() is passed a name of a dynamic library and returns a
2484// guess on what the short name is. Then name is returned as a substring of the
2485// StringRef Name passed in. The name of the dynamic library is recognized as
2486// a framework if it has one of the two following forms:
2487// Foo.framework/Versions/A/Foo
2488// Foo.framework/Foo
2489// Where A and Foo can be any string. And may contain a trailing suffix
2490// starting with an underbar. If the Name is recognized as a framework then
2491// isFramework is set to true else it is set to false. If the Name has a
2492// suffix then Suffix is set to the substring in Name that contains the suffix
2493// else it is set to a NULL StringRef.
2494//
2495// The Name of the dynamic library is recognized as a library name if it has
2496// one of the two following forms:
2497// libFoo.A.dylib
2498// libFoo.dylib
2499//
2500// The library may have a suffix trailing the name Foo of the form:
2501// libFoo_profile.A.dylib
2502// libFoo_profile.dylib
2503// These dyld image suffixes are separated from the short name by a '_'
2504// character. Because the '_' character is commonly used to separate words in
2505// filenames guessLibraryShortName() cannot reliably separate a dylib's short
2506// name from an arbitrary image suffix; imagine if both the short name and the
2507// suffix contains an '_' character! To better deal with this ambiguity,
2508// guessLibraryShortName() will recognize only "_debug" and "_profile" as valid
2509// Suffix values. Calling code needs to be tolerant of guessLibraryShortName()
2510// guessing incorrectly.
2511//
2512// The Name of the dynamic library is also recognized as a library name if it
2513// has the following form:
2514// Foo.qtx
2515//
2516// If the Name of the dynamic library is none of the forms above then a NULL
2517// StringRef is returned.
2519 bool &isFramework,
2520 StringRef &Suffix) {
2521 StringRef Foo, F, DotFramework, V, Dylib, Lib, Dot, Qtx;
2522 size_t a, b, c, d, Idx;
2523
2524 isFramework = false;
2525 Suffix = StringRef();
2526
2527 // Pull off the last component and make Foo point to it
2528 a = Name.rfind('/');
2529 if (a == Name.npos || a == 0)
2530 goto guess_library;
2531 Foo = Name.substr(a + 1);
2532
2533 // Look for a suffix starting with a '_'
2534 Idx = Foo.rfind('_');
2535 if (Idx != Foo.npos && Foo.size() >= 2) {
2536 Suffix = Foo.substr(Idx);
2537 if (Suffix != "_debug" && Suffix != "_profile")
2538 Suffix = StringRef();
2539 else
2540 Foo = Foo.slice(0, Idx);
2541 }
2542
2543 // First look for the form Foo.framework/Foo
2544 b = Name.rfind('/', a);
2545 if (b == Name.npos)
2546 Idx = 0;
2547 else
2548 Idx = b+1;
2549 F = Name.substr(Idx, Foo.size());
2550 DotFramework = Name.substr(Idx + Foo.size(), sizeof(".framework/") - 1);
2551 if (F == Foo && DotFramework == ".framework/") {
2552 isFramework = true;
2553 return Foo;
2554 }
2555
2556 // Next look for the form Foo.framework/Versions/A/Foo
2557 if (b == Name.npos)
2558 goto guess_library;
2559 c = Name.rfind('/', b);
2560 if (c == Name.npos || c == 0)
2561 goto guess_library;
2562 V = Name.substr(c + 1);
2563 if (!V.starts_with("Versions/"))
2564 goto guess_library;
2565 d = Name.rfind('/', c);
2566 if (d == Name.npos)
2567 Idx = 0;
2568 else
2569 Idx = d+1;
2570 F = Name.substr(Idx, Foo.size());
2571 DotFramework = Name.substr(Idx + Foo.size(), sizeof(".framework/") - 1);
2572 if (F == Foo && DotFramework == ".framework/") {
2573 isFramework = true;
2574 return Foo;
2575 }
2576
2577guess_library:
2578 // pull off the suffix after the "." and make a point to it
2579 a = Name.rfind('.');
2580 if (a == Name.npos || a == 0)
2581 return StringRef();
2582 Dylib = Name.substr(a);
2583 if (Dylib != ".dylib")
2584 goto guess_qtx;
2585
2586 // First pull off the version letter for the form Foo.A.dylib if any.
2587 if (a >= 3) {
2588 Dot = Name.substr(a - 2, 1);
2589 if (Dot == ".")
2590 a = a - 2;
2591 }
2592
2593 b = Name.rfind('/', a);
2594 if (b == Name.npos)
2595 b = 0;
2596 else
2597 b = b+1;
2598 // ignore any suffix after an underbar like Foo_profile.A.dylib
2599 Idx = Name.rfind('_');
2600 if (Idx != Name.npos && Idx != b) {
2601 Lib = Name.slice(b, Idx);
2602 Suffix = Name.slice(Idx, a);
2603 if (Suffix != "_debug" && Suffix != "_profile") {
2604 Suffix = StringRef();
2605 Lib = Name.slice(b, a);
2606 }
2607 }
2608 else
2609 Lib = Name.slice(b, a);
2610 // There are incorrect library names of the form:
2611 // libATS.A_profile.dylib so check for these.
2612 if (Lib.size() >= 3) {
2613 Dot = Lib.substr(Lib.size() - 2, 1);
2614 if (Dot == ".")
2615 Lib = Lib.slice(0, Lib.size()-2);
2616 }
2617 return Lib;
2618
2619guess_qtx:
2620 Qtx = Name.substr(a);
2621 if (Qtx != ".qtx")
2622 return StringRef();
2623 b = Name.rfind('/', a);
2624 if (b == Name.npos)
2625 Lib = Name.slice(0, a);
2626 else
2627 Lib = Name.slice(b+1, a);
2628 // There are library names of the form: QT.A.qtx so check for these.
2629 if (Lib.size() >= 3) {
2630 Dot = Lib.substr(Lib.size() - 2, 1);
2631 if (Dot == ".")
2632 Lib = Lib.slice(0, Lib.size()-2);
2633 }
2634 return Lib;
2635}
2636
2637// getLibraryShortNameByIndex() is used to get the short name of the library
2638// for an undefined symbol in a linked Mach-O binary that was linked with the
2639// normal two-level namespace default (that is MH_TWOLEVEL in the header).
2640// It is passed the index (0 - based) of the library as translated from
2641// GET_LIBRARY_ORDINAL (1 - based).
2642std::error_code MachOObjectFile::getLibraryShortNameByIndex(unsigned Index,
2643 StringRef &Res) const {
2644 if (Index >= Libraries.size())
2646
2647 // If the cache of LibrariesShortNames is not built up do that first for
2648 // all the Libraries.
2649 if (LibrariesShortNames.size() == 0) {
2650 for (unsigned i = 0; i < Libraries.size(); i++) {
2651 auto CommandOrErr =
2652 getStructOrErr<MachO::dylib_command>(*this, Libraries[i]);
2653 if (!CommandOrErr)
2655 MachO::dylib_command D = CommandOrErr.get();
2656 if (D.dylib.name >= D.cmdsize)
2658 const char *P = (const char *)(Libraries[i]) + D.dylib.name;
2659 StringRef Name = StringRef(P);
2660 if (D.dylib.name+Name.size() >= D.cmdsize)
2662 StringRef Suffix;
2663 bool isFramework;
2664 StringRef shortName = guessLibraryShortName(Name, isFramework, Suffix);
2665 if (shortName.empty())
2666 LibrariesShortNames.push_back(Name);
2667 else
2668 LibrariesShortNames.push_back(shortName);
2669 }
2670 }
2671
2672 Res = LibrariesShortNames[Index];
2673 return std::error_code();
2674}
2675
2677 return Libraries.size();
2678}
2679
2686
2688 DataRefImpl DRI;
2690 if (!SymtabLoadCmd || Symtab.nsyms == 0)
2691 return basic_symbol_iterator(SymbolRef(DRI, this));
2692
2693 return getSymbolByIndex(0);
2694}
2695
2697 DataRefImpl DRI;
2699 if (!SymtabLoadCmd || Symtab.nsyms == 0)
2700 return basic_symbol_iterator(SymbolRef(DRI, this));
2701
2702 unsigned SymbolTableEntrySize = is64Bit() ?
2703 sizeof(MachO::nlist_64) :
2704 sizeof(MachO::nlist);
2705 unsigned Offset = Symtab.symoff +
2706 Symtab.nsyms * SymbolTableEntrySize;
2707 DRI.p = reinterpret_cast<uintptr_t>(getPtr(*this, Offset));
2708 return basic_symbol_iterator(SymbolRef(DRI, this));
2709}
2710
2713 if (!SymtabLoadCmd || Index >= Symtab.nsyms)
2714 report_fatal_error("Requested symbol index is out of range.");
2715 unsigned SymbolTableEntrySize =
2716 is64Bit() ? sizeof(MachO::nlist_64) : sizeof(MachO::nlist);
2717 DataRefImpl DRI;
2718 DRI.p = reinterpret_cast<uintptr_t>(getPtr(*this, Symtab.symoff));
2719 DRI.p += Index * SymbolTableEntrySize;
2720 return basic_symbol_iterator(SymbolRef(DRI, this));
2721}
2722
2725 if (!SymtabLoadCmd)
2726 report_fatal_error("getSymbolIndex() called with no symbol table symbol");
2727 unsigned SymbolTableEntrySize =
2728 is64Bit() ? sizeof(MachO::nlist_64) : sizeof(MachO::nlist);
2729 DataRefImpl DRIstart;
2730 DRIstart.p = reinterpret_cast<uintptr_t>(getPtr(*this, Symtab.symoff));
2731 uint64_t Index = (Symb.p - DRIstart.p) / SymbolTableEntrySize;
2732 return Index;
2733}
2734
2739
2741 DataRefImpl DRI;
2742 DRI.d.a = Sections.size();
2743 return section_iterator(SectionRef(DRI, this));
2744}
2745
2747 return is64Bit() ? 8 : 4;
2748}
2749
2751 unsigned CPUType = getCPUType(*this);
2752 if (!is64Bit()) {
2753 switch (CPUType) {
2755 return "Mach-O 32-bit i386";
2757 return "Mach-O arm";
2759 return "Mach-O arm64 (ILP32)";
2761 return "Mach-O 32-bit ppc";
2763 return "Mach-O 32-bit RISC-V";
2764 default:
2765 return "Mach-O 32-bit unknown";
2766 }
2767 }
2768
2769 switch (CPUType) {
2771 return "Mach-O 64-bit x86-64";
2773 return "Mach-O arm64";
2775 return "Mach-O 64-bit ppc64";
2776 default:
2777 return "Mach-O 64-bit unknown";
2778 }
2779}
2780
2782 switch (CPUType) {
2784 return Triple::x86;
2786 return Triple::x86_64;
2788 return Triple::arm;
2790 return Triple::aarch64;
2792 return Triple::aarch64_32;
2794 return Triple::ppc;
2796 return Triple::ppc64;
2798 return Triple::riscv32;
2799 default:
2800 return Triple::UnknownArch;
2801 }
2802}
2803
2805 const char **McpuDefault,
2806 const char **ArchFlag) {
2807 if (McpuDefault)
2808 *McpuDefault = nullptr;
2809 if (ArchFlag)
2810 *ArchFlag = nullptr;
2811
2812 switch (CPUType) {
2814 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) {
2816 if (ArchFlag)
2817 *ArchFlag = "i386";
2818 return Triple("i386-apple-darwin");
2819 default:
2820 return Triple();
2821 }
2823 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) {
2825 if (ArchFlag)
2826 *ArchFlag = "x86_64";
2827 return Triple("x86_64-apple-darwin");
2829 if (ArchFlag)
2830 *ArchFlag = "x86_64h";
2831 return Triple("x86_64h-apple-darwin");
2832 default:
2833 return Triple();
2834 }
2836 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) {
2838 if (ArchFlag)
2839 *ArchFlag = "armv4t";
2840 return Triple("armv4t-apple-darwin");
2842 if (ArchFlag)
2843 *ArchFlag = "armv5e";
2844 return Triple("armv5e-apple-darwin");
2846 if (ArchFlag)
2847 *ArchFlag = "xscale";
2848 return Triple("xscale-apple-darwin");
2850 if (ArchFlag)
2851 *ArchFlag = "armv6";
2852 return Triple("armv6-apple-darwin");
2854 if (McpuDefault)
2855 *McpuDefault = "cortex-m0";
2856 if (ArchFlag)
2857 *ArchFlag = "armv6m";
2858 return Triple("armv6m-apple-darwin");
2860 if (ArchFlag)
2861 *ArchFlag = "armv7";
2862 return Triple("armv7-apple-darwin");
2864 if (McpuDefault)
2865 *McpuDefault = "cortex-m4";
2866 if (ArchFlag)
2867 *ArchFlag = "armv7em";
2868 return Triple("thumbv7em-apple-darwin");
2870 if (McpuDefault)
2871 *McpuDefault = "cortex-a7";
2872 if (ArchFlag)
2873 *ArchFlag = "armv7k";
2874 return Triple("armv7k-apple-darwin");
2876 if (McpuDefault)
2877 *McpuDefault = "cortex-m3";
2878 if (ArchFlag)
2879 *ArchFlag = "armv7m";
2880 return Triple("thumbv7m-apple-darwin");
2882 if (McpuDefault)
2883 *McpuDefault = "cortex-a7";
2884 if (ArchFlag)
2885 *ArchFlag = "armv7s";
2886 return Triple("armv7s-apple-darwin");
2888 if (McpuDefault)
2889 *McpuDefault = "cortex-m23";
2890 if (ArchFlag)
2891 *ArchFlag = "armv8m.base";
2892 return Triple("thumbv8m-apple-darwin");
2894 if (McpuDefault)
2895 *McpuDefault = "cortex-m33";
2896 if (ArchFlag)
2897 *ArchFlag = "armv8m.main";
2898 return Triple("thumbv8m-apple-darwin");
2900 if (McpuDefault)
2901 *McpuDefault = "cortex-m52";
2902 if (ArchFlag)
2903 *ArchFlag = "armv8.1m.main";
2904 return Triple("thumbv8m-apple-darwin");
2905 default:
2906 return Triple();
2907 }
2909 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) {
2911 if (McpuDefault)
2912 *McpuDefault = "cyclone";
2913 if (ArchFlag)
2914 *ArchFlag = "arm64";
2915 return Triple("arm64-apple-darwin");
2917 if (McpuDefault)
2918 *McpuDefault = "apple-a12";
2919 if (ArchFlag)
2920 *ArchFlag = "arm64e";
2921 return Triple("arm64e-apple-darwin");
2922 default:
2923 return Triple();
2924 }
2926 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) {
2928 if (McpuDefault)
2929 *McpuDefault = "cyclone";
2930 if (ArchFlag)
2931 *ArchFlag = "arm64_32";
2932 return Triple("arm64_32-apple-darwin");
2933 default:
2934 return Triple();
2935 }
2937 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) {
2939 if (ArchFlag)
2940 *ArchFlag = "ppc";
2941 return Triple("ppc-apple-darwin");
2942 default:
2943 return Triple();
2944 }
2946 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) {
2948 if (ArchFlag)
2949 *ArchFlag = "ppc64";
2950 return Triple("ppc64-apple-darwin");
2951 default:
2952 return Triple();
2953 }
2955 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) {
2957 if (ArchFlag)
2958 *ArchFlag = "riscv32";
2959 return Triple("riscv32-apple-macho");
2960 default:
2961 return Triple();
2962 }
2963 default:
2964 return Triple();
2965 }
2966}
2967
2971
2973 auto validArchs = getValidArchs();
2974 return llvm::is_contained(validArchs, ArchFlag);
2975}
2976
2978 static const std::array<StringRef, 21> ValidArchs = {{
2979 "i386", "x86_64", "x86_64h", "armv4t", "arm",
2980 "armv5e", "armv6", "armv6m", "armv7", "armv7em",
2981 "armv7k", "armv7m", "armv7s", "armv8m.base", "armv8m.main",
2982 "armv8.1m.main", "arm64", "arm64e", "arm64_32", "ppc",
2983 "ppc64",
2984 }};
2985
2986 return ValidArchs;
2987}
2988
2990 return getArch(getCPUType(*this), getCPUSubType(*this));
2991}
2992
2993Triple MachOObjectFile::getArchTriple(const char **McpuDefault) const {
2994 return getArchTriple(Header.cputype, Header.cpusubtype, McpuDefault);
2995}
2996
2998 DataRefImpl DRI;
2999 DRI.d.a = Index;
3000 return section_rel_begin(DRI);
3001}
3002
3004 DataRefImpl DRI;
3005 DRI.d.a = Index;
3006 return section_rel_end(DRI);
3007}
3008
3010 DataRefImpl DRI;
3011 if (!DataInCodeLoadCmd)
3012 return dice_iterator(DiceRef(DRI, this));
3013
3015 DRI.p = reinterpret_cast<uintptr_t>(getPtr(*this, DicLC.dataoff));
3016 return dice_iterator(DiceRef(DRI, this));
3017}
3018
3020 DataRefImpl DRI;
3021 if (!DataInCodeLoadCmd)
3022 return dice_iterator(DiceRef(DRI, this));
3023
3025 unsigned Offset = DicLC.dataoff + DicLC.datasize;
3026 DRI.p = reinterpret_cast<uintptr_t>(getPtr(*this, Offset));
3027 return dice_iterator(DiceRef(DRI, this));
3028}
3029
3031 ArrayRef<uint8_t> T) : E(E), O(O), Trie(T) {}
3032
3033void ExportEntry::moveToFirst() {
3034 ErrorAsOutParameter ErrAsOutParam(E);
3035 pushNode(0);
3036 if (*E)
3037 return;
3038 pushDownUntilBottom();
3039}
3040
3041void ExportEntry::moveToEnd() {
3042 Stack.clear();
3043 Done = true;
3044}
3045
3047 // Common case, one at end, other iterating from begin.
3048 if (Done || Other.Done)
3049 return (Done == Other.Done);
3050 // Not equal if different stack sizes.
3051 if (Stack.size() != Other.Stack.size())
3052 return false;
3053 // Not equal if different cumulative strings.
3054 if (!CumulativeString.equals(Other.CumulativeString))
3055 return false;
3056 // Equal if all nodes in both stacks match.
3057 for (unsigned i=0; i < Stack.size(); ++i) {
3058 if (Stack[i].Start != Other.Stack[i].Start)
3059 return false;
3060 }
3061 return true;
3062}
3063
3064uint64_t ExportEntry::readULEB128(const uint8_t *&Ptr, const char **error) {
3065 unsigned Count;
3066 uint64_t Result = decodeULEB128(Ptr, &Count, Trie.end(), error);
3067 Ptr += Count;
3068 if (Ptr > Trie.end())
3069 Ptr = Trie.end();
3070 return Result;
3071}
3072
3074 return CumulativeString;
3075}
3076
3078 return Stack.back().Flags;
3079}
3080
3082 return Stack.back().Address;
3083}
3084
3086 return Stack.back().Other;
3087}
3088
3090 const char* ImportName = Stack.back().ImportName;
3091 if (ImportName)
3092 return StringRef(ImportName);
3093 return StringRef();
3094}
3095
3097 return Stack.back().Start - Trie.begin();
3098}
3099
3100ExportEntry::NodeState::NodeState(const uint8_t *Ptr)
3101 : Start(Ptr), Current(Ptr) {}
3102
3103void ExportEntry::pushNode(uint64_t offset) {
3104 ErrorAsOutParameter ErrAsOutParam(E);
3105 const uint8_t *Ptr = Trie.begin() + offset;
3106 NodeState State(Ptr);
3107 const char *error = nullptr;
3108 uint64_t ExportInfoSize = readULEB128(State.Current, &error);
3109 if (error) {
3110 *E = malformedError("export info size " + Twine(error) +
3111 " in export trie data at node: 0x" +
3112 Twine::utohexstr(offset));
3113 moveToEnd();
3114 return;
3115 }
3116 State.IsExportNode = (ExportInfoSize != 0);
3117 const uint8_t* Children = State.Current + ExportInfoSize;
3118 if (Children > Trie.end()) {
3119 *E = malformedError(
3120 "export info size: 0x" + Twine::utohexstr(ExportInfoSize) +
3121 " in export trie data at node: 0x" + Twine::utohexstr(offset) +
3122 " too big and extends past end of trie data");
3123 moveToEnd();
3124 return;
3125 }
3126 if (State.IsExportNode) {
3127 const uint8_t *ExportStart = State.Current;
3128 State.Flags = readULEB128(State.Current, &error);
3129 if (error) {
3130 *E = malformedError("flags " + Twine(error) +
3131 " in export trie data at node: 0x" +
3132 Twine::utohexstr(offset));
3133 moveToEnd();
3134 return;
3135 }
3136 uint64_t Kind = State.Flags & MachO::EXPORT_SYMBOL_FLAGS_KIND_MASK;
3137 if (State.Flags != 0 &&
3141 *E = malformedError(
3142 "unsupported exported symbol kind: " + Twine((int)Kind) +
3143 " in flags: 0x" + Twine::utohexstr(State.Flags) +
3144 " in export trie data at node: 0x" + Twine::utohexstr(offset));
3145 moveToEnd();
3146 return;
3147 }
3148 if (State.Flags & MachO::EXPORT_SYMBOL_FLAGS_REEXPORT) {
3149 State.Address = 0;
3150 State.Other = readULEB128(State.Current, &error); // dylib ordinal
3151 if (error) {
3152 *E = malformedError("dylib ordinal of re-export " + Twine(error) +
3153 " in export trie data at node: 0x" +
3154 Twine::utohexstr(offset));
3155 moveToEnd();
3156 return;
3157 }
3158 if (O != nullptr) {
3159 // Only positive numbers represent library ordinals. Zero and negative
3160 // numbers have special meaning (see BindSpecialDylib).
3161 if ((int64_t)State.Other > 0 && State.Other > O->getLibraryCount()) {
3162 *E = malformedError(
3163 "bad library ordinal: " + Twine((int)State.Other) + " (max " +
3164 Twine((int)O->getLibraryCount()) +
3165 ") in export trie data at node: 0x" + Twine::utohexstr(offset));
3166 moveToEnd();
3167 return;
3168 }
3169 }
3170 State.ImportName = reinterpret_cast<const char*>(State.Current);
3171 if (*State.ImportName == '\0') {
3172 State.Current++;
3173 } else {
3174 const uint8_t *End = State.Current + 1;
3175 if (End >= Trie.end()) {
3176 *E = malformedError("import name of re-export in export trie data at "
3177 "node: 0x" +
3178 Twine::utohexstr(offset) +
3179 " starts past end of trie data");
3180 moveToEnd();
3181 return;
3182 }
3183 while(*End != '\0' && End < Trie.end())
3184 End++;
3185 if (*End != '\0') {
3186 *E = malformedError("import name of re-export in export trie data at "
3187 "node: 0x" +
3188 Twine::utohexstr(offset) +
3189 " extends past end of trie data");
3190 moveToEnd();
3191 return;
3192 }
3193 State.Current = End + 1;
3194 }
3195 } else {
3196 State.Address = readULEB128(State.Current, &error);
3197 if (error) {
3198 *E = malformedError("address " + Twine(error) +
3199 " in export trie data at node: 0x" +
3200 Twine::utohexstr(offset));
3201 moveToEnd();
3202 return;
3203 }
3205 State.Other = readULEB128(State.Current, &error);
3206 if (error) {
3207 *E = malformedError("resolver of stub and resolver " + Twine(error) +
3208 " in export trie data at node: 0x" +
3209 Twine::utohexstr(offset));
3210 moveToEnd();
3211 return;
3212 }
3213 }
3214 }
3215 if (ExportStart + ExportInfoSize < State.Current) {
3216 *E = malformedError(
3217 "inconsistent export info size: 0x" +
3218 Twine::utohexstr(ExportInfoSize) + " where actual size was: 0x" +
3219 Twine::utohexstr(State.Current - ExportStart) +
3220 " in export trie data at node: 0x" + Twine::utohexstr(offset));
3221 moveToEnd();
3222 return;
3223 }
3224 }
3225 State.ChildCount = *Children;
3226 if (State.ChildCount != 0 && Children + 1 >= Trie.end()) {
3227 *E = malformedError("byte for count of children in export trie data at "
3228 "node: 0x" +
3229 Twine::utohexstr(offset) +
3230 " extends past end of trie data");
3231 moveToEnd();
3232 return;
3233 }
3234 State.Current = Children + 1;
3235 State.NextChildIndex = 0;
3236 State.ParentStringLength = CumulativeString.size();
3237 Stack.push_back(State);
3238}
3239
3240void ExportEntry::pushDownUntilBottom() {
3241 ErrorAsOutParameter ErrAsOutParam(E);
3242 const char *error = nullptr;
3243 while (Stack.back().NextChildIndex < Stack.back().ChildCount) {
3244 NodeState &Top = Stack.back();
3245 CumulativeString.resize(Top.ParentStringLength);
3246 for (;*Top.Current != 0 && Top.Current < Trie.end(); Top.Current++) {
3247 char C = *Top.Current;
3248 CumulativeString.push_back(C);
3249 }
3250 if (Top.Current >= Trie.end()) {
3251 *E = malformedError("edge sub-string in export trie data at node: 0x" +
3252 Twine::utohexstr(Top.Start - Trie.begin()) +
3253 " for child #" + Twine((int)Top.NextChildIndex) +
3254 " extends past end of trie data");
3255 moveToEnd();
3256 return;
3257 }
3258 Top.Current += 1;
3259 uint64_t childNodeIndex = readULEB128(Top.Current, &error);
3260 if (error) {
3261 *E = malformedError("child node offset " + Twine(error) +
3262 " in export trie data at node: 0x" +
3263 Twine::utohexstr(Top.Start - Trie.begin()));
3264 moveToEnd();
3265 return;
3266 }
3267 for (const NodeState &node : nodes()) {
3268 if (node.Start == Trie.begin() + childNodeIndex){
3269 *E = malformedError("loop in children in export trie data at node: 0x" +
3270 Twine::utohexstr(Top.Start - Trie.begin()) +
3271 " back to node: 0x" +
3272 Twine::utohexstr(childNodeIndex));
3273 moveToEnd();
3274 return;
3275 }
3276 }
3277 Top.NextChildIndex += 1;
3278 pushNode(childNodeIndex);
3279 if (*E)
3280 return;
3281 }
3282 if (!Stack.back().IsExportNode) {
3283 *E = malformedError("node is not an export node in export trie data at "
3284 "node: 0x" +
3285 Twine::utohexstr(Stack.back().Start - Trie.begin()));
3286 moveToEnd();
3287 return;
3288 }
3289}
3290
3291// We have a trie data structure and need a way to walk it that is compatible
3292// with the C++ iterator model. The solution is a non-recursive depth first
3293// traversal where the iterator contains a stack of parent nodes along with a
3294// string that is the accumulation of all edge strings along the parent chain
3295// to this point.
3296//
3297// There is one "export" node for each exported symbol. But because some
3298// symbols may be a prefix of another symbol (e.g. _dup and _dup2), an export
3299// node may have child nodes too.
3300//
3301// The algorithm for moveNext() is to keep moving down the leftmost unvisited
3302// child until hitting a node with no children (which is an export node or
3303// else the trie is malformed). On the way down, each node is pushed on the
3304// stack ivar. If there is no more ways down, it pops up one and tries to go
3305// down a sibling path until a childless node is reached.
3307 assert(!Stack.empty() && "ExportEntry::moveNext() with empty node stack");
3308 if (!Stack.back().IsExportNode) {
3309 *E = malformedError("node is not an export node in export trie data at "
3310 "node: 0x" +
3311 Twine::utohexstr(Stack.back().Start - Trie.begin()));
3312 moveToEnd();
3313 return;
3314 }
3315
3316 Stack.pop_back();
3317 while (!Stack.empty()) {
3318 NodeState &Top = Stack.back();
3319 if (Top.NextChildIndex < Top.ChildCount) {
3320 pushDownUntilBottom();
3321 // Now at the next export node.
3322 return;
3323 } else {
3324 if (Top.IsExportNode) {
3325 // This node has no children but is itself an export node.
3326 CumulativeString.resize(Top.ParentStringLength);
3327 return;
3328 }
3329 Stack.pop_back();
3330 }
3331 }
3332 Done = true;
3333}
3334
3337 const MachOObjectFile *O) {
3338 ExportEntry Start(&E, O, Trie);
3339 if (Trie.empty())
3340 Start.moveToEnd();
3341 else
3342 Start.moveToFirst();
3343
3344 ExportEntry Finish(&E, O, Trie);
3345 Finish.moveToEnd();
3346
3347 return make_range(export_iterator(Start), export_iterator(Finish));
3348}
3349
3351 ArrayRef<uint8_t> Trie;
3352 if (DyldInfoLoadCmd)
3353 Trie = getDyldInfoExportsTrie();
3354 else if (DyldExportsTrieLoadCmd)
3355 Trie = getDyldExportsTrie();
3356
3357 return exports(Err, Trie, this);
3358}
3359
3361 const MachOObjectFile *O)
3362 : E(E), O(O) {
3363 // Cache the vmaddress of __TEXT
3364 for (const auto &Command : O->load_commands()) {
3365 if (Command.C.cmd == MachO::LC_SEGMENT) {
3366 MachO::segment_command SLC = O->getSegmentLoadCommand(Command);
3367 if (StringRef(SLC.segname) == "__TEXT") {
3368 TextAddress = SLC.vmaddr;
3369 break;
3370 }
3371 } else if (Command.C.cmd == MachO::LC_SEGMENT_64) {
3372 MachO::segment_command_64 SLC_64 = O->getSegment64LoadCommand(Command);
3373 if (StringRef(SLC_64.segname) == "__TEXT") {
3374 TextAddress = SLC_64.vmaddr;
3375 break;
3376 }
3377 }
3378 }
3379}
3380
3382
3386
3388 return O->BindRebaseAddress(SegmentIndex, 0);
3389}
3390
3392 return O->BindRebaseSegmentName(SegmentIndex);
3393}
3394
3396 return O->BindRebaseSectionName(SegmentIndex, SegmentOffset);
3397}
3398
3400 return O->BindRebaseAddress(SegmentIndex, SegmentOffset);
3401}
3402
3404
3405int64_t MachOAbstractFixupEntry::addend() const { return Addend; }
3406
3408
3410
3412
3414 SegmentOffset = 0;
3415 SegmentIndex = -1;
3416 Ordinal = 0;
3417 Flags = 0;
3418 Addend = 0;
3419 Done = false;
3420}
3421
3423
3425
3427 const MachOObjectFile *O,
3428 bool Parse)
3431 if (!Parse)
3432 return;
3433
3434 if (auto FixupTargetsOrErr = O->getDyldChainedFixupTargets()) {
3435 FixupTargets = *FixupTargetsOrErr;
3436 } else {
3437 *E = FixupTargetsOrErr.takeError();
3438 return;
3439 }
3440
3441 if (auto SegmentsOrErr = O->getChainedFixupsSegments()) {
3442 Segments = std::move(SegmentsOrErr->second);
3443 } else {
3444 *E = SegmentsOrErr.takeError();
3445 return;
3446 }
3447}
3448
3449void MachOChainedFixupEntry::findNextPageWithFixups() {
3450 auto FindInSegment = [this]() {
3451 const ChainedFixupsSegment &SegInfo = Segments[InfoSegIndex];
3452 while (PageIndex < SegInfo.PageStarts.size() &&
3453 SegInfo.PageStarts[PageIndex] == MachO::DYLD_CHAINED_PTR_START_NONE)
3454 ++PageIndex;
3455 return PageIndex < SegInfo.PageStarts.size();
3456 };
3457
3458 while (InfoSegIndex < Segments.size()) {
3459 if (FindInSegment()) {
3460 PageOffset = Segments[InfoSegIndex].PageStarts[PageIndex];
3461 SegmentData = O->getSegmentContents(Segments[InfoSegIndex].SegIdx);
3462 return;
3463 }
3464
3465 InfoSegIndex++;
3466 PageIndex = 0;
3467 }
3468}
3469
3472 if (Segments.empty()) {
3473 Done = true;
3474 return;
3475 }
3476
3477 InfoSegIndex = 0;
3478 PageIndex = 0;
3479
3480 findNextPageWithFixups();
3481 moveNext();
3482}
3483
3487
3489 ErrorAsOutParameter ErrAsOutParam(E);
3490
3491 if (InfoSegIndex == Segments.size()) {
3492 Done = true;
3493 return;
3494 }
3495
3496 const ChainedFixupsSegment &SegInfo = Segments[InfoSegIndex];
3497 SegmentIndex = SegInfo.SegIdx;
3498 SegmentOffset = SegInfo.Header.page_size * PageIndex + PageOffset;
3499
3500 // FIXME: Handle other pointer formats.
3501 uint16_t PointerFormat = SegInfo.Header.pointer_format;
3502 if (PointerFormat != MachO::DYLD_CHAINED_PTR_64 &&
3503 PointerFormat != MachO::DYLD_CHAINED_PTR_64_OFFSET) {
3504 *E = createError("segment " + Twine(SegmentIndex) +
3505 " has unsupported chained fixup pointer_format " +
3506 Twine(PointerFormat));
3507 moveToEnd();
3508 return;
3509 }
3510
3511 Ordinal = 0;
3512 Flags = 0;
3513 Addend = 0;
3514 PointerValue = 0;
3515 SymbolName = {};
3516
3517 if (SegmentOffset + sizeof(RawValue) > SegmentData.size()) {
3518 *E = malformedError("fixup in segment " + Twine(SegmentIndex) +
3519 " at offset " + Twine(SegmentOffset) +
3520 " extends past segment's end");
3521 moveToEnd();
3522 return;
3523 }
3524
3525 static_assert(sizeof(RawValue) == sizeof(MachO::dyld_chained_import_addend));
3526 memcpy(&RawValue, SegmentData.data() + SegmentOffset, sizeof(RawValue));
3527 if (O->isLittleEndian() != sys::IsLittleEndianHost)
3529
3530 // The bit extraction below assumes little-endian fixup entries.
3531 assert(O->isLittleEndian() && "big-endian object should have been rejected "
3532 "by getDyldChainedFixupTargets()");
3533 auto Field = [this](uint8_t Right, uint8_t Count) {
3534 return (RawValue >> Right) & ((1ULL << Count) - 1);
3535 };
3536
3537 // The `bind` field (most significant bit) of the encoded fixup determines
3538 // whether it is dyld_chained_ptr_64_bind or dyld_chained_ptr_64_rebase.
3539 bool IsBind = Field(63, 1);
3540 Kind = IsBind ? FixupKind::Bind : FixupKind::Rebase;
3541 uint32_t Next = Field(51, 12);
3542 if (IsBind) {
3543 uint32_t ImportOrdinal = Field(0, 24);
3544 uint8_t InlineAddend = Field(24, 8);
3545
3546 if (ImportOrdinal >= FixupTargets.size()) {
3547 *E = malformedError("fixup in segment " + Twine(SegmentIndex) +
3548 " at offset " + Twine(SegmentOffset) +
3549 " has out-of range import ordinal " +
3550 Twine(ImportOrdinal));
3551 moveToEnd();
3552 return;
3553 }
3554
3555 ChainedFixupTarget &Target = FixupTargets[ImportOrdinal];
3556 Ordinal = Target.libOrdinal();
3557 Addend = InlineAddend ? InlineAddend : Target.addend();
3559 SymbolName = Target.symbolName();
3560 } else {
3561 uint64_t Target = Field(0, 36);
3562 uint64_t High8 = Field(36, 8);
3563
3564 PointerValue = Target | (High8 << 56);
3565 if (PointerFormat == MachO::DYLD_CHAINED_PTR_64_OFFSET)
3567 }
3568
3569 // The stride is 4 bytes for DYLD_CHAINED_PTR_64(_OFFSET).
3570 if (Next != 0) {
3571 PageOffset += 4 * Next;
3572 } else {
3573 ++PageIndex;
3574 findNextPageWithFixups();
3575 }
3576}
3577
3579 const MachOChainedFixupEntry &Other) const {
3580 if (Done && Other.Done)
3581 return true;
3582 if (Done != Other.Done)
3583 return false;
3584 return InfoSegIndex == Other.InfoSegIndex && PageIndex == Other.PageIndex &&
3585 PageOffset == Other.PageOffset;
3586}
3587
3589 ArrayRef<uint8_t> Bytes, bool is64Bit)
3590 : E(E), O(O), Opcodes(Bytes), Ptr(Bytes.begin()),
3591 PointerSize(is64Bit ? 8 : 4) {}
3592
3593void MachORebaseEntry::moveToFirst() {
3594 Ptr = Opcodes.begin();
3595 moveNext();
3596}
3597
3598void MachORebaseEntry::moveToEnd() {
3599 Ptr = Opcodes.end();
3600 RemainingLoopCount = 0;
3601 Done = true;
3602}
3603
3605 ErrorAsOutParameter ErrAsOutParam(E);
3606 // If in the middle of some loop, move to next rebasing in loop.
3607 SegmentOffset += AdvanceAmount;
3608 if (RemainingLoopCount) {
3609 --RemainingLoopCount;
3610 return;
3611 }
3612
3613 bool More = true;
3614 while (More) {
3615 // REBASE_OPCODE_DONE is only used for padding if we are not aligned to
3616 // pointer size. Therefore it is possible to reach the end without ever
3617 // having seen REBASE_OPCODE_DONE.
3618 if (Ptr == Opcodes.end()) {
3619 Done = true;
3620 return;
3621 }
3622
3623 // Parse next opcode and set up next loop.
3624 const uint8_t *OpcodeStart = Ptr;
3625 uint8_t Byte = *Ptr++;
3626 uint8_t ImmValue = Byte & MachO::REBASE_IMMEDIATE_MASK;
3627 uint8_t Opcode = Byte & MachO::REBASE_OPCODE_MASK;
3628 uint64_t Count, Skip;
3629 const char *error = nullptr;
3630 switch (Opcode) {
3632 More = false;
3633 Done = true;
3634 moveToEnd();
3635 DEBUG_WITH_TYPE("mach-o-rebase", dbgs() << "REBASE_OPCODE_DONE\n");
3636 break;
3638 RebaseType = ImmValue;
3639 if (RebaseType > MachO::REBASE_TYPE_TEXT_PCREL32) {
3640 *E = malformedError("for REBASE_OPCODE_SET_TYPE_IMM bad bind type: " +
3641 Twine((int)RebaseType) + " for opcode at: 0x" +
3642 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
3643 moveToEnd();
3644 return;
3645 }
3647 "mach-o-rebase",
3648 dbgs() << "REBASE_OPCODE_SET_TYPE_IMM: "
3649 << "RebaseType=" << (int) RebaseType << "\n");
3650 break;
3652 SegmentIndex = ImmValue;
3653 SegmentOffset = readULEB128(&error);
3654 if (error) {
3655 *E = malformedError("for REBASE_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB " +
3656 Twine(error) + " for opcode at: 0x" +
3657 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
3658 moveToEnd();
3659 return;
3660 }
3661 error = O->RebaseEntryCheckSegAndOffsets(SegmentIndex, SegmentOffset,
3662 PointerSize);
3663 if (error) {
3664 *E = malformedError("for REBASE_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB " +
3665 Twine(error) + " for opcode at: 0x" +
3666 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
3667 moveToEnd();
3668 return;
3669 }
3671 "mach-o-rebase",
3672 dbgs() << "REBASE_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB: "
3673 << "SegmentIndex=" << SegmentIndex << ", "
3674 << format("SegmentOffset=0x%06X", SegmentOffset)
3675 << "\n");
3676 break;
3678 SegmentOffset += readULEB128(&error);
3679 if (error) {
3680 *E = malformedError("for REBASE_OPCODE_ADD_ADDR_ULEB " + Twine(error) +
3681 " for opcode at: 0x" +
3682 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
3683 moveToEnd();
3684 return;
3685 }
3686 error = O->RebaseEntryCheckSegAndOffsets(SegmentIndex, SegmentOffset,
3687 PointerSize);
3688 if (error) {
3689 *E = malformedError("for REBASE_OPCODE_ADD_ADDR_ULEB " + Twine(error) +
3690 " for opcode at: 0x" +
3691 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
3692 moveToEnd();
3693 return;
3694 }
3695 DEBUG_WITH_TYPE("mach-o-rebase",
3696 dbgs() << "REBASE_OPCODE_ADD_ADDR_ULEB: "
3697 << format("SegmentOffset=0x%06X",
3698 SegmentOffset) << "\n");
3699 break;
3701 SegmentOffset += ImmValue * PointerSize;
3702 error = O->RebaseEntryCheckSegAndOffsets(SegmentIndex, SegmentOffset,
3703 PointerSize);
3704 if (error) {
3705 *E = malformedError("for REBASE_OPCODE_ADD_ADDR_IMM_SCALED " +
3706 Twine(error) + " for opcode at: 0x" +
3707 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
3708 moveToEnd();
3709 return;
3710 }
3711 DEBUG_WITH_TYPE("mach-o-rebase",
3712 dbgs() << "REBASE_OPCODE_ADD_ADDR_IMM_SCALED: "
3713 << format("SegmentOffset=0x%06X",
3714 SegmentOffset) << "\n");
3715 break;
3717 AdvanceAmount = PointerSize;
3718 Skip = 0;
3719 Count = ImmValue;
3720 if (ImmValue != 0)
3721 RemainingLoopCount = ImmValue - 1;
3722 else
3723 RemainingLoopCount = 0;
3724 error = O->RebaseEntryCheckSegAndOffsets(SegmentIndex, SegmentOffset,
3725 PointerSize, Count, Skip);
3726 if (error) {
3727 *E = malformedError("for REBASE_OPCODE_DO_REBASE_IMM_TIMES " +
3728 Twine(error) + " for opcode at: 0x" +
3729 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
3730 moveToEnd();
3731 return;
3732 }
3734 "mach-o-rebase",
3735 dbgs() << "REBASE_OPCODE_DO_REBASE_IMM_TIMES: "
3736 << format("SegmentOffset=0x%06X", SegmentOffset)
3737 << ", AdvanceAmount=" << AdvanceAmount
3738 << ", RemainingLoopCount=" << RemainingLoopCount
3739 << "\n");
3740 return;
3742 AdvanceAmount = PointerSize;
3743 Skip = 0;
3744 Count = readULEB128(&error);
3745 if (error) {
3746 *E = malformedError("for REBASE_OPCODE_DO_REBASE_ULEB_TIMES " +
3747 Twine(error) + " for opcode at: 0x" +
3748 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
3749 moveToEnd();
3750 return;
3751 }
3752 if (Count != 0)
3753 RemainingLoopCount = Count - 1;
3754 else
3755 RemainingLoopCount = 0;
3756 error = O->RebaseEntryCheckSegAndOffsets(SegmentIndex, SegmentOffset,
3757 PointerSize, Count, Skip);
3758 if (error) {
3759 *E = malformedError("for REBASE_OPCODE_DO_REBASE_ULEB_TIMES " +
3760 Twine(error) + " for opcode at: 0x" +
3761 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
3762 moveToEnd();
3763 return;
3764 }
3766 "mach-o-rebase",
3767 dbgs() << "REBASE_OPCODE_DO_REBASE_ULEB_TIMES: "
3768 << format("SegmentOffset=0x%06X", SegmentOffset)
3769 << ", AdvanceAmount=" << AdvanceAmount
3770 << ", RemainingLoopCount=" << RemainingLoopCount
3771 << "\n");
3772 return;
3774 Skip = readULEB128(&error);
3775 if (error) {
3776 *E = malformedError("for REBASE_OPCODE_DO_REBASE_ADD_ADDR_ULEB " +
3777 Twine(error) + " for opcode at: 0x" +
3778 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
3779 moveToEnd();
3780 return;
3781 }
3782 AdvanceAmount = Skip + PointerSize;
3783 Count = 1;
3784 RemainingLoopCount = 0;
3785 error = O->RebaseEntryCheckSegAndOffsets(SegmentIndex, SegmentOffset,
3786 PointerSize, Count, Skip);
3787 if (error) {
3788 *E = malformedError("for REBASE_OPCODE_DO_REBASE_ADD_ADDR_ULEB " +
3789 Twine(error) + " for opcode at: 0x" +
3790 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
3791 moveToEnd();
3792 return;
3793 }
3795 "mach-o-rebase",
3796 dbgs() << "REBASE_OPCODE_DO_REBASE_ADD_ADDR_ULEB: "
3797 << format("SegmentOffset=0x%06X", SegmentOffset)
3798 << ", AdvanceAmount=" << AdvanceAmount
3799 << ", RemainingLoopCount=" << RemainingLoopCount
3800 << "\n");
3801 return;
3803 Count = readULEB128(&error);
3804 if (error) {
3805 *E = malformedError("for REBASE_OPCODE_DO_REBASE_ULEB_TIMES_SKIPPING_"
3806 "ULEB " +
3807 Twine(error) + " for opcode at: 0x" +
3808 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
3809 moveToEnd();
3810 return;
3811 }
3812 if (Count != 0)
3813 RemainingLoopCount = Count - 1;
3814 else
3815 RemainingLoopCount = 0;
3816 Skip = readULEB128(&error);
3817 if (error) {
3818 *E = malformedError("for REBASE_OPCODE_DO_REBASE_ULEB_TIMES_SKIPPING_"
3819 "ULEB " +
3820 Twine(error) + " for opcode at: 0x" +
3821 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
3822 moveToEnd();
3823 return;
3824 }
3825 AdvanceAmount = Skip + PointerSize;
3826
3827 error = O->RebaseEntryCheckSegAndOffsets(SegmentIndex, SegmentOffset,
3828 PointerSize, Count, Skip);
3829 if (error) {
3830 *E = malformedError("for REBASE_OPCODE_DO_REBASE_ULEB_TIMES_SKIPPING_"
3831 "ULEB " +
3832 Twine(error) + " for opcode at: 0x" +
3833 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
3834 moveToEnd();
3835 return;
3836 }
3838 "mach-o-rebase",
3839 dbgs() << "REBASE_OPCODE_DO_REBASE_ULEB_TIMES_SKIPPING_ULEB: "
3840 << format("SegmentOffset=0x%06X", SegmentOffset)
3841 << ", AdvanceAmount=" << AdvanceAmount
3842 << ", RemainingLoopCount=" << RemainingLoopCount
3843 << "\n");
3844 return;
3845 default:
3846 *E = malformedError("bad rebase info (bad opcode value 0x" +
3847 Twine::utohexstr(Opcode) + " for opcode at: 0x" +
3848 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
3849 moveToEnd();
3850 return;
3851 }
3852 }
3853}
3854
3855uint64_t MachORebaseEntry::readULEB128(const char **error) {
3856 unsigned Count;
3857 uint64_t Result = decodeULEB128(Ptr, &Count, Opcodes.end(), error);
3858 Ptr += Count;
3859 if (Ptr > Opcodes.end())
3860 Ptr = Opcodes.end();
3861 return Result;
3862}
3863
3864int32_t MachORebaseEntry::segmentIndex() const { return SegmentIndex; }
3865
3866uint64_t MachORebaseEntry::segmentOffset() const { return SegmentOffset; }
3867
3869 switch (RebaseType) {
3871 return "pointer";
3873 return "text abs32";
3875 return "text rel32";
3876 }
3877 return "unknown";
3878}
3879
3880// For use with the SegIndex of a checked Mach-O Rebase entry
3881// to get the segment name.
3883 return O->BindRebaseSegmentName(SegmentIndex);
3884}
3885
3886// For use with a SegIndex,SegOffset pair from a checked Mach-O Rebase entry
3887// to get the section name.
3889 return O->BindRebaseSectionName(SegmentIndex, SegmentOffset);
3890}
3891
3892// For use with a SegIndex,SegOffset pair from a checked Mach-O Rebase entry
3893// to get the address.
3895 return O->BindRebaseAddress(SegmentIndex, SegmentOffset);
3896}
3897
3899#ifdef EXPENSIVE_CHECKS
3900 assert(Opcodes == Other.Opcodes && "compare iterators of different files");
3901#else
3902 assert(Opcodes.data() == Other.Opcodes.data() && "compare iterators of different files");
3903#endif
3904 return (Ptr == Other.Ptr) &&
3905 (RemainingLoopCount == Other.RemainingLoopCount) &&
3906 (Done == Other.Done);
3907}
3908
3910MachOObjectFile::rebaseTable(Error &Err, MachOObjectFile *O,
3911 ArrayRef<uint8_t> Opcodes, bool is64) {
3912 if (O->BindRebaseSectionTable == nullptr)
3913 O->BindRebaseSectionTable = std::make_unique<BindRebaseSegInfo>(O);
3914 MachORebaseEntry Start(&Err, O, Opcodes, is64);
3915 Start.moveToFirst();
3916
3917 MachORebaseEntry Finish(&Err, O, Opcodes, is64);
3918 Finish.moveToEnd();
3919
3920 return make_range(rebase_iterator(Start), rebase_iterator(Finish));
3921}
3922
3926
3928 ArrayRef<uint8_t> Bytes, bool is64Bit, Kind BK)
3929 : E(E), O(O), Opcodes(Bytes), Ptr(Bytes.begin()),
3930 PointerSize(is64Bit ? 8 : 4), TableKind(BK) {}
3931
3932void MachOBindEntry::moveToFirst() {
3933 Ptr = Opcodes.begin();
3934 moveNext();
3935}
3936
3937void MachOBindEntry::moveToEnd() {
3938 Ptr = Opcodes.end();
3939 RemainingLoopCount = 0;
3940 Done = true;
3941}
3942
3944 ErrorAsOutParameter ErrAsOutParam(E);
3945 // If in the middle of some loop, move to next binding in loop.
3946 SegmentOffset += AdvanceAmount;
3947 if (RemainingLoopCount) {
3948 --RemainingLoopCount;
3949 return;
3950 }
3951
3952 bool More = true;
3953 while (More) {
3954 // BIND_OPCODE_DONE is only used for padding if we are not aligned to
3955 // pointer size. Therefore it is possible to reach the end without ever
3956 // having seen BIND_OPCODE_DONE.
3957 if (Ptr == Opcodes.end()) {
3958 Done = true;
3959 return;
3960 }
3961
3962 // Parse next opcode and set up next loop.
3963 const uint8_t *OpcodeStart = Ptr;
3964 uint8_t Byte = *Ptr++;
3965 uint8_t ImmValue = Byte & MachO::BIND_IMMEDIATE_MASK;
3966 uint8_t Opcode = Byte & MachO::BIND_OPCODE_MASK;
3967 int8_t SignExtended;
3968 const uint8_t *SymStart;
3969 uint64_t Count, Skip;
3970 const char *error = nullptr;
3971 switch (Opcode) {
3973 if (TableKind == Kind::Lazy) {
3974 // Lazying bindings have a DONE opcode between entries. Need to ignore
3975 // it to advance to next entry. But need not if this is last entry.
3976 bool NotLastEntry = false;
3977 for (const uint8_t *P = Ptr; P < Opcodes.end(); ++P) {
3978 if (*P) {
3979 NotLastEntry = true;
3980 }
3981 }
3982 if (NotLastEntry)
3983 break;
3984 }
3985 More = false;
3986 moveToEnd();
3987 DEBUG_WITH_TYPE("mach-o-bind", dbgs() << "BIND_OPCODE_DONE\n");
3988 break;
3990 if (TableKind == Kind::Weak) {
3991 *E = malformedError("BIND_OPCODE_SET_DYLIB_ORDINAL_IMM not allowed in "
3992 "weak bind table for opcode at: 0x" +
3993 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
3994 moveToEnd();
3995 return;
3996 }
3997 Ordinal = ImmValue;
3998 LibraryOrdinalSet = true;
3999 if (ImmValue > O->getLibraryCount()) {
4000 *E = malformedError("for BIND_OPCODE_SET_DYLIB_ORDINAL_ULEB bad "
4001 "library ordinal: " +
4002 Twine((int)ImmValue) + " (max " +
4003 Twine((int)O->getLibraryCount()) +
4004 ") for opcode at: 0x" +
4005 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4006 moveToEnd();
4007 return;
4008 }
4010 "mach-o-bind",
4011 dbgs() << "BIND_OPCODE_SET_DYLIB_ORDINAL_IMM: "
4012 << "Ordinal=" << Ordinal << "\n");
4013 break;
4015 if (TableKind == Kind::Weak) {
4016 *E = malformedError("BIND_OPCODE_SET_DYLIB_ORDINAL_ULEB not allowed in "
4017 "weak bind table for opcode at: 0x" +
4018 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4019 moveToEnd();
4020 return;
4021 }
4022 Ordinal = readULEB128(&error);
4023 LibraryOrdinalSet = true;
4024 if (error) {
4025 *E = malformedError("for BIND_OPCODE_SET_DYLIB_ORDINAL_ULEB " +
4026 Twine(error) + " for opcode at: 0x" +
4027 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4028 moveToEnd();
4029 return;
4030 }
4031 if (Ordinal > (int)O->getLibraryCount()) {
4032 *E = malformedError("for BIND_OPCODE_SET_DYLIB_ORDINAL_ULEB bad "
4033 "library ordinal: " +
4034 Twine((int)Ordinal) + " (max " +
4035 Twine((int)O->getLibraryCount()) +
4036 ") for opcode at: 0x" +
4037 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4038 moveToEnd();
4039 return;
4040 }
4042 "mach-o-bind",
4043 dbgs() << "BIND_OPCODE_SET_DYLIB_ORDINAL_ULEB: "
4044 << "Ordinal=" << Ordinal << "\n");
4045 break;
4047 if (TableKind == Kind::Weak) {
4048 *E = malformedError("BIND_OPCODE_SET_DYLIB_SPECIAL_IMM not allowed in "
4049 "weak bind table for opcode at: 0x" +
4050 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4051 moveToEnd();
4052 return;
4053 }
4054 if (ImmValue) {
4055 SignExtended = MachO::BIND_OPCODE_MASK | ImmValue;
4056 Ordinal = SignExtended;
4058 *E = malformedError("for BIND_OPCODE_SET_DYLIB_SPECIAL_IMM unknown "
4059 "special ordinal: " +
4060 Twine((int)Ordinal) + " for opcode at: 0x" +
4061 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4062 moveToEnd();
4063 return;
4064 }
4065 } else
4066 Ordinal = 0;
4067 LibraryOrdinalSet = true;
4069 "mach-o-bind",
4070 dbgs() << "BIND_OPCODE_SET_DYLIB_SPECIAL_IMM: "
4071 << "Ordinal=" << Ordinal << "\n");
4072 break;
4074 Flags = ImmValue;
4075 SymStart = Ptr;
4076 while (*Ptr && (Ptr < Opcodes.end())) {
4077 ++Ptr;
4078 }
4079 if (Ptr == Opcodes.end()) {
4080 *E = malformedError(
4081 "for BIND_OPCODE_SET_SYMBOL_TRAILING_FLAGS_IMM "
4082 "symbol name extends past opcodes for opcode at: 0x" +
4083 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4084 moveToEnd();
4085 return;
4086 }
4087 SymbolName = StringRef(reinterpret_cast<const char*>(SymStart),
4088 Ptr-SymStart);
4089 ++Ptr;
4091 "mach-o-bind",
4092 dbgs() << "BIND_OPCODE_SET_SYMBOL_TRAILING_FLAGS_IMM: "
4093 << "SymbolName=" << SymbolName << "\n");
4094 if (TableKind == Kind::Weak) {
4096 return;
4097 }
4098 break;
4100 BindType = ImmValue;
4101 if (ImmValue > MachO::BIND_TYPE_TEXT_PCREL32) {
4102 *E = malformedError("for BIND_OPCODE_SET_TYPE_IMM bad bind type: " +
4103 Twine((int)ImmValue) + " for opcode at: 0x" +
4104 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4105 moveToEnd();
4106 return;
4107 }
4109 "mach-o-bind",
4110 dbgs() << "BIND_OPCODE_SET_TYPE_IMM: "
4111 << "BindType=" << (int)BindType << "\n");
4112 break;
4114 Addend = readSLEB128(&error);
4115 if (error) {
4116 *E = malformedError("for BIND_OPCODE_SET_ADDEND_SLEB " + Twine(error) +
4117 " for opcode at: 0x" +
4118 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4119 moveToEnd();
4120 return;
4121 }
4123 "mach-o-bind",
4124 dbgs() << "BIND_OPCODE_SET_ADDEND_SLEB: "
4125 << "Addend=" << Addend << "\n");
4126 break;
4128 SegmentIndex = ImmValue;
4129 SegmentOffset = readULEB128(&error);
4130 if (error) {
4131 *E = malformedError("for BIND_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB " +
4132 Twine(error) + " for opcode at: 0x" +
4133 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4134 moveToEnd();
4135 return;
4136 }
4137 error = O->BindEntryCheckSegAndOffsets(SegmentIndex, SegmentOffset,
4138 PointerSize);
4139 if (error) {
4140 *E = malformedError("for BIND_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB " +
4141 Twine(error) + " for opcode at: 0x" +
4142 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4143 moveToEnd();
4144 return;
4145 }
4147 "mach-o-bind",
4148 dbgs() << "BIND_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB: "
4149 << "SegmentIndex=" << SegmentIndex << ", "
4150 << format("SegmentOffset=0x%06X", SegmentOffset)
4151 << "\n");
4152 break;
4154 SegmentOffset += readULEB128(&error);
4155 if (error) {
4156 *E = malformedError("for BIND_OPCODE_ADD_ADDR_ULEB " + Twine(error) +
4157 " for opcode at: 0x" +
4158 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4159 moveToEnd();
4160 return;
4161 }
4162 error = O->BindEntryCheckSegAndOffsets(SegmentIndex, SegmentOffset,
4163 PointerSize);
4164 if (error) {
4165 *E = malformedError("for BIND_OPCODE_ADD_ADDR_ULEB " + Twine(error) +
4166 " for opcode at: 0x" +
4167 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4168 moveToEnd();
4169 return;
4170 }
4171 DEBUG_WITH_TYPE("mach-o-bind",
4172 dbgs() << "BIND_OPCODE_ADD_ADDR_ULEB: "
4173 << format("SegmentOffset=0x%06X",
4174 SegmentOffset) << "\n");
4175 break;
4177 AdvanceAmount = PointerSize;
4178 RemainingLoopCount = 0;
4179 error = O->BindEntryCheckSegAndOffsets(SegmentIndex, SegmentOffset,
4180 PointerSize);
4181 if (error) {
4182 *E = malformedError("for BIND_OPCODE_DO_BIND " + Twine(error) +
4183 " for opcode at: 0x" +
4184 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4185 moveToEnd();
4186 return;
4187 }
4188 if (SymbolName == StringRef()) {
4189 *E = malformedError(
4190 "for BIND_OPCODE_DO_BIND missing preceding "
4191 "BIND_OPCODE_SET_SYMBOL_TRAILING_FLAGS_IMM for opcode at: 0x" +
4192 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4193 moveToEnd();
4194 return;
4195 }
4196 if (!LibraryOrdinalSet && TableKind != Kind::Weak) {
4197 *E =
4198 malformedError("for BIND_OPCODE_DO_BIND missing preceding "
4199 "BIND_OPCODE_SET_DYLIB_ORDINAL_* for opcode at: 0x" +
4200 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4201 moveToEnd();
4202 return;
4203 }
4204 DEBUG_WITH_TYPE("mach-o-bind",
4205 dbgs() << "BIND_OPCODE_DO_BIND: "
4206 << format("SegmentOffset=0x%06X",
4207 SegmentOffset) << "\n");
4208 return;
4210 if (TableKind == Kind::Lazy) {
4211 *E = malformedError("BIND_OPCODE_DO_BIND_ADD_ADDR_ULEB not allowed in "
4212 "lazy bind table for opcode at: 0x" +
4213 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4214 moveToEnd();
4215 return;
4216 }
4217 error = O->BindEntryCheckSegAndOffsets(SegmentIndex, SegmentOffset,
4218 PointerSize);
4219 if (error) {
4220 *E = malformedError("for BIND_OPCODE_DO_BIND_ADD_ADDR_ULEB " +
4221 Twine(error) + " for opcode at: 0x" +
4222 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4223 moveToEnd();
4224 return;
4225 }
4226 if (SymbolName == StringRef()) {
4227 *E = malformedError(
4228 "for BIND_OPCODE_DO_BIND_ADD_ADDR_ULEB missing "
4229 "preceding BIND_OPCODE_SET_SYMBOL_TRAILING_FLAGS_IMM for opcode "
4230 "at: 0x" +
4231 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4232 moveToEnd();
4233 return;
4234 }
4235 if (!LibraryOrdinalSet && TableKind != Kind::Weak) {
4236 *E = malformedError(
4237 "for BIND_OPCODE_DO_BIND_ADD_ADDR_ULEB missing "
4238 "preceding BIND_OPCODE_SET_DYLIB_ORDINAL_* for opcode at: 0x" +
4239 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4240 moveToEnd();
4241 return;
4242 }
4243 AdvanceAmount = readULEB128(&error) + PointerSize;
4244 if (error) {
4245 *E = malformedError("for BIND_OPCODE_DO_BIND_ADD_ADDR_ULEB " +
4246 Twine(error) + " for opcode at: 0x" +
4247 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4248 moveToEnd();
4249 return;
4250 }
4251 // Note, this is not really an error until the next bind but make no sense
4252 // for a BIND_OPCODE_DO_BIND_ADD_ADDR_ULEB to not be followed by another
4253 // bind operation.
4254 error = O->BindEntryCheckSegAndOffsets(SegmentIndex, SegmentOffset +
4255 AdvanceAmount, PointerSize);
4256 if (error) {
4257 *E = malformedError("for BIND_OPCODE_ADD_ADDR_ULEB (after adding "
4258 "ULEB) " +
4259 Twine(error) + " for opcode at: 0x" +
4260 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4261 moveToEnd();
4262 return;
4263 }
4264 RemainingLoopCount = 0;
4266 "mach-o-bind",
4267 dbgs() << "BIND_OPCODE_DO_BIND_ADD_ADDR_ULEB: "
4268 << format("SegmentOffset=0x%06X", SegmentOffset)
4269 << ", AdvanceAmount=" << AdvanceAmount
4270 << ", RemainingLoopCount=" << RemainingLoopCount
4271 << "\n");
4272 return;
4274 if (TableKind == Kind::Lazy) {
4275 *E = malformedError("BIND_OPCODE_DO_BIND_ADD_ADDR_IMM_SCALED not "
4276 "allowed in lazy bind table for opcode at: 0x" +
4277 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4278 moveToEnd();
4279 return;
4280 }
4281 if (SymbolName == StringRef()) {
4282 *E = malformedError(
4283 "for BIND_OPCODE_DO_BIND_ADD_ADDR_IMM_SCALED "
4284 "missing preceding BIND_OPCODE_SET_SYMBOL_TRAILING_FLAGS_IMM for "
4285 "opcode at: 0x" +
4286 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4287 moveToEnd();
4288 return;
4289 }
4290 if (!LibraryOrdinalSet && TableKind != Kind::Weak) {
4291 *E = malformedError(
4292 "for BIND_OPCODE_DO_BIND_ADD_ADDR_IMM_SCALED "
4293 "missing preceding BIND_OPCODE_SET_DYLIB_ORDINAL_* for opcode "
4294 "at: 0x" +
4295 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4296 moveToEnd();
4297 return;
4298 }
4299 AdvanceAmount = ImmValue * PointerSize + PointerSize;
4300 RemainingLoopCount = 0;
4301 error = O->BindEntryCheckSegAndOffsets(SegmentIndex, SegmentOffset +
4302 AdvanceAmount, PointerSize);
4303 if (error) {
4304 *E = malformedError("for BIND_OPCODE_DO_BIND_ADD_ADDR_IMM_SCALED " +
4305 Twine(error) + " for opcode at: 0x" +
4306 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4307 moveToEnd();
4308 return;
4309 }
4310 DEBUG_WITH_TYPE("mach-o-bind",
4311 dbgs()
4312 << "BIND_OPCODE_DO_BIND_ADD_ADDR_IMM_SCALED: "
4313 << format("SegmentOffset=0x%06X", SegmentOffset) << "\n");
4314 return;
4316 if (TableKind == Kind::Lazy) {
4317 *E = malformedError("BIND_OPCODE_DO_BIND_ULEB_TIMES_SKIPPING_ULEB not "
4318 "allowed in lazy bind table for opcode at: 0x" +
4319 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4320 moveToEnd();
4321 return;
4322 }
4323 Count = readULEB128(&error);
4324 if (Count != 0)
4325 RemainingLoopCount = Count - 1;
4326 else
4327 RemainingLoopCount = 0;
4328 if (error) {
4329 *E = malformedError("for BIND_OPCODE_DO_BIND_ULEB_TIMES_SKIPPING_ULEB "
4330 " (count value) " +
4331 Twine(error) + " for opcode at: 0x" +
4332 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4333 moveToEnd();
4334 return;
4335 }
4336 Skip = readULEB128(&error);
4337 AdvanceAmount = Skip + PointerSize;
4338 if (error) {
4339 *E = malformedError("for BIND_OPCODE_DO_BIND_ULEB_TIMES_SKIPPING_ULEB "
4340 " (skip value) " +
4341 Twine(error) + " for opcode at: 0x" +
4342 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4343 moveToEnd();
4344 return;
4345 }
4346 if (SymbolName == StringRef()) {
4347 *E = malformedError(
4348 "for BIND_OPCODE_DO_BIND_ULEB_TIMES_SKIPPING_ULEB "
4349 "missing preceding BIND_OPCODE_SET_SYMBOL_TRAILING_FLAGS_IMM for "
4350 "opcode at: 0x" +
4351 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4352 moveToEnd();
4353 return;
4354 }
4355 if (!LibraryOrdinalSet && TableKind != Kind::Weak) {
4356 *E = malformedError(
4357 "for BIND_OPCODE_DO_BIND_ULEB_TIMES_SKIPPING_ULEB "
4358 "missing preceding BIND_OPCODE_SET_DYLIB_ORDINAL_* for opcode "
4359 "at: 0x" +
4360 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4361 moveToEnd();
4362 return;
4363 }
4364 error = O->BindEntryCheckSegAndOffsets(SegmentIndex, SegmentOffset,
4365 PointerSize, Count, Skip);
4366 if (error) {
4367 *E =
4368 malformedError("for BIND_OPCODE_DO_BIND_ULEB_TIMES_SKIPPING_ULEB " +
4369 Twine(error) + " for opcode at: 0x" +
4370 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4371 moveToEnd();
4372 return;
4373 }
4375 "mach-o-bind",
4376 dbgs() << "BIND_OPCODE_DO_BIND_ULEB_TIMES_SKIPPING_ULEB: "
4377 << format("SegmentOffset=0x%06X", SegmentOffset)
4378 << ", AdvanceAmount=" << AdvanceAmount
4379 << ", RemainingLoopCount=" << RemainingLoopCount
4380 << "\n");
4381 return;
4382 default:
4383 *E = malformedError("bad bind info (bad opcode value 0x" +
4384 Twine::utohexstr(Opcode) + " for opcode at: 0x" +
4385 Twine::utohexstr(OpcodeStart - Opcodes.begin()));
4386 moveToEnd();
4387 return;
4388 }
4389 }
4390}
4391
4392uint64_t MachOBindEntry::readULEB128(const char **error) {
4393 unsigned Count;
4394 uint64_t Result = decodeULEB128(Ptr, &Count, Opcodes.end(), error);
4395 Ptr += Count;
4396 if (Ptr > Opcodes.end())
4397 Ptr = Opcodes.end();
4398 return Result;
4399}
4400
4401int64_t MachOBindEntry::readSLEB128(const char **error) {
4402 unsigned Count;
4403 int64_t Result = decodeSLEB128(Ptr, &Count, Opcodes.end(), error);
4404 Ptr += Count;
4405 if (Ptr > Opcodes.end())
4406 Ptr = Opcodes.end();
4407 return Result;
4408}
4409
4410int32_t MachOBindEntry::segmentIndex() const { return SegmentIndex; }
4411
4412uint64_t MachOBindEntry::segmentOffset() const { return SegmentOffset; }
4413
4415 switch (BindType) {
4417 return "pointer";
4419 return "text abs32";
4421 return "text rel32";
4422 }
4423 return "unknown";
4424}
4425
4426StringRef MachOBindEntry::symbolName() const { return SymbolName; }
4427
4428int64_t MachOBindEntry::addend() const { return Addend; }
4429
4430uint32_t MachOBindEntry::flags() const { return Flags; }
4431
4432int MachOBindEntry::ordinal() const { return Ordinal; }
4433
4434// For use with the SegIndex of a checked Mach-O Bind entry
4435// to get the segment name.
4437 return O->BindRebaseSegmentName(SegmentIndex);
4438}
4439
4440// For use with a SegIndex,SegOffset pair from a checked Mach-O Bind entry
4441// to get the section name.
4443 return O->BindRebaseSectionName(SegmentIndex, SegmentOffset);
4444}
4445
4446// For use with a SegIndex,SegOffset pair from a checked Mach-O Bind entry
4447// to get the address.
4449 return O->BindRebaseAddress(SegmentIndex, SegmentOffset);
4450}
4451
4453#ifdef EXPENSIVE_CHECKS
4454 assert(Opcodes == Other.Opcodes && "compare iterators of different files");
4455#else
4456 assert(Opcodes.data() == Other.Opcodes.data() && "compare iterators of different files");
4457#endif
4458 return (Ptr == Other.Ptr) &&
4459 (RemainingLoopCount == Other.RemainingLoopCount) &&
4460 (Done == Other.Done);
4461}
4462
4463// Build table of sections so SegIndex/SegOffset pairs can be translated.
4465 uint32_t CurSegIndex = Obj->hasPageZeroSegment() ? 1 : 0;
4466 StringRef CurSegName;
4467 uint64_t CurSegAddress;
4468 for (const SectionRef &Section : Obj->sections()) {
4469 SectionInfo Info;
4470 Expected<StringRef> NameOrErr = Section.getName();
4471 if (!NameOrErr)
4472 consumeError(NameOrErr.takeError());
4473 else
4474 Info.SectionName = *NameOrErr;
4475 Info.Address = Section.getAddress();
4476 Info.Size = Section.getSize();
4477 Info.SegmentName =
4478 Obj->getSectionFinalSegmentName(Section.getRawDataRefImpl());
4479 if (Info.SegmentName != CurSegName) {
4480 ++CurSegIndex;
4481 CurSegName = Info.SegmentName;
4482 CurSegAddress = Info.Address;
4483 }
4484 Info.SegmentIndex = CurSegIndex - 1;
4485 Info.OffsetInSegment = Info.Address - CurSegAddress;
4486 Info.SegmentStartAddress = CurSegAddress;
4487 Sections.push_back(Info);
4488 }
4489 MaxSegIndex = CurSegIndex;
4490}
4491
4492// For use with a SegIndex, SegOffset, and PointerSize triple in
4493// MachOBindEntry::moveNext() to validate a MachOBindEntry or MachORebaseEntry.
4494//
4495// Given a SegIndex, SegOffset, and PointerSize, verify a valid section exists
4496// that fully contains a pointer at that location. Multiple fixups in a bind
4497// (such as with the BIND_OPCODE_DO_BIND_ULEB_TIMES_SKIPPING_ULEB opcode) can
4498// be tested via the Count and Skip parameters.
4499const char *BindRebaseSegInfo::checkSegAndOffsets(int32_t SegIndex,
4500 uint64_t SegOffset,
4501 uint8_t PointerSize,
4503 uint64_t Skip) {
4504 if (SegIndex == -1)
4505 return "missing preceding *_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB";
4506 if (SegIndex >= MaxSegIndex)
4507 return "bad segIndex (too large)";
4508 for (uint64_t i = 0; i < Count; ++i) {
4509 uint64_t Start = SegOffset + i * (PointerSize + Skip);
4510 uint64_t End = Start + PointerSize;
4511 bool Found = false;
4512 for (const SectionInfo &SI : Sections) {
4513 if (SI.SegmentIndex != SegIndex)
4514 continue;
4515 if ((SI.OffsetInSegment<=Start) && (Start<(SI.OffsetInSegment+SI.Size))) {
4516 if (End <= SI.OffsetInSegment + SI.Size) {
4517 Found = true;
4518 break;
4519 }
4520 else
4521 return "bad offset, extends beyond section boundary";
4522 }
4523 }
4524 if (!Found)
4525 return "bad offset, not in section";
4526 }
4527 return nullptr;
4528}
4529
4530// For use with the SegIndex of a checked Mach-O Bind or Rebase entry
4531// to get the segment name.
4533 for (const SectionInfo &SI : Sections) {
4534 if (SI.SegmentIndex == SegIndex)
4535 return SI.SegmentName;
4536 }
4537 llvm_unreachable("invalid SegIndex");
4538}
4539
4540// For use with a SegIndex,SegOffset pair from a checked Mach-O Bind or Rebase
4541// to get the SectionInfo.
4542const BindRebaseSegInfo::SectionInfo &BindRebaseSegInfo::findSection(
4543 int32_t SegIndex, uint64_t SegOffset) {
4544 for (const SectionInfo &SI : Sections) {
4545 if (SI.SegmentIndex != SegIndex)
4546 continue;
4547 if (SI.OffsetInSegment > SegOffset)
4548 continue;
4549 if (SegOffset >= (SI.OffsetInSegment + SI.Size))
4550 continue;
4551 return SI;
4552 }
4553 llvm_unreachable("SegIndex and SegOffset not in any section");
4554}
4555
4556// For use with a SegIndex,SegOffset pair from a checked Mach-O Bind or Rebase
4557// entry to get the section name.
4559 uint64_t SegOffset) {
4560 return findSection(SegIndex, SegOffset).SectionName;
4561}
4562
4563// For use with a SegIndex,SegOffset pair from a checked Mach-O Bind or Rebase
4564// entry to get the address.
4566 const SectionInfo &SI = findSection(SegIndex, OffsetInSeg);
4567 return SI.SegmentStartAddress + OffsetInSeg;
4568}
4569
4571MachOObjectFile::bindTable(Error &Err, MachOObjectFile *O,
4572 ArrayRef<uint8_t> Opcodes, bool is64,
4573 MachOBindEntry::Kind BKind) {
4574 if (O->BindRebaseSectionTable == nullptr)
4575 O->BindRebaseSectionTable = std::make_unique<BindRebaseSegInfo>(O);
4576 MachOBindEntry Start(&Err, O, Opcodes, is64, BKind);
4577 Start.moveToFirst();
4578
4579 MachOBindEntry Finish(&Err, O, Opcodes, is64, BKind);
4580 Finish.moveToEnd();
4581
4582 return make_range(bind_iterator(Start), bind_iterator(Finish));
4583}
4584
4589
4594
4599
4601 if (BindRebaseSectionTable == nullptr)
4602 BindRebaseSectionTable = std::make_unique<BindRebaseSegInfo>(this);
4603
4604 MachOChainedFixupEntry Start(&Err, this, true);
4605 Start.moveToFirst();
4606
4607 MachOChainedFixupEntry Finish(&Err, this, false);
4608 Finish.moveToEnd();
4609
4610 return make_range(fixup_iterator(Start), fixup_iterator(Finish));
4611}
4612
4615 return LoadCommands.begin();
4616}
4617
4620 return LoadCommands.end();
4621}
4622
4627
4633
4636 assert(Sec.d.a < Sections.size() && "Should have detected this earlier");
4637 const section_base *Base =
4638 reinterpret_cast<const section_base *>(Sections[Sec.d.a]);
4639 return ArrayRef(Base->sectname);
4640}
4641
4644 assert(Sec.d.a < Sections.size() && "Should have detected this earlier");
4645 const section_base *Base =
4646 reinterpret_cast<const section_base *>(Sections[Sec.d.a]);
4647 return ArrayRef(Base->segname);
4648}
4649
4650bool
4657
4659 const MachO::any_relocation_info &RE) const {
4660 if (isLittleEndian())
4661 return RE.r_word1 & 0xffffff;
4662 return RE.r_word1 >> 8;
4663}
4664
4666 const MachO::any_relocation_info &RE) const {
4667 if (isLittleEndian())
4668 return (RE.r_word1 >> 27) & 1;
4669 return (RE.r_word1 >> 4) & 1;
4670}
4671
4673 const MachO::any_relocation_info &RE) const {
4674 return RE.r_word0 >> 31;
4675}
4676
4681
4683 const MachO::any_relocation_info &RE) const {
4684 return (RE.r_word0 >> 24) & 0xf;
4685}
4686
4693
4695 const MachO::any_relocation_info &RE) const {
4696 if (isRelocationScattered(RE))
4697 return getScatteredRelocationPCRel(RE);
4698 return getPlainRelocationPCRel(*this, RE);
4699}
4700
4702 const MachO::any_relocation_info &RE) const {
4703 if (isRelocationScattered(RE))
4705 return getPlainRelocationLength(*this, RE);
4706}
4707
4708unsigned
4715
4718 const MachO::any_relocation_info &RE) const {
4720 return *section_end();
4721 unsigned SecNum = getPlainRelocationSymbolNum(RE);
4722 if (SecNum == MachO::R_ABS || SecNum > Sections.size())
4723 return *section_end();
4724 DataRefImpl DRI;
4725 DRI.d.a = SecNum - 1;
4726 return SectionRef(DRI, this);
4727}
4728
4730 assert(DRI.d.a < Sections.size() && "Should have detected this earlier");
4731 return getStruct<MachO::section>(*this, Sections[DRI.d.a]);
4732}
4733
4735 assert(DRI.d.a < Sections.size() && "Should have detected this earlier");
4736 return getStruct<MachO::section_64>(*this, Sections[DRI.d.a]);
4737}
4738
4740 unsigned Index) const {
4741 const char *Sec = getSectionPtr(*this, L, Index);
4742 return getStruct<MachO::section>(*this, Sec);
4743}
4744
4746 unsigned Index) const {
4747 const char *Sec = getSectionPtr(*this, L, Index);
4748 return getStruct<MachO::section_64>(*this, Sec);
4749}
4750
4753 const char *P = reinterpret_cast<const char *>(DRI.p);
4754 return getStruct<MachO::nlist>(*this, P);
4755}
4756
4759 const char *P = reinterpret_cast<const char *>(DRI.p);
4760 return getStruct<MachO::nlist_64>(*this, P);
4761}
4762
4767
4772
4777
4782
4787
4792
4797
4802
4805 return getStruct<MachO::build_tool_version>(*this, BuildTools[index]);
4806}
4807
4812
4817
4822
4825 return getStruct<MachO::uuid_command>(*this, L.Ptr);
4826}
4827
4832
4837
4842
4847
4852
4857
4862
4867
4872
4877
4882
4887
4892
4896 if (getHeader().filetype == MachO::MH_OBJECT) {
4897 DataRefImpl Sec;
4898 Sec.d.a = Rel.d.a;
4899 if (is64Bit()) {
4900 MachO::section_64 Sect = getSection64(Sec);
4901 Offset = Sect.reloff;
4902 } else {
4903 MachO::section Sect = getSection(Sec);
4904 Offset = Sect.reloff;
4905 }
4906 } else {
4908 if (Rel.d.a == 0)
4909 Offset = DysymtabLoadCmd.extreloff; // Offset to the external relocations
4910 else
4911 Offset = DysymtabLoadCmd.locreloff; // Offset to the local relocations
4912 }
4913
4914 auto P = reinterpret_cast<const MachO::any_relocation_info *>(
4915 getPtr(*this, Offset)) + Rel.d.b;
4917 *this, reinterpret_cast<const char *>(P));
4918}
4919
4922 const char *P = reinterpret_cast<const char *>(Rel.p);
4924}
4925
4927 return Header;
4928}
4929
4931 assert(is64Bit());
4932 return Header64;
4933}
4934
4936 const MachO::dysymtab_command &DLC,
4937 unsigned Index) const {
4938 uint64_t Offset = DLC.indirectsymoff + Index * sizeof(uint32_t);
4939 return getStruct<uint32_t>(*this, getPtr(*this, Offset));
4940}
4941
4944 unsigned Index) const {
4945 uint64_t Offset = DataOffset + Index * sizeof(MachO::data_in_code_entry);
4946 return getStruct<MachO::data_in_code_entry>(*this, getPtr(*this, Offset));
4947}
4948
4950 if (SymtabLoadCmd)
4951 return getStruct<MachO::symtab_command>(*this, SymtabLoadCmd);
4952
4953 // If there is no SymtabLoadCmd return a load command with zero'ed fields.
4955 Cmd.cmd = MachO::LC_SYMTAB;
4956 Cmd.cmdsize = sizeof(MachO::symtab_command);
4957 Cmd.symoff = 0;
4958 Cmd.nsyms = 0;
4959 Cmd.stroff = 0;
4960 Cmd.strsize = 0;
4961 return Cmd;
4962}
4963
4965 if (DysymtabLoadCmd)
4966 return getStruct<MachO::dysymtab_command>(*this, DysymtabLoadCmd);
4967
4968 // If there is no DysymtabLoadCmd return a load command with zero'ed fields.
4970 Cmd.cmd = MachO::LC_DYSYMTAB;
4971 Cmd.cmdsize = sizeof(MachO::dysymtab_command);
4972 Cmd.ilocalsym = 0;
4973 Cmd.nlocalsym = 0;
4974 Cmd.iextdefsym = 0;
4975 Cmd.nextdefsym = 0;
4976 Cmd.iundefsym = 0;
4977 Cmd.nundefsym = 0;
4978 Cmd.tocoff = 0;
4979 Cmd.ntoc = 0;
4980 Cmd.modtaboff = 0;
4981 Cmd.nmodtab = 0;
4982 Cmd.extrefsymoff = 0;
4983 Cmd.nextrefsyms = 0;
4984 Cmd.indirectsymoff = 0;
4985 Cmd.nindirectsyms = 0;
4986 Cmd.extreloff = 0;
4987 Cmd.nextrel = 0;
4988 Cmd.locreloff = 0;
4989 Cmd.nlocrel = 0;
4990 return Cmd;
4991}
4992
4995 if (DataInCodeLoadCmd)
4996 return getStruct<MachO::linkedit_data_command>(*this, DataInCodeLoadCmd);
4997
4998 // If there is no DataInCodeLoadCmd return a load command with zero'ed fields.
5000 Cmd.cmd = MachO::LC_DATA_IN_CODE;
5002 Cmd.dataoff = 0;
5003 Cmd.datasize = 0;
5004 return Cmd;
5005}
5006
5009 if (LinkOptHintsLoadCmd)
5010 return getStruct<MachO::linkedit_data_command>(*this, LinkOptHintsLoadCmd);
5011
5012 // If there is no LinkOptHintsLoadCmd return a load command with zero'ed
5013 // fields.
5015 Cmd.cmd = MachO::LC_LINKER_OPTIMIZATION_HINT;
5017 Cmd.dataoff = 0;
5018 Cmd.datasize = 0;
5019 return Cmd;
5020}
5021
5023 if (!DyldInfoLoadCmd)
5024 return {};
5025
5026 auto DyldInfoOrErr =
5027 getStructOrErr<MachO::dyld_info_command>(*this, DyldInfoLoadCmd);
5028 if (!DyldInfoOrErr)
5029 return {};
5030 MachO::dyld_info_command DyldInfo = DyldInfoOrErr.get();
5031 const uint8_t *Ptr =
5032 reinterpret_cast<const uint8_t *>(getPtr(*this, DyldInfo.rebase_off));
5033 return ArrayRef(Ptr, DyldInfo.rebase_size);
5034}
5035
5037 if (!DyldInfoLoadCmd)
5038 return {};
5039
5040 auto DyldInfoOrErr =
5041 getStructOrErr<MachO::dyld_info_command>(*this, DyldInfoLoadCmd);
5042 if (!DyldInfoOrErr)
5043 return {};
5044 MachO::dyld_info_command DyldInfo = DyldInfoOrErr.get();
5045 const uint8_t *Ptr =
5046 reinterpret_cast<const uint8_t *>(getPtr(*this, DyldInfo.bind_off));
5047 return ArrayRef(Ptr, DyldInfo.bind_size);
5048}
5049
5051 if (!DyldInfoLoadCmd)
5052 return {};
5053
5054 auto DyldInfoOrErr =
5055 getStructOrErr<MachO::dyld_info_command>(*this, DyldInfoLoadCmd);
5056 if (!DyldInfoOrErr)
5057 return {};
5058 MachO::dyld_info_command DyldInfo = DyldInfoOrErr.get();
5059 const uint8_t *Ptr =
5060 reinterpret_cast<const uint8_t *>(getPtr(*this, DyldInfo.weak_bind_off));
5061 return ArrayRef(Ptr, DyldInfo.weak_bind_size);
5062}
5063
5065 if (!DyldInfoLoadCmd)
5066 return {};
5067
5068 auto DyldInfoOrErr =
5069 getStructOrErr<MachO::dyld_info_command>(*this, DyldInfoLoadCmd);
5070 if (!DyldInfoOrErr)
5071 return {};
5072 MachO::dyld_info_command DyldInfo = DyldInfoOrErr.get();
5073 const uint8_t *Ptr =
5074 reinterpret_cast<const uint8_t *>(getPtr(*this, DyldInfo.lazy_bind_off));
5075 return ArrayRef(Ptr, DyldInfo.lazy_bind_size);
5076}
5077
5079 if (!DyldInfoLoadCmd)
5080 return {};
5081
5082 auto DyldInfoOrErr =
5083 getStructOrErr<MachO::dyld_info_command>(*this, DyldInfoLoadCmd);
5084 if (!DyldInfoOrErr)
5085 return {};
5086 MachO::dyld_info_command DyldInfo = DyldInfoOrErr.get();
5087 const uint8_t *Ptr =
5088 reinterpret_cast<const uint8_t *>(getPtr(*this, DyldInfo.export_off));
5089 return ArrayRef(Ptr, DyldInfo.export_size);
5090}
5091
5094 // Load the dyld chained fixups load command.
5095 if (!DyldChainedFixupsLoadCmd)
5096 return std::nullopt;
5097 auto DyldChainedFixupsOrErr = getStructOrErr<MachO::linkedit_data_command>(
5098 *this, DyldChainedFixupsLoadCmd);
5099 if (!DyldChainedFixupsOrErr)
5100 return DyldChainedFixupsOrErr.takeError();
5101 const MachO::linkedit_data_command &DyldChainedFixups =
5102 *DyldChainedFixupsOrErr;
5103
5104 // If the load command is present but the data offset has been zeroed out,
5105 // as is the case for dylib stubs, return std::nullopt (no error).
5106 if (!DyldChainedFixups.dataoff)
5107 return std::nullopt;
5108 return DyldChainedFixups;
5109}
5110
5113 auto CFOrErr = getChainedFixupsLoadCommand();
5114 if (!CFOrErr)
5115 return CFOrErr.takeError();
5116 if (!CFOrErr->has_value())
5117 return std::nullopt;
5118
5119 const MachO::linkedit_data_command &DyldChainedFixups = **CFOrErr;
5120
5121 uint64_t CFHeaderOffset = DyldChainedFixups.dataoff;
5122 uint64_t CFSize = DyldChainedFixups.datasize;
5123
5124 // Load the dyld chained fixups header.
5125 const char *CFHeaderPtr = getPtr(*this, CFHeaderOffset);
5126 auto CFHeaderOrErr =
5128 if (!CFHeaderOrErr)
5129 return CFHeaderOrErr.takeError();
5130 MachO::dyld_chained_fixups_header CFHeader = CFHeaderOrErr.get();
5131
5132 // Reject unknown chained fixup formats.
5133 if (CFHeader.fixups_version != 0)
5134 return malformedError(Twine("bad chained fixups: unknown version: ") +
5135 Twine(CFHeader.fixups_version));
5136 if (CFHeader.imports_format < 1 || CFHeader.imports_format > 3)
5137 return malformedError(
5138 Twine("bad chained fixups: unknown imports format: ") +
5139 Twine(CFHeader.imports_format));
5140
5141 // Validate the image format.
5142 //
5143 // Load the image starts.
5144 uint64_t CFImageStartsOffset = (CFHeaderOffset + CFHeader.starts_offset);
5145 if (CFHeader.starts_offset < sizeof(MachO::dyld_chained_fixups_header)) {
5146 return malformedError(Twine("bad chained fixups: image starts offset ") +
5147 Twine(CFHeader.starts_offset) +
5148 " overlaps with chained fixups header");
5149 }
5150 uint32_t EndOffset = CFHeaderOffset + CFSize;
5151 if (CFImageStartsOffset + sizeof(MachO::dyld_chained_starts_in_image) >
5152 EndOffset) {
5153 return malformedError(Twine("bad chained fixups: image starts end ") +
5154 Twine(CFImageStartsOffset +
5156 " extends past end " + Twine(EndOffset));
5157 }
5158
5159 return CFHeader;
5160}
5161
5164 auto CFOrErr = getChainedFixupsLoadCommand();
5165 if (!CFOrErr)
5166 return CFOrErr.takeError();
5167
5168 std::vector<ChainedFixupsSegment> Segments;
5169 if (!CFOrErr->has_value())
5170 return std::make_pair(0, Segments);
5171
5172 const MachO::linkedit_data_command &DyldChainedFixups = **CFOrErr;
5173
5174 auto HeaderOrErr = getChainedFixupsHeader();
5175 if (!HeaderOrErr)
5176 return HeaderOrErr.takeError();
5177 if (!HeaderOrErr->has_value())
5178 return std::make_pair(0, Segments);
5179 const MachO::dyld_chained_fixups_header &Header = **HeaderOrErr;
5180
5181 const char *Contents = getPtr(*this, DyldChainedFixups.dataoff);
5182
5184 *this, Contents + Header.starts_offset);
5185 if (!ImageStartsOrErr)
5186 return ImageStartsOrErr.takeError();
5187 const MachO::dyld_chained_starts_in_image &ImageStarts = *ImageStartsOrErr;
5188
5189 const char *SegOffsPtr =
5190 Contents + Header.starts_offset +
5192 const char *SegOffsEnd =
5193 SegOffsPtr + ImageStarts.seg_count * sizeof(uint32_t);
5194 if (SegOffsEnd > Contents + DyldChainedFixups.datasize)
5195 return malformedError(
5196 "bad chained fixups: seg_info_offset extends past end");
5197
5198 const char *LastSegEnd = nullptr;
5199 for (size_t I = 0, N = ImageStarts.seg_count; I < N; ++I) {
5200 auto OffOrErr =
5201 getStructOrErr<uint32_t>(*this, SegOffsPtr + I * sizeof(uint32_t));
5202 if (!OffOrErr)
5203 return OffOrErr.takeError();
5204 // seg_info_offset == 0 means there is no associated starts_in_segment
5205 // entry.
5206 if (!*OffOrErr)
5207 continue;
5208
5209 auto Fail = [&](Twine Message) {
5210 return malformedError("bad chained fixups: segment info" + Twine(I) +
5211 " at offset " + Twine(*OffOrErr) + Message);
5212 };
5213
5214 const char *SegPtr = Contents + Header.starts_offset + *OffOrErr;
5215 if (LastSegEnd && SegPtr < LastSegEnd)
5216 return Fail(" overlaps with previous segment info");
5217
5218 auto SegOrErr =
5220 if (!SegOrErr)
5221 return SegOrErr.takeError();
5222 const MachO::dyld_chained_starts_in_segment &Seg = *SegOrErr;
5223
5224 LastSegEnd = SegPtr + Seg.size;
5225 if (Seg.pointer_format < 1 || Seg.pointer_format > 12)
5226 return Fail(" has unknown pointer format: " + Twine(Seg.pointer_format));
5227
5228 const char *PageStart =
5229 SegPtr + offsetof(MachO::dyld_chained_starts_in_segment, page_start);
5230 const char *PageEnd = PageStart + Seg.page_count * sizeof(uint16_t);
5231 if (PageEnd > SegPtr + Seg.size)
5232 return Fail(" : page_starts extend past seg_info size");
5233
5234 // FIXME: This does not account for multiple offsets on a single page
5235 // (DYLD_CHAINED_PTR_START_MULTI; 32-bit only).
5236 std::vector<uint16_t> PageStarts;
5237 for (size_t PageIdx = 0; PageIdx < Seg.page_count; ++PageIdx) {
5238 uint16_t Start;
5239 memcpy(&Start, PageStart + PageIdx * sizeof(uint16_t), sizeof(uint16_t));
5241 sys::swapByteOrder(Start);
5242 PageStarts.push_back(Start);
5243 }
5244
5245 Segments.emplace_back(I, *OffOrErr, Seg, std::move(PageStarts));
5246 }
5247
5248 return std::make_pair(ImageStarts.seg_count, Segments);
5249}
5250
5251// The special library ordinals have a negative value, but they are encoded in
5252// an unsigned bitfield, so we need to sign extend the value.
5253template <typename T> static int getEncodedOrdinal(T Value) {
5254 if (Value == static_cast<T>(MachO::BIND_SPECIAL_DYLIB_MAIN_EXECUTABLE) ||
5258 return Value;
5259}
5260
5261template <typename T, unsigned N>
5262static std::array<T, N> getArray(const MachOObjectFile &O, const void *Ptr) {
5263 std::array<T, N> RawValue;
5264 memcpy(RawValue.data(), Ptr, N * sizeof(T));
5265 if (O.isLittleEndian() != sys::IsLittleEndianHost)
5266 for (auto &Element : RawValue)
5267 sys::swapByteOrder(Element);
5268 return RawValue;
5269}
5270
5271Expected<std::vector<ChainedFixupTarget>>
5273 auto CFOrErr = getChainedFixupsLoadCommand();
5274 if (!CFOrErr)
5275 return CFOrErr.takeError();
5276
5277 std::vector<ChainedFixupTarget> Targets;
5278 if (!CFOrErr->has_value())
5279 return Targets;
5280
5281 const MachO::linkedit_data_command &DyldChainedFixups = **CFOrErr;
5282
5283 auto CFHeaderOrErr = getChainedFixupsHeader();
5284 if (!CFHeaderOrErr)
5285 return CFHeaderOrErr.takeError();
5286 if (!(*CFHeaderOrErr))
5287 return Targets;
5288 const MachO::dyld_chained_fixups_header &Header = **CFHeaderOrErr;
5289
5290 size_t ImportSize = 0;
5291 if (Header.imports_format == MachO::DYLD_CHAINED_IMPORT)
5292 ImportSize = sizeof(MachO::dyld_chained_import);
5293 else if (Header.imports_format == MachO::DYLD_CHAINED_IMPORT_ADDEND)
5294 ImportSize = sizeof(MachO::dyld_chained_import_addend);
5295 else if (Header.imports_format == MachO::DYLD_CHAINED_IMPORT_ADDEND64)
5296 ImportSize = sizeof(MachO::dyld_chained_import_addend64);
5297 else
5298 return malformedError("bad chained fixups: unknown imports format: " +
5299 Twine(Header.imports_format));
5300
5301 const char *Contents = getPtr(*this, DyldChainedFixups.dataoff);
5302 const char *Imports = Contents + Header.imports_offset;
5303 size_t ImportsEndOffset =
5304 Header.imports_offset + ImportSize * Header.imports_count;
5305 const char *ImportsEnd = Contents + ImportsEndOffset;
5306 const char *Symbols = Contents + Header.symbols_offset;
5307 const char *SymbolsEnd = Contents + DyldChainedFixups.datasize;
5308
5309 if (ImportsEnd > Symbols)
5310 return malformedError("bad chained fixups: imports end " +
5311 Twine(ImportsEndOffset) + " overlaps with symbols");
5312
5313 // We use bit manipulation to extract data from the bitfields. This is correct
5314 // for both LE and BE hosts, but we assume that the object is little-endian.
5315 if (!isLittleEndian())
5316 return createError("parsing big-endian chained fixups is not implemented");
5317 for (const char *ImportPtr = Imports; ImportPtr < ImportsEnd;
5318 ImportPtr += ImportSize) {
5319 int LibOrdinal;
5320 bool WeakImport;
5321 uint32_t NameOffset;
5322 uint64_t Addend;
5323 if (Header.imports_format == MachO::DYLD_CHAINED_IMPORT) {
5324 static_assert(sizeof(uint32_t) == sizeof(MachO::dyld_chained_import));
5325 auto RawValue = getArray<uint32_t, 1>(*this, ImportPtr);
5326
5327 LibOrdinal = getEncodedOrdinal<uint8_t>(RawValue[0] & 0xFF);
5328 WeakImport = (RawValue[0] >> 8) & 1;
5329 NameOffset = RawValue[0] >> 9;
5330 Addend = 0;
5331 } else if (Header.imports_format == MachO::DYLD_CHAINED_IMPORT_ADDEND) {
5332 static_assert(sizeof(uint64_t) ==
5334 auto RawValue = getArray<uint32_t, 2>(*this, ImportPtr);
5335
5336 LibOrdinal = getEncodedOrdinal<uint8_t>(RawValue[0] & 0xFF);
5337 WeakImport = (RawValue[0] >> 8) & 1;
5338 NameOffset = RawValue[0] >> 9;
5339 Addend = bit_cast<int32_t>(RawValue[1]);
5340 } else if (Header.imports_format == MachO::DYLD_CHAINED_IMPORT_ADDEND64) {
5341 static_assert(2 * sizeof(uint64_t) ==
5343 auto RawValue = getArray<uint64_t, 2>(*this, ImportPtr);
5344
5345 LibOrdinal = getEncodedOrdinal<uint16_t>(RawValue[0] & 0xFFFF);
5346 NameOffset = (RawValue[0] >> 16) & 1;
5347 WeakImport = RawValue[0] >> 17;
5348 Addend = RawValue[1];
5349 } else {
5350 llvm_unreachable("Import format should have been checked");
5351 }
5352
5353 const char *Str = Symbols + NameOffset;
5354 if (Str >= SymbolsEnd)
5355 return malformedError("bad chained fixups: symbol offset " +
5356 Twine(NameOffset) + " extends past end " +
5357 Twine(DyldChainedFixups.datasize));
5358 Targets.emplace_back(LibOrdinal, NameOffset, Str, Addend, WeakImport);
5359 }
5360
5361 return std::move(Targets);
5362}
5363
5365 if (!DyldExportsTrieLoadCmd)
5366 return {};
5367
5368 auto DyldExportsTrieOrError = getStructOrErr<MachO::linkedit_data_command>(
5369 *this, DyldExportsTrieLoadCmd);
5370 if (!DyldExportsTrieOrError)
5371 return {};
5372 MachO::linkedit_data_command DyldExportsTrie = DyldExportsTrieOrError.get();
5373 const uint8_t *Ptr =
5374 reinterpret_cast<const uint8_t *>(getPtr(*this, DyldExportsTrie.dataoff));
5375 return ArrayRef(Ptr, DyldExportsTrie.datasize);
5376}
5377
5379 if (!FuncStartsLoadCmd)
5380 return {};
5381
5382 auto InfoOrErr =
5383 getStructOrErr<MachO::linkedit_data_command>(*this, FuncStartsLoadCmd);
5384 if (!InfoOrErr)
5385 return {};
5386
5387 MachO::linkedit_data_command Info = InfoOrErr.get();
5388 SmallVector<uint64_t, 8> FunctionStarts;
5389 this->ReadULEB128s(Info.dataoff, FunctionStarts);
5390 return std::move(FunctionStarts);
5391}
5392
5394 if (!UuidLoadCmd)
5395 return {};
5396 // Returning a pointer is fine as uuid doesn't need endian swapping.
5397 const char *Ptr = UuidLoadCmd + offsetof(MachO::uuid_command, uuid);
5398 return ArrayRef(reinterpret_cast<const uint8_t *>(Ptr), 16);
5399}
5400
5405
5407 return getType() == getMachOType(false, true) ||
5408 getType() == getMachOType(true, true);
5409}
5410
5412 SmallVectorImpl<uint64_t> &Out) const {
5413 DataExtractor extractor(ObjectFile::getData(), true);
5414
5415 uint64_t offset = Index;
5416 uint64_t data = 0;
5417 while (uint64_t delta = extractor.getULEB128(&offset)) {
5418 data += delta;
5419 Out.push_back(data);
5420 }
5421}
5422
5426
5427/// Create a MachOObjectFile instance from a given buffer.
5428///
5429/// \param Buffer Memory buffer containing the MachO binary data.
5430/// \param UniversalCputype CPU type when the MachO part of a universal binary.
5431/// \param UniversalIndex Index of the MachO within a universal binary.
5432/// \param MachOFilesetEntryOffset Offset of the MachO entry in a fileset MachO.
5433/// \returns A std::unique_ptr to a MachOObjectFile instance on success.
5435 MemoryBufferRef Buffer, uint32_t UniversalCputype, uint32_t UniversalIndex,
5436 size_t MachOFilesetEntryOffset) {
5437 StringRef Magic = Buffer.getBuffer().slice(0, 4);
5438 if (Magic == "\xFE\xED\xFA\xCE")
5439 return MachOObjectFile::create(Buffer, false, false, UniversalCputype,
5440 UniversalIndex, MachOFilesetEntryOffset);
5441 if (Magic == "\xCE\xFA\xED\xFE")
5442 return MachOObjectFile::create(Buffer, true, false, UniversalCputype,
5443 UniversalIndex, MachOFilesetEntryOffset);
5444 if (Magic == "\xFE\xED\xFA\xCF")
5445 return MachOObjectFile::create(Buffer, false, true, UniversalCputype,
5446 UniversalIndex, MachOFilesetEntryOffset);
5447 if (Magic == "\xCF\xFA\xED\xFE")
5448 return MachOObjectFile::create(Buffer, true, true, UniversalCputype,
5449 UniversalIndex, MachOFilesetEntryOffset);
5450 return make_error<GenericBinaryError>("Unrecognized MachO magic number",
5452}
5453
5455 return StringSwitch<StringRef>(Name)
5456 .Case("debug_str_offs", "debug_str_offsets")
5457 .Default(Name);
5458}
5459
5462 SmallString<256> BundlePath(Path);
5463 // Normalize input path. This is necessary to accept `bundle.dSYM/`.
5464 sys::path::remove_dots(BundlePath);
5465 if (!sys::fs::is_directory(BundlePath) ||
5466 sys::path::extension(BundlePath) != ".dSYM")
5467 return std::vector<std::string>();
5468 sys::path::append(BundlePath, "Contents", "Resources", "DWARF");
5469 bool IsDir;
5470 auto EC = sys::fs::is_directory(BundlePath, IsDir);
5471 if (EC == errc::no_such_file_or_directory || (!EC && !IsDir))
5472 return createStringError(
5473 EC, "%s: expected directory 'Contents/Resources/DWARF' in dSYM bundle",
5474 Path.str().c_str());
5475 if (EC)
5476 return createFileError(BundlePath, errorCodeToError(EC));
5477
5478 std::vector<std::string> ObjectPaths;
5479 for (sys::fs::directory_iterator Dir(BundlePath, EC), DirEnd;
5480 Dir != DirEnd && !EC; Dir.increment(EC)) {
5481 StringRef ObjectPath = Dir->path();
5483 if (auto EC = sys::fs::status(ObjectPath, Status))
5484 return createFileError(ObjectPath, errorCodeToError(EC));
5485 switch (Status.type()) {
5489 ObjectPaths.push_back(ObjectPath.str());
5490 break;
5491 default: /*ignore*/;
5492 }
5493 }
5494 if (EC)
5495 return createFileError(BundlePath, errorCodeToError(EC));
5496 if (ObjectPaths.empty())
5497 return createStringError(std::error_code(),
5498 "%s: no objects found in dSYM bundle",
5499 Path.str().c_str());
5500 return ObjectPaths;
5501}
5502
5505 StringRef SectionName) const {
5506#define HANDLE_SWIFT_SECTION(KIND, MACHO, ELF, COFF) \
5507 .Case(MACHO, llvm::binaryformat::Swift5ReflectionSectionKind::KIND)
5510#include "llvm/BinaryFormat/Swift.def"
5512#undef HANDLE_SWIFT_SECTION
5513}
5514
5516 switch (Arch) {
5517 case Triple::x86:
5518 return RelocType == MachO::GENERIC_RELOC_SECTDIFF ||
5520 case Triple::x86_64:
5521 return RelocType == MachO::X86_64_RELOC_SUBTRACTOR;
5522 case Triple::arm:
5523 case Triple::thumb:
5524 return RelocType == MachO::ARM_RELOC_SECTDIFF ||
5525 RelocType == MachO::ARM_RELOC_LOCAL_SECTDIFF ||
5526 RelocType == MachO::ARM_RELOC_HALF ||
5527 RelocType == MachO::ARM_RELOC_HALF_SECTDIFF;
5528 case Triple::aarch64:
5529 return RelocType == MachO::ARM64_RELOC_SUBTRACTOR;
5530 default:
5531 return false;
5532 }
5533}
#define Fail
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
Unify divergent function exit nodes
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
#define offsetof(TYPE, MEMBER)
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
#define H(x, y, z)
Definition MD5.cpp:56
static MachO::nlist_base getSymbolTableEntryBase(const MachOObjectFile &O, DataRefImpl DRI)
static Error checkVersCommand(const MachOObjectFile &Obj, const MachOObjectFile::LoadCommandInfo &Load, uint32_t LoadCommandIndex, const char **LoadCmd, const char *CmdName)
static Error checkSymtabCommand(const MachOObjectFile &Obj, const MachOObjectFile::LoadCommandInfo &Load, uint32_t LoadCommandIndex, const char **SymtabLoadCmd, std::list< MachOElement > &Elements)
static Error checkTwoLevelHintsCommand(const MachOObjectFile &Obj, const MachOObjectFile::LoadCommandInfo &Load, uint32_t LoadCommandIndex, const char **LoadCmd, std::list< MachOElement > &Elements)
static Error parseBuildVersionCommand(const MachOObjectFile &Obj, const MachOObjectFile::LoadCommandInfo &Load, SmallVectorImpl< const char * > &BuildTools, uint32_t LoadCommandIndex)
static unsigned getPlainRelocationType(const MachOObjectFile &O, const MachO::any_relocation_info &RE)
static Error checkDysymtabCommand(const MachOObjectFile &Obj, const MachOObjectFile::LoadCommandInfo &Load, uint32_t LoadCommandIndex, const char **DysymtabLoadCmd, std::list< MachOElement > &Elements)
static Error checkDylibCommand(const MachOObjectFile &Obj, const MachOObjectFile::LoadCommandInfo &Load, uint32_t LoadCommandIndex, const char *CmdName)
static Expected< T > getStructOrErr(const MachOObjectFile &O, const char *P)
static Expected< MachOObjectFile::LoadCommandInfo > getFirstLoadCommandInfo(const MachOObjectFile &Obj)
static const char * getPtr(const MachOObjectFile &O, size_t Offset, size_t MachOFilesetEntryOffset=0)
static Error parseSegmentLoadCommand(const MachOObjectFile &Obj, const MachOObjectFile::LoadCommandInfo &Load, SmallVectorImpl< const char * > &Sections, bool &IsPageZeroSegment, uint32_t LoadCommandIndex, const char *CmdName, uint64_t SizeOfHeaders, std::list< MachOElement > &Elements)
static Error checkDyldInfoCommand(const MachOObjectFile &Obj, const MachOObjectFile::LoadCommandInfo &Load, uint32_t LoadCommandIndex, const char **LoadCmd, const char *CmdName, std::list< MachOElement > &Elements)
static unsigned getScatteredRelocationLength(const MachO::any_relocation_info &RE)
static unsigned getPlainRelocationLength(const MachOObjectFile &O, const MachO::any_relocation_info &RE)
static Error checkSubCommand(const MachOObjectFile &Obj, const MachOObjectFile::LoadCommandInfo &Load, uint32_t LoadCommandIndex, const char *CmdName, size_t SizeOfCmd, const char *CmdStructName, uint32_t PathOffset, const char *PathFieldName)
static Error checkRpathCommand(const MachOObjectFile &Obj, const MachOObjectFile::LoadCommandInfo &Load, uint32_t LoadCommandIndex)
static T getStruct(const MachOObjectFile &O, const char *P)
static uint32_t getPlainRelocationAddress(const MachO::any_relocation_info &RE)
static const char * getSectionPtr(const MachOObjectFile &O, MachOObjectFile::LoadCommandInfo L, unsigned Sec)
static Error checkLinkerOptCommand(const MachOObjectFile &Obj, const MachOObjectFile::LoadCommandInfo &Load, uint32_t LoadCommandIndex)
static bool getPlainRelocationPCRel(const MachOObjectFile &O, const MachO::any_relocation_info &RE)
static std::array< T, N > getArray(const MachOObjectFile &O, const void *Ptr)
static unsigned getScatteredRelocationAddress(const MachO::any_relocation_info &RE)
static Error checkThreadCommand(const MachOObjectFile &Obj, const MachOObjectFile::LoadCommandInfo &Load, uint32_t LoadCommandIndex, const char *CmdName)
static Error checkLinkeditDataCommand(const MachOObjectFile &Obj, const MachOObjectFile::LoadCommandInfo &Load, uint32_t LoadCommandIndex, const char **LoadCmd, const char *CmdName, std::list< MachOElement > &Elements, const char *ElementName)
static Error malformedError(const Twine &Msg)
static bool isLoadCommandObsolete(uint32_t cmd)
static uint32_t getSectionFlags(const MachOObjectFile &O, DataRefImpl Sec)
static int getEncodedOrdinal(T Value)
static Error checkTargetTripleCommand(const MachOObjectFile &Obj, const MachOObjectFile::LoadCommandInfo &Load, uint32_t LoadCommandIndex)
static bool getScatteredRelocationPCRel(const MachO::any_relocation_info &RE)
static Error checkOverlappingElement(std::list< MachOElement > &Elements, uint64_t Offset, uint64_t Size, const char *Name)
static StringRef parseSegmentOrSectionName(const char *P)
static Expected< MachOObjectFile::LoadCommandInfo > getLoadCommandInfo(const MachOObjectFile &Obj, const char *Ptr, uint32_t LoadCommandIndex)
static void parseHeader(const MachOObjectFile &Obj, T &Header, Error &Err)
static unsigned getCPUType(const MachOObjectFile &O)
static Error checkDyldCommand(const MachOObjectFile &Obj, const MachOObjectFile::LoadCommandInfo &Load, uint32_t LoadCommandIndex, const char *CmdName)
static Error checkNoteCommand(const MachOObjectFile &Obj, const MachOObjectFile::LoadCommandInfo &Load, uint32_t LoadCommandIndex, std::list< MachOElement > &Elements)
static Error checkDylibIdCommand(const MachOObjectFile &Obj, const MachOObjectFile::LoadCommandInfo &Load, uint32_t LoadCommandIndex, const char **LoadCmd)
static unsigned getCPUSubType(const MachOObjectFile &O)
static Error checkEncryptCommand(const MachOObjectFile &Obj, const MachOObjectFile::LoadCommandInfo &Load, uint32_t LoadCommandIndex, uint64_t cryptoff, uint64_t cryptsize, const char **LoadCmd, const char *CmdName)
static Expected< MachOObjectFile::LoadCommandInfo > getNextLoadCommandInfo(const MachOObjectFile &Obj, uint32_t LoadCommandIndex, const MachOObjectFile::LoadCommandInfo &L)
#define T
static Error malformedError(Twine Msg)
Definition Archive.cpp:44
OptimizedStructLayoutField Field
#define P(N)
if(PassOpts->AAPipeline)
const char * Msg
This file contains some templates that are useful if you are working with the STL at all.
static StringRef substr(StringRef Str, uint64_t Len)
This file defines the SmallVector class.
static Split data
This file implements the StringSwitch template, which mimics a switch() statement whose cases are str...
#define DEBUG_WITH_TYPE(TYPE,...)
DEBUG_WITH_TYPE macro - This macro should be used by passes to emit debug information.
Definition Debug.h:72
#define error(X)
static uint64_t readULEB128(WasmObjectFile::ReadContext &Ctx)
static bool is64Bit(const char *name)
This file implements the C++20 <bit> header.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
iterator end() const
Definition ArrayRef.h:130
iterator begin() const
Definition ArrayRef.h:129
bool empty() const
Check if the array is empty.
Definition ArrayRef.h:136
const T * data() const
Definition ArrayRef.h:138
LLVM_ABI uint64_t getULEB128(uint64_t *offset_ptr, llvm::Error *Err=nullptr) const
Extract a unsigned LEB128 value from *offset_ptr.
Helper for Errors used as out-parameters.
Definition Error.h:1160
Lightweight error class with error context and mandatory checking.
Definition Error.h:159
static ErrorSuccess success()
Create a success value.
Definition Error.h:336
Tagged union holding either a T or a Error.
Definition Error.h:485
Error takeError()
Take ownership of the stored error.
Definition Error.h:612
reference get()
Returns a reference to the stored T value.
Definition Error.h:582
StringRef getBuffer() const
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
Definition SmallString.h:26
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void resize(size_type N)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
static constexpr size_t npos
Definition StringRef.h:58
std::string str() const
Get the contents as an std::string.
Definition StringRef.h:222
constexpr StringRef substr(size_t Start, size_t N=npos) const
Return a reference to the substring from [Start, Start + N).
Definition StringRef.h:597
bool starts_with(StringRef Prefix) const
Check if this string starts with the given Prefix.
Definition StringRef.h:258
constexpr bool empty() const
Check if the string is empty.
Definition StringRef.h:141
iterator begin() const
Definition StringRef.h:114
char back() const
Get the last character in the string.
Definition StringRef.h:153
StringRef slice(size_t Start, size_t End) const
Return a reference to the substring from [Start, End).
Definition StringRef.h:720
constexpr size_t size() const
Get the string size.
Definition StringRef.h:144
size_t rfind(char C, size_t From=npos) const
Search for the last character C in the string.
Definition StringRef.h:365
iterator end() const
Definition StringRef.h:116
size_t find(char C, size_t From=0) const
Search for the first character C in the string.
Definition StringRef.h:290
A switch()-like statement whose cases are string literals.
StringSwitch & Case(StringLiteral S, T Value)
A table of densely packed, null-terminated strings indexed by offset.
Definition StringTable.h:34
constexpr size_t size() const
Returns the byte size of the table.
Target - Wrapper for Target specific information.
Triple - Helper class for working with autoconf configuration names.
Definition Triple.h:48
@ UnknownArch
Definition Triple.h:51
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
static Twine utohexstr(uint64_t Val)
Definition Twine.h:385
LLVM Value Representation.
Definition Value.h:75
A range adaptor for a pair of iterators.
DataRefImpl getRawDataRefImpl() const
StringRef getData() const
Definition Binary.cpp:39
unsigned int getType() const
Definition Binary.h:106
bool isLittleEndian() const
Definition Binary.h:157
static unsigned int getMachOType(bool isLE, bool is64Bits)
Definition Binary.h:87
LLVM_ABI StringRef segmentName(int32_t SegIndex)
LLVM_ABI StringRef sectionName(int32_t SegIndex, uint64_t SegOffset)
LLVM_ABI BindRebaseSegInfo(const MachOObjectFile *Obj)
LLVM_ABI const char * checkSegAndOffsets(int32_t SegIndex, uint64_t SegOffset, uint8_t PointerSize, uint64_t Count=1, uint64_t Skip=0)
LLVM_ABI uint64_t address(uint32_t SegIndex, uint64_t SegOffset)
DiceRef - This is a value type class that represents a single data in code entry in the table in a Ma...
Definition MachO.h:45
ExportEntry encapsulates the current-state-of-the-walk used when doing a non-recursive walk of the tr...
Definition MachO.h:74
LLVM_ABI StringRef name() const
LLVM_ABI ExportEntry(Error *Err, const MachOObjectFile *O, ArrayRef< uint8_t > Trie)
LLVM_ABI bool operator==(const ExportEntry &) const
LLVM_ABI StringRef otherName() const
LLVM_ABI uint64_t address() const
LLVM_ABI uint64_t flags() const
LLVM_ABI uint32_t nodeOffset() const
friend class MachOObjectFile
Definition MachO.h:91
LLVM_ABI uint64_t other() const
LLVM_ABI MachOAbstractFixupEntry(Error *Err, const MachOObjectFile *O)
const MachOObjectFile * O
Definition MachO.h:359
MachOBindEntry encapsulates the current state in the decompression of binding opcodes.
Definition MachO.h:213
LLVM_ABI uint32_t flags() const
LLVM_ABI bool operator==(const MachOBindEntry &) const
LLVM_ABI StringRef symbolName() const
LLVM_ABI StringRef sectionName() const
LLVM_ABI MachOBindEntry(Error *Err, const MachOObjectFile *O, ArrayRef< uint8_t > Opcodes, bool is64Bit, MachOBindEntry::Kind)
LLVM_ABI StringRef segmentName() const
LLVM_ABI uint64_t segmentOffset() const
LLVM_ABI int64_t addend() const
LLVM_ABI uint64_t address() const
friend class MachOObjectFile
Definition MachO.h:238
LLVM_ABI int32_t segmentIndex() const
LLVM_ABI StringRef typeName() const
LLVM_ABI bool operator==(const MachOChainedFixupEntry &) const
LLVM_ABI MachOChainedFixupEntry(Error *Err, const MachOObjectFile *O, bool Parse)
MachO::sub_client_command getSubClientCommand(const LoadCommandInfo &L) const
void moveSectionNext(DataRefImpl &Sec) const override
ArrayRef< char > getSectionRawFinalSegmentName(DataRefImpl Sec) const
uint8_t getBytesInAddress() const override
The number of bytes used to represent an address in this object file format.
Triple::ArchType getArch() const override
MachO::mach_header_64 Header64
Definition MachO.h:854
bool isSectionData(DataRefImpl Sec) const override
const MachO::mach_header_64 & getHeader64() const
Expected< std::vector< ChainedFixupTarget > > getDyldChainedFixupTargets() const
uint64_t getSectionAlignment(DataRefImpl Sec) const override
uint32_t getScatteredRelocationType(const MachO::any_relocation_info &RE) const
symbol_iterator getRelocationSymbol(DataRefImpl Rel) const override
Expected< SectionRef > getSection(unsigned SectionIndex) const
iterator_range< rebase_iterator > rebaseTable(Error &Err)
For use iterating over all rebase table entries.
std::error_code getIndirectName(DataRefImpl Symb, StringRef &Res) const
load_command_iterator begin_load_commands() const
MachO::encryption_info_command_64 getEncryptionInfoCommand64(const LoadCommandInfo &L) const
StringRef getFileFormatName() const override
dice_iterator begin_dices() const
basic_symbol_iterator symbol_begin() const override
Expected< std::optional< MachO::linkedit_data_command > > getChainedFixupsLoadCommand() const
iterator_range< export_iterator > exports(Error &Err) const
For use iterating over all exported symbols.
uint64_t getSymbolIndex(DataRefImpl Symb) const
MachO::build_version_command getBuildVersionLoadCommand(const LoadCommandInfo &L) const
section_iterator section_end() const override
MachO::build_tool_version getBuildToolVersion(unsigned index) const
MachO::linkedit_data_command getDataInCodeLoadCommand() const
MachO::routines_command getRoutinesCommand(const LoadCommandInfo &L) const
MachO::nlist getSymbolTableEntry(DataRefImpl DRI) const
unsigned getSymbolSectionID(SymbolRef Symb) const
static Expected< std::vector< std::string > > findDsymObjectMembers(StringRef Path)
If the input path is a .dSYM bundle (as created by the dsymutil tool), return the paths to the object...
uint32_t getScatteredRelocationValue(const MachO::any_relocation_info &RE) const
MachO::linker_option_command getLinkerOptionLoadCommand(const LoadCommandInfo &L) const
MachO::entry_point_command getEntryPointCommand(const LoadCommandInfo &L) const
Expected< section_iterator > getSymbolSection(DataRefImpl Symb) const override
uint64_t getRelocationOffset(DataRefImpl Rel) const override
ArrayRef< uint8_t > getDyldInfoLazyBindOpcodes() const
void moveSymbolNext(DataRefImpl &Symb) const override
SectionRef getAnyRelocationSection(const MachO::any_relocation_info &RE) const
MachO::dysymtab_command getDysymtabLoadCommand() const
iterator_range< bind_iterator > bindTable(Error &Err)
For use iterating over all bind table entries.
MachO::mach_header Header
Definition MachO.h:855
uint64_t getCommonSymbolSizeImpl(DataRefImpl Symb) const override
relocation_iterator section_rel_begin(DataRefImpl Sec) const override
MachO::section_64 getSection64(DataRefImpl DRI) const
MachO::fileset_entry_command getFilesetEntryLoadCommand(const LoadCommandInfo &L) const
MachO::note_command getNoteLoadCommand(const LoadCommandInfo &L) const
MachO::thread_command getThreadCommand(const LoadCommandInfo &L) const
section_iterator section_begin() const override
bool isRelocatableObject() const override
True if this is a relocatable object (.o/.obj).
MachO::segment_command_64 getSegment64LoadCommand(const LoadCommandInfo &L) const
relocation_iterator section_rel_end(DataRefImpl Sec) const override
ArrayRef< uint8_t > getDyldInfoExportsTrie() const
bool isDebugSection(DataRefImpl Sec) const override
MachO::nlist_64 getSymbol64TableEntry(DataRefImpl DRI) const
unsigned getSectionType(SectionRef Sec) const
MachO::segment_command getSegmentLoadCommand(const LoadCommandInfo &L) const
static Expected< std::unique_ptr< MachOObjectFile > > create(MemoryBufferRef Object, bool IsLittleEndian, bool Is64Bits, uint32_t UniversalCputype=0, uint32_t UniversalIndex=0, size_t MachOFilesetEntryOffset=0)
StringRef getSectionFinalSegmentName(DataRefImpl Sec) const
MachO::linkedit_data_command getLinkOptHintsLoadCommand() const
unsigned getAnyRelocationType(const MachO::any_relocation_info &RE) const
MachO::rpath_command getRpathCommand(const LoadCommandInfo &L) const
MachO::routines_command_64 getRoutinesCommand64(const LoadCommandInfo &L) const
MachO::sub_framework_command getSubFrameworkCommand(const LoadCommandInfo &L) const
SmallVector< uint64_t > getFunctionStarts() const
MachO::sub_library_command getSubLibraryCommand(const LoadCommandInfo &L) const
MachO::dyld_info_command getDyldInfoLoadCommand(const LoadCommandInfo &L) const
MachO::sub_umbrella_command getSubUmbrellaCommand(const LoadCommandInfo &L) const
ArrayRef< uint8_t > getDyldExportsTrie() const
Expected< uint32_t > getSymbolFlags(DataRefImpl Symb) const override
section_iterator getRelocationRelocatedSection(relocation_iterator Rel) const
bool isSectionBSS(DataRefImpl Sec) const override
Expected< std::pair< size_t, std::vector< ChainedFixupsSegment > > > getChainedFixupsSegments() const
bool isSectionVirtual(DataRefImpl Sec) const override
bool getScatteredRelocationScattered(const MachO::any_relocation_info &RE) const
Expected< StringRef > getSymbolName(DataRefImpl Symb) const override
bool getPlainRelocationExternal(const MachO::any_relocation_info &RE) const
LoadCommandList::const_iterator load_command_iterator
Definition MachO.h:416
symbol_iterator getSymbolByIndex(unsigned Index) const
MachO::encryption_info_command getEncryptionInfoCommand(const LoadCommandInfo &L) const
const MachO::mach_header & getHeader() const
unsigned getAnyRelocationPCRel(const MachO::any_relocation_info &RE) const
iterator_range< bind_iterator > weakBindTable(Error &Err)
For use iterating over all weak bind table entries.
static bool isMachOPairedReloc(uint64_t RelocType, uint64_t Arch)
ArrayRef< uint8_t > getDyldInfoRebaseOpcodes() const
iterator_range< load_command_iterator > load_commands() const
MachO::target_triple_command getTargetTripleLoadCommand(const LoadCommandInfo &L) const
unsigned getAnyRelocationLength(const MachO::any_relocation_info &RE) const
MachO::symtab_command getSymtabLoadCommand() const
Triple getArchTriple(const char **McpuDefault=nullptr) const
MachO::uuid_command getUuidCommand(const LoadCommandInfo &L) const
unsigned getPlainRelocationSymbolNum(const MachO::any_relocation_info &RE) const
ArrayRef< uint8_t > getUuid() const
MachO::version_min_command getVersionMinLoadCommand(const LoadCommandInfo &L) const
StringRef mapDebugSectionName(StringRef Name) const override
Maps a debug section name to a standard DWARF section name.
MachO::dylinker_command getDylinkerCommand(const LoadCommandInfo &L) const
uint64_t getRelocationType(DataRefImpl Rel) const override
relocation_iterator extrel_begin() const
void moveRelocationNext(DataRefImpl &Rel) const override
MachO::any_relocation_info getRelocation(DataRefImpl Rel) const
basic_symbol_iterator symbol_end() const override
MachO::data_in_code_entry getDataInCodeTableEntry(uint32_t DataOffset, unsigned Index) const
MachO::data_in_code_entry getDice(DataRefImpl Rel) const
bool isSectionStripped(DataRefImpl Sec) const override
When dsymutil generates the companion file, it strips all unnecessary sections (e....
uint64_t getSectionIndex(DataRefImpl Sec) const override
iterator_range< fixup_iterator > fixupTable(Error &Err)
For iterating over all chained fixups.
void ReadULEB128s(uint64_t Index, SmallVectorImpl< uint64_t > &Out) const
iterator_range< bind_iterator > lazyBindTable(Error &Err)
For use iterating over all lazy bind table entries.
load_command_iterator end_load_commands() const
ArrayRef< uint8_t > getDyldInfoBindOpcodes() const
Expected< SymbolRef::Type > getSymbolType(DataRefImpl Symb) const override
uint64_t getSectionAddress(DataRefImpl Sec) const override
Expected< StringRef > getSectionName(DataRefImpl Sec) const override
uint8_t getRelocationLength(DataRefImpl Rel) const
llvm::binaryformat::Swift5ReflectionSectionKind mapReflectionSectionNameToEnumValue(StringRef SectionName) const override
ArrayRef< uint8_t > getDyldInfoWeakBindOpcodes() const
static bool isValidArch(StringRef ArchFlag)
bool isSectionText(DataRefImpl Sec) const override
bool isSectionCompressed(DataRefImpl Sec) const override
static ArrayRef< StringRef > getValidArchs()
bool isSectionBitcode(DataRefImpl Sec) const override
bool isRelocationScattered(const MachO::any_relocation_info &RE) const
relocation_iterator locrel_begin() const
Expected< std::optional< MachO::dyld_chained_fixups_header > > getChainedFixupsHeader() const
If the optional is std::nullopt, no header was found, but the object was well-formed.
uint32_t getSymbolAlignment(DataRefImpl Symb) const override
MachO::source_version_command getSourceVersionCommand(const LoadCommandInfo &L) const
unsigned getAnyRelocationAddress(const MachO::any_relocation_info &RE) const
void getRelocationTypeName(DataRefImpl Rel, SmallVectorImpl< char > &Result) const override
ArrayRef< char > getSectionRawName(DataRefImpl Sec) const
uint64_t getNValue(DataRefImpl Sym) const
ArrayRef< uint8_t > getSegmentContents(StringRef SegmentName) const
Return the raw contents of an entire segment.
section_iterator getRelocationSection(DataRefImpl Rel) const
unsigned getSectionID(SectionRef Sec) const
MachO::linkedit_data_command getLinkeditDataLoadCommand(const LoadCommandInfo &L) const
ArrayRef< uint8_t > getSectionContents(uint64_t Offset, uint64_t Size) const
Expected< uint64_t > getSymbolAddress(DataRefImpl Symb) const override
MachO::dylib_command getDylibIDLoadCommand(const LoadCommandInfo &L) const
uint32_t getIndirectSymbolTableEntry(const MachO::dysymtab_command &DLC, unsigned Index) const
uint64_t getSectionSize(DataRefImpl Sec) const override
relocation_iterator extrel_end() const
static StringRef guessLibraryShortName(StringRef Name, bool &isFramework, StringRef &Suffix)
relocation_iterator locrel_end() const
std::error_code getLibraryShortNameByIndex(unsigned Index, StringRef &) const
MachORebaseEntry encapsulates the current state in the decompression of rebasing opcodes.
Definition MachO.h:169
LLVM_ABI int32_t segmentIndex() const
LLVM_ABI StringRef segmentName() const
LLVM_ABI MachORebaseEntry(Error *Err, const MachOObjectFile *O, ArrayRef< uint8_t > opcodes, bool is64Bit)
LLVM_ABI bool operator==(const MachORebaseEntry &) const
LLVM_ABI uint64_t address() const
LLVM_ABI StringRef sectionName() const
friend class MachOObjectFile
Definition MachO.h:186
LLVM_ABI uint64_t segmentOffset() const
LLVM_ABI StringRef typeName() const
This class is the base class for all object file types.
Definition ObjectFile.h:231
friend class RelocationRef
Definition ObjectFile.h:289
static Expected< std::unique_ptr< MachOObjectFile > > createMachOObjectFile(MemoryBufferRef Object, uint32_t UniversalCputype=0, uint32_t UniversalIndex=0, size_t MachOFilesetEntryOffset=0)
Create a MachOObjectFile instance from a given buffer.
section_iterator_range sections() const
Definition ObjectFile.h:331
symbol_iterator_range symbols() const
Definition ObjectFile.h:323
Expected< uint64_t > getSymbolValue(DataRefImpl Symb) const
DataRefImpl getRawDataRefImpl() const
Definition ObjectFile.h:641
This is a value type class that represents a single section in the list of sections in the object fil...
Definition ObjectFile.h:83
DataRefImpl getRawDataRefImpl() const
Definition ObjectFile.h:603
bool isData() const
Whether this section contains data, not instructions.
Definition ObjectFile.h:559
bool isBSS() const
Whether this section contains BSS uninitialized data.
Definition ObjectFile.h:563
directory_iterator - Iterates through the entries in path.
Represents the result of a call to sys::fs::status().
Definition FileSystem.h:222
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
const uint32_t x86_FLOAT_STATE_COUNT
Definition MachO.h:2055
@ SECTION_TYPE
Definition MachO.h:114
@ DYLD_CHAINED_IMPORT
Definition MachO.h:1090
@ DYLD_CHAINED_IMPORT_ADDEND
Definition MachO.h:1091
@ DYLD_CHAINED_IMPORT_ADDEND64
Definition MachO.h:1092
const uint32_t ARM_THREAD_STATE64_COUNT
Definition MachO.h:2133
@ EXPORT_SYMBOL_FLAGS_KIND_ABSOLUTE
Definition MachO.h:301
@ EXPORT_SYMBOL_FLAGS_KIND_THREAD_LOCAL
Definition MachO.h:300
@ EXPORT_SYMBOL_FLAGS_KIND_REGULAR
Definition MachO.h:299
@ BIND_TYPE_TEXT_PCREL32
Definition MachO.h:257
@ BIND_TYPE_POINTER
Definition MachO.h:255
@ BIND_TYPE_TEXT_ABSOLUTE32
Definition MachO.h:256
const uint32_t x86_EXCEPTION_STATE_COUNT
Definition MachO.h:2057
@ ARM_THREAD_STATE64
Definition MachO.h:2120
@ ARM_THREAD_STATE
Definition MachO.h:2115
@ EXPORT_SYMBOL_FLAGS_REEXPORT
Definition MachO.h:294
@ EXPORT_SYMBOL_FLAGS_KIND_MASK
Definition MachO.h:292
@ EXPORT_SYMBOL_FLAGS_STUB_AND_RESOLVER
Definition MachO.h:295
@ REBASE_TYPE_POINTER
Definition MachO.h:235
@ REBASE_TYPE_TEXT_ABSOLUTE32
Definition MachO.h:236
@ REBASE_TYPE_TEXT_PCREL32
Definition MachO.h:237
@ MH_OBJECT
Definition MachO.h:43
@ MH_CORE
Definition MachO.h:46
@ MH_DSYM
Definition MachO.h:52
@ MH_DYLIB
Definition MachO.h:48
@ MH_DYLIB_STUB
Definition MachO.h:51
@ MH_KEXT_BUNDLE
Definition MachO.h:53
@ S_GB_ZEROFILL
S_GB_ZEROFILL - Zero fill on demand section (that can be larger than 4 gigabytes).
Definition MachO.h:155
@ S_THREAD_LOCAL_ZEROFILL
S_THREAD_LOCAL_ZEROFILL - Thread local zerofill section.
Definition MachO.h:169
@ S_ZEROFILL
S_ZEROFILL - Zero fill on demand section.
Definition MachO.h:129
@ BIND_SPECIAL_DYLIB_WEAK_LOOKUP
Definition MachO.h:264
@ BIND_SPECIAL_DYLIB_MAIN_EXECUTABLE
Definition MachO.h:262
@ BIND_SPECIAL_DYLIB_FLAT_LOOKUP
Definition MachO.h:263
@ R_SCATTERED
Definition MachO.h:402
@ MH_TWOLEVEL
Definition MachO.h:67
@ REBASE_IMMEDIATE_MASK
Definition MachO.h:240
@ REBASE_OPCODE_MASK
Definition MachO.h:240
@ DYLD_CHAINED_PTR_START_NONE
Definition MachO.h:1103
uint8_t GET_COMM_ALIGN(uint16_t n_desc)
Definition MachO.h:1614
void swapStruct(fat_header &mh)
Definition MachO.h:1203
const uint32_t x86_THREAD_STATE32_COUNT
Definition MachO.h:2043
@ BIND_SYMBOL_FLAGS_WEAK_IMPORT
Definition MachO.h:268
@ BIND_SYMBOL_FLAGS_NON_WEAK_DEFINITION
Definition MachO.h:269
@ BIND_OPCODE_MASK
Definition MachO.h:271
@ BIND_IMMEDIATE_MASK
Definition MachO.h:272
@ DYNAMIC_LOOKUP_ORDINAL
Definition MachO.h:354
@ N_WEAK_DEF
Definition MachO.h:346
@ EXECUTABLE_ORDINAL
Definition MachO.h:355
@ N_ARM_THUMB_DEF
Definition MachO.h:342
@ N_WEAK_REF
Definition MachO.h:345
@ PPC_THREAD_STATE
Definition MachO.h:2240
@ CPU_SUBTYPE_POWERPC_ALL
Definition MachO.h:1757
@ BIND_OPCODE_DO_BIND_ULEB_TIMES_SKIPPING_ULEB
Definition MachO.h:288
@ BIND_OPCODE_DONE
Definition MachO.h:276
@ BIND_OPCODE_DO_BIND_ADD_ADDR_ULEB
Definition MachO.h:286
@ BIND_OPCODE_SET_ADDEND_SLEB
Definition MachO.h:282
@ BIND_OPCODE_SET_DYLIB_ORDINAL_ULEB
Definition MachO.h:278
@ BIND_OPCODE_SET_SYMBOL_TRAILING_FLAGS_IMM
Definition MachO.h:280
@ BIND_OPCODE_ADD_ADDR_ULEB
Definition MachO.h:284
@ BIND_OPCODE_DO_BIND_ADD_ADDR_IMM_SCALED
Definition MachO.h:287
@ BIND_OPCODE_SET_DYLIB_SPECIAL_IMM
Definition MachO.h:279
@ BIND_OPCODE_DO_BIND
Definition MachO.h:285
@ BIND_OPCODE_SET_TYPE_IMM
Definition MachO.h:281
@ BIND_OPCODE_SET_DYLIB_ORDINAL_IMM
Definition MachO.h:277
@ BIND_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB
Definition MachO.h:283
@ DYLD_CHAINED_PTR_64_OFFSET
Definition MachO.h:1115
@ DYLD_CHAINED_PTR_64
Definition MachO.h:1111
@ x86_THREAD_STATE
Definition MachO.h:2017
@ x86_THREAD_STATE64
Definition MachO.h:2014
@ x86_EXCEPTION_STATE64
Definition MachO.h:2016
@ x86_EXCEPTION_STATE
Definition MachO.h:2019
@ x86_THREAD_STATE32
Definition MachO.h:2011
@ x86_FLOAT_STATE
Definition MachO.h:2018
const uint32_t PPC_THREAD_STATE_COUNT
Definition MachO.h:2255
const uint32_t ARM_THREAD_STATE_COUNT
Definition MachO.h:2130
@ REBASE_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB
Definition MachO.h:245
@ REBASE_OPCODE_DO_REBASE_IMM_TIMES
Definition MachO.h:248
@ REBASE_OPCODE_DO_REBASE_ADD_ADDR_ULEB
Definition MachO.h:250
@ REBASE_OPCODE_DO_REBASE_ULEB_TIMES_SKIPPING_ULEB
Definition MachO.h:251
@ REBASE_OPCODE_DO_REBASE_ULEB_TIMES
Definition MachO.h:249
@ REBASE_OPCODE_ADD_ADDR_ULEB
Definition MachO.h:246
@ REBASE_OPCODE_SET_TYPE_IMM
Definition MachO.h:244
@ REBASE_OPCODE_DONE
Definition MachO.h:243
@ REBASE_OPCODE_ADD_ADDR_IMM_SCALED
Definition MachO.h:247
@ CPU_SUBTYPE_RISCV_ALL
Definition MachO.h:1776
@ CPU_SUBTYPE_ARM_V7
Definition MachO.h:1702
@ CPU_SUBTYPE_ARM_V8M_BASE
Definition MachO.h:1710
@ CPU_SUBTYPE_ARM_V5TEJ
Definition MachO.h:1700
@ CPU_SUBTYPE_ARM_V7M
Definition MachO.h:1707
@ CPU_SUBTYPE_ARM_V6
Definition MachO.h:1698
@ CPU_SUBTYPE_ARM_V8M_MAIN
Definition MachO.h:1709
@ CPU_SUBTYPE_ARM_XSCALE
Definition MachO.h:1701
@ CPU_SUBTYPE_ARM_V7K
Definition MachO.h:1705
@ CPU_SUBTYPE_ARM_V6M
Definition MachO.h:1706
@ CPU_SUBTYPE_ARM_V7EM
Definition MachO.h:1708
@ CPU_SUBTYPE_ARM_V8_1M_MAIN
Definition MachO.h:1711
@ CPU_SUBTYPE_ARM_V7S
Definition MachO.h:1704
@ CPU_SUBTYPE_ARM_V4T
Definition MachO.h:1697
@ CPU_SUBTYPE_ARM64E
Definition MachO.h:1717
@ CPU_SUBTYPE_ARM64_ALL
Definition MachO.h:1715
const uint32_t x86_THREAD_STATE_COUNT
Definition MachO.h:2053
@ CPU_SUBTYPE_ARM64_32_V8
Definition MachO.h:1752
@ GENERIC_RELOC_LOCAL_SECTDIFF
Definition MachO.h:414
@ RISCV_RELOC_GOT_HI20
Definition MachO.h:522
@ ARM_RELOC_LOCAL_SECTDIFF
Definition MachO.h:443
@ RISCV_RELOC_HI20
Definition MachO.h:505
@ RISCV_RELOC_GOT_LO12
Definition MachO.h:525
@ ARM64_RELOC_SUBTRACTOR
Definition MachO.h:458
@ ARM_RELOC_HALF_SECTDIFF
Definition MachO.h:449
@ ARM_RELOC_SECTDIFF
Definition MachO.h:442
@ RISCV_RELOC_LO12
Definition MachO.h:516
@ GENERIC_RELOC_SECTDIFF
Definition MachO.h:412
@ X86_64_RELOC_SUBTRACTOR
Definition MachO.h:545
@ ARM_RELOC_HALF
Definition MachO.h:448
uint16_t GET_LIBRARY_ORDINAL(uint16_t n_desc)
Definition MachO.h:1606
@ S_ATTR_PURE_INSTRUCTIONS
S_ATTR_PURE_INSTRUCTIONS - Section contains only true machine instructions.
Definition MachO.h:192
const uint32_t x86_EXCEPTION_STATE64_COUNT
Definition MachO.h:2050
@ CPU_SUBTYPE_I386_ALL
Definition MachO.h:1659
@ CPU_SUBTYPE_X86_64_H
Definition MachO.h:1684
@ CPU_SUBTYPE_X86_64_ALL
Definition MachO.h:1682
const uint32_t x86_THREAD_STATE64_COUNT
Definition MachO.h:2046
@ CPU_SUBTYPE_MASK
Definition MachO.h:1650
@ CPU_TYPE_ARM64_32
Definition MachO.h:1640
@ CPU_TYPE_ARM64
Definition MachO.h:1639
@ CPU_TYPE_POWERPC
Definition MachO.h:1642
@ CPU_TYPE_X86_64
Definition MachO.h:1635
@ CPU_TYPE_POWERPC64
Definition MachO.h:1643
@ CPU_TYPE_RISCV
Definition MachO.h:1645
@ CPU_TYPE_I386
Definition MachO.h:1634
@ CPU_TYPE_ARM
Definition MachO.h:1638
constexpr size_t SymbolTableEntrySize
Definition XCOFF.h:39
Swift5ReflectionSectionKind
Definition Swift.h:14
content_iterator< SectionRef > section_iterator
Definition ObjectFile.h:49
Error createError(const Twine &Err)
Definition Error.h:86
content_iterator< MachOBindEntry > bind_iterator
Definition MachO.h:263
content_iterator< MachOChainedFixupEntry > fixup_iterator
Definition MachO.h:407
content_iterator< MachORebaseEntry > rebase_iterator
Definition MachO.h:204
content_iterator< BasicSymbolRef > basic_symbol_iterator
content_iterator< ExportEntry > export_iterator
Definition MachO.h:126
content_iterator< RelocationRef > relocation_iterator
Definition ObjectFile.h:79
content_iterator< DiceRef > dice_iterator
Definition MachO.h:65
LLVM_ABI std::error_code status(const Twine &path, file_status &result, bool follow=true)
Get file status as if by POSIX stat().
LLVM_ABI bool is_directory(const basic_file_status &status)
Does status represent a directory?
Definition Path.cpp:1122
LLVM_ABI bool remove_dots(SmallVectorImpl< char > &path, bool remove_dot_dot=false, Style style=Style::native)
Remove '.
Definition Path.cpp:779
LLVM_ABI void append(SmallVectorImpl< char > &path, const Twine &a, const Twine &b="", const Twine &c="", const Twine &d="")
Append to path.
Definition Path.cpp:467
LLVM_ABI StringRef extension(StringRef path LLVM_LIFETIME_BOUND, Style style=Style::native)
Get extension.
Definition Path.cpp:607
constexpr bool IsLittleEndianHost
LLVM_ABI std::string getDefaultTargetTriple()
getDefaultTargetTriple() - Return the default target triple the compiler has been configured to produ...
void swapByteOrder(T &Value)
This is an optimization pass for GlobalISel generic memory operations.
@ Offset
Definition DWP.cpp:578
Error createFileError(const Twine &F, Error E)
Concatenate a source file path and/or name with an Error.
Definition Error.h:1415
ArrayRef< CharT > arrayRefFromStringRef(StringRef Input)
Construct an array ref of bytes from a string ref.
@ Done
Definition Threading.h:60
@ Load
The value being inserted comes from a load (InsertElement only).
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
uint64_t decodeULEB128(const uint8_t *p, unsigned *n=nullptr, const uint8_t *end=nullptr, const char **error=nullptr)
Utility function to decode a ULEB128 value.
Definition LEB128.h:130
int64_t decodeSLEB128(const uint8_t *p, unsigned *n=nullptr, const uint8_t *end=nullptr, const char **error=nullptr)
Utility function to decode a SLEB128 value.
Definition LEB128.h:169
Error createStringError(std::error_code EC, char const *Fmt, const Ts &... Vals)
Create formatted StringError object.
Definition Error.h:1321
@ no_such_file_or_directory
Definition Errc.h:65
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:209
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
Definition Error.cpp:163
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.
Definition Format.h:94
Error make_error(ArgTs &&... Args)
Make a Error instance representing failure using the given error info type.
Definition Error.h:340
@ Other
Any other memory.
Definition ModRef.h:68
void cantFail(Error Err, const char *Msg=nullptr)
Report a fatal error if Err is a failure value.
Definition Error.h:769
To bit_cast(const From &from) noexcept
Definition bit.h:90
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Count
Definition InstrProf.h:145
auto count(R &&Range, const E &Element)
Wrapper function around std::count to count the number of times an element Element occurs in the give...
Definition STLExtras.h:2012
ArrayRef(const T &OneElt) -> ArrayRef< T >
constexpr int32_t SignExtend32(uint32_t X)
Sign-extend the number in the bottom B bits of X to a 32-bit integer.
Definition MathExtras.h:555
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
Definition STLExtras.h:1947
LLVM_ABI Error errorCodeToError(std::error_code EC)
Helper for converting an std::error_code to a Error.
Definition Error.cpp:107
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Next
Definition InstrProf.h:147
void consumeError(Error Err)
Consume a Error without doing anything.
Definition Error.h:1106
#define N
const char * Name
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
Definition MachO.h:865
Structs for dyld chained fixups.
Definition MachO.h:1127
uint32_t imports_format
DYLD_CHAINED_IMPORT*.
Definition MachO.h:1133
uint32_t starts_offset
Offset of dyld_chained_starts_in_image.
Definition MachO.h:1129
dyld_chained_starts_in_image is embedded in LC_DYLD_CHAINED_FIXUPS payload.
Definition MachO.h:1140
uint16_t page_count
Length of the page_start array.
Definition MachO.h:1151
uint16_t page_size
Page size in bytes (0x1000 or 0x4000)
Definition MachO.h:1147
uint16_t pointer_format
DYLD_CHAINED_PTR*.
Definition MachO.h:1148
uint32_t size
Size of this, including chain_starts entries.
Definition MachO.h:1146
Definition MachO.h:962
uint32_t n_strx
Definition MachO.h:1073
uint32_t n_value
Definition MachO.h:1077
uint32_t reloff
Definition MachO.h:630
uint32_t offset
Definition MachO.h:628
uint32_t nreloc
Definition MachO.h:631
ChainedFixupTarget holds all the information about an external symbol necessary to bind this binary t...
Definition MachO.h:277
MachO::dyld_chained_starts_in_segment Header
Definition MachO.h:310
std::vector< uint16_t > PageStarts
Definition MachO.h:311
struct llvm::object::DataRefImpl::@005117267142344013370254144343227032034000327225 d