2020-03-13 17:05:28 +01:00
package lncfg
import (
2020-05-25 18:08:58 +02:00
"context"
2020-03-13 17:05:28 +01:00
"fmt"
2020-11-25 01:40:54 +01:00
"time"
2020-03-13 17:05:28 +01:00
2021-04-26 19:08:11 +02:00
"github.com/lightningnetwork/lnd/kvdb"
"github.com/lightningnetwork/lnd/kvdb/etcd"
2020-03-13 17:05:28 +01:00
)
const (
2021-08-03 09:57:30 +02:00
channelDBName = "channel.db"
macaroonDBName = "macaroons.db"
2021-08-03 09:57:28 +02:00
2020-11-25 01:40:54 +01:00
BoltBackend = "bolt"
EtcdBackend = "etcd"
DefaultBatchCommitInterval = 500 * time . Millisecond
2021-08-03 09:57:28 +02:00
// NSChannelDB is the namespace name that we use for the combined graph
// and channel state DB.
NSChannelDB = "channeldb"
2021-08-03 09:57:30 +02:00
// NSMacaroonDB is the namespace name that we use for the macaroon DB.
NSMacaroonDB = "macaroondb"
2020-03-13 17:05:28 +01:00
)
// DB holds database configuration for LND.
type DB struct {
Backend string ` long:"backend" description:"The selected database backend." `
2020-11-25 01:40:54 +01:00
BatchCommitInterval time . Duration ` long:"batch-commit-interval" description:"The maximum duration the channel graph batch schedulers will wait before attempting to commit a batch of pending updates. This can be tradeoff database contenion for commit latency." `
2021-02-09 20:19:31 +01:00
Etcd * etcd . Config ` group:"etcd" namespace:"etcd" description:"Etcd settings." `
2020-03-13 17:05:28 +01:00
2020-05-15 16:59:37 +02:00
Bolt * kvdb . BoltConfig ` group:"bolt" namespace:"bolt" description:"Bolt settings." `
2020-03-13 17:05:28 +01:00
}
2021-08-03 09:57:22 +02:00
// DefaultDB creates and returns a new default DB config.
2020-03-13 17:05:28 +01:00
func DefaultDB ( ) * DB {
return & DB {
2020-11-25 01:40:54 +01:00
Backend : BoltBackend ,
BatchCommitInterval : DefaultBatchCommitInterval ,
2020-11-09 10:21:23 +01:00
Bolt : & kvdb . BoltConfig {
AutoCompactMinAge : kvdb . DefaultBoltAutoCompactMinAge ,
kvdb: add timeout options for bbolt (#4787)
* mod: bump btcwallet version to accept db timeout
* btcwallet: add DBTimeOut in config
* kvdb: add database timeout option for bbolt
This commit adds a DBTimeout option in bbolt config. The relevant
functions walletdb.Open/Create are updated to use this config. In
addition, the bolt compacter also applies the new timeout option.
* channeldb: add DBTimeout in db options
This commit adds the DBTimeout option for channeldb. A new unit
test file is created to test the default options. In addition,
the params used in kvdb.Create inside channeldb_test is updated
with a DefaultDBTimeout value.
* contractcourt+routing: use DBTimeout in kvdb
This commit touches multiple test files in contractcourt and routing.
The call of function kvdb.Create and kvdb.Open are now updated with
the new param DBTimeout, using the default value kvdb.DefaultDBTimeout.
* lncfg: add DBTimeout option in db config
The DBTimeout option is added to db config. A new unit test is
added to check the default DB config is created as expected.
* migration: add DBTimeout param in kvdb.Create/kvdb.Open
* keychain: update tests to use DBTimeout param
* htlcswitch+chainreg: add DBTimeout option
* macaroons: support DBTimeout config in creation
This commit adds the DBTimeout during the creation of macaroons.db.
The usage of kvdb.Create and kvdb.Open in its tests are updated with
a timeout value using kvdb.DefaultDBTimeout.
* walletunlocker: add dbTimeout option in UnlockerService
This commit adds a new param, dbTimeout, during the creation of
UnlockerService. This param is then passed to wallet.NewLoader
inside various service calls, specifying a timeout value to be
used when opening the bbolt. In addition, the macaroonService
is also called with this dbTimeout param.
* watchtower/wtdb: add dbTimeout param during creation
This commit adds the dbTimeout param for the creation of both
watchtower.db and wtclient.db.
* multi: add db timeout param for walletdb.Create
This commit adds the db timeout param for the function call
walletdb.Create. It touches only the test files found in chainntnfs,
lnwallet, and routing.
* lnd: pass DBTimeout config to relevant services
This commit enables lnd to pass the DBTimeout config to the following
services/config/functions,
- chainControlConfig
- walletunlocker
- wallet.NewLoader
- macaroons
- watchtower
In addition, the usage of wallet.Create is updated too.
* sample-config: add dbtimeout option
2020-12-08 00:31:49 +01:00
DBTimeout : kvdb . DefaultDBTimeout ,
2020-11-09 10:21:23 +01:00
} ,
2020-03-13 17:05:28 +01:00
}
}
// Validate validates the DB config.
func ( db * DB ) Validate ( ) error {
switch db . Backend {
2020-08-05 00:34:29 +02:00
case BoltBackend :
2020-03-13 17:05:28 +01:00
2020-08-05 00:34:29 +02:00
case EtcdBackend :
2020-06-18 21:42:59 +02:00
if ! db . Etcd . Embedded && db . Etcd . Host == "" {
2020-03-13 17:05:28 +01:00
return fmt . Errorf ( "etcd host must be set" )
}
default :
return fmt . Errorf ( "unknown backend, must be either \"%v\" or \"%v\"" ,
2020-08-05 00:34:29 +02:00
BoltBackend , EtcdBackend )
2020-03-13 17:05:28 +01:00
}
return nil
}
2021-02-09 17:44:43 +01:00
// Init should be called upon start to pre-initialize database access dependent
// on configuration.
func ( db * DB ) Init ( ctx context . Context , dbPath string ) error {
// Start embedded etcd server if requested.
if db . Backend == EtcdBackend && db . Etcd . Embedded {
cfg , _ , err := kvdb . StartEtcdTestBackend (
dbPath , db . Etcd . EmbeddedClientPort ,
db . Etcd . EmbeddedPeerPort ,
)
if err != nil {
return err
}
// Override the original config with the config for
// the embedded instance.
db . Etcd = cfg
}
return nil
}
2020-05-07 05:48:05 +02:00
// DatabaseBackends is a two-tuple that holds the set of active database
2021-08-03 09:57:26 +02:00
// backends for the daemon. The two backends we expose are the graph database
// backend, and the channel state backend.
2020-05-07 05:48:05 +02:00
type DatabaseBackends struct {
2021-08-03 09:57:26 +02:00
// GraphDB points to the database backend that contains the less
// critical data that is accessed often, such as the channel graph and
// chain height hints.
GraphDB kvdb . Backend
// ChanStateDB points to a possibly networked replicated backend that
// contains the critical channel state related data.
ChanStateDB kvdb . Backend
2021-08-03 09:57:27 +02:00
// HeightHintDB points to a possibly networked replicated backend that
// contains the chain height hint related data.
HeightHintDB kvdb . Backend
2021-08-03 09:57:28 +02:00
2021-08-03 09:57:30 +02:00
// MacaroonDB points to a database backend that stores the macaroon root
// keys.
MacaroonDB kvdb . Backend
2021-08-03 09:57:28 +02:00
// Remote indicates whether the database backends are remote, possibly
// replicated instances or local bbolt backed databases.
Remote bool
// CloseFuncs is a map of close functions for each of the initialized
// DB backends keyed by their namespace name.
CloseFuncs map [ string ] func ( ) error
2020-05-07 05:48:05 +02:00
}
2021-08-03 09:57:26 +02:00
// GetBackends returns a set of kvdb.Backends as set in the DB config.
2021-08-03 09:57:30 +02:00
func ( db * DB ) GetBackends ( ctx context . Context , chanDBPath ,
walletDBPath string ) ( * DatabaseBackends , error ) {
2020-05-07 05:48:05 +02:00
2021-08-03 09:57:28 +02:00
// We keep track of all the kvdb backends we actually open and return a
// reference to their close function so they can be cleaned up properly
// on error or shutdown.
closeFuncs := make ( map [ string ] func ( ) error )
2020-05-20 14:04:34 +02:00
2021-08-03 09:57:30 +02:00
// If we need to return early because of an error, we invoke any close
// function that has been initialized so far.
returnEarly := true
defer func ( ) {
if ! returnEarly {
return
}
for _ , closeFunc := range closeFuncs {
_ = closeFunc ( )
}
} ( )
2020-08-05 00:34:29 +02:00
if db . Backend == EtcdBackend {
2021-08-03 09:57:28 +02:00
etcdBackend , err := kvdb . Open (
2021-02-09 17:44:43 +01:00
kvdb . EtcdBackendName , ctx , db . Etcd ,
)
2020-05-07 05:48:05 +02:00
if err != nil {
2021-08-03 09:57:28 +02:00
return nil , fmt . Errorf ( "error opening etcd DB: %v" , err )
2020-05-07 05:48:05 +02:00
}
2021-08-03 09:57:28 +02:00
closeFuncs [ NSChannelDB ] = etcdBackend . Close
2021-08-03 09:57:30 +02:00
returnEarly = false
2021-08-03 09:57:28 +02:00
return & DatabaseBackends {
GraphDB : etcdBackend ,
ChanStateDB : etcdBackend ,
HeightHintDB : etcdBackend ,
2021-08-03 09:57:30 +02:00
MacaroonDB : etcdBackend ,
2021-08-03 09:57:28 +02:00
Remote : true ,
CloseFuncs : closeFuncs ,
} , nil
2020-05-07 05:48:05 +02:00
}
2021-08-03 09:57:28 +02:00
// We're using all bbolt based databases by default.
boltBackend , err := kvdb . GetBoltBackend ( & kvdb . BoltBackendConfig {
2021-08-03 09:57:30 +02:00
DBPath : chanDBPath ,
DBFileName : channelDBName ,
kvdb: add timeout options for bbolt (#4787)
* mod: bump btcwallet version to accept db timeout
* btcwallet: add DBTimeOut in config
* kvdb: add database timeout option for bbolt
This commit adds a DBTimeout option in bbolt config. The relevant
functions walletdb.Open/Create are updated to use this config. In
addition, the bolt compacter also applies the new timeout option.
* channeldb: add DBTimeout in db options
This commit adds the DBTimeout option for channeldb. A new unit
test file is created to test the default options. In addition,
the params used in kvdb.Create inside channeldb_test is updated
with a DefaultDBTimeout value.
* contractcourt+routing: use DBTimeout in kvdb
This commit touches multiple test files in contractcourt and routing.
The call of function kvdb.Create and kvdb.Open are now updated with
the new param DBTimeout, using the default value kvdb.DefaultDBTimeout.
* lncfg: add DBTimeout option in db config
The DBTimeout option is added to db config. A new unit test is
added to check the default DB config is created as expected.
* migration: add DBTimeout param in kvdb.Create/kvdb.Open
* keychain: update tests to use DBTimeout param
* htlcswitch+chainreg: add DBTimeout option
* macaroons: support DBTimeout config in creation
This commit adds the DBTimeout during the creation of macaroons.db.
The usage of kvdb.Create and kvdb.Open in its tests are updated with
a timeout value using kvdb.DefaultDBTimeout.
* walletunlocker: add dbTimeout option in UnlockerService
This commit adds a new param, dbTimeout, during the creation of
UnlockerService. This param is then passed to wallet.NewLoader
inside various service calls, specifying a timeout value to be
used when opening the bbolt. In addition, the macaroonService
is also called with this dbTimeout param.
* watchtower/wtdb: add dbTimeout param during creation
This commit adds the dbTimeout param for the creation of both
watchtower.db and wtclient.db.
* multi: add db timeout param for walletdb.Create
This commit adds the db timeout param for the function call
walletdb.Create. It touches only the test files found in chainntnfs,
lnwallet, and routing.
* lnd: pass DBTimeout config to relevant services
This commit enables lnd to pass the DBTimeout config to the following
services/config/functions,
- chainControlConfig
- walletunlocker
- wallet.NewLoader
- macaroons
- watchtower
In addition, the usage of wallet.Create is updated too.
* sample-config: add dbtimeout option
2020-12-08 00:31:49 +01:00
DBTimeout : db . Bolt . DBTimeout ,
2020-11-09 10:21:25 +01:00
NoFreelistSync : ! db . Bolt . SyncFreelist ,
AutoCompact : db . Bolt . AutoCompact ,
AutoCompactMinAge : db . Bolt . AutoCompactMinAge ,
} )
2020-05-07 05:48:05 +02:00
if err != nil {
2021-08-03 09:57:28 +02:00
return nil , fmt . Errorf ( "error opening bolt DB: %v" , err )
2020-03-13 17:05:28 +01:00
}
2021-08-03 09:57:28 +02:00
closeFuncs [ NSChannelDB ] = boltBackend . Close
2020-03-13 17:05:28 +01:00
2021-08-03 09:57:30 +02:00
macaroonBackend , err := kvdb . GetBoltBackend ( & kvdb . BoltBackendConfig {
DBPath : walletDBPath ,
DBFileName : macaroonDBName ,
DBTimeout : db . Bolt . DBTimeout ,
NoFreelistSync : ! db . Bolt . SyncFreelist ,
AutoCompact : db . Bolt . AutoCompact ,
AutoCompactMinAge : db . Bolt . AutoCompactMinAge ,
} )
if err != nil {
return nil , fmt . Errorf ( "error opening macaroon DB: %v" , err )
}
closeFuncs [ NSMacaroonDB ] = macaroonBackend . Close
returnEarly = false
2020-05-07 05:48:05 +02:00
return & DatabaseBackends {
2021-08-03 09:57:28 +02:00
GraphDB : boltBackend ,
ChanStateDB : boltBackend ,
HeightHintDB : boltBackend ,
2021-08-03 09:57:30 +02:00
MacaroonDB : macaroonBackend ,
2021-08-03 09:57:28 +02:00
CloseFuncs : closeFuncs ,
2020-05-07 05:48:05 +02:00
} , nil
2020-03-13 17:05:28 +01:00
}
// Compile-time constraint to ensure Workers implements the Validator interface.
var _ Validator = ( * DB ) ( nil )