2 * Copyright (c) 2017 Apple Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
31 #include <uuid/uuid.h>
32 #include <mach/mach.h>
33 #include <mach-o/loader.h>
35 #include "Diagnostics.h"
37 #include "MachOLoaded.h"
38 #include "SupportedArchs.h"
49 // bump this number each time binary format changes
50 enum { kFormatVersion
= 10 };
53 typedef uint32_t ImageNum
;
55 const ImageNum kFirstDyldCacheImageNum
= 0x00000001;
56 const ImageNum kLastDyldCacheImageNum
= 0x00000FFF;
57 const ImageNum kFirstOtherOSImageNum
= 0x00001001;
58 const ImageNum kLastOtherOSImageNum
= 0x00001FFF;
59 const ImageNum kFirstLaunchClosureImageNum
= 0x00002000;
60 const ImageNum kMissingWeakLinkedImage
= 0x0FFFFFFF;
62 class ObjCSelectorOpt
;
64 class ObjCClassDuplicatesOpt
;
67 // Generic typed range of bytes (similar to load commands)
68 // Must be 4-byte aligned
70 struct VIS_HIDDEN TypedBytes
72 enum class Type
: uint32_t {
73 // containers which have an overall length and TypedBytes inside their content
74 launchClosure
= 1, // contains TypedBytes of closure attributes including imageArray
75 imageArray
= 2, // sizeof(ImageArray) + sizeof(uint32_t)*count + size of all images
76 image
= 3, // contains TypedBytes of image attributes
77 dlopenClosure
= 4, // contains TypedBytes of closure attributes including imageArray
79 // attributes for Images
80 imageFlags
= 7, // sizeof(Image::Flags)
81 pathWithHash
= 8, // len = uint32_t + length path + 1, use multiple entries for aliases
82 fileInodeAndTime
= 9, // sizeof(FileInfo)
83 cdHash
= 10, // 20, use multiple entries on watchOS for all hashes
85 mappingInfo
= 12, // sizeof(MappingInfo)
86 diskSegment
= 13, // sizeof(DiskSegment) * count
87 cacheSegment
= 14, // sizeof(DyldCacheSegment) * count
88 dependents
= 15, // sizeof(LinkedImage) * count
89 initOffsets
= 16, // sizeof(uint32_t) * count
90 dofOffsets
= 17, // sizeof(uint32_t) * count
91 codeSignLoc
= 18, // sizeof(CodeSignatureLocation)
92 fairPlayLoc
= 19, // sizeof(FairPlayRange)
93 rebaseFixups
= 20, // sizeof(RebasePattern) * count
94 bindFixups
= 21, // sizeof(BindPattern) * count
95 cachePatchInfo
= 22, // deprecated
96 textFixups
= 23, // sizeof(TextFixupPattern) * count
97 imageOverride
= 24, // sizeof(ImageNum)
98 initBefores
= 25, // sizeof(ImageNum) * count
99 initsSection
= 26, // sizeof(InitializerSectionRange)
100 chainedFixupsTargets
= 27, // sizeof(ResolvedSymbolTarget) * count
101 termOffsets
= 28, // sizeof(uint32_t) * count
102 chainedStartsOffset
= 29, // sizeof(uint64_t)
103 objcFixups
= 30, // sizeof(ResolvedSymbolTarget) + (sizeof(uint32_t) * 2) + (sizeof(ProtocolISAFixup) * count) + (sizeof(SelectorReferenceFixup) * count)
105 // attributes for Closures (launch or dlopen)
106 closureFlags
= 32, // sizeof(Closure::Flags)
107 dyldCacheUUID
= 33, // 16
109 envVar
= 35, // "DYLD_BLAH=stuff"
110 topImage
= 36, // sizeof(ImageNum)
111 libDyldEntry
= 37, // sizeof(ResolvedSymbolTarget)
112 libSystemNum
= 38, // sizeof(ImageNum)
113 mainEntry
= 40, // sizeof(ResolvedSymbolTarget)
114 startEntry
= 41, // sizeof(ResolvedSymbolTarget) // used by programs built with crt1.o
115 cacheOverrides
= 42, // sizeof(PatchEntry) * count // used if process uses interposing or roots (cached dylib overrides)
116 interposeTuples
= 43, // sizeof(InterposingTuple) * count
117 existingFiles
= 44, // uint64_t + (SkippedFiles * count)
118 selectorTable
= 45, // uint32_t + (sizeof(ObjCSelectorImage) * count) + hashTable size
119 classTable
= 46, // (3 * uint32_t) + (sizeof(ObjCClassImage) * count) + classHashTable size + protocolHashTable size
120 warning
= 47, // len = uint32_t + length path + 1, use one entry per warning
121 duplicateClassesTable
= 48, // duplicateClassesHashTable
122 progVars
= 49, // sizeof(uint32_t)
126 uint32_t payloadLength
: 24;
128 const void* payload() const;
132 static_assert(sizeof(TypedBytes
) == 4, "Wrong size for TypedBytes");
136 // A TypedBytes which is a bag of other TypedBytes
138 struct VIS_HIDDEN ContainerTypedBytes
: TypedBytes
140 void forEachAttribute(void (^callback
)(const TypedBytes
* typedBytes
, bool& stop
)) const;
141 void forEachAttributePayload(Type requestedType
, void (^handler
)(const void* payload
, uint32_t size
, bool& stop
)) const;
142 const void* findAttributePayload(Type requestedType
, uint32_t* payloadSize
=nullptr) const;
144 const TypedBytes
* first() const;
145 const TypedBytes
* next(const TypedBytes
*) const;
150 // Information about a mach-o file
152 struct VIS_HIDDEN Image
: ContainerTypedBytes
154 enum class LinkKind
{ regular
=0, weak
=1, upward
=2, reExport
=3 };
157 ImageNum
imageNum() const;
158 bool representsImageNum(ImageNum num
) const; // imageNum() or isOverrideOfDyldCacheImage()
159 uint32_t maxLoadCount() const;
160 const char* path() const;
161 const char* leafName() const;
162 bool getUuid(uuid_t
) const;
163 bool isInvalid() const;
164 bool inDyldCache() const;
165 bool hasObjC() const;
166 bool hasInitializers() const;
167 bool hasPrecomputedObjC() const;
168 bool fixupsNotEncoded() const; // minimal closure, dyld must parse and apply fixups
169 bool rebasesNotEncoded() const;
170 bool hasTerminators() const;
171 bool hasReadOnlyData() const;
172 bool hasChainedFixups() const;
173 bool isBundle() const;
174 bool isDylib() const;
175 bool isExecutable() const;
176 bool hasWeakDefs() const;
177 bool mayHavePlusLoads() const;
179 bool neverUnload() const;
180 bool cwdMustBeThisDir() const;
181 bool overridableDylib() const;
182 bool hasFileModTimeAndInode(uint64_t& inode
, uint64_t& mTime
) const;
183 void forEachCDHash(void (^handler
)(const uint8_t cdHash
[20], bool& stop
)) const;
184 void forEachAlias(void (^handler
)(const char* aliasPath
, bool& stop
)) const;
185 void forEachDependentImage(void (^handler
)(uint32_t dependentIndex
, LinkKind kind
, ImageNum imageNum
, bool& stop
)) const;
186 ImageNum
dependentImageNum(uint32_t depIndex
) const;
187 bool containsAddress(const void* addr
, const void* imageLoadAddress
, uint8_t* permissions
=nullptr) const;
188 bool forEachInitializerSection(void (^handler
)(uint32_t sectionOffset
, uint32_t sectionSize
)) const;
189 void forEachInitializer(const void* imageLoadAddress
, void (^handler
)(const void* initializer
)) const;
190 void forEachTerminator(const void* imageLoadAddress
, void (^handler
)(const void* terminator
)) const;
191 void forEachImageToInitBefore(void (^handler
)(ImageNum imageToInit
, bool& stop
)) const;
192 void forEachDOF(const void* imageLoadAddress
, void (^handler
)(const void* initializer
)) const;
193 bool hasPathWithHash(const char* path
, uint32_t hash
) const;
194 bool isOverrideOfDyldCacheImage(ImageNum
& cacheImageNum
) const;
195 uint64_t textSize() const;
196 const char* variantString() const; // "minimal" or "full" closure
198 union ResolvedSymbolTarget
200 enum Kinds
{ kindRebase
, kindSharedCache
, kindImage
, kindAbsolute
};
203 uint64_t kind
: 2, // kindRebase
204 unused
: 62; // all zeros
207 uint64_t kind
: 2; // kindSharedCache
211 uint64_t kind
: 2, // kindImage
212 imageNum
: 22; // ImageNum
216 uint64_t kind
: 2, // kindAbsolute
217 value
: 62; // sign extended
220 SharedCache sharedCache
;
225 bool operator==(const ResolvedSymbolTarget
& rhs
) const {
226 return (raw
== rhs
.raw
);
228 bool operator!=(const ResolvedSymbolTarget
& rhs
) const {
229 return (raw
!= rhs
.raw
);
232 static_assert(sizeof(ResolvedSymbolTarget
) == 8, "Invalid size");
235 // ObjC optimisations
236 struct ObjCImageOffset
{
240 uint32_t imageIndex
: 8;
241 uint32_t imageOffset
: 24;
246 // The unused value so that we have a sentinel in our hash table
247 sentinelValue
= 0xFFFFFFFF,
249 // The maximum image index
250 maximumImageIndex
= (1U << 8) - 1,
252 // The maximum offset from the start of the strings section
253 maximumOffset
= (1U << 24) - 1
257 struct ObjCClassNameImageOffset
{
261 uint32_t classNameImageIndex
: 8;
262 uint32_t classNameImageOffset
: 24;
267 // The unused value so that we have a sentinel in our hash table
268 sentinelValue
= 0xFFFFFFFF,
270 // The maximum image index
271 maximumImageIndex
= (1U << 8) - 1,
273 // The maximum offset from the start of the strings section
274 maximumOffset
= (1U << 24) - 1
278 struct ObjCClassImageOffset
{
282 uint32_t imageIndex
: 8;
283 uint32_t imageOffset
: 23;
284 uint32_t isDuplicate
: 1; // == 0
289 uint32_t isDuplicate
: 1; // == 1
294 // The unused value so that we have a sentinel in our hash table
295 sentinelValue
= 0xFFFFFFFF,
297 // The maximum image index
298 maximumImageIndex
= (1U << 8) - 1,
300 // The maximum offset from the start of the class data section
301 maximumOffset
= (1U << 23) - 1
305 static_assert(sizeof(ObjCClassImageOffset
) == 4, "Invalid size");
307 static_assert(ObjCClassNameImageOffset::maximumImageIndex
== ObjCClassImageOffset::maximumImageIndex
, "Invalid indices");
309 struct ObjCDuplicateClass
{
313 uint32_t sharedCacheClassOptIndex
: 20;
314 uint32_t sharedCacheClassDuplicateIndex
: 12;
319 // The unused value so that we have a sentinel in our hash table
320 sentinelValue
= 0xFFFFFFFF
324 static_assert(sizeof(ObjCDuplicateClass
) == 4, "Invalid size");
326 struct ObjCSelectorImage
{
331 struct ObjCClassImage
{
333 uint32_t offsetOfClassNames
;
334 uint32_t offsetOfClasses
;
337 typedef MachOLoaded::ChainedFixupPointerOnDisk ChainedFixupPointerOnDisk
;
339 // the following are only valid if inDyldCache() returns true
340 uint32_t cacheOffset() const;
341 uint32_t patchStartIndex() const;
342 uint32_t patchCount() const;
343 void forEachCacheSegment(void (^handler
)(uint32_t segIndex
, uint64_t vmOffset
, uint64_t vmSize
, uint8_t permissions
, bool& stop
)) const;
346 // the following are only valid if inDyldCache() returns false
347 uint64_t vmSizeToMap() const;
348 uint64_t sliceOffsetInFile() const;
349 bool hasCodeSignature(uint32_t& fileOffset
, uint32_t& size
) const;
350 bool isFairPlayEncrypted(uint32_t& textOffset
, uint32_t& size
) const;
351 void forEachDiskSegment(void (^handler
)(uint32_t segIndex
, uint32_t fileOffset
, uint32_t fileSize
, int64_t vmOffset
, uint64_t vmSize
,
352 uint8_t permissions
, bool laterReadOnly
, bool& stop
)) const;
353 void forEachFixup(void (^rebase
)(uint64_t imageOffsetToRebase
, bool& stop
),
354 void (^bind
)(uint64_t imageOffsetToBind
, ResolvedSymbolTarget bindTarget
, bool& stop
),
355 void (^chainedFixups
)(uint64_t imageOffsetToStarts
, const Array
<ResolvedSymbolTarget
>& targets
, bool& stop
),
356 void (^fixupObjCImageInfo
)(uint64_t imageOffsetToFixup
),
357 void (^fixupObjCProtocol
)(uint64_t imageOffsetToBind
, ResolvedSymbolTarget bindTarget
, bool& stop
),
358 void (^fixupObjCSelRef
)(uint64_t imageOffsetToFixup
, uint32_t selectorIndex
, bool inSharedCache
, bool& stop
),
359 void (^fixupObjCStableSwift
)(uint64_t imageOffsetToFixup
, bool& stop
),
360 void (^fixupObjCMethodList
)(uint64_t imageOffsetToFixup
, bool& stop
)) const;
361 void forEachTextReloc(void (^rebase
)(uint32_t imageOffsetToRebase
, bool& stop
),
362 void (^bind
)(uint32_t imageOffsetToBind
, ResolvedSymbolTarget bindTarget
, bool& stop
)) const;
364 bool forEachBind(void (^bind
)(uint64_t imageOffsetToBind
, ResolvedSymbolTarget bindTarget
, bool& stop
)) const;
366 static_assert(sizeof(ResolvedSymbolTarget
) == 8, "Overflow in size of SymbolTargetLocation");
368 static uint32_t hashFunction(const char*);
371 friend struct Closure
;
372 friend class ImageWriter
;
373 friend class ClosureBuilder
;
374 friend class ClosureWriter
;
375 friend class LaunchClosureWriter
;
376 friend class RebasePatternBuilder
;
377 friend class BindPatternBuilder
;
379 uint32_t pageSize() const;
383 uint64_t imageNum
: 16,
385 isInvalid
: 1, // an error occurred creating the info for this image
389 mayHavePlusLoads
: 1,
390 isEncrypted
: 1, // image is DSMOS or FairPlay encrypted
393 cwdSameAsThis
: 1, // dylibs use file system relative paths, cwd must be main's dir
394 isPlatformBinary
: 1, // part of OS - can be loaded into LV process
398 overridableDylib
: 1, // only applicable to cached dylibs
402 hasChainedFixups
: 1,
403 hasPrecomputedObjC
: 1,
404 fixupsNotEncoded
: 1,
405 rebasesNotEncoded
: 1,
406 hasOverrideImageNum
: 1,
410 static_assert(sizeof(Flags
) == sizeof(uint64_t), "Flags overflow");
412 const Flags
& getFlags() const;
420 // In disk based images, all segments are multiples of page size
421 // This struct just tracks the size (disk and vm) of each segment.
422 // This is compact for most every image which have contiguous segments.
423 // If the image does not have contiguous segments (rare), an extra
424 // DiskSegment is inserted with the paddingNotSeg bit set.
427 uint64_t filePageCount
: 30,
432 // We only have three bits for permissions, and need a way to
433 // encode segments that are initially r/w then made read-only
434 // after fixups are done. Previously, the only valid patterns
435 // were: ---, r--, rw-, r-x. We now add -w- to mean r/w -> r/o.
436 enum { kReadOnlyDataPermissions
= VM_PROT_WRITE
};
440 // In cache DATA_DIRTY is not page aligned or sized
441 // This struct allows segments with any alignment and up to 256MB in size
442 struct DyldCacheSegment
444 uint64_t cacheOffset
: 32,
449 struct CodeSignatureLocation
463 uint32_t rangeStart
; // The byte offset of the start of the range.
464 uint32_t rangeLength
; // How long is the fairplay range in bytes
469 uint32_t totalVmPages
;
470 uint32_t sliceOffsetIn4K
;
473 struct InitializerSectionRange
475 uint32_t sectionOffset
;
476 uint32_t sectionSize
;
481 LinkedImage() : imgNum(0), linkKind(0) {
483 LinkedImage(LinkKind k
, ImageNum num
) : imgNum(num
), linkKind((uint32_t)k
) {
484 assert((num
& 0xC0000000) == 0);
487 LinkKind
kind() const { return (LinkKind
)linkKind
; }
488 ImageNum
imageNum() const { return imgNum
; }
489 void clearKind() { linkKind
= 0; }
491 bool operator==(const LinkedImage
& rhs
) const {
492 return (linkKind
== rhs
.linkKind
) && (imgNum
== rhs
.imgNum
);
494 bool operator!=(const LinkedImage
& rhs
) const {
495 return (linkKind
!= rhs
.linkKind
) || (imgNum
!= rhs
.imgNum
);
498 uint32_t imgNum
: 30,
499 linkKind
: 2; // LinkKind
502 const Array
<LinkedImage
> dependentsArray() const;
506 uint32_t repeatCount
: 20,
507 contigCount
: 8, // how many contiguous pointers neeed rebasing
508 skipCount
: 4; // how many pointers to skip between contig groups
509 // If contigCount == 0, then there are no rebases for this entry,
510 // instead it advances the rebase location by repeatCount*skipCount.
511 // If all fields are zero, then the rebase position is reset to the start.
512 // This is to support old binaries with some non-monotonically-increasing rebases.
514 const Array
<RebasePattern
> rebaseFixups() const;
518 Image::ResolvedSymbolTarget target
;
519 uint64_t startVmOffset
: 40, // max 1TB offset
523 const Array
<BindPattern
> bindFixups() const;
525 // An optimzied selector reference bind will either point to the shared cache
526 // or a binary optimized in our launch closure. We can use the index in to each
527 // of their respective selector hash tables as the target or the bind.
528 union SelectorReferenceFixup
530 uint32_t chainStartVMOffset
;
532 uint32_t index
: 24, // max 16m entries in the table
533 next
: 7, // (next * 4) -> offset to next fixup
534 inSharedCache
: 1; // 0 -> in the closure. 1 -> in the cache
538 struct ProtocolISAFixup
540 uint64_t startVmOffset
: 40, // max 1TB offset
545 struct ClassStableSwiftFixup
547 uint64_t startVmOffset
: 40, // max 1TB offset
552 struct MethodListFixup
554 uint64_t startVmOffset
: 40, // max 1TB offset
559 void objcFixups(ResolvedSymbolTarget
& objcProtocolClassTarget
,
560 uint64_t& objcImageInfoVMOffset
,
561 Array
<ProtocolISAFixup
>& protocolISAFixups
,
562 Array
<SelectorReferenceFixup
>& selRefFixups
,
563 Array
<ClassStableSwiftFixup
>& classStableSwiftFixups
,
564 Array
<MethodListFixup
>& methodListFixups
) const;
566 struct TextFixupPattern
568 Image::ResolvedSymbolTarget target
;
569 uint32_t startVmOffset
;
570 uint16_t repeatCount
;
573 const Array
<TextFixupPattern
> textFixups() const;
575 // for use with chained fixups
576 uint64_t chainedStartsOffset() const;
577 const Array
<Image::ResolvedSymbolTarget
> chainedTargets() const;
582 Dyld cache patching notes:
584 The dyld cache needs to be patched to support interposing and dylib "roots".
586 For cached dylibs overrides:
588 1) LoadedImages will contain the new dylib, so all symbol look ups
589 will naturally find new impl. Only dyld cache needs special help.
590 2) LoadedImages entry will have flag for images that override cache.
591 3) When setting Closure attributes, if flag is set, builder will
592 iterate PatchableExport entries in Image* from cache and create
593 a PatchEntry for each.
595 1) [lib]dyld will iterate PatchEntry in closure and patch cache
599 1) After Images built, if __interpose section(s) exist, builder will
600 build InterposingTuple entries for closure
601 2) For being-built closure and launch closure, apply any InterposingTuple
602 to modify Image fixups before Image finalized.
603 3) Builder will find PatchableExport entry that matchs stock Impl
604 and add PatchEntry to closure for it.
606 1) When closure is loaded (launch or dlopen) PatchEntries are
607 applied (exactly once) to whole cache.
608 2) For each DlopenClosure loaded, any InterposeTuples in *launch* closure
609 are applied to all new images in new DlopenClosure.
611 For weak-def coalesing:
613 1) weak_bind entries are turned into -3 ordinal lookup which search through images
614 in load order for first def (like flat). This fixups up all images not in cache.
615 2) When processing -3 ordinals, it continues past first found and if any images
616 past it are in dyld cache and export that same symbol, a PatchEntry is added to
617 closure to fix up all cached uses of that symbol.
618 3) If a weak_bind has strong bit set (no fixup, just def), all images from the dyld
619 cache are checked to see if the export that symbol, if so, a PatchEntry is added
622 1) When closure is loaded (launch or dlopen) PatchEntries are
623 applied (exactly once) to whole cache.
629 // An array (accessible by index) list of Images
631 struct VIS_HIDDEN ImageArray
: public TypedBytes
634 size_t startImageNum() const;
635 uint32_t imageCount() const;
636 void forEachImage(void (^callback
)(const Image
* image
, bool& stop
)) const;
637 bool hasPath(const char* path
, ImageNum
& num
) const;
638 const Image
* imageForNum(ImageNum
) const;
639 void deallocate() const;
641 static const Image
* findImage(const Array
<const ImageArray
*> imagesArrays
, ImageNum imageNum
);
644 friend class ImageArrayWriter
;
646 uint32_t firstImageNum
;
648 uint32_t hasRoots
: 1; // True if this ImageArray contains roots with imageNum's below firstImageNum
654 struct InterposingTuple
656 Image::ResolvedSymbolTarget stockImplementation
;
657 Image::ResolvedSymbolTarget newImplementation
;
662 // Describes how dyld should load a set of mach-o files
664 struct VIS_HIDDEN Closure
: public ContainerTypedBytes
667 const ImageArray
* images() const;
668 ImageNum
topImageNum() const;
669 const Image
* topImage() const;
670 void deallocate() const;
672 friend class ClosureWriter
;
676 ImageNum overriddenDylibInCache
;
677 uint32_t exportCacheOffset
;
678 Image::ResolvedSymbolTarget replacement
;
683 enum Type
: uint32_t {
684 duplicateObjCClass
= 0
691 void forEachPatchEntry(void (^handler
)(const PatchEntry
& entry
)) const;
692 void forEachWarning(Warning::Type type
, void (^handler
)(const char* warning
, bool& stop
)) const;
697 // Describes how dyld should launch a main executable
699 struct VIS_HIDDEN LaunchClosure
: public Closure
701 // Represents a file on disk we tried to load but skipped as it wasn't valid for our use
709 bool builtAgainstDyldCache(uuid_t cacheUUID
) const;
710 void forEachMustBeMissingFile(void (^handler
)(const char* path
, bool& stop
)) const;
711 void forEachSkipIfExistsFile(void (^handler
)(const SkippedFile
& file
, bool& stop
)) const;
712 void forEachEnvVar(void (^handler
)(const char* keyEqualValue
, bool& stop
)) const;
713 ImageNum
libSystemImageNum() const;
714 void libDyldEntry(Image::ResolvedSymbolTarget
& loc
) const;
715 bool mainEntry(Image::ResolvedSymbolTarget
& mainLoc
) const;
716 bool startEntry(Image::ResolvedSymbolTarget
& startLoc
) const;
717 uint32_t initialLoadCount() const;
718 void forEachInterposingTuple(void (^handler
)(const InterposingTuple
& tuple
, bool& stop
)) const;
719 bool usedAtPaths() const;
720 bool usedFallbackPaths() const;
721 bool usedInterposing() const;
722 bool selectorHashTable(Array
<Image::ObjCSelectorImage
>& imageNums
,
723 const ObjCSelectorOpt
*& hashTable
) const;
724 bool classAndProtocolHashTables(Array
<Image::ObjCClassImage
>& imageNums
,
725 const ObjCClassOpt
*& classHashTable
,
726 const ObjCClassOpt
*& protocolHashTable
) const;
727 void duplicateClassesHashTable(const ObjCClassDuplicatesOpt
*& duplicateClassesHashTable
) const;
728 bool hasInsertedLibraries() const;
729 bool hasInterposings() const;
730 bool hasProgramVars(uint32_t& runtimeOffset
) const;
732 static bool buildClosureCachePath(const char* mainExecutablePath
, const char* envp
[],
733 bool makeDirsIfMissing
, char closurePath
[]);
736 friend class LaunchClosureWriter
;
740 uint32_t usedAtPaths
: 1,
741 usedFallbackPaths
: 1,
743 hasInsertedLibraries
: 1,
748 const Flags
& getFlags() const;
754 // Describes how dyld should dlopen() a mach-o file
756 struct VIS_HIDDEN DlopenClosure
: public Closure
761 // Precomputed perfect hash table of strings.
762 // Base class for closure precomputed selector table and class table.
763 class VIS_HIDDEN ObjCStringTable
{
765 typedef uint32_t StringTarget
;
768 typedef uint8_t StringHashCheckByte
;
776 StringTarget sentinelTarget
;
777 uint32_t roundedTabSize
;
780 uint32_t scramble
[256];
781 uint8_t tab
[0]; /* tab[mask+1] (always power-of-2). Rounded up to roundedTabSize */
782 // uint8_t checkbytes[capacity]; /* check byte for each string */
783 // int32_t offsets[capacity]; /* offsets from &capacity to cstrings */
785 StringHashCheckByte
* checkBytesOffset() {
786 return &tab
[roundedTabSize
];
789 const StringHashCheckByte
* checkBytesOffset() const {
790 return &tab
[roundedTabSize
];
793 StringTarget
* targetsOffset() {
794 return (StringTarget
*)(checkBytesOffset() + capacity
);
797 const StringTarget
* targetsOffset() const {
798 return (StringTarget
*)(checkBytesOffset() + capacity
);
801 dyld3::Array
<StringHashCheckByte
> checkBytes() {
802 return dyld3::Array
<StringHashCheckByte
>((StringHashCheckByte
*)checkBytesOffset(), capacity
, capacity
);
804 const dyld3::Array
<StringHashCheckByte
> checkBytes() const {
805 return dyld3::Array
<StringHashCheckByte
>((StringHashCheckByte
*)checkBytesOffset(), capacity
, capacity
);
808 dyld3::Array
<StringTarget
> targets() {
809 return dyld3::Array
<StringTarget
>((StringTarget
*)targetsOffset(), capacity
, capacity
);
811 const dyld3::Array
<StringTarget
> targets() const {
812 return dyld3::Array
<StringTarget
>((StringTarget
*)targetsOffset(), capacity
, capacity
);
815 uint32_t hash(const char *key
, size_t keylen
) const;
817 uint32_t hash(const char *key
) const
819 return hash(key
, strlen(key
));
822 // The check bytes areused to reject strings that aren't in the table
823 // without paging in the table's cstring data. This checkbyte calculation
824 // catches 4785/4815 rejects when launching Safari; a perfect checkbyte
825 // would catch 4796/4815.
826 StringHashCheckByte
checkbyte(const char *key
, size_t keylen
) const
828 return ((key
[0] & 0x7) << 5) | ((uint8_t)keylen
& 0x1f);
831 StringHashCheckByte
checkbyte(const char *key
) const
833 return checkbyte(key
, strlen(key
));
836 StringTarget
getPotentialTarget(const char *key
) const
838 uint32_t index
= getIndex(key
);
839 if (index
== indexNotFound
)
840 return sentinelTarget
;
841 return targets()[index
];
851 uint32_t getIndex(const char *key
) const
853 size_t keylen
= strlen(key
);
854 uint32_t h
= hash(key
, keylen
);
856 // Use check byte to reject without paging in the table's cstrings
857 StringHashCheckByte h_check
= checkBytes()[h
];
858 StringHashCheckByte key_check
= checkbyte(key
, keylen
);
859 if (h_check
!= key_check
)
860 return indexNotFound
;
864 template<typename PerfectHashT
>
865 static size_t size(const PerfectHashT
& phash
) {
866 // Round tab[] to at least 4 in length to ensure the uint32_t's after are aligned
867 uint32_t roundedTabSize
= std::max(phash
.mask
+1, 4U);
868 size_t tableSize
= 0;
869 tableSize
+= sizeof(ObjCStringTable
);
870 tableSize
+= roundedTabSize
;
871 tableSize
+= phash
.capacity
* sizeof(StringHashCheckByte
);
872 tableSize
+= phash
.capacity
* sizeof(StringTarget
);
876 // Get a string if it has an entry in the table
877 const char* getString(const char* selName
, const Array
<uintptr_t>& baseAddresses
) const;
879 void forEachString(const Array
<Image::ObjCSelectorImage
>& selectorImages
,
880 void (^callback
)(uint64_t selVMOffset
, ImageNum imageNum
)) const;
882 template<typename PerfectHashT
, typename ImageOffsetT
>
883 void write(const PerfectHashT
& phash
, const Array
<std::pair
<const char*, ImageOffsetT
>>& strings
);
886 class VIS_HIDDEN ObjCSelectorOpt
: public ObjCStringTable
{
888 // Get a string if it has an entry in the table
889 // Returns true if an entry is found and sets the imageNum and vmOffset.
890 bool getStringLocation(uint32_t index
, const Array
<closure::Image::ObjCSelectorImage
>& selImages
,
891 ImageNum
& imageNum
, uint64_t& vmOffset
) const;
893 void forEachString(const Array
<Image::ObjCSelectorImage
>& selectorImages
,
894 void (^callback
)(uint64_t selVMOffset
, ImageNum imageNum
)) const;
897 class VIS_HIDDEN ObjCClassOpt
: public ObjCStringTable
{
899 // ...ObjCStringTable fields...
900 // ClassTarget classOffsets[capacity]; /* offsets from &capacity to class_t and header_info */
901 // DuplicateCount duplicateCount;
902 // ClassTarget duplicateOffsets[duplicatedClasses];
904 typedef uint32_t DuplicateCount
;
905 typedef Image::ObjCClassImageOffset ClassTarget
;
907 ClassTarget
*classOffsetsStart() { return (ClassTarget
*)&targetsOffset()[capacity
]; }
908 const ClassTarget
*classOffsetsStart() const { return (const ClassTarget
*)&targetsOffset()[capacity
]; }
910 dyld3::Array
<ClassTarget
> classOffsets() {
911 return dyld3::Array
<ClassTarget
>((ClassTarget
*)classOffsetsStart(), capacity
, capacity
);
913 const dyld3::Array
<ClassTarget
> classOffsets() const {
914 return dyld3::Array
<ClassTarget
>((ClassTarget
*)classOffsetsStart(), capacity
, capacity
);
917 DuplicateCount
& duplicateCount() { return *(DuplicateCount
*)&classOffsetsStart()[capacity
]; }
918 const DuplicateCount
& duplicateCount() const { return *(const DuplicateCount
*)&classOffsetsStart()[capacity
]; }
920 ClassTarget
*duplicateOffsetsStart() { return (ClassTarget
*)(&duplicateCount()+1); }
921 const ClassTarget
*duplicateOffsetsStart() const { return (const ClassTarget
*)(&duplicateCount()+1); }
923 dyld3::Array
<ClassTarget
> duplicateOffsets(uint32_t preCalculatedDuplicateCount
) {
924 return dyld3::Array
<ClassTarget
>((ClassTarget
*)duplicateOffsetsStart(), preCalculatedDuplicateCount
, duplicateCount());
926 const dyld3::Array
<ClassTarget
> duplicateOffsets(uint32_t preCalculatedDuplicateCount
) const {
927 return dyld3::Array
<ClassTarget
>((ClassTarget
*)duplicateOffsetsStart(), preCalculatedDuplicateCount
, duplicateCount());
932 template<typename PerfectHashT
>
933 static size_t size(PerfectHashT
& phash
, uint32_t duplicateCount
)
935 size_t tableSize
= 0;
936 tableSize
+= ObjCStringTable::size(phash
);
937 tableSize
+= phash
.capacity
* sizeof(ClassTarget
);
938 tableSize
+= sizeof(DuplicateCount
);
939 tableSize
+= duplicateCount
* sizeof(ClassTarget
);
943 void forEachClass(const char* className
,
944 const Array
<std::pair
<uintptr_t, uintptr_t>>& nameAndDataBaseAddresses
,
945 void (^callback
)(void* classPtr
, bool isLoaded
, bool* stop
)) const;
947 void forEachClass(const Array
<Image::ObjCClassImage
>& classImages
,
948 void (^nameCallback
)(uint64_t classNameVMOffset
, ImageNum imageNum
),
949 void (^implCallback
)(uint64_t classVMOffset
, ImageNum imageNum
)) const;
951 template<typename PerfectHashT
, typename ImageOffsetT
, typename ClassesMapT
>
952 void write(const PerfectHashT
& phash
, const Array
<std::pair
<const char*, ImageOffsetT
>>& strings
,
953 const ClassesMapT
& classes
, uint32_t preCalculatedDuplicateCount
);
956 class VIS_HIDDEN ObjCClassDuplicatesOpt
: public ObjCStringTable
{
958 // Get a class if it has an entry in the table
959 bool getClassLocation(const char* className
, const objc_opt::objc_opt_t
* objCOpt
, void*& classImpl
) const;
961 void forEachClass(void (^callback
)(Image::ObjCDuplicateClass duplicateClass
)) const;
964 } // namespace closure