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
|
import os.path
import io
import struct
import re
from binascii import b2a_hex
from hexdump import hexdump, asasc, tohex, unhex, strescape
from koddecoder import kodecode
from readers import ByteReader
import zlib
from collections import defaultdict
"""
python3 crodump.py crodump chechnya_proverki_ul_2012
python3 crodump.py kodump -s 6 -o 0x4cc9 -e 0x5d95 chechnya_proverki_ul_2012/CroStru.dat
"""
def toout(args, data):
""" return either ascdump or hexdump """
if args.ascdump:
return asasc(data)
else:
return tohex(data)
def enumunreferenced(ranges, filesize):
""" from a list of used ranges and the filesize, enumerate the list of unused ranges """
o = 0
for start, end, desc in sorted(ranges):
if start > o:
yield o, start-o
o = end
if o<filesize:
yield o, filesize-o
class Datafile:
""" Represent a single .dat with it's .tad index file """
def __init__(self, name, dat, tad):
self.name = name
self.dat = dat
self.tad = tad
self.readdathdr()
self.readtad()
self.dat.seek(0, io.SEEK_END)
self.datsize = self.dat.tell()
def readdathdr(self):
self.dat.seek(0)
hdrdata = self.dat.read(19)
magic, self.hdrunk, self.version, self.encoding, self.blocksize = struct.unpack("<8sH5sHH", hdrdata)
if magic != b"CroFile\x00":
print("unknown magic: ", magic)
raise Exception("not a Crofile")
self.use64bit = self.version == b'01.03'
if self.version == b'01.11':
# only found in app: v5/CroSys.dat
raise Exception("v01.11 format is not yet supported")
# blocksize
# 0040 -> Bank
# 0400 -> Index or Sys
# 0200 -> Stru or Sys
# encoding
# 0000
# 0001 --> 'KOD encoded'
# 0002
# 0003 --> encrypted
def readtad(self):
self.tad.seek(0)
hdrdata = self.tad.read(2*4)
self.nrdeleted, self.firstdeleted = struct.unpack("<2L", hdrdata)
indexdata = self.tad.read()
if self.use64bit:
# 01.03 has 64 bit file offsets
self.tadidx = [ struct.unpack_from("<QLL", indexdata, 16*_) for _ in range(len(indexdata)//16) ]
if len(indexdata)%16:
print("WARN: leftover data in .tad")
else:
# 01.02 and 01.04 have 32 bit offsets.
self.tadidx = [ struct.unpack_from("<LLL", indexdata, 12*_) for _ in range(len(indexdata)//12) ]
if len(indexdata)%12:
print("WARN: leftover data in .tad")
def nrofrecords(self):
return len(self.tadidx)
def readdata(self, ofs, size):
self.dat.seek(ofs)
return self.dat.read(size)
def readrec(self, idx):
"""
extract and decode a single record.
"""
if idx==0:
raise Exception("recnum must be a positive number")
ofs, ln, chk = self.tadidx[idx-1]
if ln==0xFFFFFFFF:
# deleted record
return
flags = ln>>24
ln &= 0xFFFFFFF
dat = self.readdata(ofs, ln)
if not dat:
# empty record
encdat = dat
elif not flags:
extofs, extlen = struct.unpack("<LL", dat[:8])
encdat = dat[8:]
while len(encdat)<extlen:
dat = self.readdata(extofs, self.blocksize)
extofs, = struct.unpack("<L", dat[:4])
encdat += dat[4:]
encdat = encdat[:extlen]
else:
encdat = dat
if self.encoding == 1:
encdat = kodecode(idx, encdat)
if self.iscompressed(encdat):
encdat = self.decompress(encdat)
return encdat
def dump(self, args):
"""
dump decodes all references data, and optionally will print out all unused bytes in the .dat file.
"""
print("hdr: %-6s dat: %04x %s enc:%04x bs:%04x, tad: %08x %08x" % (self.name, self.hdrunk, self.version, self.encoding, self.blocksize, self.nrdeleted, self.firstdeleted))
ranges = [] # keep track of used bytes in the .dat file.
for i, (ofs, ln, chk) in enumerate(self.tadidx):
if ln==0xFFFFFFFF:
print("%5d: %08x %08x %08x" % (i+1, ofs, ln, chk))
continue
flags = ln>>24
ln &= 0xFFFFFFF
dat = self.readdata(ofs, ln)
ranges.append((ofs, ofs+ln, "item #%d" % i))
decflags = [' ', ' ']
infostr = ""
tail = b''
if not dat:
# empty record
encdat = dat
elif not flags:
if self.use64bit:
extofs, extlen = struct.unpack("<QL", dat[:12])
o = 12
else:
extofs, extlen = struct.unpack("<LL", dat[:8])
o = 8
infostr = "%08x;%08x" % (extofs, extlen)
encdat = dat[o:]
while len(encdat)<extlen:
dat = self.readdata(extofs, self.blocksize)
ranges.append((extofs, extofs+self.blocksize, "item #%d ext" % i))
if self.use64bit:
extofs, = struct.unpack("<Q", dat[:8])
o = 8
else:
extofs, = struct.unpack("<L", dat[:4])
o = 4
infostr += ";%08x" % (extofs)
encdat += dat[o:]
tail = encdat[extlen:]
encdat = encdat[:extlen]
decflags[0] = '+'
else:
encdat = dat
decflags[0] = '*'
if self.encoding == 1:
decdat = kodecode(i+1, encdat)
else:
decdat = encdat
decflags[0] = ' '
if args.decompress and self.iscompressed(decdat):
decdat = self.decompress(decdat)
decflags[1] = '@'
print("%5d: %08x-%08x: (%02x:%08x) %s %s%s %s" % (i+1, ofs, ofs+ln, flags, chk, infostr, "".join(decflags), toout(args, decdat), tohex(tail)))
if args.verbose:
# output parts not referenced in the .tad file.
for o, l in enumunreferenced(ranges, self.datsize):
dat = self.readdata(o, l)
print("%08x-%08x: %s" % (o, o+l, toout(args, dat)))
def iscompressed(self, data):
"""
Note that the compression header uses big-endian numbers.
"""
if len(data)<11:
return
if data[-3:] != b"\x00\x00\x02":
return
o = 0
while o < len(data)-3:
size, flag = struct.unpack_from(">HH", data, o)
if flag!=0x800 and flag!=0x008:
return
o += size + 2
return True
def decompress(self, data):
result = b""
o = 0
while o < len(data)-3:
size, flag, crc = struct.unpack_from(">HHL", data, o)
C = zlib.decompressobj(-15)
result += C.decompress(data[o+8:o+8+size])
o += size + 2
return result
def dump_db_definition(args, dbdict):
"""
decode the 'bank' / database definition
"""
for k, v in dbdict.items():
if re.search(b'[^\x0d\x0a\x09\x20-\x7e\xc0-\xff]', v):
print("%-20s - %s" % (k, toout(args, v)))
else:
print("%-20s - \"%s\"" % (k, strescape(v)))
class FieldDefinition:
def __init__(self, data):
self.decode(data)
def decode(self, data):
self.defdata = data
rd = ByteReader(data)
self.typ = rd.readword()
self.idx1 = rd.readdword()
self.name = rd.readname()
self.flags = rd.readdword()
self.minval = rd.readbyte() # Always 1
if self.typ:
self.idx2 = rd.readdword()
self.maxval = rd.readdword() # max value or length
self.unk4 = rd.readdword() # Always 0x00000009 or 0x0001000d
else:
self.idx2 = self.maxval = self.unk4 = None
self.remaining = rd.readbytes()
def __str__(self):
if self.typ:
return "Type: %2d (%2d/%2d) %04x,(%d-%4d),%04x - %-40s -- %s" % (self.typ, self.idx1, self.idx2, self.flags, self.minval, self.maxval, self.unk4, "'%s'" % self.name, tohex(self.remaining))
else:
return "Type: %2d %2d %d,%d - '%s'" % (self.typ, self.idx1, self.flags, self.minval, self.name)
class TableDefinition:
def __init__(self, data):
self.decode(data)
def decode(self, data):
"""
decode the 'base' / table definition
"""
rd = ByteReader(data)
self.unk1 = rd.readword()
self.version = rd.readbyte()
if self.version > 1:
_ = rd.readbyte() # always 0 anyway
self.unk2 = rd.readbyte() # if this is not 5 (but 9), there's another 4 bytes inserted, this could be a length-byte.
self.unk3 = rd.readbyte()
if self.unk2 > 5: # seen only 5 and 9 for now with 9 implying an extra dword
_ = rd.readdword()
self.unk4 = rd.readdword()
self.tableid = rd.readdword()
self.tablename = rd.readname()
self.abbrev = rd.readname()
self.unk7 = rd.readdword()
nrfields = rd.readdword()
self.headerdata = data[:rd.o]
self.fields = []
for _ in range(nrfields):
l = rd.readword()
fielddef = rd.readbytes(l)
self.fields.append(FieldDefinition(fielddef))
self.remainingdata = rd.readbytes()
def __str__(self):
return "%d,%d<%d,%d,%d>%d %d,%d '%s' '%s'" % ( self.unk1, self.version, self.unk2, self.unk3, self.unk4, self.tableid, self.unk7, len(self.fields), self.tablename, self.abbrev)
def dump(self, args):
if args.verbose:
print("table: %s" % tohex(self.headerdata))
print(str(self))
for field in self.fields:
if args.verbose:
print("field: @%04x: %04x - %s" % (field.byteoffset, len(field.defdata), tohex(field.defdata)))
print(str(field))
if args.verbose:
print("remaining: %s" % tohex(self.remainingdata))
def destruct_sys3_def(rd):
pass
def destruct_sys4_def(rd):
n = rd.readdword()
for _ in range(n):
marker = rd.readdword()
description = rd.readlongstring()
path = rd.readlongstring()
marker2 = rd.readdword()
print("%08x;%08x: %-50s : %s" % (marker, marker2, path, description))
def destruct_sys_definition(args, data):
"""
decode the 'sys' / dbindex definition
"""
rd = ByteReader(data)
systype = rd.readbyte()
if systype == 3:
return destruct_sys3_def(rd)
elif systype == 4:
return destruct_sys4_def(rd)
else:
raise Exception("unsupported sys record")
class Database:
""" represent the entire database, consisting of Stru, Index and Bank files """
def __init__(self, dbdir):
self.dbdir = dbdir
self.stru = self.getfile("Stru")
self.index = self.getfile("Index")
self.bank = self.getfile("Bank")
self.sys = self.getfile("Sys")
# BankTemp, Int
def nrofrecords(self):
return len(self.bank.tadidx)
def getfile(self, name):
try:
datname = self.getname(name, "dat")
tadname = self.getname(name, "tad")
if datname and tadname:
return Datafile(name, open(datname, "rb"), open(tadname, "rb"))
except IOError:
return
def getname(self, name, ext):
"""
get a case-insensitive filename match for 'name.ext'.
Returns None when no matching file was not found.
"""
basename = "Cro%s.%s" % (name, ext)
for fn in os.scandir(self.dbdir):
if basename.lower() == fn.name.lower():
return os.path.join(self.dbdir, fn.name)
def dump(self, args):
if self.stru:
self.stru.dump(args)
if self.index:
self.index.dump(args)
if self.bank:
self.bank.dump(args)
if self.sys:
self.sys.dump(args)
def strudump(self, args):
if not self.stru:
print("missing CroStru file")
return
self.dump_db_table_defs(args)
def decode_db_definition(self, data):
"""
decode the 'bank' / database definition
"""
rd = ByteReader(data)
d = dict()
while not rd.eof():
keyname = rd.readname()
if keyname in d:
print("WARN: duplicate key: %s" % keyname)
index_or_length = rd.readdword()
if index_or_length >> 31:
d[keyname] = rd.readbytes(index_or_length & 0x7FFFFFFF)
else:
refdata = self.stru.readrec(index_or_length)
if refdata[:1] != b"\x04":
print("WARN: expected refdata to start with 0x04")
d[keyname] = refdata[1:]
return d
def dump_db_table_defs(self, args):
"""
decode the table defs from recid #1, which always has table-id #3
Note that I don't know if it is better to refer to this by recid, or by table-id.
other table-id's found in CroStru:
#4 -> large values referenced from tableid#3
"""
dbinfo = self.stru.readrec(1)
if dbinfo[:1] != b"\x03":
print("WARN: expected dbinfo to start with 0x03")
dbdef = self.decode_db_definition(dbinfo[1:])
dump_db_definition(args, dbdef)
for k, v in dbdef.items():
if k.startswith("Base") and k[4:].isnumeric():
print("== %s ==" % k)
tbdef = TableDefinition(v)
tbdef.dump(args)
def enumerate_tables(self):
dbinfo = self.stru.readrec(1)
if dbinfo[:1] != b"\x03":
print("WARN: expected dbinfo to start with 0x03")
dbdef = self.decode_db_definition(dbinfo[1:])
for k, v in dbdef.items():
if k.startswith("Base") and k[4:].isnumeric():
yield TableDefinition(v)
def enumerate_records(self, table):
"""
usage:
for tab in db.enumerate_tables():
for rec in db.enumerate_records(tab):
print(sqlformatter(tab, rec))
"""
for i in range(self.nrofrecords()):
data = self.bank.readrec(i+1)
if data and data[0] == table.tableid:
yield i+1, data[1:].split(b"\x1e")
def recdump(self, args):
if args.index:
dbfile = self.index
elif args.sys:
dbfile = self.sys
elif args.stru:
dbfile = self.stru
else:
dbfile = self.bank
if not dbfile:
print(".dat not found")
return
if args.skipencrypted and dbfile.encoding==3:
print("Skipping encrypted CroBank")
return
nerr = 0
nr_recnone = 0
nr_recempty = 0
tabidxref = [0] * 256
bytexref = [0] * 256
for i in range(1, args.maxrecs+1):
try:
data = dbfile.readrec(i)
if args.find1d:
if data and (data.find(b"\x1d")>0 or data.find(b"\x1b")>0):
print("%d -> %s" % (i, b2a_hex(data)))
break
elif not args.stats:
if data is None:
print("%5d: <deleted>" % i)
else:
print("%5d: %s" % (i, toout(args, data)))
else:
if data is None:
nr_recnone += 1
elif not len(data):
nr_recempty += 1
else:
tabidxref[data[0]] += 1
for b in data[1:]:
bytexref[b] += 1
nerr = 0
except IndexError:
break
except Exception as e:
print("%5d: <%s>" % (i, e))
if args.debug:
raise
nerr += 1
if nerr > 5:
break
if args.stats:
print("-- table-id stats --, %d * none, %d * empty" % (nr_recnone, nr_recempty))
for k, v in enumerate(tabidxref):
if v:
print("%5d * %02x" % (v, k))
print("-- byte stats --")
for k, v in enumerate(bytexref):
if v:
print("%5d * %02x" % (v, k))
def incdata(data, s):
"""
add 's' to each byte.
This is useful for finding the correct shift from an incorrectly shifted chunk.
"""
return b"".join(struct.pack("<B", (_+s)&0xFF) for _ in data)
def decode_kod(args, data):
"""
various methods of hexdumping KOD decoded data.
"""
if args.nokod:
# plain hexdump, no KOD decode
hexdump(args.offset, data, args)
elif args.shift:
# explicitly specified shift.
args.shift = int(args.shift, 0)
enc = kodecode(args.shift, data)
hexdump(args.offset, enc, args)
elif args.increment:
# explicitly specified shift.
for s in range(256):
enc = incdata(data, s)
print("%02x: %s" % (s, toout(args, enc)))
else:
# output with all possible 'shift' values.
for s in range(256):
enc = kodecode(s, data)
print("%02x: %s" % (s, toout(args, enc)))
def kod_hexdump(args):
"""
KOD decode a section of a data file
"""
args.offset = int(args.offset, 0)
if args.length:
args.length = int(args.length, 0)
elif args.endofs:
args.endofs = int(args.endofs, 0)
args.length = args.endofs - args.offset
if args.width:
args.width = int(args.width, 0)
else:
args.width = 64 if args.ascdump else 16
if args.filename:
with open(args.filename, "rb") as fh:
if args.length is None:
fh.seek(0, io.SEEK_END)
filesize = fh.tell()
args.length = filesize-args.offset
fh.seek(args.offset)
data = fh.read(args.length)
decode_kod(args, data)
else:
# no filename -> read from stdin.
import sys
data = sys.stdin.buffer.read()
if args.unhex:
data = unhex(data)
decode_kod(args, data)
def cro_dump(args):
""" handle 'crodump' subcommand """
db = Database(args.dbdir)
db.dump(args)
def stru_dump(args):
""" handle 'strudump' subcommand """
db = Database(args.dbdir)
db.strudump(args)
def sys_dump(args):
""" hexdump all CroSys records """
db = Database(args.dbdir)
if db.sys:
db.sys.dump(args)
def rec_dump(args):
""" hexdump all records of the specified CroXXX.dat file. """
if args.maxrecs:
args.maxrecs = int(args.maxrecs, 0)
else:
# an arbitrarily large number.
args.maxrecs = 0xFFFFFFFF
db = Database(args.dbdir)
db.recdump(args)
def destruct(args):
"""
decode the index#1 structure information record
Takes hex input from stdin.
"""
import sys
data = sys.stdin.buffer.read()
data = unhex(data)
if args.type==1:
destruct_db_definition(args, data)
elif args.type==2:
tbdef = TableDefinition(data)
tbdef.dump(args)
elif args.type==3:
destruct_sys_definition(args, data)
def main():
import argparse
parser = argparse.ArgumentParser(description='CRO hexdumper')
subparsers = parser.add_subparsers()
parser.set_defaults(handler=None)
parser.add_argument('--debug', action='store_true', help='break on exceptions')
ko = subparsers.add_parser('kodump', help='KOD/hex dumper')
ko.add_argument('--offset', '-o', type=str, default="0")
ko.add_argument('--length', '-l', type=str)
ko.add_argument('--width', '-w', type=str)
ko.add_argument('--endofs', '-e', type=str)
ko.add_argument('--unhex', '-x', action='store_true', help="assume the input contains hex data")
ko.add_argument('--shift', '-s', type=str, help="KOD decode with the specified shift")
ko.add_argument('--increment', '-i', action='store_true', help="assume data is already KOD decoded, but with wrong shift -> dump alternatives.")
ko.add_argument('--ascdump', '-a', action='store_true', help="CP1251 asc dump of the data")
ko.add_argument('--nokod', '-n', action='store_true', help="don't KOD decode")
ko.add_argument('filename', type=str, nargs='?', help="dump either stdin, or the specified file")
ko.set_defaults(handler=kod_hexdump)
p = subparsers.add_parser('crodump', help='CROdumper')
p.add_argument('--verbose', '-v', action='store_true')
p.add_argument('--kodecode', '-k', action='store_true')
p.add_argument('--ascdump', '-a', action='store_true')
p.add_argument('--nokod', '-n', action='store_true')
p.add_argument('--nodecompress', action='store_false', dest='decompress', default='true')
p.add_argument('dbdir', type=str)
p.set_defaults(handler=cro_dump)
p = subparsers.add_parser('sysdump', help='SYSdumper')
p.add_argument('--verbose', '-v', action='store_true')
p.add_argument('--ascdump', '-a', action='store_true')
p.add_argument('--nodecompress', action='store_false', dest='decompress', default='true')
p.add_argument('dbdir', type=str)
p.set_defaults(handler=sys_dump)
p = subparsers.add_parser('recdump', help='record dumper')
p.add_argument('--verbose', '-v', action='store_true')
p.add_argument('--ascdump', '-a', action='store_true')
p.add_argument('--maxrecs', '-n', type=str, help="max nr or recots to output")
p.add_argument('--find1d', action='store_true')
p.add_argument('--inclencrypted', action='store_false', dest='skipencrypted', default='true', help='include encrypted records in the output')
p.add_argument('--stats', action='store_true', help='calc table stats from the first byte of each record')
p.add_argument('--index', action='store_true', help='dump CroIndex')
p.add_argument('--stru', action='store_true', help='dump CroIndex')
p.add_argument('--bank', action='store_true', help='dump CroBank')
p.add_argument('--sys', action='store_true', help='dump CroSys')
p.add_argument('dbdir', type=str)
p.set_defaults(handler=rec_dump)
p = subparsers.add_parser('strudump', help='STRUdumper')
p.add_argument('--verbose', '-v', action='store_true')
p.add_argument('--ascdump', '-a', action='store_true')
p.add_argument('dbdir', type=str)
p.set_defaults(handler=stru_dump)
p = subparsers.add_parser('destruct', help='Stru dumper')
p.add_argument('--verbose', '-v', action='store_true')
p.add_argument('--ascdump', '-a', action='store_true')
p.add_argument('--type', '-t', type=int, help='what type of record to destruct')
p.set_defaults(handler=destruct)
args = parser.parse_args()
if args.handler:
args.handler(args)
if __name__=='__main__':
main()
|