2016-09-08 21:13:10 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Copyright (c) 2014 - 2016. *)
|
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
2016-11-14 18:55:24 +04:00
|
|
|
module Ed25519 = Environment.Ed25519
|
2016-09-08 21:13:10 +04:00
|
|
|
open Client_proto_args
|
|
|
|
|
|
|
|
let report_parse_error _prefix exn _lexbuf =
|
|
|
|
let open Lexing in
|
|
|
|
let open Script_located_ir in
|
|
|
|
let print_loc ppf ((sl, sc), (el, ec)) =
|
|
|
|
if sl = el then
|
|
|
|
if sc = ec then
|
|
|
|
Format.fprintf ppf
|
|
|
|
"at line %d character %d"
|
|
|
|
sl sc
|
|
|
|
else
|
|
|
|
Format.fprintf ppf
|
|
|
|
"at line %d characters %d to %d"
|
|
|
|
sl sc ec
|
|
|
|
else
|
|
|
|
Format.fprintf ppf
|
|
|
|
"from line %d character %d to line %d character %d"
|
|
|
|
sl sc el ec in
|
|
|
|
match exn with
|
|
|
|
| Missing_program_field n ->
|
|
|
|
Cli_entries.error "missing script %s" n
|
|
|
|
| Illegal_character (loc, c) ->
|
|
|
|
Cli_entries.error "%a, illegal character %C" print_loc loc c
|
|
|
|
| Illegal_escape (loc, c) ->
|
|
|
|
Cli_entries.error "%a, illegal escape sequence %S" print_loc loc c
|
|
|
|
| Failure s ->
|
|
|
|
Cli_entries.error "%s" s
|
|
|
|
| exn ->
|
|
|
|
Cli_entries.error "%s" @@ Printexc.to_string exn
|
|
|
|
|
|
|
|
let parse_program s =
|
|
|
|
let lexbuf = Lexing.from_string s in
|
|
|
|
try
|
|
|
|
Lwt.return
|
|
|
|
(Concrete_parser.tree Concrete_lexer.(token (init_state ())) lexbuf |>
|
|
|
|
List.map Script_located_ir.strip_locations |> fun fields ->
|
|
|
|
let rec get_field n = function
|
|
|
|
| Script.Prim (_, pn, [ ctns ]) :: _ when n = pn -> ctns
|
|
|
|
| _ :: rest -> get_field n rest
|
|
|
|
| [] -> raise (Script_located_ir.Missing_program_field n) in
|
|
|
|
Script.{ code = get_field "code" fields ;
|
|
|
|
arg_type = get_field "parameter" fields ;
|
|
|
|
ret_type = get_field "return" fields ;
|
|
|
|
storage_type = get_field "storage" fields }
|
|
|
|
)
|
|
|
|
with
|
|
|
|
| exn -> report_parse_error "program: " exn lexbuf
|
|
|
|
|
2016-11-10 19:25:31 +04:00
|
|
|
let rec print_ir locations ppf node =
|
2016-09-08 21:13:10 +04:00
|
|
|
let open Script in
|
|
|
|
let rec do_seq = function
|
|
|
|
| [] -> assert false
|
2016-11-10 19:25:31 +04:00
|
|
|
| [ last ] -> Format.fprintf ppf "%a }@]" (print_ir locations) last
|
|
|
|
| fst :: rest -> Format.fprintf ppf "%a ;@ " (print_ir locations) fst ; do_seq rest in
|
2016-09-08 21:13:10 +04:00
|
|
|
let rec do_args = function
|
|
|
|
| [] -> assert false
|
2016-11-10 19:25:31 +04:00
|
|
|
| [ last ] -> Format.fprintf ppf "%a@]" (print_ir locations) last
|
|
|
|
| fst :: rest -> Format.fprintf ppf "%a@," (print_ir locations) fst ; do_args rest in
|
|
|
|
let print_location ppf loc =
|
|
|
|
if locations loc then begin
|
|
|
|
Format.fprintf ppf " /* %d */" loc
|
|
|
|
end in
|
2016-09-08 21:13:10 +04:00
|
|
|
match node with
|
|
|
|
| String (_, s) -> Format.fprintf ppf "%S" s
|
|
|
|
| Int (_, s) -> Format.fprintf ppf "%s" s
|
2016-11-10 19:25:31 +04:00
|
|
|
| Seq (_, [ one ]) -> print_ir locations ppf one
|
2016-09-08 21:13:10 +04:00
|
|
|
| Seq (_, []) -> Format.fprintf ppf "{}" ;
|
|
|
|
| Seq (_, seq) ->
|
|
|
|
Format.fprintf ppf "{ @[<v>" ;
|
|
|
|
do_seq seq
|
2016-11-10 19:25:31 +04:00
|
|
|
| Prim (loc, name, []) ->
|
|
|
|
Format.fprintf ppf "%s%a" name print_location loc
|
|
|
|
| Prim (loc, name, seq) ->
|
|
|
|
Format.fprintf ppf "@[<v 2>%s%a@," name print_location loc;
|
2016-09-08 21:13:10 +04:00
|
|
|
do_args seq
|
|
|
|
|
2016-11-10 19:25:31 +04:00
|
|
|
let print_program locations ppf c =
|
2016-09-08 21:13:10 +04:00
|
|
|
Format.fprintf ppf
|
|
|
|
"@[<v 2>storage@,%a@]@."
|
2016-11-10 19:25:31 +04:00
|
|
|
(print_ir (fun _ -> false)) (c : Script.code).Script.storage_type ;
|
2016-09-08 21:13:10 +04:00
|
|
|
Format.fprintf ppf
|
|
|
|
"@[<v 2>parameter@,%a@]@."
|
2016-11-10 19:25:31 +04:00
|
|
|
(print_ir (fun _ -> false)) (c : Script.code).Script.arg_type ;
|
2016-09-08 21:13:10 +04:00
|
|
|
Format.fprintf ppf
|
|
|
|
"@[<v 2>return@,%a@]@."
|
2016-11-10 19:25:31 +04:00
|
|
|
(print_ir (fun _ -> false)) (c : Script.code).Script.ret_type ;
|
2016-09-08 21:13:10 +04:00
|
|
|
Format.fprintf ppf
|
|
|
|
"@[<v 2>code@,%a@]"
|
2016-11-10 19:25:31 +04:00
|
|
|
(print_ir locations) (c : Script.code).Script.code
|
2016-09-08 21:13:10 +04:00
|
|
|
|
|
|
|
let parse_data s =
|
|
|
|
let lexbuf = Lexing.from_string s in
|
|
|
|
try
|
|
|
|
match Concrete_parser.tree Concrete_lexer.(token (init_state ())) lexbuf with
|
|
|
|
| [node] -> Lwt.return (Script_located_ir.strip_locations node)
|
2016-09-12 16:06:23 +04:00
|
|
|
| _ -> Cli_entries.error "single data expression expected"
|
2016-09-08 21:13:10 +04:00
|
|
|
with
|
|
|
|
| exn -> report_parse_error "data: " exn lexbuf
|
|
|
|
|
|
|
|
let parse_data_type s =
|
|
|
|
let lexbuf = Lexing.from_string s in
|
|
|
|
try
|
|
|
|
match Concrete_parser.tree Concrete_lexer.(token (init_state ())) lexbuf with
|
|
|
|
| [node] -> Lwt.return (Script_located_ir.strip_locations node)
|
2016-09-12 16:06:23 +04:00
|
|
|
| _ -> Cli_entries.error "single type expression expected"
|
2016-09-08 21:13:10 +04:00
|
|
|
with
|
|
|
|
| exn -> report_parse_error "data_type: " exn lexbuf
|
|
|
|
|
2016-11-10 20:16:37 +04:00
|
|
|
let unexpand_macros type_map program =
|
|
|
|
let open Script in
|
|
|
|
let rec caddr type_map acc = function
|
|
|
|
| [] -> Some (List.rev acc)
|
|
|
|
| Prim (loc, "car" , []) :: rest when List.mem_assoc loc type_map ->
|
|
|
|
caddr type_map ((loc, "a") :: acc) rest
|
|
|
|
| Prim (loc, "cdr" , []) :: rest when List.mem_assoc loc type_map ->
|
|
|
|
caddr type_map ((loc, "d") :: acc) rest
|
|
|
|
| _ -> None in
|
|
|
|
let rec unexpand type_map node =
|
|
|
|
match node with
|
|
|
|
| Seq (loc, l) ->
|
|
|
|
begin match caddr type_map [] l with
|
|
|
|
| None ->
|
|
|
|
let type_map, l =
|
|
|
|
List.fold_left
|
|
|
|
(fun (type_map, acc) e ->
|
|
|
|
let type_map, e = unexpand type_map e in
|
|
|
|
type_map, e :: acc)
|
|
|
|
(type_map, [])
|
|
|
|
l in
|
|
|
|
type_map, Seq (loc, List.rev l)
|
|
|
|
| Some l ->
|
|
|
|
let locs, steps = List.split l in
|
|
|
|
let name = "c" ^ String.concat "" steps ^ "r" in
|
|
|
|
let first, last = List.hd locs, List.hd (List.rev locs) in
|
|
|
|
let (before, _) = List.assoc first type_map in
|
|
|
|
let (_, after) = List.assoc last type_map in
|
|
|
|
let type_map =
|
|
|
|
List.filter
|
|
|
|
(fun (loc, _) -> not (List.mem loc locs))
|
|
|
|
type_map in
|
|
|
|
let type_map = (loc, (before, after)):: type_map in
|
|
|
|
type_map, Prim (loc, name, [])
|
|
|
|
end
|
|
|
|
| oth -> type_map, oth in
|
|
|
|
let type_map, code = unexpand type_map program.code in
|
|
|
|
type_map, { program with code }
|
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
module Program = Client_aliases.Alias (struct
|
|
|
|
type t = Script.code
|
|
|
|
let encoding = Script.code_encoding
|
|
|
|
let of_source s = parse_program s
|
2016-11-10 19:25:31 +04:00
|
|
|
let to_source p = Lwt.return (Format.asprintf "%a" (print_program (fun _ -> false)) p)
|
2016-09-08 21:13:10 +04:00
|
|
|
let name = "program"
|
|
|
|
end)
|
|
|
|
|
|
|
|
let commands () =
|
|
|
|
let open Cli_entries in
|
2016-11-16 18:05:02 +04:00
|
|
|
let show_types = ref false in
|
|
|
|
let show_types_arg =
|
|
|
|
"-details",
|
|
|
|
Arg.Set show_types,
|
|
|
|
"Show the types of each instruction" in
|
|
|
|
let trace_stack = ref false in
|
|
|
|
let trace_stack_arg =
|
|
|
|
"-trace-stack",
|
|
|
|
Arg.Set trace_stack,
|
|
|
|
"Show the stack after each step" in
|
2016-09-08 21:13:10 +04:00
|
|
|
register_group "programs" "Commands for managing the record of known programs" ;
|
|
|
|
[
|
|
|
|
command
|
|
|
|
~group: "programs"
|
|
|
|
~desc: "lists all known programs"
|
|
|
|
(fixed [ "list" ; "known" ; "programs" ])
|
|
|
|
(fun () -> Program.load () >>= fun list ->
|
|
|
|
List.iter (fun (n, _) -> message "%s" n) list ; Lwt.return ()) ;
|
|
|
|
command
|
|
|
|
~group: "programs"
|
|
|
|
~desc: "remember a program under some name"
|
|
|
|
(prefixes [ "remember" ; "program" ]
|
|
|
|
@@ Program.fresh_alias_param
|
|
|
|
@@ Program.source_param
|
|
|
|
@@ stop)
|
|
|
|
(fun name hash () -> Program.add name hash) ;
|
|
|
|
command
|
|
|
|
~group: "programs"
|
|
|
|
~desc: "forget a remembered program"
|
|
|
|
(prefixes [ "forget" ; "program" ]
|
|
|
|
@@ Program.alias_param
|
|
|
|
@@ stop)
|
|
|
|
(fun (name, _) () -> Program.del name) ;
|
|
|
|
command
|
|
|
|
~group: "programs"
|
|
|
|
~desc: "display a program"
|
|
|
|
(prefixes [ "show" ; "known" ; "program" ]
|
|
|
|
@@ Program.alias_param
|
|
|
|
@@ stop)
|
|
|
|
(fun (_, program) () ->
|
|
|
|
Program.to_source program >>= fun source ->
|
|
|
|
Format.printf "%s\n" source ;
|
|
|
|
Lwt.return ()) ;
|
2016-11-15 18:58:18 +04:00
|
|
|
command
|
|
|
|
~group: "programs"
|
|
|
|
~desc: "ask the node to run a program"
|
2016-11-16 18:05:02 +04:00
|
|
|
~args: [ trace_stack_arg ]
|
2016-11-15 18:58:18 +04:00
|
|
|
(prefixes [ "run" ; "program" ]
|
|
|
|
@@ Program.source_param
|
|
|
|
@@ prefixes [ "on" ; "storage" ]
|
|
|
|
@@ Cli_entries.param ~name:"storage" ~desc:"the untagged storage data" parse_data
|
|
|
|
@@ prefixes [ "and" ; "input" ]
|
|
|
|
@@ Cli_entries.param ~name:"storage" ~desc:"the untagged input data" parse_data
|
|
|
|
@@ stop)
|
|
|
|
(fun program storage input () ->
|
|
|
|
let open Data_encoding in
|
2016-11-16 18:05:02 +04:00
|
|
|
if !trace_stack then
|
|
|
|
Client_proto_rpcs.Helpers.trace_code (block ()) program (storage, input) >>= function
|
|
|
|
| Ok (storage, output, trace) ->
|
|
|
|
Format.printf "@[<v 0>@[<v 2>storage@,%a@]@,@[<v 2>output@,%a@]@,@[<v 2>trace@,%a@]@]@."
|
|
|
|
(print_ir (fun _ -> false)) storage
|
|
|
|
(print_ir (fun _ -> false)) output
|
|
|
|
(Format.pp_print_list
|
|
|
|
(fun ppf (loc, gas, stack) ->
|
|
|
|
Format.fprintf ppf
|
|
|
|
"- @[<v 0>location: %d (remaining gas: %d)@,[ @[<v 0>%a ]@]@]"
|
|
|
|
loc gas
|
|
|
|
(Format.pp_print_list (print_ir (fun _ -> false)))
|
|
|
|
stack))
|
|
|
|
trace ;
|
|
|
|
Lwt.return ()
|
|
|
|
| Error errs ->
|
|
|
|
pp_print_error Format.err_formatter errs ;
|
|
|
|
error "error running program"
|
|
|
|
else
|
|
|
|
Client_proto_rpcs.Helpers.run_code (block ()) program (storage, input) >>= function
|
|
|
|
| Ok (storage, output) ->
|
|
|
|
Format.printf "@[<v 0>@[<v 2>storage@,%a@]@,@[<v 2>output@,%a@]@]@."
|
|
|
|
(print_ir (fun _ -> false)) storage
|
|
|
|
(print_ir (fun _ -> false)) output ;
|
|
|
|
Lwt.return ()
|
|
|
|
| Error errs ->
|
|
|
|
pp_print_error Format.err_formatter errs ;
|
|
|
|
error "error running program") ;
|
2016-09-08 21:13:10 +04:00
|
|
|
command
|
|
|
|
~group: "programs"
|
|
|
|
~desc: "ask the node to typecheck a program"
|
2016-11-16 18:05:02 +04:00
|
|
|
~args: [ show_types_arg ]
|
2016-09-08 21:13:10 +04:00
|
|
|
(prefixes [ "typecheck" ; "program" ]
|
|
|
|
@@ Program.source_param
|
|
|
|
@@ stop)
|
|
|
|
(fun program () ->
|
|
|
|
let open Data_encoding in
|
|
|
|
Client_proto_rpcs.Helpers.typecheck_code (block ()) program >>= function
|
2016-11-10 19:25:31 +04:00
|
|
|
| Ok type_map ->
|
2016-11-10 20:16:37 +04:00
|
|
|
let type_map, program = unexpand_macros type_map program in
|
2016-09-08 21:13:10 +04:00
|
|
|
message "Well typed" ;
|
2016-11-16 18:05:02 +04:00
|
|
|
if !show_types then begin
|
|
|
|
print_program
|
|
|
|
(fun l -> List.mem_assoc l type_map)
|
|
|
|
Format.std_formatter program ;
|
|
|
|
Format.printf "@." ;
|
|
|
|
List.iter
|
|
|
|
(fun (loc, (before, after)) ->
|
|
|
|
Format.printf
|
|
|
|
"%3d@[<v 0> : [ @[<v 0>%a ]@]@,-> [ @[<v 0>%a ]@]@]@."
|
|
|
|
loc
|
|
|
|
(Format.pp_print_list (print_ir (fun _ -> false)))
|
|
|
|
before
|
|
|
|
(Format.pp_print_list (print_ir (fun _ -> false)))
|
|
|
|
after)
|
|
|
|
(List.sort compare type_map)
|
|
|
|
end ;
|
2016-09-08 21:13:10 +04:00
|
|
|
Lwt.return ()
|
|
|
|
| Error errs ->
|
|
|
|
pp_print_error Format.err_formatter errs ;
|
|
|
|
error "ill-typed program") ;
|
2016-09-12 16:06:23 +04:00
|
|
|
command
|
|
|
|
~group: "programs"
|
|
|
|
~desc: "ask the node to typecheck a tagged data expression"
|
|
|
|
(prefixes [ "typecheck" ; "data" ]
|
|
|
|
@@ Cli_entries.param ~name:"data" ~desc:"the data to typecheck" parse_data
|
|
|
|
@@ prefixes [ "against" ; "type" ]
|
|
|
|
@@ Cli_entries.param ~name:"type" ~desc:"the expected type" parse_data
|
|
|
|
@@ stop)
|
|
|
|
(fun data exp_ty () ->
|
|
|
|
let open Data_encoding in
|
|
|
|
Client_proto_rpcs.Helpers.typecheck_untagged_data
|
|
|
|
(block ()) (data, exp_ty) >>= function
|
|
|
|
| Ok () ->
|
|
|
|
message "Well typed" ;
|
|
|
|
Lwt.return ()
|
|
|
|
| Error errs ->
|
|
|
|
pp_print_error Format.err_formatter errs ;
|
|
|
|
error "ill-typed data") ;
|
|
|
|
command
|
|
|
|
~group: "programs"
|
|
|
|
~desc: "ask the node to compute the hash of an untagged data expression \
|
|
|
|
using the same algorithm as script instruction H"
|
|
|
|
(prefixes [ "hash" ; "data" ]
|
|
|
|
@@ Cli_entries.param ~name:"data" ~desc:"the data to hash" parse_data
|
|
|
|
@@ stop)
|
|
|
|
(fun data () ->
|
|
|
|
let open Data_encoding in
|
|
|
|
Client_proto_rpcs.Helpers.hash_data (block ()) data >>= function
|
|
|
|
| Ok hash ->
|
|
|
|
message "%S" hash;
|
|
|
|
Lwt.return ()
|
|
|
|
| Error errs ->
|
|
|
|
pp_print_error Format.err_formatter errs ;
|
|
|
|
error "ill-formed data") ;
|
|
|
|
command
|
|
|
|
~group: "programs"
|
|
|
|
~desc: "ask the node to compute the hash of an untagged data expression \
|
|
|
|
using the same algorithm as script instruction H, sign it using \
|
|
|
|
a given secret key, and display it using the format expected by \
|
|
|
|
script instruction CHECK_SIGNATURE"
|
|
|
|
(prefixes [ "hash" ; "and" ; "sign" ; "data" ]
|
|
|
|
@@ Cli_entries.param ~name:"data" ~desc:"the data to hash" parse_data
|
|
|
|
@@ prefixes [ "for" ]
|
|
|
|
@@ Client_keys.Secret_key.alias_param
|
|
|
|
@@ stop)
|
|
|
|
(fun data (_, key) () ->
|
|
|
|
let open Data_encoding in
|
|
|
|
Client_proto_rpcs.Helpers.hash_data (block ()) data >>= function
|
|
|
|
| Ok hash ->
|
|
|
|
let signature = Ed25519.sign key (MBytes.of_string hash) in
|
|
|
|
message "Hash: %S@.Signature: %S"
|
|
|
|
hash
|
|
|
|
(signature |>
|
|
|
|
Data_encoding.Binary.to_bytes Ed25519.signature_encoding |>
|
|
|
|
Hex_encode.hex_of_bytes) ;
|
|
|
|
Lwt.return ()
|
|
|
|
| Error errs ->
|
|
|
|
pp_print_error Format.err_formatter errs ;
|
|
|
|
error "ill-formed data") ;
|
2016-09-08 21:13:10 +04:00
|
|
|
]
|