-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathFWBundle.m
926 lines (692 loc) · 22.1 KB
/
FWBundle.m
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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
//
// FWBundle.m
// tetherKit
//
// Created by Kevin Bradley on 1/14/11.
// Copyright 2011 FireCore, LLC. All rights reserved.
//
#import "FWBundle.h"
#import "nitoUtility.h"
#import "TSSManager.h"
@implementation FWBundle
@synthesize fwRoot, restoreMode;
+ (FWBundle *)bundleWithName:(NSString *)bundleName
{
NSString *thePath = [[NSBundle mainBundle] pathForResource:bundleName ofType:@"bundle" inDirectory:@"bundles"];
if (![FM fileExistsAtPath:thePath])
return nil;
FWBundle *theBundle = [[FWBundle alloc] initWithPath:thePath];
theBundle.fwRoot = TMP_ROOT;
return [theBundle autorelease];
}
+ (FWBundle *)bundleForFile:(NSString *)theFile
{
NSString *filename = [[theFile lastPathComponent] stringByDeletingPathExtension];
NSArray *filenameSplit = [filename componentsSeparatedByString:@"_Restore"];
NSString *newName = [filenameSplit objectAtIndex:0];
//NSLog(@"checking for: %@", newName);
FWBundle *theBundle = [FWBundle bundleWithName:newName];
//NSLog(@"theBundle: %@", theBundle);
return theBundle;
}
/*
BuildIdentities - > object at index 0 - > Manifest (dict) - > KernelCache
BuildIdentities - > object at index 0 - > Manifest (dict) - > iBSS
*/
//DownloadUrl
- (NSString *)downloadURL
{
NSString *url = [[self infoDictionary] valueForKey:DOWNLOAD_URL];
if ([url length] > 1)
return url;
return nil;
}
- (NSString *)SHA
{
return [[self infoDictionary] valueForKey:SHA_ONE];
}
- (NSDictionary *)buildManifest
{
NSArray *buildIdentities = [[self fwDictionary] objectForKey:@"BuildIdentities"];
NSDictionary *one = [buildIdentities lastObject];
return [one valueForKey:@"Manifest"];
}
- (NSString *)kernelCacheName
{
return [[[[self buildManifest] valueForKey:@"KernelCache"] valueForKey:@"Info"] valueForKey:@"Path"];
}
- (NSString *)iBSSName
{
return [[[[self buildManifest] valueForKey:@"iBSS"] valueForKey:@"Info"] valueForKey:@"Path"];
}
- (NSString *)iBECName
{
return [[[[self buildManifest] valueForKey:@"iBEC"] valueForKey:@"Info"] valueForKey:@"Path"];
}
- (NSString *)buildManifestPath
{
NSString *buildM = [TMP_ROOT stringByAppendingPathComponent:@"BuildManifest.plist"];
if ([FM fileExistsAtPath:buildM])
{
return buildM;
}
return nil;
}
- (NSString *)restoreDictionaryPath
{
NSString *restore = [TMP_ROOT stringByAppendingPathComponent:@"Restore.plist"];
if ([FM fileExistsAtPath:restore])
{
return restore;
}
return nil;
}
- (NSMutableDictionary *)mutableFWDictionary
{
NSString *buildM = [TMP_ROOT stringByAppendingPathComponent:@"BuildManifest.plist"];
if ([FM fileExistsAtPath:buildM])
{
NSMutableDictionary *outputDict = [[NSMutableDictionary alloc] initWithContentsOfFile:buildM];
return [outputDict autorelease];
}
return nil;
}
- (NSDictionary *)fwDictionary
{
NSString *buildM = [TMP_ROOT stringByAppendingPathComponent:@"BuildManifest.plist"];
if ([FM fileExistsAtPath:buildM])
{
return [NSDictionary dictionaryWithContentsOfFile:buildM];
} else {
buildM = [IPSW_TMP stringByAppendingPathComponent:@"BuildManifest.plist"];
if ([FM fileExistsAtPath:buildM])
{
return [NSDictionary dictionaryWithContentsOfFile:buildM];
}
}
return nil;
}
- (NSString *)localBundlePath
{
return [[nitoUtility applicationSupportFolder] stringByAppendingPathComponent:[[self bundleName] stringByAppendingPathExtension:@"bundle"]];
}
- (NSDictionary *)localManifest
{
NSString *bundlePath = [self localBundlePath];
NSString *bm = [bundlePath stringByAppendingPathComponent:@"BuildManifest.plist"];
if ([FM fileExistsAtPath:bm])
{
return [NSDictionary dictionaryWithContentsOfFile:bm];
}
return nil;
}
- (NSString *)localiBSS
{
if ([self localManifest] != nil)
{
return [[self localBundlePath] stringByAppendingPathComponent:[[self localManifest] valueForKey:@"iBSS"]];
}
return nil;
}
- (NSString *)localiBECBoot
{
if ([self localManifest] != nil)
{
return [[self localBundlePath] stringByAppendingPathComponent:[[self localManifest] valueForKey:@"iBECBoot"]];
}
return nil;
}
- (NSString *)localiBEC
{
if ([self localManifest] != nil)
{
return [[self localBundlePath] stringByAppendingPathComponent:[[self localManifest] valueForKey:@"iBEC"]];
}
return nil;
}
- (NSString *)localKernel
{
if ([self localManifest] != nil)
{
return [[self localBundlePath] stringByAppendingPathComponent:[[self localManifest] valueForKey:@"KernelCache"]];
}
return nil;
}
- (NSString *)oldOutputFile
{
return [NSHomeDirectory() stringByAppendingPathComponent:self.outputName];
}
- (NSString *)outputFile
{
NSString *newOutputFile = [[nitoUtility firmwareFolder] stringByAppendingPathComponent:self.outputName];
NSString *oldOutputFile = [self oldOutputFile];
NSFileManager *man = [NSFileManager defaultManager];
if ([man fileExistsAtPath:oldOutputFile])
{
if (![man fileExistsAtPath:newOutputFile]) //we have the file in the old location, but not the new. migrate that shit!!
{
if ([man moveItemAtPath:oldOutputFile toPath:newOutputFile error:nil])
{
NSLog(@"migrated: %@ to proper location, returning now!", self.outputName);
return newOutputFile;
} else {
NSLog(@"failed to migrate the file, but we still have the old one, so return it anyways");
return oldOutputFile;
}
}
}
//if we got this far, we dont have teh old deprecated file, but we are still not sure if we have hte new proper location either.
return newOutputFile; //we got nothing!!!
}
- (NSString *)outputName
{
return [[self bundleName] stringByAppendingString:@"_SP_Restore.ipsw"];
}
/*
BuildManifest.plist -> BuildIdentities - > Item 01 -> info -> MinimumSystemPartition
BuildManifest.plist -> BuildIdentities - > Item 01 -> info -> MinimumSystemPartition
Restore.plist -> MinimumSystemPartition -> DMG_NAME
*/
- (BOOL)shouldUpdatePartitionSize
{
return [self is4point4];
}
- (void)setMinimumSystemPartition:(int)newSize
{
NSFileManager *man = [NSFileManager defaultManager];
NSString *outputFile = [self buildManifestPath];
if ([man fileExistsAtPath:outputFile])
{
NSMutableDictionary *fullDict = [self mutableFWDictionary];
id buildIdentities = [fullDict objectForKey:@"BuildIdentities"];
id one = [buildIdentities lastObject];
id infoDict = [one valueForKey:@"Info"];
int buildIndex = [buildIdentities count]-1;
[infoDict setValue:[NSNumber numberWithInt:newSize] forKey:@"MinimumSystemPartition"];
[one setObject:infoDict forKey:@"Info"];
[buildIdentities replaceObjectAtIndex:buildIndex withObject:one];
[fullDict setObject:buildIdentities forKey:@"BuildIdentities"];
[fullDict writeToFile:outputFile atomically:YES];
//On to the restore file
NSString *restoreFile = [self restoreDictionaryPath];
if ([man fileExistsAtPath:restoreFile])
{
NSMutableDictionary *restoreDict = [[NSMutableDictionary alloc] initWithContentsOfFile:restoreFile];
id msp = [restoreDict valueForKey:@"MinimumSystemPartition"];
NSString *fsKey = [[msp allKeys] lastObject];
[msp setValue:[NSNumber numberWithInt:newSize] forKey:fsKey];
[restoreDict writeToFile:restoreFile atomically:YES];
[restoreDict release];
restoreDict = nil;
} else {
NSLog(@"no file at %@", restoreFile);
}
} else {
NSLog(@"editing build manifest for setMinimumSystemPartition failed!!!!! BAIL");
}
}
- (NSString *)oldramdiskSize
{
if ([[self bundleName] isEqualToString:@"AppleTV2,1_4.3_8F5148c"])
{
return @"24676576";
} else if ([[self bundleName] isEqualToString:@"AppleTV2,1_4.3_8F5153d"]){
return @"24676576";
} else if ([[self bundleName] isEqualToString:@"AppleTV2,1_4.3_8F5166b"]) {
return @"24676576";
} else {
return @"16541920";
}
}
//26067520
- (NSString *)ramdiskSize
{
if ([self is4point3])
{//23529796
return @"26067520";
} else {
return @"16541920";
}
}
- (BOOL)versionEqualToOrGreaterThan:(NSString *)comparisonVersion
{
NSString *myVersion = [self osVersion];
NSComparisonResult theResult = [myVersion compare:comparisonVersion options:NSNumericSearch];
//NSLog(@"theversion: %@ installed version %@", theVersion, installedVersion);
if ( theResult == NSOrderedDescending )
{
// NSLog(@"%@ is greater than %@", myVersion, comparisonVersion);
return YES;
} else if ( theResult == NSOrderedAscending ){
// NSLog(@"%@ is greater than %@", comparisonVersion, myVersion);
return NO;
} else if ( theResult == NSOrderedSame ) {
// NSLog(@"%@ is equal to %@", myVersion, comparisonVersion);
return YES;
}
return NO;
}
- (BOOL)fivePointOnePlus //really 6.0 +, but the 4th beta was labeled 5.1 and not 6.0, STUPID APPLE ;-P
{
NSString *comparisonVersion = @"5.1"; //yes pandering to appletv2, what of it? ;-P
NSString *myVersion = [self osVersion];
NSComparisonResult theResult = [myVersion compare:comparisonVersion options:NSNumericSearch];
//NSLog(@"theversion: %@ installed version %@", theVersion, installedVersion);
if ( theResult == NSOrderedDescending )
{
// NSLog(@"%@ is greater than %@", myVersion, comparisonVersion);
return YES;
} else if ( theResult == NSOrderedAscending ){
// NSLog(@"%@ is greater than %@", comparisonVersion, myVersion);
return NO;
} else if ( theResult == NSOrderedSame ) {
// NSLog(@"%@ is equal to %@", myVersion, comparisonVersion);
return YES;
}
return NO;
}
- (NSString *)osVersion
{
NSString *clippedPath = nil;
int deviceInteger = [self deviceInt];
switch (deviceInteger) {
case kAppleTVDevice:
clippedPath = [[self bundleName] substringWithRange:NSMakeRange(11, 3)];
break;
case kiPadDevice:
case kiPodDevice:
//iPad1,1_4.3.1_8G4_Restore.ipsw
clippedPath = [[self bundleName] substringWithRange:NSMakeRange(8, 3)];
break;
case kiPhoneDevice:
clippedPath = [[self bundleName] substringWithRange:NSMakeRange(10, 3)];
break;
}
return clippedPath;
}
- (BOOL)untethered
{
return [[[self infoDictionary] valueForKey:@"Untethered"] boolValue];
//code below is deprecated for now..
NSString *comparisonVersion = @"5.0"; //yes pandering to appletv2, what of it? ;-P
NSString *clippedPath = nil;
int deviceInteger = [self deviceInt];
switch (deviceInteger) {
case kAppleTVDevice:
clippedPath = [[self bundleName] substringWithRange:NSMakeRange(11, 3)];
break;
case kiPadDevice:
case kiPodDevice:
//iPad1,1_4.3.1_8G4_Restore.ipsw
clippedPath = [[self bundleName] substringWithRange:NSMakeRange(8, 3)];
comparisonVersion = @"5.0";
break;
case kiPhoneDevice:
clippedPath = [[self bundleName] substringWithRange:NSMakeRange(10, 3)];
comparisonVersion = @"5.0";
break;
}
NSComparisonResult theResult = [clippedPath compare:comparisonVersion options:NSNumericSearch];
//NSLog(@"theversion: %@ installed version %@", theVersion, installedVersion);
if ( theResult == NSOrderedDescending )
{
NSLog(@"%@ is greater than %@ NO", clippedPath, @"4.4");
return NO;
} else if ( theResult == NSOrderedAscending ){
NSLog(@"%@ is greater than %@ YES", @"4.4", clippedPath);
return YES;
} else if ( theResult == NSOrderedSame ) {
NSLog(@"%@ is equal to %@ NO", clippedPath, @"4.4");
return NO;
}
return NO;
}
- (NSString *)fullDeviceType
{
NSString *firstLetter = [[self bundleName] substringToIndex:1];
if ([firstLetter isEqualToString:@"i"]) //ipad or iphone oops forgot ipod dummy!! ;-P
{
NSString *clippedPath = [[self bundleName] substringToIndex:9];
if ([clippedPath isEqualToString:@"iPhone"])
{
return clippedPath;
} else {
return [[self bundleName] substringToIndex:7]; //since iPod/iPad are both 4 letters this should return either one.
}
}
return [[self bundleName] substringToIndex:10];
//iPhone 5
//iPad 5
//AppleTV 7
}
- (NSString *)deviceType
{
NSString *firstLetter = [[self bundleName] substringToIndex:1];
if ([firstLetter isEqualToString:@"i"]) //ipad or iphone oops forgot ipod dummy!! ;-P
{
NSString *clippedPath = [[self bundleName] substringToIndex:5];
if ([clippedPath isEqualToString:@"iPhone"])
{
return clippedPath;
} else {
return [[self bundleName] substringToIndex:3]; //since iPod/iPad are both 4 letters this should return either one.
}
}
return @"AppleTV";
//iPhone 5
//iPad 5
//AppleTV 7
}
- (int)deviceInt
{
if ([[self deviceType] isEqualToString:@"iPhone"])
{
return kiPhoneDevice;
} else if ([[self deviceType] isEqualToString:@"iPad"]){
return kiPadDevice;
} else if ([[self deviceType] isEqualToString:@"AppleTV"]) {
return kAppleTVDevice;
} else if ([[self deviceType] isEqualToString:@"iPod"]) {
return kiPodDevice;
}
return kUnknownDevice;
}
- (NSString *)allFlashLocation
{
//BuildIdentities - > Manifest -> AppleLogo -> Info -> Path
return [[self unzippedPathForFirmwareKey:@"AppleLogo"] stringByDeletingLastPathComponent];
}
- (NSString *)iFaithBuildVersion
{
//AppleTV2,1_5.2.1_10B329a.bundle
NSString *name = [self bundleName];
NSArray *objects = [name componentsSeparatedByString:@"_"];
return [NSString stringWithFormat:@"%@ (%@)", [objects objectAtIndex:1], [objects lastObject]];
}
- (NSString *)buildVersion
{
NSString *name = [self bundleName];
NSArray *objects = [name componentsSeparatedByString:@"_"];
return [objects lastObject];
}
- (BOOL)is50B7 //pretty much whether or not we listen to fileSystemSize in the plist... obvious, no?
{
if ([[self buildVersion] isEqualToString:@"9A334"])
return YES;
if ([[self buildVersion] isEqualToString:@"9A5313e"])
return YES;
return NO;
}
- (BOOL)is8F455
{
if ([[self bundleName] isEqualToString:@"AppleTV2,1_4.3_8F455"])
{
return YES;
}
return NO;
}
- (BOOL)sixtyPlus
{
NSString *comparisonVersion = @"5.1"; //yes pandering to appletv2, what of it? ;-P
NSString *clippedPath = nil;
int deviceInteger = [self deviceInt];
switch (deviceInteger) {
case kAppleTVDevice:
clippedPath = [[self bundleName] substringWithRange:NSMakeRange(11, 3)];
break;
case kiPadDevice:
case kiPodDevice:
//iPad1,1_4.3.1_8G4_Restore.ipsw
clippedPath = [[self bundleName] substringWithRange:NSMakeRange(8, 3)];
comparisonVersion = @"6.0";
break;
case kiPhoneDevice:
clippedPath = [[self bundleName] substringWithRange:NSMakeRange(10, 3)];
comparisonVersion = @"6.0";
break;
}
NSComparisonResult theResult = [clippedPath compare:comparisonVersion options:NSNumericSearch];
//NSLog(@"theversion: %@ installed version %@", theVersion, installedVersion);
if ( theResult == NSOrderedDescending )
{
// NSLog(@"%@ is greater than %@", clippedPath, @"4.4");
return YES;
} else if ( theResult == NSOrderedAscending ){
// NSLog(@"%@ is greater than %@", @"4.4", clippedPath);
return NO;
} else if ( theResult == NSOrderedSame ) {
// NSLog(@"%@ is equal to %@", clippedPath, @"4.4");
return YES;
}
return NO;
}
- (BOOL)is4point4 //5.0 for other, 4.4 for AppleTV 2
{
NSString *comparisonVersion = @"4.4"; //yes pandering to appletv2, what of it? ;-P
NSString *clippedPath = nil;
int deviceInteger = [self deviceInt];
switch (deviceInteger) {
case kAppleTVDevice:
clippedPath = [[self bundleName] substringWithRange:NSMakeRange(11, 3)];
break;
case kiPadDevice:
case kiPodDevice:
//iPad1,1_4.3.1_8G4_Restore.ipsw
clippedPath = [[self bundleName] substringWithRange:NSMakeRange(8, 3)];
comparisonVersion = @"5.0";
break;
case kiPhoneDevice:
clippedPath = [[self bundleName] substringWithRange:NSMakeRange(10, 3)];
comparisonVersion = @"5.0";
break;
}
NSComparisonResult theResult = [clippedPath compare:comparisonVersion options:NSNumericSearch];
//NSLog(@"theversion: %@ installed version %@", theVersion, installedVersion);
if ( theResult == NSOrderedDescending )
{
// NSLog(@"%@ is greater than %@", clippedPath, @"4.4");
return YES;
} else if ( theResult == NSOrderedAscending ){
// NSLog(@"%@ is greater than %@", @"4.4", clippedPath);
return NO;
} else if ( theResult == NSOrderedSame ) {
// NSLog(@"%@ is equal to %@", clippedPath, @"4.4");
return YES;
}
return NO;
}
- (BOOL)is4point3
{
NSString *clippedPath = nil;
int deviceInteger = [self deviceInt];
switch (deviceInteger) {
case kAppleTVDevice:
clippedPath = [[self bundleName] substringWithRange:NSMakeRange(11, 3)];
break;
case kiPadDevice:
//iPad1,1_4.3.1_8G4_Restore.ipsw
clippedPath = [[self bundleName] substringWithRange:NSMakeRange(8, 3)];
break;
case kiPhoneDevice:
clippedPath = [[self bundleName] substringWithRange:NSMakeRange(10, 3)];
break;
}
NSComparisonResult theResult = [clippedPath compare:@"4.3" options:NSNumericSearch];
//NSLog(@"theversion: %@ installed version %@", theVersion, installedVersion);
if ( theResult == NSOrderedDescending )
{
//NSLog(@"%@ is greater than %@", clippedPath, @"4.3");
return YES;
} else if ( theResult == NSOrderedAscending ){
//NSLog(@"%@ is greater than %@", @"4.3", clippedPath);
return NO;
} else if ( theResult == NSOrderedSame ) {
// NSLog(@"%@ is equal to %@", clippedPath, @"4.3");
return YES;
}
return NO;
}
- (BOOL)is4point3old
{
NSString *clippedPath = [[self bundleName] substringToIndex:14];
if ([clippedPath isEqualToString:@"AppleTV2,1_4.3"])
{
return YES;
} else {
return NO;
}
return NO;
}
- (NSDictionary *)extraPatch
{
if ([self is4point3])
{
NSDictionary *thePatch = [NSDictionary dictionaryWithObjectsAndKeys:[[NSBundle mainBundle] pathForResource:@"status" ofType:@"patch" inDirectory:@"patches"], @"Patch", @"private/var/lib/dpkg/status", @"Target", @"7945d79f0dad7c3397b930877ba92ec4", @"md5", nil];
//NSLog(@"extraPatch: %@", thePatch);
return thePatch;
}
return nil;
}
- (NSDictionary *)oldextraPatch
{
NSString *clippedPath = [[self bundleName] substringToIndex:14];
NSLog(@"clippedPath: %@", clippedPath);
if ([[self bundleName] isEqualToString:@"AppleTV2,1_4.3_8F5166b"])
{
NSDictionary *thePatch = [NSDictionary dictionaryWithObjectsAndKeys:[[NSBundle mainBundle] pathForResource:@"status" ofType:@"patch" inDirectory:@"patches"], @"Patch", @"private/var/lib/dpkg/status", @"Target", @"7945d79f0dad7c3397b930877ba92ec4", @"md5", nil];
//NSLog(@"extraPatch: %@", thePatch);
return thePatch;
}
if ([[self bundleName] isEqualToString:@"AppleTV2,1_4.3_8F5148c"])
{
NSDictionary *thePatch = [NSDictionary dictionaryWithObjectsAndKeys:[[NSBundle mainBundle] pathForResource:@"status" ofType:@"patch" inDirectory:@"patches"], @"Patch", @"private/var/lib/dpkg/status", @"Target", @"7945d79f0dad7c3397b930877ba92ec4", @"md5", nil];
//NSLog(@"extraPatch: %@", thePatch);
return thePatch;
}
if ([[self bundleName] isEqualToString:@"AppleTV2,1_4.3_8F5153d"])
{
NSDictionary *thePatch = [NSDictionary dictionaryWithObjectsAndKeys:[[NSBundle mainBundle] pathForResource:@"status" ofType:@"patch" inDirectory:@"patches"], @"Patch", @"private/var/lib/dpkg/status", @"Target", @"7945d79f0dad7c3397b930877ba92ec4", @"md5", nil];
//NSLog(@"extraPatch: %@", thePatch);
return thePatch;
}
return nil;
}
- (NSDictionary *)coreFilesInstallation
{
return [[self filesystemPatches] valueForKey:CORE_FILES];
}
- (NSString *)restoreRamdiskVolume
{
return [[self infoDictionary] valueForKey:MOUNTED_RAMDISK];
}
- (void)logDescription
{
NSLog(@"filename: %@", [self filename]);
NSLog(@"iBSS: %@", [self iBSS]);
NSLog(@"Restore Ramdisk: %@", [self restoreRamdisk]);
NSLog(@"Update Ramdisk: %@", [self updateRamdisk]);
NSLog(@"RootFilesystem: %@", [self rootFilesystem]);
NSLog(@"Filesystem Patches: %@", [self filesystemPatches]);
NSLog(@"bundlePath: %@", [self bundlePath]);
NSLog(@"fwRoot: %@", [self fwRoot]);
NSLog(@"bundleName: %@", [self bundleName]);
NSLog(@"kernelCache: %@", [self kernelCacheName]);
NSLog(@"iBSS: %@", [self iBSSName]);
NSLog(@"AppleLogo: %@", [self appleLogo]);
}
- (NSString *)bundleName
{
return [[self infoDictionary] valueForKey:@"Name"];
}
- (NSString *)filesystemSize
{
//RootFilesystemSize
return [[self infoDictionary] valueForKey:@"RootFilesystemSize"];
}
- (NSString *)restoreRamdiskFile
{
return [[self restoreRamdisk] valueForKey:@"File"];
}
- (NSString *)updateRamdiskFile
{
return [[self updateRamdisk] valueForKey:@"File"];
}
- (NSDictionary *)restoreRamdisk;
{
return [[self firmwarePatches] valueForKey:RESTORE_RD];
}
- (NSDictionary *)updateRamdisk
{
return [[self firmwarePatches] valueForKey:UPDATE_RD];
}
- (NSDictionary *)iBEC
{
return [[self firmwarePatches] valueForKey:@"iBEC"];
}
- (NSDictionary *)iBSS
{
return [[self firmwarePatches] valueForKey:@"iBSS"];
}
- (NSDictionary *)appleLogo
{
return [[self firmwarePatches] valueForKey:@"AppleLogo"];
}
- (NSDictionary *)kernelcache
{
return [[self firmwarePatches] valueForKey:@"kernelcache"];
}
- (NSDictionary *)sbkernel
{
return [[self supportBundlePatches] valueForKey:@"kernelcache"];
}
- (NSString *)rootFilesystem
{
return [[self infoDictionary] valueForKey:ROOT_FS];
}
- (NSString *)filesystemKey
{
return [[self infoDictionary] valueForKey:FS_KEY];
}
- (NSString *)filename
{
return [[self infoDictionary] valueForKey:FILE_NAME];
}
- (NSDictionary *)filesystemPatches
{
return [[self infoDictionary] valueForKey:FS_PATCHES];
}
- (NSArray *)filesystemJailbreak
{
return [[self filesystemPatches] valueForKey:FS_JB];
}
- (NSDictionary *)firmwarePatches
{
return [[self infoDictionary] valueForKey:FW_PATCHES];
}
- (NSDictionary *)supportBundlePatches
{
return [[self infoDictionary] valueForKey:SB_PATCHES];
}
- (NSDictionary *)ramdiskPatches
{
return [[self infoDictionary] valueForKey:RD_PATCHES];
}
- (NSDictionary *)preInstalledPackages
{
return [[self infoDictionary] valueForKey:PREINST_PACKAGES];
}
- (NSString *)unzippedPathForFirmwareKey:(NSString *)firmwareKey
{
return [TMP_ROOT stringByAppendingPathComponent:[[[[self buildManifest] valueForKey:firmwareKey] valueForKey:@"Info"] valueForKey:@"Path"]];
}
+ (NSArray *)signKeyArray
{
return [NSArray arrayWithObjects:@"AppleLogo", @"BatteryCharging", @"BatteryCharging0", @"BatteryCharging1", @"BatteryFull", @"BatteryLow0", @"BatteryLow1", @"BatteryPlugin", @"DeviceTree", @"LLB", @"RecoveryMode", @"iBoot", nil];
}
- (void)dealloc
{
[fwRoot release];
fwRoot = nil;
[super dealloc];
}
@end