Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 | /* -*- mode: C++; c-basic-offset: 4; tab-width: 4 -*- * * Copyright (c) 2003-2010 Apple Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this * file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_LICENSE_HEADER_END@ */ #ifndef _CACHE_PATCHING_H_ #define _CACHE_PATCHING_H_ #include "MachOFile.h" #include "Types.h" #if BUILDING_CACHE_BUILDER || BUILDING_CACHE_BUILDER_UNIT_TESTS #include "../cache_builder/Error.h" #include <assert.h> #include <map> #include <unordered_map> #include <unordered_set> #include <vector> #endif // BUILDING_CACHE_BUILDER || BUILDING_CACHE_BUILDER_UNIT_TESTS // // MARK: --- V1 patching. This is for old caches, before Large/Split caches --- // struct dyld_cache_patch_info_v1 { uint64_t patchTableArrayAddr; // (unslid) address of array for dyld_cache_image_patches for each image uint64_t patchTableArrayCount; // count of patch table entries uint64_t patchExportArrayAddr; // (unslid) address of array for patch exports for each image uint64_t patchExportArrayCount; // count of patch exports entries uint64_t patchLocationArrayAddr; // (unslid) address of array for patch locations for each patch uint64_t patchLocationArrayCount;// count of patch location entries uint64_t patchExportNamesAddr; // blob of strings of export names for patches uint64_t patchExportNamesSize; // size of string blob of export names for patches }; struct dyld_cache_image_patches_v1 { uint32_t patchExportsStartIndex; uint32_t patchExportsCount; }; struct dyld_cache_patchable_export_v1 { uint32_t cacheOffsetOfImpl; uint32_t patchLocationsStartIndex; uint32_t patchLocationsCount; uint32_t exportNameOffset; }; struct dyld_cache_patchable_location_v1 { uint32_t cacheOffset; uint64_t high7 : 7, addend : 5, // 0..31 authenticated : 1, usesAddressDiversity : 1, key : 2, discriminator : 16; uint64_t getAddend() const { return addend; } }; // // MARK: --- V2 patching. This is for Large/Split caches and newer --- // // Patches can be different kinds. This lives in the high nibble of the exportNameOffset, // so we restrict these to 4-bits enum class PatchKind : uint32_t { // Just a normal patch. Isn't one of ther other kinds regular = 0x0, // One of { void* isa, uintptr_t }, from CF cfObj2 = 0x1, // objc patching was added before this enum exists, in just the high bit // of the 4-bit nubble. This matches that bit layout objcClass = 0x8 }; // This is the base for all v2 and newer info struct dyld_cache_patch_info { uint32_t patchTableVersion; // == 2 or 3 for now }; struct dyld_cache_patch_info_v2 : dyld_cache_patch_info { uint32_t patchLocationVersion; // == 0 for now uint64_t patchTableArrayAddr; // (unslid) address of array for dyld_cache_image_patches_v2 for each image uint64_t patchTableArrayCount; // count of patch table entries uint64_t patchImageExportsArrayAddr; // (unslid) address of array for dyld_cache_image_export_v2 for each image uint64_t patchImageExportsArrayCount; // count of patch table entries uint64_t patchClientsArrayAddr; // (unslid) address of array for dyld_cache_image_clients_v2 for each image uint64_t patchClientsArrayCount; // count of patch clients entries uint64_t patchClientExportsArrayAddr; // (unslid) address of array for patch exports for each client image uint64_t patchClientExportsArrayCount; // count of patch exports entries uint64_t patchLocationArrayAddr; // (unslid) address of array for patch locations for each patch uint64_t patchLocationArrayCount; // count of patch location entries uint64_t patchExportNamesAddr; // blob of strings of export names for patches uint64_t patchExportNamesSize; // size of string blob of export names for patches }; struct dyld_cache_image_patches_v2 { uint32_t patchClientsStartIndex; uint32_t patchClientsCount; uint32_t patchExportsStartIndex; // Points to dyld_cache_image_export_v2[] uint32_t patchExportsCount; }; struct dyld_cache_image_export_v2 { uint32_t dylibOffsetOfImpl; // Offset from the dylib we used to find a dyld_cache_image_patches_v2 uint32_t exportNameOffset : 28; uint32_t patchKind : 4; // One of DyldSharedCache::patchKind }; static_assert(sizeof(dyld_cache_image_export_v2) == 8, "Wrong size"); struct dyld_cache_image_clients_v2 { uint32_t clientDylibIndex; uint32_t patchExportsStartIndex; // Points to dyld_cache_patchable_export_v2[] uint32_t patchExportsCount; }; struct dyld_cache_patchable_export_v2 { uint32_t imageExportIndex; // Points to dyld_cache_image_export_v2 uint32_t patchLocationsStartIndex; // Points to dyld_cache_patchable_location_v2[] uint32_t patchLocationsCount; }; struct dyld_cache_patchable_location_v2 { uint32_t dylibOffsetOfUse; // Offset from the dylib we used to get a dyld_cache_image_clients_v2 uint32_t high7 : 7, addend : 5, // 0..31 authenticated : 1, usesAddressDiversity : 1, key : 2, discriminator : 16; uint64_t getAddend() const { return addend; } }; // // MARK: --- V3 patching. This is V2 plus support for GOT combining --- // struct dyld_cache_patch_info_v3 : dyld_cache_patch_info_v2 { // uint32_t patchTableVersion; // == 3 // ... other fields from dyld_cache_patch_info_v2 uint64_t gotClientsArrayAddr; // (unslid) address of array for dyld_cache_image_got_clients_v3 for each image uint64_t gotClientsArrayCount; // count of got clients entries. Should always match the patchTableArrayCount uint64_t gotClientExportsArrayAddr; // (unslid) address of array for patch exports for each GOT image uint64_t gotClientExportsArrayCount; // count of patch exports entries uint64_t gotLocationArrayAddr; // (unslid) address of array for patch locations for each GOT patch uint64_t gotLocationArrayCount; // count of patch location entries }; struct dyld_cache_image_got_clients_v3 { uint32_t patchExportsStartIndex; // Points to dyld_cache_patchable_export_v3[] uint32_t patchExportsCount; }; struct dyld_cache_patchable_export_v3 { uint32_t imageExportIndex; // Points to dyld_cache_image_export_v2 uint32_t patchLocationsStartIndex; // Points to dyld_cache_patchable_location_v3[] uint32_t patchLocationsCount; }; struct dyld_cache_patchable_location_v3 { uint64_t cacheOffsetOfUse; // Offset from the cache header uint32_t high7 : 7, addend : 5, // 0..31 authenticated : 1, usesAddressDiversity : 1, key : 2, discriminator : 16; uint64_t getAddend() const { return addend; } }; // // MARK: --- V4 patching. This is V3 plus a new layout for larger addends --- // struct dyld_cache_patch_info_v4 : dyld_cache_patch_info_v3 { // We didn't add any new files, just changed the type of the patch location structs below }; struct dyld_cache_patchable_location_v4 { struct Auth { uint32_t authenticated : 1, // == 1 high7 : 7, isWeakImport : 1, addend : 5, // 0..31 usesAddressDiversity : 1, keyIsD : 1, // B keys are not permitted. So this is just whether the A key is I or D (0 => I, 1 => D) discriminator : 16; }; struct Regular { uint32_t authenticated : 1, // == 0 high7 : 7, isWeakImport : 1, addend : 23; }; uint32_t dylibOffsetOfUse; // Offset from the dylib we used to get a dyld_cache_image_clients_v2 union { Auth auth; Regular regular; }; void getPMD(dyld3::MachOFile::PointerMetaData& pmd) const { if ( this->auth.authenticated ) { pmd.diversity = auth.discriminator; pmd.high8 = auth.high7 << 1; pmd.authenticated = auth.authenticated; pmd.key = auth.keyIsD ? 2 : 0; pmd.usesAddrDiversity = auth.usesAddressDiversity; } else { pmd.diversity = 0; pmd.high8 = regular.high7 << 1; pmd.authenticated = 0; pmd.key = 0; pmd.usesAddrDiversity = 0; } } uint64_t getAddend() const { return this->auth.authenticated ? this->auth.addend : this->regular.addend; } bool isWeakImport() const { return this->auth.authenticated ? this->auth.isWeakImport : this->regular.isWeakImport; } }; static_assert(sizeof(dyld_cache_patchable_location_v4) == sizeof(uint64_t), "Overflow"); struct dyld_cache_patchable_location_v4_got { uint64_t cacheOffsetOfUse; // Offset from the cache header union { dyld_cache_patchable_location_v4::Auth auth; dyld_cache_patchable_location_v4::Regular regular; }; uint32_t unusedPadding; void getPMD(dyld3::MachOFile::PointerMetaData& pmd) const { if ( this->auth.authenticated ) { pmd.diversity = auth.discriminator; pmd.high8 = auth.high7 << 1; pmd.authenticated = auth.authenticated; pmd.key = auth.keyIsD ? 2 : 0; pmd.usesAddrDiversity = auth.usesAddressDiversity; } else { pmd.diversity = 0; pmd.high8 = regular.high7 << 1; pmd.authenticated = 0; pmd.key = 0; pmd.usesAddrDiversity = 0; } } uint64_t getAddend() const { return this->auth.authenticated ? this->auth.addend : this->regular.addend; } bool isWeakImport() const { return this->auth.authenticated ? this->auth.isWeakImport : this->regular.isWeakImport; } }; static_assert(sizeof(dyld_cache_patchable_location_v4_got) == (2 * sizeof(uint64_t)), "Overflow"); // The base class for patch tables. Forwards to one of the subclasses, depending on the version // Note that the version 1 table doesn't use the struct below, as it had a different layout. struct PatchTable { PatchTable() = default; PatchTable(const void* table, uint64_t tableVMAddr) : table((const uint8_t*)table), tableVMAddr(tableVMAddr) { } ~PatchTable() = default; PatchTable(const PatchTable&) = delete; PatchTable& operator=(const PatchTable&) = delete; PatchTable(PatchTable&&) = default; PatchTable& operator=(PatchTable&&) = default; // Returns the version of the patch table. Clients typically shouldn't need to use this // as we should abstract away everything in the forEeach* methods. uint32_t version() const; // Returns the number of images in the patch table. There should be 1 patch table image for // each shared cache image uint64_t numImages() const; // For the given image, returns how many exports this image has which need patches uint32_t patchableExportCount(uint32_t imageIndex) const; // Returns true if userImageIndex uses at least 1 location in imageIndex, ie, needs to be patched // if we root imageIndex bool imageHasClient(uint32_t imageIndex, uint32_t userImageIndex) const; // Walk the exports for the given dylib typedef void (^ExportHandler)(uint32_t dylibVMOffsetOfImpl, const char* exportName, PatchKind patchKind); void forEachPatchableExport(uint32_t imageIndex, ExportHandler handler) const; // Walk all uses of a given export in a given dylib typedef void (^ExportUseHandler)(uint32_t userImageIndex, uint32_t userVMOffset, dyld3::MachOFile::PointerMetaData pmd, uint64_t addend, bool isWeakImport); void forEachPatchableUseOfExport(uint32_t imageIndex, uint32_t dylibVMOffsetOfImpl, ExportUseHandler handler) const; typedef void (^ExportUseInImageHandler)(uint32_t userVMOffset, dyld3::MachOFile::PointerMetaData pmd, uint64_t addend, bool isWeakImport); void forEachPatchableUseOfExportInImage(uint32_t imageIndex, uint32_t dylibVMOffsetOfImpl, uint32_t userImageIndex, ExportUseInImageHandler handler) const; typedef void (^ExportCacheUseHandler)(uint64_t cacheVMOffset, dyld3::MachOFile::PointerMetaData pmd, uint64_t addend, bool isWeakImport); typedef uint64_t (^GetDylibAddressHandler)(uint32_t dylibCacheIndex); void forEachPatchableCacheUseOfExport(uint32_t imageIndex, uint32_t dylibVMOffsetOfImpl, uint64_t cacheUnslidAddress, GetDylibAddressHandler getDylibHandler, ExportCacheUseHandler handler) const; typedef void (^GOTUseHandler)(uint64_t cacheVMOffset, dyld3::MachOFile::PointerMetaData pmd, uint64_t addend, bool isWeakImport); void forEachPatchableGOTUseOfExport(uint32_t imageIndex, uint32_t dylibVMOffsetOfImpl, GOTUseHandler handler) const; bool hasValue() const { return this->table != nullptr; } static const char* patchKindName(PatchKind patchKind); private: const dyld_cache_patch_info* info() const; protected: const uint8_t* table = nullptr; uint64_t tableVMAddr = 0; }; // Wraps a dyld_cache_patch_info_v2 with various helper methods. Use PatchTable above to // dispatch to this automatically struct PatchTableV2 : PatchTable { // "virtual" methods from PatchTable uint64_t numImages() const; uint32_t patchableExportCount(uint32_t imageIndex) const; bool imageHasClient(uint32_t imageIndex, uint32_t userImageIndex) const; void forEachPatchableExport(uint32_t imageIndex, ExportHandler handler) const; void forEachPatchableUseOfExport(uint32_t imageIndex, uint32_t dylibVMOffsetOfImpl, ExportUseHandler handler) const; void forEachPatchableUseOfExportInImage(uint32_t imageIndex, uint32_t dylibVMOffsetOfImpl, uint32_t userImageIndex, ExportUseInImageHandler handler) const; void forEachPatchableCacheUseOfExport(uint32_t imageIndex, uint32_t dylibVMOffsetOfImpl, uint64_t cacheUnslidAddress, GetDylibAddressHandler getDylibHandler, ExportCacheUseHandler handler) const; void forEachPatchableGOTUseOfExport(uint32_t imageIndex, uint32_t dylibVMOffsetOfImpl, GOTUseHandler handler) const; private: const dyld_cache_patch_info_v2* info() const; protected: // These are also used by PatchTableV3, so we need them to be protected, not private std::span<dyld_cache_image_patches_v2> images() const; std::span<dyld_cache_image_export_v2> imageExports() const; std::span<dyld_cache_image_clients_v2> imageClients() const; std::span<dyld_cache_patchable_export_v2> clientExports() const; std::span<dyld_cache_patchable_location_v2> patchableLocations() const; std::string_view exportNames() const; // An image uses a range of exports from the list of all exports. This returns just the exports // for the given image std::span<dyld_cache_image_export_v2> exportsForImage(uint32_t imageIndex) const; // An image uses a range of clients from the list of all clients. This returns just the clients // for the given image std::span<dyld_cache_image_clients_v2> clientsForImage(uint32_t imageIndex) const; // An image has a list of clients, and clients have a list of exports they use. // This returns just exports used by the client in the given image std::span<dyld_cache_patchable_export_v2> clientsExportsForImageAndClient(uint32_t imageIndex, uint32_t userImageIndex) const; }; // Wraps a dyld_cache_patch_info_v3 with various helper methods. Use PatchTable above to // dispatch to this automatically struct PatchTableV3 : PatchTableV2 { // "virtual" methods from PatchTable using PatchTableV2::numImages; using PatchTableV2::patchableExportCount; using PatchTableV2::imageHasClient; using PatchTableV2::forEachPatchableExport; using PatchTableV2::forEachPatchableUseOfExport; using PatchTableV2::forEachPatchableUseOfExportInImage; using PatchTableV2::forEachPatchableCacheUseOfExport; // V2 doesn't have GOT uses, so we need to add our own handler void forEachPatchableGOTUseOfExport(uint32_t imageIndex, uint32_t dylibVMOffsetOfImpl, GOTUseHandler handler) const; private: const dyld_cache_patch_info_v3* info() const; std::span<dyld_cache_patchable_location_v3> gotPatchableLocations() const; protected: // These are also used by PatchTableV4, so we need them to be protected, not private std::span<dyld_cache_image_got_clients_v3> gotClients() const; std::span<dyld_cache_patchable_export_v3> gotClientExports() const; std::span<dyld_cache_patchable_export_v3> gotClientExportsForImage(uint32_t imageIndex) const; }; // Wraps a dyld_cache_patch_info_v4 with various helper methods. Use PatchTable above to // dispatch to this automatically struct PatchTableV4 : PatchTableV3 { // "virtual" methods from PatchTable using PatchTableV3::numImages; using PatchTableV3::patchableExportCount; using PatchTableV3::imageHasClient; using PatchTableV3::forEachPatchableExport; // We need new versions of all of these as the patch location is used by them void forEachPatchableUseOfExport(uint32_t imageIndex, uint32_t dylibVMOffsetOfImpl, ExportUseHandler handler) const; void forEachPatchableUseOfExportInImage(uint32_t imageIndex, uint32_t dylibVMOffsetOfImpl, uint32_t userImageIndex, ExportUseInImageHandler handler) const; void forEachPatchableCacheUseOfExport(uint32_t imageIndex, uint32_t dylibVMOffsetOfImpl, uint64_t cacheUnslidAddress, GetDylibAddressHandler getDylibHandler, ExportCacheUseHandler handler) const; void forEachPatchableGOTUseOfExport(uint32_t imageIndex, uint32_t dylibVMOffsetOfImpl, GOTUseHandler handler) const; private: const dyld_cache_patch_info_v4* info() const; std::span<dyld_cache_patchable_location_v4> patchableLocations() const; std::span<dyld_cache_patchable_location_v4_got> gotPatchableLocations() const; }; #if BUILDING_CACHE_BUILDER || BUILDING_CACHE_BUILDER_UNIT_TESTS namespace cache_builder { enum class UniquedGOTKind { regular, authGot, authPtr }; struct CacheDylib; struct dyld_cache_patchable_location { dyld_cache_patchable_location(CacheVMAddress cacheVMAddr, dyld3::MachOFile::PointerMetaData pmd, uint64_t addend, bool isWeakImport); ~dyld_cache_patchable_location() = default; dyld_cache_patchable_location(const dyld_cache_patchable_location&) = default; dyld_cache_patchable_location(dyld_cache_patchable_location&&) = default; dyld_cache_patchable_location& operator=(const dyld_cache_patchable_location&) = default; dyld_cache_patchable_location& operator=(dyld_cache_patchable_location&&) = default; bool operator==(const dyld_cache_patchable_location& other) const = default; CacheVMAddress cacheVMAddr; uint64_t high7 : 7, unused : 4, isWeakImport : 1, authenticated : 1, usesAddressDiversity : 1, key : 2, discriminator : 16, addend : 32; }; // There will be one of these PatchInfo structs for each dylib in the cache struct PatchInfo { struct GOTInfo { dyld_cache_patchable_location patchInfo; VMOffset targetValue; }; std::vector<std::vector<dyld_cache_patchable_location>> bindUses; std::vector<std::vector<GOTInfo>> bindGOTUses; std::vector<std::vector<GOTInfo>> bindAuthGOTUses; std::vector<std::vector<GOTInfo>> bindAuthPtrUses; std::vector<std::string> bindTargetNames; }; struct DylibClient { DylibClient(const CacheDylib* clientCacheDylib) : clientCacheDylib(clientCacheDylib) { } ~DylibClient() = default; DylibClient(const DylibClient&) = delete; DylibClient(DylibClient&&) = default; DylibClient& operator=(const DylibClient&) = delete; DylibClient& operator=(DylibClient&&) = default; typedef std::map<CacheVMAddress, std::vector<dyld_cache_patchable_location>, CacheVMAddressLessThan> UsesMap; const CacheDylib* clientCacheDylib = nullptr; UsesMap uses; }; struct DylibClients { DylibClients() : gotClient(nullptr) { } ~DylibClients() = default; DylibClients(const DylibClients&) = delete; DylibClients(DylibClients&&) = default; DylibClients& operator=(const DylibClients&) = delete; DylibClients& operator=(DylibClients&&) = default; // Other dylibs which point to this dylib, not via uniqued GOTs std::vector<DylibClient> clients; // For and uniqued GOTs which use this dylib DylibClient gotClient; private: std::vector<CacheVMAddress> usedExports; public: const std::vector<CacheVMAddress>& getUsedExports() const { return usedExports; } // This accepts the new exports by value, so that callers can pass // an rvalue reference to avoid an unnecessary copy. void setUsedExports(std::vector<CacheVMAddress> newUsedExports) { assert(usedExports.empty() && "Used exports should be set only once"); usedExports = std::move(newUsedExports); std::sort(usedExports.begin(), usedExports.end(), CacheVMAddressLessThan()); usedExports.erase(std::unique(usedExports.begin(), usedExports.end(), CacheVMAddressEqual()), usedExports.end()); } decltype(usedExports)::const_iterator findExport(const CacheVMAddress& addr) const { auto exportIt = std::lower_bound(usedExports.cbegin(), usedExports.cend(), addr, CacheVMAddressLessThan()); if (exportIt != usedExports.cend() && *exportIt == addr) { return exportIt; } return usedExports.cend(); } }; struct PatchTableBuilder { typedef std::unordered_set<CacheVMAddress, CacheVMAddressHash, CacheVMAddressEqual> PatchableClassesSet; typedef std::unordered_set<CacheVMAddress, CacheVMAddressHash, CacheVMAddressEqual> PatchableSingletonsSet; error::Error build(const std::span<CacheDylib>& cacheDylibs, const std::span<PatchInfo>& patchInfos, const PatchableClassesSet& patchableObjCClasses, const PatchableSingletonsSet& patchableCFObj2, CacheVMAddress cacheBaseAddress); uint64_t getPatchTableSize() const; error::Error write(uint8_t* buffer, uint64_t bufferSize, uint64_t patchInfoAddr) const; private: // Takes the PatchInfo's for each dylib, and merges them in to the data structures needed // in the builder void mergePatchInfos(const std::span<CacheDylib>& cacheDylibs, const std::span<PatchInfo>& patchInfos); void calculateRequiredSpace(const std::span<CacheDylib>& cacheDylibs); void calculatePatchTable(const std::span<CacheDylib>& cacheDylibs, const PatchableClassesSet& patchableObjCClasses, const PatchableSingletonsSet& patchableCFObj2, CacheVMAddress cacheBaseAddress); typedef std::unordered_map<CacheVMAddress, std::string_view, CacheVMAddressHash, CacheVMAddressEqual> ExportToNameMap; std::vector<DylibClients> dylibClients; ExportToNameMap exportsToName; std::vector<dyld_cache_image_patches_v2> patchImages; std::vector<dyld_cache_image_export_v2> imageExports; std::vector<dyld_cache_image_clients_v2> patchClients; std::vector<dyld_cache_patchable_export_v2> clientExports; std::vector<dyld_cache_patchable_location_v4> patchLocations; std::vector<char> patchExportNames; std::vector<dyld_cache_image_got_clients_v3> gotClients; std::vector<dyld_cache_patchable_export_v3> gotClientExports; std::vector<dyld_cache_patchable_location_v4_got> gotPatchLocations; const bool log = false; }; } // namespace cache_builder #endif // BUILDING_CACHE_BUILDER || BUILDING_CACHE_BUILDER_UNIT_TESTS #endif /* _CACHE_PATCHING_H_ */ |