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 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 | /* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- * * Copyright (c) 2017 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@ */ #include "Chunk.h" #include "CodeSigningTypes.h" #include "BuilderConfig.h" #include <CommonCrypto/CommonHMAC.h> #include <CommonCrypto/CommonDigest.h> #include <CommonCrypto/CommonDigestSPI.h> using namespace cache_builder; // // MARK: --- Alignment --- // namespace cache_builder { namespace impl { // Many chunks are aligned for a variety of reasons. This tracks what alignments and why enum class Alignment { // The atom doesn't need any special alignment, or is guaranteed to be aligned for other reasons // eg, the cache header is always page aligned because its at the start of the buffer none = 1, // const char* only needs 1-byte alignment string = 1, // uleb's only need 1-byte alignment uleb = 1, // This chunk points to data which contains a uint64_t or similar, so needs 64-bit alignment struct64 = 8, // The objc runtime needs these to be 8-byte aligned for now. If we ever supported arm64_32, // those would need 16-byte alignment impCaches = 8, // Keep stubs 16-byte aligned to improve cache performance as then the whole stub will hopefully // be on the same cache line stubs = 16, // FIXME: Not sure why this is 16. Seems like 8 would be sufficient. nlist = 16, // Inside the cache there is minimal overhead for 16K alignment even on 4K hardware page = 16*1024, }; } // namespace impl } // namespace cache_builder; using namespace cache_builder::impl; // // MARK: --- Chunk methods --- // Chunk::Chunk(Kind kind, uint64_t minAlignment) : kind(kind), minAlignment(minAlignment) { } Chunk::Chunk(Kind kind, Alignment minAlignment) : Chunk(kind, (uint64_t)minAlignment) { } Chunk::~Chunk() { } void Chunk::dump() const { printf("Chunk\n"); } bool Chunk::isZeroFill() const { return false; } SlidChunk* Chunk::isSlidChunk() { return nullptr; } const DylibSegmentChunk* Chunk::isDylibSegmentChunk() const { return nullptr; } const LinkeditDataChunk* Chunk::isLinkeditDataChunk() const { return nullptr; } StubsChunk* Chunk::isStubsChunk() { return nullptr; } UniquedGOTsChunk* Chunk::isUniquedGOTsChunk() { return nullptr; } uint32_t Chunk::sortOrder() const { return (uint32_t)kind; } uint64_t Chunk::alignment() const { return this->minAlignment; } // // MARK: --- HeaderChunk methods --- // CacheHeaderChunk::CacheHeaderChunk() : Chunk(Kind::cacheHeader, Alignment::none) { } CacheHeaderChunk::~CacheHeaderChunk() { } void CacheHeaderChunk::dump() const { printf("HeaderChunk\n"); } const char* CacheHeaderChunk::name() const { return "cache header"; } // // MARK: --- SlideInfoChunk methods --- // SlideInfoChunk::SlideInfoChunk() : Chunk(Kind::slideInfo, Alignment::none) { } SlideInfoChunk::~SlideInfoChunk() { } void SlideInfoChunk::dump() const { printf("SlideInfoChunk\n"); } const char* SlideInfoChunk::name() const { return "slide info"; } // // MARK: --- CodeSignatureChunk methods --- // CodeSignatureChunk::CodeSignatureChunk() : Chunk(Kind::codeSignature, Alignment::none) { } CodeSignatureChunk::~CodeSignatureChunk() { } void CodeSignatureChunk::dump() const { printf("CodeSignatureChunk\n"); } const char* CodeSignatureChunk::name() const { return "code signature"; } // // MARK: --- SlidChunk methods --- // SlidChunk::SlidChunk(Kind kind, uint64_t minAlignment) : Chunk(kind, minAlignment) { } SlidChunk::~SlidChunk() { } void SlidChunk::dump() const { printf("SlidChunk\n"); } SlidChunk* SlidChunk::isSlidChunk() { return this; } // // MARK: --- ObjCOptsHeaderChunk methods --- // ObjCOptsHeaderChunk::ObjCOptsHeaderChunk() : Chunk(Kind::objcOptsHeader, Alignment::struct64) { } ObjCOptsHeaderChunk::~ObjCOptsHeaderChunk() { } void ObjCOptsHeaderChunk::dump() const { printf("ObjCOptsHeaderChunk\n"); } const char* ObjCOptsHeaderChunk::name() const { return "objc opts header"; } // // MARK: --- ObjCImageInfoChunk methods --- // ObjCImageInfoChunk::ObjCImageInfoChunk() : Chunk(Kind::objcHeaderInfoRO, Alignment::struct64) { } ObjCImageInfoChunk::~ObjCImageInfoChunk() { } void ObjCImageInfoChunk::dump() const { printf("ObjCImageInfoChunk\n"); } const char* ObjCImageInfoChunk::name() const { return "objc image info"; } // // MARK: --- ObjCHeaderInfoReadOnlyChunk methods --- // ObjCHeaderInfoReadOnlyChunk::ObjCHeaderInfoReadOnlyChunk() : Chunk(Kind::objcHeaderInfoRO, Alignment::struct64) { } ObjCHeaderInfoReadOnlyChunk::~ObjCHeaderInfoReadOnlyChunk() { } void ObjCHeaderInfoReadOnlyChunk::dump() const { printf("ObjCHeaderInfoReadOnlyChunk\n"); } const char* ObjCHeaderInfoReadOnlyChunk::name() const { return "objc headerinfo RO"; } // // MARK: --- ObjCHeaderInfoReadWriteChunk methods --- // ObjCHeaderInfoReadWriteChunk::ObjCHeaderInfoReadWriteChunk() : SlidChunk(Kind::objcHeaderInfoRW, (uint64_t)Alignment::struct64) { } ObjCHeaderInfoReadWriteChunk::~ObjCHeaderInfoReadWriteChunk() { } void ObjCHeaderInfoReadWriteChunk::dump() const { printf("ObjCHeaderInfoReadWriteChunk\n"); } const char* ObjCHeaderInfoReadWriteChunk::name() const { return "objc headerinfo RW"; } // // MARK: --- ObjCStringsChunk methods --- // ObjCStringsChunk::ObjCStringsChunk() : Chunk(Kind::objcStrings, Alignment::string) { } ObjCStringsChunk::~ObjCStringsChunk() { } void ObjCStringsChunk::dump() const { printf("ObjCStringsChunk\n"); } const char* ObjCStringsChunk::name() const { return "objc strings"; } // // MARK: --- ObjCSelectorHashTableChunk methods --- // ObjCSelectorHashTableChunk::ObjCSelectorHashTableChunk() : Chunk(Kind::objcSelectorsHashTable, Alignment::struct64) { } ObjCSelectorHashTableChunk::~ObjCSelectorHashTableChunk() { } void ObjCSelectorHashTableChunk::dump() const { printf("ObjCSelectorHashTableChunk\n"); } const char* ObjCSelectorHashTableChunk::name() const { return "objc selector hash table"; } // // MARK: --- ObjCClassHashTableChunk methods --- // ObjCClassHashTableChunk::ObjCClassHashTableChunk() : Chunk(Kind::objcClassesHashTable, Alignment::struct64) { } ObjCClassHashTableChunk::~ObjCClassHashTableChunk() { } void ObjCClassHashTableChunk::dump() const { printf("ObjCClassHashTableChunk\n"); } const char* ObjCClassHashTableChunk::name() const { return "objc class hash table"; } // // MARK: --- SwiftOptsHeaderChunk methods --- // SwiftOptsHeaderChunk::SwiftOptsHeaderChunk() : Chunk(Kind::swiftOptsHeader, Alignment::struct64) { } SwiftOptsHeaderChunk::~SwiftOptsHeaderChunk() { } void SwiftOptsHeaderChunk::dump() const { printf("SwiftOptsHeaderChunk\n"); } const char* SwiftOptsHeaderChunk::name() const { return "swift opts header"; } // // MARK: --- SwiftProtocolConformancesHashTableChunk methods --- // SwiftProtocolConformancesHashTableChunk::SwiftProtocolConformancesHashTableChunk() : Chunk(Kind::swiftConformanceHashTable, Alignment::struct64) { } SwiftProtocolConformancesHashTableChunk::~SwiftProtocolConformancesHashTableChunk() { } void SwiftProtocolConformancesHashTableChunk::dump() const { printf("SwiftProtocolConformancesHashTableChunk\n"); } const char* SwiftProtocolConformancesHashTableChunk::name() const { return "swift conformance hash table"; } // // MARK: --- ObjCProtocolHashTableChunk methods --- // ObjCProtocolHashTableChunk::ObjCProtocolHashTableChunk() : Chunk(Kind::objcProtocolsHashTable, Alignment::struct64) { } ObjCProtocolHashTableChunk::~ObjCProtocolHashTableChunk() { } void ObjCProtocolHashTableChunk::dump() const { printf("ObjCProtocolHashTableChunk\n"); } const char* ObjCProtocolHashTableChunk::name() const { return "objc protocol hash table"; } // // MARK: --- ObjCCanonicalProtocolsChunk methods --- // ObjCCanonicalProtocolsChunk::ObjCCanonicalProtocolsChunk() : SlidChunk(Kind::objcCanonicalProtocols, (uint64_t)Alignment::struct64) { } ObjCCanonicalProtocolsChunk::~ObjCCanonicalProtocolsChunk() { } void ObjCCanonicalProtocolsChunk::dump() const { printf("ObjCCanonicalProtocolsChunk\n"); } const char* ObjCCanonicalProtocolsChunk::name() const { return "objc canonical protocols"; } // // MARK: --- ObjCCategoriesChunk methods --- // ObjCPreAttachedCategoriesChunk::ObjCPreAttachedCategoriesChunk() : SlidChunk(Kind::objcPreAttachedCategories, (uint64_t)Alignment::struct64) { } ObjCPreAttachedCategoriesChunk::~ObjCPreAttachedCategoriesChunk() { } void ObjCPreAttachedCategoriesChunk::dump() const { printf("ObjCPreAttachedCategoriesChunk\n"); } const char* ObjCPreAttachedCategoriesChunk::name() const { return "objc pre-attached categories"; } // // MARK: --- ObjCIMPCachesChunk methods --- // ObjCIMPCachesChunk::ObjCIMPCachesChunk() : Chunk(Kind::objcIMPCaches, Alignment::impCaches) { } ObjCIMPCachesChunk::~ObjCIMPCachesChunk() { } void ObjCIMPCachesChunk::dump() const { printf("ObjCIMPCachesChunk\n"); } const char* ObjCIMPCachesChunk::name() const { return "objc IMP caches"; } // // MARK: --- CacheTrieChunk methods --- // CacheTrieChunk::CacheTrieChunk(Kind kind) : Chunk(kind, Alignment::uleb) { } CacheTrieChunk::~CacheTrieChunk() { } void CacheTrieChunk::dump() const { printf("CacheTrieChunk\n"); } const char* CacheTrieChunk::name() const { return "cache dylibs trie"; } // // MARK: --- PatchTableChunk methods --- // PatchTableChunk::PatchTableChunk() : Chunk(Kind::cachePatchTable, Alignment::struct64) { } PatchTableChunk::~PatchTableChunk() { } void PatchTableChunk::dump() const { printf("PatchTableChunk\n"); } const char* PatchTableChunk::name() const { return "cache patch table"; } // // MARK: --- PrebuiltLoaderChunk methods --- // PrebuiltLoaderChunk::PrebuiltLoaderChunk(Kind kind) : Chunk(kind, Alignment::struct64) { } PrebuiltLoaderChunk::~PrebuiltLoaderChunk() { } void PrebuiltLoaderChunk::dump() const { printf("PrebuiltLoaderChunk\n"); } const char* PrebuiltLoaderChunk::name() const { return "cache dylib Loaders"; } // // MARK: --- UnmappedSymbolsChunk methods --- // UnmappedSymbolsChunk::UnmappedSymbolsChunk() : Chunk(Kind::unmappedSymbols, Alignment::struct64) { } UnmappedSymbolsChunk::~UnmappedSymbolsChunk() { } void UnmappedSymbolsChunk::dump() const { printf("UnmappedSymbolsChunk\n"); } const char* UnmappedSymbolsChunk::name() const { return "unmapped symbols"; } // // MARK: --- SegmentInfo methods --- // DylibSegmentChunk::DylibSegmentChunk(Kind kind, uint64_t minAlignment) : SlidChunk(kind, minAlignment) { } DylibSegmentChunk::~DylibSegmentChunk() { } void DylibSegmentChunk::dump() const { printf("SegmentInfo\n"); } const char* DylibSegmentChunk::name() const { return this->segmentName.data(); } const DylibSegmentChunk* DylibSegmentChunk::isDylibSegmentChunk() const { return this; } // // MARK: --- LinkeditDataChunk methods --- // LinkeditDataChunk::LinkeditDataChunk(Kind kind, uint64_t minAlignment) : Chunk(kind, minAlignment) { } LinkeditDataChunk::~LinkeditDataChunk() { } void LinkeditDataChunk::dump() const { printf("LinkeditDataChunk\n"); } const char* LinkeditDataChunk::name() const { const char* chunkName = nullptr; switch ( this->kind ) { case Chunk::Kind::linkeditSymbolNList: chunkName = "linkedit nlist"; break; case Chunk::Kind::linkeditSymbolStrings: chunkName = "linkedit symbol strings"; break; case Chunk::Kind::linkeditIndirectSymbols: chunkName = "linkedit indirect symbols"; break; case Chunk::Kind::linkeditFunctionStarts: chunkName = "linkedit function starts"; break; case Chunk::Kind::linkeditDataInCode: chunkName = "linkedit Mr Data (in code)"; break; case Chunk::Kind::linkeditExportTrie: chunkName = "linkedit export trie"; break; default: assert("unknown linkedit chunk"); break; } return chunkName; } const LinkeditDataChunk* LinkeditDataChunk::isLinkeditDataChunk() const { return this; } bool LinkeditDataChunk::isIndirectSymbols() const { return this->kind == Chunk::Kind::linkeditIndirectSymbols; } bool LinkeditDataChunk::isNList() const { return this->kind == Chunk::Kind::linkeditSymbolNList; } bool LinkeditDataChunk::isNSymbolStrings() const { return this->kind == Chunk::Kind::linkeditSymbolStrings; } // // MARK: --- NListChunk methods --- // NListChunk::NListChunk() : Chunk(Kind::optimizedSymbolNList, Alignment::nlist) { } NListChunk::~NListChunk() { } void NListChunk::dump() const { printf("NListChunk\n"); } const char* NListChunk::name() const { return "optimized nlist"; } // // MARK: --- SymbolStringsChunk methods --- // SymbolStringsChunk::SymbolStringsChunk() : Chunk(Kind::optimizedSymbolStrings, Alignment::uleb) { } SymbolStringsChunk::~SymbolStringsChunk() { } void SymbolStringsChunk::dump() const { printf("SymbolStringsChunk\n"); } const char* SymbolStringsChunk::name() const { return "optimize symbol strings"; } // // MARK: --- UniquedGOTsChunk methods --- // UniquedGOTsChunk::UniquedGOTsChunk() : SlidChunk(Kind::uniquedGOTs, (uint64_t)Alignment::struct64) { } UniquedGOTsChunk::~UniquedGOTsChunk() { } void UniquedGOTsChunk::dump() const { printf("UniquedGOTsChunk\n"); } const char* UniquedGOTsChunk::name() const { return "uniqued GOTs"; } UniquedGOTsChunk* UniquedGOTsChunk::isUniquedGOTsChunk() { return this; } // // MARK: --- StubsChunk methods --- // StubsChunk::StubsChunk() : Chunk(Kind::stubs, Alignment::stubs) { } StubsChunk::~StubsChunk() { } void StubsChunk::dump() const { printf("StubsChunk\n"); } const char* StubsChunk::name() const { return "stubs"; } StubsChunk* StubsChunk::isStubsChunk() { return this; } // // MARK: --- StubsChunk methods --- // DynamicConfigChunk::DynamicConfigChunk() : Chunk(Kind::dynamicConfig, Alignment::page) { } DynamicConfigChunk::~DynamicConfigChunk() { } void DynamicConfigChunk::dump() const { printf("DynamicConfigChunk\n"); } const char* DynamicConfigChunk::name() const { return "dynamic configuration content"; } // DynamicConfigChunk takes up no space in the file, but does take up VM space // It will be checked to ensure that its always at the end of its Region bool DynamicConfigChunk::isZeroFill() const { return true; } |