1 /* ldid - (Mach-O) Link-Loader Identity Editor
2 * Copyright (C) 2007-2012 Jay Freeman (saurik)
5 /* GNU Lesser General Public License, Version 3 {{{ */
6 /* This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "minimal/stdlib.h"
22 #include "minimal/string.h"
23 #include "minimal/mapping.h"
32 #include <sys/types.h>
40 #define FAT_MAGIC 0xcafebabe
41 #define FAT_CIGAM 0xbebafeca
61 #define MH_MAGIC 0xfeedface
62 #define MH_CIGAM 0xcefaedfe
64 #define MH_MAGIC_64 0xfeedfacf
65 #define MH_CIGAM_64 0xcffaedfe
67 #define MH_DYLDLINK 0x4
69 #define MH_EXECUTE 0x2
72 #define MH_DYLIB_STUB 0x9
79 #define LC_REQ_DYLD uint32_t(0x80000000)
81 #define LC_SEGMENT uint32_t(0x01)
82 #define LC_SYMTAB uint32_t(0x02)
83 #define LC_DYSYMTAB uint32_t(0x0b)
84 #define LC_LOAD_DYLIB uint32_t(0x0c)
85 #define LC_ID_DYLIB uint32_t(0x0d)
86 #define LC_SEGMENT_64 uint32_t(0x19)
87 #define LC_UUID uint32_t(0x1b)
88 #define LC_CODE_SIGNATURE uint32_t(0x1d)
89 #define LC_SEGMENT_SPLIT_INFO uint32_t(0x1e)
90 #define LC_REEXPORT_DYLIB uint32_t(0x1f | LC_REQ_DYLD)
91 #define LC_DYLD_INFO uint32_t(0x22)
92 #define LC_DYLD_INFO_ONLY uint32_t(0x22 | LC_REQ_DYLD)
97 uint32_t current_version
;
98 uint32_t compatibility_version
;
101 struct dylib_command
{
107 struct uuid_command
{
113 struct symtab_command
{
122 struct dyld_info_command
{
126 uint32_t rebase_size
;
129 uint32_t weak_bind_off
;
130 uint32_t weak_bind_size
;
131 uint32_t lazy_bind_off
;
132 uint32_t lazy_bind_size
;
134 uint32_t export_size
;
137 struct dysymtab_command
{
150 uint32_t extrefsymoff
;
151 uint32_t nextrefsyms
;
152 uint32_t indirectsymoff
;
153 uint32_t nindirectsyms
;
160 struct dylib_table_of_contents
{
161 uint32_t symbol_index
;
162 uint32_t module_index
;
165 struct dylib_module
{
166 uint32_t module_name
;
175 uint32_t iinit_iterm
;
176 uint32_t ninit_nterm
;
177 uint32_t objc_module_info_addr
;
178 uint32_t objc_module_info_size
;
181 struct dylib_reference
{
186 struct relocation_info
{
188 uint32_t r_symbolnum
:24;
207 struct segment_command
{
221 struct segment_command_64
{
263 struct linkedit_data_command
{
270 uint16_t Swap_(uint16_t value
) {
272 ((value
>> 8) & 0x00ff) |
273 ((value
<< 8) & 0xff00);
276 uint32_t Swap_(uint32_t value
) {
277 value
= ((value
>> 8) & 0x00ff00ff) |
278 ((value
<< 8) & 0xff00ff00);
279 value
= ((value
>> 16) & 0x0000ffff) |
280 ((value
<< 16) & 0xffff0000);
284 int16_t Swap_(int16_t value
) {
285 return Swap_(static_cast<uint16_t>(value
));
288 int32_t Swap_(int32_t value
) {
289 return Swap_(static_cast<uint32_t>(value
));
294 uint16_t Swap(uint16_t value
) {
295 return little_
? Swap_(value
) : value
;
298 uint32_t Swap(uint32_t value
) {
299 return little_
? Swap_(value
) : value
;
302 int16_t Swap(int16_t value
) {
303 return Swap(static_cast<uint16_t>(value
));
306 int32_t Swap(int32_t value
) {
307 return Swap(static_cast<uint32_t>(value
));
310 template <typename Target_
>
322 Data(void *base
, size_t size
) :
329 uint16_t Swap(uint16_t value
) const {
330 return swapped_
? Swap_(value
) : value
;
333 uint32_t Swap(uint32_t value
) const {
334 return swapped_
? Swap_(value
) : value
;
337 int16_t Swap(int16_t value
) const {
338 return Swap(static_cast<uint16_t>(value
));
341 int32_t Swap(int32_t value
) const {
342 return Swap(static_cast<uint32_t>(value
));
345 void *GetBase() const {
349 size_t GetSize() const {
360 struct mach_header
*mach_header_
;
361 struct load_command
*load_command_
;
364 MachHeader(void *base
, size_t size
) :
367 mach_header_
= (mach_header
*) base
;
369 switch (Swap(mach_header_
->magic
)) {
371 swapped_
= !swapped_
;
377 swapped_
= !swapped_
;
386 void *post
= mach_header_
+ 1;
388 post
= (uint32_t *) post
+ 1;
389 load_command_
= (struct load_command
*) post
;
392 Swap(mach_header_
->filetype
) == MH_EXECUTE
||
393 Swap(mach_header_
->filetype
) == MH_DYLIB
||
394 Swap(mach_header_
->filetype
) == MH_BUNDLE
398 struct mach_header
*operator ->() const {
402 uint32_t GetCPUType() const {
403 return Swap(mach_header_
->cputype
);
406 uint16_t GetCPUSubtype() const {
407 return Swap(mach_header_
->cpusubtype
) & 0xff;
410 std::vector
<struct load_command
*> GetLoadCommands() const {
411 std::vector
<struct load_command
*> load_commands
;
413 struct load_command
*load_command
= load_command_
;
414 for (uint32_t cmd
= 0; cmd
!= Swap(mach_header_
->ncmds
); ++cmd
) {
415 load_commands
.push_back(load_command
);
416 load_command
= (struct load_command
*) ((uint8_t *) load_command
+ Swap(load_command
->cmdsize
));
419 return load_commands
;
422 std::vector
<segment_command
*> GetSegments(const char *segment_name
) const {
423 std::vector
<struct segment_command
*> segment_commands
;
425 _foreach (load_command
, GetLoadCommands()) {
426 if (Swap(load_command
->cmd
) == LC_SEGMENT
) {
427 segment_command
*segment_command
= reinterpret_cast<struct segment_command
*>(load_command
);
428 if (strncmp(segment_command
->segname
, segment_name
, 16) == 0)
429 segment_commands
.push_back(segment_command
);
433 return segment_commands
;
436 std::vector
<segment_command_64
*> GetSegments64(const char *segment_name
) {
437 std::vector
<struct segment_command_64
*> segment_commands
;
439 _foreach (load_command
, GetLoadCommands()) {
440 if (Swap(load_command
->cmd
) == LC_SEGMENT_64
) {
441 segment_command_64
*segment_command
= reinterpret_cast<struct segment_command_64
*>(load_command
);
442 if (strncmp(segment_command
->segname
, segment_name
, 16) == 0)
443 segment_commands
.push_back(segment_command
);
447 return segment_commands
;
450 std::vector
<section
*> GetSections(const char *segment_name
, const char *section_name
) const {
451 std::vector
<section
*> sections
;
453 _foreach (segment
, GetSegments(segment_name
)) {
454 section
*section
= (struct section
*) (segment
+ 1);
457 for (sect
= 0; sect
!= Swap(segment
->nsects
); ++sect
) {
458 if (strncmp(section
->sectname
, section_name
, 16) == 0)
459 sections
.push_back(section
);
467 template <typename Target_
>
468 Pointer
<Target_
> GetPointer(uint32_t address
, const char *segment_name
= NULL
) const {
469 load_command
*load_command
= (struct load_command
*) (mach_header_
+ 1);
472 for (cmd
= 0; cmd
!= Swap(mach_header_
->ncmds
); ++cmd
) {
473 if (Swap(load_command
->cmd
) == LC_SEGMENT
) {
474 segment_command
*segment_command
= (struct segment_command
*) load_command
;
475 if (segment_name
!= NULL
&& strncmp(segment_command
->segname
, segment_name
, 16) != 0)
478 section
*sections
= (struct section
*) (segment_command
+ 1);
481 for (sect
= 0; sect
!= Swap(segment_command
->nsects
); ++sect
) {
482 section
*section
= §ions
[sect
];
483 //printf("%s %u %p %p %u\n", segment_command->segname, sect, address, section->addr, section->size);
484 if (address
>= Swap(section
->addr
) && address
< Swap(section
->addr
) + Swap(section
->size
)) {
485 //printf("0x%.8x %s\n", address, segment_command->segname);
486 return Pointer
<Target_
>(this, reinterpret_cast<Target_
*>(address
- Swap(section
->addr
) + Swap(section
->offset
) + (char *) mach_header_
));
492 load_command
= (struct load_command
*) ((char *) load_command
+ Swap(load_command
->cmdsize
));
495 return Pointer
<Target_
>(this);
498 template <typename Target_
>
499 Pointer
<Target_
> GetOffset(uint32_t offset
) {
500 return Pointer
<Target_
>(this, reinterpret_cast<Target_
*>(offset
+ (uint8_t *) mach_header_
));
504 class FatMachHeader
:
511 FatMachHeader(void *base
, size_t size
, fat_arch
*fat_arch
) :
512 MachHeader(base
, size
),
517 fat_arch
*GetFatArch() const {
526 fat_header
*fat_header_
;
527 std::vector
<FatMachHeader
> mach_headers_
;
530 FatHeader(void *base
, size_t size
) :
533 fat_header_
= reinterpret_cast<struct fat_header
*>(base
);
535 if (Swap(fat_header_
->magic
) == FAT_CIGAM
) {
536 swapped_
= !swapped_
;
538 } else if (Swap(fat_header_
->magic
) != FAT_MAGIC
) {
540 mach_headers_
.push_back(FatMachHeader(base
, size
, NULL
));
542 size_t fat_narch
= Swap(fat_header_
->nfat_arch
);
543 fat_arch
*fat_arch
= reinterpret_cast<struct fat_arch
*>(fat_header_
+ 1);
545 for (arch
= 0; arch
!= fat_narch
; ++arch
) {
546 uint32_t arch_offset
= Swap(fat_arch
->offset
);
547 uint32_t arch_size
= Swap(fat_arch
->size
);
548 mach_headers_
.push_back(FatMachHeader((uint8_t *) base
+ arch_offset
, arch_size
, fat_arch
));
554 std::vector
<FatMachHeader
> &GetMachHeaders() {
555 return mach_headers_
;
559 return fat_header_
!= NULL
;
562 struct fat_header
*operator ->() const {
567 FatHeader
Map(const char *path
, bool ro
= false) {
569 void *base(map(path
, 0, _not(size_t), &size
, ro
));
570 return FatHeader(base
, size
);
573 template <typename Target_
>
576 const MachHeader
*framework_
;
577 const Target_
*pointer_
;
580 Pointer(const MachHeader
*framework
= NULL
, const Target_
*pointer
= NULL
) :
581 framework_(framework
),
586 operator const Target_
*() const {
590 const Target_
*operator ->() const {
594 Pointer
<Target_
> &operator ++() {
599 template <typename Value_
>
600 Value_
Swap(Value_ value
) {
601 return framework_
->Swap(value
);
605 #define CSMAGIC_CODEDIRECTORY uint32_t(0xfade0c02)
606 #define CSMAGIC_EMBEDDED_SIGNATURE uint32_t(0xfade0cc0)
607 #define CSMAGIC_ENTITLEMENTS uint32_t(0xfade7171)
609 #define CSSLOT_CODEDIRECTORY uint32_t(0)
610 #define CSSLOT_REQUIREMENTS uint32_t(2)
611 #define CSSLOT_ENTITLEMENTS uint32_t(5)
626 struct BlobIndex index
[];
629 struct CodeDirectory
{
634 uint32_t identOffset
;
635 uint32_t nSpecialSlots
;
645 extern "C" uint32_t hash(uint8_t *k
, uint32_t length
, uint32_t initval
);
647 void sha1(uint8_t *hash
, uint8_t *data
, size_t size
) {
650 SHA1Input(&context
, data
, size
);
651 SHA1Result(&context
, hash
);
654 struct CodesignAllocation
{
659 CodesignAllocation(uint32_t type
, uint16_t subtype
, size_t size
) :
667 int main(int argc
, const char *argv
[]) {
673 little_
= endian
.byte
[0];
691 const void *xmld(NULL
);
694 uintptr_t noffset(_not(uintptr_t));
695 uintptr_t woffset(_not(uintptr_t));
697 std::vector
<std::string
> files
;
700 fprintf(stderr
, "usage: %s -S[entitlements.xml] <binary>\n", argv
[0]);
701 fprintf(stderr
, " %s -e MobileSafari\n", argv
[0]);
702 fprintf(stderr
, " %s -S cat\n", argv
[0]);
703 fprintf(stderr
, " %s -Stfp.xml gdb\n", argv
[0]);
707 for (int argi(1); argi
!= argc
; ++argi
)
708 if (argv
[argi
][0] != '-')
709 files
.push_back(argv
[argi
]);
710 else switch (argv
[argi
][1]) {
711 case 'R': flag_R
= true; break;
712 case 'r': flag_r
= true; break;
714 case 't': flag_t
= true; break;
715 case 'u': flag_u
= true; break;
716 case 'p': flag_p
= true; break;
717 case 'e': flag_e
= true; break;
727 if (argv
[argi
][2] != '\0') {
728 const char *xml
= argv
[argi
] + 2;
729 xmld
= map(xml
, 0, _not(size_t), &xmls
, true);
735 if (argv
[argi
][2] == '-')
739 timev
= strtoul(argv
[argi
] + 2, &arge
, 0);
740 _assert(arge
== argv
[argi
] + strlen(argv
[argi
]));
746 noffset
= strtoul(argv
[argi
] + 2, &arge
, 0);
747 _assert(arge
== argv
[argi
] + strlen(argv
[argi
]));
752 woffset
= strtoul(argv
[argi
] + 2, &arge
, 0);
753 _assert(arge
== argv
[argi
] + strlen(argv
[argi
]));
761 if (files
.empty()) usage
: {
765 size_t filei(0), filee(0);
766 _foreach (file
, files
) try {
767 const char *path(file
.c_str());
768 const char *base
= strrchr(path
, '/');
769 char *temp(NULL
), *dir
;
772 dir
= strndup_(path
, base
++ - path
+ 1);
780 FatHeader
fat_header(Map(path
));
781 _foreach (mach_header
, fat_header
.GetMachHeaders()) {
782 mach_header
->flags
= mach_header
.Swap(mach_header
.Swap(mach_header
->flags
) | MH_DYLDLINK
);
784 uint32_t size(_not(uint32_t)); {
785 _foreach (load_command
, mach_header
.GetLoadCommands()) {
786 switch (mach_header
.Swap(load_command
->cmd
)) {
787 case LC_CODE_SIGNATURE
: {
788 struct linkedit_data_command
*signature
= reinterpret_cast<struct linkedit_data_command
*>(load_command
);
789 memset(reinterpret_cast<uint8_t *>(mach_header
.GetBase()) + mach_header
.Swap(signature
->dataoff
), 0, mach_header
.Swap(signature
->datasize
));
790 memset(signature
, 0, sizeof(struct linkedit_data_command
));
792 mach_header
->ncmds
= mach_header
.Swap(mach_header
.Swap(mach_header
->ncmds
) - 1);
793 mach_header
->sizeofcmds
= mach_header
.Swap(uint32_t(mach_header
.Swap(mach_header
->sizeofcmds
) - sizeof(struct linkedit_data_command
)));
797 struct symtab_command
*symtab
= reinterpret_cast<struct symtab_command
*>(load_command
);
798 size
= mach_header
.Swap(symtab
->stroff
) + mach_header
.Swap(symtab
->strsize
);
804 _assert(size
!= _not(uint32_t));
806 _foreach (segment
, const_cast<FatMachHeader
&>(mach_header
).GetSegments("__LINKEDIT")) {
807 segment
->filesize
-= mach_header
.GetSize() - size
;
809 if (fat_arch
*fat_arch
= mach_header
.GetFatArch()) {
810 fat_arch
->size
= fat_header
.Swap(size
);
811 clip
= std::max(clip
, fat_header
.Swap(fat_arch
->offset
) + size
);
813 clip
= std::max(clip
, size
);
816 _foreach (segment
, const_cast<FatMachHeader
&>(mach_header
).GetSegments64("__LINKEDIT")) {
817 segment
->filesize
-= mach_header
.GetSize() - size
;
819 if (fat_arch
*fat_arch
= mach_header
.GetFatArch()) {
820 fat_arch
->size
= fat_header
.Swap(size
);
821 clip
= std::max(clip
, fat_header
.Swap(fat_arch
->offset
) + size
);
823 clip
= std::max(clip
, size
);
829 _syscall(truncate(path
, clip
));
833 asprintf(&temp
, "%s.%s.cs", dir
, base
);
834 const char *allocate
= getenv("CODESIGN_ALLOCATE");
835 if (allocate
== NULL
)
836 allocate
= "codesign_allocate";
838 std::vector
<CodesignAllocation
> allocations
; {
839 FatHeader
fat_header(Map(path
));
840 _foreach (mach_header
, fat_header
.GetMachHeaders()) {
841 mach_header
->flags
= mach_header
.Swap(mach_header
.Swap(mach_header
->flags
) | MH_DYLDLINK
);
843 size_t size(_not(size_t)); {
844 _foreach (load_command
, mach_header
.GetLoadCommands()) {
845 uint32_t cmd(mach_header
.Swap(load_command
->cmd
));
846 if (cmd
== LC_CODE_SIGNATURE
) {
847 struct linkedit_data_command
*signature
= reinterpret_cast<struct linkedit_data_command
*>(load_command
);
848 size
= mach_header
.Swap(signature
->dataoff
);
849 _assert(size
< mach_header
.GetSize());
854 if (size
== _not(size_t))
855 size
= mach_header
.GetSize();
858 allocations
.push_back(CodesignAllocation(mach_header
.GetCPUType(), mach_header
.GetCPUSubtype(), size
));
865 // XXX: this leaks memory, but it doesn't really matter
866 std::vector
<const char *> args
;
869 args
.push_back(allocate
);
871 args
.push_back("-i");
872 args
.push_back(path
);
874 _foreach (allocation
, allocations
) {
875 args
.push_back("-A");
877 asprintf(&arg
, "%u", allocation
.type_
);
880 asprintf(&arg
, "%u", allocation
.subtype_
);
884 alloc
+= sizeof(struct SuperBlob
);
887 special
= std::max(special
, CSSLOT_CODEDIRECTORY
);
888 alloc
+= sizeof(struct BlobIndex
);
889 alloc
+= sizeof(struct CodeDirectory
);
890 alloc
+= strlen(base
) + 1;
892 special
= std::max(special
, CSSLOT_REQUIREMENTS
);
893 alloc
+= sizeof(struct BlobIndex
);
897 special
= std::max(special
, CSSLOT_ENTITLEMENTS
);
898 alloc
+= sizeof(struct BlobIndex
);
899 alloc
+= sizeof(struct Blob
);
903 size_t normal((allocation
.size_
+ 0x1000 - 1) / 0x1000);
904 alloc
+= (special
+ normal
) * 0x14;
910 asprintf(&arg
, "%zu", alloc
);
914 args
.push_back("-o");
915 args
.push_back(temp
);
917 args
.push_back(NULL
);
926 execvp(allocate
, (char **) &args
[0]);
931 _syscall(waitpid(pid
, &status
, 0));
932 _assert(WIFEXITED(status
));
933 _assert(WEXITSTATUS(status
) == 0);
937 printf("path%zu='%s'\n", filei
, file
.c_str());
939 FatHeader
fat_header(Map(temp
== NULL
? path
: temp
, !(flag_R
| flag_T
| flag_s
| flag_S
)));
940 struct linkedit_data_command
*signature(NULL
);
942 _foreach (mach_header
, fat_header
.GetMachHeaders()) {
943 if (woffset
!= _not(uintptr_t)) {
944 Pointer
<uint32_t> wvalue(mach_header
.GetPointer
<uint32_t>(woffset
));
946 printf("(null) %p\n", reinterpret_cast<void *>(woffset
));
948 printf("0x%.08x\n", *wvalue
);
951 if (noffset
!= _not(uintptr_t))
952 printf("%s\n", &*mach_header
.GetPointer
<char>(noffset
));
954 _foreach (load_command
, mach_header
.GetLoadCommands()) {
955 uint32_t cmd(mach_header
.Swap(load_command
->cmd
));
957 if (flag_R
&& cmd
== LC_REEXPORT_DYLIB
)
958 load_command
->cmd
= mach_header
.Swap(LC_LOAD_DYLIB
);
959 else if (cmd
== LC_CODE_SIGNATURE
)
960 signature
= reinterpret_cast<struct linkedit_data_command
*>(load_command
);
961 else if (cmd
== LC_UUID
) {
962 volatile struct uuid_command
*uuid_command(reinterpret_cast<struct uuid_command
*>(load_command
));
965 printf("uuid%zu=%.2x%.2x%.2x%.2x-%.2x%.2x-%.2x%.2x-%.2x%.2x-%.2x%.2x%.2x%.2x%.2x%.2x\n", filei
,
966 uuid_command
->uuid
[ 0], uuid_command
->uuid
[ 1], uuid_command
->uuid
[ 2], uuid_command
->uuid
[ 3],
967 uuid_command
->uuid
[ 4], uuid_command
->uuid
[ 5], uuid_command
->uuid
[ 6], uuid_command
->uuid
[ 7],
968 uuid_command
->uuid
[ 8], uuid_command
->uuid
[ 9], uuid_command
->uuid
[10], uuid_command
->uuid
[11],
969 uuid_command
->uuid
[12], uuid_command
->uuid
[13], uuid_command
->uuid
[14], uuid_command
->uuid
[15]
972 } else if (cmd
== LC_ID_DYLIB
) {
973 volatile struct dylib_command
*dylib_command(reinterpret_cast<struct dylib_command
*>(load_command
));
976 printf("time%zu=0x%.8x\n", filei
, mach_header
.Swap(dylib_command
->dylib
.timestamp
));
984 dylib_command
->dylib
.timestamp
= 0;
985 timed
= hash(reinterpret_cast<uint8_t *>(mach_header
.GetBase()), mach_header
.GetSize(), timev
);
988 dylib_command
->dylib
.timestamp
= mach_header
.Swap(timed
);
994 _assert(signature
!= NULL
);
996 uint32_t data
= mach_header
.Swap(signature
->dataoff
);
998 uint8_t *top
= reinterpret_cast<uint8_t *>(mach_header
.GetBase());
999 uint8_t *blob
= top
+ data
;
1000 struct SuperBlob
*super
= reinterpret_cast<struct SuperBlob
*>(blob
);
1002 for (size_t index(0); index
!= Swap(super
->count
); ++index
)
1003 if (Swap(super
->index
[index
].type
) == CSSLOT_ENTITLEMENTS
) {
1004 uint32_t begin
= Swap(super
->index
[index
].offset
);
1005 struct Blob
*entitlements
= reinterpret_cast<struct Blob
*>(blob
+ begin
);
1006 fwrite(entitlements
+ 1, 1, Swap(entitlements
->length
) - sizeof(struct Blob
), stdout
);
1011 _assert(signature
!= NULL
);
1013 uint32_t data
= mach_header
.Swap(signature
->dataoff
);
1015 uint8_t *top
= reinterpret_cast<uint8_t *>(mach_header
.GetBase());
1016 uint8_t *blob
= top
+ data
;
1017 struct SuperBlob
*super
= reinterpret_cast<struct SuperBlob
*>(blob
);
1019 for (size_t index(0); index
!= Swap(super
->count
); ++index
)
1020 if (Swap(super
->index
[index
].type
) == CSSLOT_CODEDIRECTORY
) {
1021 uint32_t begin
= Swap(super
->index
[index
].offset
);
1022 struct CodeDirectory
*directory
= reinterpret_cast<struct CodeDirectory
*>(blob
+ begin
);
1024 uint8_t (*hashes
)[20] = reinterpret_cast<uint8_t (*)[20]>(blob
+ begin
+ Swap(directory
->hashOffset
));
1025 uint32_t pages
= Swap(directory
->nCodeSlots
);
1028 for (size_t i
= 0; i
!= pages
- 1; ++i
)
1029 sha1(hashes
[i
], top
+ 0x1000 * i
, 0x1000);
1031 sha1(hashes
[pages
- 1], top
+ 0x1000 * (pages
- 1), ((data
- 1) % 0x1000) + 1);
1036 _assert(signature
!= NULL
);
1038 uint32_t data
= mach_header
.Swap(signature
->dataoff
);
1039 uint32_t size
= mach_header
.Swap(signature
->datasize
);
1041 uint8_t *top
= reinterpret_cast<uint8_t *>(mach_header
.GetBase());
1042 uint8_t *blob
= top
+ data
;
1043 struct SuperBlob
*super
= reinterpret_cast<struct SuperBlob
*>(blob
);
1044 super
->blob
.magic
= Swap(CSMAGIC_EMBEDDED_SIGNATURE
);
1046 uint32_t count
= xmld
== NULL
? 2 : 3;
1047 uint32_t offset
= sizeof(struct SuperBlob
) + count
* sizeof(struct BlobIndex
);
1049 super
->index
[0].type
= Swap(CSSLOT_CODEDIRECTORY
);
1050 super
->index
[0].offset
= Swap(offset
);
1052 uint32_t begin
= offset
;
1053 struct CodeDirectory
*directory
= reinterpret_cast<struct CodeDirectory
*>(blob
+ begin
);
1054 offset
+= sizeof(struct CodeDirectory
);
1056 directory
->blob
.magic
= Swap(CSMAGIC_CODEDIRECTORY
);
1057 directory
->version
= Swap(uint32_t(0x00020001));
1058 directory
->flags
= Swap(uint32_t(0));
1059 directory
->codeLimit
= Swap(data
);
1060 directory
->hashSize
= 0x14;
1061 directory
->hashType
= 0x01;
1062 directory
->spare1
= 0x00;
1063 directory
->pageSize
= 0x0c;
1064 directory
->spare2
= Swap(uint32_t(0));
1066 directory
->identOffset
= Swap(offset
- begin
);
1067 strcpy(reinterpret_cast<char *>(blob
+ offset
), base
);
1068 offset
+= strlen(base
) + 1;
1070 uint32_t special
= xmld
== NULL
? CSSLOT_REQUIREMENTS
: CSSLOT_ENTITLEMENTS
;
1071 directory
->nSpecialSlots
= Swap(special
);
1073 uint8_t (*hashes
)[20] = reinterpret_cast<uint8_t (*)[20]>(blob
+ offset
);
1074 memset(hashes
, 0, sizeof(*hashes
) * special
);
1076 offset
+= sizeof(*hashes
) * special
;
1079 uint32_t pages
= (data
+ 0x1000 - 1) / 0x1000;
1080 directory
->nCodeSlots
= Swap(pages
);
1083 for (size_t i
= 0; i
!= pages
- 1; ++i
)
1084 sha1(hashes
[i
], top
+ 0x1000 * i
, 0x1000);
1086 sha1(hashes
[pages
- 1], top
+ 0x1000 * (pages
- 1), ((data
- 1) % 0x1000) + 1);
1088 directory
->hashOffset
= Swap(offset
- begin
);
1089 offset
+= sizeof(*hashes
) * pages
;
1090 directory
->blob
.length
= Swap(offset
- begin
);
1092 super
->index
[1].type
= Swap(CSSLOT_REQUIREMENTS
);
1093 super
->index
[1].offset
= Swap(offset
);
1095 memcpy(blob
+ offset
, "\xfa\xde\x0c\x01\x00\x00\x00\x0c\x00\x00\x00\x00", 0xc);
1099 super
->index
[2].type
= Swap(CSSLOT_ENTITLEMENTS
);
1100 super
->index
[2].offset
= Swap(offset
);
1102 uint32_t begin
= offset
;
1103 struct Blob
*entitlements
= reinterpret_cast<struct Blob
*>(blob
+ begin
);
1104 offset
+= sizeof(struct Blob
);
1106 memcpy(blob
+ offset
, xmld
, xmls
);
1109 entitlements
->magic
= Swap(CSMAGIC_ENTITLEMENTS
);
1110 entitlements
->length
= Swap(offset
- begin
);
1113 for (size_t index(0); index
!= count
; ++index
) {
1114 uint32_t type
= Swap(super
->index
[index
].type
);
1115 if (type
!= 0 && type
<= special
) {
1116 uint32_t offset
= Swap(super
->index
[index
].offset
);
1117 struct Blob
*local
= (struct Blob
*) (blob
+ offset
);
1118 sha1((uint8_t *) (hashes
- type
), (uint8_t *) local
, Swap(local
->length
));
1122 super
->count
= Swap(count
);
1123 super
->blob
.length
= Swap(offset
);
1125 if (offset
> size
) {
1126 fprintf(stderr
, "offset (%u) > size (%u)\n", offset
, size
);
1128 } //else fprintf(stderr, "offset (%zu) <= size (%zu)\n", offset, size);
1130 memset(blob
+ offset
, 0, size
- offset
);
1135 uint8_t *top
= reinterpret_cast<uint8_t *>(fat_header
.GetBase());
1136 size_t size
= fat_header
.GetSize();
1139 asprintf(©
, "%s.%s.cp", dir
, base
);
1140 FILE *file
= fopen(copy
, "w+");
1141 size_t writ
= fwrite(top
, 1, size
, file
);
1142 _assert(writ
== size
);
1145 _syscall(unlink(temp
));
1152 _syscall(stat(path
, &info
));
1153 _syscall(chown(temp
, info
.st_uid
, info
.st_gid
));
1154 _syscall(chmod(temp
, info
.st_mode
));
1155 _syscall(unlink(path
));
1156 _syscall(rename(temp
, path
));
1162 } catch (const char *) {