summaryrefslogtreecommitdiff
path: root/Tweak.xm
blob: 77f7fd7995987f42294c256223ae66a6710a9d39 (plain)
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
/* Cydia Substrate - Powerful Code Insertion Platform
 * Copyright (C) 2008-2013  Jay Freeman (saurik)
*/

/* GNU Lesser General Public License, Version 3 {{{ */
/*
 * Substrate is free software: you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the
 * Free Software Foundation, either version 3 of the License, or (at your
 * option) any later version.
 *
 * Substrate is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
 * License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with Substrate.  If not, see <http://www.gnu.org/licenses/>.
**/
/* }}} */

#import <CoreFoundation/CoreFoundation.h>
#import <Foundation/Foundation.h>
#import <CoreGraphics/CGGeometry.h>
#import <UIKit/UIKit.h>

#include <dlfcn.h>
#include <substrate.h>

// Because compiler is optimizing out checks for dereferenced null pointers
template <typename Type_>
static inline Type_ &MYHookIvar(id self, const char *name) {
    Ivar ivar(class_getInstanceVariable(object_getClass(self), name));
    void *value = ivar == NULL ? NULL : *reinterpret_cast<void **>(reinterpret_cast<char *>(self) + ivar_getOffset(ivar));
    return *(reinterpret_cast<Type_ *>(&value));
}


Class $SafeModeAlertItem;

#define UIAlertActionStyleDefault 0

//@interface UIAlertAction
//+ (UIAlertAction *) actionWithTitle:(NSString *)title style:(NSUInteger)style handler:(void (^)(UIAlertAction *action))handler;
//@end

//@interface UIAlertController : UIViewController
//- (void) addAction:(UIAlertAction *)action;
//- (void) setMessage:(NSString *)message;
//- (void) setTitle:(NSString *)title;
//@end

@interface SBAlertItem : NSObject {
}
- (UIAlertController *) alertController;
- (UIAlertView *) alertSheet;
- (void) deactivateForButton;
- (void) dismiss;
@end

@interface SBAlertItemsController : NSObject {
}
+ (SBAlertItemsController *) sharedInstance;
- (void) activateAlertItem:(SBAlertItem *)item;
@end

@interface SBStatusBarTimeView : UIView {
}
- (id) textFont;
@end

@interface UIApplication (CydiaSubstrate)
- (void) applicationOpenURL:(id)url;
@end

@interface UIAlertView (CydiaSubstrate)
- (void) setForceHorizontalButtonsLayout:(BOOL)force;
- (void) setBodyText:(NSString *)body;
- (void) setNumberOfRows:(NSInteger)rows;
@end

void SafeModeButtonClicked(int button) {
    switch (button) {
        case 1:
        break;

        case 2:
            if (kCFCoreFoundationVersionNumber >= 700)
                system("killall backboardd");
            else
                // XXX: there are better ways of restarting SpringBoard that would actually save state
                exit(0);
        break;

        case 3:
            [[UIApplication sharedApplication] applicationOpenURL:[NSURL URLWithString:@"http://cydia.saurik.com/safemode/"]];
        break;
    }
}

void SafeModeButtonClicked(id self, int button) {
    SafeModeButtonClicked(button);
    if ([self respondsToSelector:@selector(deactivateForButton)])
        [self deactivateForButton];
    else
        [self dismiss];
}

void SafeModeAlertItem$alertSheet$buttonClicked$(id self, SEL sel, id sheet, int button) {
    SafeModeButtonClicked(button);
    [self dismiss];
}

void SafeModeAlertItem$alertView$clickedButtonAtIndex$(id self, SEL sel, id sheet, NSInteger button) {
    SafeModeButtonClicked(button + 1);
    [self dismiss];
}

void SafeModeAlertItem$configure$requirePasscodeForActions$(id self, SEL sel, BOOL configure, BOOL require) {
    NSString *text(@"We apologize for the inconvenience, but SpringBoard has just crashed.\n\nMobileSubstrate /did not/ cause this problem: it has protected you from it.\n\nSpringBoard is now running in Safe Mode. All extensions that support this safety system are disabled.\n\nReboot (or restart SpringBoard) to return to the normal mode. To return to this dialog touch the status bar.\n\nTap \"Help\" below for more tips.");

#if defined(__ARM_ARCH_7S__) || defined(__arm64__)
    if ([self respondsToSelector:@selector(alertController)]) {
        UIAlertController *alert([self alertController]);

        [alert setTitle:@""];
        [alert setMessage:text];

        [alert addAction:[%c(UIAlertAction) actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) { SafeModeButtonClicked(self, 1); }]];
        [alert addAction:[%c(UIAlertAction) actionWithTitle:@"Restart" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) { SafeModeButtonClicked(self, 2); }]];
        [alert addAction:[%c(UIAlertAction) actionWithTitle:@"Help" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) { SafeModeButtonClicked(self, 3); }]];

        return;
    }
