-
-
Notifications
You must be signed in to change notification settings - Fork 385
/
qc_diag.py
executable file
·1502 lines (1377 loc) · 63.1 KB
/
qc_diag.py
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# (c) B.Kerler 2018-2024 under GPLv3 license
# If you use my code, make sure you refer to my name
#
# !!!!! If you use this code in commercial products, your product is automatically
# GPLv3 and has to be open sourced under GPLv3 as well. !!!!!
import inspect
import argparse
import json
import logging
from xml.etree import ElementTree
from enum import Enum
from struct import unpack, pack
from binascii import hexlify, unhexlify
import os, sys
current_dir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
parent_dir = os.path.dirname(os.path.dirname(current_dir))
sys.path.insert(0, parent_dir)
try:
from Library.utils import print_progress, read_object, write_object, LogBase
from Library.Connection.usblib import usb_class
from Library.Connection.seriallib import serial_class
from Library.hdlc import hdlc
from Config.usb_ids import default_diag_vid_pid
except:
from edlclient.Library.utils import print_progress, read_object, write_object, LogBase
from edlclient.Library.Connection.usblib import usb_class
from edlclient.Library.Connection.seriallib import serial_class
from edlclient.Library.hdlc import hdlc
from edlclient.Config.usb_ids import default_diag_vid_pid
qcerror = {
1: "None",
2: "Unknown",
3: "Open Port Fail",
4: "Port not open",
5: "Buffer too small",
6: "Read data fail",
7: "Open file fail",
8: "File not open",
9: "Invalid parameter",
10: "Send write ram failed",
11: "Send command failed",
12: "Offline phone failed",
13: "Erase rom failed",
14: "Timeout",
15: "Go cmd failed",
16: "Set baudrate failed",
17: "Say hello failed",
18: "Write port failed",
19: "Failed to read nv",
20: "Failed to write nv",
21: "Last failed but not recovery",
22: "Backup file wasn't found",
23: "Incorrect SPC Code",
24: "Hello pkt isn't needed",
25: "Not active"
}
diagerror = {
20: "Generic error",
21: "Bad argument",
22: "Data too large",
24: "Not connected",
25: "Send pkt failed",
26: "Receive pkt failed",
27: "Extract pkt failed",
29: "Open port failed",
30: "Bad command",
31: "Protected",
32: "No media",
33: "Empty",
34: "List done"
}
nvitem_type = [
("item", "H"),
("rawdata", "128s"),
("status", "H")
]
subnvitem_type = [
("item", "H"),
("index", "H"),
("rawdata", "128s"),
("status", "H")
]
class fs_factimage_read_info:
def_fs_factimage_read_info = [
("stream_state", "B"), # 0 indicates no more data to be sent, otherwise set to 1
("info_cluster_sent", "B"), # 0 indicates if info_cluster was not sent, else 1
("cluster_map_seqno", "H"), # Sequence number of cluster map pages
("cluster_data_seqno", "I") # Sequence number of cluster data pages
]
def __init__(self, stream_state, info_cluster_sent, cluster_map_seqno, cluster_data_seqno):
self.stream_state = stream_state
self.info_cluster_sent = info_cluster_sent
self.cluster_map_seqno = cluster_map_seqno
self.cluster_data_seqno = cluster_data_seqno
def fromdata(self, data):
tmp = read_object(data[0:0x10], self.def_fs_factimage_read_info)
self.stream_state = tmp["stream_state"]
self.info_cluster_sent = tmp["info_cluster_sent"]
self.cluster_map_seqno = tmp["cluster_map_seqno"]
self.cluster_data_seqno = tmp["cluster_data_seqno"]
def todata(self):
data = write_object(self.def_fs_factimage_read_info, self.stream_state, self.info_cluster_sent,
self.cluster_map_seqno, self.cluster_data_seqno)
return data
class FactoryHeader:
def_factory_header = [
("magic1", "I"),
("magic2", "I"),
("fact_version", "H"), # Version of this cluster
# #Fields needed for the superblock
("version", "H"), # Superblock version
("block_size", "I"), # Pages per block.
("page_size", "I"), # Page size in bytes.
("block_count", "I"), # Total blocks in device.
("space_limit", "I"), # Total number of used pages (defines the size of the map)
("upper_data", "32I")
]
def __init__(self):
self.magic1 = 0
self.magic2 = 0
self.fact_version = 0
self.version = 0
self.block_size = 0
self.page_size = 0
self.block_count = 0
self.space_limit = 0
self.upper_data = [0 * 32]
def fromdata(self, data):
tmp = read_object(data[0:0x9C], self.def_factory_header)
self.magic1 = tmp["magic1"]
self.magic2 = tmp["magic2"]
self.fact_version = tmp["fact_version"]
self.version = tmp["version"]
self.block_size = tmp["block_size"]
self.page_size = tmp["page_size"]
self.block_count = tmp["block_count"]
self.space_limit = tmp["space_limit"]
self.upper_data = tmp["upper_data"]
def todata(self):
data = write_object(self.magic1, self.magic2, self.fact_version, self.version, self.block_size, self.page_size,
self.block_count, self.space_limit, self.upper_data)
return data
class nvitem:
item = 0x0
data = b""
status = 0x0
index = 0x0
name = ""
def __init__(self, item, index, data, status, name):
self.item = item
self.index = index
self.data = data
self.status = status
self.name = name
class diag_cmds(Enum):
DIAG_VERNO_F = 0
DIAG_ESN_F = 1
DIAG_PEEKB_F = 2
DIAG_PEEKW_F = 3
DIAG_PEEKD_F = 4
DIAG_POKEB_F = 5
DIAG_POKEW_F = 6
DIAG_POKED_F = 7
DIAG_OUTP_F = 8
DIAG_OUTPW_F = 9
DIAG_INP_F = 0xA
DIAG_INPW_F = 0xB
DIAG_STATUS_F = 0xC
DIAG_LOGMASK_F = 0xF
DIAG_LOG_F = 0x10
DIAG_NV_PEEK_F = 0x11
DIAG_NV_POKE_F = 0x12
DIAG_BAD_CMD_F = 0x13
DIAG_BAD_PARM_F = 0x14
DIAG_BAD_LEN_F = 0x15
DIAG_BAD_MODE_F = 0x18
DIAG_TAGRAPH_F = 0x19
DIAG_MARKOV_F = 0x1a
DIAG_MARKOV_RESET_F = 0x1b
DIAG_DIAG_VER_F = 0x1c
DIAG_TS_F = 0x1d
DIAG_TA_PARM_F = 0x1E
DIAG_MSG_F = 0x1f
DIAG_HS_KEY_F = 0x20
DIAG_HS_LOCK_F = 0x21
DIAG_HS_SCREEN_F = 0x22
DIAG_PARM_SET_F = 0x24
DIAG_NV_READ_F = 0x26
DIAG_NV_WRITE_F = 0x27
DIAG_CONTROL_F = 0x29
DIAG_ERR_READ_F = 0x2a
DIAG_ERR_CLEAR_F = 0x2b
DIAG_SER_RESET_F = 0x2c
DIAG_SER_REPORT_F = 0x2d
DIAG_TEST_F = 0x2e
DIAG_GET_DIPSW_F = 0x2f
DIAG_SET_DIPSW_F = 0x30
DIAG_VOC_PCM_LB_F = 0x31
DIAG_VOC_PKT_LB_F = 0x32
DIAG_ORIG_F = 0x35
DIAG_END_F = 0x36
DIAG_SW_VERSION_F = 0x38
DIAG_DLOAD_F = 0x3a
DIAG_TMOB_F = 0x3b
DIAG_STATE_F = 0x3f
DIAG_PILOT_SETS_F = 0x40
DIAG_SPC_F = 0x41
DIAG_BAD_SPC_MODE_F = 0x42
DIAG_PARM_GET2_F = 0x43
DIAG_SERIAL_CHG_F = 0x44
DIAG_PASSWORD_F = 0x46
DIAG_BAD_SEC_MODE_F = 0x47
DIAG_PR_LIST_WR_F = 0x48
DIAG_PR_LIST_RD_F = 0x49
DIAG_SUBSYS_CMD_F = 0x4b
DIAG_FEATURE_QUERY_F = 0x51
DIAG_SMS_READ_F = 0x53
DIAG_SMS_WRITE_F = 0x54
DIAG_SUP_FER_F = 0x55
DIAG_SUP_WALSH_CODES_F = 0x56
DIAG_SET_MAX_SUP_CH_F = 0x57
DIAG_PARM_GET_IS95B_F = 0x58
DIAG_FS_OP_F = 0x59
# DIAG_RAM_RW_F = 0x59
DIAG_AKEY_VERIFY_F = 0x5A
# DIAG_CPU_RW_F = 0x5a
DIAG_BMP_HS_SCREEN_F = 0x5b
DIAG_CONFIG_COMM_F = 0x5c
DIAG_EXT_LOGMASK_F = 0x5d
DIAG_EVENT_REPORT_F = 0x60
DIAG_STREAMING_CONFIG_F = 0x61
DIAG_PARM_RETRIEVE_F = 0x62
DIAG_STATUS_SNAPSHOT_F = 0x63
DIAG_RPC_F = 0x64
DIAG_GET_PROPERTY_F = 0x65
DIAG_PUT_PROPERTY_F = 0x66
DIAG_GET_GUID_F = 0x67
DIAG_USER_CMD_F = 0x68
DIAG_GET_PERM_PROPERTY_F = 0x69
DIAG_PUT_PERM_PROPERTY_F = 0x6a
DIAG_PERM_USER_CMD_F = 0x6b
DIAG_GPS_SESS_CTRL_F = 0x6c
DIAG_GPS_GRID_F = 0x6d
DIAG_GPS_STATISTICS_F = 0x6E
DIAG_TUNNEL_F = 0x6f
DIAG_MAX_F = 0x70
DIAG_SET_FTM_TEST_MODE = 0x72
DIAG_EXT_BUILD_ID_F = 0x7c
class efs_cmds(Enum):
EFS2_DIAG_HELLO = 0 # Parameter negotiation packet
EFS2_DIAG_QUERY = 1 # Send information about EFS2 params
EFS2_DIAG_OPEN = 2 # Open a file
EFS2_DIAG_CLOSE = 3 # Close a file
EFS2_DIAG_READ = 4 # Read a file
EFS2_DIAG_WRITE = 5 # Write a file
EFS2_DIAG_SYMLINK = 6 # Create a symbolic link
EFS2_DIAG_READLINK = 7 # Read a symbolic link
EFS2_DIAG_UNLINK = 8 # Remove a symbolic link or file
EFS2_DIAG_MKDIR = 9 # Create a directory
EFS2_DIAG_RMDIR = 10 # Remove a directory
EFS2_DIAG_OPENDIR = 11 # Open a directory for reading
EFS2_DIAG_READDIR = 12 # Read a directory
EFS2_DIAG_CLOSEDIR = 13 # Close an open directory
EFS2_DIAG_RENAME = 14 # Rename a file or directory
EFS2_DIAG_STAT = 15 # Obtain information about a named file
EFS2_DIAG_LSTAT = 16 # Obtain information about a symbolic link
EFS2_DIAG_FSTAT = 17 # Obtain information about a file descriptor
EFS2_DIAG_CHMOD = 18 # Change file permissions
EFS2_DIAG_STATFS = 19 # Obtain file system information
EFS2_DIAG_ACCESS = 20 # Check a named file for accessibility
EFS2_DIAG_NAND_DEV_INFO = 21 # Get NAND device info
EFS2_DIAG_FACT_IMAGE_START = 22 # Start data output for Factory Image
EFS2_DIAG_FACT_IMAGE_READ = 23 # Get data for Factory Image
EFS2_DIAG_FACT_IMAGE_END = 24 # End data output for Factory Image
EFS2_DIAG_PREP_FACT_IMAGE = 25 # Prepare file system for image dump
EFS2_DIAG_PUT_DEPRECATED = 26 # Write an EFS item file
EFS2_DIAG_GET_DEPRECATED = 27 # Read an EFS item file
EFS2_DIAG_ERROR = 28 # Send an EFS Error Packet back through DIAG
EFS2_DIAG_EXTENDED_INFO = 29 # Get Extra information.
EFS2_DIAG_CHOWN = 30 # Change ownership
EFS2_DIAG_BENCHMARK_START_TEST = 31 # Start Benchmark
EFS2_DIAG_BENCHMARK_GET_RESULTS = 32 # Get Benchmark Report
EFS2_DIAG_BENCHMARK_INIT = 33 # Init/Reset Benchmark
EFS2_DIAG_SET_RESERVATION = 34 # Set group reservation
EFS2_DIAG_SET_QUOTA = 35 # Set group quota
EFS2_DIAG_GET_GROUP_INFO = 36 # Retrieve Q&R values
EFS2_DIAG_DELTREE = 37 # Delete a Directory Tree
EFS2_DIAG_PUT = 38 # Write a EFS item file in order
EFS2_DIAG_GET = 39 # Read a EFS item file in order
EFS2_DIAG_TRUNCATE = 40 # Truncate a file by the name
EFS2_DIAG_FTRUNCATE = 41 # Truncate a file by a descriptor
EFS2_DIAG_STATVFS_V2 = 42 # Obtains extensive file system info
O_RDONLY = 0
O_WRONLY = 1
O_RDWR = 2
O_ACCMODE = O_RDONLY | O_WRONLY | O_RDWR
FS_DIAG_MAX_READ_REQ = 1024
# define DIAG_NV_WRITE_F 0x27
# define DIAG_NV_READ_F 0x26
class qcdiag(metaclass=LogBase):
def __init__(self, loglevel, portconfig, ep_in=-1, ep_out=-1):
self.portconfig = portconfig
self.nvlist = {}
self.ep_in = ep_in
self.ep_out = ep_out
self.__logger.setLevel(loglevel)
self.portname = ""
if loglevel == logging.DEBUG:
logfilename = "log.txt"
fh = logging.FileHandler(logfilename)
self.__logger.addHandler(fh)
import os, inspect
current_dir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
try:
parent_dir = os.path.dirname(os.path.dirname(current_dir))
nvxml = os.path.join(parent_dir, "edlclient", "Config", "nvitems.xml")
e = ElementTree.parse(nvxml).getroot()
except:
current_dir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
nvxml = os.path.join(current_dir, "edlclient", "Config", "nvitems.xml")
e = ElementTree.parse(nvxml).getroot()
for atype in e.findall("nv"):
name = atype.get("name")
identifier = int(atype.get("id"))
self.nvlist[identifier] = name
def prettyprint(self, data):
recv = ""
plain = ""
if len(data) == 0:
return ""
for i in range(len(data)):
inf = "%02X " % data[i]
recv += inf
if data[i] == 0x0D or data[i] == 0x0A or (0x20 <= data[i] <= 0x9A):
plain += chr(data[i])
else:
plain += " "
if ((i + 1) % 16) == 0:
recv += "\n"
plain += "\n"
res = recv + "\n-----------------------------------------------\n"
if len(plain.replace(" ", "").replace("\n", "")) > 0:
res += plain
return res
def decodestatus(self, data):
info = data[0]
if info == 0x13:
return "Invalid Command Response"
elif info == 0x14:
return "Invalid parameter Response"
elif info == 0x15:
return "Invalid packet length Response"
elif info == 0x17:
return "Send Security Mode"
elif info == 0x18:
return "Packet not allowed in this mode ( online vs offline )"
elif info == 0x42:
return "Invalid nv_read/write because SP is locked"
elif info == diag_cmds.DIAG_BAD_SEC_MODE_F.value:
return "Security privileges required"
else:
return "Command accepted"
def connect(self, serial: bool = False):
if serial:
self.cdc = serial_class(loglevel=self.__logger.level, portconfig=self.portconfig)
else:
self.cdc = usb_class(portconfig=self.portconfig, loglevel=self.__logger.level)
self.hdlc = None
if self.cdc.connect(self.ep_in, self.ep_out, self.portname):
self.hdlc = hdlc(self.cdc)
data = self.hdlc.receive_reply(timeout=0)
return True
return False
def disconnect(self):
self.cdc.close(True)
def send(self, cmd):
if self.hdlc is not None:
return self.hdlc.send_cmd_np(cmd)
def cmd_info(self):
reply = self.send(b"\x00")
return self.prettyprint(reply)
def enforce_crash(self):
# ./diag.py -nvwrite 1027,01 enable adsp log NV_MDSP_MEM_DUMP_ENABLED_I
# ./diag.py -nvwrite 4399,01 enable download on reboot NV_DETECT_HW_RESET_I
res = self.send(b"\x4B\x25\x03\x00")
print(self.decodestatus(res))
def enter_downloadmode(self):
res = self.send(b"\x3A")
print(self.decodestatus(res))
def enter_saharamode(self):
self.hdlc.receive_reply(timeout=0)
res = self.send(b"\x4b\x65\x01\x00")
if res[0] == 0x4b:
print("Done, switched to edl")
else:
print("Error switching to edl. Try again.")
self.disconnect()
def send_sp(self, sp="FFFFFFFFFFFFFFFFFFFE"):
if type(sp) == str:
sp = unhexlify(sp)
else:
sp = bytes(sp)
if len(sp) < 8:
print("SP length must be 8 bytes")
return
res = self.send(b"\x46" + sp)
if res[0] != 0x46:
res = self.send(b"\x25" + sp)
elif res[0] == 0x46:
if res[1] == 0x0:
print("Security Password is wrong")
elif res[1] == 0x1:
print("Security Password accepted.")
elif res[0] != 0x25:
print(self.decodestatus(res))
return res
def send_spc(self, spc="303030303030"):
if type(spc) == str:
spc = unhexlify(spc)
else:
spc = bytes(spc)
if len(spc) < 6:
print("SPC length must be 6 bytes")
return
res = self.send(b"\x41" + spc)
if res[0] != 0x41:
print(self.decodestatus(res))
else:
if res[1] == 0x0:
print("SPC is wrong")
elif res[1] == 0x1:
print("SPC accepted.")
return res
def DecodeNVItems(self, nvitem):
if nvitem.status == 0x1:
return "Internal DMSS use"
elif nvitem.status == 0x2:
return "Unrecognized command"
elif nvitem.status == 0x3:
return "NV memory full"
elif nvitem.status == 0x4:
return "Command failed"
elif nvitem.status == 0x5:
return "Inactive Item"
elif nvitem.status == 0x6:
return "Bad Parameter"
elif nvitem.status == 0x7:
return "Item was read-only"
elif nvitem.status == 0x8:
return "Item not defined for this target"
elif nvitem.status == 0x9:
return "No more free memory"
elif nvitem.status == 0xA:
return "Internal use"
elif nvitem.status == 0x0:
return "OK"
return ""
def print_nvitem(self, item):
res, nvitem = self.read_nvitem(item)
if res:
info = self.DecodeNVItems(nvitem)
if res:
if nvitem.name != "":
ItemNumber = f"{hex(item)} ({nvitem.name}): "
else:
ItemNumber = hex(item) + ": "
returnanswer = "NVItem " + ItemNumber + info
print(returnanswer)
if nvitem.status == 0:
print("-----------------------------------------")
print(self.prettyprint(nvitem.data))
else:
print(nvitem)
else:
print(nvitem)
def print_nvitemsub(self, item, index):
res, nvitem = self.read_nvitemsub(item, index)
info = self.DecodeNVItems(nvitem)
if res:
if nvitem.name != "":
ItemNumber = f"{hex(item), hex(index)} ({nvitem.name}): "
else:
ItemNumber = hex(item) + "," + hex(index) + ": "
returnanswer = "NVItem " + ItemNumber + info
print(returnanswer)
if nvitem.status == 0:
print("-----------------------------------------")
print(self.prettyprint(nvitem.data))
else:
print(nvitem)
def backup_nvitems(self, filename, errorlog=""):
nvitems = []
pos = 0
old = 0
errors = ""
print("Dumping nvitems 0x0 to 0xFFFF.")
for item in range(0, 0xFFFF):
prog = int(float(pos) / float(0xFFFF) * float(100))
if prog > old:
print_progress(prog, 100, prefix="Progress:", suffix=f"Complete, item {hex(item)}", bar_length=50)
old = prog
res, nvitem = self.read_nvitem(item)
if res:
if nvitem.status != 0x5:
nvitem.status = self.DecodeNVItems(nvitem)
nvitems.append(dict(id=nvitem.item, name=nvitem.name, data=hexlify(nvitem.data).decode("utf-8"),
status=nvitem.status))
else:
errors += nvitem + "\n"
pos += 1
js = json.dumps(nvitems)
with open(filename, "w") as write_handle:
write_handle.write(js)
if errorlog == "":
print(errors)
else:
with open(errorlog, "w") as write_handle:
write_handle.write(errors)
print("Done.")
def unpackdata(self, data):
rlen = len(data)
idx = rlen - 1
for i in range(0, rlen):
byte = data[rlen - i - 1]
if byte != 0:
break
idx = rlen - i - 1
return data[:idx]
def read_nvitem(self, item):
rawdata = 128 * b"\x00"
status = 0x0000
nvrequest = b"\x26" + write_object(nvitem_type, item, rawdata, status)["raw_data"]
data = self.send(nvrequest)
if len(data) == 0:
data = self.send(nvrequest)
if len(data) > 0:
if data[0] == 0x26:
res = read_object(data[1:], nvitem_type)
name = ""
if item in self.nvlist:
name = self.nvlist[item]
data = self.unpackdata(res["rawdata"])
res = nvitem(res["item"], 0, data, res["status"], name)
return [True, res]
elif data[0] == 0x14:
return [False, f"Error 0x14 trying to read nvitem {hex(item)}."]
else:
return [False, f"Error {hex(data[0])} trying to read nvitem {hex(item)}."]
return [False, f"Empty request for nvitem {hex(item)}"]
def read_nvitemsub(self, item, index):
rawdata = 128 * b"\x00"
status = 0x0000
nvrequest = b"\x4B\x30\x01\x00" + write_object(subnvitem_type, item, index, rawdata, status)["raw_data"]
data = self.send(nvrequest)
if len(data) == 0:
data = self.send(nvrequest)
if len(data) > 0:
if data[0] == 0x4B:
res = read_object(data[4:], subnvitem_type)
name = ""
if item in self.nvlist:
name = self.nvlist[item]
data = self.unpackdata(res["rawdata"])
res = nvitem(res["item"], index, data, res["status"], name)
return [True, res]
elif data[0] == 0x14:
return [False, f"Error 0x14 trying to read nvitem {hex(item)}."]
else:
return [False, f"Error {hex(data[0])} trying to read nvitem {hex(item)}."]
return [False, f"Empty request for nvitem {hex(item)}"]
def convertimei(self, imei):
data = imei[0] + "A"
for i in range(1, len(imei), 2):
data += imei[i + 1]
data += imei[i]
return unhexlify("08" + data)
def write_imei(self, imeis):
if "," in imeis:
imeis = imeis.split(",")
else:
imeis = [imeis]
index = 0
for imei in imeis:
data = self.convertimei(imei)
if index == 0:
if not self.write_nvitem(550, data):
self.write_nvitemsub(550, index, data)
else:
self.write_nvitemsub(550, index, data)
index += 1
def write_nvitem(self, item, data):
rawdata = bytes(data)
while len(rawdata) < 128:
rawdata += b"\x00"
status = 0x0000
nvrequest = b"\x27" + write_object(nvitem_type, item, rawdata, status)["raw_data"]
res = self.send(nvrequest)
if len(res) > 0:
if res[0] == 0x27:
res, nvitem = self.read_nvitem(item)
if not res:
print(f"Error while writing nvitem {hex(item)} data, %s" % data)
else:
if nvitem.data != data:
print(f"Error while writing nvitem {hex(item)} data, verified data doesn't match")
else:
print(f"Successfully wrote nvitem {hex(item)}.")
return True
return False
else:
print(f"Error while writing nvitem {hex(item)} data, %s" % data)
def write_nvitemsub(self, item, index, data):
rawdata = bytes(data)
while len(rawdata) < 128:
rawdata += b"\x00"
status = 0x0000
nvrequest = b"\x4B\x30\x02\x00" + write_object(subnvitem_type, item, index, rawdata, status)["raw_data"]
res = self.send(nvrequest)
if len(res) > 0:
if res[0] == 0x4B:
res, nvitem = self.read_nvitemsub(item, index)
if not res:
print(f"Error while writing nvitem {hex(item)} index {hex(index)} data, %s" % data)
else:
if nvitem.data != data:
print(
f"Error while writing nvitem {hex(item)} index {hex(index)} data, verified data doesn't match")
else:
print(f"Successfully wrote nvitem {hex(item)} index {hex(index)}.")
return True
return False
else:
print(f"Error while writing nvitem {hex(item)} index {hex(index)} data, %s" % data)
def efsread(self, filename):
alternateefs = b"\x4B\x3E\x19\x00"
standardefs = b"\x4B\x13\x19\x00"
resp = self.send(alternateefs)
if resp[0] == 0x4B:
efsmethod = 0x3E
else:
resp = self.send(standardefs)
if resp[0] == 0x4B:
efsmethod = 0x13
else:
print("No known efs method detected for reading.")
return
if filename == "":
return False
write_handle = open(filename, "wb")
if write_handle is None:
print("Error on writing file ....")
return False
print("Reading EFS ....")
fefs = fs_factimage_read_info(0, 0, 0, 0)
# EFS Cmd
buf = pack("<BBBB", 0x4B, efsmethod, efs_cmds.EFS2_DIAG_PREP_FACT_IMAGE.value, 0x00) # prepare factory image
resp = self.send(buf)
if len(resp) == 0:
print("Phone does not respond. Maybe another software is blocking the port.")
return False
buf = pack("<BBBB", 0x4B, efsmethod, efs_cmds.EFS2_DIAG_FACT_IMAGE_START.value,
0x00) # indicate start read out factory image
resp = self.send(buf)
# EFS Cmd
buf = pack("<BBBBBBHI", 0x4B, efsmethod, efs_cmds.EFS2_DIAG_FACT_IMAGE_READ.value, 0x00, fefs.stream_state,
fefs.info_cluster_sent,
fefs.cluster_map_seqno, fefs.cluster_data_seqno)
resp = self.send(buf)
if resp == 0 or resp == -1:
info = ("Page %08X error !\n" % fefs.cluster_data_seqno)
print(info)
resp = self.send(buf)
if resp == 0 or resp == -1:
print("Data Error occured, ") + info
error = unpack("<I", resp[4:8])[0]
if (resp[0] == 0x13) or (resp[0] == 0x14) or (resp[0] == 0x15) or (error != 0x0):
print("EFS Read not supported by phone. Aborting")
write_handle.close()
return False
elif resp[0] == 0x47:
print("Send Security Password (SP) first !")
write_handle.close()
return False
efserr = False
fh = FactoryHeader()
if len(resp) > 0:
write_handle.write(resp[0x10:-0x1])
fefs.fromdata(resp[0x8:0x10])
fh.fromdata(resp[0x10:0x10 + (39 * 4)])
old = 0
print_progress(0, 100, prefix="Progress:", suffix="Complete", bar_length=50)
total = fh.block_size * fh.block_count * (fh.page_size // 0x200)
# Real start
for page in range(0, total):
# EFS Cmd
buf = pack("<BBBBBBHI", 0x4B, efsmethod, efs_cmds.EFS2_DIAG_FACT_IMAGE_READ.value, 0x00,
fefs.stream_state, fefs.info_cluster_sent,
fefs.cluster_map_seqno, fefs.cluster_data_seqno)
pos = int(page / total * 100)
if pos > old:
print_progress(pos, 100, prefix="Progress:", suffix="Page %d of %d" % (page, total), bar_length=50)
old = pos
resp = self.send(buf)
if resp == 0:
resp = self.send(buf)
if resp == 0 or resp == -1:
info = ("Page %08X !\n" % fefs.cluster_data_seqno)
print(info)
resp = self.send(buf)
if resp == 0 or resp == -1:
print("Data Error occured, " + info)
else:
dlen = len(resp) - 0x11
if dlen == 0x200 or dlen == 0x800:
if resp[0x0] == 0x4B:
write_handle.write(resp[0x10:0x10 + dlen])
fefs.fromdata(resp[0x8:0x10])
else:
if (resp[0x0] == 0x13) and (resp[0x1] == 0x62) and (len(resp) > 0x200):
write_handle.write(resp[0x14:-4])
fefs.fromdata(resp[0xc:0x14])
if fefs.stream_state == 0x0:
break
else:
print("EFS Read error : Wrong size recieved at page %X" % page)
efserr = True
break
print_progress(100, 100, prefix="Progress:", suffix="Complete", bar_length=50)
buf = bytearray()
buf.append(0x4B)
buf.append(efsmethod)
buf.append(efs_cmds.EFS2_DIAG_FACT_IMAGE_END.value) # end factory image
buf.append(0x00)
resp = self.send(buf)
if len(resp) == 0:
print("Phone does not respond. Maybe another software is blocking the port.")
return False
write_handle.close()
if not efserr:
print("Successfully read EFS.")
return True
else:
print("Error on reading EFS.")
return False
def send_cmd(self, cmd):
cmdtosend = unhexlify(cmd)
reply = self.send(cmdtosend)
if reply[0] != cmdtosend[0]:
print(self.decodestatus(reply))
result = self.prettyprint(reply)
return result
def efsdiagerror(self, errcode):
if errcode == 0x40000001:
print("Inconsistent state.")
elif errcode == 0x40000002:
print("Invalid seq no.")
elif errcode == 0x40000003:
print("Directory not open.")
elif errcode == 0x40000004:
print("Directory entry not found.")
elif errcode == 0x40000005:
print("Invalid path.")
elif errcode == 0x40000006:
print("Path too long")
elif errcode == 0x40000007:
print("Too many open directories.")
elif errcode == 0x40000008:
print("Invalid directory entry.")
elif errcode == 0x40000009:
print("Too many open files.")
elif errcode == 0x4000000a:
print("Unknown filetype")
elif errcode == 0x4000000b:
print("Not nand falsh")
elif errcode == 0x4000000c:
print("Unavailable info")
else:
return 0
return -1
def efs_closedir(self, efsmethod, dirp):
buf = pack("<BBBB", 0x4B, efsmethod, efs_cmds.EFS2_DIAG_CLOSEDIR.value, 0x00) # list efs dir
buf += pack("<I", dirp)
resp = self.send(buf)
diagerror = unpack("<I", resp[0x4:0x8])[0]
return self.efsdiagerror(diagerror)
def efs_opendir(self, efsmethod, path):
buf = pack("<BBBB", 0x4B, efsmethod, efs_cmds.EFS2_DIAG_OPENDIR.value, 0x00) # open efs dir
buf += bytes(path, "utf-8") + b"\x00"
resp = self.send(buf)
if resp[0] != diag_cmds.DIAG_BAD_SEC_MODE_F.value and resp[0] != diag_cmds.DIAG_BAD_LEN_F.value:
dirp = unpack("<I", resp[0x4:0x8])[0]
diagerror = unpack("<I", resp[0x8:0xC])[0]
if self.efsdiagerror(diagerror) != 0:
return -1
return dirp
def efslistdir(self, path):
alternateefs = b"\x4B\x3E\x00\x00" + b"\x00" * 0x28
standardefs = b"\x4B\x13\x00\x00" + b"\x00" * 0x28
resp = self.send(alternateefs)
if resp[0] == 0x4B:
efsmethod = 0x3E
else:
resp = self.send(standardefs)
if resp[0] == 0x4B:
efsmethod = 0x13
else:
print("No known efs method detected for reading.")
return
dirp = self.efs_opendir(efsmethod, path)
if dirp == -1:
return
info = ""
for seqno in range(1, 0xFFFFFFFF):
buf = pack("<BBBB", 0x4B, efsmethod, efs_cmds.EFS2_DIAG_READDIR.value, 0x00) # list efs dir
buf += pack("<II", dirp, seqno)
resp = self.send(buf)
if len(resp) > 0:
[dirp, seqno, diag_errno, entry_type, mode, size, atime, mtime, ctime] = unpack("<Iiiiiiiii",
resp[4:4 + (9 * 4)])
if entry_type == 1:
entry_name = resp[4 + (9 * 4):-1]
if len(entry_name) < 50:
entry_name += (50 - len(entry_name)) * b" "
info += f"{path}{entry_name.decode('utf-8')} mode:{hex(mode)}, size:{hex(size)}, atime:{hex(atime)}, mtime:{hex(mtime)}, ctime:{hex(ctime)}\n"
elif entry_type == 0:
break
if self.efs_closedir(efsmethod, dirp) != 0:
print("Error on listing directory")
return info
def efs_open(self, efsmethod, oflag, mode, path):
buf = pack("<BBBB", 0x4B, efsmethod, efs_cmds.EFS2_DIAG_OPEN.value, 0x00) # open efs dir
buf += pack("<II", oflag, mode)
buf += bytes(path, "utf-8") + b"\x00"
resp = self.send(buf)
if resp[0] != diag_cmds.DIAG_BAD_SEC_MODE_F.value and resp[0] != diag_cmds.DIAG_BAD_LEN_F.value:
fdata = unpack("<i", resp[0x4:0x8])[0]
diagerror = unpack("<I", resp[0x8:0xC])[0]
if self.efsdiagerror(diagerror) != 0:
return -1
return fdata
def efs_close(self, efsmethod, fdata):
buf = pack("<BBBB", 0x4B, efsmethod, efs_cmds.EFS2_DIAG_CLOSE.value, 0x00) # list efs dir
buf += pack("<i", fdata)
resp = self.send(buf)
diag_error = unpack("<I", resp[0x4:0x8])[0]
return self.efsdiagerror(diag_error)
def efs_stat(self, efsmethod, path):
buf = pack("<BBBB", 0x4B, efsmethod, efs_cmds.EFS2_DIAG_STAT.value, 0x00) # open efs file
buf += bytes(path, "utf-8") + b"\x00"
resp = self.send(buf)
if resp[0] != diag_cmds.DIAG_BAD_SEC_MODE_F.value and resp[0] != diag_cmds.DIAG_BAD_LEN_F.value:
diag_error = unpack("<I", resp[0x4:0x8])[0]
mode = unpack("<I", resp[0x8:0xC])[0]
size = unpack("<I", resp[0xC:0x10])[0]
nlink = unpack("<I", resp[0x10:0x14])[0]
atime = unpack("<I", resp[0x14:0x18])[0]
mtime = unpack("<I", resp[0x18:0x1C])[0]
ctime = unpack("<I", resp[0x1C:0x20])[0]
if self.efsdiagerror(diag_error) != 0:
return -1
return [mode, size, nlink, atime, mtime, ctime]
def efs_fstat(self, efsmethod, fdata):
buf = pack("<BBBB", 0x4B, efsmethod, efs_cmds.EFS2_DIAG_FSTAT.value, 0x00) # open efs file
buf += pack("<I", fdata)
resp = self.send(buf)
if resp[0] != diag_cmds.DIAG_BAD_SEC_MODE_F.value and resp[0] != diag_cmds.DIAG_BAD_LEN_F.value:
diag_error = unpack("<I", resp[0x4:0x8])[0]
mode = unpack("<I", resp[0x8:0xC])[0]
size = unpack("<I", resp[0xC:0x10])[0]
nlink = unpack("<I", resp[0x10:0x14])[0]
atime = unpack("<I", resp[0x14:0x18])[0]
mtime = unpack("<I", resp[0x18:0x1C])[0]
ctime = unpack("<I", resp[0x1C:0x20])[0]
if self.efsdiagerror(diag_error) != 0:
return -1
return [mode, size, nlink, atime, mtime, ctime]
def efs_lstat(self, efsmethod, path):
buf = pack("<BBBB", 0x4B, efsmethod, efs_cmds.EFS2_DIAG_LSTAT.value, 0x00) # open efs file
buf += bytes(path, "utf-8") + b"\x00"
resp = self.send(buf)
if resp[0] != diag_cmds.DIAG_BAD_SEC_MODE_F.value and resp[0] != diag_cmds.DIAG_BAD_LEN_F.value:
diag_error = unpack("<I", resp[0x4:0x8])[0]
mode = unpack("<I", resp[0x8:0xC])[0]
atime = unpack("<I", resp[0xC:0x10])[0]
mtime = unpack("<I", resp[0x10:0x14])[0]
ctime = unpack("<I", resp[0x14:0x18])[0]
if self.efsdiagerror(diag_error) != 0:
return -1
return [mode, atime, mtime, ctime]
def efs_get(self, efsmethod, path, data_length, sequence_number):
path_length = len(path) + 1
buf = pack("<BBBB", 0x4B, efsmethod, efs_cmds.EFS2_DIAG_GET.value, 0x00) # open efs file
buf += pack("<IIH", data_length, path_length, sequence_number)
buf += bytes(path, "utf-8") + b"\x00"
resp = self.send(buf)
if resp[0] != diag_cmds.DIAG_BAD_SEC_MODE_F.value and resp[0] != diag_cmds.DIAG_BAD_LEN_F.value:
num_bytes = unpack("<I", resp[0x4:0x8])[0]
diag_error = unpack("<I", resp[0x8:0xC])[0]
seq_no = unpack("<H", resp[0xC:0xE])[0]
data = resp[0xE:]
if self.efsdiagerror(diag_error) != 0:
return -1
return [num_bytes, seq_no, data]
def efs_write(self, efsmethod, fdata, offset, data):
buf = pack("<BBBB", 0x4B, efsmethod, efs_cmds.EFS2_DIAG_WRITE.value, 0x00) # open efs file
buf += pack("<II", fdata, offset)
buf += data
resp = self.send(buf)
if resp[0] != diag_cmds.DIAG_BAD_SEC_MODE_F.value and resp[0] != diag_cmds.DIAG_BAD_LEN_F.value:
fdata = unpack("<i", resp[0x4:0x8])[0]
offset = unpack("<I", resp[0x8:0xC])[0]
bytes_written = unpack("<I", resp[0xC:0x10])[0]
diag_error = unpack("<I", resp[0x10:0x14])[0]