|
|
|
#include <common/cryptomsg.h>
|
|
|
|
#include <common/wireaddr.h>
|
|
|
|
#include <wire/gen_onion_wire.h>
|
|
|
|
|
gossipd: rewrite to do the handshake internally.
Now the flow is much simpler from a lightningd POV:
1. If we want to connect to a peer, just send gossipd `gossipctl_reach_peer`.
2. Every new peer, gossipd hands up to lightningd, with global/local features
and the peer fd and a gossip fd using `gossip_peer_connected`
3. If lightningd doesn't want it, it just hands the peerfd and global/local
features back to gossipd using `gossipctl_handle_peer`
4. If a peer sends a non-gossip msg (eg `open_channel`) the gossipd sends
it up using `gossip_peer_nongossip`.
5. If lightningd wants to fund a channel, it simply calls `release_channel`.
Notes:
* There's no more "unique_id": we use the peer id.
* For the moment, we don't ask gossipd when we're told to list peers, so
connected peers without a channel don't appear in the JSON getpeers API.
* We add a `gossipctl_peer_addrhint` for the moment, so you can connect to
a specific ip/port, but using other sources is a TODO.
* We now (correctly) only give up on reaching a peer after we exchange init
messages, which changes the test_disconnect case.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
7 years ago
|
|
|
# Initialize the gossip daemon.
|
|
|
|
gossipctl_init,3000
|
|
|
|
gossipctl_init,,broadcast_interval_msec,u32
|
|
|
|
gossipctl_init,,chain_hash,struct bitcoin_blkid
|
gossipd: rewrite to do the handshake internally.
Now the flow is much simpler from a lightningd POV:
1. If we want to connect to a peer, just send gossipd `gossipctl_reach_peer`.
2. Every new peer, gossipd hands up to lightningd, with global/local features
and the peer fd and a gossip fd using `gossip_peer_connected`
3. If lightningd doesn't want it, it just hands the peerfd and global/local
features back to gossipd using `gossipctl_handle_peer`
4. If a peer sends a non-gossip msg (eg `open_channel`) the gossipd sends
it up using `gossip_peer_nongossip`.
5. If lightningd wants to fund a channel, it simply calls `release_channel`.
Notes:
* There's no more "unique_id": we use the peer id.
* For the moment, we don't ask gossipd when we're told to list peers, so
connected peers without a channel don't appear in the JSON getpeers API.
* We add a `gossipctl_peer_addrhint` for the moment, so you can connect to
a specific ip/port, but using other sources is a TODO.
* We now (correctly) only give up on reaching a peer after we exchange init
messages, which changes the test_disconnect case.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
7 years ago
|
|
|
gossipctl_init,,id,struct pubkey
|
|
|
|
gossipctl_init,,gflen,u16
|
|
|
|
gossipctl_init,,globalfeatures,gflen*u8
|
|
|
|
gossipctl_init,,rgb,3*u8
|
|
|
|
gossipctl_init,,alias,32*u8
|
|
|
|
gossipctl_init,,update_channel_interval,u32
|
|
|
|
gossipctl_init,,num_announcable,u16
|
|
|
|
gossipctl_init,,announcable,num_announcable*struct wireaddr
|
gossipd: rewrite to do the handshake internally.
Now the flow is much simpler from a lightningd POV:
1. If we want to connect to a peer, just send gossipd `gossipctl_reach_peer`.
2. Every new peer, gossipd hands up to lightningd, with global/local features
and the peer fd and a gossip fd using `gossip_peer_connected`
3. If lightningd doesn't want it, it just hands the peerfd and global/local
features back to gossipd using `gossipctl_handle_peer`
4. If a peer sends a non-gossip msg (eg `open_channel`) the gossipd sends
it up using `gossip_peer_nongossip`.
5. If lightningd wants to fund a channel, it simply calls `release_channel`.
Notes:
* There's no more "unique_id": we use the peer id.
* For the moment, we don't ask gossipd when we're told to list peers, so
connected peers without a channel don't appear in the JSON getpeers API.
* We add a `gossipctl_peer_addrhint` for the moment, so you can connect to
a specific ip/port, but using other sources is a TODO.
* We now (correctly) only give up on reaching a peer after we exchange init
messages, which changes the test_disconnect case.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
7 years ago
|
|
|
|
|
|
|
# Pass JSON-RPC getnodes call through
|
|
|
|
gossip_getnodes_request,3005
|
|
|
|
gossip_getnodes_request,,id,?struct pubkey
|
|
|
|
|
|
|
|
#include <lightningd/gossip_msg.h>
|
|
|
|
gossip_getnodes_reply,3105
|
|
|
|
gossip_getnodes_reply,,num_nodes,u16
|
|
|
|
gossip_getnodes_reply,,nodes,num_nodes*struct gossip_getnodes_entry
|
|
|
|
|
|
|
|
# Pass JSON-RPC getroute call through
|
|
|
|
gossip_getroute_request,3006
|
|
|
|
gossip_getroute_request,,source,struct pubkey
|
|
|
|
gossip_getroute_request,,destination,struct pubkey
|
|
|
|
gossip_getroute_request,,msatoshi,u64
|
|
|
|
# We don't pass doubles, so pass riskfactor * 1000000.
|
|
|
|
gossip_getroute_request,,riskfactor_by_million,u64
|
|
|
|
gossip_getroute_request,,final_cltv,u32
|
|
|
|
gossip_getroute_request,,fuzz,double
|
|
|
|
gossip_getroute_request,,num_excluded,u16
|
|
|
|
gossip_getroute_request,,excluded,num_excluded*struct short_channel_id_dir
|
|
|
|
gossip_getroute_request,,max_hops,u32
|
|
|
|
|
|
|
|
gossip_getroute_reply,3106
|
|
|
|
gossip_getroute_reply,,num_hops,u16
|
|
|
|
gossip_getroute_reply,,hops,num_hops*struct route_hop
|
|
|
|
|
|
|
|
gossip_getchannels_request,3007
|
|
|
|
gossip_getchannels_request,,short_channel_id,?struct short_channel_id
|
|
|
|
gossip_getchannels_request,,source,?struct pubkey
|
|
|
|
|
|
|
|
gossip_getchannels_reply,3107
|
|
|
|
gossip_getchannels_reply,,num_channels,u16
|
|
|
|
gossip_getchannels_reply,,nodes,num_channels*struct gossip_getchannels_entry
|
|
|
|
|
gossipd: rewrite to do the handshake internally.
Now the flow is much simpler from a lightningd POV:
1. If we want to connect to a peer, just send gossipd `gossipctl_reach_peer`.
2. Every new peer, gossipd hands up to lightningd, with global/local features
and the peer fd and a gossip fd using `gossip_peer_connected`
3. If lightningd doesn't want it, it just hands the peerfd and global/local
features back to gossipd using `gossipctl_handle_peer`
4. If a peer sends a non-gossip msg (eg `open_channel`) the gossipd sends
it up using `gossip_peer_nongossip`.
5. If lightningd wants to fund a channel, it simply calls `release_channel`.
Notes:
* There's no more "unique_id": we use the peer id.
* For the moment, we don't ask gossipd when we're told to list peers, so
connected peers without a channel don't appear in the JSON getpeers API.
* We add a `gossipctl_peer_addrhint` for the moment, so you can connect to
a specific ip/port, but using other sources is a TODO.
* We now (correctly) only give up on reaching a peer after we exchange init
messages, which changes the test_disconnect case.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
7 years ago
|
|
|
# Ping/pong test. Waits for a reply if it expects one.
|
|
|
|
gossip_ping,3008
|
gossipd: rewrite to do the handshake internally.
Now the flow is much simpler from a lightningd POV:
1. If we want to connect to a peer, just send gossipd `gossipctl_reach_peer`.
2. Every new peer, gossipd hands up to lightningd, with global/local features
and the peer fd and a gossip fd using `gossip_peer_connected`
3. If lightningd doesn't want it, it just hands the peerfd and global/local
features back to gossipd using `gossipctl_handle_peer`
4. If a peer sends a non-gossip msg (eg `open_channel`) the gossipd sends
it up using `gossip_peer_nongossip`.
5. If lightningd wants to fund a channel, it simply calls `release_channel`.
Notes:
* There's no more "unique_id": we use the peer id.
* For the moment, we don't ask gossipd when we're told to list peers, so
connected peers without a channel don't appear in the JSON getpeers API.
* We add a `gossipctl_peer_addrhint` for the moment, so you can connect to
a specific ip/port, but using other sources is a TODO.
* We now (correctly) only give up on reaching a peer after we exchange init
messages, which changes the test_disconnect case.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
7 years ago
|
|
|
gossip_ping,,id,struct pubkey
|
|
|
|
gossip_ping,,num_pong_bytes,u16
|
|
|
|
gossip_ping,,len,u16
|
|
|
|
|
|
|
|
gossip_ping_reply,3108
|
|
|
|
gossip_ping_reply,,id,struct pubkey
|
gossipd: rewrite to do the handshake internally.
Now the flow is much simpler from a lightningd POV:
1. If we want to connect to a peer, just send gossipd `gossipctl_reach_peer`.
2. Every new peer, gossipd hands up to lightningd, with global/local features
and the peer fd and a gossip fd using `gossip_peer_connected`
3. If lightningd doesn't want it, it just hands the peerfd and global/local
features back to gossipd using `gossipctl_handle_peer`
4. If a peer sends a non-gossip msg (eg `open_channel`) the gossipd sends
it up using `gossip_peer_nongossip`.
5. If lightningd wants to fund a channel, it simply calls `release_channel`.
Notes:
* There's no more "unique_id": we use the peer id.
* For the moment, we don't ask gossipd when we're told to list peers, so
connected peers without a channel don't appear in the JSON getpeers API.
* We add a `gossipctl_peer_addrhint` for the moment, so you can connect to
a specific ip/port, but using other sources is a TODO.
* We now (correctly) only give up on reaching a peer after we exchange init
messages, which changes the test_disconnect case.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
7 years ago
|
|
|
# False if id in gossip_ping was unknown.
|
|
|
|
gossip_ping_reply,,sent,bool
|
|
|
|
# 0 == no pong expected
|
|
|
|
gossip_ping_reply,,totlen,u16
|
|
|
|
|
|
|
|
# Test of query_short_channel_ids. Master->gossipd
|
|
|
|
gossip_query_scids,3031
|
|
|
|
gossip_query_scids,,id,struct pubkey
|
|
|
|
gossip_query_scids,,num_ids,u16
|
|
|
|
gossip_query_scids,,ids,num_ids*struct short_channel_id
|
|
|
|
|
|
|
|
# Gossipd -> master
|
|
|
|
gossip_scids_reply,3131
|
|
|
|
gossip_scids_reply,,ok,bool
|
|
|
|
gossip_scids_reply,,complete,bool
|
|
|
|
|
|
|
|
# Test gossip timestamp filtering.
|
|
|
|
gossip_send_timestamp_filter,3028
|
|
|
|
gossip_send_timestamp_filter,,id,struct pubkey
|
|
|
|
gossip_send_timestamp_filter,,first_timestamp,u32
|
|
|
|
gossip_send_timestamp_filter,,timestamp_range,u32
|
|
|
|
|
|
|
|
# Test of query_channel_range. Master->gossipd
|
|
|
|
gossip_query_channel_range,3029
|
|
|
|
gossip_query_channel_range,,id,struct pubkey
|
|
|
|
gossip_query_channel_range,,first_blocknum,u32
|
|
|
|
gossip_query_channel_range,,number_of_blocks,u32
|
|
|
|
|
|
|
|
# Gossipd -> master
|
|
|
|
gossip_query_channel_range_reply,3129
|
|
|
|
gossip_query_channel_range_reply,,final_first_block,u32
|
|
|
|
gossip_query_channel_range_reply,,final_num_blocks,u32
|
|
|
|
gossip_query_channel_range_reply,,final_complete,bool
|
|
|
|
gossip_query_channel_range_reply,,num,u16
|
|
|
|
gossip_query_channel_range_reply,,scids,num*struct short_channel_id
|
|
|
|
|
|
|
|
# Set artificial maximum reply_channel_range size. Master->gossipd
|
|
|
|
gossip_dev_set_max_scids_encode_size,3030
|
|
|
|
gossip_dev_set_max_scids_encode_size,,max,u32
|
|
|
|
|
|
|
|
# Given a short_channel_id, return the other endpoint (or none if DNE)
|
|
|
|
gossip_get_channel_peer,3009
|
|
|
|
gossip_get_channel_peer,,channel_id,struct short_channel_id
|
|
|
|
|
|
|
|
gossip_get_channel_peer_reply,3109
|
|
|
|
gossip_get_channel_peer_reply,,peer_id,?struct pubkey
|
|
|
|
|
|
|
|
# gossipd->master: we're closing this channel.
|
|
|
|
gossip_local_channel_close,3027
|
|
|
|
gossip_local_channel_close,,short_channel_id,struct short_channel_id
|
|
|
|
|
|
|
|
# Gossipd->master get this tx output please.
|
|
|
|
gossip_get_txout,3018
|
|
|
|
gossip_get_txout,,short_channel_id,struct short_channel_id
|
|
|
|
|
|
|
|
# master->gossipd here is the output, or empty if none.
|
|
|
|
gossip_get_txout_reply,3118
|
|
|
|
gossip_get_txout_reply,,short_channel_id,struct short_channel_id
|
|
|
|
gossip_get_txout_reply,,satoshis,u64
|
|
|
|
gossip_get_txout_reply,,len,u16
|
|
|
|
gossip_get_txout_reply,,outscript,len*u8
|
|
|
|
|
|
|
|
# master->gossipd an htlc failed with this onion error.
|
|
|
|
gossip_payment_failure,3021
|
|
|
|
gossip_payment_failure,,erring_node,struct pubkey
|
|
|
|
gossip_payment_failure,,erring_channel,struct short_channel_id
|
|
|
|
gossip_payment_failure,,erring_channel_direction,u8
|
|
|
|
gossip_payment_failure,,len,u16
|
|
|
|
gossip_payment_failure,,error,len*u8
|
|
|
|
|
|
|
|
# master -> gossipd: a potential funding outpoint was spent, please forget the eventual channel
|
|
|
|
gossip_outpoint_spent,3024
|
|
|
|
gossip_outpoint_spent,,short_channel_id,struct short_channel_id
|
|
|
|
|
|
|
|
# master -> gossipd: stop gossip timers.
|
|
|
|
gossip_dev_suppress,3032
|
|
|
|
|
|
|
|
# master -> gossipd: do you have a memleak?
|
|
|
|
gossip_dev_memleak,3033
|
|
|
|
|
|
|
|
gossip_dev_memleak_reply,3133
|
|
|
|
gossip_dev_memleak_reply,,leak,bool
|
|
|
|
|
|
|
|
#include <common/bolt11.h>
|
|
|
|
|
|
|
|
# master -> gossipd: get route_info for our incoming channels
|
|
|
|
gossip_get_incoming_channels,3025
|
|
|
|
gossip_get_incoming_channels,,private_too,?bool
|
|
|
|
|
|
|
|
# gossipd -> master: here they are.
|
|
|
|
gossip_get_incoming_channels_reply,3125
|
|
|
|
gossip_get_incoming_channels_reply,,num,u16
|
|
|
|
gossip_get_incoming_channels_reply,,route_info,num*struct route_info
|