Source file operation_worker.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
open Protocol_client_context
open Protocol
open Alpha_context
module Events = struct
include Internal_event.Simple
let section = [Protocol.name; "baker"; "operation_worker"]
let pp_int = Format.pp_print_int
let loop_failed =
declare_1
~section
~name:"loop_failed"
~level:Error
~msg:"loop failed with {trace}"
~pp1:Error_monad.pp_print_trace
("trace", Error_monad.trace_encoding)
let ended =
declare_1
~section
~name:"ended"
~level:Error
~msg:"ended with error {stacktrace}"
("stacktrace", Data_encoding.string)
let pqc_reached =
declare_2
~section
~name:"pqc_reached"
~level:Debug
~msg:
"prequorum reached (voting power: {voting_power}, {preattestations} \
preattestations)"
~pp1:pp_int
("voting_power", Data_encoding.int31)
~pp2:pp_int
("preattestations", Data_encoding.int31)
let preattestations_received =
declare_4
~section
~name:"preattestations_received"
~level:Debug
~msg:
"received {count} preattestations (power: {delta_power}) (total voting \
power: {voting_power}, {preattestations} preattestations)"
~pp1:pp_int
("count", Data_encoding.int31)
~pp2:pp_int
("delta_power", Data_encoding.int31)
~pp3:pp_int
("voting_power", Data_encoding.int31)
~pp4:pp_int
("preattestations", Data_encoding.int31)
let qc_reached =
declare_2
~section
~name:"qc_reached"
~level:Debug
~msg:
"quorum reached (voting power: {voting_power}, {attestations} \
attestations)"
~pp1:pp_int
("voting_power", Data_encoding.int31)
~pp2:pp_int
("attestations", Data_encoding.int31)
let attestations_received =
declare_4
~section
~name:"attestations_received"
~level:Debug
~msg:
"received {count} attestations (power: {delta_power}) (total voting \
power: {voting_power}, {attestations} attestations)"
~pp1:pp_int
("count", Data_encoding.int31)
~pp2:pp_int
("delta_power", Data_encoding.int31)
~pp3:pp_int
("voting_power", Data_encoding.int31)
~pp4:pp_int
("attestations", Data_encoding.int31)
let starting_new_monitoring =
declare_0
~section
~name:"starting_new_monitoring"
~level:Debug
~msg:"starting new monitoring"
()
let end_of_stream =
declare_0
~section
~name:"end_of_stream"
~level:Debug
~msg:"end of stream"
()
let shutting_down =
declare_0
~section
~name:"shutting_down"
~level:Info
~msg:"shutting down operation worker"
()
end
type candidate = {
hash : Block_hash.t;
round_watched : Round.t;
payload_hash_watched : Block_payload_hash.t;
}
let candidate_encoding =
let open Data_encoding in
conv
(fun {hash; round_watched; payload_hash_watched} ->
(hash, round_watched, payload_hash_watched))
(fun (hash, round_watched, payload_hash_watched) ->
{hash; round_watched; payload_hash_watched})
(obj3
(req "hash" Block_hash.encoding)
(req "round_watched" Round.encoding)
(req "payload_hash_watched" Block_payload_hash.encoding))
type event =
| Prequorum_reached of candidate * Kind.preattestation operation list
| Quorum_reached of candidate * Kind.attestation operation list
let compare_consensus_contents (op1 : consensus_content)
(op2 : consensus_content) =
Compare.or_else (Raw_level.compare op1.level op2.level) @@ fun () ->
Compare.or_else (Round.compare op1.round op2.round) @@ fun () ->
Compare.or_else (Slot.compare op1.slot op2.slot) @@ fun () ->
Block_payload_hash.compare op1.block_payload_hash op2.block_payload_hash
module Preattestation_set = Set.Make (struct
type t = Kind.preattestation operation
let compare
({protocol_data = {contents = Single (Preattestation op1); _}; shell = _} :
t)
({protocol_data = {contents = Single (Preattestation op2); _}; shell = _} :
t) =
compare_consensus_contents op1 op2
end)
module Attestation_set = Set.Make (struct
type t = Kind.attestation operation
let compare
({
protocol_data =
{
contents =
Single (Attestation {consensus_content = op1; dal_content = _});
_;
};
shell = _;
} :
t)
({
protocol_data =
{
contents =
Single (Attestation {consensus_content = op2; dal_content = _});
_;
};
shell = _;
} :
t) =
compare_consensus_contents op1 op2
end)
type pqc_watched = {
candidate_watched : candidate;
get_slot_voting_power : slot:Slot.t -> int option;
consensus_threshold : int;
mutable current_voting_power : int;
mutable preattestations_received : Preattestation_set.t;
mutable preattestations_count : int;
}
type qc_watched = {
candidate_watched : candidate;
get_slot_voting_power : slot:Slot.t -> int option;
consensus_threshold : int;
mutable current_voting_power : int;
mutable attestations_received : Attestation_set.t;
mutable attestations_count : int;
}
type watch_kind = Pqc_watch of pqc_watched | Qc_watch of qc_watched
type quorum_event_stream = {
stream : event Lwt_stream.t;
push : event option -> unit;
}
type t = {
mutable operation_pool : Operation_pool.pool;
mutable canceler : Lwt_canceler.t;
mutable proposal_watched : watch_kind option;
qc_event_stream : quorum_event_stream;
lock : Lwt_mutex.t;
monitor_node_operations : bool;
}
let monitor_operations (cctxt : #Protocol_client_context.full) =
let open Lwt_result_syntax in
let* operation_stream, stream_stopper =
Alpha_block_services.Mempool.monitor_operations
cctxt
~chain:cctxt#chain
~validated:true
~branch_delayed:true
~branch_refused:false
~refused:false
()
in
let operation_stream =
Lwt_stream.map
(fun ops -> List.map (fun ((_, op), _) -> op) ops)
operation_stream
in
let* =
Shell_services.Blocks.Header.shell_header
cctxt
~chain:cctxt#chain
~block:(`Head 0)
()
in
let round =
match Fitness.(round_from_raw shell_header.fitness) with
| Ok r -> r
| Error _ -> Round.zero
in
return ((shell_header.level, round), operation_stream, stream_stopper)
let make_initial_state ?(monitor_node_operations = true) () =
let qc_event_stream =
let stream, push = Lwt_stream.create () in
{stream; push}
in
let canceler = Lwt_canceler.create () in
let operation_pool = Operation_pool.empty in
let lock = Lwt_mutex.create () in
{
operation_pool;
canceler;
proposal_watched = None;
qc_event_stream;
lock;
monitor_node_operations;
}
let is_valid_consensus_content (candidate : candidate) consensus_content =
let {hash = _; round_watched; payload_hash_watched} = candidate in
Round.equal consensus_content.round round_watched
&& Block_payload_hash.equal
consensus_content.block_payload_hash
payload_hash_watched
let cancel_monitoring state = state.proposal_watched <- None
let reset_monitoring state =
Lwt_mutex.with_lock state.lock @@ fun () ->
match state.proposal_watched with
| None -> Lwt.return_unit
| Some (Pqc_watch pqc_watched) ->
pqc_watched.current_voting_power <- 0 ;
pqc_watched.preattestations_count <- 0 ;
pqc_watched.preattestations_received <- Preattestation_set.empty ;
Lwt.return_unit
| Some (Qc_watch qc_watched) ->
qc_watched.current_voting_power <- 0 ;
qc_watched.attestations_count <- 0 ;
qc_watched.attestations_received <- Attestation_set.empty ;
Lwt.return_unit
let update_monitoring ?(should_lock = true) state ops =
let open Lwt_syntax in
(if should_lock then Lwt_mutex.with_lock state.lock else fun f -> f ())
@@ fun () ->
match state.proposal_watched with
| None -> return_unit
| Some
(Pqc_watch
({
candidate_watched;
get_slot_voting_power;
consensus_threshold;
preattestations_received;
_;
} as proposal_watched)) ->
let preattestations = Operation_pool.filter_preattestations ops in
let preattestations =
List.filter
(fun new_preattestation ->
not
(Preattestation_set.mem
new_preattestation
preattestations_received))
preattestations
in
let preattestations_count, voting_power =
List.fold_left
(fun (count, power) (op : Kind.preattestation Operation.t) ->
let {
shell = _;
protocol_data =
{contents = Single (Preattestation consensus_content); _};
_;
} =
op
in
if is_valid_consensus_content candidate_watched consensus_content
then
match get_slot_voting_power ~slot:consensus_content.slot with
| Some op_power ->
proposal_watched.preattestations_received <-
Preattestation_set.add
op
proposal_watched.preattestations_received ;
(succ count, power + op_power)
| None ->
(count, power)
else (count, power))
(0, 0)
preattestations
in
proposal_watched.current_voting_power <-
proposal_watched.current_voting_power + voting_power ;
proposal_watched.preattestations_count <-
proposal_watched.preattestations_count + preattestations_count ;
if proposal_watched.current_voting_power >= consensus_threshold then (
let* () =
Events.(
emit
pqc_reached
( proposal_watched.current_voting_power,
proposal_watched.preattestations_count ))
in
state.qc_event_stream.push
(Some
(Prequorum_reached
( candidate_watched,
Preattestation_set.elements
proposal_watched.preattestations_received ))) ;
cancel_monitoring state ;
return_unit)
else
Events.(
emit
preattestations_received
( preattestations_count,
voting_power,
proposal_watched.current_voting_power,
proposal_watched.preattestations_count ))
| Some
(Qc_watch
({
candidate_watched;
get_slot_voting_power;
consensus_threshold;
attestations_received;
_;
} as proposal_watched)) ->
let attestations = Operation_pool.filter_attestations ops in
let attestations =
List.filter
(fun new_attestation ->
not (Attestation_set.mem new_attestation attestations_received))
attestations
in
let attestations_count, voting_power =
List.fold_left
(fun (count, power) (op : Kind.attestation Operation.t) ->
let {
shell = _;
protocol_data =
{contents = Single (Attestation {consensus_content; _}); _};
_;
} =
op
in
if is_valid_consensus_content candidate_watched consensus_content
then
match get_slot_voting_power ~slot:consensus_content.slot with
| Some op_power ->
proposal_watched.attestations_received <-
Attestation_set.add
op
proposal_watched.attestations_received ;
(succ count, power + op_power)
| None ->
(count, power)
else (count, power))
(0, 0)
attestations
in
proposal_watched.current_voting_power <-
proposal_watched.current_voting_power + voting_power ;
proposal_watched.attestations_count <-
proposal_watched.attestations_count + attestations_count ;
if proposal_watched.current_voting_power >= consensus_threshold then (
let* () =
Events.(
emit
qc_reached
( proposal_watched.current_voting_power,
proposal_watched.attestations_count ))
in
state.qc_event_stream.push
(Some
(Quorum_reached
( candidate_watched,
Attestation_set.elements
proposal_watched.attestations_received ))) ;
cancel_monitoring state ;
return_unit)
else
Events.(
emit
attestations_received
( attestations_count,
voting_power,
proposal_watched.current_voting_power,
proposal_watched.attestations_count ))
let monitor_quorum state new_proposal_watched =
Lwt_mutex.with_lock state.lock @@ fun () ->
if state.proposal_watched <> None then cancel_monitoring state ;
state.proposal_watched <- new_proposal_watched ;
let current_consensus_operations =
Operation_pool.Operation_set.elements state.operation_pool.consensus
in
update_monitoring ~should_lock:false state current_consensus_operations
let monitor_preattestation_quorum state ~consensus_threshold
~get_slot_voting_power candidate_watched =
let new_proposal =
Some
(Pqc_watch
{
candidate_watched;
get_slot_voting_power;
consensus_threshold;
current_voting_power = 0;
preattestations_received = Preattestation_set.empty;
preattestations_count = 0;
})
in
monitor_quorum state new_proposal
let monitor_attestation_quorum state ~consensus_threshold ~get_slot_voting_power
candidate_watched =
let new_proposal =
Some
(Qc_watch
{
candidate_watched;
get_slot_voting_power;
consensus_threshold;
current_voting_power = 0;
attestations_received = Attestation_set.empty;
attestations_count = 0;
})
in
monitor_quorum state new_proposal
let shutdown_worker state =
let open Lwt_result_syntax in
let*! () = Events.(emit shutting_down ()) in
Lwt_canceler.cancel state.canceler
let update_operations_pool state (head_level, head_round) =
let attestations =
let head_round_i32 = Round.to_int32 head_round in
let head_level_i32 = head_level in
Operation_pool.Operation_set.filter
(function
| {
protocol_data =
Operation_data
{
contents =
Single
(Attestation {consensus_content = {round; level; _}; _});
_;
};
_;
} ->
let round_i32 = Round.to_int32 round in
let level_i32 = Raw_level.to_int32 level in
let delta_round = Int32.sub head_round_i32 round_i32 in
let delta_level = Int32.sub head_level_i32 level_i32 in
Compare.Int32.(delta_round <= 5l && delta_level <= 1l)
| _ -> false)
state.operation_pool.consensus
in
let operation_pool = {Operation_pool.empty with consensus = attestations} in
state.operation_pool <- operation_pool
let create ?(monitor_node_operations = true)
(cctxt : #Protocol_client_context.full) =
let open Lwt_syntax in
let state = make_initial_state ~monitor_node_operations () in
let rec worker_loop () =
let* result = monitor_operations cctxt in
match result with
| Error err -> Events.(emit loop_failed err)
| Ok (head, operation_stream, op_stream_stopper) ->
let* () = Events.(emit starting_new_monitoring ()) in
state.canceler <- Lwt_canceler.create () ;
Lwt_canceler.on_cancel state.canceler (fun () ->
op_stream_stopper () ;
cancel_monitoring state ;
return_unit) ;
update_operations_pool state head ;
let rec loop () =
let* ops = Lwt_stream.get operation_stream in
match ops with
| None ->
let* () = Events.(emit end_of_stream ()) in
op_stream_stopper () ;
let* () = reset_monitoring state in
worker_loop ()
| Some ops ->
state.operation_pool <-
Operation_pool.add_operations state.operation_pool ops ;
let* () = update_monitoring state ops in
loop ()
in
loop ()
in
Lwt.dont_wait
(fun () ->
Lwt.finalize
(fun () ->
if state.monitor_node_operations then worker_loop () else return_unit)
(fun () ->
let* _ = shutdown_worker state in
return_unit))
(fun exn ->
Events.(emit__dont_wait__use_with_care ended (Printexc.to_string exn))) ;
return state
let retrieve_pending_operations cctxt state =
let open Lwt_result_syntax in
let open Protocol_client_context in
let* pending_mempool =
Alpha_block_services.Mempool.pending_operations
cctxt
~chain:cctxt#chain
~validated:true
~branch_delayed:true
~branch_refused:false
~refused:false
~outdated:false
()
in
state.operation_pool <-
Operation_pool.add_operations state.operation_pool
@@ List.rev_map snd pending_mempool.validated ;
state.operation_pool <-
Operation_pool.add_operations
state.operation_pool
(List.rev_map
(fun (_, (op, _)) -> op)
(Operation_hash.Map.bindings pending_mempool.branch_delayed)) ;
return_unit
let get_current_operations state = state.operation_pool
let get_quorum_event_stream state = state.qc_event_stream.stream