491acd4ca6
This commit is the first stage of several that are planned to convert the blockchain package into a concurrent safe package that will ultimately allow support for multi-peer download and concurrent chain processing. The goal is to update btcd proper after each step so it can take advantage of the enhancements as they are developed. In addition to the aforementioned benefit, this staged approach has been chosen since it is absolutely critical to maintain consensus. Separating the changes into several stages makes it easier for reviewers to logically follow what is happening and therefore helps prevent consensus bugs. Naturally there are significant automated tests to help prevent consensus issues as well. The main focus of this stage is to convert the blockchain package to use the new database interface and implement the chain-related functionality which it no longer handles. It also aims to improve efficiency in various areas by making use of the new database and chain capabilities. The following is an overview of the chain changes: - Update to use the new database interface - Add chain-related functionality that the old database used to handle - Main chain structure and state - Transaction spend tracking - Implement a new pruned unspent transaction output (utxo) set - Provides efficient direct access to the unspent transaction outputs - Uses a domain specific compression algorithm that understands the standard transaction scripts in order to significantly compress them - Removes reliance on the transaction index and paves the way toward eventually enabling block pruning - Modify the New function to accept a Config struct instead of inidividual parameters - Replace the old TxStore type with a new UtxoViewpoint type that makes use of the new pruned utxo set - Convert code to treat the new UtxoViewpoint as a rolling view that is used between connects and disconnects to improve efficiency - Make best chain state always set when the chain instance is created - Remove now unnecessary logic for dealing with unset best state - Make all exported functions concurrent safe - Currently using a single chain state lock as it provides a straight forward and easy to review path forward however this can be improved with more fine grained locking - Optimize various cases where full blocks were being loaded when only the header is needed to help reduce the I/O load - Add the ability for callers to get a snapshot of the current best chain stats in a concurrent safe fashion - Does not block callers while new blocks are being processed - Make error messages that reference transaction outputs consistently use <transaction hash>:<output index> - Introduce a new AssertError type an convert internal consistency checks to use it - Update tests and examples to reflect the changes - Add a full suite of tests to ensure correct functionality of the new code The following is an overview of the btcd changes: - Update to use the new database and chain interfaces - Temporarily remove all code related to the transaction index - Temporarily remove all code related to the address index - Convert all code that uses transaction stores to use the new utxo view - Rework several calls that required the block manager for safe concurrency to use the chain package directly now that it is concurrent safe - Change all calls to obtain the best hash to use the new best state snapshot capability from the chain package - Remove workaround for limits on fetching height ranges since the new database interface no longer imposes them - Correct the gettxout RPC handler to return the best chain hash as opposed the hash the txout was found in - Optimize various RPC handlers: - Change several of the RPC handlers to use the new chain snapshot capability to avoid needlessly loading data - Update several handlers to use new functionality to avoid accessing the block manager so they are able to return the data without blocking when the server is busy processing blocks - Update non-verbose getblock to avoid deserialization and serialization overhead - Update getblockheader to request the block height directly from chain and only load the header - Update getdifficulty to use the new cached data from chain - Update getmininginfo to use the new cached data from chain - Update non-verbose getrawtransaction to avoid deserialization and serialization overhead - Update gettxout to use the new utxo store versus loading full transactions using the transaction index The following is an overview of the utility changes: - Update addblock to use the new database and chain interfaces - Update findcheckpoint to use the new database and chain interfaces - Remove the dropafter utility which is no longer supported NOTE: The transaction index and address index will be reimplemented in another commit.
355 lines
9.3 KiB
Go
355 lines
9.3 KiB
Go
// Copyright (c) 2013-2016 The btcsuite developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/btcsuite/btcd/addrmgr"
|
|
"github.com/btcsuite/btcd/blockchain"
|
|
database "github.com/btcsuite/btcd/database2"
|
|
"github.com/btcsuite/btcd/peer"
|
|
"github.com/btcsuite/btcd/txscript"
|
|
"github.com/btcsuite/btcd/wire"
|
|
"github.com/btcsuite/btclog"
|
|
"github.com/btcsuite/seelog"
|
|
)
|
|
|
|
const (
|
|
// maxRejectReasonLen is the maximum length of a sanitized reject reason
|
|
// that will be logged.
|
|
maxRejectReasonLen = 250
|
|
)
|
|
|
|
// Loggers per subsystem. Note that backendLog is a seelog logger that all of
|
|
// the subsystem loggers route their messages to. When adding new subsystems,
|
|
// add a reference here, to the subsystemLoggers map, and the useLogger
|
|
// function.
|
|
var (
|
|
backendLog = seelog.Disabled
|
|
adxrLog = btclog.Disabled
|
|
amgrLog = btclog.Disabled
|
|
bcdbLog = btclog.Disabled
|
|
bmgrLog = btclog.Disabled
|
|
btcdLog = btclog.Disabled
|
|
chanLog = btclog.Disabled
|
|
discLog = btclog.Disabled
|
|
minrLog = btclog.Disabled
|
|
peerLog = btclog.Disabled
|
|
rpcsLog = btclog.Disabled
|
|
scrpLog = btclog.Disabled
|
|
srvrLog = btclog.Disabled
|
|
txmpLog = btclog.Disabled
|
|
)
|
|
|
|
// subsystemLoggers maps each subsystem identifier to its associated logger.
|
|
var subsystemLoggers = map[string]btclog.Logger{
|
|
"ADXR": adxrLog,
|
|
"AMGR": amgrLog,
|
|
"BCDB": bcdbLog,
|
|
"BMGR": bmgrLog,
|
|
"BTCD": btcdLog,
|
|
"CHAN": chanLog,
|
|
"DISC": discLog,
|
|
"MINR": minrLog,
|
|
"PEER": peerLog,
|
|
"RPCS": rpcsLog,
|
|
"SCRP": scrpLog,
|
|
"SRVR": srvrLog,
|
|
"TXMP": txmpLog,
|
|
}
|
|
|
|
// logClosure is used to provide a closure over expensive logging operations
|
|
// so don't have to be performed when the logging level doesn't warrant it.
|
|
type logClosure func() string
|
|
|
|
// String invokes the underlying function and returns the result.
|
|
func (c logClosure) String() string {
|
|
return c()
|
|
}
|
|
|
|
// newLogClosure returns a new closure over a function that returns a string
|
|
// which itself provides a Stringer interface so that it can be used with the
|
|
// logging system.
|
|
func newLogClosure(c func() string) logClosure {
|
|
return logClosure(c)
|
|
}
|
|
|
|
// useLogger updates the logger references for subsystemID to logger. Invalid
|
|
// subsystems are ignored.
|
|
func useLogger(subsystemID string, logger btclog.Logger) {
|
|
if _, ok := subsystemLoggers[subsystemID]; !ok {
|
|
return
|
|
}
|
|
subsystemLoggers[subsystemID] = logger
|
|
|
|
switch subsystemID {
|
|
case "ADXR":
|
|
adxrLog = logger
|
|
|
|
case "AMGR":
|
|
amgrLog = logger
|
|
addrmgr.UseLogger(logger)
|
|
|
|
case "BCDB":
|
|
bcdbLog = logger
|
|
database.UseLogger(logger)
|
|
|
|
case "BMGR":
|
|
bmgrLog = logger
|
|
|
|
case "BTCD":
|
|
btcdLog = logger
|
|
|
|
case "CHAN":
|
|
chanLog = logger
|
|
blockchain.UseLogger(logger)
|
|
|
|
case "DISC":
|
|
discLog = logger
|
|
|
|
case "MINR":
|
|
minrLog = logger
|
|
|
|
case "PEER":
|
|
peerLog = logger
|
|
peer.UseLogger(logger)
|
|
|
|
case "RPCS":
|
|
rpcsLog = logger
|
|
|
|
case "SCRP":
|
|
scrpLog = logger
|
|
txscript.UseLogger(logger)
|
|
|
|
case "SRVR":
|
|
srvrLog = logger
|
|
|
|
case "TXMP":
|
|
txmpLog = logger
|
|
}
|
|
}
|
|
|
|
// initSeelogLogger initializes a new seelog logger that is used as the backend
|
|
// for all logging subsystems.
|
|
func initSeelogLogger(logFile string) {
|
|
config := `
|
|
<seelog type="adaptive" mininterval="2000000" maxinterval="100000000"
|
|
critmsgcount="500" minlevel="trace">
|
|
<outputs formatid="all">
|
|
<console />
|
|
<rollingfile type="size" filename="%s" maxsize="10485760" maxrolls="3" />
|
|
</outputs>
|
|
<formats>
|
|
<format id="all" format="%%Time %%Date [%%LEV] %%Msg%%n" />
|
|
</formats>
|
|
</seelog>`
|
|
config = fmt.Sprintf(config, logFile)
|
|
|
|
logger, err := seelog.LoggerFromConfigAsString(config)
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "failed to create logger: %v", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
backendLog = logger
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
// Default to info if the log level is invalid.
|
|
level, ok := btclog.LogLevelFromString(logLevel)
|
|
if !ok {
|
|
level = btclog.InfoLvl
|
|
}
|
|
|
|
// Create new logger for the subsystem if needed.
|
|
if logger == btclog.Disabled {
|
|
logger = btclog.NewSubsystemLogger(backendLog, subsystemID+": ")
|
|
useLogger(subsystemID, logger)
|
|
}
|
|
logger.SetLevel(level)
|
|
}
|
|
|
|
// 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)
|
|
}
|
|
}
|
|
|
|
// directionString is a helper function that returns a string that represents
|
|
// the direction of a connection (inbound or outbound).
|
|
func directionString(inbound bool) string {
|
|
if inbound {
|
|
return "inbound"
|
|
}
|
|
return "outbound"
|
|
}
|
|
|
|
// formatLockTime returns a transaction lock time as a human-readable string.
|
|
func formatLockTime(lockTime uint32) string {
|
|
// The lock time field of a transaction is either a block height at
|
|
// which the transaction is finalized or a timestamp depending on if the
|
|
// value is before the txscript.LockTimeThreshold. When it is under the
|
|
// threshold it is a block height.
|
|
if lockTime < txscript.LockTimeThreshold {
|
|
return fmt.Sprintf("height %d", lockTime)
|
|
}
|
|
|
|
return time.Unix(int64(lockTime), 0).String()
|
|
}
|
|
|
|
// invSummary returns an inventory message as a human-readable string.
|
|
func invSummary(invList []*wire.InvVect) string {
|
|
// No inventory.
|
|
invLen := len(invList)
|
|
if invLen == 0 {
|
|
return "empty"
|
|
}
|
|
|
|
// One inventory item.
|
|
if invLen == 1 {
|
|
iv := invList[0]
|
|
switch iv.Type {
|
|
case wire.InvTypeError:
|
|
return fmt.Sprintf("error %s", iv.Hash)
|
|
case wire.InvTypeBlock:
|
|
return fmt.Sprintf("block %s", iv.Hash)
|
|
case wire.InvTypeTx:
|
|
return fmt.Sprintf("tx %s", iv.Hash)
|
|
}
|
|
|
|
return fmt.Sprintf("unknown (%d) %s", uint32(iv.Type), iv.Hash)
|
|
}
|
|
|
|
// More than one inv item.
|
|
return fmt.Sprintf("size %d", invLen)
|
|
}
|
|
|
|
// locatorSummary returns a block locator as a human-readable string.
|
|
func locatorSummary(locator []*wire.ShaHash, stopHash *wire.ShaHash) string {
|
|
if len(locator) > 0 {
|
|
return fmt.Sprintf("locator %s, stop %s", locator[0], stopHash)
|
|
}
|
|
|
|
return fmt.Sprintf("no locator, stop %s", stopHash)
|
|
|
|
}
|
|
|
|
// sanitizeString strips any characters which are even remotely dangerous, such
|
|
// as html control characters, from the passed string. It also limits it to
|
|
// the passed maximum size, which can be 0 for unlimited. When the string is
|
|
// limited, it will also add "..." to the string to indicate it was truncated.
|
|
func sanitizeString(str string, maxLength uint) string {
|
|
const safeChars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXY" +
|
|
"Z01234567890 .,;_/:?@"
|
|
|
|
// Strip any characters not in the safeChars string removed.
|
|
str = strings.Map(func(r rune) rune {
|
|
if strings.IndexRune(safeChars, r) >= 0 {
|
|
return r
|
|
}
|
|
return -1
|
|
}, str)
|
|
|
|
// Limit the string to the max allowed length.
|
|
if maxLength > 0 && uint(len(str)) > maxLength {
|
|
str = str[:maxLength]
|
|
str = str + "..."
|
|
}
|
|
return str
|
|
}
|
|
|
|
// messageSummary returns a human-readable string which summarizes a message.
|
|
// Not all messages have or need a summary. This is used for debug logging.
|
|
func messageSummary(msg wire.Message) string {
|
|
switch msg := msg.(type) {
|
|
case *wire.MsgVersion:
|
|
return fmt.Sprintf("agent %s, pver %d, block %d",
|
|
msg.UserAgent, msg.ProtocolVersion, msg.LastBlock)
|
|
|
|
case *wire.MsgVerAck:
|
|
// No summary.
|
|
|
|
case *wire.MsgGetAddr:
|
|
// No summary.
|
|
|
|
case *wire.MsgAddr:
|
|
return fmt.Sprintf("%d addr", len(msg.AddrList))
|
|
|
|
case *wire.MsgPing:
|
|
// No summary - perhaps add nonce.
|
|
|
|
case *wire.MsgPong:
|
|
// No summary - perhaps add nonce.
|
|
|
|
case *wire.MsgAlert:
|
|
// No summary.
|
|
|
|
case *wire.MsgMemPool:
|
|
// No summary.
|
|
|
|
case *wire.MsgTx:
|
|
return fmt.Sprintf("hash %s, %d inputs, %d outputs, lock %s",
|
|
msg.TxSha(), len(msg.TxIn), len(msg.TxOut),
|
|
formatLockTime(msg.LockTime))
|
|
|
|
case *wire.MsgBlock:
|
|
header := &msg.Header
|
|
return fmt.Sprintf("hash %s, ver %d, %d tx, %s", msg.BlockSha(),
|
|
header.Version, len(msg.Transactions), header.Timestamp)
|
|
|
|
case *wire.MsgInv:
|
|
return invSummary(msg.InvList)
|
|
|
|
case *wire.MsgNotFound:
|
|
return invSummary(msg.InvList)
|
|
|
|
case *wire.MsgGetData:
|
|
return invSummary(msg.InvList)
|
|
|
|
case *wire.MsgGetBlocks:
|
|
return locatorSummary(msg.BlockLocatorHashes, &msg.HashStop)
|
|
|
|
case *wire.MsgGetHeaders:
|
|
return locatorSummary(msg.BlockLocatorHashes, &msg.HashStop)
|
|
|
|
case *wire.MsgHeaders:
|
|
return fmt.Sprintf("num %d", len(msg.Headers))
|
|
|
|
case *wire.MsgReject:
|
|
// Ensure the variable length strings don't contain any
|
|
// characters which are even remotely dangerous such as HTML
|
|
// control characters, etc. Also limit them to sane length for
|
|
// logging.
|
|
rejCommand := sanitizeString(msg.Cmd, wire.CommandSize)
|
|
rejReason := sanitizeString(msg.Reason, maxRejectReasonLen)
|
|
summary := fmt.Sprintf("cmd %v, code %v, reason %v", rejCommand,
|
|
msg.Code, rejReason)
|
|
if rejCommand == wire.CmdBlock || rejCommand == wire.CmdTx {
|
|
summary += fmt.Sprintf(", hash %v", msg.Hash)
|
|
}
|
|
return summary
|
|
}
|
|
|
|
// No summary for other messages.
|
|
return ""
|
|
}
|