#else
    if (false) %c(UIAlertAction);
#endif

    UIAlertView *sheet([self alertSheet]);
    [sheet setDelegate:self];

    [sheet setTitle:@""];
    [sheet setBodyText:text];

    [sheet addButtonWithTitle:@"OK"];
    [sheet addButtonWithTitle:@"Restart"];
    [sheet addButtonWithTitle:@"Help"];

    [sheet setNumberOfRows:1];
    if ([sheet respondsToSelector:@selector(setForceHorizontalButtonsLayout:)])
        [sheet setForceHorizontalButtonsLayout:YES];
}

void SafeModeAlertItem$performUnlockAction(id self, SEL sel) {
    [[%c(SBAlertItemsController) sharedInstance] activateAlertItem:self];
}

static void MSAlert() {
    if ($SafeModeAlertItem == nil)
        $SafeModeAlertItem = objc_lookUpClass("SafeModeAlertItem");
    if ($SafeModeAlertItem == nil) {
        $SafeModeAlertItem = objc_allocateClassPair(objc_getClass("SBAlertItem"), "SafeModeAlertItem", 0);
        if ($SafeModeAlertItem == nil)
            return;

        class_addMethod($SafeModeAlertItem, @selector(alertSheet:buttonClicked:), (IMP) &SafeModeAlertItem$alertSheet$buttonClicked$, "v@:@i");
        class_addMethod($SafeModeAlertItem, @selector(alertView:clickedButtonAtIndex:), (IMP) &SafeModeAlertItem$alertView$clickedButtonAtIndex$, "v@:@i");
        class_addMethod($SafeModeAlertItem, @selector(configure:requirePasscodeForActions:), (IMP) &SafeModeAlertItem$configure$requirePasscodeForActions$, "v@:cc");
        class_addMethod($SafeModeAlertItem, @selector(performUnlockAction), (IMP) SafeModeAlertItem$performUnlockAction, "v@:");
        objc_registerClassPair($SafeModeAlertItem);
    }

    if (%c(SBAlertItemsController) != nil)
        [[%c(SBAlertItemsController) sharedInstance] activateAlertItem:[[[$SafeModeAlertItem alloc] init] autorelease]];
}


// XXX: on iOS 5.0, we really would prefer avoiding 

%hook SBStatusBar
- (void) touchesEnded:(id)touches withEvent:(id)event {
    MSAlert();
    %orig(touches, event);
} %end

%hook SBStatusBar
- (void) mouseDown:(void *)event {
    MSAlert();
    %orig(event);
} %end

%hook UIStatusBar
- (void) touchesBegan:(void *)touches withEvent:(void *)event {
    MSAlert();
    %orig(touches, event);
} %end

%hook UIStatusBar_Modern
- (void) touchesBegan:(void *)touches withEvent:(void *)event {
    MSAlert();
    %orig(touches, event);
} %end


// this fairly complex code came from Grant, to solve the "it Safe Mode"-in-bar bug

%hook SBStatusBarDataManager
- (void) _updateTimeString {
    char *_data(&MSHookIvar<char>(self, "_data"));
    if (_data == NULL)
        return;

    Ivar _itemIsEnabled(object_getInstanceVariable(self, "_itemIsEnabled", NULL));
    if (_itemIsEnabled == NULL)
        return;

    Ivar _itemIsCloaked(object_getInstanceVariable(self, "_itemIsCloaked", NULL));
    if (_itemIsCloaked == NULL)
        return;

    size_t enabledOffset(ivar_getOffset(_itemIsEnabled));
    size_t cloakedOffset(ivar_getOffset(_itemIsCloaked));
    if (enabledOffset >= cloakedOffset)
        return;

    size_t offset(cloakedOffset - enabledOffset);
    char *timeString(_data + offset);
    strcpy(timeString, "Exit Safe Mode");
} %end


