diff options
Diffstat (limited to 'test.py')
-rwxr-xr-x | test.py | 157 |
1 files changed, 148 insertions, 9 deletions
@@ -1,6 +1,7 @@ #!/usr/bin/python """ -CREATE TABLE content (package TEXT, version TEXT, architecture TEXT, filename TEXT, size INTEGER, hash TEXT); +CREATE TABLE package (package TEXT PRIMARY KEY, version TEXT, architecture TEXT); +CREATE TABLE content (package TEXT, filename TEXT, size INTEGER, function TEXT, hash TEXT, FOREIGN KEY (package) REFERENCES package(package)); CREATE INDEX content_package_index ON content (package); CREATE INDEX content_hash_index ON content (hash); """ @@ -12,6 +13,7 @@ import sqlite3 import struct import sys import tarfile +import zlib import apt_pkg import lzma @@ -91,6 +93,123 @@ class XzStream(object): else: self.buff += self.decomp.flush() +class MultiHash(object): + def __init__(self, *hashes): + self.hashes = hashes + + def update(self, data): + for hasher in self.hashes: + hasher.update(data) + +class HashBlacklist(object): + def __init__(self, hasher, blacklist=set()): + self.hasher = hasher + self.blacklist = blacklist + self.update = self.hasher.update + self.name = hasher.name + + def hexdigest(self): + digest = self.hasher.hexdigest() + if digest in self.blacklist: + return None + return digest + +class GzipDecompressor(object): + def __init__(self): + self.inbuffer = b"" + self.decompressor = None # zlib.decompressobj(-zlib.MAX_WBITS) + + def decompress(self, data): + if self.decompressor: + data = self.decompressor.decompress(data) + if not self.decompressor.unused_data: + return data + unused_data = self.decompressor.unused_data + self.decompressor = None + return data + self.decompress(unused_data) + self.inbuffer += data + skip = 10 + if len(self.inbuffer) < skip: + return b"" + if not self.inbuffer.startswith(b"\037\213\010"): + raise ValueError("gzip magic not found") + flag = ord(self.inbuffer[3]) + if flag & 4: + if len(self.inbuffer) < skip + 2: + return b"" + length, = struct.unpack("<H", self.inbuffer[skip:skip+2]) + skip += 2 + length + for field in (8, 16): + if flag & field: + length = self.inbuffer.find("\0", skip) + if length < 0: + return b"" + skip = length + 1 + if flag & 2: + skip += 2 + if len(self.inbuffer) < skip: + return b"" + data = self.inbuffer[skip:] + self.inbuffer = b"" + self.decompressor = zlib.decompressobj(-zlib.MAX_WBITS) + return self.decompress(data) + + @property + def unused_data(self): + if self.decompressor: + return self.decompressor.unused_data + else: + return self.inbuffer + + def flush(self): + if not self.decompressor: + return b"" + return self.decompressor.flush() + + def copy(self): + new = GzipDecompressor() + new.inbuffer = self.inbuffer + if self.decompressor: + new.decompressor = self.decompressor.copy() + return new + +class DecompressedHash(object): + def __init__(self, decompressor, hashobj): + self.decompressor = decompressor + self.hashobj = hashobj + + def update(self, data): + self.hashobj.update(self.decompressor.decompress(data)) + + def hexdigest(self): + if not hasattr(self.decompressor, "flush"): + return self.hashobj.hexdigest() + tmpdecomp = self.decompressor.copy() + data = tmpdecomp.flush() + tmphash = self.hashobj.copy() + tmphash.update(data) + return tmphash.hexdigest() + +class SuppressingHash(object): + def __init__(self, hashobj, exceptions=()): + self.hashobj = hashobj + self.exceptions = exceptions + + def update(self, data): + if self.hashobj: + try: + self.hashobj.update(data) + except self.exceptions: + self.hashobj = None + + def hexdigest(self): + if self.hashobj: + try: + return self.hashobj.hexdigest() + except self.exceptions: + self.hashobj = None + return None + def hash_file(hashobj, filelike, blocksize=65536): data = filelike.read(blocksize) while data: @@ -98,6 +217,21 @@ def hash_file(hashobj, filelike, blocksize=65536): data = filelike.read(blocksize) return hashobj +boring_sha512_hashes = set(( + # "" + "cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e", + # "\n" + "be688838ca8686e5c90689bf2ab585cef1137c999b48c70b92f67a5c34dc15697b5d11c982ed6d71be1e1e7f7b4e0733884aa97c3f7a339a8ed03577cf74be09")) + +def sha512_nontrivial(): + return HashBlacklist(hashlib.sha512(), boring_sha512_hashes) + +def gziphash(): + hashobj = DecompressedHash(GzipDecompressor(), hashlib.sha512()) + hashobj = SuppressingHash(hashobj, (ValueError, zlib.error)) + hashobj.name = "gzip_sha512" + return HashBlacklist(hashobj, boring_sha512_hashes) + def get_hashes(filelike): af = ArReader(filelike, lambda name: name.startswith("data.tar")) name, membersize = af.skiptillmember() @@ -115,8 +249,12 @@ def get_hashes(filelike): continue if not elem.isreg(): # excludes hard links as well continue - hasher = hash_file(hashlib.sha512(), tf.extractfile(elem)) - yield (elem.name, elem.size, hasher.hexdigest()) + hasher = MultiHash(sha512_nontrivial(), gziphash()) + hasher = hash_file(hasher, tf.extractfile(elem)) + for hashobj in hasher.hashes: + hashvalue = hashobj.hexdigest() + if hashvalue: + yield (elem.name, elem.size, hashobj.name, hashvalue) def main(): filename = sys.argv[1] @@ -125,21 +263,22 @@ def main(): db = sqlite3.connect("test.sqlite3") cur = db.cursor() - cur.execute("SELECT version FROM content WHERE package = ?;", (package,)) + cur.execute("SELECT version FROM package WHERE package = ?;", (package,)) versions = [tpl[0] for tpl in cur.fetchall()] versions.append(version) versions.sort(cmp=apt_pkg.version_compare) if versions[-1] != version: return # not the newest version + cur.execute("DELETE FROM package WHERE package = ?;", (package,)) cur.execute("DELETE FROM content WHERE package = ?;", (package,)) - #cur.execute("DELETE FROM content WHERE package = ? AND version = ? AND architecture = ?;", - # (package, version, architecture)) + cur.execute("INSERT INTO package (package, version, architecture) VALUES (?, ?, ?);", + (package, version, architecture)) with open(filename) as pkg: - for name, size, hexhash in get_hashes(pkg): + for name, size, function, hexhash in get_hashes(pkg): name = name.decode("utf8") - cur.execute("INSERT INTO content (package, version, architecture, filename, size, hash) VALUES (?, ?, ?, ?, ?, ?);", - (package, version, architecture, name, size, hexhash)) + cur.execute("INSERT INTO content (package, filename, size, function, hash) VALUES (?, ?, ?, ?, ?);", + (package, name, size, function, hexhash)) db.commit() if __name__ == "__main__": |