Skip to content

Commit 5151d40

Browse files
committed
Remove oldABI until further notice, the dsc mlock implementation doesn't seem to be good enough since it only wires in the pmap layer, but not in the vm layer
1 parent c7ce08c commit 5151d40

File tree

12 files changed

+30
-87
lines changed

12 files changed

+30
-87
lines changed

Application/Dopamine/Jailbreak/DOJailbreaker.m

-2
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,6 @@ - (void)runWithError:(NSError **)errOut didRemoveJailbreak:(BOOL*)didRemove show
488488
BOOL tweaksEnabled = [[DOPreferenceManager sharedManager] boolPreferenceValueForKey:@"tweakInjectionEnabled" fallback:YES];
489489
BOOL idownloadEnabled = [[DOPreferenceManager sharedManager] boolPreferenceValueForKey:@"idownloadEnabled" fallback:NO];
490490
BOOL appJITEnabled = [[DOPreferenceManager sharedManager] boolPreferenceValueForKey:@"appJITEnabled" fallback:YES];
491-
BOOL oldAbiSupportEnabled = [[DOPreferenceManager sharedManager] boolPreferenceValueForKey:@"oldAbiSupportEnabled" fallback:YES];
492491
NSNumber *jetsamMultiplierOption = [[DOPreferenceManager sharedManager] preferenceValueForKey:@"jetsamMultiplier"];
493492

494493
struct utsname systemInfo;
@@ -503,7 +502,6 @@ - (void)runWithError:(NSError **)errOut didRemoveJailbreak:(BOOL*)didRemove show
503502

504503
gSystemInfo.jailbreakSettings.markAppsAsDebugged = appJITEnabled;
505504
gSystemInfo.jailbreakSettings.jetsamMultiplier = jetsamMultiplierOption ? (jetsamMultiplierOption.doubleValue / 2) : 0;
506-
gSystemInfo.jailbreakSettings.oldAbiSupportEnabled = oldAbiSupportEnabled;
507505

508506
[[DOUIManager sharedInstance] sendLog:DOLocalizedString(@"Building Phys R/W Primitive") debug:NO];
509507
*errOut = [self buildPhysRWPrimitive];

Application/Dopamine/UI/Settings/DOSettingsController.m

-27
Original file line numberDiff line numberDiff line change
@@ -240,14 +240,6 @@ - (id)specifiers
240240
[appJitSpecifier setProperty:@YES forKey:@"default"];
241241
[specifiers addObject:appJitSpecifier];
242242

243-
if (envManager.isArm64e) {
244-
PSSpecifier *oldabiSpecifier = [PSSpecifier preferenceSpecifierNamed:DOLocalizedString(@"Settings_Allow_Old_arm64e_ABI_Libraries") target:self set:@selector(setOldABIEnabled:specifier:) get:@selector(readOldABIEnabled:) detail:nil cell:PSSwitchCell edit:nil];
245-
[oldabiSpecifier setProperty:@YES forKey:@"enabled"];
246-
[oldabiSpecifier setProperty:@"oldAbiSupportEnabled" forKey:@"key"];
247-
[oldabiSpecifier setProperty:@YES forKey:@"default"];
248-
[specifiers addObject:oldabiSpecifier];
249-
}
250-
251243
PSSpecifier *jetsamSpecifier = [PSSpecifier preferenceSpecifierNamed:DOLocalizedString(@"Settings_Jetsam_Multiplier") target:self set:@selector(setJetsamMultiplier:specifier:) get:@selector(readJetsamMultiplier:) detail:nil cell:PSLinkListCell edit:nil];
252244
[jetsamSpecifier setProperty:@YES forKey:@"enabled"];
253245
[jetsamSpecifier setProperty:@"jetsamMultiplier" forKey:@"key"];
@@ -453,25 +445,6 @@ - (void)setJetsamMultiplier:(id)value specifier:(PSSpecifier *)specifier
453445
}
454446
}
455447

