2017-11-11 06:34:12 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Copyright (c) 2014 - 2017. *)
|
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
include Logging.Make(struct let name = "node.validator.block" end)
|
|
|
|
|
|
|
|
type 'a request =
|
|
|
|
| Request_validation: {
|
|
|
|
hash: Protocol_hash.t ;
|
|
|
|
protocol: Protocol.t ;
|
|
|
|
} -> State.Registred_protocol.t tzresult request
|
|
|
|
|
|
|
|
type message = Message: 'a request * 'a Lwt.u option -> message
|
|
|
|
|
|
|
|
type t = {
|
|
|
|
db: Distributed_db.t ;
|
|
|
|
mutable worker: unit Lwt.t ;
|
|
|
|
messages: message Lwt_pipe.t ;
|
2017-11-27 09:13:12 +04:00
|
|
|
canceler: Lwt_canceler.t ;
|
2017-11-11 06:34:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
(** Block validation *)
|
|
|
|
|
|
|
|
type protocol_error =
|
|
|
|
| Compilation_failed
|
|
|
|
| Dynlinking_failed
|
|
|
|
|
|
|
|
let protocol_error_encoding =
|
|
|
|
let open Data_encoding in
|
|
|
|
union
|
|
|
|
[
|
|
|
|
case
|
|
|
|
(obj1
|
|
|
|
(req "error" (constant "compilation_failed")))
|
|
|
|
(function Compilation_failed -> Some ()
|
|
|
|
| _ -> None)
|
|
|
|
(fun () -> Compilation_failed) ;
|
|
|
|
case
|
|
|
|
(obj1
|
|
|
|
(req "error" (constant "dynlinking_failed")))
|
|
|
|
(function Dynlinking_failed -> Some ()
|
|
|
|
| _ -> None)
|
|
|
|
(fun () -> Dynlinking_failed) ;
|
|
|
|
]
|
|
|
|
|
|
|
|
let pp_protocol_error ppf = function
|
|
|
|
| Compilation_failed ->
|
|
|
|
Format.fprintf ppf "compilation error"
|
|
|
|
| Dynlinking_failed ->
|
|
|
|
Format.fprintf ppf "dynlinking error"
|
|
|
|
|
|
|
|
type error +=
|
|
|
|
| Invalid_protocol of { hash: Protocol_hash.t ; error: protocol_error }
|
|
|
|
|
|
|
|
let () =
|
|
|
|
Error_monad.register_error_kind
|
|
|
|
`Permanent
|
|
|
|
~id:"validator.invalid_protocol"
|
|
|
|
~title:"Invalid protocol"
|
|
|
|
~description:"Invalid protocol."
|
|
|
|
~pp:begin fun ppf (protocol, error) ->
|
|
|
|
Format.fprintf ppf
|
|
|
|
"@[<v 2>Invalid protocol %a@ %a@]"
|
|
|
|
Protocol_hash.pp_short protocol pp_protocol_error error
|
|
|
|
end
|
|
|
|
Data_encoding.(merge_objs
|
|
|
|
(obj1 (req "invalid_protocol" Protocol_hash.encoding))
|
|
|
|
protocol_error_encoding)
|
|
|
|
(function Invalid_protocol { hash ; error } ->
|
|
|
|
Some (hash, error) | _ -> None)
|
|
|
|
(fun (hash, error) ->
|
|
|
|
Invalid_protocol { hash ; error })
|
|
|
|
|
|
|
|
let rec worker_loop bv =
|
|
|
|
begin
|
|
|
|
Lwt_utils.protect ~canceler:bv.canceler begin fun () ->
|
|
|
|
Lwt_pipe.pop bv.messages >>= return
|
|
|
|
end >>=? function Message (request, wakener) ->
|
|
|
|
match request with
|
|
|
|
| Request_validation { hash ; protocol } ->
|
|
|
|
Updater.compile hash protocol >>= fun valid ->
|
|
|
|
begin
|
|
|
|
if valid then
|
|
|
|
Distributed_db.commit_protocol bv.db hash protocol
|
|
|
|
else
|
|
|
|
(* no need to tag 'invalid' protocol on disk,
|
|
|
|
the economic protocol prevents us from
|
|
|
|
being spammed with protocol validation. *)
|
|
|
|
return true
|
|
|
|
end >>=? fun _ ->
|
|
|
|
match wakener with
|
|
|
|
| None ->
|
|
|
|
return ()
|
|
|
|
| Some wakener ->
|
|
|
|
if valid then
|
|
|
|
match State.Registred_protocol.get hash with
|
|
|
|
| Some protocol ->
|
|
|
|
Lwt.wakeup_later wakener (Ok protocol)
|
|
|
|
| None ->
|
|
|
|
Lwt.wakeup_later wakener
|
|
|
|
(Error
|
|
|
|
[Invalid_protocol { hash ;
|
|
|
|
error = Dynlinking_failed }])
|
|
|
|
else
|
|
|
|
Lwt.wakeup_later wakener
|
|
|
|
(Error
|
|
|
|
[Invalid_protocol { hash ;
|
|
|
|
error = Compilation_failed }]) ;
|
|
|
|
return ()
|
|
|
|
end >>= function
|
|
|
|
| Ok () ->
|
|
|
|
worker_loop bv
|
|
|
|
| Error [Lwt_utils.Canceled | Exn Lwt_pipe.Closed] ->
|
|
|
|
lwt_log_notice "terminating" >>= fun () ->
|
|
|
|
Lwt.return_unit
|
|
|
|
| Error err ->
|
|
|
|
lwt_log_error "@[Unexpected error (worker):@ %a@]"
|
|
|
|
pp_print_error err >>= fun () ->
|
2017-11-27 09:13:12 +04:00
|
|
|
Lwt_canceler.cancel bv.canceler >>= fun () ->
|
2017-11-11 06:34:12 +04:00
|
|
|
Lwt.return_unit
|
|
|
|
|
|
|
|
let create db =
|
2017-11-27 09:13:12 +04:00
|
|
|
let canceler = Lwt_canceler.create () in
|
2017-11-11 06:34:12 +04:00
|
|
|
let messages = Lwt_pipe.create () in
|
|
|
|
let bv = {
|
|
|
|
canceler ; messages ; db ;
|
|
|
|
worker = Lwt.return_unit } in
|
2017-11-27 09:13:12 +04:00
|
|
|
Lwt_canceler.on_cancel bv.canceler begin fun () ->
|
2017-11-11 06:34:12 +04:00
|
|
|
Lwt_pipe.close bv.messages ;
|
|
|
|
Lwt.return_unit
|
|
|
|
end ;
|
|
|
|
bv.worker <-
|
|
|
|
Lwt_utils.worker "block_validator"
|
|
|
|
~run:(fun () -> worker_loop bv)
|
2017-11-27 09:13:12 +04:00
|
|
|
~cancel:(fun () -> Lwt_canceler.cancel bv.canceler) ;
|
2017-11-11 06:34:12 +04:00
|
|
|
bv
|
|
|
|
|
|
|
|
let shutdown { canceler ; worker } =
|
2017-11-27 09:13:12 +04:00
|
|
|
Lwt_canceler.cancel canceler >>= fun () ->
|
2017-11-11 06:34:12 +04:00
|
|
|
worker
|
|
|
|
|
|
|
|
let validate { messages } hash protocol =
|
|
|
|
match State.Registred_protocol.get hash with
|
|
|
|
| Some protocol ->
|
|
|
|
lwt_debug "previously validated protocol %a (before pipe)"
|
|
|
|
Protocol_hash.pp_short hash >>= fun () ->
|
|
|
|
return protocol
|
|
|
|
| None ->
|
|
|
|
let res, wakener = Lwt.task () in
|
|
|
|
lwt_debug "pushing validation request for protocol %a"
|
|
|
|
Protocol_hash.pp_short hash >>= fun () ->
|
|
|
|
Lwt_pipe.push messages
|
|
|
|
(Message (Request_validation { hash ; protocol },
|
|
|
|
Some wakener)) >>= fun () ->
|
|
|
|
res
|
|
|
|
|
|
|
|
let fetch_and_compile_protocol pv ?peer ?timeout hash =
|
|
|
|
match State.Registred_protocol.get hash with
|
|
|
|
| Some proto -> return proto
|
|
|
|
| None ->
|
|
|
|
begin
|
|
|
|
Distributed_db.Protocol.read_opt pv.db hash >>= function
|
|
|
|
| Some protocol -> return protocol
|
|
|
|
| None ->
|
|
|
|
lwt_log_notice "Fetching protocol %a from peer "
|
|
|
|
Protocol_hash.pp_short hash >>= fun () ->
|
|
|
|
Distributed_db.Protocol.fetch pv.db ?peer ?timeout hash ()
|
|
|
|
end >>=? fun protocol ->
|
|
|
|
validate pv hash protocol >>=? fun proto ->
|
|
|
|
return proto
|
|
|
|
|
|
|
|
let fetch_and_compile_protocols pv ?peer ?timeout (block: State.Block.t) =
|
|
|
|
State.Block.context block >>= fun context ->
|
|
|
|
let protocol =
|
|
|
|
Context.get_protocol context >>= fun protocol_hash ->
|
|
|
|
fetch_and_compile_protocol pv ?peer ?timeout protocol_hash >>=? fun _ ->
|
|
|
|
return ()
|
|
|
|
and test_protocol =
|
|
|
|
Context.get_test_network context >>= function
|
|
|
|
| Not_running -> return ()
|
|
|
|
| Forking { protocol }
|
|
|
|
| Running { protocol } ->
|
|
|
|
fetch_and_compile_protocol pv ?peer ?timeout protocol >>=? fun _ ->
|
|
|
|
return () in
|
|
|
|
protocol >>=? fun () ->
|
|
|
|
test_protocol >>=? fun () ->
|
|
|
|
return ()
|
|
|
|
|
|
|
|
let prefetch_and_compile_protocols pv ?peer ?timeout block =
|
|
|
|
try ignore (fetch_and_compile_protocols pv ?peer ?timeout block) with _ -> ()
|