2018-05-26 15:22:47 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Copyright (c) 2014 - 2018. *)
|
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
open Client_keys
|
|
|
|
open Signer_messages
|
|
|
|
|
|
|
|
let sign ?watermark path pkh msg =
|
|
|
|
let msg =
|
|
|
|
match watermark with
|
|
|
|
| None -> msg
|
|
|
|
| Some watermark ->
|
|
|
|
MBytes.concat "" [ Signature.bytes_of_watermark watermark ; msg ] in
|
|
|
|
let req = { Sign.Request.pkh ; data = msg } in
|
|
|
|
Lwt_utils_unix.Socket.connect path >>=? fun conn ->
|
|
|
|
Lwt_utils_unix.Socket.send
|
|
|
|
conn Request.encoding (Request.Sign req) >>=? fun () ->
|
|
|
|
let encoding = result_encoding Sign.Response.encoding in
|
|
|
|
Lwt_utils_unix.Socket.recv conn encoding >>=? fun res ->
|
|
|
|
Lwt_unix.close conn >>= fun () ->
|
|
|
|
Lwt.return res
|
|
|
|
|
|
|
|
let public_key path pkh =
|
|
|
|
Lwt_utils_unix.Socket.connect path >>=? fun conn ->
|
|
|
|
Lwt_utils_unix.Socket.send
|
|
|
|
conn Request.encoding (Request.Public_key pkh) >>=? fun () ->
|
|
|
|
let encoding = result_encoding Public_key.Response.encoding in
|
|
|
|
Lwt_utils_unix.Socket.recv conn encoding >>=? fun res ->
|
|
|
|
Lwt_unix.close conn >>= fun () ->
|
|
|
|
Lwt.return res
|
|
|
|
|
|
|
|
module Unix = struct
|
|
|
|
|
|
|
|
let scheme = "unix"
|
|
|
|
|
2018-05-27 14:31:52 +04:00
|
|
|
let title =
|
|
|
|
"Built-in tezos-signer using remote signer through hardcoded unix socket."
|
2018-05-26 15:22:47 +04:00
|
|
|
|
2018-05-27 14:31:52 +04:00
|
|
|
let description =
|
|
|
|
"Valid locators are of this form: unix:///path/to/socket?pkh=tz1..."
|
2018-05-26 15:22:47 +04:00
|
|
|
|
|
|
|
let parse uri =
|
2018-05-27 14:31:52 +04:00
|
|
|
assert (Uri.scheme uri = Some scheme) ;
|
|
|
|
trace (Invalid_uri uri) @@
|
|
|
|
match Uri.get_query_param uri "pkh" with
|
|
|
|
| None -> failwith "Missing the query parameter: 'pkh=tz1...'"
|
2018-05-26 15:22:47 +04:00
|
|
|
| Some key ->
|
|
|
|
Lwt.return (Signature.Public_key_hash.of_b58check key) >>=? fun key ->
|
|
|
|
return (Lwt_utils_unix.Socket.Unix (Uri.path uri), key)
|
|
|
|
|
|
|
|
let public_key uri =
|
|
|
|
parse (uri : pk_uri :> Uri.t) >>=? fun (path, pkh) ->
|
|
|
|
public_key path pkh
|
|
|
|
|
|
|
|
let neuterize uri =
|
|
|
|
return (Client_keys.make_pk_uri (uri : sk_uri :> Uri.t))
|
|
|
|
|
|
|
|
let public_key_hash uri =
|
|
|
|
public_key uri >>=? fun pk ->
|
|
|
|
return (Signature.Public_key.hash pk)
|
|
|
|
|
|
|
|
let sign ?watermark uri msg =
|
|
|
|
parse (uri : sk_uri :> Uri.t) >>=? fun (path, pkh) ->
|
|
|
|
sign ?watermark path pkh msg
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
module Tcp = struct
|
|
|
|
|
|
|
|
let scheme = "tcp"
|
|
|
|
|
2018-05-27 14:31:52 +04:00
|
|
|
let title =
|
|
|
|
"Built-in tezos-signer using remote signer through hardcoded tcp socket."
|
2018-05-26 15:22:47 +04:00
|
|
|
|
2018-05-27 14:31:52 +04:00
|
|
|
let description =
|
|
|
|
"Valid locators are of this form: tcp://host:port/tz1..."
|
2018-05-26 15:22:47 +04:00
|
|
|
|
|
|
|
let parse uri =
|
2018-05-27 14:31:52 +04:00
|
|
|
assert (Uri.scheme uri = Some scheme) ;
|
|
|
|
trace (Invalid_uri uri) @@
|
|
|
|
match Uri.host uri, Uri.port uri with
|
|
|
|
| None, _ ->
|
|
|
|
failwith "Missing host address"
|
|
|
|
| _, None ->
|
|
|
|
failwith "Missing host port"
|
|
|
|
| Some path, Some port ->
|
|
|
|
Lwt.return
|
|
|
|
(Signature.Public_key_hash.of_b58check (Uri.path uri)) >>=? fun pkh ->
|
|
|
|
return (Lwt_utils_unix.Socket.Tcp (path, port), pkh)
|
2018-05-26 15:22:47 +04:00
|
|
|
|
|
|
|
let public_key uri =
|
|
|
|
parse (uri : pk_uri :> Uri.t) >>=? fun (path, pkh) ->
|
|
|
|
public_key path pkh
|
|
|
|
|
|
|
|
let neuterize uri =
|
|
|
|
return (Client_keys.make_pk_uri (uri : sk_uri :> Uri.t))
|
|
|
|
|
|
|
|
let public_key_hash uri =
|
|
|
|
public_key uri >>=? fun pk ->
|
|
|
|
return (Signature.Public_key.hash pk)
|
|
|
|
|
|
|
|
let sign ?watermark uri msg =
|
|
|
|
parse (uri : sk_uri :> Uri.t) >>=? fun (path, pkh) ->
|
|
|
|
sign ?watermark path pkh msg
|
|
|
|
|
|
|
|
end
|