2007-12-14 16:26:30 -07:00
|
|
|
#! /usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2008-07-08 17:52:28 -06:00
|
|
|
## 2008 Massive Blowout
|
|
|
|
|
2007-12-14 16:26:30 -07:00
|
|
|
import sys
|
2007-12-30 23:30:23 -07:00
|
|
|
import struct
|
2007-12-14 16:26:30 -07:00
|
|
|
|
2009-08-18 12:23:13 -06:00
|
|
|
stdch = (u'␀·········␊··␍··'
|
|
|
|
u'················'
|
|
|
|
u' !"#$%&\'()*+,-./'
|
|
|
|
u'0123456789:;<=>?'
|
|
|
|
u'@ABCDEFGHIJKLMNO'
|
|
|
|
u'PQRSTUVWXYZ[\]^_'
|
|
|
|
u'`abcdefghijklmno'
|
|
|
|
u'pqrstuvwxyz{|}~·'
|
|
|
|
u'················'
|
|
|
|
u'················'
|
|
|
|
u'················'
|
|
|
|
u'················'
|
|
|
|
u'················'
|
|
|
|
u'················'
|
|
|
|
u'················'
|
|
|
|
u'················')
|
|
|
|
|
|
|
|
decch = (u'␀␁␂␃␄␅␆␇␈␉␊␋␌␍␎␏'
|
|
|
|
u'␐␑␒␓␔␕␖␗␘␙␚·····'
|
|
|
|
u'␠!"#$%&\'()*+,-./'
|
|
|
|
u'0123456789:;<=>?'
|
|
|
|
u'@ABCDEFGHIJKLMNO'
|
|
|
|
u'PQRSTUVWXYZ[\]^_'
|
|
|
|
u'`abcdefghijklmno'
|
|
|
|
u'pqrstuvwxyz{|}~␡'
|
|
|
|
u'················'
|
|
|
|
u'················'
|
|
|
|
u'················'
|
|
|
|
u'················'
|
|
|
|
u'················'
|
|
|
|
u'················'
|
|
|
|
u'················'
|
|
|
|
u'················')
|
|
|
|
|
|
|
|
cgach = (u'␀☺☻♥♦♣♠•◘○◙♂♀♪♫☼'
|
|
|
|
u'►◄↕‼¶§▬↨↑↓→←∟↔▲▼'
|
2011-07-02 15:04:55 -06:00
|
|
|
u' !"#$%&\'()*+,-./'
|
2009-08-18 12:23:13 -06:00
|
|
|
u'0123456789:;<=>?'
|
|
|
|
u'@ABCDEFGHIJKLMNO'
|
|
|
|
u'PQRSTUVWXYZ[\]^_'
|
|
|
|
u'`abcdefghijklmno'
|
|
|
|
u'pqrstuvwxyz{|}~⌂'
|
|
|
|
u'ÇüéâäàåçêëèïîìÄÅ'
|
|
|
|
u'ÉæÆôöòûùÿÖÜ¢£¥₧ƒ'
|
|
|
|
u'áíóúñѪº¿⌐¬½¼¡«»'
|
|
|
|
u'░▒▓│┤╡╢╖╕╣║╗╝╜╛┐'
|
|
|
|
u'└┴┬├─┼╞╟╚╔╩╦╠═╬╧'
|
|
|
|
u'╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀'
|
|
|
|
u'αßΓπΣσµτΦΘΩδ∞φε∩'
|
|
|
|
u'≡±≥≤⌠⌡÷≈°∙·√ⁿ²■¤')
|
|
|
|
|
|
|
|
shpch = (u'␀☺☻♥♦♣♠•◘○◙♂♀♪♫☼'
|
|
|
|
u'►◄↕‼¶§▬↨↑↓→←∟↔▲▼'
|
|
|
|
u'␣!"#$%&\'()*+,-./'
|
|
|
|
u'0123456789:;<=>?'
|
|
|
|
u'@ABCDEFGHIJKLMNO'
|
|
|
|
u'PQRSTUVWXYZ[\]^_'
|
|
|
|
u'`abcdefghijklmno'
|
|
|
|
u'pqrstuvwxyz{|}~⌂'
|
|
|
|
u'ÇüéâäàåçêëèïîìÄÅ'
|
|
|
|
u'ÉæÆôöòûùÿÖÜ¢£¥₧ƒ'
|
|
|
|
u'áíóúñѪº¿⌐¬½¼¡«»'
|
|
|
|
u'░▒▓│┤╡╢╖╕╣║╗╝╜╛┐'
|
|
|
|
u'└┴┬├─┼╞╟╚╔╩╦╠═╬╧'
|
|
|
|
u'╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀'
|
|
|
|
u'αßΓπΣσµτΦΘΩδ∞φε∩'
|
|
|
|
u'≡±≥≤⌠⌡÷≈°∙·√ⁿ²■¤')
|
|
|
|
|
|
|
|
|
2007-12-14 16:26:30 -07:00
|
|
|
|
|
|
|
def unpack(fmt, buf):
|
|
|
|
"""Unpack buf based on fmt, return the rest as a string."""
|
|
|
|
|
|
|
|
size = struct.calcsize(fmt)
|
2008-01-18 19:09:09 -07:00
|
|
|
vals = struct.unpack(fmt, str(buf[:size]))
|
2007-12-14 16:26:30 -07:00
|
|
|
return vals + (buf[size:],)
|
|
|
|
|
|
|
|
|
2008-01-18 19:09:09 -07:00
|
|
|
class HexDumper:
|
|
|
|
def __init__(self, fd=sys.stdout):
|
|
|
|
self.fd = fd
|
|
|
|
self.offset = 0
|
|
|
|
self.buf = []
|
|
|
|
|
|
|
|
def _to_printable(self, c):
|
|
|
|
if not c:
|
2009-08-18 12:23:13 -06:00
|
|
|
return u'◌'
|
2008-01-18 19:09:09 -07:00
|
|
|
else:
|
2009-08-18 12:23:13 -06:00
|
|
|
return cgach[ord(c)]
|
|
|
|
|
2007-12-14 16:26:30 -07:00
|
|
|
|
2009-08-18 12:23:13 -06:00
|
|
|
def write(self, what):
|
|
|
|
self.fd.write(what.encode('utf-8'))
|
2007-12-14 16:26:30 -07:00
|
|
|
|
2008-01-18 19:09:09 -07:00
|
|
|
def _flush(self):
|
|
|
|
if not self.buf:
|
|
|
|
return
|
|
|
|
|
|
|
|
o = []
|
|
|
|
for c in self.buf:
|
|
|
|
if c:
|
2009-08-18 12:23:13 -06:00
|
|
|
o.append(u'%02x' % ord(c))
|
2008-01-18 19:09:09 -07:00
|
|
|
else:
|
2009-08-18 12:23:13 -06:00
|
|
|
o.append(u'--')
|
|
|
|
o += ([u' '] * (16 - len(self.buf)))
|
2008-01-18 19:09:09 -07:00
|
|
|
p = [self._to_printable(c) for c in self.buf]
|
|
|
|
|
2009-08-18 12:23:13 -06:00
|
|
|
self.write(u'%08x ' % self.offset)
|
2007-12-14 16:26:30 -07:00
|
|
|
|
2009-08-18 12:23:13 -06:00
|
|
|
self.write(u' '.join(o[:8]))
|
|
|
|
self.write(u' ')
|
|
|
|
self.write(u' '.join(o[8:]))
|
2007-12-14 16:26:30 -07:00
|
|
|
|
2009-08-18 12:23:13 -06:00
|
|
|
self.write(u' ┆')
|
2007-12-14 16:26:30 -07:00
|
|
|
|
2009-08-18 12:23:13 -06:00
|
|
|
self.write(u''.join(p))
|
2007-12-14 16:26:30 -07:00
|
|
|
|
2009-08-18 12:23:13 -06:00
|
|
|
self.write(u'┆\n')
|
2007-12-14 16:26:30 -07:00
|
|
|
|
2009-08-18 12:23:13 -06:00
|
|
|
self.offset += len(self.buf)
|
2008-01-18 19:09:09 -07:00
|
|
|
self.buf = []
|
2007-12-14 16:26:30 -07:00
|
|
|
|
2008-01-18 19:09:09 -07:00
|
|
|
def dump_chr(self, c):
|
|
|
|
self.buf.append(c)
|
|
|
|
if len(self.buf) == 16:
|
|
|
|
self._flush()
|
|
|
|
|
|
|
|
def dump_drop(self):
|
|
|
|
self.buf.append(None)
|
|
|
|
if len(self.buf) == 16:
|
|
|
|
self._flush()
|
|
|
|
|
|
|
|
def finish(self):
|
|
|
|
self._flush()
|
2009-08-18 12:23:13 -06:00
|
|
|
self.write('%08x\n' % self.offset)
|
2008-01-18 19:09:09 -07:00
|
|
|
|
|
|
|
|
|
|
|
def hexdump(buf, f=sys.stdout):
|
|
|
|
"Print a hex dump of buf"
|
2007-12-14 16:26:30 -07:00
|
|
|
|
2008-01-18 19:09:09 -07:00
|
|
|
d = HexDumper()
|
2007-12-14 16:26:30 -07:00
|
|
|
|
2008-01-18 19:09:09 -07:00
|
|
|
for c in buf:
|
|
|
|
d.dump_chr(c)
|
|
|
|
d.finish()
|
2007-12-14 16:26:30 -07:00
|
|
|
|
|
|
|
|
|
|
|
def cstring(buf):
|
|
|
|
"Return buf if buf were a C-style (NULL-terminate) string"
|
|
|
|
|
|
|
|
i = buf.index('\0')
|
|
|
|
return buf[:i]
|
|
|
|
|
|
|
|
|
|
|
|
def md5sum(txt):
|
|
|
|
return md5.new(txt).hexdigest()
|
|
|
|
|
|
|
|
|
|
|
|
def assert_equal(a, b):
|
|
|
|
assert a == b, ('%r != %r' % (a, b))
|
|
|
|
|
|
|
|
|
|
|
|
def assert_in(a, *b):
|
|
|
|
assert a in b, ('%r not in %r' % (a, b))
|
|
|
|
|
|
|
|
|
|
|
|
##
|
2008-07-15 16:29:34 -06:00
|
|
|
## Binary and other base conversions
|
2007-12-14 16:26:30 -07:00
|
|
|
##
|
|
|
|
|
2008-01-03 12:25:54 -07:00
|
|
|
class BitVector:
|
2007-12-21 17:08:00 -07:00
|
|
|
def __init__(self, i=0, length=None):
|
2009-04-03 14:20:08 -06:00
|
|
|
try:
|
2008-07-08 17:52:28 -06:00
|
|
|
self._val = 0
|
|
|
|
for c in i:
|
|
|
|
self._val <<= 8
|
|
|
|
self._val += ord(c)
|
|
|
|
if length is not None:
|
|
|
|
self._len = length
|
|
|
|
else:
|
|
|
|
self._len = len(i) * 8
|
2009-04-03 14:20:08 -06:00
|
|
|
except TypeError:
|
|
|
|
self._val = i
|
|
|
|
if length is not None:
|
|
|
|
self._len = length
|
|
|
|
else:
|
|
|
|
self._len = 0
|
|
|
|
while i > 0:
|
|
|
|
i >>= 1
|
|
|
|
self._len += 1
|
2007-12-14 16:26:30 -07:00
|
|
|
|
|
|
|
def __len__(self):
|
|
|
|
return self._len
|
|
|
|
|
|
|
|
def __getitem__(self, idx):
|
|
|
|
if idx > self._len:
|
|
|
|
raise IndexError()
|
|
|
|
idx = self._len - idx
|
|
|
|
return int((self._val >> idx) & 1)
|
|
|
|
|
|
|
|
def __getslice__(self, a, b):
|
|
|
|
if b > self._len:
|
|
|
|
b = self._len
|
|
|
|
i = self._val >> (self._len - b)
|
|
|
|
l = b - a
|
|
|
|
mask = (1 << l) - 1
|
2008-01-23 17:04:41 -07:00
|
|
|
return BitVector(i & mask, length=l)
|
2007-12-14 16:26:30 -07:00
|
|
|
|
|
|
|
def __iter__(self):
|
2008-07-08 17:52:28 -06:00
|
|
|
"""Iterate from LSB to MSB"""
|
|
|
|
|
2007-12-14 16:26:30 -07:00
|
|
|
v = self._val
|
|
|
|
for i in xrange(self._len):
|
|
|
|
yield int(v & 1)
|
|
|
|
v >>= 1
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
r = ''
|
|
|
|
v = self._val
|
|
|
|
i = self._len
|
|
|
|
while i > 8:
|
|
|
|
o = ((v >> (i - 8)) & 0xFF)
|
|
|
|
r += chr(o)
|
|
|
|
i -= 8
|
|
|
|
if i > 0:
|
|
|
|
o = v & ((1 << i) - 1)
|
|
|
|
r += chr(o)
|
|
|
|
return r
|
|
|
|
|
|
|
|
def __int__(self):
|
|
|
|
return self._val
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
l = list(self)
|
|
|
|
l.reverse()
|
2008-01-23 17:04:41 -07:00
|
|
|
return '<BitVector ' + ''.join(str(x) for x in l) + '>'
|
2007-12-14 16:26:30 -07:00
|
|
|
|
2007-12-21 17:08:00 -07:00
|
|
|
def __add__(self, i):
|
2008-01-23 17:04:41 -07:00
|
|
|
if isinstance(i, BitVector):
|
2007-12-21 17:08:00 -07:00
|
|
|
l = len(self) + len(i)
|
|
|
|
v = (int(self) << len(i)) + int(i)
|
2008-01-23 17:04:41 -07:00
|
|
|
return BitVector(v, l)
|
2007-12-21 17:08:00 -07:00
|
|
|
else:
|
|
|
|
raise ValueError("Can't extend with this type yet")
|
|
|
|
|
2008-07-08 17:52:28 -06:00
|
|
|
def bitstr(self):
|
|
|
|
bits = [str(x) for x in self]
|
|
|
|
bits.reverse()
|
|
|
|
return ''.join(bits)
|
|
|
|
|
|
|
|
|
|
|
|
def bin(i, bits=None):
|
|
|
|
"""Return the binary representation of i"""
|
|
|
|
|
|
|
|
return BitVector(i, bits).bitstr()
|
2007-12-21 17:08:00 -07:00
|
|
|
|
|
|
|
|
2008-07-14 16:27:45 -06:00
|
|
|
def unhex(s):
|
|
|
|
"""Decode a string as hex, stripping whitespace first"""
|
|
|
|
|
|
|
|
return [ord(i) for i in s.replace(' ', '').decode('hex')]
|
|
|
|
|
|
|
|
|
2008-07-15 16:29:34 -06:00
|
|
|
def pp(value, bits=16):
|
|
|
|
hexfmt = '%%0%dx' % (bits / 4)
|
|
|
|
return '%6d 0x%s %s' % (value, (hexfmt % value), bin(value, bits))
|
|
|
|
|
2008-01-23 17:04:41 -07:00
|
|
|
##
|
|
|
|
## Codecs
|
|
|
|
##
|
|
|
|
import codecs
|
2009-06-03 11:14:54 -06:00
|
|
|
import string
|
|
|
|
|
|
|
|
b64alpha = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
|
|
|
|
|
|
|
|
def from_b64(s, alphabet, codec='base64'):
|
|
|
|
tr = string.maketrans(alphabet, b64alpha)
|
|
|
|
t = s.translate(tr)
|
|
|
|
return t.decode(codec)
|
2008-01-23 17:04:41 -07:00
|
|
|
|
|
|
|
class Esab64Codec(codecs.Codec):
|
|
|
|
"""Little-endian version of base64."""
|
|
|
|
|
|
|
|
## This could be made nicer by better conforming to the codecs.Codec
|
|
|
|
## spec. For instance, raising the appropriate exceptions.
|
|
|
|
##
|
|
|
|
## Using BitVector makes the code very readable, but it is probably
|
|
|
|
## slow.
|
|
|
|
|
|
|
|
b64_chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
|
|
|
|
def decode(self, input, errors='strict'):
|
|
|
|
r = []
|
|
|
|
for i in range(0, len(input), 4):
|
|
|
|
v = BitVector()
|
|
|
|
for c in input[i:i+4]:
|
|
|
|
if c in ('=', ' ', '\n'):
|
|
|
|
break
|
|
|
|
v += BitVector(self.b64_chars.index(c), 6)
|
|
|
|
|
|
|
|
# Normal base64 would start at the beginning
|
|
|
|
b = (v[10:12] + v[ 0: 6] +
|
|
|
|
v[14:18] + v[ 6:10] +
|
|
|
|
v[18:24] + v[12:14])
|
|
|
|
|
|
|
|
r.append(str(b))
|
|
|
|
return ''.join(r), len(input)
|
|
|
|
|
|
|
|
def encode(self, input, errors='strict'):
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
|
|
|
|
class Esab64StreamWriter(Esab64Codec, codecs.StreamWriter):
|
|
|
|
pass
|
|
|
|
|
|
|
|
class Esab64StreamReader(Esab64Codec, codecs.StreamReader):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def _registry(encoding):
|
|
|
|
if encoding == 'esab64':
|
|
|
|
c = Esab64Codec()
|
|
|
|
return (c.encode, c.decode,
|
|
|
|
Esab64StreamReader, Esab64StreamWriter)
|
|
|
|
|
|
|
|
codecs.register(_registry)
|