machfs/thing.py

592 lines
22 KiB
Python
Raw Normal View History

2018-09-24 12:27:07 +00:00
import struct
2018-09-30 13:54:16 +00:00
import collections
def _pad_up(size, factor):
x = size + factor - 1
return x - (x % factor)
2018-09-24 12:27:07 +00:00
def _split_bnode(buf, start):
"""Slice a btree node into records, including the node descriptor"""
ndFLink, ndBLink, ndType, ndNHeight, ndNRecs = struct.unpack_from('>LLBBH', buf, start)
offsets = list(reversed(struct.unpack_from('>%dH'%(ndNRecs+1), buf, start+512-2*(ndNRecs+1))))
starts = offsets[:-1]
stops = offsets[1:]
records = [bytes(buf[start+i_start:start+i_stop]) for (i_start, i_stop) in zip(starts, stops)]
return ndFLink, ndBLink, ndType, ndNHeight, records
2018-09-30 13:54:16 +00:00
def _dump_btree_recs(buf, start):
"""Walk an HFS B*-tree, returning an iterator of (key, value) tuples."""
2018-09-24 12:27:07 +00:00
# Get the header node
ndFLink, ndBLink, ndType, ndNHeight, (header_rec, unused_rec, map_rec) = _split_bnode(buf, start)
# Ask about the header record in the header node
bthDepth, bthRoot, bthNRecs, bthFNode, bthLNode, bthNodeSize, bthKeyLen, bthNNodes, bthFree = \
struct.unpack_from('>HLLLLHHLL', header_rec)
2018-10-01 12:38:17 +00:00
# print('btree', bthDepth, bthRoot, bthNRecs, bthFNode, bthLNode, bthNodeSize, bthKeyLen, bthNNodes, bthFree)
2018-09-24 12:27:07 +00:00
2018-09-30 13:54:16 +00:00
# And iterate through the linked list of leaf nodes
2018-09-24 12:27:07 +00:00
this_leaf = bthFNode
while True:
ndFLink, ndBLink, ndType, ndNHeight, records = _split_bnode(buf, start+512*this_leaf)
2018-09-30 13:54:16 +00:00
yield from records
2018-09-24 12:27:07 +00:00
if this_leaf == bthLNode:
break
this_leaf = ndFLink
2018-10-03 07:46:03 +00:00
def _pack_leaf_record(key, value): # works correctly
if len(value) & 1: value += b'\x00'
2018-10-03 07:46:03 +00:00
b = bytes([len(key)+1, 0, *key])
2018-09-30 13:54:16 +00:00
if len(b) & 1: b += bytes(1)
b += value
return b
def _pack_index_record(key, pointer):
2018-10-03 07:46:03 +00:00
key += bytes(0x24 - len(key))
value = struct.pack('>L', pointer)
return _pack_leaf_record(key, value)
2018-09-30 13:54:16 +00:00
def _will_fit_in_leaf_node(keyvals):
return len(keyvals) <= 2 # really must fix this!
def _will_fit_in_index_node(keyvals):
return len(keyvals) <= 8
2018-10-01 12:38:17 +00:00
def _bits(ntotal, nset):
nset = max(nset, 0)
nset = min(nset, ntotal)
a = b'\xFF' * (nset // 8)
c = b'\x00' * ((ntotal-nset) // 8)
if (len(a) + len(c)) * 8 < ntotal:
b = [b'\x00', b'\x80', b'\xC0', b'\xE0', b'\xF0', b'\xF8', b'\xFC', b'\xFE', b'\xFF'][nset % 8]
return b''.join([a,b,c])
else:
return b''.join([a,c])
2018-09-30 13:54:16 +00:00
class _Node:
2018-10-07 14:07:43 +00:00
def __init__(self, **kwargs):
self.records = []
self.ndFLink = self.ndBLink = self.ndType = self.ndNHeight = 0
self.__dict__.update(kwargs)
2018-09-30 13:54:16 +00:00
def __bytes__(self):
buf = bytearray(512)
next_left = 14
next_right = 510
for r in self.records:
if next_left + len(r) > next_right - 2:
raise ValueError('cannot fit these records in a B*-tree node')
buf[next_left:next_left+len(r)] = r
struct.pack_into('>H', buf, next_right, next_left)
next_left += len(r)
next_right -= 2
struct.pack_into('>H', buf, next_right, next_left) # offset of free space
struct.pack_into('>LLBBH', buf, 0,
2018-10-07 14:07:43 +00:00
self.ndFLink, self.ndBLink, self.ndType, self.ndNHeight&0xFF, len(self.records))
2018-09-30 13:54:16 +00:00
return bytes(buf)
2018-10-07 14:07:43 +00:00
def does_fit(self):
try:
self.__bytes__()
except ValueError:
return False
else:
return True
2018-09-30 13:54:16 +00:00
2018-10-07 14:07:43 +00:00
def _mkbtree(records, bthKeyLen):
nodelist = [] # append to this as we go
2018-09-30 13:54:16 +00:00
2018-10-07 14:24:57 +00:00
# pointers per index node, range 2-11
index_step = 8 # not really worth tuning
2018-09-30 13:54:16 +00:00
2018-10-07 14:07:43 +00:00
# First node is always a header node, with three records:
# header records, reserved record, bitmap record
headnode = _Node(ndType=1, ndNHeight=0, records=['header placeholder', bytes(128), 'bitmap placeholder'])
nodelist.append(headnode)
2018-09-30 13:54:16 +00:00
2018-10-07 14:24:57 +00:00
# Followed (in our implementation) by leaf nodes
2018-10-07 14:07:43 +00:00
bthNRecs = 0
bthRoot = 0
bthDepth = 0
for key, val in records:
bthNRecs += 1
bthRoot = 1
bthDepth = 1
packed = _pack_leaf_record(key, val)
if bthNRecs == 1:
nodelist.append(_Node(ndType=0xFF, ndNHeight=1))
nodelist[-1].records.append(packed)
if not nodelist[-1].does_fit():
nodelist[-1].records.pop()
nodelist.append(_Node(ndType=0xFF, ndNHeight=1, records=[packed]))
# Create index nodes (some sort of Btree, they tell me)
while len(nodelist) - bthRoot > 1:
nums = list(range(bthRoot, len(nodelist)))
groups = [nums[i:i+index_step] for i in range(0, len(nums), index_step)]
bthRoot = len(nodelist)
bthDepth = nodelist[-1].ndNHeight + 1
# each element of groups will become a record:
# it is currently a list of node indices to point to
for g in groups:
newnode = _Node(ndType=0, ndNHeight=bthDepth)
for idx in g:
b = nodelist[idx].records[0]
b = b[:1+b[0]]
b = b'\x25' + b[1:]
b += bytes(b[0]+1-len(b))
b += struct.pack('>L', idx)
assert len(b) == 42
newnode.records.append(b)
nodelist.append(newnode)
2018-09-30 13:54:16 +00:00
2018-10-07 14:07:43 +00:00
# Header node already has a 256-bit bitmap record (2048-bit)
# Add map nodes with 3952-bit bitmap recs to cover every node
2018-09-30 13:54:16 +00:00
bits_covered = 2048
2018-10-01 12:38:17 +00:00
mapnodes = []
2018-10-07 14:24:57 +00:00
while bits_covered < len(nodelist):
2018-10-07 14:07:43 +00:00
mapnode = _Node(ndType=2, ndNHeight=1)
2018-09-30 13:54:16 +00:00
nodelist.append(mapnode)
2018-10-01 12:38:17 +00:00
mapnodes.append(mapnode)
2018-10-07 14:07:43 +00:00
mapnode.records = [bytes(3952//8)]
bits_covered += len(mapnode.records[0]) * 8
2018-09-30 13:54:16 +00:00
2018-10-07 14:07:43 +00:00
# Populate the bitmap (1 = used)
headnode.records[2] = _bits(2048, len(nodelist))
for i, mnode in mapnodes:
nset = len(nodelist) - 2048 - i*3952
mnode.records = [_bits(3952, nset)]
# Run back and forth to join up one linked list for each type
2018-09-30 13:54:16 +00:00
most_recent = {}
for i, node in enumerate(nodelist):
node.ndBLink = most_recent.get(node.ndType, 0)
most_recent[node.ndType] = i
2018-10-03 07:46:03 +00:00
bthLNode = most_recent.get(0xFF, 0)
2018-09-30 13:54:16 +00:00
most_recent = {}
for i, node in reversed(list(enumerate(nodelist))):
node.ndFLink = most_recent.get(node.ndType, 0)
most_recent[node.ndType] = i
2018-10-03 07:46:03 +00:00
bthFNode = most_recent.get(0xFF, 0)
2018-10-01 12:38:17 +00:00
2018-10-07 14:07:43 +00:00
# Populate the first (header) record of the header node
2018-10-01 12:38:17 +00:00
bthNodeSize = 512
2018-10-07 14:07:43 +00:00
bthNNodes = len(nodelist); bthFree = 0
headnode.records[0] = struct.pack('>HLLLLHHLL76x',
2018-10-01 12:38:17 +00:00
bthDepth, bthRoot, bthNRecs, bthFNode, bthLNode,
bthNodeSize, bthKeyLen, bthNNodes, bthFree)
2018-09-30 13:54:16 +00:00
return b''.join(bytes(node) for node in nodelist)
def _catrec_sorter(b):
order = [
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,
0x20, 0x22, 0x23, 0x28, 0x29, 0x2a, 0x2b, 0x2c,
0x2f, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36,
0x37, 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e,
0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46,
0x47, 0x48, 0x58, 0x5a, 0x5e, 0x60, 0x67, 0x69,
0x6b, 0x6d, 0x73, 0x75, 0x77, 0x79, 0x7b, 0x7f,
0x8d, 0x8f, 0x91, 0x93, 0x96, 0x98, 0x9f, 0xa1,
0xa3, 0xa5, 0xa8, 0xaa, 0xab, 0xac, 0xad, 0xae,
0x54, 0x48, 0x58, 0x5a, 0x5e, 0x60, 0x67, 0x69,
0x6b, 0x6d, 0x73, 0x75, 0x77, 0x79, 0x7b, 0x7f,
0x8d, 0x8f, 0x91, 0x93, 0x96, 0x98, 0x9f, 0xa1,
0xa3, 0xa5, 0xa8, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3,
0x4c, 0x50, 0x5c, 0x62, 0x7d, 0x81, 0x9a, 0x55,
0x4a, 0x56, 0x4c, 0x4e, 0x50, 0x5c, 0x62, 0x64,
0x65, 0x66, 0x6f, 0x70, 0x71, 0x72, 0x7d, 0x89,
0x8a, 0x8b, 0x81, 0x83, 0x9c, 0x9d, 0x9e, 0x9a,
0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0x95,
0xbb, 0xbc, 0xbd, 0xbe, 0xbf, 0xc0, 0x52, 0x85,
0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8,
0xc9, 0xca, 0xcb, 0x57, 0x8c, 0xcc, 0x52, 0x85,
0xcd, 0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3, 0x26,
0x27, 0xd4, 0x20, 0x4a, 0x4e, 0x83, 0x87, 0x87,
0xd5, 0xd6, 0x24, 0x25, 0x2d, 0x2e, 0xd7, 0xd8,
0xa7, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf,
0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7,
0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef,
0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7,
0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff,
]
2018-10-03 07:46:03 +00:00
b = b[0] # we are only sorting keys!
return b[:4] + bytes(order[ch] for ch in b[5:])
def _suggest_allocblk_size(volsize, minalign):
min_nonalloc_blks = 6 # just for this estimation
retval = minalign
while volsize - min_nonalloc_blks*512 > retval*65536:
retval += minalign
return retval
2018-09-30 13:54:16 +00:00
class File:
def __init__(self):
self.type = b'????'
self.creator = b'????'
self.flags = 0 # help me!
self.x = 0 # where to put this spatially?
self.y = 0
self.locked = False
self.crdat = self.mddat = self.bkdat = 0
self.rsrc = bytearray()
self.data = bytearray()
def __str__(self):
return 'File %r/%r data=%db rsrc=%db' % (self.type, self.creator, len(self.data), len(self.rsrc))
class _AbstractFolder(dict):
def paths(self):
for name, child in self.items():
yield ((name,), child)
try:
childs_children = child.paths()
except AttributeError:
pass
else:
for each_path, each_child in childs_children:
yield (name,) + each_path, each_child
def __str__(self):
return 'Folder valence=%d' % len(self)
class Folder(_AbstractFolder):
def __init__(self):
super().__init__()
self.flags = 0 # help me!
self.x = 0 # where to put this spatially?
self.y = 0
self.crdat = self.mddat = self.bkdat = 0
2018-10-01 12:38:17 +00:00
def _chunkify(b, blksize):
for i in range(0, len(b), blksize):
ab = b[i:i+blksize]
if len(ab) < blksize: ab += bytes(blksize-len(ab))
yield ab
class _TempWrapper:
def __init__(self, of):
self.of = of
2018-09-30 13:54:16 +00:00
class Volume(_AbstractFolder):
def __init__(self):
super().__init__()
self.bootblocks = bytes(1024) # optional; for booting HFS volumes
self.drCrDate = 0 # date and time of volume creation
self.drLsMod = 0 # date and time of last modification
self.drAtrb = 1<<8 # volume attributes (hwlock, swlock, CLEANUNMOUNT, badblocks)
2018-09-30 13:54:16 +00:00
self.drVN = b'Untitled' # volume name Pascal string
self.drVolBkUp = 0 # date and time of last backup
self.drVSeqNum = 0 # volume backup sequence number
self.drFndrInfo = bytes(32) # information used by the Finder
def read(self, from_volume):
self._dirtree = {}
self.bootblocks = from_volume[:1024]
drSigWord, self.drCrDate, self.drLsMod, self.drAtrb, drNmFls, \
drVBMSt, drAllocPtr, drNmAlBlks, drAlBlkSiz, drClpSiz, drAlBlSt, \
drNxtCNID, drFreeBks, self.drVN, self.drVolBkUp, self.drVSeqNum, \
drWrCnt, drXTClpSiz, drCTClpSiz, drNmRtDirs, drFilCnt, drDirCnt, \
self.drFndrInfo, drVCSize, drVBMCSize, drCtlCSize, \
drXTFlSize, drXTExtRec_Start, drXTExtRec_Cnt, _, _, _, _, \
drCTFlSize, drCTExtRec_Start, drCTExtRec_Cnt, _, _, _, _, \
= struct.unpack_from('>2sLLHHHHHLLHLH28pLHLLLHLL32sHHHL6HL6H', from_volume, 1024)
extoflow = {}
for rec in _dump_btree_recs(from_volume, 512*drAlBlSt + drAlBlkSiz*drXTExtRec_Start):
if rec[0] != 7: continue
# print(key, val)
pass
cnids = {}
childrenof = collections.defaultdict(dict)
for rec in _dump_btree_recs(from_volume, 512*drAlBlSt + drAlBlkSiz*drCTExtRec_Start):
# create a directory tree from the catalog file
rec_len = rec[0]
2018-10-03 07:46:03 +00:00
if rec_len == 0: continue
key = rec[2:1+rec_len]
2018-09-30 13:54:16 +00:00
val = rec[_pad_up(1+rec_len, 2):]
2018-10-03 07:46:03 +00:00
ckrParID, namelen = struct.unpack_from('>LB', key)
ckrCName = key[5:5+namelen]
2018-09-30 13:54:16 +00:00
2018-10-03 07:46:03 +00:00
datatype = (None, 'dir', 'file', 'dthread', 'fthread')[val[0]]
2018-09-30 13:54:16 +00:00
datarec = val[2:]
print(datatype + '\t' + repr(key))
2018-10-03 07:46:03 +00:00
print('\t', datarec)
print()
2018-10-03 07:46:03 +00:00
if datatype == 'dir':
2018-09-30 13:54:16 +00:00
dirFlags, dirVal, dirDirID, dirCrDat, dirMdDat, dirBkDat, dirUsrInfo, dirFndrInfo \
= struct.unpack_from('>HHLLLL16s16s', datarec)
f = Folder()
cnids[dirDirID] = f
childrenof[ckrParID][ckrCName] = f
f.crdat, f.mddat, f.bkdat = dirCrDat, dirMdDat, dirBkDat
2018-10-03 07:46:03 +00:00
elif datatype == 'file':
2018-09-30 13:54:16 +00:00
filFlags, filTyp, filUsrWds, filFlNum, \
filStBlk, filLgLen, filPyLen, \
filRStBlk, filRLgLen, filRPyLen, \
filCrDat, filMdDat, filBkDat, \
filFndrInfo, filClpSize, \
filExtRec, filRExtRec, \
= struct.unpack_from('>BB16sLHLLHLLLLL16sH12s12sxxxx', datarec)
f = File()
cnids[filFlNum] = f
childrenof[ckrParID][ckrCName] = f
f.crdat, f.mddat, f.bkdat = filCrDat, filMdDat, filBkDat
f.type, f.creator, f.flags, f.x, f.y = struct.unpack_from('>4s4sHHH', filUsrWds)
for fork, length, extrec in [('data', filLgLen, filExtRec), ('rsrc', filRLgLen, filRExtRec)]:
accum = bytearray()
extrec = list(struct.unpack('>HHHHHH', extrec))
extrec = list(zip(extrec[::2], extrec[1::2]))
for extstart, extlength in extrec:
if extlength == 0: continue
astart = 512*drAlBlSt + drAlBlkSiz*extstart
astop = astart + drAlBlkSiz*extlength
accum.extend(from_volume[astart:astop])
del accum[length:] # logical length can be less than a number of blocks
if len(accum) != length:
raise ValueError('need to consult extents overflow file')
setattr(f, fork, accum)
2018-10-01 12:38:17 +00:00
# elif datatype == 3:
# print('dir thread:', rec)
# elif datatype == 4:
# print('fil thread:', rec)
2018-09-30 13:54:16 +00:00
for parent, children in childrenof.items():
if parent != 1: # not the mythical parent of root!
cnids[parent].update(children)
self.update(cnids[2])
2018-10-03 07:46:03 +00:00
def write(self, size=800*1024, align=512):
if align < 512 or align % 512:
raise ValueError('align must be multiple of 512')
if size < 400 * 1024 or size % 512:
raise ValueError('size must be a multiple of 512b and >= 800K')
# overall layout:
# 1. two boot blocks (offset=0)
# 2. one volume control block (offset=2)
# 3. some bitmap blocks (offset=3)
# 4. many allocation blocks
# 5. duplicate VCB (offset=-2)
# 6. unused block (offset=-1)
# so we will our best guess at these variables as we go:
# drNmAlBlks, drAlBlkSiz, drAlBlSt
2018-09-30 13:54:16 +00:00
2018-10-03 07:46:03 +00:00
# the smallest possible alloc block size
drAlBlkSiz = _suggest_allocblk_size(size, align)
2018-09-30 13:54:16 +00:00
2018-10-03 07:46:03 +00:00
# how many blocks will we use for the bitmap?
# (cheat by adding blocks to align the alloc area)
bitmap_blk_cnt = 0
while (size - (5+bitmap_blk_cnt)*512) // drAlBlkSiz > bitmap_blk_cnt*512*8:
bitmap_blk_cnt += 1
while (3+bitmap_blk_cnt)*512 % align:
bitmap_blk_cnt += 1
2018-09-30 13:54:16 +00:00
2018-10-01 12:38:17 +00:00
# decide how many alloc blocks there will be
2018-10-03 07:46:03 +00:00
drNmAlBlks = (size - (5+bitmap_blk_cnt)*512) // drAlBlkSiz
2018-10-01 12:38:17 +00:00
blkaccum = []
2018-09-30 13:54:16 +00:00
2018-10-01 12:38:17 +00:00
# <<< put the empty extents overflow file in here >>>
2018-10-03 08:28:02 +00:00
extoflowfile = _mkbtree([], 7)
2018-10-03 07:46:03 +00:00
# also need to do some cleverness to ensure that this gets picked up...
drXTFlSize = len(extoflowfile)
drXTExtRec_Start = len(blkaccum)
blkaccum.extend(_chunkify(extoflowfile, drAlBlkSiz))
drXTExtRec_Cnt = len(blkaccum) - drXTExtRec_Start
2018-10-01 12:38:17 +00:00
# write all the files in the volume
topwrap = _TempWrapper(self)
topwrap.path = (self.drVN,)
topwrap.cnid = 2
2018-09-30 13:54:16 +00:00
2018-10-01 12:38:17 +00:00
godwrap = _TempWrapper(None)
godwrap.cnid = 1
path2wrap = {(): godwrap, (self.drVN,): topwrap}
drNxtCNID = 16
for path, obj in self.paths():
path = (self.drVN,) + path
wrap = _TempWrapper(obj)
path2wrap[path] = wrap
wrap.path = path
wrap.cnid = drNxtCNID; drNxtCNID += 1
2018-09-30 13:54:16 +00:00
if isinstance(obj, File):
2018-10-03 07:58:39 +00:00
wrap.dfrk = wrap.rfrk = (0, 0)
2018-10-01 12:38:17 +00:00
if obj.data:
pre = len(blkaccum)
blkaccum.extend(_chunkify(obj.data, drAlBlkSiz))
2018-10-03 07:58:39 +00:00
wrap.dfrk = (pre, len(blkaccum)-pre)
2018-10-01 12:38:17 +00:00
if obj.rsrc:
pre = len(blkaccum)
blkaccum.extend(_chunkify(obj.rsrc, drAlBlkSiz))
2018-10-03 07:58:39 +00:00
wrap.rfrk = (pre, len(blkaccum)-pre)
2018-10-01 12:38:17 +00:00
catalog = [] # (key, value) tuples
drFilCnt = 0
drDirCnt = -1 # to exclude the root directory
2018-10-01 12:38:17 +00:00
for path, wrap in path2wrap.items():
if wrap.cnid == 1: continue
obj = wrap.of
mainrec_key = struct.pack('>LB', path2wrap[path[:-1]].cnid, len(path[-1])) + path[-1]
if isinstance(wrap.of, File):
drFilCnt += 1
cdrType = 2
2018-10-03 08:28:02 +00:00
filFlags = 1 << 1 # file thread record exists, but is not locked, nor "file record is used"
2018-09-30 13:54:16 +00:00
filTyp = 0
filUsrWds = struct.pack('>4s4sHHHxxxxxx', obj.type, obj.creator, obj.flags, obj.x, obj.y)
2018-10-01 12:38:17 +00:00
filFlNum = wrap.cnid
2018-10-03 08:28:02 +00:00
filStBlk, filLgLen, filPyLen = wrap.dfrk[0], len(obj.data), _pad_up(len(obj.data), drAlBlkSiz)
filRStBlk, filRLgLen, filRPyLen = wrap.rfrk[0], len(obj.rsrc), _pad_up(len(obj.rsrc), drAlBlkSiz)
2018-09-30 13:54:16 +00:00
filCrDat, filMdDat, filBkDat = obj.crdat, obj.mddat, obj.bkdat
filFndrInfo = bytes(16) # todo must fix
filClpSize = 0 # todo must fix
2018-10-03 07:58:39 +00:00
filExtRec = struct.pack('>HHHHHH', *wrap.dfrk, 0, 0, 0, 0)
filRExtRec = struct.pack('>HHHHHH', *wrap.rfrk, 0, 0, 0, 0)
2018-09-30 13:54:16 +00:00
2018-10-01 12:38:17 +00:00
mainrec_val = struct.pack('>BxBB16sLHLLHLLLLL16sH12s12sxxxx',
cdrType, \
2018-09-30 13:54:16 +00:00
filFlags, filTyp, filUsrWds, filFlNum, \
filStBlk, filLgLen, filPyLen, \
filRStBlk, filRLgLen, filRPyLen, \
filCrDat, filMdDat, filBkDat, \
filFndrInfo, filClpSize, \
filExtRec, filRExtRec, \
2018-10-01 12:38:17 +00:00
)
else: # assume directory
drDirCnt += 1
cdrType = 1
dirFlags = 0 # must fix
dirVal = len(wrap.of)
dirDirID = wrap.cnid
dirCrDat, dirMdDat, dirBkDat = (0,0,0) if obj is self else (obj.crdat, obj.mddat, obj.bkdat)
dirUsrInfo = bytes(16)
dirFndrInfo = bytes(16)
mainrec_val = struct.pack('>BxHHLLLL16s16sxxxxxxxxxxxxxxxx',
2018-10-01 12:38:17 +00:00
cdrType, dirFlags, dirVal, dirDirID,
dirCrDat, dirMdDat, dirBkDat,
dirUsrInfo, dirFndrInfo,
)
catalog.append((mainrec_key, mainrec_val))
2018-10-03 07:46:03 +00:00
thdrec_key = struct.pack('>Lx', wrap.cnid)
2018-10-01 12:38:17 +00:00
thdrec_val_type = 4 if isinstance(wrap.of, File) else 3
thdrec_val = struct.pack('>BxxxxxxxxxLB', thdrec_val_type, path2wrap[path[:-1]].cnid, len(path[-1])) + path[-1]
catalog.append((thdrec_key, thdrec_val))
2018-10-03 07:46:03 +00:00
catalog.sort(key=_catrec_sorter)
2018-10-01 12:38:17 +00:00
# now it is time to sort these records! fuck that shit...
# catalog.sort...
2018-10-03 08:28:02 +00:00
catalogfile = _mkbtree(catalog, 37)
2018-10-01 12:38:17 +00:00
# also need to do some cleverness to ensure that this gets picked up...
drCTFlSize = len(catalogfile)
drCTExtRec_Start = len(blkaccum)
blkaccum.extend(_chunkify(catalogfile, drAlBlkSiz))
drCTExtRec_Cnt = len(blkaccum) - drCTExtRec_Start
2018-10-03 07:46:03 +00:00
if len(blkaccum) > drNmAlBlks:
raise ValueError('Does not fit!')
2018-10-01 12:38:17 +00:00
# Create the bitmap of free volume allocation blocks
2018-10-03 07:46:03 +00:00
bitmap = _bits(bitmap_blk_cnt * 512 * 8, len(blkaccum))
2018-10-01 12:38:17 +00:00
# Create the Volume Information Block
drSigWord = b'BD'
drNmFls = sum(isinstance(x, File) for x in self.values())
drNmRtDirs = sum(not isinstance(x, File) for x in self.values())
drVBMSt = 3 # first block of volume bitmap
drAllocPtr = 0
2018-10-01 12:38:17 +00:00
drClpSiz = drXTClpSiz = drCTClpSiz = drAlBlkSiz
2018-10-03 07:46:03 +00:00
drAlBlSt = 3 + bitmap_blk_cnt
2018-10-01 12:38:17 +00:00
drFreeBks = drNmAlBlks - len(blkaccum)
drWrCnt = 0 # ????volume write count
2018-10-03 08:28:02 +00:00
drVCSize = drVBMCSize = drCtlCSize = 0
2018-10-01 12:38:17 +00:00
2018-10-03 07:46:03 +00:00
vib = struct.pack('>2sLLHHHHHLLHLH28pLHLLLHLL32sHHHLHHxxxxxxxxLHHxxxxxxxx',
2018-10-01 12:38:17 +00:00
drSigWord, self.drCrDate, self.drLsMod, self.drAtrb, drNmFls,
drVBMSt, drAllocPtr, drNmAlBlks, drAlBlkSiz, drClpSiz, drAlBlSt,
drNxtCNID, drFreeBks, self.drVN, self.drVolBkUp, self.drVSeqNum,
drWrCnt, drXTClpSiz, drCTClpSiz, drNmRtDirs, drFilCnt, drDirCnt,
self.drFndrInfo, drVCSize, drVBMCSize, drCtlCSize,
drXTFlSize, drXTExtRec_Start, drXTExtRec_Cnt,
drCTFlSize, drCTExtRec_Start, drCTExtRec_Cnt,
)
2018-10-03 07:46:03 +00:00
vib += bytes(512-len(vib))
2018-10-01 12:38:17 +00:00
assert all(len(x) == drAlBlkSiz for x in blkaccum)
2018-10-03 07:46:03 +00:00
finalchunks = [self.bootblocks, vib, bitmap, *blkaccum]
finalchunks.append(bytes(size - sum(len(x) for x in finalchunks) - 2*512))
finalchunks.append(vib)
finalchunks.append(bytes(512))
2018-10-01 12:38:17 +00:00
return b''.join(finalchunks)