2011-05-14 20:10:21 +02:00
// Copyright (c) 2009-2010 Satoshi Nakamoto
2015-12-13 14:51:43 +01:00
// Copyright (c) 2009-2015 The Bitcoin Core developers
2016-12-20 14:26:45 +01:00
// Copyright (c) 2014-2017 The Dash Core developers
2014-12-01 02:39:44 +01:00
// Distributed under the MIT software license, see the accompanying
2012-05-18 16:02:28 +02:00
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2012-11-05 08:04:21 +01:00
2013-05-28 01:55:01 +02:00
# if defined(HAVE_CONFIG_H)
2015-04-03 00:51:08 +02:00
# include "config/dash-config.h"
2013-05-28 01:55:01 +02:00
# endif
2013-01-07 17:07:51 +01:00
# include "init.h"
2013-04-13 07:13:08 +02:00
# include "addrman.h"
2014-10-23 02:05:11 +02:00
# include "amount.h"
2017-12-01 19:53:34 +01:00
# include "base58.h"
2015-07-05 14:17:46 +02:00
# include "chain.h"
# include "chainparams.h"
2013-04-13 07:13:08 +02:00
# include "checkpoints.h"
2014-09-14 12:43:56 +02:00
# include "compat/sanity.h"
2015-01-24 15:57:12 +01:00
# include "consensus/validation.h"
evhttpd implementation
- *Replace usage of boost::asio with [libevent2](http://libevent.org/)*.
boost::asio is not part of C++11, so unlike other boost there is no
forwards-compatibility reason to stick with it. Together with #4738 (convert
json_spirit to UniValue), this rids Bitcoin Core of the worst offenders with
regard to compile-time slowness.
- *Replace spit-and-duct-tape http server with evhttp*. Front-end http handling
is handled by libevent, a work queue (with configurable depth and parallelism)
is used to handle application requests.
- *Wrap HTTP request in C++ class*; this makes the application code mostly
HTTP-server-neutral
- *Refactor RPC to move all http-specific code to a separate file*.
Theoreticaly this can allow building without HTTP server but with another RPC
backend, e.g. Qt's debug console (currently not implemented) or future RPC
mechanisms people may want to use.
- *HTTP dispatch mechanism*; services (e.g., RPC, REST) register which URL
paths they want to handle.
By using a proven, high-performance asynchronous networking library (also used
by Tor) and HTTP server, problems such as #5674, #5655, #344 should be avoided.
What works? bitcoind, bitcoin-cli, bitcoin-qt. Unit tests and RPC/REST tests
pass. The aim for now is everything but SSL support.
Configuration options:
- `-rpcthreads`: repurposed as "number of work handler threads". Still
defaults to 4.
- `-rpcworkqueue`: maximum depth of work queue. When this is reached, new
requests will return a 500 Internal Error.
- `-rpctimeout`: inactivity time, in seconds, after which to disconnect a
client.
- `-debug=http`: low-level http activity logging
2015-01-23 07:53:17 +01:00
# include "httpserver.h"
# include "httprpc.h"
2014-06-03 01:21:03 +02:00
# include "key.h"
2017-08-09 02:19:06 +02:00
# include "validation.h"
2013-07-31 15:43:35 +02:00
# include "miner.h"
2017-09-03 15:29:10 +02:00
# include "netbase.h"
2013-04-13 07:13:08 +02:00
# include "net.h"
2016-09-27 21:37:54 +02:00
# include "netfulfilledman.h"
2017-08-09 02:19:06 +02:00
# include "net_processing.h"
2015-06-24 07:25:30 +02:00
# include "policy/policy.h"
2017-07-03 15:13:34 +02:00
# include "rpc/server.h"
2016-03-31 10:55:06 +02:00
# include "rpc/register.h"
2014-10-11 01:55:14 +02:00
# include "script/standard.h"
2015-10-30 23:14:38 +01:00
# include "script/sigcache.h"
2015-04-03 17:50:06 +02:00
# include "scheduler.h"
2016-03-30 09:31:32 +02:00
# include "timedata.h"
2013-04-13 07:13:08 +02:00
# include "txdb.h"
2015-07-05 14:17:46 +02:00
# include "txmempool.h"
2015-08-25 20:12:08 +02:00
# include "torcontrol.h"
2012-04-15 22:10:54 +02:00
# include "ui_interface.h"
2013-04-13 07:13:08 +02:00
# include "util.h"
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
# include "utilmoneystr.h"
2015-03-24 22:14:44 +01:00
# include "validationinterface.h"
2013-11-29 16:04:29 +01:00
# ifdef ENABLE_WALLET
2015-02-03 21:09:47 +01:00
# include "wallet/wallet.h"
2013-11-29 16:04:29 +01:00
# endif
2016-12-20 14:27:59 +01:00
# include "activemasternode.h"
# include "dsnotificationinterface.h"
# include "flat-database.h"
# include "governance.h"
# include "instantx.h"
# ifdef ENABLE_WALLET
# include "keepass.h"
# endif
# include "masternode-payments.h"
# include "masternode-sync.h"
# include "masternodeman.h"
# include "masternodeconfig.h"
2017-04-12 09:04:06 +02:00
# include "messagesigner.h"
2016-12-20 14:27:59 +01:00
# include "netfulfilledman.h"
2017-12-01 19:53:34 +01:00
# ifdef ENABLE_WALLET
2017-05-05 13:26:27 +02:00
# include "privatesend-client.h"
2017-12-01 19:53:34 +01:00
# endif // ENABLE_WALLET
2017-05-05 13:26:27 +02:00
# include "privatesend-server.h"
2016-12-20 14:27:59 +01:00
# include "spork.h"
2013-04-13 07:13:08 +02:00
# include <stdint.h>
2014-05-11 15:29:16 +02:00
# include <stdio.h>
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
# include <memory>
2011-05-14 20:10:21 +02:00
2012-04-15 22:10:54 +02:00
# ifndef WIN32
# include <signal.h>
2012-03-18 23:14:03 +01:00
# endif
2011-10-07 16:46:56 +02:00
2016-01-28 06:27:25 +01:00
# include <boost/algorithm/string/classification.hpp>
2013-04-13 07:13:08 +02:00
# include <boost/algorithm/string/predicate.hpp>
2014-08-29 22:52:41 +02:00
# include <boost/algorithm/string/replace.hpp>
2016-01-28 06:27:25 +01:00
# include <boost/algorithm/string/split.hpp>
2015-03-26 16:20:59 +01:00
# include <boost/bind.hpp>
2013-04-13 07:13:08 +02:00
# include <boost/filesystem.hpp>
2015-03-26 16:20:59 +01:00
# include <boost/function.hpp>
2013-04-13 07:13:08 +02:00
# include <boost/interprocess/sync/file_lock.hpp>
Split up util.cpp/h
Split up util.cpp/h into:
- string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach)
- money utilities (parsesmoney, formatmoney)
- time utilities (gettime*, sleep, format date):
- and the rest (logging, argument parsing, config file parsing)
The latter is basically the environment and OS handling,
and is stripped of all utility functions, so we may want to
rename it to something else than util.cpp/h for clarity (Matt suggested
osinterface).
Breaks dependency of sha256.cpp on all the things pulled in by util.
2014-08-21 16:11:09 +02:00
# include <boost/thread.hpp>
2013-04-13 07:13:08 +02:00
# include <openssl/crypto.h>
2014-11-18 18:06:32 +01:00
# if ENABLE_ZMQ
# include "zmq/zmqnotificationinterface.h"
# endif
2014-06-27 14:41:11 +02:00
using namespace std ;
2011-05-14 20:10:21 +02:00
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
extern void ThreadSendAlert ( CConnman & connman ) ;
2017-03-15 12:54:34 +01:00
2014-09-18 14:08:43 +02:00
bool fFeeEstimatesInitialized = false ;
2015-05-28 23:09:14 +02:00
bool fRestartRequested = false ; // true: restart false: shutdown
2015-06-27 21:21:41 +02:00
static const bool DEFAULT_PROXYRANDOMIZE = true ;
static const bool DEFAULT_REST_ENABLE = false ;
2015-11-09 19:16:38 +01:00
static const bool DEFAULT_DISABLE_SAFEMODE = false ;
2015-06-27 21:21:41 +02:00
static const bool DEFAULT_STOPAFTERBLOCKIMPORT = false ;
2011-06-26 19:23:24 +02:00
2016-02-16 09:47:45 +01:00
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
std : : unique_ptr < CConnman > g_connman ;
2017-07-28 16:10:10 +02:00
std : : unique_ptr < PeerLogicValidation > peerLogic ;
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
2014-11-18 18:06:32 +01:00
# if ENABLE_ZMQ
static CZMQNotificationInterface * pzmqNotificationInterface = NULL ;
# endif
2011-06-26 19:23:24 +02:00
2016-03-02 22:20:04 +01:00
static CDSNotificationInterface * pdsNotificationInterface = NULL ;
2013-04-26 00:46:47 +02:00
# ifdef WIN32
// Win32 LevelDB doesn't use filedescriptors, and the ones used for
2015-04-28 16:48:28 +02:00
// accessing block files don't count towards the fd_set size limit
2013-04-26 00:46:47 +02:00
// anyway.
# define MIN_CORE_FILEDESCRIPTORS 0
# else
# define MIN_CORE_FILEDESCRIPTORS 150
# endif
2014-12-01 02:39:44 +01:00
/** Used to pass flags to the Bind() function */
2012-09-03 15:54:47 +02:00
enum BindFlags {
2012-11-14 16:07:40 +01:00
BF_NONE = 0 ,
BF_EXPLICIT = ( 1U < < 0 ) ,
2014-06-21 13:34:36 +02:00
BF_REPORT_ERROR = ( 1U < < 1 ) ,
BF_WHITELIST = ( 1U < < 2 ) ,
2012-09-03 15:54:47 +02:00
} ;
2014-03-17 13:19:54 +01:00
static const char * FEE_ESTIMATES_FILENAME = " fee_estimates.dat " ;
2013-01-07 16:35:31 +01:00
2011-05-14 20:10:21 +02:00
//////////////////////////////////////////////////////////////////////////////
//
// Shutdown
//
2013-03-09 18:02:57 +01:00
//
// Thread management and startup/shutdown:
//
// The network-processing threads are all part of a thread group
// created by AppInit() or the Qt main() function.
//
// A clean exit happens when StartShutdown() or the SIGTERM
// signal handler sets fRequestShutdown, which triggers
// the DetectShutdownThread(), which interrupts the main thread group.
// DetectShutdownThread() then exits, which causes AppInit() to
// continue (it .joins the shutdown thread).
// Shutdown() is then
// called to clean up database connections, and stop other
// threads that should only be stopped after the main network-processing
// threads have exited.
//
// Note that if running -daemon the parent process returns from AppInit2
// before adding any threads to the threadGroup, so .join_all() returns
// immediately and the parent exits from main().
//
// Shutdown for Qt is very similar, only it uses a QTimer to detect
2013-03-23 23:14:12 +01:00
// fRequestShutdown getting set, and then does the normal Qt
// shutdown thing.
2013-03-09 18:02:57 +01:00
//
2016-06-01 20:23:11 +02:00
std : : atomic < bool > fRequestShutdown ( false ) ;
2011-05-14 20:10:21 +02:00
2012-06-11 07:40:14 +02:00
void StartShutdown ( )
{
2013-03-09 18:02:57 +01:00
fRequestShutdown = true ;
2012-06-11 07:40:14 +02:00
}
2013-03-23 23:14:12 +01:00
bool ShutdownRequested ( )
{
2015-07-03 00:09:14 +02:00
return fRequestShutdown | | fRestartRequested ;
2013-03-23 23:14:12 +01:00
}
2012-06-11 07:40:14 +02:00
2016-05-26 07:26:21 +02:00
/**
* This is a minimally invasive approach to shutdown on LevelDB read errors from the
* chainstate , while keeping user interface out of the common library , which is shared
* between bitcoind , and bitcoin - qt and non - server tools .
*/
2015-01-24 18:31:19 +01:00
class CCoinsViewErrorCatcher : public CCoinsViewBacked
{
public :
2015-01-08 14:38:06 +01:00
CCoinsViewErrorCatcher ( CCoinsView * view ) : CCoinsViewBacked ( view ) { }
2017-06-02 00:47:58 +02:00
bool GetCoin ( const COutPoint & outpoint , Coin & coin ) const override {
2015-01-24 18:31:19 +01:00
try {
2017-06-02 00:47:58 +02:00
return CCoinsViewBacked : : GetCoin ( outpoint , coin ) ;
2015-01-24 18:31:19 +01:00
} catch ( const std : : runtime_error & e ) {
uiInterface . ThreadSafeMessageBox ( _ ( " Error reading from database, shutting down. " ) , " " , CClientUIInterface : : MSG_ERROR ) ;
LogPrintf ( " Error reading from database: %s \n " , e . what ( ) ) ;
// Starting the shutdown sequence and returning false to the caller would be
// interpreted as 'entry not found' (as opposed to unable to read data), and
2015-02-11 05:24:38 +01:00
// could lead to invalid interpretation. Just exit immediately, as we can't
2015-01-24 18:31:19 +01:00
// continue anyway, and all writes should be atomic.
abort ( ) ;
}
}
// Writes do not need similar protection, as failure to write is handled by the caller.
} ;
static CCoinsViewErrorCatcher * pcoinscatcher = NULL ;
2015-07-28 20:11:20 +02:00
static boost : : scoped_ptr < ECCVerifyHandle > globalVerifyHandle ;
2012-07-06 16:33:34 +02:00
evhttpd implementation
- *Replace usage of boost::asio with [libevent2](http://libevent.org/)*.
boost::asio is not part of C++11, so unlike other boost there is no
forwards-compatibility reason to stick with it. Together with #4738 (convert
json_spirit to UniValue), this rids Bitcoin Core of the worst offenders with
regard to compile-time slowness.
- *Replace spit-and-duct-tape http server with evhttp*. Front-end http handling
is handled by libevent, a work queue (with configurable depth and parallelism)
is used to handle application requests.
- *Wrap HTTP request in C++ class*; this makes the application code mostly
HTTP-server-neutral
- *Refactor RPC to move all http-specific code to a separate file*.
Theoreticaly this can allow building without HTTP server but with another RPC
backend, e.g. Qt's debug console (currently not implemented) or future RPC
mechanisms people may want to use.
- *HTTP dispatch mechanism*; services (e.g., RPC, REST) register which URL
paths they want to handle.
By using a proven, high-performance asynchronous networking library (also used
by Tor) and HTTP server, problems such as #5674, #5655, #344 should be avoided.
What works? bitcoind, bitcoin-cli, bitcoin-qt. Unit tests and RPC/REST tests
pass. The aim for now is everything but SSL support.
Configuration options:
- `-rpcthreads`: repurposed as "number of work handler threads". Still
defaults to 4.
- `-rpcworkqueue`: maximum depth of work queue. When this is reached, new
requests will return a 500 Internal Error.
- `-rpctimeout`: inactivity time, in seconds, after which to disconnect a
client.
- `-debug=http`: low-level http activity logging
2015-01-23 07:53:17 +01:00
void Interrupt ( boost : : thread_group & threadGroup )
{
InterruptHTTPServer ( ) ;
InterruptHTTPRPC ( ) ;
InterruptRPC ( ) ;
InterruptREST ( ) ;
2015-09-08 17:48:45 +02:00
InterruptTorControl ( ) ;
2017-08-09 18:06:31 +02:00
if ( g_connman )
g_connman - > Interrupt ( ) ;
evhttpd implementation
- *Replace usage of boost::asio with [libevent2](http://libevent.org/)*.
boost::asio is not part of C++11, so unlike other boost there is no
forwards-compatibility reason to stick with it. Together with #4738 (convert
json_spirit to UniValue), this rids Bitcoin Core of the worst offenders with
regard to compile-time slowness.
- *Replace spit-and-duct-tape http server with evhttp*. Front-end http handling
is handled by libevent, a work queue (with configurable depth and parallelism)
is used to handle application requests.
- *Wrap HTTP request in C++ class*; this makes the application code mostly
HTTP-server-neutral
- *Refactor RPC to move all http-specific code to a separate file*.
Theoreticaly this can allow building without HTTP server but with another RPC
backend, e.g. Qt's debug console (currently not implemented) or future RPC
mechanisms people may want to use.
- *HTTP dispatch mechanism*; services (e.g., RPC, REST) register which URL
paths they want to handle.
By using a proven, high-performance asynchronous networking library (also used
by Tor) and HTTP server, problems such as #5674, #5655, #344 should be avoided.
What works? bitcoind, bitcoin-cli, bitcoin-qt. Unit tests and RPC/REST tests
pass. The aim for now is everything but SSL support.
Configuration options:
- `-rpcthreads`: repurposed as "number of work handler threads". Still
defaults to 4.
- `-rpcworkqueue`: maximum depth of work queue. When this is reached, new
requests will return a 500 Internal Error.
- `-rpctimeout`: inactivity time, in seconds, after which to disconnect a
client.
- `-debug=http`: low-level http activity logging
2015-01-23 07:53:17 +01:00
threadGroup . interrupt_all ( ) ;
}
2012-07-06 16:33:34 +02:00
2015-05-27 22:35:46 +02:00
/** Preparing steps before shutting down or restarting the wallet */
2015-05-28 23:09:14 +02:00
void PrepareShutdown ( )
2015-05-25 18:29:11 +02:00
{
2015-07-03 00:09:14 +02:00
fRequestShutdown = true ; // Needed when we shutdown the wallet
2015-05-28 23:09:14 +02:00
fRestartRequested = true ; // Needed when we restart the wallet
2015-05-25 22:59:38 +02:00
LogPrintf ( " %s: In progress... \n " , __func__ ) ;
2015-05-25 18:29:11 +02:00
static CCriticalSection cs_Shutdown ;
TRY_LOCK ( cs_Shutdown , lockShutdown ) ;
if ( ! lockShutdown )
return ;
/// Note: Shutdown() must be able to handle cases in which AppInit2() failed part of the way,
/// for example if the data directory was found to be locked.
/// Be sure that anything that writes files or flushes caches only does this if the respective
/// module was initialized.
RenameThread ( " dash-shutoff " ) ;
mempool . AddTransactionsUpdated ( 1 ) ;
evhttpd implementation
- *Replace usage of boost::asio with [libevent2](http://libevent.org/)*.
boost::asio is not part of C++11, so unlike other boost there is no
forwards-compatibility reason to stick with it. Together with #4738 (convert
json_spirit to UniValue), this rids Bitcoin Core of the worst offenders with
regard to compile-time slowness.
- *Replace spit-and-duct-tape http server with evhttp*. Front-end http handling
is handled by libevent, a work queue (with configurable depth and parallelism)
is used to handle application requests.
- *Wrap HTTP request in C++ class*; this makes the application code mostly
HTTP-server-neutral
- *Refactor RPC to move all http-specific code to a separate file*.
Theoreticaly this can allow building without HTTP server but with another RPC
backend, e.g. Qt's debug console (currently not implemented) or future RPC
mechanisms people may want to use.
- *HTTP dispatch mechanism*; services (e.g., RPC, REST) register which URL
paths they want to handle.
By using a proven, high-performance asynchronous networking library (also used
by Tor) and HTTP server, problems such as #5674, #5655, #344 should be avoided.
What works? bitcoind, bitcoin-cli, bitcoin-qt. Unit tests and RPC/REST tests
pass. The aim for now is everything but SSL support.
Configuration options:
- `-rpcthreads`: repurposed as "number of work handler threads". Still
defaults to 4.
- `-rpcworkqueue`: maximum depth of work queue. When this is reached, new
requests will return a 500 Internal Error.
- `-rpctimeout`: inactivity time, in seconds, after which to disconnect a
client.
- `-debug=http`: low-level http activity logging
2015-01-23 07:53:17 +01:00
StopHTTPRPC ( ) ;
StopREST ( ) ;
StopRPC ( ) ;
StopHTTPServer ( ) ;
2015-05-25 18:29:11 +02:00
# ifdef ENABLE_WALLET
if ( pwalletMain )
2015-02-04 21:19:27 +01:00
pwalletMain - > Flush ( false ) ;
2015-05-25 18:29:11 +02:00
# endif
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
MapPort ( false ) ;
2017-07-28 16:10:10 +02:00
UnregisterValidationInterface ( peerLogic . get ( ) ) ;
peerLogic . reset ( ) ;
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
g_connman . reset ( ) ;
2016-04-10 08:31:32 +02:00
2016-05-24 20:29:23 +02:00
// STORE DATA CACHES INTO SERIALIZED DAT FILES
2016-04-10 08:31:32 +02:00
CFlatDB < CMasternodeMan > flatdb1 ( " mncache.dat " , " magicMasternodeCache " ) ;
2016-04-13 19:49:47 +02:00
flatdb1 . Dump ( mnodeman ) ;
CFlatDB < CMasternodePayments > flatdb2 ( " mnpayments.dat " , " magicMasternodePaymentsCache " ) ;
flatdb2 . Dump ( mnpayments ) ;
2016-04-26 19:48:09 +02:00
CFlatDB < CGovernanceManager > flatdb3 ( " governance.dat " , " magicGovernanceCache " ) ;
flatdb3 . Dump ( governance ) ;
2016-09-27 21:37:54 +02:00
CFlatDB < CNetFulfilledRequestManager > flatdb4 ( " netfulfilled.dat " , " magicFulfilledCache " ) ;
flatdb4 . Dump ( netfulfilledman ) ;
2016-04-10 08:31:32 +02:00
2015-05-25 18:29:11 +02:00
UnregisterNodeSignals ( GetNodeSignals ( ) ) ;
if ( fFeeEstimatesInitialized )
{
boost : : filesystem : : path est_path = GetDataDir ( ) / FEE_ESTIMATES_FILENAME ;
CAutoFile est_fileout ( fopen ( est_path . string ( ) . c_str ( ) , " wb " ) , SER_DISK , CLIENT_VERSION ) ;
if ( ! est_fileout . IsNull ( ) )
mempool . WriteFeeEstimates ( est_fileout ) ;
else
LogPrintf ( " %s: Failed to write fee estimates to %s \n " , __func__ , est_path . string ( ) ) ;
fFeeEstimatesInitialized = false ;
}
{
LOCK ( cs_main ) ;
if ( pcoinsTip ! = NULL ) {
FlushStateToDisk ( ) ;
}
delete pcoinsTip ;
pcoinsTip = NULL ;
delete pcoinscatcher ;
pcoinscatcher = NULL ;
delete pcoinsdbview ;
pcoinsdbview = NULL ;
delete pblocktree ;
pblocktree = NULL ;
}
# ifdef ENABLE_WALLET
if ( pwalletMain )
2015-02-04 21:19:27 +01:00
pwalletMain - > Flush ( true ) ;
2015-05-25 18:29:11 +02:00
# endif
2014-11-18 18:06:32 +01:00
# if ENABLE_ZMQ
if ( pzmqNotificationInterface ) {
UnregisterValidationInterface ( pzmqNotificationInterface ) ;
delete pzmqNotificationInterface ;
pzmqNotificationInterface = NULL ;
}
# endif
2016-03-02 22:20:04 +01:00
if ( pdsNotificationInterface ) {
UnregisterValidationInterface ( pdsNotificationInterface ) ;
delete pdsNotificationInterface ;
pdsNotificationInterface = NULL ;
}
2015-05-25 18:29:11 +02:00
# ifndef WIN32
2015-05-19 01:37:43 +02:00
try {
boost : : filesystem : : remove ( GetPidFile ( ) ) ;
} catch ( const boost : : filesystem : : filesystem_error & e ) {
LogPrintf ( " %s: Unable to remove pidfile: %s \n " , __func__ , e . what ( ) ) ;
}
2015-05-25 18:29:11 +02:00
# endif
UnregisterAllValidationInterfaces ( ) ;
}
2015-05-27 22:35:46 +02:00
/**
* Shutdown is split into 2 parts :
2015-05-28 23:09:14 +02:00
* Part 1 : shut down everything but the main wallet instance ( done in PrepareShutdown ( ) )
2015-05-27 22:35:46 +02:00
* Part 2 : delete wallet instance
*
2015-05-28 23:09:14 +02:00
* In case of a restart PrepareShutdown ( ) was already called before , but this method here gets
2015-05-27 22:35:46 +02:00
* called implicitly when the parent object is deleted . In this case we have to skip the
2015-05-28 23:09:14 +02:00
* PrepareShutdown ( ) part because it was already executed and just delete the wallet instance .
2015-05-27 22:35:46 +02:00
*/
2013-03-09 18:02:57 +01:00
void Shutdown ( )
2011-05-14 20:10:21 +02:00
{
2015-05-27 22:35:46 +02:00
// Shutdown part 1: prepare shutdown
2015-05-28 23:09:14 +02:00
if ( ! fRestartRequested ) {
PrepareShutdown ( ) ;
2015-05-27 22:35:46 +02:00
}
2016-06-05 07:10:41 +02:00
// Shutdown part 2: Stop TOR thread and delete wallet instance
StopTorControl ( ) ;
2013-11-29 16:04:29 +01:00
# ifdef ENABLE_WALLET
2014-09-25 09:03:30 +02:00
delete pwalletMain ;
pwalletMain = NULL ;
2013-11-29 16:04:29 +01:00
# endif
2015-07-28 20:11:20 +02:00
globalVerifyHandle . reset ( ) ;
Update key.cpp to use new libsecp256k1
libsecp256k1's API changed, so update key.cpp to use it.
Libsecp256k1 now has explicit context objects, which makes it completely thread-safe.
In turn, keep an explicit context object in key.cpp, which is explicitly initialized
destroyed. This is not really pretty now, but it's more efficient than the static
initialized object in key.cpp (which made for example bitcoin-tx slow, as for most of
its calls, libsecp256k1 wasn't actually needed).
This also brings in the new blinding support in libsecp256k1. By passing in a random
seed, temporary variables during the elliptic curve computations are altered, in such
a way that if an attacker does not know the blind, observing the internal operations
leaks less information about the keys used. This was implemented by Greg Maxwell.
2015-04-22 23:28:26 +02:00
ECC_Stop ( ) ;
2014-06-27 14:41:11 +02:00
LogPrintf ( " %s: done \n " , __func__ ) ;
2011-05-14 20:10:21 +02:00
}
2014-12-01 02:39:44 +01:00
/**
* Signal handlers are very limited in what they are allowed to do , so :
*/
2011-05-14 20:10:21 +02:00
void HandleSIGTERM ( int )
{
fRequestShutdown = true ;
}
2012-03-02 20:31:16 +01:00
void HandleSIGHUP ( int )
{
fReopenDebugLog = true ;
}
2011-05-14 20:10:21 +02:00
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
bool static Bind ( CConnman & connman , const CService & addr , unsigned int flags ) {
2012-09-03 15:54:47 +02:00
if ( ! ( flags & BF_EXPLICIT ) & & IsLimited ( addr ) )
2012-05-11 15:28:59 +02:00
return false ;
std : : string strError ;
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
if ( ! connman . BindListenPort ( addr , strError , ( flags & BF_WHITELIST ) ! = 0 ) ) {
2012-09-03 15:54:47 +02:00
if ( flags & BF_REPORT_ERROR )
2012-05-24 19:02:21 +02:00
return InitError ( strError ) ;
return false ;
}
2012-05-11 15:28:59 +02:00
return true ;
}
2014-10-19 10:46:17 +02:00
void OnRPCStopped ( )
{
cvBlockChange . notify_all ( ) ;
LogPrint ( " rpc " , " RPC stopped. \n " ) ;
}
void OnRPCPreCommand ( const CRPCCommand & cmd )
{
// Observe safe mode
string strWarning = GetWarnings ( " rpc " ) ;
2015-11-09 19:16:38 +01:00
if ( strWarning ! = " " & & ! GetBoolArg ( " -disablesafemode " , DEFAULT_DISABLE_SAFEMODE ) & &
2014-10-19 10:46:17 +02:00
! cmd . okSafeMode )
throw JSONRPCError ( RPC_FORBIDDEN_BY_SAFE_MODE , string ( " Safe mode: " ) + strWarning ) ;
}
2014-06-17 09:13:52 +02:00
std : : string HelpMessage ( HelpMessageMode mode )
2012-05-13 11:36:10 +02:00
{
2015-06-10 11:59:23 +02:00
const bool showDebug = GetBoolArg ( " -help-debug " , false ) ;
2015-02-04 09:11:49 +01:00
2014-06-17 09:13:52 +02:00
// When adding new options to the categories, please keep and ensure alphabetical ordering.
2015-06-10 11:59:23 +02:00
// Do not translate _(...) -help-debug options, Many technical terms, and only a very small audience, so is unnecessary stress to translators.
2015-02-04 09:11:49 +01:00
string strUsage = HelpMessageGroup ( _ ( " Options: " ) ) ;
2016-01-18 11:21:02 +01:00
strUsage + = HelpMessageOpt ( " -? " , _ ( " Print this help message and exit " ) ) ;
2016-01-04 18:50:17 +01:00
strUsage + = HelpMessageOpt ( " -version " , _ ( " Print version and exit " ) ) ;
2015-06-12 12:00:39 +02:00
strUsage + = HelpMessageOpt ( " -alerts " , strprintf ( _ ( " Receive and display P2P network alerts (default: %u) " ) , DEFAULT_ALERTS ) ) ;
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageOpt ( " -alertnotify=<cmd> " , _ ( " Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) " ) ) ;
strUsage + = HelpMessageOpt ( " -blocknotify=<cmd> " , _ ( " Execute command when the best block changes (%s in cmd is replaced by block hash) " ) ) ;
2015-11-14 13:47:53 +01:00
if ( showDebug )
strUsage + = HelpMessageOpt ( " -blocksonly " , strprintf ( _ ( " Whether to operate in a blocks only mode (default: %u) " ) , DEFAULT_BLOCKSONLY ) ) ;
2017-08-23 16:21:08 +02:00
strUsage + = HelpMessageOpt ( " -assumevalid=<hex> " , strprintf ( _ ( " If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) " ) , Params ( CBaseChainParams : : MAIN ) . GetConsensus ( ) . defaultAssumeValid . GetHex ( ) , Params ( CBaseChainParams : : TESTNET ) . GetConsensus ( ) . defaultAssumeValid . GetHex ( ) ) ) ;
2015-06-27 21:21:41 +02:00
strUsage + = HelpMessageOpt ( " -conf=<file> " , strprintf ( _ ( " Specify configuration file (default: %s) " ) , BITCOIN_CONF_FILENAME ) ) ;
2014-06-17 09:13:52 +02:00
if ( mode = = HMM_BITCOIND )
2014-02-03 07:23:20 +01:00
{
2015-09-11 23:31:30 +02:00
# ifndef WIN32
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageOpt ( " -daemon " , _ ( " Run in the background as a daemon and accept commands " ) ) ;
2014-02-03 07:23:20 +01:00
# endif
}
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageOpt ( " -datadir=<dir> " , _ ( " Specify data directory " ) ) ;
strUsage + = HelpMessageOpt ( " -dbcache=<n> " , strprintf ( _ ( " Set database cache size in megabytes (%d to %d, default: %d) " ) , nMinDbCache , nMaxDbCache , nDefaultDbCache ) ) ;
2016-06-07 08:53:51 +02:00
if ( showDebug )
strUsage + = HelpMessageOpt ( " -feefilter " , strprintf ( " Tell other nodes to filter invs to us by our mempool min fee (default: %u) " , DEFAULT_FEEFILTER ) ) ;
2015-11-06 13:22:00 +01:00
strUsage + = HelpMessageOpt ( " -loadblock=<file> " , _ ( " Imports blocks from external blk000??.dat file on startup " ) ) ;
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageOpt ( " -maxorphantx=<n> " , strprintf ( _ ( " Keep at most <n> unconnectable transactions in memory (default: %u) " ) , DEFAULT_MAX_ORPHAN_TRANSACTIONS ) ) ;
2015-10-02 23:19:55 +02:00
strUsage + = HelpMessageOpt ( " -maxmempool=<n> " , strprintf ( _ ( " Keep the transaction memory pool below <n> megabytes (default: %u) " ) , DEFAULT_MAX_MEMPOOL_SIZE ) ) ;
2015-10-02 23:43:30 +02:00
strUsage + = HelpMessageOpt ( " -mempoolexpiry=<n> " , strprintf ( _ ( " Do not keep transactions in the mempool longer than <n> hours (default: %u) " ) , DEFAULT_MEMPOOL_EXPIRY ) ) ;
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageOpt ( " -par=<n> " , strprintf ( _ ( " Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) " ) ,
2015-07-01 17:38:15 +02:00
- GetNumCores ( ) , MAX_SCRIPTCHECK_THREADS , DEFAULT_SCRIPTCHECK_THREADS ) ) ;
2014-09-20 10:56:25 +02:00
# ifndef WIN32
2015-06-27 21:21:41 +02:00
strUsage + = HelpMessageOpt ( " -pid=<file> " , strprintf ( _ ( " Specify pid file (default: %s) " ) , BITCOIN_PID_FILENAME ) ) ;
2014-09-20 10:56:25 +02:00
# endif
2015-09-07 03:13:17 +02:00
strUsage + = HelpMessageOpt ( " -prune=<n> " , strprintf ( _ ( " Reduce storage requirements by pruning (deleting) old blocks. This mode is incompatible with -txindex and -rescan. "
2015-05-04 18:46:33 +02:00
" Warning: Reverting this setting requires re-downloading the entire blockchain. "
" (default: 0 = disable pruning blocks, >%u = target size in MiB to use for block files) " ) , MIN_DISK_SPACE_FOR_BLOCK_FILES / 1024 / 1024 ) ) ;
2017-07-10 16:41:14 +02:00
strUsage + = HelpMessageOpt ( " -reindex-chainstate " , _ ( " Rebuild chain state from the currently indexed blocks " ) ) ;
strUsage + = HelpMessageOpt ( " -reindex " , _ ( " Rebuild chain state and block index from the blk*.dat files on disk " ) ) ;
2015-09-11 23:31:30 +02:00
# ifndef WIN32
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageOpt ( " -sysperms " , _ ( " Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) " ) ) ;
2014-06-04 13:16:07 +02:00
# endif
2015-06-27 21:21:41 +02:00
strUsage + = HelpMessageOpt ( " -txindex " , strprintf ( _ ( " Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) " ) , DEFAULT_TXINDEX ) ) ;
2015-02-04 09:11:49 +01:00
2016-03-05 22:31:10 +01:00
strUsage + = HelpMessageOpt ( " -addressindex " , strprintf ( _ ( " Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) " ) , DEFAULT_ADDRESSINDEX ) ) ;
2016-04-05 21:41:19 +02:00
strUsage + = HelpMessageOpt ( " -timestampindex " , strprintf ( _ ( " Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) " ) , DEFAULT_TIMESTAMPINDEX ) ) ;
2016-04-05 21:53:38 +02:00
strUsage + = HelpMessageOpt ( " -spentindex " , strprintf ( _ ( " Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) " ) , DEFAULT_SPENTINDEX ) ) ;
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageGroup ( _ ( " Connection options: " ) ) ;
strUsage + = HelpMessageOpt ( " -addnode=<ip> " , _ ( " Add a node to connect to and attempt to keep the connection open " ) ) ;
2017-12-20 12:45:01 +01:00
strUsage + = HelpMessageOpt ( " -allowprivatenet " , strprintf ( _ ( " Allow RFC1918 addresses to be relayed and connected to (default: %u) " ) , DEFAULT_ALLOWPRIVATENET ) ) ;
2015-06-27 21:21:41 +02:00
strUsage + = HelpMessageOpt ( " -banscore=<n> " , strprintf ( _ ( " Threshold for disconnecting misbehaving peers (default: %u) " ) , DEFAULT_BANSCORE_THRESHOLD ) ) ;
strUsage + = HelpMessageOpt ( " -bantime=<n> " , strprintf ( _ ( " Number of seconds to keep misbehaving peers from reconnecting (default: %u) " ) , DEFAULT_MISBEHAVING_BANTIME ) ) ;
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageOpt ( " -bind=<addr> " , _ ( " Bind to given address and always listen on it. Use [host]:port notation for IPv6 " ) ) ;
strUsage + = HelpMessageOpt ( " -connect=<ip> " , _ ( " Connect only to the specified node(s) " ) ) ;
strUsage + = HelpMessageOpt ( " -discover " , _ ( " Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) " ) ) ;
2015-11-09 19:16:38 +01:00
strUsage + = HelpMessageOpt ( " -dns " , _ ( " Allow DNS lookups for -addnode, -seednode and -connect " ) + " " + strprintf ( _ ( " (default: %u) " ) , DEFAULT_NAME_LOOKUP ) ) ;
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageOpt ( " -dnsseed " , _ ( " Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect) " ) ) ;
strUsage + = HelpMessageOpt ( " -externalip=<ip> " , _ ( " Specify your own public address " ) ) ;
2015-06-27 21:21:41 +02:00
strUsage + = HelpMessageOpt ( " -forcednsseed " , strprintf ( _ ( " Always query for peer addresses via DNS lookup (default: %u) " ) , DEFAULT_FORCEDNSSEED ) ) ;
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageOpt ( " -listen " , _ ( " Accept connections from outside (default: 1 if no -proxy or -connect) " ) ) ;
2015-08-25 20:12:08 +02:00
strUsage + = HelpMessageOpt ( " -listenonion " , strprintf ( _ ( " Automatically create Tor hidden service (default: %d) " ) , DEFAULT_LISTEN_ONION ) ) ;
2017-02-16 16:14:29 +01:00
strUsage + = HelpMessageOpt ( " -maxconnections=<n> " , strprintf ( _ ( " Maintain at most <n> connections to peers (temporary service connections excluded) (default: %u) " ) , DEFAULT_MAX_PEER_CONNECTIONS ) ) ;
2015-06-27 21:21:41 +02:00
strUsage + = HelpMessageOpt ( " -maxreceivebuffer=<n> " , strprintf ( _ ( " Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) " ) , DEFAULT_MAXRECEIVEBUFFER ) ) ;
strUsage + = HelpMessageOpt ( " -maxsendbuffer=<n> " , strprintf ( _ ( " Maximum per-connection send buffer, <n>*1000 bytes (default: %u) " ) , DEFAULT_MAXSENDBUFFER ) ) ;
2016-03-30 09:31:32 +02:00
strUsage + = HelpMessageOpt ( " -maxtimeadjustment " , strprintf ( _ ( " Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) " ) , DEFAULT_MAX_TIME_ADJUSTMENT ) ) ;
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageOpt ( " -onion=<ip:port> " , strprintf ( _ ( " Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) " ) , " -proxy " ) ) ;
strUsage + = HelpMessageOpt ( " -onlynet=<net> " , _ ( " Only connect to nodes in network <net> (ipv4, ipv6 or onion) " ) ) ;
2015-11-09 19:16:38 +01:00
strUsage + = HelpMessageOpt ( " -permitbaremultisig " , strprintf ( _ ( " Relay non-P2SH multisig (default: %u) " ) , DEFAULT_PERMIT_BAREMULTISIG ) ) ;
2016-02-16 09:47:45 +01:00
strUsage + = HelpMessageOpt ( " -peerbloomfilters " , strprintf ( _ ( " Support filtering of blocks and transaction with bloom filters (default: %u) " ) , DEFAULT_PEERBLOOMFILTERS ) ) ;
2015-06-27 21:21:41 +02:00
strUsage + = HelpMessageOpt ( " -port=<port> " , strprintf ( _ ( " Listen for connections on <port> (default: %u or testnet: %u) " ) , Params ( CBaseChainParams : : MAIN ) . GetDefaultPort ( ) , Params ( CBaseChainParams : : TESTNET ) . GetDefaultPort ( ) ) ) ;
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageOpt ( " -proxy=<ip:port> " , _ ( " Connect through SOCKS5 proxy " ) ) ;
2015-06-27 21:21:41 +02:00
strUsage + = HelpMessageOpt ( " -proxyrandomize " , strprintf ( _ ( " Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) " ) , DEFAULT_PROXYRANDOMIZE ) ) ;
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageOpt ( " -seednode=<ip> " , _ ( " Connect to a node to retrieve peer addresses, and disconnect " ) ) ;
strUsage + = HelpMessageOpt ( " -timeout=<n> " , strprintf ( _ ( " Specify connection timeout in milliseconds (minimum: 1, default: %d) " ) , DEFAULT_CONNECT_TIMEOUT ) ) ;
2015-08-25 20:12:08 +02:00
strUsage + = HelpMessageOpt ( " -torcontrol=<ip>:<port> " , strprintf ( _ ( " Tor control port to use if onion listening enabled (default: %s) " ) , DEFAULT_TOR_CONTROL ) ) ;
2015-09-08 17:48:45 +02:00
strUsage + = HelpMessageOpt ( " -torpassword=<pass> " , _ ( " Tor control port password (default: empty) " ) ) ;
2012-05-13 11:36:10 +02:00
# ifdef USE_UPNP
# if USE_UPNP
2015-06-01 14:37:21 +02:00
strUsage + = HelpMessageOpt ( " -upnp " , _ ( " Use UPnP to map the listening port (default: 1 when listening and no -proxy) " ) ) ;
2012-05-13 11:36:10 +02:00
# else
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageOpt ( " -upnp " , strprintf ( _ ( " Use UPnP to map the listening port (default: %u) " ) , 0 ) ) ;
2013-10-11 23:09:59 +02:00
# endif
2012-05-13 11:36:10 +02:00
# endif
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageOpt ( " -whitebind=<addr> " , _ ( " Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 " ) ) ;
strUsage + = HelpMessageOpt ( " -whitelist=<netmask> " , _ ( " Whitelist peers connecting from the given netmask or IP address. Can be specified multiple times. " ) +
" " + _ ( " Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway " ) ) ;
2015-11-26 00:00:23 +01:00
strUsage + = HelpMessageOpt ( " -whitelistrelay " , strprintf ( _ ( " Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) " ) , DEFAULT_WHITELISTRELAY ) ) ;
strUsage + = HelpMessageOpt ( " -whitelistforcerelay " , strprintf ( _ ( " Force relay of transactions from whitelisted peers even they violate local relay policy (default: %d) " ) , DEFAULT_WHITELISTFORCERELAY ) ) ;
2015-11-06 00:05:06 +01:00
strUsage + = HelpMessageOpt ( " -maxuploadtarget=<n> " , strprintf ( _ ( " Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) " ) , DEFAULT_MAX_UPLOAD_TARGET ) ) ;
2014-02-03 07:23:20 +01:00
# ifdef ENABLE_WALLET
2016-03-11 08:37:26 +01:00
strUsage + = CWallet : : GetWalletHelpString ( showDebug ) ;
2015-07-05 03:11:58 +02:00
if ( mode = = HMM_BITCOIN_QT )
2016-02-02 16:28:56 +01:00
strUsage + = HelpMessageOpt ( " -windowtitle=<name> " , _ ( " Wallet window title " ) ) ;
2014-02-03 07:23:20 +01:00
# endif
2014-11-18 18:06:32 +01:00
# if ENABLE_ZMQ
strUsage + = HelpMessageGroup ( _ ( " ZeroMQ notification options: " ) ) ;
strUsage + = HelpMessageOpt ( " -zmqpubhashblock=<address> " , _ ( " Enable publish hash block in <address> " ) ) ;
2015-11-19 02:34:19 +01:00
strUsage + = HelpMessageOpt ( " -zmqpubhashtx=<address> " , _ ( " Enable publish hash transaction in <address> " ) ) ;
2016-07-15 08:38:33 +02:00
strUsage + = HelpMessageOpt ( " -zmqpubhashtxlock=<address> " , _ ( " Enable publish hash transaction (locked via InstantSend) in <address> " ) ) ;
2014-11-18 18:06:32 +01:00
strUsage + = HelpMessageOpt ( " -zmqpubrawblock=<address> " , _ ( " Enable publish raw block in <address> " ) ) ;
2015-11-19 02:34:19 +01:00
strUsage + = HelpMessageOpt ( " -zmqpubrawtx=<address> " , _ ( " Enable publish raw transaction in <address> " ) ) ;
2016-07-15 08:38:33 +02:00
strUsage + = HelpMessageOpt ( " -zmqpubrawtxlock=<address> " , _ ( " Enable publish raw transaction (locked via InstantSend) in <address> " ) ) ;
2014-11-18 18:06:32 +01:00
# endif
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageGroup ( _ ( " Debugging/Testing options: " ) ) ;
2016-01-04 18:50:17 +01:00
strUsage + = HelpMessageOpt ( " -uacomment=<cmt> " , _ ( " Append comment to the user agent string " ) ) ;
2015-06-10 11:59:23 +02:00
if ( showDebug )
2014-02-03 07:23:20 +01:00
{
2017-08-23 16:21:08 +02:00
strUsage + = HelpMessageOpt ( " -checkblocks=<n> " , strprintf ( _ ( " How many blocks to check at startup (default: %u, 0 = all) " ) , DEFAULT_CHECKBLOCKS ) ) ;
strUsage + = HelpMessageOpt ( " -checklevel=<n> " , strprintf ( _ ( " How thorough the block verification of -checkblocks is (0-4, default: %u) " ) , DEFAULT_CHECKLEVEL ) ) ;
2016-01-04 18:50:17 +01:00
strUsage + = HelpMessageOpt ( " -checkblockindex " , strprintf ( " Do a full consistency check for mapBlockIndex, setBlockIndexCandidates, chainActive and mapBlocksUnlinked occasionally. Also sets -checkmempool (default: %u) " , Params ( CBaseChainParams : : MAIN ) . DefaultConsistencyChecks ( ) ) ) ;
strUsage + = HelpMessageOpt ( " -checkmempool=<n> " , strprintf ( " Run checks every <n> transactions (default: %u) " , Params ( CBaseChainParams : : MAIN ) . DefaultConsistencyChecks ( ) ) ) ;
2015-11-09 19:16:38 +01:00
strUsage + = HelpMessageOpt ( " -checkpoints " , strprintf ( " Disable expensive verification for known chain history (default: %u) " , DEFAULT_CHECKPOINTS_ENABLED ) ) ;
strUsage + = HelpMessageOpt ( " -disablesafemode " , strprintf ( " Disable safemode, override a real safe mode event (default: %u) " , DEFAULT_DISABLE_SAFEMODE ) ) ;
2015-06-27 21:21:41 +02:00
strUsage + = HelpMessageOpt ( " -testsafemode " , strprintf ( " Force safe mode (default: %u) " , DEFAULT_TESTSAFEMODE ) ) ;
2015-06-10 11:59:23 +02:00
strUsage + = HelpMessageOpt ( " -dropmessagestest=<n> " , " Randomly drop 1 of every <n> network messages " ) ;
strUsage + = HelpMessageOpt ( " -fuzzmessagestest=<n> " , " Randomly fuzz 1 of every <n> network messages " ) ;
2015-06-27 21:21:41 +02:00
strUsage + = HelpMessageOpt ( " -stopafterblockimport " , strprintf ( " Stop running after importing blocks from disk (default: %u) " , DEFAULT_STOPAFTERBLOCKIMPORT ) ) ;
2015-07-15 20:47:45 +02:00
strUsage + = HelpMessageOpt ( " -limitancestorcount=<n> " , strprintf ( " Do not accept transactions if number of in-mempool ancestors is <n> or more (default: %u) " , DEFAULT_ANCESTOR_LIMIT ) ) ;
strUsage + = HelpMessageOpt ( " -limitancestorsize=<n> " , strprintf ( " Do not accept transactions whose size with all in-mempool ancestors exceeds <n> kilobytes (default: %u) " , DEFAULT_ANCESTOR_SIZE_LIMIT ) ) ;
strUsage + = HelpMessageOpt ( " -limitdescendantcount=<n> " , strprintf ( " Do not accept transactions if any ancestor would have <n> or more in-mempool descendants (default: %u) " , DEFAULT_DESCENDANT_LIMIT ) ) ;
strUsage + = HelpMessageOpt ( " -limitdescendantsize=<n> " , strprintf ( " Do not accept transactions if any ancestor would have more than <n> kilobytes of in-mempool descendants (default: %u). " , DEFAULT_DESCENDANT_SIZE_LIMIT ) ) ;
2014-02-03 07:23:20 +01:00
}
2017-03-18 10:58:08 +01:00
string debugCategories = " addrman, alert, bench, coindb, db, http, leveldb, libevent, lock, mempool, mempoolrej, net, proxy, prune, rand, reindex, rpc, selectcoins, tor, zmq, "
2017-09-15 20:05:28 +02:00
" dash (or specifically: gobject, instantsend, keepass, masternode, mnpayments, mnsync, privatesend, spork) " ; // Don't translate these and qt below
2014-06-17 09:13:52 +02:00
if ( mode = = HMM_BITCOIN_QT )
2015-02-04 09:11:49 +01:00
debugCategories + = " , qt " ;
strUsage + = HelpMessageOpt ( " -debug=<category> " , strprintf ( _ ( " Output debugging information (default: %u, supplying <category> is optional) " ) , 0 ) + " . " +
2015-05-20 06:35:11 +02:00
_ ( " If <category> is not supplied or if <category> = 1, output all debugging information. " ) + _ ( " <category> can be: " ) + " " + debugCategories + " . " ) ;
2016-01-04 18:50:17 +01:00
if ( showDebug )
strUsage + = HelpMessageOpt ( " -nodebug " , " Turn off debugging messages, same as -debug=0 " ) ;
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageOpt ( " -help-debug " , _ ( " Show all debugging options (usage: --help -help-debug) " ) ) ;
2015-11-09 19:16:38 +01:00
strUsage + = HelpMessageOpt ( " -logips " , strprintf ( _ ( " Include IP addresses in debug output (default: %u) " ) , DEFAULT_LOGIPS ) ) ;
strUsage + = HelpMessageOpt ( " -logtimestamps " , strprintf ( _ ( " Prepend debug output with timestamp (default: %u) " ) , DEFAULT_LOGTIMESTAMPS ) ) ;
2015-06-10 11:59:23 +02:00
if ( showDebug )
2013-10-08 12:09:40 +02:00
{
2015-10-23 19:07:36 +02:00
strUsage + = HelpMessageOpt ( " -logtimemicros " , strprintf ( " Add microsecond precision to debug timestamps (default: %u) " , DEFAULT_LOGTIMEMICROS ) ) ;
2016-03-14 22:04:48 +01:00
strUsage + = HelpMessageOpt ( " -logthreadnames " , strprintf ( " Add thread names to debug messages (default: %u) " , DEFAULT_LOGTHREADNAMES ) ) ;
2016-01-04 18:50:17 +01:00
strUsage + = HelpMessageOpt ( " -mocktime=<n> " , " Replace actual time with <n> seconds since epoch (default: 0) " ) ;
2015-06-27 21:21:41 +02:00
strUsage + = HelpMessageOpt ( " -limitfreerelay=<n> " , strprintf ( " Continuously rate-limit free transactions to <n>*1000 bytes per minute (default: %u) " , DEFAULT_LIMITFREERELAY ) ) ;
strUsage + = HelpMessageOpt ( " -relaypriority " , strprintf ( " Require high priority for relaying free or low-fee transactions (default: %u) " , DEFAULT_RELAYPRIORITY ) ) ;
2015-10-30 23:14:38 +01:00
strUsage + = HelpMessageOpt ( " -maxsigcachesize=<n> " , strprintf ( " Limit size of signature cache to <n> MiB (default: %u) " , DEFAULT_MAX_SIG_CACHE_SIZE ) ) ;
2016-01-18 11:55:52 +01:00
strUsage + = HelpMessageOpt ( " -maxtipage=<n> " , strprintf ( " Maximum tip age in seconds to consider node in initial block download (default: %u) " , DEFAULT_MAX_TIP_AGE ) ) ;
2013-10-08 12:09:40 +02:00
}
2015-10-25 03:01:20 +01:00
strUsage + = HelpMessageOpt ( " -minrelaytxfee=<amt> " , strprintf ( _ ( " Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) " ) ,
2017-12-07 10:43:23 +01:00
CURRENCY_UNIT , FormatMoney ( DEFAULT_MIN_RELAY_TX_FEE ) ) ) ;
2016-02-02 15:17:51 +01:00
strUsage + = HelpMessageOpt ( " -maxtxfee=<amt> " , strprintf ( _ ( " Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) " ) ,
CURRENCY_UNIT , FormatMoney ( DEFAULT_TRANSACTION_MAXFEE ) ) ) ;
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageOpt ( " -printtoconsole " , _ ( " Send trace/debug info to console instead of debug.log file " ) ) ;
2016-02-02 16:28:56 +01:00
strUsage + = HelpMessageOpt ( " -printtodebuglog " , strprintf ( _ ( " Send trace/debug info to debug.log file (default: %u) " ) , 1 ) ) ;
2015-06-10 11:59:23 +02:00
if ( showDebug )
2013-10-08 12:09:40 +02:00
{
2015-06-27 21:21:41 +02:00
strUsage + = HelpMessageOpt ( " -printpriority " , strprintf ( " Log transaction priority and fee per kB when mining blocks (default: %u) " , DEFAULT_PRINTPRIORITY ) ) ;
2013-10-08 12:09:40 +02:00
}
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageOpt ( " -shrinkdebugfile " , _ ( " Shrink debug.log file on client startup (default: 1 when no -debug) " ) ) ;
2015-05-25 09:00:17 +02:00
AppendParamsHelpMessages ( strUsage , showDebug ) ;
2016-09-05 18:09:25 +02:00
strUsage + = HelpMessageOpt ( " -litemode=<n> " , strprintf ( _ ( " Disable all Dash specific functionality (Masternodes, PrivateSend, InstantSend, Governance) (0-1, default: %u) " ) , 0 ) ) ;
2016-02-02 16:28:56 +01:00
strUsage + = HelpMessageGroup ( _ ( " Masternode options: " ) ) ;
strUsage + = HelpMessageOpt ( " -masternode=<n> " , strprintf ( _ ( " Enable the client to act as a masternode (0-1, default: %u) " ) , 0 ) ) ;
strUsage + = HelpMessageOpt ( " -mnconf=<file> " , strprintf ( _ ( " Specify masternode configuration file (default: %s) " ) , " masternode.conf " ) ) ;
strUsage + = HelpMessageOpt ( " -mnconflock=<n> " , strprintf ( _ ( " Lock masternodes from masternode configuration file (default: %u) " ) , 1 ) ) ;
strUsage + = HelpMessageOpt ( " -masternodeprivkey=<n> " , _ ( " Set the masternode private key " ) ) ;
2017-12-01 19:53:34 +01:00
# ifdef ENABLE_WALLET
2016-05-09 21:08:13 +02:00
strUsage + = HelpMessageGroup ( _ ( " PrivateSend options: " ) ) ;
2016-08-05 21:49:45 +02:00
strUsage + = HelpMessageOpt ( " -enableprivatesend=<n> " , strprintf ( _ ( " Enable use of automated PrivateSend for funds stored in this wallet (0-1, default: %u) " ) , 0 ) ) ;
strUsage + = HelpMessageOpt ( " -privatesendmultisession=<n> " , strprintf ( _ ( " Enable multiple PrivateSend mixing sessions per block, experimental (0-1, default: %u) " ) , DEFAULT_PRIVATESEND_MULTISESSION ) ) ;
2016-11-20 07:52:23 +01:00
strUsage + = HelpMessageOpt ( " -privatesendrounds=<n> " , strprintf ( _ ( " Use N separate masternodes for each denominated input to mix funds (2-16, default: %u) " ) , DEFAULT_PRIVATESEND_ROUNDS ) ) ;
2016-08-05 21:49:45 +02:00
strUsage + = HelpMessageOpt ( " -privatesendamount=<n> " , strprintf ( _ ( " Keep N DASH anonymized (default: %u) " ) , DEFAULT_PRIVATESEND_AMOUNT ) ) ;
2016-11-20 07:52:23 +01:00
strUsage + = HelpMessageOpt ( " -liquidityprovider=<n> " , strprintf ( _ ( " Provide liquidity to PrivateSend by infrequently mixing coins on a continual basis (0-100, default: %u, 1=very frequent, high fees, 100=very infrequent, low fees) " ) , DEFAULT_PRIVATESEND_LIQUIDITY ) ) ;
2017-12-01 19:53:34 +01:00
# endif // ENABLE_WALLET
2016-02-02 16:28:56 +01:00
2016-05-09 21:08:13 +02:00
strUsage + = HelpMessageGroup ( _ ( " InstantSend options: " ) ) ;
2016-08-05 21:49:45 +02:00
strUsage + = HelpMessageOpt ( " -enableinstantsend=<n> " , strprintf ( _ ( " Enable InstantSend, show confirmations for locked transactions (0-1, default: %u) " ) , 1 ) ) ;
strUsage + = HelpMessageOpt ( " -instantsenddepth=<n> " , strprintf ( _ ( " Show N confirmations for a successfully locked transaction (0-9999, default: %u) " ) , DEFAULT_INSTANTSEND_DEPTH ) ) ;
2016-11-20 07:52:23 +01:00
strUsage + = HelpMessageOpt ( " -instantsendnotify=<cmd> " , _ ( " Execute command when a wallet InstantSend transaction is successfully locked (%s in cmd is replaced by TxID) " ) ) ;
2016-02-02 16:28:56 +01:00
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageGroup ( _ ( " Node relay options: " ) ) ;
2015-06-24 05:36:22 +02:00
if ( showDebug )
strUsage + = HelpMessageOpt ( " -acceptnonstdtxn " , strprintf ( " Relay and mine \" non-standard \" transactions (%sdefault: %u) " , " testnet/regtest only; " , ! Params ( CBaseChainParams : : TESTNET ) . RequireStandard ( ) ) ) ;
2014-02-22 03:41:01 +01:00
strUsage + = HelpMessageOpt ( " -bytespersigop " , strprintf ( _ ( " Minimum bytes per sigop in transactions we relay and mine (default: %u) " ) , DEFAULT_BYTES_PER_SIGOP ) ) ;
2015-11-09 19:16:38 +01:00
strUsage + = HelpMessageOpt ( " -datacarrier " , strprintf ( _ ( " Relay and mine data carrier transactions (default: %u) " ) , DEFAULT_ACCEPT_DATACARRIER ) ) ;
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageOpt ( " -datacarriersize " , strprintf ( _ ( " Maximum size of data in data carrier transactions we relay and mine (default: %u) " ) , MAX_OP_RETURN_RELAY ) ) ;
2016-02-01 20:30:37 +01:00
strUsage + = HelpMessageOpt ( " -mempoolreplacement " , strprintf ( _ ( " Enable transaction replacement in the memory pool (default: %u) " ) , DEFAULT_ENABLE_REPLACEMENT ) ) ;
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageGroup ( _ ( " Block creation options: " ) ) ;
strUsage + = HelpMessageOpt ( " -blockmaxsize=<n> " , strprintf ( _ ( " Set maximum block size in bytes (default: %d) " ) , DEFAULT_BLOCK_MAX_SIZE ) ) ;
strUsage + = HelpMessageOpt ( " -blockprioritysize=<n> " , strprintf ( _ ( " Set maximum size of high-priority/low-fee transactions in bytes (default: %d) " ) , DEFAULT_BLOCK_PRIORITY_SIZE ) ) ;
2015-06-10 11:59:23 +02:00
if ( showDebug )
2016-02-15 05:13:27 +01:00
strUsage + = HelpMessageOpt ( " -blockversion=<n> " , " Override block version to test forking scenarios " ) ;
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageGroup ( _ ( " RPC server options: " ) ) ;
strUsage + = HelpMessageOpt ( " -server " , _ ( " Accept command line and JSON-RPC commands " ) ) ;
2015-06-27 21:21:41 +02:00
strUsage + = HelpMessageOpt ( " -rest " , strprintf ( _ ( " Accept public REST requests (default: %u) " ) , DEFAULT_REST_ENABLE ) ) ;
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageOpt ( " -rpcbind=<addr> " , _ ( " Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) " ) ) ;
2016-01-04 18:50:17 +01:00
strUsage + = HelpMessageOpt ( " -rpccookiefile=<loc> " , _ ( " Location of the auth cookie (default: data dir) " ) ) ;
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageOpt ( " -rpcuser=<user> " , _ ( " Username for JSON-RPC connections " ) ) ;
strUsage + = HelpMessageOpt ( " -rpcpassword=<pw> " , _ ( " Password for JSON-RPC connections " ) ) ;
2015-11-11 16:49:32 +01:00
strUsage + = HelpMessageOpt ( " -rpcauth=<userpw> " , _ ( " Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. This option can be specified multiple times " ) ) ;
2015-06-27 21:21:41 +02:00
strUsage + = HelpMessageOpt ( " -rpcport=<port> " , strprintf ( _ ( " Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) " ) , BaseParams ( CBaseChainParams : : MAIN ) . RPCPort ( ) , BaseParams ( CBaseChainParams : : TESTNET ) . RPCPort ( ) ) ) ;
2015-02-04 09:11:49 +01:00
strUsage + = HelpMessageOpt ( " -rpcallowip=<ip> " , _ ( " Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times " ) ) ;
2015-08-28 17:14:51 +02:00
strUsage + = HelpMessageOpt ( " -rpcthreads=<n> " , strprintf ( _ ( " Set the number of threads to service RPC calls (default: %d) " ) , DEFAULT_HTTP_THREADS ) ) ;
if ( showDebug ) {
strUsage + = HelpMessageOpt ( " -rpcworkqueue=<n> " , strprintf ( " Set the depth of the work queue to service RPC calls (default: %d) " , DEFAULT_HTTP_WORKQUEUE ) ) ;
2015-09-18 15:45:38 +02:00
strUsage + = HelpMessageOpt ( " -rpcservertimeout=<n> " , strprintf ( " Timeout during HTTP requests (default: %d) " , DEFAULT_HTTP_SERVER_TIMEOUT ) ) ;
2015-08-28 17:14:51 +02:00
}
2012-05-13 11:36:10 +02:00
return strUsage ;
}
2014-06-10 16:02:46 +02:00
std : : string LicenseInfo ( )
{
2016-06-16 10:53:23 +02:00
const std : : string URL_SOURCE_CODE = " <https://github.com/dashpay/dash> " ;
const std : : string URL_WEBSITE = " <https://dash.org> " ;
2015-11-06 13:22:00 +01:00
// todo: remove urls from translations on next change
2017-12-11 15:20:11 +01:00
return CopyrightHolders ( _ ( " Copyright (C) " ) , 2014 , COPYRIGHT_YEAR ) + " \n " +
2015-04-03 00:51:08 +02:00
" \n " +
2016-06-16 10:53:23 +02:00
strprintf ( _ ( " Please contribute if you find %s useful. "
" Visit %s for further information about the software. " ) ,
PACKAGE_NAME , URL_WEBSITE ) +
" \n " +
strprintf ( _ ( " The source code is available from %s. " ) ,
URL_SOURCE_CODE ) +
2014-06-10 16:02:46 +02:00
" \n " +
2016-06-16 10:53:23 +02:00
" \n " +
_ ( " This is experimental software. " ) + " \n " +
2016-02-04 13:41:58 +01:00
_ ( " Distributed under the MIT software license, see the accompanying file COPYING or <http://www.opensource.org/licenses/mit-license.php>. " ) + " \n " +
2014-06-10 16:02:46 +02:00
" \n " +
2016-02-04 13:41:58 +01:00
_ ( " This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit <https://www.openssl.org/> and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. " ) +
2014-06-10 16:02:46 +02:00
" \n " ;
}
2015-11-26 15:48:26 +01:00
static void BlockNotifyCallback ( bool initialSync , const CBlockIndex * pBlockIndex )
2014-08-14 18:32:34 +02:00
{
2015-11-26 15:48:26 +01:00
if ( initialSync | | ! pBlockIndex )
return ;
2014-08-14 18:32:34 +02:00
std : : string strCmd = GetArg ( " -blocknotify " , " " ) ;
2015-11-26 15:48:26 +01:00
boost : : replace_all ( strCmd , " %s " , pBlockIndex - > GetBlockHash ( ) . GetHex ( ) ) ;
2014-08-14 18:32:34 +02:00
boost : : thread t ( runCommand , strCmd ) ; // thread runs free
}
2016-08-04 12:21:59 +02:00
static bool fHaveGenesis = false ;
static boost : : mutex cs_GenesisWait ;
static CConditionVariable condvar_GenesisWait ;
static void BlockNotifyGenesisWait ( bool , const CBlockIndex * pBlockIndex )
{
if ( pBlockIndex ! = NULL ) {
{
boost : : unique_lock < boost : : mutex > lock_GenesisWait ( cs_GenesisWait ) ;
fHaveGenesis = true ;
}
condvar_GenesisWait . notify_all ( ) ;
}
}
2012-10-22 22:45:26 +02:00
struct CImportingNow
{
CImportingNow ( ) {
assert ( fImporting = = false ) ;
fImporting = true ;
}
~ CImportingNow ( ) {
assert ( fImporting = = true ) ;
fImporting = false ;
}
} ;
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
// If we're using -prune with -reindex, then delete block files that will be ignored by the
// reindex. Since reindexing works by starting at block file 0 and looping until a blockfile
2015-06-02 21:24:53 +02:00
// is missing, do the same here to delete any later block files after a gap. Also delete all
// rev files since they'll be rewritten by the reindex anyway. This ensures that vinfoBlockFile
// is in sync with what's actually on disk by the time we start downloading, so that pruning
// works correctly.
void CleanupBlockRevFiles ( )
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
{
2015-06-02 21:24:53 +02:00
using namespace boost : : filesystem ;
map < string , path > mapBlockFiles ;
// Glob all blk?????.dat and rev?????.dat files from the blocks directory.
// Remove the rev files immediately and insert the blk file paths into an
// ordered map keyed by block file index.
LogPrintf ( " Removing unusable blk?????.dat and rev?????.dat files for -reindex with -prune \n " ) ;
path blocksdir = GetDataDir ( ) / " blocks " ;
for ( directory_iterator it ( blocksdir ) ; it ! = directory_iterator ( ) ; it + + ) {
if ( is_regular_file ( * it ) & &
it - > path ( ) . filename ( ) . string ( ) . length ( ) = = 12 & &
it - > path ( ) . filename ( ) . string ( ) . substr ( 8 , 4 ) = = " .dat " )
{
if ( it - > path ( ) . filename ( ) . string ( ) . substr ( 0 , 3 ) = = " blk " )
mapBlockFiles [ it - > path ( ) . filename ( ) . string ( ) . substr ( 3 , 5 ) ] = it - > path ( ) ;
else if ( it - > path ( ) . filename ( ) . string ( ) . substr ( 0 , 3 ) = = " rev " )
remove ( it - > path ( ) ) ;
}
}
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
2015-06-02 21:24:53 +02:00
// Remove all block files that aren't part of a contiguous set starting at
// zero by walking the ordered map (keys are block file indices) by
// keeping a separate counter. Once we hit a gap (or if 0 doesn't exist)
// start removing block files.
int nContigCounter = 0 ;
BOOST_FOREACH ( const PAIRTYPE ( string , path ) & item , mapBlockFiles ) {
if ( atoi ( item . first ) = = nContigCounter ) {
nContigCounter + + ;
continue ;
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
}
2015-06-02 21:24:53 +02:00
remove ( item . second ) ;
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
}
}
2013-03-07 04:31:26 +01:00
void ThreadImport ( std : : vector < boost : : filesystem : : path > vImportFiles )
{
2015-04-17 14:40:24 +02:00
const CChainParams & chainparams = Params ( ) ;
2015-03-19 15:15:08 +01:00
RenameThread ( " dash-loadblk " ) ;
2017-07-10 16:41:14 +02:00
CImportingNow imp ;
2012-10-21 21:23:13 +02:00
// -reindex
if ( fReindex ) {
int nFile = 0 ;
2013-03-07 04:31:26 +01:00
while ( true ) {
2012-12-03 10:14:54 +01:00
CDiskBlockPos pos ( nFile , 0 ) ;
2014-09-08 19:29:14 +02:00
if ( ! boost : : filesystem : : exists ( GetBlockPosFilename ( pos , " blk " ) ) )
break ; // No block files left to reindex
2012-10-21 21:23:13 +02:00
FILE * file = OpenBlockFile ( pos , true ) ;
if ( ! file )
2014-09-08 19:29:14 +02:00
break ; // This error is logged in OpenBlockFile
2013-09-18 12:38:08 +02:00
LogPrintf ( " Reindexing block file blk%05u.dat... \n " , ( unsigned int ) nFile ) ;
2015-04-17 14:40:24 +02:00
LoadExternalBlockFile ( chainparams , file , & pos ) ;
2012-10-21 21:23:13 +02:00
nFile + + ;
}
2013-03-07 04:31:26 +01:00
pblocktree - > WriteReindexing ( false ) ;
fReindex = false ;
2013-09-18 12:38:08 +02:00
LogPrintf ( " Reindexing finished \n " ) ;
2013-03-07 04:31:26 +01:00
// To avoid ending up in a situation without genesis block, re-try initializing (no-op if reindexing worked):
2015-04-17 14:40:24 +02:00
InitBlockIndex ( chainparams ) ;
2012-10-22 22:45:26 +02:00
}
// hardcoded $DATADIR/bootstrap.dat
2014-12-19 21:21:29 +01:00
boost : : filesystem : : path pathBootstrap = GetDataDir ( ) / " bootstrap.dat " ;
if ( boost : : filesystem : : exists ( pathBootstrap ) ) {
2012-10-22 22:45:26 +02:00
FILE * file = fopen ( pathBootstrap . string ( ) . c_str ( ) , " rb " ) ;
if ( file ) {
2014-12-19 21:21:29 +01:00
boost : : filesystem : : path pathBootstrapOld = GetDataDir ( ) / " bootstrap.dat.old " ;
2013-09-18 12:38:08 +02:00
LogPrintf ( " Importing bootstrap.dat... \n " ) ;
2015-04-17 14:40:24 +02:00
LoadExternalBlockFile ( chainparams , file ) ;
2012-10-22 22:45:26 +02:00
RenameOver ( pathBootstrap , pathBootstrapOld ) ;
2014-02-08 11:35:02 +01:00
} else {
LogPrintf ( " Warning: Could not open bootstrap file %s \n " , pathBootstrap . string ( ) ) ;
2012-10-22 22:45:26 +02:00
}
}
2012-10-21 21:23:13 +02:00
// -loadblock=
2015-05-31 15:36:44 +02:00
BOOST_FOREACH ( const boost : : filesystem : : path & path , vImportFiles ) {
2012-10-21 21:23:13 +02:00
FILE * file = fopen ( path . string ( ) . c_str ( ) , " rb " ) ;
if ( file ) {
2014-02-08 11:35:02 +01:00
LogPrintf ( " Importing blocks file %s... \n " , path . string ( ) ) ;
2015-04-17 14:40:24 +02:00
LoadExternalBlockFile ( chainparams , file ) ;
2014-02-08 11:35:02 +01:00
} else {
LogPrintf ( " Warning: Could not open blocks file %s \n " , path . string ( ) ) ;
2012-10-21 21:23:13 +02:00
}
}
2014-05-07 20:10:48 +02:00
2017-07-10 16:41:14 +02:00
// scan for better chains in the block chain database, that are not yet connected in the active best chain
CValidationState state ;
if ( ! ActivateBestChain ( state , chainparams ) ) {
LogPrintf ( " Failed to connect best block " ) ;
StartShutdown ( ) ;
}
2015-06-27 21:21:41 +02:00
if ( GetBoolArg ( " -stopafterblockimport " , DEFAULT_STOPAFTERBLOCKIMPORT ) ) {
2014-05-07 20:10:48 +02:00
LogPrintf ( " Stopping after block import \n " ) ;
StartShutdown ( ) ;
}
2012-10-22 22:45:26 +02:00
}
2014-06-03 01:21:03 +02:00
/** Sanity checks
2016-07-29 07:30:19 +02:00
* Ensure that Dash Core is running in a usable environment with all
2014-06-03 01:21:03 +02:00
* necessary library support .
*/
bool InitSanityCheck ( void )
{
if ( ! ECC_InitSanityCheck ( ) ) {
2015-07-28 20:11:20 +02:00
InitError ( " Elliptic curve cryptography sanity check failure. Aborting. " ) ;
2014-06-03 01:21:03 +02:00
return false ;
}
2014-06-14 01:23:01 +02:00
if ( ! glibc_sanity_test ( ) | | ! glibcxx_sanity_test ( ) )
return false ;
2014-06-03 01:21:03 +02:00
return true ;
}
evhttpd implementation
- *Replace usage of boost::asio with [libevent2](http://libevent.org/)*.
boost::asio is not part of C++11, so unlike other boost there is no
forwards-compatibility reason to stick with it. Together with #4738 (convert
json_spirit to UniValue), this rids Bitcoin Core of the worst offenders with
regard to compile-time slowness.
- *Replace spit-and-duct-tape http server with evhttp*. Front-end http handling
is handled by libevent, a work queue (with configurable depth and parallelism)
is used to handle application requests.
- *Wrap HTTP request in C++ class*; this makes the application code mostly
HTTP-server-neutral
- *Refactor RPC to move all http-specific code to a separate file*.
Theoreticaly this can allow building without HTTP server but with another RPC
backend, e.g. Qt's debug console (currently not implemented) or future RPC
mechanisms people may want to use.
- *HTTP dispatch mechanism*; services (e.g., RPC, REST) register which URL
paths they want to handle.
By using a proven, high-performance asynchronous networking library (also used
by Tor) and HTTP server, problems such as #5674, #5655, #344 should be avoided.
What works? bitcoind, bitcoin-cli, bitcoin-qt. Unit tests and RPC/REST tests
pass. The aim for now is everything but SSL support.
Configuration options:
- `-rpcthreads`: repurposed as "number of work handler threads". Still
defaults to 4.
- `-rpcworkqueue`: maximum depth of work queue. When this is reached, new
requests will return a 500 Internal Error.
- `-rpctimeout`: inactivity time, in seconds, after which to disconnect a
client.
- `-debug=http`: low-level http activity logging
2015-01-23 07:53:17 +01:00
bool AppInitServers ( boost : : thread_group & threadGroup )
2011-05-14 20:10:21 +02:00
{
evhttpd implementation
- *Replace usage of boost::asio with [libevent2](http://libevent.org/)*.
boost::asio is not part of C++11, so unlike other boost there is no
forwards-compatibility reason to stick with it. Together with #4738 (convert
json_spirit to UniValue), this rids Bitcoin Core of the worst offenders with
regard to compile-time slowness.
- *Replace spit-and-duct-tape http server with evhttp*. Front-end http handling
is handled by libevent, a work queue (with configurable depth and parallelism)
is used to handle application requests.
- *Wrap HTTP request in C++ class*; this makes the application code mostly
HTTP-server-neutral
- *Refactor RPC to move all http-specific code to a separate file*.
Theoreticaly this can allow building without HTTP server but with another RPC
backend, e.g. Qt's debug console (currently not implemented) or future RPC
mechanisms people may want to use.
- *HTTP dispatch mechanism*; services (e.g., RPC, REST) register which URL
paths they want to handle.
By using a proven, high-performance asynchronous networking library (also used
by Tor) and HTTP server, problems such as #5674, #5655, #344 should be avoided.
What works? bitcoind, bitcoin-cli, bitcoin-qt. Unit tests and RPC/REST tests
pass. The aim for now is everything but SSL support.
Configuration options:
- `-rpcthreads`: repurposed as "number of work handler threads". Still
defaults to 4.
- `-rpcworkqueue`: maximum depth of work queue. When this is reached, new
requests will return a 500 Internal Error.
- `-rpctimeout`: inactivity time, in seconds, after which to disconnect a
client.
- `-debug=http`: low-level http activity logging
2015-01-23 07:53:17 +01:00
RPCServer : : OnStopped ( & OnRPCStopped ) ;
RPCServer : : OnPreCommand ( & OnRPCPreCommand ) ;
2015-08-28 16:55:16 +02:00
if ( ! InitHTTPServer ( ) )
evhttpd implementation
- *Replace usage of boost::asio with [libevent2](http://libevent.org/)*.
boost::asio is not part of C++11, so unlike other boost there is no
forwards-compatibility reason to stick with it. Together with #4738 (convert
json_spirit to UniValue), this rids Bitcoin Core of the worst offenders with
regard to compile-time slowness.
- *Replace spit-and-duct-tape http server with evhttp*. Front-end http handling
is handled by libevent, a work queue (with configurable depth and parallelism)
is used to handle application requests.
- *Wrap HTTP request in C++ class*; this makes the application code mostly
HTTP-server-neutral
- *Refactor RPC to move all http-specific code to a separate file*.
Theoreticaly this can allow building without HTTP server but with another RPC
backend, e.g. Qt's debug console (currently not implemented) or future RPC
mechanisms people may want to use.
- *HTTP dispatch mechanism*; services (e.g., RPC, REST) register which URL
paths they want to handle.
By using a proven, high-performance asynchronous networking library (also used
by Tor) and HTTP server, problems such as #5674, #5655, #344 should be avoided.
What works? bitcoind, bitcoin-cli, bitcoin-qt. Unit tests and RPC/REST tests
pass. The aim for now is everything but SSL support.
Configuration options:
- `-rpcthreads`: repurposed as "number of work handler threads". Still
defaults to 4.
- `-rpcworkqueue`: maximum depth of work queue. When this is reached, new
requests will return a 500 Internal Error.
- `-rpctimeout`: inactivity time, in seconds, after which to disconnect a
client.
- `-debug=http`: low-level http activity logging
2015-01-23 07:53:17 +01:00
return false ;
if ( ! StartRPC ( ) )
return false ;
if ( ! StartHTTPRPC ( ) )
return false ;
2015-06-27 21:21:41 +02:00
if ( GetBoolArg ( " -rest " , DEFAULT_REST_ENABLE ) & & ! StartREST ( ) )
evhttpd implementation
- *Replace usage of boost::asio with [libevent2](http://libevent.org/)*.
boost::asio is not part of C++11, so unlike other boost there is no
forwards-compatibility reason to stick with it. Together with #4738 (convert
json_spirit to UniValue), this rids Bitcoin Core of the worst offenders with
regard to compile-time slowness.
- *Replace spit-and-duct-tape http server with evhttp*. Front-end http handling
is handled by libevent, a work queue (with configurable depth and parallelism)
is used to handle application requests.
- *Wrap HTTP request in C++ class*; this makes the application code mostly
HTTP-server-neutral
- *Refactor RPC to move all http-specific code to a separate file*.
Theoreticaly this can allow building without HTTP server but with another RPC
backend, e.g. Qt's debug console (currently not implemented) or future RPC
mechanisms people may want to use.
- *HTTP dispatch mechanism*; services (e.g., RPC, REST) register which URL
paths they want to handle.
By using a proven, high-performance asynchronous networking library (also used
by Tor) and HTTP server, problems such as #5674, #5655, #344 should be avoided.
What works? bitcoind, bitcoin-cli, bitcoin-qt. Unit tests and RPC/REST tests
pass. The aim for now is everything but SSL support.
Configuration options:
- `-rpcthreads`: repurposed as "number of work handler threads". Still
defaults to 4.
- `-rpcworkqueue`: maximum depth of work queue. When this is reached, new
requests will return a 500 Internal Error.
- `-rpctimeout`: inactivity time, in seconds, after which to disconnect a
client.
- `-debug=http`: low-level http activity logging
2015-01-23 07:53:17 +01:00
return false ;
2015-11-11 17:34:10 +01:00
if ( ! StartHTTPServer ( ) )
2015-08-28 16:55:16 +02:00
return false ;
evhttpd implementation
- *Replace usage of boost::asio with [libevent2](http://libevent.org/)*.
boost::asio is not part of C++11, so unlike other boost there is no
forwards-compatibility reason to stick with it. Together with #4738 (convert
json_spirit to UniValue), this rids Bitcoin Core of the worst offenders with
regard to compile-time slowness.
- *Replace spit-and-duct-tape http server with evhttp*. Front-end http handling
is handled by libevent, a work queue (with configurable depth and parallelism)
is used to handle application requests.
- *Wrap HTTP request in C++ class*; this makes the application code mostly
HTTP-server-neutral
- *Refactor RPC to move all http-specific code to a separate file*.
Theoreticaly this can allow building without HTTP server but with another RPC
backend, e.g. Qt's debug console (currently not implemented) or future RPC
mechanisms people may want to use.
- *HTTP dispatch mechanism*; services (e.g., RPC, REST) register which URL
paths they want to handle.
By using a proven, high-performance asynchronous networking library (also used
by Tor) and HTTP server, problems such as #5674, #5655, #344 should be avoided.
What works? bitcoind, bitcoin-cli, bitcoin-qt. Unit tests and RPC/REST tests
pass. The aim for now is everything but SSL support.
Configuration options:
- `-rpcthreads`: repurposed as "number of work handler threads". Still
defaults to 4.
- `-rpcworkqueue`: maximum depth of work queue. When this is reached, new
requests will return a 500 Internal Error.
- `-rpctimeout`: inactivity time, in seconds, after which to disconnect a
client.
- `-debug=http`: low-level http activity logging
2015-01-23 07:53:17 +01:00
return true ;
}
2014-06-04 13:16:07 +02:00
2015-10-08 09:58:31 +02:00
// Parameter interaction based on rules
void InitParameterInteraction ( )
{
// when specifying an explicit binding address, you want to listen on it
// even when -connect or -proxy is specified
if ( mapArgs . count ( " -bind " ) ) {
if ( SoftSetBoolArg ( " -listen " , true ) )
LogPrintf ( " %s: parameter interaction: -bind set -> setting -listen=1 \n " , __func__ ) ;
2014-06-04 13:16:07 +02:00
}
2015-10-08 09:58:31 +02:00
if ( mapArgs . count ( " -whitebind " ) ) {
2014-01-27 11:26:30 +01:00
if ( SoftSetBoolArg ( " -listen " , true ) )
2015-10-08 09:58:31 +02:00
LogPrintf ( " %s: parameter interaction: -whitebind set -> setting -listen=1 \n " , __func__ ) ;
2012-05-24 19:02:21 +02:00
}
2012-05-21 16:47:29 +02:00
2016-12-15 17:27:24 +01:00
if ( GetBoolArg ( " -masternode " , false ) ) {
// masternodes must accept connections from outside
if ( SoftSetBoolArg ( " -listen " , true ) )
LogPrintf ( " %s: parameter interaction: -masternode=1 -> setting -listen=1 \n " , __func__ ) ;
}
2012-08-21 17:32:04 +02:00
if ( mapArgs . count ( " -connect " ) & & mapMultiArgs [ " -connect " ] . size ( ) > 0 ) {
2012-05-24 19:02:21 +02:00
// when only connecting to trusted nodes, do not seed via DNS, or listen by default
2014-01-27 11:26:30 +01:00
if ( SoftSetBoolArg ( " -dnsseed " , false ) )
2015-10-08 09:58:31 +02:00
LogPrintf ( " %s: parameter interaction: -connect set -> setting -dnsseed=0 \n " , __func__ ) ;
2014-01-27 11:26:30 +01:00
if ( SoftSetBoolArg ( " -listen " , false ) )
2015-10-08 09:58:31 +02:00
LogPrintf ( " %s: parameter interaction: -connect set -> setting -listen=0 \n " , __func__ ) ;
2012-05-24 19:02:21 +02:00
}
if ( mapArgs . count ( " -proxy " ) ) {
2014-01-27 11:26:30 +01:00
// to protect privacy, do not listen by default if a default proxy server is specified
if ( SoftSetBoolArg ( " -listen " , false ) )
2015-05-18 11:21:32 +02:00
LogPrintf ( " %s: parameter interaction: -proxy set -> setting -listen=0 \n " , __func__ ) ;
// to protect privacy, do not use UPNP when a proxy is set. The user may still specify -listen=1
// to listen locally, so don't rely on this happening through -listen below.
if ( SoftSetBoolArg ( " -upnp " , false ) )
LogPrintf ( " %s: parameter interaction: -proxy set -> setting -upnp=0 \n " , __func__ ) ;
2014-07-21 08:32:25 +02:00
// to protect privacy, do not discover addresses by default
if ( SoftSetBoolArg ( " -discover " , false ) )
2015-10-08 09:58:31 +02:00
LogPrintf ( " %s: parameter interaction: -proxy set -> setting -discover=0 \n " , __func__ ) ;
2012-05-24 19:02:21 +02:00
}
2015-10-08 09:58:31 +02:00
if ( ! GetBoolArg ( " -listen " , DEFAULT_LISTEN ) ) {
2012-05-24 19:02:21 +02:00
// do not map ports or try to retrieve public IP when not listening (pointless)
2014-01-27 11:26:30 +01:00
if ( SoftSetBoolArg ( " -upnp " , false ) )
2015-10-08 09:58:31 +02:00
LogPrintf ( " %s: parameter interaction: -listen=0 -> setting -upnp=0 \n " , __func__ ) ;
2014-01-27 11:26:30 +01:00
if ( SoftSetBoolArg ( " -discover " , false ) )
2015-10-08 09:58:31 +02:00
LogPrintf ( " %s: parameter interaction: -listen=0 -> setting -discover=0 \n " , __func__ ) ;
if ( SoftSetBoolArg ( " -listenonion " , false ) )
LogPrintf ( " %s: parameter interaction: -listen=0 -> setting -listenonion=0 \n " , __func__ ) ;
2012-05-21 16:47:29 +02:00
}
2012-05-24 19:02:21 +02:00
if ( mapArgs . count ( " -externalip " ) ) {
// if an explicit public IP is specified, do not try to find others
2014-01-27 11:26:30 +01:00
if ( SoftSetBoolArg ( " -discover " , false ) )
2015-10-08 09:58:31 +02:00
LogPrintf ( " %s: parameter interaction: -externalip set -> setting -discover=0 \n " , __func__ ) ;
2012-05-24 19:02:21 +02:00
}
2013-04-28 17:37:50 +02:00
if ( GetBoolArg ( " -salvagewallet " , false ) ) {
2012-09-18 20:30:47 +02:00
// Rewrite just private keys: rescan to find transactions
2014-01-27 11:26:30 +01:00
if ( SoftSetBoolArg ( " -rescan " , true ) )
2015-10-08 09:58:31 +02:00
LogPrintf ( " %s: parameter interaction: -salvagewallet=1 -> setting -rescan=1 \n " , __func__ ) ;
2012-09-18 20:30:47 +02:00
}
2014-02-14 17:33:07 +01:00
// -zapwallettx implies a rescan
if ( GetBoolArg ( " -zapwallettxes " , false ) ) {
if ( SoftSetBoolArg ( " -rescan " , true ) )
2015-10-08 09:58:31 +02:00
LogPrintf ( " %s: parameter interaction: -zapwallettxes=<mode> -> setting -rescan=1 \n " , __func__ ) ;
}
2015-10-08 10:01:29 +02:00
2015-11-26 00:00:23 +01:00
// disable walletbroadcast and whitelistrelay in blocksonly mode
2015-10-08 10:01:29 +02:00
if ( GetBoolArg ( " -blocksonly " , DEFAULT_BLOCKSONLY ) ) {
2015-11-26 00:00:23 +01:00
if ( SoftSetBoolArg ( " -whitelistrelay " , false ) )
LogPrintf ( " %s: parameter interaction: -blocksonly=1 -> setting -whitelistrelay=0 \n " , __func__ ) ;
2015-10-08 10:01:29 +02:00
# ifdef ENABLE_WALLET
if ( SoftSetBoolArg ( " -walletbroadcast " , false ) )
LogPrintf ( " %s: parameter interaction: -blocksonly=1 -> setting -walletbroadcast=0 \n " , __func__ ) ;
# endif
}
2015-11-26 00:00:23 +01:00
// Forcing relay from whitelisted hosts implies we will accept relays from them in the first place.
if ( GetBoolArg ( " -whitelistforcerelay " , DEFAULT_WHITELISTFORCERELAY ) ) {
if ( SoftSetBoolArg ( " -whitelistrelay " , true ) )
LogPrintf ( " %s: parameter interaction: -whitelistforcerelay=1 -> setting -whitelistrelay=1 \n " , __func__ ) ;
2014-02-14 17:33:07 +01:00
}
2016-05-25 07:25:16 +02:00
if ( ! GetBoolArg ( " -enableinstantsend " , fEnableInstantSend ) ) {
if ( SoftSetArg ( " -instantsenddepth " , 0 ) )
2016-11-20 07:52:23 +01:00
LogPrintf ( " %s: parameter interaction: -enableinstantsend=false -> setting -nInstantSendDepth=0 \n " , __func__ ) ;
2015-09-11 20:19:14 +02:00
}
2017-12-01 19:53:34 +01:00
# ifdef ENABLE_WALLET
2016-11-20 07:52:23 +01:00
int nLiqProvTmp = GetArg ( " -liquidityprovider " , DEFAULT_PRIVATESEND_LIQUIDITY ) ;
if ( nLiqProvTmp > 0 ) {
2016-05-25 07:25:16 +02:00
mapArgs [ " -enableprivatesend " ] = " 1 " ;
2016-11-20 07:52:23 +01:00
LogPrintf ( " %s: parameter interaction: -liquidityprovider=%d -> setting -enableprivatesend=1 \n " , __func__ , nLiqProvTmp ) ;
2016-05-25 07:25:16 +02:00
mapArgs [ " -privatesendrounds " ] = " 99999 " ;
2016-11-20 07:52:23 +01:00
LogPrintf ( " %s: parameter interaction: -liquidityprovider=%d -> setting -privatesendrounds=99999 \n " , __func__ , nLiqProvTmp ) ;
2016-07-29 07:28:57 +02:00
mapArgs [ " -privatesendamount " ] = " 999999 " ;
2016-11-20 07:52:23 +01:00
LogPrintf ( " %s: parameter interaction: -liquidityprovider=%d -> setting -privatesendamount=999999 \n " , __func__ , nLiqProvTmp ) ;
2016-05-25 07:25:16 +02:00
mapArgs [ " -privatesendmultisession " ] = " 0 " ;
2016-11-20 07:52:23 +01:00
LogPrintf ( " %s: parameter interaction: -liquidityprovider=%d -> setting -privatesendmultisession=0 \n " , __func__ , nLiqProvTmp ) ;
2015-11-20 15:03:57 +01:00
}
2017-05-29 13:51:40 +02:00
if ( mapArgs . count ( " -hdseed " ) & & IsHex ( GetArg ( " -hdseed " , " not hex " ) ) & & ( mapArgs . count ( " -mnemonic " ) | | mapArgs . count ( " -mnemonicpassphrase " ) ) ) {
mapArgs . erase ( " -mnemonic " ) ;
mapArgs . erase ( " -mnemonicpassphrase " ) ;
LogPrintf ( " %s: parameter interaction: can't use -hdseed and -mnemonic/-mnemonicpassphrase together, will prefer -seed \n " , __func__ ) ;
}
2017-12-01 19:53:34 +01:00
# endif // ENABLE_WALLET
2017-12-12 02:24:24 +01:00
// Make sure additional indexes are recalculated correctly in VerifyDB
// (we must reconnect blocks whenever we disconnect them for these indexes to work)
bool fAdditionalIndexes =
GetBoolArg ( " -addressindex " , DEFAULT_ADDRESSINDEX ) | |
GetBoolArg ( " -spentindex " , DEFAULT_SPENTINDEX ) | |
GetBoolArg ( " -timestampindex " , DEFAULT_TIMESTAMPINDEX ) ;
if ( fAdditionalIndexes & & GetArg ( " -checklevel " , DEFAULT_CHECKLEVEL ) < 4 ) {
mapArgs [ " -checklevel " ] = " 4 " ;
LogPrintf ( " %s: parameter interaction: additional indexes -> setting -checklevel=4 \n " , __func__ ) ;
}
2015-10-08 09:58:31 +02:00
}
2016-01-07 09:12:12 +01:00
static std : : string ResolveErrMsg ( const char * const optname , const std : : string & strBind )
{
return strprintf ( _ ( " Cannot resolve -%s address: '%s' " ) , optname , strBind ) ;
}
2015-11-26 14:03:27 +01:00
void InitLogging ( )
{
fPrintToConsole = GetBoolArg ( " -printtoconsole " , false ) ;
2016-02-02 16:28:56 +01:00
fPrintToDebugLog = GetBoolArg ( " -printtodebuglog " , true ) & & ! fPrintToConsole ;
2015-11-09 19:16:38 +01:00
fLogTimestamps = GetBoolArg ( " -logtimestamps " , DEFAULT_LOGTIMESTAMPS ) ;
2015-11-26 14:03:27 +01:00
fLogTimeMicros = GetBoolArg ( " -logtimemicros " , DEFAULT_LOGTIMEMICROS ) ;
2016-03-14 22:04:48 +01:00
fLogThreadNames = GetBoolArg ( " -logthreadnames " , DEFAULT_LOGTHREADNAMES ) ;
2015-11-09 19:16:38 +01:00
fLogIPs = GetBoolArg ( " -logips " , DEFAULT_LOGIPS ) ;
2015-11-26 14:03:27 +01:00
LogPrintf ( " \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n " ) ;
2016-06-10 09:51:31 +02:00
LogPrintf ( " Dash Core version %s \n " , FormatFullVersion ( ) ) ;
2015-11-26 14:03:27 +01:00
}
2016-08-19 13:46:30 +02:00
/** Initialize Dash Core.
2012-05-13 11:36:10 +02:00
* @ pre Parameters should be parsed and config file should be read .
*/
2015-04-03 17:50:06 +02:00
bool AppInit2 ( boost : : thread_group & threadGroup , CScheduler & scheduler )
2011-05-14 20:10:21 +02:00
{
2012-05-21 16:47:29 +02:00
// ********************************************************* Step 1: setup
2011-05-14 20:10:21 +02:00
# ifdef _MSC_VER
2012-07-26 02:48:39 +02:00
// Turn off Microsoft heap dump noise
2011-05-14 20:10:21 +02:00
_CrtSetReportMode ( _CRT_WARN , _CRTDBG_MODE_FILE ) ;
_CrtSetReportFile ( _CRT_WARN , CreateFileA ( " NUL " , GENERIC_WRITE , 0 , NULL , OPEN_EXISTING , 0 , 0 ) ) ;
# endif
# if _MSC_VER >= 1400
2012-07-26 02:48:39 +02:00
// Disable confusing "helpful" text message on abort, Ctrl-C
2011-05-14 20:10:21 +02:00
_set_abort_behavior ( 0 , _WRITE_ABORT_MSG | _CALL_REPORTFAULT ) ;
# endif
2012-07-20 08:45:49 +02:00
# ifdef WIN32
// Enable Data Execution Prevention (DEP)
// Minimum supported OS versions: WinXP SP3, WinVista >= SP1, Win Server 2008
// A failure is non-critical and needs no further attention!
# ifndef PROCESS_DEP_ENABLE
2013-10-01 09:47:16 +02:00
// We define this here, because GCCs winbase.h limits this to _WIN32_WINNT >= 0x0601 (Windows 7),
// which is not correct. Can be removed, when GCCs winbase.h is fixed!
2012-07-20 08:45:49 +02:00
# define PROCESS_DEP_ENABLE 0x00000001
# endif
typedef BOOL ( WINAPI * PSETPROCDEPPOL ) ( DWORD ) ;
PSETPROCDEPPOL setProcDEPPol = ( PSETPROCDEPPOL ) GetProcAddress ( GetModuleHandleA ( " Kernel32.dll " ) , " SetProcessDEPPolicy " ) ;
if ( setProcDEPPol ! = NULL ) setProcDEPPol ( PROCESS_DEP_ENABLE ) ;
2011-05-14 20:10:21 +02:00
# endif
2014-06-04 13:16:07 +02:00
2015-09-02 16:18:16 +02:00
if ( ! SetupNetworking ( ) )
2015-10-22 18:09:19 +02:00
return InitError ( " Initializing networking failed " ) ;
2015-09-02 16:18:16 +02:00
# ifndef WIN32
2014-06-04 13:16:07 +02:00
if ( GetBoolArg ( " -sysperms " , false ) ) {
# ifdef ENABLE_WALLET
if ( ! GetBoolArg ( " -disablewallet " , false ) )
2015-10-22 18:09:19 +02:00
return InitError ( " -sysperms is not allowed in combination with enabled wallet functionality " ) ;
2014-06-04 13:16:07 +02:00
# endif
} else {
umask ( 077 ) ;
}
2012-07-20 08:45:49 +02:00
2011-05-14 20:10:21 +02:00
// Clean shutdown on SIGTERM
struct sigaction sa ;
sa . sa_handler = HandleSIGTERM ;
sigemptyset ( & sa . sa_mask ) ;
sa . sa_flags = 0 ;
sigaction ( SIGTERM , & sa , NULL ) ;
sigaction ( SIGINT , & sa , NULL ) ;
2012-03-02 20:31:16 +01:00
// Reopen debug.log on SIGHUP
struct sigaction sa_hup ;
sa_hup . sa_handler = HandleSIGHUP ;
sigemptyset ( & sa_hup . sa_mask ) ;
sa_hup . sa_flags = 0 ;
sigaction ( SIGHUP , & sa_hup , NULL ) ;
2013-05-05 07:37:03 +02:00
2015-09-15 01:39:12 +02:00
// Ignore SIGPIPE, otherwise it will bring the daemon down if the client closes unexpectedly
2013-05-05 07:37:03 +02:00
signal ( SIGPIPE , SIG_IGN ) ;
2011-05-14 20:10:21 +02:00
# endif
2012-05-21 16:47:29 +02:00
// ********************************************************* Step 2: parameter interactions
2015-04-09 15:58:34 +02:00
const CChainParams & chainparams = Params ( ) ;
2014-11-13 15:15:53 +01:00
2015-11-28 22:28:21 +01:00
// also see: InitParameterInteraction()
2014-02-14 17:33:07 +01:00
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
// if using block pruning, then disable txindex
if ( GetArg ( " -prune " , 0 ) ) {
2015-06-27 21:21:41 +02:00
if ( GetBoolArg ( " -txindex " , DEFAULT_TXINDEX ) )
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
return InitError ( _ ( " Prune mode is incompatible with -txindex. " ) ) ;
# ifdef ENABLE_WALLET
2015-04-24 21:31:46 +02:00
if ( GetBoolArg ( " -rescan " , false ) ) {
return InitError ( _ ( " Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. " ) ) ;
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
}
# endif
}
2015-11-20 15:03:57 +01:00
2017-12-20 12:45:01 +01:00
if ( mapArgs . count ( " -devnet " ) ) {
// Require setting of ports when running devnet
if ( GetArg ( " -listen " , DEFAULT_LISTEN ) & & ! mapArgs . count ( " -port " ) )
return InitError ( _ ( " -port must be specified when -devnet and -listen are specified " ) ) ;
if ( GetArg ( " -server " , false ) & & ! mapArgs . count ( " -rpcport " ) )
return InitError ( _ ( " -rpcport must be specified when -devnet and -server are specified " ) ) ;
if ( mapMultiArgs . count ( " -devnet " ) > 1 )
return InitError ( _ ( " -devnet can only be specified once " ) ) ;
}
fAllowPrivateNet = GetBoolArg ( " -allowprivatenet " , DEFAULT_ALLOWPRIVATENET ) ;
2013-04-26 00:46:47 +02:00
// Make sure enough file descriptors are available
2014-06-21 13:34:36 +02:00
int nBind = std : : max ( ( int ) mapArgs . count ( " -bind " ) + ( int ) mapArgs . count ( " -whitebind " ) , 1 ) ;
2015-08-01 19:41:21 +02:00
int nUserMaxConnections = GetArg ( " -maxconnections " , DEFAULT_MAX_PEER_CONNECTIONS ) ;
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
int nMaxConnections = std : : max ( nUserMaxConnections , 0 ) ;
2014-11-16 12:19:23 +01:00
// Trim requested connection counts, to fit into system limitations
2013-05-24 15:40:51 +02:00
nMaxConnections = std : : max ( std : : min ( nMaxConnections , ( int ) ( FD_SETSIZE - nBind - MIN_CORE_FILEDESCRIPTORS ) ) , 0 ) ;
2013-04-26 00:46:47 +02:00
int nFD = RaiseFileDescriptorLimit ( nMaxConnections + MIN_CORE_FILEDESCRIPTORS ) ;
if ( nFD < MIN_CORE_FILEDESCRIPTORS )
return InitError ( _ ( " Not enough file descriptors available. " ) ) ;
2014-11-16 12:19:23 +01:00
nMaxConnections = std : : min ( nFD - MIN_CORE_FILEDESCRIPTORS , nMaxConnections ) ;
if ( nMaxConnections < nUserMaxConnections )
InitWarning ( strprintf ( _ ( " Reducing -maxconnections from %d to %d, because of system limitations. " ) , nUserMaxConnections , nMaxConnections ) ) ;
2013-04-26 00:46:47 +02:00
2012-05-21 16:47:29 +02:00
// ********************************************************* Step 3: parameter-to-internal-flags
2013-10-08 12:09:40 +02:00
fDebug = ! mapMultiArgs [ " -debug " ] . empty ( ) ;
// Special-case: if -debug=0/-nodebug is set, turn off debugging messages
const vector < string > & categories = mapMultiArgs [ " -debug " ] ;
if ( GetBoolArg ( " -nodebug " , false ) | | find ( categories . begin ( ) , categories . end ( ) , string ( " 0 " ) ) ! = categories . end ( ) )
fDebug = false ;
2014-06-27 14:41:11 +02:00
// Check for -debugnet
2013-10-08 12:09:40 +02:00
if ( GetBoolArg ( " -debugnet " , false ) )
2015-10-22 18:09:19 +02:00
InitWarning ( _ ( " Unsupported argument -debugnet ignored, use -debug=net. " ) ) ;
2014-06-16 08:48:32 +02:00
// Check for -socks - as this is a privacy risk to continue, exit here
if ( mapArgs . count ( " -socks " ) )
2015-10-22 18:09:19 +02:00
return InitError ( _ ( " Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. " ) ) ;
2014-05-05 20:32:56 +02:00
// Check for -tor - as this is a privacy risk to continue, exit here
if ( GetBoolArg ( " -tor " , false ) )
2015-10-22 18:09:19 +02:00
return InitError ( _ ( " Unsupported argument -tor found, use -onion. " ) ) ;
2013-10-08 12:09:40 +02:00
2014-07-26 22:49:17 +02:00
if ( GetBoolArg ( " -benchmark " , false ) )
2015-10-22 18:09:19 +02:00
InitWarning ( _ ( " Unsupported argument -benchmark ignored, use -debug=bench. " ) ) ;
2014-07-26 22:49:17 +02:00
2015-11-26 00:00:23 +01:00
if ( GetBoolArg ( " -whitelistalwaysrelay " , false ) )
InitWarning ( _ ( " Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. " ) ) ;
2014-07-26 22:49:17 +02:00
2016-07-18 08:23:38 +02:00
if ( mapArgs . count ( " -blockminsize " ) )
InitWarning ( " Unsupported argument -blockminsize ignored. " ) ;
2015-03-13 17:25:34 +01:00
// Checkmempool and checkblockindex default to true in regtest mode
2015-10-07 23:34:55 +02:00
int ratio = std : : min < int > ( std : : max < int > ( GetArg ( " -checkmempool " , chainparams . DefaultConsistencyChecks ( ) ? 1 : 0 ) , 0 ) , 1000000 ) ;
if ( ratio ! = 0 ) {
mempool . setSanityCheck ( 1.0 / ratio ) ;
}
2015-04-09 15:58:34 +02:00
fCheckBlockIndex = GetBoolArg ( " -checkblockindex " , chainparams . DefaultConsistencyChecks ( ) ) ;
2015-11-09 19:16:38 +01:00
fCheckpointsEnabled = GetBoolArg ( " -checkpoints " , DEFAULT_CHECKPOINTS_ENABLED ) ;
2012-06-22 19:11:57 +02:00
2017-08-23 16:21:08 +02:00
hashAssumeValid = uint256S ( GetArg ( " -assumevalid " , chainparams . GetConsensus ( ) . defaultAssumeValid . GetHex ( ) ) ) ;
if ( ! hashAssumeValid . IsNull ( ) )
LogPrintf ( " Assuming ancestors of block %s have valid signatures. \n " , hashAssumeValid . GetHex ( ) ) ;
else
LogPrintf ( " Validating signatures for all blocks. \n " ) ;
2015-11-19 21:48:02 +01:00
// mempool limits
int64_t nMempoolSizeMax = GetArg ( " -maxmempool " , DEFAULT_MAX_MEMPOOL_SIZE ) * 1000000 ;
int64_t nMempoolSizeMin = GetArg ( " -limitdescendantsize " , DEFAULT_DESCENDANT_SIZE_LIMIT ) * 1000 * 40 ;
if ( nMempoolSizeMax < 0 | | nMempoolSizeMax < nMempoolSizeMin )
2015-11-27 16:44:30 +01:00
return InitError ( strprintf ( _ ( " -maxmempool must be at least %d MB " ) , std : : ceil ( nMempoolSizeMin / 1000000.0 ) ) ) ;
2012-06-22 19:11:57 +02:00
2012-12-01 23:04:14 +01:00
// -par=0 means autodetect, but nScriptCheckThreads==0 means no concurrency
2014-02-18 12:48:16 +01:00
nScriptCheckThreads = GetArg ( " -par " , DEFAULT_SCRIPTCHECK_THREADS ) ;
2013-04-29 19:35:47 +02:00
if ( nScriptCheckThreads < = 0 )
2015-07-01 17:38:15 +02:00
nScriptCheckThreads + = GetNumCores ( ) ;
2013-01-18 15:07:05 +01:00
if ( nScriptCheckThreads < = 1 )
2012-12-01 23:04:14 +01:00
nScriptCheckThreads = 0 ;
else if ( nScriptCheckThreads > MAX_SCRIPTCHECK_THREADS )
nScriptCheckThreads = MAX_SCRIPTCHECK_THREADS ;
2013-12-20 11:48:22 +01:00
fServer = GetBoolArg ( " -server " , false ) ;
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
2015-09-11 23:31:30 +02:00
// block pruning; get the amount of disk space (in MiB) to allot for block & undo files
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
int64_t nSignedPruneTarget = GetArg ( " -prune " , 0 ) * 1024 * 1024 ;
if ( nSignedPruneTarget < 0 ) {
return InitError ( _ ( " Prune cannot be configured with a negative value. " ) ) ;
}
nPruneTarget = ( uint64_t ) nSignedPruneTarget ;
if ( nPruneTarget ) {
if ( nPruneTarget < MIN_DISK_SPACE_FOR_BLOCK_FILES ) {
2015-09-11 23:31:30 +02:00
return InitError ( strprintf ( _ ( " Prune configured below the minimum of %d MiB. Please use a higher number. " ) , MIN_DISK_SPACE_FOR_BLOCK_FILES / 1024 / 1024 ) ) ;
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
}
LogPrintf ( " Prune configured to target %uMiB on disk for block and undo files. \n " , nPruneTarget / 1024 / 1024 ) ;
fPruneMode = true ;
}
2016-03-31 10:55:06 +02:00
RegisterAllCoreRPCCommands ( tableRPC ) ;
2013-11-29 16:04:29 +01:00
# ifdef ENABLE_WALLET
2013-10-02 17:19:10 +02:00
bool fDisableWallet = GetBoolArg ( " -disablewallet " , false ) ;
2016-01-20 15:15:29 +01:00
if ( ! fDisableWallet )
2016-03-31 10:55:06 +02:00
RegisterWalletRPCCommands ( tableRPC ) ;
2013-11-29 16:04:29 +01:00
# endif
2011-05-14 20:10:21 +02:00
2014-09-25 09:01:54 +02:00
nConnectTimeout = GetArg ( " -timeout " , DEFAULT_CONNECT_TIMEOUT ) ;
if ( nConnectTimeout < = 0 )
nConnectTimeout = DEFAULT_CONNECT_TIMEOUT ;
2012-05-21 16:47:29 +02:00
2013-04-26 02:11:27 +02:00
// Fee-per-kilobyte amount considered the same as "free"
// If you are mining, be careful setting this:
// if you set it to zero then
// a transaction spammer can cheaply fill blocks using
// 1-satoshi-fee transactions. It should be set above the real
// cost to you of processing a transaction.
if ( mapArgs . count ( " -minrelaytxfee " ) )
{
2014-04-23 00:46:19 +02:00
CAmount n = 0 ;
2013-04-26 02:11:27 +02:00
if ( ParseMoney ( mapArgs [ " -minrelaytxfee " ] , n ) & & n > 0 )
2014-07-03 20:25:32 +02:00
: : minRelayTxFee = CFeeRate ( n ) ;
2013-04-26 02:11:27 +02:00
else
2016-01-07 09:12:12 +01:00
return InitError ( AmountErrMsg ( " minrelaytxfee " , mapArgs [ " -minrelaytxfee " ] ) ) ;
2013-04-26 02:11:27 +02:00
}
2012-05-21 16:47:29 +02:00
2015-06-24 05:36:22 +02:00
fRequireStandard = ! GetBoolArg ( " -acceptnonstdtxn " , ! Params ( ) . RequireStandard ( ) ) ;
if ( Params ( ) . RequireStandard ( ) & & ! fRequireStandard )
return InitError ( strprintf ( " acceptnonstdtxn is not currently supported for %s chain " , chainparams . NetworkIDString ( ) ) ) ;
2014-02-22 03:41:01 +01:00
nBytesPerSigOp = GetArg ( " -bytespersigop " , nBytesPerSigOp ) ;
2015-06-24 05:36:22 +02:00
2013-12-13 16:14:48 +01:00
# ifdef ENABLE_WALLET
2016-04-02 11:06:56 +02:00
if ( ! CWallet : : ParameterInteraction ( ) )
return false ;
2014-07-17 02:04:04 +02:00
# endif // ENABLE_WALLET
2015-11-09 19:16:38 +01:00
fIsBareMultisigStd = GetBoolArg ( " -permitbaremultisig " , DEFAULT_PERMIT_BAREMULTISIG ) ;
fAcceptDatacarrier = GetBoolArg ( " -datacarrier " , DEFAULT_ACCEPT_DATACARRIER ) ;
2014-10-11 01:55:14 +02:00
nMaxDatacarrierBytes = GetArg ( " -datacarriersize " , nMaxDatacarrierBytes ) ;
2012-05-21 16:47:29 +02:00
2015-06-12 12:00:39 +02:00
fAlerts = GetBoolArg ( " -alerts " , DEFAULT_ALERTS ) ;
2015-06-19 16:42:39 +02:00
// Option to startup with mocktime set (used for regression testing):
SetMockTime ( GetArg ( " -mocktime " , 0 ) ) ; // SetMockTime(0) is a no-op
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
ServiceFlags nLocalServices = NODE_NETWORK ;
ServiceFlags nRelevantServices = NODE_NETWORK ;
2016-02-16 09:47:45 +01:00
if ( GetBoolArg ( " -peerbloomfilters " , DEFAULT_PEERBLOOMFILTERS ) )
2017-07-05 05:45:23 +02:00
nLocalServices = ServiceFlags ( nLocalServices | NODE_BLOOM ) ;
2015-08-21 06:15:27 +02:00
2016-01-18 11:55:52 +01:00
nMaxTipAge = GetArg ( " -maxtipage " , DEFAULT_MAX_TIP_AGE ) ;
2016-02-01 20:30:37 +01:00
fEnableReplacement = GetBoolArg ( " -mempoolreplacement " , DEFAULT_ENABLE_REPLACEMENT ) ;
if ( ( ! fEnableReplacement ) & & mapArgs . count ( " -mempoolreplacement " ) ) {
2016-01-28 06:27:25 +01:00
// Minimal effort at forwards compatibility
2016-02-01 20:30:37 +01:00
std : : string strReplacementModeList = GetArg ( " -mempoolreplacement " , " " ) ; // default is impossible
2016-01-28 06:27:25 +01:00
std : : vector < std : : string > vstrReplacementModes ;
boost : : split ( vstrReplacementModes , strReplacementModeList , boost : : is_any_of ( " , " ) ) ;
2016-02-01 20:30:37 +01:00
fEnableReplacement = ( std : : find ( vstrReplacementModes . begin ( ) , vstrReplacementModes . end ( ) , " fee " ) ! = vstrReplacementModes . end ( ) ) ;
2016-01-28 06:27:25 +01:00
}
2016-01-21 11:11:01 +01:00
2016-10-09 13:46:46 +02:00
// ********************************************************* Step 4: application initialization: dir lock, daemonize, pidfile, debug log, seed insecure_rand()
// Initialize fast PRNG
seed_insecure_rand ( false ) ;
2014-09-25 09:03:30 +02:00
Update key.cpp to use new libsecp256k1
libsecp256k1's API changed, so update key.cpp to use it.
Libsecp256k1 now has explicit context objects, which makes it completely thread-safe.
In turn, keep an explicit context object in key.cpp, which is explicitly initialized
destroyed. This is not really pretty now, but it's more efficient than the static
initialized object in key.cpp (which made for example bitcoin-tx slow, as for most of
its calls, libsecp256k1 wasn't actually needed).
This also brings in the new blinding support in libsecp256k1. By passing in a random
seed, temporary variables during the elliptic curve computations are altered, in such
a way that if an attacker does not know the blind, observing the internal operations
leaks less information about the keys used. This was implemented by Greg Maxwell.
2015-04-22 23:28:26 +02:00
// Initialize elliptic curve code
ECC_Start ( ) ;
2015-07-28 20:11:20 +02:00
globalVerifyHandle . reset ( new ECCVerifyHandle ( ) ) ;
Update key.cpp to use new libsecp256k1
libsecp256k1's API changed, so update key.cpp to use it.
Libsecp256k1 now has explicit context objects, which makes it completely thread-safe.
In turn, keep an explicit context object in key.cpp, which is explicitly initialized
destroyed. This is not really pretty now, but it's more efficient than the static
initialized object in key.cpp (which made for example bitcoin-tx slow, as for most of
its calls, libsecp256k1 wasn't actually needed).
This also brings in the new blinding support in libsecp256k1. By passing in a random
seed, temporary variables during the elliptic curve computations are altered, in such
a way that if an attacker does not know the blind, observing the internal operations
leaks less information about the keys used. This was implemented by Greg Maxwell.
2015-04-22 23:28:26 +02:00
2014-06-03 01:21:03 +02:00
// Sanity check
if ( ! InitSanityCheck ( ) )
2016-02-04 13:41:58 +01:00
return InitError ( strprintf ( _ ( " Initialization sanity check failed. %s is shutting down. " ) , _ ( PACKAGE_NAME ) ) ) ;
2012-05-21 16:47:29 +02:00
2012-10-12 03:09:05 +02:00
std : : string strDataDir = GetDataDir ( ) . string ( ) ;
2016-04-02 11:06:56 +02:00
2016-07-29 07:30:19 +02:00
// Make sure only a single Dash Core process is using the data directory.
2012-05-21 16:47:29 +02:00
boost : : filesystem : : path pathLockFile = GetDataDir ( ) / " .lock " ;
FILE * file = fopen ( pathLockFile . string ( ) . c_str ( ) , " a " ) ; // empty lock file; created if it doesn't exist.
if ( file ) fclose ( file ) ;
2015-07-03 07:55:45 +02:00
2015-05-19 01:37:43 +02:00
try {
static boost : : interprocess : : file_lock lock ( pathLockFile . string ( ) . c_str ( ) ) ;
2016-02-02 16:28:56 +01:00
// Wait maximum 10 seconds if an old wallet is still running. Avoids lockup during restart
if ( ! lock . timed_lock ( boost : : get_system_time ( ) + boost : : posix_time : : seconds ( 10 ) ) )
2016-02-04 13:41:58 +01:00
return InitError ( strprintf ( _ ( " Cannot obtain a lock on data directory %s. %s is probably already running. " ) , strDataDir , _ ( PACKAGE_NAME ) ) ) ;
2015-05-19 01:37:43 +02:00
} catch ( const boost : : interprocess : : interprocess_exception & e ) {
2016-02-04 13:41:58 +01:00
return InitError ( strprintf ( _ ( " Cannot obtain a lock on data directory %s. %s is probably already running. " ) + " %s. " , strDataDir , _ ( PACKAGE_NAME ) , e . what ( ) ) ) ;
2015-05-19 01:37:43 +02:00
}
2015-07-03 07:55:45 +02:00
2014-09-20 10:56:25 +02:00
# ifndef WIN32
CreatePidFile ( GetPidFile ( ) , getpid ( ) ) ;
# endif
2017-05-31 05:49:22 +02:00
if ( GetBoolArg ( " -shrinkdebugfile " , ! fDebug ) ) {
// Do this first since it both loads a bunch of debug.log into memory,
// and because this needs to happen before any other debug.log printing
2011-05-14 20:10:21 +02:00
ShrinkDebugFile ( ) ;
2017-05-31 05:49:22 +02:00
}
2015-05-15 21:31:14 +02:00
if ( fPrintToDebugLog )
OpenDebugLog ( ) ;
2012-09-04 18:24:08 +02:00
if ( ! fLogTimestamps )
2014-01-16 16:15:27 +01:00
LogPrintf ( " Startup time: %s \n " , DateTimeStrFormat ( " %Y-%m-%d %H:%M:%S " , GetTime ( ) ) ) ;
LogPrintf ( " Default data directory %s \n " , GetDefaultDataDir ( ) . string ( ) ) ;
LogPrintf ( " Using data directory %s \n " , strDataDir ) ;
2014-06-04 21:19:22 +02:00
LogPrintf ( " Using config file %s \n " , GetConfigFile ( ) . string ( ) ) ;
2013-09-18 12:38:08 +02:00
LogPrintf ( " Using at most %i connections (%i file descriptors available) \n " , nMaxConnections , nFD ) ;
2012-05-21 16:47:29 +02:00
std : : ostringstream strErrors ;
2011-05-14 20:10:21 +02:00
2014-11-06 08:47:48 +01:00
LogPrintf ( " Using %u threads for script verification \n " , nScriptCheckThreads ) ;
2012-12-01 23:04:14 +01:00
if ( nScriptCheckThreads ) {
for ( int i = 0 ; i < nScriptCheckThreads - 1 ; i + + )
2013-03-07 04:31:26 +01:00
threadGroup . create_thread ( & ThreadScriptCheck ) ;
2012-12-01 23:04:14 +01:00
}
2015-04-22 16:33:44 +02:00
if ( mapArgs . count ( " -sporkkey " ) ) // spork priv key
2014-12-28 02:08:45 +01:00
{
2015-04-22 16:33:44 +02:00
if ( ! sporkManager . SetPrivKey ( GetArg ( " -sporkkey " , " " ) ) )
2015-02-09 20:28:29 +01:00
return InitError ( _ ( " Unable to sign spork message, wrong key? " ) ) ;
2014-12-28 02:08:45 +01:00
}
2015-04-03 17:50:06 +02:00
// Start the lightweight task scheduler thread
CScheduler : : Function serviceLoop = boost : : bind ( & CScheduler : : serviceQueue , & scheduler ) ;
threadGroup . create_thread ( boost : : bind ( & TraceThread < CScheduler : : Function > , " scheduler " , serviceLoop ) ) ;
2014-10-29 18:08:31 +01:00
/* Start the RPC server already. It will be started in "warmup" mode
* and not really process calls already ( but it will signify connections
* that the server is there and will be ready later ) . Warmup mode will
* be disabled when initialisation is finished .
*/
if ( fServer )
{
uiInterface . InitMessage . connect ( SetRPCWarmupStatus ) ;
evhttpd implementation
- *Replace usage of boost::asio with [libevent2](http://libevent.org/)*.
boost::asio is not part of C++11, so unlike other boost there is no
forwards-compatibility reason to stick with it. Together with #4738 (convert
json_spirit to UniValue), this rids Bitcoin Core of the worst offenders with
regard to compile-time slowness.
- *Replace spit-and-duct-tape http server with evhttp*. Front-end http handling
is handled by libevent, a work queue (with configurable depth and parallelism)
is used to handle application requests.
- *Wrap HTTP request in C++ class*; this makes the application code mostly
HTTP-server-neutral
- *Refactor RPC to move all http-specific code to a separate file*.
Theoreticaly this can allow building without HTTP server but with another RPC
backend, e.g. Qt's debug console (currently not implemented) or future RPC
mechanisms people may want to use.
- *HTTP dispatch mechanism*; services (e.g., RPC, REST) register which URL
paths they want to handle.
By using a proven, high-performance asynchronous networking library (also used
by Tor) and HTTP server, problems such as #5674, #5655, #344 should be avoided.
What works? bitcoind, bitcoin-cli, bitcoin-qt. Unit tests and RPC/REST tests
pass. The aim for now is everything but SSL support.
Configuration options:
- `-rpcthreads`: repurposed as "number of work handler threads". Still
defaults to 4.
- `-rpcworkqueue`: maximum depth of work queue. When this is reached, new
requests will return a 500 Internal Error.
- `-rpctimeout`: inactivity time, in seconds, after which to disconnect a
client.
- `-debug=http`: low-level http activity logging
2015-01-23 07:53:17 +01:00
if ( ! AppInitServers ( threadGroup ) )
return InitError ( _ ( " Unable to start HTTP server. See debug log for details. " ) ) ;
2014-10-29 18:08:31 +01:00
}
2014-12-28 02:08:45 +01:00
2013-04-13 07:13:08 +02:00
int64_t nStart ;
2012-05-21 16:47:29 +02:00
2015-04-11 06:14:18 +02:00
// ********************************************************* Step 5: Backup wallet and verify wallet database integrity
2013-11-29 16:04:29 +01:00
# ifdef ENABLE_WALLET
2013-10-02 17:19:10 +02:00
if ( ! fDisableWallet ) {
2016-09-05 18:09:25 +02:00
std : : string strWarning ;
std : : string strError ;
2016-06-15 21:13:04 +02:00
2015-04-12 14:43:53 +02:00
nWalletBackups = GetArg ( " -createwalletbackups " , 10 ) ;
nWalletBackups = std : : max ( 0 , std : : min ( 10 , nWalletBackups ) ) ;
2016-06-15 21:13:04 +02:00
2017-12-20 06:57:47 +01:00
std : : string strWalletFile = GetArg ( " -wallet " , DEFAULT_WALLET_DAT ) ;
2016-09-05 18:09:25 +02:00
if ( ! AutoBackupWallet ( NULL , strWalletFile , strWarning , strError ) ) {
if ( ! strWarning . empty ( ) )
InitWarning ( strWarning ) ;
if ( ! strError . empty ( ) )
return InitError ( strError ) ;
2015-04-11 06:14:18 +02:00
}
2015-04-12 14:43:53 +02:00
2016-04-02 11:06:56 +02:00
if ( ! CWallet : : Verify ( ) )
2015-02-04 21:19:27 +01:00
return false ;
2012-09-18 20:30:47 +02:00
2017-07-03 15:14:07 +02:00
// Initialize KeePass Integration
keePassInt . init ( ) ;
2014-12-26 12:53:29 +01:00
2013-10-02 17:19:10 +02:00
} // (!fDisableWallet)
2013-11-29 16:04:29 +01:00
# endif // ENABLE_WALLET
2012-09-18 20:30:47 +02:00
// ********************************************************* Step 6: network initialization
2017-08-01 17:11:32 +02:00
// Note that we absolutely cannot open any actual connections
// until the very end ("start node") as the UTXO/block state
// is not yet setup and may end up being set up twice if we
// need to reindex later.
2012-05-21 16:47:29 +02:00
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
assert ( ! g_connman ) ;
g_connman = std : : unique_ptr < CConnman > ( new CConnman ( ) ) ;
CConnman & connman = * g_connman ;
2017-07-28 16:10:10 +02:00
peerLogic . reset ( new PeerLogicValidation ( & connman ) ) ;
RegisterValidationInterface ( peerLogic . get ( ) ) ;
2013-06-06 05:21:41 +02:00
RegisterNodeSignals ( GetNodeSignals ( ) ) ;
2013-05-07 15:16:25 +02:00
2015-09-09 14:24:56 +02:00
// sanitize comments per BIP-0014, format user agent and check total size
std : : vector < string > uacomments ;
2017-12-20 12:45:01 +01:00
if ( chainparams . NetworkIDString ( ) = = CBaseChainParams : : DEVNET ) {
// Add devnet name to user agent. This allows to disconnect nodes immediately if they don't belong to our own devnet
uacomments . push_back ( strprintf ( " devnet=%s " , GetDevNetName ( ) ) ) ;
}
2015-09-09 14:24:56 +02:00
BOOST_FOREACH ( string cmt , mapMultiArgs [ " -uacomment " ] )
{
if ( cmt ! = SanitizeString ( cmt , SAFE_CHARS_UA_COMMENT ) )
2015-10-22 18:09:19 +02:00
return InitError ( strprintf ( _ ( " User Agent comment (%s) contains unsafe characters . " ), cmt)) ;
2015-09-09 14:24:56 +02:00
uacomments . push_back ( SanitizeString ( cmt , SAFE_CHARS_UA_COMMENT ) ) ;
}
strSubVersion = FormatSubVersion ( CLIENT_NAME , CLIENT_VERSION , uacomments ) ;
2015-07-31 18:05:42 +02:00
if ( strSubVersion . size ( ) > MAX_SUBVERSION_LENGTH ) {
2015-10-22 18:09:19 +02:00
return InitError ( strprintf ( _ ( " Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. " ) ,
2015-07-31 18:05:42 +02:00
strSubVersion . size ( ) , MAX_SUBVERSION_LENGTH ) ) ;
}
2012-05-21 16:47:29 +02:00
if ( mapArgs . count ( " -onlynet " ) ) {
std : : set < enum Network > nets ;
2015-05-31 15:36:44 +02:00
BOOST_FOREACH ( const std : : string & snet , mapMultiArgs [ " -onlynet " ] ) {
2012-05-21 16:47:29 +02:00
enum Network net = ParseNetwork ( snet ) ;
if ( net = = NET_UNROUTABLE )
2014-01-16 16:15:27 +01:00
return InitError ( strprintf ( _ ( " Unknown network specified in -onlynet: '%s' " ) , snet ) ) ;
2012-05-21 16:47:29 +02:00
nets . insert ( net ) ;
}
for ( int n = 0 ; n < NET_MAX ; n + + ) {
enum Network net = ( enum Network ) n ;
if ( ! nets . count ( net ) )
SetLimited ( net ) ;
}
}
2014-06-21 13:34:36 +02:00
if ( mapArgs . count ( " -whitelist " ) ) {
BOOST_FOREACH ( const std : : string & net , mapMultiArgs [ " -whitelist " ] ) {
2017-09-03 15:29:10 +02:00
CSubNet subnet ;
LookupSubNet ( net . c_str ( ) , subnet ) ;
2014-06-21 13:34:36 +02:00
if ( ! subnet . IsValid ( ) )
return InitError ( strprintf ( _ ( " Invalid netmask specified in -whitelist: '%s' " ) , net ) ) ;
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
connman . AddWhitelistedRange ( subnet ) ;
2014-06-21 13:34:36 +02:00
}
}
2015-06-27 21:21:41 +02:00
bool proxyRandomize = GetBoolArg ( " -proxyrandomize " , DEFAULT_PROXYRANDOMIZE ) ;
2015-06-10 09:19:13 +02:00
// -proxy sets a proxy for all outgoing network traffic
// -noproxy (or -proxy=0) as well as the empty string can be used to not set a proxy, this is the default
std : : string proxyArg = GetArg ( " -proxy " , " " ) ;
2016-02-18 07:44:32 +01:00
SetLimited ( NET_TOR ) ;
2015-06-10 09:19:13 +02:00
if ( proxyArg ! = " " & & proxyArg ! = " 0 " ) {
2017-09-03 15:29:10 +02:00
CService resolved ( LookupNumeric ( proxyArg . c_str ( ) , 9050 ) ) ;
proxyType addrProxy = proxyType ( resolved , proxyRandomize ) ;
2012-05-24 19:02:21 +02:00
if ( ! addrProxy . IsValid ( ) )
2015-06-10 09:19:13 +02:00
return InitError ( strprintf ( _ ( " Invalid -proxy address: '%s' " ) , proxyArg ) ) ;
2012-05-24 19:02:21 +02:00
2014-11-24 00:12:50 +01:00
SetProxy ( NET_IPV4 , addrProxy ) ;
SetProxy ( NET_IPV6 , addrProxy ) ;
2015-06-10 09:19:13 +02:00
SetProxy ( NET_TOR , addrProxy ) ;
2014-06-11 13:20:59 +02:00
SetNameProxy ( addrProxy ) ;
2016-02-18 07:44:32 +01:00
SetLimited ( NET_TOR , false ) ; // by default, -proxy sets onion as reachable, unless -noonion later
2012-05-01 21:04:07 +02:00
}
2015-06-10 09:19:13 +02:00
// -onion can be used to set only a proxy for .onion, or override normal proxy for .onion addresses
// -noonion (or -onion=0) disables connecting to .onion entirely
// An empty string is used to not override the onion proxy (in which case it defaults to -proxy set above, or none)
std : : string onionArg = GetArg ( " -onion " , " " ) ;
if ( onionArg ! = " " ) {
if ( onionArg = = " 0 " ) { // Handle -noonion/-onion=0
2016-02-18 07:44:32 +01:00
SetLimited ( NET_TOR ) ; // set onions as unreachable
2015-06-10 09:19:13 +02:00
} else {
2017-09-03 15:29:10 +02:00
CService resolved ( LookupNumeric ( onionArg . c_str ( ) , 9050 ) ) ;
proxyType addrOnion = proxyType ( resolved , proxyRandomize ) ;
2015-06-10 09:19:13 +02:00
if ( ! addrOnion . IsValid ( ) )
return InitError ( strprintf ( _ ( " Invalid -onion address: '%s' " ) , onionArg ) ) ;
SetProxy ( NET_TOR , addrOnion ) ;
2016-02-18 07:44:32 +01:00
SetLimited ( NET_TOR , false ) ;
2015-06-10 09:19:13 +02:00
}
2012-05-24 19:02:21 +02:00
}
// see Step 2: parameter interactions for more information about these
2014-05-29 13:02:22 +02:00
fListen = GetBoolArg ( " -listen " , DEFAULT_LISTEN ) ;
2012-05-24 19:02:21 +02:00
fDiscover = GetBoolArg ( " -discover " , true ) ;
2015-11-09 19:16:38 +01:00
fNameLookup = GetBoolArg ( " -dns " , DEFAULT_NAME_LOOKUP ) ;
2017-07-21 20:31:47 +02:00
fRelayTxes = ! GetBoolArg ( " -blocksonly " , DEFAULT_BLOCKSONLY ) ;
2012-05-17 04:11:19 +02:00
2012-05-21 16:47:29 +02:00
bool fBound = false ;
2014-05-29 12:33:17 +02:00
if ( fListen ) {
2014-06-21 13:34:36 +02:00
if ( mapArgs . count ( " -bind " ) | | mapArgs . count ( " -whitebind " ) ) {
2015-05-31 15:36:44 +02:00
BOOST_FOREACH ( const std : : string & strBind , mapMultiArgs [ " -bind " ] ) {
2012-05-21 16:47:29 +02:00
CService addrBind ;
if ( ! Lookup ( strBind . c_str ( ) , addrBind , GetListenPort ( ) , false ) )
2016-01-07 09:12:12 +01:00
return InitError ( ResolveErrMsg ( " bind " , strBind ) ) ;
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
fBound | = Bind ( connman , addrBind , ( BF_EXPLICIT | BF_REPORT_ERROR ) ) ;
2012-05-21 16:47:29 +02:00
}
2015-05-31 15:36:44 +02:00
BOOST_FOREACH ( const std : : string & strBind , mapMultiArgs [ " -whitebind " ] ) {
2014-06-21 13:34:36 +02:00
CService addrBind ;
if ( ! Lookup ( strBind . c_str ( ) , addrBind , 0 , false ) )
2016-01-07 09:12:12 +01:00
return InitError ( ResolveErrMsg ( " whitebind " , strBind ) ) ;
2014-06-21 13:34:36 +02:00
if ( addrBind . GetPort ( ) = = 0 )
return InitError ( strprintf ( _ ( " Need to specify a port with -whitebind: '%s' " ) , strBind ) ) ;
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
fBound | = Bind ( connman , addrBind , ( BF_EXPLICIT | BF_REPORT_ERROR | BF_WHITELIST ) ) ;
2014-06-21 13:34:36 +02:00
}
2012-09-03 15:54:47 +02:00
}
else {
2012-05-21 16:47:29 +02:00
struct in_addr inaddr_any ;
inaddr_any . s_addr = INADDR_ANY ;
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
fBound | = Bind ( connman , CService ( in6addr_any , GetListenPort ( ) ) , BF_NONE ) ;
fBound | = Bind ( connman , CService ( inaddr_any , GetListenPort ( ) ) , ! fBound ? BF_REPORT_ERROR : BF_NONE ) ;
2012-05-21 16:47:29 +02:00
}
if ( ! fBound )
2012-05-24 19:02:21 +02:00
return InitError ( _ ( " Failed to listen on any port. Use -listen=0 if you want this. " ) ) ;
2012-05-17 04:11:19 +02:00
}
2012-09-03 15:54:47 +02:00
if ( mapArgs . count ( " -externalip " ) ) {
2015-05-31 15:36:44 +02:00
BOOST_FOREACH ( const std : : string & strAddr , mapMultiArgs [ " -externalip " ] ) {
2017-09-02 22:07:11 +02:00
CService addrLocal ;
if ( Lookup ( strAddr . c_str ( ) , addrLocal , GetListenPort ( ) , fNameLookup ) & & addrLocal . IsValid ( ) )
AddLocal ( addrLocal , LOCAL_MANUAL ) ;
else
2016-01-07 09:12:12 +01:00
return InitError ( ResolveErrMsg ( " externalip " , strAddr ) ) ;
2012-05-21 16:47:29 +02:00
}
}
2015-05-31 15:36:44 +02:00
BOOST_FOREACH ( const std : : string & strDest , mapMultiArgs [ " -seednode " ] )
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
connman . AddOneShot ( strDest ) ;
2012-05-24 19:02:21 +02:00
2014-11-18 18:06:32 +01:00
# if ENABLE_ZMQ
pzmqNotificationInterface = CZMQNotificationInterface : : CreateWithArguments ( mapArgs ) ;
if ( pzmqNotificationInterface ) {
RegisterValidationInterface ( pzmqNotificationInterface ) ;
}
# endif
2016-03-02 22:20:04 +01:00
2017-09-19 16:51:38 +02:00
pdsNotificationInterface = new CDSNotificationInterface ( connman ) ;
2016-03-02 22:20:04 +01:00
RegisterValidationInterface ( pdsNotificationInterface ) ;
2015-09-02 17:03:27 +02:00
if ( mapArgs . count ( " -maxuploadtarget " ) ) {
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
connman . SetMaxOutboundTarget ( GetArg ( " -maxuploadtarget " , DEFAULT_MAX_UPLOAD_TARGET ) * 1024 * 1024 ) ;
2015-09-02 17:03:27 +02:00
}
2014-11-18 18:06:32 +01:00
2012-10-05 19:22:21 +02:00
// ********************************************************* Step 7: load block chain
2012-05-21 16:47:29 +02:00
2013-04-28 17:37:50 +02:00
fReindex = GetBoolArg ( " -reindex " , false ) ;
2017-07-10 16:41:14 +02:00
bool fReindexChainState = GetBoolArg ( " -reindex-chainstate " , false ) ;
2012-10-21 21:23:13 +02:00
2012-12-12 22:11:52 +01:00
// Upgrading to 0.8; hard-link the old blknnnn.dat files into /blocks/
2014-12-19 21:21:29 +01:00
boost : : filesystem : : path blocksDir = GetDataDir ( ) / " blocks " ;
if ( ! boost : : filesystem : : exists ( blocksDir ) )
2012-12-12 22:11:52 +01:00
{
2014-12-19 21:21:29 +01:00
boost : : filesystem : : create_directories ( blocksDir ) ;
2012-12-12 22:11:52 +01:00
bool linked = false ;
for ( unsigned int i = 1 ; i < 10000 ; i + + ) {
2014-12-19 21:21:29 +01:00
boost : : filesystem : : path source = GetDataDir ( ) / strprintf ( " blk%04u.dat " , i ) ;
if ( ! boost : : filesystem : : exists ( source ) ) break ;
boost : : filesystem : : path dest = blocksDir / strprintf ( " blk%05u.dat " , i - 1 ) ;
2012-12-12 22:11:52 +01:00
try {
2014-12-19 21:21:29 +01:00
boost : : filesystem : : create_hard_link ( source , dest ) ;
2014-01-16 16:15:27 +01:00
LogPrintf ( " Hardlinked %s -> %s \n " , source . string ( ) , dest . string ( ) ) ;
2012-12-12 22:11:52 +01:00
linked = true ;
2014-12-19 21:21:29 +01:00
} catch ( const boost : : filesystem : : filesystem_error & e ) {
2012-12-12 22:11:52 +01:00
// Note: hardlink creation failing is not a disaster, it just means
// blocks will get re-downloaded from peers.
2015-01-08 11:44:25 +01:00
LogPrintf ( " Error hardlinking blk%04u.dat: %s \n " , i , e . what ( ) ) ;
2012-12-12 22:11:52 +01:00
break ;
}
}
if ( linked )
{
fReindex = true ;
}
}
2012-11-04 17:11:48 +01:00
// cache size calculations
2015-05-04 01:56:42 +02:00
int64_t nTotalCache = ( GetArg ( " -dbcache " , nDefaultDbCache ) < < 20 ) ;
nTotalCache = std : : max ( nTotalCache , nMinDbCache < < 20 ) ; // total cache cannot be less than nMinDbCache
nTotalCache = std : : min ( nTotalCache , nMaxDbCache < < 20 ) ; // total cache cannot be greated than nMaxDbcache
int64_t nBlockTreeDBCache = nTotalCache / 8 ;
2016-07-06 07:46:41 +02:00
nBlockTreeDBCache = std : : min ( nBlockTreeDBCache , ( GetBoolArg ( " -txindex " , DEFAULT_TXINDEX ) ? nMaxBlockDBAndTxIndexCache : nMaxBlockDBCache ) < < 20 ) ;
2012-11-04 17:11:48 +01:00
nTotalCache - = nBlockTreeDBCache ;
2015-05-04 01:56:42 +02:00
int64_t nCoinDBCache = std : : min ( nTotalCache / 2 , ( nTotalCache / 4 ) + ( 1 < < 23 ) ) ; // use 25%-50% of the remainder for disk cache
2016-07-06 07:46:41 +02:00
nCoinDBCache = std : : min ( nCoinDBCache , nMaxCoinsDBCache < < 20 ) ; // cap total coins db cache
2012-11-04 17:11:48 +01:00
nTotalCache - = nCoinDBCache ;
2015-05-04 01:56:42 +02:00
nCoinCacheUsage = nTotalCache ; // the rest goes to in-memory cache
2017-01-05 22:46:10 +01:00
nMempoolSizeMax = GetArg ( " -maxmempool " , DEFAULT_MAX_MEMPOOL_SIZE ) * 1000000 ;
2015-05-04 01:56:42 +02:00
LogPrintf ( " Cache configuration: \n " ) ;
LogPrintf ( " * Using %.1fMiB for block index database \n " , nBlockTreeDBCache * ( 1.0 / 1024 / 1024 ) ) ;
LogPrintf ( " * Using %.1fMiB for chain state database \n " , nCoinDBCache * ( 1.0 / 1024 / 1024 ) ) ;
2017-01-05 22:46:10 +01:00
LogPrintf ( " * Using %.1fMiB for in-memory UTXO set (plus up to %.1fMiB of unused mempool space) \n " , nCoinCacheUsage * ( 1.0 / 1024 / 1024 ) , nMempoolSizeMax * ( 1.0 / 1024 / 1024 ) ) ;
2012-11-04 17:11:48 +01:00
2013-02-16 17:58:45 +01:00
bool fLoaded = false ;
2017-06-29 19:51:48 +02:00
while ( ! fLoaded & & ! fRequestShutdown ) {
2013-02-16 17:58:45 +01:00
bool fReset = fReindex ;
std : : string strLoadError ;
2013-01-11 22:57:22 +01:00
2013-02-16 17:58:45 +01:00
uiInterface . InitMessage ( _ ( " Loading block index... " ) ) ;
2012-07-06 16:33:34 +02:00
2013-02-16 17:58:45 +01:00
nStart = GetTimeMillis ( ) ;
do {
try {
UnloadBlockIndex ( ) ;
delete pcoinsTip ;
delete pcoinsdbview ;
2015-01-24 18:31:19 +01:00
delete pcoinscatcher ;
2013-02-16 17:58:45 +01:00
delete pblocktree ;
pblocktree = new CBlockTreeDB ( nBlockTreeDBCache , false , fReindex ) ;
2017-07-10 16:41:14 +02:00
pcoinsdbview = new CCoinsViewDB ( nCoinDBCache , false , fReindex | | fReindexChainState ) ;
2015-01-08 14:38:06 +01:00
pcoinscatcher = new CCoinsViewErrorCatcher ( pcoinsdbview ) ;
pcoinsTip = new CCoinsViewCache ( pcoinscatcher ) ;
2013-02-16 17:58:45 +01:00
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
if ( fReindex ) {
2013-02-16 17:58:45 +01:00
pblocktree - > WriteReindexing ( true ) ;
2015-06-02 21:24:53 +02:00
//If we're reindexing in prune mode, wipe away unusable block files and all undo data files
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
if ( fPruneMode )
2015-06-02 21:24:53 +02:00
CleanupBlockRevFiles ( ) ;
2017-06-02 00:47:58 +02:00
} else {
// If necessary, upgrade from older database format.
if ( ! pcoinsdbview - > Upgrade ( ) ) {
strLoadError = _ ( " Error upgrading chainstate database " ) ;
break ;
}
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
}
2017-06-29 19:51:48 +02:00
if ( fRequestShutdown ) break ;
2013-02-16 17:58:45 +01:00
if ( ! LoadBlockIndex ( ) ) {
strLoadError = _ ( " Error loading block database " ) ;
break ;
}
2013-05-12 12:03:32 +02:00
// If the loaded chain has a wrong genesis, bail out immediately
// (we're likely using a testnet datadir, or the other way around).
2015-04-09 15:58:34 +02:00
if ( ! mapBlockIndex . empty ( ) & & mapBlockIndex . count ( chainparams . GetConsensus ( ) . hashGenesisBlock ) = = 0 )
2013-05-12 12:03:32 +02:00
return InitError ( _ ( " Incorrect or no genesis block found. Wrong datadir for network? " ) ) ;
2017-12-20 12:45:01 +01:00
if ( chainparams . NetworkIDString ( ) = = CBaseChainParams : : DEVNET & & ! mapBlockIndex . empty ( ) & & mapBlockIndex . count ( chainparams . DevNetGenesisBlock ( ) . GetHash ( ) ) = = 0 )
return InitError ( _ ( " Incorrect or no devnet genesis block found. Wrong datadir for devnet specified? " ) ) ;
2013-02-16 17:58:45 +01:00
// Initialize the block index (no-op if non-empty database was already loaded)
2015-04-17 14:40:24 +02:00
if ( ! InitBlockIndex ( chainparams ) ) {
2013-02-16 17:58:45 +01:00
strLoadError = _ ( " Error initializing block database " ) ;
break ;
}
2013-06-22 16:03:11 +02:00
// Check for changed -txindex state
2015-06-27 21:21:41 +02:00
if ( fTxIndex ! = GetBoolArg ( " -txindex " , DEFAULT_TXINDEX ) ) {
2017-07-10 16:41:14 +02:00
strLoadError = _ ( " You need to rebuild the database using -reindex-chainstate to change -txindex " ) ;
2013-06-22 16:03:11 +02:00
break ;
}
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
// Check for changed -prune state. What we are concerned about is a user who has pruned blocks
// in the past, but is now trying to run unpruned.
if ( fHavePruned & & ! fPruneMode ) {
strLoadError = _ ( " You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain " ) ;
break ;
}
2013-02-23 23:48:02 +01:00
uiInterface . InitMessage ( _ ( " Verifying blocks... " ) ) ;
2015-06-27 21:08:36 +02:00
if ( fHavePruned & & GetArg ( " -checkblocks " , DEFAULT_CHECKBLOCKS ) > MIN_BLOCKS_TO_KEEP ) {
2016-05-25 16:28:12 +02:00
LogPrintf ( " Prune: pruned datadir may not have more than %d blocks; only checking available blocks " ,
MIN_BLOCKS_TO_KEEP ) ;
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
}
2015-07-28 23:42:03 +02:00
{
LOCK ( cs_main ) ;
CBlockIndex * tip = chainActive . Tip ( ) ;
if ( tip & & tip - > nTime > GetAdjustedTime ( ) + 2 * 60 * 60 ) {
strLoadError = _ ( " The block database contains a block which appears to be from the future. "
" This may be due to your computer's date and time being set incorrectly. "
" Only rebuild the block database if you are sure that your computer's date and time are correct " ) ;
break ;
}
}
2015-04-17 14:40:24 +02:00
if ( ! CVerifyDB ( ) . VerifyDB ( chainparams , pcoinsdbview , GetArg ( " -checklevel " , DEFAULT_CHECKLEVEL ) ,
2015-06-27 21:08:36 +02:00
GetArg ( " -checkblocks " , DEFAULT_CHECKBLOCKS ) ) ) {
2013-02-16 17:58:45 +01:00
strLoadError = _ ( " Corrupted block database detected " ) ;
break ;
}
2014-12-07 13:29:06 +01:00
} catch ( const std : : exception & e ) {
2013-09-18 12:38:08 +02:00
if ( fDebug ) LogPrintf ( " %s \n " , e . what ( ) ) ;
2013-02-16 17:58:45 +01:00
strLoadError = _ ( " Error opening block database " ) ;
break ;
}
2013-01-03 15:29:07 +01:00
2013-02-16 17:58:45 +01:00
fLoaded = true ;
} while ( false ) ;
2017-06-29 19:51:48 +02:00
if ( ! fLoaded & & ! fRequestShutdown ) {
2013-02-16 17:58:45 +01:00
// first suggest a reindex
if ( ! fReset ) {
2017-09-09 09:04:02 +02:00
bool fRet = uiInterface . ThreadSafeQuestion (
2013-05-13 08:26:29 +02:00
strLoadError + " . \n \n " + _ ( " Do you want to rebuild the block database now? " ) ,
2017-09-09 09:04:02 +02:00
strLoadError + " . \n Please restart with -reindex or -reindex-chainstate to recover. " ,
2013-02-16 17:58:45 +01:00
" " , CClientUIInterface : : MSG_ERROR | CClientUIInterface : : BTN_ABORT ) ;
if ( fRet ) {
fReindex = true ;
fRequestShutdown = false ;
} else {
2013-09-18 12:38:08 +02:00
LogPrintf ( " Aborted block database rebuild. Exiting. \n " ) ;
2013-02-16 17:58:45 +01:00
return false ;
}
} else {
return InitError ( strLoadError ) ;
}
}
}
2012-04-18 13:30:24 +02:00
2013-12-16 23:36:22 +01:00
// As LoadBlockIndex can take several minutes, it's possible the user
// requested to kill the GUI during the last operation. If so, exit.
2012-04-18 13:30:24 +02:00
// As the program has not fully started yet, Shutdown() is possibly overkill.
if ( fRequestShutdown )
{
2013-09-18 12:38:08 +02:00
LogPrintf ( " Shutdown requested. Exiting. \n " ) ;
2012-04-18 13:30:24 +02:00
return false ;
}
2014-02-24 09:08:56 +01:00
LogPrintf ( " block index %15dms \n " , GetTimeMillis ( ) - nStart ) ;
2011-05-14 20:10:21 +02:00
2014-03-17 13:19:54 +01:00
boost : : filesystem : : path est_path = GetDataDir ( ) / FEE_ESTIMATES_FILENAME ;
2014-09-26 01:25:19 +02:00
CAutoFile est_filein ( fopen ( est_path . string ( ) . c_str ( ) , " rb " ) , SER_DISK , CLIENT_VERSION ) ;
2014-06-27 14:41:11 +02:00
// Allowed to fail as this file IS missing on first startup.
2014-10-20 12:45:50 +02:00
if ( ! est_filein . IsNull ( ) )
2014-03-17 13:19:54 +01:00
mempool . ReadFeeEstimates ( est_filein ) ;
2014-09-18 14:08:43 +02:00
fFeeEstimatesInitialized = true ;
2012-02-20 20:50:26 +01:00
2012-09-18 20:30:47 +02:00
// ********************************************************* Step 8: load wallet
2013-11-29 16:04:29 +01:00
# ifdef ENABLE_WALLET
2013-10-02 17:19:10 +02:00
if ( fDisableWallet ) {
pwalletMain = NULL ;
LogPrintf ( " Wallet disabled! \n " ) ;
} else {
2016-04-02 11:06:56 +02:00
CWallet : : InitLoadWallet ( ) ;
2016-03-14 11:34:43 +01:00
if ( ! pwalletMain )
return false ;
}
2013-11-29 16:04:29 +01:00
# else // ENABLE_WALLET
2015-04-15 14:35:35 +02:00
LogPrintf ( " No wallet support compiled in! \n " ) ;
2013-11-29 16:04:29 +01:00
# endif // !ENABLE_WALLET
2015-06-30 19:22:48 +02:00
// ********************************************************* Step 9: data directory maintenance
// if pruning, unset the service bit and perform the initial blockstore prune
// after any wallet rescanning has taken place.
if ( fPruneMode ) {
LogPrintf ( " Unsetting NODE_NETWORK on prune mode \n " ) ;
2017-07-05 05:45:23 +02:00
nLocalServices = ServiceFlags ( nLocalServices & ~ NODE_NETWORK ) ;
2015-06-30 19:22:48 +02:00
if ( ! fReindex ) {
2015-10-19 20:43:04 +02:00
uiInterface . InitMessage ( _ ( " Pruning blockstore... " ) ) ;
2015-06-30 19:22:48 +02:00
PruneAndFlush ( ) ;
}
}
// ********************************************************* Step 10: import blocks
2012-01-03 16:14:22 +01:00
2016-08-04 12:21:59 +02:00
if ( ! CheckDiskSpace ( ) )
return false ;
// Either install a handler to notify us when genesis activates, or set fHaveGenesis directly.
// No locking, as this happens before any background thread is started.
if ( chainActive . Tip ( ) = = NULL ) {
uiInterface . NotifyBlockTip . connect ( BlockNotifyGenesisWait ) ;
} else {
fHaveGenesis = true ;
}
2014-08-14 18:32:34 +02:00
if ( mapArgs . count ( " -blocknotify " ) )
uiInterface . NotifyBlockTip . connect ( BlockNotifyCallback ) ;
2013-03-07 04:31:26 +01:00
std : : vector < boost : : filesystem : : path > vImportFiles ;
2012-05-21 16:47:29 +02:00
if ( mapArgs . count ( " -loadblock " ) )
2011-05-14 20:10:21 +02:00
{
2015-05-31 15:36:44 +02:00
BOOST_FOREACH ( const std : : string & strFile , mapMultiArgs [ " -loadblock " ] )
2013-03-07 04:31:26 +01:00
vImportFiles . push_back ( strFile ) ;
2012-09-24 19:37:03 +02:00
}
2016-08-04 12:21:59 +02:00
2013-03-07 04:31:26 +01:00
threadGroup . create_thread ( boost : : bind ( & ThreadImport , vImportFiles ) ) ;
2016-05-25 16:02:06 +02:00
// Wait for genesis block to be processed
2016-08-04 12:21:59 +02:00
{
boost : : unique_lock < boost : : mutex > lock ( cs_GenesisWait ) ;
while ( ! fHaveGenesis ) {
condvar_GenesisWait . wait ( lock ) ;
2016-05-25 16:02:06 +02:00
}
2016-08-04 12:21:59 +02:00
uiInterface . NotifyBlockTip . disconnect ( BlockNotifyGenesisWait ) ;
2014-11-08 08:18:21 +01:00
}
2012-09-24 19:37:03 +02:00
2016-05-30 08:22:08 +02:00
// ********************************************************* Step 11a: setup PrivateSend
2014-12-09 02:17:57 +01:00
fMasterNode = GetBoolArg ( " -masternode " , false ) ;
2017-11-01 16:11:39 +01:00
// TODO: masternode should have no wallet
2015-07-16 12:00:16 +02:00
if ( ( fMasterNode | | masternodeConfig . getCount ( ) > - 1 ) & & fTxIndex = = false ) {
return InitError ( " Enabling Masternode support requires turning on transaction indexing. "
2015-08-28 22:04:14 +02:00
" Please add txindex=1 to your configuration and start with -reindex " ) ;
2015-07-16 12:00:16 +02:00
}
2014-12-09 02:17:57 +01:00
if ( fMasterNode ) {
2016-08-05 21:49:45 +02:00
LogPrintf ( " MASTERNODE: \n " ) ;
2014-12-09 02:17:57 +01:00
2016-07-15 08:36:00 +02:00
std : : string strMasterNodePrivKey = GetArg ( " -masternodeprivkey " , " " ) ;
2016-08-05 21:49:45 +02:00
if ( ! strMasterNodePrivKey . empty ( ) ) {
2017-04-12 09:04:06 +02:00
if ( ! CMessageSigner : : GetKeysFromSecret ( strMasterNodePrivKey , activeMasternode . keyMasternode , activeMasternode . pubKeyMasternode ) )
2014-12-09 02:17:57 +01:00
return InitError ( _ ( " Invalid masternodeprivkey. Please see documenation. " ) ) ;
2016-07-15 08:36:00 +02:00
LogPrintf ( " pubKeyMasternode: %s \n " , CBitcoinAddress ( activeMasternode . pubKeyMasternode . GetID ( ) ) . ToString ( ) ) ;
2014-12-09 02:17:57 +01:00
} else {
return InitError ( _ ( " You must specify a masternodeprivkey in the configuration. Please see documentation for help. " ) ) ;
}
2016-10-25 15:46:38 +02:00
}
2017-12-01 19:53:34 +01:00
# ifdef ENABLE_WALLET
2016-10-25 15:46:38 +02:00
LogPrintf ( " Using masternode config file %s \n " , GetMasternodeConfigFile ( ) . string ( ) ) ;
if ( GetBoolArg ( " -mnconflock " , true ) & & pwalletMain & & ( masternodeConfig . getCount ( ) > 0 ) ) {
LOCK ( pwalletMain - > cs_wallet ) ;
LogPrintf ( " Locking Masternodes: \n " ) ;
uint256 mnTxHash ;
int outputIndex ;
BOOST_FOREACH ( CMasternodeConfig : : CMasternodeEntry mne , masternodeConfig . getEntries ( ) ) {
mnTxHash . SetHex ( mne . getTxHash ( ) ) ;
outputIndex = boost : : lexical_cast < unsigned int > ( mne . getOutputIndex ( ) ) ;
COutPoint outpoint = COutPoint ( mnTxHash , outputIndex ) ;
// don't lock non-spendable outpoint (i.e. it's already spent or it's not from this wallet at all)
if ( pwalletMain - > IsMine ( CTxIn ( outpoint ) ) ! = ISMINE_SPENDABLE ) {
LogPrintf ( " %s %s - IS NOT SPENDABLE, was not locked \n " , mne . getTxHash ( ) , mne . getOutputIndex ( ) ) ;
continue ;
2016-06-13 08:39:34 +02:00
}
2016-10-25 15:46:38 +02:00
pwalletMain - > LockCoin ( outpoint ) ;
LogPrintf ( " %s %s - locked successfully \n " , mne . getTxHash ( ) , mne . getOutputIndex ( ) ) ;
2015-05-20 19:21:44 +02:00
}
}
2017-05-05 13:26:27 +02:00
privateSendClient . nLiquidityProvider = std : : min ( std : : max ( ( int ) GetArg ( " -liquidityprovider " , DEFAULT_PRIVATESEND_LIQUIDITY ) , 0 ) , 100 ) ;
2017-09-03 15:30:58 +02:00
if ( privateSendClient . nLiquidityProvider ) {
// special case for liquidity providers only, normal clients should use default value
privateSendClient . SetMinBlocksToWait ( privateSendClient . nLiquidityProvider * 15 ) ;
}
2014-12-09 02:17:57 +01:00
2017-05-05 13:26:27 +02:00
privateSendClient . fEnablePrivateSend = GetBoolArg ( " -enableprivatesend " , false ) ;
privateSendClient . fPrivateSendMultiSession = GetBoolArg ( " -privatesendmultisession " , DEFAULT_PRIVATESEND_MULTISESSION ) ;
privateSendClient . nPrivateSendRounds = std : : min ( std : : max ( ( int ) GetArg ( " -privatesendrounds " , DEFAULT_PRIVATESEND_ROUNDS ) , 2 ) , privateSendClient . nLiquidityProvider ? 99999 : 16 ) ;
privateSendClient . nPrivateSendAmount = std : : min ( std : : max ( ( int ) GetArg ( " -privatesendamount " , DEFAULT_PRIVATESEND_AMOUNT ) , 2 ) , 999999 ) ;
2017-12-01 19:53:34 +01:00
# endif // ENABLE_WALLET
2014-12-09 02:17:57 +01:00
2016-08-05 21:49:45 +02:00
fEnableInstantSend = GetBoolArg ( " -enableinstantsend " , 1 ) ;
nInstantSendDepth = GetArg ( " -instantsenddepth " , DEFAULT_INSTANTSEND_DEPTH ) ;
2016-05-25 07:25:16 +02:00
nInstantSendDepth = std : : min ( std : : max ( nInstantSendDepth , 0 ) , 60 ) ;
2014-12-09 02:17:57 +01:00
2015-01-18 16:28:16 +01:00
//lite mode disables all Masternode and Darksend related functionality
fLiteMode = GetBoolArg ( " -litemode " , false ) ;
if ( fMasterNode & & fLiteMode ) {
return InitError ( " You can not start a masternode in litemode " ) ;
}
2015-01-20 10:10:57 +01:00
LogPrintf ( " fLiteMode %d \n " , fLiteMode ) ;
2016-05-25 07:25:16 +02:00
LogPrintf ( " nInstantSendDepth %d \n " , nInstantSendDepth ) ;
2017-12-01 19:53:34 +01:00
# ifdef ENABLE_WALLET
2017-05-05 13:26:27 +02:00
LogPrintf ( " PrivateSend rounds %d \n " , privateSendClient . nPrivateSendRounds ) ;
LogPrintf ( " PrivateSend amount %d \n " , privateSendClient . nPrivateSendAmount ) ;
2017-12-01 19:53:34 +01:00
# endif // ENABLE_WALLET
2014-12-09 02:17:57 +01:00
2017-06-30 20:30:16 +02:00
CPrivateSend : : InitStandardDenominations ( ) ;
2016-05-30 08:22:08 +02:00
// ********************************************************* Step 11b: Load cache data
// LOAD SERIALIZED DAT FILES INTO DATA CACHES FOR INTERNAL USE
2017-04-11 12:54:17 +02:00
boost : : filesystem : : path pathDB = GetDataDir ( ) ;
std : : string strDBName ;
strDBName = " mncache.dat " ;
2016-05-30 08:22:08 +02:00
uiInterface . InitMessage ( _ ( " Loading masternode cache... " ) ) ;
2017-04-11 12:54:17 +02:00
CFlatDB < CMasternodeMan > flatdb1 ( strDBName , " magicMasternodeCache " ) ;
2016-11-16 16:37:40 +01:00
if ( ! flatdb1 . Load ( mnodeman ) ) {
2017-04-11 12:54:17 +02:00
return InitError ( _ ( " Failed to load masternode cache from " ) + " \n " + ( pathDB / strDBName ) . string ( ) ) ;
2016-11-16 16:37:40 +01:00
}
2016-05-30 08:22:08 +02:00
2016-12-26 16:33:28 +01:00
if ( mnodeman . size ( ) ) {
2017-04-11 12:54:17 +02:00
strDBName = " mnpayments.dat " ;
2016-12-26 16:33:28 +01:00
uiInterface . InitMessage ( _ ( " Loading masternode payment cache... " ) ) ;
2017-04-11 12:54:17 +02:00
CFlatDB < CMasternodePayments > flatdb2 ( strDBName , " magicMasternodePaymentsCache " ) ;
2016-12-26 16:33:28 +01:00
if ( ! flatdb2 . Load ( mnpayments ) ) {
2017-04-11 12:54:17 +02:00
return InitError ( _ ( " Failed to load masternode payments cache from " ) + " \n " + ( pathDB / strDBName ) . string ( ) ) ;
2016-12-26 16:33:28 +01:00
}
2016-05-30 08:22:08 +02:00
2017-04-11 12:54:17 +02:00
strDBName = " governance.dat " ;
2016-12-26 16:33:28 +01:00
uiInterface . InitMessage ( _ ( " Loading governance cache... " ) ) ;
2017-04-11 12:54:17 +02:00
CFlatDB < CGovernanceManager > flatdb3 ( strDBName , " magicGovernanceCache " ) ;
2016-12-26 16:33:28 +01:00
if ( ! flatdb3 . Load ( governance ) ) {
2017-04-11 12:54:17 +02:00
return InitError ( _ ( " Failed to load governance cache from " ) + " \n " + ( pathDB / strDBName ) . string ( ) ) ;
2016-12-26 16:33:28 +01:00
}
governance . InitOnLoad ( ) ;
} else {
uiInterface . InitMessage ( _ ( " Masternode cache is empty, skipping payments and governance cache... " ) ) ;
2016-11-16 16:37:40 +01:00
}
2016-05-30 08:22:08 +02:00
2017-04-11 12:54:17 +02:00
strDBName = " netfulfilled.dat " ;
2017-03-12 15:41:36 +01:00
uiInterface . InitMessage ( _ ( " Loading fulfilled requests cache... " ) ) ;
2017-04-11 12:54:17 +02:00
CFlatDB < CNetFulfilledRequestManager > flatdb4 ( strDBName , " magicFulfilledCache " ) ;
2016-11-16 16:37:40 +01:00
if ( ! flatdb4 . Load ( netfulfilledman ) ) {
2017-04-11 12:54:17 +02:00
return InitError ( _ ( " Failed to load fulfilled requests cache from " ) + " \n " + ( pathDB / strDBName ) . string ( ) ) ;
2016-11-16 16:37:40 +01:00
}
2016-09-27 21:37:54 +02:00
2016-05-30 08:22:08 +02:00
// ********************************************************* Step 11c: update block tip in Dash modules
2015-01-02 15:49:44 +01:00
2017-08-25 14:57:05 +02:00
// force UpdatedBlockTip to initialize nCachedBlockHeight for DS, MN payments and budgets
2016-03-06 16:01:52 +01:00
// but don't call it directly to prevent triggering of other listeners like zmq etc.
// GetMainSignals().UpdatedBlockTip(chainActive.Tip());
2017-08-29 01:51:33 +02:00
pdsNotificationInterface - > InitializeCurrentBlockTip ( ) ;
2016-03-02 22:20:04 +01:00
2017-05-05 13:26:27 +02:00
// ********************************************************* Step 11d: start dash-ps-<smth> threads
2016-05-30 08:22:08 +02:00
2017-09-19 16:51:38 +02:00
threadGroup . create_thread ( boost : : bind ( & ThreadCheckPrivateSend , boost : : ref ( * g_connman ) ) ) ;
2017-05-05 13:26:27 +02:00
if ( fMasterNode )
2017-09-19 16:51:38 +02:00
threadGroup . create_thread ( boost : : bind ( & ThreadCheckPrivateSendServer , boost : : ref ( * g_connman ) ) ) ;
2017-12-01 19:53:34 +01:00
# ifdef ENABLE_WALLET
2017-05-05 13:26:27 +02:00
else
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
threadGroup . create_thread ( boost : : bind ( & ThreadCheckPrivateSendClient , boost : : ref ( * g_connman ) ) ) ;
2017-12-01 19:53:34 +01:00
# endif // ENABLE_WALLET
2014-12-09 02:17:57 +01:00
2016-05-30 08:22:08 +02:00
// ********************************************************* Step 12: start node
2011-05-14 20:10:21 +02:00
2013-05-02 18:26:33 +02:00
if ( ! strErrors . str ( ) . empty ( ) )
return InitError ( strErrors . str ( ) ) ;
2012-05-21 16:47:29 +02:00
//// debug print
2014-05-06 15:25:01 +02:00
LogPrintf ( " mapBlockIndex.size() = %u \n " , mapBlockIndex . size ( ) ) ;
2015-04-03 00:51:08 +02:00
LogPrintf ( " chainActive.Height() = %d \n " , chainActive . Height ( ) ) ;
2013-11-29 16:04:29 +01:00
# ifdef ENABLE_WALLET
2017-05-29 13:51:40 +02:00
if ( pwalletMain ) {
LOCK ( pwalletMain - > cs_wallet ) ;
LogPrintf ( " setExternalKeyPool.size() = %u \n " , pwalletMain - > KeypoolCountExternalKeys ( ) ) ;
LogPrintf ( " setInternalKeyPool.size() = %u \n " , pwalletMain - > KeypoolCountInternalKeys ( ) ) ;
LogPrintf ( " mapWallet.size() = %u \n " , pwalletMain - > mapWallet . size ( ) ) ;
LogPrintf ( " mapAddressBook.size() = %u \n " , pwalletMain - > mapAddressBook . size ( ) ) ;
} else {
LogPrintf ( " wallet is NULL \n " ) ;
}
2013-11-29 16:04:29 +01:00
# endif
2012-05-21 16:47:29 +02:00
2015-08-25 20:12:08 +02:00
if ( GetBoolArg ( " -listenonion " , DEFAULT_LISTEN_ONION ) )
StartTorControl ( threadGroup , scheduler ) ;
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
Discover ( threadGroup ) ;
// Map ports with UPnP
MapPort ( GetBoolArg ( " -upnp " , DEFAULT_UPNP ) ) ;
std : : string strNodeError ;
CConnman : : Options connOptions ;
connOptions . nLocalServices = nLocalServices ;
connOptions . nRelevantServices = nRelevantServices ;
connOptions . nMaxConnections = nMaxConnections ;
connOptions . nMaxOutbound = std : : min ( MAX_OUTBOUND_CONNECTIONS , connOptions . nMaxConnections ) ;
connOptions . nMaxFeeler = 1 ;
connOptions . nBestHeight = chainActive . Height ( ) ;
connOptions . uiInterface = & uiInterface ;
connOptions . nSendBufferMaxSize = 1000 * GetArg ( " -maxsendbuffer " , DEFAULT_MAXSENDBUFFER ) ;
connOptions . nReceiveFloodSize = 1000 * GetArg ( " -maxreceivebuffer " , DEFAULT_MAXRECEIVEBUFFER ) ;
2017-08-09 18:06:31 +02:00
if ( ! connman . Start ( scheduler , strNodeError , connOptions ) )
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
return InitError ( strNodeError ) ;
2011-05-14 20:10:21 +02:00
2016-04-10 08:31:32 +02:00
// ********************************************************* Step 13: finished
2012-05-21 16:47:29 +02:00
2014-10-29 18:08:31 +01:00
SetRPCWarmupFinished ( ) ;
2012-05-21 16:47:29 +02:00
uiInterface . InitMessage ( _ ( " Done loading " ) ) ;
2013-11-29 16:04:29 +01:00
# ifdef ENABLE_WALLET
2013-08-25 06:00:02 +02:00
if ( pwalletMain ) {
// Add wallet transactions that aren't already in a block to mapTransactions
pwalletMain - > ReacceptWalletTransactions ( ) ;
2012-05-21 16:47:29 +02:00
2013-08-25 06:00:02 +02:00
// Run a thread to flush wallet periodically
threadGroup . create_thread ( boost : : bind ( & ThreadFlushWalletDB , boost : : ref ( pwalletMain - > strWalletFile ) ) ) ;
}
2013-11-29 16:04:29 +01:00
# endif
2011-05-14 20:10:21 +02:00
Backport Bitcoin PR#8085: p2p: Begin encapsulation (#1537)
* net: move CBanDB and CAddrDB out of net.h/cpp
This will eventually solve a circular dependency
* net: Create CConnman to encapsulate p2p connections
* net: Move socket binding into CConnman
* net: move OpenNetworkConnection into CConnman
* net: move ban and addrman functions into CConnman
* net: Add oneshot functions to CConnman
* net: move added node functions to CConnman
* net: Add most functions needed for vNodes to CConnman
* net: handle nodesignals in CConnman
* net: Pass CConnection to wallet rather than using the global
* net: Add rpc error for missing/disabled p2p functionality
* net: Pass CConnman around as needed
* gui: add NodeID to the peer table
* net: create generic functor accessors and move vNodes to CConnman
* net: move whitelist functions into CConnman
* net: move nLastNodeId to CConnman
* net: move nLocalHostNonce to CConnman
This behavior seems to have been quite racy and broken.
Move nLocalHostNonce into CNode, and check received nonces against all
non-fully-connected nodes. If there's a match, assume we've connected
to ourself.
* net: move messageHandlerCondition to CConnman
* net: move send/recv statistics to CConnman
* net: move SendBufferSize/ReceiveFloodSize to CConnman
* net: move nLocalServices/nRelevantServices to CConnman
These are in-turn passed to CNode at connection time. This allows us to offer
different services to different peers (or test the effects of doing so).
* net: move semOutbound and semMasternodeOutbound to CConnman
* net: SocketSendData returns written size
* net: move max/max-outbound to CConnman
* net: Pass best block known height into CConnman
CConnman then passes the current best height into CNode at creation time.
This way CConnman/CNode have no dependency on main for height, and the signals
only move in one direction.
This also helps to prevent identity leakage a tiny bit. Before this change, an
attacker could theoretically make 2 connections on different interfaces. They
would connect fully on one, and only establish the initial connection on the
other. Once they receive a new block, they would relay it to your first
connection, and immediately commence the version handshake on the second. Since
the new block height is reflected immediately, they could attempt to learn
whether the two connections were correlated.
This is, of course, incredibly unlikely to work due to the small timings
involved and receipt from other senders. But it doesn't hurt to lock-in
nBestHeight at the time of connection, rather than letting the remote choose
the time.
* net: pass CClientUIInterface into CConnman
* net: Drop StartNode/StopNode and use CConnman directly
* net: Introduce CConnection::Options to avoid passing so many params
* net: add nSendBufferMaxSize/nReceiveFloodSize to CConnection::Options
* net: move vNodesDisconnected into CConnman
* Made the ForEachNode* functions in src/net.cpp more pragmatic and self documenting
* Convert ForEachNode* functions to take a templated function argument rather than a std::function to eliminate std::function overhead
* net: move MAX_FEELER_CONNECTIONS into connman
2017-07-21 11:35:19 +02:00
threadGroup . create_thread ( boost : : bind ( & ThreadSendAlert , boost : : ref ( connman ) ) ) ;
2017-03-15 12:54:34 +01:00
2013-03-09 18:02:57 +01:00
return ! fRequestShutdown ;
2011-05-14 20:10:21 +02:00
}