Source file block_validator.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
open Block_validator_worker_state
open Block_validator_errors
type validation_result =
| Already_committed
| Outdated_block
| Prechecked_and_applied
| Application_error of error trace
| Preapplied of (Block_header.shell_header * error Preapply_result.t list)
| Preapplication_error of error trace
| Application_error_after_precheck of error trace
| Precheck_failed of error trace
type new_block = {
block : Store.Block.t;
resulting_context_hash : Context_hash.t;
}
module Block_hash_ring =
Aches.Vache.Map (Aches.Vache.FIFO_Precise) (Aches.Vache.Strong) (Block_hash)
module Name = struct
type t = unit
let encoding = Data_encoding.empty
let base = ["validator"; "block"]
let pp _ () = ()
let equal () () = true
end
module Types = struct
type state = {
protocol_validator : Protocol_validator.t;
validation_process : Block_validator_process.t;
limits : Shell_limits.block_validator_limits;
start_testchain : bool;
invalid_blocks_after_precheck : error trace Block_hash_ring.t;
}
type parameters =
Shell_limits.block_validator_limits
* bool
* Distributed_db.t
* Block_validator_process.t
end
module Request = struct
include Request
type validation_request = {
chain_db : Distributed_db.chain_db;
notify_new_block : new_block -> unit;
canceler : Lwt_canceler.t option;
peer : P2p_peer.Id.t option;
hash : Block_hash.t;
header : Block_header.t;
operations : Operation.t list list;
precheck_and_notify : bool;
}
type preapplication_request = {
chain_store : Store.chain_store;
canceler : Lwt_canceler.t option;
predecessor : Store.Block.t;
timestamp : Time.Protocol.t;
protocol_data : bytes;
operations : Operation.t list list;
}
type ('a, 'b) t =
| Request_validation :
validation_request
-> (validation_result, error trace) t
| Request_preapplication :
preapplication_request
-> (validation_result, error trace) t
let validation_view {chain_db; peer; hash; _} =
let chain_store = Distributed_db.chain_store chain_db in
let chain_id = Store.Chain.chain_id chain_store in
{chain_id; block = hash; peer}
let preapplication_view {chain_store; predecessor; _} =
let chain_id = Store.Chain.chain_id chain_store in
let level = Int32.succ (Store.Block.level predecessor) in
{chain_id; level}
let view : type a b. (a, b) t -> view = function
| Request_validation r -> Validation (validation_view r)
| Request_preapplication r -> Preapplication (preapplication_view r)
end
module Events = Block_validator_events
module Worker = Worker.MakeSingle (Name) (Request) (Types)
type t = Worker.infinite Worker.queue Worker.t
let check_chain_liveness chain_db hash ( : Block_header.t) =
let open Lwt_result_syntax in
let chain_store = Distributed_db.chain_store chain_db in
match Store.Chain.expiration chain_store with
| Some eol when Time.Protocol.(eol <= header.shell.timestamp) ->
let error =
Expired_chain
{
chain_id = Store.Chain.chain_id chain_store;
expiration = eol;
timestamp = header.shell.timestamp;
}
in
tzfail (invalid_block hash error)
| None | Some _ -> return_unit
let precheck_block bvp chain_db chain_store ~predecessor block_hash
operations bv_operations =
let open Lwt_result_syntax in
let*! () = Events.(emit prechecking_block) block_hash in
let* () =
Block_validator_process.precheck_block
bvp
chain_store
~predecessor
block_header
block_hash
bv_operations
in
let*! () = Events.(emit prechecked_block) block_hash in
Distributed_db.inject_prechecked_block
chain_db
block_hash
block_header
operations
let check_operations_merkle_root hash operations =
let open Result_syntax in
let fail_unless b e = if b then return_unit else tzfail e in
let computed_hash =
let hashes = List.map (List.map Operation.hash) operations in
Operation_list_list_hash.compute
(List.map Operation_list_hash.compute hashes)
in
fail_unless
(Operation_list_list_hash.equal
computed_hash
header.Block_header.shell.operations_hash)
(Inconsistent_operations_hash
{
block = hash;
expected = header.shell.operations_hash;
found = computed_hash;
})
let on_validation_request w
{
Request.chain_db;
notify_new_block;
canceler;
peer;
hash;
;
operations;
precheck_and_notify;
} =
let open Lwt_result_syntax in
let bv = Worker.state w in
let chain_store = Distributed_db.chain_store chain_db in
let*! b = Store.Block.is_known_valid chain_store hash in
match b with
| true -> return Already_committed
| false -> (
let*? () = check_operations_merkle_root hash header operations in
let*! r =
match
Block_hash_ring.find_opt bv.invalid_blocks_after_precheck hash
with
| Some errs ->
return (Application_error_after_precheck errs)
| None -> (
let*! o = Store.Block.read_invalid_block_opt chain_store hash in
match o with
| Some {errors; _} -> return (Application_error errors)
| None -> (
let*! checkpoint = Store.Chain.checkpoint chain_store in
if Compare.Int32.(header.shell.level < snd checkpoint) then
return Outdated_block
else
let* pred =
Store.Block.read_block chain_store header.shell.predecessor
in
let with_retry_to_load_protocol f =
let*! r = f () in
match r with
| Error (Unavailable_protocol {protocol; _} :: _) ->
let* _ =
Protocol_validator.fetch_and_compile_protocol
bv.protocol_validator
?peer
~timeout:bv.limits.protocol_timeout
protocol
in
f ()
| _ -> Lwt.return r
in
let*! mempool = Store.Chain.mempool chain_store in
let bv_operations =
List.map
(List.map
(Block_validation.mk_operation
~known_valid_operation_set:mempool.known_valid))
operations
in
let*! r =
protect ~canceler:(Worker.canceler w) (fun () ->
protect ?canceler (fun () ->
with_retry_to_load_protocol (fun () ->
precheck_block
bv.validation_process
chain_db
chain_store
~predecessor:pred
header
hash
operations
bv_operations)))
in
match r with
| Error errs -> return (Precheck_failed errs)
| Ok () -> (
if precheck_and_notify then
Distributed_db.Advertise.prechecked_head chain_db header ;
let* result =
protect ~canceler:(Worker.canceler w) (fun () ->
protect ?canceler (fun () ->
let*! () = Events.(emit applying_block) hash in
with_retry_to_load_protocol (fun () ->
Block_validator_process.apply_block
~should_precheck:false
bv.validation_process
chain_store
~predecessor:pred
header
bv_operations)))
in
Shell_metrics.Block_validator
.set_operation_per_pass_collector
(fun () ->
List.map
(fun v -> Int.to_float (List.length v))
operations) ;
let* o =
Distributed_db.commit_block
chain_db
hash
header
operations
result
in
match o with
| Some block ->
notify_new_block
{
block;
resulting_context_hash =
result.validation_store.resulting_context_hash;
} ;
return Prechecked_and_applied
| None -> return Already_committed)))
in
match r with
| Ok r -> return r
| Error errs ->
let* () =
if
(not precheck_and_notify)
&& List.exists
(function Invalid_block _ -> true | _ -> false)
errs
then
protect ~canceler:(Worker.canceler w) (fun () ->
Distributed_db.commit_invalid_block chain_db hash header errs)
else return_unit
in
if precheck_and_notify then (
Block_hash_ring.replace bv.invalid_blocks_after_precheck hash errs ;
return (Application_error_after_precheck errs))
else return (Application_error errs))
let on_preapplication_request w
{
Request.chain_store;
canceler;
predecessor;
timestamp;
protocol_data;
operations;
} =
let open Lwt_syntax in
let bv = Worker.state w in
let* r =
protect ~canceler:(Worker.canceler w) (fun () ->
protect ?canceler (fun () ->
let* mempool = Store.Chain.mempool chain_store in
let operations =
List.map
(List.map
(Block_validation.mk_operation
~known_valid_operation_set:mempool.known_valid))
operations
in
Block_validator_process.preapply_block
bv.validation_process
chain_store
~predecessor
~protocol_data
~timestamp
operations))
in
match r with
| Ok res -> return_ok (Preapplied res)
| Error errs -> return_ok (Preapplication_error errs)
let metrics = Shell_metrics.Block_validator.init Name.base
let on_request :
type r request_error.
t -> (r, request_error) Request.t -> (r, request_error) result Lwt.t =
fun w r ->
Prometheus.Counter.inc_one metrics.worker_counters.worker_request_count ;
match r with
| Request.Request_validation r -> on_validation_request w r
| Request.Request_preapplication r -> on_preapplication_request w r
type launch_error = |
let on_launch _ _ (limits, start_testchain, db, validation_process) :
(_, launch_error) result Lwt.t =
let protocol_validator = Protocol_validator.create db in
let invalid_blocks_after_precheck = Block_hash_ring.create 50 in
Lwt.return_ok
{
Types.protocol_validator;
validation_process;
limits;
start_testchain;
invalid_blocks_after_precheck;
}
let on_error (type a b) (_w : t) st (r : (a, b) Request.t) (errs : b) =
let open Lwt_syntax in
Prometheus.Counter.inc_one metrics.worker_counters.worker_error_count ;
match r with
| Request_validation v ->
let view = Request.validation_view v in
let* () =
match errs with
| [Canceled] ->
Lwt.return_unit
| errs -> Events.(emit validation_failure) (view.block, st, errs)
in
return_ok_unit
| Request_preapplication v ->
let view = Request.preapplication_view v in
let* () = Events.(emit preapplication_failure) (view.level, st, errs) in
return_ok_unit
let check_and_quit_on_irmin_errors errors =
let open Lwt_syntax in
let is_inode_error error =
match error with
| Exn (Failure s) -> (
let rex = Str.regexp_string "unknown inode key" in
try
let _ = Str.search_forward rex s 0 in
true
with Not_found -> false)
| _ -> false
in
if List.exists (fun error -> is_inode_error error) errors then
let* () = Events.(emit stopping_node_missing_irmin_key ()) in
let* _ = Lwt_exit.exit_and_wait 1 in
return_unit
else return_unit
let on_completion :
type a b.
t -> (a, b) Request.t -> a -> Worker_types.request_status -> unit Lwt.t =
fun _w request v st ->
let open Lwt_syntax in
Prometheus.Counter.inc_one metrics.worker_counters.worker_completion_count ;
match (request, v) with
| Request.Request_validation {hash; _}, Already_committed ->
Prometheus.Counter.inc_one metrics.already_commited_blocks_count ;
let* () = Events.(emit previously_validated) hash in
Lwt.return_unit
| Request.Request_validation {hash; _}, Outdated_block ->
Prometheus.Counter.inc_one metrics.outdated_blocks_count ;
let* () = Events.(emit previously_validated) hash in
Lwt.return_unit
| Request.Request_validation _, Prechecked_and_applied -> (
Shell_metrics.Worker.update_timestamps metrics.worker_timestamps st ;
Prometheus.Counter.inc_one metrics.validated_blocks_count ;
match Request.view request with
| Validation v -> Events.(emit validation_success) (v.block, st)
| _ -> Lwt.return_unit)
| Request.Request_validation _, Application_error errs -> (
Shell_metrics.Worker.update_timestamps metrics.worker_timestamps st ;
Prometheus.Counter.inc_one metrics.validation_errors_count ;
match Request.view request with
| Validation v -> (
match errs with
| [Canceled] ->
Lwt.return_unit
| errs ->
let* () = Events.(emit validation_failure) (v.block, st, errs) in
let* () = check_and_quit_on_irmin_errors errs in
return_unit)
| _ -> Lwt.return_unit)
| Request.Request_preapplication _, Preapplied _ -> (
Prometheus.Counter.inc_one metrics.preapplied_blocks_count ;
match Request.view request with
| Preapplication v -> Events.(emit preapplication_success) (v.level, st)
| _ -> Lwt.return_unit)
| Request.Request_preapplication _, Preapplication_error errs -> (
Prometheus.Counter.inc_one metrics.preapplication_errors_count ;
match Request.view request with
| Preapplication v ->
let* () = Events.(emit preapplication_failure) (v.level, st, errs) in
let* () = check_and_quit_on_irmin_errors errs in
return_unit
| _ -> Lwt.return_unit)
| Request.Request_validation _, Application_error_after_precheck errs -> (
Shell_metrics.Worker.update_timestamps metrics.worker_timestamps st ;
Prometheus.Counter.inc_one metrics.validation_errors_after_precheck_count ;
match Request.view request with
| Validation v ->
let* () =
Events.(emit application_failure_after_precheck) (v.block, st, errs)
in
let* () = check_and_quit_on_irmin_errors errs in
return_unit
| _ -> Lwt.return_unit)
| Request.Request_validation _, Precheck_failed errs -> (
Shell_metrics.Worker.update_timestamps metrics.worker_timestamps st ;
Prometheus.Counter.inc_one metrics.precheck_failed_count ;
match Request.view request with
| Validation v -> (
match errs with
| [Canceled] ->
Lwt.return_unit
| errs ->
let* () = Events.(emit precheck_failure) (v.block, st, errs) in
let* () = check_and_quit_on_irmin_errors errs in
return_unit)
| _ -> Lwt.return_unit)
| _ -> Lwt.return_unit
let on_close w =
let bv = Worker.state w in
Block_validator_process.close bv.validation_process
let table = Worker.create_table Queue
let create limits db validation_process ~start_testchain =
let module Handlers = struct
type self = t
type nonrec launch_error = launch_error
let on_launch = on_launch
let on_request = on_request
let on_close = on_close
let on_error = on_error
let on_completion = on_completion
let on_no_request _ = Lwt.return_unit
end in
let open Lwt_syntax in
let* (Ok worker) =
Worker.launch
table
()
(limits, start_testchain, db, validation_process)
(module Handlers)
in
Lwt.return worker
let shutdown = Worker.shutdown
type block_validity =
| Valid
| Unapplicable_after_precheck of error trace
| Invalid of error trace
let precheck_and_apply w ?canceler ?peer ?(notify_new_block = fun _ -> ())
?(precheck_and_notify = false) chain_db hash ( : Block_header.t)
operations =
let open Lwt_syntax in
let chain_store = Distributed_db.chain_store chain_db in
let* b = Store.Block.is_known_valid chain_store hash in
match b with
| true ->
let* () = Events.(emit previously_validated) hash in
return Valid
| false -> (
let* r =
let open Lwt_result_syntax in
let* () =
check_chain_liveness chain_db hash header
|> Lwt_result.map_error (fun e -> Worker.Request_error e)
in
Worker.Queue.push_request_and_wait
w
(Request_validation
{
chain_db;
notify_new_block;
canceler;
peer;
hash;
header;
operations;
precheck_and_notify;
})
in
match r with
| Ok (Prechecked_and_applied | Already_committed | Outdated_block) ->
return Valid
| Ok (Application_error_after_precheck errs) ->
return (Unapplicable_after_precheck errs)
| Ok (Precheck_failed errs)
| Ok (Application_error errs)
| Error (Request_error errs) ->
return (Invalid errs)
| Error (Closed None) -> return (Invalid [Worker_types.Terminated])
| Error (Closed (Some errs)) -> return (Invalid errs)
| Error (Any exn) -> return (Invalid [Exn exn])
| _ ->
assert false)
let preapply w ?canceler chain_store ~predecessor ~timestamp ~protocol_data
operations =
let open Lwt_syntax in
let* r =
Worker.Queue.push_request_and_wait
w
(Request_preapplication
{
chain_store;
canceler;
predecessor;
timestamp;
protocol_data;
operations;
})
in
match r with
| Ok (Preapplied res) -> return_ok res
| Ok (Preapplication_error errs) -> Lwt.return_error errs
| Error (Request_error errs) -> Lwt.return_error errs
| Error (Closed None) -> Lwt.return_error [Worker_types.Terminated]
| Error (Closed (Some errs)) -> Lwt.return_error errs
| Error (Any exn) -> Lwt.return_error [Exn exn]
| _ ->
assert false
let context_garbage_collection w index context_hash ~gc_lockfile_path =
let bv = Worker.state w in
Block_validator_process.context_garbage_collection
bv.validation_process
index
context_hash
~gc_lockfile_path
let context_split w index =
let bv = Worker.state w in
Block_validator_process.context_split bv.validation_process index
let fetch_and_compile_protocol w =
let bv = Worker.state w in
Protocol_validator.fetch_and_compile_protocol bv.protocol_validator
let status = Worker.status
let running_worker () =
match Worker.list table with
| [(_, single)] -> single
| [] -> raise Not_found
| _ :: _ :: _ ->
assert false
let pending_requests t = Worker.Queue.pending_requests t
let current_request t = Worker.current_request t