2016-10-20 20:54:16 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2017-11-14 03:36:14 +04:00
|
|
|
(* Copyright (c) 2014 - 2017. *)
|
2016-10-20 20:54:16 +04:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
|
|
|
|
type 'error preapply_result = {
|
|
|
|
applied: Operation_hash.t list;
|
|
|
|
refused: 'error list Operation_hash.Map.t;
|
|
|
|
branch_refused: 'error list Operation_hash.Map.t;
|
|
|
|
branch_delayed: 'error list Operation_hash.Map.t;
|
|
|
|
}
|
|
|
|
|
|
|
|
let empty_result = {
|
|
|
|
applied = [] ;
|
|
|
|
refused = Operation_hash.Map.empty ;
|
|
|
|
branch_refused = Operation_hash.Map.empty ;
|
|
|
|
branch_delayed = Operation_hash.Map.empty ;
|
|
|
|
}
|
|
|
|
|
|
|
|
let map_result f r = {
|
|
|
|
applied = r.applied;
|
|
|
|
refused = Operation_hash.Map.map f r.refused ;
|
|
|
|
branch_refused = Operation_hash.Map.map f r.branch_refused ;
|
|
|
|
branch_delayed = Operation_hash.Map.map f r.branch_delayed ;
|
|
|
|
}
|
|
|
|
|
|
|
|
let preapply_result_encoding error_encoding =
|
|
|
|
let open Data_encoding in
|
|
|
|
let refused_encoding = tup2 Operation_hash.encoding error_encoding in
|
|
|
|
let build_list map = Operation_hash.Map.bindings map in
|
|
|
|
let build_map list =
|
|
|
|
List.fold_right
|
|
|
|
(fun (k, e) m -> Operation_hash.Map.add k e m)
|
|
|
|
list Operation_hash.Map.empty in
|
|
|
|
conv
|
|
|
|
(fun { applied ; refused ; branch_refused ; branch_delayed } ->
|
|
|
|
(applied, build_list refused,
|
|
|
|
build_list branch_refused, build_list branch_delayed))
|
|
|
|
(fun (applied, refused, branch_refused, branch_delayed) ->
|
|
|
|
let refused = build_map refused in
|
|
|
|
let branch_refused = build_map branch_refused in
|
|
|
|
let branch_delayed = build_map branch_delayed in
|
|
|
|
{ applied ; refused ; branch_refused ; branch_delayed })
|
|
|
|
(obj4
|
|
|
|
(req "applied" (list Operation_hash.encoding))
|
|
|
|
(req "refused" (list refused_encoding))
|
|
|
|
(req "branch_refused" (list refused_encoding))
|
|
|
|
(req "branch_delayed" (list refused_encoding)))
|
|
|
|
|
|
|
|
let preapply_result_operations t =
|
|
|
|
let ops =
|
|
|
|
List.fold_left
|
|
|
|
(fun acc x -> Operation_hash.Set.add x acc)
|
|
|
|
Operation_hash.Set.empty t.applied in
|
|
|
|
let ops =
|
|
|
|
Operation_hash.Map.fold
|
|
|
|
(fun x _ acc -> Operation_hash.Set.add x acc)
|
|
|
|
t.branch_delayed ops in
|
|
|
|
let ops =
|
|
|
|
Operation_hash.Map.fold
|
|
|
|
(fun x _ acc -> Operation_hash.Set.add x acc)
|
|
|
|
t.branch_refused ops in
|
|
|
|
ops
|
|
|
|
|
|
|
|
let empty_result =
|
|
|
|
{ applied = [] ;
|
|
|
|
refused = Operation_hash.Map.empty ;
|
|
|
|
branch_refused = Operation_hash.Map.empty ;
|
|
|
|
branch_delayed = Operation_hash.Map.empty }
|
|
|
|
|
2017-04-27 03:01:05 +04:00
|
|
|
let rec apply_operations apply_operation state r ~sort ops =
|
2016-10-20 20:54:16 +04:00
|
|
|
Lwt_list.fold_left_s
|
|
|
|
(fun (state, r) (hash, op) ->
|
|
|
|
apply_operation state op >>= function
|
|
|
|
| Ok state ->
|
|
|
|
let applied = hash :: r.applied in
|
|
|
|
Lwt.return (state, { r with applied} )
|
|
|
|
| Error errors ->
|
|
|
|
match classify_errors errors with
|
|
|
|
| `Branch ->
|
|
|
|
let branch_refused =
|
|
|
|
Operation_hash.Map.add hash errors r.branch_refused in
|
|
|
|
Lwt.return (state, { r with branch_refused })
|
|
|
|
| `Permanent ->
|
|
|
|
let refused =
|
|
|
|
Operation_hash.Map.add hash errors r.refused in
|
|
|
|
Lwt.return (state, { r with refused })
|
|
|
|
| `Temporary ->
|
|
|
|
let branch_delayed =
|
|
|
|
Operation_hash.Map.add hash errors r.branch_delayed in
|
|
|
|
Lwt.return (state, { r with branch_delayed }))
|
2017-04-27 03:01:05 +04:00
|
|
|
(state, r)
|
2016-10-20 20:54:16 +04:00
|
|
|
ops >>= fun (state, r) ->
|
|
|
|
match r.applied with
|
|
|
|
| _ :: _ when sort ->
|
|
|
|
let rechecked_operations =
|
|
|
|
List.filter
|
|
|
|
(fun (hash, _) -> Operation_hash.Map.mem hash r.branch_delayed)
|
|
|
|
ops in
|
2017-04-27 03:01:05 +04:00
|
|
|
let remaining = List.length rechecked_operations in
|
|
|
|
if remaining = 0 || remaining = List.length ops then
|
|
|
|
Lwt.return (state, r)
|
|
|
|
else
|
|
|
|
apply_operations apply_operation state r ~sort rechecked_operations
|
2016-10-20 20:54:16 +04:00
|
|
|
| _ ->
|
2017-04-27 03:01:05 +04:00
|
|
|
Lwt.return (state, r)
|
2016-10-20 20:54:16 +04:00
|
|
|
|
|
|
|
type prevalidation_state =
|
|
|
|
State : { proto : 'a proto ; state : 'a }
|
|
|
|
-> prevalidation_state
|
|
|
|
|
|
|
|
and 'a proto =
|
2017-10-09 12:55:12 +04:00
|
|
|
(module State.Registred_protocol.T with type validation_state = 'a)
|
2016-10-20 20:54:16 +04:00
|
|
|
|
2017-04-27 03:01:05 +04:00
|
|
|
let start_prevalidation ?proto_header ~predecessor ~timestamp () =
|
2017-04-19 23:46:10 +04:00
|
|
|
let { Block_header.shell =
|
|
|
|
{ fitness = predecessor_fitness ;
|
|
|
|
timestamp = predecessor_timestamp ;
|
|
|
|
level = predecessor_level } } =
|
|
|
|
State.Block.header predecessor in
|
|
|
|
State.Block.context predecessor >>= fun predecessor_context ->
|
|
|
|
Context.get_protocol predecessor_context >>= fun protocol ->
|
|
|
|
let predecessor = State.Block.hash predecessor in
|
2017-10-27 21:41:47 +04:00
|
|
|
begin
|
2017-10-09 12:55:12 +04:00
|
|
|
match State.Registred_protocol.get protocol with
|
2017-10-27 21:41:47 +04:00
|
|
|
| None ->
|
|
|
|
(* FIXME. *)
|
|
|
|
(* This should not happen: it should be handled in the validator. *)
|
|
|
|
failwith "Prevalidation: missing protocol '%a' for the current block."
|
|
|
|
Protocol_hash.pp_short protocol
|
|
|
|
| Some protocol ->
|
|
|
|
return protocol
|
|
|
|
end >>=? fun (module Proto) ->
|
2017-04-10 23:14:17 +04:00
|
|
|
Context.reset_test_network
|
|
|
|
predecessor_context predecessor
|
|
|
|
timestamp >>= fun predecessor_context ->
|
2016-10-20 20:54:16 +04:00
|
|
|
Proto.begin_construction
|
|
|
|
~predecessor_context
|
|
|
|
~predecessor_timestamp
|
2017-04-10 14:14:11 +04:00
|
|
|
~predecessor_fitness
|
2017-04-10 15:01:22 +04:00
|
|
|
~predecessor_level
|
2016-10-20 20:54:16 +04:00
|
|
|
~predecessor
|
2017-04-10 14:14:11 +04:00
|
|
|
~timestamp
|
2017-04-27 03:01:05 +04:00
|
|
|
?proto_header
|
2017-04-26 17:01:39 +04:00
|
|
|
()
|
2017-04-10 14:14:11 +04:00
|
|
|
>>=? fun state ->
|
2016-10-20 20:54:16 +04:00
|
|
|
return (State { proto = (module Proto) ; state })
|
|
|
|
|
2017-04-27 03:01:05 +04:00
|
|
|
type error += Parse_error
|
|
|
|
|
2016-10-20 20:54:16 +04:00
|
|
|
let prevalidate
|
|
|
|
(State { proto = (module Proto) ; state })
|
|
|
|
~sort ops =
|
|
|
|
let ops =
|
2017-04-27 03:01:05 +04:00
|
|
|
List.map
|
|
|
|
(fun (h, op) ->
|
|
|
|
(h, Proto.parse_operation h op |> record_trace Parse_error))
|
|
|
|
ops in
|
|
|
|
let invalid_ops =
|
|
|
|
Utils.filter_map
|
|
|
|
(fun (h, op) -> match op with
|
|
|
|
| Ok _ -> None
|
|
|
|
| Error err -> Some (h, err)) ops
|
|
|
|
and parsed_ops =
|
|
|
|
Utils.filter_map
|
|
|
|
(fun (h, op) -> match op with
|
|
|
|
| Ok op -> Some (h, op)
|
|
|
|
| Error _ -> None) ops in
|
|
|
|
let sorted_ops =
|
2016-10-20 20:54:16 +04:00
|
|
|
if sort then
|
|
|
|
let compare (_, op1) (_, op2) = Proto.compare_operations op1 op2 in
|
2017-04-27 03:01:05 +04:00
|
|
|
List.sort compare parsed_ops
|
|
|
|
else parsed_ops in
|
|
|
|
apply_operations
|
|
|
|
Proto.apply_operation
|
|
|
|
state empty_result ~sort sorted_ops >>= fun (state, r) ->
|
|
|
|
let r =
|
|
|
|
{ r with
|
|
|
|
applied = List.rev r.applied ;
|
|
|
|
branch_refused =
|
|
|
|
List.fold_left
|
|
|
|
(fun map (h, err) -> Operation_hash.Map.add h err map)
|
|
|
|
r.branch_refused invalid_ops } in
|
|
|
|
Lwt.return (State { proto = (module Proto) ; state }, r)
|
2016-10-20 20:54:16 +04:00
|
|
|
|
|
|
|
let end_prevalidation (State { proto = (module Proto) ; state }) =
|
|
|
|
Proto.finalize_block state
|