// this /insanely/ complex code came from that parrot guy... omg this is getting bad

@interface SBStatusBarStateAggregator : NSObject
- (void) _stopTimeItemTimer;
@end

%hook SBStatusBarStateAggregator

- (void) _updateTimeItems {
    if ([self respondsToSelector:@selector(_stopTimeItemTimer)])
        [self _stopTimeItemTimer];
    %orig;
}

- (void) _restartTimeItemTimer {
}

- (void) _resetTimeItemFormatter {
    %orig;
    if (NSDateFormatter *df = MSHookIvar<NSDateFormatter *>(self, "_timeItemDateFormatter"))
        [df setDateFormat:@"'Exit' 'Safe' 'Mode'"];
}

%end


static bool alerted_;

static void AlertIfNeeded() {
    if (alerted_)
        return;
    alerted_ = true;
    MSAlert();
}

// iOS 7
%hook SBLockScreenManager
- (void) _finishUIUnlockFromSource:(int)source withOptions:(id)options {
    %orig;
    AlertIfNeeded();
}

-(void)lockScreenViewControllerDidDismiss {
    %orig;
    AlertIfNeeded();
}
%end

// iOS 6
%hook SBAwayController
- (void) _finishUnlockWithSound:(BOOL)sound unlockSource:(int)source isAutoUnlock:(BOOL)is {
    %orig;
    AlertIfNeeded();
} %end

// iOS 5
%hook SBAwayController
- (void) _unlockWithSound:(BOOL)sound isAutoUnlock:(BOOL)is unlockSource:(int)source {
    %orig;
    AlertIfNeeded();
} %end

// iOS 4.3 XXX: check lower versions
%hook SBAwayController
- (void) _unlockWithSound:(BOOL)sound isAutoUnlock:(BOOL)is unlockType:(int)type {
    %orig;
    AlertIfNeeded();
} %end

// -[SBIconController showInfoAlertIfNeeded] explains how to drag icons around the iPhone home screen
// it used to be shown to users when they unlocked their screen for the first time, and happened every unlock
// however, as of iOS 4.3, it got relegated to only appearing once the user installed an app or web clip

%hook SBIconController
- (void) showInfoAlertIfNeeded {
    AlertIfNeeded();
} %end


// the icon state, including crazy configurations like Five Icon Dock, is stored in SpringBoard's defaults
// unfortunately, SpringBoard on iOS 2.0 and 2.1 (maybe 2.2 as well) buffer overrun with more than 4 icons
// there is a third party package called IconSupport that remedies this, but not everyone is using it yet

%hook SBButtonBar
- (int) maxIconColumns {
    static int max;
    if (max == 0) {
        max = %orig();
        if (NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults])
            if (NSDictionary *iconState = [defaults objectForKey:@"iconState"])
                if (NSDictionary *buttonBar = [iconState objectForKey:@"buttonBar"])
                    if (NSArray *iconMatrix = [buttonBar objectForKey:@"iconMatrix"])
                        if ([iconMatrix count] != 0)
                            if (NSArray *row = [iconMatrix objectAtIndex:0]) {
                                int count([row count]);
                                if (max < count)
                                    max = count;
                            }
    } return max;
} %end


%hook SBUIController
- (id) init {
    if ((self = %orig()) != nil) {
        UIView *_contentLayer = MYHookIvar<UIView *>(self, "_contentLayer");
        UIView *_contentView = MYHookIvar<UIView *>(self, "_contentView");

        UIView *layer;
        if (_contentLayer != NULL)
            layer = _contentLayer;
        else if (_contentView != NULL)
            layer = _contentView;
        else
            layer = nil;

        if (layer != nil)
            [layer setBackgroundColor:[UIColor darkGrayColor]];
    } return self;
} %end

#define Paper_ "/Library/MobileSubstrate/MobileSafety.png"

%hook SBWallpaperImage
+ (id) alloc {
    return nil;
} %end

%hook UIImage
+ (UIImage *) defaultDesktopImage {
    return [UIImage imageWithContentsOfFile:@Paper_];
} %end

%hook SBStatusBarTimeView
- (void) tile {
    NSString *&_time(MSHookIvar<NSString *>(self, "_time"));
    CGRect &_textRect(MSHookIvar<CGRect>(self, "_textRect"));
    if (_time != nil)
        [_time release];
    _time = [@"Exit Safe Mode" retain];
    id font([self textFont]);
    CGSize size([_time sizeWithFont:font]);
    CGRect frame([self frame]);
    _textRect.size = size;
    _textRect.origin.x = (frame.size.width - size.width) / 2;
    _textRect.origin.y = (frame.size.height - size.height) / 2;
} %end

