2017-05-24 23:24:06 +02:00
|
|
|
// Copyright (c) 2013-2017 The btcsuite developers
|
|
|
|
// Copyright (c) 2017 The Decred developers
|
2013-10-10 21:13:54 +02:00
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-07-02 15:50:08 +02:00
|
|
|
"os"
|
2017-05-24 23:24:06 +02:00
|
|
|
"path/filepath"
|
2014-07-02 15:50:08 +02:00
|
|
|
|
2015-01-17 07:48:13 +01:00
|
|
|
"github.com/btcsuite/btcd/addrmgr"
|
2015-01-30 23:25:42 +01:00
|
|
|
"github.com/btcsuite/btcd/blockchain"
|
2016-02-19 05:51:18 +01:00
|
|
|
"github.com/btcsuite/btcd/blockchain/indexers"
|
2016-05-12 11:06:07 +02:00
|
|
|
"github.com/btcsuite/btcd/connmgr"
|
2015-08-26 11:54:55 +02:00
|
|
|
"github.com/btcsuite/btcd/database"
|
2016-08-19 18:08:37 +02:00
|
|
|
"github.com/btcsuite/btcd/mempool"
|
2016-10-26 08:34:21 +02:00
|
|
|
"github.com/btcsuite/btcd/mining"
|
2016-10-28 18:06:11 +02:00
|
|
|
"github.com/btcsuite/btcd/mining/cpuminer"
|
2017-08-24 23:09:28 +02:00
|
|
|
"github.com/btcsuite/btcd/netsync"
|
peer: Refactor peer code into its own package.
This commit introduces package peer which contains peer related features
refactored from peer.go.
The following is an overview of the features the package provides:
- Provides a basic concurrent safe bitcoin peer for handling bitcoin
communications via the peer-to-peer protocol
- Full duplex reading and writing of bitcoin protocol messages
- Automatic handling of the initial handshake process including protocol
version negotiation
- Automatic periodic keep-alive pinging and pong responses
- Asynchronous message queueing of outbound messages with optional
channel for notification when the message is actually sent
- Inventory message batching and send trickling with known inventory
detection and avoidance
- Ability to wait for shutdown/disconnect
- Flexible peer configuration
- Caller is responsible for creating outgoing connections and listening
for incoming connections so they have flexibility to establish
connections as they see fit (proxies, etc.)
- User agent name and version
- Bitcoin network
- Service support signalling (full nodes, bloom filters, etc.)
- Maximum supported protocol version
- Ability to register callbacks for handling bitcoin protocol messages
- Proper handling of bloom filter related commands when the caller does
not specify the related flag to signal support
- Disconnects the peer when the protocol version is high enough
- Does not invoke the related callbacks for older protocol versions
- Snapshottable peer statistics such as the total number of bytes read
and written, the remote address, user agent, and negotiated protocol
version
- Helper functions for pushing addresses, getblocks, getheaders, and
reject messages
- These could all be sent manually via the standard message output
function, but the helpers provide additional nice functionality such
as duplicate filtering and address randomization
- Full documentation with example usage
- Test coverage
In addition to the addition of the new package, btcd has been refactored
to make use of the new package by extending the basic peer it provides to
work with the blockmanager and server to act as a full node. The
following is a broad overview of the changes to integrate the package:
- The server is responsible for all connection management including
persistent peers and banning
- Callbacks for all messages that are required to implement a full node
are registered
- Logic necessary to serve data and behave as a full node is now in the
callback registered with the peer
Finally, the following peer-related things have been improved as a part
of this refactor:
- Don't log or send reject message due to peer disconnects
- Remove trace logs that aren't particularly helpful
- Finish an old TODO to switch the queue WaitGroup over to a channel
- Improve various comments and fix some code consistency cases
- Improve a few logging bits
- Implement a most-recently-used nonce tracking for detecting self
connections and generate a unique nonce for each peer
2015-10-02 08:03:20 +02:00
|
|
|
"github.com/btcsuite/btcd/peer"
|
2015-01-30 19:14:33 +01:00
|
|
|
"github.com/btcsuite/btcd/txscript"
|
2015-01-16 18:42:25 +01:00
|
|
|
"github.com/btcsuite/btclog"
|
2017-05-24 23:24:06 +02:00
|
|
|
"github.com/jrick/logrotate/rotator"
|
2013-10-10 21:13:54 +02:00
|
|
|
)
|
|
|
|
|
2017-05-24 23:24:06 +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) {
|
|
|
|
os.Stdout.Write(p)
|
2017-08-25 00:25:37 +02:00
|
|
|
logRotator.Write(p)
|
2017-05-24 23:24:06 +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-10 21:13:54 +02:00
|
|
|
var (
|
2017-05-24 23:24:06 +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
|
|
|
|
|
|
|
|
adxrLog = backendLog.Logger("ADXR")
|
|
|
|
amgrLog = backendLog.Logger("AMGR")
|
|
|
|
cmgrLog = backendLog.Logger("CMGR")
|
|
|
|
bcdbLog = backendLog.Logger("BCDB")
|
|
|
|
btcdLog = backendLog.Logger("BTCD")
|
|
|
|
chanLog = backendLog.Logger("CHAN")
|
|
|
|
discLog = backendLog.Logger("DISC")
|
|
|
|
indxLog = backendLog.Logger("INDX")
|
|
|
|
minrLog = backendLog.Logger("MINR")
|
|
|
|
peerLog = backendLog.Logger("PEER")
|
|
|
|
rpcsLog = backendLog.Logger("RPCS")
|
|
|
|
scrpLog = backendLog.Logger("SCRP")
|
|
|
|
srvrLog = backendLog.Logger("SRVR")
|
2017-08-24 23:09:28 +02:00
|
|
|
syncLog = backendLog.Logger("SYNC")
|
2017-05-24 23:24:06 +02:00
|
|
|
txmpLog = backendLog.Logger("TXMP")
|
2013-10-10 21:13:54 +02:00
|
|
|
)
|
|
|
|
|
2017-05-24 23:24:06 +02:00
|
|
|
// Initialize package-global logger variables.
|
|
|
|
func init() {
|
|
|
|
addrmgr.UseLogger(amgrLog)
|
|
|
|
connmgr.UseLogger(cmgrLog)
|
|
|
|
database.UseLogger(bcdbLog)
|
|
|
|
blockchain.UseLogger(chanLog)
|
|
|
|
indexers.UseLogger(indxLog)
|
|
|
|
mining.UseLogger(minrLog)
|
|
|
|
cpuminer.UseLogger(minrLog)
|
|
|
|
peer.UseLogger(peerLog)
|
|
|
|
txscript.UseLogger(scrpLog)
|
2017-08-24 23:09:28 +02:00
|
|
|
netsync.UseLogger(syncLog)
|
2017-05-24 23:24:06 +02:00
|
|
|
mempool.UseLogger(txmpLog)
|
|
|
|
}
|
|
|
|
|
2013-11-21 19:03:56 +01:00
|
|
|
// subsystemLoggers maps each subsystem identifier to its associated logger.
|
|
|
|
var subsystemLoggers = map[string]btclog.Logger{
|
2015-01-04 02:42:01 +01:00
|
|
|
"ADXR": adxrLog,
|
2013-11-21 19:03:56 +01:00
|
|
|
"AMGR": amgrLog,
|
2016-05-12 11:06:07 +02:00
|
|
|
"CMGR": cmgrLog,
|
2014-03-01 19:44:39 +01:00
|
|
|
"BCDB": bcdbLog,
|
|
|
|
"BTCD": btcdLog,
|
|
|
|
"CHAN": chanLog,
|
2013-11-21 19:03:56 +01:00
|
|
|
"DISC": discLog,
|
2016-02-19 05:51:18 +01:00
|
|
|
"INDX": indxLog,
|
2014-03-01 23:04:27 +01:00
|
|
|
"MINR": minrLog,
|
2013-11-21 19:03:56 +01:00
|
|
|
"PEER": peerLog,
|
|
|
|
"RPCS": rpcsLog,
|
2014-03-01 19:44:39 +01:00
|
|
|
"SCRP": scrpLog,
|
2013-11-21 19:03:56 +01:00
|
|
|
"SRVR": srvrLog,
|
2017-08-24 23:09:28 +02:00
|
|
|
"SYNC": syncLog,
|
2013-11-21 19:03:56 +01:00
|
|
|
"TXMP": txmpLog,
|
|
|
|
}
|
|
|
|
|
2017-05-24 23:24:06 +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)
|
2013-11-21 19:03:56 +01:00
|
|
|
}
|
2017-08-25 00:25:37 +02:00
|
|
|
r, err := rotator.New(logFile, 10*1024, false, 3)
|
2013-10-10 21:13:54 +02:00
|
|
|
if err != nil {
|
2017-05-24 23:24:06 +02:00
|
|
|
fmt.Fprintf(os.Stderr, "failed to create file rotator: %v\n", err)
|
2013-10-10 21:13:54 +02:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2017-05-24 23:24:06 +02:00
|
|
|
logRotator = r
|
2013-10-10 21:13:54 +02:00
|
|
|
}
|
|
|
|
|
2013-11-21 19:03:56 +01: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-10 21:13:54 +02:00
|
|
|
}
|
|
|
|
|
2017-05-24 23:24:06 +02:00
|
|
|
// Defaults to info if the log level is invalid.
|
|
|
|
level, _ := btclog.LevelFromString(logLevel)
|
2013-11-21 19:03:56 +01:00
|
|
|
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)
|
|
|
|
}
|
2013-10-10 21:13:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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"
|
|
|
|
}
|
2016-10-28 19:49:26 +02:00
|
|
|
|
|
|
|
// pickNoun returns the singular or plural form of a noun depending
|
|
|
|
// on the count n.
|
|
|
|
func pickNoun(n uint64, singular, plural string) string {
|
|
|
|
if n == 1 {
|
|
|
|
return singular
|
|
|
|
}
|
|
|
|
return plural
|
|
|
|
}
|