2020-01-03 13:01:31 +00:00
|
|
|
package loopd
|
2019-03-06 20:13:50 +00:00
|
|
|
|
|
|
|
import (
|
2020-01-03 13:01:32 +00:00
|
|
|
"context"
|
2020-09-03 11:25:59 +00:00
|
|
|
"crypto/tls"
|
2019-03-06 20:13:50 +00:00
|
|
|
"fmt"
|
2020-01-03 13:01:31 +00:00
|
|
|
"net"
|
2019-03-06 20:13:50 +00:00
|
|
|
"os"
|
2019-03-07 10:37:28 +00:00
|
|
|
"path/filepath"
|
2019-03-21 00:16:07 +00:00
|
|
|
"strings"
|
2019-03-06 20:13:50 +00:00
|
|
|
|
2019-10-28 16:06:07 +00:00
|
|
|
"github.com/jessevdk/go-flags"
|
2020-06-17 20:25:57 +00:00
|
|
|
"github.com/lightninglabs/lndclient"
|
2019-03-07 04:32:24 +00:00
|
|
|
"github.com/lightninglabs/loop"
|
2019-10-28 16:06:07 +00:00
|
|
|
"github.com/lightningnetwork/lnd/build"
|
2020-08-12 14:28:11 +00:00
|
|
|
"github.com/lightningnetwork/lnd/lncfg"
|
2020-04-22 13:53:44 +00:00
|
|
|
"github.com/lightningnetwork/lnd/lnrpc/verrpc"
|
2020-05-15 10:17:59 +00:00
|
|
|
"github.com/lightningnetwork/lnd/signal"
|
2019-03-06 20:13:50 +00:00
|
|
|
)
|
|
|
|
|
2020-04-15 07:10:21 +00:00
|
|
|
const defaultConfigFilename = "loopd.conf"
|
2019-03-06 20:13:50 +00:00
|
|
|
|
2020-04-22 13:53:44 +00:00
|
|
|
var (
|
|
|
|
// LoopMinRequiredLndVersion is the minimum required version of lnd that
|
|
|
|
// is compatible with the current version of the loop client. Also all
|
|
|
|
// listed build tags/subservers need to be enabled.
|
|
|
|
LoopMinRequiredLndVersion = &verrpc.Version{
|
|
|
|
AppMajor: 0,
|
2024-02-09 17:08:13 +00:00
|
|
|
AppMinor: 17,
|
2023-03-29 13:20:19 +00:00
|
|
|
AppPatch: 0,
|
2020-04-22 13:53:44 +00:00
|
|
|
BuildTags: []string{
|
|
|
|
"signrpc", "walletrpc", "chainrpc", "invoicesrpc",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2020-01-03 13:01:32 +00:00
|
|
|
// RPCConfig holds optional options that can be used to make the loop daemon
|
|
|
|
// communicate on custom connections.
|
|
|
|
type RPCConfig struct {
|
|
|
|
// RPCListener is an optional listener that if set will override the
|
|
|
|
// daemon's gRPC settings, and make the gRPC server listen on this
|
|
|
|
// listener.
|
|
|
|
// Note that setting this will also disable REST.
|
|
|
|
RPCListener net.Listener
|
2020-01-03 13:01:32 +00:00
|
|
|
|
|
|
|
// LndConn is an optional connection to an lnd instance. If set it will
|
|
|
|
// override the TCP connection created from daemon's config.
|
|
|
|
LndConn net.Conn
|
2020-01-03 13:01:32 +00:00
|
|
|
}
|
|
|
|
|
2021-11-12 09:14:47 +00:00
|
|
|
// NewListenerConfig creates and returns a new listenerCfg from the passed
|
|
|
|
// config and RPCConfig.
|
|
|
|
func NewListenerConfig(config *Config, rpcCfg RPCConfig) *ListenerCfg {
|
|
|
|
return &ListenerCfg{
|
2020-09-03 11:25:59 +00:00
|
|
|
grpcListener: func(tlsCfg *tls.Config) (net.Listener, error) {
|
2020-01-03 13:01:32 +00:00
|
|
|
// If a custom RPC listener is set, we will listen on
|
|
|
|
// it instead of the regular tcp socket.
|
|
|
|
if rpcCfg.RPCListener != nil {
|
|
|
|
return rpcCfg.RPCListener, nil
|
|
|
|
}
|
|
|
|
|
2020-09-03 11:25:59 +00:00
|
|
|
listener, err := net.Listen("tcp", config.RPCListen)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return tls.NewListener(listener, tlsCfg), nil
|
2020-01-03 13:01:31 +00:00
|
|
|
},
|
2020-09-03 11:25:59 +00:00
|
|
|
restListener: func(tlsCfg *tls.Config) (net.Listener, error) {
|
2020-01-03 13:01:32 +00:00
|
|
|
// If a custom RPC listener is set, we disable REST.
|
|
|
|
if rpcCfg.RPCListener != nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2020-09-03 11:25:59 +00:00
|
|
|
listener, err := net.Listen("tcp", config.RESTListen)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return tls.NewListener(listener, tlsCfg), nil
|
2020-01-03 13:01:31 +00:00
|
|
|
},
|
2020-06-17 20:25:57 +00:00
|
|
|
getLnd: func(network lndclient.Network, cfg *lndConfig) (
|
2020-01-03 13:01:32 +00:00
|
|
|
*lndclient.GrpcLndServices, error) {
|
|
|
|
|
2021-01-11 13:41:26 +00:00
|
|
|
callerCtx, cancel := context.WithCancel(
|
2020-08-13 09:19:11 +00:00
|
|
|
context.Background(),
|
|
|
|
)
|
|
|
|
defer cancel()
|
|
|
|
|
2020-04-22 12:29:31 +00:00
|
|
|
svcCfg := &lndclient.LndServicesConfig{
|
2020-08-13 09:19:11 +00:00
|
|
|
LndAddress: cfg.Host,
|
|
|
|
Network: network,
|
2021-02-05 11:55:45 +00:00
|
|
|
CustomMacaroonPath: cfg.MacaroonPath,
|
2020-08-13 09:19:11 +00:00
|
|
|
TLSPath: cfg.TLSPath,
|
|
|
|
CheckVersion: LoopMinRequiredLndVersion,
|
|
|
|
BlockUntilChainSynced: true,
|
2021-01-11 13:41:26 +00:00
|
|
|
CallerCtx: callerCtx,
|
2021-01-05 11:36:28 +00:00
|
|
|
BlockUntilUnlocked: true,
|
2020-04-22 12:29:31 +00:00
|
|
|
}
|
|
|
|
|
2020-01-03 13:01:32 +00:00
|
|
|
// If a custom lnd connection is specified we use that
|
|
|
|
// directly.
|
|
|
|
if rpcCfg.LndConn != nil {
|
2020-04-22 12:29:31 +00:00
|
|
|
svcCfg.Dialer = func(context.Context, string) (
|
2020-01-03 13:01:32 +00:00
|
|
|
net.Conn, error) {
|
2022-05-20 06:57:06 +00:00
|
|
|
|
2020-01-03 13:01:32 +00:00
|
|
|
return rpcCfg.LndConn, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-13 09:19:11 +00:00
|
|
|
// Before we try to get our client connection, setup
|
|
|
|
// a goroutine which will cancel our lndclient if loopd
|
|
|
|
// is terminated, or exit if our context is cancelled.
|
|
|
|
go func() {
|
|
|
|
select {
|
|
|
|
// If the client decides to kill loop before
|
|
|
|
// lnd is synced, we cancel our context, which
|
|
|
|
// will unblock lndclient.
|
2021-05-17 10:18:00 +00:00
|
|
|
case <-interceptor.ShutdownChannel():
|
2020-08-13 09:19:11 +00:00
|
|
|
cancel()
|
|
|
|
|
|
|
|
// If our sync context was cancelled, we know
|
|
|
|
// that the function exited, which means that
|
|
|
|
// our client synced.
|
2021-01-11 13:41:26 +00:00
|
|
|
case <-callerCtx.Done():
|
2020-08-13 09:19:11 +00:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
// This will block until lnd is synced to chain.
|
2020-04-22 12:29:31 +00:00
|
|
|
return lndclient.NewLndServices(svcCfg)
|
2020-01-03 13:01:32 +00:00
|
|
|
},
|
2020-01-03 13:01:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 10:18:06 +00:00
|
|
|
// Run starts the loop daemon and blocks until it's shut down again.
|
|
|
|
func Run(rpcCfg RPCConfig) error {
|
2020-05-15 10:17:55 +00:00
|
|
|
config := DefaultConfig()
|
2019-03-07 10:37:28 +00:00
|
|
|
|
|
|
|
// Parse command line flags.
|
|
|
|
parser := flags.NewParser(&config, flags.Default)
|
|
|
|
parser.SubcommandsOptional = true
|
|
|
|
|
|
|
|
_, err := parser.Parse()
|
|
|
|
if e, ok := err.(*flags.Error); ok && e.Type == flags.ErrHelp {
|
|
|
|
return nil
|
2019-03-06 20:13:50 +00:00
|
|
|
}
|
2019-03-07 10:37:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2019-03-07 04:32:24 +00:00
|
|
|
}
|
2019-03-06 20:13:50 +00:00
|
|
|
|
2019-03-07 10:37:28 +00:00
|
|
|
// Parse ini file.
|
2020-08-12 14:28:11 +00:00
|
|
|
loopDir := lncfg.CleanAndExpandPath(config.LoopDir)
|
2021-08-10 06:23:36 +00:00
|
|
|
configFile, hasExplicitConfig := getConfigPath(config, loopDir)
|
2019-03-07 10:37:28 +00:00
|
|
|
|
|
|
|
if err := flags.IniParse(configFile, &config); err != nil {
|
2021-08-04 09:11:44 +00:00
|
|
|
// File not existing is OK as long as it wasn't specified
|
2021-08-10 06:19:27 +00:00
|
|
|
// explicitly. All other errors (parsing, EACCESS...) indicate
|
2021-08-04 09:11:44 +00:00
|
|
|
// misconfiguration and need to be reported. In case of
|
|
|
|
// non-not-found FS errors there's high likelihood that other
|
|
|
|
// operations in data directory would also fail so we treat it
|
|
|
|
// as early detection of a problem.
|
2021-08-10 06:23:36 +00:00
|
|
|
if hasExplicitConfig || !os.IsNotExist(err) {
|
2019-03-07 10:37:28 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse command line flags again to restore flags overwritten by ini
|
|
|
|
// parse.
|
|
|
|
_, err = parser.Parse()
|
2019-03-06 20:13:50 +00:00
|
|
|
if err != nil {
|
2019-03-07 10:37:28 +00:00
|
|
|
return err
|
2019-03-06 20:13:50 +00:00
|
|
|
}
|
2019-03-07 10:37:28 +00:00
|
|
|
|
2019-03-21 00:16:07 +00:00
|
|
|
// Show the version and exit if the version flag was specified.
|
|
|
|
appName := filepath.Base(os.Args[0])
|
|
|
|
appName = strings.TrimSuffix(appName, filepath.Ext(appName))
|
|
|
|
if config.ShowVersion {
|
|
|
|
fmt.Println(appName, "version", loop.Version())
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
|
|
|
|
2019-10-28 16:06:07 +00:00
|
|
|
// Special show command to list supported subsystems and exit.
|
|
|
|
if config.DebugLevel == "show" {
|
|
|
|
fmt.Printf("Supported subsystems: %v\n",
|
|
|
|
logWriter.SupportedSubsystems())
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
|
|
|
|
2020-08-12 14:28:11 +00:00
|
|
|
// Validate our config before we proceed.
|
|
|
|
if err := Validate(&config); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-10-28 16:06:07 +00:00
|
|
|
|
2021-05-17 10:18:00 +00:00
|
|
|
// Start listening for signal interrupts regardless of which command
|
|
|
|
// we are running. When our command tries to get a lnd connection, it
|
|
|
|
// blocks until lnd is synced. We listen for interrupts so that we can
|
|
|
|
// shutdown the daemon while waiting for sync to complete.
|
|
|
|
shutdownInterceptor, err := signal.Intercept()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-10-28 16:06:07 +00:00
|
|
|
// Initialize logging at the default logging level.
|
2021-05-17 10:18:00 +00:00
|
|
|
logWriter := build.NewRotatingLogWriter()
|
|
|
|
SetupLoggers(logWriter, shutdownInterceptor)
|
|
|
|
|
2019-10-28 16:06:07 +00:00
|
|
|
err = logWriter.InitLogRotator(
|
|
|
|
filepath.Join(config.LogDir, defaultLogFilename),
|
|
|
|
config.MaxLogFileSize, config.MaxLogFiles,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = build.ParseAndSetDebugLevels(config.DebugLevel, logWriter)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-03-21 00:16:07 +00:00
|
|
|
// Print the version before executing either primary directive.
|
2019-10-28 16:06:07 +00:00
|
|
|
log.Infof("Version: %v", loop.Version())
|
2019-03-21 00:16:07 +00:00
|
|
|
|
2021-11-12 09:14:47 +00:00
|
|
|
lisCfg := NewListenerConfig(&config, rpcCfg)
|
2020-01-03 13:01:31 +00:00
|
|
|
|
2019-03-07 10:37:28 +00:00
|
|
|
// Execute command.
|
|
|
|
if parser.Active == nil {
|
2020-05-15 10:17:58 +00:00
|
|
|
daemon := New(&config, lisCfg)
|
2020-05-15 10:17:59 +00:00
|
|
|
if err := daemon.Start(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
2021-05-17 10:18:00 +00:00
|
|
|
case <-interceptor.ShutdownChannel():
|
2020-05-15 10:17:59 +00:00
|
|
|
log.Infof("Received SIGINT (Ctrl+C).")
|
|
|
|
daemon.Stop()
|
|
|
|
|
|
|
|
// The above stop will return immediately. But we'll be
|
|
|
|
// notified on the error channel once the process is
|
|
|
|
// complete.
|
|
|
|
return <-daemon.ErrChan
|
|
|
|
|
|
|
|
case err := <-daemon.ErrChan:
|
|
|
|
return err
|
|
|
|
}
|
2019-03-07 10:37:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if parser.Active.Name == "view" {
|
2020-01-03 13:01:32 +00:00
|
|
|
return view(&config, lisCfg)
|
2019-03-07 10:37:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Errorf("unimplemented command %v", parser.Active.Name)
|
2019-03-06 20:13:50 +00:00
|
|
|
}
|
2020-08-18 19:42:13 +00:00
|
|
|
|
|
|
|
// getConfigPath gets our config path based on the values that are set in our
|
2021-08-10 06:24:31 +00:00
|
|
|
// config. The returned bool is set to true if the config file path was set
|
|
|
|
// explicitly by the user and thus should not be ignored if it doesn't exist.
|
2021-08-04 09:11:44 +00:00
|
|
|
func getConfigPath(cfg Config, loopDir string) (string, bool) {
|
2020-08-18 19:42:13 +00:00
|
|
|
// If the config file path provided by the user is set, then we just
|
|
|
|
// use this value.
|
|
|
|
if cfg.ConfigFile != defaultConfigFile {
|
2021-08-04 09:11:44 +00:00
|
|
|
return lncfg.CleanAndExpandPath(cfg.ConfigFile), true
|
2020-08-18 19:42:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If the user has set a loop directory that is different to the default
|
|
|
|
// we will use this loop directory as the location of our config file.
|
|
|
|
// We do not namespace by network, because this is a custom loop dir.
|
2020-09-03 11:26:00 +00:00
|
|
|
if loopDir != LoopDirBase {
|
2021-08-04 09:11:44 +00:00
|
|
|
return filepath.Join(loopDir, defaultConfigFilename), false
|
2020-08-18 19:42:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, we are using our default loop directory, and the user did
|
|
|
|
// not set a config file path. We use our default loop dir, namespaced
|
|
|
|
// by network.
|
2021-08-04 09:11:44 +00:00
|
|
|
return filepath.Join(loopDir, cfg.Network, defaultConfigFilename), false
|
2020-08-18 19:42:13 +00:00
|
|
|
}
|