Source file baking_scheduling.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
open Protocol.Alpha_context
module Events = Baking_events.Scheduling
open Baking_state
type loop_state = {
heads_stream : Baking_state.proposal Lwt_stream.t;
get_valid_blocks_stream : Baking_state.proposal Lwt_stream.t Lwt.t;
qc_stream : Operation_worker.event Lwt_stream.t;
forge_event_stream : forge_event Lwt_stream.t;
future_block_stream :
[`New_future_head of proposal | `New_future_valid_proposal of proposal]
Lwt_stream.t;
push_future_block :
[`New_future_head of proposal | `New_future_valid_proposal of proposal] ->
unit;
mutable last_get_head_event :
[`New_head_proposal of proposal option] Lwt.t option;
mutable last_get_valid_block_event :
[`New_valid_proposal of proposal option] Lwt.t option;
mutable last_future_block_event :
[`New_future_head of proposal | `New_future_valid_proposal of proposal]
Lwt.t
option;
mutable last_get_qc_event :
[`QC_reached of Operation_worker.event option] Lwt.t option;
mutable last_forge_event :
[`New_forge_event of forge_event option] Lwt.t option;
}
type events =
[ `New_future_head of proposal
| `New_future_valid_proposal of proposal
| `New_valid_proposal of proposal option
| `New_head_proposal of proposal option
| `QC_reached of Operation_worker.event option
| `New_forge_event of forge_event option
| `Termination
| `Timeout of timeout_kind ]
Lwt.t
let create_loop_state ?get_valid_blocks_stream ~heads_stream ~forge_event_stream
operation_worker =
let future_block_stream, push_future_block = Lwt_stream.create () in
let get_valid_blocks_stream =
match get_valid_blocks_stream with
| None -> Lwt.return (Lwt_stream.create () |> fst)
| Some vbs_t -> vbs_t
in
{
heads_stream;
get_valid_blocks_stream;
qc_stream = Operation_worker.get_quorum_event_stream operation_worker;
forge_event_stream;
future_block_stream;
push_future_block = (fun x -> push_future_block (Some x));
last_get_head_event = None;
last_get_valid_block_event = None;
last_future_block_event = None;
last_get_qc_event = None;
last_forge_event = None;
}
let find_in_known_round_intervals known_round_intervals ~predecessor_timestamp
~predecessor_round ~now =
let open Baking_cache in
Round_timestamp_interval_cache.(
find_opt
known_round_intervals
{predecessor_timestamp; predecessor_round; time_interval = (now, now)})
let sleep_until_ptime ptime =
let delay = Ptime.diff ptime (Time.System.now ()) in
if Ptime.Span.compare delay Ptime.Span.zero < 0 then None
else Some (Lwt_unix.sleep (Ptime.Span.to_float_s delay))
(** The function is blocking until it is [time]. *)
let sleep_until time =
let time = Time.System.of_protocol_exn time in
sleep_until_ptime time
let terminated =
let open Lwt_syntax in
let+ _ = Lwt_exit.clean_up_starts in
`Termination
let rec wait_next_event ~timeout loop_state =
let open Lwt_result_syntax in
let get_head_event () =
match loop_state.last_get_head_event with
| None ->
let t =
let*! e = Lwt_stream.get loop_state.heads_stream in
Lwt.return (`New_head_proposal e)
in
loop_state.last_get_head_event <- Some t ;
t
| Some t -> t
in
let get_valid_block_event () =
match loop_state.last_get_valid_block_event with
| None ->
let t =
let*! valid_blocks_stream = loop_state.get_valid_blocks_stream in
let*! e = Lwt_stream.get valid_blocks_stream in
Lwt.return (`New_valid_proposal e)
in
loop_state.last_get_valid_block_event <- Some t ;
t
| Some t -> t
in
let get_future_block_event () =
match loop_state.last_future_block_event with
| None ->
let t =
let*! future_proposal =
Lwt_stream.get loop_state.future_block_stream
in
Lwt.return
@@
match future_proposal with
| None ->
assert false
| Some future_proposal -> future_proposal
in
loop_state.last_future_block_event <- Some t ;
t
| Some t -> t
in
let get_qc_event () =
match loop_state.last_get_qc_event with
| None ->
let t =
let*! e = Lwt_stream.get loop_state.qc_stream in
Lwt.return (`QC_reached e)
in
loop_state.last_get_qc_event <- Some t ;
t
| Some t -> t
in
let get_forge_event () =
match loop_state.last_forge_event with
| None ->
let t =
let*! e = Lwt_stream.get loop_state.forge_event_stream in
Lwt.return (`New_forge_event e)
in
loop_state.last_forge_event <- Some t ;
t
| Some t -> t
in
let open Baking_state in
let*! result =
Lwt.choose
[
terminated;
(get_head_event () :> events);
(get_valid_block_event () :> events);
(get_future_block_event () :> events);
(get_qc_event () :> events);
(get_forge_event () :> events);
(timeout :> events);
]
in
match result with
| `Termination ->
return_none
| `New_valid_proposal None ->
loop_state.last_get_valid_block_event <- None ;
tzfail Baking_errors.Node_connection_lost
| `New_head_proposal None ->
loop_state.last_get_head_event <- None ;
tzfail Baking_errors.Node_connection_lost
| `QC_reached None ->
loop_state.last_get_qc_event <- None ;
return_none
| `New_forge_event None ->
loop_state.last_forge_event <- None ;
return_none
| `New_valid_proposal (Some proposal) -> (
loop_state.last_get_valid_block_event <- None ;
match sleep_until proposal.block.shell.timestamp with
| Some waiter ->
let*! () = Events.(emit proposal_in_the_future proposal.block.hash) in
Lwt.dont_wait
(fun () ->
let*! () = waiter in
loop_state.push_future_block (`New_future_valid_proposal proposal) ;
Lwt.return_unit)
(fun _exn -> ()) ;
wait_next_event ~timeout loop_state
| None -> return_some (New_valid_proposal proposal))
| `New_head_proposal (Some proposal) -> (
loop_state.last_get_head_event <- None ;
match sleep_until proposal.block.shell.timestamp with
| Some waiter ->
let*! () = Events.(emit proposal_in_the_future proposal.block.hash) in
Lwt.dont_wait
(fun () ->
let*! () = waiter in
loop_state.push_future_block (`New_future_head proposal) ;
Lwt.return_unit)
(fun _exn -> ()) ;
wait_next_event ~timeout loop_state
| None -> return_some (New_head_proposal proposal))
| `New_future_head proposal ->
let*! () =
Events.(emit process_proposal_in_the_future proposal.block.hash)
in
loop_state.last_future_block_event <- None ;
return_some (New_head_proposal proposal)
| `New_future_valid_proposal proposal ->
let*! () =
Events.(emit process_proposal_in_the_future proposal.block.hash)
in
loop_state.last_future_block_event <- None ;
return_some (New_valid_proposal proposal)
| `QC_reached
(Some (Operation_worker.Prequorum_reached (candidate, preattestation_qc)))
->
loop_state.last_get_qc_event <- None ;
return_some (Prequorum_reached (candidate, preattestation_qc))
| `QC_reached
(Some (Operation_worker.Quorum_reached (candidate, attestation_qc))) ->
loop_state.last_get_qc_event <- None ;
return_some (Quorum_reached (candidate, attestation_qc))
| `New_forge_event (Some event) ->
loop_state.last_forge_event <- None ;
return_some (New_forge_event event)
| `Timeout e -> return_some (Timeout e)
let rec first_own_round_in_range delegate_slots ~committee_size ~included_min
~excluded_max =
if included_min >= excluded_max then None
else
match Round.of_int included_min with
| Error _ ->
None
| Ok round -> (
match Round.to_slot round ~committee_size with
| Error _ ->
None
| Ok slot -> (
match Delegate_slots.own_slot_owner delegate_slots ~slot with
| Some {consensus_key_and_delegate; _} ->
Some (round, consensus_key_and_delegate)
| None ->
first_own_round_in_range
delegate_slots
~committee_size
~included_min:(included_min + 1)
~excluded_max))
let first_potential_round_at_next_level state ~earliest_round =
match Round.to_int earliest_round with
| Error _ -> None
| Ok earliest_round ->
let committee_size =
state.global_state.constants.parametric.consensus_committee_size
in
first_own_round_in_range
state.level_state.next_level_delegate_slots
~committee_size
~included_min:earliest_round
~excluded_max:(earliest_round + committee_size)
(** From the current [state], the function returns an optional
association pair, which consists of the next baking timestamp and
its baking round. In that case, an elected block must exist. *)
let compute_next_potential_baking_time_at_next_level state =
let open Lwt_syntax in
let open Protocol.Alpha_context in
let open Baking_state in
match state.level_state.elected_block with
| None -> return_none
| Some elected_block -> (
let* () =
Events.(
emit
compute_next_timeout_elected_block
( elected_block.proposal.block.shell.level,
elected_block.proposal.block.round ))
in
let predecessor_timestamp =
elected_block.proposal.block.shell.timestamp
in
let predecessor_round = elected_block.proposal.block.round in
let now = Time.System.now () |> Time.System.to_protocol in
match
find_in_known_round_intervals
state.global_state.cache.round_timestamps
~predecessor_timestamp
~predecessor_round
~now
with
| Some (first_potential_baking_time, first_potential_round, delegate) -> (
match state.level_state.next_level_proposed_round with
| Some proposed_round
when Round.(proposed_round >= first_potential_round) ->
let* () = Events.(emit proposal_already_injected ()) in
return_none
| None | Some _ ->
let* () =
Events.(
emit
next_potential_slot
( Int32.succ state.level_state.current_level,
first_potential_round,
first_potential_baking_time,
delegate ))
in
return_some (first_potential_baking_time, first_potential_round))
| None -> (
let round_durations = state.global_state.round_durations in
Round.timestamp_of_round
round_durations
~predecessor_timestamp
~predecessor_round
~round:Round.zero
|> function
| Error _ -> return_none
| Ok min_possible_time -> (
(if Time.Protocol.(now < min_possible_time) then Ok Round.zero
else
Environment.wrap_tzresult
@@ Round.round_of_timestamp
round_durations
~predecessor_timestamp
~predecessor_round
~timestamp:now)
|> function
| Error _ -> return_none
| Ok earliest_round -> (
match
first_potential_round_at_next_level state ~earliest_round
with
| None -> return_none
| Some (first_potential_round, delegate) -> (
match state.level_state.next_level_proposed_round with
| Some proposed_round
when Round.(proposed_round >= first_potential_round) ->
let* () =
Events.(emit proposal_already_injected ())
in
return_none
| None | Some _ -> (
timestamp_of_round
state
~predecessor_timestamp
~predecessor_round
~round:first_potential_round
|> function
| Error _ -> return_none
| Ok first_potential_baking_time ->
let* () =
Events.(
emit
next_potential_slot
( Int32.succ state.level_state.current_level,
first_potential_round,
first_potential_baking_time,
delegate ))
in
let () =
let this_round_duration =
Round.round_duration
round_durations
first_potential_round
in
let end_first_potential_baking_time =
Timestamp.(
first_potential_baking_time
+? this_round_duration)
|> function
| Ok x -> x
| Error _ -> assert false
in
Baking_cache.(
Round_timestamp_interval_cache.replace
state.global_state.cache.round_timestamps
{
predecessor_timestamp;
predecessor_round;
time_interval =
( first_potential_baking_time,
end_first_potential_baking_time );
}
( first_potential_baking_time,
first_potential_round,
delegate ))
in
return_some
( first_potential_baking_time,
first_potential_round )))))))
(** From the current [state], the function returns an Lwt promise that
fulfills once the nearest timeout is expired and at which the state
machine will react.
Both subfunctions [wait_baking_time] and [wait_end_of_round] are
using the blocking function
[Baking_scheduling.sleep_until]. However, this call is binded into
a Lwt promise. Hence, it just won't get fulfilled until sleep time
has elapsed. Once the promise is fulfilled,
[Baking_scheduling.wait_next_event] handles with [Lwt.choose] to
react and trigger event [Timeout]. *)
let compute_next_timeout state : Baking_state.timeout_kind Lwt.t tzresult Lwt.t
=
let open Lwt_result_syntax in
let open Baking_state in
let wait_end_of_round ?(delta = 0L) (next_round_time, next_round) =
let next_time = Time.Protocol.add next_round_time delta in
let now = Time.System.now () in
let delay = Ptime.diff (Time.System.of_protocol_exn next_time) now in
let current_round = Int32.pred @@ Round.to_int32 next_round in
let*! () =
if delta = 0L then
Events.(emit waiting_end_of_round (delay, current_round, next_time))
else
Events.(
emit
waiting_delayed_end_of_round
(delay, current_round, next_time, delta))
in
let end_of_round =
Lwt.return
@@ End_of_round {ending_round = state.round_state.current_round}
in
match sleep_until next_time with
| None -> return end_of_round
| Some t ->
return
(let*! () = t in
end_of_round)
in
let wait_baking_time_next_level (next_baking_time, next_baking_round) =
let now = Time.System.now () in
let delay = Ptime.diff (Time.System.of_protocol_exn next_baking_time) now in
match sleep_until next_baking_time with
| None ->
let*! () = Events.(emit no_need_to_wait_for_proposal ()) in
return
(Lwt.return
(Time_to_prepare_next_level_block {at_round = next_baking_round}))
| Some t ->
let*! () =
Events.(emit waiting_time_to_bake (delay, next_baking_time))
in
return
(let*! () = t in
Lwt.return
(Time_to_prepare_next_level_block {at_round = next_baking_round}))
in
let delay_next_round_timeout next_round =
match round_proposer state ~level:`Current (snd next_round) with
| Some _ ->
let delta =
state.global_state.constants.parametric.minimal_block_delay
|> Period.to_seconds
|> fun d -> Int64.div d 5L
in
wait_end_of_round ~delta next_round
| None -> wait_end_of_round next_round
in
let should_wait_to_forge_block (_next_baking_time, next_baking_round) =
Option.is_some state.level_state.elected_block
&& Round.equal next_baking_round Round.zero
in
let waiting_to_forge_block (next_baking_time, next_baking_round) =
let*! () = Events.(emit first_baker_of_next_level ()) in
let now = Time.System.now () in
let next_baking_ptime = Time.System.of_protocol_exn next_baking_time in
let pre_emptive_forge_time =
state.global_state.config.pre_emptive_forge_time
in
let next_forging_ptime =
match Ptime.sub_span next_baking_ptime pre_emptive_forge_time with
| Some ptime -> ptime
| None ->
assert false
in
let delay = Ptime.diff next_forging_ptime now in
match sleep_until_ptime next_forging_ptime with
| None ->
let*! () = Events.(emit no_need_to_wait_to_forge_block ()) in
return
(Lwt.return
(Time_to_prepare_next_level_block {at_round = next_baking_round}))
| Some t ->
let*! () =
Events.(
emit
waiting_to_forge_block
(delay, Time.System.to_protocol next_forging_ptime))
in
return
(let*! () = t in
Lwt.return
(Time_to_prepare_next_level_block {at_round = next_baking_round}))
in
let next_round = compute_next_round_time state in
let*! next_baking = compute_next_potential_baking_time_at_next_level state in
match (next_round, next_baking) with
| None, None ->
let*! () = Events.(emit waiting_for_new_head ()) in
return
(let*! () = Lwt_utils.never_ending () in
assert false)
| Some next_round, None -> (
match state.level_state.elected_block with
| None -> wait_end_of_round next_round
| Some _elected_block -> delay_next_round_timeout next_round)
| None, Some next_baking ->
if should_wait_to_forge_block next_baking then
waiting_to_forge_block next_baking
else wait_baking_time_next_level next_baking
| ( Some ((next_round_time, next_round) as next_round_info),
Some ((next_baking_time, _) as next_baking) ) ->
let round_durations = state.global_state.round_durations in
let next_round_duration =
Round.round_duration round_durations next_round |> Period.to_seconds
in
if
Time.Protocol.(
next_baking_time < add next_round_time next_round_duration)
then
if should_wait_to_forge_block next_baking then
waiting_to_forge_block next_baking
else wait_baking_time_next_level next_baking
else
delay_next_round_timeout next_round_info
let may_initialise_with_latest_proposal_pqc state =
let open Lwt_result_syntax in
let p = state.level_state.latest_proposal in
match p.block.prequorum with
| None -> return state
| Some pqc -> (
match state.level_state.attestable_payload with
| Some ep when ep.prequorum.round >= pqc.round ->
return state
| Some _ | None ->
return
{
state with
level_state =
{
state.level_state with
attestable_payload = Some {prequorum = pqc; proposal = p};
};
})
let create_round_durations constants =
let first_round_duration =
constants.Constants.parametric.minimal_block_delay
in
let delay_increment_per_round =
constants.parametric.delay_increment_per_round
in
Environment.wrap_tzresult
(Round.Durations.create ~first_round_duration ~delay_increment_per_round)
let create_dal_node_rpc_ctxt endpoint =
let open Tezos_rpc_http_client_unix in
let rpc_config =
{Tezos_rpc_http_client_unix.RPC_client_unix.default_config with endpoint}
in
let media_types =
Tezos_rpc_http.Media_type.Command_line.of_command_line rpc_config.media_type
in
new RPC_client_unix.http_ctxt rpc_config media_types
let create_initial_state cctxt ?(synchronize = true) ~chain config
operation_worker ~(current_proposal : Baking_state.proposal) ?constants
delegates =
let open Lwt_result_syntax in
let open Protocol in
let open Baking_state in
let* chain_id = Shell_services.Chain.chain_id cctxt ~chain () in
let* constants =
match constants with
| Some c -> return c
| None -> Alpha_services.Constants.all cctxt (`Hash chain_id, `Head 0)
in
let*? round_durations = create_round_durations constants in
let* validation_mode =
Baking_state.(
match config.Baking_configuration.validation with
| Node -> return Node
| Local {context_path} ->
let* index = Baking_simulator.load_context ~context_path in
return (Local index)
| ContextIndex index -> return (Local index))
in
let cache = Baking_state.create_cache () in
let global_state =
{
cctxt;
chain_id;
config;
constants;
round_durations;
operation_worker;
forge_worker_hooks =
{
push_request = (fun _ -> assert false);
get_forge_event_stream = (fun _ -> assert false);
cancel_all_pending_tasks = (fun _ -> assert false);
};
validation_mode;
delegates;
cache;
dal_node_rpc_ctxt =
Option.map create_dal_node_rpc_ctxt config.dal_node_endpoint;
}
in
let forge_worker = Forge_worker.start global_state in
global_state.forge_worker_hooks <-
{
push_request = Forge_worker.push_request forge_worker;
get_forge_event_stream =
(fun () -> Forge_worker.get_event_stream forge_worker);
cancel_all_pending_tasks =
(fun () -> Forge_worker.cancel_all_pending_tasks forge_worker);
} ;
let chain = `Hash chain_id in
let current_level = current_proposal.block.shell.level in
let* delegate_slots =
Baking_state.compute_delegate_slots
cctxt
delegates
~level:current_level
~chain
in
let* next_level_delegate_slots =
Baking_state.compute_delegate_slots
cctxt
delegates
~level:(Int32.succ current_level)
~chain
in
let elected_block =
if Baking_state.is_first_block_in_protocol current_proposal then
Some {proposal = current_proposal; attestation_qc = []}
else None
in
let level_state =
{
current_level = current_proposal.block.shell.level;
latest_proposal = current_proposal;
is_latest_proposal_applied =
true ;
locked_round = None;
attestable_payload = None;
elected_block;
delegate_slots;
next_level_delegate_slots;
next_level_proposed_round = None;
}
in
let* round_state =
if synchronize then
let*? round_durations = create_round_durations constants in
let*? current_round =
Baking_actions.compute_round current_proposal round_durations
in
return
{
current_round;
current_phase = Idle;
delayed_quorum = None;
early_attestations = [];
awaiting_unlocking_pqc = false;
}
else
return
{
Baking_state.current_round = Round.zero;
current_phase = Idle;
delayed_quorum = None;
early_attestations = [];
awaiting_unlocking_pqc = false;
}
in
let state = {global_state; level_state; round_state} in
let* state = Baking_state.may_load_attestable_data state in
may_initialise_with_latest_proposal_pqc state
let compute_bootstrap_event state =
let open Result_syntax in
let open Baking_state in
if
Round.(
state.level_state.latest_proposal.block.round
= state.round_state.current_round)
then
return @@ Baking_state.New_head_proposal state.level_state.latest_proposal
else
let* ending_round =
Environment.wrap_tzresult @@ Round.pred state.round_state.current_round
in
return @@ Baking_state.Timeout (End_of_round {ending_round})
let rec automaton_loop ?(stop_on_event = fun _ -> false) ~config ~on_error
loop_state state event =
let open Lwt_result_syntax in
let state_recorder ~new_state =
match config.Baking_configuration.state_recorder with
| Baking_configuration.Filesystem ->
Baking_state.may_record_new_state ~previous_state:state ~new_state
| Baking_configuration.Memory -> return_unit
in
let*! state', action = State_transitions.step state event in
let* state'' =
let*! state_res =
let* state'' = Baking_actions.perform_action state' action in
let* () = may_record_new_state ~previous_state:state ~new_state:state'' in
return state''
in
match state_res with
| Ok state'' -> return state''
| Error error ->
let* () = on_error error in
let*! _ = state_recorder ~new_state:state' in
return state'
in
let* next_timeout = compute_next_timeout state'' in
let* event_opt =
wait_next_event
~timeout:
(let*! e = next_timeout in
Lwt.return (`Timeout e))
loop_state
in
match event_opt with
| None ->
return_none
| Some event ->
if stop_on_event event then return_some event
else
automaton_loop ~stop_on_event ~config ~on_error loop_state state'' event
let perform_sanity_check cctxt ~chain_id =
let open Lwt_result_syntax in
let open Baking_errors in
let prefix_base_dir f = Filename.Infix.(cctxt#get_base_dir // f) in
let stateful_location =
Baking_files.resolve_location ~chain_id `Stateful_nonce
in
let* _ =
Baking_nonces.load cctxt ~stateful_location
|> trace
(Cannot_load_local_file
(prefix_base_dir (Baking_files.filename stateful_location) ^ "s"))
in
let highwatermarks_location =
Baking_files.resolve_location ~chain_id `Highwatermarks
in
let* _ =
Baking_highwatermarks.load cctxt highwatermarks_location
|> trace
(Cannot_load_local_file
(prefix_base_dir (Baking_files.filename highwatermarks_location)
^ "s"))
in
let state_location = Baking_files.resolve_location ~chain_id `State in
let* _ =
Baking_state.load_attestable_data cctxt state_location
|> trace
(Cannot_load_local_file
(prefix_base_dir (Baking_files.filename state_location)))
in
return_unit
let rec retry (cctxt : #Protocol_client_context.full) ?max_delay ~delay ~factor
~tries ?(msg = "Connection failed. ") f x =
let open Lwt_result_syntax in
let*! result = f x in
match result with
| Ok _ as r -> Lwt.return r
| Error
(RPC_client_errors.Request_failed {error = Connection_failed _; _} :: _)
as err
when tries > 0 -> (
let*! () = cctxt#message "%sRetrying in %.2f seconds..." msg delay in
let*! result =
Lwt.pick
[
(let*! () = Lwt_unix.sleep delay in
Lwt.return `Continue);
(let*! _ = Lwt_exit.clean_up_starts in
Lwt.return `Killed);
]
in
match result with
| `Killed -> Lwt.return err
| `Continue ->
let next_delay = delay *. factor in
let delay =
Option.fold
~none:next_delay
~some:(fun max_delay -> Float.min next_delay max_delay)
max_delay
in
retry cctxt ?max_delay ~delay ~factor ~msg ~tries:(tries - 1) f x)
| Error _ as err -> Lwt.return err
let register_dal_profiles cctxt dal_node_rpc_ctxt delegates =
Option.iter_es
(fun dal_ctxt ->
retry
cctxt
~max_delay:2.
~delay:1.
~factor:2.
~tries:max_int
~msg:"Failed to register profiles, DAL node is not reachable. "
(fun () -> Node_rpc.register_dal_profiles dal_ctxt delegates)
())
dal_node_rpc_ctxt
let run cctxt ?canceler ?(stop_on_event = fun _ -> false)
?(on_error = fun _ -> Lwt_result_syntax.return_unit) ?constants ~chain
config delegates =
let open Lwt_result_syntax in
let* chain_id = Shell_services.Chain.chain_id cctxt ~chain () in
let* () = perform_sanity_check cctxt ~chain_id in
let cache = Baking_cache.Block_cache.create 10 in
let* heads_stream, _block_stream_stopper =
Node_rpc.monitor_heads cctxt ~cache ~chain ()
in
let* current_proposal =
let*! proposal = Lwt_stream.get heads_stream in
match proposal with
| Some current_head -> return current_head
| None -> failwith "head stream unexpectedly ended"
in
let*! operation_worker = Operation_worker.create cctxt in
Option.iter
(fun canceler ->
Lwt_canceler.on_cancel canceler (fun () ->
let*! _ = Operation_worker.shutdown_worker operation_worker in
Lwt.return_unit))
canceler ;
let* initial_state =
create_initial_state
cctxt
~chain
config
operation_worker
~current_proposal
?constants
delegates
in
let _promise =
register_dal_profiles
cctxt
initial_state.global_state.dal_node_rpc_ctxt
delegates
in
let cloned_block_stream = Lwt_stream.clone heads_stream in
let*! revelation_worker_canceler =
Baking_nonces.start_revelation_worker
cctxt
initial_state.global_state.config.nonce
initial_state.global_state.chain_id
initial_state.global_state.constants
cloned_block_stream
in
Option.iter
(fun canceler ->
Lwt_canceler.on_cancel canceler (fun () ->
let*! _ = Lwt_canceler.cancel revelation_worker_canceler in
Lwt.return_unit))
canceler ;
let get_valid_blocks_stream =
let*! vbs = Node_rpc.monitor_valid_proposals cctxt ~cache ~chain () in
match vbs with
| Error _ -> Stdlib.failwith "Failed to get the validated blocks stream"
| Ok (vbs, _) -> Lwt.return vbs
in
let forge_event_stream =
initial_state.global_state.forge_worker_hooks.get_forge_event_stream ()
in
let loop_state =
create_loop_state
~get_valid_blocks_stream
~forge_event_stream
~heads_stream
initial_state.global_state.operation_worker
in
let on_error err =
let*! () = Events.(emit error_while_baking err) in
on_error err
in
let*? initial_event = compute_bootstrap_event initial_state in
protect
~on_error:(fun err ->
let*! _ = Option.iter_es Lwt_canceler.cancel canceler in
Lwt.return_error err)
(fun () ->
let* _ignored_event =
automaton_loop
~stop_on_event
~config
~on_error
loop_state
initial_state
initial_event
in
return_unit)