-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbeaconnode.py
1144 lines (1047 loc) · 46.4 KB
/
beaconnode.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import cProfile
import json
import pathlib
import pprint
import sys
import traceback
from importlib import reload
from multiprocessing import Queue, JoinableQueue
from multiprocessing.context import Process
import time
from typing import Tuple, Optional, List, Dict, Sequence, Set
import os
from dataclasses import dataclass
import dataclasses
from graphviz import Digraph
from remerkleable.basic import uint64
from remerkleable.bitfields import Bitlist
from remerkleable.complex import Container
import eth2spec.phase0.spec as spec
from cache import AttestationCache, BlockCache
from colors import COLORS
from eth2spec.config import config_util
from events import (
NextSlotEvent,
BeaconNodeInfo,
LatestVoteOpportunity,
AggregateOpportunity,
MessageEvent,
Event,
SimulationEndEvent,
ProduceStatisticsEvent,
ProduceGraphEvent,
ValidatorInitializationEvent,
)
from helpers import queue_element_or_none
from validator import Validator, ValidatorBuilder
class BeaconNode(Process):
counter: int
simulator_to_client_queue: JoinableQueue
client_to_simulator_queue: Queue
state: spec.BeaconState
store: spec.Store
head_root: spec.Root
validators: List[Validator]
# Which, How many'th, total committee size
committee: Dict[
spec.Slot, Dict[spec.ValidatorIndex, Tuple[spec.CommitteeIndex, int, int]]
]
committee_count: Dict[spec.Epoch, int]
current_slot: spec.Slot
slot_last_attested: Optional[spec.Slot]
last_attestation_data: Dict[spec.CommitteeIndex, spec.AttestationData]
current_time: uint64
proposer_current_slot: Optional[spec.ValidatorIndex]
attestation_cache: AttestationCache
block_cache: BlockCache
slashings: Dict[str, List]
should_quit: bool
head_state: Optional[spec.BeaconState]
def __init__(
self,
counter: int,
simulator_to_client_queue: JoinableQueue,
client_to_simulator_queue: Queue,
configpath: str,
configname: str,
validator_builders: Sequence[ValidatorBuilder],
validator_first_counter: int,
debug=False,
profile=False,
):
super().__init__()
self.counter = counter
self.simulator_to_client_queue = simulator_to_client_queue
self.client_to_simulator_queue = client_to_simulator_queue
self.validator_builders = validator_builders
self.validator_first_counter = validator_first_counter
self.validators = []
self.current_slot = spec.Slot(0)
self.slot_last_attested = None
self.committee = dict()
self.committee_count = dict()
self.last_attestation_data = dict()
self.current_time = uint64(0)
self.attestation_cache = AttestationCache(self.counter)
self.should_quit = False
self.event_cache = None
self.specconf = (configpath, configname)
self.debug = debug
self.debugfile = None
self.profile = profile
self.slashings = {"proposer": [], "attester": []}
self.starttime = int(time.time())
self.proposer_current_slot = None
self.build_validators()
self.head_state = None
self.disable_aggregation = False
def log(self, obj, typ: str):
if not self.debug:
return
if not self.debugfile:
self.debugfile = open(f"log_{self.counter}_{int(time.time())}.json", "w")
if isinstance(obj, Container):
logobj = str(obj)
elif isinstance(obj, dict):
logobj = dict()
for key, value in obj.items():
logobj[key] = str(value)
elif isinstance(obj, int):
logobj = obj
else:
logobj = str(obj)
json.dump(
{
"level": typ,
"index": self.counter,
"timestamp": self.current_time,
"slot": self.current_slot,
"message": logobj,
},
self.debugfile,
)
self.debugfile.write("\n")
if "Error" in typ:
self.debugfile.flush()
def run(self):
print(
f"[BEACON NODE {self.counter}] Beacon Node started. Process PID is {os.getpid()}."
)
config_util.prepare_config(self.specconf[0], self.specconf[1])
# noinspection PyTypeChecker
reload(spec)
spec.bls.bls_active = False
if self.profile:
pr = cProfile.Profile()
pr.enable()
while not self.should_quit:
item = self.simulator_to_client_queue.get()
self.__handle_event(item)
self.simulator_to_client_queue.task_done()
if self.profile:
pr.disable()
pr.dump_stats(f"profile_{self.counter}_{time.time()}.prof")
if self.debug:
self.debugfile.close()
print(f"[BEACON NODE {self.counter}] Terminate process")
def __handle_event(self, event: Event):
if event.time < self.current_time:
self.client_to_simulator_queue.put(
SimulationEndEvent(
time=self.current_time,
message=f"Own time {self.current_time} is later than event time {event.time}. {event}/{self.event_cache}",
)
)
if event.time > self.current_time and self.debug and self.debugfile:
self.debugfile.flush()
self.event_cache = event
self.current_time = event.time
actions = {
MessageEvent: self.__handle_message_event,
ValidatorInitializationEvent: self.__handle_validator_initialization,
SimulationEndEvent: self.__handle_simulation_end,
LatestVoteOpportunity: self.handle_latest_voting_opportunity,
AggregateOpportunity: self.handle_aggregate_opportunity,
NextSlotEvent: self.handle_next_slot_event,
ProduceStatisticsEvent: self.handle_statistics_event,
ProduceGraphEvent: self.produce_graph_event,
BeaconNodeInfo: self.handle_beacon_node_info,
}
# noinspection PyArgumentList,PyTypeChecker
self.pre_event_handling(event)
actions[type(event)](event)
def handle_beacon_node_info(self, event: BeaconNodeInfo):
pass
def pre_event_handling(self, event: Event):
pass
def __handle_message_event(self, event: MessageEvent):
decoder = {
"Attestation": spec.Attestation,
"SignedAggregateAndProof": spec.SignedAggregateAndProof,
"SignedBeaconBlock": spec.SignedBeaconBlock,
"BeaconBlock": spec.BeaconBlock,
"BeaconState": spec.BeaconState,
}
actions = {
"Attestation": self.handle_attestation,
"SignedAggregateAndProof": self.handle_aggregate,
"SignedBeaconBlock": self.handle_block,
"BeaconBlock": self.handle_genesis_block,
"BeaconState": self.handle_genesis_state,
}
self.log(
{
"time": event.time,
"prio": event.priority,
"type": event.message_type,
"marker": event.marker,
"delayed": event.delayed,
},
"MessageRecv",
)
payload = decoder[event.message_type].decode_bytes(event.message)
# noinspection PyArgumentList
actions[event.message_type](payload, event.marker)
def __handle_validator_initialization(self, event: ValidatorInitializationEvent):
self.build_validators()
def handle_statistics_event(self, event: ProduceStatisticsEvent):
stats = statistics(self)
asdict = dataclasses.asdict(stats)
if event.print_event:
pprint.pp(asdict)
self.log(str(stats), "Statistics")
filename = f"stats_{self.counter}_{self.starttime}.json"
if not pathlib.Path(f"stats_{self.counter}_{self.starttime}.json").is_file():
with open(filename, "w", encoding="utf-8") as fp:
fp.write("[")
with open(f"stats_{self.counter}_{self.starttime}.json", "a") as fp:
fp.write(",\n")
json.dump(asdict, fp, indent=2)
def produce_graph_event(self, event: ProduceGraphEvent):
self.graph(event.show)
def handle_genesis_state(self, state: spec.BeaconState, marker=None):
print(f"[BEACON NODE {self.counter}] Initialize state from Genesis State")
self.state = state
for validator in self.validators:
validator.index_from_state(state)
def handle_genesis_block(self, block: spec.BeaconBlock, marker=None):
print(
f"[BEACON NODE {self.counter}] Initialize Fork Choice and BlockCache with Genesis Block"
)
self.store = spec.get_forkchoice_store(self.state, block)
self.block_cache = BlockCache(block)
self.head_root = spec.hash_tree_root(block)
print(
f"[BEACON NODE {self.counter}] Initialize committee cache for first epoch"
)
self.update_committee(spec.Epoch(0), genesis=True)
def __handle_simulation_end(self, event: SimulationEndEvent):
self.log(event, "SimulationEnd")
statsfile = f"stats_{self.counter}_{self.starttime}.json"
if self.debug and pathlib.Path(statsfile).is_file():
with open(statsfile, "a", encoding="utf-8") as fp:
fp.write("]")
print(f"[BEACON NODE {self.counter}] Received SimulationEndEvent")
time.sleep(3)
# Mark all remaining tasks as done
next_task = queue_element_or_none(self.simulator_to_client_queue)
while next_task is not None:
self.simulator_to_client_queue.task_done()
next_task = queue_element_or_none(self.simulator_to_client_queue)
self.should_quit = True
if self.debug:
self.graph(show=False)
def update_committee(self, epoch: spec.Epoch, genesis=False):
committee_count_per_slot, new_committee = self.get_committee(epoch, genesis)
self.committee_count[epoch] = committee_count_per_slot
for slot, committee in new_committee.items():
self.committee[slot] = committee
def get_committee(self, epoch: spec.Epoch, genesis=False, head_state=None):
new_committee = dict()
local_state = self.state if genesis else self.head_state
local_state = head_state if head_state is not None else local_state
self.log(
f"head_state.slot=[{local_state.slot}] based on block in slot {local_state.latest_block_header.slot}",
"CommitteeDecisionBase",
)
if epoch > spec.compute_epoch_at_slot(local_state.slot) + 1:
assert False
start_slot = spec.compute_start_slot_at_epoch(epoch)
committee_count_per_slot = spec.get_committee_count_per_slot(local_state, epoch)
for slot in (
spec.Slot(s) for s in range(start_slot, start_slot + spec.SLOTS_PER_EPOCH)
):
new_committee[slot] = dict()
for committee_index in (
spec.CommitteeIndex(c) for c in range(committee_count_per_slot)
):
committee = spec.get_beacon_committee(
local_state, spec.Slot(slot), spec.CommitteeIndex(committee_index)
)
for validator_index in enumerate(committee):
new_committee[slot][validator_index[1]] = (
committee_index,
validator_index[0],
len(committee),
)
self.log(
{"slot": int(slot), "committee": str(new_committee[slot])},
"CommitteeUpdate",
)
return committee_count_per_slot, new_committee
def propose_block(
self, validator: Validator, head_state: spec.BeaconState, slashme=False
):
print(
f"[BEACON NODE {self.counter}] Create block for Validator {self.proposer_current_slot}"
)
min_slot_to_include = (
spec.compute_start_slot_at_epoch(
spec.compute_epoch_at_slot(self.current_slot)
)
if self.current_slot > spec.SLOTS_PER_EPOCH
else spec.Slot(0)
)
max_slot_to_include = self.current_slot - 1
# If the attestation's target epoch is the current epoch,
# the source checkpoint must match with the proposer's
#
# ep(target) == ep(now) => cp_justified == cp_source
# <=> ep(target) != ep(now) v cp_justified == cp_source
candidate_attestations = tuple(
attestation
for attestation in self.attestation_cache.attestations_not_seen_in_block(
min_slot_to_include, max_slot_to_include
)
if attestation.data.target.epoch != spec.get_current_epoch(head_state)
or head_state.current_justified_checkpoint == attestation.data.source
)
block = spec.BeaconBlock(
slot=head_state.slot,
proposer_index=validator.index,
parent_root=self.head_root,
state_root=spec.Bytes32(bytes(0 for _ in range(0, 32))),
)
randao_reveal = spec.get_epoch_signature(head_state, block, validator.privkey)
# Copy eth1_data from previous block as we do not connect
# to a (simulated) eth1 chain to process new deposits
eth1_data = head_state.eth1_data
# Include slashable blocks and attestations if the corresponding validators are deemed slashable
proposer_slashings: List[
spec.ProposerSlashing, spec.MAX_PROPOSER_SLASHINGS
] = list(
slashing
for slashing in self.block_cache.search_slashings(head_state)
if spec.is_slashable_validator(
head_state.validators[slashing.signed_header_1.message.proposer_index],
spec.get_current_epoch(head_state),
)
)
attester_slashings: List[
spec.AttesterSlashing, spec.MAX_ATTESTER_SLASHINGS
] = list(
slashing
for slashing in self.attestation_cache.search_slashings(head_state)
if any(
spec.is_slashable_validator(
head_state.validators[vindex], spec.get_current_epoch(head_state)
)
for vindex in set(
slashing.attestation_1.attesting_indices
).intersection(set(slashing.attestation_2.attesting_indices))
)
)
# Truncate the lists if they contain more elements than allowed by spec
if len(proposer_slashings) > spec.MAX_PROPOSER_SLASHINGS:
proposer_slashings = proposer_slashings[0 : spec.MAX_PROPOSER_SLASHINGS]
if len(attester_slashings) > spec.MAX_ATTESTER_SLASHINGS:
attester_slashings = attester_slashings[0 : spec.MAX_ATTESTER_SLASHINGS]
if len(candidate_attestations) > spec.MAX_ATTESTATIONS:
candidate_attestations = candidate_attestations[0 : spec.MAX_ATTESTATIONS]
# Provoke slashing by forming an alternative block which doesn't contain the last 2 attestations
if slashme:
candidate_attestations = candidate_attestations[
0 : len(candidate_attestations) - 2
]
# We do not support deposits and voluntary exists
deposits: List[spec.Deposit, spec.MAX_DEPOSITS] = list()
voluntary_exits: List[spec.VoluntaryExit, spec.MAX_VOLUNTARY_EXITS] = list()
body = spec.BeaconBlockBody(
randao_reveal=randao_reveal,
eth1_data=eth1_data,
graffiti=spec.Bytes32(bytes(255 for _ in range(0, 32))),
proposer_slashings=proposer_slashings,
attester_slashings=attester_slashings,
attestations=candidate_attestations,
deposits=deposits,
voluntary_exits=voluntary_exits,
)
block.body = body
try:
new_state_root = spec.compute_new_state_root(self.state, block)
except AssertionError:
validator_status = [
str(validator)
for validator in self.state.validators
if validator.slashed
]
_, _, tb = sys.exc_info()
traceback.print_tb(tb)
tb_info = traceback.extract_tb(tb)
filename, line, func, text = tb_info[-1]
self.log(
{
"text": text,
"block": str(block),
"validators": str(validator_status),
},
"FindNewStateRootError",
)
return
block.state_root = new_state_root
signed_block = spec.SignedBeaconBlock(
message=block,
signature=spec.get_block_signature(self.state, block, validator.privkey),
)
encoded_signed_block = signed_block.encode_bytes()
message = MessageEvent(
time=self.current_time,
priority=20,
message=encoded_signed_block,
message_type="SignedBeaconBlock",
fromidx=self.counter,
toidx=None,
)
self.client_to_simulator_queue.put(message)
if self.debug:
self.graph(show=False)
self.log(message.marker, "BlockMessageSent")
self.log(signed_block, "ProposeBlock")
def handle_next_slot_event(self, message: NextSlotEvent):
self.current_slot = spec.Slot(message.slot)
self.pre_next_slot_event(message)
current_epoch = spec.compute_epoch_at_slot(self.current_slot)
spec.on_tick(self.store, message.time)
self.compute_head()
if self.current_slot % spec.SLOTS_PER_EPOCH == 0:
self.update_committee(current_epoch)
self.on_epoch_start()
# Try to process queued attestations
self.attestation_cache.add_queued_attestations(self.store)
# Keep two epochs of past attestations
min_slot_to_keep = (
spec.compute_start_slot_at_epoch(
spec.compute_epoch_at_slot(self.current_slot) - 1
)
if self.current_slot > spec.SLOTS_PER_EPOCH
else spec.Slot(0)
)
self.attestation_cache.cleanup_time_cache(min_slot_to_keep)
# Handle up to last slot's attestations
for attestation in self.attestation_cache.attestations_not_known_to_forkchoice(
spec.Slot(0), max(self.current_slot - 1, 0)
):
try:
if attestation.data.beacon_block_root in self.store.blocks:
indexed = spec.get_indexed_attestation(self.head_state, attestation)
self.log(
{
"validator_estimation": indexed.attesting_indices,
"slot": attestation.data.slot,
"root": attestation.data.beacon_block_root,
},
"AttestationProcessing",
)
spec.on_attestation(self.store, attestation)
self.attestation_cache.accept_attestation(
attestation, forkchoice=True
)
except AssertionError:
_, _, tb = sys.exc_info()
traceback.print_tb(tb)
tb_info = traceback.extract_tb(tb)
filename, line, func, text = tb_info[-1]
print(f"[BEACON NODE {self.counter}] Could not validate attestation")
self.attestation_cache.deny_attestation(attestation)
self.log(
{"line": line, "text": text, "attestation": str(attestation)},
"ValidateAttestationOnSlotBoundaryError",
)
except IndexError:
self.attestation_cache.deny_attestation(attestation)
self.log({"attestation": str(attestation)}, "ValidateAttestationOnSlotBoundaryIndexError")
head_state = self.state.copy()
if head_state.slot < self.current_slot:
spec.process_slots(head_state, self.current_slot)
self.proposer_current_slot = spec.get_beacon_proposer_index(head_state)
if self.proposer_current_slot in self.indexed_validators and not self.slashed(
self.proposer_current_slot
):
# Propose block if needed
self.propose_block(
self.indexed_validators[self.proposer_current_slot], head_state
)
self.handle_statistics_event(
ProduceStatisticsEvent(
time=self.current_time, priority=0, toidx=None, print_event=False
)
)
self.post_next_slot_event(head_state, self.indexed_validators)
def pre_next_slot_event(self, message: NextSlotEvent):
pass
def on_epoch_start(self):
pass
def post_next_slot_event(self, head_state, indexed_validators):
pass
def handle_latest_voting_opportunity(self, message: LatestVoteOpportunity):
if self.slot_last_attested is None or self.slot_last_attested < message.slot:
self.attest()
def handle_aggregate_opportunity(self, message: AggregateOpportunity):
if self.disable_aggregation:
return
if self.slot_last_attested != message.slot:
return
attesting_validators = self.__attesting_validators_at_current_slot()
if len(attesting_validators) < 1:
return
current_epoch = spec.compute_epoch_at_slot(self.current_slot)
slot = spec.Slot(message.slot)
attestations_to_aggregate = dict()
# Attestations are aggregated per committee
for committee in (
spec.CommitteeIndex(c) for c in range(self.committee_count[current_epoch])
):
# Aggregate all known unaggregated attestations which represent
# the same vote this Beacon Node and its validators attested for
attestations_to_aggregate[committee] = [
attestationcache.attestation
for attestationcache in self.attestation_cache.cache_by_time.get(
slot, dict()
).get(committee, list())
if committee in self.last_attestation_data
and attestationcache.attestation.data
== self.last_attestation_data[committee]
and len(attestationcache.attesting_indices) == 1
]
for (validator_index, validator) in attesting_validators.items():
# For each validator, check if it is supposed to aggregate
validator_committee = self.committee[self.current_slot][validator_index][0]
slot_signature = spec.get_slot_signature(
self.state, spec.Slot(message.slot), validator.privkey
)
if not spec.is_aggregator(
self.state, spec.Slot(message.slot), validator_committee, slot_signature
):
continue
aggregation_bits = list(
0 for _ in range(self.committee[self.current_slot][validator_index][2])
)
# Set all bits representing the validators inside the aggregated attestation
for attestation in attestations_to_aggregate[validator_committee]:
for idx, bit in enumerate(attestation.aggregation_bits):
if bit:
aggregation_bits[idx] = 1
# noinspection PyArgumentList
aggregation_bits = Bitlist[spec.MAX_VALIDATORS_PER_COMMITTEE](
*aggregation_bits
)
attestation = spec.Attestation(
aggregation_bits=aggregation_bits,
data=self.last_attestation_data[validator_committee],
signature=spec.get_aggregate_signature(
attestations_to_aggregate[validator_committee]
),
)
aggregate_and_proof = spec.get_aggregate_and_proof(
self.state, validator_index, attestation, validator.privkey
)
aggregate_and_proof_signature = spec.get_aggregate_and_proof_signature(
self.state, aggregate_and_proof, validator.privkey
)
signed_aggregate_and_proof = spec.SignedAggregateAndProof(
message=aggregate_and_proof, signature=aggregate_and_proof_signature
)
encoded_aggregate_and_proof = signed_aggregate_and_proof.encode_bytes()
send_message = MessageEvent(
time=self.current_time,
priority=30,
message=encoded_aggregate_and_proof,
message_type="SignedAggregateAndProof",
fromidx=self.counter,
toidx=None,
)
self.client_to_simulator_queue.put(send_message)
self.log(send_message.marker, "AggregateAndProofMessageSent")
self.log(signed_aggregate_and_proof, "AggregateAndProofSend")
def handle_attestation(self, attestation: spec.Attestation, marker=None):
self.log(
{
"attestation": attestation,
"marker": marker,
"hash": spec.hash_tree_root(attestation),
},
"AttestationRecv",
)
self.attestation_cache.add_attestation(attestation, self.store, marker=marker)
def handle_aggregate(self, aggregate: spec.SignedAggregateAndProof, marker=None):
# TODO check signature
self.handle_attestation(aggregate.message.aggregate, marker)
def handle_block(self, block: spec.SignedBeaconBlock, marker=None):
# Try to process an old chain first
old_chain = self.block_cache.longest_outstanding_chain(self.store)
if len(old_chain) > 0:
self.log(len(old_chain), "OrphanedBlocksToHandle")
for cblock in old_chain:
self.__process_block_contents(cblock)
# Process the new block now
self.log(
{
"root": spec.hash_tree_root(block.message),
"parent": block.message.parent_root,
"proposer": block.message.proposer_index,
},
"BlockRecv",
)
self.block_cache.add_block(block)
try:
chain = self.block_cache.chain_for_block(block, self.store)
except KeyError as e:
print(
f"[BEACON NODE {self.counter}] Could not validate block: {e} - parts of chain are missing"
)
chain = []
self.log(len(chain), "BlocksToHandle")
for cblock in chain:
self.__process_block_contents(cblock, marker)
def __process_block_contents(self, block: spec.SignedBeaconBlock, marker=None):
try:
if block.message.slot > self.current_slot:
self.log(
f"[BEACON NODE {self.counter}] WARNING: Received block from the future (current slot=[{self.current_slot}] block slot=[{block.message.slot}])",
"FutureBlockWarning",
)
return
spec.on_block(self.store, block)
self.block_cache.accept_block(block)
for aslashing in block.message.body.attester_slashings:
self.log(aslashing, "AttesterSlashing")
self.slashings["attester"].append(str(aslashing))
for pslashing in block.message.body.proposer_slashings:
self.log(pslashing, "ProposerSlashing")
self.slashings["proposer"].append(str(pslashing))
for attestation in block.message.body.attestations:
self.attestation_cache.add_attestation(
attestation, self.store, seen_in_block=True, marker=marker
)
except AssertionError:
_, _, tb = sys.exc_info()
traceback.print_tb(tb)
tb_info = traceback.extract_tb(tb)
filename, line, func, text = tb_info[-1]
print(
f"[BEACON NODE {self.counter}] Could not validate block (assert line {line}, stmt {text})! slot=[{block.message.slot}] proposer_index=[{block.message.proposer_index}] root=[{spec.hash_tree_root(block.message)}] parent_root=[{block.message.parent_root}]"
)
self.handle_invalid_block(block, str(text))
def handle_invalid_block(self, signed_block: spec.SignedBeaconBlock, reason: str):
"""
When time attacked Beacon Nodes are inside the simulation, the following happens:
- The time attacked client produces a block, `timedelta` slots later
- If `timedelta` is big enough, the blocks produced by them will not share the same finalized checkpoint
- As such, the blocks will be rejected by the honest Beacon Nodes
- Becuase the blocks are rejected, their post-state will never be calculated
- Because their state is not calculated, the attestation cache cannot determine who attested for them. The attestations are ignored.
- When the attestations are ignored, the participant will never get slashed
Because of that, we will calculate the post-state of _every_ block, even those, which are invalid because of mismatching checkpoints
"""
if "get_ancestor" in reason and "finalized_checkpoint" in reason:
print(
f"[BEACON NODE {self.counter}] Add the block to fork choice store, even though it is invalid because of mismatching checkpoints"
)
"""
The following lines are directly taken from the eth2.0-spec code (`on_block`)
<copy>
"""
block = signed_block.message
# Parent block must be known
assert block.parent_root in self.store.block_states
# Make a copy of the state to avoid mutability issues
pre_state = self.store.block_states[block.parent_root].copy()
# Blocks cannot be in the future. If they are, their consideration must be delayed until the are in the past.
assert spec.get_current_slot(self.store) >= block.slot
# Check that block is later than the finalized epoch slot (optimization to reduce calls to get_ancestor)
finalized_slot = spec.compute_start_slot_at_epoch(
self.store.finalized_checkpoint.epoch
)
assert block.slot > finalized_slot
# Check block is a descendant of the finalized block at the checkpoint finalized slot
# assert get_ancestor(store, block.parent_root, finalized_slot) == store.finalized_checkpoint.root
# Check the block is valid and compute the post-state
state = pre_state.copy()
spec.state_transition(state, signed_block, True)
# Add new block to the store
self.store.blocks[spec.hash_tree_root(block)] = block
# Add new state for this block to the store
self.store.block_states[spec.hash_tree_root(block)] = state
"""
</copy>
"""
self.block_cache.accept_block(signed_block)
def handle_message_event(self, message: MessageEvent):
actions = {
"Attestation": self.handle_attestation,
"SignedAggregateAndProof": self.handle_aggregate,
"SignedBeaconBlock": self.handle_block,
}
decoder = {
"Attestation": spec.Attestation.decode_bytes,
"SignedAggregateAndProof": spec.SignedAggregateAndProof.decode_bytes,
"SignedBeaconBlock": spec.SignedBeaconBlock.decode_bytes,
}
# noinspection PyArgumentList
payload = decoder[message.message_type](message.message)
# noinspection PyArgumentList
actions[message.message_type](payload, message.marker)
def attest(self):
self.compute_head()
self.update_committee(spec.compute_epoch_at_slot(self.current_slot))
self.pre_attest()
current_epoch = spec.compute_epoch_at_slot(self.current_slot)
if (
self.current_slot not in self.committee
or current_epoch not in self.committee_count
):
self.update_committee(spec.compute_epoch_at_slot(self.current_slot))
attesting_validators = self.__attesting_validators_at_current_slot()
self.log(attesting_validators, "AttestingValidators")
if self.debug:
self.graph(show=False, balance=True)
if len(attesting_validators) < 1:
return
head_block = self.store.blocks[self.head_root]
head_state = self.head_state.copy()
if head_state.slot < self.current_slot:
# If the current head state's slot is lower than the current slot by time,
# advance the state to the current slot.
# Internally, the last seen block is copied and used as the block for every slot
# up until the current slot.
spec.process_slots(head_state, self.current_slot)
assert False
# As specified inside validator.md spec / Attesting / Note:
start_slot = spec.compute_start_slot_at_epoch(
spec.get_current_epoch(head_state)
)
epoch_boundary_block_root = (
spec.hash_tree_root(head_block)
if start_slot == head_state.slot
else spec.get_block_root(head_state, spec.get_current_epoch(head_state))
)
# Create Attestation for every managed Validator who is supposed to attest
for (validator_index, validator) in attesting_validators.items():
# validator_committee:
# 0: CommiteeIndex of the validator's committee
# 1: Index of the validator inside the committee
# 2: Size of the committee
validator_committee = self.committee[self.current_slot][validator_index][0]
attestation_data = self.produce_attestation_data(
validator_index,
validator_committee,
epoch_boundary_block_root,
head_block,
head_state,
)
if attestation_data is None:
continue
attestation = self.produce_attestation(
attestation_data, validator_index, validator
)
encoded_attestation = attestation.encode_bytes()
message = MessageEvent(
time=self.current_time,
priority=30,
message=encoded_attestation,
message_type="Attestation",
fromidx=self.counter,
toidx=None,
)
self.client_to_simulator_queue.put(message)
self.attestation_cache.add_attestation(
attestation, self.store, marker=message.marker
)
self.slot_last_attested = self.current_slot.copy()
self.last_attestation_data[validator_committee] = attestation_data
self.log(message.marker, "AttestationMessageSent")
self.log(attestation, "AttestationSend")
def pre_attest(self):
pass
def produce_attestation_data(
self,
validator_index,
validator_committee,
epoch_boundary_block_root,
head_block,
head_state,
) -> Optional[spec.AttestationData]:
return spec.AttestationData(
slot=self.current_slot,
index=validator_committee,
beacon_block_root=spec.hash_tree_root(head_block),
source=head_state.current_justified_checkpoint,
target=spec.Checkpoint(
epoch=spec.get_current_epoch(head_state), root=epoch_boundary_block_root
),
)
def produce_attestation(
self,
attestation_data,
validator_index: spec.ValidatorIndex,
validator: Validator,
custom_committee=None,
):
committee = custom_committee if custom_committee is not None else self.committee
aggregation_bits_list = list(
0 for _ in range(committee[self.current_slot][validator_index][2])
)
aggregation_bits_list[committee[self.current_slot][validator_index][1]] = 1
# noinspection PyArgumentList
aggregation_bits = Bitlist[spec.MAX_VALIDATORS_PER_COMMITTEE](
*aggregation_bits_list
)
return spec.Attestation(
data=attestation_data,
aggregation_bits=aggregation_bits,
signature=spec.get_attestation_signature(
self.state, attestation_data, validator.privkey
),
)
def compute_head(self):
self.head_root = spec.get_head(self.store)
self.state = self.store.block_states[self.head_root]
self.head_state = self.state.copy()
self.state_head_root = self.head_root
if self.state.slot < self.current_slot:
spec.process_slots(self.head_state, self.current_slot)
def slashed(self, validator: Optional[spec.ValidatorIndex] = None) -> bool:
if self.state.validators[validator].slashed:
print(
f"[BEACON NODE {self.counter}] Excluding Validator {validator} beacuse of slashing"
)
return self.state.validators[validator].slashed
def __attesting_validators_at_current_slot(
self,
) -> Dict[spec.ValidatorIndex, Validator]:
return self.attesting_validators_at_slot(self.current_slot)
def attesting_validators_at_slot(
self, slot: spec.Slot, committee=None
) -> Dict[spec.ValidatorIndex, Validator]:
committee = self.committee if committee is None else committee
assert slot in self.committee
attesting_indices = set(
validator.index for validator in self.validators
).intersection(set(committee[slot].keys()))
attesting_validators: Dict[spec.ValidatorIndex, Validator] = {
validator.index: validator
for validator in self.validators
if validator.index in attesting_indices
and not self.slashed(validator.index)
}
return attesting_validators
def __validators_by_index(self) -> Dict[spec.ValidatorIndex, Validator]:
return {validator.index: validator for validator in self.validators}
@staticmethod
def __validator_color(validator: spec.ValidatorIndex):
return COLORS[validator % len(COLORS)]
def graph(self, show=True, balance=False):
balances = {}
g = Digraph(
"G",
filename=f"graph_{int(time.time())}_{self.counter}_{self.current_slot}.gv",
)
blocks_by_slot_and_epoch: Dict[
spec.Epoch, Dict[spec.Slot, List[Tuple[spec.Root, spec.BeaconBlock]]]
] = {}
for root, block in self.block_cache.blocks.items():
block = block.message
epoch = spec.compute_epoch_at_slot(block.slot)
slot = block.slot
if epoch not in blocks_by_slot_and_epoch:
blocks_by_slot_and_epoch[epoch] = {}
if slot not in blocks_by_slot_and_epoch[epoch]:
blocks_by_slot_and_epoch[epoch][slot] = []
blocks_by_slot_and_epoch[epoch][slot].append((root, block))
justified_epoch, justified_root = (
self.store.justified_checkpoint.epoch,
self.store.justified_checkpoint.root,
)
finalized_epoch, finalized_root = (
self.store.finalized_checkpoint.epoch,
self.store.finalized_checkpoint.root,
)
head_root = self.head_root
for epoch in blocks_by_slot_and_epoch.keys():
with g.subgraph(name=f"cluster_epoch_{int(epoch)}") as e:
e.attr(label=f"Epoch {int(epoch)}")
epoch_style = "solid"
epoch_color = "grey"
if epoch <= justified_epoch:
epoch_style = "solid"
epoch_color = "black"
if epoch <= finalized_epoch:
epoch_style = "bold"
epoch_color = "black"
e.attr(color=epoch_color, style=epoch_style)
for slot in blocks_by_slot_and_epoch[epoch].keys():
with e.subgraph(name=f"cluster_slot_{int(slot)}") as s:
s.attr(label=f"Slot {int(slot)}", style="dashed")
# print(f'At slot: {int(slot)}')
for root, block in blocks_by_slot_and_epoch[epoch][slot]:
color = self.__validator_color(block.proposer_index)
shape = "box"
if root == head_root:
shape = "octagon"
if root == justified_root:
shape = "doubleoctagon"
if root == finalized_root:
shape = "tripleoctagon"
s.node(str(root), shape=shape, color=color, style="filled")
for epoch in blocks_by_slot_and_epoch.keys():
for slot in blocks_by_slot_and_epoch[epoch].keys():
for root, block in blocks_by_slot_and_epoch[epoch][slot]:
g.edge(str(root), str(block.parent_root))
if (
balance
and spec.compute_epoch_at_slot(block.slot) >= justified_epoch
and root in self.store.blocks
):
if root not in balances:
balances[root] = int(
int(spec.get_latest_attesting_balance(self.store, root))
/ 10 ** 9
)
g.node(