forked from lightninglabs/lightning-terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
949 lines (816 loc) · 35.4 KB
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
package terminal
import (
"crypto/tls"
"errors"
"fmt"
"io/ioutil"
"net"
"net/http"
"os"
"path/filepath"
"strings"
"time"
"github.com/btcsuite/btcd/btcutil"
"github.com/jessevdk/go-flags"
"github.com/lightninglabs/faraday"
"github.com/lightninglabs/faraday/chain"
"github.com/lightninglabs/faraday/frdrpcserver"
"github.com/lightninglabs/lightning-terminal/accounts"
"github.com/lightninglabs/lightning-terminal/autopilotserver"
"github.com/lightninglabs/lightning-terminal/firewall"
mid "github.com/lightninglabs/lightning-terminal/rpcmiddleware"
"github.com/lightninglabs/lightning-terminal/subservers"
"github.com/lightninglabs/lndclient"
"github.com/lightninglabs/loop/loopd"
"github.com/lightninglabs/pool"
"github.com/lightninglabs/taproot-assets/tapcfg"
"github.com/lightningnetwork/lnd"
"github.com/lightningnetwork/lnd/build"
"github.com/lightningnetwork/lnd/cert"
"github.com/lightningnetwork/lnd/lncfg"
"github.com/lightningnetwork/lnd/lnrpc"
"github.com/lightningnetwork/lnd/signal"
"github.com/mwitkow/go-conntrack/connhelpers"
"golang.org/x/crypto/acme/autocert"
)
const (
defaultHTTPSListen = "127.0.0.1:8443"
uiPasswordMinLength = 8
ModeIntegrated = "integrated"
ModeRemote = "remote"
ModeDisable = "disable"
DefaultLndMode = ModeRemote
defaultFaradayMode = ModeIntegrated
defaultLoopMode = ModeIntegrated
defaultPoolMode = ModeIntegrated
defaultTapMode = ModeIntegrated
defaultConfigFilename = "lit.conf"
defaultLogLevel = "info"
defaultMaxLogFiles = 3
defaultMaxLogFileSize = 10
defaultLetsEncryptSubDir = "letsencrypt"
defaultLetsEncryptListen = ":80"
defaultSelfSignedCertOrganization = "litd autogenerated cert"
defaultLogDirname = "logs"
defaultLogFilename = "litd.log"
DefaultTLSCertFilename = "tls.cert"
DefaultTLSKeyFilename = "tls.key"
DefaultNetwork = "mainnet"
defaultRemoteLndRpcServer = "localhost:10009"
defaultRemoteFaradayRpcServer = "localhost:8465"
defaultRemoteLoopRpcServer = "localhost:11010"
defaultRemotePoolRpcServer = "localhost:12010"
defaultRemoteTapRpcServer = "localhost:10029"
defaultLndChainSubDir = "chain"
defaultLndChain = "bitcoin"
defaultLndMacaroon = "admin.macaroon"
// DefaultAutogenValidity is the default validity of a self-signed
// certificate. The value corresponds to 14 months
// (14 months * 30 days * 24 hours).
DefaultAutogenValidity = 14 * 30 * 24 * time.Hour
// DefaultMacaroonFilename is the default file name for the
// autogenerated lit macaroon.
DefaultMacaroonFilename = "lit.macaroon"
defaultFirstLNCConnTimeout = 10 * time.Minute
)
var (
lndDefaultConfig = lnd.DefaultConfig()
faradayDefaultConfig = faraday.DefaultConfig()
loopDefaultConfig = loopd.DefaultConfig()
poolDefaultConfig = pool.DefaultConfig()
tapDefaultConfig = tapcfg.DefaultConfig()
// DefaultLitDir is the default directory where LiT tries to find its
// configuration file and store its data (in remote lnd node). This is a
// directory in the user's application data, for example:
// C:\Users\<username>\AppData\Local\Lit on Windows
// ~/.lit on Linux
// ~/Library/Application Support/Lit on MacOS
DefaultLitDir = btcutil.AppDataDir("lit", false)
// DefaultTLSCertPath is the default full path of the autogenerated TLS
// certificate that is created in remote lnd mode.
DefaultTLSCertPath = filepath.Join(
DefaultLitDir, DefaultTLSCertFilename,
)
// defaultTLSKeyPath is the default full path of the autogenerated TLS
// key that is created in remote lnd mode.
defaultTLSKeyPath = filepath.Join(DefaultLitDir, DefaultTLSKeyFilename)
// defaultConfigFile is the default path for the LiT configuration file
// that is always attempted to be loaded.
defaultConfigFile = filepath.Join(DefaultLitDir, defaultConfigFilename)
// defaultLogDir is the default directory in which LiT writes its log
// files in remote lnd mode.
defaultLogDir = filepath.Join(DefaultLitDir, defaultLogDirname)
// defaultLetsEncryptDir is the default directory in which LiT writes
// its Let's Encrypt files.
defaultLetsEncryptDir = filepath.Join(
DefaultLitDir, defaultLetsEncryptSubDir,
)
// DefaultRemoteLndMacaroonPath is the default path we assume for a
// local lnd node to store its admin.macaroon file at.
DefaultRemoteLndMacaroonPath = filepath.Join(
lndDefaultConfig.DataDir, defaultLndChainSubDir,
defaultLndChain, DefaultNetwork, defaultLndMacaroon,
)
// DefaultMacaroonPath is the default full path of the base lit
// macaroon.
DefaultMacaroonPath = filepath.Join(
DefaultLitDir, DefaultNetwork, DefaultMacaroonFilename,
)
)
// Config is the main configuration struct of lightning-terminal. It contains
// all config items of its enveloping subservers, each prefixed with their
// daemon's short name.
type Config struct {
HTTPSListen string `long:"httpslisten" description:"The host:port to listen for incoming HTTP/2 connections on for the web UI only."`
HTTPListen string `long:"insecure-httplisten" description:"The host:port to listen on with TLS disabled. This is dangerous to enable as credentials will be submitted without encryption. Should only be used in combination with Tor hidden services or other external encryption."`
EnableREST bool `long:"enablerest" description:"Also allow REST requests to be made to the main HTTP(s) port(s) configured above."`
RestCORS []string `long:"restcors" description:"Add an ip:port/hostname to allow cross origin access from. To allow all origins, set as \"*\"."`
UIPassword string `long:"uipassword" description:"The password that must be entered when using the UI. Use a strong password to protect your node from unauthorized access through the web UI."`
UIPasswordFile string `long:"uipassword_file" description:"Same as uipassword but instead of passing in the value directly, read the password from the specified file."`
UIPasswordEnv string `long:"uipassword_env" description:"Same as uipassword but instead of passing in the value directly, read the password from the specified environment variable."`
DisableUI bool `long:"disableui" description:"If set to true, no web UI will be served and so the uipassword will also not need to be set."`
LetsEncrypt bool `long:"letsencrypt" description:"Use Let's Encrypt to create a TLS certificate for the UI instead of using lnd's TLS certificate. Port 80 must be free to listen on and must be reachable from the internet for this to work."`
LetsEncryptHost string `long:"letsencrypthost" description:"The host name to create a Let's Encrypt certificate for."`
LetsEncryptDir string `long:"letsencryptdir" description:"The directory where the Let's Encrypt library will store its key and certificate."`
LetsEncryptListen string `long:"letsencryptlisten" description:"The IP:port on which LiT will listen for Let's Encrypt challenges. Let's Encrypt will always try to contact on port 80. Often non-root processes are not allowed to bind to ports lower than 1024. This configuration option allows a different port to be used, but must be used in combination with port forwarding from port 80. This configuration can also be used to specify another IP address to listen on, for example an IPv6 address."`
TLSCertPath string `long:"tlscertpath" description:"Path to write the self signed TLS certificate for LiT's RPC and REST proxy service (if Let's Encrypt is not used). This only applies to the HTTPSListen port."`
TLSKeyPath string `long:"tlskeypath" description:"Path to write the self signed TLS private key for LiT's RPC and REST proxy service (if Let's Encrypt is not used). This only applies to the HTTPSListen port."`
LitDir string `long:"lit-dir" description:"The main directory where LiT looks for its configuration file. If LiT is running in 'remote' lnd mode, this is also the directory where the TLS certificates and log files are stored by default."`
ConfigFile string `long:"configfile" description:"Path to LiT's configuration file."`
MacaroonPath string `long:"macaroonpath" description:"Path to write the macaroon for litd's RPC and REST services if it doesn't exist."`
FirstLNCConnDeadline time.Duration `long:"firstlncconndeadline" description:"The duration after a new LNC session will be revoked if no connection is made with it. This only applies for the first connection which is made using the pairing phrase. "`
// Network is the Bitcoin network we're running on. This will be parsed
// before the configuration is loaded and will set the correct flag on
// `lnd.bitcoin.mainnet|testnet|regtest` and also for the other daemons.
// That way only one global network flag is needed.
Network string `long:"network" description:"The network the UI and all its components run on" choice:"regtest" choice:"testnet" choice:"mainnet" choice:"simnet"`
Remote *subservers.RemoteConfig `group:"Remote mode options (use when lnd-mode=remote)" namespace:"remote"`
// LndMode is the selected mode to run lnd in. The supported modes are
// 'integrated' and 'remote'. We only use a string instead of a bool
// here (and for all the other daemons) to make the CLI more user
// friendly. Because then we can reference the explicit modes in the
// help descriptions of the section headers. We'll parse the mode into
// a bool for internal use for better code readability.
LndMode string `long:"lnd-mode" description:"The mode to run lnd in, either 'remote' (default) or 'integrated'. 'integrated' means lnd is started alongside the UI and everything is stored in lnd's main data directory, configure everything by using the --lnd.* flags. 'remote' means the UI connects to an existing lnd node and acts as a proxy for gRPC calls to it. In the remote node LiT creates its own directory for log and configuration files, configure everything using the --remote.* flags." choice:"integrated" choice:"remote"`
Lnd *lnd.Config `group:"Integrated lnd (use when lnd-mode=integrated)" namespace:"lnd"`
FaradayMode string `long:"faraday-mode" description:"The mode to run faraday in, either 'integrated' (default), 'remote' or 'disable'. 'integrated' means faraday is started alongside the UI and everything is stored in faraday's main data directory, configure everything by using the --faraday.* flags. 'remote' means the UI connects to an existing faraday node and acts as a proxy for gRPC calls to it. 'disable' means that LiT is started without faraday." choice:"integrated" choice:"remote" choice:"disable"`
Faraday *faraday.Config `group:"Integrated faraday options (use when faraday-mode=integrated)" namespace:"faraday"`
LoopMode string `long:"loop-mode" description:"The mode to run loop in, either 'integrated' (default), 'remote' or 'disable'. 'integrated' means loopd is started alongside the UI and everything is stored in loop's main data directory, configure everything by using the --loop.* flags. 'remote' means the UI connects to an existing loopd node and acts as a proxy for gRPC calls to it. 'disable' means that LiT is started without loop." choice:"integrated" choice:"remote" choice:"disable"`
Loop *loopd.Config `group:"Integrated loop options (use when loop-mode=integrated)" namespace:"loop"`
PoolMode string `long:"pool-mode" description:"The mode to run pool in, either 'integrated' (default), 'remote' or 'disable'. 'integrated' means poold is started alongside the UI and everything is stored in pool's main data directory, configure everything by using the --pool.* flags. 'remote' means the UI connects to an existing poold node and acts as a proxy for gRPC calls to it. 'disable' means that LiT is started without pool." choice:"integrated" choice:"remote" choice:"disable"`
Pool *pool.Config `group:"Integrated pool options (use when pool-mode=integrated)" namespace:"pool"`
TaprootAssetsMode string `long:"taproot-assets-mode" description:"The mode to run taproot assets in, either 'integrated' (default), 'remote' or 'disable'. 'integrated' means tapd is started alongside the UI and everything is stored in tap's main data directory, configure everything by using the --taproot-assets.* flags. 'remote' means the UI connects to an existing tapd node and acts as a proxy for gRPC calls to it. 'disable' means that LiT is started without tapd" choice:"integrated" choice:"remote" choice:"disable"`
TaprootAssets *tapcfg.Config `group:"Integrated taproot assets options (use when taproot-assets=integrated)" namespace:"taproot-assets"`
RPCMiddleware *mid.Config `group:"RPC middleware options" namespace:"rpcmiddleware"`
Autopilot *autopilotserver.Config `group:"Autopilot server options" namespace:"autopilot"`
Firewall *firewall.Config `group:"Firewall options" namespace:"firewall"`
Accounts *accounts.Config `group:"Accounts options" namespace:"accounts"`
// faradayRpcConfig is a subset of faraday's full configuration that is
// passed into faraday's RPC server.
faradayRpcConfig *frdrpcserver.Config
// lndRemote is a convenience bool variable that is parsed from the
// LndMode string variable on startup.
lndRemote bool
faradayRemote bool
loopRemote bool
poolRemote bool
tapRemote bool
// lndAdminMacaroon is the admin macaroon that is given to us by lnd
// over an in-memory connection on startup. This is only set in
// integrated lnd mode.
lndAdminMacaroon []byte
}
// lndConnectParams returns the connection parameters to connect to the local
// lnd instance.
func (c *Config) lndConnectParams() (string, lndclient.Network, string,
string, []byte) {
// In remote lnd mode, we just pass along what was configured in the
// remote section of the lnd config.
if c.LndMode == ModeRemote {
return c.Remote.Lnd.RPCServer,
lndclient.Network(c.Network),
lncfg.CleanAndExpandPath(c.Remote.Lnd.TLSCertPath),
lncfg.CleanAndExpandPath(c.Remote.Lnd.MacaroonPath),
nil
}
// When we start lnd internally, we take the listen address as
// the client dial address. But with TLS enabled by default, we
// cannot call 0.0.0.0 internally when dialing lnd as that IP
// address isn't in the cert. We need to rewrite it to the
// loopback address.
lndDialAddr := c.Lnd.RPCListeners[0].String()
switch {
case strings.Contains(lndDialAddr, "0.0.0.0"):
lndDialAddr = strings.Replace(
lndDialAddr, "0.0.0.0", "127.0.0.1", 1,
)
case strings.Contains(lndDialAddr, "[::]"):
lndDialAddr = strings.Replace(
lndDialAddr, "[::]", "[::1]", 1,
)
}
return lndDialAddr, lndclient.Network(c.Network), "", "",
c.lndAdminMacaroon
}
// defaultConfig returns a configuration struct with all default values set.
func defaultConfig() *Config {
return &Config{
HTTPSListen: defaultHTTPSListen,
TLSCertPath: DefaultTLSCertPath,
TLSKeyPath: defaultTLSKeyPath,
Remote: &subservers.RemoteConfig{
LitDebugLevel: defaultLogLevel,
LitLogDir: defaultLogDir,
LitMaxLogFiles: defaultMaxLogFiles,
LitMaxLogFileSize: defaultMaxLogFileSize,
Lnd: &subservers.RemoteDaemonConfig{
RPCServer: defaultRemoteLndRpcServer,
MacaroonPath: DefaultRemoteLndMacaroonPath,
TLSCertPath: lndDefaultConfig.TLSCertPath,
},
Faraday: &subservers.RemoteDaemonConfig{
RPCServer: defaultRemoteFaradayRpcServer,
MacaroonPath: faradayDefaultConfig.MacaroonPath,
TLSCertPath: faradayDefaultConfig.TLSCertPath,
},
Loop: &subservers.RemoteDaemonConfig{
RPCServer: defaultRemoteLoopRpcServer,
MacaroonPath: loopDefaultConfig.MacaroonPath,
TLSCertPath: loopDefaultConfig.TLSCertPath,
},
Pool: &subservers.RemoteDaemonConfig{
RPCServer: defaultRemotePoolRpcServer,
MacaroonPath: poolDefaultConfig.MacaroonPath,
TLSCertPath: poolDefaultConfig.TLSCertPath,
},
TaprootAssets: &subservers.RemoteDaemonConfig{
RPCServer: defaultRemoteTapRpcServer,
MacaroonPath: tapDefaultConfig.RpcConf.MacaroonPath,
TLSCertPath: tapDefaultConfig.RpcConf.TLSCertPath,
},
},
Network: DefaultNetwork,
LndMode: DefaultLndMode,
Lnd: &lndDefaultConfig,
LitDir: DefaultLitDir,
LetsEncryptListen: defaultLetsEncryptListen,
LetsEncryptDir: defaultLetsEncryptDir,
MacaroonPath: DefaultMacaroonPath,
ConfigFile: defaultConfigFile,
FaradayMode: defaultFaradayMode,
Faraday: &faradayDefaultConfig,
faradayRpcConfig: &frdrpcserver.Config{},
LoopMode: defaultLoopMode,
Loop: &loopDefaultConfig,
PoolMode: defaultPoolMode,
Pool: &poolDefaultConfig,
TaprootAssetsMode: defaultTapMode,
TaprootAssets: &tapDefaultConfig,
RPCMiddleware: mid.DefaultConfig(),
FirstLNCConnDeadline: defaultFirstLNCConnTimeout,
Autopilot: &autopilotserver.Config{
PingCadence: time.Hour,
},
Firewall: firewall.DefaultConfig(),
Accounts: &accounts.Config{},
}
}
// loadAndValidateConfig loads the terminal's main configuration and validates
// its content.
func loadAndValidateConfig(interceptor signal.Interceptor) (*Config, error) {
// Start with the default configuration.
preCfg := defaultConfig()
// Pre-parse the command line options to pick up an alternative config
// file.
_, err := flags.Parse(preCfg)
if err != nil {
return nil, fmt.Errorf("error parsing flags: %w", err)
}
// 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 preCfg.Lnd.ShowVersion {
fmt.Println(appName, "version", build.Version(),
"commit="+build.Commit)
os.Exit(0)
}
// Before we validate the config, we first hook up our own loggers.
// This must be done before the config is validated if LND is running
// in integrated mode so that the log levels for various non-LND related
// subsystems can be set via the `lnd.debuglevel` flag.
SetupLoggers(preCfg.Lnd.LogWriter, interceptor)
// Load the main configuration file and parse any command line options.
// This function will also set up logging properly.
cfg, err := loadConfigFile(preCfg, interceptor)
if err != nil {
return nil, err
}
// Translate the more user friendly string modes into the more developer
// friendly internal bool variables now.
cfg.lndRemote = cfg.LndMode == ModeRemote
cfg.faradayRemote = cfg.FaradayMode == ModeRemote
cfg.loopRemote = cfg.LoopMode == ModeRemote
cfg.poolRemote = cfg.PoolMode == ModeRemote
cfg.tapRemote = cfg.TaprootAssetsMode == ModeRemote
// Now that we've registered all loggers, let's parse, validate, and set
// the debug log level(s). In remote lnd mode we have a global log level
// that overwrites all others. In integrated mode we use the lnd log
// level as the master level.
if cfg.lndRemote {
err = build.ParseAndSetDebugLevels(
cfg.Remote.LitDebugLevel, cfg.Lnd.LogWriter,
)
} else {
err = build.ParseAndSetDebugLevels(
cfg.Lnd.DebugLevel, cfg.Lnd.LogWriter,
)
}
if err != nil {
return nil, err
}
// To enable the rpc middleware interceptor, we need LND's RPC
// middleware interceptor to be enabled. In remote mode we can't
// influence whether that's enabled on lnd. But in integrated mode we
// can overwrite the flag here.
if !cfg.lndRemote && !cfg.RPCMiddleware.Disabled {
cfg.Lnd.RPCMiddleware.Enable = true
}
// Validate the lightning-terminal config options.
litDir := lnd.CleanAndExpandPath(preCfg.LitDir)
cfg.LetsEncryptDir = lncfg.CleanAndExpandPath(cfg.LetsEncryptDir)
if litDir != DefaultLitDir {
if cfg.LetsEncryptDir == defaultLetsEncryptDir {
cfg.LetsEncryptDir = filepath.Join(
litDir, defaultLetsEncryptSubDir,
)
}
}
if cfg.LetsEncrypt {
if cfg.LetsEncryptHost == "" {
return nil, fmt.Errorf("host must be set when using " +
"let's encrypt")
}
// Create the directory if we're going to use Let's Encrypt.
if err := makeDirectories(cfg.LetsEncryptDir); err != nil {
return nil, err
}
}
// If the web UI is enabled, a UI password must be provided.
if !cfg.DisableUI {
err = readUIPassword(cfg)
if err != nil {
return nil, fmt.Errorf("could not read UI password: %v",
err)
}
if len(cfg.UIPassword) < uiPasswordMinLength {
return nil, fmt.Errorf("please set a strong "+
"password for the UI, at least %d characters "+
"long", uiPasswordMinLength)
}
}
if cfg.MacaroonPath == DefaultMacaroonPath {
cfg.MacaroonPath = filepath.Join(
litDir, cfg.Network, DefaultMacaroonFilename,
)
}
// Initiate our listeners. For now, we only support listening on one
// port at a time because we can only pass in one pre-configured RPC
// listener into lnd.
if len(cfg.Lnd.RPCListeners) > 1 {
return nil, fmt.Errorf("litd only supports one RPC listener " +
"at a time")
}
// Some of the subservers' configuration options won't have any effect
// (like the log or lnd options) as they will be taken from lnd's config
// struct. Others we want to force to be the same as lnd so the user
// doesn't have to set them manually, like the network for example.
if cfg.FaradayMode != ModeDisable {
cfg.Faraday.Lnd.MacaroonPath = faraday.DefaultLndMacaroonPath
if err := faraday.ValidateConfig(cfg.Faraday); err != nil {
return nil, err
}
}
defaultLoopCfg := loopd.DefaultConfig()
if cfg.LoopMode != ModeDisable {
cfg.Loop.Lnd.MacaroonPath = defaultLoopCfg.Lnd.MacaroonPath
if err := loopd.Validate(cfg.Loop); err != nil {
return nil, err
}
}
if cfg.PoolMode != ModeDisable {
cfg.Pool.Lnd.MacaroonPath = pool.DefaultLndMacaroonPath
if err := pool.Validate(cfg.Pool); err != nil {
return nil, err
}
}
if cfg.TaprootAssetsMode != ModeDisable {
cfg.TaprootAssets, err = tapcfg.ValidateConfig(
*cfg.TaprootAssets, log,
)
if err != nil {
return nil, err
}
}
// We've set the network before and have now validated the loop config
// which updated its default paths for that network. So if we're in
// remote mode and not mainnet, we want to update our default paths for
// the remote connection as well.
defaultFaradayCfg := faraday.DefaultConfig()
if cfg.faradayRemote && cfg.Network != DefaultNetwork {
if cfg.Remote.Faraday.MacaroonPath == defaultFaradayCfg.MacaroonPath {
cfg.Remote.Faraday.MacaroonPath = cfg.Faraday.MacaroonPath
}
if cfg.Remote.Faraday.TLSCertPath == defaultFaradayCfg.TLSCertPath {
cfg.Remote.Faraday.TLSCertPath = cfg.Faraday.TLSCertPath
}
}
// If the client chose to connect to a bitcoin client, get one now.
if !cfg.faradayRemote {
cfg.faradayRpcConfig.FaradayDir = cfg.Faraday.FaradayDir
cfg.faradayRpcConfig.MacaroonPath = cfg.Faraday.MacaroonPath
if cfg.Faraday.ChainConn {
cfg.faradayRpcConfig.BitcoinClient, err = chain.NewBitcoinClient(
cfg.Faraday.Bitcoin,
)
if err != nil {
return nil, err
}
}
}
if cfg.loopRemote && cfg.Network != DefaultNetwork {
if cfg.Remote.Loop.MacaroonPath == defaultLoopCfg.MacaroonPath {
cfg.Remote.Loop.MacaroonPath = cfg.Loop.MacaroonPath
}
if cfg.Remote.Loop.TLSCertPath == defaultLoopCfg.TLSCertPath {
cfg.Remote.Loop.TLSCertPath = cfg.Loop.TLSCertPath
}
}
defaultPoolCfg := pool.DefaultConfig()
if cfg.poolRemote && cfg.Network != DefaultNetwork {
if cfg.Remote.Pool.MacaroonPath == defaultPoolCfg.MacaroonPath {
cfg.Remote.Pool.MacaroonPath = cfg.Pool.MacaroonPath
}
if cfg.Remote.Pool.TLSCertPath == defaultPoolCfg.TLSCertPath {
cfg.Remote.Pool.TLSCertPath = cfg.Pool.TLSCertPath
}
}
defaultTapCfg := tapcfg.DefaultConfig()
if cfg.tapRemote && cfg.Network != DefaultNetwork {
if cfg.Remote.TaprootAssets.MacaroonPath == defaultTapCfg.RpcConf.MacaroonPath {
macaroonPath := cfg.TaprootAssets.RpcConf.MacaroonPath
cfg.Remote.TaprootAssets.MacaroonPath = macaroonPath
}
if cfg.Remote.TaprootAssets.TLSCertPath == defaultTapCfg.RpcConf.TLSCertPath {
tlsCertPath := cfg.TaprootAssets.RpcConf.TLSCertPath
cfg.Remote.TaprootAssets.TLSCertPath = tlsCertPath
}
}
return cfg, nil
}
// loadConfigFile loads and sanitizes the lit main configuration from the config
// file or command line arguments (or both).
func loadConfigFile(preCfg *Config, interceptor signal.Interceptor) (*Config,
error) {
// If the config file path has not been modified by the user, then we'll
// use the default config file path. However, if the user has modified
// their litdir, then we should assume they intend to use the config
// file within it.
litDir := lnd.CleanAndExpandPath(preCfg.LitDir)
configFilePath := lnd.CleanAndExpandPath(preCfg.ConfigFile)
if litDir != DefaultLitDir {
if configFilePath == defaultConfigFile {
configFilePath = filepath.Join(
litDir, defaultConfigFilename,
)
}
}
// Next, load any additional configuration options from the file.
var configFileError error
cfg := preCfg
fileParser := flags.NewParser(cfg, flags.Default)
err := flags.NewIniParser(fileParser).ParseFile(configFilePath)
if 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 nil, err
}
configFileError = err
}
// Finally, parse the remaining command line options again to ensure
// they take precedence.
flagParser := flags.NewParser(cfg, flags.Default)
if _, err := flagParser.Parse(); err != nil {
return nil, err
}
// Now make sure we create the LiT directory if it doesn't yet exist.
if err := makeDirectories(litDir); err != nil {
return nil, err
}
// Parse the global/top-level network and propagate it to all sub config
// structs.
if err := setNetwork(cfg); err != nil {
return nil, err
}
switch cfg.LndMode {
// In case we are running lnd in-process, let's make sure its
// configuration is fully valid. This also sets up the main logger that
// logs to a sub-directory in the .lnd folder.
case ModeIntegrated:
var err error
cfg.Lnd, err = lnd.ValidateConfig(
*cfg.Lnd, interceptor, fileParser, flagParser,
)
if err != nil {
return nil, err
}
// In remote lnd mode we skip the validation of the lnd configuration
// and instead just set up the logging (that would be done by lnd if it
// were running in the same process).
case ModeRemote:
if err := validateRemoteModeConfig(cfg); err != nil {
return nil, err
}
default:
return nil, fmt.Errorf("invalid lnd mode %v", cfg.LndMode)
}
// If the provided lit directory is not the default, we'll modify the
// path to all of the files and directories that will live within it.
if litDir != DefaultLitDir {
if cfg.TLSKeyPath == defaultTLSKeyPath {
cfg.TLSKeyPath = filepath.Join(
litDir, DefaultTLSKeyFilename,
)
}
if cfg.TLSCertPath == DefaultTLSCertPath {
cfg.TLSCertPath = filepath.Join(
litDir, DefaultTLSCertFilename,
)
}
}
cfg.TLSCertPath = lncfg.CleanAndExpandPath(cfg.TLSCertPath)
cfg.TLSKeyPath = lncfg.CleanAndExpandPath(cfg.TLSKeyPath)
// Make sure the parent directories of our certificate files exist.
if err := makeDirectories(filepath.Dir(cfg.TLSCertPath)); err != nil {
return nil, err
}
if err := makeDirectories(filepath.Dir(cfg.TLSKeyPath)); err != nil {
return nil, err
}
// Warn about missing config file only after all other configuration is
// done. This prevents the warning on help messages and invalid options.
// Note this should go directly before the return.
if configFileError != nil {
log.Warnf("%v", configFileError)
}
return cfg, nil
}
// validateRemoteModeConfig validates the terminal's own configuration
// parameters that are only used in the "remote" lnd mode.
func validateRemoteModeConfig(cfg *Config) error {
r := cfg.Remote
// When referring to the default lnd configuration later on, let's make
// sure we use the actual default values and not the lndDefaultConfig
// variable which could've been overwritten by the user. Otherwise this
// could lead to weird behavior and hard to catch bugs.
defaultLndCfg := lnd.DefaultConfig()
// If the remote lnd's network isn't the default, we also check if we
// need to adjust the default macaroon directory so the user can only
// specify --network=testnet for example if everything else is using
// the defaults.
if cfg.Network != DefaultNetwork &&
r.Lnd.MacaroonPath == DefaultRemoteLndMacaroonPath {
r.Lnd.MacaroonPath = filepath.Join(
defaultLndCfg.DataDir, defaultLndChainSubDir,
defaultLndChain, cfg.Network,
filepath.Base(defaultLndCfg.AdminMacPath),
)
}
// If the provided lit directory is not the default, we'll modify the
// path to all of the files and directories that will live within it.
litDir := lnd.CleanAndExpandPath(cfg.LitDir)
if litDir != DefaultLitDir {
if r.LitLogDir == defaultLogDir {
r.LitLogDir = filepath.Join(
litDir, defaultLogDirname,
)
}
}
r.LitLogDir = lncfg.CleanAndExpandPath(r.LitLogDir)
// In remote mode, we don't call lnd's ValidateConfig that sets up a
// logging backend for us. We need to manually create and start one. The
// root logger should've already been created as part of the default
// config though.
if cfg.Lnd.LogWriter == nil {
cfg.Lnd.LogWriter = build.NewRotatingLogWriter()
}
err := cfg.Lnd.LogWriter.InitLogRotator(
filepath.Join(r.LitLogDir, cfg.Network, defaultLogFilename),
r.LitMaxLogFileSize, r.LitMaxLogFiles,
)
if err != nil {
return fmt.Errorf("log rotation setup failed: %v", err.Error())
}
return nil
}
// setNetwork parses the top-level network config options and, if valid, sets it
// in all sub configuration structs. We also set the Bitcoin chain to active by
// default as LiT won't support Litecoin in the foreseeable future.
func setNetwork(cfg *Config) error {
switch cfg.Network {
case "mainnet":
cfg.Lnd.Bitcoin.MainNet = true
case "testnet", "testnet3":
cfg.Lnd.Bitcoin.TestNet3 = true
case "regtest":
cfg.Lnd.Bitcoin.RegTest = true
case "simnet":
cfg.Lnd.Bitcoin.SimNet = true
default:
return fmt.Errorf("unknown network: %v", cfg.Network)
}
cfg.Lnd.Bitcoin.Active = true
cfg.Faraday.Network = cfg.Network
cfg.Loop.Network = cfg.Network
cfg.Pool.Network = cfg.Network
cfg.TaprootAssets.ChainConf.Network = cfg.Network
return nil
}
// readUIPassword reads the password for the UI either from the command line
// flag, a file specified or an environment variable.
func readUIPassword(config *Config) error {
// A password is passed in as a command line flag (or config file
// variable) directly.
if len(strings.TrimSpace(config.UIPassword)) > 0 {
config.UIPassword = strings.TrimSpace(config.UIPassword)
return nil
}
// A file that contains the password is specified.
if len(strings.TrimSpace(config.UIPasswordFile)) > 0 {
content, err := ioutil.ReadFile(strings.TrimSpace(
config.UIPasswordFile,
))
if err != nil {
return fmt.Errorf("could not read file %s: %v",
config.UIPasswordFile, err)
}
config.UIPassword = strings.TrimSpace(string(content))
return nil
}
// The name of an environment variable was specified.
if len(strings.TrimSpace(config.UIPasswordEnv)) > 0 {
content := os.Getenv(strings.TrimSpace(config.UIPasswordEnv))
if len(content) == 0 {
return fmt.Errorf("environment variable %s is empty",
config.UIPasswordEnv)
}
config.UIPassword = strings.TrimSpace(content)
return nil
}
return fmt.Errorf("mandatory password for UI not configured. specify " +
"either a password directly or a file or environment " +
"variable that contains the password")
}
func buildTLSConfigForHttp2(config *Config) (*tls.Config, error) {
var tlsConfig *tls.Config
if config.LetsEncrypt {
serverName := config.LetsEncryptHost
if serverName == "" {
return nil, errors.New("let's encrypt host name " +
"option is required for using let's encrypt")
}
log.Infof("Setting up Let's Encrypt for server %v", serverName)
certDir := config.LetsEncryptDir
log.Infof("Setting up Let's Encrypt with cache dir %v", certDir)
manager := autocert.Manager{
Cache: autocert.DirCache(certDir),
Prompt: autocert.AcceptTOS,
HostPolicy: autocert.HostWhitelist(serverName),
}
go func() {
log.Infof("Listening for Let's Encrypt challenges on "+
"%v", config.LetsEncryptListen)
srv := &http.Server{
Addr: config.LetsEncryptListen,
ReadHeaderTimeout: 3 * time.Second,
Handler: manager.HTTPHandler(nil),
}
err := srv.ListenAndServe()
if err != nil {
log.Errorf("Error starting Let's Encrypt "+
"HTTP listener on port 80: %v", err)
}
}()
tlsConfig = &tls.Config{
GetCertificate: manager.GetCertificate,
}
} else {
tlsCertPath := config.TLSCertPath
tlsKeyPath := config.TLSKeyPath
if !lnrpc.FileExists(tlsCertPath) &&
!lnrpc.FileExists(tlsKeyPath) {
certBytes, keyBytes, err := cert.GenCertPair(
defaultSelfSignedCertOrganization, nil, nil,
false, DefaultAutogenValidity,
)
if err != nil {
return nil, fmt.Errorf("failed creating "+
"self-signed cert: %v", err)
}
// Now that we have the certificate and key, we'll store
// them to the file system.
err = cert.WriteCertPair(
tlsCertPath, tlsKeyPath, certBytes, keyBytes,
)
if err != nil {
return nil, fmt.Errorf("failed storing "+
"self-signed cert: %v", err)
}
}
tlsCert, _, err := cert.LoadCert(tlsCertPath, tlsKeyPath)
if err != nil {
return nil, fmt.Errorf("failed reading TLS server "+
"keys: %v", err)
}
tlsConfig = cert.TLSConfFromCert(tlsCert)
}
// lnd's cipher suites are too restrictive for HTTP/2, we need to add
// one of the default suites back to stop the HTTP/2 lib from
// complaining.
tlsConfig.CipherSuites = append(
tlsConfig.CipherSuites,
tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
)
tlsConfig, err := connhelpers.TlsConfigWithHttp2Enabled(tlsConfig)
if err != nil {
return nil, fmt.Errorf("can't configure h2 handling: %v", err)
}
return tlsConfig, nil
}
// makeDirectories creates the directory given and if necessary any parent
// directories as well.
func makeDirectories(fullDir string) error {
err := os.MkdirAll(fullDir, 0700)
if err != nil {
// Show a nicer error message if it's because a symlink is
// linked to a directory that does not exist (probably because
// it's not mounted).
if e, ok := err.(*os.PathError); ok && os.IsExist(err) {
if link, lerr := os.Readlink(e.Path); lerr == nil {
str := "is symlink %s -> %s mounted?"
err = fmt.Errorf(str, e.Path, link)
}
}
err := fmt.Errorf("failed to create directory %v: %v", fullDir,
err)
_, _ = fmt.Fprintln(os.Stderr, err)
return err
}
return nil
}
// onDemandListener is a net.Listener that only actually starts to listen on a
// network port once the Accept method is called.
type onDemandListener struct {
addr net.Addr
lis net.Listener
}
// Accept waits for and returns the next connection to the listener.
func (l *onDemandListener) Accept() (net.Conn, error) {
if l.lis == nil {
var err error
l.lis, err = net.Listen(parseNetwork(l.addr), l.addr.String())
if err != nil {
return nil, err
}
}
return l.lis.Accept()
}
// Close closes the listener.
// Any blocked Accept operations will be unblocked and return errors.
func (l *onDemandListener) Close() error {
if l.lis != nil {
return l.lis.Close()
}
return nil
}
// Addr returns the listener's network address.
func (l *onDemandListener) Addr() net.Addr {
return l.addr
}
// parseNetwork parses the network type of the given address.
func parseNetwork(addr net.Addr) string {
switch addr := addr.(type) {
// TCP addresses resolved through net.ResolveTCPAddr give a default
// network of "tcp", so we'll map back the correct network for the given
// address. This ensures that we can listen on the correct interface
// (IPv4 vs IPv6).
case *net.TCPAddr:
if addr.IP.To4() != nil {
return "tcp4"
}
return "tcp6"
default:
return addr.Network()
}
}