1 /* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
3 * Copyright (c) 2014 Apple Inc. All rights reserved.
5 * @APPLE_LICENSE_HEADER_START@
7 * This file contains Original Code and/or Modifications of Original Code
8 * as defined in and that are subject to the Apple Public Source License
9 * Version 2.0 (the 'License'). You may not use this file except in
10 * compliance with the License. Please obtain a copy of the License at
11 * http://www.opensource.apple.com/apsl/ and read it before using this
14 * The Original Code and all software distributed under the License are
15 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
19 * Please see the License for the specific language governing rights and
20 * limitations under the License.
22 * @APPLE_LICENSE_HEADER_END@
27 #include <sys/errno.h>
28 #include <sys/fcntl.h>
29 #include <mach-o/loader.h>
30 #include <mach-o/fat.h>
36 #include <unordered_map>
37 #include <unordered_set>
39 #include "MachOFileAbstraction.hpp"
41 #include "DyldSharedCache.h"
42 #include "CacheBuilder.h"
45 #define ALIGN_AS_TYPE(value, type) \
46 ((value + alignof(type) - 1) & (-alignof(type)))
51 class SortedStringPool
54 // add a string and symbol table entry index to be updated later
55 void add(uint32_t symbolIndex
, const char* symbolName
) {
56 _map
[symbolName
].push_back(symbolIndex
);
59 // copy sorted strings to buffer and update all symbol's string offsets
60 uint32_t copyPoolAndUpdateOffsets(char* dstStringPool
, macho_nlist
<P
>* symbolTable
) {
61 // make sorted list of strings
62 std::vector
<std::string
> allStrings
;
63 allStrings
.reserve(_map
.size());
64 for (auto& entry
: _map
) {
65 allStrings
.push_back(entry
.first
);
67 std::sort(allStrings
.begin(), allStrings
.end());
68 // walk sorted list of strings
69 dstStringPool
[0] = '\0'; // tradition for start of pool to be empty string
70 uint32_t poolOffset
= 1;
71 for (const std::string
& symName
: allStrings
) {
72 // append string to pool
73 strcpy(&dstStringPool
[poolOffset
], symName
.c_str());
74 // set each string offset of each symbol using it
75 for (uint32_t symbolIndex
: _map
[symName
]) {
76 symbolTable
[symbolIndex
].set_n_strx(poolOffset
);
78 poolOffset
+= symName
.size() + 1;
80 // return size of pool
86 for (auto& entry
: _map
) {
87 size
+= (entry
.first
.size() + 1);
94 std::unordered_map
<std::string
, std::vector
<uint32_t>> _map
;
100 struct LocalSymbolInfo
102 uint32_t dylibOffset
;
103 uint32_t nlistStartIndex
;
108 template <typename P
>
109 class LinkeditOptimizer
{
111 LinkeditOptimizer(void* cacheBuffer
, macho_header
<P
>* mh
, Diagnostics
& diag
);
113 uint32_t linkeditSize() { return _linkeditSize
; }
114 uint32_t linkeditOffset() { return _linkeditCacheOffset
; }
115 uint64_t linkeditAddr() { return _linkeditAddr
; }
116 const char* installName() { return _installName
; }
117 void copyWeakBindingInfo(uint8_t* newLinkEditContent
, uint32_t& offset
);
118 void copyLazyBindingInfo(uint8_t* newLinkEditContent
, uint32_t& offset
);
119 void copyBindingInfo(uint8_t* newLinkEditContent
, uint32_t& offset
);
120 void copyExportInfo(uint8_t* newLinkEditContent
, uint32_t& offset
);
121 void copyExportedSymbols(uint8_t* newLinkEditContent
, SortedStringPool
<P
>& stringPool
, uint32_t& offset
, uint32_t& symbolIndex
);
122 void copyImportedSymbols(uint8_t* newLinkEditContent
, SortedStringPool
<P
>& stringPool
, uint32_t& offset
, uint32_t& symbolIndex
);
123 void copyLocalSymbols(uint8_t* newLinkEditContent
, SortedStringPool
<P
>& stringPool
, uint32_t& offset
, uint32_t& symbolIndex
,
124 bool redact
, std::vector
<LocalSymbolInfo
>& localSymbolInfos
,
125 std::vector
<macho_nlist
<P
>>& unmappedLocalSymbols
, SortedStringPool
<P
>& localSymbolsStringPool
);
126 void copyFunctionStarts(uint8_t* newLinkEditContent
, uint32_t& offset
);
127 void copyDataInCode(uint8_t* newLinkEditContent
, uint32_t& offset
);
128 void copyIndirectSymbolTable(uint8_t* newLinkEditContent
, uint32_t& offset
);
129 void updateLoadCommands(uint32_t linkeditStartOffset
, uint64_t mergedLinkeditAddr
, uint64_t newLinkeditSize
,
130 uint32_t sharedSymbolTableStartOffset
, uint32_t sharedSymbolTableCount
,
131 uint32_t sharedSymbolStringsOffset
, uint32_t sharedSymbolStringsSize
);
133 macho_header
<P
>* machHeader() { return _mh
; }
134 const std::vector
<const char*> getDownwardDependents() { return _downDependentPaths
; }
135 const std::vector
<const char*> getAllDependents() { return _allDependentPaths
; }
136 const std::vector
<const char*> getReExportPaths() { return _reExportPaths
; }
137 const std::vector
<uint64_t> initializerAddresses() { return _initializerAddresses
; }
138 const std::vector
<macho_section
<P
>*> dofSections() { return _dofSections
; }
139 uint32_t exportsTrieLinkEditOffset() { return _newExportInfoOffset
; }
140 uint32_t exportsTrieLinkEditSize() { return _exportInfoSize
; }
141 uint32_t weakBindingLinkEditOffset() { return _newWeakBindingInfoOffset
; }
142 uint32_t weakBindingLinkEditSize() { return _newWeakBindingSize
; }
143 uint64_t dyldSectionAddress() { return _dyldSectionAddr
; }
144 const std::vector
<macho_segment_command
<P
>*>& segCmds() { return _segCmds
; }
149 typedef typename
P::uint_t pint_t
;
150 typedef typename
P::E E
;
152 macho_header
<P
>* _mh
;
154 Diagnostics
& _diagnostics
;
155 uint32_t _linkeditSize
= 0;
156 uint32_t _linkeditCacheOffset
= 0;
157 uint64_t _linkeditAddr
= 0;
158 const uint8_t* _linkeditBias
= nullptr;
159 const char* _installName
= nullptr;
160 macho_symtab_command
<P
>* _symTabCmd
= nullptr;
161 macho_dysymtab_command
<P
>* _dynSymTabCmd
= nullptr;
162 macho_dyld_info_command
<P
>* _dyldInfo
= nullptr;
163 macho_linkedit_data_command
<P
>* _functionStartsCmd
= nullptr;
164 macho_linkedit_data_command
<P
>* _dataInCodeCmd
= nullptr;
165 std::vector
<macho_segment_command
<P
>*> _segCmds
;
166 std::unordered_map
<uint32_t,uint32_t> _oldToNewSymbolIndexes
;
167 std::vector
<const char*> _reExportPaths
;
168 std::vector
<const char*> _downDependentPaths
;
169 std::vector
<const char*> _allDependentPaths
;
170 std::vector
<uint64_t> _initializerAddresses
;
171 std::vector
<macho_section
<P
>*> _dofSections
;
172 uint32_t _newWeakBindingInfoOffset
= 0;
173 uint32_t _newLazyBindingInfoOffset
= 0;
174 uint32_t _newBindingInfoOffset
= 0;
175 uint32_t _newExportInfoOffset
= 0;
176 uint32_t _exportInfoSize
= 0;
177 uint32_t _newWeakBindingSize
= 0;
178 uint32_t _newExportedSymbolsStartIndex
= 0;
179 uint32_t _newExportedSymbolCount
= 0;
180 uint32_t _newImportedSymbolsStartIndex
= 0;
181 uint32_t _newImportedSymbolCount
= 0;
182 uint32_t _newLocalSymbolsStartIndex
= 0;
183 uint32_t _newLocalSymbolCount
= 0;
184 uint32_t _newFunctionStartsOffset
= 0;
185 uint32_t _newDataInCodeOffset
= 0;
186 uint32_t _newIndirectSymbolTableOffset
= 0;
187 uint64_t _dyldSectionAddr
= 0;
192 template <typename P
>
193 class AcceleratorTables
{
195 AcceleratorTables(DyldSharedCache
* cache
, uint64_t linkeditStartAddr
, Diagnostics
& diag
, const std::vector
<LinkeditOptimizer
<P
>*>& optimizers
);
197 uint32_t totalSize() const;
198 void copyTo(uint8_t* buffer
);
201 typedef typename
P::E E
;
206 std::vector
<DepNode
*> _dependents
;
208 const char* _installName
;
210 DepNode() : _depth(0), _installName(nullptr) { }
212 static void verifyUnreachable(DepNode
* target
, NodeChain
& chain
, Diagnostics
& diag
, std::unordered_set
<DepNode
*>& visitedNodes
, const std::vector
<DepNode
*>& from
);
220 std::unordered_map
<macho_header
<P
>*, DepNode
> _depDAG
;
221 std::vector
<dyld_cache_image_info_extra
> _extraInfo
;
222 std::vector
<uint8_t> _trieBytes
;
223 std::vector
<uint16_t> _reExportArray
;
224 std::vector
<uint16_t> _dependencyArray
;
225 std::vector
<uint16_t> _bottomUpArray
;
226 std::vector
<dyld_cache_accelerator_initializer
> _initializers
;
227 std::vector
<dyld_cache_accelerator_dof
> _dofSections
;
228 std::vector
<dyld_cache_range_entry
> _rangeTable
;
229 std::unordered_map
<macho_header
<P
>*, uint32_t> _machHeaderToImageIndex
;
230 std::unordered_map
<std::string
, macho_header
<P
>*> _dylibPathToMachHeader
;
231 std::unordered_map
<macho_header
<P
>*, LinkeditOptimizer
<P
>*> _machHeaderToOptimizer
;
232 dyld_cache_accelerator_info _acceleratorInfoHeader
;
236 template <typename P
>
237 void AcceleratorTables
<P
>::AcceleratorTables::DepNode::verifyUnreachable(AcceleratorTables
<P
>::DepNode
* target
, struct AcceleratorTables
<P
>::NodeChain
& chain
, Diagnostics
& diag
,
238 std::unordered_set
<DepNode
*>& visitedNodes
, const std::vector
<AcceleratorTables
<P
>::DepNode
*>& from
) {
239 for (DepNode
* node
: from
) {
240 bool foundCycle
= (node
== target
);
241 for (NodeChain
* c
= &chain
; c
->prev
!= nullptr; c
= c
->prev
) {
242 if ( c
->node
== target
) {
248 NodeChain
* chp
= &chain
;
249 std::string msg
= std::string("found cycle for ") + target
->_installName
;
250 while (chp
!= nullptr) {
251 msg
= msg
+ "\n " + chp
->node
->_installName
;
254 diag
.warning("%s", msg
.c_str());
258 if ( visitedNodes
.count(node
) )
260 visitedNodes
.insert(node
);
262 nextChain
.prev
= &chain
;
263 nextChain
.node
= node
;
264 verifyUnreachable(target
, nextChain
, diag
, visitedNodes
, node
->_dependents
);
268 const uint16_t kBranchIslandDylibIndex
= 0x7FFF;
270 template <typename P
>
271 AcceleratorTables
<P
>::AcceleratorTables(DyldSharedCache
* cache
, uint64_t linkeditStartAddr
, Diagnostics
& diag
, const std::vector
<LinkeditOptimizer
<P
>*>& optimizers
)
273 // build table mapping tables to map between mach_header, index, and optimizer
274 for ( LinkeditOptimizer
<P
>* op
: optimizers
) {
275 _machHeaderToOptimizer
[op
->machHeader()] = op
;
277 const dyld_cache_mapping_info
* mappings
= (dyld_cache_mapping_info
*)((uint8_t*)cache
+ cache
->header
.mappingOffset
);
278 uint64_t cacheStartAddress
= mappings
[0].address
;
279 const dyld_cache_image_info
* images
= (dyld_cache_image_info
*)((uint8_t*)cache
+ cache
->header
.imagesOffset
);
280 for (unsigned i
=0; i
< cache
->header
.imagesCount
; ++i
) {
281 uint64_t segCacheFileOffset
= images
[i
].address
- cacheStartAddress
;
282 macho_header
<P
>* mhMapped
= (macho_header
<P
>*)((uint8_t*)cache
+segCacheFileOffset
);
283 const char* path
= (char*)cache
+ images
[i
].pathFileOffset
;
284 _dylibPathToMachHeader
[path
] = mhMapped
;
285 // don't add alias entries (path offset in pool near start of cache) to header->index map
286 if ( images
[i
].pathFileOffset
> segCacheFileOffset
)
287 _machHeaderToImageIndex
[mhMapped
] = i
;
291 // build DAG of image dependencies
292 for (LinkeditOptimizer
<P
>* op
: optimizers
) {
293 _depDAG
[op
->machHeader()]._installName
= op
->installName();
295 for (LinkeditOptimizer
<P
>* op
: optimizers
) {
296 DepNode
& node
= _depDAG
[op
->machHeader()];
297 for (const char* depPath
: op
->getDownwardDependents()) {
298 macho_header
<P
>* depMH
= _dylibPathToMachHeader
[depPath
];
299 if ( depMH
!= nullptr ) {
300 DepNode
* depNode
= &_depDAG
[depMH
];
301 node
._dependents
.push_back(depNode
);
306 // check for cycles in DAG
307 for (auto& entry
: _depDAG
) {
308 DepNode
* node
= &entry
.second
;
310 chain
.prev
= nullptr;
312 std::unordered_set
<DepNode
*> visitedNodes
;
313 DepNode::verifyUnreachable(node
, chain
, diag
, visitedNodes
, node
->_dependents
);
316 // compute depth for each DAG node
317 for (auto& entry
: _depDAG
) {
318 entry
.second
.computeDepth();
321 // build sorted (bottom up) list of images
322 std::vector
<macho_header
<P
>*> sortedMachHeaders
;
323 sortedMachHeaders
.reserve(optimizers
.size());
324 for (LinkeditOptimizer
<P
>* op
: optimizers
) {
325 if ( strcmp(op
->installName(), "dyld_shared_cache_branch_islands") != 0 )
326 sortedMachHeaders
.push_back(op
->machHeader());
328 _machHeaderToImageIndex
[op
->machHeader()] = kBranchIslandDylibIndex
;
330 std::sort(sortedMachHeaders
.begin(), sortedMachHeaders
.end(),
331 [&](macho_header
<P
>* lmh
, macho_header
<P
>* rmh
) -> bool {
332 if ( _depDAG
[lmh
]._depth
!= _depDAG
[rmh
]._depth
)
333 return (_depDAG
[lmh
]._depth
< _depDAG
[rmh
]._depth
);
338 // build zeroed array of extra infos
339 dyld_cache_image_info_extra emptyExtra
;
340 emptyExtra
.exportsTrieAddr
= 0;
341 emptyExtra
.weakBindingsAddr
= 0;
342 emptyExtra
.exportsTrieSize
= 0;
343 emptyExtra
.weakBindingsSize
= 0;
344 emptyExtra
.dependentsStartArrayIndex
= 0;
345 emptyExtra
.reExportsStartArrayIndex
= 0;
346 _extraInfo
.insert(_extraInfo
.begin(), sortedMachHeaders
.size(), emptyExtra
);
348 //for ( macho_header<P>* mh : sortedMachHeaders ) {
349 // fprintf(stderr, "depth: %3d mh: %p path: %s\n", _depDAG[mh]._depth, mh, _machHeaderToOptimizer[mh]->installName());
352 // build dependency table
353 _dependencyArray
.push_back(0xFFFF); // reserve 0 slot to be "no-dependencies"
354 for (macho_header
<P
>* mh
: sortedMachHeaders
) {
355 LinkeditOptimizer
<P
>* op
= _machHeaderToOptimizer
[mh
];
356 unsigned index
= _machHeaderToImageIndex
[mh
];
357 auto depPaths
= op
->getAllDependents();
358 if ( depPaths
.empty() ) {
359 _extraInfo
[index
].dependentsStartArrayIndex
= 0;
362 _extraInfo
[index
].dependentsStartArrayIndex
= (uint32_t)_dependencyArray
.size();
363 auto downPaths
= op
->getDownwardDependents();
364 for (const char* depPath
: depPaths
) {
365 macho_header
<P
>* depMH
= _dylibPathToMachHeader
[depPath
];
366 uint16_t depIndex
= _machHeaderToImageIndex
[depMH
];
367 if ( std::find(downPaths
.begin(), downPaths
.end(), depPath
) == downPaths
.end())
369 _dependencyArray
.push_back(depIndex
);
371 _dependencyArray
.push_back(0xFFFF); // mark end of list
375 // build re-exports table
376 _reExportArray
.push_back(0xFFFF); // reserve 0 slot to be "no-re-exports"
377 for (macho_header
<P
>* mh
: sortedMachHeaders
) {
378 LinkeditOptimizer
<P
>* op
= _machHeaderToOptimizer
[mh
];
379 unsigned index
= _machHeaderToImageIndex
[mh
];
380 auto reExPaths
= op
->getReExportPaths();
381 if ( reExPaths
.empty() ) {
382 _extraInfo
[index
].reExportsStartArrayIndex
= 0;
385 _extraInfo
[index
].reExportsStartArrayIndex
= (uint32_t)_reExportArray
.size();
386 for (const char* reExPath
: reExPaths
) {
387 macho_header
<P
>* reExMH
= _dylibPathToMachHeader
[reExPath
];
388 uint32_t reExIndex
= _machHeaderToImageIndex
[reExMH
];
389 _reExportArray
.push_back(reExIndex
);
391 _reExportArray
.push_back(0xFFFF); // mark end of list
395 // build ordered list of initializers
396 for (macho_header
<P
>* mh
: sortedMachHeaders
) {
397 LinkeditOptimizer
<P
>* op
= _machHeaderToOptimizer
[mh
];
398 unsigned index
= _machHeaderToImageIndex
[mh
];
399 _bottomUpArray
.push_back(index
);
400 for (uint64_t initializer
: op
->initializerAddresses()) {
401 //fprintf(stderr, "0x%08llX %s\n", initializer, op->installName());
402 dyld_cache_accelerator_initializer entry
;
403 entry
.functionOffset
= (uint32_t)(initializer
-cacheStartAddress
);
404 entry
.imageIndex
= _machHeaderToImageIndex
[mh
];
405 _initializers
.push_back(entry
);
409 // build ordered list of DOF sections
410 for (macho_header
<P
>* mh
: sortedMachHeaders
) {
411 LinkeditOptimizer
<P
>* op
= _machHeaderToOptimizer
[mh
];
413 unsigned imageIndex
= _machHeaderToImageIndex
[mh
];
414 for (auto& sect
: op
->dofSections()) {
415 //fprintf(stderr, "0x%08llX %s\n", initializer, op->installName());
416 dyld_cache_accelerator_dof entry
;
417 entry
.sectionAddress
= sect
->addr();
418 entry
.sectionSize
= (uint32_t)sect
->size();
419 entry
.imageIndex
= imageIndex
;
420 _dofSections
.push_back(entry
);
424 // register exports trie and weak binding info in each dylib with image extra info
425 for (macho_header
<P
>* mh
: sortedMachHeaders
) {
426 LinkeditOptimizer
<P
>* op
= _machHeaderToOptimizer
[mh
];
427 unsigned index
= _machHeaderToImageIndex
[mh
];
428 _extraInfo
[index
].exportsTrieAddr
= op
->exportsTrieLinkEditOffset() + linkeditStartAddr
;
429 _extraInfo
[index
].exportsTrieSize
= op
->exportsTrieLinkEditSize();
430 _extraInfo
[index
].weakBindingsAddr
= op
->weakBindingLinkEditOffset() + linkeditStartAddr
;
431 _extraInfo
[index
].weakBindingsSize
= op
->weakBindingLinkEditSize();
434 // record location of __DATA/__dyld section in libdyld.dylib
435 macho_header
<P
>* libdyldMH
= _dylibPathToMachHeader
["/usr/lib/system/libdyld.dylib"];
436 LinkeditOptimizer
<P
>* libdyldOp
= _machHeaderToOptimizer
[libdyldMH
];
437 uint64_t dyldSectionAddr
= libdyldOp
->dyldSectionAddress();
439 // build range table for fast address->image lookups
440 for (macho_header
<P
>* mh
: sortedMachHeaders
) {
441 LinkeditOptimizer
<P
>* op
= _machHeaderToOptimizer
[mh
];
442 unsigned imageIndex
= _machHeaderToImageIndex
[mh
];
443 for (const macho_segment_command
<P
>* segCmd
: op
->segCmds()) {
444 if ( strcmp(segCmd
->segname(), "__LINKEDIT") == 0 )
446 dyld_cache_range_entry entry
;
447 entry
.startAddress
= segCmd
->vmaddr();
448 entry
.size
= (uint32_t)segCmd
->vmsize();
449 entry
.imageIndex
= imageIndex
;
450 _rangeTable
.push_back(entry
);
453 std::sort(_rangeTable
.begin(), _rangeTable
.end(),
454 [&](const dyld_cache_range_entry
& lRange
, const dyld_cache_range_entry
& rRange
) -> bool {
455 return (lRange
.startAddress
< rRange
.startAddress
);
458 // build trie that maps install names to image index
459 std::vector
<DylibIndexTrie::Entry
> dylibEntrys
;
460 for (auto &x
: _dylibPathToMachHeader
) {
461 const std::string
& path
= x
.first
;
462 unsigned index
= _machHeaderToImageIndex
[x
.second
];
463 dylibEntrys
.push_back(DylibIndexTrie::Entry(path
, DylibIndex(index
)));
465 DylibIndexTrie
dylibsTrie(dylibEntrys
);
466 dylibsTrie
.emit(_trieBytes
);
467 while ( (_trieBytes
.size() % 4) != 0 )
468 _trieBytes
.push_back(0);
471 _acceleratorInfoHeader
.version
= 1;
472 _acceleratorInfoHeader
.imageExtrasCount
= (uint32_t)_extraInfo
.size();
473 _acceleratorInfoHeader
.imagesExtrasOffset
= ALIGN_AS_TYPE(sizeof(dyld_cache_accelerator_info
), dyld_cache_image_info_extra
);
474 _acceleratorInfoHeader
.bottomUpListOffset
= _acceleratorInfoHeader
.imagesExtrasOffset
+ _acceleratorInfoHeader
.imageExtrasCount
*sizeof(dyld_cache_image_info_extra
);
475 _acceleratorInfoHeader
.dylibTrieOffset
= _acceleratorInfoHeader
.bottomUpListOffset
+ _acceleratorInfoHeader
.imageExtrasCount
*sizeof(uint16_t);
476 _acceleratorInfoHeader
.dylibTrieSize
= (uint32_t)_trieBytes
.size();
477 _acceleratorInfoHeader
.initializersOffset
= ALIGN_AS_TYPE(_acceleratorInfoHeader
.dylibTrieOffset
+ _acceleratorInfoHeader
.dylibTrieSize
, dyld_cache_accelerator_initializer
);
478 _acceleratorInfoHeader
.initializersCount
= (uint32_t)_initializers
.size();
479 _acceleratorInfoHeader
.dofSectionsOffset
= ALIGN_AS_TYPE(_acceleratorInfoHeader
.initializersOffset
+ _acceleratorInfoHeader
.initializersCount
*sizeof(dyld_cache_accelerator_initializer
), dyld_cache_accelerator_initializer
);
480 _acceleratorInfoHeader
.dofSectionsCount
= (uint32_t)_dofSections
.size();
481 _acceleratorInfoHeader
.reExportListOffset
= ALIGN_AS_TYPE(_acceleratorInfoHeader
.dofSectionsOffset
+ _acceleratorInfoHeader
.dofSectionsCount
*sizeof(dyld_cache_accelerator_dof
), dyld_cache_accelerator_dof
);
482 _acceleratorInfoHeader
.reExportCount
= (uint32_t)_reExportArray
.size();
483 _acceleratorInfoHeader
.depListOffset
= ALIGN_AS_TYPE(_acceleratorInfoHeader
.reExportListOffset
+ _acceleratorInfoHeader
.reExportCount
*sizeof(uint16_t), uint16_t);
484 _acceleratorInfoHeader
.depListCount
= (uint32_t)_dependencyArray
.size();
485 _acceleratorInfoHeader
.rangeTableOffset
= ALIGN_AS_TYPE(_acceleratorInfoHeader
.depListOffset
+ _acceleratorInfoHeader
.depListCount
*sizeof(uint16_t), dyld_cache_range_entry
);
486 _acceleratorInfoHeader
.rangeTableCount
= (uint32_t)_rangeTable
.size();
487 _acceleratorInfoHeader
.dyldSectionAddr
= dyldSectionAddr
;
491 template <typename P
>
492 void AcceleratorTables
<P
>::DepNode::computeDepth()
497 for (DepNode
* node
: _dependents
) {
498 node
->computeDepth();
499 if ( node
->_depth
>= _depth
)
500 _depth
= node
->_depth
+ 1;
504 template <typename P
>
505 uint32_t AcceleratorTables
<P
>::totalSize() const
507 return (uint32_t)align(_acceleratorInfoHeader
.rangeTableOffset
+ _acceleratorInfoHeader
.rangeTableCount
*sizeof(dyld_cache_range_entry
), 14);
510 template <typename P
>
511 void AcceleratorTables
<P
>::copyTo(uint8_t* buffer
)
513 memcpy(buffer
, &_acceleratorInfoHeader
, sizeof(dyld_cache_accelerator_info
));
514 memcpy(&buffer
[_acceleratorInfoHeader
.imagesExtrasOffset
], &_extraInfo
[0], _extraInfo
.size()*sizeof(dyld_cache_image_info_extra
));
515 memcpy(&buffer
[_acceleratorInfoHeader
.bottomUpListOffset
], &_bottomUpArray
[0], _bottomUpArray
.size()*sizeof(uint16_t));
516 memcpy(&buffer
[_acceleratorInfoHeader
.initializersOffset
], &_initializers
[0], _initializers
.size()*sizeof(dyld_cache_accelerator_initializer
));
517 memcpy(&buffer
[_acceleratorInfoHeader
.reExportListOffset
], &_reExportArray
[0], _reExportArray
.size()*sizeof(uint16_t));
518 memcpy(&buffer
[_acceleratorInfoHeader
.dofSectionsOffset
], &_dofSections
[0], _dofSections
.size()*sizeof(dyld_cache_accelerator_dof
));
519 memcpy(&buffer
[_acceleratorInfoHeader
.depListOffset
], &_dependencyArray
[0], _dependencyArray
.size()*sizeof(uint16_t));
520 memcpy(&buffer
[_acceleratorInfoHeader
.rangeTableOffset
], &_rangeTable
[0], _rangeTable
.size()*sizeof(dyld_cache_range_entry
));
521 memcpy(&buffer
[_acceleratorInfoHeader
.dylibTrieOffset
], &_trieBytes
[0], _trieBytes
.size());
526 template <typename P
>
527 LinkeditOptimizer
<P
>::LinkeditOptimizer(void* cacheBuffer
, macho_header
<P
>* mh
, Diagnostics
& diag
)
528 : _mh(mh
), _cacheBuffer(cacheBuffer
), _diagnostics(diag
)
530 _linkeditBias
= (uint8_t*)cacheBuffer
;
531 const unsigned origLoadCommandsSize
= mh
->sizeofcmds();
532 unsigned bytesRemaining
= origLoadCommandsSize
;
533 unsigned removedCount
= 0;
534 const macho_load_command
<P
>* const cmds
= (macho_load_command
<P
>*)((uint8_t*)mh
+ sizeof(macho_header
<P
>));
535 const uint32_t cmdCount
= mh
->ncmds();
536 const macho_load_command
<P
>* cmd
= cmds
;
537 const macho_dylib_command
<P
>* dylibCmd
;
538 const macho_routines_command
<P
>* routinesCmd
;
539 macho_segment_command
<P
>* segCmd
;
540 for (uint32_t i
= 0; i
< cmdCount
; ++i
) {
542 switch (cmd
->cmd()) {
544 _installName
= ((macho_dylib_command
<P
>*)cmd
)->name();
547 _symTabCmd
= (macho_symtab_command
<P
>*)cmd
;
550 _dynSymTabCmd
= (macho_dysymtab_command
<P
>*)cmd
;
553 case LC_DYLD_INFO_ONLY
:
554 _dyldInfo
= (macho_dyld_info_command
<P
>*)cmd
;
555 _exportInfoSize
= _dyldInfo
->export_size();
557 case LC_FUNCTION_STARTS
:
558 _functionStartsCmd
= (macho_linkedit_data_command
<P
>*)cmd
;
560 case LC_DATA_IN_CODE
:
561 _dataInCodeCmd
= (macho_linkedit_data_command
<P
>*)cmd
;
565 routinesCmd
= (macho_routines_command
<P
>*)cmd
;
566 _initializerAddresses
.push_back(routinesCmd
->init_address());
568 case LC_REEXPORT_DYLIB
:
570 case LC_LOAD_WEAK_DYLIB
:
571 case LC_LOAD_UPWARD_DYLIB
:
572 dylibCmd
= (macho_dylib_command
<P
>*)cmd
;
573 _allDependentPaths
.push_back(dylibCmd
->name());
574 if ( cmd
->cmd() != LC_LOAD_UPWARD_DYLIB
)
575 _downDependentPaths
.push_back(dylibCmd
->name());
576 if ( cmd
->cmd() == LC_REEXPORT_DYLIB
)
577 _reExportPaths
.push_back(dylibCmd
->name());
579 case macho_segment_command
<P
>::CMD
:
580 segCmd
= (macho_segment_command
<P
>*)cmd
;
581 _segCmds
.push_back(segCmd
);
582 if ( strcmp(segCmd
->segname(), "__LINKEDIT") == 0 ) {
583 _linkeditSize
= (uint32_t)segCmd
->vmsize();
584 _linkeditCacheOffset
= (uint32_t)segCmd
->fileoff();
585 _linkeditAddr
= segCmd
->vmaddr();
587 else if ( segCmd
->nsects() > 0 ) {
588 macho_section
<P
>* const sectionsStart
= (macho_section
<P
>*)((uint8_t*)segCmd
+ sizeof(macho_segment_command
<P
>));
589 macho_section
<P
>* const sectionsEnd
= §ionsStart
[segCmd
->nsects()];
590 for (macho_section
<P
>* sect
=sectionsStart
; sect
< sectionsEnd
; ++sect
) {
591 const uint8_t type
= sect
->flags() & SECTION_TYPE
;
592 if ( type
== S_MOD_INIT_FUNC_POINTERS
) {
593 const pint_t
* inits
= (pint_t
*)((char*)cacheBuffer
+ sect
->offset());
594 const size_t count
= sect
->size() / sizeof(pint_t
);
595 for (size_t j
=0; j
< count
; ++j
) {
596 uint64_t func
= P::getP(inits
[j
]);
597 _initializerAddresses
.push_back(func
);
600 else if ( type
== S_DTRACE_DOF
) {
601 _dofSections
.push_back(sect
);
603 else if ( (strcmp(sect
->sectname(), "__dyld") == 0) && (strncmp(sect
->segname(), "__DATA", 6) == 0) ) {
604 _dyldSectionAddr
= sect
->addr();
609 case LC_SEGMENT_SPLIT_INFO
:
613 uint32_t cmdSize
= cmd
->cmdsize();
614 macho_load_command
<P
>* nextCmd
= (macho_load_command
<P
>*)(((uint8_t*)cmd
)+cmdSize
);
616 ::memmove((void*)cmd
, (void*)nextCmd
, bytesRemaining
);
620 bytesRemaining
-= cmdSize
;
624 // zero out stuff removed
625 ::bzero((void*)cmd
, bytesRemaining
);
627 mh
->set_ncmds(cmdCount
- removedCount
);
628 mh
->set_sizeofcmds(origLoadCommandsSize
- bytesRemaining
);
632 static void dumpLoadCommands(const uint8_t* mheader)
634 const mach_header* const mh = (mach_header*)mheader;
635 const uint32_t cmd_count = mh->ncmds;
636 bool is64 = (mh->magic == MH_MAGIC_64);
637 const load_command* cmds = (load_command*)(mheader + (is64 ? sizeof(mach_header_64) : sizeof(mach_header)));
638 const load_command* cmd = cmds;
639 const segment_command* segCmd;
640 const segment_command_64* seg64Cmd;
641 const symtab_command* symTab;
642 const linkedit_data_command* leData;
643 const uint8_t* linkEditBias = NULL;
644 for (uint32_t i = 0; i < cmd_count; ++i) {
647 segCmd = (const segment_command*)cmd;
648 printf("LC_SEGMENT\n");
649 printf(" segname = %s\n", segCmd->segname);
650 printf(" vmaddr = 0x%08X\n", segCmd->vmaddr);
651 printf(" vmsize = 0x%08X\n", segCmd->vmsize);
652 printf(" fileoff = 0x%08X\n", segCmd->fileoff);
653 printf(" filesize = 0x%08X\n", segCmd->filesize);
654 if ( strcmp(segCmd->segname, "__TEXT") == 0 ) {
655 linkEditBias = mheader - segCmd->fileoff;
659 seg64Cmd = (const segment_command_64*)cmd;
660 printf("LC_SEGMENT_64\n");
661 printf(" segname = %s\n", seg64Cmd->segname);
662 printf(" vmaddr = 0x%09llX\n", seg64Cmd->vmaddr);
663 printf(" vmsize = 0x%09llX\n", seg64Cmd->vmsize);
664 printf(" fileoff = 0x%09llX\n", seg64Cmd->fileoff);
665 printf(" filesize = 0x%09llX\n", seg64Cmd->filesize);
666 if ( strcmp(seg64Cmd->segname, "__TEXT") == 0 ) {
667 linkEditBias = mheader - seg64Cmd->fileoff;
671 symTab = (const symtab_command*)cmd;
672 printf("LC_SYMTAB\n");
673 printf(" symoff = 0x%08X\n", symTab->symoff);
674 printf(" nsyms = 0x%08X\n", symTab->nsyms);
675 printf(" stroff = 0x%08X\n", symTab->stroff);
676 printf(" strsize = 0x%08X\n", symTab->strsize);
678 const char* strPool = (char*)&linkEditBias[symTab->stroff];
679 const nlist_64* sym0 = (nlist_64*)(&linkEditBias[symTab->symoff]);
680 printf(" sym[0].n_strx = 0x%08X (%s)\n", sym0->n_un.n_strx, &strPool[sym0->n_un.n_strx]);
681 printf(" sym[0].n_type = 0x%02X\n", sym0->n_type);
682 printf(" sym[0].n_sect = 0x%02X\n", sym0->n_sect);
683 printf(" sym[0].n_desc = 0x%04X\n", sym0->n_desc);
684 printf(" sym[0].n_value = 0x%llX\n", sym0->n_value);
685 const nlist_64* sym1 = (nlist_64*)(&linkEditBias[symTab->symoff+16]);
686 printf(" sym[1].n_strx = 0x%08X (%s)\n", sym1->n_un.n_strx, &strPool[sym1->n_un.n_strx]);
687 printf(" sym[1].n_type = 0x%02X\n", sym1->n_type);
688 printf(" sym[1].n_sect = 0x%02X\n", sym1->n_sect);
689 printf(" sym[1].n_desc = 0x%04X\n", sym1->n_desc);
690 printf(" sym[1].n_value = 0x%llX\n", sym1->n_value);
693 case LC_FUNCTION_STARTS:
694 leData = (const linkedit_data_command*)cmd;
695 printf("LC_FUNCTION_STARTS\n");
696 printf(" dataoff = 0x%08X\n", leData->dataoff);
697 printf(" datasize = 0x%08X\n", leData->datasize);
699 //printf("0x%08X\n", cmd->cmd);
702 cmd = (const load_command*)(((uint8_t*)cmd)+cmd->cmdsize);
707 template <typename P
>
708 void LinkeditOptimizer
<P
>::updateLoadCommands(uint32_t mergedLinkeditStartOffset
, uint64_t mergedLinkeditAddr
, uint64_t newLinkeditSize
,
709 uint32_t sharedSymbolTableStartOffset
, uint32_t sharedSymbolTableCount
,
710 uint32_t sharedSymbolStringsOffset
, uint32_t sharedSymbolStringsSize
)
712 // update __LINKEDIT segment in all dylibs to overlap the same shared region
713 for (macho_segment_command
<P
>* segCmd
: _segCmds
) {
714 if ( strcmp(segCmd
->segname(), "__LINKEDIT") == 0 ) {
715 segCmd
->set_vmaddr(mergedLinkeditAddr
);
716 segCmd
->set_vmsize(newLinkeditSize
);
717 segCmd
->set_fileoff(mergedLinkeditStartOffset
);
718 segCmd
->set_filesize(newLinkeditSize
);
720 else if ( strcmp(segCmd
->segname(), "__TEXT") == 0 ) {
721 // HACK until lldb fixed in: <rdar://problem/20357466> DynamicLoaderMacOSXDYLD fixes for Monarch dyld shared cache
722 //segCmd->set_fileoff(0);
727 // update symbol table to point to shared symbol table
728 _symTabCmd
->set_symoff(mergedLinkeditStartOffset
+ sharedSymbolTableStartOffset
+ _newLocalSymbolsStartIndex
*sizeof(macho_nlist
<P
>));
729 _symTabCmd
->set_nsyms(_newLocalSymbolCount
+_newExportedSymbolCount
+_newImportedSymbolCount
);
730 _symTabCmd
->set_stroff(mergedLinkeditStartOffset
+ sharedSymbolStringsOffset
);
731 _symTabCmd
->set_strsize(sharedSymbolStringsSize
);
733 // update dynamic symbol table to have proper offsets into shared symbol table
734 _dynSymTabCmd
->set_ilocalsym(0);
735 _dynSymTabCmd
->set_nlocalsym(_newLocalSymbolCount
);
736 _dynSymTabCmd
->set_iextdefsym(_newExportedSymbolsStartIndex
-_newLocalSymbolsStartIndex
);
737 _dynSymTabCmd
->set_nextdefsym(_newExportedSymbolCount
);
738 _dynSymTabCmd
->set_iundefsym(_newImportedSymbolsStartIndex
-_newLocalSymbolsStartIndex
);
739 _dynSymTabCmd
->set_nundefsym(_newImportedSymbolCount
);
740 _dynSymTabCmd
->set_tocoff(0);
741 _dynSymTabCmd
->set_ntoc(0);
742 _dynSymTabCmd
->set_modtaboff(0);
743 _dynSymTabCmd
->set_nmodtab(0);
744 _dynSymTabCmd
->set_indirectsymoff(mergedLinkeditStartOffset
+ _newIndirectSymbolTableOffset
);
745 _dynSymTabCmd
->set_extreloff(0);
746 _dynSymTabCmd
->set_locreloff(0);
747 _dynSymTabCmd
->set_nlocrel(0);
750 if ( _dyldInfo
!= nullptr ) {
751 _dyldInfo
->set_rebase_off(0);
752 _dyldInfo
->set_rebase_size(0);
753 _dyldInfo
->set_bind_off(_dyldInfo
->bind_size() ? mergedLinkeditStartOffset
+ _newBindingInfoOffset
: 0);
754 _dyldInfo
->set_weak_bind_off(_dyldInfo
->weak_bind_size() ? mergedLinkeditStartOffset
+ _newWeakBindingInfoOffset
: 0 );
755 _dyldInfo
->set_lazy_bind_off(_dyldInfo
->lazy_bind_size() ? mergedLinkeditStartOffset
+ _newLazyBindingInfoOffset
: 0 );
756 _dyldInfo
->set_export_off(mergedLinkeditStartOffset
+ _newExportInfoOffset
);
759 // update function-starts
760 if ( _functionStartsCmd
!= nullptr )
761 _functionStartsCmd
->set_dataoff(mergedLinkeditStartOffset
+_newFunctionStartsOffset
);
763 // update data-in-code
764 if ( _dataInCodeCmd
!= nullptr )
765 _dataInCodeCmd
->set_dataoff(mergedLinkeditStartOffset
+_newDataInCodeOffset
);
768 template <typename P
>
769 void LinkeditOptimizer
<P
>::copyWeakBindingInfo(uint8_t* newLinkEditContent
, uint32_t& offset
)
771 if ( _dyldInfo
== nullptr )
773 unsigned size
= _dyldInfo
->weak_bind_size();
775 ::memcpy(&newLinkEditContent
[offset
], &_linkeditBias
[_dyldInfo
->weak_bind_off()], size
);
776 _newWeakBindingInfoOffset
= offset
;
777 _newWeakBindingSize
= size
;
783 template <typename P
>
784 void LinkeditOptimizer
<P
>::copyLazyBindingInfo(uint8_t* newLinkEditContent
, uint32_t& offset
)
786 if ( _dyldInfo
== nullptr )
788 unsigned size
= _dyldInfo
->lazy_bind_size();
790 ::memcpy(&newLinkEditContent
[offset
], &_linkeditBias
[_dyldInfo
->lazy_bind_off()], size
);
791 _newLazyBindingInfoOffset
= offset
;
796 template <typename P
>
797 void LinkeditOptimizer
<P
>::copyBindingInfo(uint8_t* newLinkEditContent
, uint32_t& offset
)
799 if ( _dyldInfo
== nullptr )
801 unsigned size
= _dyldInfo
->bind_size();
803 ::memcpy(&newLinkEditContent
[offset
], &_linkeditBias
[_dyldInfo
->bind_off()], size
);
804 _newBindingInfoOffset
= offset
;
809 template <typename P
>
810 void LinkeditOptimizer
<P
>::copyExportInfo(uint8_t* newLinkEditContent
, uint32_t& offset
)
812 if ( _dyldInfo
== nullptr )
814 unsigned size
= _dyldInfo
->export_size();
816 ::memcpy(&newLinkEditContent
[offset
], &_linkeditBias
[_dyldInfo
->export_off()], size
);
817 _newExportInfoOffset
= offset
;
823 template <typename P
>
824 void LinkeditOptimizer
<P
>::copyFunctionStarts(uint8_t* newLinkEditContent
, uint32_t& offset
)
826 if ( _functionStartsCmd
== nullptr )
828 unsigned size
= _functionStartsCmd
->datasize();
829 ::memcpy(&newLinkEditContent
[offset
], &_linkeditBias
[_functionStartsCmd
->dataoff()], size
);
830 _newFunctionStartsOffset
= offset
;
834 template <typename P
>
835 void LinkeditOptimizer
<P
>::copyDataInCode(uint8_t* newLinkEditContent
, uint32_t& offset
)
837 if ( _dataInCodeCmd
== nullptr )
839 unsigned size
= _dataInCodeCmd
->datasize();
840 ::memcpy(&newLinkEditContent
[offset
], &_linkeditBias
[_dataInCodeCmd
->dataoff()], size
);
841 _newDataInCodeOffset
= offset
;
846 template <typename P
>
847 void LinkeditOptimizer
<P
>::copyLocalSymbols(uint8_t* newLinkEditContent
, SortedStringPool
<P
>& stringPool
, uint32_t& offset
, uint32_t& symbolIndex
,
848 bool redact
, std::vector
<LocalSymbolInfo
>& localSymbolInfos
,
849 std::vector
<macho_nlist
<P
>>& unmappedLocalSymbols
, SortedStringPool
<P
>& localSymbolsStringPool
)
851 LocalSymbolInfo localInfo
;
852 localInfo
.dylibOffset
= (uint32_t)(((uint8_t*)_mh
) - (uint8_t*)_cacheBuffer
);
853 localInfo
.nlistStartIndex
= (uint32_t)unmappedLocalSymbols
.size();
854 localInfo
.nlistCount
= 0;
855 _newLocalSymbolsStartIndex
= symbolIndex
;
856 const char* strings
= (char*)&_linkeditBias
[_symTabCmd
->stroff()];
857 const macho_nlist
<P
>* const symbolTable
= (macho_nlist
<P
>*)(&_linkeditBias
[_symTabCmd
->symoff()]);
858 const macho_nlist
<P
>* const firstExport
= &symbolTable
[_dynSymTabCmd
->ilocalsym()];
859 const macho_nlist
<P
>* const lastExport
= &symbolTable
[_dynSymTabCmd
->ilocalsym()+_dynSymTabCmd
->nlocalsym()];
860 for (const macho_nlist
<P
>* entry
= firstExport
; entry
< lastExport
; ++entry
) {
861 if ( (entry
->n_type() & N_TYPE
) != N_SECT
)
863 if ( (entry
->n_type() & N_STAB
) != 0)
865 const char* name
= &strings
[entry
->n_strx()];
866 macho_nlist
<P
>* newSymbolEntry
= (macho_nlist
<P
>*)&newLinkEditContent
[offset
];
867 *newSymbolEntry
= *entry
;
869 // if removing local symbols, change __text symbols to "<redacted>" so backtraces don't have bogus names
870 if ( entry
->n_sect() == 1 ) {
871 stringPool
.add(symbolIndex
, "<redacted>");
873 offset
+= sizeof(macho_nlist
<P
>);
875 // copy local symbol to unmmapped locals area
876 localSymbolsStringPool
.add((uint32_t)unmappedLocalSymbols
.size(), name
);
877 unmappedLocalSymbols
.push_back(*entry
);
878 unmappedLocalSymbols
.back().set_n_strx(0);
881 stringPool
.add(symbolIndex
, name
);
883 offset
+= sizeof(macho_nlist
<P
>);
886 _newLocalSymbolCount
= symbolIndex
- _newLocalSymbolsStartIndex
;
887 localInfo
.nlistCount
= (uint32_t)unmappedLocalSymbols
.size() - localInfo
.nlistStartIndex
;
888 localSymbolInfos
.push_back(localInfo
);
892 template <typename P
>
893 void LinkeditOptimizer
<P
>::copyExportedSymbols(uint8_t* newLinkEditContent
, SortedStringPool
<P
>& stringPool
, uint32_t& offset
, uint32_t& symbolIndex
)
895 _newExportedSymbolsStartIndex
= symbolIndex
;
896 const char* strings
= (char*)&_linkeditBias
[_symTabCmd
->stroff()];
897 const macho_nlist
<P
>* const symbolTable
= (macho_nlist
<P
>*)(&_linkeditBias
[_symTabCmd
->symoff()]);
898 const macho_nlist
<P
>* const firstExport
= &symbolTable
[_dynSymTabCmd
->iextdefsym()];
899 const macho_nlist
<P
>* const lastExport
= &symbolTable
[_dynSymTabCmd
->iextdefsym()+_dynSymTabCmd
->nextdefsym()];
900 uint32_t oldSymbolIndex
= _dynSymTabCmd
->iextdefsym();
901 for (const macho_nlist
<P
>* entry
= firstExport
; entry
< lastExport
; ++entry
, ++oldSymbolIndex
) {
902 if ( (entry
->n_type() & N_TYPE
) != N_SECT
)
904 const char* name
= &strings
[entry
->n_strx()];
905 if ( strncmp(name
, ".objc_", 6) == 0 )
907 if ( strncmp(name
, "$ld$", 4) == 0 )
909 macho_nlist
<P
>* newSymbolEntry
= (macho_nlist
<P
>*)&newLinkEditContent
[offset
];
910 *newSymbolEntry
= *entry
;
911 newSymbolEntry
->set_n_strx(0);
912 stringPool
.add(symbolIndex
, name
);
913 _oldToNewSymbolIndexes
[oldSymbolIndex
] = symbolIndex
- _newLocalSymbolsStartIndex
;
915 offset
+= sizeof(macho_nlist
<P
>);
917 _newExportedSymbolCount
= symbolIndex
- _newExportedSymbolsStartIndex
;
920 template <typename P
>
921 void LinkeditOptimizer
<P
>::copyImportedSymbols(uint8_t* newLinkEditContent
, SortedStringPool
<P
>& stringPool
, uint32_t& offset
, uint32_t& symbolIndex
)
923 _newImportedSymbolsStartIndex
= symbolIndex
;
924 const char* strings
= (char*)&_linkeditBias
[_symTabCmd
->stroff()];
925 const macho_nlist
<P
>* const symbolTable
= (macho_nlist
<P
>*)(&_linkeditBias
[_symTabCmd
->symoff()]);
926 const macho_nlist
<P
>* const firstImport
= &symbolTable
[_dynSymTabCmd
->iundefsym()];
927 const macho_nlist
<P
>* const lastImport
= &symbolTable
[_dynSymTabCmd
->iundefsym()+_dynSymTabCmd
->nundefsym()];
928 uint32_t oldSymbolIndex
= _dynSymTabCmd
->iundefsym();
929 for (const macho_nlist
<P
>* entry
= firstImport
; entry
< lastImport
; ++entry
, ++oldSymbolIndex
) {
930 if ( (entry
->n_type() & N_TYPE
) != N_UNDF
)
932 const char* name
= &strings
[entry
->n_strx()];
933 macho_nlist
<P
>* newSymbolEntry
= (macho_nlist
<P
>*)&newLinkEditContent
[offset
];
934 *newSymbolEntry
= *entry
;
935 newSymbolEntry
->set_n_strx(0);
936 stringPool
.add(symbolIndex
, name
);
937 _oldToNewSymbolIndexes
[oldSymbolIndex
] = symbolIndex
- _newLocalSymbolsStartIndex
;
939 offset
+= sizeof(macho_nlist
<P
>);
941 _newImportedSymbolCount
= symbolIndex
- _newImportedSymbolsStartIndex
;
944 template <typename P
>
945 void LinkeditOptimizer
<P
>::copyIndirectSymbolTable(uint8_t* newLinkEditContent
, uint32_t& offset
)
947 _newIndirectSymbolTableOffset
= offset
;
948 const uint32_t* const indirectTable
= (uint32_t*)&_linkeditBias
[_dynSymTabCmd
->indirectsymoff()];
949 uint32_t* newIndirectTable
= (uint32_t*)&newLinkEditContent
[offset
];
950 for (int i
=0; i
< _dynSymTabCmd
->nindirectsyms(); ++i
) {
951 uint32_t symbolIndex
= E::get32(indirectTable
[i
]);
952 if ( (symbolIndex
== INDIRECT_SYMBOL_ABS
) || (symbolIndex
== INDIRECT_SYMBOL_LOCAL
) )
953 E::set32(newIndirectTable
[i
], symbolIndex
);
955 E::set32(newIndirectTable
[i
], _oldToNewSymbolIndexes
[symbolIndex
]);
956 offset
+= sizeof(uint32_t);
960 template <typename P
>
961 uint64_t mergeLinkedits(DyldSharedCache
* cache
, bool dontMapLocalSymbols
, bool addAcceleratorTables
, std::vector
<LinkeditOptimizer
<P
>*>& optimizers
, Diagnostics
& diagnostics
, dyld_cache_local_symbols_info
** localsInfo
)
963 // allocate space for new linkedit data
964 uint32_t linkeditStartOffset
= 0xFFFFFFFF;
965 uint32_t linkeditEndOffset
= 0;
966 uint64_t linkeditStartAddr
= 0;
967 for (LinkeditOptimizer
<P
>* op
: optimizers
) {
968 uint32_t leOffset
= op
->linkeditOffset();
969 if ( leOffset
< linkeditStartOffset
) {
970 linkeditStartOffset
= leOffset
;
971 linkeditStartAddr
= op
->linkeditAddr();
973 uint32_t leEndOffset
= op
->linkeditOffset() + op
->linkeditSize();
974 if ( leEndOffset
> linkeditEndOffset
)
975 linkeditEndOffset
= leEndOffset
;
977 uint64_t totalUnoptLinkeditsSize
= linkeditEndOffset
- linkeditStartOffset
;
978 uint8_t* newLinkEdit
= (uint8_t*)calloc(totalUnoptLinkeditsSize
, 1);
979 SortedStringPool
<P
> stringPool
;
982 diagnostics
.verbose("Merged LINKEDIT:\n");
984 // copy weak binding info
985 uint32_t startWeakBindInfosOffset
= offset
;
986 for (LinkeditOptimizer
<P
>* op
: optimizers
) {
987 op
->copyWeakBindingInfo(newLinkEdit
, offset
);
989 diagnostics
.verbose(" weak bindings size: %5uKB\n", (uint32_t)(offset
-startWeakBindInfosOffset
)/1024);
992 uint32_t startExportInfosOffset
= offset
;
993 for (LinkeditOptimizer
<P
>* op
: optimizers
) {
994 op
->copyExportInfo(newLinkEdit
, offset
);
996 diagnostics
.verbose(" exports info size: %5uKB\n", (uint32_t)(offset
-startExportInfosOffset
)/1024);
998 // in theory, an optimized cache can drop the binding info
1000 // copy binding info
1001 uint32_t startBindingsInfosOffset
= offset
;
1002 for (LinkeditOptimizer
<P
>* op
: optimizers
) {
1003 op
->copyBindingInfo(newLinkEdit
, offset
);
1005 diagnostics
.verbose(" bindings size: %5uKB\n", (uint32_t)(offset
-startBindingsInfosOffset
)/1024);
1007 // copy lazy binding info
1008 uint32_t startLazyBindingsInfosOffset
= offset
;
1009 for (LinkeditOptimizer
<P
>* op
: optimizers
) {
1010 op
->copyLazyBindingInfo(newLinkEdit
, offset
);
1012 diagnostics
.verbose(" lazy bindings size: %5uKB\n", (offset
-startLazyBindingsInfosOffset
)/1024);
1015 // copy symbol table entries
1016 std::vector
<macho_nlist
<P
>> unmappedLocalSymbols
;
1017 if ( dontMapLocalSymbols
)
1018 unmappedLocalSymbols
.reserve(0x01000000);
1019 std::vector
<LocalSymbolInfo
> localSymbolInfos
;
1020 localSymbolInfos
.reserve(optimizers
.size());
1021 SortedStringPool
<P
> localSymbolsStringPool
;
1022 uint32_t symbolIndex
= 0;
1023 const uint32_t sharedSymbolTableStartOffset
= offset
;
1024 uint32_t sharedSymbolTableExportsCount
= 0;
1025 uint32_t sharedSymbolTableImportsCount
= 0;
1026 for (LinkeditOptimizer
<P
>* op
: optimizers
) {
1027 op
->copyLocalSymbols(newLinkEdit
, stringPool
, offset
, symbolIndex
, dontMapLocalSymbols
,
1028 localSymbolInfos
, unmappedLocalSymbols
, localSymbolsStringPool
);
1029 uint32_t x
= symbolIndex
;
1030 op
->copyExportedSymbols(newLinkEdit
, stringPool
, offset
, symbolIndex
);
1031 sharedSymbolTableExportsCount
+= (symbolIndex
-x
);
1032 uint32_t y
= symbolIndex
;
1033 op
->copyImportedSymbols(newLinkEdit
, stringPool
, offset
, symbolIndex
);
1034 sharedSymbolTableImportsCount
+= (symbolIndex
-y
);
1036 uint32_t sharedSymbolTableCount
= symbolIndex
;
1037 const uint32_t sharedSymbolTableEndOffset
= offset
;
1039 // copy function starts
1040 uint32_t startFunctionStartsOffset
= offset
;
1041 for (LinkeditOptimizer
<P
>* op
: optimizers
) {
1042 op
->copyFunctionStarts(newLinkEdit
, offset
);
1044 diagnostics
.verbose(" function starts size: %5uKB\n", (offset
-startFunctionStartsOffset
)/1024);
1046 // copy data-in-code info
1047 uint32_t startDataInCodeOffset
= offset
;
1048 for (LinkeditOptimizer
<P
>* op
: optimizers
) {
1049 op
->copyDataInCode(newLinkEdit
, offset
);
1051 diagnostics
.verbose(" data in code size: %5uKB\n", (offset
-startDataInCodeOffset
)/1024);
1053 // copy indirect symbol tables
1054 for (LinkeditOptimizer
<P
>* op
: optimizers
) {
1055 op
->copyIndirectSymbolTable(newLinkEdit
, offset
);
1057 // if indirect table has odd number of entries, end will not be 8-byte aligned
1058 if ( (offset
% sizeof(typename
P::uint_t
)) != 0 )
1062 uint32_t sharedSymbolStringsOffset
= offset
;
1063 uint32_t sharedSymbolStringsSize
= stringPool
.copyPoolAndUpdateOffsets((char*)&newLinkEdit
[sharedSymbolStringsOffset
], (macho_nlist
<P
>*)&newLinkEdit
[sharedSymbolTableStartOffset
]);
1064 offset
+= sharedSymbolStringsSize
;
1065 uint32_t newLinkeditUnalignedSize
= offset
;
1066 uint64_t newLinkeditEnd
= align(linkeditStartOffset
+newLinkeditUnalignedSize
, 14);
1067 diagnostics
.verbose(" symbol table size: %5uKB (%d exports, %d imports)\n", (sharedSymbolTableEndOffset
-sharedSymbolTableStartOffset
)/1024, sharedSymbolTableExportsCount
, sharedSymbolTableImportsCount
);
1068 diagnostics
.verbose(" symbol string pool size: %5uKB\n", sharedSymbolStringsSize
/1024);
1070 // overwrite mapped LINKEDIT area in cache with new merged LINKEDIT content
1071 diagnostics
.verbose("LINKEDITS optimized from %uMB to %uMB\n", (uint32_t)totalUnoptLinkeditsSize
/(1024*1024), (uint32_t)newLinkeditUnalignedSize
/(1024*1024));
1072 ::memcpy((char*)cache
+ linkeditStartOffset
, newLinkEdit
, newLinkeditUnalignedSize
);
1073 ::bzero((char*)cache
+ linkeditStartOffset
+newLinkeditUnalignedSize
, totalUnoptLinkeditsSize
-newLinkeditUnalignedSize
);
1074 ::free(newLinkEdit
);
1076 // If making cache for customers, add extra accelerator tables for dyld
1077 if ( addAcceleratorTables
) {
1078 AcceleratorTables
<P
> tables(cache
, linkeditStartAddr
, diagnostics
, optimizers
);
1079 uint32_t tablesSize
= tables
.totalSize();
1080 if ( tablesSize
< (totalUnoptLinkeditsSize
-newLinkeditUnalignedSize
) ) {
1081 tables
.copyTo((uint8_t*)cache
+newLinkeditEnd
);
1082 newLinkeditEnd
+= tablesSize
;
1083 uint64_t accelInfoAddr
= align(linkeditStartAddr
+ newLinkeditUnalignedSize
, 14);
1084 cache
->header
.accelerateInfoAddr
= accelInfoAddr
;
1085 cache
->header
.accelerateInfoSize
= tablesSize
;
1086 diagnostics
.verbose("Accelerator tables %uMB\n", (uint32_t)tablesSize
/(1024*1024));
1089 diagnostics
.warning("not enough room to add dyld accelerator tables");
1093 // update mapping to reduce linkedit size
1094 dyld_cache_mapping_info
* mappings
= (dyld_cache_mapping_info
*)((char*)cache
+ cache
->header
.mappingOffset
);
1095 mappings
[2].size
= newLinkeditEnd
- mappings
[2].fileOffset
;
1097 // overwrite end of un-opt linkedits to create a new unmapped region for local symbols
1098 uint64_t newFileSize
= newLinkeditEnd
;
1099 if ( dontMapLocalSymbols
) {
1100 typedef typename
P::E E
;
1101 const uint32_t entriesOffset
= sizeof(dyld_cache_local_symbols_info
);
1102 const uint32_t entriesCount
= (uint32_t)localSymbolInfos
.size();
1103 const uint32_t nlistOffset
= (uint32_t)align(entriesOffset
+ entriesCount
* sizeof(dyld_cache_local_symbols_info
), 4); // 16-byte align start
1104 const uint32_t nlistCount
= (uint32_t)unmappedLocalSymbols
.size();
1105 const uint32_t stringsSize
= (uint32_t)localSymbolsStringPool
.size();
1106 const uint32_t stringsOffset
= nlistOffset
+ nlistCount
* sizeof(macho_nlist
<P
>);
1107 // allocate buffer for local symbols
1108 const size_t localsBufferSize
= align(stringsOffset
+ stringsSize
, 14);
1109 dyld_cache_local_symbols_info
* infoHeader
= (dyld_cache_local_symbols_info
*)malloc(localsBufferSize
);
1110 // fill in header info
1111 infoHeader
->nlistOffset
= nlistOffset
;
1112 infoHeader
->nlistCount
= nlistCount
;
1113 infoHeader
->stringsOffset
= stringsOffset
;
1114 infoHeader
->stringsSize
= stringsSize
;
1115 infoHeader
->entriesOffset
= entriesOffset
;
1116 infoHeader
->entriesCount
= entriesCount
;
1117 // copy info for each dylib
1118 dyld_cache_local_symbols_entry
* entries
= (dyld_cache_local_symbols_entry
*)(((uint8_t*)infoHeader
)+entriesOffset
);
1119 for (int i
=0; i
< entriesCount
; ++i
) {
1120 entries
[i
].dylibOffset
= localSymbolInfos
[i
].dylibOffset
;
1121 entries
[i
].nlistStartIndex
= localSymbolInfos
[i
].nlistStartIndex
;
1122 entries
[i
].nlistCount
= localSymbolInfos
[i
].nlistCount
;
1125 macho_nlist
<P
>* newLocalsSymbolTable
= (macho_nlist
<P
>*)(((uint8_t*)infoHeader
)+nlistOffset
);
1126 ::memcpy(newLocalsSymbolTable
, &unmappedLocalSymbols
[0], nlistCount
*sizeof(macho_nlist
<P
>));
1128 localSymbolsStringPool
.copyPoolAndUpdateOffsets(((char*)infoHeader
)+stringsOffset
, newLocalsSymbolTable
);
1129 // return buffer of local symbols, caller to free() it
1130 *localsInfo
= infoHeader
;
1133 // update all load commands to new merged layout
1134 for (LinkeditOptimizer
<P
>* op
: optimizers
) {
1135 op
->updateLoadCommands(linkeditStartOffset
, linkeditStartAddr
, newLinkeditEnd
-linkeditStartOffset
,
1136 sharedSymbolTableStartOffset
, sharedSymbolTableCount
,
1137 sharedSymbolStringsOffset
, sharedSymbolStringsSize
);
1143 } // anonymous namespace
1145 template <typename P
>
1146 uint64_t optimizeLinkedit(DyldSharedCache
* cache
, bool dontMapLocalSymbols
, bool addAcceleratorTables
, const std::vector
<uint64_t>& branchPoolOffsets
, Diagnostics
& diag
, dyld_cache_local_symbols_info
** localsInfo
)
1148 // construct a LinkeditOptimizer for each image
1149 __block
std::vector
<LinkeditOptimizer
<P
>*> optimizers
;
1150 cache
->forEachImage(^(const mach_header
* mh
, const char*) {
1151 optimizers
.push_back(new LinkeditOptimizer
<P
>(cache
, (macho_header
<P
>*)mh
, diag
));
1154 // add optimizer for each branch pool
1155 for (uint64_t poolOffset
: branchPoolOffsets
) {
1156 macho_header
<P
>* mh
= (macho_header
<P
>*)((char*)cache
+ poolOffset
);
1157 optimizers
.push_back(new LinkeditOptimizer
<P
>(cache
, mh
, diag
));
1160 // merge linkedit info
1161 uint64_t newFileSize
= mergeLinkedits(cache
, dontMapLocalSymbols
, addAcceleratorTables
, optimizers
, diag
, localsInfo
);
1163 // delete optimizers
1164 for (LinkeditOptimizer
<P
>* op
: optimizers
)
1170 uint64_t optimizeLinkedit(DyldSharedCache
* cache
, bool is64
, bool dontMapLocalSymbols
, bool addAcceleratorTables
, const std::vector
<uint64_t>& branchPoolOffsets
, Diagnostics
& diag
, dyld_cache_local_symbols_info
** localsInfo
)
1173 return optimizeLinkedit
<Pointer64
<LittleEndian
>>(cache
, dontMapLocalSymbols
, addAcceleratorTables
, branchPoolOffsets
, diag
, localsInfo
);
1176 return optimizeLinkedit
<Pointer32
<LittleEndian
>>(cache
, dontMapLocalSymbols
, addAcceleratorTables
, branchPoolOffsets
, diag
, localsInfo
);