|
|
|
#ifndef LIGHTNING_LIGHTNINGD_PEER_CONTROL_H
|
|
|
|
#define LIGHTNING_LIGHTNINGD_PEER_CONTROL_H
|
|
|
|
#include "config.h"
|
|
|
|
#include <ccan/compiler/compiler.h>
|
|
|
|
#include <ccan/crypto/shachain/shachain.h>
|
|
|
|
#include <ccan/list/list.h>
|
|
|
|
#include <common/channel_config.h>
|
|
|
|
#include <common/htlc.h>
|
|
|
|
#include <common/json.h>
|
|
|
|
#include <common/wireaddr.h>
|
|
|
|
#include <lightningd/channel.h>
|
|
|
|
#include <lightningd/channel_state.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <wallet/wallet.h>
|
|
|
|
#include <wire/peer_wire.h>
|
|
|
|
|
|
|
|
struct crypto_state;
|
|
|
|
|
|
|
|
struct peer {
|
|
|
|
/* Inside ld->peers. */
|
|
|
|
struct list_node list;
|
|
|
|
|
|
|
|
/* Master context */
|
|
|
|
struct lightningd *ld;
|
|
|
|
|
|
|
|
/* Database ID of the peer */
|
|
|
|
u64 dbid;
|
|
|
|
|
|
|
|
/* ID of peer */
|
|
|
|
struct pubkey id;
|
|
|
|
|
|
|
|
/* Our channels */
|
|
|
|
struct list_head channels;
|
|
|
|
|
|
|
|
/* Our (only) uncommitted channel, still opening. */
|
|
|
|
struct uncommitted_channel *uncommitted_channel;
|
|
|
|
|
|
|
|
/* History */
|
|
|
|
struct log_book *log_book;
|
|
|
|
|
|
|
|
/* Where we connected to, or it connected from. */
|
|
|
|
struct wireaddr_internal addr;
|
|
|
|
|
|
|
|
/* We keep a copy of their feature bits */
|
|
|
|
const u8 *localfeatures, *globalfeatures;
|
|
|
|
|
|
|
|
/* If we open a channel our direction will be this */
|
|
|
|
u8 direction;
|
|
|
|
|
|
|
|
#if DEVELOPER
|
|
|
|
/* Swallow incoming HTLCs (for testing) */
|
|
|
|
bool ignore_htlcs;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
struct peer *find_peer_by_dbid(struct lightningd *ld, u64 dbid);
|
|
|
|
|
|
|
|
struct peer *new_peer(struct lightningd *ld, u64 dbid,
|
|
|
|
const struct pubkey *id,
|
|
|
|
const struct wireaddr_internal *addr);
|
|
|
|
|
|
|
|
/* Last one out deletes peer. Also removes from db. */
|
|
|
|
void maybe_delete_peer(struct peer *peer);
|
|
|
|
|
|
|
|
struct peer *peer_by_id(struct lightningd *ld, const struct pubkey *id);
|
|
|
|
struct peer *peer_from_json(struct lightningd *ld,
|
|
|
|
const char *buffer,
|
|
|
|
const jsmntok_t *peeridtok);
|
|
|
|
|
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
|
|
|
void peer_connected(struct lightningd *ld, const u8 *msg,
|
|
|
|
int peer_fd, int gossip_fd);
|
|
|
|
|
|
|
|
/* Could be configurable. */
|
|
|
|
#define OUR_CHANNEL_FLAGS CHANNEL_FLAGS_ANNOUNCE_CHANNEL
|
|
|
|
|
|
|
|
void channel_errmsg(struct channel *channel,
|
|
|
|
int peer_fd, int gossip_fd,
|
|
|
|
const struct crypto_state *cs,
|
|
|
|
const struct channel_id *channel_id,
|
|
|
|
const char *desc,
|
|
|
|
const u8 *err_for_them);
|
|
|
|
|
|
|
|
u8 *p2wpkh_for_keyidx(const tal_t *ctx, struct lightningd *ld, u64 keyidx);
|
|
|
|
|
|
|
|
/* We've loaded peers from database, set them going. */
|
|
|
|
void activate_peers(struct lightningd *ld);
|
|
|
|
|
|
|
|
void drop_to_chain(struct lightningd *ld, struct channel *channel, bool cooperative);
|
|
|
|
|
|
|
|
void channel_watch_funding(struct lightningd *ld, struct channel *channel);
|
|
|
|
|
|
|
|
/* Pull peers, channels and HTLCs from db, and wire them up. */
|
|
|
|
void load_channels_from_wallet(struct lightningd *ld);
|
|
|
|
|
|
|
|
#if DEVELOPER
|
|
|
|
void peer_dev_memleak(struct command *cmd);
|
|
|
|
#endif /* DEVELOPER */
|
|
|
|
|
|
|
|
#endif /* LIGHTNING_LIGHTNINGD_PEER_CONTROL_H */
|