Source file baking_state.ml
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
open Protocol
open Alpha_context
open Baking_errors
(** A consensus key (aka, a validator) is identified by its alias name, its
public key, its public key hash, and its secret key. *)
type consensus_key = {
alias : string option;
public_key : Signature.Public_key.t;
public_key_hash : Signature.Public_key_hash.t;
secret_key_uri : Client_keys.sk_uri;
}
let consensus_key_encoding =
let open Data_encoding in
conv
(fun {alias; public_key; public_key_hash; secret_key_uri} ->
( alias,
public_key,
public_key_hash,
Uri.to_string (secret_key_uri :> Uri.t) ))
(fun (alias, public_key, public_key_hash, secret_key_uri) ->
{
alias;
public_key;
public_key_hash;
secret_key_uri =
(match Client_keys.make_sk_uri (Uri.of_string secret_key_uri) with
| Ok sk -> sk
| Error e -> Format.kasprintf Stdlib.failwith "%a" pp_print_trace e);
})
(obj4
(req "alias" (option string))
(req "public_key" Signature.Public_key.encoding)
(req "public_key_hash" Signature.Public_key_hash.encoding)
(req "secret_key_uri" string))
let pp_consensus_key fmt {alias; public_key_hash; _} =
match alias with
| None -> Format.fprintf fmt "%a" Signature.Public_key_hash.pp public_key_hash
| Some alias ->
Format.fprintf
fmt
"%s (%a)"
alias
Signature.Public_key_hash.pp
public_key_hash
type consensus_key_and_delegate = consensus_key * Signature.Public_key_hash.t
let consensus_key_and_delegate_encoding =
let open Data_encoding in
merge_objs
consensus_key_encoding
(obj1 (req "delegate" Signature.Public_key_hash.encoding))
let pp_consensus_key_and_delegate fmt (consensus_key, delegate) =
if Signature.Public_key_hash.equal consensus_key.public_key_hash delegate then
pp_consensus_key fmt consensus_key
else
Format.fprintf
fmt
"%a@,on behalf of %a"
pp_consensus_key
consensus_key
Signature.Public_key_hash.pp
delegate
type validation_mode = Node | Local of Abstract_context_index.t
type prequorum = {
level : int32;
round : Round.t;
block_payload_hash : Block_payload_hash.t;
preattestations : Kind.preattestation operation list;
}
type block_info = {
hash : Block_hash.t;
shell : Block_header.shell_header;
payload_hash : Block_payload_hash.t;
payload_round : Round.t;
round : Round.t;
prequorum : prequorum option;
quorum : Kind.attestation operation list;
dal_attestations : Kind.dal_attestation operation list;
payload : Operation_pool.payload;
}
type cache = {
known_timestamps : Timestamp.time Baking_cache.Timestamp_of_round_cache.t;
round_timestamps :
(Timestamp.time * Round.t * consensus_key_and_delegate)
Baking_cache.Round_timestamp_interval_cache.t;
}
let prequorum_encoding =
let open Data_encoding in
conv
(fun {level; round; block_payload_hash; preattestations} ->
(level, round, block_payload_hash, List.map Operation.pack preattestations))
(fun (level, round, block_payload_hash, preattestations) ->
{
level;
round;
block_payload_hash;
preattestations =
List.filter_map Operation_pool.unpack_preattestation preattestations;
})
(obj4
(req "level" int32)
(req "round" Round.encoding)
(req "block_payload_hash" Block_payload_hash.encoding)
(req
"preattestations"
(list (dynamic_size Operation.encoding_with_legacy_attestation_name))))
let block_info_encoding =
let open Data_encoding in
conv
(fun {
hash;
shell;
payload_hash;
payload_round;
round;
prequorum;
quorum;
dal_attestations;
payload;
} ->
( hash,
shell,
payload_hash,
payload_round,
round,
prequorum,
List.map Operation.pack quorum,
List.map Operation.pack dal_attestations,
payload ))
(fun ( hash,
shell,
payload_hash,
payload_round,
round,
prequorum,
quorum,
dal_attestations,
payload ) ->
{
hash;
shell;
payload_hash;
payload_round;
round;
prequorum;
quorum = List.filter_map Operation_pool.unpack_attestation quorum;
dal_attestations =
List.filter_map Operation_pool.unpack_dal_attestation dal_attestations;
payload;
})
(obj9
(req "hash" Block_hash.encoding)
(req "shell" Block_header.shell_header_encoding)
(req "payload_hash" Block_payload_hash.encoding)
(req "payload_round" Round.encoding)
(req "round" Round.encoding)
(req "prequorum" (option prequorum_encoding))
(req
"quorum"
(list (dynamic_size Operation.encoding_with_legacy_attestation_name)))
(req
"dal_attestations"
(list (dynamic_size Operation.encoding_with_legacy_attestation_name)))
(req "payload" Operation_pool.payload_encoding))
let =
let open Result_syntax in
let* fitness =
Environment.wrap_tzresult
@@ Fitness.from_raw shell_header.Tezos_base.Block_header.fitness
in
return (Fitness.round fitness)
module SlotMap : Map.S with type key = Slot.t = Map.Make (Slot)
type delegate_slot = {
consensus_key_and_delegate : consensus_key_and_delegate;
first_slot : Slot.t;
attesting_power : int;
}
module Delegate_slots = struct
type t = {
own_delegates : delegate_slot list;
own_delegate_slots : delegate_slot SlotMap.t;
all_delegate_voting_power : int SlotMap.t;
}
let own_delegates slots = slots.own_delegates
let own_slot_owner slots ~slot = SlotMap.find slot slots.own_delegate_slots
let voting_power slots ~slot =
SlotMap.find slot slots.all_delegate_voting_power
end
type delegate_slots = Delegate_slots.t
type proposal = {block : block_info; predecessor : block_info}
let proposal_encoding =
let open Data_encoding in
conv
(fun {block; predecessor} -> (block, predecessor))
(fun (block, predecessor) -> {block; predecessor})
(obj2
(req "block" block_info_encoding)
(req "predecessor" block_info_encoding))
let is_first_block_in_protocol {block; predecessor; _} =
Compare.Int.(block.shell.proto_level <> predecessor.shell.proto_level)
type locked_round = {payload_hash : Block_payload_hash.t; round : Round.t}
let locked_round_encoding =
let open Data_encoding in
conv
(fun {payload_hash; round} -> (payload_hash, round))
(fun (payload_hash, round) -> {payload_hash; round})
(obj2
(req "payload_hash" Block_payload_hash.encoding)
(req "round" Round.encoding))
type attestable_payload = {proposal : proposal; prequorum : prequorum}
let attestable_payload_encoding =
let open Data_encoding in
conv
(fun {proposal; prequorum} -> (proposal, prequorum))
(fun (proposal, prequorum) -> {proposal; prequorum})
(obj2
(req "proposal" proposal_encoding)
(req "prequorum" prequorum_encoding))
type elected_block = {
proposal : proposal;
attestation_qc : Kind.attestation Operation.t list;
}
type prepared_block = {
signed_block_header : block_header;
round : Round.t;
delegate : consensus_key_and_delegate;
operations : Tezos_base.Operation.t list list;
baking_votes : Per_block_votes_repr.per_block_votes;
}
type level_state = {
current_level : int32;
latest_proposal : proposal;
is_latest_proposal_applied : bool;
locked_round : locked_round option;
attestable_payload : attestable_payload option;
elected_block : elected_block option;
delegate_slots : delegate_slots;
next_level_delegate_slots : delegate_slots;
next_level_proposed_round : Round.t option;
}
type phase =
| Idle
| Awaiting_preattestations
| Awaiting_attestations
| Awaiting_application
let phase_encoding =
let open Data_encoding in
union
~tag_size:`Uint8
[
case
~title:"Idle"
(Tag 0)
(constant "Idle")
(function Idle -> Some () | _ -> None)
(fun () -> Idle);
case
~title:"Awaiting_preattestations"
(Tag 1)
(constant "Awaiting_preattestations")
(function Awaiting_preattestations -> Some () | _ -> None)
(fun () -> Awaiting_preattestations);
case
~title:"Awaiting_application"
(Tag 2)
(constant "Awaiting_application")
(function Awaiting_application -> Some () | _ -> None)
(fun () -> Awaiting_application);
case
~title:"Awaiting_attestationss"
(Tag 3)
(constant "Awaiting_attestationss")
(function Awaiting_attestations -> Some () | _ -> None)
(fun () -> Awaiting_attestations);
]
type block_kind =
| Fresh of Operation_pool.pool
| Reproposal of {
consensus_operations : packed_operation list;
payload_hash : Block_payload_hash.t;
payload_round : Round.t;
payload : Operation_pool.payload;
}
type block_to_bake = {
predecessor : block_info;
round : Round.t;
delegate : consensus_key_and_delegate;
kind : block_kind;
force_apply : bool;
}
type consensus_vote_kind = Attestation | Preattestation
let consensus_vote_kind_encoding =
let open Data_encoding in
union
[
case
(Tag 0)
~title:"preattestation"
unit
(function Preattestation -> Some () | _ -> None)
(fun () -> Preattestation);
case
(Tag 1)
~title:"attestation"
unit
(function Attestation -> Some () | _ -> None)
(fun () -> Attestation);
]
let pp_consensus_vote_kind fmt = function
| Attestation -> Format.fprintf fmt "attestation"
| Preattestation -> Format.fprintf fmt "preattestation"
type unsigned_consensus_vote = {
vote_kind : consensus_vote_kind;
vote_consensus_content : consensus_content;
delegate : consensus_key_and_delegate;
}
type batch_content = {
level : Raw_level.t;
round : Round.t;
block_payload_hash : Block_payload_hash.t;
}
type unsigned_consensus_vote_batch = {
batch_kind : consensus_vote_kind;
batch_content : batch_content;
batch_branch : Block_hash.t;
unsigned_consensus_votes : unsigned_consensus_vote list;
}
let make_unsigned_consensus_vote_batch kind
({level; round; block_payload_hash} as batch_content) ~batch_branch
delegates_and_slots =
let unsigned_consensus_votes =
List.map
(fun (delegate, slot) ->
let consensus_content = {level; round; slot; block_payload_hash} in
{vote_kind = kind; vote_consensus_content = consensus_content; delegate})
delegates_and_slots
in
{batch_kind = kind; batch_branch; batch_content; unsigned_consensus_votes}
type signed_consensus_vote = {
unsigned_consensus_vote : unsigned_consensus_vote;
signed_operation : packed_operation;
}
type signed_consensus_vote_batch = {
batch_kind : consensus_vote_kind;
batch_content : batch_content;
batch_branch : Block_hash.t;
signed_consensus_votes : signed_consensus_vote list;
}
type error += Mismatch_signed_consensus_vote_in_batch
let () =
register_error_kind
`Permanent
~id:"Baking_state.mismatch_signed_consensus_vote_in_batch"
~title:"Mismatch signed consensus vote in batch"
~description:"Consensus votes mismatch while creating a batch."
~pp:(fun ppf () ->
Format.fprintf
ppf
"There are batched consensus votes which are not of the same kind or \
do not have the same consensus content as the rest.")
Data_encoding.unit
(function Mismatch_signed_consensus_vote_in_batch -> Some () | _ -> None)
(fun () -> Mismatch_signed_consensus_vote_in_batch)
let make_signed_consensus_vote_batch batch_kind (batch_content : batch_content)
~batch_branch signed_consensus_votes =
let open Result_syntax in
let* () =
List.iter_e
(fun {unsigned_consensus_vote; signed_operation = _} ->
error_when
(unsigned_consensus_vote.vote_kind <> batch_kind
|| Raw_level.(
unsigned_consensus_vote.vote_consensus_content.level
<> batch_content.level)
|| Round.(
unsigned_consensus_vote.vote_consensus_content.round
<> batch_content.round)
|| Block_payload_hash.(
unsigned_consensus_vote.vote_consensus_content.block_payload_hash
<> batch_content.block_payload_hash))
Mismatch_signed_consensus_vote_in_batch)
signed_consensus_votes
in
return {batch_kind; batch_content; batch_branch; signed_consensus_votes}
let make_singleton_consensus_vote_batch
(signed_consensus_vote : signed_consensus_vote) =
let {unsigned_consensus_vote; _} = signed_consensus_vote in
let batch_content =
{
level = unsigned_consensus_vote.vote_consensus_content.level;
round = unsigned_consensus_vote.vote_consensus_content.round;
block_payload_hash =
unsigned_consensus_vote.vote_consensus_content.block_payload_hash;
}
in
{
batch_kind = unsigned_consensus_vote.vote_kind;
batch_content;
batch_branch = signed_consensus_vote.signed_operation.shell.branch;
signed_consensus_votes = [signed_consensus_vote];
}
type round_state = {
current_round : Round.t;
current_phase : phase;
delayed_quorum : Kind.attestation operation list option;
early_attestations : signed_consensus_vote list;
awaiting_unlocking_pqc : bool;
}
type forge_event =
| Block_ready of prepared_block
| Preattestation_ready of signed_consensus_vote
| Attestation_ready of signed_consensus_vote
type forge_request =
| Forge_and_sign_block of block_to_bake
| Forge_and_sign_preattestations of {
unsigned_preattestations : unsigned_consensus_vote_batch;
}
| Forge_and_sign_attestations of {
unsigned_attestations : unsigned_consensus_vote_batch;
}
type forge_worker_hooks = {
push_request : forge_request -> unit;
get_forge_event_stream : unit -> forge_event Lwt_stream.t;
cancel_all_pending_tasks : unit -> unit;
}
type global_state = {
cctxt : Protocol_client_context.full;
chain_id : Chain_id.t;
config : Baking_configuration.t;
constants : Constants.t;
round_durations : Round.round_durations;
operation_worker : Operation_worker.t;
mutable forge_worker_hooks : forge_worker_hooks;
validation_mode : validation_mode;
delegates : consensus_key list;
cache : cache;
dal_node_rpc_ctxt : Tezos_rpc.Context.generic option;
}
type state = {
global_state : global_state;
level_state : level_state;
round_state : round_state;
}
type t = state
let update_current_phase state new_phase =
{state with round_state = {state.round_state with current_phase = new_phase}}
type timeout_kind =
| End_of_round of {ending_round : Round.t}
| Time_to_prepare_next_level_block of {at_round : Round.t}
let timeout_kind_encoding =
let open Data_encoding in
union
[
case
(Tag 0)
~title:"End_of_round"
(obj2
(req "kind" (constant "End_of_round"))
(req "round" Round.encoding))
(function
| End_of_round {ending_round} -> Some ((), ending_round) | _ -> None)
(fun ((), ending_round) -> End_of_round {ending_round});
case
(Tag 1)
~title:"Time_to_prepare_next_level_block"
(obj2
(req "kind" (constant "Time_to_prepare_next_level_block"))
(req "round" Round.encoding))
(function
| Time_to_prepare_next_level_block {at_round} -> Some ((), at_round)
| _ -> None)
(fun ((), at_round) -> Time_to_prepare_next_level_block {at_round});
]
type event =
| New_valid_proposal of proposal
| New_head_proposal of proposal
| Prequorum_reached of
Operation_worker.candidate * Kind.preattestation operation list
| Quorum_reached of
Operation_worker.candidate * Kind.attestation operation list
| New_forge_event of forge_event
| Timeout of timeout_kind
let event_encoding =
let open Data_encoding in
union
[
case
(Tag 0)
~title:"New_valid_proposal"
(tup2 (constant "New_valid_proposal") proposal_encoding)
(function New_valid_proposal p -> Some ((), p) | _ -> None)
(fun ((), p) -> New_valid_proposal p);
case
(Tag 1)
~title:"New_head_proposal"
(tup2 (constant "New_head_proposal") proposal_encoding)
(function New_head_proposal p -> Some ((), p) | _ -> None)
(fun ((), p) -> New_head_proposal p);
case
(Tag 2)
~title:"Prequorum_reached"
(tup3
(constant "Prequorum_reached")
Operation_worker.candidate_encoding
(Data_encoding.list
(dynamic_size Operation.encoding_with_legacy_attestation_name)))
(function
| Prequorum_reached (candidate, ops) ->
Some ((), candidate, List.map Operation.pack ops)
| _ -> None)
(fun ((), candidate, ops) ->
Prequorum_reached
(candidate, Operation_pool.filter_preattestations ops));
case
(Tag 3)
~title:"Quorum_reached"
(tup3
(constant "Quorum_reached")
Operation_worker.candidate_encoding
(Data_encoding.list
(dynamic_size Operation.encoding_with_legacy_attestation_name)))
(function
| Quorum_reached (candidate, ops) ->
Some ((), candidate, List.map Operation.pack ops)
| _ -> None)
(fun ((), candidate, ops) ->
Quorum_reached (candidate, Operation_pool.filter_attestations ops));
case
(Tag 4)
~title:"Timeout"
(tup2 (constant "Timeout") timeout_kind_encoding)
(function Timeout tk -> Some ((), tk) | _ -> None)
(fun ((), tk) -> Timeout tk);
]
let vote_kind_encoding =
let open Data_encoding in
union
[
case
(Tag 0)
~title:"Preattestation"
unit
(function Preattestation -> Some () | _ -> None)
(fun () -> Preattestation);
case
(Tag 1)
~title:"Attestation"
unit
(function Attestation -> Some () | _ -> None)
(fun () -> Attestation);
]
let unsigned_consensus_vote_encoding =
let open Data_encoding in
conv
(fun {vote_kind; vote_consensus_content; delegate} ->
(vote_kind, vote_consensus_content, delegate))
(fun (vote_kind, vote_consensus_content, delegate) ->
{vote_kind; vote_consensus_content; delegate})
(obj3
(req "vote_kind" vote_kind_encoding)
(req "vote_consensus_content" consensus_content_encoding)
(req "delegate" consensus_key_and_delegate_encoding))
let signed_consensus_vote_encoding =
let open Data_encoding in
conv
(fun {unsigned_consensus_vote; signed_operation} ->
(unsigned_consensus_vote, signed_operation))
(fun (unsigned_consensus_vote, signed_operation) ->
{unsigned_consensus_vote; signed_operation})
(obj2
(req "unsigned_consensus_vote" unsigned_consensus_vote_encoding)
(req "signed_operation" (dynamic_size Operation.encoding)))
let forge_event_encoding =
let open Data_encoding in
let prepared_block_encoding =
conv
(fun {; round; delegate; operations; baking_votes} ->
(signed_block_header, round, delegate, operations, baking_votes))
(fun (, round, delegate, operations, baking_votes) ->
{signed_block_header; round; delegate; operations; baking_votes})
(obj5
(req "header" (dynamic_size Block_header.encoding))
(req "round" Round.encoding)
(req "delegate" consensus_key_and_delegate_encoding)
(req
"operations"
(list (list (dynamic_size Tezos_base.Operation.encoding))))
(req "baking_votes" Per_block_votes.per_block_votes_encoding))
in
union
[
case
(Tag 0)
~title:"Block_ready"
(obj1 (req "signed_block" prepared_block_encoding))
(function
| Block_ready prepared_block -> Some prepared_block | _ -> None)
(fun prepared_block -> Block_ready prepared_block);
case
(Tag 1)
~title:"Preattestation_ready"
(obj1 (req "signed_preattestation" signed_consensus_vote_encoding))
(function
| Preattestation_ready signed_preattestation ->
Some signed_preattestation
| _ -> None)
(fun signed_preattestation ->
Preattestation_ready signed_preattestation);
case
(Tag 2)
~title:"Attestation_ready"
(obj1 (req "signed_attestation" signed_consensus_vote_encoding))
(function
| Attestation_ready signed_attestation -> Some signed_attestation
| _ -> None)
(fun signed_attestation -> Attestation_ready signed_attestation);
]
module Events = struct
include Internal_event.Simple
let section = [Protocol.name; "baker"; "disk"]
let incompatible_stored_state =
declare_0
~section
~name:"incompatible_stored_state"
~level:Warning
~msg:"found an outdated or corrupted baking state: discarding it"
()
end
type state_data = {
level_data : int32;
locked_round_data : locked_round option;
attestable_payload_data : attestable_payload option;
}
let state_data_encoding =
let open Data_encoding in
conv
(fun {level_data; locked_round_data; attestable_payload_data} ->
(level_data, locked_round_data, attestable_payload_data))
(fun (level_data, locked_round_data, attestable_payload_data) ->
{level_data; locked_round_data; attestable_payload_data})
(obj3
(req "level" int32)
(req "locked_round" (option locked_round_encoding))
(req "attestable_payload" (option attestable_payload_encoding)))
let record_state (state : state) =
let open Lwt_result_syntax in
let cctxt = state.global_state.cctxt in
let location =
Baking_files.resolve_location ~chain_id:state.global_state.chain_id `State
in
let filename =
Filename.Infix.(cctxt#get_base_dir // Baking_files.filename location)
in
protect @@ fun () ->
cctxt#with_lock @@ fun () ->
let level_data = state.level_state.current_level in
let locked_round_data = state.level_state.locked_round in
let attestable_payload_data = state.level_state.attestable_payload in
let bytes =
Data_encoding.Binary.to_bytes_exn
state_data_encoding
{level_data; locked_round_data; attestable_payload_data}
in
let filename_tmp = filename ^ "_tmp" in
let*! () =
Lwt_io.with_file
~flags:[Unix.O_CREAT; O_WRONLY; O_TRUNC; O_CLOEXEC; O_SYNC]
~mode:Output
filename_tmp
(fun channel ->
Lwt_io.write_from_exactly channel bytes 0 (Bytes.length bytes))
in
let*! () = Lwt_unix.rename filename_tmp filename in
return_unit
let may_record_new_state ~previous_state ~new_state =
let open Lwt_result_syntax in
if new_state.global_state.config.state_recorder = Baking_configuration.Memory
then return_unit
else
let {
current_level = previous_current_level;
locked_round = previous_locked_round;
attestable_payload = previous_attestable_payload;
_;
} =
previous_state.level_state
in
let {
current_level = new_current_level;
locked_round = new_locked_round;
attestable_payload = new_attestable_payload;
_;
} =
new_state.level_state
in
let is_new_state_consistent =
Compare.Int32.(new_current_level > previous_current_level)
|| new_current_level = previous_current_level
&&
if Compare.Int32.(new_current_level = previous_current_level) then
let is_new_locked_round_consistent =
match (new_locked_round, previous_locked_round) with
| None, None -> true
| Some _, None -> true
| None, Some _ -> false
| Some new_locked_round, Some previous_locked_round ->
Round.(new_locked_round.round >= previous_locked_round.round)
in
let is_new_attestable_payload_consistent =
match (new_attestable_payload, previous_attestable_payload) with
| None, None -> true
| Some _, None -> true
| None, Some _ -> false
| Some new_attestable_payload, Some previous_attestable_payload ->
Round.(
new_attestable_payload.proposal.block.round
>= previous_attestable_payload.proposal.block.round)
in
is_new_locked_round_consistent
&& is_new_attestable_payload_consistent
else true
in
let* () =
fail_unless is_new_state_consistent Broken_locked_values_invariant
in
let has_not_changed =
previous_state.level_state.current_level
== new_state.level_state.current_level
&& previous_state.level_state.locked_round
== new_state.level_state.locked_round
&& previous_state.level_state.attestable_payload
== new_state.level_state.attestable_payload
in
if has_not_changed then return_unit else record_state new_state
let load_attestable_data cctxt location =
let open Lwt_result_syntax in
protect (fun () ->
let filename =
Filename.Infix.(cctxt#get_base_dir // Baking_files.filename location)
in
let*! exists = Lwt_unix.file_exists filename in
match exists with
| false -> return_none
| true ->
Lwt_io.with_file
~flags:[Unix.O_EXCL; O_RDONLY; O_CLOEXEC]
~mode:Input
filename
(fun channel ->
let*! str = Lwt_io.read channel in
match
Data_encoding.Binary.of_string_opt state_data_encoding str
with
| Some state_data -> return_some state_data
| None ->
let*! () = Events.(emit incompatible_stored_state ()) in
return_none))
let may_load_attestable_data state =
let open Lwt_result_syntax in
let cctxt = state.global_state.cctxt in
let chain_id = state.global_state.chain_id in
let location = Baking_files.resolve_location ~chain_id `State in
protect ~on_error:(fun _ -> return state) @@ fun () ->
cctxt#with_lock @@ fun () ->
let* attestable_data_opt = load_attestable_data cctxt location in
match attestable_data_opt with
| None -> return state
| Some {level_data; locked_round_data; attestable_payload_data} ->
if Compare.Int32.(state.level_state.current_level = level_data) then
let loaded_level_state =
{
state.level_state with
locked_round = locked_round_data;
attestable_payload = attestable_payload_data;
}
in
return {state with level_state = loaded_level_state}
else return state
module DelegateSet = struct
include Set.Make (struct
type t = consensus_key
let compare {public_key_hash = pkh; _} {public_key_hash = pkh'; _} =
Signature.Public_key_hash.compare pkh pkh'
end)
let find_pkh pkh s =
let exception Found of elt in
try
iter
(fun ({public_key_hash; _} as delegate) ->
if Signature.Public_key_hash.equal pkh public_key_hash then
raise (Found delegate)
else ())
s ;
None
with Found d -> Some d
end
let delegate_slots attesting_rights delegates =
let own_delegates = DelegateSet.of_list delegates in
let own_delegate_first_slots, own_delegate_slots, all_delegate_voting_power =
List.fold_left
(fun (own_list, own_map, all_map) slot ->
let {Plugin.RPC.Validators.consensus_key; delegate; slots; _} = slot in
let first_slot = Stdlib.List.hd slots in
let attesting_power = List.length slots in
let all_map = SlotMap.add first_slot attesting_power all_map in
let own_list, own_map =
match DelegateSet.find_pkh consensus_key own_delegates with
| Some consensus_key ->
let attesting_slot =
{
consensus_key_and_delegate = (consensus_key, delegate);
first_slot;
attesting_power;
}
in
( attesting_slot :: own_list,
List.fold_left
(fun own_map slot -> SlotMap.add slot attesting_slot own_map)
own_map
slots )
| None -> (own_list, own_map)
in
(own_list, own_map, all_map))
([], SlotMap.empty, SlotMap.empty)
attesting_rights
in
Delegate_slots.
{
own_delegates = own_delegate_first_slots;
own_delegate_slots;
all_delegate_voting_power;
}
let compute_delegate_slots (cctxt : Protocol_client_context.full)
?(block = `Head 0) ~level ~chain delegates =
let open Lwt_result_syntax in
let*? level = Environment.wrap_tzresult (Raw_level.of_int32 level) in
let* attesting_rights =
Plugin.RPC.Validators.get cctxt (chain, block) ~levels:[level]
in
delegate_slots attesting_rights delegates |> return
let round_proposer state ~level round =
let slots =
match level with
| `Current -> state.level_state.delegate_slots
| `Next -> state.level_state.next_level_delegate_slots
in
let committee_size =
state.global_state.constants.parametric.consensus_committee_size
in
Round.to_slot round ~committee_size |> function
| Error _ -> None
| Ok slot -> Delegate_slots.own_slot_owner slots ~slot
let cache_size_limit = 100
let create_cache () =
let open Baking_cache in
{
known_timestamps = Timestamp_of_round_cache.create cache_size_limit;
round_timestamps = Round_timestamp_interval_cache.create cache_size_limit;
}
let pp_validation_mode fmt = function
| Node -> Format.fprintf fmt "node"
| Local _ -> Format.fprintf fmt "local"
let pp_global_state fmt {chain_id; config; validation_mode; delegates; _} =
Format.fprintf
fmt
"@[<v 2>Global state:@ chain_id: %a@ @[<v 2>config:@ %a@]@ \
validation_mode: %a@ @[<v 2>delegates:@ %a@]@]"
Chain_id.pp
chain_id
Baking_configuration.pp
config
pp_validation_mode
validation_mode
Format.(pp_print_list pp_consensus_key)
delegates
let pp_option pp fmt = function
| None -> Format.fprintf fmt "none"
| Some v -> Format.fprintf fmt "%a" pp v
let pp_prequorum fmt {level; round; block_payload_hash; preattestations} =
Format.fprintf
fmt
"level: %ld, round: %a, payload_hash: %a, preattestations: %d"
level
Round.pp
round
Block_payload_hash.pp_short
block_payload_hash
(List.length preattestations)
let pp_block_info fmt
{
hash;
shell;
payload_hash;
round;
prequorum;
quorum;
dal_attestations;
payload;
payload_round;
} =
Format.fprintf
fmt
"@[<v 2>Block:@ hash: %a@ payload_hash: %a@ level: %ld@ round: %a@ \
prequorum: %a@ quorum: %d attestations@ dal_attestations: %d@ payload: \
%a@ payload round: %a@]"
Block_hash.pp
hash
Block_payload_hash.pp_short
payload_hash
shell.level
Round.pp
round
(pp_option pp_prequorum)
prequorum
(List.length quorum)
(List.length dal_attestations)
Operation_pool.pp_payload
payload
Round.pp
payload_round
let pp_proposal fmt {block; _} = pp_block_info fmt block
let pp_locked_round fmt ({payload_hash; round} : locked_round) =
Format.fprintf
fmt
"payload hash: %a, round: %a"
Block_payload_hash.pp_short
payload_hash
Round.pp
round
let pp_attestable_payload fmt {proposal; prequorum} =
Format.fprintf
fmt
"proposal: %a, prequorum: %a"
Block_hash.pp
proposal.block.hash
pp_prequorum
prequorum
let pp_elected_block fmt {proposal; attestation_qc} =
Format.fprintf
fmt
"@[<v 2>%a@ nb quorum attestations: %d@]"
pp_block_info
proposal.block
(List.length attestation_qc)
let pp_delegate_slot fmt
{consensus_key_and_delegate; first_slot; attesting_power} =
Format.fprintf
fmt
"slots: @[<h>first_slot: %a@],@ delegate: %a,@ attesting_power: %d"
Slot.pp
first_slot
pp_consensus_key_and_delegate
consensus_key_and_delegate
attesting_power
let pp_delegate_slots fmt Delegate_slots.{own_delegate_slots; _} =
Format.fprintf
fmt
"@[<v>%a@]"
Format.(
pp_print_list ~pp_sep:pp_print_cut (fun fmt (slot, attesting_slot) ->
Format.fprintf
fmt
"slot: %a, %a"
Slot.pp
slot
pp_delegate_slot
attesting_slot))
(SlotMap.bindings own_delegate_slots)
let pp_prepared_block fmt
{; delegate = consensus_key_and_delegate; _} =
Format.fprintf
fmt
"predecessor block hash: %a, payload hash: %a, level: %ld, delegate: %a"
Block_hash.pp
signed_block_header.shell.predecessor
Block_payload_hash.pp_short
signed_block_header.protocol_data.contents.payload_hash
signed_block_header.shell.level
pp_consensus_key_and_delegate
consensus_key_and_delegate
let pp_level_state fmt
{
current_level;
latest_proposal;
is_latest_proposal_applied;
locked_round;
attestable_payload;
elected_block;
delegate_slots;
next_level_delegate_slots;
next_level_proposed_round;
} =
Format.fprintf
fmt
"@[<v 2>Level state:@ current level: %ld@ @[<v 2>proposal (applied:%b):@ \
%a@]@ locked round: %a@ attestable payload: %a@ elected block: %a@ @[<v \
2>own delegate slots:@ %a@]@ @[<v 2>next level own delegate slots:@ %a@]@ \
next level proposed round: %a@]"
current_level
is_latest_proposal_applied
pp_proposal
latest_proposal
(pp_option pp_locked_round)
locked_round
(pp_option pp_attestable_payload)
attestable_payload
(pp_option pp_elected_block)
elected_block
pp_delegate_slots
delegate_slots
pp_delegate_slots
next_level_delegate_slots
(pp_option Round.pp)
next_level_proposed_round
let pp_phase fmt = function
| Idle -> Format.fprintf fmt "idle"
| Awaiting_preattestations -> Format.fprintf fmt "awaiting preattestations"
| Awaiting_application -> Format.fprintf fmt "awaiting application"
| Awaiting_attestations -> Format.fprintf fmt "awaiting attestations"
let pp_round_state fmt
{
current_round;
current_phase;
delayed_quorum;
early_attestations;
awaiting_unlocking_pqc;
} =
Format.fprintf
fmt
"@[<v 2>Round state:@ round: %a,@ phase: %a,@ delayed quorum: %a,@ early \
attestations: %d,@ awaiting unlocking pqc: %b@]"
Round.pp
current_round
pp_phase
current_phase
(pp_option Format.pp_print_int)
(Option.map List.length delayed_quorum)
(List.length early_attestations)
awaiting_unlocking_pqc
let pp fmt {global_state; level_state; round_state} =
Format.fprintf
fmt
"@[<v 2>State:@ %a@ %a@ %a@]"
pp_global_state
global_state
pp_level_state
level_state
pp_round_state
round_state
let pp_timeout_kind fmt = function
| End_of_round {ending_round} ->
Format.fprintf fmt "end of round %a" Round.pp ending_round
| Time_to_prepare_next_level_block {at_round} ->
Format.fprintf
fmt
"time to prepare next level block at round %a"
Round.pp
at_round
let pp_forge_event fmt =
let open Format in
let pp_signed_consensus_vote fmt {unsigned_consensus_vote; _} =
fprintf
fmt
"for delegate %a at level %ld (round %a)"
pp_consensus_key_and_delegate
unsigned_consensus_vote.delegate
(Raw_level.to_int32 unsigned_consensus_vote.vote_consensus_content.level)
Round.pp
unsigned_consensus_vote.vote_consensus_content.round
in
function
| Block_ready {; round; delegate; _} ->
fprintf
fmt
"block ready for delegate: %a at level %ld (round: %a)"
pp_consensus_key_and_delegate
delegate
signed_block_header.shell.level
Round.pp
round
| Preattestation_ready signed_preattestation ->
fprintf
fmt
"preattestation ready %a"
pp_signed_consensus_vote
signed_preattestation
| Attestation_ready signed_attestation ->
fprintf
fmt
"attestation ready %a"
pp_signed_consensus_vote
signed_attestation
let pp_event fmt = function
| New_valid_proposal proposal ->
Format.fprintf
fmt
"new valid proposal received: %a"
pp_block_info
proposal.block
| New_head_proposal proposal ->
Format.fprintf
fmt
"new head proposal received: %a"
pp_block_info
proposal.block
| Prequorum_reached (candidate, preattestations) ->
Format.fprintf
fmt
"prequorum reached with %d preattestations for %a at round %a"
(List.length preattestations)
Block_hash.pp
candidate.Operation_worker.hash
Round.pp
candidate.round_watched
| Quorum_reached (candidate, attestations) ->
Format.fprintf
fmt
"quorum reached with %d attestations for %a at round %a"
(List.length attestations)
Block_hash.pp
candidate.Operation_worker.hash
Round.pp
candidate.round_watched
| New_forge_event forge_event ->
Format.fprintf fmt "new forge event: %a" pp_forge_event forge_event
| Timeout kind ->
Format.fprintf fmt "timeout reached: %a" pp_timeout_kind kind