456-
- (id)readOldABIEnabled:(PSSpecifier *)specifier
457-
{
458-
DOEnvironmentManager *envManager = [DOEnvironmentManager sharedManager];
459-
if (envManager.isJailbroken) {
460-
bool v = jbclient_jbsettings_get_bool("oldAbiSupportEnabled");
461-
return @(v);
462-
}
463-
return [self readPreferenceValue:specifier];
464-
}
465-
466-
- (void)setOldABIEnabled:(id)value specifier:(PSSpecifier *)specifier
467-
{
468-
[self setPreferenceValue:value specifier:specifier];
469-
DOEnvironmentManager *envManager = [DOEnvironmentManager sharedManager];
470-
if (envManager.isJailbroken) {
471-
jbclient_platform_jbsettings_set_bool("oldAbiSupportEnabled", ((NSNumber *)value).boolValue);
472-
}
473-
}
474-
475448
- (void)setRemoveJailbreakEnabled:(id)value specifier:(PSSpecifier *)specifier
476449
{
477450
[self setPreferenceValue:value specifier:specifier];

Application/Dopamine/main.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ int main(int argc, char * argv[]) {
3636

3737
// If systemhook isn't loaded and we are already jailbroken, we need to do the checkin ourselves
3838
// This can happen when the jailbreak is hidden or when tweak injection into the Dopamine app is disabled via Choicy
39-
jbclient_process_checkin(NULL, NULL, NULL, NULL, NULL);
39+
jbclient_process_checkin(NULL, NULL, NULL, NULL);
4040

4141
if ([DOEnvironmentManager sharedManager].isJailbroken) {
4242
setenv("PATH", "/sbin:/bin:/usr/sbin:/usr/bin:/var/jb/sbin:/var/jb/bin:/var/jb/usr/sbin:/var/jb/usr/bin", 1);

BaseBin/launchdhook/src/jbserver/jbdomain_systemwide.c

+1-4
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ static int systemwide_trust_library(audit_token_t *processToken, const char *lib
124124
return trust_file(libraryPath, callerLibraryPath, callerPath, NULL);
125125
}
126126

127-
static int systemwide_process_checkin(audit_token_t *processToken, char **rootPathOut, char **bootUUIDOut, char **sandboxExtensionsOut, bool *fullyDebuggedOut, bool *oldABIEnabledOut)
127+
static int systemwide_process_checkin(audit_token_t *processToken, char **rootPathOut, char **bootUUIDOut, char **sandboxExtensionsOut, bool *fullyDebuggedOut)
128128
{
129129
// Fetch process info
130130
pid_t pid = audit_token_to_pid(*processToken);
@@ -172,8 +172,6 @@ static int systemwide_process_checkin(audit_token_t *processToken, char **rootPa
172172
// Allow invalid pages
173173
cs_allow_invalid(proc, fullyDebugged);
174174

175-
*oldABIEnabledOut = jb_is_oldabi_fix_enabled();
176-
177175
// Fix setuid
178176
struct stat sb;
179177
if (stat(procPath, &sb) == 0) {
@@ -384,7 +382,6 @@ struct jbserver_domain gSystemwideDomain = {
384382
{ .name = "boot-uuid", .type = JBS_TYPE_STRING, .out = true },
385383
{ .name = "sandbox-extensions", .type = JBS_TYPE_STRING, .out = true },
386384
{ .name = "fully-debugged", .type = JBS_TYPE_BOOL, .out = true },
387-
{ .name = "oldabi-enabled", .type = JBS_TYPE_BOOL, .out = true },
388385
{ 0 },
389386
},
390387
},

BaseBin/launchdhook/src/jbserver/jbsettings.c

-9
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ int jbsettings_get(const char *key, xpc_object_t *valueOut)
1212
*valueOut = xpc_double_create(jbsetting(jetsamMultiplier));
1313
return 0;
1414
}
15-
else if (!strcmp(key, "oldAbiSupportEnabled")) {
16-
*valueOut = xpc_bool_create(jbsetting(oldAbiSupportEnabled));
17-
return 0;
18-
}
1915
return -1;
2016
}
2117

@@ -29,10 +25,5 @@ int jbsettings_set(const char *key, xpc_object_t value)
2925
gSystemInfo.jailbreakSettings.jetsamMultiplier = xpc_double_get_value(value);
3026
return 0;
3127
}
32-
else if (!strcmp(key, "oldAbiSupportEnabled") && xpc_get_type(value) == XPC_TYPE_BOOL) {
33-
gSystemInfo.jailbreakSettings.oldAbiSupportEnabled = xpc_bool_get_value(value);
34-
jb_set_oldabi_support_enabled(gSystemInfo.jailbreakSettings.oldAbiSupportEnabled);
35-
return 0;
36-
}
3728
return -1;
3829
}

BaseBin/launchdhook/src/main.m

+24-19
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#import <libjailbreak/dsc_mlock.h>
66
#import <mach-o/dyld.h>
77
#import <spawn.h>
8+
#import <pthread.h>
89
#import <substrate.h>
910

1011
#import "spawn_hook.h"
@@ -22,6 +23,25 @@
2223

2324
void abort_with_reason(uint32_t reason_namespace, uint64_t reason_code, const char *reason_string, uint64_t reason_flags);
2425

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+
2545
__attribute__((constructor)) static void initializer(void)
2646
{
2747
crashreporter_start();
@@ -73,32 +93,17 @@
7393

7494
cs_allow_invalid(proc_self(), false);
7595

96+
pthread_t tmpThread;
97+
pthread_create(&tmpThread, NULL, handle_text_locks, NULL);
98+
pthread_join(tmpThread, NULL);
99+
76100
initXPCHooks();
77101
initDaemonHooks();
78102
initSpawnHooks();
79103
initIPCHooks();
80104
initDSCHooks();
81105
initJetsamHook();
82106

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-
102107
// This will ensure launchdhook is always reinjected after userspace reboots
103108
// As this launchd will pass environ to the next launchd...
104109
setenv("DYLD_INSERT_LIBRARIES", JBROOT_PATH("/basebin/launchdhook.dylib"), 1);

BaseBin/launchdhook/src/spawn_hook.c

-3
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,6 @@ int __posix_spawn_hook(pid_t *restrict pid, const char *restrict path,
7575
unsetenv("STAGED_JAILBREAK_UPDATE");
7676
}
7777

78-
// Restore original page contents of oldabi patched pages
79-
jb_set_oldabi_support_enabled(false);
80-
8178
// Always use environ instead of envp, as boomerang_stashPrimitives calls setenv
8279
// setenv / unsetenv can sometimes cause environ to get reallocated
8380
// In that case envp may point to garbage or be empty

BaseBin/launchdhook/src/update.m

-6
Original file line numberDiff line numberDiff line change
@@ -199,11 +199,5 @@ void jbupdate_finalize_stage2(const char *prevVersion, const char *newVersion)
199199
#endif
200200
}
201201

202-
if (strcmp(prevVersion, "2.3") < 0 && strcmp(newVersion, "2.3") >= 0) {
203-
// Default value for this pref is true
204-
// Set it during jbupdate if prev version is <2.3 and new version is >=2.3
205-
gSystemInfo.jailbreakSettings.oldAbiSupportEnabled = true;
206-
}
207-
208202
JBFixMobilePermissions();
209203
}

