mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
4ffda340d3
And turn "" includes into full-path (which makes it easier to put config.h first, and finds some cases check-includes.sh missed previously). config.h sets _GNU_SOURCE which really needs to be done before any '#includes': we mainly got away with it with glibc, but other platforms like Alpine may have stricter requirements. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
226 lines
6.6 KiB
C
226 lines
6.6 KiB
C
#include "config.h"
|
|
#include <common/bolt11.h>
|
|
#include <common/json_helpers.h>
|
|
#include <common/type_to_string.h>
|
|
#include <gossipd/gossipd_wiregen.h>
|
|
#include <lightningd/channel.h>
|
|
#include <lightningd/lightningd.h>
|
|
#include <lightningd/peer_control.h>
|
|
#include <lightningd/routehint.h>
|
|
|
|
static bool scid_in_arr(const struct short_channel_id *scidarr,
|
|
const struct short_channel_id *scid)
|
|
{
|
|
for (size_t i = 0; i < tal_count(scidarr); i++)
|
|
if (short_channel_id_eq(&scidarr[i], scid))
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
struct routehint_candidate *
|
|
routehint_candidates(const tal_t *ctx,
|
|
struct lightningd *ld,
|
|
const char *buf,
|
|
const jsmntok_t *toks,
|
|
const bool *expose_all_private,
|
|
const struct short_channel_id *hints,
|
|
bool *none_public,
|
|
struct amount_msat *avail_capacity,
|
|
struct amount_msat *private_capacity,
|
|
struct amount_msat *deadend_capacity,
|
|
struct amount_msat *offline_capacity)
|
|
{
|
|
struct routehint_candidate *candidates, *privcandidates;
|
|
const jsmntok_t *t, *arr;
|
|
size_t i;
|
|
|
|
log_debug(ld->log, "routehint: %.*s",
|
|
json_tok_full_len(toks),
|
|
json_tok_full(buf, toks));
|
|
|
|
/* We get the full JSON, including result. */
|
|
t = json_get_member(buf, toks, "result");
|
|
if (!t)
|
|
fatal("Missing result from listincoming: %.*s",
|
|
json_tok_full_len(toks),
|
|
json_tok_full(buf, toks));
|
|
arr = json_get_member(buf, t, "incoming");
|
|
|
|
candidates = tal_arr(ctx, struct routehint_candidate, 0);
|
|
privcandidates = tal_arr(tmpctx, struct routehint_candidate, 0);
|
|
*none_public = true;
|
|
*deadend_capacity = AMOUNT_MSAT(0);
|
|
*offline_capacity = AMOUNT_MSAT(0);
|
|
*avail_capacity = AMOUNT_MSAT(0);
|
|
*private_capacity = AMOUNT_MSAT(0);
|
|
|
|
/* We combine the JSON output which knows the peers' details,
|
|
* with our internal information */
|
|
json_for_each_arr(i, t, arr) {
|
|
struct amount_msat capacity;
|
|
const char *err;
|
|
struct routehint_candidate candidate;
|
|
struct amount_msat fee_base;
|
|
struct route_info *r;
|
|
struct peer *peer;
|
|
bool is_public;
|
|
|
|
r = tal(tmpctx, struct route_info);
|
|
|
|
err = json_scan(tmpctx, buf, t,
|
|
"{id:%"
|
|
",short_channel_id:%"
|
|
",fee_base_msat:%"
|
|
",fee_proportional_millionths:%"
|
|
",cltv_expiry_delta:%"
|
|
",incoming_capacity_msat:%"
|
|
"}",
|
|
JSON_SCAN(json_to_node_id, &r->pubkey),
|
|
JSON_SCAN(json_to_short_channel_id,
|
|
&r->short_channel_id),
|
|
JSON_SCAN(json_to_msat, &fee_base),
|
|
JSON_SCAN(json_to_u32,
|
|
&r->fee_proportional_millionths),
|
|
JSON_SCAN(json_to_u16, &r->cltv_expiry_delta),
|
|
JSON_SCAN(json_to_msat, &capacity));
|
|
|
|
if (err) {
|
|
fatal("Invalid return from listincoming (%s): %.*s",
|
|
err,
|
|
json_tok_full_len(toks),
|
|
json_tok_full(buf, toks));
|
|
}
|
|
|
|
/* Do we know about this peer? */
|
|
peer = peer_by_id(ld, &r->pubkey);
|
|
if (!peer) {
|
|
log_debug(ld->log, "%s: unknown peer",
|
|
type_to_string(tmpctx,
|
|
struct short_channel_id,
|
|
&r->short_channel_id));
|
|
continue;
|
|
}
|
|
|
|
/* Does it have a channel in state CHANNELD_NORMAL */
|
|
candidate.c = peer_normal_channel(peer);
|
|
if (!candidate.c) {
|
|
log_debug(ld->log, "%s: abnormal channel",
|
|
type_to_string(tmpctx,
|
|
struct short_channel_id,
|
|
&r->short_channel_id));
|
|
continue;
|
|
}
|
|
|
|
candidate.capacity = channel_amount_receivable(candidate.c);
|
|
|
|
/* Now we can tell if it's public. If so (even if it's otherwise
|
|
* unusable), we *don't* expose private channels! */
|
|
is_public = (candidate.c->channel_flags
|
|
& CHANNEL_FLAGS_ANNOUNCE_CHANNEL);
|
|
|
|
if (is_public)
|
|
*none_public = false;
|
|
|
|
/* If they explicitly say to expose all private ones, consider
|
|
* it public. */
|
|
if (expose_all_private != NULL && *expose_all_private)
|
|
is_public = true;
|
|
|
|
r->fee_base_msat = fee_base.millisatoshis; /* Raw: route_info */
|
|
/* Could wrap: if so ignore */
|
|
if (!amount_msat_eq(amount_msat(r->fee_base_msat), fee_base)) {
|
|
log_debug(ld->log,
|
|
"Peer charging insane fee %.*s; ignoring",
|
|
json_tok_full_len(t),
|
|
json_tok_full(buf, t));
|
|
continue;
|
|
}
|
|
|
|
/* Consider only hints they gave */
|
|
if (hints) {
|
|
log_debug(ld->log, "We have hints!");
|
|
if (!scid_in_arr(hints, &r->short_channel_id)) {
|
|
log_debug(ld->log, "scid %s not in hints",
|
|
type_to_string(tmpctx,
|
|
struct short_channel_id,
|
|
&r->short_channel_id));
|
|
continue;
|
|
}
|
|
/* If they give us a hint, we use even if capacity 0 */
|
|
} else if (amount_msat_eq(capacity, AMOUNT_MSAT(0))) {
|
|
log_debug(ld->log, "%s: deadend",
|
|
type_to_string(tmpctx,
|
|
struct short_channel_id,
|
|
&r->short_channel_id));
|
|
if (!amount_msat_add(deadend_capacity,
|
|
*deadend_capacity,
|
|
candidate.capacity))
|
|
fatal("Overflow summing deadend capacity!");
|
|
continue;
|
|
}
|
|
|
|
/* Is it offline? */
|
|
if (candidate.c->owner == NULL) {
|
|
log_debug(ld->log, "%s: offline",
|
|
type_to_string(tmpctx,
|
|
struct short_channel_id,
|
|
&r->short_channel_id));
|
|
if (!amount_msat_add(offline_capacity,
|
|
*offline_capacity,
|
|
candidate.capacity))
|
|
fatal("Overflow summing offline capacity!");
|
|
continue;
|
|
}
|
|
|
|
/* OK, finish it and append to one of the arrays. */
|
|
if (is_public) {
|
|
log_debug(ld->log, "%s: added to public",
|
|
type_to_string(tmpctx,
|
|
struct short_channel_id,
|
|
&r->short_channel_id));
|
|
candidate.r = tal_steal(candidates, r);
|
|
tal_arr_expand(&candidates, candidate);
|
|
if (!amount_msat_add(avail_capacity,
|
|
*avail_capacity,
|
|
candidate.capacity)) {
|
|
fatal("Overflow summing pub capacities %s + %s",
|
|
type_to_string(tmpctx, struct amount_msat,
|
|
avail_capacity),
|
|
type_to_string(tmpctx, struct amount_msat,
|
|
&candidate.capacity));
|
|
}
|
|
} else {
|
|
log_debug(ld->log, "%s: added to private",
|
|
type_to_string(tmpctx,
|
|
struct short_channel_id,
|
|
&r->short_channel_id));
|
|
candidate.r = tal_steal(privcandidates, r);
|
|
tal_arr_expand(&privcandidates, candidate);
|
|
if (!amount_msat_add(private_capacity,
|
|
*private_capacity,
|
|
candidate.capacity)) {
|
|
fatal("Overflow summing priv capacities %s + %s",
|
|
type_to_string(tmpctx, struct amount_msat,
|
|
private_capacity),
|
|
type_to_string(tmpctx, struct amount_msat,
|
|
&candidate.capacity));
|
|
}
|
|
}
|
|
}
|
|
|
|
/* By default, only consider private channels if there are
|
|
* no public channels *at all* */
|
|
if (expose_all_private == NULL
|
|
&& tal_count(candidates) == 0 && *none_public) {
|
|
log_debug(ld->log, "No publics: using private channels");
|
|
tal_free(candidates);
|
|
candidates = tal_steal(ctx, privcandidates);
|
|
*avail_capacity = *private_capacity;
|
|
/* This reflects *unused* private capacity. */
|
|
*private_capacity = AMOUNT_MSAT(0);
|
|
}
|
|
|
|
return candidates;
|
|
}
|