|
5 | 5 | #import <libjailbreak/dsc_mlock.h>
|
6 | 6 | #import <mach-o/dyld.h>
|
7 | 7 | #import <spawn.h>
|
| 8 | +#import <pthread.h> |
8 | 9 | #import <substrate.h>
|
9 | 10 |
|
10 | 11 | #import "spawn_hook.h"
|
|
22 | 23 |
|
23 | 24 | void abort_with_reason(uint32_t reason_namespace, uint64_t reason_code, const char *reason_string, uint64_t reason_flags);
|
24 | 25 |
|
| 26 | +void *handle_text_locks(void *a1) |
| 27 | +{ |
| 28 | +#ifdef __arm64e__ |
| 29 | + if (__builtin_available(iOS 16.0, *)) { /* fall through */ } |
| 30 | + else { |
| 31 | + // Spinlock panics happen when a lot of processes try to fault in the same TEXT page at the same time |
| 32 | + // For some reason, in all panics I personally looked at, the page is inside one of these 5 libraries |
| 33 | + // If we mlock all of them (to prevent them from ever being paged out), we can reduce spinlock panics by a significant amount |
| 34 | + dsc_mlock_library_exec("/System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices"); |
| 35 | + dsc_mlock_library_exec("/System/Library/PrivateFrameworks/HMFoundation.framework/HMFoundation"); |
| 36 | + dsc_mlock_library_exec("/System/Library/PrivateFrameworks/GeoServices.framework/GeoServices"); |
| 37 | + dsc_mlock_library_exec("/System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager"); |
| 38 | + dsc_mlock_library_exec("/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration"); |
| 39 | + } |
| 40 | +#endif |
| 41 | + |
| 42 | + return NULL; |
| 43 | +} |
| 44 | + |
25 | 45 | __attribute__((constructor)) static void initializer(void)
|
26 | 46 | {
|
27 | 47 | crashreporter_start();
|
|
73 | 93 |
|
74 | 94 | cs_allow_invalid(proc_self(), false);
|
75 | 95 |
|
| 96 | + pthread_t tmpThread; |
| 97 | + pthread_create(&tmpThread, NULL, handle_text_locks, NULL); |
| 98 | + pthread_join(tmpThread, NULL); |
| 99 | + |
76 | 100 | initXPCHooks();
|
77 | 101 | initDaemonHooks();
|
78 | 102 | initSpawnHooks();
|
79 | 103 | initIPCHooks();
|
80 | 104 | initDSCHooks();
|
81 | 105 | initJetsamHook();
|
82 | 106 |
|
83 |
| - if (!firstLoad) { |
84 |
| - // If enabled, reenable oldabi support |
85 |
| - jb_set_oldabi_support_enabled(gSystemInfo.jailbreakSettings.oldAbiSupportEnabled); |
86 |
| - |
87 |
| -#ifdef __arm64e__ |
88 |
| - if (__builtin_available(iOS 16.0, *)) { /* fall through */ } |
89 |
| - else { |
90 |
| - // Spinlock panics happen when a lot of processes try to fault in the same TEXT page at the same time |
91 |
| - // For some reason, in all panics I personally looked at, the page is inside one of these 5 libraries |
92 |
| - // If we mlock all of them (to prevent them from ever being paged out), we can reduce spinlock panics by a significant amount |
93 |
| - dsc_mlock_library_exec("/System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices"); |
94 |
| - dsc_mlock_library_exec("/System/Library/PrivateFrameworks/HMFoundation.framework/HMFoundation"); |
95 |
| - dsc_mlock_library_exec("/System/Library/PrivateFrameworks/GeoServices.framework/GeoServices"); |
96 |
| - dsc_mlock_library_exec("/System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager"); |
97 |
| - dsc_mlock_library_exec("/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration"); |
98 |
| - } |
99 |
| -#endif |
100 |
| - } |
101 |
| - |
102 | 107 | // This will ensure launchdhook is always reinjected after userspace reboots
|
103 | 108 | // As this launchd will pass environ to the next launchd...
|
104 | 109 | setenv("DYLD_INSERT_LIBRARIES", JBROOT_PATH("/basebin/launchdhook.dylib"), 1);
|
|
0 commit comments