BaseBin/libjailbreak/src/info.h

+1-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ struct system_info {
3535
struct {
3636
bool markAppsAsDebugged;
3737
double jetsamMultiplier;
38-
bool oldAbiSupportEnabled;
3938
} jailbreakSettings;
4039

4140
struct {
@@ -251,8 +250,7 @@ extern struct system_info gSystemInfo;
251250

252251
#define JAILBREAK_SETTINGS_ITERATE(ctx, iterator) \
253252
iterator(ctx, jailbreakSettings.markAppsAsDebugged); \
254-
iterator(ctx, jailbreakSettings.jetsamMultiplier); \
255-
iterator(ctx, jailbreakSettings.oldAbiSupportEnabled);
253+
iterator(ctx, jailbreakSettings.jetsamMultiplier);
256254

257255
#define KERNEL_SYMBOLS_ITERATE(ctx, iterator) \
258256
iterator(ctx, kernelSymbol.perfmon_dev_open); \

BaseBin/libjailbreak/src/jbclient_xpc.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ int jbclient_trust_library(const char *libraryPath, void *addressInCaller)
234234
return -1;
235235
}
236236

237-
int jbclient_process_checkin(char **rootPathOut, char **bootUUIDOut, char **sandboxExtensionsOut, bool *fullyDebuggedOut, bool *oldABIEnabledOut)
237+
int jbclient_process_checkin(char **rootPathOut, char **bootUUIDOut, char **sandboxExtensionsOut, bool *fullyDebuggedOut)
238238
{
239239
xpc_object_t xreply = jbserver_xpc_send(JBS_DOMAIN_SYSTEMWIDE, JBS_SYSTEMWIDE_PROCESS_CHECKIN, NULL);
240240
if (xreply) {
@@ -246,7 +246,6 @@ int jbclient_process_checkin(char **rootPathOut, char **bootUUIDOut, char **sand
246246
if (bootUUIDOut) *bootUUIDOut = bootUUID ? strdup(bootUUID) : NULL;
247247
if (sandboxExtensionsOut) *sandboxExtensionsOut = sandboxExtensions ? strdup(sandboxExtensions) : NULL;
248248
if (fullyDebuggedOut) *fullyDebuggedOut = xpc_dictionary_get_bool(xreply, "fully-debugged");
249-
if (oldABIEnabledOut) *oldABIEnabledOut = xpc_dictionary_get_bool(xreply, "oldabi-enabled");
250249
xpc_release(xreply);
251250
return result;
252251
}

BaseBin/libjailbreak/src/jbclient_xpc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ char *jbclient_get_jbroot(void);
1414
char *jbclient_get_boot_uuid(void);
1515
int jbclient_trust_binary(const char *binaryPath, xpc_object_t preferredArchsArray);
1616
int jbclient_trust_library(const char *libraryPath, void *addressInCaller);
17-
int jbclient_process_checkin(char **rootPathOut, char **bootUUIDOut, char **sandboxExtensionsOut, bool *fullyDebuggedOut, bool *oldABIEnabledOut);
17+
int jbclient_process_checkin(char **rootPathOut, char **bootUUIDOut, char **sandboxExtensionsOut, bool *fullyDebuggedOut);
1818
int jbclient_fork_fix(uint64_t childPid);
1919
int jbclient_cs_revalidate(void);
2020
int jbclient_jbsettings_get(const char *key, xpc_object_t *valueOut);

BaseBin/systemhook/src/main.c

+1-10
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
#include "private.h"
1515

1616
bool gFullyDebugged = false;
17-
bool gOldAbiSupportEnabled = false;
1817
static void *gLibSandboxHandle;
1918
char *JB_BootUUID = NULL;
2019
char *JB_RootPath = NULL;
@@ -86,14 +85,6 @@ void* dyld_dlopen_hook(void *dyld, const char* path, int mode)
8685
jbclient_trust_library(path, __builtin_return_address(0));
8786
}
8887

89-
if (gOldAbiSupportEnabled && path) {
90-
// If Dopamine's oldABI support is enabled, prevent ellekit oldabi from injecting
91-
// It's redundant in this case, it also hooks dlopen which is not good for spinlocks
92-
if (!strcmp(path, "/var/jb/usr/lib/ellekit/OldABI.dylib")) {
93-
return NULL;
94-
}
95-
}
96-
9788
__attribute__((musttail)) return dyld_dlopen_orig(dyld, path, mode);
9889
}
9990

@@ -288,7 +279,7 @@ __attribute__((constructor)) static void initializer(void)
288279
{
289280
// Tell jbserver (in launchd) that this process exists
290281
// This will disable page validation, which allows the rest of this constructor to apply hooks
291-
if (jbclient_process_checkin(&JB_RootPath, &JB_BootUUID, &JB_SandboxExtensions, &gFullyDebugged, &gOldAbiSupportEnabled) != 0) return;
282+
if (jbclient_process_checkin(&JB_RootPath, &JB_BootUUID, &JB_SandboxExtensions, &gFullyDebugged) != 0) return;
292283

293284
// Apply sandbox extensions
294285
apply_sandbox_extensions();

0 commit comments

Comments
 (0)