Merge #8694: Basic multiwallet support
[bitcoinplatinum.git] / src / init.cpp
blob9aa8730cdafbe83942730b70c6fc1aa746198102
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2016 The Bitcoin Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
6 #if defined(HAVE_CONFIG_H)
7 #include "config/bitcoin-config.h"
8 #endif
10 #include "init.h"
12 #include "addrman.h"
13 #include "amount.h"
14 #include "chain.h"
15 #include "chainparams.h"
16 #include "checkpoints.h"
17 #include "compat/sanity.h"
18 #include "consensus/validation.h"
19 #include "fs.h"
20 #include "httpserver.h"
21 #include "httprpc.h"
22 #include "key.h"
23 #include "validation.h"
24 #include "miner.h"
25 #include "netbase.h"
26 #include "net.h"
27 #include "net_processing.h"
28 #include "policy/feerate.h"
29 #include "policy/fees.h"
30 #include "policy/policy.h"
31 #include "rpc/server.h"
32 #include "rpc/register.h"
33 #include "rpc/blockchain.h"
34 #include "script/standard.h"
35 #include "script/sigcache.h"
36 #include "scheduler.h"
37 #include "timedata.h"
38 #include "txdb.h"
39 #include "txmempool.h"
40 #include "torcontrol.h"
41 #include "ui_interface.h"
42 #include "util.h"
43 #include "utilmoneystr.h"
44 #include "validationinterface.h"
45 #ifdef ENABLE_WALLET
46 #include "wallet/wallet.h"
47 #endif
48 #include "warnings.h"
49 #include <stdint.h>
50 #include <stdio.h>
51 #include <memory>
53 #ifndef WIN32
54 #include <signal.h>
55 #endif
57 #include <boost/algorithm/string/classification.hpp>
58 #include <boost/algorithm/string/replace.hpp>
59 #include <boost/algorithm/string/split.hpp>
60 #include <boost/bind.hpp>
61 #include <boost/interprocess/sync/file_lock.hpp>
62 #include <boost/thread.hpp>
63 #include <openssl/crypto.h>
65 #if ENABLE_ZMQ
66 #include "zmq/zmqnotificationinterface.h"
67 #endif
69 bool fFeeEstimatesInitialized = false;
70 static const bool DEFAULT_PROXYRANDOMIZE = true;
71 static const bool DEFAULT_REST_ENABLE = false;
72 static const bool DEFAULT_DISABLE_SAFEMODE = false;
73 static const bool DEFAULT_STOPAFTERBLOCKIMPORT = false;
75 std::unique_ptr<CConnman> g_connman;
76 std::unique_ptr<PeerLogicValidation> peerLogic;
78 #if ENABLE_ZMQ
79 static CZMQNotificationInterface* pzmqNotificationInterface = NULL;
80 #endif
82 #ifdef WIN32
83 // Win32 LevelDB doesn't use filedescriptors, and the ones used for
84 // accessing block files don't count towards the fd_set size limit
85 // anyway.
86 #define MIN_CORE_FILEDESCRIPTORS 0
87 #else
88 #define MIN_CORE_FILEDESCRIPTORS 150
89 #endif
91 /** Used to pass flags to the Bind() function */
92 enum BindFlags {
93 BF_NONE = 0,
94 BF_EXPLICIT = (1U << 0),
95 BF_REPORT_ERROR = (1U << 1),
96 BF_WHITELIST = (1U << 2),
99 static const char* FEE_ESTIMATES_FILENAME="fee_estimates.dat";
101 //////////////////////////////////////////////////////////////////////////////
103 // Shutdown
107 // Thread management and startup/shutdown:
109 // The network-processing threads are all part of a thread group
110 // created by AppInit() or the Qt main() function.
112 // A clean exit happens when StartShutdown() or the SIGTERM
113 // signal handler sets fRequestShutdown, which triggers
114 // the DetectShutdownThread(), which interrupts the main thread group.
115 // DetectShutdownThread() then exits, which causes AppInit() to
116 // continue (it .joins the shutdown thread).
117 // Shutdown() is then
118 // called to clean up database connections, and stop other
119 // threads that should only be stopped after the main network-processing
120 // threads have exited.
122 // Shutdown for Qt is very similar, only it uses a QTimer to detect
123 // fRequestShutdown getting set, and then does the normal Qt
124 // shutdown thing.
127 std::atomic<bool> fRequestShutdown(false);
128 std::atomic<bool> fDumpMempoolLater(false);
130 void StartShutdown()
132 fRequestShutdown = true;
134 bool ShutdownRequested()
136 return fRequestShutdown;
140 * This is a minimally invasive approach to shutdown on LevelDB read errors from the
141 * chainstate, while keeping user interface out of the common library, which is shared
142 * between bitcoind, and bitcoin-qt and non-server tools.
144 class CCoinsViewErrorCatcher : public CCoinsViewBacked
146 public:
147 CCoinsViewErrorCatcher(CCoinsView* view) : CCoinsViewBacked(view) {}
148 bool GetCoin(const COutPoint &outpoint, Coin &coin) const override {
149 try {
150 return CCoinsViewBacked::GetCoin(outpoint, coin);
151 } catch(const std::runtime_error& e) {
152 uiInterface.ThreadSafeMessageBox(_("Error reading from database, shutting down."), "", CClientUIInterface::MSG_ERROR);
153 LogPrintf("Error reading from database: %s\n", e.what());
154 // Starting the shutdown sequence and returning false to the caller would be
155 // interpreted as 'entry not found' (as opposed to unable to read data), and
156 // could lead to invalid interpretation. Just exit immediately, as we can't
157 // continue anyway, and all writes should be atomic.
158 abort();
161 // Writes do not need similar protection, as failure to write is handled by the caller.
164 static CCoinsViewDB *pcoinsdbview = NULL;
165 static CCoinsViewErrorCatcher *pcoinscatcher = NULL;
166 static std::unique_ptr<ECCVerifyHandle> globalVerifyHandle;
168 void Interrupt(boost::thread_group& threadGroup)
170 InterruptHTTPServer();
171 InterruptHTTPRPC();
172 InterruptRPC();
173 InterruptREST();
174 InterruptTorControl();
175 if (g_connman)
176 g_connman->Interrupt();
177 threadGroup.interrupt_all();
180 void Shutdown()
182 LogPrintf("%s: In progress...\n", __func__);
183 static CCriticalSection cs_Shutdown;
184 TRY_LOCK(cs_Shutdown, lockShutdown);
185 if (!lockShutdown)
186 return;
188 /// Note: Shutdown() must be able to handle cases in which initialization failed part of the way,
189 /// for example if the data directory was found to be locked.
190 /// Be sure that anything that writes files or flushes caches only does this if the respective
191 /// module was initialized.
192 RenameThread("bitcoin-shutoff");
193 mempool.AddTransactionsUpdated(1);
195 StopHTTPRPC();
196 StopREST();
197 StopRPC();
198 StopHTTPServer();
199 #ifdef ENABLE_WALLET
200 for (CWalletRef pwallet : vpwallets) {
201 pwallet->Flush(false);
203 #endif
204 MapPort(false);
205 UnregisterValidationInterface(peerLogic.get());
206 peerLogic.reset();
207 g_connman.reset();
209 StopTorControl();
210 UnregisterNodeSignals(GetNodeSignals());
211 if (fDumpMempoolLater && GetArg("-persistmempool", DEFAULT_PERSIST_MEMPOOL)) {
212 DumpMempool();
215 if (fFeeEstimatesInitialized)
217 ::feeEstimator.FlushUnconfirmed(::mempool);
218 fs::path est_path = GetDataDir() / FEE_ESTIMATES_FILENAME;
219 CAutoFile est_fileout(fsbridge::fopen(est_path, "wb"), SER_DISK, CLIENT_VERSION);
220 if (!est_fileout.IsNull())
221 ::feeEstimator.Write(est_fileout);
222 else
223 LogPrintf("%s: Failed to write fee estimates to %s\n", __func__, est_path.string());
224 fFeeEstimatesInitialized = false;
228 LOCK(cs_main);
229 if (pcoinsTip != NULL) {
230 FlushStateToDisk();
232 delete pcoinsTip;
233 pcoinsTip = NULL;
234 delete pcoinscatcher;
235 pcoinscatcher = NULL;
236 delete pcoinsdbview;
237 pcoinsdbview = NULL;
238 delete pblocktree;
239 pblocktree = NULL;
241 #ifdef ENABLE_WALLET
242 for (CWalletRef pwallet : vpwallets) {
243 pwallet->Flush(true);
245 #endif
247 #if ENABLE_ZMQ
248 if (pzmqNotificationInterface) {
249 UnregisterValidationInterface(pzmqNotificationInterface);
250 delete pzmqNotificationInterface;
251 pzmqNotificationInterface = NULL;
253 #endif
255 #ifndef WIN32
256 try {
257 fs::remove(GetPidFile());
258 } catch (const fs::filesystem_error& e) {
259 LogPrintf("%s: Unable to remove pidfile: %s\n", __func__, e.what());
261 #endif
262 UnregisterAllValidationInterfaces();
263 #ifdef ENABLE_WALLET
264 for (CWalletRef pwallet : vpwallets) {
265 delete pwallet;
267 vpwallets.clear();
268 #endif
269 globalVerifyHandle.reset();
270 ECC_Stop();
271 LogPrintf("%s: done\n", __func__);
275 * Signal handlers are very limited in what they are allowed to do.
276 * The execution context the handler is invoked in is not guaranteed,
277 * so we restrict handler operations to just touching variables:
279 static void HandleSIGTERM(int)
281 fRequestShutdown = true;
284 static void HandleSIGHUP(int)
286 fReopenDebugLog = true;
289 #ifndef WIN32
290 static void registerSignalHandler(int signal, void(*handler)(int))
292 struct sigaction sa;
293 sa.sa_handler = handler;
294 sigemptyset(&sa.sa_mask);
295 sa.sa_flags = 0;
296 sigaction(signal, &sa, NULL);
298 #endif
300 bool static Bind(CConnman& connman, const CService &addr, unsigned int flags) {
301 if (!(flags & BF_EXPLICIT) && IsLimited(addr))
302 return false;
303 std::string strError;
304 if (!connman.BindListenPort(addr, strError, (flags & BF_WHITELIST) != 0)) {
305 if (flags & BF_REPORT_ERROR)
306 return InitError(strError);
307 return false;
309 return true;
311 void OnRPCStarted()
313 uiInterface.NotifyBlockTip.connect(&RPCNotifyBlockChange);
316 void OnRPCStopped()
318 uiInterface.NotifyBlockTip.disconnect(&RPCNotifyBlockChange);
319 RPCNotifyBlockChange(false, nullptr);
320 cvBlockChange.notify_all();
321 LogPrint(BCLog::RPC, "RPC stopped.\n");
324 void OnRPCPreCommand(const CRPCCommand& cmd)
326 // Observe safe mode
327 std::string strWarning = GetWarnings("rpc");
328 if (strWarning != "" && !GetBoolArg("-disablesafemode", DEFAULT_DISABLE_SAFEMODE) &&
329 !cmd.okSafeMode)
330 throw JSONRPCError(RPC_FORBIDDEN_BY_SAFE_MODE, std::string("Safe mode: ") + strWarning);
333 std::string HelpMessage(HelpMessageMode mode)
335 const auto defaultBaseParams = CreateBaseChainParams(CBaseChainParams::MAIN);
336 const auto testnetBaseParams = CreateBaseChainParams(CBaseChainParams::TESTNET);
337 const auto defaultChainParams = CreateChainParams(CBaseChainParams::MAIN);
338 const auto testnetChainParams = CreateChainParams(CBaseChainParams::TESTNET);
339 const bool showDebug = GetBoolArg("-help-debug", false);
341 // When adding new options to the categories, please keep and ensure alphabetical ordering.
342 // Do not translate _(...) -help-debug options, Many technical terms, and only a very small audience, so is unnecessary stress to translators.
343 std::string strUsage = HelpMessageGroup(_("Options:"));
344 strUsage += HelpMessageOpt("-?", _("Print this help message and exit"));
345 strUsage += HelpMessageOpt("-version", _("Print version and exit"));
346 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)"));
347 strUsage += HelpMessageOpt("-blocknotify=<cmd>", _("Execute command when the best block changes (%s in cmd is replaced by block hash)"));
348 if (showDebug)
349 strUsage += HelpMessageOpt("-blocksonly", strprintf(_("Whether to operate in a blocks only mode (default: %u)"), DEFAULT_BLOCKSONLY));
350 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)"), defaultChainParams->GetConsensus().defaultAssumeValid.GetHex(), testnetChainParams->GetConsensus().defaultAssumeValid.GetHex()));
351 strUsage += HelpMessageOpt("-conf=<file>", strprintf(_("Specify configuration file (default: %s)"), BITCOIN_CONF_FILENAME));
352 if (mode == HMM_BITCOIND)
354 #if HAVE_DECL_DAEMON
355 strUsage += HelpMessageOpt("-daemon", _("Run in the background as a daemon and accept commands"));
356 #endif
358 strUsage += HelpMessageOpt("-datadir=<dir>", _("Specify data directory"));
359 strUsage += HelpMessageOpt("-dbcache=<n>", strprintf(_("Set database cache size in megabytes (%d to %d, default: %d)"), nMinDbCache, nMaxDbCache, nDefaultDbCache));
360 if (showDebug)
361 strUsage += HelpMessageOpt("-feefilter", strprintf("Tell other nodes to filter invs to us by our mempool min fee (default: %u)", DEFAULT_FEEFILTER));
362 strUsage += HelpMessageOpt("-loadblock=<file>", _("Imports blocks from external blk000??.dat file on startup"));
363 strUsage += HelpMessageOpt("-maxorphantx=<n>", strprintf(_("Keep at most <n> unconnectable transactions in memory (default: %u)"), DEFAULT_MAX_ORPHAN_TRANSACTIONS));
364 strUsage += HelpMessageOpt("-maxmempool=<n>", strprintf(_("Keep the transaction memory pool below <n> megabytes (default: %u)"), DEFAULT_MAX_MEMPOOL_SIZE));
365 strUsage += HelpMessageOpt("-mempoolexpiry=<n>", strprintf(_("Do not keep transactions in the mempool longer than <n> hours (default: %u)"), DEFAULT_MEMPOOL_EXPIRY));
366 strUsage += HelpMessageOpt("-persistmempool", strprintf(_("Whether to save the mempool on shutdown and load on restart (default: %u)"), DEFAULT_PERSIST_MEMPOOL));
367 strUsage += HelpMessageOpt("-blockreconstructionextratxn=<n>", strprintf(_("Extra transactions to keep in memory for compact block reconstructions (default: %u)"), DEFAULT_BLOCK_RECONSTRUCTION_EXTRA_TXN));
368 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)"),
369 -GetNumCores(), MAX_SCRIPTCHECK_THREADS, DEFAULT_SCRIPTCHECK_THREADS));
370 #ifndef WIN32
371 strUsage += HelpMessageOpt("-pid=<file>", strprintf(_("Specify pid file (default: %s)"), BITCOIN_PID_FILENAME));
372 #endif
373 strUsage += HelpMessageOpt("-prune=<n>", strprintf(_("Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. "
374 "Warning: Reverting this setting requires re-downloading the entire blockchain. "
375 "(default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB)"), MIN_DISK_SPACE_FOR_BLOCK_FILES / 1024 / 1024));
376 strUsage += HelpMessageOpt("-reindex-chainstate", _("Rebuild chain state from the currently indexed blocks"));
377 strUsage += HelpMessageOpt("-reindex", _("Rebuild chain state and block index from the blk*.dat files on disk"));
378 #ifndef WIN32
379 strUsage += HelpMessageOpt("-sysperms", _("Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality)"));
380 #endif
381 strUsage += HelpMessageOpt("-txindex", strprintf(_("Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u)"), DEFAULT_TXINDEX));
383 strUsage += HelpMessageGroup(_("Connection options:"));
384 strUsage += HelpMessageOpt("-addnode=<ip>", _("Add a node to connect to and attempt to keep the connection open"));
385 strUsage += HelpMessageOpt("-banscore=<n>", strprintf(_("Threshold for disconnecting misbehaving peers (default: %u)"), DEFAULT_BANSCORE_THRESHOLD));
386 strUsage += HelpMessageOpt("-bantime=<n>", strprintf(_("Number of seconds to keep misbehaving peers from reconnecting (default: %u)"), DEFAULT_MISBEHAVING_BANTIME));
387 strUsage += HelpMessageOpt("-bind=<addr>", _("Bind to given address and always listen on it. Use [host]:port notation for IPv6"));
388 strUsage += HelpMessageOpt("-connect=<ip>", _("Connect only to the specified node(s); -connect=0 disables automatic connections"));
389 strUsage += HelpMessageOpt("-discover", _("Discover own IP addresses (default: 1 when listening and no -externalip or -proxy)"));
390 strUsage += HelpMessageOpt("-dns", _("Allow DNS lookups for -addnode, -seednode and -connect") + " " + strprintf(_("(default: %u)"), DEFAULT_NAME_LOOKUP));
391 strUsage += HelpMessageOpt("-dnsseed", _("Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used)"));
392 strUsage += HelpMessageOpt("-externalip=<ip>", _("Specify your own public address"));
393 strUsage += HelpMessageOpt("-forcednsseed", strprintf(_("Always query for peer addresses via DNS lookup (default: %u)"), DEFAULT_FORCEDNSSEED));
394 strUsage += HelpMessageOpt("-listen", _("Accept connections from outside (default: 1 if no -proxy or -connect)"));
395 strUsage += HelpMessageOpt("-listenonion", strprintf(_("Automatically create Tor hidden service (default: %d)"), DEFAULT_LISTEN_ONION));
396 strUsage += HelpMessageOpt("-maxconnections=<n>", strprintf(_("Maintain at most <n> connections to peers (default: %u)"), DEFAULT_MAX_PEER_CONNECTIONS));
397 strUsage += HelpMessageOpt("-maxreceivebuffer=<n>", strprintf(_("Maximum per-connection receive buffer, <n>*1000 bytes (default: %u)"), DEFAULT_MAXRECEIVEBUFFER));
398 strUsage += HelpMessageOpt("-maxsendbuffer=<n>", strprintf(_("Maximum per-connection send buffer, <n>*1000 bytes (default: %u)"), DEFAULT_MAXSENDBUFFER));
399 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));
400 strUsage += HelpMessageOpt("-onion=<ip:port>", strprintf(_("Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s)"), "-proxy"));
401 strUsage += HelpMessageOpt("-onlynet=<net>", _("Only connect to nodes in network <net> (ipv4, ipv6 or onion)"));
402 strUsage += HelpMessageOpt("-permitbaremultisig", strprintf(_("Relay non-P2SH multisig (default: %u)"), DEFAULT_PERMIT_BAREMULTISIG));
403 strUsage += HelpMessageOpt("-peerbloomfilters", strprintf(_("Support filtering of blocks and transaction with bloom filters (default: %u)"), DEFAULT_PEERBLOOMFILTERS));
404 strUsage += HelpMessageOpt("-port=<port>", strprintf(_("Listen for connections on <port> (default: %u or testnet: %u)"), defaultChainParams->GetDefaultPort(), testnetChainParams->GetDefaultPort()));
405 strUsage += HelpMessageOpt("-proxy=<ip:port>", _("Connect through SOCKS5 proxy"));
406 strUsage += HelpMessageOpt("-proxyrandomize", strprintf(_("Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u)"), DEFAULT_PROXYRANDOMIZE));
407 strUsage += HelpMessageOpt("-seednode=<ip>", _("Connect to a node to retrieve peer addresses, and disconnect"));
408 strUsage += HelpMessageOpt("-timeout=<n>", strprintf(_("Specify connection timeout in milliseconds (minimum: 1, default: %d)"), DEFAULT_CONNECT_TIMEOUT));
409 strUsage += HelpMessageOpt("-torcontrol=<ip>:<port>", strprintf(_("Tor control port to use if onion listening enabled (default: %s)"), DEFAULT_TOR_CONTROL));
410 strUsage += HelpMessageOpt("-torpassword=<pass>", _("Tor control port password (default: empty)"));
411 #ifdef USE_UPNP
412 #if USE_UPNP
413 strUsage += HelpMessageOpt("-upnp", _("Use UPnP to map the listening port (default: 1 when listening and no -proxy)"));
414 #else
415 strUsage += HelpMessageOpt("-upnp", strprintf(_("Use UPnP to map the listening port (default: %u)"), 0));
416 #endif
417 #endif
418 strUsage += HelpMessageOpt("-whitebind=<addr>", _("Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6"));
419 strUsage += HelpMessageOpt("-whitelist=<IP address or network>", _("Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times.") +
420 " " + _("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"));
421 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));
423 #ifdef ENABLE_WALLET
424 strUsage += CWallet::GetWalletHelpString(showDebug);
425 #endif
427 #if ENABLE_ZMQ
428 strUsage += HelpMessageGroup(_("ZeroMQ notification options:"));
429 strUsage += HelpMessageOpt("-zmqpubhashblock=<address>", _("Enable publish hash block in <address>"));
430 strUsage += HelpMessageOpt("-zmqpubhashtx=<address>", _("Enable publish hash transaction in <address>"));
431 strUsage += HelpMessageOpt("-zmqpubrawblock=<address>", _("Enable publish raw block in <address>"));
432 strUsage += HelpMessageOpt("-zmqpubrawtx=<address>", _("Enable publish raw transaction in <address>"));
433 #endif
435 strUsage += HelpMessageGroup(_("Debugging/Testing options:"));
436 strUsage += HelpMessageOpt("-uacomment=<cmt>", _("Append comment to the user agent string"));
437 if (showDebug)
439 strUsage += HelpMessageOpt("-checkblocks=<n>", strprintf(_("How many blocks to check at startup (default: %u, 0 = all)"), DEFAULT_CHECKBLOCKS));
440 strUsage += HelpMessageOpt("-checklevel=<n>", strprintf(_("How thorough the block verification of -checkblocks is (0-4, default: %u)"), DEFAULT_CHECKLEVEL));
441 strUsage += HelpMessageOpt("-checkblockindex", strprintf("Do a full consistency check for mapBlockIndex, setBlockIndexCandidates, chainActive and mapBlocksUnlinked occasionally. Also sets -checkmempool (default: %u)", defaultChainParams->DefaultConsistencyChecks()));
442 strUsage += HelpMessageOpt("-checkmempool=<n>", strprintf("Run checks every <n> transactions (default: %u)", defaultChainParams->DefaultConsistencyChecks()));
443 strUsage += HelpMessageOpt("-checkpoints", strprintf("Disable expensive verification for known chain history (default: %u)", DEFAULT_CHECKPOINTS_ENABLED));
444 strUsage += HelpMessageOpt("-disablesafemode", strprintf("Disable safemode, override a real safe mode event (default: %u)", DEFAULT_DISABLE_SAFEMODE));
445 strUsage += HelpMessageOpt("-testsafemode", strprintf("Force safe mode (default: %u)", DEFAULT_TESTSAFEMODE));
446 strUsage += HelpMessageOpt("-dropmessagestest=<n>", "Randomly drop 1 of every <n> network messages");
447 strUsage += HelpMessageOpt("-fuzzmessagestest=<n>", "Randomly fuzz 1 of every <n> network messages");
448 strUsage += HelpMessageOpt("-stopafterblockimport", strprintf("Stop running after importing blocks from disk (default: %u)", DEFAULT_STOPAFTERBLOCKIMPORT));
449 strUsage += HelpMessageOpt("-stopatheight", strprintf("Stop running after reaching the given height in the main chain (default: %u)", DEFAULT_STOPATHEIGHT));
451 strUsage += HelpMessageOpt("-limitancestorcount=<n>", strprintf("Do not accept transactions if number of in-mempool ancestors is <n> or more (default: %u)", DEFAULT_ANCESTOR_LIMIT));
452 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));
453 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));
454 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));
455 strUsage += HelpMessageOpt("-vbparams=deployment:start:end", "Use given start/end times for specified version bits deployment (regtest-only)");
457 strUsage += HelpMessageOpt("-debug=<category>", strprintf(_("Output debugging information (default: %u, supplying <category> is optional)"), 0) + ". " +
458 _("If <category> is not supplied or if <category> = 1, output all debugging information.") + " " + _("<category> can be:") + " " + ListLogCategories() + ".");
459 strUsage += HelpMessageOpt("-debugexclude=<category>", strprintf(_("Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories.")));
460 strUsage += HelpMessageOpt("-help-debug", _("Show all debugging options (usage: --help -help-debug)"));
461 strUsage += HelpMessageOpt("-logips", strprintf(_("Include IP addresses in debug output (default: %u)"), DEFAULT_LOGIPS));
462 strUsage += HelpMessageOpt("-logtimestamps", strprintf(_("Prepend debug output with timestamp (default: %u)"), DEFAULT_LOGTIMESTAMPS));
463 if (showDebug)
465 strUsage += HelpMessageOpt("-logtimemicros", strprintf("Add microsecond precision to debug timestamps (default: %u)", DEFAULT_LOGTIMEMICROS));
466 strUsage += HelpMessageOpt("-mocktime=<n>", "Replace actual time with <n> seconds since epoch (default: 0)");
467 strUsage += HelpMessageOpt("-maxsigcachesize=<n>", strprintf("Limit size of signature cache to <n> MiB (default: %u)", DEFAULT_MAX_SIG_CACHE_SIZE));
468 strUsage += HelpMessageOpt("-maxtipage=<n>", strprintf("Maximum tip age in seconds to consider node in initial block download (default: %u)", DEFAULT_MAX_TIP_AGE));
470 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)"),
471 CURRENCY_UNIT, FormatMoney(DEFAULT_TRANSACTION_MAXFEE)));
472 strUsage += HelpMessageOpt("-printtoconsole", _("Send trace/debug info to console instead of debug.log file"));
473 if (showDebug)
475 strUsage += HelpMessageOpt("-printpriority", strprintf("Log transaction fee per kB when mining blocks (default: %u)", DEFAULT_PRINTPRIORITY));
477 strUsage += HelpMessageOpt("-shrinkdebugfile", _("Shrink debug.log file on client startup (default: 1 when no -debug)"));
479 AppendParamsHelpMessages(strUsage, showDebug);
481 strUsage += HelpMessageGroup(_("Node relay options:"));
482 if (showDebug) {
483 strUsage += HelpMessageOpt("-acceptnonstdtxn", strprintf("Relay and mine \"non-standard\" transactions (%sdefault: %u)", "testnet/regtest only; ", defaultChainParams->RequireStandard()));
484 strUsage += HelpMessageOpt("-incrementalrelayfee=<amt>", strprintf("Fee rate (in %s/kB) used to define cost of relay, used for mempool limiting and BIP 125 replacement. (default: %s)", CURRENCY_UNIT, FormatMoney(DEFAULT_INCREMENTAL_RELAY_FEE)));
485 strUsage += HelpMessageOpt("-dustrelayfee=<amt>", strprintf("Fee rate (in %s/kB) used to defined dust, the value of an output such that it will cost about 1/3 of its value in fees at this fee rate to spend it. (default: %s)", CURRENCY_UNIT, FormatMoney(DUST_RELAY_TX_FEE)));
487 strUsage += HelpMessageOpt("-bytespersigop", strprintf(_("Equivalent bytes per sigop in transactions for relay and mining (default: %u)"), DEFAULT_BYTES_PER_SIGOP));
488 strUsage += HelpMessageOpt("-datacarrier", strprintf(_("Relay and mine data carrier transactions (default: %u)"), DEFAULT_ACCEPT_DATACARRIER));
489 strUsage += HelpMessageOpt("-datacarriersize", strprintf(_("Maximum size of data in data carrier transactions we relay and mine (default: %u)"), MAX_OP_RETURN_RELAY));
490 strUsage += HelpMessageOpt("-mempoolreplacement", strprintf(_("Enable transaction replacement in the memory pool (default: %u)"), DEFAULT_ENABLE_REPLACEMENT));
491 strUsage += HelpMessageOpt("-minrelaytxfee=<amt>", strprintf(_("Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s)"),
492 CURRENCY_UNIT, FormatMoney(DEFAULT_MIN_RELAY_TX_FEE)));
493 strUsage += HelpMessageOpt("-whitelistrelay", strprintf(_("Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d)"), DEFAULT_WHITELISTRELAY));
494 strUsage += HelpMessageOpt("-whitelistforcerelay", strprintf(_("Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d)"), DEFAULT_WHITELISTFORCERELAY));
496 strUsage += HelpMessageGroup(_("Block creation options:"));
497 strUsage += HelpMessageOpt("-blockmaxweight=<n>", strprintf(_("Set maximum BIP141 block weight (default: %d)"), DEFAULT_BLOCK_MAX_WEIGHT));
498 strUsage += HelpMessageOpt("-blockmaxsize=<n>", strprintf(_("Set maximum block size in bytes (default: %d)"), DEFAULT_BLOCK_MAX_SIZE));
499 strUsage += HelpMessageOpt("-blockmintxfee=<amt>", strprintf(_("Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s)"), CURRENCY_UNIT, FormatMoney(DEFAULT_BLOCK_MIN_TX_FEE)));
500 if (showDebug)
501 strUsage += HelpMessageOpt("-blockversion=<n>", "Override block version to test forking scenarios");
503 strUsage += HelpMessageGroup(_("RPC server options:"));
504 strUsage += HelpMessageOpt("-server", _("Accept command line and JSON-RPC commands"));
505 strUsage += HelpMessageOpt("-rest", strprintf(_("Accept public REST requests (default: %u)"), DEFAULT_REST_ENABLE));
506 strUsage += HelpMessageOpt("-rpcbind=<addr>[:port]", _("Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses)"));
507 strUsage += HelpMessageOpt("-rpccookiefile=<loc>", _("Location of the auth cookie (default: data dir)"));
508 strUsage += HelpMessageOpt("-rpcuser=<user>", _("Username for JSON-RPC connections"));
509 strUsage += HelpMessageOpt("-rpcpassword=<pw>", _("Password for JSON-RPC connections"));
510 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. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times"));
511 strUsage += HelpMessageOpt("-rpcport=<port>", strprintf(_("Listen for JSON-RPC connections on <port> (default: %u or testnet: %u)"), defaultBaseParams->RPCPort(), testnetBaseParams->RPCPort()));
512 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"));
513 strUsage += HelpMessageOpt("-rpcserialversion", strprintf(_("Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d)"), DEFAULT_RPC_SERIALIZE_VERSION));
514 strUsage += HelpMessageOpt("-rpcthreads=<n>", strprintf(_("Set the number of threads to service RPC calls (default: %d)"), DEFAULT_HTTP_THREADS));
515 if (showDebug) {
516 strUsage += HelpMessageOpt("-rpcworkqueue=<n>", strprintf("Set the depth of the work queue to service RPC calls (default: %d)", DEFAULT_HTTP_WORKQUEUE));
517 strUsage += HelpMessageOpt("-rpcservertimeout=<n>", strprintf("Timeout during HTTP requests (default: %d)", DEFAULT_HTTP_SERVER_TIMEOUT));
520 return strUsage;
523 std::string LicenseInfo()
525 const std::string URL_SOURCE_CODE = "<https://github.com/bitcoin/bitcoin>";
526 const std::string URL_WEBSITE = "<https://bitcoincore.org>";
528 return CopyrightHolders(strprintf(_("Copyright (C) %i-%i"), 2009, COPYRIGHT_YEAR) + " ") + "\n" +
529 "\n" +
530 strprintf(_("Please contribute if you find %s useful. "
531 "Visit %s for further information about the software."),
532 PACKAGE_NAME, URL_WEBSITE) +
533 "\n" +
534 strprintf(_("The source code is available from %s."),
535 URL_SOURCE_CODE) +
536 "\n" +
537 "\n" +
538 _("This is experimental software.") + "\n" +
539 strprintf(_("Distributed under the MIT software license, see the accompanying file %s or %s"), "COPYING", "<https://opensource.org/licenses/MIT>") + "\n" +
540 "\n" +
541 strprintf(_("This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard."), "<https://www.openssl.org>") +
542 "\n";
545 static void BlockNotifyCallback(bool initialSync, const CBlockIndex *pBlockIndex)
547 if (initialSync || !pBlockIndex)
548 return;
550 std::string strCmd = GetArg("-blocknotify", "");
552 boost::replace_all(strCmd, "%s", pBlockIndex->GetBlockHash().GetHex());
553 boost::thread t(runCommand, strCmd); // thread runs free
556 static bool fHaveGenesis = false;
557 static boost::mutex cs_GenesisWait;
558 static CConditionVariable condvar_GenesisWait;
560 static void BlockNotifyGenesisWait(bool, const CBlockIndex *pBlockIndex)
562 if (pBlockIndex != NULL) {
564 boost::unique_lock<boost::mutex> lock_GenesisWait(cs_GenesisWait);
565 fHaveGenesis = true;
567 condvar_GenesisWait.notify_all();
571 struct CImportingNow
573 CImportingNow() {
574 assert(fImporting == false);
575 fImporting = true;
578 ~CImportingNow() {
579 assert(fImporting == true);
580 fImporting = false;
585 // If we're using -prune with -reindex, then delete block files that will be ignored by the
586 // reindex. Since reindexing works by starting at block file 0 and looping until a blockfile
587 // is missing, do the same here to delete any later block files after a gap. Also delete all
588 // rev files since they'll be rewritten by the reindex anyway. This ensures that vinfoBlockFile
589 // is in sync with what's actually on disk by the time we start downloading, so that pruning
590 // works correctly.
591 void CleanupBlockRevFiles()
593 std::map<std::string, fs::path> mapBlockFiles;
595 // Glob all blk?????.dat and rev?????.dat files from the blocks directory.
596 // Remove the rev files immediately and insert the blk file paths into an
597 // ordered map keyed by block file index.
598 LogPrintf("Removing unusable blk?????.dat and rev?????.dat files for -reindex with -prune\n");
599 fs::path blocksdir = GetDataDir() / "blocks";
600 for (fs::directory_iterator it(blocksdir); it != fs::directory_iterator(); it++) {
601 if (is_regular_file(*it) &&
602 it->path().filename().string().length() == 12 &&
603 it->path().filename().string().substr(8,4) == ".dat")
605 if (it->path().filename().string().substr(0,3) == "blk")
606 mapBlockFiles[it->path().filename().string().substr(3,5)] = it->path();
607 else if (it->path().filename().string().substr(0,3) == "rev")
608 remove(it->path());
612 // Remove all block files that aren't part of a contiguous set starting at
613 // zero by walking the ordered map (keys are block file indices) by
614 // keeping a separate counter. Once we hit a gap (or if 0 doesn't exist)
615 // start removing block files.
616 int nContigCounter = 0;
617 BOOST_FOREACH(const PAIRTYPE(std::string, fs::path)& item, mapBlockFiles) {
618 if (atoi(item.first) == nContigCounter) {
619 nContigCounter++;
620 continue;
622 remove(item.second);
626 void ThreadImport(std::vector<fs::path> vImportFiles)
628 const CChainParams& chainparams = Params();
629 RenameThread("bitcoin-loadblk");
632 CImportingNow imp;
634 // -reindex
635 if (fReindex) {
636 int nFile = 0;
637 while (true) {
638 CDiskBlockPos pos(nFile, 0);
639 if (!fs::exists(GetBlockPosFilename(pos, "blk")))
640 break; // No block files left to reindex
641 FILE *file = OpenBlockFile(pos, true);
642 if (!file)
643 break; // This error is logged in OpenBlockFile
644 LogPrintf("Reindexing block file blk%05u.dat...\n", (unsigned int)nFile);
645 LoadExternalBlockFile(chainparams, file, &pos);
646 nFile++;
648 pblocktree->WriteReindexing(false);
649 fReindex = false;
650 LogPrintf("Reindexing finished\n");
651 // To avoid ending up in a situation without genesis block, re-try initializing (no-op if reindexing worked):
652 InitBlockIndex(chainparams);
655 // hardcoded $DATADIR/bootstrap.dat
656 fs::path pathBootstrap = GetDataDir() / "bootstrap.dat";
657 if (fs::exists(pathBootstrap)) {
658 FILE *file = fsbridge::fopen(pathBootstrap, "rb");
659 if (file) {
660 fs::path pathBootstrapOld = GetDataDir() / "bootstrap.dat.old";
661 LogPrintf("Importing bootstrap.dat...\n");
662 LoadExternalBlockFile(chainparams, file);
663 RenameOver(pathBootstrap, pathBootstrapOld);
664 } else {
665 LogPrintf("Warning: Could not open bootstrap file %s\n", pathBootstrap.string());
669 // -loadblock=
670 BOOST_FOREACH(const fs::path& path, vImportFiles) {
671 FILE *file = fsbridge::fopen(path, "rb");
672 if (file) {
673 LogPrintf("Importing blocks file %s...\n", path.string());
674 LoadExternalBlockFile(chainparams, file);
675 } else {
676 LogPrintf("Warning: Could not open blocks file %s\n", path.string());
680 // scan for better chains in the block chain database, that are not yet connected in the active best chain
681 CValidationState state;
682 if (!ActivateBestChain(state, chainparams)) {
683 LogPrintf("Failed to connect best block");
684 StartShutdown();
687 if (GetBoolArg("-stopafterblockimport", DEFAULT_STOPAFTERBLOCKIMPORT)) {
688 LogPrintf("Stopping after block import\n");
689 StartShutdown();
691 } // End scope of CImportingNow
692 if (GetArg("-persistmempool", DEFAULT_PERSIST_MEMPOOL)) {
693 LoadMempool();
694 fDumpMempoolLater = !fRequestShutdown;
698 /** Sanity checks
699 * Ensure that Bitcoin is running in a usable environment with all
700 * necessary library support.
702 bool InitSanityCheck(void)
704 if(!ECC_InitSanityCheck()) {
705 InitError("Elliptic curve cryptography sanity check failure. Aborting.");
706 return false;
709 if (!glibc_sanity_test() || !glibcxx_sanity_test())
710 return false;
712 if (!Random_SanityCheck()) {
713 InitError("OS cryptographic RNG sanity check failure. Aborting.");
714 return false;
717 return true;
720 bool AppInitServers(boost::thread_group& threadGroup)
722 RPCServer::OnStarted(&OnRPCStarted);
723 RPCServer::OnStopped(&OnRPCStopped);
724 RPCServer::OnPreCommand(&OnRPCPreCommand);
725 if (!InitHTTPServer())
726 return false;
727 if (!StartRPC())
728 return false;
729 if (!StartHTTPRPC())
730 return false;
731 if (GetBoolArg("-rest", DEFAULT_REST_ENABLE) && !StartREST())
732 return false;
733 if (!StartHTTPServer())
734 return false;
735 return true;
738 // Parameter interaction based on rules
739 void InitParameterInteraction()
741 // when specifying an explicit binding address, you want to listen on it
742 // even when -connect or -proxy is specified
743 if (IsArgSet("-bind")) {
744 if (SoftSetBoolArg("-listen", true))
745 LogPrintf("%s: parameter interaction: -bind set -> setting -listen=1\n", __func__);
747 if (IsArgSet("-whitebind")) {
748 if (SoftSetBoolArg("-listen", true))
749 LogPrintf("%s: parameter interaction: -whitebind set -> setting -listen=1\n", __func__);
752 if (gArgs.IsArgSet("-connect")) {
753 // when only connecting to trusted nodes, do not seed via DNS, or listen by default
754 if (SoftSetBoolArg("-dnsseed", false))
755 LogPrintf("%s: parameter interaction: -connect set -> setting -dnsseed=0\n", __func__);
756 if (SoftSetBoolArg("-listen", false))
757 LogPrintf("%s: parameter interaction: -connect set -> setting -listen=0\n", __func__);
760 if (IsArgSet("-proxy")) {
761 // to protect privacy, do not listen by default if a default proxy server is specified
762 if (SoftSetBoolArg("-listen", false))
763 LogPrintf("%s: parameter interaction: -proxy set -> setting -listen=0\n", __func__);
764 // to protect privacy, do not use UPNP when a proxy is set. The user may still specify -listen=1
765 // to listen locally, so don't rely on this happening through -listen below.
766 if (SoftSetBoolArg("-upnp", false))
767 LogPrintf("%s: parameter interaction: -proxy set -> setting -upnp=0\n", __func__);
768 // to protect privacy, do not discover addresses by default
769 if (SoftSetBoolArg("-discover", false))
770 LogPrintf("%s: parameter interaction: -proxy set -> setting -discover=0\n", __func__);
773 if (!GetBoolArg("-listen", DEFAULT_LISTEN)) {
774 // do not map ports or try to retrieve public IP when not listening (pointless)
775 if (SoftSetBoolArg("-upnp", false))
776 LogPrintf("%s: parameter interaction: -listen=0 -> setting -upnp=0\n", __func__);
777 if (SoftSetBoolArg("-discover", false))
778 LogPrintf("%s: parameter interaction: -listen=0 -> setting -discover=0\n", __func__);
779 if (SoftSetBoolArg("-listenonion", false))
780 LogPrintf("%s: parameter interaction: -listen=0 -> setting -listenonion=0\n", __func__);
783 if (IsArgSet("-externalip")) {
784 // if an explicit public IP is specified, do not try to find others
785 if (SoftSetBoolArg("-discover", false))
786 LogPrintf("%s: parameter interaction: -externalip set -> setting -discover=0\n", __func__);
789 // disable whitelistrelay in blocksonly mode
790 if (GetBoolArg("-blocksonly", DEFAULT_BLOCKSONLY)) {
791 if (SoftSetBoolArg("-whitelistrelay", false))
792 LogPrintf("%s: parameter interaction: -blocksonly=1 -> setting -whitelistrelay=0\n", __func__);
795 // Forcing relay from whitelisted hosts implies we will accept relays from them in the first place.
796 if (GetBoolArg("-whitelistforcerelay", DEFAULT_WHITELISTFORCERELAY)) {
797 if (SoftSetBoolArg("-whitelistrelay", true))
798 LogPrintf("%s: parameter interaction: -whitelistforcerelay=1 -> setting -whitelistrelay=1\n", __func__);
802 static std::string ResolveErrMsg(const char * const optname, const std::string& strBind)
804 return strprintf(_("Cannot resolve -%s address: '%s'"), optname, strBind);
807 void InitLogging()
809 fPrintToConsole = GetBoolArg("-printtoconsole", false);
810 fLogTimestamps = GetBoolArg("-logtimestamps", DEFAULT_LOGTIMESTAMPS);
811 fLogTimeMicros = GetBoolArg("-logtimemicros", DEFAULT_LOGTIMEMICROS);
812 fLogIPs = GetBoolArg("-logips", DEFAULT_LOGIPS);
814 LogPrintf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
815 LogPrintf("Bitcoin version %s\n", FormatFullVersion());
818 namespace { // Variables internal to initialization process only
820 ServiceFlags nRelevantServices = NODE_NETWORK;
821 int nMaxConnections;
822 int nUserMaxConnections;
823 int nFD;
824 ServiceFlags nLocalServices = NODE_NETWORK;
828 [[noreturn]] static void new_handler_terminate()
830 // Rather than throwing std::bad-alloc if allocation fails, terminate
831 // immediately to (try to) avoid chain corruption.
832 // Since LogPrintf may itself allocate memory, set the handler directly
833 // to terminate first.
834 std::set_new_handler(std::terminate);
835 LogPrintf("Error: Out of memory. Terminating.\n");
837 // The log was successful, terminate now.
838 std::terminate();
841 bool AppInitBasicSetup()
843 // ********************************************************* Step 1: setup
844 #ifdef _MSC_VER
845 // Turn off Microsoft heap dump noise
846 _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
847 _CrtSetReportFile(_CRT_WARN, CreateFileA("NUL", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0));
848 #endif
849 #if _MSC_VER >= 1400
850 // Disable confusing "helpful" text message on abort, Ctrl-C
851 _set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT);
852 #endif
853 #ifdef WIN32
854 // Enable Data Execution Prevention (DEP)
855 // Minimum supported OS versions: WinXP SP3, WinVista >= SP1, Win Server 2008
856 // A failure is non-critical and needs no further attention!
857 #ifndef PROCESS_DEP_ENABLE
858 // We define this here, because GCCs winbase.h limits this to _WIN32_WINNT >= 0x0601 (Windows 7),
859 // which is not correct. Can be removed, when GCCs winbase.h is fixed!
860 #define PROCESS_DEP_ENABLE 0x00000001
861 #endif
862 typedef BOOL (WINAPI *PSETPROCDEPPOL)(DWORD);
863 PSETPROCDEPPOL setProcDEPPol = (PSETPROCDEPPOL)GetProcAddress(GetModuleHandleA("Kernel32.dll"), "SetProcessDEPPolicy");
864 if (setProcDEPPol != NULL) setProcDEPPol(PROCESS_DEP_ENABLE);
865 #endif
867 if (!SetupNetworking())
868 return InitError("Initializing networking failed");
870 #ifndef WIN32
871 if (!GetBoolArg("-sysperms", false)) {
872 umask(077);
875 // Clean shutdown on SIGTERM
876 registerSignalHandler(SIGTERM, HandleSIGTERM);
877 registerSignalHandler(SIGINT, HandleSIGTERM);
879 // Reopen debug.log on SIGHUP
880 registerSignalHandler(SIGHUP, HandleSIGHUP);
882 // Ignore SIGPIPE, otherwise it will bring the daemon down if the client closes unexpectedly
883 signal(SIGPIPE, SIG_IGN);
884 #endif
886 std::set_new_handler(new_handler_terminate);
888 return true;
891 bool AppInitParameterInteraction()
893 const CChainParams& chainparams = Params();
894 // ********************************************************* Step 2: parameter interactions
896 // also see: InitParameterInteraction()
898 // if using block pruning, then disallow txindex
899 if (GetArg("-prune", 0)) {
900 if (GetBoolArg("-txindex", DEFAULT_TXINDEX))
901 return InitError(_("Prune mode is incompatible with -txindex."));
904 // Make sure enough file descriptors are available
905 int nBind = std::max(
906 (gArgs.IsArgSet("-bind") ? gArgs.GetArgs("-bind").size() : 0) +
907 (gArgs.IsArgSet("-whitebind") ? gArgs.GetArgs("-whitebind").size() : 0), size_t(1));
908 nUserMaxConnections = GetArg("-maxconnections", DEFAULT_MAX_PEER_CONNECTIONS);
909 nMaxConnections = std::max(nUserMaxConnections, 0);
911 // Trim requested connection counts, to fit into system limitations
912 nMaxConnections = std::max(std::min(nMaxConnections, (int)(FD_SETSIZE - nBind - MIN_CORE_FILEDESCRIPTORS - MAX_ADDNODE_CONNECTIONS)), 0);
913 nFD = RaiseFileDescriptorLimit(nMaxConnections + MIN_CORE_FILEDESCRIPTORS + MAX_ADDNODE_CONNECTIONS);
914 if (nFD < MIN_CORE_FILEDESCRIPTORS)
915 return InitError(_("Not enough file descriptors available."));
916 nMaxConnections = std::min(nFD - MIN_CORE_FILEDESCRIPTORS - MAX_ADDNODE_CONNECTIONS, nMaxConnections);
918 if (nMaxConnections < nUserMaxConnections)
919 InitWarning(strprintf(_("Reducing -maxconnections from %d to %d, because of system limitations."), nUserMaxConnections, nMaxConnections));
921 // ********************************************************* Step 3: parameter-to-internal-flags
922 if (gArgs.IsArgSet("-debug")) {
923 // Special-case: if -debug=0/-nodebug is set, turn off debugging messages
924 const std::vector<std::string> categories = gArgs.GetArgs("-debug");
926 if (find(categories.begin(), categories.end(), std::string("0")) == categories.end()) {
927 for (const auto& cat : categories) {
928 uint32_t flag = 0;
929 if (!GetLogCategory(&flag, &cat)) {
930 InitWarning(strprintf(_("Unsupported logging category %s=%s."), "-debug", cat));
931 continue;
933 logCategories |= flag;
938 // Now remove the logging categories which were explicitly excluded
939 if (gArgs.IsArgSet("-debugexclude")) {
940 for (const std::string& cat : gArgs.GetArgs("-debugexclude")) {
941 uint32_t flag = 0;
942 if (!GetLogCategory(&flag, &cat)) {
943 InitWarning(strprintf(_("Unsupported logging category %s=%s."), "-debugexclude", cat));
944 continue;
946 logCategories &= ~flag;
950 // Check for -debugnet
951 if (GetBoolArg("-debugnet", false))
952 InitWarning(_("Unsupported argument -debugnet ignored, use -debug=net."));
953 // Check for -socks - as this is a privacy risk to continue, exit here
954 if (IsArgSet("-socks"))
955 return InitError(_("Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported."));
956 // Check for -tor - as this is a privacy risk to continue, exit here
957 if (GetBoolArg("-tor", false))
958 return InitError(_("Unsupported argument -tor found, use -onion."));
960 if (GetBoolArg("-benchmark", false))
961 InitWarning(_("Unsupported argument -benchmark ignored, use -debug=bench."));
963 if (GetBoolArg("-whitelistalwaysrelay", false))
964 InitWarning(_("Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay."));
966 if (IsArgSet("-blockminsize"))
967 InitWarning("Unsupported argument -blockminsize ignored.");
969 // Checkmempool and checkblockindex default to true in regtest mode
970 int ratio = std::min<int>(std::max<int>(GetArg("-checkmempool", chainparams.DefaultConsistencyChecks() ? 1 : 0), 0), 1000000);
971 if (ratio != 0) {
972 mempool.setSanityCheck(1.0 / ratio);
974 fCheckBlockIndex = GetBoolArg("-checkblockindex", chainparams.DefaultConsistencyChecks());
975 fCheckpointsEnabled = GetBoolArg("-checkpoints", DEFAULT_CHECKPOINTS_ENABLED);
977 hashAssumeValid = uint256S(GetArg("-assumevalid", chainparams.GetConsensus().defaultAssumeValid.GetHex()));
978 if (!hashAssumeValid.IsNull())
979 LogPrintf("Assuming ancestors of block %s have valid signatures.\n", hashAssumeValid.GetHex());
980 else
981 LogPrintf("Validating signatures for all blocks.\n");
983 // mempool limits
984 int64_t nMempoolSizeMax = GetArg("-maxmempool", DEFAULT_MAX_MEMPOOL_SIZE) * 1000000;
985 int64_t nMempoolSizeMin = GetArg("-limitdescendantsize", DEFAULT_DESCENDANT_SIZE_LIMIT) * 1000 * 40;
986 if (nMempoolSizeMax < 0 || nMempoolSizeMax < nMempoolSizeMin)
987 return InitError(strprintf(_("-maxmempool must be at least %d MB"), std::ceil(nMempoolSizeMin / 1000000.0)));
988 // incremental relay fee sets the minimum feerate increase necessary for BIP 125 replacement in the mempool
989 // and the amount the mempool min fee increases above the feerate of txs evicted due to mempool limiting.
990 if (IsArgSet("-incrementalrelayfee"))
992 CAmount n = 0;
993 if (!ParseMoney(GetArg("-incrementalrelayfee", ""), n))
994 return InitError(AmountErrMsg("incrementalrelayfee", GetArg("-incrementalrelayfee", "")));
995 incrementalRelayFee = CFeeRate(n);
998 // -par=0 means autodetect, but nScriptCheckThreads==0 means no concurrency
999 nScriptCheckThreads = GetArg("-par", DEFAULT_SCRIPTCHECK_THREADS);
1000 if (nScriptCheckThreads <= 0)
1001 nScriptCheckThreads += GetNumCores();
1002 if (nScriptCheckThreads <= 1)
1003 nScriptCheckThreads = 0;
1004 else if (nScriptCheckThreads > MAX_SCRIPTCHECK_THREADS)
1005 nScriptCheckThreads = MAX_SCRIPTCHECK_THREADS;
1007 // block pruning; get the amount of disk space (in MiB) to allot for block & undo files
1008 int64_t nPruneArg = GetArg("-prune", 0);
1009 if (nPruneArg < 0) {
1010 return InitError(_("Prune cannot be configured with a negative value."));
1012 nPruneTarget = (uint64_t) nPruneArg * 1024 * 1024;
1013 if (nPruneArg == 1) { // manual pruning: -prune=1
1014 LogPrintf("Block pruning enabled. Use RPC call pruneblockchain(height) to manually prune block and undo files.\n");
1015 nPruneTarget = std::numeric_limits<uint64_t>::max();
1016 fPruneMode = true;
1017 } else if (nPruneTarget) {
1018 if (nPruneTarget < MIN_DISK_SPACE_FOR_BLOCK_FILES) {
1019 return InitError(strprintf(_("Prune configured below the minimum of %d MiB. Please use a higher number."), MIN_DISK_SPACE_FOR_BLOCK_FILES / 1024 / 1024));
1021 LogPrintf("Prune configured to target %uMiB on disk for block and undo files.\n", nPruneTarget / 1024 / 1024);
1022 fPruneMode = true;
1025 RegisterAllCoreRPCCommands(tableRPC);
1026 #ifdef ENABLE_WALLET
1027 RegisterWalletRPCCommands(tableRPC);
1028 #endif
1030 nConnectTimeout = GetArg("-timeout", DEFAULT_CONNECT_TIMEOUT);
1031 if (nConnectTimeout <= 0)
1032 nConnectTimeout = DEFAULT_CONNECT_TIMEOUT;
1034 // Fee-per-kilobyte amount required for mempool acceptance and relay
1035 // If you are mining, be careful setting this:
1036 // if you set it to zero then
1037 // a transaction spammer can cheaply fill blocks using
1038 // 0-fee transactions. It should be set above the real
1039 // cost to you of processing a transaction.
1040 if (IsArgSet("-minrelaytxfee"))
1042 CAmount n = 0;
1043 if (!ParseMoney(GetArg("-minrelaytxfee", ""), n)) {
1044 return InitError(AmountErrMsg("minrelaytxfee", GetArg("-minrelaytxfee", "")));
1046 // High fee check is done afterward in CWallet::ParameterInteraction()
1047 ::minRelayTxFee = CFeeRate(n);
1048 } else if (incrementalRelayFee > ::minRelayTxFee) {
1049 // Allow only setting incrementalRelayFee to control both
1050 ::minRelayTxFee = incrementalRelayFee;
1051 LogPrintf("Increasing minrelaytxfee to %s to match incrementalrelayfee\n",::minRelayTxFee.ToString());
1054 // Sanity check argument for min fee for including tx in block
1055 // TODO: Harmonize which arguments need sanity checking and where that happens
1056 if (IsArgSet("-blockmintxfee"))
1058 CAmount n = 0;
1059 if (!ParseMoney(GetArg("-blockmintxfee", ""), n))
1060 return InitError(AmountErrMsg("blockmintxfee", GetArg("-blockmintxfee", "")));
1063 // Feerate used to define dust. Shouldn't be changed lightly as old
1064 // implementations may inadvertently create non-standard transactions
1065 if (IsArgSet("-dustrelayfee"))
1067 CAmount n = 0;
1068 if (!ParseMoney(GetArg("-dustrelayfee", ""), n) || 0 == n)
1069 return InitError(AmountErrMsg("dustrelayfee", GetArg("-dustrelayfee", "")));
1070 dustRelayFee = CFeeRate(n);
1073 fRequireStandard = !GetBoolArg("-acceptnonstdtxn", !chainparams.RequireStandard());
1074 if (chainparams.RequireStandard() && !fRequireStandard)
1075 return InitError(strprintf("acceptnonstdtxn is not currently supported for %s chain", chainparams.NetworkIDString()));
1076 nBytesPerSigOp = GetArg("-bytespersigop", nBytesPerSigOp);
1078 #ifdef ENABLE_WALLET
1079 if (!CWallet::ParameterInteraction())
1080 return false;
1081 #endif
1083 fIsBareMultisigStd = GetBoolArg("-permitbaremultisig", DEFAULT_PERMIT_BAREMULTISIG);
1084 fAcceptDatacarrier = GetBoolArg("-datacarrier", DEFAULT_ACCEPT_DATACARRIER);
1085 nMaxDatacarrierBytes = GetArg("-datacarriersize", nMaxDatacarrierBytes);
1087 // Option to startup with mocktime set (used for regression testing):
1088 SetMockTime(GetArg("-mocktime", 0)); // SetMockTime(0) is a no-op
1090 if (GetBoolArg("-peerbloomfilters", DEFAULT_PEERBLOOMFILTERS))
1091 nLocalServices = ServiceFlags(nLocalServices | NODE_BLOOM);
1093 if (GetArg("-rpcserialversion", DEFAULT_RPC_SERIALIZE_VERSION) < 0)
1094 return InitError("rpcserialversion must be non-negative.");
1096 if (GetArg("-rpcserialversion", DEFAULT_RPC_SERIALIZE_VERSION) > 1)
1097 return InitError("unknown rpcserialversion requested.");
1099 nMaxTipAge = GetArg("-maxtipage", DEFAULT_MAX_TIP_AGE);
1101 fEnableReplacement = GetBoolArg("-mempoolreplacement", DEFAULT_ENABLE_REPLACEMENT);
1102 if ((!fEnableReplacement) && IsArgSet("-mempoolreplacement")) {
1103 // Minimal effort at forwards compatibility
1104 std::string strReplacementModeList = GetArg("-mempoolreplacement", ""); // default is impossible
1105 std::vector<std::string> vstrReplacementModes;
1106 boost::split(vstrReplacementModes, strReplacementModeList, boost::is_any_of(","));
1107 fEnableReplacement = (std::find(vstrReplacementModes.begin(), vstrReplacementModes.end(), "fee") != vstrReplacementModes.end());
1110 if (gArgs.IsArgSet("-vbparams")) {
1111 // Allow overriding version bits parameters for testing
1112 if (!chainparams.MineBlocksOnDemand()) {
1113 return InitError("Version bits parameters may only be overridden on regtest.");
1115 for (const std::string& strDeployment : gArgs.GetArgs("-vbparams")) {
1116 std::vector<std::string> vDeploymentParams;
1117 boost::split(vDeploymentParams, strDeployment, boost::is_any_of(":"));
1118 if (vDeploymentParams.size() != 3) {
1119 return InitError("Version bits parameters malformed, expecting deployment:start:end");
1121 int64_t nStartTime, nTimeout;
1122 if (!ParseInt64(vDeploymentParams[1], &nStartTime)) {
1123 return InitError(strprintf("Invalid nStartTime (%s)", vDeploymentParams[1]));
1125 if (!ParseInt64(vDeploymentParams[2], &nTimeout)) {
1126 return InitError(strprintf("Invalid nTimeout (%s)", vDeploymentParams[2]));
1128 bool found = false;
1129 for (int j=0; j<(int)Consensus::MAX_VERSION_BITS_DEPLOYMENTS; ++j)
1131 if (vDeploymentParams[0].compare(VersionBitsDeploymentInfo[j].name) == 0) {
1132 UpdateVersionBitsParameters(Consensus::DeploymentPos(j), nStartTime, nTimeout);
1133 found = true;
1134 LogPrintf("Setting version bits activation parameters for %s to start=%ld, timeout=%ld\n", vDeploymentParams[0], nStartTime, nTimeout);
1135 break;
1138 if (!found) {
1139 return InitError(strprintf("Invalid deployment (%s)", vDeploymentParams[0]));
1143 return true;
1146 static bool LockDataDirectory(bool probeOnly)
1148 std::string strDataDir = GetDataDir().string();
1150 // Make sure only a single Bitcoin process is using the data directory.
1151 fs::path pathLockFile = GetDataDir() / ".lock";
1152 FILE* file = fsbridge::fopen(pathLockFile, "a"); // empty lock file; created if it doesn't exist.
1153 if (file) fclose(file);
1155 try {
1156 static boost::interprocess::file_lock lock(pathLockFile.string().c_str());
1157 if (!lock.try_lock()) {
1158 return InitError(strprintf(_("Cannot obtain a lock on data directory %s. %s is probably already running."), strDataDir, _(PACKAGE_NAME)));
1160 if (probeOnly) {
1161 lock.unlock();
1163 } catch(const boost::interprocess::interprocess_exception& e) {
1164 return InitError(strprintf(_("Cannot obtain a lock on data directory %s. %s is probably already running.") + " %s.", strDataDir, _(PACKAGE_NAME), e.what()));
1166 return true;
1169 bool AppInitSanityChecks()
1171 // ********************************************************* Step 4: sanity checks
1173 // Initialize elliptic curve code
1174 ECC_Start();
1175 globalVerifyHandle.reset(new ECCVerifyHandle());
1177 // Sanity check
1178 if (!InitSanityCheck())
1179 return InitError(strprintf(_("Initialization sanity check failed. %s is shutting down."), _(PACKAGE_NAME)));
1181 // Probe the data directory lock to give an early error message, if possible
1182 return LockDataDirectory(true);
1185 bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
1187 const CChainParams& chainparams = Params();
1188 // ********************************************************* Step 4a: application initialization
1189 // After daemonization get the data directory lock again and hold on to it until exit
1190 // This creates a slight window for a race condition to happen, however this condition is harmless: it
1191 // will at most make us exit without printing a message to console.
1192 if (!LockDataDirectory(false)) {
1193 // Detailed error printed inside LockDataDirectory
1194 return false;
1197 #ifndef WIN32
1198 CreatePidFile(GetPidFile(), getpid());
1199 #endif
1200 if (GetBoolArg("-shrinkdebugfile", logCategories == BCLog::NONE)) {
1201 // Do this first since it both loads a bunch of debug.log into memory,
1202 // and because this needs to happen before any other debug.log printing
1203 ShrinkDebugFile();
1206 if (fPrintToDebugLog)
1207 OpenDebugLog();
1209 if (!fLogTimestamps)
1210 LogPrintf("Startup time: %s\n", DateTimeStrFormat("%Y-%m-%d %H:%M:%S", GetTime()));
1211 LogPrintf("Default data directory %s\n", GetDefaultDataDir().string());
1212 LogPrintf("Using data directory %s\n", GetDataDir().string());
1213 LogPrintf("Using config file %s\n", GetConfigFile(GetArg("-conf", BITCOIN_CONF_FILENAME)).string());
1214 LogPrintf("Using at most %i automatic connections (%i file descriptors available)\n", nMaxConnections, nFD);
1216 InitSignatureCache();
1218 LogPrintf("Using %u threads for script verification\n", nScriptCheckThreads);
1219 if (nScriptCheckThreads) {
1220 for (int i=0; i<nScriptCheckThreads-1; i++)
1221 threadGroup.create_thread(&ThreadScriptCheck);
1224 // Start the lightweight task scheduler thread
1225 CScheduler::Function serviceLoop = boost::bind(&CScheduler::serviceQueue, &scheduler);
1226 threadGroup.create_thread(boost::bind(&TraceThread<CScheduler::Function>, "scheduler", serviceLoop));
1228 /* Start the RPC server already. It will be started in "warmup" mode
1229 * and not really process calls already (but it will signify connections
1230 * that the server is there and will be ready later). Warmup mode will
1231 * be disabled when initialisation is finished.
1233 if (GetBoolArg("-server", false))
1235 uiInterface.InitMessage.connect(SetRPCWarmupStatus);
1236 if (!AppInitServers(threadGroup))
1237 return InitError(_("Unable to start HTTP server. See debug log for details."));
1240 int64_t nStart;
1242 // ********************************************************* Step 5: verify wallet database integrity
1243 #ifdef ENABLE_WALLET
1244 if (!CWallet::Verify())
1245 return false;
1246 #endif
1247 // ********************************************************* Step 6: network initialization
1248 // Note that we absolutely cannot open any actual connections
1249 // until the very end ("start node") as the UTXO/block state
1250 // is not yet setup and may end up being set up twice if we
1251 // need to reindex later.
1253 assert(!g_connman);
1254 g_connman = std::unique_ptr<CConnman>(new CConnman(GetRand(std::numeric_limits<uint64_t>::max()), GetRand(std::numeric_limits<uint64_t>::max())));
1255 CConnman& connman = *g_connman;
1257 peerLogic.reset(new PeerLogicValidation(&connman));
1258 RegisterValidationInterface(peerLogic.get());
1259 RegisterNodeSignals(GetNodeSignals());
1261 // sanitize comments per BIP-0014, format user agent and check total size
1262 std::vector<std::string> uacomments;
1263 if (gArgs.IsArgSet("-uacomment")) {
1264 BOOST_FOREACH(std::string cmt, gArgs.GetArgs("-uacomment"))
1266 if (cmt != SanitizeString(cmt, SAFE_CHARS_UA_COMMENT))
1267 return InitError(strprintf(_("User Agent comment (%s) contains unsafe characters."), cmt));
1268 uacomments.push_back(cmt);
1271 strSubVersion = FormatSubVersion(CLIENT_NAME, CLIENT_VERSION, uacomments);
1272 if (strSubVersion.size() > MAX_SUBVERSION_LENGTH) {
1273 return InitError(strprintf(_("Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments."),
1274 strSubVersion.size(), MAX_SUBVERSION_LENGTH));
1277 if (gArgs.IsArgSet("-onlynet")) {
1278 std::set<enum Network> nets;
1279 BOOST_FOREACH(const std::string& snet, gArgs.GetArgs("-onlynet")) {
1280 enum Network net = ParseNetwork(snet);
1281 if (net == NET_UNROUTABLE)
1282 return InitError(strprintf(_("Unknown network specified in -onlynet: '%s'"), snet));
1283 nets.insert(net);
1285 for (int n = 0; n < NET_MAX; n++) {
1286 enum Network net = (enum Network)n;
1287 if (!nets.count(net))
1288 SetLimited(net);
1292 if (gArgs.IsArgSet("-whitelist")) {
1293 BOOST_FOREACH(const std::string& net, gArgs.GetArgs("-whitelist")) {
1294 CSubNet subnet;
1295 LookupSubNet(net.c_str(), subnet);
1296 if (!subnet.IsValid())
1297 return InitError(strprintf(_("Invalid netmask specified in -whitelist: '%s'"), net));
1298 connman.AddWhitelistedRange(subnet);
1302 // Check for host lookup allowed before parsing any network related parameters
1303 fNameLookup = GetBoolArg("-dns", DEFAULT_NAME_LOOKUP);
1305 bool proxyRandomize = GetBoolArg("-proxyrandomize", DEFAULT_PROXYRANDOMIZE);
1306 // -proxy sets a proxy for all outgoing network traffic
1307 // -noproxy (or -proxy=0) as well as the empty string can be used to not set a proxy, this is the default
1308 std::string proxyArg = GetArg("-proxy", "");
1309 SetLimited(NET_TOR);
1310 if (proxyArg != "" && proxyArg != "0") {
1311 CService proxyAddr;
1312 if (!Lookup(proxyArg.c_str(), proxyAddr, 9050, fNameLookup)) {
1313 return InitError(strprintf(_("Invalid -proxy address or hostname: '%s'"), proxyArg));
1316 proxyType addrProxy = proxyType(proxyAddr, proxyRandomize);
1317 if (!addrProxy.IsValid())
1318 return InitError(strprintf(_("Invalid -proxy address or hostname: '%s'"), proxyArg));
1320 SetProxy(NET_IPV4, addrProxy);
1321 SetProxy(NET_IPV6, addrProxy);
1322 SetProxy(NET_TOR, addrProxy);
1323 SetNameProxy(addrProxy);
1324 SetLimited(NET_TOR, false); // by default, -proxy sets onion as reachable, unless -noonion later
1327 // -onion can be used to set only a proxy for .onion, or override normal proxy for .onion addresses
1328 // -noonion (or -onion=0) disables connecting to .onion entirely
1329 // An empty string is used to not override the onion proxy (in which case it defaults to -proxy set above, or none)
1330 std::string onionArg = GetArg("-onion", "");
1331 if (onionArg != "") {
1332 if (onionArg == "0") { // Handle -noonion/-onion=0
1333 SetLimited(NET_TOR); // set onions as unreachable
1334 } else {
1335 CService onionProxy;
1336 if (!Lookup(onionArg.c_str(), onionProxy, 9050, fNameLookup)) {
1337 return InitError(strprintf(_("Invalid -onion address or hostname: '%s'"), onionArg));
1339 proxyType addrOnion = proxyType(onionProxy, proxyRandomize);
1340 if (!addrOnion.IsValid())
1341 return InitError(strprintf(_("Invalid -onion address or hostname: '%s'"), onionArg));
1342 SetProxy(NET_TOR, addrOnion);
1343 SetLimited(NET_TOR, false);
1347 // see Step 2: parameter interactions for more information about these
1348 fListen = GetBoolArg("-listen", DEFAULT_LISTEN);
1349 fDiscover = GetBoolArg("-discover", true);
1350 fRelayTxes = !GetBoolArg("-blocksonly", DEFAULT_BLOCKSONLY);
1352 if (fListen) {
1353 bool fBound = false;
1354 if (gArgs.IsArgSet("-bind")) {
1355 BOOST_FOREACH(const std::string& strBind, gArgs.GetArgs("-bind")) {
1356 CService addrBind;
1357 if (!Lookup(strBind.c_str(), addrBind, GetListenPort(), false))
1358 return InitError(ResolveErrMsg("bind", strBind));
1359 fBound |= Bind(connman, addrBind, (BF_EXPLICIT | BF_REPORT_ERROR));
1362 if (gArgs.IsArgSet("-whitebind")) {
1363 BOOST_FOREACH(const std::string& strBind, gArgs.GetArgs("-whitebind")) {
1364 CService addrBind;
1365 if (!Lookup(strBind.c_str(), addrBind, 0, false))
1366 return InitError(ResolveErrMsg("whitebind", strBind));
1367 if (addrBind.GetPort() == 0)
1368 return InitError(strprintf(_("Need to specify a port with -whitebind: '%s'"), strBind));
1369 fBound |= Bind(connman, addrBind, (BF_EXPLICIT | BF_REPORT_ERROR | BF_WHITELIST));
1372 if (!gArgs.IsArgSet("-bind") && !gArgs.IsArgSet("-whitebind")) {
1373 struct in_addr inaddr_any;
1374 inaddr_any.s_addr = INADDR_ANY;
1375 fBound |= Bind(connman, CService(in6addr_any, GetListenPort()), BF_NONE);
1376 fBound |= Bind(connman, CService(inaddr_any, GetListenPort()), !fBound ? BF_REPORT_ERROR : BF_NONE);
1378 if (!fBound)
1379 return InitError(_("Failed to listen on any port. Use -listen=0 if you want this."));
1382 if (gArgs.IsArgSet("-externalip")) {
1383 BOOST_FOREACH(const std::string& strAddr, gArgs.GetArgs("-externalip")) {
1384 CService addrLocal;
1385 if (Lookup(strAddr.c_str(), addrLocal, GetListenPort(), fNameLookup) && addrLocal.IsValid())
1386 AddLocal(addrLocal, LOCAL_MANUAL);
1387 else
1388 return InitError(ResolveErrMsg("externalip", strAddr));
1392 #if ENABLE_ZMQ
1393 pzmqNotificationInterface = CZMQNotificationInterface::Create();
1395 if (pzmqNotificationInterface) {
1396 RegisterValidationInterface(pzmqNotificationInterface);
1398 #endif
1399 uint64_t nMaxOutboundLimit = 0; //unlimited unless -maxuploadtarget is set
1400 uint64_t nMaxOutboundTimeframe = MAX_UPLOAD_TIMEFRAME;
1402 if (IsArgSet("-maxuploadtarget")) {
1403 nMaxOutboundLimit = GetArg("-maxuploadtarget", DEFAULT_MAX_UPLOAD_TARGET)*1024*1024;
1406 // ********************************************************* Step 7: load block chain
1408 fReindex = GetBoolArg("-reindex", false);
1409 bool fReindexChainState = GetBoolArg("-reindex-chainstate", false);
1411 fs::create_directories(GetDataDir() / "blocks");
1413 // cache size calculations
1414 int64_t nTotalCache = (GetArg("-dbcache", nDefaultDbCache) << 20);
1415 nTotalCache = std::max(nTotalCache, nMinDbCache << 20); // total cache cannot be less than nMinDbCache
1416 nTotalCache = std::min(nTotalCache, nMaxDbCache << 20); // total cache cannot be greater than nMaxDbcache
1417 int64_t nBlockTreeDBCache = nTotalCache / 8;
1418 nBlockTreeDBCache = std::min(nBlockTreeDBCache, (GetBoolArg("-txindex", DEFAULT_TXINDEX) ? nMaxBlockDBAndTxIndexCache : nMaxBlockDBCache) << 20);
1419 nTotalCache -= nBlockTreeDBCache;
1420 int64_t nCoinDBCache = std::min(nTotalCache / 2, (nTotalCache / 4) + (1 << 23)); // use 25%-50% of the remainder for disk cache
1421 nCoinDBCache = std::min(nCoinDBCache, nMaxCoinsDBCache << 20); // cap total coins db cache
1422 nTotalCache -= nCoinDBCache;
1423 nCoinCacheUsage = nTotalCache; // the rest goes to in-memory cache
1424 int64_t nMempoolSizeMax = GetArg("-maxmempool", DEFAULT_MAX_MEMPOOL_SIZE) * 1000000;
1425 LogPrintf("Cache configuration:\n");
1426 LogPrintf("* Using %.1fMiB for block index database\n", nBlockTreeDBCache * (1.0 / 1024 / 1024));
1427 LogPrintf("* Using %.1fMiB for chain state database\n", nCoinDBCache * (1.0 / 1024 / 1024));
1428 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));
1430 bool fLoaded = false;
1431 while (!fLoaded) {
1432 bool fReset = fReindex;
1433 std::string strLoadError;
1435 uiInterface.InitMessage(_("Loading block index..."));
1437 nStart = GetTimeMillis();
1438 do {
1439 try {
1440 UnloadBlockIndex();
1441 delete pcoinsTip;
1442 delete pcoinsdbview;
1443 delete pcoinscatcher;
1444 delete pblocktree;
1446 pblocktree = new CBlockTreeDB(nBlockTreeDBCache, false, fReindex);
1447 pcoinsdbview = new CCoinsViewDB(nCoinDBCache, false, fReindex || fReindexChainState);
1448 pcoinscatcher = new CCoinsViewErrorCatcher(pcoinsdbview);
1449 pcoinsTip = new CCoinsViewCache(pcoinscatcher);
1451 if (fReindex) {
1452 pblocktree->WriteReindexing(true);
1453 //If we're reindexing in prune mode, wipe away unusable block files and all undo data files
1454 if (fPruneMode)
1455 CleanupBlockRevFiles();
1456 } else {
1457 // If necessary, upgrade from older database format.
1458 if (!pcoinsdbview->Upgrade()) {
1459 strLoadError = _("Error upgrading chainstate database");
1460 break;
1464 if (!LoadBlockIndex(chainparams)) {
1465 strLoadError = _("Error loading block database");
1466 break;
1469 // If the loaded chain has a wrong genesis, bail out immediately
1470 // (we're likely using a testnet datadir, or the other way around).
1471 if (!mapBlockIndex.empty() && mapBlockIndex.count(chainparams.GetConsensus().hashGenesisBlock) == 0)
1472 return InitError(_("Incorrect or no genesis block found. Wrong datadir for network?"));
1474 // Initialize the block index (no-op if non-empty database was already loaded)
1475 if (!InitBlockIndex(chainparams)) {
1476 strLoadError = _("Error initializing block database");
1477 break;
1480 // Check for changed -txindex state
1481 if (fTxIndex != GetBoolArg("-txindex", DEFAULT_TXINDEX)) {
1482 strLoadError = _("You need to rebuild the database using -reindex-chainstate to change -txindex");
1483 break;
1486 // Check for changed -prune state. What we are concerned about is a user who has pruned blocks
1487 // in the past, but is now trying to run unpruned.
1488 if (fHavePruned && !fPruneMode) {
1489 strLoadError = _("You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain");
1490 break;
1493 if (!fReindex && chainActive.Tip() != NULL) {
1494 uiInterface.InitMessage(_("Rewinding blocks..."));
1495 if (!RewindBlockIndex(chainparams)) {
1496 strLoadError = _("Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain");
1497 break;
1501 uiInterface.InitMessage(_("Verifying blocks..."));
1502 if (fHavePruned && GetArg("-checkblocks", DEFAULT_CHECKBLOCKS) > MIN_BLOCKS_TO_KEEP) {
1503 LogPrintf("Prune: pruned datadir may not have more than %d blocks; only checking available blocks",
1504 MIN_BLOCKS_TO_KEEP);
1508 LOCK(cs_main);
1509 CBlockIndex* tip = chainActive.Tip();
1510 RPCNotifyBlockChange(true, tip);
1511 if (tip && tip->nTime > GetAdjustedTime() + 2 * 60 * 60) {
1512 strLoadError = _("The block database contains a block which appears to be from the future. "
1513 "This may be due to your computer's date and time being set incorrectly. "
1514 "Only rebuild the block database if you are sure that your computer's date and time are correct");
1515 break;
1519 if (!CVerifyDB().VerifyDB(chainparams, pcoinsdbview, GetArg("-checklevel", DEFAULT_CHECKLEVEL),
1520 GetArg("-checkblocks", DEFAULT_CHECKBLOCKS))) {
1521 strLoadError = _("Corrupted block database detected");
1522 break;
1524 } catch (const std::exception& e) {
1525 LogPrintf("%s\n", e.what());
1526 strLoadError = _("Error opening block database");
1527 break;
1530 fLoaded = true;
1531 } while(false);
1533 if (!fLoaded) {
1534 // first suggest a reindex
1535 if (!fReset) {
1536 bool fRet = uiInterface.ThreadSafeQuestion(
1537 strLoadError + ".\n\n" + _("Do you want to rebuild the block database now?"),
1538 strLoadError + ".\nPlease restart with -reindex or -reindex-chainstate to recover.",
1539 "", CClientUIInterface::MSG_ERROR | CClientUIInterface::BTN_ABORT);
1540 if (fRet) {
1541 fReindex = true;
1542 fRequestShutdown = false;
1543 } else {
1544 LogPrintf("Aborted block database rebuild. Exiting.\n");
1545 return false;
1547 } else {
1548 return InitError(strLoadError);
1553 // As LoadBlockIndex can take several minutes, it's possible the user
1554 // requested to kill the GUI during the last operation. If so, exit.
1555 // As the program has not fully started yet, Shutdown() is possibly overkill.
1556 if (fRequestShutdown)
1558 LogPrintf("Shutdown requested. Exiting.\n");
1559 return false;
1561 LogPrintf(" block index %15dms\n", GetTimeMillis() - nStart);
1563 fs::path est_path = GetDataDir() / FEE_ESTIMATES_FILENAME;
1564 CAutoFile est_filein(fsbridge::fopen(est_path, "rb"), SER_DISK, CLIENT_VERSION);
1565 // Allowed to fail as this file IS missing on first startup.
1566 if (!est_filein.IsNull())
1567 ::feeEstimator.Read(est_filein);
1568 fFeeEstimatesInitialized = true;
1570 // ********************************************************* Step 8: load wallet
1571 #ifdef ENABLE_WALLET
1572 if (!CWallet::InitLoadWallet())
1573 return false;
1574 #else
1575 LogPrintf("No wallet support compiled in!\n");
1576 #endif
1578 // ********************************************************* Step 9: data directory maintenance
1580 // if pruning, unset the service bit and perform the initial blockstore prune
1581 // after any wallet rescanning has taken place.
1582 if (fPruneMode) {
1583 LogPrintf("Unsetting NODE_NETWORK on prune mode\n");
1584 nLocalServices = ServiceFlags(nLocalServices & ~NODE_NETWORK);
1585 if (!fReindex) {
1586 uiInterface.InitMessage(_("Pruning blockstore..."));
1587 PruneAndFlush();
1591 if (chainparams.GetConsensus().vDeployments[Consensus::DEPLOYMENT_SEGWIT].nTimeout != 0) {
1592 // Only advertise witness capabilities if they have a reasonable start time.
1593 // This allows us to have the code merged without a defined softfork, by setting its
1594 // end time to 0.
1595 // Note that setting NODE_WITNESS is never required: the only downside from not
1596 // doing so is that after activation, no upgraded nodes will fetch from you.
1597 nLocalServices = ServiceFlags(nLocalServices | NODE_WITNESS);
1598 // Only care about others providing witness capabilities if there is a softfork
1599 // defined.
1600 nRelevantServices = ServiceFlags(nRelevantServices | NODE_WITNESS);
1603 // ********************************************************* Step 10: import blocks
1605 if (!CheckDiskSpace())
1606 return false;
1608 // Either install a handler to notify us when genesis activates, or set fHaveGenesis directly.
1609 // No locking, as this happens before any background thread is started.
1610 if (chainActive.Tip() == NULL) {
1611 uiInterface.NotifyBlockTip.connect(BlockNotifyGenesisWait);
1612 } else {
1613 fHaveGenesis = true;
1616 if (IsArgSet("-blocknotify"))
1617 uiInterface.NotifyBlockTip.connect(BlockNotifyCallback);
1619 std::vector<fs::path> vImportFiles;
1620 if (gArgs.IsArgSet("-loadblock"))
1622 BOOST_FOREACH(const std::string& strFile, gArgs.GetArgs("-loadblock"))
1623 vImportFiles.push_back(strFile);
1626 threadGroup.create_thread(boost::bind(&ThreadImport, vImportFiles));
1628 // Wait for genesis block to be processed
1630 boost::unique_lock<boost::mutex> lock(cs_GenesisWait);
1631 while (!fHaveGenesis) {
1632 condvar_GenesisWait.wait(lock);
1634 uiInterface.NotifyBlockTip.disconnect(BlockNotifyGenesisWait);
1637 // ********************************************************* Step 11: start node
1639 //// debug print
1640 LogPrintf("mapBlockIndex.size() = %u\n", mapBlockIndex.size());
1641 LogPrintf("nBestHeight = %d\n", chainActive.Height());
1642 if (GetBoolArg("-listenonion", DEFAULT_LISTEN_ONION))
1643 StartTorControl(threadGroup, scheduler);
1645 Discover(threadGroup);
1647 // Map ports with UPnP
1648 MapPort(GetBoolArg("-upnp", DEFAULT_UPNP));
1650 std::string strNodeError;
1651 CConnman::Options connOptions;
1652 connOptions.nLocalServices = nLocalServices;
1653 connOptions.nRelevantServices = nRelevantServices;
1654 connOptions.nMaxConnections = nMaxConnections;
1655 connOptions.nMaxOutbound = std::min(MAX_OUTBOUND_CONNECTIONS, connOptions.nMaxConnections);
1656 connOptions.nMaxAddnode = MAX_ADDNODE_CONNECTIONS;
1657 connOptions.nMaxFeeler = 1;
1658 connOptions.nBestHeight = chainActive.Height();
1659 connOptions.uiInterface = &uiInterface;
1660 connOptions.nSendBufferMaxSize = 1000*GetArg("-maxsendbuffer", DEFAULT_MAXSENDBUFFER);
1661 connOptions.nReceiveFloodSize = 1000*GetArg("-maxreceivebuffer", DEFAULT_MAXRECEIVEBUFFER);
1663 connOptions.nMaxOutboundTimeframe = nMaxOutboundTimeframe;
1664 connOptions.nMaxOutboundLimit = nMaxOutboundLimit;
1666 if (gArgs.IsArgSet("-seednode")) {
1667 connOptions.vSeedNodes = gArgs.GetArgs("-seednode");
1670 if (!connman.Start(scheduler, strNodeError, connOptions))
1671 return InitError(strNodeError);
1673 // ********************************************************* Step 12: finished
1675 SetRPCWarmupFinished();
1676 uiInterface.InitMessage(_("Done loading"));
1678 #ifdef ENABLE_WALLET
1679 for (CWalletRef pwallet : vpwallets) {
1680 pwallet->postInitProcess(scheduler);
1682 #endif
1684 return !fRequestShutdown;