%hook _UIStatusBarStringView
- (void) tile {
    NSString *&_time(MSHookIvar<NSString *>(self, "_time"));
    CGRect &_textRect(MSHookIvar<CGRect>(self, "_textRect"));
    if (_time != nil)
        [_time release];
    _time = [@"Exit Safe Mode" retain];
    id font([self textFont]);
    CGSize size([_time sizeWithFont:font]);
    CGRect frame([self frame]);
    _textRect.size = size;
    _textRect.origin.x = (frame.size.width - size.width) / 2;
    _textRect.origin.y = (frame.size.height - size.height) / 2;
} %end

%hook _UIStatusBarStringView
- (void) setText:(NSString*)text {
    %orig(@"Exit");
} %end


// on iOS 6.0, Apple split parts of SpringBoard into a daemon called backboardd, including app launches
// in order to allow safe mode to propogate into applications, we need to then tell backboardd here
// XXX: (all of this should be replaced, however, with per-process launchd-mediated exception handling)

%hook BKSApplicationLaunchSettings
- (void) setEnvironment:(NSDictionary *)original {
    if (original == nil)
        return %orig(nil);

    NSMutableDictionary *modified([original mutableCopy]);
    [modified setObject:@"1" forKey:@"_MSSafeMode"];
    return %orig(modified);
} %end

%hook FBApplicationInfo
- (NSDictionary *)environmentVariables {
        NSDictionary *originalVariables = %orig;
        NSMutableDictionary *newVariables = [originalVariables mutableCopy];
        [newVariables setObject:@1 forKey:@"_MSSafeMode"];
        return [newVariables autorelease];
}
%end

// this highly-general hook replaces all previous attempts to protect SpringBoard from spurious code
// the main purpose is to protect SpringBoard from non-Substrate "away view plug-ins" and "wee apps"

const char *dylibs_[] = {
    "/usr/lib",
    "/System/Library/Frameworks",
    "/System/Library/PrivateFrameworks",
    "/System/Library/CoreServices",
    "/System/Library/AccessibilityBundles",
    "/System/Library/HIDPlugins",
    "/System/Library/SpringBoardPlugins",
    "/System/Library/Extensions",
    "/System/Library/BulletinBoardPlugins",
    "/System/Library/ControlCenter/Bundles",
    NULL,
};

MSHook(void *, dlopen, const char *path, int mode) {
    // we probably don't need this whitelist, but it has the nifty benefit of letting Cycript inject
    // that said, older versions of iOS (before 3.1) will need a special case due to now shared cache

    for (const char **dylib = dylibs_; *dylib != NULL; ++dylib) {
        size_t length(strlen(*dylib));
        if (strncmp(path, *dylib, length) != 0)
            continue;
        if (path[length] != '/')
            continue;
        goto load;
    }

    // if the file is not on disk, and isn't already loaded (LC_ID_DYLIB), it is in the shared cache
    // files loaded from the shared cache are "trusted". ones that don't exist are clearly harmless.
    // this allows us to load most of the dynamic functionality of SpringBoard without going nuts ;P

    if (access(path, F_OK) == 0)
        mode |= RTLD_NOLOAD;

  load:
    return _dlopen(path, mode);
}


%ctor {
    NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);

    MSHookFunction(&dlopen, MSHake(dlopen));

    // on iOS 6, backboardd is in charge of brightness, and freaks out when SpringBoard restarts :(
    // the result is that the device is super dark until we attempt to update the brightness here.

    if (kCFCoreFoundationVersionNumber >= 700) {
        if (void (*GSEventSetBacklightLevel)(float) = reinterpret_cast<void (*)(float)>(dlsym(RTLD_DEFAULT, "GSEventSetBacklightLevel")))
            if (NSMutableDictionary *defaults = [NSMutableDictionary dictionaryWithContentsOfFile:[NSString stringWithFormat:@"%@/Library/Preferences/com.apple.springboard.plist", NSHomeDirectory()]])
                if (NSNumber *level = [defaults objectForKey:@"SBBacklightLevel2"])
                    GSEventSetBacklightLevel([level floatValue]);
    }

    [pool release];
}