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 bootUUID
= 39, // c-string 40
114 mainEntry
= 40, // sizeof(ResolvedSymbolTarget)
115 startEntry
= 41, // sizeof(ResolvedSymbolTarget) // used by programs built with crt1.o
116 cacheOverrides
= 42, // sizeof(PatchEntry) * count // used if process uses interposing or roots (cached dylib overrides)
117 interposeTuples
= 43, // sizeof(InterposingTuple) * count
118 existingFiles
= 44, // uint64_t + (SkippedFiles * count)
119 selectorTable
= 45, // uint32_t + (sizeof(ObjCSelectorImage) * count) + hashTable size
120 classTable
= 46, // (3 * uint32_t) + (sizeof(ObjCClassImage) * count) + classHashTable size + protocolHashTable size
121 warning
= 47, // len = uint32_t + length path + 1, use one entry per warning
122 duplicateClassesTable
= 48, // duplicateClassesHashTable
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 hasTerminators() const;
169 bool hasReadOnlyData() const;
170 bool hasChainedFixups() const;
171 bool isBundle() const;
172 bool isDylib() const;
173 bool isExecutable() const;
174 bool hasWeakDefs() const;
175 bool mayHavePlusLoads() const;
177 bool neverUnload() const;
178 bool cwdMustBeThisDir() const;
179 bool isPlatformBinary() const;
180 bool overridableDylib() const;
181 bool hasFileModTimeAndInode(uint64_t& inode
, uint64_t& mTime
) const;
182 void forEachCDHash(void (^handler
)(const uint8_t cdHash
[20], bool& stop
)) const;
183 void forEachAlias(void (^handler
)(const char* aliasPath
, bool& stop
)) const;
184 void forEachDependentImage(void (^handler
)(uint32_t dependentIndex
, LinkKind kind
, ImageNum imageNum
, bool& stop
)) const;
185 ImageNum
dependentImageNum(uint32_t depIndex
) const;
186 bool containsAddress(const void* addr
, const void* imageLoadAddress
, uint8_t* permissions
=nullptr) const;
187 bool forEachInitializerSection(void (^handler
)(uint32_t sectionOffset
, uint32_t sectionSize
)) const;
188 void forEachInitializer(const void* imageLoadAddress
, void (^handler
)(const void* initializer
)) const;
189 void forEachTerminator(const void* imageLoadAddress
, void (^handler
)(const void* terminator
)) const;
190 void forEachImageToInitBefore(void (^handler
)(ImageNum imageToInit
, bool& stop
)) const;
191 void forEachDOF(const void* imageLoadAddress
, void (^handler
)(const void* initializer
)) const;
192 bool hasPathWithHash(const char* path
, uint32_t hash
) const;
193 bool isOverrideOfDyldCacheImage(ImageNum
& cacheImageNum
) const;
194 uint64_t textSize() const;
196 union ResolvedSymbolTarget
198 enum Kinds
{ kindRebase
, kindSharedCache
, kindImage
, kindAbsolute
};
201 uint64_t kind
: 2, // kindRebase
202 unused
: 62; // all zeros
205 uint64_t kind
: 2; // kindSharedCache
209 uint64_t kind
: 2, // kindImage
210 imageNum
: 22; // ImageNum
214 uint64_t kind
: 2, // kindAbsolute
215 value
: 62; // sign extended
218 SharedCache sharedCache
;
223 bool operator==(const ResolvedSymbolTarget
& rhs
) const {
224 return (raw
== rhs
.raw
);
226 bool operator!=(const ResolvedSymbolTarget
& rhs
) const {
227 return (raw
!= rhs
.raw
);
230 static_assert(sizeof(ResolvedSymbolTarget
) == 8);
233 // ObjC optimisations
234 struct ObjCImageOffset
{
238 uint32_t imageIndex
: 8;
239 uint32_t imageOffset
: 24;
244 // The unused value so that we have a sentinel in our hash table
245 sentinelValue
= 0xFFFFFFFF,
247 // The maximum image index
248 maximumImageIndex
= (1U << 8) - 1,
250 // The maximum offset from the start of the strings section
251 maximumOffset
= (1U << 24) - 1
255 struct ObjCClassNameImageOffset
{
259 uint32_t classNameImageIndex
: 8;
260 uint32_t classNameImageOffset
: 24;
265 // The unused value so that we have a sentinel in our hash table
266 sentinelValue
= 0xFFFFFFFF,
268 // The maximum image index
269 maximumImageIndex
= (1U << 8) - 1,
271 // The maximum offset from the start of the strings section
272 maximumOffset
= (1U << 24) - 1
276 struct ObjCClassImageOffset
{
280 uint32_t imageIndex
: 8;
281 uint32_t imageOffset
: 23;
282 uint32_t isDuplicate
: 1; // == 0
287 uint32_t isDuplicate
: 1; // == 1
292 // The unused value so that we have a sentinel in our hash table
293 sentinelValue
= 0xFFFFFFFF,
295 // The maximum image index
296 maximumImageIndex
= (1U << 8) - 1,
298 // The maximum offset from the start of the class data section
299 maximumOffset
= (1U << 23) - 1
303 static_assert(sizeof(ObjCClassImageOffset
) == 4, "Invalid size");
305 static_assert(ObjCClassNameImageOffset::maximumImageIndex
== ObjCClassImageOffset::maximumImageIndex
, "Invalid indices");
307 struct ObjCDuplicateClass
{
311 uint32_t sharedCacheClassOptIndex
: 20;
312 uint32_t sharedCacheClassDuplicateIndex
: 12;
317 // The unused value so that we have a sentinel in our hash table
318 sentinelValue
= 0xFFFFFFFF
322 static_assert(sizeof(ObjCDuplicateClass
) == 4, "Invalid size");
324 struct ObjCSelectorImage
{
329 struct ObjCClassImage
{
331 uint32_t offsetOfClassNames
;
332 uint32_t offsetOfClasses
;
335 typedef MachOLoaded::ChainedFixupPointerOnDisk ChainedFixupPointerOnDisk
;
337 // the following are only valid if inDyldCache() returns true
338 uint32_t cacheOffset() const;
339 uint32_t patchStartIndex() const;
340 uint32_t patchCount() const;
341 void forEachCacheSegment(void (^handler
)(uint32_t segIndex
, uint64_t vmOffset
, uint64_t vmSize
, uint8_t permissions
, bool& stop
)) const;
344 // the following are only valid if inDyldCache() returns false
345 uint64_t vmSizeToMap() const;
346 uint64_t sliceOffsetInFile() const;
347 bool hasCodeSignature(uint32_t& fileOffset
, uint32_t& size
) const;
348 bool isFairPlayEncrypted(uint32_t& textOffset
, uint32_t& size
) const;
349 void forEachDiskSegment(void (^handler
)(uint32_t segIndex
, uint32_t fileOffset
, uint32_t fileSize
, int64_t vmOffset
, uint64_t vmSize
,
350 uint8_t permissions
, bool laterReadOnly
, bool& stop
)) const;
351 void forEachFixup(void (^rebase
)(uint64_t imageOffsetToRebase
, bool& stop
),
352 void (^bind
)(uint64_t imageOffsetToBind
, ResolvedSymbolTarget bindTarget
, bool& stop
),
353 void (^chainedFixups
)(uint64_t imageOffsetToStarts
, const Array
<ResolvedSymbolTarget
>& targets
, bool& stop
),
354 void (^fixupObjCImageInfo
)(uint64_t imageOffsetToFixup
),
355 void (^fixupObjCProtocol
)(uint64_t imageOffsetToBind
, ResolvedSymbolTarget bindTarget
, bool& stop
),
356 void (^fixupObjCSelRef
)(uint64_t imageOffsetToFixup
, uint32_t selectorIndex
, bool inSharedCache
, bool& stop
),
357 void (^fixupObjCStableSwift
)(uint64_t imageOffsetToFixup
, bool& stop
),
358 void (^fixupObjCMethodList
)(uint64_t imageOffsetToFixup
, bool& stop
)) const;
359 void forEachTextReloc(void (^rebase
)(uint32_t imageOffsetToRebase
, bool& stop
),
360 void (^bind
)(uint32_t imageOffsetToBind
, ResolvedSymbolTarget bindTarget
, bool& stop
)) const;
362 static_assert(sizeof(ResolvedSymbolTarget
) == 8, "Overflow in size of SymbolTargetLocation");
364 static uint32_t hashFunction(const char*);
367 friend struct Closure
;
368 friend class ImageWriter
;
369 friend class ClosureBuilder
;
370 friend class ClosureWriter
;
371 friend class LaunchClosureWriter
;
373 uint32_t pageSize() const;
377 uint64_t imageNum
: 16,
379 isInvalid
: 1, // an error occurred creating the info for this image
383 mayHavePlusLoads
: 1,
384 isEncrypted
: 1, // image is DSMOS or FairPlay encrypted
387 cwdSameAsThis
: 1, // dylibs use file system relative paths, cwd must be main's dir
388 isPlatformBinary
: 1, // part of OS - can be loaded into LV process
392 overridableDylib
: 1, // only applicable to cached dylibs
396 hasChainedFixups
: 1,
397 hasPrecomputedObjC
: 1,
401 static_assert(sizeof(Flags
) == sizeof(uint64_t), "Flags overflow");
403 const Flags
& getFlags() const;
411 // In disk based images, all segments are multiples of page size
412 // This struct just tracks the size (disk and vm) of each segment.
413 // This is compact for most every image which have contiguous segments.
414 // If the image does not have contiguous segments (rare), an extra
415 // DiskSegment is inserted with the paddingNotSeg bit set.
418 uint64_t filePageCount
: 30,
423 // We only have three bits for permissions, and need a way to
424 // encode segments that are initially r/w then made read-only
425 // after fixups are done. Previously, the only valid patterns
426 // were: ---, r--, rw-, r-x. We now add -w- to mean r/w -> r/o.
427 enum { kReadOnlyDataPermissions
= VM_PROT_WRITE
};
431 // In cache DATA_DIRTY is not page aligned or sized
432 // This struct allows segments with any alignment and up to 256MB in size
433 struct DyldCacheSegment
435 uint64_t cacheOffset
: 32,
440 struct CodeSignatureLocation
454 uint32_t rangeStart
; // The byte offset of the start of the range.
455 uint32_t rangeLength
; // How long is the fairplay range in bytes
460 uint32_t totalVmPages
;
461 uint32_t sliceOffsetIn4K
;
464 struct InitializerSectionRange
466 uint32_t sectionOffset
;
467 uint32_t sectionSize
;
472 LinkedImage() : imgNum(0), linkKind(0) {
474 LinkedImage(LinkKind k
, ImageNum num
) : imgNum(num
), linkKind((uint32_t)k
) {
475 assert((num
& 0xC0000000) == 0);
478 LinkKind
kind() const { return (LinkKind
)linkKind
; }
479 ImageNum
imageNum() const { return imgNum
; }
480 void clearKind() { linkKind
= 0; }
482 bool operator==(const LinkedImage
& rhs
) const {
483 return (linkKind
== rhs
.linkKind
) && (imgNum
== rhs
.imgNum
);
485 bool operator!=(const LinkedImage
& rhs
) const {
486 return (linkKind
!= rhs
.linkKind
) || (imgNum
!= rhs
.imgNum
);
489 uint32_t imgNum
: 30,
490 linkKind
: 2; // LinkKind
493 const Array
<LinkedImage
> dependentsArray() const;
497 uint32_t repeatCount
: 20,
498 contigCount
: 8, // how many contiguous pointers neeed rebasing
499 skipCount
: 4; // how many pointers to skip between contig groups
500 // If contigCount == 0, then there are no rebases for this entry,
501 // instead it advances the rebase location by repeatCount*skipCount.
502 // If all fields are zero, then the rebase position is reset to the start.
503 // This is to support old binaries with some non-monotonically-increasing rebases.
505 const Array
<RebasePattern
> rebaseFixups() const;
509 Image::ResolvedSymbolTarget target
;
510 uint64_t startVmOffset
: 40, // max 1TB offset
514 const Array
<BindPattern
> bindFixups() const;
516 // An optimzied selector reference bind will either point to the shared cache
517 // or a binary optimized in our launch closure. We can use the index in to each
518 // of their respective selector hash tables as the target or the bind.
519 union SelectorReferenceFixup
521 uint32_t chainStartVMOffset
;
523 uint32_t index
: 24, // max 16m entries in the table
524 next
: 7, // (next * 4) -> offset to next fixup
525 inSharedCache
: 1; // 0 -> in the closure. 1 -> in the cache
529 struct ProtocolISAFixup
531 uint64_t startVmOffset
: 40, // max 1TB offset
536 struct ClassStableSwiftFixup
538 uint64_t startVmOffset
: 40, // max 1TB offset
543 struct MethodListFixup
545 uint64_t startVmOffset
: 40, // max 1TB offset
550 void objcFixups(ResolvedSymbolTarget
& objcProtocolClassTarget
,
551 uint64_t& objcImageInfoVMOffset
,
552 Array
<ProtocolISAFixup
>& protocolISAFixups
,
553 Array
<SelectorReferenceFixup
>& selRefFixups
,
554 Array
<ClassStableSwiftFixup
>& classStableSwiftFixups
,
555 Array
<MethodListFixup
>& methodListFixups
) const;
557 struct TextFixupPattern
559 Image::ResolvedSymbolTarget target
;
560 uint32_t startVmOffset
;
561 uint16_t repeatCount
;
564 const Array
<TextFixupPattern
> textFixups() const;
566 // for use with chained fixups
567 uint64_t chainedStartsOffset() const;
568 const Array
<Image::ResolvedSymbolTarget
> chainedTargets() const;
573 Dyld cache patching notes:
575 The dyld cache needs to be patched to support interposing and dylib "roots".
577 For cached dylibs overrides:
579 1) LoadedImages will contain the new dylib, so all symbol look ups
580 will naturally find new impl. Only dyld cache needs special help.
581 2) LoadedImages entry will have flag for images that override cache.
582 3) When setting Closure attributes, if flag is set, builder will
583 iterate PatchableExport entries in Image* from cache and create
584 a PatchEntry for each.
586 1) [lib]dyld will iterate PatchEntry in closure and patch cache
590 1) After Images built, if __interpose section(s) exist, builder will
591 build InterposingTuple entries for closure
592 2) For being-built closure and launch closure, apply any InterposingTuple
593 to modify Image fixups before Image finalized.
594 3) Builder will find PatchableExport entry that matchs stock Impl
595 and add PatchEntry to closure for it.
597 1) When closure is loaded (launch or dlopen) PatchEntries are
598 applied (exactly once) to whole cache.
599 2) For each DlopenClosure loaded, any InterposeTuples in *launch* closure
600 are applied to all new images in new DlopenClosure.
602 For weak-def coalesing:
604 1) weak_bind entries are turned into -3 ordinal lookup which search through images
605 in load order for first def (like flat). This fixups up all images not in cache.
606 2) When processing -3 ordinals, it continues past first found and if any images
607 past it are in dyld cache and export that same symbol, a PatchEntry is added to
608 closure to fix up all cached uses of that symbol.
609 3) If a weak_bind has strong bit set (no fixup, just def), all images from the dyld
610 cache are checked to see if the export that symbol, if so, a PatchEntry is added
613 1) When closure is loaded (launch or dlopen) PatchEntries are
614 applied (exactly once) to whole cache.
620 // An array (accessible by index) list of Images
622 struct VIS_HIDDEN ImageArray
: public TypedBytes
625 size_t startImageNum() const;
626 uint32_t imageCount() const;
627 void forEachImage(void (^callback
)(const Image
* image
, bool& stop
)) const;
628 bool hasPath(const char* path
, ImageNum
& num
) const;
629 const Image
* imageForNum(ImageNum
) const;
630 void deallocate() const;
632 static const Image
* findImage(const Array
<const ImageArray
*> imagesArrays
, ImageNum imageNum
);
635 friend class ImageArrayWriter
;
637 uint32_t firstImageNum
;
639 uint32_t hasRoots
: 1; // True if this ImageArray contains roots with imageNum's below firstImageNum
645 struct InterposingTuple
647 Image::ResolvedSymbolTarget stockImplementation
;
648 Image::ResolvedSymbolTarget newImplementation
;
653 // Describes how dyld should load a set of mach-o files
655 struct VIS_HIDDEN Closure
: public ContainerTypedBytes
658 const ImageArray
* images() const;
659 ImageNum
topImage() const;
660 void deallocate() const;
662 friend class ClosureWriter
;
666 ImageNum overriddenDylibInCache
;
667 uint32_t exportCacheOffset
;
668 Image::ResolvedSymbolTarget replacement
;
673 enum Type
: uint32_t {
674 duplicateObjCClass
= 0
681 void forEachPatchEntry(void (^handler
)(const PatchEntry
& entry
)) const;
682 void forEachWarning(Warning::Type type
, void (^handler
)(const char* warning
, bool& stop
)) const;
687 // Describes how dyld should launch a main executable
689 struct VIS_HIDDEN LaunchClosure
: public Closure
691 // Represents a file on disk we tried to load but skipped as it wasn't valid for our use
699 bool builtAgainstDyldCache(uuid_t cacheUUID
) const;
700 const char* bootUUID() const;
701 void forEachMustBeMissingFile(void (^handler
)(const char* path
, bool& stop
)) const;
702 void forEachSkipIfExistsFile(void (^handler
)(const SkippedFile
& file
, bool& stop
)) const;
703 void forEachEnvVar(void (^handler
)(const char* keyEqualValue
, bool& stop
)) const;
704 ImageNum
libSystemImageNum() const;
705 void libDyldEntry(Image::ResolvedSymbolTarget
& loc
) const;
706 bool mainEntry(Image::ResolvedSymbolTarget
& mainLoc
) const;
707 bool startEntry(Image::ResolvedSymbolTarget
& startLoc
) const;
708 uint32_t initialLoadCount() const;
709 void forEachInterposingTuple(void (^handler
)(const InterposingTuple
& tuple
, bool& stop
)) const;
710 bool usedAtPaths() const;
711 bool usedFallbackPaths() const;
712 bool selectorHashTable(Array
<Image::ObjCSelectorImage
>& imageNums
,
713 const ObjCSelectorOpt
*& hashTable
) const;
714 bool classAndProtocolHashTables(Array
<Image::ObjCClassImage
>& imageNums
,
715 const ObjCClassOpt
*& classHashTable
,
716 const ObjCClassOpt
*& protocolHashTable
) const;
717 void duplicateClassesHashTable(const ObjCClassDuplicatesOpt
*& duplicateClassesHashTable
) const;
718 bool hasInsertedLibraries() const;
719 bool hasInterposings() const;
721 static bool buildClosureCachePath(const char* mainExecutablePath
, char closurePath
[], const char* tempDir
,
722 bool makeDirsIfMissing
);
725 friend class LaunchClosureWriter
;
729 uint32_t usedAtPaths
: 1,
730 usedFallbackPaths
: 1,
732 hasInsertedLibraries
: 1,
735 const Flags
& getFlags() const;
741 // Describes how dyld should dlopen() a mach-o file
743 struct VIS_HIDDEN DlopenClosure
: public Closure
748 // Precomputed perfect hash table of strings.
749 // Base class for closure precomputed selector table and class table.
750 class VIS_HIDDEN ObjCStringTable
{
752 typedef uint32_t StringTarget
;
755 typedef uint8_t StringHashCheckByte
;
763 StringTarget sentinelTarget
;
764 uint32_t roundedTabSize
;
767 uint32_t scramble
[256];
768 uint8_t tab
[0]; /* tab[mask+1] (always power-of-2). Rounded up to roundedTabSize */
769 // uint8_t checkbytes[capacity]; /* check byte for each string */
770 // int32_t offsets[capacity]; /* offsets from &capacity to cstrings */
772 StringHashCheckByte
* checkBytesOffset() {
773 return &tab
[roundedTabSize
];
776 const StringHashCheckByte
* checkBytesOffset() const {
777 return &tab
[roundedTabSize
];
780 StringTarget
* targetsOffset() {
781 return (StringTarget
*)(checkBytesOffset() + capacity
);
784 const StringTarget
* targetsOffset() const {
785 return (StringTarget
*)(checkBytesOffset() + capacity
);
788 dyld3::Array
<StringHashCheckByte
> checkBytes() {
789 return dyld3::Array
<StringHashCheckByte
>((StringHashCheckByte
*)checkBytesOffset(), capacity
, capacity
);
791 const dyld3::Array
<StringHashCheckByte
> checkBytes() const {
792 return dyld3::Array
<StringHashCheckByte
>((StringHashCheckByte
*)checkBytesOffset(), capacity
, capacity
);
795 dyld3::Array
<StringTarget
> targets() {
796 return dyld3::Array
<StringTarget
>((StringTarget
*)targetsOffset(), capacity
, capacity
);
798 const dyld3::Array
<StringTarget
> targets() const {
799 return dyld3::Array
<StringTarget
>((StringTarget
*)targetsOffset(), capacity
, capacity
);
802 uint32_t hash(const char *key
, size_t keylen
) const;
804 uint32_t hash(const char *key
) const
806 return hash(key
, strlen(key
));
809 // The check bytes areused to reject strings that aren't in the table
810 // without paging in the table's cstring data. This checkbyte calculation
811 // catches 4785/4815 rejects when launching Safari; a perfect checkbyte
812 // would catch 4796/4815.
813 StringHashCheckByte
checkbyte(const char *key
, size_t keylen
) const
815 return ((key
[0] & 0x7) << 5) | ((uint8_t)keylen
& 0x1f);
818 StringHashCheckByte
checkbyte(const char *key
) const
820 return checkbyte(key
, strlen(key
));
823 StringTarget
getPotentialTarget(const char *key
) const
825 uint32_t index
= getIndex(key
);
826 if (index
== indexNotFound
)
827 return sentinelTarget
;
828 return targets()[index
];
838 uint32_t getIndex(const char *key
) const
840 size_t keylen
= strlen(key
);
841 uint32_t h
= hash(key
, keylen
);
843 // Use check byte to reject without paging in the table's cstrings
844 StringHashCheckByte h_check
= checkBytes()[h
];
845 StringHashCheckByte key_check
= checkbyte(key
, keylen
);
846 if (h_check
!= key_check
)
847 return indexNotFound
;
851 template<typename PerfectHashT
>
852 static size_t size(const PerfectHashT
& phash
) {
853 // Round tab[] to at least 4 in length to ensure the uint32_t's after are aligned
854 uint32_t roundedTabSize
= std::max(phash
.mask
+1, 4U);
855 size_t tableSize
= 0;
856 tableSize
+= sizeof(ObjCStringTable
);
857 tableSize
+= roundedTabSize
;
858 tableSize
+= phash
.capacity
* sizeof(StringHashCheckByte
);
859 tableSize
+= phash
.capacity
* sizeof(StringTarget
);
863 // Get a string if it has an entry in the table
864 const char* getString(const char* selName
, const Array
<uintptr_t>& baseAddresses
) const;
866 void forEachString(const Array
<Image::ObjCSelectorImage
>& selectorImages
,
867 void (^callback
)(uint64_t selVMOffset
, ImageNum imageNum
)) const;
869 template<typename PerfectHashT
, typename ImageOffsetT
>
870 void write(const PerfectHashT
& phash
, const Array
<std::pair
<const char*, ImageOffsetT
>>& strings
);
873 class VIS_HIDDEN ObjCSelectorOpt
: public ObjCStringTable
{
875 // Get a string if it has an entry in the table
876 // Returns true if an entry is found and sets the imageNum and vmOffset.
877 bool getStringLocation(uint32_t index
, const Array
<closure::Image::ObjCSelectorImage
>& selImages
,
878 ImageNum
& imageNum
, uint64_t& vmOffset
) const;
880 void forEachString(const Array
<Image::ObjCSelectorImage
>& selectorImages
,
881 void (^callback
)(uint64_t selVMOffset
, ImageNum imageNum
)) const;
884 class VIS_HIDDEN ObjCClassOpt
: public ObjCStringTable
{
886 // ...ObjCStringTable fields...
887 // ClassTarget classOffsets[capacity]; /* offsets from &capacity to class_t and header_info */
888 // DuplicateCount duplicateCount;
889 // ClassTarget duplicateOffsets[duplicatedClasses];
891 typedef uint32_t DuplicateCount
;
892 typedef Image::ObjCClassImageOffset ClassTarget
;
894 ClassTarget
*classOffsetsStart() { return (ClassTarget
*)&targetsOffset()[capacity
]; }
895 const ClassTarget
*classOffsetsStart() const { return (const ClassTarget
*)&targetsOffset()[capacity
]; }
897 dyld3::Array
<ClassTarget
> classOffsets() {
898 return dyld3::Array
<ClassTarget
>((ClassTarget
*)classOffsetsStart(), capacity
, capacity
);
900 const dyld3::Array
<ClassTarget
> classOffsets() const {
901 return dyld3::Array
<ClassTarget
>((ClassTarget
*)classOffsetsStart(), capacity
, capacity
);
904 DuplicateCount
& duplicateCount() { return *(DuplicateCount
*)&classOffsetsStart()[capacity
]; }
905 const DuplicateCount
& duplicateCount() const { return *(const DuplicateCount
*)&classOffsetsStart()[capacity
]; }
907 ClassTarget
*duplicateOffsetsStart() { return (ClassTarget
*)(&duplicateCount()+1); }
908 const ClassTarget
*duplicateOffsetsStart() const { return (const ClassTarget
*)(&duplicateCount()+1); }
910 dyld3::Array
<ClassTarget
> duplicateOffsets(uint32_t preCalculatedDuplicateCount
) {
911 return dyld3::Array
<ClassTarget
>((ClassTarget
*)duplicateOffsetsStart(), preCalculatedDuplicateCount
, duplicateCount());
913 const dyld3::Array
<ClassTarget
> duplicateOffsets(uint32_t preCalculatedDuplicateCount
) const {
914 return dyld3::Array
<ClassTarget
>((ClassTarget
*)duplicateOffsetsStart(), preCalculatedDuplicateCount
, duplicateCount());
919 template<typename PerfectHashT
>
920 static size_t size(PerfectHashT
& phash
, uint32_t duplicateCount
)
922 size_t tableSize
= 0;
923 tableSize
+= ObjCStringTable::size(phash
);
924 tableSize
+= phash
.capacity
* sizeof(ClassTarget
);
925 tableSize
+= sizeof(DuplicateCount
);
926 tableSize
+= duplicateCount
* sizeof(ClassTarget
);
930 void forEachClass(const char* className
,
931 const Array
<std::pair
<uintptr_t, uintptr_t>>& nameAndDataBaseAddresses
,
932 void (^callback
)(void* classPtr
, bool isLoaded
, bool* stop
)) const;
934 void forEachClass(const Array
<Image::ObjCClassImage
>& classImages
,
935 void (^nameCallback
)(uint64_t classNameVMOffset
, ImageNum imageNum
),
936 void (^implCallback
)(uint64_t classVMOffset
, ImageNum imageNum
)) const;
938 template<typename PerfectHashT
, typename ImageOffsetT
, typename ClassesMapT
>
939 void write(const PerfectHashT
& phash
, const Array
<std::pair
<const char*, ImageOffsetT
>>& strings
,
940 const ClassesMapT
& classes
, uint32_t preCalculatedDuplicateCount
);
943 class VIS_HIDDEN ObjCClassDuplicatesOpt
: public ObjCStringTable
{
945 // Get a class if it has an entry in the table
946 bool getClassLocation(const char* className
, const objc_opt::objc_opt_t
* objCOpt
, void*& classImpl
) const;
948 void forEachClass(void (^callback
)(Image::ObjCDuplicateClass duplicateClass
)) const;
951 } // namespace closure