ligo/src/lib_shell/chain_validator.ml

435 lines
14 KiB
OCaml
Raw Normal View History

(**************************************************************************)
(* *)
2018-02-06 00:17:03 +04:00
(* Copyright (c) 2014 - 2018. *)
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
2018-02-16 04:26:24 +04:00
open Chain_validator_worker_state
module Name = struct
2018-02-16 04:26:24 +04:00
type t = Chain_id.t
let encoding = Chain_id.encoding
2018-02-26 17:11:10 +04:00
let base = [ "validator.chain" ]
2018-02-16 04:26:24 +04:00
let pp = Chain_id.pp_short
end
module Request = struct
include Request
type _ t = Validated : State.Block.t -> Event.update t
let view (type a) (Validated block : a t) : view =
State.Block.hash block
end
type limits = {
bootstrap_threshold: int ;
worker_limits: Worker_types.limits
}
module Types = struct
include Worker_state
type parameters = {
parent: Name.t option ;
db: Distributed_db.t ;
2018-02-16 04:26:24 +04:00
chain_state: State.Chain.t ;
chain_db: Distributed_db.chain_db ;
block_validator: Block_validator.t ;
global_valid_block_input: State.Block.t Lwt_watcher.input ;
prevalidator_limits: Prevalidator.limits ;
peer_validator_limits: Peer_validator.limits ;
max_child_ttl: int option ;
limits: limits;
}
type state = {
parameters: parameters ;
mutable bootstrapped: bool ;
bootstrapped_waiter: unit Lwt.t ;
bootstrapped_wakener: unit Lwt.u ;
valid_block_input: State.Block.t Lwt_watcher.input ;
new_head_input: State.Block.t Lwt_watcher.input ;
mutable child:
(state * (unit -> unit Lwt.t (* shutdown *))) option ;
prevalidator: Prevalidator.t option ;
active_peers: Peer_validator.t Lwt.t P2p_peer.Table.t ;
bootstrapped_peers: unit P2p_peer.Table.t ;
}
let view (state : state) _ : view =
let { bootstrapped ; active_peers ; bootstrapped_peers } = state in
{ bootstrapped ;
active_peers =
P2p_peer.Table.fold (fun id _ l -> id :: l) active_peers [] ;
bootstrapped_peers =
P2p_peer.Table.fold (fun id _ l -> id :: l) bootstrapped_peers [] }
end
module Worker = Worker.Make (Name) (Event) (Request) (Types)
open Types
type t = Worker.infinite Worker.queue Worker.t
let table = Worker.create_table Queue
let shutdown w =
Worker.shutdown w
let shutdown_child nv =
Lwt_utils.may ~f:(fun (_, shutdown) -> shutdown ()) nv.child
let notify_new_block w block =
let nv = Worker.state w in
Option.iter nv.parameters.parent
~f:(fun id -> try
let w = List.assoc id (Worker.list table) in
let nv = Worker.state w in
Lwt_watcher.notify nv.valid_block_input block
with Not_found -> ()) ;
Lwt_watcher.notify nv.valid_block_input block ;
Lwt_watcher.notify nv.parameters.global_valid_block_input block ;
Worker.push_request_now w (Validated block)
2018-02-16 04:26:24 +04:00
let may_toggle_bootstrapped_chain w =
let nv = Worker.state w in
if not nv.bootstrapped &&
P2p_peer.Table.length nv.bootstrapped_peers >= nv.parameters.limits.bootstrap_threshold
then begin
nv.bootstrapped <- true ;
Lwt.wakeup_later nv.bootstrapped_wakener () ;
end
let may_activate_peer_validator w peer_id =
let nv = Worker.state w in
try P2p_peer.Table.find nv.active_peers peer_id
with Not_found ->
let pv =
Peer_validator.create
~notify_new_block:(notify_new_block w)
~notify_bootstrapped: begin fun () ->
P2p_peer.Table.add nv.bootstrapped_peers peer_id () ;
2018-02-16 04:26:24 +04:00
may_toggle_bootstrapped_chain w
end
~notify_termination: begin fun _pv ->
P2p_peer.Table.remove nv.active_peers peer_id ;
P2p_peer.Table.remove nv.bootstrapped_peers peer_id ;
end
nv.parameters.peer_validator_limits
nv.parameters.block_validator
2018-02-16 04:26:24 +04:00
nv.parameters.chain_db
peer_id in
P2p_peer.Table.add nv.active_peers peer_id pv ;
pv
2018-02-16 04:26:24 +04:00
let may_switch_test_chain w spawn_child block =
let nv = Worker.state w in
let create_child genesis protocol expiration =
2018-02-16 04:26:24 +04:00
if State.Chain.allow_forked_chain nv.parameters.chain_state then begin
shutdown_child nv >>= fun () ->
begin
2018-02-16 04:26:24 +04:00
let chain_id = Chain_id.of_block_hash (State.Block.hash genesis) in
State.Chain.get
(State.Chain.global_state nv.parameters.chain_state) chain_id >>= function
| Ok chain_state -> return chain_state
| Error _ ->
2018-02-16 04:26:24 +04:00
State.fork_testchain
genesis protocol expiration >>=? fun chain_state ->
Chain.head chain_state >>= fun new_genesis_block ->
Lwt_watcher.notify nv.parameters.global_valid_block_input new_genesis_block ;
Lwt_watcher.notify nv.valid_block_input new_genesis_block ;
2018-02-16 04:26:24 +04:00
return chain_state
end >>=? fun chain_state ->
spawn_child
2018-02-16 04:26:24 +04:00
~parent:(State.Chain.id chain_state)
nv.parameters.peer_validator_limits
nv.parameters.prevalidator_limits
nv.parameters.block_validator
nv.parameters.global_valid_block_input
2018-02-16 04:26:24 +04:00
nv.parameters.db chain_state
nv.parameters.limits (* TODO: different limits main/test ? *) >>= fun child ->
nv.child <- Some child ;
return ()
end else begin
(* Ignoring request... *)
return ()
end in
let check_child genesis protocol expiration current_time =
let activated =
match nv.child with
| None -> false
| Some (child , _) ->
Block_hash.equal
2018-02-16 04:26:24 +04:00
(State.Chain.genesis child.parameters.chain_state).block
genesis in
2018-02-16 04:26:24 +04:00
State.Block.read nv.parameters.chain_state genesis >>=? fun genesis ->
begin
match nv.parameters.max_child_ttl with
| None -> Lwt.return expiration
| Some ttl ->
Lwt.return
(Time.min expiration
(Time.add (State.Block.timestamp genesis) (Int64.of_int ttl)))
end >>= fun local_expiration ->
let expired = Time.(local_expiration <= current_time) in
if expired && activated then
shutdown_child nv >>= return
else if not activated && not expired then
create_child genesis protocol expiration
else
return () in
begin
let block_header = State.Block.header block in
2018-02-16 04:26:24 +04:00
State.Block.test_chain block >>= function
| Not_running -> shutdown_child nv >>= return
| Running { genesis ; protocol ; expiration } ->
check_child genesis protocol expiration
block_header.shell.timestamp
| Forking { protocol ; expiration } ->
create_child block protocol expiration
end >>= function
| Ok () -> Lwt.return_unit
| Error err ->
2018-02-16 04:26:24 +04:00
Worker.record_event w (Could_not_switch_testchain err) ;
Lwt.return_unit
let broadcast_head w ~previous block =
let nv = Worker.state w in
if not nv.bootstrapped then
Lwt.return_unit
else begin
begin
State.Block.predecessor block >>= function
| None -> Lwt.return_true
| Some predecessor ->
Lwt.return (State.Block.equal predecessor previous)
end >>= fun successor ->
if successor then begin
Distributed_db.Advertise.current_head
2018-02-16 04:26:24 +04:00
nv.parameters.chain_db block ;
Lwt.return_unit
end else begin
Distributed_db.Advertise.current_branch nv.parameters.chain_db
end
end
let on_request (type a) w spawn_child (req : a Request.t) : a tzresult Lwt.t =
let Request.Validated block = req in
let nv = Worker.state w in
2018-02-16 04:26:24 +04:00
Chain.head nv.parameters.chain_state >>= fun head ->
let head_header = State.Block.header head
and head_hash = State.Block.hash head
and block_header = State.Block.header block
and block_hash = State.Block.hash block in
if
Fitness.(block_header.shell.fitness <= head_header.shell.fitness)
then
return Event.Ignored_head
else begin
2018-02-16 04:26:24 +04:00
Chain.set_head nv.parameters.chain_state block >>= fun previous ->
broadcast_head w ~previous block >>= fun () ->
begin match nv.prevalidator with
| Some prevalidator ->
Prevalidator.flush prevalidator block_hash
| None -> return ()
end >>=? fun () ->
2018-02-16 04:26:24 +04:00
may_switch_test_chain w spawn_child block >>= fun () ->
Lwt_watcher.notify nv.new_head_input block ;
if Block_hash.equal head_hash block_header.shell.predecessor then
return Event.Head_incrememt
else
return Event.Branch_switch
end
let on_completion (type a) w (req : a Request.t) (update : a) request_status =
let Request.Validated block = req in
let fitness = State.Block.fitness block in
let request = State.Block.hash block in
Worker.record_event w (Processed_block { request ; request_status ; update ; fitness }) ;
Lwt.return ()
let on_close w =
let nv = Worker.state w in
2018-02-16 04:26:24 +04:00
Distributed_db.deactivate nv.parameters.chain_db >>= fun () ->
Lwt.join
(begin match nv.prevalidator with
| Some prevalidator -> Prevalidator.shutdown prevalidator
| None -> Lwt.return_unit
end ::
Lwt_utils.may ~f:(fun (_, shutdown) -> shutdown ()) nv.child ::
P2p_peer.Table.fold
(fun _ pv acc -> (pv >>= Peer_validator.shutdown) :: acc)
nv.active_peers []) >>= fun () ->
Lwt.return_unit
let on_launch start_prevalidator w _ parameters =
2018-02-16 04:26:24 +04:00
Chain.init_head parameters.chain_state >>= fun () ->
(if start_prevalidator then
Prevalidator.create
parameters.prevalidator_limits parameters.chain_db >>= fun prevalidator ->
Lwt.return_some prevalidator
else Lwt.return_none) >>= fun prevalidator ->
let valid_block_input = Lwt_watcher.create_input () in
let new_head_input = Lwt_watcher.create_input () in
let bootstrapped_waiter, bootstrapped_wakener = Lwt.wait () in
let nv =
{ parameters ;
valid_block_input ;
new_head_input ;
bootstrapped_wakener ;
bootstrapped_waiter ;
bootstrapped = (parameters.limits.bootstrap_threshold <= 0) ;
active_peers =
P2p_peer.Table.create 50 ; (* TODO use `2 * max_connection` *)
bootstrapped_peers =
P2p_peer.Table.create 50 ; (* TODO use `2 * max_connection` *)
child = None ;
prevalidator } in
if nv.bootstrapped then Lwt.wakeup_later bootstrapped_wakener () ;
2018-02-16 04:26:24 +04:00
Distributed_db.set_callback parameters.chain_db {
notify_branch = begin fun peer_id locator ->
Lwt.async begin fun () ->
may_activate_peer_validator w peer_id >>= fun pv ->
Peer_validator.notify_branch pv locator ;
Lwt.return_unit
end
end ;
notify_head = begin fun peer_id block ops ->
Lwt.async begin fun () ->
may_activate_peer_validator w peer_id >>= fun pv ->
Peer_validator.notify_head pv block ;
(* TODO notify prevalidator only if head is known ??? *)
begin match nv.prevalidator with
| Some prevalidator ->
Prevalidator.notify_operations prevalidator peer_id ops
| None -> ()
end ;
Lwt.return_unit
end;
end ;
disconnection = begin fun peer_id ->
Lwt.async begin fun () ->
may_activate_peer_validator w peer_id >>= fun pv ->
Peer_validator.shutdown pv >>= fun () ->
Lwt.return_unit
end
end ;
} ;
Lwt.return nv
let rec create
?max_child_ttl ~start_prevalidator ?parent
peer_validator_limits prevalidator_limits block_validator
2018-02-16 04:26:24 +04:00
global_valid_block_input db chain_state limits =
let spawn_child ~parent pvl pl bl gvbi db n l =
create ~start_prevalidator ~parent pvl pl bl gvbi db n l >>= fun w ->
Lwt.return (Worker.state w, (fun () -> Worker.shutdown w)) in
let module Handlers = struct
type self = t
let on_launch = on_launch start_prevalidator
let on_request w = on_request w spawn_child
let on_close = on_close
let on_error _ _ _ errs = Lwt.return (Error errs)
let on_completion = on_completion
let on_no_request _ = return ()
end in
let parameters =
{ max_child_ttl ;
parent ;
peer_validator_limits ;
prevalidator_limits ;
block_validator ;
global_valid_block_input ;
db ;
2018-02-16 04:26:24 +04:00
chain_db = Distributed_db.activate db chain_state ;
chain_state ;
limits } in
Worker.launch table
prevalidator_limits.worker_limits
2018-02-16 04:26:24 +04:00
(State.Chain.id chain_state)
parameters
(module Handlers)
(** Current block computation *)
let create
?max_child_ttl
~start_prevalidator
peer_validator_limits prevalidator_limits
block_validator global_valid_block_input global_db state limits =
(* hide the optional ?parent *)
create
?max_child_ttl
~start_prevalidator
peer_validator_limits prevalidator_limits
block_validator global_valid_block_input global_db state limits
2018-02-16 04:26:24 +04:00
let chain_id w =
let { parameters = { chain_state } } = Worker.state w in
State.Chain.id chain_state
2018-02-16 04:26:24 +04:00
let chain_state w =
let { parameters = { chain_state } } = Worker.state w in
chain_state
let prevalidator w =
let { prevalidator } = Worker.state w in
prevalidator
2018-02-16 04:26:24 +04:00
let chain_db w =
let { parameters = { chain_db } } = Worker.state w in
chain_db
let child w =
match (Worker.state w).child with
| None -> None
2018-02-16 04:26:24 +04:00
| Some ({ parameters = { chain_state } }, _) ->
try Some (List.assoc (State.Chain.id chain_state) (Worker.list table))
with Not_found -> None
let validate_block w ?(force = false) hash block operations =
let nv = Worker.state w in
assert (Block_hash.equal hash (Block_header.hash block)) ;
2018-02-16 04:26:24 +04:00
Chain.head nv.parameters.chain_state >>= fun head ->
let head = State.Block.header head in
if
force || Fitness.(head.shell.fitness <= block.shell.fitness)
then
Block_validator.validate
~canceler:(Worker.canceler w)
~notify_new_block:(notify_new_block w)
nv.parameters.block_validator
2018-02-16 04:26:24 +04:00
nv.parameters.chain_db
hash block operations
else
failwith "Fitness too low"
let bootstrapped w =
let { bootstrapped_waiter } = Worker.state w in
2017-12-29 18:29:29 +04:00
Lwt.protected bootstrapped_waiter
let valid_block_watcher w =
let{ valid_block_input } = Worker.state w in
Lwt_watcher.create_stream valid_block_input
let new_head_watcher w =
let { new_head_input } = Worker.state w in
Lwt_watcher.create_stream new_head_input
let status = Worker.status
let running_workers () = Worker.list table
let pending_requests t = Worker.pending_requests t
let current_request t = Worker.current_request t
let last_events = Worker.last_events