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
|
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) ]
else:
# 01.02 and 01.04 have 32 bit offsets.
self.tadidx = [ struct.unpack_from("<LLL", indexdata, 12*_) for _ in range(len(indexdata)//12) ]
def readdata(self, ofs, size):
self.dat.seek(ofs)
return self.dat.read(size)
def readrec(self, idx):
"""
extract and decode a single record.
"""
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_bank_definition(args, bankdict):
"""
decode the 'bank' / database definition
"""
for k, v in bankdict.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)))
def decode_field(data):
rd = ByteReader(data)
typ = rd.readword()
idx1 = rd.readdword()
name = rd.readname()
unk1 = rd.readdword()
unk2 = rd.readbyte() # Always 1
if typ:
idx2 = rd.readdword()
unk3 = rd.readdword() # max value or length
unk4 = rd.readdword() # Always 0x00000009 or 0x0001000d
remain = rd.readbytes()
print("Type: %2d (%2d/%2d) %04x,(%d-%4d),%04x - '%s' -- %s" % (typ, idx1, idx2, unk1, unk2, unk3, unk4, name, tohex(remain)))
else:
print("Type: %2d %2d %d,%d - '%s'" % (typ, idx1, unk1, unk2, name))
def destruct_base_definition(args, data):
"""
decode the 'base' / table definition
"""
rd = ByteReader(data)
unk123 = [rd.readword() for _ in range(3)]
unk45 = [rd.readdword() for _ in range(2)]
tablename = rd.readname()
unkname = rd.readname()
unk7 = rd.readdword()
nrfields = rd.readdword()
if args.verbose:
print("table: %s" % tohex(data[:rd.o]))
print("%d,%d,%d,%d,%d %d,%d '%s' '%s'" % (*unk123, *unk45, unk7, nrfields, tablename, unkname))
fields = []
for _ in range(nrfields):
l = rd.readword()
fielddef = rd.readbytes(l)
if args.verbose:
print("field: @%04x: %04x - %s" % (rd.o, l, tohex(fielddef)))
fields.append(decode_field(fielddef))
remaining = rd.readbytes()
print("rem: %s" % tohex(remaining))
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 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.dumptabledefs(args)
def decode_bank_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 dumptabledefs(self, args):
dbinfo = self.stru.readrec(1)
if dbinfo[:1] != b"\x03":
print("WARN: expected dbinfo to start with 0x03")
dbdef = self.decode_bank_definition(dbinfo[1:])
dump_bank_definition(args, dbdef)
for k, v in dbdef.items():
if k.startswith("Base") and k[4:].isnumeric():
print("== %s ==" % k)
tbdef = destruct_base_definition(args, v)
def bankdump(self, args):
if not self.bank:
print("No CroBank.dat found")
return
if args.skipencrypted and self.bank.encoding==3:
print("Skipping encrypted CroBank")
return
nerr = 0
xref = defaultdict(int)
for i in range(args.maxrecs):
try:
data = self.bank.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:
xref["None"] += 1
elif not len(data):
xref["Empty"] += 1
else:
xref["%02x" % data[0]] += 1
nerr = 0
except IndexError:
break
except Exception as e:
print("%5d: <%s>" % (i, e))
nerr += 1
if nerr > 5:
break
if args.stats:
print("-- stats --")
for k, v in xref.items():
print("%5d * %s" % (v, k))
def readrec(self, sysnum):
data = self.bank.readrec(sysnum)
tabnum, = struct.unpack_from("<B", data, 0)
fields = data[1:].split(b"\x1e")
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 bank_dump(args):
""" hexdump all records """
if args.maxrecs:
args.maxrecs = int(args.maxrecs, 0)
else:
# an arbitrarily large number.
args.maxrecs = 0xFFFFFFFF
db = Database(args.dbdir)
db.bankdump(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_bank_definition(args, data)
elif args.type==2:
destruct_base_definition(args, data)
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)
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('bankdump', help='BANKdumper')
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('dbdir', type=str)
p.set_defaults(handler=bank_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()
|