forked from John-K/pspdecrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ipl_decrypt.cpp
862 lines (807 loc) · 33.3 KB
/
ipl_decrypt.cpp
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
#include <cstdint>
#include <string>
#include <cstring>
#include <cstdio>
#include <openssl/sha.h>
#include <map>
#include <array>
#include "CommonTypes.h"
#include "common.h"
extern "C" {
#include "libkirk/kirk_engine.h"
#include "syscon_ipl_keys.h"
}
#define max(a, b) ((a) < (b) ? (b) : (a))
bool g_debug = false;
// 3.80+ use a custom Sha256 (with different initialization constants and the output truncated to 28 bytes), in part1 only
int g_customSha = 0;
// Use a SFMT19937 PRNG instead of MT19937 starting with 3.80 in part2 and 5.05 also in part1
int g_useSfmt = 0;
// 3.10+ have an additional unused round of MT19937
int g_emptyRound = 0;
// 1 if we use a precomputed key (see below), which avoids requiring a pre-ipl dump at hand
int g_usePrecomp = 0;
std::array<u32, 8> g_precompKey;
// In 3.30+, derive the key from a scrambled key first (g_newKey) and if the key's checksum is equal to g_checksum,
// XOR it with g_xorKey. Used to handle several preipl versions, only present on retail 01g and 02g.
u8 *g_newKey;
u8 *g_xorKey;
u8 g_checksum;
std::map<u32, std::array<u32, 8>> g_keys {
{0x3ca104f4, {0x351934f6, 0x7c77b627, 0xc774d96b, 0xac1381ef, 0xa93ba068, 0x9bf7a518, 0xd7e040e4, 0x41d18c07}}, // 2.60
{0x3f0449dd, {0x941a62b7, 0xa8b33d7e, 0xf59f3d90, 0xbfe0a24d, 0x295206e9, 0xe8d280fa, 0xb705572a, 0x99ad3262}}, // 2.7x
{0xfcc312e8, {0x4ebb9a84, 0x9d5b13a5, 0x569beec5, 0x343d4264, 0x2b3896dd, 0x00c962d8, 0x09fca971, 0x6aa5bcff}}, // 2.8x
{0x73acd410, {0xa06c226a, 0x3aee5334, 0x580f1057, 0x8a54f529, 0x1f4baece, 0xfa1d193e, 0x8ebb3a3c, 0x9e71ebfe}}, // 3.0x
{0x09cad2e0, {0x3311ea3a, 0xabc9231f, 0xdc31a4ec, 0x854344a5, 0x3c4ab211, 0x3db9632c, 0xbffe001b, 0xe4cd2a5b}}, // 3.1x
{0x59240761, {0x7c88b8f4, 0xf37ac9f8, 0xcedd8523, 0x1ed52bb3, 0xe02a117b, 0xad733c35, 0x34e7d318, 0x96434aac}}, // 3.30, 3.40
{0x3223e3dd, {0x3ff5e39a, 0x6f09bd05, 0xeb912e7f, 0xdf288223, 0xede00faa, 0x2187f747, 0x1e05d1e7, 0xbc699822}}, // 3.5x
{0x5abf5a5a, {0xa75ea149, 0xdf80643c, 0x8b15a788, 0xb1bf79db, 0x75782efd, 0x77432695, 0x1b26fdb2, 0x2cff77bd}}, // 3.60 02g
{0xbf94b233, {0xbe73e05c, 0xde908e11, 0xa08ec1df, 0xd52c8f15, 0x85cf2ad7, 0x16c21b33, 0x2c0e43e8, 0x084742b2}}, // 3.7x 01g
{0xc93aaf8e, {0x678ff79a, 0xa6a3e8cf, 0xa3440e80, 0xbfe1a980, 0x1734fb62, 0x8c8dcf35, 0x4b0443fd, 0xd4ecf146}}, // 3.7x 02g
{0xda8611e4, {0xfb9f9a86, 0x8dec7ddc, 0xb32215f0, 0x5e7be11f, 0xa6a140d7, 0xff068276, 0x2b2ee6e1, 0x00000000}}, // 3.80, 3.90, 3.93 01g
{0x0bb77011, {0xf4710af6, 0x46a34052, 0xdef91911, 0x29afe7d7, 0xc7fc1e55, 0xd0838eb1, 0xe069efd4, 0x00000000}}, // 3.80, 3.90, 3.93 02g
{0x8f94e800, {0xe359cf7e, 0x0c497ceb, 0x5ddf77c8, 0xf9bd7557, 0x00f4c84e, 0xe8b8bb30, 0x9417a01f, 0x00000000}}, // 3.95, 3.96, 4.0x 01g
{0x835f216c, {0xbd44491e, 0x2846ad03, 0x8ab0052e, 0x800e913b, 0x311ac562, 0x164bcb2c, 0x47791324, 0x00000000}}, // 3.95, 3.96, 4.0x 02g
{0x1605b947, {0x103e2ed1, 0x77a7c0d0, 0x66793d55, 0x48a1aa46, 0x8f08df6d, 0x9b18090b, 0x748538dd, 0x00000000}}, // 4.21 03g
{0xf6d67166, {0xc9d132c6, 0x39bf60aa, 0x1e0beb42, 0x2527c8aa, 0xee9568c7, 0xc1e9c001, 0xe12d8a28, 0x00000000}}, // 5.00, 5.01, 5.02, 5.03 01g
{0x1d3b3e5c, {0x0bdc608a, 0xb798378c, 0xd7685fca, 0x2eff316c, 0x360b71bd, 0x54cf987b, 0xa33e199f, 0x00000000}}, // 5.00, 5.01, 5.02, 5.03 02g
{0xdaaed916, {0xb66b5ed0, 0x6050ffe7, 0x05d943de, 0x740c00b3, 0xe3162c25, 0x10e84f28, 0x08fb61e5, 0x00000000}}, // 5.00, 5.01, 5.02, 5.03 03g
{0x3c5001d1, {0xc875123f, 0x91729205, 0x3ecf796e, 0xe4d1ed01, 0xb4a21262, 0xe2393966, 0x652c02a0, 0x00000000}}, // 5.05, 5.50, 5.51 01g
{0x34da9f9e, {0xd5598f66, 0x76563204, 0xd7609af3, 0x19e3fdfd, 0x59423449, 0x51f66969, 0x7491d7c7, 0x00000000}}, // 5.05, 5.50, 5.51 02g
{0xade7c30d, {0x7f363521, 0x1310b36f, 0x6ac47b4d, 0x70f691ac, 0xa5aeb931, 0x77a0e03d, 0xdd4fba79, 0x00000000}}, // 5.05, 5.50, 5.51 03g
{0xdd076132, {0xba731b75, 0xcc82b010, 0xeb35b72f, 0xcc228644, 0x56d6ba1e, 0x0d53c995, 0x988869a6, 0x00000000}}, // 5.55 01g
{0x03860456, {0xa35e7406, 0x8f85a45c, 0x73da7972, 0x2b231cda, 0x0352d13b, 0x1a5a0926, 0x86e6b2aa, 0x00000000}}, // 5.55 02g
{0x4bcf9cd3, {0xd03eb41a, 0xa5cf5395, 0x13fe9bd2, 0x0eb708e4, 0xf6836b3d, 0xb9f0fcb8, 0x9ddf3756, 0x00000000}}, // 5.55 03g
{0x1e4deaad, {0x969e578c, 0xd177ecbd, 0x8ace8ccf, 0xf0ea87f0, 0x34176e61, 0xdd680510, 0x6f6455ce, 0x00000000}}, // 5.70 04g
{0x2ee36b15, {0xff9c66bf, 0x37dd4762, 0x9c86545f, 0xf0c04791, 0x9550728c, 0x92233d0d, 0x97995f06, 0x00000000}}, // 5.70 05g
{0xbd0cd90b, {0xaa80ca25, 0x8686d001, 0x2af2ed65, 0x77b0ca3a, 0xb608924f, 0x8454d567, 0xfb1a3e15, 0x00000000}}, // 6.00, 6.10, 6.20 01g
{0x66e25e99, {0xd7af4f1e, 0x7cac691f, 0xc45ddbc2, 0x80c62fbf, 0x74928262, 0x36adec73, 0x9f38dbe9, 0x00000000}}, // 6.00, 6.10, 6.20 02g
{0x791e4cd7, {0xcb69b76f, 0x6aba2c7f, 0xb808770e, 0xaddf932a, 0xb07ebfac, 0x447c43b3, 0x4cc9ce7d, 0x00000000}}, // 6.00, 6.10, 6.20 03g
{0xa24e1fa2, {0x93c4833f, 0x76a42f6b, 0x005a7db5, 0xb2449bd6, 0x085cea84, 0x987d971d, 0xe3a38f0c, 0x00000000}}, // 6.00, 6.10, 6.20 04g
{0x0efa302b, {0xb886fa46, 0xbf9132f4, 0x84fd77aa, 0x9dc7f006, 0x43f3d726, 0x3fa9e3eb, 0x7fa1af0c, 0x00000000}}, // 6.10, 6.20 05g
{0xe3bcc58f, {0x80b33ce8, 0x02ff8486, 0xb297f0f0, 0x05b25e0c, 0xe8bec656, 0x9208f044, 0x1ebd9007, 0x00000000}}, // 6.00, 6.20 06g
{0xdf2909ba, {0xcd9c739f, 0x5077f132, 0x64079858, 0x01890036, 0x18bda892, 0xc31afe19, 0x309d6b46, 0x00000000}}, // 6.3x 01g
{0x545f427d, {0x1039fa9d, 0x4dbb2c77, 0x85c4f2c2, 0x51603084, 0x45190185, 0x0dea4d7d, 0x9c2853b8, 0x00000000}}, // 6.3x 02g
{0x6bb07a45, {0x70c01e9f, 0x8614069e, 0xa7cf50ab, 0xf9fe95c4, 0xe082ba29, 0x13bb2928, 0x06f2c942, 0x00000000}}, // 6.3x 03g
{0x64a6dae0, {0xc45a66f3, 0xf4d20f59, 0x9dff1533, 0xe50dbcfa, 0x9dd4487a, 0x00ec7c4c, 0xe69ff0a2, 0x00000000}}, // 6.3x 04g
{0x70fa83f7, {0xb49b59cb, 0xd238f8b4, 0xc9fe7e77, 0xf7fdbb24, 0xb27cf247, 0x06b29fea, 0x0aada68d, 0x00000000}}, // 6.3x 05g
{0xe63cebfd, {0x051adf5d, 0xd72a2c71, 0x04626b68, 0x8d5d6c2a, 0x696eb66a, 0x7d11b562, 0xdc7bb632, 0x00000000}}, // 6.3x 07g
{0x15dd2454, {0xa3bd8761, 0x30566a13, 0x65cbf6a1, 0x4464c734, 0x0f3895a3, 0xfde2bf31, 0x5940c10d, 0x00000000}}, // 6.3x 09g
{0x5eb2f991, {0x5ccf8527, 0x2ff4adbb, 0x90c4a5ff, 0x64a5a0b3, 0xe2db29d9, 0x4a3507db, 0x51cf76e7, 0x00000000}}, // 6.6x 01g
{0xfeadb708, {0x54db38ee, 0x84cfaea2, 0xf85925fb, 0xcba099a5, 0x9292dfab, 0xffa59b39, 0x5db31507, 0x00000000}}, // 6.6x 02g
{0x2d626d63, {0x882ff548, 0x3a24be5f, 0x850119d3, 0x0bb04220, 0x558f2a63, 0x619da517, 0x150eacf1, 0x00000000}}, // 6.6x 03g
{0x0560f424, {0x65a4369e, 0x48d33702, 0x4ad997f6, 0xfbd71fa5, 0x47cd9b75, 0xf39e4dbe, 0xae53ee25, 0x00000000}}, // 6.6x 04g
{0x56b30c99, {0x6be11e81, 0x2be616ac, 0xd1b3c7d3, 0xd1c7b01e, 0x28a657a6, 0x1667269f, 0xda03c4ba, 0x00000000}}, // 6.6x 05g
{0xcf87c10b, {0x9eebba33, 0x7de3efcf, 0xe38c189c, 0x61974726, 0x75ca3035, 0xcdca66b9, 0xfc094e35, 0x00000000}}, // 6.6x 07g
{0xd2334cee, {0x87193122, 0x39e8c388, 0x9bfa9cab, 0x979a9058, 0x3d12704c, 0x4d528bd9, 0x137d2e31, 0x00000000}}, // 6.6x 09g
{0x1bba5ad4, {0x7f093ad4, 0x75b52e02, 0x20c1be3d, 0xc3204b93, 0x9788fcd0, 0xae5cacdc, 0x1eef8956, 0x00000000}}, // 6.6x 11g
{0xb189b51f, {0xd0f4ce57, 0xdab147d0, 0xa074dd43, 0xbf611bd7, 0x2a63d331, 0x838fa853, 0x145e39af, 0x00000000}}, // 6.00, 6.20 testing tool
{0xa8adc5c2, {0xc2808a14, 0x0b449fb7, 0x7b2c7edc, 0xa81dc907, 0x99206828, 0xe3a76c7d, 0xa410c092, 0x00000000}}, // 6.39 testing tool
{0xb331d7a6, {0x0163e80e, 0x3175e31e, 0xe5134ea3, 0x03d1bb84, 0x49cd898d, 0x41f3047a, 0x7de563d1, 0x00000000}} // 6.60 testing tool
};
s32 sha256Digest(u8 *data, u32 size, u8 *digest);
void SHA256_Init2(SHA256_CTX *ctx)
{
SHA256_Init(ctx);
if (g_customSha) {
ctx->h[0] = 0xC1059ED8;
ctx->h[1] = 0x367CD507;
ctx->h[2] = 0x3070DD17;
ctx->h[3] = 0xF70E5939;
ctx->h[4] = 0xFFC00B31;
ctx->h[5] = 0x68581511;
ctx->h[6] = 0x64F98FA7;
ctx->h[7] = 0xBEFA4FA4;
}
}
void SHA256_Final2(u8 *digest, SHA256_CTX *ctx)
{
// Custom sha256 is only 7 words of output long, so we need to backup the last word
u8 back[4];
memcpy(back, digest + 28, 4);
SHA256_Final(digest, ctx);
if (g_customSha) {
memcpy(digest + 28, back, 4);
}
}
void sha256hmac(u8 *key, u32 keylen, u8 *data, u32 datalen, u8 *out) // at 0x040F0C08 in 2.60
{
SHA256_CTX ctx; // sp
u8 buf1[32]; // sp + 112 // actually 28 in 3.80+
u8 buf2[64]; // sp + 144
if (datalen == 0 || data == NULL) {
sha256Digest(key, keylen, out);
return;
}
memset(buf2, 0, 64);
if (keylen > 64) {
sha256Digest(key, keylen, buf2);
} else {
memcpy(buf2, key, keylen);
}
for (s32 i = 0; i < 64; i++) {
buf2[i] ^= 0x36; // I_PAD
}
SHA256_Init2(&ctx);
SHA256_Update(&ctx, buf2, 64);
SHA256_Update(&ctx, data, datalen);
SHA256_Final2(buf1, &ctx);
for (s32 i = 0; i < 64; i++) {
buf2[i] ^= 0x6A; // I_PAD ^ O_OPAD
}
SHA256_Init2(&ctx);
SHA256_Update(&ctx, buf2, 64);
SHA256_Update(&ctx, buf1, g_customSha ? 28 : 32);
SHA256_Final2(out, &ctx);
// in 3.30+, here ctx, buf1 and buf2 are memset to 0
}
typedef struct _SceKernelUtilsMt19937Context {
unsigned int count;
unsigned int state[624];
} SceKernelUtilsMt19937Context;
u32 mt19937UInt(SceKernelUtilsMt19937Context *ctx) // at 0x040F1890
{
u32 initCount = ctx->count;
u32 prevState = ctx->state[ctx->count];
u32 curState;
if (ctx->count >= 623) {
// 1938
ctx->count = 0;
} else {
ctx->count++;
}
curState = ctx->state[ctx->count];
// 18C0
u32 x = (prevState & 0x80000000) | (curState & ~0x80000000);
x >>= 1;
u32 z;
if (initCount < 227)
z = ctx->state[initCount + 397];
else
z = ctx->state[initCount - 227];
if ((curState & 1) != 0)
x ^= 0x9908B0DF;
ctx->state[initCount] = x ^ z;
u32 y = prevState ^ (prevState >> 11);
y ^= ((y << 7) & 0x9D2C5680);
y ^= ((y << 15) & 0xEFC60000);
y ^= (y >> 18);
return y;
}
// from uofw, sceKernelUtilsMt19937Init
// used in 3.30+ only
int mt19937Init(SceKernelUtilsMt19937Context *ctx, u32 seed) // at 0x040F1B30
{
ctx->state[0] = seed;
int i;
for (i = 1; i < 624; i++)
ctx->state[i] = (ctx->state[i - 1] ^ (ctx->state[i - 1] >> 30)) * 0x6C078965 + i;
ctx->count = 0;
for (i = 0; i < 624; i++)
mt19937UInt(ctx);
return 0;
}
// Note: this function doesn't respect calling conventions and uses t8, t9, v1, at for the constants
u32 *sfmtShuffle(u32 *outBuf, u32 *inBuf1, u32 *inBuf2, u32 *inBuf3, u32 *inBuf4) // at 0x04003330 for 3.80 part2
{
u32 t0, t1, t2, t3, t4, t5, t6, t7;
t0 = inBuf1[0];
t1 = inBuf1[1];
t2 = inBuf1[2];
t3 = inBuf1[3];
t0 ^= (inBuf1[0] << 8);
t1 ^= ((inBuf1[0] >> 24) & 0xFF) | (inBuf1[1] << 8);
t2 ^= ((inBuf1[1] >> 24) & 0xFF) | (inBuf1[2] << 8);
t3 ^= ((inBuf1[2] >> 24) & 0xFF) | (inBuf1[3] << 8);
t0 ^= (inBuf2[0] >> 11) & 0xDFFFFFEF;
t1 ^= (inBuf2[1] >> 11) & 0xDDFECB7F;
t2 ^= (inBuf2[2] >> 11) & 0xBFFAFFFF;
t3 ^= (inBuf2[3] >> 11) & 0xBFFFFFF6;
t4 = (inBuf3[0] >> 8) | (inBuf3[1] << 24);
t5 = (inBuf3[1] >> 8) | (inBuf3[2] << 24);
t6 = (inBuf3[2] >> 8) | (inBuf3[3] << 24);
t7 = (inBuf3[3] >> 8);
outBuf[0] = t0 ^ t4 ^ (inBuf4[0] << 18);
outBuf[1] = t1 ^ t5 ^ (inBuf4[1] << 18);
outBuf[2] = t2 ^ t6 ^ (inBuf4[2] << 18);
outBuf[3] = t3 ^ t7 ^ (inBuf4[3] << 18);
return outBuf;
}
u32 sfmtUInt(SceKernelUtilsMt19937Context *ctx) // at 0x04003428
{
u32 curCount = ctx->count;
if (curCount++ < 624) {
ctx->count = curCount;
return ctx->state[curCount - 1];
}
// 3488
u32 *state1 = &ctx->state[616];
u32 *state2 = &ctx->state[620];
// 34D8
u32 i = 0;
for (; i < 34; i++) {
u32 *a0 = &ctx->state[i * 4];
u32 *newState = sfmtShuffle(a0, a0, a0 + 488, state1, state2);
state1 = state2;
state2 = newState;
}
// 350C
for (; i < 156; i++) {
u32 *a0 = &ctx->state[i * 4];
u32 *newState = sfmtShuffle(a0, a0, a0 - 136, state1, state2);
state1 = state2;
state2 = newState;
}
/* Unused here (disabled function?)
a0 = ctx;
v1 = a0 & 0x1;
a0 = (a0 & 0xFFFFFFFE) | ((0 << 0) & 0x00000001);
ctx->count = v1 + 1;
*/
ctx->count = 1;
/* Unused (weird here, maybe used by a disabled function?)
if (v1 != 0) {
v1 = ctx->state[1];
}
*/
return ctx->state[0];
}
u32 g_sfmtParity[4] = {1, 0, 0, 0x13C9E684};
void sfmtCertify(SceKernelUtilsMt19937Context *ctx) // at 0x0400378C in 3.80 part2
{
u32 v0 = 0;
// 37A0
for (s32 i = 0; i < 4; i++) {
u32 state = ctx->state[i] & g_sfmtParity[i];
state ^= state >> 16;
state ^= state >> 8;
state ^= state >> 4;
state ^= state >> 2;
state ^= state >> 1;
v0 = (v0 ^ state) & 1;
}
if (v0 != 0)
return;
// 3804
for (s32 i = 0; i < 4; i++) {
u32 state = g_sfmtParity[i];
if (state != 0) {
ctx->state[i] ^= (u32)0x80000000 >> __builtin_clz(state ^ (state - 1));
return;
}
// 3830
}
}
// 3.80+ for part2
// variant of mt19937 (SFMT)
s32 sfmtInit(SceKernelUtilsMt19937Context *ctx, u32 *seed, u32 seedSize) // 0x040038A8 in 3.80 part2
{
u32 *end = &ctx->state[624];
ctx->count = 624;
// 38D8
for (s32 i = 0; i < 624; i++) {
ctx->state[i] = 0x8B8B8B8B;
}
s32 a3 = max(seedSize + 1, 624) - 1;
u32 t0 = 0;
u32 *state1 = &ctx->state[0];
u32 *state2 = &ctx->state[306];
u32 *state3 = &ctx->state[623];
u32 *state4 = &ctx->state[317];
// 3914
for (s32 t1 = -1; t1 < a3; t1++) {
u32 t6 = *state1 ^ *state2 ^ *state3;
t6 = (t6 ^ (t6 >> 27)) * 0x19660D;
*state2 += t6;
if (seed != NULL) {
if (t0 == 0) {
t6 += seedSize;
} else {
t6 += *(seed++);
if (t1 + 1 == seedSize)
seed = NULL;
}
}
// 396C
t6 += t0;
*state4 += t6;
*state1 = t6;
t0 = t0 + 1;
if (t0 >= 624)
t0 = 0;
if (++state1 == end)
state1 = ctx->state;
if (++state2 == end)
state2 = ctx->state;
if (++state3 == end)
state3 = ctx->state;
if (++state4 == end)
state4 = ctx->state;
}
// 39D0
for (s32 i = 0; i < 624; i++) {
u32 t6 = *state1 + *state2 + *state3;
t6 = (t6 ^ (t6 >> 27)) * 0x5D588B65;
*state2 ^= t6;
t6 = t6 - t0;
*state4 ^= t6;
*state1 = t6;
t0 = t0 + 1;
if (t0 >= 624)
t0 = 0;
if (++state1 == end)
state1 = ctx->state;
if (++state2 == end)
state2 = ctx->state;
if (++state3 == end)
state3 = ctx->state;
if (++state4 == end)
state4 = ctx->state;
}
sfmtCertify(ctx);
return 0;
}
void decrypt(void *preipl, u32 preiplSize, void *preiplHmacKey, void *dataHmacKey, void *encryptedImg, s32 encryptedSize) // at 0x040F0D70 in 2.60
{
SceKernelUtilsMt19937Context ctx; // sp..sp+2500
u32 hmac[8]; // sp + 2512
u32 buf1[16]; // sp + 2544
u32 hmac2[8]; // sp + 2608
if (g_usePrecomp) {
memcpy(hmac, g_precompKey.data(), 32);
} else {
sha256hmac((u8*)preiplHmacKey, 64, (u8*)preipl, preiplSize, (u8*)hmac);
if (preipl != NULL && g_debug) {
printf("using hmac = {0x%08x, {", *(u32*)preiplHmacKey);
for (s32 i = 0; i < 8; i++) {
printf("0x%08x", hmac[i]);
if (i < 7) {
printf(", ");
}
}
printf("}}\n");
}
}
ctx.count = 0;
if (g_useSfmt) {
sfmtInit(&ctx, hmac, g_customSha ? 7 : 8);
} else {
// 0DCC
for (s32 i = 0; i < 624; i += 8) {
memcpy(&ctx.state[i], hmac, g_customSha ? 28 : 32);
if (g_customSha) {
ctx.state[i + 7] = 0;
}
}
}
memset(hmac, 0, sizeof(hmac));
if (!g_useSfmt) {
// 0E40
for (s32 i = 0; i < 624; i++) {
mt19937UInt(&ctx);
}
}
u8 *decryptBuf = (u8*)encryptedImg;
// 0E68
for (s32 i = 0; i < encryptedSize; i += g_customSha ? 28 : 32) {
if (g_useSfmt) {
for (s32 j = 0; j < 16; j++) {
buf1[j] = sfmtUInt(&ctx);
}
} else {
// 0E6C
for (s32 i = 0; i < 16; i++) {
buf1[i] = mt19937UInt(&ctx);
}
if (g_emptyRound) {
mt19937UInt(&ctx); // version 3.1x only
}
}
sha256hmac((u8*)dataHmacKey, 64, (u8*)buf1, 64, (u8*)hmac2);
s32 hmacSize = g_customSha ? 28 : 32;
if (i + hmacSize > encryptedSize) {
for (s32 j = 0; i + j < encryptedSize; j++) {
*(decryptBuf++) ^= ((u8*)hmac2)[j];
}
} else {
for (s32 j = 0; j <hmacSize / 4; j++) {
*(u32*)decryptBuf ^= hmac2[j];
decryptBuf += 4;
}
}
}
// in 3.30+, here ctx, buf1 and hmac2 are memset to 0
}
// for 3.30+ part1
void decrypt330(u32 *preipl, u32 preiplSize, void *preiplHmacKey, void *dataHmacKey, void *encryptedImg, s32 encryptedSize, u32 realPreiplSize) // at 0x040F1018 in 3.30 part1
{
u8 buf1[32];
SceKernelUtilsMt19937Context ctx;
u32 buf2[1024];
memset(buf1, 0, 32); // in 3.80+ only
mt19937Init(&ctx, 0xBFC00040);
for (s32 i = 0; i < realPreiplSize / 4; i++) {
buf2[i] = preipl[i] + mt19937UInt(&ctx);
}
sha256hmac(g_newKey, preiplSize, (u8*)buf2, realPreiplSize, buf1);
memset(buf2, 0, 4096);
memset(&ctx, 0, 2500);
// Note the checksum part does not exist for testing tools since it only allows one preipl format (but the XOR doesn't seem to be triggered anyway)
u8 checksum = 0;
for (s32 i = 0; i < 32; i++) {
checksum = (checksum + buf1[i]) & 0xFF;
}
if (g_debug) {
printf("checksum %02x vs %02x\n", g_checksum, checksum);
}
if (g_checksum == checksum) {
for (s32 i = 0; i < 32; i++) {
buf1[i] ^= g_xorKey[i];
}
}
decrypt(buf1, 32, preiplHmacKey, dataHmacKey, encryptedImg, encryptedSize);
}
s32 sha256Digest(u8 *data, u32 size, u8 *digest) // at 0x040F12CC
{
SHA256_CTX ctx;
SHA256_Init2(&ctx);
SHA256_Update(&ctx, data, size);
SHA256_Final2(digest, &ctx);
return 0;
}
int pspDecryptIPL3(const u8* pbIn, u8* pbOut, int cbIn)
{
int ret;
// all together now (pbIn/pbOut must be aligned)
memcpy(pbOut+0x40, pbIn, cbIn);
ret = sceUtilsBufferCopyWithRange(pbOut, cbIn+0x40, pbOut+0x40, cbIn, 1);
if (ret != 0)
{
return 0;
}
ret = *(u32*)&pbIn[0x70]; // true size
return ret;
}
// Decompress/unscramble IPL stages 2 & 3 and kernel keys
int extractIPLStages(u8 *inData, u32 inDataSize, int version, u32 loadAddr, const char *filename, std::string outdir, u8 *preipl_bin, u32 preiplSize, bool verbose, bool keepAll, std::string &logStr)
{
g_debug = verbose;
if (g_debug) {
printf("Version %d\n", version);
}
g_customSha = g_useSfmt = g_emptyRound = g_usePrecomp = 0;
kirk_init();
u8 decBuf[1000000];
u8 outBuf[1000000];
// Values which seem to be constant throughout the IPL versions
u32 img2_addr = 0x04100000;
u32 kernelKeys_addr = 0x040FFF00;
u32 part2LoadAddr = 0x04000000;
std::string szDataPath;
/////////////////////////
// Version < 2.60: no scrambling, just decompress stage2 & decrypt stage3
/////////////////////////
if (version < 260) {
for (u32 off = 0; off < 0x100; off += 4) {
u32 gzip_hi = *(u32*)(inData + off);
u32 gzip_lo = *(u32*)(inData + off + 4);
if (gzip_hi >> 16 == 0x3C06 && gzip_lo >> 16 == 0x24C6) { // lui $a2, x & addiu $a2, $a2, x
u32 gzip_addr = (gzip_hi << 16) + (s16)(gzip_lo & 0xFFFF);
if (g_debug) {
printf("Decompressing zip at %08x\n", gzip_addr);
}
u32 realInSize;
int decSize = gunzip((u8*)inData+gzip_addr-loadAddr, 0xE0000, decBuf, sizeof(decBuf), &realInSize);
if (decSize < 0) {
printf("Failed decompressing stage2!\n");
return 1;
}
if (g_debug) {
printf("decompressed %d bytes\n", decSize);
}
if (keepAll) {
szDataPath = outdir + "/stage2_" + std::string(filename) + ".gz" ;
WriteFile(szDataPath.c_str(), (u8*)inData+gzip_addr-loadAddr, realInSize);
}
szDataPath = outdir + "/stage2_" + std::string(filename);
WriteFile(szDataPath.c_str(), decBuf, decSize);
logStr += ",stage2 decompressed";
decSize = pspDecryptIPL3((u8*)inData+img2_addr-loadAddr, outBuf, inDataSize - (img2_addr-loadAddr));
if (!decSize) {
printf("Failed decrypting stage3!\n");
} else {
logStr += ",stage3 decrypted";
szDataPath = outdir + "/stage3_" + std::string(filename);
WriteFile(szDataPath.c_str(), outBuf, decSize);
if (g_debug) {
printf("decrypted %d bytes\n", decSize);
}
}
return 0;
}
}
printf("stage2 not found!?");
return 1;
}
/////////////////////////
// Get the main keys used for unscrambling
/////////////////////////
u32 key1_off = 0, key2_off = 0, img_off = 0, img_size = 0;
// scan the binary for offsets
for (u32 off = 0; off < 0x100; off += 4) {
u32 curInstr = *(u32*)(inData + off);
if (curInstr >> 16 == 0x3C06) { // lui $a2, x
key1_off = curInstr << 16;
}
if (curInstr >> 16 == 0x24C6) { // addiu $a2, $a2, x
key1_off += (s16)(curInstr & 0xFFFF);
}
if (curInstr >> 16 == 0x3C07) { // lui $a3, x
key2_off = curInstr << 16;
}
if (curInstr >> 16 == 0x24E7) { // addiu $a3, $a3, x
key2_off += (s16)(curInstr & 0xFFFF);
}
if (curInstr >> 16 == 0x3C08) { // lui $t0, x
img_off = curInstr << 16;
}
if (curInstr >> 16 == 0x2508) { // addiu $t0, $t0, x
img_off += (s16)(curInstr & 0xFFFF);
}
if (curInstr >> 16 == 0x3C09) { // lui $t1, x
img_size = curInstr << 16;
}
if (curInstr >> 16 == 0x2529) { // addiu $t1, $t1, x
img_size += (s16)(curInstr & 0xFFFF);
}
if (curInstr >> 26 == 0x03) { // jal
break;
}
}
if (version >= 310) {
g_emptyRound = 1;
}
if (version >= 380) {
g_customSha = 1;
}
if (version >= 505) {
g_useSfmt = 1;
}
if (g_debug) {
printf("keys at %08x, %08x, img at %08x, size %08x\n", key1_off, key2_off, img_off, img_size);
}
if (key1_off == 0 || key2_off == 0 || img_off == 0 || img_size == 0) {
printf("One offset or size is not found, abort!\n");
return 1;
}
/////////////////////////
// Additional key/xor key/checksum for 3.30+ (for handling other pre-ipls?)
/////////////////////////
if (version >= 330) {
for (u32 off = 0; off < img_off; off += 4) {
u32 curInstr = *(u32*)(inData + off);
if (curInstr == 0x27BDE5D0) { // addiu $sp, $sp, -6704
u32 loadInstr_hi = 0, loadInstr_lo = 0;
for (u32 off2 = off; off2 < off + 0x100; off2 += 4) {
u32 curInstr2 = *(u32*)(inData + off2);
if (curInstr2 >> 16 == 0x3C07) { // lui $a3, x
loadInstr_hi = curInstr2;
}
if (curInstr2 >> 16 == 0x24E4) { // addiu $a0, $a3, x
loadInstr_lo = curInstr2;
}
}
if (loadInstr_hi == 0 || loadInstr_lo == 0) {
printf("Couldn't find key part2 for 3.30+\n");
return 1;
}
s16 addrLo = loadInstr_lo & 0xFFFF;
u32 addr = (loadInstr_hi << 16) + addrLo;
g_newKey = (u8*)inData+addr-loadAddr;
g_xorKey = (u8*)inData+addr-loadAddr+0x300;
g_checksum = inData[addr-loadAddr+0x320];
if (g_debug) {
printf("key2 is %08x, %08x, %02x\n", addr, addr+0x300, g_checksum);
}
break;
}
}
}
/////////////////////////
// Do the actual decryption & decompression of stage2
/////////////////////////
u32 key_idx = *(u32*)(inData+key1_off-loadAddr);
auto precompKeyIt = g_keys.find(key_idx);
if (precompKeyIt != g_keys.end()) {
if (g_debug) {
printf("found key %08x %08x...\n", precompKeyIt->second[0], precompKeyIt->second[1]);
}
g_usePrecomp = 1;
g_precompKey = precompKeyIt->second;
decrypt(NULL, 0, inData+key1_off-loadAddr, inData+key2_off-loadAddr, inData+img_off-loadAddr, img_size); // decrypt function
} else {
if (preipl_bin != nullptr) {
if (version >= 330) {
decrypt330((u32*)preipl_bin, 640, inData+key1_off-loadAddr, inData+key2_off-loadAddr, inData+img_off-loadAddr, img_size, preiplSize); // decrypt function // 3.30+
} else {
decrypt(preipl_bin + 0x40, 640, inData+key1_off-loadAddr, inData+key2_off-loadAddr, inData+img_off-loadAddr, img_size); // decrypt function
}
} else {
if (g_debug) {
printf("No preipl provided and key not found, aborting\n");
}
logStr += ",no key found";
return 1;
}
}
g_usePrecomp = 0;
u32 realInSize;
int decSize = gunzip((u8*)inData+img_off-loadAddr, 0xE0000, decBuf, sizeof(decBuf), &realInSize);
if (decSize < 0) {
printf("Failed unscrambling or decompressing stage2!\n");
return 1;
}
if (g_debug) {
printf("decompressed %d bytes\n", decSize);
}
if (keepAll) {
szDataPath = outdir + "/stage2_" + std::string(filename) + ".gz";
WriteFile(szDataPath.c_str(), (u8*)inData+img_off-loadAddr, realInSize);
}
szDataPath = outdir + "/stage2_" + std::string(filename);
WriteFile(szDataPath.c_str(), decBuf, decSize);
logStr += ",stage2 unscrambled & decompressed";
// New: Added handling for xor syscon step for keys
// Super fun happy time
// final missing peice :)
u8 scidx[0x10];
u8 stage2xor[0x10];
u8 scxor[0x10];
int model = ((filename[8] - 0x30) * 10) + (filename[9] - 0x30);
int xkeyoff =findStage2Keys(decBuf,decSize);
if(xkeyoff>0) {
memcpy(scidx,&decBuf[xkeyoff], 0x10);
if((version>505) && (model > 1)) {
memcpy(stage2xor,&decBuf[xkeyoff+0x10], 0x10);
} else {
memset(stage2xor,0,0x10);
}
getSysconIPLKey(model, scidx,scxor);
for(int j=0;j<0x10;j++) scxor[j] ^= stage2xor[j];
} else{
memset(scxor,0,0x10);
}
/////////////////////////
// Find keys used for stage3 unscrambling (they're in stage2)
/////////////////////////
u32 key3_addr, key4_addr, img2_size;
if (version < 280) {
u32 load1_hi = *(u32*)(decBuf + 0x000C); // lui $v0, x
u32 load1_lo = *(u32*)(decBuf + 0x0018); // addiu $a2, $v0, x
u32 load2_hi = *(u32*)(decBuf + 0x001C); // lui $v0, x
u32 load2_lo = *(u32*)(decBuf + 0x0040); // addiu $a3, $v0, x
u32 load_size = *(u32*)(decBuf + 0x0028); // li $t1, x
if (load1_hi >> 16 == 0x3C02 && load1_lo >> 16 == 0x2446 &&
load2_hi >> 16 == 0x3C02 && load2_lo >> 16 == 0x2447 &&
load_size >> 16 == 0x3409) {
key3_addr = (load1_hi << 16) + (s16)(load1_lo & 0xFFFF);
key4_addr = (load2_hi << 16) + (s16)(load2_lo & 0xFFFF);
img2_size = load_size & 0xFFFF;
} else {
printf("Key2 not found!?\n");
return 1;
}
} else {
bool found = false;
for (u32 off = 0; off < 0x400; off += 4) {
u32 load1_hi = *(u32*)(decBuf + off + 0x0C); // lui $v0, x
u32 load1_lo = *(u32*)(decBuf + off + 0x1C); // addiu $s0, $v0, x
u32 load2_hi = *(u32*)(decBuf + off + 0x08); // lui $v1, x
u32 load2_lo = *(u32*)(decBuf + off + 0x14); // addiu $s1, $v1, x
u32 load_size = *(u32*)(decBuf + off + 0x28); // li $t1, x
if (load1_hi >> 16 == 0x3C02 && load1_lo >> 16 == 0x2450 &&
load2_hi >> 16 == 0x3C03 && load2_lo >> 16 == 0x2471 &&
load_size >> 16 == 0x3409) {
key3_addr = (load1_hi << 16) + (s16)(load1_lo & 0xFFFF);
key4_addr = (load2_hi << 16) + (s16)(load2_lo & 0xFFFF);
img2_size = load_size & 0xFFFF;
found = true;
break;
}
load1_hi = *(u32*)(decBuf + off + 0x10);
load1_lo = *(u32*)(decBuf + off + 0x18);
load2_hi = *(u32*)(decBuf + off + 0x04);
load2_lo = *(u32*)(decBuf + off + 0x0C);
load_size = *(u32*)(decBuf + off + 0x24);
if (load1_hi >> 16 == 0x3C02 && load1_lo >> 16 == 0x2450 &&
load2_hi >> 16 == 0x3C02 && load2_lo >> 16 == 0x2451 &&
load_size >> 16 == 0x3409) {
key3_addr = (load1_hi << 16) + (s16)(load1_lo & 0xFFFF);
key4_addr = (load2_hi << 16) + (s16)(load2_lo & 0xFFFF);
img2_size = load_size & 0xFFFF;
found = true;
break;
}
}
if (!found) {
printf("Unsupported version!\n");
return 1;
}
}
if (g_debug) {
printf("part2 key offs %08x, %08x, size %08x, img2 at %08x\n", key3_addr, key4_addr, img2_size, img2_addr);
}
/////////////////////////
// Find the keys used for kernel keys decryption (used by memlmd)
/////////////////////////
u32 key5_addr = 0, key6_addr = 0;
if (version >= 330) {
u32 load1_hi = *(u32*)(decBuf + 0x18);
u32 load1_lo = *(u32*)(decBuf + 0x20);
u32 load2_hi = *(u32*)(decBuf + 0x0c);
u32 load2_lo = *(u32*)(decBuf + 0x14);
if (load1_hi >> 16 == 0x3C02 && load1_lo >> 16 == 0x2450 &&
load2_hi >> 16 == 0x3C02 && load2_lo >> 16 == 0x2451) {
key5_addr = (load1_hi << 16) + (s16)(load1_lo & 0xFFFF);
key6_addr = (load2_hi << 16) + (s16)(load2_lo & 0xFFFF);
}
}
/////////////////////////
// Decrypt the kernel keys
/////////////////////////
g_customSha = 0;
if (version >= 380) {
g_useSfmt = 1;
}
if (key5_addr != 0 && key6_addr != 0) {
if (g_debug) {
printf("decrypting kernel key at %08x using keys at %08x, %08x\n", kernelKeys_addr, key5_addr, key6_addr);
}
decrypt(NULL, 0, decBuf+key5_addr-part2LoadAddr, decBuf+key6_addr-part2LoadAddr, inData+kernelKeys_addr-loadAddr, 256);
decSize = pspDecryptIPL3((u8*)inData+kernelKeys_addr-loadAddr, outBuf, 256);
if (!decSize) {
printf("Failed decrypting kernel keys!\n");
} else {
logStr += ",kernel keys decrypted";
szDataPath = outdir + "/kkeys_" + std::string(filename);
// Added the final xor to create to correct second key
for(int j=0;j<0x10;j++) outBuf[j+0x10] ^= scxor[j];
WriteFile(szDataPath.c_str(), outBuf, decSize);
}
}
/////////////////////////
// Decrypt, and possibly decompress stage3
/////////////////////////
decrypt(NULL, 0, decBuf+key3_addr-part2LoadAddr, decBuf+key4_addr-part2LoadAddr, inData+img2_addr-loadAddr, img2_size);
decSize = pspDecryptIPL3((u8*)inData+img2_addr-loadAddr, outBuf, inDataSize - (img2_addr-loadAddr));
if (!decSize) {
printf("Failed decrypting stage3!\n");
} else {
if (g_debug) {
printf("decrypted %d bytes\n", decSize);
}
if (outBuf[0] == 0x1f && outBuf[1] == 0x8b) {
u32 realInSize;
int decompSize = gunzip(outBuf, decSize, decBuf, sizeof(decBuf), &realInSize);
if (decompSize < 0) {
printf("Failed decompressing stage3!\n");
return 1;
}
if (g_debug) {
printf("decompressed %d bytes\n", decompSize);
}
if (keepAll) {
szDataPath = outdir + "/stage3_" + std::string(filename)+ ".gz";
WriteFile(szDataPath.c_str(), outBuf, realInSize);
}
szDataPath = outdir + "/stage3_" + std::string(filename);
WriteFile(szDataPath.c_str(), decBuf, decompSize);
logStr += ",stage3 decrypted & decompressed";
} else {
logStr += ",stage3 decrypted";
szDataPath = outdir + "/stage3_" + std::string(filename);
WriteFile(szDataPath.c_str(), outBuf, decSize);
}
}
return 0;
}