2017-01-10 06:07:51 +01:00
|
|
|
#ifndef LIGHTNING_LIGHTNINGD_LIGHTNINGD_H
|
|
|
|
#define LIGHTNING_LIGHTNINGD_LIGHTNINGD_H
|
|
|
|
#include "config.h"
|
2017-07-10 10:31:35 +02:00
|
|
|
#include <bitcoin/chainparams.h>
|
2017-02-24 06:52:56 +01:00
|
|
|
#include <bitcoin/privkey.h>
|
2017-01-10 06:08:33 +01:00
|
|
|
#include <ccan/container_of/container_of.h>
|
2017-08-28 18:04:01 +02:00
|
|
|
#include <ccan/time/time.h>
|
|
|
|
#include <ccan/timer/timer.h>
|
2018-03-26 02:08:43 +02:00
|
|
|
#include <common/json_escaped.h>
|
2017-04-01 13:01:13 +02:00
|
|
|
#include <lightningd/htlc_end.h>
|
2017-08-28 18:04:01 +02:00
|
|
|
#include <stdio.h>
|
2018-03-02 14:56:39 +01:00
|
|
|
#include <wallet/txfilter.h>
|
2017-05-23 22:07:20 +02:00
|
|
|
#include <wallet/wallet.h>
|
2017-01-10 06:07:51 +01:00
|
|
|
|
2017-08-28 18:04:01 +02:00
|
|
|
/* Various adjustable things. */
|
|
|
|
struct config {
|
|
|
|
/* How long do we want them to lock up their funds? (blocks) */
|
|
|
|
u32 locktime_blocks;
|
|
|
|
|
|
|
|
/* How long do we let them lock up our funds? (blocks) */
|
|
|
|
u32 locktime_max;
|
|
|
|
|
|
|
|
/* How many confirms until we consider an anchor "settled". */
|
|
|
|
u32 anchor_confirms;
|
|
|
|
|
|
|
|
/* Maximum percent of fee rate we'll accept. */
|
|
|
|
u32 commitment_fee_max_percent;
|
|
|
|
|
|
|
|
/* Minimum percent of fee rate we'll accept. */
|
|
|
|
u32 commitment_fee_min_percent;
|
|
|
|
|
|
|
|
/* Percent of fee rate we'll use. */
|
|
|
|
u32 commitment_fee_percent;
|
|
|
|
|
2017-10-23 06:16:57 +02:00
|
|
|
/* Minimum CLTV to subtract from incoming HTLCs to outgoing */
|
|
|
|
u32 cltv_expiry_delta;
|
|
|
|
|
|
|
|
/* Minimum CLTV if we're the final hop.*/
|
|
|
|
u32 cltv_final;
|
|
|
|
|
2017-08-28 18:04:01 +02:00
|
|
|
/* Fee rates. */
|
|
|
|
u32 fee_base;
|
|
|
|
s32 fee_per_satoshi;
|
|
|
|
|
|
|
|
/* How long between changing commit and sending COMMIT message. */
|
2018-05-17 06:46:22 +02:00
|
|
|
u32 commit_time_ms;
|
2017-08-28 18:04:01 +02:00
|
|
|
|
2018-01-10 03:43:23 +01:00
|
|
|
/* How often to broadcast gossip (msec) */
|
|
|
|
u32 broadcast_interval;
|
|
|
|
|
2018-01-09 15:45:07 +01:00
|
|
|
/* Channel update interval */
|
|
|
|
u32 channel_update_interval;
|
2018-01-16 10:24:46 +01:00
|
|
|
|
|
|
|
/* Do we let the funder set any fee rate they want */
|
|
|
|
bool ignore_fee_limits;
|
2018-04-18 15:23:15 +02:00
|
|
|
|
|
|
|
/* Number of blocks to rescan from the current head, or absolute
|
|
|
|
* blockheight if rescan >= 500'000 */
|
|
|
|
s32 rescan;
|
2018-05-10 01:18:19 +02:00
|
|
|
|
|
|
|
/* ipv6 bind disable */
|
|
|
|
bool no_ipv6_bind;
|
2018-06-11 19:50:37 +02:00
|
|
|
|
|
|
|
/* Accept fee changes only if they are in the range our_fee -
|
|
|
|
* our_fee*multiplier */
|
|
|
|
u32 max_fee_multiplier;
|
2018-06-20 13:11:25 +02:00
|
|
|
|
|
|
|
/* Are we allowed to use DNS lookup for peers. */
|
|
|
|
bool use_dns;
|
2017-08-28 18:04:01 +02:00
|
|
|
};
|
|
|
|
|
2017-08-28 18:09:01 +02:00
|
|
|
struct lightningd {
|
|
|
|
/* The directory to find all the subdaemons. */
|
|
|
|
const char *daemon_dir;
|
2017-08-28 18:04:01 +02:00
|
|
|
|
2018-02-16 03:00:41 +01:00
|
|
|
/* Are we told to run in the background. */
|
|
|
|
bool daemon;
|
|
|
|
|
2018-09-03 02:41:27 +02:00
|
|
|
int pid_fd;
|
|
|
|
|
2017-08-28 18:04:01 +02:00
|
|
|
/* Our config dir, and rpc file */
|
|
|
|
char *config_dir;
|
2018-07-24 22:32:58 +02:00
|
|
|
|
|
|
|
/* Location of the RPC socket. */
|
2017-08-28 18:04:01 +02:00
|
|
|
char *rpc_filename;
|
|
|
|
|
2018-07-24 22:32:58 +02:00
|
|
|
/* The listener for the RPC socket. Can be shut down separately from the
|
|
|
|
* rest of the daemon to allow a clean shutdown, which frees all pending
|
|
|
|
* cmds in a DB transaction. */
|
|
|
|
struct io_listener *rpc_listener;
|
|
|
|
|
2018-07-11 05:11:09 +02:00
|
|
|
/* Configuration file name */
|
|
|
|
char *config_filename;
|
2017-08-28 18:04:01 +02:00
|
|
|
/* Configuration settings. */
|
|
|
|
struct config config;
|
|
|
|
|
2018-02-18 13:56:46 +01:00
|
|
|
/* This log_book is owned by all the struct logs */
|
2017-08-28 18:09:01 +02:00
|
|
|
struct log_book *log_book;
|
2018-02-18 13:56:46 +01:00
|
|
|
/* Log for general stuff. */
|
2017-08-28 18:09:01 +02:00
|
|
|
struct log *log;
|
2018-01-29 01:30:15 +01:00
|
|
|
const char *logfile;
|
2017-08-28 18:04:01 +02:00
|
|
|
|
|
|
|
/* This is us. */
|
|
|
|
struct pubkey id;
|
|
|
|
|
2017-10-23 07:05:28 +02:00
|
|
|
/* My name is... my favorite color is... */
|
2017-11-24 14:43:31 +01:00
|
|
|
u8 *alias; /* At least 32 bytes (zero-filled) */
|
2017-10-23 07:05:28 +02:00
|
|
|
u8 *rgb; /* tal_len() == 3. */
|
|
|
|
|
2017-08-28 18:09:01 +02:00
|
|
|
/* Any pending timers. */
|
|
|
|
struct timers timers;
|
2017-01-10 06:07:51 +01:00
|
|
|
|
2017-08-28 18:09:01 +02:00
|
|
|
/* Port we're listening on */
|
|
|
|
u16 portnum;
|
2017-01-10 06:08:33 +01:00
|
|
|
|
2018-05-07 05:44:40 +02:00
|
|
|
/* Do we want to reconnect to other peers? */
|
|
|
|
bool reconnect;
|
|
|
|
|
|
|
|
/* Do we want to listen for other peers? */
|
|
|
|
bool listen;
|
|
|
|
|
2018-05-07 06:28:12 +02:00
|
|
|
/* Do we want to guess addresses to listen and announce? */
|
|
|
|
bool autolisten;
|
|
|
|
|
2018-05-07 06:29:22 +02:00
|
|
|
/* Setup: Addresses to bind/announce to the network (tal_count()) */
|
|
|
|
struct wireaddr_internal *proposed_wireaddr;
|
|
|
|
/* Setup: And the bitset for each, whether to listen, announce or both */
|
|
|
|
enum addr_listen_announce *proposed_listen_announce;
|
|
|
|
|
|
|
|
/* Actual bindings and announcables from gossipd */
|
|
|
|
struct wireaddr_internal *binding;
|
|
|
|
struct wireaddr *announcable;
|
2017-10-23 06:15:38 +02:00
|
|
|
|
2017-01-10 06:08:33 +01:00
|
|
|
/* Bearer of all my secrets. */
|
2017-06-24 08:50:23 +02:00
|
|
|
int hsm_fd;
|
2018-07-09 13:17:59 +02:00
|
|
|
struct subd *hsm;
|
2017-01-10 06:08:33 +01:00
|
|
|
|
2018-07-24 08:18:58 +02:00
|
|
|
/* Daemon for routing */
|
|
|
|
struct subd *gossip;
|
|
|
|
|
2017-01-10 06:08:33 +01:00
|
|
|
/* Daemon looking after peers during init / before channel. */
|
2018-07-24 08:18:58 +02:00
|
|
|
struct subd *connectd;
|
2017-01-10 06:08:33 +01:00
|
|
|
|
2017-01-10 06:08:33 +01:00
|
|
|
/* All peers we're tracking. */
|
|
|
|
struct list_head peers;
|
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>
2017-10-11 12:09:49 +02:00
|
|
|
|
|
|
|
/* Outstanding connect commands. */
|
|
|
|
struct list_head connects;
|
2017-02-21 05:45:29 +01:00
|
|
|
|
2017-03-07 01:56:38 +01:00
|
|
|
/* Our chain topology. */
|
|
|
|
struct chain_topology *topology;
|
|
|
|
|
2017-04-01 13:01:13 +02:00
|
|
|
/* HTLCs in flight. */
|
2017-06-20 07:53:03 +02:00
|
|
|
struct htlc_in_map htlcs_in;
|
|
|
|
struct htlc_out_map htlcs_out;
|
2017-04-24 14:31:26 +02:00
|
|
|
|
2017-05-23 22:07:20 +02:00
|
|
|
struct wallet *wallet;
|
2017-07-10 10:31:35 +02:00
|
|
|
|
2018-03-10 07:41:45 +01:00
|
|
|
/* Outstanding waitsendpay commands. */
|
|
|
|
struct list_head waitsendpay_commands;
|
2018-03-10 08:44:28 +01:00
|
|
|
/* Outstanding sendpay commands. */
|
|
|
|
struct list_head sendpay_commands;
|
2018-04-10 08:03:15 +02:00
|
|
|
/* Outstanding close commands. */
|
|
|
|
struct list_head close_commands;
|
2018-02-02 01:55:06 +01:00
|
|
|
|
2017-08-28 18:09:01 +02:00
|
|
|
/* Maintained by invoices.c */
|
|
|
|
struct invoices *invoices;
|
|
|
|
|
2017-11-27 16:20:10 +01:00
|
|
|
/* Transaction filter matching what we're interested in */
|
|
|
|
struct txfilter *owned_txfilter;
|
|
|
|
|
2018-02-20 00:00:09 +01:00
|
|
|
/* PID file */
|
|
|
|
char *pidfile;
|
|
|
|
|
2018-03-18 13:22:21 +01:00
|
|
|
/* Initial autocleaninvoice settings. */
|
|
|
|
u64 ini_autocleaninvoice_cycle;
|
|
|
|
u64 ini_autocleaninvoice_expiredby;
|
|
|
|
|
2018-05-07 01:01:49 +02:00
|
|
|
/* Number of blocks we wait for a channel to get funded
|
|
|
|
* if we are the fundee. */
|
|
|
|
u32 max_funding_unconfirmed;
|
|
|
|
|
2017-10-24 04:06:14 +02:00
|
|
|
#if DEVELOPER
|
|
|
|
/* If we want to debug a subdaemon. */
|
|
|
|
const char *dev_debug_subdaemon;
|
|
|
|
|
|
|
|
/* If we have a --dev-disconnect file */
|
|
|
|
int dev_disconnect_fd;
|
|
|
|
|
|
|
|
/* If we have --dev-fail-on-subdaemon-fail */
|
|
|
|
bool dev_subdaemon_fail;
|
2017-12-15 11:17:54 +01:00
|
|
|
|
2018-05-07 06:29:22 +02:00
|
|
|
/* Allow and accept localhost node_announcement addresses */
|
|
|
|
bool dev_allow_localhost;
|
|
|
|
|
2017-12-15 11:17:54 +01:00
|
|
|
/* Things we've marked as not leaking. */
|
|
|
|
const void **notleaks;
|
2017-10-24 04:06:14 +02:00
|
|
|
#endif /* DEVELOPER */
|
2018-05-10 01:18:19 +02:00
|
|
|
|
|
|
|
/* tor support */
|
2018-05-10 01:18:24 +02:00
|
|
|
struct wireaddr *proxyaddr;
|
|
|
|
bool use_proxy_always;
|
2018-05-10 01:18:19 +02:00
|
|
|
char *tor_service_password;
|
2018-05-10 01:18:24 +02:00
|
|
|
bool pure_tor_setup;
|
2017-01-10 06:07:51 +01:00
|
|
|
};
|
2017-01-10 06:08:33 +01:00
|
|
|
|
2018-03-06 19:27:21 +01:00
|
|
|
const struct chainparams *get_chainparams(const struct lightningd *ld);
|
2017-12-15 11:18:54 +01:00
|
|
|
|
2018-01-03 12:05:44 +01:00
|
|
|
/* Check we can run subdaemons, and check their versions */
|
2018-09-03 02:42:27 +02:00
|
|
|
void test_subdaemons(const struct lightningd *ld);
|
2018-01-03 12:05:44 +01:00
|
|
|
|
2018-05-06 15:32:01 +02:00
|
|
|
/* Notify lightningd about new blocks. */
|
|
|
|
void notify_new_block(struct lightningd *ld, u32 block_height);
|
|
|
|
|
2017-01-10 06:07:51 +01:00
|
|
|
#endif /* LIGHTNING_LIGHTNINGD_LIGHTNINGD_H */
|