@@ -540,122 +540,6 @@ void proc_allow_all_syscalls(uint64_t proc)
540
540
}
541
541
}
542
542
543
- struct dsc_text_segment {
544
- void * mapping ;
545
- uint64_t offset ;
546
- uint64_t address ;
547
- uint64_t size ;
548
- };
549
-
550
- int mlock_dsc_unslid (uint64_t unslid_addr , size_t size )
551
- {
552
- static struct dsc_text_segment * segments = NULL ;
553
- static int segmentCount = 0 ;
554
- static dispatch_once_t ot ;
555
- dispatch_once (& ot , ^{
556
- const char * dscPath = "/System/Library/Caches/com.apple.dyld" ;
557
- DIR * dir = opendir (dscPath );
558
- if (!dir ) {
559
- return ;
560
- }
561
-
562
- struct dirent * entry ;
563
-
564
- while ((entry = readdir (dir )) != NULL ) {
565
- if (entry -> d_name [0 ] == '.' ) {
566
- continue ; // Skip "." and ".." entries
567
- }
568
-
569
- const char * ext = strrchr (entry -> d_name , '.' );
570
- if (ext && strcmp (ext , ".symbols" ) == 0 ) {
571
- continue ; // Skip files with ".symbols" extension
572
- }
573
-
574
- char filePath [PATH_MAX ];
575
- snprintf (filePath , sizeof (filePath ), "%s/%s" , dscPath , entry -> d_name );
576
-
577
- int fd = open (filePath , O_RDONLY );
578
- if (fd < 0 ) {
579
- continue ;
580
- }
581
-
582
- struct stat sb ;
583
- if (fstat (fd , & sb ) != 0 ) {
584
- continue ;
585
- }
586
-
587
- void * localMap = mmap (NULL , sb .st_size , PROT_READ , MAP_SHARED , fd , 0 );
588
- if (localMap == MAP_FAILED ) {
589
- continue ;
590
- }
591
-
592
- struct dyld_cache_header * header = (struct dyld_cache_header * )localMap ;
593
- for (uint32_t i = 0 ; i < header -> mappingCount ; i ++ ) {
594
- uint32_t curMappingOff = header -> mappingOffset + (i * sizeof (struct dyld_cache_mapping_info ));
595
- struct dyld_cache_mapping_info * curMapping = (struct dyld_cache_mapping_info * )((uint8_t * )localMap + curMappingOff );
596
-
597
- if (curMapping -> initProt & PROT_EXEC ) {
598
- void * textMap = mmap (NULL , curMapping -> size , PROT_READ , MAP_SHARED , fd , curMapping -> fileOffset );
599
- if (textMap != MAP_FAILED ) {
600
- segmentCount ++ ;
601
- segments = realloc (segments , segmentCount * sizeof (struct dsc_text_segment ));
602
- if (!segments ) {
603
- munmap (textMap , curMapping -> size );
604
- break ;
605
- }
606
- segments [segmentCount - 1 ] = (struct dsc_text_segment ){
607
- .mapping = textMap ,
608
- .offset = curMapping -> fileOffset ,
609
- .address = curMapping -> address ,
610
- .size = curMapping -> size ,
611
- };
612
- }
613
- }
614
- }
615
-
616
- munmap (localMap , sb .st_size );
617
- close (fd );
618
- }
619
- });
620
-
621
- for (int i = 0 ; i < segmentCount ; i ++ ) {
622
- struct dsc_text_segment * curSegment = & segments [i ];
623
- if (unslid_addr >= curSegment -> address && (unslid_addr + size ) < (curSegment -> address + curSegment -> size )) {
624
- uint64_t rel = unslid_addr - curSegment -> address ;
625
- void * start = (void * )((uint64_t )curSegment -> mapping + rel );
626
- return mlock (start , size );
627
- }
628
- }
629
-
630
- return -1 ;
631
- }
632
-
633
- int mlock_dsc (void * addr , size_t size )
634
- {
635
- static uint64_t dscSlide = 0 ;
636
- static dispatch_once_t ot ;
637
- dispatch_once (& ot , ^{
638
- task_dyld_info_data_t dyldInfo ;
639
- uint32_t count = TASK_DYLD_INFO_COUNT ;
640
- task_info (mach_task_self_ , TASK_DYLD_INFO , (task_info_t )& dyldInfo , & count );
641
- struct dyld_all_image_infos * infos = (struct dyld_all_image_infos * )dyldInfo .all_image_info_addr ;
642
- dscSlide = infos -> sharedCacheSlide ;
643
- });
644
- return mlock_dsc_unslid ((uint64_t )addr - dscSlide , size );
645
- }
646
-
647
- int mlock_library (const char * name )
648
- {
649
- dlopen (name , RTLD_NOW );
650
- const struct mach_header * mh = get_mach_header (name );
651
- if (!mh ) return -1 ;
652
-
653
- unsigned long sectionSize = 0 ;
654
- uint32_t * instructions = (uint32_t * )getsectiondata ((const struct mach_header_64 * )mh , "__TEXT" , "__text" , & sectionSize );
655
-
656
- return mlock_dsc (instructions , sectionSize );
657
- }
658
-
659
543
int cmd_wait_for_exit (pid_t pid )
660
544
{
661
545
int status = 0 ;
0 commit comments