2016-01-21 21:14:25 +01:00
|
|
|
#include "bitcoind.h"
|
2016-01-21 21:15:27 +01:00
|
|
|
#include "close_tx.h"
|
2016-01-21 21:14:27 +01:00
|
|
|
#include "commit_tx.h"
|
2016-01-21 21:15:28 +01:00
|
|
|
#include "controlled_time.h"
|
2016-01-21 21:11:48 +01:00
|
|
|
#include "cryptopkt.h"
|
2016-01-21 21:11:48 +01:00
|
|
|
#include "dns.h"
|
2016-01-21 21:14:27 +01:00
|
|
|
#include "find_p2sh_out.h"
|
2016-01-21 21:11:48 +01:00
|
|
|
#include "jsonrpc.h"
|
2016-01-21 21:11:48 +01:00
|
|
|
#include "lightningd.h"
|
|
|
|
#include "log.h"
|
2016-01-21 21:14:25 +01:00
|
|
|
#include "names.h"
|
2016-01-21 21:11:48 +01:00
|
|
|
#include "peer.h"
|
2016-01-21 21:14:25 +01:00
|
|
|
#include "secrets.h"
|
2016-01-21 21:14:13 +01:00
|
|
|
#include "state.h"
|
2016-01-21 21:15:27 +01:00
|
|
|
#include "timeout.h"
|
2016-01-21 21:14:27 +01:00
|
|
|
#include <bitcoin/base58.h>
|
|
|
|
#include <bitcoin/script.h>
|
2016-01-21 21:14:25 +01:00
|
|
|
#include <bitcoin/tx.h>
|
|
|
|
#include <ccan/array_size/array_size.h>
|
2016-01-21 21:11:48 +01:00
|
|
|
#include <ccan/io/io.h>
|
2016-01-21 21:11:48 +01:00
|
|
|
#include <ccan/list/list.h>
|
2016-01-21 21:11:48 +01:00
|
|
|
#include <ccan/noerr/noerr.h>
|
2016-01-21 21:15:27 +01:00
|
|
|
#include <ccan/str/hex/hex.h>
|
2016-01-21 21:15:05 +01:00
|
|
|
#include <ccan/structeq/structeq.h>
|
2016-01-21 21:11:48 +01:00
|
|
|
#include <ccan/tal/str/str.h>
|
|
|
|
#include <ccan/tal/tal.h>
|
|
|
|
#include <errno.h>
|
2016-01-21 21:15:27 +01:00
|
|
|
#include <inttypes.h>
|
2016-01-21 21:11:48 +01:00
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2016-01-21 21:14:13 +01:00
|
|
|
#define FIXME_STUB(peer) do { log_broken((peer)->dstate->base_log, "%s:%u: Implement %s!", __FILE__, __LINE__, __func__); abort(); } while(0)
|
|
|
|
|
2016-01-21 21:11:48 +01:00
|
|
|
struct json_connecting {
|
|
|
|
/* This owns us, so we're freed after command_fail or command_success */
|
|
|
|
struct command *cmd;
|
|
|
|
const char *name, *port;
|
2016-01-21 21:14:25 +01:00
|
|
|
u64 satoshis;
|
2016-01-21 21:11:48 +01:00
|
|
|
};
|
|
|
|
|
2016-01-21 21:15:28 +01:00
|
|
|
struct pending_cmd {
|
|
|
|
struct list_node list;
|
|
|
|
void (*dequeue)(struct peer *, void *arg);
|
|
|
|
void *arg;
|
|
|
|
};
|
|
|
|
|
2016-01-21 21:15:27 +01:00
|
|
|
static struct peer *find_peer(struct lightningd_state *dstate,
|
|
|
|
const struct pubkey *id)
|
|
|
|
{
|
|
|
|
struct peer *peer;
|
|
|
|
list_for_each(&dstate->peers, peer, list) {
|
|
|
|
if (peer->state != STATE_INIT && pubkey_eq(&peer->id, id))
|
|
|
|
return peer;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-01-21 21:14:25 +01:00
|
|
|
static void queue_output_pkt(struct peer *peer, Pkt *pkt)
|
2016-01-21 21:11:48 +01:00
|
|
|
{
|
2016-01-21 21:14:25 +01:00
|
|
|
peer->outpkt[peer->num_outpkt++] = pkt;
|
|
|
|
assert(peer->num_outpkt < ARRAY_SIZE(peer->outpkt));
|
2016-01-21 21:11:48 +01:00
|
|
|
|
2016-01-21 21:14:25 +01:00
|
|
|
/* In case it was waiting for output. */
|
|
|
|
io_wake(peer);
|
2016-01-21 21:11:48 +01:00
|
|
|
}
|
|
|
|
|
2016-01-21 21:14:25 +01:00
|
|
|
static struct json_result *null_response(const tal_t *ctx)
|
2016-01-21 21:11:48 +01:00
|
|
|
{
|
2016-01-21 21:14:25 +01:00
|
|
|
struct json_result *response;
|
|
|
|
|
|
|
|
response = new_json_result(ctx);
|
|
|
|
json_object_start(response, NULL);
|
|
|
|
json_object_end(response);
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void peer_cmd_complete(struct peer *peer, enum command_status status)
|
|
|
|
{
|
2016-01-21 21:15:28 +01:00
|
|
|
assert(peer->curr_cmd.cmd != INPUT_NONE);
|
2016-01-21 21:14:25 +01:00
|
|
|
|
2016-01-21 21:15:28 +01:00
|
|
|
/* If it's a json command, complete that now. */
|
|
|
|
if (peer->curr_cmd.jsoncmd) {
|
2016-01-21 21:14:25 +01:00
|
|
|
if (status == CMD_FAIL)
|
|
|
|
/* FIXME: y'know, details. */
|
2016-01-21 21:15:28 +01:00
|
|
|
command_fail(peer->curr_cmd.jsoncmd, "Failed");
|
2016-01-21 21:14:25 +01:00
|
|
|
else {
|
|
|
|
assert(status == CMD_SUCCESS);
|
2016-01-21 21:15:28 +01:00
|
|
|
command_success(peer->curr_cmd.jsoncmd,
|
|
|
|
null_response(peer->curr_cmd.jsoncmd));
|
2016-01-21 21:14:25 +01:00
|
|
|
}
|
|
|
|
}
|
2016-01-21 21:15:28 +01:00
|
|
|
peer->curr_cmd.cmd = INPUT_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void set_current_command(struct peer *peer,
|
|
|
|
const enum state_input input,
|
|
|
|
void *idata,
|
|
|
|
struct command *jsoncmd)
|
|
|
|
{
|
|
|
|
assert(peer->curr_cmd.cmd == INPUT_NONE);
|
|
|
|
assert(input != INPUT_NONE);
|
|
|
|
|
|
|
|
peer->curr_cmd.cmd = input;
|
|
|
|
/* This is a union, so assign to any member. */
|
|
|
|
peer->curr_cmd.cmddata.pkt = idata;
|
|
|
|
peer->curr_cmd.jsoncmd = jsoncmd;
|
2016-01-21 21:14:25 +01:00
|
|
|
}
|
|
|
|
|
2016-01-21 21:15:28 +01:00
|
|
|
static void state_single(struct peer *peer,
|
2016-01-21 21:14:25 +01:00
|
|
|
const enum state_input input,
|
|
|
|
const union input *idata)
|
|
|
|
{
|
|
|
|
enum command_status status;
|
|
|
|
Pkt *outpkt;
|
|
|
|
const struct bitcoin_tx *broadcast;
|
|
|
|
|
|
|
|
status = state(peer, peer, input, idata, &outpkt, &broadcast);
|
|
|
|
log_debug(peer->log, "%s => %s",
|
|
|
|
input_name(input), state_name(peer->state));
|
|
|
|
switch (status) {
|
|
|
|
case CMD_NONE:
|
|
|
|
break;
|
|
|
|
case CMD_SUCCESS:
|
|
|
|
log_add(peer->log, " (command success)");
|
|
|
|
peer_cmd_complete(peer, CMD_SUCCESS);
|
|
|
|
break;
|
|
|
|
case CMD_FAIL:
|
|
|
|
log_add(peer->log, " (command FAIL)");
|
|
|
|
peer_cmd_complete(peer, CMD_FAIL);
|
|
|
|
break;
|
|
|
|
case CMD_REQUEUE:
|
|
|
|
log_add(peer->log, " (Command requeue)");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (outpkt) {
|
|
|
|
log_add(peer->log, " (out %s)", input_name(outpkt->pkt_case));
|
|
|
|
queue_output_pkt(peer, outpkt);
|
|
|
|
}
|
|
|
|
if (broadcast) {
|
|
|
|
struct sha256_double txid;
|
|
|
|
|
|
|
|
bitcoin_txid(broadcast, &txid);
|
|
|
|
/* FIXME: log_struct */
|
|
|
|
log_add(peer->log, " (tx %02x%02x%02x%02x...)",
|
|
|
|
txid.sha.u.u8[0], txid.sha.u.u8[1],
|
|
|
|
txid.sha.u.u8[2], txid.sha.u.u8[3]);
|
|
|
|
bitcoind_send_tx(peer->dstate, broadcast);
|
|
|
|
}
|
2016-01-21 21:15:28 +01:00
|
|
|
|
2016-01-21 21:15:28 +01:00
|
|
|
/* Start output if not running already; it will close conn. */
|
2016-01-21 21:15:28 +01:00
|
|
|
if (peer->cond == PEER_CLOSED)
|
2016-01-21 21:15:28 +01:00
|
|
|
io_wake(peer);
|
2016-01-21 21:15:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void try_command(struct peer *peer)
|
|
|
|
{
|
|
|
|
/* If we can accept a command, and we have one queued, run it. */
|
|
|
|
while (peer->cond == PEER_CMD_OK
|
|
|
|
&& !list_empty(&peer->pending_cmd)) {
|
|
|
|
struct pending_cmd *pend = list_pop(&peer->pending_cmd,
|
|
|
|
struct pending_cmd, list);
|
|
|
|
|
|
|
|
assert(peer->curr_cmd.cmd == INPUT_NONE);
|
|
|
|
|
|
|
|
/* This can fail to enqueue a command! */
|
|
|
|
pend->dequeue(peer, pend->arg);
|
|
|
|
tal_free(pend);
|
|
|
|
|
|
|
|
if (peer->curr_cmd.cmd != INPUT_NONE) {
|
|
|
|
state_single(peer, peer->curr_cmd.cmd,
|
|
|
|
&peer->curr_cmd.cmddata);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define queue_cmd(peer, cb, arg) \
|
|
|
|
queue_cmd_((peer), \
|
|
|
|
typesafe_cb_preargs(void, void *, \
|
|
|
|
(cb), (arg), \
|
|
|
|
struct peer *), \
|
|
|
|
(arg))
|
|
|
|
|
|
|
|
static void queue_cmd_(struct peer *peer,
|
|
|
|
void (*dequeue)(struct peer *peer, void *arg),
|
|
|
|
void *arg)
|
|
|
|
{
|
|
|
|
struct pending_cmd *pend = tal(peer, struct pending_cmd);
|
|
|
|
|
|
|
|
pend->dequeue = dequeue;
|
|
|
|
pend->arg = arg;
|
|
|
|
|
|
|
|
list_add_tail(&peer->pending_cmd, &pend->list);
|
|
|
|
try_command(peer);
|
|
|
|
};
|
|
|
|
|
|
|
|
static void state_event(struct peer *peer,
|
|
|
|
const enum state_input input,
|
|
|
|
const union input *idata)
|
|
|
|
{
|
|
|
|
state_single(peer, input, idata);
|
|
|
|
try_command(peer);
|
2016-01-21 21:14:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct io_plan *pkt_out(struct io_conn *conn, struct peer *peer)
|
|
|
|
{
|
|
|
|
Pkt *out;
|
|
|
|
|
2016-01-21 21:15:28 +01:00
|
|
|
if (peer->num_outpkt == 0) {
|
|
|
|
/* We close the connection once we've sent everything. */
|
|
|
|
if (peer->cond == PEER_CLOSED)
|
|
|
|
return io_close(conn);
|
2016-01-21 21:14:25 +01:00
|
|
|
return io_out_wait(conn, peer, pkt_out, peer);
|
2016-01-21 21:15:28 +01:00
|
|
|
}
|
2016-01-21 21:14:25 +01:00
|
|
|
|
|
|
|
out = peer->outpkt[--peer->num_outpkt];
|
|
|
|
return peer_write_packet(conn, peer, out, pkt_out);
|
2016-01-21 21:11:48 +01:00
|
|
|
}
|
|
|
|
|
2016-01-21 21:14:25 +01:00
|
|
|
static struct io_plan *pkt_in(struct io_conn *conn, struct peer *peer)
|
2016-01-21 21:11:48 +01:00
|
|
|
{
|
2016-01-21 21:14:25 +01:00
|
|
|
union input idata;
|
|
|
|
const tal_t *ctx = tal(peer, char);
|
|
|
|
|
|
|
|
idata.pkt = tal_steal(ctx, peer->inpkt);
|
2016-01-21 21:15:28 +01:00
|
|
|
|
|
|
|
/* We ignore packets if they tell us to. */
|
|
|
|
if (peer->cond != PEER_CLOSED)
|
|
|
|
state_event(peer, peer->inpkt->pkt_case, &idata);
|
2016-01-21 21:14:25 +01:00
|
|
|
|
|
|
|
/* Free peer->inpkt unless stolen above. */
|
|
|
|
tal_free(ctx);
|
|
|
|
|
|
|
|
return peer_read_packet(conn, peer, pkt_in);
|
|
|
|
}
|
|
|
|
|
2016-01-21 21:15:28 +01:00
|
|
|
static void do_anchor_offer(struct peer *peer, void *unused)
|
|
|
|
{
|
|
|
|
set_current_command(peer, peer->us.offer_anchor, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2016-01-21 21:14:25 +01:00
|
|
|
/* Crypto is on, we are live. */
|
|
|
|
static struct io_plan *peer_crypto_on(struct io_conn *conn, struct peer *peer)
|
|
|
|
{
|
|
|
|
peer_secrets_init(peer);
|
|
|
|
peer_get_revocation_hash(peer, 0, &peer->us.revocation_hash);
|
|
|
|
|
|
|
|
assert(peer->state == STATE_INIT);
|
2016-01-21 21:15:28 +01:00
|
|
|
|
|
|
|
/* Using queue_cmd is overkill here, but it works. */
|
|
|
|
queue_cmd(peer, do_anchor_offer, NULL);
|
2016-01-21 21:14:25 +01:00
|
|
|
try_command(peer);
|
|
|
|
|
|
|
|
return io_duplex(conn,
|
|
|
|
peer_read_packet(conn, peer, pkt_in),
|
|
|
|
pkt_out(conn, peer));
|
2016-01-21 21:11:48 +01:00
|
|
|
}
|
|
|
|
|
2016-01-21 21:11:48 +01:00
|
|
|
static void destroy_peer(struct peer *peer)
|
|
|
|
{
|
2016-01-21 21:14:25 +01:00
|
|
|
if (peer->conn)
|
|
|
|
io_close(peer->conn);
|
2016-01-21 21:11:49 +01:00
|
|
|
list_del_from(&peer->dstate->peers, &peer->list);
|
2016-01-21 21:11:48 +01:00
|
|
|
}
|
|
|
|
|
2016-01-21 21:14:25 +01:00
|
|
|
static void peer_disconnect(struct io_conn *conn, struct peer *peer)
|
|
|
|
{
|
|
|
|
Pkt *outpkt;
|
|
|
|
const struct bitcoin_tx *broadcast;
|
|
|
|
|
|
|
|
log_info(peer->log, "Disconnected");
|
|
|
|
|
|
|
|
/* No longer connected. */
|
|
|
|
peer->conn = NULL;
|
|
|
|
|
|
|
|
/* Not even set up yet? Simply free.*/
|
|
|
|
if (peer->state == STATE_INIT) {
|
|
|
|
tal_free(peer);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME: Try to reconnect. */
|
|
|
|
|
|
|
|
state(peer, peer, CMD_CLOSE, NULL, &outpkt, &broadcast);
|
|
|
|
/* Can't send packet, so ignore it. */
|
|
|
|
tal_free(outpkt);
|
|
|
|
|
|
|
|
if (broadcast) {
|
|
|
|
struct sha256_double txid;
|
|
|
|
|
|
|
|
bitcoin_txid(broadcast, &txid);
|
|
|
|
/* FIXME: log_struct */
|
|
|
|
log_debug(peer->log, "CMD_CLOSE: tx %02x%02x%02x%02x...",
|
|
|
|
txid.sha.u.u8[0], txid.sha.u.u8[1],
|
|
|
|
txid.sha.u.u8[2], txid.sha.u.u8[3]);
|
|
|
|
bitcoind_send_tx(peer->dstate, broadcast);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-21 21:11:49 +01:00
|
|
|
static struct peer *new_peer(struct lightningd_state *dstate,
|
2016-01-21 21:11:48 +01:00
|
|
|
struct io_conn *conn,
|
|
|
|
int addr_type, int addr_protocol,
|
2016-01-21 21:11:49 +01:00
|
|
|
enum state_input offer_anchor,
|
2016-01-21 21:11:48 +01:00
|
|
|
const char *in_or_out)
|
|
|
|
{
|
2016-01-21 21:11:49 +01:00
|
|
|
struct peer *peer = tal(dstate, struct peer);
|
2016-01-21 21:11:48 +01:00
|
|
|
|
2016-01-21 21:11:49 +01:00
|
|
|
assert(offer_anchor == CMD_OPEN_WITH_ANCHOR
|
|
|
|
|| offer_anchor == CMD_OPEN_WITHOUT_ANCHOR);
|
|
|
|
|
2016-01-21 21:11:48 +01:00
|
|
|
/* FIXME: Stop listening if too many peers? */
|
2016-01-21 21:11:49 +01:00
|
|
|
list_add(&dstate->peers, &peer->list);
|
2016-01-21 21:11:48 +01:00
|
|
|
|
2016-01-21 21:14:13 +01:00
|
|
|
peer->state = STATE_INIT;
|
|
|
|
peer->cond = PEER_CMD_OK;
|
2016-01-21 21:11:49 +01:00
|
|
|
peer->dstate = dstate;
|
2016-01-21 21:11:48 +01:00
|
|
|
peer->addr.type = addr_type;
|
|
|
|
peer->addr.protocol = addr_protocol;
|
2016-01-21 21:11:48 +01:00
|
|
|
peer->io_data = NULL;
|
2016-01-21 21:11:48 +01:00
|
|
|
peer->secrets = NULL;
|
2016-01-21 21:11:49 +01:00
|
|
|
list_head_init(&peer->watches);
|
2016-01-21 21:14:25 +01:00
|
|
|
peer->num_outpkt = 0;
|
2016-01-21 21:15:28 +01:00
|
|
|
peer->curr_cmd.cmd = INPUT_NONE;
|
|
|
|
list_head_init(&peer->pending_cmd);
|
2016-01-21 21:15:27 +01:00
|
|
|
peer->current_htlc = NULL;
|
|
|
|
peer->num_htlcs = 0;
|
2016-01-21 21:15:27 +01:00
|
|
|
peer->close_tx = NULL;
|
2016-01-21 21:15:28 +01:00
|
|
|
peer->cstate = NULL;
|
2016-01-21 21:11:48 +01:00
|
|
|
|
2016-01-21 21:14:25 +01:00
|
|
|
/* If we free peer, conn should be closed, but can't be freed
|
|
|
|
* immediately so don't make peer a parent. */
|
|
|
|
peer->conn = conn;
|
|
|
|
io_set_finish(conn, peer_disconnect, peer);
|
|
|
|
|
2016-01-21 21:11:49 +01:00
|
|
|
peer->us.offer_anchor = offer_anchor;
|
2016-01-21 21:14:13 +01:00
|
|
|
if (!seconds_to_rel_locktime(dstate->config.rel_locktime,
|
|
|
|
&peer->us.locktime))
|
|
|
|
fatal("Invalid locktime configuration %u",
|
|
|
|
dstate->config.rel_locktime);
|
2016-01-21 21:11:49 +01:00
|
|
|
peer->us.mindepth = dstate->config.anchor_confirms;
|
2016-01-21 21:11:49 +01:00
|
|
|
/* FIXME: Make this dynamic. */
|
2016-01-21 21:11:49 +01:00
|
|
|
peer->us.commit_fee = dstate->config.commitment_fee;
|
2016-01-21 21:11:49 +01:00
|
|
|
|
2016-01-21 21:14:27 +01:00
|
|
|
peer->us.commit = peer->them.commit = NULL;
|
|
|
|
|
2016-01-21 21:11:48 +01:00
|
|
|
/* FIXME: Attach IO logging for this peer. */
|
|
|
|
tal_add_destructor(peer, destroy_peer);
|
|
|
|
|
|
|
|
peer->addr.addrlen = sizeof(peer->addr.saddr);
|
|
|
|
if (getpeername(io_conn_fd(conn), &peer->addr.saddr.s,
|
|
|
|
&peer->addr.addrlen) != 0) {
|
2016-01-21 21:11:49 +01:00
|
|
|
log_unusual(dstate->base_log,
|
2016-01-21 21:11:48 +01:00
|
|
|
"Could not get address for peer: %s",
|
|
|
|
strerror(errno));
|
|
|
|
return tal_free(peer);
|
|
|
|
}
|
|
|
|
|
2016-01-21 21:11:49 +01:00
|
|
|
peer->log = new_log(peer, dstate->log_record, "%s%s:%s:",
|
|
|
|
log_prefix(dstate->base_log), in_or_out,
|
2016-01-21 21:11:48 +01:00
|
|
|
netaddr_name(peer, &peer->addr));
|
2016-01-21 21:11:48 +01:00
|
|
|
return peer;
|
|
|
|
}
|
|
|
|
|
2016-01-21 21:11:48 +01:00
|
|
|
static struct io_plan *peer_connected_out(struct io_conn *conn,
|
2016-01-21 21:11:49 +01:00
|
|
|
struct lightningd_state *dstate,
|
2016-01-21 21:11:48 +01:00
|
|
|
struct json_connecting *connect)
|
2016-01-21 21:11:48 +01:00
|
|
|
{
|
2016-01-21 21:14:25 +01:00
|
|
|
/* Initiator currently funds channel */
|
2016-01-21 21:11:49 +01:00
|
|
|
struct peer *peer = new_peer(dstate, conn, SOCK_STREAM, IPPROTO_TCP,
|
2016-01-21 21:11:49 +01:00
|
|
|
CMD_OPEN_WITH_ANCHOR, "out");
|
2016-01-21 21:11:48 +01:00
|
|
|
if (!peer) {
|
2016-01-21 21:11:48 +01:00
|
|
|
command_fail(connect->cmd, "Failed to make peer for %s:%s",
|
|
|
|
connect->name, connect->port);
|
2016-01-21 21:11:48 +01:00
|
|
|
return io_close(conn);
|
|
|
|
}
|
2016-01-21 21:11:48 +01:00
|
|
|
log_info(peer->log, "Connected out to %s:%s",
|
|
|
|
connect->name, connect->port);
|
2016-01-21 21:14:27 +01:00
|
|
|
peer->anchor.satoshis = connect->satoshis;
|
2016-01-21 21:11:48 +01:00
|
|
|
|
2016-01-21 21:14:25 +01:00
|
|
|
command_success(connect->cmd, null_response(connect));
|
|
|
|
return peer_crypto_setup(conn, peer, peer_crypto_on);
|
2016-01-21 21:11:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct io_plan *peer_connected_in(struct io_conn *conn,
|
2016-01-21 21:11:49 +01:00
|
|
|
struct lightningd_state *dstate)
|
2016-01-21 21:11:48 +01:00
|
|
|
{
|
2016-01-21 21:11:49 +01:00
|
|
|
struct peer *peer = new_peer(dstate, conn, SOCK_STREAM, IPPROTO_TCP,
|
2016-01-21 21:11:49 +01:00
|
|
|
CMD_OPEN_WITHOUT_ANCHOR, "in");
|
2016-01-21 21:11:48 +01:00
|
|
|
if (!peer)
|
|
|
|
return io_close(conn);
|
2016-01-21 21:11:48 +01:00
|
|
|
|
|
|
|
log_info(peer->log, "Peer connected in");
|
2016-01-21 21:14:25 +01:00
|
|
|
return peer_crypto_setup(conn, peer, peer_crypto_on);
|
2016-01-21 21:11:48 +01:00
|
|
|
}
|
|
|
|
|
2016-01-21 21:11:49 +01:00
|
|
|
static int make_listen_fd(struct lightningd_state *dstate,
|
2016-01-21 21:11:48 +01:00
|
|
|
int domain, void *addr, socklen_t len)
|
|
|
|
{
|
|
|
|
int fd = socket(domain, SOCK_STREAM, 0);
|
|
|
|
if (fd < 0) {
|
2016-01-21 21:11:49 +01:00
|
|
|
log_debug(dstate->base_log, "Failed to create %u socket: %s",
|
2016-01-21 21:11:48 +01:00
|
|
|
domain, strerror(errno));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!addr || bind(fd, addr, len) == 0) {
|
|
|
|
if (listen(fd, 5) == 0)
|
|
|
|
return fd;
|
2016-01-21 21:11:49 +01:00
|
|
|
log_unusual(dstate->base_log,
|
|
|
|
"Failed to listen on %u socket: %s",
|
2016-01-21 21:11:48 +01:00
|
|
|
domain, strerror(errno));
|
|
|
|
} else
|
2016-01-21 21:11:49 +01:00
|
|
|
log_debug(dstate->base_log, "Failed to bind on %u socket: %s",
|
2016-01-21 21:11:48 +01:00
|
|
|
domain, strerror(errno));
|
|
|
|
|
|
|
|
close_noerr(fd);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-01-21 21:11:49 +01:00
|
|
|
void setup_listeners(struct lightningd_state *dstate, unsigned int portnum)
|
2016-01-21 21:11:48 +01:00
|
|
|
{
|
|
|
|
struct sockaddr_in addr;
|
|
|
|
struct sockaddr_in6 addr6;
|
|
|
|
socklen_t len;
|
|
|
|
int fd1, fd2;
|
|
|
|
u16 listen_port;
|
|
|
|
|
|
|
|
addr.sin_family = AF_INET;
|
|
|
|
addr.sin_addr.s_addr = INADDR_ANY;
|
|
|
|
addr.sin_port = htons(portnum);
|
|
|
|
|
|
|
|
addr6.sin6_family = AF_INET6;
|
|
|
|
addr6.sin6_addr = in6addr_any;
|
|
|
|
addr6.sin6_port = htons(portnum);
|
|
|
|
|
|
|
|
/* IPv6, since on Linux that (usually) binds to IPv4 too. */
|
2016-01-21 21:11:49 +01:00
|
|
|
fd1 = make_listen_fd(dstate, AF_INET6, portnum ? &addr6 : NULL,
|
2016-01-21 21:11:48 +01:00
|
|
|
sizeof(addr6));
|
|
|
|
if (fd1 >= 0) {
|
|
|
|
struct sockaddr_in6 in6;
|
|
|
|
|
|
|
|
len = sizeof(in6);
|
|
|
|
if (getsockname(fd1, (void *)&in6, &len) != 0) {
|
2016-01-21 21:11:49 +01:00
|
|
|
log_unusual(dstate->base_log,
|
2016-01-21 21:11:48 +01:00
|
|
|
"Failed get IPv6 sockname: %s",
|
|
|
|
strerror(errno));
|
|
|
|
close_noerr(fd1);
|
|
|
|
} else {
|
|
|
|
addr.sin_port = in6.sin6_port;
|
|
|
|
listen_port = ntohs(addr.sin_port);
|
2016-01-21 21:11:49 +01:00
|
|
|
log_info(dstate->base_log,
|
2016-01-21 21:11:48 +01:00
|
|
|
"Creating IPv6 listener on port %u",
|
|
|
|
listen_port);
|
2016-01-21 21:11:49 +01:00
|
|
|
io_new_listener(dstate, fd1, peer_connected_in, dstate);
|
2016-01-21 21:11:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Just in case, aim for the same port... */
|
2016-01-21 21:11:49 +01:00
|
|
|
fd2 = make_listen_fd(dstate, AF_INET,
|
2016-01-21 21:11:48 +01:00
|
|
|
addr.sin_port ? &addr : NULL, sizeof(addr));
|
|
|
|
if (fd2 >= 0) {
|
|
|
|
len = sizeof(addr);
|
|
|
|
if (getsockname(fd2, (void *)&addr, &len) != 0) {
|
2016-01-21 21:11:49 +01:00
|
|
|
log_unusual(dstate->base_log,
|
2016-01-21 21:11:48 +01:00
|
|
|
"Failed get IPv4 sockname: %s",
|
|
|
|
strerror(errno));
|
|
|
|
close_noerr(fd2);
|
|
|
|
} else {
|
|
|
|
listen_port = ntohs(addr.sin_port);
|
2016-01-21 21:11:49 +01:00
|
|
|
log_info(dstate->base_log,
|
2016-01-21 21:11:48 +01:00
|
|
|
"Creating IPv4 listener on port %u",
|
|
|
|
listen_port);
|
2016-01-21 21:11:49 +01:00
|
|
|
io_new_listener(dstate, fd2, peer_connected_in, dstate);
|
2016-01-21 21:11:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fd1 < 0 && fd2 < 0)
|
|
|
|
fatal("Could not bind to a network address");
|
|
|
|
}
|
2016-01-21 21:11:48 +01:00
|
|
|
|
2016-01-21 21:11:49 +01:00
|
|
|
static void peer_failed(struct lightningd_state *dstate,
|
2016-01-21 21:11:48 +01:00
|
|
|
struct json_connecting *connect)
|
2016-01-21 21:11:48 +01:00
|
|
|
{
|
|
|
|
/* FIXME: Better diagnostics! */
|
2016-01-21 21:11:48 +01:00
|
|
|
command_fail(connect->cmd, "Failed to connect to peer %s:%s",
|
|
|
|
connect->name, connect->port);
|
2016-01-21 21:11:48 +01:00
|
|
|
}
|
|
|
|
|
2016-01-21 21:11:48 +01:00
|
|
|
static void json_connect(struct command *cmd,
|
|
|
|
const char *buffer, const jsmntok_t *params)
|
2016-01-21 21:11:48 +01:00
|
|
|
{
|
2016-01-21 21:11:48 +01:00
|
|
|
struct json_connecting *connect;
|
2016-01-21 21:14:25 +01:00
|
|
|
jsmntok_t *host, *port, *satoshis;
|
2016-01-21 21:11:48 +01:00
|
|
|
|
2016-01-21 21:14:25 +01:00
|
|
|
json_get_params(buffer, params,
|
|
|
|
"host", &host,
|
|
|
|
"port", &port,
|
|
|
|
"satoshis", &satoshis,
|
|
|
|
NULL);
|
2016-01-21 21:11:48 +01:00
|
|
|
|
2016-01-21 21:14:25 +01:00
|
|
|
if (!host || !port || !satoshis) {
|
|
|
|
command_fail(cmd, "Need host, port and satoshis");
|
2016-01-21 21:11:48 +01:00
|
|
|
return;
|
|
|
|
}
|
2016-01-21 21:11:48 +01:00
|
|
|
|
2016-01-21 21:11:48 +01:00
|
|
|
connect = tal(cmd, struct json_connecting);
|
|
|
|
connect->cmd = cmd;
|
|
|
|
connect->name = tal_strndup(connect, buffer + host->start,
|
|
|
|
host->end - host->start);
|
|
|
|
connect->port = tal_strndup(connect, buffer + port->start,
|
|
|
|
port->end - port->start);
|
2016-01-21 21:14:25 +01:00
|
|
|
if (!json_tok_u64(buffer, satoshis, &connect->satoshis))
|
|
|
|
command_fail(cmd, "'%.*s' is not a valid number",
|
|
|
|
(int)(satoshis->end - satoshis->start),
|
|
|
|
buffer + satoshis->start);
|
2016-01-21 21:11:49 +01:00
|
|
|
if (!dns_resolve_and_connect(cmd->dstate, connect->name, connect->port,
|
2016-01-21 21:11:48 +01:00
|
|
|
peer_connected_out, peer_failed, connect)) {
|
2016-01-21 21:11:48 +01:00
|
|
|
command_fail(cmd, "DNS failed");
|
|
|
|
return;
|
|
|
|
}
|
2016-01-21 21:11:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const struct json_command connect_command = {
|
|
|
|
"connect",
|
|
|
|
json_connect,
|
2016-01-21 21:14:25 +01:00
|
|
|
"Connect to a {host} at {port} offering anchor of {satoshis}",
|
2016-01-21 21:11:48 +01:00
|
|
|
"Returns an empty result on success"
|
2016-01-21 21:11:48 +01:00
|
|
|
};
|
2016-01-21 21:11:48 +01:00
|
|
|
|
2016-01-21 21:14:13 +01:00
|
|
|
struct anchor_watch {
|
|
|
|
enum state_input depthok;
|
|
|
|
enum state_input timeout;
|
|
|
|
enum state_input unspent;
|
|
|
|
enum state_input theyspent;
|
|
|
|
enum state_input otherspent;
|
|
|
|
};
|
|
|
|
|
2016-01-21 21:15:05 +01:00
|
|
|
static void anchor_depthchange(struct peer *peer, int depth,
|
|
|
|
struct anchor_watch *w)
|
|
|
|
{
|
|
|
|
/* Still waiting for it to reach depth? */
|
|
|
|
if (w->depthok != INPUT_NONE) {
|
|
|
|
/* Beware sign! */
|
|
|
|
if (depth >= (int)peer->us.mindepth) {
|
|
|
|
enum state_input in = w->depthok;
|
|
|
|
w->depthok = INPUT_NONE;
|
2016-01-21 21:15:28 +01:00
|
|
|
state_event(peer, in, NULL);
|
2016-01-21 21:15:05 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (depth < 0 && w->unspent != INPUT_NONE) {
|
|
|
|
enum state_input in = w->unspent;
|
|
|
|
w->unspent = INPUT_NONE;
|
2016-01-21 21:15:28 +01:00
|
|
|
state_event(peer, in, NULL);
|
2016-01-21 21:15:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We don't compare scriptSigs: we don't know them anyway! */
|
|
|
|
static bool txmatch(const struct bitcoin_tx *txa, const struct bitcoin_tx *txb)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
if (txa->version != txb->version
|
|
|
|
|| txa->input_count != txb->input_count
|
|
|
|
|| txa->output_count != txb->output_count
|
|
|
|
|| txa->lock_time != txb->lock_time)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for (i = 0; i < txa->input_count; i++) {
|
|
|
|
if (!structeq(&txa->input[i].txid, &txb->input[i].txid)
|
|
|
|
|| txa->input[i].index != txb->input[i].index
|
|
|
|
|| txa->input[i].sequence_number != txb->input[i].sequence_number)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < txa->output_count; i++) {
|
|
|
|
if (txa->output[i].amount != txb->output[i].amount
|
|
|
|
|| txa->output[i].script_length != txb->output[i].script_length
|
|
|
|
|| memcmp(txa->output[i].script, txb->output[i].script,
|
|
|
|
txa->output[i].script_length != 0))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We assume the tx is valid! Don't do a blockchain.info and feed this
|
|
|
|
* invalid transactions! */
|
|
|
|
static void anchor_spent(struct peer *peer,
|
|
|
|
const struct bitcoin_tx *tx,
|
|
|
|
struct anchor_watch *w)
|
|
|
|
{
|
|
|
|
union input idata;
|
|
|
|
|
|
|
|
/* FIXME: change type in idata? */
|
|
|
|
idata.btc = (struct bitcoin_event *)tx;
|
|
|
|
if (txmatch(tx, peer->them.commit))
|
2016-01-21 21:15:28 +01:00
|
|
|
state_event(peer, w->theyspent, &idata);
|
2016-01-21 21:15:05 +01:00
|
|
|
else
|
2016-01-21 21:15:28 +01:00
|
|
|
state_event(peer, w->otherspent, &idata);
|
2016-01-21 21:15:05 +01:00
|
|
|
}
|
|
|
|
|
2016-01-21 21:14:13 +01:00
|
|
|
void peer_watch_anchor(struct peer *peer,
|
|
|
|
enum state_input depthok,
|
|
|
|
enum state_input timeout,
|
|
|
|
enum state_input unspent,
|
|
|
|
enum state_input theyspent,
|
|
|
|
enum state_input otherspent)
|
|
|
|
{
|
2016-01-21 21:15:05 +01:00
|
|
|
struct anchor_watch *w = tal(peer, struct anchor_watch);
|
|
|
|
|
|
|
|
w->depthok = depthok;
|
|
|
|
w->timeout = timeout;
|
|
|
|
w->unspent = unspent;
|
|
|
|
w->theyspent = theyspent;
|
|
|
|
w->otherspent = otherspent;
|
|
|
|
|
|
|
|
add_anchor_watch(peer, &peer->anchor.txid, peer->anchor.index,
|
|
|
|
anchor_depthchange,
|
|
|
|
anchor_spent,
|
|
|
|
w);
|
|
|
|
|
|
|
|
/* FIXME: add timeout */
|
2016-01-21 21:14:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void peer_unwatch_anchor_depth(struct peer *peer,
|
|
|
|
enum state_input depthok,
|
|
|
|
enum state_input timeout)
|
|
|
|
{
|
|
|
|
FIXME_STUB(peer);
|
|
|
|
}
|
|
|
|
|
|
|
|
void peer_watch_delayed(struct peer *peer,
|
|
|
|
const struct bitcoin_tx *tx,
|
|
|
|
enum state_input canspend)
|
|
|
|
{
|
|
|
|
FIXME_STUB(peer);
|
|
|
|
}
|
|
|
|
void peer_watch_tx(struct peer *peer,
|
|
|
|
const struct bitcoin_tx *tx,
|
|
|
|
enum state_input done)
|
|
|
|
{
|
|
|
|
FIXME_STUB(peer);
|
|
|
|
}
|
2016-01-21 21:15:27 +01:00
|
|
|
|
|
|
|
static void send_close_timeout(struct peer *peer)
|
|
|
|
{
|
2016-01-21 21:15:28 +01:00
|
|
|
state_event(peer, INPUT_CLOSE_COMPLETE_TIMEOUT, NULL);
|
2016-01-21 21:15:27 +01:00
|
|
|
}
|
|
|
|
|
2016-01-21 21:14:13 +01:00
|
|
|
void peer_watch_close(struct peer *peer,
|
|
|
|
enum state_input done, enum state_input timedout)
|
|
|
|
{
|
2016-01-21 21:15:27 +01:00
|
|
|
/* We save some work by assuming this. */
|
|
|
|
assert(timedout == INPUT_CLOSE_COMPLETE_TIMEOUT);
|
|
|
|
|
|
|
|
/* FIXME: We didn't send CLOSE, so timeout immediately */
|
|
|
|
if (!peer->conn) {
|
|
|
|
(void)send_close_timeout;
|
|
|
|
/* FIXME: oneshot_timeout(peer->dstate, peer, 0, send_close_timeout, peer); */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-01-21 21:14:13 +01:00
|
|
|
FIXME_STUB(peer);
|
|
|
|
}
|
|
|
|
void peer_unwatch_close_timeout(struct peer *peer, enum state_input timedout)
|
|
|
|
{
|
|
|
|
FIXME_STUB(peer);
|
|
|
|
}
|
|
|
|
bool peer_watch_our_htlc_outputs(struct peer *peer,
|
|
|
|
const struct bitcoin_tx *tx,
|
|
|
|
enum state_input tous_timeout,
|
|
|
|
enum state_input tothem_spent,
|
|
|
|
enum state_input tothem_timeout)
|
|
|
|
{
|
|
|
|
FIXME_STUB(peer);
|
|
|
|
}
|
|
|
|
bool peer_watch_their_htlc_outputs(struct peer *peer,
|
|
|
|
const struct bitcoin_event *tx,
|
|
|
|
enum state_input tous_timeout,
|
|
|
|
enum state_input tothem_spent,
|
|
|
|
enum state_input tothem_timeout)
|
|
|
|
{
|
|
|
|
FIXME_STUB(peer);
|
|
|
|
}
|
|
|
|
void peer_unwatch_htlc_output(struct peer *peer,
|
|
|
|
const struct htlc *htlc,
|
|
|
|
enum state_input all_done)
|
|
|
|
{
|
|
|
|
FIXME_STUB(peer);
|
|
|
|
}
|
|
|
|
void peer_unwatch_all_htlc_outputs(struct peer *peer)
|
|
|
|
{
|
|
|
|
FIXME_STUB(peer);
|
|
|
|
}
|
|
|
|
void peer_watch_htlc_spend(struct peer *peer,
|
|
|
|
const struct bitcoin_tx *tx,
|
|
|
|
const struct htlc *htlc,
|
|
|
|
enum state_input done)
|
|
|
|
{
|
2016-01-21 21:15:27 +01:00
|
|
|
/* FIXME! */
|
2016-01-21 21:14:13 +01:00
|
|
|
}
|
|
|
|
void peer_unwatch_htlc_spend(struct peer *peer,
|
|
|
|
const struct htlc *htlc,
|
|
|
|
enum state_input all_done)
|
|
|
|
{
|
|
|
|
FIXME_STUB(peer);
|
|
|
|
}
|
|
|
|
void peer_unexpected_pkt(struct peer *peer, const Pkt *pkt)
|
|
|
|
{
|
|
|
|
FIXME_STUB(peer);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Someone declined our HTLC: details in pkt (we will also get CMD_FAIL) */
|
|
|
|
void peer_htlc_declined(struct peer *peer, const Pkt *pkt)
|
|
|
|
{
|
2016-01-21 21:15:28 +01:00
|
|
|
log_unusual(peer->log, "Peer declined htlc, reason %i",
|
|
|
|
pkt->update_decline_htlc->reason_case);
|
|
|
|
peer->current_htlc = tal_free(peer->current_htlc);
|
2016-01-21 21:14:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Called when their update overrides our update cmd. */
|
|
|
|
void peer_htlc_ours_deferred(struct peer *peer)
|
|
|
|
{
|
|
|
|
FIXME_STUB(peer);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Successfully added/fulfilled/timedout/routefail an HTLC. */
|
|
|
|
void peer_htlc_done(struct peer *peer)
|
|
|
|
{
|
2016-01-21 21:15:27 +01:00
|
|
|
peer->current_htlc = tal_free(peer->current_htlc);
|
2016-01-21 21:14:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Someone aborted an existing HTLC. */
|
|
|
|
void peer_htlc_aborted(struct peer *peer)
|
|
|
|
{
|
|
|
|
FIXME_STUB(peer);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* An on-chain transaction revealed an R value. */
|
|
|
|
const struct htlc *peer_tx_revealed_r_value(struct peer *peer,
|
|
|
|
const struct bitcoin_event *btc)
|
|
|
|
{
|
|
|
|
FIXME_STUB(peer);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool committed_to_htlcs(const struct peer *peer)
|
|
|
|
{
|
2016-01-21 21:15:28 +01:00
|
|
|
return tal_count(peer->cstate->a.htlcs) != 0
|
|
|
|
|| tal_count(peer->cstate->b.htlcs) != 0;
|
2016-01-21 21:14:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Create a bitcoin close tx. */
|
|
|
|
const struct bitcoin_tx *bitcoin_close(const tal_t *ctx,
|
|
|
|
const struct peer *peer)
|
|
|
|
{
|
|
|
|
#if 0
|
|
|
|
struct bitcoin_tx *close_tx;
|
|
|
|
u8 *redeemscript;
|
|
|
|
|
|
|
|
close_tx = create_close_tx(ctx, peer->us.openpkt, peer->them.openpkt,
|
|
|
|
peer->anchorpkt,
|
|
|
|
peer->cstate.a.pay_msat / 1000,
|
|
|
|
peer->cstate.b.pay_msat / 1000);
|
|
|
|
|
|
|
|
/* This is what the anchor pays to. */
|
|
|
|
redeemscript = bitcoin_redeem_2of2(close_tx, &peer->us.commitkey,
|
|
|
|
&peer->them.commitkey);
|
|
|
|
|
|
|
|
/* Combined signatures must validate correctly. */
|
|
|
|
if (!check_2of2_sig(close_tx, 0, redeemscript, tal_count(redeemscript),
|
|
|
|
&peer->us.finalkey, &peer->them.finalkey,
|
|
|
|
&peer->us.closesig, &peer->them.closesig))
|
|
|
|
fatal("bitcoin_close signature failed");
|
|
|
|
|
|
|
|
/* Create p2sh input for close_tx */
|
|
|
|
close_tx->input[0].script = scriptsig_p2sh_2of2(close_tx,
|
|
|
|
&peer->us.closesig,
|
|
|
|
&peer->them.closesig,
|
|
|
|
&peer->us.finalkey,
|
|
|
|
&peer->them.finalkey);
|
|
|
|
close_tx->input[0].script_length = tal_count(close_tx->input[0].script);
|
|
|
|
|
|
|
|
return close_tx;
|
|
|
|
#endif
|
|
|
|
FIXME_STUB(peer);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create a bitcoin spend tx (to spend our commit's outputs) */
|
|
|
|
const struct bitcoin_tx *bitcoin_spend_ours(const tal_t *ctx,
|
|
|
|
const struct peer *peer)
|
|
|
|
{
|
|
|
|
#if 0
|
|
|
|
u8 *redeemscript;
|
|
|
|
|
|
|
|
redeemscript = bitcoin_redeem_secret_or_delay(ctx,
|
|
|
|
&peer->us.commitkey,
|
|
|
|
&peer->them.locktime,
|
|
|
|
&peer->them.commitkey,
|
|
|
|
&peer->revocation_hash);
|
|
|
|
|
|
|
|
/* Now, create transaction to spend it. */
|
|
|
|
tx = bitcoin_tx(ctx, 1, 1);
|
|
|
|
bitcoin_txid(commit, &tx->input[0].txid);
|
|
|
|
p2sh_out = find_p2sh_out(commit, redeemscript);
|
|
|
|
tx->input[0].index = p2sh_out;
|
|
|
|
tx->input[0].input_amount = commit->output[p2sh_out].amount;
|
|
|
|
tx->fee = fee;
|
|
|
|
|
|
|
|
tx->input[0].sequence_number = bitcoin_nsequence(locktime);
|
|
|
|
|
|
|
|
if (commit->output[p2sh_out].amount <= fee)
|
|
|
|
errx(1, "Amount of %llu won't exceed fee",
|
|
|
|
(unsigned long long)commit->output[p2sh_out].amount);
|
|
|
|
|
|
|
|
tx->output[0].amount = commit->output[p2sh_out].amount - fee;
|
|
|
|
tx->output[0].script = scriptpubkey_p2sh(tx,
|
|
|
|
bitcoin_redeem_single(tx, &outpubkey));
|
|
|
|
tx->output[0].script_length = tal_count(tx->output[0].script);
|
|
|
|
|
|
|
|
/* Now get signature, to set up input script. */
|
|
|
|
if (!sign_tx_input(tx, 0, redeemscript, tal_count(redeemscript),
|
|
|
|
&privkey, &pubkey1, &sig.sig))
|
|
|
|
errx(1, "Could not sign tx");
|
|
|
|
sig.stype = SIGHASH_ALL;
|
|
|
|
tx->input[0].script = scriptsig_p2sh_secret(tx, NULL, 0, &sig,
|
|
|
|
redeemscript,
|
|
|
|
tal_count(redeemscript));
|
|
|
|
tx->input[0].script_length = tal_count(tx->input[0].script);
|
|
|
|
#endif
|
|
|
|
FIXME_STUB(peer);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create a bitcoin spend tx (to spend their commit's outputs) */
|
|
|
|
const struct bitcoin_tx *bitcoin_spend_theirs(const tal_t *ctx,
|
|
|
|
const struct peer *peer,
|
|
|
|
const struct bitcoin_event *btc)
|
|
|
|
{
|
|
|
|
FIXME_STUB(peer);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create a bitcoin steal tx (to steal all their commit's outputs) */
|
|
|
|
const struct bitcoin_tx *bitcoin_steal(const tal_t *ctx,
|
|
|
|
const struct peer *peer,
|
|
|
|
struct bitcoin_event *btc)
|
|
|
|
{
|
|
|
|
FIXME_STUB(peer);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create our commit tx */
|
|
|
|
const struct bitcoin_tx *bitcoin_commit(const tal_t *ctx, struct peer *peer)
|
|
|
|
{
|
|
|
|
FIXME_STUB(peer);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create a HTLC refund collection */
|
|
|
|
const struct bitcoin_tx *bitcoin_htlc_timeout(const tal_t *ctx,
|
|
|
|
const struct peer *peer,
|
|
|
|
const struct htlc *htlc)
|
|
|
|
{
|
|
|
|
FIXME_STUB(peer);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create a HTLC collection */
|
|
|
|
const struct bitcoin_tx *bitcoin_htlc_spend(const tal_t *ctx,
|
|
|
|
const struct peer *peer,
|
|
|
|
const struct htlc *htlc)
|
|
|
|
{
|
|
|
|
FIXME_STUB(peer);
|
|
|
|
}
|
|
|
|
|
2016-01-21 21:14:27 +01:00
|
|
|
static void created_anchor(struct lightningd_state *dstate,
|
|
|
|
const struct bitcoin_tx *tx,
|
|
|
|
struct peer *peer)
|
|
|
|
{
|
|
|
|
size_t commitfee;
|
|
|
|
|
|
|
|
bitcoin_txid(tx, &peer->anchor.txid);
|
|
|
|
peer->anchor.index = find_p2sh_out(tx, peer->anchor.redeemscript);
|
|
|
|
assert(peer->anchor.satoshis == tx->output[peer->anchor.index].amount);
|
|
|
|
/* We'll need this later, when we're told to broadcast it. */
|
|
|
|
peer->anchor.tx = tal_steal(peer, tx);
|
|
|
|
|
|
|
|
commitfee = commit_fee(peer->them.commit_fee, peer->us.commit_fee);
|
|
|
|
peer->cstate = initial_funding(peer,
|
|
|
|
peer->us.offer_anchor,
|
|
|
|
peer->anchor.satoshis,
|
|
|
|
commitfee);
|
|
|
|
if (!peer->cstate)
|
|
|
|
fatal("Insufficient anchor funds for commitfee");
|
|
|
|
|
|
|
|
/* Now we can make initial (unsigned!) commit txs. */
|
2016-01-21 21:15:27 +01:00
|
|
|
make_commit_txs(peer, peer,
|
|
|
|
&peer->us.revocation_hash,
|
|
|
|
&peer->them.revocation_hash,
|
|
|
|
peer->cstate,
|
|
|
|
&peer->us.commit,
|
|
|
|
&peer->them.commit);
|
2016-01-21 21:14:27 +01:00
|
|
|
|
2016-01-21 21:15:28 +01:00
|
|
|
state_event(peer, BITCOIN_ANCHOR_CREATED, NULL);
|
2016-01-21 21:14:27 +01:00
|
|
|
}
|
|
|
|
|
2016-01-21 21:14:13 +01:00
|
|
|
/* Start creation of the bitcoin anchor tx. */
|
|
|
|
void bitcoin_create_anchor(struct peer *peer, enum state_input done)
|
|
|
|
{
|
2016-01-21 21:14:27 +01:00
|
|
|
struct sha256 h;
|
|
|
|
struct ripemd160 redeemhash;
|
|
|
|
char *p2shaddr;
|
|
|
|
|
|
|
|
/* We must be offering anchor for us to try creating it */
|
|
|
|
assert(peer->us.offer_anchor);
|
|
|
|
|
|
|
|
sha256(&h, peer->anchor.redeemscript,
|
|
|
|
tal_count(peer->anchor.redeemscript));
|
|
|
|
ripemd160(&redeemhash, h.u.u8, sizeof(h));
|
|
|
|
|
|
|
|
p2shaddr = p2sh_to_base58(peer, peer->dstate->config.testnet,
|
|
|
|
&redeemhash);
|
|
|
|
|
|
|
|
assert(done == BITCOIN_ANCHOR_CREATED);
|
|
|
|
|
|
|
|
bitcoind_create_payment(peer->dstate, p2shaddr, peer->anchor.satoshis,
|
|
|
|
created_anchor, peer);
|
2016-01-21 21:14:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* We didn't end up broadcasting the anchor: release the utxos.
|
|
|
|
* If done != INPUT_NONE, remove existing create_anchor too. */
|
|
|
|
void bitcoin_release_anchor(struct peer *peer, enum state_input done)
|
|
|
|
{
|
2016-01-21 21:14:27 +01:00
|
|
|
|
|
|
|
/* FIXME: stop bitcoind command */
|
|
|
|
log_unusual(peer->log, "Anchor not spent, please -zapwallettxs");
|
2016-01-21 21:14:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the bitcoin anchor tx. */
|
|
|
|
const struct bitcoin_tx *bitcoin_anchor(const tal_t *ctx, struct peer *peer)
|
|
|
|
{
|
2016-01-21 21:14:27 +01:00
|
|
|
return peer->anchor.tx;
|
2016-01-21 21:14:13 +01:00
|
|
|
}
|
|
|
|
|
2016-01-21 21:15:27 +01:00
|
|
|
void make_commit_txs(const tal_t *ctx,
|
|
|
|
const struct peer *peer,
|
|
|
|
const struct sha256 *our_revocation_hash,
|
|
|
|
const struct sha256 *their_revocation_hash,
|
|
|
|
const struct channel_state *cstate,
|
|
|
|
struct bitcoin_tx **ours, struct bitcoin_tx **theirs)
|
2016-01-21 21:14:27 +01:00
|
|
|
{
|
|
|
|
struct channel_state their_cstate;
|
|
|
|
|
2016-01-21 21:15:27 +01:00
|
|
|
*ours = create_commit_tx(ctx,
|
|
|
|
&peer->us.finalkey,
|
|
|
|
&peer->them.finalkey,
|
|
|
|
&peer->them.locktime,
|
|
|
|
&peer->anchor.txid,
|
|
|
|
peer->anchor.index,
|
|
|
|
peer->anchor.satoshis,
|
|
|
|
our_revocation_hash,
|
|
|
|
cstate);
|
|
|
|
|
|
|
|
their_cstate = *cstate;
|
2016-01-21 21:14:27 +01:00
|
|
|
invert_cstate(&their_cstate);
|
2016-01-21 21:15:27 +01:00
|
|
|
*theirs = create_commit_tx(ctx,
|
|
|
|
&peer->them.finalkey,
|
|
|
|
&peer->us.finalkey,
|
|
|
|
&peer->us.locktime,
|
|
|
|
&peer->anchor.txid,
|
|
|
|
peer->anchor.index,
|
|
|
|
peer->anchor.satoshis,
|
|
|
|
their_revocation_hash,
|
|
|
|
&their_cstate);
|
2016-01-21 21:14:27 +01:00
|
|
|
}
|
2016-01-21 21:15:28 +01:00
|
|
|
|
|
|
|
static void json_add_abstime(struct json_result *response,
|
|
|
|
const char *id,
|
|
|
|
const struct abs_locktime *t)
|
|
|
|
{
|
|
|
|
json_object_start(response, id);
|
|
|
|
if (abs_locktime_is_seconds(t))
|
|
|
|
json_add_num(response, "second", abs_locktime_to_seconds(t));
|
|
|
|
else
|
|
|
|
json_add_num(response, "block", abs_locktime_to_blocks(t));
|
|
|
|
json_object_end(response);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void json_add_cstate(struct json_result *response,
|
|
|
|
const char *id,
|
|
|
|
const struct channel_oneside *side)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
json_object_start(response, id);
|
|
|
|
json_add_num(response, "pay", side->pay_msat);
|
|
|
|
json_add_num(response, "fee", side->fee_msat);
|
|
|
|
json_array_start(response, "htlcs");
|
|
|
|
for (i = 0; i < tal_count(side->htlcs); i++) {
|
|
|
|
json_object_start(response, NULL);
|
|
|
|
json_add_u64(response, "msatoshis", side->htlcs[i].msatoshis);
|
|
|
|
json_add_abstime(response, "expiry", &side->htlcs[i].expiry);
|
|
|
|
json_add_hex(response, "rhash",
|
|
|
|
&side->htlcs[i].rhash,
|
|
|
|
sizeof(side->htlcs[i].rhash));
|
|
|
|
json_object_end(response);
|
|
|
|
}
|
|
|
|
json_array_end(response);
|
|
|
|
json_object_end(response);
|
|
|
|
}
|
|
|
|
|
2016-01-21 21:11:48 +01:00
|
|
|
/* FIXME: Somehow we should show running DNS lookups! */
|
|
|
|
/* FIXME: Show status of peers! */
|
|
|
|
static void json_getpeers(struct command *cmd,
|
|
|
|
const char *buffer, const jsmntok_t *params)
|
|
|
|
{
|
|
|
|
struct peer *p;
|
|
|
|
struct json_result *response = new_json_result(cmd);
|
|
|
|
|
|
|
|
json_object_start(response, NULL);
|
|
|
|
json_array_start(response, "peers");
|
2016-01-21 21:11:49 +01:00
|
|
|
list_for_each(&cmd->dstate->peers, p, list) {
|
2016-01-21 21:11:48 +01:00
|
|
|
json_object_start(response, NULL);
|
|
|
|
json_add_string(response, "name", log_prefix(p->log));
|
2016-01-21 21:14:25 +01:00
|
|
|
json_add_string(response, "state", state_name(p->state));
|
2016-01-21 21:15:28 +01:00
|
|
|
json_add_string(response, "cmd", input_name(p->curr_cmd.cmd));
|
2016-01-21 21:14:25 +01:00
|
|
|
|
|
|
|
/* This is only valid after crypto setup. */
|
|
|
|
if (p->state != STATE_INIT)
|
|
|
|
json_add_hex(response, "id",
|
|
|
|
p->id.der, pubkey_derlen(&p->id));
|
2016-01-21 21:15:28 +01:00
|
|
|
|
|
|
|
if (p->cstate) {
|
|
|
|
json_object_start(response, "channel");
|
|
|
|
json_add_cstate(response, "us", &p->cstate->a);
|
|
|
|
json_add_cstate(response, "them", &p->cstate->b);
|
|
|
|
json_object_end(response);
|
|
|
|
}
|
2016-01-21 21:11:48 +01:00
|
|
|
json_object_end(response);
|
|
|
|
}
|
|
|
|
json_array_end(response);
|
|
|
|
json_object_end(response);
|
|
|
|
command_success(cmd, response);
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct json_command getpeers_command = {
|
|
|
|
"getpeers",
|
|
|
|
json_getpeers,
|
|
|
|
"List the current peers",
|
|
|
|
"Returns a 'peers' array"
|
|
|
|
};
|
2016-01-21 21:15:27 +01:00
|
|
|
|
2016-01-21 21:15:28 +01:00
|
|
|
static void set_htlc_command(struct peer *peer,
|
|
|
|
struct channel_state *cstate,
|
|
|
|
struct command *jsoncmd,
|
|
|
|
struct channel_htlc *htlc,
|
|
|
|
enum state_input cmd,
|
|
|
|
const struct sha256 *r_fulfill)
|
|
|
|
{
|
|
|
|
assert(!peer->current_htlc);
|
|
|
|
|
|
|
|
peer->current_htlc = tal(peer, struct htlc_progress);
|
|
|
|
peer->current_htlc->cstate = tal_steal(peer->current_htlc, cstate);
|
|
|
|
peer->current_htlc->htlc = htlc;
|
|
|
|
if (r_fulfill)
|
|
|
|
peer->current_htlc->r = *r_fulfill;
|
|
|
|
|
|
|
|
peer_get_revocation_hash(peer, peer->num_htlcs+1,
|
|
|
|
&peer->current_htlc->our_revocation_hash);
|
|
|
|
|
|
|
|
/* FIXME: Do we need current_htlc as idata arg? */
|
|
|
|
set_current_command(peer, cmd, peer->current_htlc, jsoncmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct newhtlc {
|
|
|
|
struct channel_htlc *htlc;
|
|
|
|
struct command *jsoncmd;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* We do final checks just before we start command, as things may have
|
|
|
|
* changed. */
|
|
|
|
static void do_newhtlc(struct peer *peer, struct newhtlc *newhtlc)
|
|
|
|
{
|
|
|
|
struct channel_state *cstate;
|
|
|
|
|
|
|
|
/* Can we even offer this much? We check now, just before we
|
|
|
|
* execute. */
|
|
|
|
cstate = copy_funding(newhtlc, peer->cstate);
|
|
|
|
if (!funding_delta(peer->us.offer_anchor == CMD_OPEN_WITH_ANCHOR,
|
|
|
|
peer->anchor.satoshis,
|
|
|
|
0, newhtlc->htlc->msatoshis,
|
|
|
|
&cstate->a, &cstate->b)) {
|
|
|
|
command_fail(newhtlc->jsoncmd,
|
|
|
|
"Cannot afford %"PRIu64" milli-satoshis",
|
|
|
|
newhtlc->htlc->msatoshis);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add the htlc to our side of channel. */
|
|
|
|
funding_add_htlc(&cstate->a, newhtlc->htlc->msatoshis,
|
|
|
|
&newhtlc->htlc->expiry, &newhtlc->htlc->rhash);
|
|
|
|
|
|
|
|
set_htlc_command(peer, cstate, newhtlc->jsoncmd,
|
|
|
|
&cstate->a.htlcs[tal_count(cstate->a.htlcs)-1],
|
|
|
|
CMD_SEND_HTLC_UPDATE, NULL);
|
|
|
|
}
|
|
|
|
|
2016-01-21 21:15:27 +01:00
|
|
|
static void json_newhtlc(struct command *cmd,
|
|
|
|
const char *buffer, const jsmntok_t *params)
|
|
|
|
{
|
|
|
|
struct peer *peer;
|
|
|
|
jsmntok_t *idtok, *msatoshistok, *expirytok, *rhashtok;
|
|
|
|
struct pubkey id;
|
|
|
|
unsigned int expiry;
|
2016-01-21 21:15:28 +01:00
|
|
|
struct newhtlc *newhtlc;
|
2016-01-21 21:15:27 +01:00
|
|
|
|
|
|
|
json_get_params(buffer, params,
|
|
|
|
"id", &idtok,
|
|
|
|
"msatoshis", &msatoshistok,
|
|
|
|
"expiry", &expirytok,
|
|
|
|
"rhash", &rhashtok,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (!idtok || !msatoshistok || !expirytok || !rhashtok) {
|
|
|
|
command_fail(cmd, "Need id, msatoshis, expiry and rhash");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!pubkey_from_hexstr(cmd->dstate->secpctx,
|
|
|
|
buffer + idtok->start,
|
|
|
|
idtok->end - idtok->start, &id)) {
|
|
|
|
command_fail(cmd, "Not a valid id");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
peer = find_peer(cmd->dstate, &id);
|
|
|
|
if (!peer) {
|
|
|
|
command_fail(cmd, "Could not find peer with that id");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Attach to cmd until it's complete. */
|
2016-01-21 21:15:28 +01:00
|
|
|
newhtlc = tal(cmd, struct newhtlc);
|
|
|
|
newhtlc->htlc = tal(newhtlc, struct channel_htlc);
|
|
|
|
newhtlc->jsoncmd = cmd;
|
|
|
|
|
|
|
|
if (!json_tok_u64(buffer, msatoshistok, &newhtlc->htlc->msatoshis)) {
|
2016-01-21 21:15:27 +01:00
|
|
|
command_fail(cmd, "'%.*s' is not a valid number",
|
|
|
|
(int)(msatoshistok->end - msatoshistok->start),
|
|
|
|
buffer + msatoshistok->start);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!json_tok_number(buffer, expirytok, &expiry)) {
|
|
|
|
command_fail(cmd, "'%.*s' is not a valid number",
|
|
|
|
(int)(expirytok->end - expirytok->start),
|
|
|
|
buffer + expirytok->start);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-01-21 21:15:28 +01:00
|
|
|
if (!seconds_to_abs_locktime(expiry, &newhtlc->htlc->expiry)) {
|
2016-01-21 21:15:27 +01:00
|
|
|
command_fail(cmd, "'%.*s' is not a valid number",
|
|
|
|
(int)(expirytok->end - expirytok->start),
|
|
|
|
buffer + expirytok->start);
|
|
|
|
return;
|
|
|
|
}
|
2016-01-21 21:15:28 +01:00
|
|
|
|
|
|
|
if (abs_locktime_to_seconds(&newhtlc->htlc->expiry) <
|
|
|
|
controlled_time().ts.tv_sec + peer->dstate->config.min_expiry) {
|
|
|
|
command_fail(cmd, "HTLC expiry too soon!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (abs_locktime_to_seconds(&newhtlc->htlc->expiry) >
|
|
|
|
controlled_time().ts.tv_sec + peer->dstate->config.max_expiry) {
|
|
|
|
command_fail(cmd, "HTLC expiry too far!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-01-21 21:15:27 +01:00
|
|
|
if (!hex_decode(buffer + rhashtok->start,
|
|
|
|
rhashtok->end - rhashtok->start,
|
2016-01-21 21:15:28 +01:00
|
|
|
&newhtlc->htlc->rhash,
|
|
|
|
sizeof(newhtlc->htlc->rhash))) {
|
2016-01-21 21:15:27 +01:00
|
|
|
command_fail(cmd, "'%.*s' is not a valid sha256 hash",
|
|
|
|
(int)(rhashtok->end - rhashtok->start),
|
|
|
|
buffer + rhashtok->start);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-01-21 21:15:28 +01:00
|
|
|
queue_cmd(peer, do_newhtlc, newhtlc);
|
2016-01-21 21:15:27 +01:00
|
|
|
try_command(peer);
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct json_command newhtlc_command = {
|
|
|
|
"newhtlc",
|
|
|
|
json_newhtlc,
|
|
|
|
"Offer {id} an HTLC worth {msatoshis} in {expiry} (in seconds since Jan 1 1970) with {rhash}",
|
|
|
|
"Returns an empty result on success"
|
|
|
|
};
|
2016-01-21 21:15:28 +01:00
|
|
|
|
2016-01-21 21:15:28 +01:00
|
|
|
struct fulfillhtlc {
|
|
|
|
struct command *jsoncmd;
|
|
|
|
struct sha256 r;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void do_fullfill(struct peer *peer,
|
|
|
|
struct fulfillhtlc *fulfillhtlc)
|
|
|
|
{
|
|
|
|
struct channel_state *cstate;
|
|
|
|
struct sha256 rhash;
|
|
|
|
size_t i;
|
|
|
|
struct channel_htlc *htlc;
|
|
|
|
|
|
|
|
sha256(&rhash, &fulfillhtlc->r, sizeof(fulfillhtlc->r));
|
|
|
|
|
|
|
|
i = funding_find_htlc(&peer->cstate->b, &rhash);
|
|
|
|
if (i == tal_count(peer->cstate->b.htlcs)) {
|
|
|
|
command_fail(fulfillhtlc->jsoncmd,
|
|
|
|
"preimage htlc not found");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* Point at current one, since we remove from new cstate. */
|
|
|
|
htlc = &peer->cstate->b.htlcs[i];
|
|
|
|
|
|
|
|
cstate = copy_funding(fulfillhtlc, peer->cstate);
|
|
|
|
/* This should never fail! */
|
|
|
|
if (!funding_delta(peer->them.offer_anchor == CMD_OPEN_WITH_ANCHOR,
|
|
|
|
peer->anchor.satoshis,
|
|
|
|
-htlc->msatoshis,
|
|
|
|
-htlc->msatoshis,
|
|
|
|
&cstate->b, &cstate->a)) {
|
|
|
|
fatal("Unexpected failure fulfilling HTLC of %"PRIu64
|
|
|
|
" milli-satoshis", htlc->msatoshis);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
funding_remove_htlc(&cstate->b, i);
|
|
|
|
|
|
|
|
set_htlc_command(peer, cstate, fulfillhtlc->jsoncmd, htlc,
|
|
|
|
CMD_SEND_HTLC_FULFILL, &fulfillhtlc->r);
|
|
|
|
}
|
|
|
|
|
2016-01-21 21:15:28 +01:00
|
|
|
static void json_fulfillhtlc(struct command *cmd,
|
|
|
|
const char *buffer, const jsmntok_t *params)
|
|
|
|
{
|
|
|
|
struct peer *peer;
|
|
|
|
jsmntok_t *idtok, *rtok;
|
|
|
|
struct pubkey id;
|
2016-01-21 21:15:28 +01:00
|
|
|
struct fulfillhtlc *fulfillhtlc;
|
2016-01-21 21:15:28 +01:00
|
|
|
|
|
|
|
json_get_params(buffer, params,
|
|
|
|
"id", &idtok,
|
|
|
|
"r", &rtok,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (!idtok || !rtok) {
|
|
|
|
command_fail(cmd, "Need id and r");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!pubkey_from_hexstr(cmd->dstate->secpctx,
|
|
|
|
buffer + idtok->start,
|
|
|
|
idtok->end - idtok->start, &id)) {
|
|
|
|
command_fail(cmd, "Not a valid id");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
peer = find_peer(cmd->dstate, &id);
|
|
|
|
if (!peer) {
|
|
|
|
command_fail(cmd, "Could not find peer with that id");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-01-21 21:15:28 +01:00
|
|
|
fulfillhtlc = tal(cmd, struct fulfillhtlc);
|
|
|
|
fulfillhtlc->jsoncmd = cmd;
|
2016-01-21 21:15:28 +01:00
|
|
|
|
|
|
|
if (!hex_decode(buffer + rtok->start,
|
|
|
|
rtok->end - rtok->start,
|
2016-01-21 21:15:28 +01:00
|
|
|
&fulfillhtlc->r, sizeof(fulfillhtlc->r))) {
|
2016-01-21 21:15:28 +01:00
|
|
|
command_fail(cmd, "'%.*s' is not a valid sha256 preimage",
|
|
|
|
(int)(rtok->end - rtok->start),
|
|
|
|
buffer + rtok->start);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-01-21 21:15:28 +01:00
|
|
|
queue_cmd(peer, do_fullfill, fulfillhtlc);
|
|
|
|
try_command(peer);
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct json_command fulfillhtlc_command = {
|
|
|
|
"fulfillhtlc",
|
|
|
|
json_fulfillhtlc,
|
|
|
|
"Redeem htlc proposed by {id} using {r}",
|
|
|
|
"Returns an empty result on success"
|
|
|
|
};
|
2016-01-21 21:15:28 +01:00
|
|
|
|
2016-01-21 21:15:28 +01:00
|
|
|
struct failhtlc {
|
|
|
|
struct command *jsoncmd;
|
|
|
|
struct sha256 rhash;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void do_failhtlc(struct peer *peer,
|
|
|
|
struct failhtlc *failhtlc)
|
|
|
|
{
|
|
|
|
struct channel_state *cstate;
|
|
|
|
size_t i;
|
|
|
|
struct channel_htlc *htlc;
|
|
|
|
|
|
|
|
i = funding_find_htlc(&peer->cstate->b, &failhtlc->rhash);
|
2016-01-21 21:15:28 +01:00
|
|
|
if (i == tal_count(peer->cstate->b.htlcs)) {
|
2016-01-21 21:15:28 +01:00
|
|
|
command_fail(failhtlc->jsoncmd, "htlc not found");
|
2016-01-21 21:15:28 +01:00
|
|
|
return;
|
|
|
|
}
|
2016-01-21 21:15:28 +01:00
|
|
|
/* Point to current one, since we remove from new cstate. */
|
|
|
|
htlc = &peer->cstate->b.htlcs[i];
|
|
|
|
|
|
|
|
cstate = copy_funding(failhtlc, peer->cstate);
|
2016-01-21 21:15:28 +01:00
|
|
|
|
2016-01-21 21:15:28 +01:00
|
|
|
/* This should never fail! */
|
2016-01-21 21:15:28 +01:00
|
|
|
if (!funding_delta(peer->them.offer_anchor == CMD_OPEN_WITH_ANCHOR,
|
|
|
|
peer->anchor.satoshis,
|
2016-01-21 21:15:28 +01:00
|
|
|
0,
|
|
|
|
-htlc->msatoshis,
|
|
|
|
&cstate->b, &cstate->a)) {
|
|
|
|
fatal("Unexpected failure routefailing HTLC of %"PRIu64
|
|
|
|
" milli-satoshis", htlc->msatoshis);
|
2016-01-21 21:15:28 +01:00
|
|
|
return;
|
|
|
|
}
|
2016-01-21 21:15:28 +01:00
|
|
|
funding_remove_htlc(&cstate->b, i);
|
2016-01-21 21:15:28 +01:00
|
|
|
|
2016-01-21 21:15:28 +01:00
|
|
|
set_htlc_command(peer, cstate, failhtlc->jsoncmd, htlc,
|
|
|
|
CMD_SEND_HTLC_ROUTEFAIL, NULL);
|
2016-01-21 21:15:28 +01:00
|
|
|
}
|
2016-01-21 21:15:28 +01:00
|
|
|
|
|
|
|
static void json_failhtlc(struct command *cmd,
|
|
|
|
const char *buffer, const jsmntok_t *params)
|
|
|
|
{
|
|
|
|
struct peer *peer;
|
|
|
|
jsmntok_t *idtok, *rhashtok;
|
|
|
|
struct pubkey id;
|
2016-01-21 21:15:28 +01:00
|
|
|
struct failhtlc *failhtlc;
|
2016-01-21 21:15:28 +01:00
|
|
|
|
|
|
|
json_get_params(buffer, params,
|
|
|
|
"id", &idtok,
|
|
|
|
"rhash", &rhashtok,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (!idtok || !rhashtok) {
|
|
|
|
command_fail(cmd, "Need id and rhash");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!pubkey_from_hexstr(cmd->dstate->secpctx,
|
|
|
|
buffer + idtok->start,
|
|
|
|
idtok->end - idtok->start, &id)) {
|
|
|
|
command_fail(cmd, "Not a valid id");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
peer = find_peer(cmd->dstate, &id);
|
|
|
|
if (!peer) {
|
|
|
|
command_fail(cmd, "Could not find peer with that id");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-01-21 21:15:28 +01:00
|
|
|
failhtlc = tal(cmd, struct failhtlc);
|
|
|
|
failhtlc->jsoncmd = cmd;
|
2016-01-21 21:15:28 +01:00
|
|
|
|
|
|
|
if (!hex_decode(buffer + rhashtok->start,
|
|
|
|
rhashtok->end - rhashtok->start,
|
2016-01-21 21:15:28 +01:00
|
|
|
&failhtlc->rhash, sizeof(failhtlc->rhash))) {
|
2016-01-21 21:15:28 +01:00
|
|
|
command_fail(cmd, "'%.*s' is not a valid sha256 preimage",
|
|
|
|
(int)(rhashtok->end - rhashtok->start),
|
|
|
|
buffer + rhashtok->start);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-01-21 21:15:28 +01:00
|
|
|
queue_cmd(peer, do_failhtlc, failhtlc);
|
2016-01-21 21:15:28 +01:00
|
|
|
try_command(peer);
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct json_command failhtlc_command = {
|
|
|
|
"failhtlc",
|
|
|
|
json_failhtlc,
|
|
|
|
"Fail htlc proposed by {id} which has redeem hash {rhash}",
|
|
|
|
"Returns an empty result on success"
|
|
|
|
};
|