-
Notifications
You must be signed in to change notification settings - Fork 112
/
server.go
1172 lines (978 loc) · 36 KB
/
server.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
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package taprootassets
import (
"context"
"fmt"
"net/http"
"strings"
"sync"
"sync/atomic"
"time"
"github.com/btcsuite/btcd/btcutil"
"github.com/btcsuite/btcd/chaincfg/chainhash"
"github.com/btcsuite/btcd/wire"
"github.com/davecgh/go-spew/spew"
proxy "github.com/grpc-ecosystem/grpc-gateway/v2/runtime"
"github.com/lightninglabs/lndclient"
"github.com/lightninglabs/taproot-assets/address"
"github.com/lightninglabs/taproot-assets/fn"
"github.com/lightninglabs/taproot-assets/monitoring"
"github.com/lightninglabs/taproot-assets/perms"
"github.com/lightninglabs/taproot-assets/rpcperms"
"github.com/lightninglabs/taproot-assets/tapchannel"
cmsg "github.com/lightninglabs/taproot-assets/tapchannelmsg"
"github.com/lightninglabs/taproot-assets/taprpc"
"github.com/lightningnetwork/lnd"
"github.com/lightningnetwork/lnd/build"
"github.com/lightningnetwork/lnd/channeldb"
lfn "github.com/lightningnetwork/lnd/fn"
"github.com/lightningnetwork/lnd/funding"
"github.com/lightningnetwork/lnd/input"
"github.com/lightningnetwork/lnd/lncfg"
"github.com/lightningnetwork/lnd/lnrpc"
"github.com/lightningnetwork/lnd/lntypes"
lnwl "github.com/lightningnetwork/lnd/lnwallet"
"github.com/lightningnetwork/lnd/lnwallet/chancloser"
"github.com/lightningnetwork/lnd/lnwire"
"github.com/lightningnetwork/lnd/macaroons"
"github.com/lightningnetwork/lnd/msgmux"
"github.com/lightningnetwork/lnd/routing"
"github.com/lightningnetwork/lnd/sweep"
"github.com/lightningnetwork/lnd/tlv"
"google.golang.org/grpc"
"google.golang.org/grpc/keepalive"
"google.golang.org/protobuf/proto"
"gopkg.in/macaroon-bakery.v2/bakery"
)
// Server is the main daemon construct for the Taproot Asset server. It handles
// spinning up the RPC sever, the database, and any other components that the
// Taproot Asset server needs to function.
type Server struct {
started int32
shutdown int32
// ready is a channel that is closed once the server is ready to do its
// work.
ready chan bool
chainParams *address.ChainParams
cfg *Config
*rpcServer
macaroonService *lndclient.MacaroonService
quit chan struct{}
wg sync.WaitGroup
}
// NewServer creates a new server given the passed config.
func NewServer(chainParams *address.ChainParams, cfg *Config) *Server {
return &Server{
chainParams: chainParams,
cfg: cfg,
ready: make(chan bool),
quit: make(chan struct{}, 1),
}
}
// UpdateConfig updates the server's configuration. This MUST be called before
// the server is started.
func (s *Server) UpdateConfig(cfg *Config) {
s.cfg = cfg
}
// initialize creates and initializes an instance of the macaroon service and
// rpc server based on the server configuration. This method ensures that
// everything is cleaned up in case there is an error while initializing any of
// the components.
//
// NOTE: the rpc server is not registered with any grpc server in this function.
func (s *Server) initialize(interceptorChain *rpcperms.InterceptorChain) error {
var ready bool
// If by the time this function exits we haven't yet given the ready
// signal, we detect it here and signal that the daemon should quit.
defer func() {
if !ready {
close(s.quit)
}
}()
// Show version at startup.
srvrLog.Infof("Version: %s, build=%s, logging=%s, "+
"debuglevel=%s, active_network=%v", Version(), build.Deployment,
build.LoggingType, s.cfg.DebugLevel, s.cfg.ChainParams.Name)
// Depending on how far we got in initializing the server, we might need
// to clean up certain services that were already started. Keep track of
// them with this map of service name to shutdown function.
shutdownFuncs := make(map[string]func() error)
defer func() {
for serviceName, shutdownFn := range shutdownFuncs {
if err := shutdownFn(); err != nil {
srvrLog.Errorf("Error shutting down %s "+
"service: %v", serviceName, err)
}
}
}()
// If we're using macaroons, then go ahead and instantiate the main
// macaroon service.
if !s.cfg.RPCConfig.NoMacaroons {
var err error
s.macaroonService, err = lndclient.NewMacaroonService(
&lndclient.MacaroonServiceConfig{
RootKeyStore: s.cfg.DatabaseConfig.RootKeyStore,
MacaroonLocation: tapdMacaroonLocation,
MacaroonPath: s.cfg.MacaroonPath,
Checkers: []macaroons.Checker{
macaroons.IPLockChecker,
},
RequiredPerms: perms.RequiredPermissions,
},
)
if err != nil {
return fmt.Errorf("unable to create macaroon "+
"service: %w", err)
}
rpcsLog.Infof("Validating RPC requests based on macaroon "+
"at: %v", s.cfg.MacaroonPath)
if err := s.macaroonService.Start(); err != nil {
return err
}
shutdownFuncs["macaroonService"] = s.macaroonService.Stop
if interceptorChain != nil {
// Register the macaroon service with the main
// interceptor chain.
interceptorChain.AddMacaroonService(
s.macaroonService.Service,
)
// Register all our known permission with the macaroon
// service.
for method, ops := range perms.RequiredPermissions {
err := interceptorChain.AddPermission(
method, ops,
)
if err != nil {
return err
}
}
}
}
// Initialize, and register our implementation of the gRPC interface
// exported by the rpcServer.
var err error
s.rpcServer, err = newRPCServer(
s.cfg.SignalInterceptor, interceptorChain, s.cfg,
)
if err != nil {
return fmt.Errorf("unable to create rpc server: %w", err)
}
// First, we'll start the main batched asset minter.
if err := s.cfg.AssetMinter.Start(); err != nil {
return fmt.Errorf("unable to start asset minter: %w", err)
}
// Next, we'll start the asset custodian.
if err := s.cfg.AssetCustodian.Start(); err != nil {
return fmt.Errorf("unable to start asset custodian: %w", err)
}
if err := s.cfg.ReOrgWatcher.Start(); err != nil {
return fmt.Errorf("unable to start re-org watcher: %w", err)
}
if err := s.cfg.ChainPorter.Start(); err != nil {
return fmt.Errorf("unable to start chain porter: %w", err)
}
if err := s.cfg.UniverseFederation.Start(); err != nil {
return fmt.Errorf("unable to start universe "+
"federation: %w", err)
}
// Start the request for quote (RFQ) manager.
if err := s.cfg.RfqManager.Start(); err != nil {
return fmt.Errorf("unable to start RFQ manager: %w", err)
}
// Start the auxiliary components.
if err := s.cfg.AuxLeafSigner.Start(); err != nil {
return fmt.Errorf("unable to start aux leaf signer: %w", err)
}
if err := s.cfg.AuxFundingController.Start(); err != nil {
return fmt.Errorf("unable to start aux funding controller: %w",
err)
}
if err := s.cfg.AuxTrafficShaper.Start(); err != nil {
return fmt.Errorf("unable to start aux traffic shaper %w", err)
}
if err := s.cfg.AuxInvoiceManager.Start(); err != nil {
return fmt.Errorf("unable to start aux invoice mgr: %w", err)
}
if err := s.cfg.AuxSweeper.Start(); err != nil {
return fmt.Errorf("unable to start aux sweeper mgr: %w", err)
}
// If the server is configured to sync all assets by default, we'll set
// the universe federation to allow public access.
if s.cfg.UniFedSyncAllAssets {
err := s.cfg.UniverseFederation.SetConfigSyncAllAssets()
if err != nil {
return fmt.Errorf("unable to set public access "+
"for universe federation: %w", err)
}
}
// Now we have created all dependencies necessary to populate and
// start the RPC server.
if err := s.rpcServer.Start(); err != nil {
return fmt.Errorf("unable to start RPC server: %w", err)
}
// This does have no effect if starting the rpc server is the last step
// in this function, but its better to have it here in case we add more
// steps in the future.
//
// NOTE: if this is not the last step in the function, feel free to
// delete this comment.
shutdownFuncs["rpcServer"] = s.rpcServer.Stop
shutdownFuncs = nil
close(s.ready)
ready = true
return nil
}
// RunUntilShutdown runs the main Taproot Asset server loop until a signal is
// received to shut down the process.
func (s *Server) RunUntilShutdown(mainErrChan <-chan error) error {
if atomic.AddInt32(&s.started, 1) != 1 {
return nil
}
defer func() {
srvrLog.Info("Shutdown complete\n")
err := s.cfg.LogWriter.Close()
if err != nil {
srvrLog.Errorf("Could not close log rotator: %v", err)
}
}()
mkErr := func(format string, args ...interface{}) error {
logFormat := strings.ReplaceAll(format, "%w", "%v")
srvrLog.Errorf("Shutting down because error in main "+
"method: "+logFormat, args...)
return fmt.Errorf(format, args...)
}
// If we have chosen to start with a dedicated listener for the rpc
// server, we set it directly.
grpcListeners := append(
[]*lnd.ListenerWithSignal{}, s.cfg.LisCfg.RPCListeners...,
)
if len(grpcListeners) == 0 {
// Otherwise we create listeners from the RPCListeners defined
// in the config.
for _, grpcEndpoint := range s.cfg.RPCListeners {
// Start a gRPC server listening for HTTP/2
// connections.
lis, err := lncfg.ListenOnAddress(grpcEndpoint)
if err != nil {
return mkErr("unable to listen on %s: %v",
grpcEndpoint, err)
}
defer func() {
_ = lis.Close()
}()
grpcListeners = append(
grpcListeners, &lnd.ListenerWithSignal{
Listener: lis,
Ready: make(chan struct{}),
},
)
}
}
serverOpts := s.cfg.GrpcServerOpts
// Get RPC endpoints which don't require macaroons.
macaroonWhitelist := perms.MacaroonWhitelist(
s.cfg.UniversePublicAccess.IsReadAccessGranted(),
s.cfg.UniversePublicAccess.IsWriteAccessGranted(),
s.cfg.RPCConfig.AllowPublicUniProofCourier,
s.cfg.RPCConfig.AllowPublicStats,
)
// Create a new RPC interceptor that we'll add to the GRPC server. This
// will be used to log the API calls invoked on the GRPC server.
interceptorChain := rpcperms.NewInterceptorChain(
rpcsLog, s.cfg.RPCConfig.NoMacaroons, nil, macaroonWhitelist,
)
if err := interceptorChain.Start(); err != nil {
return mkErr("error starting interceptor chain: %v", err)
}
defer func() {
err := interceptorChain.Stop()
if err != nil {
rpcsLog.Warnf("error stopping RPC interceptor "+
"chain: %v", err)
}
}()
err := s.initialize(interceptorChain)
if err != nil {
return mkErr("unable to initialize RPC server: %v", err)
}
rpcServerOpts := interceptorChain.CreateServerOpts(
&rpcperms.InterceptorsOpts{
Prometheus: &s.cfg.Prometheus,
},
)
serverOpts = append(serverOpts, rpcServerOpts...)
serverOpts = append(serverOpts, ServerMaxMsgReceiveSize)
keepAliveParams := keepalive.ServerParameters{
MaxConnectionIdle: time.Minute * 2,
}
serverOpts = append(serverOpts, grpc.KeepaliveParams(keepAliveParams))
grpcServer := grpc.NewServer(serverOpts...)
defer grpcServer.Stop()
err = s.rpcServer.RegisterWithGrpcServer(grpcServer)
if err != nil {
return mkErr("error registering gRPC server: %v", err)
}
// All the necessary components have been registered, so we can
// actually start listening for requests.
err = startGrpcListen(s.cfg, grpcServer, grpcListeners)
if err != nil {
return mkErr("error starting gRPC listener: %v", err)
}
// Now start the REST proxy for our gRPC server above. We'll ensure we
// direct tapd to connect to its loopback address rather than a
// wildcard to prevent certificate issues when accessing the proxy
// externally.
stopProxy, err := startRestProxy(s.cfg, s.rpcServer)
if err != nil {
return mkErr("error starting REST proxy: %v", err)
}
defer stopProxy()
// TODO(roasbeef): make macaroons service, needs the lnd APIs present
// an abstracted
defer func() {
_ = s.rpcServer.Stop()
}()
// We transition the RPC state to Active, as the RPC server is up.
interceptorChain.SetRPCActive()
// We transition the server state to Active, as the server is up.
interceptorChain.SetServerActive()
// If Prometheus monitoring is enabled, start the Prometheus exporter.
if s.cfg.Prometheus.Active {
// Set the gRPC server instance in the Prometheus exporter
// configuration.
s.cfg.Prometheus.RPCServer = grpcServer
// Provide Prometheus collectors with access to Universe stats.
s.cfg.Prometheus.UniverseStats = s.cfg.UniverseStats
// Provide Prometheus collectors with access to the asset store.
s.cfg.Prometheus.AssetStore = s.cfg.AssetStore
// Provide Prometheus collectors with access to the asset
// minter.
s.cfg.Prometheus.AssetMinter = s.cfg.AssetMinter
promExporter, err := monitoring.NewPrometheusExporter(
&s.cfg.Prometheus,
)
if err != nil {
return mkErr("Unable to get prometheus exporter: %v",
err)
}
if err := promExporter.Start(); err != nil {
return mkErr("Unable to start prometheus exporter: %v",
err)
}
srvrLog.Infof("Prometheus exporter server listening on %v",
s.cfg.Prometheus.ListenAddr)
}
srvrLog.Infof("Taproot Asset Daemon fully active!")
// Wait for shutdown signal from either a graceful server stop or from
// the interrupt handler.
select {
case <-s.cfg.SignalInterceptor.ShutdownChannel():
srvrLog.Infof("Received SIGINT (Ctrl+C). Shutting down...")
case err := <-mainErrChan:
if err == nil {
srvrLog.Debug("Main err chan closed")
return nil
}
// We'll report the error to the main daemon, but only if this
// isn't a context cancel.
if fn.IsCanceled(err) {
srvrLog.Debugf("Got context canceled error: %v", err)
return nil
}
return mkErr("received critical error from subsystem: %w", err)
case <-s.quit:
}
return nil
}
// StartAsSubserver is an alternative to Start where the RPC server does not
// create its own gRPC server but registers to an existing one. The same goes
// for REST (if enabled), instead of creating an own mux and HTTP server, we
// register to an existing one.
func (s *Server) StartAsSubserver(lndGrpc *lndclient.GrpcLndServices) error {
if err := s.initialize(nil); err != nil {
return fmt.Errorf("unable to initialize RPC server: %w", err)
}
return nil
}
// ValidateMacaroon extracts the macaroon from the context's gRPC metadata,
// checks its signature, makes sure all specified permissions for the called
// method are contained within and finally ensures all caveat conditions are
// met. A non-nil error is returned if any of the checks fail. This method is
// needed to enable tapd running as an external subserver in the same process
// as lnd but still validate its own macaroons.
func (s *Server) ValidateMacaroon(ctx context.Context,
requiredPermissions []bakery.Op, fullMethod string) error {
if s.macaroonService == nil {
return fmt.Errorf("macaroon service has not been initialised")
}
// Delegate the call to tapd's own macaroon validator service.
return s.macaroonService.ValidateMacaroon(
ctx, requiredPermissions, fullMethod,
)
}
// startGrpcListen starts the GRPC server on the passed listeners.
func startGrpcListen(cfg *Config, grpcServer *grpc.Server,
listeners []*lnd.ListenerWithSignal) error {
// Use a WaitGroup so we can be sure the instructions on how to input the
// password is the last thing to be printed to the console.
var wg sync.WaitGroup
for _, lis := range listeners {
wg.Add(1)
go func(lis *lnd.ListenerWithSignal) {
rpcsLog.Infof("RPC server listening on %s", lis.Addr())
// Close the ready chan to indicate we are listening.
close(lis.Ready)
wg.Done()
_ = grpcServer.Serve(lis)
}(lis)
}
// Wait for gRPC servers to be up running.
wg.Wait()
return nil
}
// startRestProxy starts the given REST proxy on the listeners found in the
// config.
func startRestProxy(cfg *Config, rpcServer *rpcServer) (func(), error) {
// We use the first RPC listener as the destination for our REST proxy.
// If the listener is set to listen on all interfaces, we replace it
// with localhost, as we cannot dial it directly.
restProxyDest := cfg.RPCListeners[0].String()
switch {
case strings.Contains(restProxyDest, "0.0.0.0"):
restProxyDest = strings.Replace(
restProxyDest, "0.0.0.0", "127.0.0.1", 1,
)
case strings.Contains(restProxyDest, "[::]"):
restProxyDest = strings.Replace(
restProxyDest, "[::]", "[::1]", 1,
)
}
var shutdownFuncs []func()
shutdown := func() {
for _, shutdownFn := range shutdownFuncs {
shutdownFn()
}
}
// Start a REST proxy for our gRPC server.
ctx := context.Background()
ctx, cancel := context.WithCancel(ctx)
shutdownFuncs = append(shutdownFuncs, cancel)
// We'll set up a proxy that will forward REST calls to the GRPC
// server.
//
// The default JSON marshaler of the REST proxy only sets OrigName to
// true, which instructs it to use the same field names as specified in
// the proto file and not switch to camel case. What we also want is
// that the marshaler prints all values, even if they are falsey.
customMarshalerOption := proxy.WithMarshalerOption(
proxy.MIMEWildcard, &proxy.JSONPb{
MarshalOptions: *taprpc.RESTJsonMarshalOpts,
UnmarshalOptions: *taprpc.RESTJsonUnmarshalOpts,
},
)
mux := proxy.NewServeMux(
customMarshalerOption,
// Don't allow falling back to other HTTP methods, we want exact
// matches only. The actual method to be used can be overwritten
// by setting X-HTTP-Method-Override so there should be no
// reason for not specifying the correct method in the first
// place.
proxy.WithDisablePathLengthFallback(),
)
// Register our services with the REST proxy.
err := lnrpc.RegisterStateHandlerFromEndpoint(
ctx, mux, restProxyDest, cfg.RestDialOpts,
)
if err != nil {
return nil, err
}
err = rpcServer.RegisterWithRestProxy(
ctx, mux, cfg.RestDialOpts, restProxyDest,
)
if err != nil {
return nil, err
}
// Wrap the default grpc-gateway handler with the WebSocket handler.
restHandler := lnrpc.NewWebSocketProxy(
mux, rpcsLog, cfg.WSPingInterval, cfg.WSPongWait,
nil,
)
// Use a WaitGroup so we can be sure the instructions on how to input the
// password is the last thing to be printed to the console.
var wg sync.WaitGroup
// Now spin up a network listener for each requested port and start a
// goroutine that serves REST with the created mux there.
for _, restEndpoint := range cfg.RESTListeners {
lis, err := cfg.RestListenFunc(restEndpoint)
if err != nil {
rpcsLog.Errorf("gRPC proxy unable to listen on %s",
restEndpoint)
return nil, err
}
shutdownFuncs = append(shutdownFuncs, func() {
err := lis.Close()
if err != nil {
rpcsLog.Errorf("Error closing listener: %v",
err)
}
})
wg.Add(1)
go func() {
rpcsLog.Infof("gRPC proxy started at %s", lis.Addr())
// Create our proxy chain now. A request will pass
// through the following chain:
// req ---> CORS handler --> WS proxy --->
// REST proxy --> gRPC endpoint
corsHandler := allowCORS(restHandler, cfg.RestCORS)
wg.Done()
err := http.Serve(lis, corsHandler) //nolint:gosec
if err != nil && !lnrpc.IsClosedConnError(err) {
rpcsLog.Error(err)
}
}()
}
// Wait for REST servers to be up running.
wg.Wait()
return shutdown, nil
}
// Stop signals that the main tapd server should attempt a graceful shutdown.
func (s *Server) Stop() error {
if atomic.AddInt32(&s.shutdown, 1) != 1 {
return nil
}
srvrLog.Infof("Stopping Main Server")
if err := s.rpcServer.Stop(); err != nil {
return err
}
if err := s.cfg.AssetMinter.Stop(); err != nil {
return err
}
if err := s.cfg.AssetCustodian.Stop(); err != nil {
return err
}
if err := s.cfg.ReOrgWatcher.Stop(); err != nil {
return err
}
if err := s.cfg.ChainPorter.Stop(); err != nil {
return err
}
if err := s.cfg.UniverseFederation.Start(); err != nil {
return err
}
if err := s.cfg.RfqManager.Stop(); err != nil {
return err
}
if err := s.cfg.AuxLeafSigner.Stop(); err != nil {
return err
}
if err := s.cfg.AuxFundingController.Stop(); err != nil {
return err
}
if err := s.cfg.AuxTrafficShaper.Stop(); err != nil {
return err
}
if err := s.cfg.AuxInvoiceManager.Stop(); err != nil {
return err
}
if err := s.cfg.AuxSweeper.Stop(); err != nil {
return err
}
if s.macaroonService != nil {
err := s.macaroonService.Stop()
if err != nil {
return err
}
}
close(s.quit)
s.wg.Wait()
return nil
}
// A compile-time check to ensure that Server fully implements the
// lnwallet.AuxLeafStore, lnd.AuxDataParser, lnwallet.AuxSigner,
// msgmux.Endpoint, funding.AuxFundingController, routing.TlvTrafficShaper
// and chancloser.AuxChanCloser interfaces.
var _ lnwl.AuxLeafStore = (*Server)(nil)
var _ lnd.AuxDataParser = (*Server)(nil)
var _ lnwl.AuxSigner = (*Server)(nil)
var _ msgmux.Endpoint = (*Server)(nil)
var _ funding.AuxFundingController = (*Server)(nil)
var _ routing.TlvTrafficShaper = (*Server)(nil)
var _ chancloser.AuxChanCloser = (*Server)(nil)
var _ lnwl.AuxContractResolver = (*Server)(nil)
var _ sweep.AuxSweeper = (*Server)(nil)
// waitForReady blocks until the server is ready to serve requests. If the
// server is shutting down before we ever become ready, an error is returned.
func (s *Server) waitForReady() error {
// We just need to wait for the server to be ready (but not block
// shutdown in case of a startup error). If we shut down after passing
// this part of the code, the called component will handle the quit
// signal.
// In order to give priority to the quit signal, we wrap the blocking
// select so that we give a chance to the quit signal to be read first.
// This is needed as there is currently no wait to un-set the ready
// signal, so we would have a race between the 2 channels.
select {
case <-s.quit:
return fmt.Errorf("tapd is shutting down")
default:
// We now wait for either signal to be provided.
select {
case <-s.ready:
return nil
case <-s.quit:
return fmt.Errorf("tapd is shutting down")
}
}
}
// FetchLeavesFromView attempts to fetch the auxiliary leaves that correspond to
// the passed aux blob, and pending fully evaluated HTLC view.
//
// NOTE: This method is part of the lnwallet.AuxLeafStore interface.
func (s *Server) FetchLeavesFromView(
in lnwl.CommitDiffAuxInput) lfn.Result[lnwl.CommitDiffAuxResult] {
srvrLog.Debugf("FetchLeavesFromView called, whoseCommit=%v, "+
"ourBalance=%v, theirBalance=%v, numOurUpdates=%d, "+
"numTheirUpdates=%d", in.WhoseCommit, in.OurBalance,
in.TheirBalance, len(in.UnfilteredView.OurUpdates),
len(in.UnfilteredView.TheirUpdates))
// The aux leaf creator is fully stateless, and we don't need to wait
// for the server to be started before being able to use it.
return tapchannel.FetchLeavesFromView(s.chainParams, in)
}
// FetchLeavesFromCommit attempts to fetch the auxiliary leaves that
// correspond to the passed aux blob, and an existing channel
// commitment.
//
// NOTE: This method is part of the lnwallet.AuxLeafStore interface.
// nolint:lll
func (s *Server) FetchLeavesFromCommit(chanState lnwl.AuxChanState,
com channeldb.ChannelCommitment,
keys lnwl.CommitmentKeyRing) lfn.Result[lnwl.CommitDiffAuxResult] {
srvrLog.Debugf("FetchLeavesFromCommit called, ourBalance=%v, "+
"theirBalance=%v, numHtlcs=%d", com.LocalBalance,
com.RemoteBalance, len(com.Htlcs))
// The aux leaf creator is fully stateless, and we don't need to wait
// for the server to be started before being able to use it.
return tapchannel.FetchLeavesFromCommit(
s.chainParams, chanState, com, keys,
)
}
// FetchLeavesFromRevocation attempts to fetch the auxiliary leaves
// from a channel revocation that stores balance + blob information.
//
// NOTE: This method is part of the lnwallet.AuxLeafStore interface.
func (s *Server) FetchLeavesFromRevocation(
r *channeldb.RevocationLog) lfn.Result[lnwl.CommitDiffAuxResult] {
srvrLog.Debugf("FetchLeavesFromRevocation called, ourBalance=%v, "+
"teirBalance=%v, numHtlcs=%d", r.OurBalance, r.TheirBalance,
len(r.HTLCEntries))
// The aux leaf creator is fully stateless, and we don't need to wait
// for the server to be started before being able to use it.
return tapchannel.FetchLeavesFromRevocation(r)
}
// ApplyHtlcView serves as the state transition function for the custom
// channel's blob. Given the old blob, and an HTLC view, then a new
// blob should be returned that reflects the pending updates.
//
// NOTE: This method is part of the lnwallet.AuxLeafStore interface.
func (s *Server) ApplyHtlcView(
in lnwl.CommitDiffAuxInput) lfn.Result[lfn.Option[tlv.Blob]] {
srvrLog.Debugf("ApplyHtlcView called, whoseCommit=%v, "+
"ourBalance=%v, theirBalance=%v, numOurUpdates=%d, "+
"numTheirUpdates=%d", in.WhoseCommit, in.OurBalance,
in.TheirBalance, len(in.UnfilteredView.OurUpdates),
len(in.UnfilteredView.TheirUpdates))
// The aux leaf creator is fully stateless, and we don't need to wait
// for the server to be started before being able to use it.
return tapchannel.ApplyHtlcView(s.chainParams, in)
}
// InlineParseCustomData replaces any custom data binary blob in the given RPC
// message with its corresponding JSON formatted data. This transforms the
// binary (likely TLV encoded) data to a human-readable JSON representation
// (still as byte slice).
//
// NOTE: This method is part of the lnd.AuxDataParser interface.
func (s *Server) InlineParseCustomData(msg proto.Message) error {
srvrLog.Tracef("InlineParseCustomData called with %T", msg)
// We don't need to wait for the server to be ready here, as the
// following function is fully stateless.
return cmsg.ParseCustomChannelData(msg)
}
// Name returns the name of this endpoint. This MUST be unique across all
// registered endpoints.
//
// NOTE: This method is part of the msgmux.MsgEndpoint interface.
func (s *Server) Name() msgmux.EndpointName {
return tapchannel.MsgEndpointName
}
// CanHandle returns true if the target message can be routed to this endpoint.
//
// NOTE: This method is part of the msgmux.MsgEndpoint interface.
func (s *Server) CanHandle(msg msgmux.PeerMsg) bool {
err := s.waitForReady()
if err != nil {
srvrLog.Debugf("Can't handle PeerMsg, server not ready %v",
err)
return false
}
return s.cfg.AuxFundingController.CanHandle(msg)
}
// SendMessage handles the target message, and returns true if the message was
// able to be processed.
//
// NOTE: This method is part of the msgmux.MsgEndpoint interface.
func (s *Server) SendMessage(msg msgmux.PeerMsg) bool {
err := s.waitForReady()
if err != nil {
srvrLog.Debugf("Failed to send PeerMsg, server not ready %v",
err)
return false
}
return s.cfg.AuxFundingController.SendMessage(msg)
}
// SubmitSecondLevelSigBatch takes a batch of aux sign jobs and processes them
// asynchronously.
//
// NOTE: This method is part of the lnwallet.AuxSigner interface.
func (s *Server) SubmitSecondLevelSigBatch(chanState lnwl.AuxChanState,
commitTx *wire.MsgTx, sigJob []lnwl.AuxSigJob) error {
srvrLog.Debugf("SubmitSecondLevelSigBatch called, numSigs=%d",
len(sigJob))
if err := s.waitForReady(); err != nil {
return err
}
return s.cfg.AuxLeafSigner.SubmitSecondLevelSigBatch(
chanState, commitTx, sigJob,
)
}
// PackSigs takes a series of aux signatures and packs them into a single blob
// that can be sent alongside the CommitSig messages.
//
// NOTE: This method is part of the lnwallet.AuxSigner interface.
func (s *Server) PackSigs(
blob []lfn.Option[tlv.Blob]) lfn.Result[lfn.Option[tlv.Blob]] {
srvrLog.Debugf("PackSigs called")
// We don't need to wait for the server to be ready here, as the
// PackSigs method is fully stateless.
return tapchannel.PackSigs(blob)
}
// UnpackSigs takes a packed blob of signatures and returns the original
// signatures for each HTLC, keyed by HTLC index.
//
// NOTE: This method is part of the lnwallet.AuxSigner interface.
func (s *Server) UnpackSigs(
blob lfn.Option[tlv.Blob]) lfn.Result[[]lfn.Option[tlv.Blob]] {
srvrLog.Debugf("UnpackSigs called")
// We don't need to wait for the server to be ready here, as the
// UnpackSigs method is fully stateless.
return tapchannel.UnpackSigs(blob)
}
// VerifySecondLevelSigs attempts to synchronously verify a batch of aux sig
// jobs.
//
// NOTE: This method is part of the lnwallet.AuxSigner interface.
func (s *Server) VerifySecondLevelSigs(chanState lnwl.AuxChanState,
commitTx *wire.MsgTx, verifyJob []lnwl.AuxVerifyJob) error {
srvrLog.Debugf("VerifySecondLevelSigs called")
// We don't need to wait for the server to be ready here, as the
// VerifySecondLevelSigs method is fully stateless.
return tapchannel.VerifySecondLevelSigs(
s.chainParams, chanState, commitTx, verifyJob,
)
}
// DescFromPendingChanID takes a pending channel ID, that may already be
// known due to prior custom channel messages, and maybe returns an aux
// funding desc which can be used to modify how a channel is funded.
//
// NOTE: This method is part of the funding.AuxFundingController interface.
func (s *Server) DescFromPendingChanID(pid funding.PendingChanID,
chanState lnwl.AuxChanState,
keyRing lntypes.Dual[lnwl.CommitmentKeyRing],
initiator bool) funding.AuxFundingDescResult {
srvrLog.Debugf("DescFromPendingChanID called")
if err := s.waitForReady(); err != nil {
return lfn.Err[lfn.Option[lnwl.AuxFundingDesc]](err)
}
return s.cfg.AuxFundingController.DescFromPendingChanID(
pid, chanState, keyRing, initiator,
)
}
// DeriveTapscriptRoot takes a pending channel ID and maybe returns a
// tapscript root that should be used when creating any MuSig2 sessions
// for a channel.
//
// NOTE: This method is part of the funding.AuxFundingController interface.
func (s *Server) DeriveTapscriptRoot(
pid funding.PendingChanID) funding.AuxTapscriptResult {
srvrLog.Debugf("DeriveTapscriptRoot called")
if err := s.waitForReady(); err != nil {
return lfn.Err[lfn.Option[chainhash.Hash]](err)
}
return s.cfg.AuxFundingController.DeriveTapscriptRoot(pid)
}
// ChannelReady is called when a channel has been fully opened and is ready to
// be used. This can be used to perform any final setup or cleanup.
//
// NOTE: This method is part of the funding.AuxFundingController interface.
func (s *Server) ChannelReady(openChan lnwl.AuxChanState) error {
srvrLog.Debugf("ChannelReady called")
if err := s.waitForReady(); err != nil {
return err
}
return s.cfg.AuxFundingController.ChannelReady(openChan)
}
// ChannelFinalized is called once we receive the commit sig from a remote
// party and find it to be valid.
//
// NOTE: This method is part of the funding.AuxFundingController interface.
func (s *Server) ChannelFinalized(pid funding.PendingChanID) error {
srvrLog.Debugf("ChannelFinalized called")
if err := s.waitForReady(); err != nil {
return err
}
return s.cfg.AuxFundingController.ChannelFinalized(pid)
}
// ShouldHandleTraffic is called in order to check if the channel identified by
// the provided channel ID is handled by the traffic shaper implementation. If
// it is handled by the traffic shaper, then the normal bandwidth calculation
// can be skipped and the bandwidth returned by PaymentBandwidth should be used
// instead.
//
// NOTE: This method is part of the routing.TlvTrafficShaper interface.
func (s *Server) ShouldHandleTraffic(cid lnwire.ShortChannelID,
fundingBlob lfn.Option[tlv.Blob]) (bool, error) {
srvrLog.Debugf("HandleTraffic called, cid=%v, fundingBlob=%v", cid,