forked from larrykoubiak/pyplaydia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiso9660.py
339 lines (304 loc) · 12.1 KB
/
iso9660.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
import os
from enum import Enum, Flag, auto
from filestream import Imagestream
from sector import Submodes
from adpcm import ADPCMBlock
from jpeg import JFIFFile
from struct import pack, unpack
from datetime import datetime, timezone, timedelta
from json import load
import wave
class VolumeDescriptorType(Enum):
Boot = 0
Primary = 1
Supplementary = 2
Partition = 3
SetTerminator = 255
class FileFlags(Flag):
Existence = auto()
Directory = auto()
AssociatedFile = auto()
Record = auto()
Protection = auto()
Reserved1 = auto()
Reserved2 = auto()
MultiExtent = auto()
class XAFlags(Flag):
OwnerRead = 0x0001
OwnerExecute = 0x0004
GroupRead = 0x0010
GroupExecute = 0x0040
WorldRead = 0x0100
WorldExecute = 0x0400
Form1 = 0x0800
Form2 = 0x1000
Interleaved = 0x2000
CDDA = 0x4000
Directory = 0x8000
class ISO9660TextDate():
def __init__(self, data):
temp = unpack("4s2s2s2s2s2s2sb", data)
self.__year = int(temp[0].decode())
self.__month = int(temp[1].decode())
self.__day = int(temp[2].decode())
self.__hour = int(temp[3].decode())
self.__minute = int(temp[4].decode())
self.__second = int(temp[5].decode())
self.__ms = int(temp[6].decode())
self.__offset = temp[7]
@property
def Date(self):
return None if self.__year == 0 else \
datetime(self.__year, self.__month,self.__day,
self.__hour, self.__minute, self.__second, self.__ms * 10,
timezone(timedelta(minutes=self.__offset * 15)))
class VolumeDescriptor():
def __init__(self, data):
header = unpack("<B5sB2041s", data)
self.__volumedescriptortype = VolumeDescriptorType(header[0])
self.__standardidentifier = header[1].decode()
self.__volumedescriptorversion = header[2]
self.__data = header[3]
@property
def VolumeDescriptorType(self):
return self.__volumedescriptortype
@property
def StandardIdentifier(self):
return self.__standardidentifier
@property
def VolumeDescriptorVersion(self):
return self.__volumedescriptorversion
@property
def Data(self):
return self.__data
def __repr__(self):
values = tuple(self.__dict__.values())
result = "{0} {1} {2}".format(*values)
return result
class PrimaryVolumeDescriptor(VolumeDescriptor):
def __init__(self, data):
super().__init__(data)
formatstr = "<B32s32s8sII32sHHHHHHIIIIII"
formatstr += "34s128s128s128s128s37s37s37s17s17s17s17s"
formatstr += "BB512s653s"
temp = unpack(formatstr, self.Data)
self.systemIdentifier = temp[1].decode()
self.volumeIdentifier = temp[2].decode()
self.volumeSpaceSize = temp[4]
self.volumeSetSize = temp[7]
self.volumeSequenceNumber = temp[9]
self.logicalBlockSize = temp[11]
self.pathTableSize = temp[13]
self.locationPathTable = temp[15]
self.locationOptionalPathTable = temp[16]
self.rootDirectoryRecord = DirectoryRecord(temp[19])
self.volumeSetIdentifier = temp[20].decode()
self.publisherIdentifier = temp[21].decode()
self.dataPreparerIdentifier = temp[22].decode()
self.applicationIdentifier = temp[23].decode()
self.copyrightFileIdentifier = temp[24].decode()
self.abstractFileIdentifier = temp[25].decode()
self.bibliographicFileIdentifier = temp[26].decode()
self.volumeCreationDateTime = ISO9660TextDate(temp[27]).Date
self.volumeModificationDateTime = ISO9660TextDate(temp[28]).Date
self.volumeExpirationDateTime = ISO9660TextDate(temp[29]).Date
self.volumeEffectiveDateTime = ISO9660TextDate(temp[30]).Date
self.fileStructureVersion = temp[31]
self.applicationUse = temp[33]
def __repr__(self):
result = super().__repr__()
values = tuple(self.__dict__.values())
result += "\n{4} {5} {21}".format(*values)
return result
class DirectoryRecord():
def __init__(self, data):
header = unpack("<BBIIII7sBBBHHBb", data[:34])
self.LengthDR = header[0]
self.LengthAR = header[1]
self.ExtentLocation = header[2]
self.DataLength = header[4]
tempdate = unpack("BBBBBBb",header[6])
self.RecordingDate = None if tempdate[0] == 0 else \
datetime(
1900 + tempdate[0],
tempdate[1],
tempdate[2],
tempdate[3],
tempdate[4],
tempdate[5],
tzinfo=timezone(timedelta(minutes = tempdate[6] * 15))
)
self.FileFlags = FileFlags(header[7])
self.FileUnitSize = header[8]
self.InterleaveGapSize = header[9]
self.VolumeSequenceNumber = header[10]
self.LengthFI = header[12]
self.FileIdentifier = ""
self.Children = []
self.GroupID = 0
self.XAFlags = XAFlags(0)
self.XAFileId = 0
def __repr__(self):
formatstring = "<File {} Size {:04X} Date {} {} {} XAFileId {}>"
return formatstring.format(
self.FileIdentifier,
self.DataLength,
self.RecordingDate,
self.FileFlags,
self.XAFlags,
self.XAFileId
)
class ISOImage():
def __init__(self, filepath):
self.__imagestream = Imagestream(filepath)
self.__volumedescriptors = []
self.__rootDirectory = None
self.__nbSectors = self.__imagestream.Length / 2352
self.__readVolumeDescriptors()
if len(self.__volumedescriptors) > 1:
self.__readDirectoryRecord(self.__rootDirectory.ExtentLocation)
def __readVolumeDescriptors(self):
sectorId = 16
sector = self.__imagestream.ReadSector(sectorId)
vd = VolumeDescriptor(sector.Data)
while vd.VolumeDescriptorType != VolumeDescriptorType.SetTerminator and \
sectorId < self.__nbSectors:
if vd.StandardIdentifier == "CD001":
if vd.VolumeDescriptorType == VolumeDescriptorType.Primary:
pvd = PrimaryVolumeDescriptor(sector.Data)
self.__volumedescriptors.append(pvd)
self.__rootDirectory = pvd.rootDirectoryRecord
sectorId += 1
sector = self.__imagestream.ReadSector(sectorId)
vd = VolumeDescriptor(sector.Data)
if vd.StandardIdentifier == "CD001":
self.__volumedescriptors.append(vd)
def __readDirectoryRecord(self, sectorId):
sector = self.__imagestream.ReadSector(sectorId)
offset = 0
while sector.Data[offset] != 0:
length = sector.Data[offset]
data = sector.Data[offset:offset+length]
dr = DirectoryRecord(data)
pos = 33
if dr.LengthFI > 1:
dr.FileIdentifier = data[pos:pos+dr.LengthFI-2].decode().rstrip()
else:
if data[pos] == 0:
dr.FileIdentifier = "."
elif data[pos] == 1:
dr.FileIdentifier = ".."
else:
dr.FileIdentifier = ""
pos -= 1
pos += dr.LengthFI + 1
if data[pos+6:pos+8].decode() == "XA":
dr.GroupID = unpack(">I",data[pos:pos+4])[0]
dr.XAFlags = XAFlags(unpack(">H", data[pos+4:pos+6])[0])
dr.XAFileId = data[pos+8]
self.__rootDirectory.Children.append(dr)
offset += length
def ReadFile(self, record: DirectoryRecord, destination=None):
size = record.DataLength
buffer = bytearray(size)
self.__imagestream.Read(buffer, record.ExtentLocation, size)
if destination is None:
return buffer
else:
with open(destination,'wb') as o:
o.write(buffer)
def ReadAudio(self, record: DirectoryRecord, destination, limit=0):
sectorId = record.ExtentLocation
filecounter = 0
prev1 = 0
prev2 = 0
pcms = []
sh = self.__imagestream.Sectors[sectorId]
while not (sh.Submode & Submodes.EOF):
if (sh.Submode & Submodes.Audio):
s = self.__imagestream.ReadSector(sectorId)
for sg in range(18):
data = s.Data[sg * 128:(sg * 128) + 128]
block = ADPCMBlock(data)
result,prev1,prev2 = block.ReadPCM(prev1, prev2)
pcms.extend(result)
if (sh.Submode & Submodes.EOR):
filename = os.path.join(destination, "audio_{:03}.wav".format(filecounter))
if not os.path.exists(os.path.dirname(filename)):
os.mkdir(os.path.dirname(filename))
wavefile = wave.open(filename, "wb")
wavefile.setparams((1, 2, 44100, len(pcms),"NONE","not compressed"))
frames = pack(str(len(pcms)) + "h", *pcms)
wavefile.writeframes(frames)
wavefile.close()
pcms = []
prev1 = 0
prev2 = 0
filecounter +=1
if limit > 0 and filecounter >= limit:
break
sectorId +=1
sh = self.__imagestream.Sectors[sectorId]
def ReadVideo(self, record: DirectoryRecord, destination, limit=0):
sectorId = record.ExtentLocation
filecounter = 0
bytes = bytearray()
sh = self.__imagestream.Sectors[sectorId]
while not (sh.Submode & Submodes.EOF):
if not (sh.Submode & Submodes.Audio):
s = self.__imagestream.ReadSector(sectorId)
bytes += s.Data
if (sh.Submode & Submodes.EOR):
filename = os.path.join(destination, "video_{:03}.bin".format(filecounter))
if not os.path.exists(os.path.dirname(filename)):
os.mkdir(os.path.dirname(filename))
with open(filename, "wb") as o:
o.write(bytes)
bytes = bytearray()
filecounter += 1
if limit > 0 and filecounter >= limit:
break
sectorId += 1
sh = self.__imagestream.Sectors[sectorId]
def ReadVideoFrames(self, record: DirectoryRecord, destination, limit=0):
sectorId = record.ExtentLocation
filecounter = 0
framecounter = 0
bytes = bytearray()
sh = self.__imagestream.Sectors[sectorId]
while not (sh.Submode & Submodes.EOF):
if not (sh.Submode & Submodes.Audio):
s = self.__imagestream.ReadSector(sectorId)
if s.Data[0] == 0xF3:
pass
elif s.Data[0] == 0xF2:
bytes += s.Data
filename = os.path.join(destination, "{:03}/frame_{:04}.bin".format(filecounter, framecounter))
if not os.path.exists(os.path.dirname(filename)):
os.mkdir(os.path.dirname(filename))
with open(filename, "wb") as o:
o.write(bytes)
bytes = bytearray()
framecounter += 1
else:
bytes += s.Data
if (sh.Submode & Submodes.EOR):
filecounter += 1
framecounter = 0
if limit > 0 and filecounter >= limit:
break
sectorId += 1
sh = self.__imagestream.Sectors[sectorId]
@property
def VolumeDescriptors(self):
return self.__volumedescriptors
@property
def Files(self):
return [f for f in self.__rootDirectory.Children if not (f.FileFlags & FileFlags.Directory)]
if __name__ == '__main__':
with open("output/000/frame_0000.bin", "rb") as f:
scandata = f.read()
with open("config.json", "r") as f:
config = load(f)
j = JFIFFile(dict=config)
j.Decode(scandata[0x29:])