2017-02-24 18:38:42 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Copyright (c) 2014 - 2016. *)
|
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
2017-02-25 21:10:29 +04:00
|
|
|
type error += Parsing_error
|
|
|
|
type error += Invalid_signature
|
|
|
|
|
|
|
|
let () =
|
|
|
|
register_error_kind
|
|
|
|
`Permanent
|
|
|
|
~id:"parsing_error"
|
|
|
|
~title:"Parsing error"
|
|
|
|
~description:"Raised when a block header has not been parsed correctly"
|
|
|
|
~pp:(fun ppf () -> Format.fprintf ppf "Block header parsing error")
|
|
|
|
Data_encoding.empty
|
|
|
|
(function Parsing_error -> Some () | _ -> None)
|
|
|
|
(fun () -> Parsing_error)
|
|
|
|
|
|
|
|
let () =
|
|
|
|
register_error_kind
|
|
|
|
`Permanent
|
|
|
|
~id:"invalid_signature"
|
|
|
|
~title:"Invalid signature"
|
|
|
|
~description:"Raised when the provided signature is invalid"
|
|
|
|
~pp:(fun ppf () -> Format.fprintf ppf "Invalid signature")
|
|
|
|
Data_encoding.empty
|
|
|
|
(function Invalid_signature -> Some () | _ -> None)
|
|
|
|
(fun () -> Invalid_signature)
|
2017-02-24 18:38:42 +04:00
|
|
|
|
2016-10-20 20:54:16 +04:00
|
|
|
type operation = unit
|
2017-02-24 18:38:42 +04:00
|
|
|
let max_operation_data_length = 0
|
2017-02-25 21:10:29 +04:00
|
|
|
let parse_operation _h _op = Error []
|
2016-10-20 20:54:16 +04:00
|
|
|
let compare_operations _ _ = 0
|
2017-02-24 18:38:42 +04:00
|
|
|
let max_number_of_operations = 0
|
|
|
|
|
2017-02-25 21:10:29 +04:00
|
|
|
type block = {
|
|
|
|
shell: Updater.shell_block ;
|
|
|
|
command: Data.Command.t ;
|
2017-02-28 05:56:40 +04:00
|
|
|
signature: Ed25519.Signature.t ;
|
2017-02-25 21:10:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
let max_block_length =
|
|
|
|
match Data_encoding.Binary.fixed_length Data.Command.signed_encoding with
|
|
|
|
| None -> assert false
|
|
|
|
| Some len -> len
|
|
|
|
|
2016-10-20 20:54:16 +04:00
|
|
|
let parse_block { Updater.shell ; proto } : block tzresult =
|
2017-02-25 21:10:29 +04:00
|
|
|
match Data_encoding.Binary.of_bytes Data.Command.signed_encoding proto with
|
|
|
|
| None -> Error [Parsing_error]
|
2017-02-25 21:01:27 +04:00
|
|
|
| Some (command, signature) -> Ok { shell ; command ; signature }
|
2017-02-25 21:10:29 +04:00
|
|
|
|
|
|
|
let check_signature ctxt { shell ; command ; signature } =
|
|
|
|
let bytes = Data.Command.forge shell command in
|
|
|
|
Data.Pubkey.get_pubkey ctxt >>= fun public_key ->
|
|
|
|
fail_unless
|
2017-02-28 05:56:40 +04:00
|
|
|
(Ed25519.Signature.check public_key signature bytes)
|
2017-02-25 21:10:29 +04:00
|
|
|
Invalid_signature
|
|
|
|
|
2016-10-20 20:54:16 +04:00
|
|
|
type validation_state = block * Context.t
|
|
|
|
|
|
|
|
let current_context (_, ctxt) =
|
|
|
|
return ctxt
|
|
|
|
|
|
|
|
let precheck_block
|
|
|
|
~ancestor_context:_
|
|
|
|
~ancestor_timestamp:_
|
|
|
|
raw_block =
|
|
|
|
Lwt.return (parse_block raw_block) >>=? fun _ ->
|
|
|
|
return ()
|
|
|
|
|
|
|
|
let begin_application
|
|
|
|
~predecessor_context:ctxt
|
|
|
|
~predecessor_timestamp:_
|
|
|
|
raw_block =
|
|
|
|
Lwt.return (parse_block raw_block) >>=? fun block ->
|
|
|
|
return (block, ctxt)
|
|
|
|
|
|
|
|
let begin_construction
|
|
|
|
~predecessor_context:_
|
|
|
|
~predecessor_timestamp:_
|
|
|
|
~predecessor:_
|
|
|
|
~timestamp:_ =
|
|
|
|
Lwt.return (Error []) (* absurd *)
|
|
|
|
|
|
|
|
let apply_operation _vctxt _ =
|
|
|
|
Lwt.return (Error []) (* absurd *)
|
|
|
|
|
|
|
|
let finalize_block (header, ctxt) =
|
2017-02-25 21:10:29 +04:00
|
|
|
check_signature ctxt header >>=? fun () ->
|
|
|
|
Data.Init.may_initialize ctxt >>=? fun ctxt ->
|
2017-02-25 21:01:27 +04:00
|
|
|
Context.set_fitness ctxt header.shell.fitness >>= fun ctxt ->
|
2017-02-25 21:10:29 +04:00
|
|
|
match header.command with
|
|
|
|
| Activate hash ->
|
2017-03-03 16:05:20 +04:00
|
|
|
let commit_message =
|
|
|
|
Format.asprintf "activate %a" Protocol_hash.pp_short hash in
|
|
|
|
Context.set_commit_message ctxt commit_message >>= fun ctxt ->
|
2017-02-24 18:38:42 +04:00
|
|
|
Updater.activate ctxt hash >>= fun ctxt ->
|
|
|
|
return ctxt
|
2017-02-25 21:10:29 +04:00
|
|
|
| Activate_testnet hash ->
|
2017-03-03 16:05:20 +04:00
|
|
|
let commit_message =
|
|
|
|
Format.asprintf "activate testnet %a" Protocol_hash.pp_short hash in
|
|
|
|
Context.set_commit_message ctxt commit_message >>= fun ctxt ->
|
2017-02-24 18:38:42 +04:00
|
|
|
Updater.set_test_protocol ctxt hash >>= fun ctxt ->
|
|
|
|
Updater.fork_test_network ctxt >>= fun ctxt ->
|
|
|
|
return ctxt
|
|
|
|
|
|
|
|
let rpc_services = Services.rpc_services
|
|
|
|
|
2017-02-25 21:10:29 +04:00
|
|
|
let configure_sandbox = Data.Init.configure_sandbox
|