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"
|
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"
|
2019-03-07 04:32:24 +00:00
|
|
|
"github.com/lightninglabs/loop"
|
2020-01-03 13:01:32 +00:00
|
|
|
"github.com/lightninglabs/loop/lndclient"
|
2019-10-28 16:06:07 +00:00
|
|
|
"github.com/lightningnetwork/lnd/build"
|
2020-04-22 13:53:44 +00:00
|
|
|
"github.com/lightningnetwork/lnd/lnrpc/verrpc"
|
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,
|
|
|
|
AppMinor: 10,
|
2020-05-19 06:52:38 +00:00
|
|
|
AppPatch: 1,
|
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
|
|
|
}
|
|
|
|
|
|
|
|
// newListenerCfg creates and returns a new listenerCfg from the passed config
|
|
|
|
// and RPCConfig.
|
2020-05-15 10:17:57 +00:00
|
|
|
func newListenerCfg(config *Config, rpcCfg RPCConfig) *listenerCfg {
|
2020-01-03 13:01:31 +00:00
|
|
|
return &listenerCfg{
|
|
|
|
grpcListener: func() (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-01-03 13:01:31 +00:00
|
|
|
return net.Listen("tcp", config.RPCListen)
|
|
|
|
},
|
|
|
|
restListener: func() (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-01-03 13:01:31 +00:00
|
|
|
return net.Listen("tcp", config.RESTListen)
|
|
|
|
},
|
2020-01-03 13:01:32 +00:00
|
|
|
getLnd: func(network string, cfg *lndConfig) (
|
|
|
|
*lndclient.GrpcLndServices, error) {
|
|
|
|
|
2020-04-22 12:29:31 +00:00
|
|
|
svcCfg := &lndclient.LndServicesConfig{
|
2020-04-22 13:53:44 +00:00
|
|
|
LndAddress: cfg.Host,
|
|
|
|
Network: network,
|
|
|
|
MacaroonDir: cfg.MacaroonDir,
|
|
|
|
TLSPath: cfg.TLSPath,
|
|
|
|
CheckVersion: LoopMinRequiredLndVersion,
|
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) {
|
|
|
|
return rpcCfg.LndConn, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-01-03 13:01:32 +00:00
|
|
|
func Start(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.
|
|
|
|
loopDir := filepath.Join(loopDirBase, config.Network)
|
|
|
|
if err := os.MkdirAll(loopDir, os.ModePerm); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
configFile := filepath.Join(loopDir, defaultConfigFilename)
|
|
|
|
if err := flags.IniParse(configFile, &config); err != nil {
|
|
|
|
// If it's a parsing related error, then we'll return
|
|
|
|
// immediately, otherwise we can proceed as possibly the config
|
|
|
|
// file doesn't exist which is OK.
|
|
|
|
if _, ok := err.(*flags.IniError); ok {
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Append the network type to the log directory so it is
|
|
|
|
// "namespaced" per network in the same fashion as the data directory.
|
|
|
|
config.LogDir = filepath.Join(config.LogDir, config.Network)
|
|
|
|
|
|
|
|
// Initialize logging at the default logging level.
|
|
|
|
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
|
|
|
|
2020-01-03 13:01:32 +00:00
|
|
|
lisCfg := newListenerCfg(&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)
|
|
|
|
return daemon.Run()
|
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
|
|
|
}
|