2017-06-20 14:59:42 +02:00
|
|
|
// Copyright (c) 2013-2017 The btcsuite developers
|
2015-12-01 19:44:58 +01:00
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
2013-10-29 15:38:51 +01:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2017-06-30 05:13:16 +02:00
|
|
|
"io"
|
2014-07-03 13:45:40 +02:00
|
|
|
"os"
|
2017-06-20 14:59:42 +02:00
|
|
|
"path/filepath"
|
2014-07-03 13:45:40 +02:00
|
|
|
|
2015-01-16 18:43:34 +01:00
|
|
|
"github.com/btcsuite/btclog"
|
2017-06-20 14:59:42 +02:00
|
|
|
"github.com/jrick/logrotate/rotator"
|
2021-08-26 00:58:28 +02:00
|
|
|
"github.com/lbryio/lbcd/rpcclient"
|
|
|
|
"github.com/lbryio/lbcwallet/chain"
|
|
|
|
"github.com/lbryio/lbcwallet/rpc/legacyrpc"
|
|
|
|
"github.com/lbryio/lbcwallet/rpc/rpcserver"
|
|
|
|
"github.com/lbryio/lbcwallet/wallet"
|
|
|
|
"github.com/lbryio/lbcwallet/wtxmgr"
|
2013-10-29 15:38:51 +01:00
|
|
|
)
|
|
|
|
|
2017-06-20 14:59:42 +02:00
|
|
|
// logWriter implements an io.Writer that outputs to both standard output and
|
|
|
|
// the write-end pipe of an initialized log rotator.
|
|
|
|
type logWriter struct{}
|
|
|
|
|
|
|
|
func (logWriter) Write(p []byte) (n int, err error) {
|
2021-03-24 14:43:24 +01:00
|
|
|
_, _ = os.Stdout.Write(p)
|
|
|
|
_, _ = logRotatorPipe.Write(p)
|
2017-06-20 14:59:42 +02:00
|
|
|
return len(p), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loggers per subsystem. A single backend logger is created and all subsytem
|
|
|
|
// loggers created from it will write to the backend. When adding new
|
|
|
|
// subsystems, add the subsystem logger variable here and to the
|
|
|
|
// subsystemLoggers map.
|
|
|
|
//
|
|
|
|
// Loggers can not be used before the log rotator has been initialized with a
|
|
|
|
// log file. This must be performed early during application startup by calling
|
|
|
|
// initLogRotator.
|
2013-10-29 15:38:51 +01:00
|
|
|
var (
|
2017-06-20 14:59:42 +02:00
|
|
|
// backendLog is the logging backend used to create all subsystem loggers.
|
|
|
|
// The backend must not be used before the log rotator has been initialized,
|
|
|
|
// or data races and/or nil pointer dereferences will occur.
|
|
|
|
backendLog = btclog.NewBackend(logWriter{})
|
|
|
|
|
|
|
|
// logRotator is one of the logging outputs. It should be closed on
|
|
|
|
// application shutdown.
|
|
|
|
logRotator *rotator.Rotator
|
|
|
|
|
2018-05-24 03:59:31 +02:00
|
|
|
// logRotatorPipe is the write-end pipe for writing to the log rotator. It
|
|
|
|
// is written to by the Write method of the logWriter type.
|
|
|
|
logRotatorPipe *io.PipeWriter
|
|
|
|
|
2017-06-20 14:59:42 +02:00
|
|
|
log = backendLog.Logger("BTCW")
|
|
|
|
walletLog = backendLog.Logger("WLLT")
|
|
|
|
txmgrLog = backendLog.Logger("TMGR")
|
|
|
|
chainLog = backendLog.Logger("CHNS")
|
|
|
|
grpcLog = backendLog.Logger("GRPC")
|
|
|
|
legacyRPCLog = backendLog.Logger("RPCS")
|
2017-06-30 05:13:16 +02:00
|
|
|
btcnLog = backendLog.Logger("BTCN")
|
2013-10-29 15:38:51 +01:00
|
|
|
)
|
|
|
|
|
2017-06-20 14:59:42 +02:00
|
|
|
// Initialize package-global logger variables.
|
|
|
|
func init() {
|
|
|
|
wallet.UseLogger(walletLog)
|
|
|
|
wtxmgr.UseLogger(txmgrLog)
|
|
|
|
chain.UseLogger(chainLog)
|
2017-08-25 02:30:43 +02:00
|
|
|
rpcclient.UseLogger(chainLog)
|
2017-06-20 14:59:42 +02:00
|
|
|
rpcserver.UseLogger(grpcLog)
|
|
|
|
legacyrpc.UseLogger(legacyRPCLog)
|
|
|
|
}
|
|
|
|
|
2014-06-20 01:11:47 +02:00
|
|
|
// subsystemLoggers maps each subsystem identifier to its associated logger.
|
|
|
|
var subsystemLoggers = map[string]btclog.Logger{
|
|
|
|
"BTCW": log,
|
2015-04-02 20:13:38 +02:00
|
|
|
"WLLT": walletLog,
|
2015-04-06 21:03:24 +02:00
|
|
|
"TMGR": txmgrLog,
|
Remove account support, fix races on btcd connect.
This commit is the result of several big changes being made to the
wallet. In particular, the "handshake" (initial sync to the chain
server) was quite racy and required proper synchronization. To make
fixing this race easier, several other changes were made to the
internal wallet data structures and much of the RPC server ended up
being rewritten.
First, all account support has been removed. The previous Account
struct has been replaced with a Wallet structure, which includes a
keystore for saving keys, and a txstore for storing relevant
transactions. This decision has been made since it is the opinion of
myself and other developers that bitcoind accounts are fundamentally
broken (as accounts implemented by bitcoind support both arbitrary
address groupings as well as moving balances between accounts -- these
are fundamentally incompatible features), and since a BIP0032 keystore
is soon planned to be implemented (at which point, "accounts" can
return as HD extended keys). With the keystore handling the grouping
of related keys, there is no reason have many different Account
structs, and the AccountManager has been removed as well. All RPC
handlers that take an account option will only work with "" (the
default account) or "*" if the RPC allows specifying all accounts.
Second, much of the RPC server has been cleaned up. The global
variables for the RPC server and chain server client have been moved
to part of the rpcServer struct, and the handlers for each RPC method
that are looked up change depending on which components have been set.
Passthrough requests are also no longer handled specially, but when
the chain server is set, a handler to perform the passthrough will be
returned if the method is not otherwise a wallet RPC. The
notification system for websocket clients has also been rewritten so
wallet components can send notifications through channels, rather than
requiring direct access to the RPC server itself, or worse still,
sending directly to a websocket client's send channel. In the future,
this will enable proper registration of notifications, rather than
unsolicited broadcasts to every connected websocket client (see
issue #84).
Finally, and the main reason why much of this cleanup was necessary,
the races during intial sync with the chain server have been fixed.
Previously, when the 'Handshake' was run, a rescan would occur which
would perform modifications to Account data structures as
notifications were received. Synchronization was provided with a
single binary semaphore which serialized all access to wallet and
account data. However, the Handshake itself was not able to run with
this lock (or else notifications would block), and many data races
would occur as both notifications were being handled. If GOMAXPROCS
was ever increased beyond 1, btcwallet would always immediately crash
due to invalid addresses caused by the data races on startup. To fix
this, the single lock for all wallet access has been replaced with
mutexes for both the keystore and txstore. Handling of btcd
notifications and client requests may now occur simultaneously.
GOMAXPROCS has also been set to the number of logical CPUs at the
beginning of main, since with the data races fixed, there's no reason
to prevent the extra parallelism gained by increasing it.
Closes #78.
Closes #101.
Closes #110.
2014-07-09 05:17:38 +02:00
|
|
|
"CHNS": chainLog,
|
Modernize the RPC server.
This is a rather monolithic commit that moves the old RPC server to
its own package (rpc/legacyrpc), introduces a new RPC server using
gRPC (rpc/rpcserver), and provides the ability to defer wallet loading
until request at a later time by an RPC (--noinitialload).
The legacy RPC server remains the default for now while the new gRPC
server is not enabled by default. Enabling the new server requires
setting a listen address (--experimenalrpclisten). This experimental
flag is used to effectively feature gate the server until it is ready
to use as a default. Both RPC servers can be run at the same time,
but require binding to different listen addresses.
In theory, with the legacy RPC server now living in its own package it
should become much easier to unit test the handlers. This will be
useful for any future changes to the package, as compatibility with
Core's wallet is still desired.
Type safety has also been improved in the legacy RPC server. Multiple
handler types are now used for methods that do and do not require the
RPC client as a dependency. This can statically help prevent nil
pointer dereferences, and was very useful for catching bugs during
refactoring.
To synchronize the wallet loading process between the main package
(the default) and through the gRPC WalletLoader service (with the
--noinitialload option), as well as increasing the loose coupling of
packages, a new wallet.Loader type has been added. All creating and
loading of existing wallets is done through a single Loader instance,
and callbacks can be attached to the instance to run after the wallet
has been opened. This is how the legacy RPC server is associated with
a loaded wallet, even after the wallet is loaded by a gRPC method in a
completely unrelated package.
Documentation for the new RPC server has been added to the
rpc/documentation directory. The documentation includes a
specification for the new RPC API, addresses how to make changes to
the server implementation, and provides short example clients in
several different languages.
Some of the new RPC methods are not implementated exactly as described
by the specification. These are considered bugs with the
implementation, not the spec. Known bugs are commented as such.
2015-06-01 21:57:50 +02:00
|
|
|
"GRPC": grpcLog,
|
|
|
|
"RPCS": legacyRPCLog,
|
2017-05-20 01:45:38 +02:00
|
|
|
"BTCN": btcnLog,
|
2014-06-20 01:11:47 +02:00
|
|
|
}
|
|
|
|
|
2017-06-20 14:59:42 +02:00
|
|
|
// initLogRotator initializes the logging rotater to write logs to logFile and
|
|
|
|
// create roll files in the same directory. It must be called before the
|
|
|
|
// package-global log rotater variables are used.
|
|
|
|
func initLogRotator(logFile string) {
|
|
|
|
logDir, _ := filepath.Split(logFile)
|
|
|
|
err := os.MkdirAll(logDir, 0700)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "failed to create log directory: %v\n", err)
|
|
|
|
os.Exit(1)
|
2014-06-20 01:11:47 +02:00
|
|
|
}
|
2017-07-19 17:39:25 +02:00
|
|
|
r, err := rotator.New(logFile, 10*1024, false, 3)
|
2013-10-29 15:38:51 +01:00
|
|
|
if err != nil {
|
2017-06-20 14:59:42 +02:00
|
|
|
fmt.Fprintf(os.Stderr, "failed to create file rotator: %v\n", err)
|
2013-10-29 15:38:51 +01:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2017-08-25 02:30:43 +02:00
|
|
|
pr, pw := io.Pipe()
|
2021-03-24 14:43:24 +01:00
|
|
|
go func() { _ = r.Run(pr) }()
|
2017-08-25 02:30:43 +02:00
|
|
|
|
2017-06-20 14:59:42 +02:00
|
|
|
logRotator = r
|
2018-05-24 03:59:31 +02:00
|
|
|
logRotatorPipe = pw
|
2013-10-29 15:38:51 +01:00
|
|
|
}
|
|
|
|
|
2014-06-20 01:11:47 +02:00
|
|
|
// setLogLevel sets the logging level for provided subsystem. Invalid
|
|
|
|
// subsystems are ignored. Uninitialized subsystems are dynamically created as
|
|
|
|
// needed.
|
|
|
|
func setLogLevel(subsystemID string, logLevel string) {
|
|
|
|
// Ignore invalid subsystems.
|
|
|
|
logger, ok := subsystemLoggers[subsystemID]
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
2013-10-29 15:38:51 +01:00
|
|
|
|
2017-06-20 14:59:42 +02:00
|
|
|
// Defaults to info if the log level is invalid.
|
|
|
|
level, _ := btclog.LevelFromString(logLevel)
|
2014-06-20 01:11:47 +02:00
|
|
|
logger.SetLevel(level)
|
|
|
|
}
|
2013-10-29 15:38:51 +01:00
|
|
|
|
2014-06-20 01:11:47 +02:00
|
|
|
// setLogLevels sets the log level for all subsystem loggers to the passed
|
|
|
|
// level. It also dynamically creates the subsystem loggers as needed, so it
|
|
|
|
// can be used to initialize the logging system.
|
|
|
|
func setLogLevels(logLevel string) {
|
|
|
|
// Configure all sub-systems with the new logging level. Dynamically
|
|
|
|
// create loggers as needed.
|
|
|
|
for subsystemID := range subsystemLoggers {
|
|
|
|
setLogLevel(subsystemID, logLevel)
|
|
|
|
}
|
2013-10-29 15:38:51 +01:00
|
|
|
}
|