mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
304 lines
7.5 KiB
C
304 lines
7.5 KiB
C
|
#include <bitcoin/privkey.h>
|
||
|
#include <bitcoin/pubkey.h>
|
||
|
#include <ccan/breakpoint/breakpoint.h>
|
||
|
#include <ccan/container_of/container_of.h>
|
||
|
#include <ccan/crypto/hkdf_sha256/hkdf_sha256.h>
|
||
|
#include <ccan/endian/endian.h>
|
||
|
#include <ccan/fdpass/fdpass.h>
|
||
|
#include <ccan/io/fdpass/fdpass.h>
|
||
|
#include <ccan/io/io.h>
|
||
|
#include <ccan/noerr/noerr.h>
|
||
|
#include <ccan/read_write_all/read_write_all.h>
|
||
|
#include <errno.h>
|
||
|
#include <fcntl.h>
|
||
|
#include <inttypes.h>
|
||
|
#include <lightningd/hsm/client.h>
|
||
|
#include <lightningd/hsm/gen_hsm_client_wire.h>
|
||
|
#include <lightningd/hsm/gen_hsm_control_wire.h>
|
||
|
#include <lightningd/hsm/gen_hsm_status_wire.h>
|
||
|
#include <secp256k1_ecdh.h>
|
||
|
#include <sodium/randombytes.h>
|
||
|
#include <status.h>
|
||
|
#include <sys/socket.h>
|
||
|
#include <sys/stat.h>
|
||
|
#include <sys/types.h>
|
||
|
#include <unistd.h>
|
||
|
#include <utils.h>
|
||
|
#include <version.h>
|
||
|
#include <wire/wire_io.h>
|
||
|
|
||
|
/* Nobody will ever find it here! */
|
||
|
static struct privkey hsm_secret;
|
||
|
|
||
|
struct conn_info {
|
||
|
struct io_plan *(*received_req)(struct io_conn *, struct conn_info *);
|
||
|
u8 *in;
|
||
|
u8 *out;
|
||
|
int out_fd;
|
||
|
};
|
||
|
|
||
|
struct client {
|
||
|
struct conn_info ci;
|
||
|
u64 id;
|
||
|
u8 *(*handle)(struct client *c, const tal_t *data);
|
||
|
};
|
||
|
|
||
|
static void node_key(struct privkey *node_secret, struct pubkey *node_id)
|
||
|
{
|
||
|
u32 salt = 0;
|
||
|
struct privkey unused_s;
|
||
|
struct pubkey unused_k;
|
||
|
|
||
|
if (node_secret == NULL)
|
||
|
node_secret = &unused_s;
|
||
|
else if (node_id == NULL)
|
||
|
node_id = &unused_k;
|
||
|
|
||
|
do {
|
||
|
hkdf_sha256(node_secret, sizeof(*node_secret),
|
||
|
&salt, sizeof(salt),
|
||
|
&hsm_secret, sizeof(hsm_secret),
|
||
|
"nodeid", 6);
|
||
|
salt++;
|
||
|
} while (!secp256k1_ec_pubkey_create(secp256k1_ctx, &node_id->pubkey,
|
||
|
node_secret->secret));
|
||
|
}
|
||
|
|
||
|
static void conn_info_init(struct conn_info *ci,
|
||
|
struct io_plan *(*received_req)(struct io_conn *conn,
|
||
|
struct conn_info *ci))
|
||
|
{
|
||
|
ci->received_req = received_req;
|
||
|
ci->in = ci->out = NULL;
|
||
|
ci->out_fd = -1;
|
||
|
}
|
||
|
|
||
|
static struct io_plan *sent_resp(struct io_conn *conn, struct conn_info *ci);
|
||
|
|
||
|
/* Client operations */
|
||
|
static struct io_plan *client_received_req(struct io_conn *conn,
|
||
|
struct conn_info *ci)
|
||
|
{
|
||
|
struct client *c = container_of(ci, struct client, ci);
|
||
|
|
||
|
status_trace("Client %"PRIu64": type %s len %zu",
|
||
|
c->id,
|
||
|
hsm_client_wire_type_name(fromwire_peektype(ci->in)),
|
||
|
tal_count(ci->in));
|
||
|
|
||
|
ci->out = c->handle(c, ci->in);
|
||
|
if (!ci->out) {
|
||
|
status_send(towire_hsmstatus_client_bad_request(c, c->id,
|
||
|
ci->in));
|
||
|
return io_close(conn);
|
||
|
}
|
||
|
ci->in = tal_free(ci->in);
|
||
|
return io_write_wire(conn, ci->out, sent_resp, ci);
|
||
|
}
|
||
|
|
||
|
static struct client *new_client(const tal_t *ctx,
|
||
|
u64 id,
|
||
|
u8 *(*handle)(struct client *c,
|
||
|
const tal_t *data))
|
||
|
{
|
||
|
struct client *c = tal(ctx, struct client);
|
||
|
c->id = id;
|
||
|
c->handle = handle;
|
||
|
conn_info_init(&c->ci, client_received_req);
|
||
|
|
||
|
return c;
|
||
|
}
|
||
|
|
||
|
static u8 *handle_ecdh(struct client *c, const void *data)
|
||
|
{
|
||
|
struct privkey privkey;
|
||
|
struct pubkey point;
|
||
|
struct sha256 ss;
|
||
|
|
||
|
if (!fromwire_hsm_ecdh_req(data, NULL, &point))
|
||
|
return NULL;
|
||
|
|
||
|
node_key(&privkey, NULL);
|
||
|
if (secp256k1_ecdh(secp256k1_ctx, ss.u.u8, &point.pubkey,
|
||
|
privkey.secret) != 1)
|
||
|
return NULL;
|
||
|
|
||
|
return towire_hsm_ecdh_resp(c, &ss);
|
||
|
}
|
||
|
|
||
|
/* Control messages */
|
||
|
static u8 *init_response(struct conn_info *control)
|
||
|
{
|
||
|
struct pubkey node_id;
|
||
|
node_key(NULL, &node_id);
|
||
|
return towire_hsmctl_init_response(control, &node_id);
|
||
|
}
|
||
|
|
||
|
static u8 *create_new_hsm(struct conn_info *control)
|
||
|
{
|
||
|
int fd = open("hsm_secret", O_CREAT|O_EXCL|O_WRONLY, 0400);
|
||
|
if (fd < 0)
|
||
|
status_failed(WIRE_HSMSTATUS_INIT_FAILED,
|
||
|
"creating: %s", strerror(errno));
|
||
|
|
||
|
randombytes_buf(&hsm_secret, sizeof(hsm_secret));
|
||
|
if (!write_all(fd, &hsm_secret, sizeof(hsm_secret))) {
|
||
|
unlink_noerr("hsm_secret");
|
||
|
status_failed(WIRE_HSMSTATUS_INIT_FAILED,
|
||
|
"writing: %s", strerror(errno));
|
||
|
}
|
||
|
if (fsync(fd) != 0) {
|
||
|
unlink_noerr("hsm_secret");
|
||
|
status_failed(WIRE_HSMSTATUS_INIT_FAILED,
|
||
|
"fsync: %s", strerror(errno));
|
||
|
}
|
||
|
if (close(fd) != 0) {
|
||
|
unlink_noerr("hsm_secret");
|
||
|
status_failed(WIRE_HSMSTATUS_INIT_FAILED,
|
||
|
"closing: %s", strerror(errno));
|
||
|
}
|
||
|
fd = open(".", O_RDONLY);
|
||
|
if (fsync(fd) != 0) {
|
||
|
unlink_noerr("hsm_secret");
|
||
|
status_failed(WIRE_HSMSTATUS_INIT_FAILED,
|
||
|
"fsyncdir: %s", strerror(errno));
|
||
|
}
|
||
|
close(fd);
|
||
|
|
||
|
return init_response(control);
|
||
|
}
|
||
|
|
||
|
static u8 *load_hsm(struct conn_info *control)
|
||
|
{
|
||
|
int fd = open("hsm_secret", O_RDONLY);
|
||
|
if (fd < 0)
|
||
|
status_failed(WIRE_HSMSTATUS_INIT_FAILED,
|
||
|
"opening: %s", strerror(errno));
|
||
|
if (!read_all(fd, &hsm_secret, sizeof(hsm_secret)))
|
||
|
status_failed(WIRE_HSMSTATUS_INIT_FAILED,
|
||
|
"reading: %s", strerror(errno));
|
||
|
close(fd);
|
||
|
|
||
|
return init_response(control);
|
||
|
}
|
||
|
|
||
|
static struct io_plan *recv_req(struct io_conn *conn, struct conn_info *ci)
|
||
|
{
|
||
|
return io_read_wire(conn, ci, &ci->in, ci->received_req, ci);
|
||
|
}
|
||
|
|
||
|
static struct io_plan *sent_out_fd(struct io_conn *conn, struct conn_info *ci)
|
||
|
{
|
||
|
ci->out_fd = -1;
|
||
|
return recv_req(conn, ci);
|
||
|
}
|
||
|
|
||
|
static struct io_plan *sent_resp(struct io_conn *conn, struct conn_info *ci)
|
||
|
{
|
||
|
ci->out = tal_free(ci->out);
|
||
|
if (ci->out_fd != -1)
|
||
|
return io_send_fd(conn, ci->out_fd, sent_out_fd, ci);
|
||
|
return recv_req(conn, ci);
|
||
|
}
|
||
|
|
||
|
static struct io_plan *ecdh_client(struct io_conn *conn, struct client *c)
|
||
|
{
|
||
|
tal_steal(conn, c);
|
||
|
return recv_req(conn, &c->ci);
|
||
|
}
|
||
|
|
||
|
static u8 *pass_hsmfd_ecdh(struct io_conn *conn,
|
||
|
struct conn_info *control,
|
||
|
const tal_t *data,
|
||
|
int *fd_to_pass)
|
||
|
{
|
||
|
int fds[2];
|
||
|
u64 id;
|
||
|
struct client *c;
|
||
|
|
||
|
if (!fromwire_hsmctl_hsmfd_ecdh(data, NULL, &id))
|
||
|
status_failed(WIRE_HSMSTATUS_BAD_REQUEST, "bad HSMFD_ECDH");
|
||
|
|
||
|
if (socketpair(AF_UNIX, SOCK_STREAM, 0, fds) != 0)
|
||
|
status_failed(WIRE_HSMSTATUS_FD_FAILED,
|
||
|
"creating fds: %s", strerror(errno));
|
||
|
|
||
|
c = new_client(control, id, handle_ecdh);
|
||
|
io_new_conn(control, fds[0], ecdh_client, c);
|
||
|
|
||
|
*fd_to_pass = fds[1];
|
||
|
return towire_hsmctl_hsmfd_ecdh_response(control);
|
||
|
}
|
||
|
|
||
|
static struct io_plan *control_received_req(struct io_conn *conn,
|
||
|
struct conn_info *control)
|
||
|
{
|
||
|
enum hsm_control_wire_type t = fromwire_peektype(control->in);
|
||
|
|
||
|
status_trace("Control: type %s len %zu",
|
||
|
hsm_control_wire_type_name(t), tal_count(control->in));
|
||
|
|
||
|
switch (t) {
|
||
|
case WIRE_HSMCTL_INIT_NEW:
|
||
|
control->out = create_new_hsm(control);
|
||
|
goto send_out;
|
||
|
case WIRE_HSMCTL_INIT_LOAD:
|
||
|
control->out = load_hsm(control);
|
||
|
goto send_out;
|
||
|
case WIRE_HSMCTL_HSMFD_ECDH:
|
||
|
control->out = pass_hsmfd_ecdh(conn, control, control->in,
|
||
|
&control->out_fd);
|
||
|
goto send_out;
|
||
|
case WIRE_HSMCTL_SHUTDOWN:
|
||
|
io_break(control);
|
||
|
return io_never(conn, control);
|
||
|
|
||
|
case WIRE_HSMCTL_INIT_RESPONSE:
|
||
|
case WIRE_HSMCTL_HSMFD_ECDH_RESPONSE:
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
/* Control shouldn't give bad requests. */
|
||
|
status_failed(WIRE_HSMSTATUS_BAD_REQUEST, "%i", t);
|
||
|
|
||
|
send_out:
|
||
|
if (control->out)
|
||
|
return io_write_wire(conn, control->out, sent_resp, control);
|
||
|
else
|
||
|
return sent_resp(conn, control);
|
||
|
}
|
||
|
|
||
|
static struct io_plan *control_init(struct io_conn *conn,
|
||
|
struct conn_info *control)
|
||
|
{
|
||
|
return recv_req(conn, control);
|
||
|
}
|
||
|
|
||
|
#ifndef TESTING
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
struct conn_info *control;
|
||
|
|
||
|
if (argc == 2 && streq(argv[1], "--version")) {
|
||
|
printf("%s\n", version());
|
||
|
exit(0);
|
||
|
}
|
||
|
|
||
|
breakpoint();
|
||
|
secp256k1_ctx = secp256k1_context_create(SECP256K1_CONTEXT_VERIFY
|
||
|
| SECP256K1_CONTEXT_SIGN);
|
||
|
|
||
|
control = tal(NULL, struct conn_info);
|
||
|
conn_info_init(control, control_received_req);
|
||
|
|
||
|
/* Stdout == status, stdin == requests */
|
||
|
status_setup(STDOUT_FILENO);
|
||
|
|
||
|
io_new_conn(control, STDIN_FILENO, control_init, control);
|
||
|
io_loop(NULL, NULL);
|
||
|
|
||
|
tal_free(control);
|
||
|
return 0;
|
||
|
}
|
||
|
#endif
|