2018-09-24 03:41:39 +02:00
|
|
|
#include <ccan/array_size/array_size.h>
|
2018-09-27 07:29:11 +02:00
|
|
|
#include <common/bolt11.h>
|
2017-10-23 06:17:38 +02:00
|
|
|
#include <common/wireaddr.h>
|
2017-03-15 10:43:03 +01:00
|
|
|
#include <lightningd/gossip_msg.h>
|
|
|
|
#include <wire/wire.h>
|
|
|
|
|
2018-04-20 10:09:50 +02:00
|
|
|
struct gossip_getnodes_entry *fromwire_gossip_getnodes_entry(const tal_t *ctx,
|
|
|
|
const u8 **pptr, size_t *max)
|
2017-03-15 10:43:03 +01:00
|
|
|
{
|
2017-05-08 23:22:59 +02:00
|
|
|
u8 numaddresses, i;
|
2018-02-08 02:23:46 +01:00
|
|
|
struct gossip_getnodes_entry *entry;
|
2018-06-22 01:53:57 +02:00
|
|
|
u16 flen;
|
2018-02-08 02:23:46 +01:00
|
|
|
|
|
|
|
entry = tal(ctx, struct gossip_getnodes_entry);
|
2019-04-08 11:58:32 +02:00
|
|
|
fromwire_node_id(pptr, max, &entry->nodeid);
|
2018-06-22 01:53:57 +02:00
|
|
|
|
|
|
|
entry->last_timestamp = fromwire_u64(pptr, max);
|
2018-01-16 20:44:32 +01:00
|
|
|
if (entry->last_timestamp < 0) {
|
|
|
|
entry->addresses = NULL;
|
2018-02-08 02:23:46 +01:00
|
|
|
return entry;
|
2018-01-16 20:44:32 +01:00
|
|
|
}
|
2018-09-29 08:33:47 +02:00
|
|
|
|
|
|
|
flen = fromwire_u16(pptr, max);
|
|
|
|
entry->globalfeatures = tal_arr(entry, u8, flen);
|
|
|
|
fromwire_u8_array(pptr, max, entry->globalfeatures, flen);
|
|
|
|
|
2017-05-08 23:22:59 +02:00
|
|
|
numaddresses = fromwire_u8(pptr, max);
|
|
|
|
|
2018-02-08 02:23:46 +01:00
|
|
|
entry->addresses = tal_arr(entry, struct wireaddr, numaddresses);
|
2017-05-08 23:22:59 +02:00
|
|
|
for (i=0; i<numaddresses; i++) {
|
2017-09-01 06:18:55 +02:00
|
|
|
/* Gossipd doesn't hand us addresses we can't understand. */
|
2018-08-05 07:49:17 +02:00
|
|
|
if (!fromwire_wireaddr(pptr, max, &entry->addresses[i])) {
|
2017-09-01 06:18:55 +02:00
|
|
|
fromwire_fail(pptr, max);
|
2018-02-08 02:23:46 +01:00
|
|
|
return NULL;
|
2017-09-01 06:18:55 +02:00
|
|
|
}
|
2017-05-08 23:22:59 +02:00
|
|
|
}
|
2018-09-24 03:41:39 +02:00
|
|
|
fromwire(pptr, max, entry->alias, ARRAY_SIZE(entry->alias));
|
|
|
|
fromwire(pptr, max, entry->color, ARRAY_SIZE(entry->color));
|
2018-06-22 01:53:57 +02:00
|
|
|
|
2018-02-08 02:23:46 +01:00
|
|
|
return entry;
|
2017-03-15 10:43:03 +01:00
|
|
|
}
|
2018-02-08 02:23:46 +01:00
|
|
|
|
2018-04-20 10:09:50 +02:00
|
|
|
void towire_gossip_getnodes_entry(u8 **pptr,
|
|
|
|
const struct gossip_getnodes_entry *entry)
|
2017-03-15 10:43:03 +01:00
|
|
|
{
|
2019-04-08 11:58:32 +02:00
|
|
|
towire_node_id(pptr, &entry->nodeid);
|
2018-01-16 20:44:32 +01:00
|
|
|
towire_u64(pptr, entry->last_timestamp);
|
2017-05-08 23:22:59 +02:00
|
|
|
|
2018-01-16 20:44:32 +01:00
|
|
|
if (entry->last_timestamp < 0)
|
|
|
|
return;
|
|
|
|
|
2018-09-29 08:33:47 +02:00
|
|
|
towire_u16(pptr, tal_count(entry->globalfeatures));
|
|
|
|
towire_u8_array(pptr, entry->globalfeatures,
|
|
|
|
tal_count(entry->globalfeatures));
|
|
|
|
towire_u8(pptr, tal_count(entry->addresses));
|
|
|
|
for (size_t i = 0; i < tal_count(entry->addresses); i++) {
|
2017-10-23 06:17:38 +02:00
|
|
|
towire_wireaddr(pptr, &entry->addresses[i]);
|
2017-05-08 23:22:59 +02:00
|
|
|
}
|
2018-09-24 03:41:39 +02:00
|
|
|
towire(pptr, entry->alias, ARRAY_SIZE(entry->alias));
|
|
|
|
towire(pptr, entry->color, ARRAY_SIZE(entry->color));
|
2017-03-15 10:43:03 +01:00
|
|
|
}
|
2017-03-15 13:36:35 +01:00
|
|
|
|
|
|
|
void fromwire_route_hop(const u8 **pptr, size_t *max, struct route_hop *entry)
|
|
|
|
{
|
2019-04-08 11:58:32 +02:00
|
|
|
fromwire_node_id(pptr, max, &entry->nodeid);
|
2017-04-29 10:52:40 +02:00
|
|
|
fromwire_short_channel_id(pptr, max, &entry->channel_id);
|
2019-01-15 11:04:07 +01:00
|
|
|
entry->direction = fromwire_u8(pptr, max);
|
2019-02-21 03:39:21 +01:00
|
|
|
entry->amount = fromwire_amount_msat(pptr, max);
|
2017-03-15 13:36:35 +01:00
|
|
|
entry->delay = fromwire_u32(pptr, max);
|
|
|
|
}
|
2019-01-15 11:04:07 +01:00
|
|
|
|
2017-03-15 13:36:35 +01:00
|
|
|
void towire_route_hop(u8 **pptr, const struct route_hop *entry)
|
|
|
|
{
|
2019-04-08 11:58:32 +02:00
|
|
|
towire_node_id(pptr, &entry->nodeid);
|
2017-04-29 10:52:40 +02:00
|
|
|
towire_short_channel_id(pptr, &entry->channel_id);
|
2019-01-15 11:04:07 +01:00
|
|
|
towire_u8(pptr, entry->direction);
|
2019-02-21 03:39:21 +01:00
|
|
|
towire_amount_msat(pptr, entry->amount);
|
2017-03-15 13:36:35 +01:00
|
|
|
towire_u32(pptr, entry->delay);
|
|
|
|
}
|
|
|
|
|
2018-09-27 07:29:11 +02:00
|
|
|
void fromwire_route_info(const u8 **pptr, size_t *max, struct route_info *entry)
|
|
|
|
{
|
2019-04-08 11:58:32 +02:00
|
|
|
fromwire_node_id(pptr, max, &entry->pubkey);
|
2018-09-27 07:29:11 +02:00
|
|
|
fromwire_short_channel_id(pptr, max, &entry->short_channel_id);
|
|
|
|
entry->fee_base_msat = fromwire_u32(pptr, max);
|
|
|
|
entry->fee_proportional_millionths = fromwire_u32(pptr, max);
|
|
|
|
entry->cltv_expiry_delta = fromwire_u16(pptr, max);
|
|
|
|
}
|
|
|
|
|
|
|
|
void towire_route_info(u8 **pptr, const struct route_info *entry)
|
|
|
|
{
|
2019-04-08 11:58:32 +02:00
|
|
|
towire_node_id(pptr, &entry->pubkey);
|
2018-09-27 07:29:11 +02:00
|
|
|
towire_short_channel_id(pptr, &entry->short_channel_id);
|
|
|
|
towire_u32(pptr, entry->fee_base_msat);
|
|
|
|
towire_u32(pptr, entry->fee_proportional_millionths);
|
|
|
|
towire_u16(pptr, entry->cltv_expiry_delta);
|
|
|
|
}
|
|
|
|
|
2019-04-08 11:58:44 +02:00
|
|
|
static void fromwire_gossip_halfchannel_entry(const u8 **pptr, size_t *max,
|
|
|
|
struct gossip_halfchannel_entry *entry)
|
2017-03-22 13:30:09 +01:00
|
|
|
{
|
2018-09-20 02:59:46 +02:00
|
|
|
entry->message_flags = fromwire_u8(pptr, max);
|
|
|
|
entry->channel_flags = fromwire_u8(pptr, max);
|
2018-05-10 16:00:38 +02:00
|
|
|
entry->last_update_timestamp = fromwire_u32(pptr, max);
|
2019-04-08 11:58:44 +02:00
|
|
|
entry->delay = fromwire_u32(pptr, max);
|
2018-05-10 16:00:38 +02:00
|
|
|
entry->base_fee_msat = fromwire_u32(pptr, max);
|
|
|
|
entry->fee_per_millionth = fromwire_u32(pptr, max);
|
2017-03-22 13:30:09 +01:00
|
|
|
}
|
|
|
|
|
2019-04-08 11:58:44 +02:00
|
|
|
struct gossip_getchannels_entry *
|
|
|
|
fromwire_gossip_getchannels_entry(const tal_t *ctx,
|
|
|
|
const u8 **pptr, size_t *max)
|
|
|
|
{
|
|
|
|
struct gossip_getchannels_entry *entry;
|
|
|
|
|
|
|
|
entry= tal(ctx, struct gossip_getchannels_entry);
|
|
|
|
fromwire_node_id(pptr, max, &entry->node[0]);
|
|
|
|
fromwire_node_id(pptr, max, &entry->node[1]);
|
|
|
|
entry->sat = fromwire_amount_sat(pptr, max);
|
|
|
|
fromwire_short_channel_id(pptr, max, &entry->short_channel_id);
|
|
|
|
entry->public = fromwire_bool(pptr, max);
|
|
|
|
entry->local_disabled = fromwire_bool(pptr, max);
|
|
|
|
|
|
|
|
if (fromwire_bool(pptr, max)) {
|
|
|
|
entry->e[0] = tal(entry, struct gossip_halfchannel_entry);
|
|
|
|
fromwire_gossip_halfchannel_entry(pptr, max, entry->e[0]);
|
|
|
|
} else
|
|
|
|
entry->e[0] = NULL;
|
|
|
|
if (fromwire_bool(pptr, max)) {
|
|
|
|
entry->e[1] = tal(entry, struct gossip_halfchannel_entry);
|
|
|
|
fromwire_gossip_halfchannel_entry(pptr, max, entry->e[1]);
|
|
|
|
} else
|
|
|
|
entry->e[1] = NULL;
|
|
|
|
|
|
|
|
return entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void towire_gossip_halfchannel_entry(u8 **pptr,
|
|
|
|
const struct gossip_halfchannel_entry *entry)
|
2017-03-22 13:30:09 +01:00
|
|
|
{
|
2018-09-20 02:59:46 +02:00
|
|
|
towire_u8(pptr, entry->message_flags);
|
|
|
|
towire_u8(pptr, entry->channel_flags);
|
2018-05-10 16:00:38 +02:00
|
|
|
towire_u32(pptr, entry->last_update_timestamp);
|
2019-04-08 11:58:44 +02:00
|
|
|
towire_u32(pptr, entry->delay);
|
2018-05-10 16:00:38 +02:00
|
|
|
towire_u32(pptr, entry->base_fee_msat);
|
|
|
|
towire_u32(pptr, entry->fee_per_millionth);
|
2019-04-08 11:58:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void towire_gossip_getchannels_entry(u8 **pptr,
|
|
|
|
const struct gossip_getchannels_entry *entry)
|
|
|
|
{
|
|
|
|
towire_node_id(pptr, &entry->node[0]);
|
|
|
|
towire_node_id(pptr, &entry->node[1]);
|
|
|
|
towire_amount_sat(pptr, entry->sat);
|
|
|
|
towire_short_channel_id(pptr, &entry->short_channel_id);
|
|
|
|
towire_bool(pptr, entry->public);
|
|
|
|
towire_bool(pptr, entry->local_disabled);
|
|
|
|
if (entry->e[0]) {
|
|
|
|
towire_bool(pptr, true);
|
|
|
|
towire_gossip_halfchannel_entry(pptr, entry->e[0]);
|
|
|
|
} else
|
|
|
|
towire_bool(pptr, false);
|
|
|
|
|
|
|
|
if (entry->e[1]) {
|
|
|
|
towire_bool(pptr, true);
|
|
|
|
towire_gossip_halfchannel_entry(pptr, entry->e[1]);
|
|
|
|
} else
|
|
|
|
towire_bool(pptr, false);
|
2017-03-22 13:30:09 +01:00
|
|
|
}
|
2018-07-24 08:18:59 +02:00
|
|
|
|
|
|
|
struct peer_features *
|
|
|
|
fromwire_peer_features(const tal_t *ctx, const u8 **pptr, size_t *max)
|
|
|
|
{
|
|
|
|
struct peer_features *pf = tal(ctx, struct peer_features);
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
len = fromwire_u16(pptr, max);
|
2018-09-28 05:24:24 +02:00
|
|
|
pf->localfeatures = tal_arr(pf, u8, len);
|
|
|
|
fromwire_u8_array(pptr, max, pf->localfeatures, len);
|
2018-07-24 08:18:59 +02:00
|
|
|
|
|
|
|
len = fromwire_u16(pptr, max);
|
2018-09-28 05:24:24 +02:00
|
|
|
pf->globalfeatures = tal_arr(pf, u8, len);
|
|
|
|
fromwire_u8_array(pptr, max, pf->globalfeatures, len);
|
2018-07-24 08:18:59 +02:00
|
|
|
return pf;
|
|
|
|
}
|
|
|
|
|
|
|
|
void towire_peer_features(u8 **pptr, const struct peer_features *pf)
|
|
|
|
{
|
2018-09-28 05:24:24 +02:00
|
|
|
towire_u16(pptr, tal_count(pf->localfeatures));
|
|
|
|
towire_u8_array(pptr, pf->localfeatures, tal_count(pf->localfeatures));
|
|
|
|
towire_u16(pptr, tal_count(pf->globalfeatures));
|
|
|
|
towire_u8_array(pptr, pf->globalfeatures, tal_count(pf->globalfeatures));
|
2018-07-24 08:18:59 +02:00
|
|
|
}
|