2019-01-22 18:54:17 +01:00
|
|
|
import os
|
|
|
|
import json
|
|
|
|
import binascii
|
|
|
|
import logging
|
|
|
|
import typing
|
|
|
|
import asyncio
|
2019-02-15 00:19:01 +01:00
|
|
|
from collections import OrderedDict
|
2019-01-22 18:54:17 +01:00
|
|
|
from cryptography.hazmat.primitives.ciphers.algorithms import AES
|
|
|
|
from lbrynet.blob import MAX_BLOB_SIZE
|
|
|
|
from lbrynet.blob.blob_info import BlobInfo
|
2019-03-31 01:17:42 +01:00
|
|
|
from lbrynet.blob.blob_file import AbstractBlob, BlobFile
|
2019-01-22 18:54:17 +01:00
|
|
|
from lbrynet.cryptoutils import get_lbry_hash_obj
|
|
|
|
from lbrynet.error import InvalidStreamDescriptorError
|
|
|
|
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
def format_sd_info(stream_name: str, key: str, suggested_file_name: str, stream_hash: str,
|
|
|
|
blobs: typing.List[typing.Dict]) -> typing.Dict:
|
|
|
|
return {
|
|
|
|
"stream_type": "lbryfile",
|
|
|
|
"stream_name": stream_name,
|
|
|
|
"key": key,
|
|
|
|
"suggested_file_name": suggested_file_name,
|
|
|
|
"stream_hash": stream_hash,
|
|
|
|
"blobs": blobs
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def random_iv_generator() -> typing.Generator[bytes, None, None]:
|
|
|
|
while 1:
|
|
|
|
yield os.urandom(AES.block_size // 8)
|
|
|
|
|
|
|
|
|
|
|
|
def file_reader(file_path: str):
|
|
|
|
length = int(os.stat(file_path).st_size)
|
|
|
|
offset = 0
|
|
|
|
|
|
|
|
with open(file_path, 'rb') as stream_file:
|
|
|
|
while offset < length:
|
|
|
|
bytes_to_read = min((length - offset), MAX_BLOB_SIZE - 1)
|
|
|
|
if not bytes_to_read:
|
|
|
|
break
|
|
|
|
blob_bytes = stream_file.read(bytes_to_read)
|
|
|
|
yield blob_bytes
|
|
|
|
offset += bytes_to_read
|
|
|
|
|
|
|
|
|
|
|
|
class StreamDescriptor:
|
|
|
|
def __init__(self, loop: asyncio.BaseEventLoop, blob_dir: str, stream_name: str, key: str,
|
|
|
|
suggested_file_name: str, blobs: typing.List[BlobInfo], stream_hash: typing.Optional[str] = None,
|
|
|
|
sd_hash: typing.Optional[str] = None):
|
|
|
|
self.loop = loop
|
|
|
|
self.blob_dir = blob_dir
|
|
|
|
self.stream_name = stream_name
|
|
|
|
self.key = key
|
|
|
|
self.suggested_file_name = suggested_file_name
|
|
|
|
self.blobs = blobs
|
|
|
|
self.stream_hash = stream_hash or self.get_stream_hash()
|
|
|
|
self.sd_hash = sd_hash
|
|
|
|
|
2019-02-06 19:40:16 +01:00
|
|
|
@property
|
|
|
|
def length(self):
|
|
|
|
return len(self.as_json())
|
|
|
|
|
2019-01-22 18:54:17 +01:00
|
|
|
def get_stream_hash(self) -> str:
|
|
|
|
return self.calculate_stream_hash(
|
|
|
|
binascii.hexlify(self.stream_name.encode()), self.key.encode(),
|
|
|
|
binascii.hexlify(self.suggested_file_name.encode()),
|
|
|
|
[blob_info.as_dict() for blob_info in self.blobs]
|
|
|
|
)
|
|
|
|
|
|
|
|
def calculate_sd_hash(self) -> str:
|
|
|
|
h = get_lbry_hash_obj()
|
|
|
|
h.update(self.as_json())
|
|
|
|
return h.hexdigest()
|
|
|
|
|
|
|
|
def as_json(self) -> bytes:
|
|
|
|
return json.dumps(
|
|
|
|
format_sd_info(binascii.hexlify(self.stream_name.encode()).decode(), self.key,
|
|
|
|
binascii.hexlify(self.suggested_file_name.encode()).decode(),
|
|
|
|
self.stream_hash,
|
|
|
|
[blob_info.as_dict() for blob_info in self.blobs]), sort_keys=True
|
|
|
|
).encode()
|
|
|
|
|
2019-02-15 00:19:01 +01:00
|
|
|
def old_sort_json(self) -> bytes:
|
|
|
|
blobs = []
|
|
|
|
for b in self.blobs:
|
|
|
|
blobs.append(OrderedDict(
|
|
|
|
[('length', b.length), ('blob_num', b.blob_num), ('iv', b.iv)] if not b.blob_hash else
|
|
|
|
[('length', b.length), ('blob_num', b.blob_num), ('blob_hash', b.blob_hash), ('iv', b.iv)]
|
|
|
|
))
|
|
|
|
if not b.blob_hash:
|
|
|
|
break
|
|
|
|
return json.dumps(
|
|
|
|
OrderedDict([
|
|
|
|
('stream_name', binascii.hexlify(self.stream_name.encode()).decode()),
|
|
|
|
('blobs', blobs),
|
|
|
|
('stream_type', 'lbryfile'),
|
|
|
|
('key', self.key),
|
|
|
|
('suggested_file_name', binascii.hexlify(self.suggested_file_name.encode()).decode()),
|
|
|
|
('stream_hash', self.stream_hash),
|
|
|
|
])
|
|
|
|
).encode()
|
|
|
|
|
|
|
|
def calculate_old_sort_sd_hash(self):
|
|
|
|
h = get_lbry_hash_obj()
|
|
|
|
h.update(self.old_sort_json())
|
|
|
|
return h.hexdigest()
|
|
|
|
|
2019-03-31 01:17:42 +01:00
|
|
|
async def make_sd_blob(self, blob_file_obj: typing.Optional[AbstractBlob] = None,
|
2019-04-15 22:14:19 +02:00
|
|
|
old_sort: typing.Optional[bool] = False,
|
|
|
|
blob_completed_callback: typing.Optional[typing.Callable[['AbstractBlob'], None]] = None):
|
2019-02-15 00:19:01 +01:00
|
|
|
sd_hash = self.calculate_sd_hash() if not old_sort else self.calculate_old_sort_sd_hash()
|
|
|
|
if not old_sort:
|
|
|
|
sd_data = self.as_json()
|
|
|
|
else:
|
|
|
|
sd_data = self.old_sort_json()
|
2019-04-15 22:14:19 +02:00
|
|
|
sd_blob = blob_file_obj or BlobFile(self.loop, sd_hash, len(sd_data), blob_completed_callback, self.blob_dir)
|
2019-02-15 00:19:01 +01:00
|
|
|
if blob_file_obj:
|
|
|
|
blob_file_obj.set_length(len(sd_data))
|
2019-01-22 18:54:17 +01:00
|
|
|
if not sd_blob.get_is_verified():
|
2019-03-31 01:17:42 +01:00
|
|
|
writer = sd_blob.get_blob_writer()
|
2019-01-22 18:54:17 +01:00
|
|
|
writer.write(sd_data)
|
2019-03-31 01:17:42 +01:00
|
|
|
|
2019-01-22 18:54:17 +01:00
|
|
|
await sd_blob.verified.wait()
|
2019-02-06 15:20:21 +01:00
|
|
|
sd_blob.close()
|
2019-01-22 18:54:17 +01:00
|
|
|
return sd_blob
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def _from_stream_descriptor_blob(cls, loop: asyncio.BaseEventLoop, blob_dir: str,
|
2019-03-31 01:17:42 +01:00
|
|
|
blob: AbstractBlob) -> 'StreamDescriptor':
|
|
|
|
with blob.reader_context() as blob_reader:
|
|
|
|
json_bytes = blob_reader.read()
|
2019-02-22 00:42:51 +01:00
|
|
|
try:
|
|
|
|
decoded = json.loads(json_bytes.decode())
|
|
|
|
except json.JSONDecodeError:
|
2019-02-22 00:53:21 +01:00
|
|
|
blob.delete()
|
2019-02-22 00:42:51 +01:00
|
|
|
raise InvalidStreamDescriptorError("Does not decode as valid JSON")
|
2019-01-22 18:54:17 +01:00
|
|
|
if decoded['blobs'][-1]['length'] != 0:
|
|
|
|
raise InvalidStreamDescriptorError("Does not end with a zero-length blob.")
|
|
|
|
if any([blob_info['length'] == 0 for blob_info in decoded['blobs'][:-1]]):
|
|
|
|
raise InvalidStreamDescriptorError("Contains zero-length data blob")
|
|
|
|
if 'blob_hash' in decoded['blobs'][-1]:
|
|
|
|
raise InvalidStreamDescriptorError("Stream terminator blob should not have a hash")
|
2019-02-06 02:59:32 +01:00
|
|
|
if any([i != blob_info['blob_num'] for i, blob_info in enumerate(decoded['blobs'])]):
|
|
|
|
raise InvalidStreamDescriptorError("Stream contains out of order or skipped blobs")
|
2019-01-22 18:54:17 +01:00
|
|
|
descriptor = cls(
|
|
|
|
loop, blob_dir,
|
|
|
|
binascii.unhexlify(decoded['stream_name']).decode(),
|
|
|
|
decoded['key'],
|
|
|
|
binascii.unhexlify(decoded['suggested_file_name']).decode(),
|
|
|
|
[BlobInfo(info['blob_num'], info['length'], info['iv'], info.get('blob_hash'))
|
|
|
|
for info in decoded['blobs']],
|
|
|
|
decoded['stream_hash'],
|
|
|
|
blob.blob_hash
|
|
|
|
)
|
|
|
|
if descriptor.get_stream_hash() != decoded['stream_hash']:
|
|
|
|
raise InvalidStreamDescriptorError("Stream hash does not match stream metadata")
|
|
|
|
return descriptor
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
async def from_stream_descriptor_blob(cls, loop: asyncio.BaseEventLoop, blob_dir: str,
|
2019-03-31 01:17:42 +01:00
|
|
|
blob: AbstractBlob) -> 'StreamDescriptor':
|
|
|
|
return await loop.run_in_executor(None, cls._from_stream_descriptor_blob, loop, blob_dir, blob)
|
2019-01-22 18:54:17 +01:00
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_blob_hashsum(b: typing.Dict):
|
|
|
|
length = b['length']
|
|
|
|
if length != 0:
|
|
|
|
blob_hash = b['blob_hash']
|
|
|
|
else:
|
|
|
|
blob_hash = None
|
|
|
|
blob_num = b['blob_num']
|
|
|
|
iv = b['iv']
|
|
|
|
blob_hashsum = get_lbry_hash_obj()
|
|
|
|
if length != 0:
|
|
|
|
blob_hashsum.update(blob_hash.encode())
|
|
|
|
blob_hashsum.update(str(blob_num).encode())
|
|
|
|
blob_hashsum.update(iv.encode())
|
|
|
|
blob_hashsum.update(str(length).encode())
|
|
|
|
return blob_hashsum.digest()
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def calculate_stream_hash(hex_stream_name: bytes, key: bytes, hex_suggested_file_name: bytes,
|
|
|
|
blob_infos: typing.List[typing.Dict]) -> str:
|
|
|
|
h = get_lbry_hash_obj()
|
|
|
|
h.update(hex_stream_name)
|
|
|
|
h.update(key)
|
|
|
|
h.update(hex_suggested_file_name)
|
|
|
|
blobs_hashsum = get_lbry_hash_obj()
|
|
|
|
for blob in blob_infos:
|
|
|
|
blobs_hashsum.update(StreamDescriptor.get_blob_hashsum(blob))
|
|
|
|
h.update(blobs_hashsum.digest())
|
|
|
|
return h.hexdigest()
|
|
|
|
|
|
|
|
@classmethod
|
2019-04-15 22:14:19 +02:00
|
|
|
async def create_stream(
|
|
|
|
cls, loop: asyncio.BaseEventLoop, blob_dir: str, file_path: str, key: typing.Optional[bytes] = None,
|
|
|
|
iv_generator: typing.Optional[typing.Generator[bytes, None, None]] = None,
|
|
|
|
old_sort: bool = False,
|
|
|
|
blob_completed_callback: typing.Optional[typing.Callable[['AbstractBlob'],
|
|
|
|
None]] = None) -> 'StreamDescriptor':
|
2019-01-22 18:54:17 +01:00
|
|
|
blobs: typing.List[BlobInfo] = []
|
|
|
|
|
|
|
|
iv_generator = iv_generator or random_iv_generator()
|
|
|
|
key = key or os.urandom(AES.block_size // 8)
|
|
|
|
blob_num = -1
|
|
|
|
for blob_bytes in file_reader(file_path):
|
|
|
|
blob_num += 1
|
|
|
|
blob_info = await BlobFile.create_from_unencrypted(
|
2019-04-15 22:14:19 +02:00
|
|
|
loop, blob_dir, key, next(iv_generator), blob_bytes, blob_num, blob_completed_callback
|
2019-01-22 18:54:17 +01:00
|
|
|
)
|
|
|
|
blobs.append(blob_info)
|
|
|
|
blobs.append(
|
|
|
|
BlobInfo(len(blobs), 0, binascii.hexlify(next(iv_generator)).decode())) # add the stream terminator
|
|
|
|
descriptor = cls(
|
|
|
|
loop, blob_dir, os.path.basename(file_path), binascii.hexlify(key).decode(), os.path.basename(file_path),
|
|
|
|
blobs
|
|
|
|
)
|
2019-04-15 22:14:19 +02:00
|
|
|
sd_blob = await descriptor.make_sd_blob(old_sort=old_sort, blob_completed_callback=blob_completed_callback)
|
2019-01-22 18:54:17 +01:00
|
|
|
descriptor.sd_hash = sd_blob.blob_hash
|
|
|
|
return descriptor
|
|
|
|
|
|
|
|
def lower_bound_decrypted_length(self) -> int:
|
|
|
|
length = sum((blob.length - 1 for blob in self.blobs[:-2]))
|
|
|
|
return length + self.blobs[-2].length - (AES.block_size // 8)
|
|
|
|
|
|
|
|
def upper_bound_decrypted_length(self) -> int:
|
|
|
|
return self.lower_bound_decrypted_length() + (AES.block_size // 8)
|
2019-02-15 00:19:01 +01:00
|
|
|
|
|
|
|
@classmethod
|
2019-03-31 01:17:42 +01:00
|
|
|
async def recover(cls, blob_dir: str, sd_blob: 'AbstractBlob', stream_hash: str, stream_name: str,
|
2019-02-15 00:19:01 +01:00
|
|
|
suggested_file_name: str, key: str,
|
|
|
|
blobs: typing.List['BlobInfo']) -> typing.Optional['StreamDescriptor']:
|
|
|
|
descriptor = cls(asyncio.get_event_loop(), blob_dir, stream_name, key, suggested_file_name,
|
|
|
|
blobs, stream_hash, sd_blob.blob_hash)
|
|
|
|
|
|
|
|
if descriptor.calculate_sd_hash() == sd_blob.blob_hash: # first check for a normal valid sd
|
|
|
|
old_sort = False
|
|
|
|
elif descriptor.calculate_old_sort_sd_hash() == sd_blob.blob_hash: # check if old field sorting works
|
|
|
|
old_sort = True
|
|
|
|
else:
|
|
|
|
return
|
|
|
|
await descriptor.make_sd_blob(sd_blob, old_sort)
|
|
|
|
return descriptor
|