2019-05-16 14:36:35 +00:00
|
|
|
import re
|
2019-06-03 12:22:03 +00:00
|
|
|
from function_puller import (
|
|
|
|
get_spec,
|
|
|
|
SpecObject,
|
|
|
|
)
|
2019-05-16 14:36:35 +00:00
|
|
|
from argparse import ArgumentParser
|
2019-06-03 12:22:03 +00:00
|
|
|
from typing import (
|
|
|
|
Dict,
|
|
|
|
Optional,
|
|
|
|
)
|
2019-05-16 14:36:35 +00:00
|
|
|
|
2019-11-19 19:16:40 +00:00
|
|
|
CONFIG_LOADER = '''
|
|
|
|
apply_constants_preset(globals())
|
|
|
|
'''
|
2019-05-16 14:36:35 +00:00
|
|
|
|
2019-11-19 19:16:40 +00:00
|
|
|
PHASE0_IMPORTS = '''from eth2spec.config.apply_config import apply_constants_preset
|
|
|
|
from typing import (
|
2019-11-20 03:43:32 +00:00
|
|
|
Any, Callable, Dict, Set, Sequence, Tuple, Optional
|
2019-05-16 14:36:35 +00:00
|
|
|
)
|
2019-05-16 19:01:32 +00:00
|
|
|
|
2019-06-17 14:48:33 +00:00
|
|
|
from dataclasses import (
|
|
|
|
dataclass,
|
|
|
|
field,
|
|
|
|
)
|
|
|
|
|
2019-11-21 22:13:45 +00:00
|
|
|
from eth2spec.utils.ssz.ssz_impl import hash_tree_root
|
2019-06-05 13:29:26 +00:00
|
|
|
from eth2spec.utils.ssz.ssz_typing import (
|
2019-11-02 03:12:32 +00:00
|
|
|
boolean, Container, List, Vector, uint64,
|
2019-07-01 01:36:13 +00:00
|
|
|
Bytes1, Bytes4, Bytes8, Bytes32, Bytes48, Bytes96, Bitlist, Bitvector,
|
2019-06-05 13:29:26 +00:00
|
|
|
)
|
2019-05-30 20:57:18 +00:00
|
|
|
from eth2spec.utils.bls import (
|
2019-10-23 08:29:53 +00:00
|
|
|
bls_aggregate_signatures,
|
2019-05-16 14:36:35 +00:00
|
|
|
bls_aggregate_pubkeys,
|
|
|
|
bls_verify,
|
2019-06-30 08:58:04 +00:00
|
|
|
bls_sign,
|
2019-05-16 14:36:35 +00:00
|
|
|
)
|
2019-05-16 19:01:32 +00:00
|
|
|
|
2019-05-16 14:36:35 +00:00
|
|
|
from eth2spec.utils.hash_function import hash
|
2019-05-18 08:42:04 +00:00
|
|
|
'''
|
2019-11-19 19:16:40 +00:00
|
|
|
PHASE1_IMPORTS = '''from eth2spec.phase0 import spec as phase0
|
|
|
|
from eth2spec.config.apply_config import apply_constants_preset
|
|
|
|
from typing import (
|
2019-11-20 03:43:32 +00:00
|
|
|
Any, Callable, Dict, Set, Sequence, NewType, Tuple, Union,
|
2019-05-20 08:50:07 +00:00
|
|
|
)
|
2019-08-15 07:30:01 +00:00
|
|
|
from math import (
|
|
|
|
log2,
|
|
|
|
)
|
2019-05-20 08:50:07 +00:00
|
|
|
|
2019-06-17 14:48:33 +00:00
|
|
|
from dataclasses import (
|
|
|
|
dataclass,
|
|
|
|
field,
|
|
|
|
)
|
|
|
|
|
2019-12-05 20:49:52 +00:00
|
|
|
from eth2spec.utils.ssz.ssz_impl import hash_tree_root
|
2019-06-05 13:29:26 +00:00
|
|
|
from eth2spec.utils.ssz.ssz_typing import (
|
2019-08-20 11:21:12 +00:00
|
|
|
BasicValue, Elements, BaseBytes, BaseList, SSZType,
|
2019-11-15 13:50:58 +00:00
|
|
|
Container, List, Vector, ByteList, ByteVector, Bitlist, Bitvector, Bits,
|
2019-08-15 07:30:01 +00:00
|
|
|
Bytes1, Bytes4, Bytes8, Bytes32, Bytes48, Bytes96,
|
2019-11-18 23:40:02 +00:00
|
|
|
uint64, uint8, bit, boolean,
|
2019-05-20 08:50:07 +00:00
|
|
|
)
|
2019-05-30 20:57:18 +00:00
|
|
|
from eth2spec.utils.bls import (
|
2019-05-20 08:50:07 +00:00
|
|
|
bls_aggregate_pubkeys,
|
|
|
|
bls_verify,
|
|
|
|
bls_verify_multiple,
|
2019-08-11 17:05:17 +00:00
|
|
|
bls_signature_to_G2,
|
2019-05-20 08:50:07 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
from eth2spec.utils.hash_function import hash
|
2019-08-20 10:55:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
SSZVariableName = str
|
2019-08-23 12:16:46 +00:00
|
|
|
GeneralizedIndex = NewType('GeneralizedIndex', int)
|
2019-05-20 08:50:07 +00:00
|
|
|
'''
|
2019-08-11 17:05:17 +00:00
|
|
|
SUNDRY_CONSTANTS_FUNCTIONS = '''
|
|
|
|
def ceillog2(x: uint64) -> int:
|
|
|
|
return (x - 1).bit_length()
|
|
|
|
'''
|
2019-05-18 08:42:04 +00:00
|
|
|
SUNDRY_FUNCTIONS = '''
|
2019-06-20 18:25:22 +00:00
|
|
|
# Monkey patch hash cache
|
|
|
|
_hash = hash
|
2019-11-12 20:29:58 +00:00
|
|
|
hash_cache: Dict[bytes, Bytes32] = {}
|
2019-06-20 18:25:22 +00:00
|
|
|
|
|
|
|
|
2019-11-12 20:29:58 +00:00
|
|
|
def get_eth1_data(distance: uint64) -> Bytes32:
|
2019-06-30 08:58:04 +00:00
|
|
|
return hash(distance)
|
|
|
|
|
|
|
|
|
2019-12-12 00:48:03 +00:00
|
|
|
def hash(x: bytes) -> Bytes32: # type: ignore
|
2019-06-20 18:25:22 +00:00
|
|
|
if x not in hash_cache:
|
2019-11-12 20:29:58 +00:00
|
|
|
hash_cache[x] = Bytes32(_hash(x))
|
2019-06-20 18:25:22 +00:00
|
|
|
return hash_cache[x]
|
|
|
|
|
|
|
|
|
2019-05-16 14:36:35 +00:00
|
|
|
# Monkey patch validator compute committee code
|
|
|
|
_compute_committee = compute_committee
|
2019-11-12 20:29:58 +00:00
|
|
|
committee_cache: Dict[Tuple[Bytes32, Bytes32, int, int], Sequence[ValidatorIndex]] = {}
|
2019-05-16 14:36:35 +00:00
|
|
|
|
|
|
|
|
2019-06-22 16:12:42 +00:00
|
|
|
def compute_committee(indices: Sequence[ValidatorIndex], # type: ignore
|
2019-11-12 20:29:58 +00:00
|
|
|
seed: Bytes32,
|
2019-06-11 04:15:52 +00:00
|
|
|
index: int,
|
2019-06-22 16:12:42 +00:00
|
|
|
count: int) -> Sequence[ValidatorIndex]:
|
2019-06-20 18:25:22 +00:00
|
|
|
param_hash = (hash(b''.join(index.to_bytes(length=4, byteorder='little') for index in indices)), seed, index, count)
|
2019-05-16 14:36:35 +00:00
|
|
|
|
2019-06-17 21:21:45 +00:00
|
|
|
if param_hash not in committee_cache:
|
2019-06-18 19:50:53 +00:00
|
|
|
committee_cache[param_hash] = _compute_committee(indices, seed, index, count)
|
2019-11-19 19:16:40 +00:00
|
|
|
return committee_cache[param_hash]'''
|
2019-05-18 08:42:04 +00:00
|
|
|
|
2019-05-20 08:50:07 +00:00
|
|
|
|
2019-06-03 12:22:03 +00:00
|
|
|
def objects_to_spec(functions: Dict[str, str],
|
2019-06-15 20:57:50 +00:00
|
|
|
custom_types: Dict[str, str],
|
2019-06-03 12:22:03 +00:00
|
|
|
constants: Dict[str, str],
|
|
|
|
ssz_objects: Dict[str, str],
|
2019-06-05 19:42:55 +00:00
|
|
|
imports: Dict[str, str],
|
2019-12-05 22:06:32 +00:00
|
|
|
version: str,
|
2019-06-05 19:42:55 +00:00
|
|
|
) -> str:
|
2019-06-03 12:22:03 +00:00
|
|
|
"""
|
|
|
|
Given all the objects that constitute a spec, combine them into a single pyfile.
|
|
|
|
"""
|
2019-06-11 03:16:59 +00:00
|
|
|
new_type_definitions = (
|
|
|
|
'\n\n'.join(
|
|
|
|
[
|
2019-06-25 16:42:34 +00:00
|
|
|
f"class {key}({value}):\n pass\n"
|
2019-06-15 20:57:50 +00:00
|
|
|
for key, value in custom_types.items()
|
2019-06-11 03:16:59 +00:00
|
|
|
]
|
|
|
|
)
|
|
|
|
)
|
2019-08-11 17:05:17 +00:00
|
|
|
for k in list(functions):
|
|
|
|
if "ceillog2" in k:
|
|
|
|
del functions[k]
|
2019-05-18 08:42:04 +00:00
|
|
|
functions_spec = '\n\n'.join(functions.values())
|
2019-06-30 20:12:02 +00:00
|
|
|
for k in list(constants.keys()):
|
2019-08-11 17:05:17 +00:00
|
|
|
if k == "BLS12_381_Q":
|
|
|
|
constants[k] += " # noqa: E501"
|
2019-05-30 20:57:18 +00:00
|
|
|
constants_spec = '\n'.join(map(lambda x: '%s = %s' % (x, constants[x]), constants))
|
2019-06-05 13:29:26 +00:00
|
|
|
ssz_objects_instantiation_spec = '\n\n'.join(ssz_objects.values())
|
2019-05-24 14:51:21 +00:00
|
|
|
spec = (
|
2019-05-20 08:50:07 +00:00
|
|
|
imports
|
2019-12-05 22:06:32 +00:00
|
|
|
+ '\n\n' + f"version = \'{version}\'\n"
|
2019-06-11 03:16:59 +00:00
|
|
|
+ '\n\n' + new_type_definitions
|
2019-08-11 17:05:17 +00:00
|
|
|
+ '\n' + SUNDRY_CONSTANTS_FUNCTIONS
|
2019-05-20 12:00:54 +00:00
|
|
|
+ '\n\n' + constants_spec
|
2019-11-19 19:16:40 +00:00
|
|
|
+ '\n\n' + CONFIG_LOADER
|
|
|
|
+ '\n\n' + ssz_objects_instantiation_spec
|
2019-06-05 13:29:26 +00:00
|
|
|
+ '\n\n' + functions_spec
|
2019-05-18 08:42:04 +00:00
|
|
|
+ '\n' + SUNDRY_FUNCTIONS
|
|
|
|
+ '\n'
|
|
|
|
)
|
2019-05-24 14:51:21 +00:00
|
|
|
return spec
|
|
|
|
|
2019-05-18 08:42:04 +00:00
|
|
|
|
2019-06-03 13:14:20 +00:00
|
|
|
def combine_functions(old_functions: Dict[str, str], new_functions: Dict[str, str]) -> Dict[str, str]:
|
2019-05-18 08:42:04 +00:00
|
|
|
for key, value in new_functions.items():
|
2019-06-03 13:14:20 +00:00
|
|
|
old_functions[key] = value
|
|
|
|
return old_functions
|
2019-05-18 08:42:04 +00:00
|
|
|
|
|
|
|
|
2019-06-03 12:22:03 +00:00
|
|
|
def combine_constants(old_constants: Dict[str, str], new_constants: Dict[str, str]) -> Dict[str, str]:
|
2019-05-18 08:42:04 +00:00
|
|
|
for key, value in new_constants.items():
|
|
|
|
old_constants[key] = value
|
|
|
|
return old_constants
|
|
|
|
|
2019-05-20 09:17:24 +00:00
|
|
|
|
2019-06-20 18:13:55 +00:00
|
|
|
ignored_dependencies = [
|
2019-12-05 19:36:48 +00:00
|
|
|
'bit', 'boolean', 'Vector', 'List', 'Container', 'BLSPubkey', 'BLSSignature',
|
2019-06-30 19:51:10 +00:00
|
|
|
'Bytes1', 'Bytes4', 'Bytes32', 'Bytes48', 'Bytes96', 'Bitlist', 'Bitvector',
|
2019-06-20 18:13:55 +00:00
|
|
|
'uint8', 'uint16', 'uint32', 'uint64', 'uint128', 'uint256',
|
2019-12-05 19:36:48 +00:00
|
|
|
'bytes', 'byte', 'ByteList', 'ByteVector'
|
2019-06-20 18:13:55 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
2019-06-15 21:23:44 +00:00
|
|
|
def dependency_order_ssz_objects(objects: Dict[str, str], custom_types: Dict[str, str]) -> None:
|
2019-06-03 12:22:03 +00:00
|
|
|
"""
|
2019-08-19 11:05:44 +00:00
|
|
|
Determines which SSZ Object is dependent on which other and orders them appropriately
|
2019-06-03 12:22:03 +00:00
|
|
|
"""
|
2019-05-20 12:00:54 +00:00
|
|
|
items = list(objects.items())
|
|
|
|
for key, value in items:
|
2019-06-20 18:13:55 +00:00
|
|
|
dependencies = []
|
|
|
|
for line in value.split('\n'):
|
|
|
|
if not re.match(r'\s+\w+: .+', line):
|
|
|
|
continue # skip whitespace etc.
|
|
|
|
line = line[line.index(':') + 1:] # strip of field name
|
|
|
|
if '#' in line:
|
|
|
|
line = line[:line.index('#')] # strip of comment
|
|
|
|
dependencies.extend(re.findall(r'(\w+)', line)) # catch all legible words, potential dependencies
|
2019-06-20 18:12:17 +00:00
|
|
|
dependencies = filter(lambda x: '_' not in x and x.upper() != x, dependencies) # filter out constants
|
2019-06-20 18:13:55 +00:00
|
|
|
dependencies = filter(lambda x: x not in ignored_dependencies, dependencies)
|
|
|
|
dependencies = filter(lambda x: x not in custom_types, dependencies)
|
2019-05-20 12:00:54 +00:00
|
|
|
for dep in dependencies:
|
|
|
|
key_list = list(objects.keys())
|
|
|
|
for item in [dep, key] + key_list[key_list.index(dep)+1:]:
|
|
|
|
objects[item] = objects.pop(item)
|
|
|
|
|
|
|
|
|
2019-06-15 21:23:44 +00:00
|
|
|
def combine_ssz_objects(old_objects: Dict[str, str], new_objects: Dict[str, str], custom_types) -> Dict[str, str]:
|
2019-06-03 12:22:03 +00:00
|
|
|
"""
|
2019-06-03 13:14:20 +00:00
|
|
|
Takes in old spec and new spec ssz objects, combines them,
|
2019-06-03 12:22:03 +00:00
|
|
|
and returns the newer versions of the objects in dependency order.
|
|
|
|
"""
|
2019-05-18 08:42:04 +00:00
|
|
|
for key, value in new_objects.items():
|
2019-11-19 19:16:40 +00:00
|
|
|
old_objects[key] = value
|
2019-05-20 09:17:24 +00:00
|
|
|
return old_objects
|
2019-05-18 08:42:04 +00:00
|
|
|
|
|
|
|
|
2019-06-03 12:22:03 +00:00
|
|
|
def combine_spec_objects(spec0: SpecObject, spec1: SpecObject) -> SpecObject:
|
|
|
|
"""
|
|
|
|
Takes in two spec variants (as tuples of their objects) and combines them using the appropriate combiner function.
|
|
|
|
"""
|
2019-11-19 19:16:40 +00:00
|
|
|
functions0, custom_types0, constants0, ssz_objects0 = spec0
|
|
|
|
functions1, custom_types1, constants1, ssz_objects1 = spec1
|
2019-05-26 12:14:48 +00:00
|
|
|
functions = combine_functions(functions0, functions1)
|
2019-06-15 20:57:50 +00:00
|
|
|
custom_types = combine_constants(custom_types0, custom_types1)
|
2019-05-26 12:14:48 +00:00
|
|
|
constants = combine_constants(constants0, constants1)
|
2019-06-15 21:23:44 +00:00
|
|
|
ssz_objects = combine_ssz_objects(ssz_objects0, ssz_objects1, custom_types)
|
2019-11-19 19:16:40 +00:00
|
|
|
return functions, custom_types, constants, ssz_objects
|
2019-05-26 12:14:48 +00:00
|
|
|
|
|
|
|
|
2019-11-20 03:43:32 +00:00
|
|
|
def dependency_order_spec(objs: SpecObject):
|
|
|
|
functions, custom_types, constants, ssz_objects = objs
|
|
|
|
dependency_order_ssz_objects(ssz_objects, custom_types)
|
|
|
|
|
|
|
|
|
2019-06-30 08:58:04 +00:00
|
|
|
def build_phase0_spec(phase0_sourcefile: str, fork_choice_sourcefile: str,
|
|
|
|
v_guide_sourcefile: str, outfile: str=None) -> Optional[str]:
|
2019-06-15 22:42:03 +00:00
|
|
|
phase0_spec = get_spec(phase0_sourcefile)
|
|
|
|
fork_choice_spec = get_spec(fork_choice_sourcefile)
|
2019-06-30 08:58:04 +00:00
|
|
|
v_guide = get_spec(v_guide_sourcefile)
|
|
|
|
spec_objects = phase0_spec
|
|
|
|
for value in [fork_choice_spec, v_guide]:
|
|
|
|
spec_objects = combine_spec_objects(spec_objects, value)
|
2019-11-20 03:43:32 +00:00
|
|
|
dependency_order_spec(spec_objects)
|
2019-12-05 22:06:32 +00:00
|
|
|
spec = objects_to_spec(*spec_objects, PHASE0_IMPORTS, 'phase0')
|
2019-05-16 14:36:35 +00:00
|
|
|
if outfile is not None:
|
|
|
|
with open(outfile, 'w') as out:
|
2019-05-18 08:42:04 +00:00
|
|
|
out.write(spec)
|
2019-06-05 19:42:55 +00:00
|
|
|
return spec
|
2019-05-16 14:36:35 +00:00
|
|
|
|
|
|
|
|
2019-08-23 18:37:19 +00:00
|
|
|
def build_phase1_spec(phase0_beacon_sourcefile: str,
|
|
|
|
phase0_fork_choice_sourcefile: str,
|
|
|
|
merkle_proofs_sourcefile: str,
|
2019-06-03 12:22:03 +00:00
|
|
|
phase1_custody_sourcefile: str,
|
2019-11-18 21:04:29 +00:00
|
|
|
phase1_beacon_sourcefile: str,
|
|
|
|
phase1_fraud_sourcefile: str,
|
|
|
|
phase1_fork_sourcefile: str,
|
2019-06-03 12:22:03 +00:00
|
|
|
outfile: str=None) -> Optional[str]:
|
2019-08-15 07:07:44 +00:00
|
|
|
all_sourcefiles = (
|
2019-08-23 18:37:19 +00:00
|
|
|
phase0_beacon_sourcefile,
|
|
|
|
phase0_fork_choice_sourcefile,
|
|
|
|
merkle_proofs_sourcefile,
|
2019-08-15 07:07:44 +00:00
|
|
|
phase1_custody_sourcefile,
|
2019-11-18 21:04:29 +00:00
|
|
|
phase1_beacon_sourcefile,
|
|
|
|
phase1_fraud_sourcefile,
|
|
|
|
phase1_fork_sourcefile,
|
2019-08-15 07:07:44 +00:00
|
|
|
)
|
|
|
|
all_spescs = [get_spec(spec) for spec in all_sourcefiles]
|
|
|
|
spec_objects = all_spescs[0]
|
|
|
|
for value in all_spescs[1:]:
|
2019-05-26 12:14:48 +00:00
|
|
|
spec_objects = combine_spec_objects(spec_objects, value)
|
2019-11-20 03:43:32 +00:00
|
|
|
dependency_order_spec(spec_objects)
|
2019-12-05 22:06:32 +00:00
|
|
|
spec = objects_to_spec(*spec_objects, PHASE1_IMPORTS, 'phase1')
|
2019-05-16 14:36:35 +00:00
|
|
|
if outfile is not None:
|
|
|
|
with open(outfile, 'w') as out:
|
2019-05-18 08:42:04 +00:00
|
|
|
out.write(spec)
|
2019-06-05 19:42:55 +00:00
|
|
|
return spec
|
2019-05-16 14:36:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
description = '''
|
|
|
|
Build the specs from the md docs.
|
|
|
|
If building phase 0:
|
2019-08-15 07:07:44 +00:00
|
|
|
1st argument is input /core/0_beacon-chain.md
|
|
|
|
2nd argument is input /core/0_fork-choice.md
|
|
|
|
3rd argument is input /core/0_beacon-chain-validator.md
|
2019-06-30 08:58:04 +00:00
|
|
|
4th argument is output spec.py
|
2019-05-16 14:36:35 +00:00
|
|
|
|
|
|
|
If building phase 1:
|
2019-08-15 07:07:44 +00:00
|
|
|
1st argument is input /core/0_beacon-chain.md
|
|
|
|
2nd argument is input /core/0_fork-choice.md
|
2019-08-23 18:37:19 +00:00
|
|
|
3rd argument is input /light_client/merkle_proofs.md
|
|
|
|
4th argument is input /core/1_custody-game.md
|
2019-11-18 21:04:29 +00:00
|
|
|
5th argument is input /core/1_beacon-chain.md
|
|
|
|
6th argument is input /core/1_fraud-proofs.md
|
|
|
|
7th argument is input /core/1_phase1-fork.md
|
|
|
|
8th argument is output spec.py
|
2019-05-16 14:36:35 +00:00
|
|
|
'''
|
|
|
|
parser = ArgumentParser(description=description)
|
|
|
|
parser.add_argument("-p", "--phase", dest="phase", type=int, default=0, help="Build for phase #")
|
|
|
|
parser.add_argument(dest="files", help="Input and output files", nargs="+")
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
if args.phase == 0:
|
2019-06-30 08:58:04 +00:00
|
|
|
if len(args.files) == 4:
|
2019-06-05 19:42:55 +00:00
|
|
|
build_phase0_spec(*args.files)
|
|
|
|
else:
|
2019-06-30 08:58:04 +00:00
|
|
|
print(" Phase 0 requires spec, forkchoice, and v-guide inputs as well as an output file.")
|
2019-05-16 14:36:35 +00:00
|
|
|
elif args.phase == 1:
|
2019-11-18 21:04:29 +00:00
|
|
|
if len(args.files) == 8:
|
2019-05-16 14:36:35 +00:00
|
|
|
build_phase1_spec(*args.files)
|
|
|
|
else:
|
2019-08-15 07:07:44 +00:00
|
|
|
print(
|
2019-08-15 10:26:22 +00:00
|
|
|
" Phase 1 requires input files as well as an output file:\n"
|
2019-08-15 07:07:44 +00:00
|
|
|
"\t core/phase_0: (0_beacon-chain.md, 0_fork-choice.md)\n"
|
|
|
|
"\t light_client: (merkle_proofs.md)\n"
|
2019-11-18 21:04:29 +00:00
|
|
|
"\t core/phase_1: (1_custody-game.md, 1_beacon-chain.md, 1_fraud-proofs.md, 1_phase1-fork.md)\n"
|
2019-08-15 07:07:44 +00:00
|
|
|
"\t and output.py"
|
|
|
|
)
|
2019-05-16 14:36:35 +00:00
|
|
|
else:
|
|
|
|
print("Invalid phase: {0}".format(args.phase))
|