2016-06-28 23:19:21 +02:00
|
|
|
#include "jsonrpc.h"
|
2016-06-28 23:19:21 +02:00
|
|
|
#include "lightningd.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "overflows.h"
|
|
|
|
#include "peer.h"
|
|
|
|
#include "pseudorand.h"
|
|
|
|
#include "routing.h"
|
|
|
|
#include <ccan/array_size/array_size.h>
|
|
|
|
#include <ccan/crypto/siphash24/siphash24.h>
|
|
|
|
#include <ccan/htable/htable_type.h>
|
|
|
|
#include <ccan/structeq/structeq.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
2016-09-06 09:17:48 +02:00
|
|
|
/* 365.25 * 24 * 60 / 10 */
|
|
|
|
#define BLOCKS_PER_YEAR 52596
|
|
|
|
|
2016-06-28 23:19:21 +02:00
|
|
|
static const secp256k1_pubkey *keyof_node(const struct node *n)
|
|
|
|
{
|
|
|
|
return &n->id.pubkey;
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t hash_key(const secp256k1_pubkey *key)
|
|
|
|
{
|
2016-11-01 12:03:06 +01:00
|
|
|
return siphash24(siphash_seed(), key, sizeof(*key));
|
2016-06-28 23:19:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool node_eq(const struct node *n, const secp256k1_pubkey *key)
|
|
|
|
{
|
|
|
|
return structeq(&n->id.pubkey, key);
|
|
|
|
}
|
2016-09-28 16:52:03 +02:00
|
|
|
|
2016-06-28 23:19:21 +02:00
|
|
|
HTABLE_DEFINE_TYPE(struct node, keyof_node, hash_key, node_eq, node_map);
|
|
|
|
|
|
|
|
struct node_map *empty_node_map(struct lightningd_state *dstate)
|
|
|
|
{
|
|
|
|
struct node_map *map = tal(dstate, struct node_map);
|
|
|
|
node_map_init(map);
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct node *get_node(struct lightningd_state *dstate,
|
|
|
|
const struct pubkey *id)
|
|
|
|
{
|
|
|
|
return node_map_get(dstate->nodes, &id->pubkey);
|
|
|
|
}
|
|
|
|
|
2016-08-18 06:55:13 +02:00
|
|
|
static void destroy_node(struct node *node)
|
|
|
|
{
|
|
|
|
/* These remove themselves from the array. */
|
|
|
|
while (tal_count(node->in))
|
|
|
|
tal_free(node->in[0]);
|
|
|
|
while (tal_count(node->out))
|
|
|
|
tal_free(node->out[0]);
|
|
|
|
}
|
|
|
|
|
2016-06-28 23:19:21 +02:00
|
|
|
struct node *new_node(struct lightningd_state *dstate,
|
|
|
|
const struct pubkey *id)
|
|
|
|
{
|
|
|
|
struct node *n;
|
|
|
|
|
|
|
|
assert(!get_node(dstate, id));
|
|
|
|
|
|
|
|
n = tal(dstate, struct node);
|
|
|
|
n->id = *id;
|
2016-08-18 06:55:13 +02:00
|
|
|
n->in = tal_arr(n, struct node_connection *, 0);
|
|
|
|
n->out = tal_arr(n, struct node_connection *, 0);
|
2016-09-30 15:30:19 +02:00
|
|
|
n->port = 0;
|
2016-10-28 16:40:27 +02:00
|
|
|
n->alias = NULL;
|
2016-12-12 14:55:46 +01:00
|
|
|
n->hostname = NULL;
|
2016-06-28 23:19:21 +02:00
|
|
|
node_map_add(dstate->nodes, n);
|
2016-08-18 06:55:13 +02:00
|
|
|
tal_add_destructor(n, destroy_node);
|
2016-06-28 23:19:21 +02:00
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2016-09-28 16:52:03 +02:00
|
|
|
struct node *add_node(
|
|
|
|
struct lightningd_state *dstate,
|
|
|
|
const struct pubkey *pk,
|
|
|
|
char *hostname,
|
|
|
|
int port)
|
|
|
|
{
|
|
|
|
struct node *n = get_node(dstate, pk);
|
|
|
|
if (!n) {
|
|
|
|
n = new_node(dstate, pk);
|
|
|
|
log_debug_struct(dstate->base_log, "Creating new node %s",
|
|
|
|
struct pubkey, pk);
|
|
|
|
} else {
|
|
|
|
log_debug_struct(dstate->base_log, "Update existing node %s",
|
|
|
|
struct pubkey, pk);
|
|
|
|
}
|
|
|
|
n->hostname = tal_steal(n, hostname);
|
|
|
|
n->port = port;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2016-08-18 06:55:13 +02:00
|
|
|
static bool remove_conn_from_array(struct node_connection ***conns,
|
|
|
|
struct node_connection *nc)
|
|
|
|
{
|
|
|
|
size_t i, n;
|
|
|
|
|
|
|
|
n = tal_count(*conns);
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
if ((*conns)[i] != nc)
|
|
|
|
continue;
|
|
|
|
n--;
|
|
|
|
memmove(*conns + i, *conns + i + 1, sizeof(**conns) * (n - i));
|
|
|
|
tal_resize(conns, n);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void destroy_connection(struct node_connection *nc)
|
|
|
|
{
|
|
|
|
if (!remove_conn_from_array(&nc->dst->in, nc)
|
|
|
|
|| !remove_conn_from_array(&nc->src->out, nc))
|
|
|
|
fatal("Connection not found in array?!");
|
|
|
|
}
|
|
|
|
|
2016-12-12 14:55:46 +01:00
|
|
|
struct node_connection * get_connection(struct lightningd_state *dstate,
|
|
|
|
const struct pubkey *from_id,
|
|
|
|
const struct pubkey *to_id)
|
|
|
|
{
|
|
|
|
int i, n;
|
|
|
|
struct node *from, *to;
|
|
|
|
from = get_node(dstate, from_id);
|
|
|
|
to = get_node(dstate, to_id);
|
|
|
|
if (!from || ! to)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
n = tal_count(to->in);
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
if (to->in[i]->src == from)
|
|
|
|
return to->in[i];
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct node_connection *get_connection_by_cid(const struct lightningd_state *dstate,
|
|
|
|
const struct channel_id *chanid,
|
|
|
|
const u8 direction)
|
|
|
|
{
|
|
|
|
struct node *n;
|
|
|
|
int i, num_conn;
|
|
|
|
struct node_map *nodes = dstate->nodes;
|
|
|
|
struct node_connection *c;
|
|
|
|
struct node_map_iter it;
|
|
|
|
|
|
|
|
//FIXME(cdecker) We probably want to speed this up by indexing by chanid.
|
|
|
|
for (n = node_map_first(nodes, &it); n; n = node_map_next(nodes, &it)) {
|
|
|
|
num_conn = tal_count(n->out);
|
|
|
|
for (i = 0; i < num_conn; i++){
|
|
|
|
c = n->out[i];
|
|
|
|
if (memcmp(&c->channel_id, chanid, sizeof(*chanid)) == 0 &&
|
|
|
|
(c->flags&0x1) == direction)
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-06-28 23:19:21 +02:00
|
|
|
static struct node_connection *
|
|
|
|
get_or_make_connection(struct lightningd_state *dstate,
|
2016-08-18 06:55:13 +02:00
|
|
|
const struct pubkey *from_id,
|
|
|
|
const struct pubkey *to_id)
|
2016-06-28 23:19:21 +02:00
|
|
|
{
|
2016-08-18 06:55:13 +02:00
|
|
|
size_t i, n;
|
|
|
|
struct node *from, *to;
|
|
|
|
struct node_connection *nc;
|
|
|
|
|
|
|
|
from = get_node(dstate, from_id);
|
|
|
|
if (!from)
|
|
|
|
from = new_node(dstate, from_id);
|
|
|
|
to = get_node(dstate, to_id);
|
|
|
|
if (!to)
|
|
|
|
to = new_node(dstate, to_id);
|
2016-06-28 23:19:21 +02:00
|
|
|
|
2016-08-18 06:55:13 +02:00
|
|
|
n = tal_count(to->in);
|
2016-06-28 23:19:21 +02:00
|
|
|
for (i = 0; i < n; i++) {
|
2016-08-18 06:55:13 +02:00
|
|
|
if (to->in[i]->src == from) {
|
2016-06-28 23:19:21 +02:00
|
|
|
log_debug_struct(dstate->base_log,
|
|
|
|
"Updating existing route from %s",
|
|
|
|
struct pubkey, &from->id);
|
|
|
|
log_add_struct(dstate->base_log, " to %s",
|
|
|
|
struct pubkey, &to->id);
|
2016-08-18 06:55:13 +02:00
|
|
|
return to->in[i];
|
2016-06-28 23:19:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
log_debug_struct(dstate->base_log, "Creating new route from %s",
|
|
|
|
struct pubkey, &from->id);
|
|
|
|
log_add_struct(dstate->base_log, " to %s", struct pubkey, &to->id);
|
|
|
|
|
2016-08-18 06:55:13 +02:00
|
|
|
nc = tal(dstate, struct node_connection);
|
|
|
|
nc->src = from;
|
|
|
|
nc->dst = to;
|
2016-12-12 14:55:46 +01:00
|
|
|
memset(&nc->channel_id, 0, sizeof(nc->channel_id));
|
2016-08-18 06:55:14 +02:00
|
|
|
log_add(dstate->base_log, " = %p (%p->%p)", nc, from, to);
|
2016-08-18 06:55:13 +02:00
|
|
|
|
|
|
|
/* Hook it into in/out arrays. */
|
|
|
|
i = tal_count(to->in);
|
|
|
|
tal_resize(&to->in, i+1);
|
|
|
|
to->in[i] = nc;
|
|
|
|
i = tal_count(from->out);
|
|
|
|
tal_resize(&from->out, i+1);
|
|
|
|
from->out[i] = nc;
|
|
|
|
|
|
|
|
tal_add_destructor(nc, destroy_connection);
|
|
|
|
return nc;
|
2016-06-28 23:19:21 +02:00
|
|
|
}
|
|
|
|
|
2016-12-12 14:55:46 +01:00
|
|
|
struct node_connection *half_add_connection(struct lightningd_state *dstate,
|
|
|
|
const struct pubkey *from,
|
|
|
|
const struct pubkey *to,
|
|
|
|
const struct channel_id *chanid,
|
|
|
|
const u16 flags
|
|
|
|
)
|
|
|
|
{
|
|
|
|
struct node_connection *nc;
|
|
|
|
nc = get_or_make_connection(dstate, from, to);
|
|
|
|
memcpy(&nc->channel_id, chanid, sizeof(nc->channel_id));
|
|
|
|
nc->active = false;
|
|
|
|
nc->last_timestamp = 0;
|
|
|
|
nc->flags = flags;
|
|
|
|
nc->min_blocks = 0;
|
|
|
|
nc->proportional_fee = 0;
|
|
|
|
nc->base_fee = 0;
|
|
|
|
nc->delay = 0;
|
|
|
|
return nc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-06-28 23:19:21 +02:00
|
|
|
/* Updates existing route if required. */
|
|
|
|
struct node_connection *add_connection(struct lightningd_state *dstate,
|
2016-08-18 06:55:13 +02:00
|
|
|
const struct pubkey *from,
|
|
|
|
const struct pubkey *to,
|
2016-06-28 23:19:21 +02:00
|
|
|
u32 base_fee, s32 proportional_fee,
|
|
|
|
u32 delay, u32 min_blocks)
|
|
|
|
{
|
|
|
|
struct node_connection *c = get_or_make_connection(dstate, from, to);
|
|
|
|
c->base_fee = base_fee;
|
|
|
|
c->proportional_fee = proportional_fee;
|
|
|
|
c->delay = delay;
|
|
|
|
c->min_blocks = min_blocks;
|
2016-12-12 14:55:46 +01:00
|
|
|
c->active = true;
|
|
|
|
c->last_timestamp = 0;
|
|
|
|
memset(&c->channel_id, 0, sizeof(c->channel_id));
|
|
|
|
c->flags = pubkey_cmp(from, to) > 0;
|
2016-06-28 23:19:21 +02:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2016-08-31 08:40:17 +02:00
|
|
|
void remove_connection(struct lightningd_state *dstate,
|
|
|
|
const struct pubkey *src, const struct pubkey *dst)
|
|
|
|
{
|
|
|
|
struct node *from, *to;
|
|
|
|
size_t i, num_edges;
|
|
|
|
|
|
|
|
log_debug_struct(dstate->base_log, "Removing route from %s",
|
|
|
|
struct pubkey, src);
|
|
|
|
log_add_struct(dstate->base_log, " to %s", struct pubkey, dst);
|
|
|
|
|
|
|
|
from = get_node(dstate, src);
|
|
|
|
to = get_node(dstate, dst);
|
|
|
|
if (!from || !to) {
|
|
|
|
log_debug(dstate->base_log, "Not found: src=%p dst=%p",
|
|
|
|
from, to);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
num_edges = tal_count(from->out);
|
|
|
|
|
|
|
|
for (i = 0; i < num_edges; i++) {
|
|
|
|
if (from->out[i]->dst != to)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
log_add(dstate->base_log, " Matched route %zu of %zu",
|
|
|
|
i, num_edges);
|
|
|
|
/* Destructor makes it delete itself */
|
|
|
|
tal_free(from->out[i]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
log_add(dstate->base_log, " None of %zu routes matched", num_edges);
|
|
|
|
}
|
|
|
|
|
2016-06-28 23:19:21 +02:00
|
|
|
/* Too big to reach, but don't overflow if added. */
|
|
|
|
#define INFINITE 0x3FFFFFFFFFFFFFFFULL
|
|
|
|
|
|
|
|
static void clear_bfg(struct node_map *nodes)
|
|
|
|
{
|
|
|
|
struct node *n;
|
|
|
|
struct node_map_iter it;
|
|
|
|
|
|
|
|
for (n = node_map_first(nodes, &it); n; n = node_map_next(nodes, &it)) {
|
|
|
|
size_t i;
|
2016-09-06 09:17:48 +02:00
|
|
|
for (i = 0; i < ARRAY_SIZE(n->bfg); i++) {
|
2016-06-28 23:19:21 +02:00
|
|
|
n->bfg[i].total = INFINITE;
|
2016-09-06 09:17:48 +02:00
|
|
|
n->bfg[i].risk = 0;
|
|
|
|
}
|
2016-06-28 23:19:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
s64 connection_fee(const struct node_connection *c, u64 msatoshi)
|
|
|
|
{
|
|
|
|
s64 fee;
|
|
|
|
|
|
|
|
if (mul_overflows_s64(c->proportional_fee, msatoshi))
|
|
|
|
return INFINITE;
|
|
|
|
fee = (c->proportional_fee * msatoshi) / 1000000;
|
|
|
|
/* This can't overflow: c->base_fee is a u32 */
|
|
|
|
return c->base_fee + fee;
|
|
|
|
}
|
|
|
|
|
2016-09-06 09:17:48 +02:00
|
|
|
/* Risk of passing through this channel. We insert a tiny constant here
|
|
|
|
* in order to prefer shorter routes, all things equal. */
|
|
|
|
static u64 risk_fee(s64 amount, u32 delay, double riskfactor)
|
|
|
|
{
|
|
|
|
/* If fees are so negative we're making money, ignore risk. */
|
|
|
|
if (amount < 0)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 1 + amount * delay * riskfactor / BLOCKS_PER_YEAR / 10000;
|
|
|
|
}
|
|
|
|
|
2016-06-28 23:19:21 +02:00
|
|
|
/* We track totals, rather than costs. That's because the fee depends
|
|
|
|
* on the current amount passing through. */
|
2016-09-06 09:17:48 +02:00
|
|
|
static void bfg_one_edge(struct node *node, size_t edgenum, double riskfactor)
|
2016-06-28 23:19:21 +02:00
|
|
|
{
|
2016-08-18 06:55:13 +02:00
|
|
|
struct node_connection *c = node->in[edgenum];
|
2016-06-28 23:19:21 +02:00
|
|
|
size_t h;
|
|
|
|
|
|
|
|
assert(c->dst == node);
|
|
|
|
for (h = 0; h < ROUTING_MAX_HOPS; h++) {
|
|
|
|
/* FIXME: Bias against smaller channels. */
|
|
|
|
s64 fee = connection_fee(c, node->bfg[h].total);
|
2016-09-06 09:17:48 +02:00
|
|
|
u64 risk = node->bfg[h].risk + risk_fee(node->bfg[h].total + fee,
|
|
|
|
c->delay, riskfactor);
|
|
|
|
if (node->bfg[h].total + (s64)fee + (s64)risk
|
|
|
|
< c->src->bfg[h+1].total + (s64)c->src->bfg[h+1].risk) {
|
2016-06-28 23:19:21 +02:00
|
|
|
c->src->bfg[h+1].total = node->bfg[h].total + fee;
|
2016-09-06 09:17:48 +02:00
|
|
|
c->src->bfg[h+1].risk = risk;
|
2016-06-28 23:19:21 +02:00
|
|
|
c->src->bfg[h+1].prev = c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-04 01:47:04 +01:00
|
|
|
struct peer *find_route(const tal_t *ctx,
|
|
|
|
struct lightningd_state *dstate,
|
2016-06-28 23:19:21 +02:00
|
|
|
const struct pubkey *to,
|
2016-09-06 09:17:48 +02:00
|
|
|
u64 msatoshi,
|
|
|
|
double riskfactor,
|
|
|
|
s64 *fee,
|
2016-06-28 23:19:21 +02:00
|
|
|
struct node_connection ***route)
|
|
|
|
{
|
|
|
|
struct node *n, *src, *dst;
|
|
|
|
struct node_map_iter it;
|
|
|
|
struct peer *first;
|
|
|
|
int runs, i, best;
|
|
|
|
|
|
|
|
/* Note: we map backwards, since we know the amount of satoshi we want
|
|
|
|
* at the end, and need to derive how much we need to send. */
|
|
|
|
dst = get_node(dstate, &dstate->id);
|
|
|
|
src = get_node(dstate, to);
|
2016-10-23 11:57:50 +02:00
|
|
|
|
2016-06-28 23:19:21 +02:00
|
|
|
if (!src) {
|
|
|
|
log_info_struct(dstate->base_log, "find_route: cannot find %s",
|
|
|
|
struct pubkey, to);
|
|
|
|
return NULL;
|
2016-10-23 11:57:50 +02:00
|
|
|
} else if (dst == src) {
|
|
|
|
log_info_struct(dstate->base_log, "find_route: this is %s, refusing to create empty route",
|
|
|
|
struct pubkey, to);
|
|
|
|
return NULL;
|
2016-06-28 23:19:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Reset all the information. */
|
|
|
|
clear_bfg(dstate->nodes);
|
|
|
|
|
|
|
|
/* Bellman-Ford-Gibson: like Bellman-Ford, but keep values for
|
|
|
|
* every path length. */
|
|
|
|
src->bfg[0].total = msatoshi;
|
2016-09-06 09:17:48 +02:00
|
|
|
src->bfg[0].risk = 0;
|
2016-06-28 23:19:21 +02:00
|
|
|
|
|
|
|
for (runs = 0; runs < ROUTING_MAX_HOPS; runs++) {
|
2016-08-18 06:55:14 +02:00
|
|
|
log_debug(dstate->base_log, "Run %i", runs);
|
2016-06-28 23:19:21 +02:00
|
|
|
/* Run through every edge. */
|
|
|
|
for (n = node_map_first(dstate->nodes, &it);
|
|
|
|
n;
|
|
|
|
n = node_map_next(dstate->nodes, &it)) {
|
2016-08-18 06:55:13 +02:00
|
|
|
size_t num_edges = tal_count(n->in);
|
2016-06-28 23:19:21 +02:00
|
|
|
for (i = 0; i < num_edges; i++) {
|
2016-12-14 23:42:06 +01:00
|
|
|
if (!n->in[i]->active)
|
|
|
|
continue;
|
2016-09-06 09:17:48 +02:00
|
|
|
bfg_one_edge(n, i, riskfactor);
|
2016-08-18 06:55:14 +02:00
|
|
|
log_debug(dstate->base_log, "We seek %p->%p, this is %p -> %p",
|
|
|
|
dst, src, n->in[i]->src, n->in[i]->dst);
|
|
|
|
log_debug_struct(dstate->base_log,
|
|
|
|
"Checking from %s",
|
|
|
|
struct pubkey,
|
|
|
|
&n->in[i]->src->id);
|
|
|
|
log_add_struct(dstate->base_log,
|
|
|
|
" to %s",
|
|
|
|
struct pubkey,
|
|
|
|
&n->in[i]->dst->id);
|
2016-06-28 23:19:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
best = 0;
|
|
|
|
for (i = 1; i <= ROUTING_MAX_HOPS; i++) {
|
|
|
|
if (dst->bfg[i].total < dst->bfg[best].total)
|
|
|
|
best = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* No route? */
|
|
|
|
if (dst->bfg[best].total >= INFINITE) {
|
|
|
|
log_info_struct(dstate->base_log, "find_route: No route to %s",
|
|
|
|
struct pubkey, to);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Save route from *next* hop (we return first hop as peer).
|
|
|
|
* Note that we take our own fees into account for routing, even
|
|
|
|
* though we don't pay them: it presumably effects preference. */
|
|
|
|
dst = dst->bfg[best].prev->dst;
|
|
|
|
best--;
|
|
|
|
|
|
|
|
/* We should only add routes if we have a peer. */
|
2016-08-26 08:09:35 +02:00
|
|
|
first = find_peer(dstate, &dst->id);
|
2016-06-28 23:19:21 +02:00
|
|
|
if (!first) {
|
|
|
|
log_broken_struct(dstate->base_log, "No peer %s?",
|
|
|
|
struct pubkey, &(*route)[0]->src->id);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-11-04 01:47:04 +01:00
|
|
|
*fee = dst->bfg[best].total - msatoshi;
|
|
|
|
*route = tal_arr(ctx, struct node_connection *, best);
|
|
|
|
for (i = 0, n = dst;
|
|
|
|
i < best;
|
|
|
|
n = n->bfg[best-i].prev->dst, i++) {
|
|
|
|
(*route)[i] = n->bfg[best-i].prev;
|
|
|
|
}
|
|
|
|
assert(n == src);
|
|
|
|
|
2016-06-28 23:19:21 +02:00
|
|
|
msatoshi += *fee;
|
|
|
|
log_info(dstate->base_log, "find_route:");
|
2016-07-01 03:57:57 +02:00
|
|
|
log_add_struct(dstate->base_log, "via %s", struct pubkey, first->id);
|
2016-09-06 06:17:33 +02:00
|
|
|
/* If there are intermidiaries, dump them, and total fees. */
|
|
|
|
if (best != 0) {
|
|
|
|
for (i = 0; i < best; i++) {
|
|
|
|
log_add_struct(dstate->base_log, " %s",
|
|
|
|
struct pubkey, &(*route)[i]->dst->id);
|
|
|
|
log_add(dstate->base_log, "(%i+%i=%"PRIu64")",
|
|
|
|
(*route)[i]->base_fee,
|
|
|
|
(*route)[i]->proportional_fee,
|
|
|
|
connection_fee((*route)[i], msatoshi));
|
|
|
|
msatoshi -= connection_fee((*route)[i], msatoshi);
|
|
|
|
}
|
|
|
|
log_add(dstate->base_log, "=%"PRIi64"(%+"PRIi64")",
|
|
|
|
(*route)[best-1]->dst->bfg[best-1].total, *fee);
|
2016-06-28 23:19:21 +02:00
|
|
|
}
|
|
|
|
return first;
|
|
|
|
}
|
2016-06-28 23:19:21 +02:00
|
|
|
|
2016-08-18 06:55:14 +02:00
|
|
|
static bool get_slash_u32(const char **arg, u32 *v)
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
char *endp;
|
|
|
|
|
|
|
|
if (**arg != '/')
|
|
|
|
return false;
|
|
|
|
(*arg)++;
|
|
|
|
len = strcspn(*arg, "/");
|
|
|
|
*v = strtoul(*arg, &endp, 10);
|
|
|
|
(*arg) += len;
|
|
|
|
return (endp == *arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* srcid/dstid/base/var/delay/minblocks */
|
|
|
|
char *opt_add_route(const char *arg, struct lightningd_state *dstate)
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
struct pubkey src, dst;
|
|
|
|
u32 base, var, delay, minblocks;
|
|
|
|
|
|
|
|
len = strcspn(arg, "/");
|
2016-12-02 08:42:58 +01:00
|
|
|
if (!pubkey_from_hexstr(arg, len, &src))
|
2016-08-18 06:55:14 +02:00
|
|
|
return "Bad src pubkey";
|
|
|
|
arg += len + 1;
|
|
|
|
len = strcspn(arg, "/");
|
2016-12-02 08:42:58 +01:00
|
|
|
if (!pubkey_from_hexstr(arg, len, &dst))
|
2016-08-18 06:55:14 +02:00
|
|
|
return "Bad dst pubkey";
|
|
|
|
arg += len;
|
|
|
|
|
|
|
|
if (!get_slash_u32(&arg, &base)
|
|
|
|
|| !get_slash_u32(&arg, &var)
|
|
|
|
|| !get_slash_u32(&arg, &delay)
|
|
|
|
|| !get_slash_u32(&arg, &minblocks))
|
|
|
|
return "Bad base/var/delay/minblocks";
|
|
|
|
if (*arg)
|
|
|
|
return "Data after minblocks";
|
|
|
|
|
|
|
|
add_connection(dstate, &src, &dst, base, var, delay, minblocks);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-06-28 23:19:21 +02:00
|
|
|
static void json_add_route(struct command *cmd,
|
|
|
|
const char *buffer, const jsmntok_t *params)
|
|
|
|
{
|
|
|
|
jsmntok_t *srctok, *dsttok, *basetok, *vartok, *delaytok, *minblockstok;
|
|
|
|
struct pubkey src, dst;
|
|
|
|
u32 base, var, delay, minblocks;
|
|
|
|
|
|
|
|
if (!json_get_params(buffer, params,
|
|
|
|
"src", &srctok,
|
|
|
|
"dst", &dsttok,
|
|
|
|
"base", &basetok,
|
|
|
|
"var", &vartok,
|
|
|
|
"delay", &delaytok,
|
|
|
|
"minblocks", &minblockstok,
|
|
|
|
NULL)) {
|
|
|
|
command_fail(cmd, "Need src, dst, base, var, delay & minblocks");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-02 08:42:58 +01:00
|
|
|
if (!pubkey_from_hexstr(buffer + srctok->start,
|
2016-06-28 23:19:21 +02:00
|
|
|
srctok->end - srctok->start, &src)) {
|
|
|
|
command_fail(cmd, "src %.*s not valid",
|
|
|
|
srctok->end - srctok->start,
|
|
|
|
buffer + srctok->start);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-02 08:42:58 +01:00
|
|
|
if (!pubkey_from_hexstr(buffer + dsttok->start,
|
2016-06-28 23:19:21 +02:00
|
|
|
dsttok->end - dsttok->start, &dst)) {
|
|
|
|
command_fail(cmd, "dst %.*s not valid",
|
|
|
|
dsttok->end - dsttok->start,
|
|
|
|
buffer + dsttok->start);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!json_tok_number(buffer, basetok, &base)
|
|
|
|
|| !json_tok_number(buffer, vartok, &var)
|
|
|
|
|| !json_tok_number(buffer, delaytok, &delay)
|
|
|
|
|| !json_tok_number(buffer, minblockstok, &minblocks)) {
|
|
|
|
command_fail(cmd,
|
|
|
|
"base, var, delay and minblocks must be numbers");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-08-18 06:55:13 +02:00
|
|
|
add_connection(cmd->dstate, &src, &dst, base, var, delay, minblocks);
|
2016-06-28 23:19:21 +02:00
|
|
|
command_success(cmd, null_response(cmd));
|
|
|
|
}
|
2016-10-02 12:22:28 +02:00
|
|
|
|
2016-09-06 09:17:49 +02:00
|
|
|
const struct json_command dev_add_route_command = {
|
|
|
|
"dev-add-route",
|
2016-06-28 23:19:21 +02:00
|
|
|
json_add_route,
|
|
|
|
"Add route from {src} to {dst}, {base} rate in msatoshi, {var} rate in msatoshi, {delay} blocks delay and {minblocks} minimum timeout",
|
|
|
|
"Returns an empty result on success"
|
|
|
|
};
|
|
|
|
|
2016-10-02 12:22:28 +02:00
|
|
|
static void json_getchannels(struct command *cmd,
|
|
|
|
const char *buffer, const jsmntok_t *params)
|
|
|
|
{
|
|
|
|
struct json_result *response = new_json_result(cmd);
|
|
|
|
struct node_map_iter it;
|
|
|
|
struct node *n;
|
|
|
|
struct node_map *nodes = cmd->dstate->nodes;
|
|
|
|
struct node_connection *c;
|
|
|
|
int num_conn, i;
|
|
|
|
|
|
|
|
json_object_start(response, NULL);
|
|
|
|
json_array_start(response, "channels");
|
|
|
|
for (n = node_map_first(nodes, &it); n; n = node_map_next(nodes, &it)) {
|
|
|
|
num_conn = tal_count(n->out);
|
|
|
|
for (i = 0; i < num_conn; i++){
|
|
|
|
c = n->out[i];
|
|
|
|
json_object_start(response, NULL);
|
2016-12-02 08:42:58 +01:00
|
|
|
json_add_pubkey(response, "from", &n->id);
|
|
|
|
json_add_pubkey(response, "to", &c->dst->id);
|
2016-10-02 12:22:28 +02:00
|
|
|
json_add_num(response, "base_fee", c->base_fee);
|
|
|
|
json_add_num(response, "proportional_fee", c->proportional_fee);
|
2016-12-12 14:55:46 +01:00
|
|
|
json_add_num(response, "expiry", c->delay);
|
|
|
|
json_add_bool(response, "active", c->active);
|
2016-10-02 12:22:28 +02:00
|
|
|
json_object_end(response);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
json_array_end(response);
|
|
|
|
json_object_end(response);
|
|
|
|
command_success(cmd, response);
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct json_command getchannels_command = {
|
|
|
|
"getchannels",
|
|
|
|
json_getchannels,
|
|
|
|
"List all known channels.",
|
|
|
|
"Returns a 'channels' array with all known channels including their fees."
|
|
|
|
};
|
|
|
|
|
2016-06-30 01:38:10 +02:00
|
|
|
static void json_routefail(struct command *cmd,
|
|
|
|
const char *buffer, const jsmntok_t *params)
|
|
|
|
{
|
|
|
|
jsmntok_t *enabletok;
|
|
|
|
bool enable;
|
|
|
|
|
|
|
|
if (!json_get_params(buffer, params,
|
|
|
|
"enable", &enabletok,
|
|
|
|
NULL)) {
|
|
|
|
command_fail(cmd, "Need enable");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!json_tok_bool(buffer, enabletok, &enable)) {
|
|
|
|
command_fail(cmd, "enable must be true or false");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
log_debug(cmd->dstate->base_log, "dev-routefail: routefail %s",
|
|
|
|
enable ? "enabled" : "disabled");
|
|
|
|
cmd->dstate->dev_never_routefail = !enable;
|
|
|
|
|
|
|
|
command_success(cmd, null_response(cmd));
|
|
|
|
}
|
2016-09-06 09:17:49 +02:00
|
|
|
const struct json_command dev_routefail_command = {
|
2016-06-30 01:38:10 +02:00
|
|
|
"dev-routefail",
|
|
|
|
json_routefail,
|
|
|
|
"FAIL htlcs that we can't route if {enable}",
|
|
|
|
"Returns an empty result on success"
|
|
|
|
};
|
|
|
|
|
2016-09-30 15:30:19 +02:00
|
|
|
static void json_getnodes(struct command *cmd,
|
|
|
|
const char *buffer, const jsmntok_t *params)
|
|
|
|
{
|
|
|
|
struct json_result *response = new_json_result(cmd);
|
|
|
|
struct node *n;
|
|
|
|
struct node_map_iter i;
|
|
|
|
|
|
|
|
n = node_map_first(cmd->dstate->nodes, &i);
|
2016-06-30 01:38:10 +02:00
|
|
|
|
2016-09-30 15:30:19 +02:00
|
|
|
json_object_start(response, NULL);
|
|
|
|
json_array_start(response, "nodes");
|
|
|
|
|
|
|
|
while (n != NULL) {
|
|
|
|
json_object_start(response, NULL);
|
2016-12-02 08:42:58 +01:00
|
|
|
json_add_pubkey(response, "nodeid", &n->id);
|
2016-09-30 15:30:19 +02:00
|
|
|
json_add_num(response, "port", n->port);
|
|
|
|
if (!n->port)
|
|
|
|
json_add_null(response, "hostname");
|
|
|
|
else
|
|
|
|
json_add_string(response, "hostname", n->hostname);
|
2016-06-30 01:38:10 +02:00
|
|
|
|
2016-09-30 15:30:19 +02:00
|
|
|
json_object_end(response);
|
|
|
|
n = node_map_next(cmd->dstate->nodes, &i);
|
|
|
|
}
|
|
|
|
|
|
|
|
json_array_end(response);
|
|
|
|
json_object_end(response);
|
|
|
|
command_success(cmd, response);
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct json_command getnodes_command = {
|
|
|
|
"getnodes",
|
|
|
|
json_getnodes,
|
|
|
|
"List all known nodes in the network.",
|
|
|
|
"Returns a 'nodes' array"
|
|
|
|
};
|