]> Git Repo - VerusCoin.git/blob - src/init.cpp
d9fb2cd04b74063741ad67741963097bb62b325d
[VerusCoin.git] / src / init.cpp
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2014 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.
5
6 #if defined(HAVE_CONFIG_H)
7 #include "config/bitcoin-config.h"
8 #endif
9
10 #include "init.h"
11 #include "crypto/common.h"
12 #include "addrman.h"
13 #include "amount.h"
14 #include "checkpoints.h"
15 #include "compat/sanity.h"
16 #include "consensus/validation.h"
17 #include "key.h"
18 #include "main.h"
19 #include "metrics.h"
20 #include "miner.h"
21 #include "net.h"
22 #include "rpcserver.h"
23 #include "script/standard.h"
24 #include "scheduler.h"
25 #include "txdb.h"
26 #include "ui_interface.h"
27 #include "util.h"
28 #include "utilmoneystr.h"
29 #include "validationinterface.h"
30 #ifdef ENABLE_WALLET
31 #include "wallet/wallet.h"
32 #include "wallet/walletdb.h"
33 #endif
34
35 #include <stdint.h>
36 #include <stdio.h>
37
38 #ifndef WIN32
39 #include <signal.h>
40 #endif
41
42 #include <boost/algorithm/string/predicate.hpp>
43 #include <boost/algorithm/string/replace.hpp>
44 #include <boost/bind.hpp>
45 #include <boost/filesystem.hpp>
46 #include <boost/function.hpp>
47 #include <boost/interprocess/sync/file_lock.hpp>
48 #include <boost/thread.hpp>
49 #include <openssl/crypto.h>
50
51 #include "libsnark/common/profiling.hpp"
52
53 using namespace std;
54
55 extern void ThreadSendAlert();
56
57 ZCJoinSplit* pzcashParams = NULL;
58
59 #ifdef ENABLE_WALLET
60 CWallet* pwalletMain = NULL;
61 #endif
62 bool fFeeEstimatesInitialized = false;
63
64 #ifdef WIN32
65 // Win32 LevelDB doesn't use file descriptors, and the ones used for
66 // accessing block files don't count towards the fd_set size limit
67 // anyway.
68 #define MIN_CORE_FILEDESCRIPTORS 0
69 #else
70 #define MIN_CORE_FILEDESCRIPTORS 150
71 #endif
72
73 /** Used to pass flags to the Bind() function */
74 enum BindFlags {
75     BF_NONE         = 0,
76     BF_EXPLICIT     = (1U << 0),
77     BF_REPORT_ERROR = (1U << 1),
78     BF_WHITELIST    = (1U << 2),
79 };
80
81 static const char* FEE_ESTIMATES_FILENAME="fee_estimates.dat";
82 CClientUIInterface uiInterface; // Declared but not defined in ui_interface.h
83
84 //////////////////////////////////////////////////////////////////////////////
85 //
86 // Shutdown
87 //
88
89 //
90 // Thread management and startup/shutdown:
91 //
92 // The network-processing threads are all part of a thread group
93 // created by AppInit() or the Qt main() function.
94 //
95 // A clean exit happens when StartShutdown() or the SIGTERM
96 // signal handler sets fRequestShutdown, which triggers
97 // the DetectShutdownThread(), which interrupts the main thread group.
98 // DetectShutdownThread() then exits, which causes AppInit() to
99 // continue (it .joins the shutdown thread).
100 // Shutdown() is then
101 // called to clean up database connections, and stop other
102 // threads that should only be stopped after the main network-processing
103 // threads have exited.
104 //
105 // Note that if running -daemon the parent process returns from AppInit2
106 // before adding any threads to the threadGroup, so .join_all() returns
107 // immediately and the parent exits from main().
108 //
109 // Shutdown for Qt is very similar, only it uses a QTimer to detect
110 // fRequestShutdown getting set, and then does the normal Qt
111 // shutdown thing.
112 //
113
114 std::atomic<bool> fRequestShutdown(false);
115
116 void StartShutdown()
117 {
118     fRequestShutdown = true;
119 }
120 bool ShutdownRequested()
121 {
122     return fRequestShutdown;
123 }
124
125 class CCoinsViewErrorCatcher : public CCoinsViewBacked
126 {
127 public:
128     CCoinsViewErrorCatcher(CCoinsView* view) : CCoinsViewBacked(view) {}
129     bool GetCoins(const uint256 &txid, CCoins &coins) const {
130         try {
131             return CCoinsViewBacked::GetCoins(txid, coins);
132         } catch(const std::runtime_error& e) {
133             uiInterface.ThreadSafeMessageBox(_("Error reading from database, shutting down."), "", CClientUIInterface::MSG_ERROR);
134             LogPrintf("Error reading from database: %s\n", e.what());
135             // Starting the shutdown sequence and returning false to the caller would be
136             // interpreted as 'entry not found' (as opposed to unable to read data), and
137             // could lead to invalid interpretation. Just exit immediately, as we can't
138             // continue anyway, and all writes should be atomic.
139             abort();
140         }
141     }
142     // Writes do not need similar protection, as failure to write is handled by the caller.
143 };
144
145 static CCoinsViewDB *pcoinsdbview = NULL;
146 static CCoinsViewErrorCatcher *pcoinscatcher = NULL;
147
148 void Shutdown()
149 {
150     LogPrintf("%s: In progress...\n", __func__);
151     static CCriticalSection cs_Shutdown;
152     TRY_LOCK(cs_Shutdown, lockShutdown);
153     if (!lockShutdown)
154         return;
155
156     /// Note: Shutdown() must be able to handle cases in which AppInit2() failed part of the way,
157     /// for example if the data directory was found to be locked.
158     /// Be sure that anything that writes files or flushes caches only does this if the respective
159     /// module was initialized.
160     RenameThread("zcash-shutoff");
161     mempool.AddTransactionsUpdated(1);
162     StopRPCThreads();
163 #ifdef ENABLE_WALLET
164     if (pwalletMain)
165         pwalletMain->Flush(false);
166     GenerateBitcoins(false, NULL, 0);
167 #endif
168     StopNode();
169     UnregisterNodeSignals(GetNodeSignals());
170
171     if (fFeeEstimatesInitialized)
172     {
173         boost::filesystem::path est_path = GetDataDir() / FEE_ESTIMATES_FILENAME;
174         CAutoFile est_fileout(fopen(est_path.string().c_str(), "wb"), SER_DISK, CLIENT_VERSION);
175         if (!est_fileout.IsNull())
176             mempool.WriteFeeEstimates(est_fileout);
177         else
178             LogPrintf("%s: Failed to write fee estimates to %s\n", __func__, est_path.string());
179         fFeeEstimatesInitialized = false;
180     }
181
182     {
183         LOCK(cs_main);
184         if (pcoinsTip != NULL) {
185             FlushStateToDisk();
186         }
187         delete pcoinsTip;
188         pcoinsTip = NULL;
189         delete pcoinscatcher;
190         pcoinscatcher = NULL;
191         delete pcoinsdbview;
192         pcoinsdbview = NULL;
193         delete pblocktree;
194         pblocktree = NULL;
195     }
196 #ifdef ENABLE_WALLET
197     if (pwalletMain)
198         pwalletMain->Flush(true);
199 #endif
200 #ifndef WIN32
201     try {
202         boost::filesystem::remove(GetPidFile());
203     } catch (const boost::filesystem::filesystem_error& e) {
204         LogPrintf("%s: Unable to remove pidfile: %s\n", __func__, e.what());
205     }
206 #endif
207     UnregisterAllValidationInterfaces();
208 #ifdef ENABLE_WALLET
209     delete pwalletMain;
210     pwalletMain = NULL;
211 #endif
212     delete pzcashParams;
213     pzcashParams = NULL;
214     ECC_Stop();
215     LogPrintf("%s: done\n", __func__);
216 }
217
218 /**
219  * Signal handlers are very limited in what they are allowed to do, so:
220  */
221 void HandleSIGTERM(int)
222 {
223     fRequestShutdown = true;
224 }
225
226 void HandleSIGHUP(int)
227 {
228     fReopenDebugLog = true;
229 }
230
231 bool static InitError(const std::string &str)
232 {
233     uiInterface.ThreadSafeMessageBox(str, "", CClientUIInterface::MSG_ERROR);
234     return false;
235 }
236
237 bool static InitWarning(const std::string &str)
238 {
239     uiInterface.ThreadSafeMessageBox(str, "", CClientUIInterface::MSG_WARNING);
240     return true;
241 }
242
243 bool static Bind(const CService &addr, unsigned int flags) {
244     if (!(flags & BF_EXPLICIT) && IsLimited(addr))
245         return false;
246     std::string strError;
247     if (!BindListenPort(addr, strError, (flags & BF_WHITELIST) != 0)) {
248         if (flags & BF_REPORT_ERROR)
249             return InitError(strError);
250         return false;
251     }
252     return true;
253 }
254
255 void OnRPCStopped()
256 {
257     cvBlockChange.notify_all();
258     LogPrint("rpc", "RPC stopped.\n");
259 }
260
261 void OnRPCPreCommand(const CRPCCommand& cmd)
262 {
263     // Observe safe mode
264     string strWarning = GetWarnings("rpc");
265     if (strWarning != "" && !GetBoolArg("-disablesafemode", false) &&
266         !cmd.okSafeMode)
267         throw JSONRPCError(RPC_FORBIDDEN_BY_SAFE_MODE, string("Safe mode: ") + strWarning);
268 }
269
270 std::string HelpMessage(HelpMessageMode mode)
271 {
272     const bool showDebug = GetBoolArg("-help-debug", false);
273
274     // When adding new options to the categories, please keep and ensure alphabetical ordering.
275     // Do not translate _(...) -help-debug options, Many technical terms, and only a very small audience, so is unnecessary stress to translators
276
277     string strUsage = HelpMessageGroup(_("Options:"));
278     strUsage += HelpMessageOpt("-?", _("This help message"));
279     strUsage += HelpMessageOpt("-alerts", strprintf(_("Receive and display P2P network alerts (default: %u)"), DEFAULT_ALERTS));
280     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)"));
281     strUsage += HelpMessageOpt("-blocknotify=<cmd>", _("Execute command when the best block changes (%s in cmd is replaced by block hash)"));
282     strUsage += HelpMessageOpt("-checkblocks=<n>", strprintf(_("How many blocks to check at startup (default: %u, 0 = all)"), 288));
283     strUsage += HelpMessageOpt("-checklevel=<n>", strprintf(_("How thorough the block verification of -checkblocks is (0-4, default: %u)"), 3));
284     strUsage += HelpMessageOpt("-conf=<file>", strprintf(_("Specify configuration file (default: %s)"), "komodo.conf"));
285     if (mode == HMM_BITCOIND)
286     {
287 #if !defined(WIN32)
288         strUsage += HelpMessageOpt("-daemon", _("Run in the background as a daemon and accept commands"));
289 #endif
290     }
291     strUsage += HelpMessageOpt("-datadir=<dir>", _("Specify data directory"));
292     strUsage += HelpMessageOpt("-exportdir=<dir>", _("Specify directory to be used when exporting data"));
293     strUsage += HelpMessageOpt("-dbcache=<n>", strprintf(_("Set database cache size in megabytes (%d to %d, default: %d)"), nMinDbCache, nMaxDbCache, nDefaultDbCache));
294     strUsage += HelpMessageOpt("-loadblock=<file>", _("Imports blocks from external blk000??.dat file") + " " + _("on startup"));
295     strUsage += HelpMessageOpt("-maxorphantx=<n>", strprintf(_("Keep at most <n> unconnectable transactions in memory (default: %u)"), DEFAULT_MAX_ORPHAN_TRANSACTIONS));
296     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)"),
297         -(int)boost::thread::hardware_concurrency(), MAX_SCRIPTCHECK_THREADS, DEFAULT_SCRIPTCHECK_THREADS));
298 #ifndef WIN32
299     strUsage += HelpMessageOpt("-pid=<file>", strprintf(_("Specify pid file (default: %s)"), "komodod.pid"));
300 #endif
301     strUsage += HelpMessageOpt("-prune=<n>", strprintf(_("Reduce storage requirements by pruning (deleting) old blocks. This mode disables wallet support and is incompatible with -txindex. "
302             "Warning: Reverting this setting requires re-downloading the entire blockchain. "
303             "(default: 0 = disable pruning blocks, >%u = target size in MiB to use for block files)"), MIN_DISK_SPACE_FOR_BLOCK_FILES / 1024 / 1024));
304     strUsage += HelpMessageOpt("-reindex", _("Rebuild block chain index from current blk000??.dat files on startup"));
305 #if !defined(WIN32)
306     strUsage += HelpMessageOpt("-sysperms", _("Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality)"));
307 #endif
308     strUsage += HelpMessageOpt("-txindex", strprintf(_("Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u)"), 0));
309
310     strUsage += HelpMessageGroup(_("Connection options:"));
311     strUsage += HelpMessageOpt("-addnode=<ip>", _("Add a node to connect to and attempt to keep the connection open"));
312     strUsage += HelpMessageOpt("-banscore=<n>", strprintf(_("Threshold for disconnecting misbehaving peers (default: %u)"), 100));
313     strUsage += HelpMessageOpt("-bantime=<n>", strprintf(_("Number of seconds to keep misbehaving peers from reconnecting (default: %u)"), 86400));
314     strUsage += HelpMessageOpt("-bind=<addr>", _("Bind to given address and always listen on it. Use [host]:port notation for IPv6"));
315     strUsage += HelpMessageOpt("-connect=<ip>", _("Connect only to the specified node(s)"));
316     strUsage += HelpMessageOpt("-discover", _("Discover own IP addresses (default: 1 when listening and no -externalip or -proxy)"));
317     strUsage += HelpMessageOpt("-dns", _("Allow DNS lookups for -addnode, -seednode and -connect") + " " + _("(default: 1)"));
318     strUsage += HelpMessageOpt("-dnsseed", _("Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect)"));
319     strUsage += HelpMessageOpt("-externalip=<ip>", _("Specify your own public address"));
320     strUsage += HelpMessageOpt("-forcednsseed", strprintf(_("Always query for peer addresses via DNS lookup (default: %u)"), 0));
321     strUsage += HelpMessageOpt("-listen", _("Accept connections from outside (default: 1 if no -proxy or -connect)"));
322     strUsage += HelpMessageOpt("-maxconnections=<n>", strprintf(_("Maintain at most <n> connections to peers (default: %u)"), 125));
323     strUsage += HelpMessageOpt("-maxreceivebuffer=<n>", strprintf(_("Maximum per-connection receive buffer, <n>*1000 bytes (default: %u)"), 5000));
324     strUsage += HelpMessageOpt("-maxsendbuffer=<n>", strprintf(_("Maximum per-connection send buffer, <n>*1000 bytes (default: %u)"), 1000));
325     strUsage += HelpMessageOpt("-onion=<ip:port>", strprintf(_("Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s)"), "-proxy"));
326     strUsage += HelpMessageOpt("-onlynet=<net>", _("Only connect to nodes in network <net> (ipv4, ipv6 or onion)"));
327     strUsage += HelpMessageOpt("-permitbaremultisig", strprintf(_("Relay non-P2SH multisig (default: %u)"), 1));
328     strUsage += HelpMessageOpt("-port=<port>", strprintf(_("Listen for connections on <port> (default: %u or testnet: %u)"), 8233, 18233));
329     strUsage += HelpMessageOpt("-proxy=<ip:port>", _("Connect through SOCKS5 proxy"));
330     strUsage += HelpMessageOpt("-proxyrandomize", strprintf(_("Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u)"), 1));
331     strUsage += HelpMessageOpt("-seednode=<ip>", _("Connect to a node to retrieve peer addresses, and disconnect"));
332     strUsage += HelpMessageOpt("-timeout=<n>", strprintf(_("Specify connection timeout in milliseconds (minimum: 1, default: %d)"), DEFAULT_CONNECT_TIMEOUT));
333 #ifdef USE_UPNP
334 #if USE_UPNP
335     strUsage += HelpMessageOpt("-upnp", _("Use UPnP to map the listening port (default: 1 when listening)"));
336 #else
337     strUsage += HelpMessageOpt("-upnp", strprintf(_("Use UPnP to map the listening port (default: %u)"), 0));
338 #endif
339 #endif
340     strUsage += HelpMessageOpt("-whitebind=<addr>", _("Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6"));
341     strUsage += HelpMessageOpt("-whitelist=<netmask>", _("Whitelist peers connecting from the given netmask or IP address. Can be specified multiple times.") +
342         " " + _("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"));
343
344 #ifdef ENABLE_WALLET
345     strUsage += HelpMessageGroup(_("Wallet options:"));
346     strUsage += HelpMessageOpt("-disablewallet", _("Do not load the wallet and disable wallet RPC calls"));
347     strUsage += HelpMessageOpt("-keypool=<n>", strprintf(_("Set key pool size to <n> (default: %u)"), 100));
348     if (showDebug)
349         strUsage += HelpMessageOpt("-mintxfee=<amt>", strprintf("Fees (in BTC/Kb) smaller than this are considered zero fee for transaction creation (default: %s)",
350             FormatMoney(CWallet::minTxFee.GetFeePerK())));
351     strUsage += HelpMessageOpt("-paytxfee=<amt>", strprintf(_("Fee (in BTC/kB) to add to transactions you send (default: %s)"), FormatMoney(payTxFee.GetFeePerK())));
352     strUsage += HelpMessageOpt("-rescan", _("Rescan the blockchain for missing wallet transactions") + " " + _("on startup"));
353     strUsage += HelpMessageOpt("-salvagewallet", _("Attempt to recover private keys from a corrupt wallet.dat") + " " + _("on startup"));
354     strUsage += HelpMessageOpt("-sendfreetransactions", strprintf(_("Send transactions as zero-fee transactions if possible (default: %u)"), 0));
355     strUsage += HelpMessageOpt("-spendzeroconfchange", strprintf(_("Spend unconfirmed change when sending transactions (default: %u)"), 1));
356     strUsage += HelpMessageOpt("-txconfirmtarget=<n>", strprintf(_("If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u)"), DEFAULT_TX_CONFIRM_TARGET));
357     strUsage += HelpMessageOpt("-maxtxfee=<amt>", strprintf(_("Maximum total fees to use in a single wallet transaction; setting this too low may abort large transactions (default: %s)"),
358         FormatMoney(maxTxFee)));
359     strUsage += HelpMessageOpt("-upgradewallet", _("Upgrade wallet to latest format") + " " + _("on startup"));
360     strUsage += HelpMessageOpt("-wallet=<file>", _("Specify wallet file (within data directory)") + " " + strprintf(_("(default: %s)"), "wallet.dat"));
361     strUsage += HelpMessageOpt("-walletbroadcast", _("Make the wallet broadcast transactions") + " " + strprintf(_("(default: %u)"), true));
362     strUsage += HelpMessageOpt("-walletnotify=<cmd>", _("Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)"));
363     strUsage += HelpMessageOpt("-zapwallettxes=<mode>", _("Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup") +
364         " " + _("(1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data)"));
365                     
366 #endif
367
368     strUsage += HelpMessageGroup(_("Debugging/Testing options:"));
369     if (showDebug)
370     {
371         strUsage += HelpMessageOpt("-checkpoints", strprintf("Only accept block chain matching built-in checkpoints (default: %u)", 1));
372         strUsage += HelpMessageOpt("-dblogsize=<n>", strprintf("Flush database activity from memory pool to disk log every <n> megabytes (default: %u)", 100));
373         strUsage += HelpMessageOpt("-disablesafemode", strprintf("Disable safemode, override a real safe mode event (default: %u)", 0));
374         strUsage += HelpMessageOpt("-testsafemode", strprintf("Force safe mode (default: %u)", 0));
375         strUsage += HelpMessageOpt("-dropmessagestest=<n>", "Randomly drop 1 of every <n> network messages");
376         strUsage += HelpMessageOpt("-fuzzmessagestest=<n>", "Randomly fuzz 1 of every <n> network messages");
377         strUsage += HelpMessageOpt("-flushwallet", strprintf("Run a thread to flush wallet periodically (default: %u)", 1));
378         strUsage += HelpMessageOpt("-stopafterblockimport", strprintf("Stop running after importing blocks from disk (default: %u)", 0));
379     }
380     string debugCategories = "addrman, alert, bench, coindb, db, estimatefee, lock, mempool, net, partitioncheck, pow, proxy, prune, "
381                              "rand, reindex, rpc, selectcoins, zrpc, zrpcunsafe"; // Don't translate these and qt below
382     if (mode == HMM_BITCOIN_QT)
383         debugCategories += ", qt";
384     strUsage += HelpMessageOpt("-debug=<category>", strprintf(_("Output debugging information (default: %u, supplying <category> is optional)"), 0) + ". " +
385         _("If <category> is not supplied or if <category> = 1, output all debugging information.") + " " + _("<category> can be:") + " " + debugCategories + ".");
386 #ifdef ENABLE_WALLET
387     strUsage += HelpMessageOpt("-gen", strprintf(_("Generate coins (default: %u)"), 0));
388     strUsage += HelpMessageOpt("-genproclimit=<n>", strprintf(_("Set the number of threads for coin generation if enabled (-1 = all cores, default: %d)"), 1));
389     strUsage += HelpMessageOpt("-equihashsolver=<name>", _("Specify the Equihash solver to be used if enabled (default: \"default\")"));
390 #endif
391     strUsage += HelpMessageOpt("-help-debug", _("Show all debugging options (usage: --help -help-debug)"));
392     strUsage += HelpMessageOpt("-logips", strprintf(_("Include IP addresses in debug output (default: %u)"), 0));
393     strUsage += HelpMessageOpt("-logtimestamps", strprintf(_("Prepend debug output with timestamp (default: %u)"), 1));
394     if (showDebug)
395     {
396         strUsage += HelpMessageOpt("-limitfreerelay=<n>", strprintf("Continuously rate-limit free transactions to <n>*1000 bytes per minute (default: %u)", 15));
397         strUsage += HelpMessageOpt("-relaypriority", strprintf("Require high priority for relaying free or low-fee transactions (default: %u)", 0));
398         strUsage += HelpMessageOpt("-maxsigcachesize=<n>", strprintf("Limit size of signature cache to <n> entries (default: %u)", 50000));
399     }
400     strUsage += HelpMessageOpt("-minrelaytxfee=<amt>", strprintf(_("Fees (in BTC/Kb) smaller than this are considered zero fee for relaying (default: %s)"), FormatMoney(::minRelayTxFee.GetFeePerK())));
401     strUsage += HelpMessageOpt("-printtoconsole", _("Send trace/debug info to console instead of debug.log file"));
402     if (showDebug)
403     {
404         strUsage += HelpMessageOpt("-printpriority", strprintf("Log transaction priority and fee per kB when mining blocks (default: %u)", 0));
405         strUsage += HelpMessageOpt("-privdb", strprintf("Sets the DB_PRIVATE flag in the wallet db environment (default: %u)", 1));
406         strUsage += HelpMessageOpt("-regtest", "Enter regression test mode, which uses a special chain in which blocks can be solved instantly. "
407             "This is intended for regression testing tools and app development.");
408     }
409     strUsage += HelpMessageOpt("-shrinkdebugfile", _("Shrink debug.log file on client startup (default: 1 when no -debug)"));
410     strUsage += HelpMessageOpt("-testnet", _("Use the test network"));
411
412     strUsage += HelpMessageGroup(_("Node relay options:"));
413     strUsage += HelpMessageOpt("-datacarrier", strprintf(_("Relay and mine data carrier transactions (default: %u)"), 1));
414     strUsage += HelpMessageOpt("-datacarriersize", strprintf(_("Maximum size of data in data carrier transactions we relay and mine (default: %u)"), MAX_OP_RETURN_RELAY));
415
416     strUsage += HelpMessageGroup(_("Block creation options:"));
417     strUsage += HelpMessageOpt("-blockminsize=<n>", strprintf(_("Set minimum block size in bytes (default: %u)"), 0));
418     strUsage += HelpMessageOpt("-blockmaxsize=<n>", strprintf(_("Set maximum block size in bytes (default: %d)"), DEFAULT_BLOCK_MAX_SIZE));
419     strUsage += HelpMessageOpt("-blockprioritysize=<n>", strprintf(_("Set maximum size of high-priority/low-fee transactions in bytes (default: %d)"), DEFAULT_BLOCK_PRIORITY_SIZE));
420
421     strUsage += HelpMessageGroup(_("RPC server options:"));
422     strUsage += HelpMessageOpt("-server", _("Accept command line and JSON-RPC commands"));
423     strUsage += HelpMessageOpt("-rest", strprintf(_("Accept public REST requests (default: %u)"), 0));
424     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)"));
425     strUsage += HelpMessageOpt("-rpcuser=<user>", _("Username for JSON-RPC connections"));
426     strUsage += HelpMessageOpt("-rpcpassword=<pw>", _("Password for JSON-RPC connections"));
427     strUsage += HelpMessageOpt("-rpcport=<port>", strprintf(_("Listen for JSON-RPC connections on <port> (default: %u or testnet: %u)"), 8232, 18232));
428     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"));
429     strUsage += HelpMessageOpt("-rpcthreads=<n>", strprintf(_("Set the number of threads to service RPC calls (default: %d)"), 4));
430
431     // TODO #1856: Re-enable support for persistent connections.
432     // Disabled to avoid rpc deadlock #1680, until we backport upstream changes which replace boost::asio with libevent, or another solution is implemented.
433     //strUsage += HelpMessageOpt("-rpckeepalive", strprintf(_("RPC support for HTTP persistent connections (default: %d)"), 1));
434
435     // Disabled until we can lock notes and also tune performance of libsnark which by default uses multiple threads
436     //strUsage += HelpMessageOpt("-rpcasyncthreads=<n>", strprintf(_("Set the number of threads to service Async RPC calls (default: %d)"), 1));
437
438     strUsage += HelpMessageGroup(_("RPC SSL options: (see the Bitcoin Wiki for SSL setup instructions)"));
439     strUsage += HelpMessageOpt("-rpcssl", _("Use OpenSSL (https) for JSON-RPC connections"));
440     strUsage += HelpMessageOpt("-rpcsslcertificatechainfile=<file.cert>", strprintf(_("Server certificate file (default: %s)"), "server.cert"));
441     strUsage += HelpMessageOpt("-rpcsslprivatekeyfile=<file.pem>", strprintf(_("Server private key (default: %s)"), "server.pem"));
442     strUsage += HelpMessageOpt("-rpcsslciphers=<ciphers>", strprintf(_("Acceptable ciphers (default: %s)"), "TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH"));
443
444     if (mode == HMM_BITCOIN_QT)
445     {
446         strUsage += HelpMessageGroup(_("UI Options:"));
447         if (showDebug) {
448             strUsage += HelpMessageOpt("-allowselfsignedrootcertificates", "Allow self signed root certificates (default: 0)");
449         }
450         strUsage += HelpMessageOpt("-choosedatadir", _("Choose data directory on startup (default: 0)"));
451         strUsage += HelpMessageOpt("-lang=<lang>", _("Set language, for example \"de_DE\" (default: system locale)"));
452         strUsage += HelpMessageOpt("-min", _("Start minimized"));
453         strUsage += HelpMessageOpt("-rootcertificates=<file>", _("Set SSL root certificates for payment request (default: -system-)"));
454         strUsage += HelpMessageOpt("-splash", _("Show splash screen on startup (default: 1)"));
455     } else if (mode == HMM_BITCOIND) {
456         strUsage += HelpMessageGroup(_("Metrics Options (only if -daemon and -printtoconsole are not set):"));
457         strUsage += HelpMessageOpt("-showmetrics", _("Show metrics on stdout (default: 1 if running in a console, 0 otherwise)"));
458         strUsage += HelpMessageOpt("-metricsui", _("Set to 1 for a persistent metrics screen, 0 for sequential metrics output (default: 1 if running in a console, 0 otherwise)"));
459         strUsage += HelpMessageOpt("-metricsrefreshtime", strprintf(_("Number of seconds between metrics refreshes (default: %u if running in a console, %u otherwise)"), 1, 600));
460     }
461
462     return strUsage;
463 }
464
465 static void BlockNotifyCallback(const uint256& hashNewTip)
466 {
467     std::string strCmd = GetArg("-blocknotify", "");
468
469     boost::replace_all(strCmd, "%s", hashNewTip.GetHex());
470     boost::thread t(runCommand, strCmd); // thread runs free
471 }
472
473 struct CImportingNow
474 {
475     CImportingNow() {
476         assert(fImporting == false);
477         fImporting = true;
478     }
479
480     ~CImportingNow() {
481         assert(fImporting == true);
482         fImporting = false;
483     }
484 };
485
486
487 // If we're using -prune with -reindex, then delete block files that will be ignored by the
488 // reindex.  Since reindexing works by starting at block file 0 and looping until a blockfile
489 // is missing, do the same here to delete any later block files after a gap.  Also delete all
490 // rev files since they'll be rewritten by the reindex anyway.  This ensures that vinfoBlockFile
491 // is in sync with what's actually on disk by the time we start downloading, so that pruning
492 // works correctly.
493 void CleanupBlockRevFiles()
494 {
495     using namespace boost::filesystem;
496     map<string, path> mapBlockFiles;
497
498     // Glob all blk?????.dat and rev?????.dat files from the blocks directory.
499     // Remove the rev files immediately and insert the blk file paths into an
500     // ordered map keyed by block file index.
501     LogPrintf("Removing unusable blk?????.dat and rev?????.dat files for -reindex with -prune\n");
502     path blocksdir = GetDataDir() / "blocks";
503     for (directory_iterator it(blocksdir); it != directory_iterator(); it++) {
504         if (is_regular_file(*it) &&
505             it->path().filename().string().length() == 12 &&
506             it->path().filename().string().substr(8,4) == ".dat")
507         {
508             if (it->path().filename().string().substr(0,3) == "blk")
509                 mapBlockFiles[it->path().filename().string().substr(3,5)] = it->path();
510             else if (it->path().filename().string().substr(0,3) == "rev")
511                 remove(it->path());
512         }
513     }
514     path komodostate = GetDataDir() / "komodostate";
515     remove(komodostate);
516     path minerids = GetDataDir() / "minerids";
517     remove(minerids);
518     // Remove all block files that aren't part of a contiguous set starting at
519     // zero by walking the ordered map (keys are block file indices) by
520     // keeping a separate counter.  Once we hit a gap (or if 0 doesn't exist)
521     // start removing block files.
522     int nContigCounter = 0;
523     BOOST_FOREACH(const PAIRTYPE(string, path)& item, mapBlockFiles) {
524         if (atoi(item.first) == nContigCounter) {
525             nContigCounter++;
526             continue;
527         }
528         remove(item.second);
529     }
530 }
531
532 void ThreadImport(std::vector<boost::filesystem::path> vImportFiles)
533 {
534     RenameThread("zcash-loadblk");
535     // -reindex
536     if (fReindex) {
537         CImportingNow imp;
538         int nFile = 0;
539         while (true) {
540             CDiskBlockPos pos(nFile, 0);
541             if (!boost::filesystem::exists(GetBlockPosFilename(pos, "blk")))
542                 break; // No block files left to reindex
543             FILE *file = OpenBlockFile(pos, true);
544             if (!file)
545                 break; // This error is logged in OpenBlockFile
546             LogPrintf("Reindexing block file blk%05u.dat...\n", (unsigned int)nFile);
547             LoadExternalBlockFile(file, &pos);
548             nFile++;
549         }
550         pblocktree->WriteReindexing(false);
551         fReindex = false;
552         LogPrintf("Reindexing finished\n");
553         // To avoid ending up in a situation without genesis block, re-try initializing (no-op if reindexing worked):
554         InitBlockIndex();
555     }
556
557     // hardcoded $DATADIR/bootstrap.dat
558     boost::filesystem::path pathBootstrap = GetDataDir() / "bootstrap.dat";
559     if (boost::filesystem::exists(pathBootstrap)) {
560         FILE *file = fopen(pathBootstrap.string().c_str(), "rb");
561         if (file) {
562             CImportingNow imp;
563             boost::filesystem::path pathBootstrapOld = GetDataDir() / "bootstrap.dat.old";
564             LogPrintf("Importing bootstrap.dat...\n");
565             LoadExternalBlockFile(file);
566             RenameOver(pathBootstrap, pathBootstrapOld);
567         } else {
568             LogPrintf("Warning: Could not open bootstrap file %s\n", pathBootstrap.string());
569         }
570     }
571
572     // -loadblock=
573     BOOST_FOREACH(boost::filesystem::path &path, vImportFiles) {
574         FILE *file = fopen(path.string().c_str(), "rb");
575         if (file) {
576             CImportingNow imp;
577             LogPrintf("Importing blocks file %s...\n", path.string());
578             LoadExternalBlockFile(file);
579         } else {
580             LogPrintf("Warning: Could not open blocks file %s\n", path.string());
581         }
582     }
583
584     if (GetBoolArg("-stopafterblockimport", false)) {
585         LogPrintf("Stopping after block import\n");
586         StartShutdown();
587     }
588 }
589
590 /** Sanity checks
591  *  Ensure that Bitcoin is running in a usable environment with all
592  *  necessary library support.
593  */
594 bool InitSanityCheck(void)
595 {
596     if(!ECC_InitSanityCheck()) {
597         InitError("OpenSSL appears to lack support for elliptic curve cryptography. For more "
598                   "information, visit https://en.bitcoin.it/wiki/OpenSSL_and_EC_Libraries");
599         return false;
600     }
601     if (!glibc_sanity_test() || !glibcxx_sanity_test())
602         return false;
603
604     return true;
605 }
606
607
608 static void ZC_LoadParams()
609 {
610     struct timeval tv_start, tv_end;
611     float elapsed;
612
613     boost::filesystem::path pk_path = ZC_GetParamsDir() / "sprout-proving.key";
614     boost::filesystem::path vk_path = ZC_GetParamsDir() / "sprout-verifying.key";
615
616     if (!(boost::filesystem::exists(pk_path) && boost::filesystem::exists(vk_path))) {
617         uiInterface.ThreadSafeMessageBox(strprintf(
618             _("Cannot find the Zcash network parameters in the following directory:\n"
619               "%s\n"
620               "Please run 'zcash-fetch-params' or './zcutil/fetch-params.sh' and then restart."),
621                 ZC_GetParamsDir()),
622             "", CClientUIInterface::MSG_ERROR);
623         StartShutdown();
624         return;
625     }
626
627     pzcashParams = ZCJoinSplit::Unopened();
628
629     LogPrintf("Loading verifying key from %s\n", vk_path.string().c_str());
630     gettimeofday(&tv_start, 0);
631
632     pzcashParams->loadVerifyingKey(vk_path.string());
633
634     gettimeofday(&tv_end, 0);
635     elapsed = float(tv_end.tv_sec-tv_start.tv_sec) + (tv_end.tv_usec-tv_start.tv_usec)/float(1000000);
636     LogPrintf("Loaded verifying key in %fs seconds.\n", elapsed);
637
638     pzcashParams->setProvingKeyPath(pk_path.string());
639 }
640
641 /** Initialize bitcoin.
642  *  @pre Parameters should be parsed and config file should be read.
643  */
644 extern int32_t KOMODO_REWIND;
645
646 bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler)
647 {
648     // ********************************************************* Step 1: setup
649 #ifdef _MSC_VER
650     // Turn off Microsoft heap dump noise
651     _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
652     _CrtSetReportFile(_CRT_WARN, CreateFileA("NUL", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0));
653 #endif
654 #if _MSC_VER >= 1400
655     // Disable confusing "helpful" text message on abort, Ctrl-C
656     _set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT);
657 #endif
658 #ifdef WIN32
659     // Enable Data Execution Prevention (DEP)
660     // Minimum supported OS versions: WinXP SP3, WinVista >= SP1, Win Server 2008
661     // A failure is non-critical and needs no further attention!
662 #ifndef PROCESS_DEP_ENABLE
663     // We define this here, because GCCs winbase.h limits this to _WIN32_WINNT >= 0x0601 (Windows 7),
664     // which is not correct. Can be removed, when GCCs winbase.h is fixed!
665 #define PROCESS_DEP_ENABLE 0x00000001
666 #endif
667     typedef BOOL (WINAPI *PSETPROCDEPPOL)(DWORD);
668     PSETPROCDEPPOL setProcDEPPol = (PSETPROCDEPPOL)GetProcAddress(GetModuleHandleA("Kernel32.dll"), "SetProcessDEPPolicy");
669     if (setProcDEPPol != NULL) setProcDEPPol(PROCESS_DEP_ENABLE);
670
671     // Initialize Windows Sockets
672     WSADATA wsadata;
673     int ret = WSAStartup(MAKEWORD(2,2), &wsadata);
674     if (ret != NO_ERROR || LOBYTE(wsadata.wVersion ) != 2 || HIBYTE(wsadata.wVersion) != 2)
675     {
676         return InitError(strprintf("Error: Winsock library failed to start (WSAStartup returned error %d)", ret));
677     }
678 #endif
679 #ifndef WIN32
680
681     if (GetBoolArg("-sysperms", false)) {
682 #ifdef ENABLE_WALLET
683         if (!GetBoolArg("-disablewallet", false))
684             return InitError("Error: -sysperms is not allowed in combination with enabled wallet functionality");
685 #endif
686     } else {
687         umask(077);
688     }
689
690     // Clean shutdown on SIGTERM
691     struct sigaction sa;
692     sa.sa_handler = HandleSIGTERM;
693     sigemptyset(&sa.sa_mask);
694     sa.sa_flags = 0;
695     sigaction(SIGTERM, &sa, NULL);
696     sigaction(SIGINT, &sa, NULL);
697
698     // Reopen debug.log on SIGHUP
699     struct sigaction sa_hup;
700     sa_hup.sa_handler = HandleSIGHUP;
701     sigemptyset(&sa_hup.sa_mask);
702     sa_hup.sa_flags = 0;
703     sigaction(SIGHUP, &sa_hup, NULL);
704
705 #if defined (__SVR4) && defined (__sun)
706     // ignore SIGPIPE on Solaris
707     signal(SIGPIPE, SIG_IGN);
708 #endif
709 #endif
710
711     // ********************************************************* Step 2: parameter interactions
712     const CChainParams& chainparams = Params();
713
714     // Set this early so that parameter interactions go to console
715     fPrintToConsole = GetBoolArg("-printtoconsole", false);
716     fLogTimestamps = GetBoolArg("-logtimestamps", true);
717     fLogIPs = GetBoolArg("-logips", false);
718
719     // when specifying an explicit binding address, you want to listen on it
720     // even when -connect or -proxy is specified
721     if (mapArgs.count("-bind")) {
722         if (SoftSetBoolArg("-listen", true))
723             LogPrintf("%s: parameter interaction: -bind set -> setting -listen=1\n", __func__);
724     }
725     if (mapArgs.count("-whitebind")) {
726         if (SoftSetBoolArg("-listen", true))
727             LogPrintf("%s: parameter interaction: -whitebind set -> setting -listen=1\n", __func__);
728     }
729
730     if (mapArgs.count("-connect") && mapMultiArgs["-connect"].size() > 0) {
731         // when only connecting to trusted nodes, do not seed via DNS, or listen by default
732         if (SoftSetBoolArg("-dnsseed", false))
733             LogPrintf("%s: parameter interaction: -connect set -> setting -dnsseed=0\n", __func__);
734         if (SoftSetBoolArg("-listen", false))
735             LogPrintf("%s: parameter interaction: -connect set -> setting -listen=0\n", __func__);
736     }
737
738     if (mapArgs.count("-proxy")) {
739         // to protect privacy, do not listen by default if a default proxy server is specified
740         if (SoftSetBoolArg("-listen", false))
741             LogPrintf("%s: parameter interaction: -proxy set -> setting -listen=0\n", __func__);
742         // to protect privacy, do not use UPNP when a proxy is set. The user may still specify -listen=1
743         // to listen locally, so don't rely on this happening through -listen below.
744         if (SoftSetBoolArg("-upnp", false))
745             LogPrintf("%s: parameter interaction: -proxy set -> setting -upnp=0\n", __func__);
746         // to protect privacy, do not discover addresses by default
747         if (SoftSetBoolArg("-discover", false))
748             LogPrintf("%s: parameter interaction: -proxy set -> setting -discover=0\n", __func__);
749     }
750
751     if (!GetBoolArg("-listen", DEFAULT_LISTEN)) {
752         // do not map ports or try to retrieve public IP when not listening (pointless)
753         if (SoftSetBoolArg("-upnp", false))
754             LogPrintf("%s: parameter interaction: -listen=0 -> setting -upnp=0\n", __func__);
755         if (SoftSetBoolArg("-discover", false))
756             LogPrintf("%s: parameter interaction: -listen=0 -> setting -discover=0\n", __func__);
757     }
758
759     if (mapArgs.count("-externalip")) {
760         // if an explicit public IP is specified, do not try to find others
761         if (SoftSetBoolArg("-discover", false))
762             LogPrintf("%s: parameter interaction: -externalip set -> setting -discover=0\n", __func__);
763     }
764
765     if (GetBoolArg("-salvagewallet", false)) {
766         // Rewrite just private keys: rescan to find transactions
767         if (SoftSetBoolArg("-rescan", true))
768             LogPrintf("%s: parameter interaction: -salvagewallet=1 -> setting -rescan=1\n", __func__);
769     }
770
771     // -zapwallettx implies a rescan
772     if (GetBoolArg("-zapwallettxes", false)) {
773         if (SoftSetBoolArg("-rescan", true))
774             LogPrintf("%s: parameter interaction: -zapwallettxes=<mode> -> setting -rescan=1\n", __func__);
775     }
776
777     // Make sure enough file descriptors are available
778     int nBind = std::max((int)mapArgs.count("-bind") + (int)mapArgs.count("-whitebind"), 1);
779     nMaxConnections = GetArg("-maxconnections", 125);
780     nMaxConnections = std::max(std::min(nMaxConnections, (int)(FD_SETSIZE - nBind - MIN_CORE_FILEDESCRIPTORS)), 0);
781     int nFD = RaiseFileDescriptorLimit(nMaxConnections + MIN_CORE_FILEDESCRIPTORS);
782     if (nFD < MIN_CORE_FILEDESCRIPTORS)
783         return InitError(_("Not enough file descriptors available."));
784     if (nFD - MIN_CORE_FILEDESCRIPTORS < nMaxConnections)
785         nMaxConnections = nFD - MIN_CORE_FILEDESCRIPTORS;
786
787     // if using block pruning, then disable txindex
788     // also disable the wallet (for now, until SPV support is implemented in wallet)
789     if (GetArg("-prune", 0)) {
790         if (GetBoolArg("-txindex", false))
791             return InitError(_("Prune mode is incompatible with -txindex."));
792 #ifdef ENABLE_WALLET
793         if (!GetBoolArg("-disablewallet", false)) {
794             if (SoftSetBoolArg("-disablewallet", true))
795                 LogPrintf("%s : parameter interaction: -prune -> setting -disablewallet=1\n", __func__);
796             else
797                 return InitError(_("Can't run with a wallet in prune mode."));
798         }
799 #endif
800     }
801
802     // ********************************************************* Step 3: parameter-to-internal-flags
803
804     fDebug = !mapMultiArgs["-debug"].empty();
805     // Special-case: if -debug=0/-nodebug is set, turn off debugging messages
806     const vector<string>& categories = mapMultiArgs["-debug"];
807     if (GetBoolArg("-nodebug", false) || find(categories.begin(), categories.end(), string("0")) != categories.end())
808         fDebug = false;
809
810     // Check for -debugnet
811     if (GetBoolArg("-debugnet", false))
812         InitWarning(_("Warning: Unsupported argument -debugnet ignored, use -debug=net."));
813     // Check for -socks - as this is a privacy risk to continue, exit here
814     if (mapArgs.count("-socks"))
815         return InitError(_("Error: Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported."));
816     // Check for -tor - as this is a privacy risk to continue, exit here
817     if (GetBoolArg("-tor", false))
818         return InitError(_("Error: Unsupported argument -tor found, use -onion."));
819
820     if (GetBoolArg("-benchmark", false))
821         InitWarning(_("Warning: Unsupported argument -benchmark ignored, use -debug=bench."));
822
823     // Checkmempool and checkblockindex default to true in regtest mode
824     mempool.setSanityCheck(GetBoolArg("-checkmempool", chainparams.DefaultConsistencyChecks()));
825     fCheckBlockIndex = GetBoolArg("-checkblockindex", chainparams.DefaultConsistencyChecks());
826     fCheckpointsEnabled = GetBoolArg("-checkpoints", true);
827
828     // -par=0 means autodetect, but nScriptCheckThreads==0 means no concurrency
829     nScriptCheckThreads = GetArg("-par", DEFAULT_SCRIPTCHECK_THREADS);
830     if (nScriptCheckThreads <= 0)
831         nScriptCheckThreads += boost::thread::hardware_concurrency();
832     if (nScriptCheckThreads <= 1)
833         nScriptCheckThreads = 0;
834     else if (nScriptCheckThreads > MAX_SCRIPTCHECK_THREADS)
835         nScriptCheckThreads = MAX_SCRIPTCHECK_THREADS;
836
837     fServer = GetBoolArg("-server", false);
838
839     // block pruning; get the amount of disk space (in MB) to allot for block & undo files
840     int64_t nSignedPruneTarget = GetArg("-prune", 0) * 1024 * 1024;
841     if (nSignedPruneTarget < 0) {
842         return InitError(_("Prune cannot be configured with a negative value."));
843     }
844     nPruneTarget = (uint64_t) nSignedPruneTarget;
845     if (nPruneTarget) {
846         if (nPruneTarget < MIN_DISK_SPACE_FOR_BLOCK_FILES) {
847             return InitError(strprintf(_("Prune configured below the minimum of %d MB.  Please use a higher number."), MIN_DISK_SPACE_FOR_BLOCK_FILES / 1024 / 1024));
848         }
849         LogPrintf("Prune configured to target %uMiB on disk for block and undo files.\n", nPruneTarget / 1024 / 1024);
850         fPruneMode = true;
851     }
852
853 #ifdef ENABLE_WALLET
854     bool fDisableWallet = GetBoolArg("-disablewallet", false);
855 #endif
856
857     nConnectTimeout = GetArg("-timeout", DEFAULT_CONNECT_TIMEOUT);
858     if (nConnectTimeout <= 0)
859         nConnectTimeout = DEFAULT_CONNECT_TIMEOUT;
860
861     // Fee-per-kilobyte amount considered the same as "free"
862     // If you are mining, be careful setting this:
863     // if you set it to zero then
864     // a transaction spammer can cheaply fill blocks using
865     // 1-satoshi-fee transactions. It should be set above the real
866     // cost to you of processing a transaction.
867     if (mapArgs.count("-minrelaytxfee"))
868     {
869         CAmount n = 0;
870         if (ParseMoney(mapArgs["-minrelaytxfee"], n) && n > 0)
871             ::minRelayTxFee = CFeeRate(n);
872         else
873             return InitError(strprintf(_("Invalid amount for -minrelaytxfee=<amount>: '%s'"), mapArgs["-minrelaytxfee"]));
874     }
875
876 #ifdef ENABLE_WALLET
877     if (mapArgs.count("-mintxfee"))
878     {
879         CAmount n = 0;
880         if (ParseMoney(mapArgs["-mintxfee"], n) && n > 0)
881             CWallet::minTxFee = CFeeRate(n);
882         else
883             return InitError(strprintf(_("Invalid amount for -mintxfee=<amount>: '%s'"), mapArgs["-mintxfee"]));
884     }
885     if (mapArgs.count("-paytxfee"))
886     {
887         CAmount nFeePerK = 0;
888         if (!ParseMoney(mapArgs["-paytxfee"], nFeePerK))
889             return InitError(strprintf(_("Invalid amount for -paytxfee=<amount>: '%s'"), mapArgs["-paytxfee"]));
890         if (nFeePerK > nHighTransactionFeeWarning)
891             InitWarning(_("Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction."));
892         payTxFee = CFeeRate(nFeePerK, 1000);
893         if (payTxFee < ::minRelayTxFee)
894         {
895             return InitError(strprintf(_("Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s)"),
896                                        mapArgs["-paytxfee"], ::minRelayTxFee.ToString()));
897         }
898     }
899     if (mapArgs.count("-maxtxfee"))
900     {
901         CAmount nMaxFee = 0;
902         if (!ParseMoney(mapArgs["-maxtxfee"], nMaxFee))
903             return InitError(strprintf(_("Invalid amount for -maxtxfee=<amount>: '%s'"), mapArgs["-maptxfee"]));
904         if (nMaxFee > nHighTransactionMaxFeeWarning)
905             InitWarning(_("Warning: -maxtxfee is set very high! Fees this large could be paid on a single transaction."));
906         maxTxFee = nMaxFee;
907         if (CFeeRate(maxTxFee, 1000) < ::minRelayTxFee)
908         {
909             return InitError(strprintf(_("Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions)"),
910                                        mapArgs["-maxtxfee"], ::minRelayTxFee.ToString()));
911         }
912     }
913     nTxConfirmTarget = GetArg("-txconfirmtarget", DEFAULT_TX_CONFIRM_TARGET);
914     bSpendZeroConfChange = GetBoolArg("-spendzeroconfchange", true);
915     fSendFreeTransactions = GetBoolArg("-sendfreetransactions", false);
916
917     std::string strWalletFile = GetArg("-wallet", "wallet.dat");
918 #endif // ENABLE_WALLET
919
920     fIsBareMultisigStd = GetBoolArg("-permitbaremultisig", true);
921     nMaxDatacarrierBytes = GetArg("-datacarriersize", nMaxDatacarrierBytes);
922
923     fAlerts = GetBoolArg("-alerts", DEFAULT_ALERTS);
924
925     // ********************************************************* Step 4: application initialization: dir lock, daemonize, pidfile, debug log
926
927     // Initialize libsodium
928     if (init_and_check_sodium() == -1) {
929         return false;
930     }
931
932     // Initialize elliptic curve code
933     ECC_Start();
934
935     // Sanity check
936     if (!InitSanityCheck())
937         return InitError(_("Initialization sanity check failed. Komodo is shutting down."));
938
939     std::string strDataDir = GetDataDir().string();
940 #ifdef ENABLE_WALLET
941     // Wallet file must be a plain filename without a directory
942     if (strWalletFile != boost::filesystem::basename(strWalletFile) + boost::filesystem::extension(strWalletFile))
943         return InitError(strprintf(_("Wallet %s resides outside data directory %s"), strWalletFile, strDataDir));
944 #endif
945     // Make sure only a single Bitcoin process is using the data directory.
946     boost::filesystem::path pathLockFile = GetDataDir() / ".lock";
947     FILE* file = fopen(pathLockFile.string().c_str(), "a"); // empty lock file; created if it doesn't exist.
948     if (file) fclose(file);
949
950     try {
951         static boost::interprocess::file_lock lock(pathLockFile.string().c_str());
952         if (!lock.try_lock())
953             return InitError(strprintf(_("Cannot obtain a lock on data directory %s. Komodo is probably already running."), strDataDir));
954     } catch(const boost::interprocess::interprocess_exception& e) {
955         return InitError(strprintf(_("Cannot obtain a lock on data directory %s. Komodo is probably already running.") + " %s.", strDataDir, e.what()));
956     }
957
958 #ifndef WIN32
959     CreatePidFile(GetPidFile(), getpid());
960 #endif
961     if (GetBoolArg("-shrinkdebugfile", !fDebug))
962         ShrinkDebugFile();
963     LogPrintf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
964     LogPrintf("Komodo version %s (%s)\n", FormatFullVersion(), CLIENT_DATE);
965     LogPrintf("Using OpenSSL version %s\n", SSLeay_version(SSLEAY_VERSION));
966 #ifdef ENABLE_WALLET
967     LogPrintf("Using BerkeleyDB version %s\n", DbEnv::version(0, 0, 0));
968 #endif
969     if (!fLogTimestamps)
970         LogPrintf("Startup time: %s\n", DateTimeStrFormat("%Y-%m-%d %H:%M:%S", GetTime()));
971     LogPrintf("Default data directory %s\n", GetDefaultDataDir().string());
972     LogPrintf("Using data directory %s\n", strDataDir);
973     LogPrintf("Using config file %s\n", GetConfigFile().string());
974     LogPrintf("Using at most %i connections (%i file descriptors available)\n", nMaxConnections, nFD);
975     std::ostringstream strErrors;
976
977     LogPrintf("Using %u threads for script verification\n", nScriptCheckThreads);
978     if (nScriptCheckThreads) {
979         for (int i=0; i<nScriptCheckThreads-1; i++)
980             threadGroup.create_thread(&ThreadScriptCheck);
981     }
982
983     // Start the lightweight task scheduler thread
984     CScheduler::Function serviceLoop = boost::bind(&CScheduler::serviceQueue, &scheduler);
985     threadGroup.create_thread(boost::bind(&TraceThread<CScheduler::Function>, "scheduler", serviceLoop));
986
987     // Count uptime
988     MarkStartTime();
989
990     if ((chainparams.NetworkIDString() != "regtest") &&
991             GetBoolArg("-showmetrics", 0) &&
992             !fPrintToConsole && !GetBoolArg("-daemon", false)) {
993         // Start the persistent metrics interface
994         ConnectMetricsScreen();
995         threadGroup.create_thread(&ThreadShowMetricsScreen);
996     }
997
998     // These must be disabled for now, they are buggy and we probably don't
999     // want any of libsnark's profiling in production anyway.
1000     libsnark::inhibit_profiling_info = true;
1001     libsnark::inhibit_profiling_counters = true;
1002
1003     // Initialize Zcash circuit parameters
1004     ZC_LoadParams();
1005
1006     /* Start the RPC server already.  It will be started in "warmup" mode
1007      * and not really process calls already (but it will signify connections
1008      * that the server is there and will be ready later).  Warmup mode will
1009      * be disabled when initialisation is finished.
1010      */
1011     if (fServer)
1012     {
1013         uiInterface.InitMessage.connect(SetRPCWarmupStatus);
1014         RPCServer::OnStopped(&OnRPCStopped);
1015         RPCServer::OnPreCommand(&OnRPCPreCommand);
1016         StartRPCThreads();
1017     }
1018
1019     int64_t nStart;
1020
1021     // ********************************************************* Step 5: verify wallet database integrity
1022 #ifdef ENABLE_WALLET
1023     if (!fDisableWallet) {
1024         LogPrintf("Using wallet %s\n", strWalletFile);
1025         uiInterface.InitMessage(_("Verifying wallet..."));
1026
1027         std::string warningString;
1028         std::string errorString;
1029         
1030         if (!CWallet::Verify(strWalletFile, warningString, errorString))
1031             return false;
1032         
1033         if (!warningString.empty())
1034             InitWarning(warningString);
1035         if (!errorString.empty())
1036             return InitError(warningString);
1037         
1038     } // (!fDisableWallet)
1039 #endif // ENABLE_WALLET
1040     // ********************************************************* Step 6: network initialization
1041
1042     RegisterNodeSignals(GetNodeSignals());
1043
1044     if (mapArgs.count("-onlynet")) {
1045         std::set<enum Network> nets;
1046         BOOST_FOREACH(std::string snet, mapMultiArgs["-onlynet"]) {
1047             enum Network net = ParseNetwork(snet);
1048             if (net == NET_UNROUTABLE)
1049                 return InitError(strprintf(_("Unknown network specified in -onlynet: '%s'"), snet));
1050             nets.insert(net);
1051         }
1052         for (int n = 0; n < NET_MAX; n++) {
1053             enum Network net = (enum Network)n;
1054             if (!nets.count(net))
1055                 SetLimited(net);
1056         }
1057     }
1058
1059     if (mapArgs.count("-whitelist")) {
1060         BOOST_FOREACH(const std::string& net, mapMultiArgs["-whitelist"]) {
1061             CSubNet subnet(net);
1062             if (!subnet.IsValid())
1063                 return InitError(strprintf(_("Invalid netmask specified in -whitelist: '%s'"), net));
1064             CNode::AddWhitelistedRange(subnet);
1065         }
1066     }
1067
1068     proxyType addrProxy;
1069     bool fProxy = false;
1070     if (mapArgs.count("-proxy")) {
1071         addrProxy = proxyType(CService(mapArgs["-proxy"], 9050), GetBoolArg("-proxyrandomize", true));
1072         if (!addrProxy.IsValid())
1073             return InitError(strprintf(_("Invalid -proxy address: '%s'"), mapArgs["-proxy"]));
1074
1075         SetProxy(NET_IPV4, addrProxy);
1076         SetProxy(NET_IPV6, addrProxy);
1077         SetNameProxy(addrProxy);
1078         fProxy = true;
1079     }
1080
1081     // -onion can override normal proxy, -noonion disables connecting to .onion entirely
1082     if (!(mapArgs.count("-onion") && mapArgs["-onion"] == "0") &&
1083         (fProxy || mapArgs.count("-onion"))) {
1084         proxyType addrOnion;
1085         if (!mapArgs.count("-onion"))
1086             addrOnion = addrProxy;
1087         else
1088             addrOnion = proxyType(CService(mapArgs["-onion"], 9050), GetBoolArg("-proxyrandomize", true));
1089         if (!addrOnion.IsValid())
1090             return InitError(strprintf(_("Invalid -onion address: '%s'"), mapArgs["-onion"]));
1091         SetProxy(NET_TOR, addrOnion);
1092         SetReachable(NET_TOR);
1093     }
1094
1095     // see Step 2: parameter interactions for more information about these
1096     fListen = GetBoolArg("-listen", DEFAULT_LISTEN);
1097     fDiscover = GetBoolArg("-discover", true);
1098     fNameLookup = GetBoolArg("-dns", true);
1099
1100     bool fBound = false;
1101     if (fListen) {
1102         if (mapArgs.count("-bind") || mapArgs.count("-whitebind")) {
1103             BOOST_FOREACH(std::string strBind, mapMultiArgs["-bind"]) {
1104                 CService addrBind;
1105                 if (!Lookup(strBind.c_str(), addrBind, GetListenPort(), false))
1106                     return InitError(strprintf(_("Cannot resolve -bind address: '%s'"), strBind));
1107                 fBound |= Bind(addrBind, (BF_EXPLICIT | BF_REPORT_ERROR));
1108             }
1109             BOOST_FOREACH(std::string strBind, mapMultiArgs["-whitebind"]) {
1110                 CService addrBind;
1111                 if (!Lookup(strBind.c_str(), addrBind, 0, false))
1112                     return InitError(strprintf(_("Cannot resolve -whitebind address: '%s'"), strBind));
1113                 if (addrBind.GetPort() == 0)
1114                     return InitError(strprintf(_("Need to specify a port with -whitebind: '%s'"), strBind));
1115                 fBound |= Bind(addrBind, (BF_EXPLICIT | BF_REPORT_ERROR | BF_WHITELIST));
1116             }
1117         }
1118         else {
1119             struct in_addr inaddr_any;
1120             inaddr_any.s_addr = INADDR_ANY;
1121             fBound |= Bind(CService(in6addr_any, GetListenPort()), BF_NONE);
1122             fBound |= Bind(CService(inaddr_any, GetListenPort()), !fBound ? BF_REPORT_ERROR : BF_NONE);
1123         }
1124         if (!fBound)
1125             return InitError(_("Failed to listen on any port. Use -listen=0 if you want this."));
1126     }
1127
1128     if (mapArgs.count("-externalip")) {
1129         BOOST_FOREACH(string strAddr, mapMultiArgs["-externalip"]) {
1130             CService addrLocal(strAddr, GetListenPort(), fNameLookup);
1131             if (!addrLocal.IsValid())
1132                 return InitError(strprintf(_("Cannot resolve -externalip address: '%s'"), strAddr));
1133             AddLocal(CService(strAddr, GetListenPort(), fNameLookup), LOCAL_MANUAL);
1134         }
1135     }
1136
1137     BOOST_FOREACH(string strDest, mapMultiArgs["-seednode"])
1138         AddOneShot(strDest);
1139
1140     // ********************************************************* Step 7: load block chain
1141
1142     fReindex = GetBoolArg("-reindex", false);
1143
1144     // Upgrading to 0.8; hard-link the old blknnnn.dat files into /blocks/
1145     boost::filesystem::path blocksDir = GetDataDir() / "blocks";
1146     if (!boost::filesystem::exists(blocksDir))
1147     {
1148         boost::filesystem::create_directories(blocksDir);
1149         bool linked = false;
1150         for (unsigned int i = 1; i < 10000; i++) {
1151             boost::filesystem::path source = GetDataDir() / strprintf("blk%04u.dat", i);
1152             if (!boost::filesystem::exists(source)) break;
1153             boost::filesystem::path dest = blocksDir / strprintf("blk%05u.dat", i-1);
1154             try {
1155                 boost::filesystem::create_hard_link(source, dest);
1156                 LogPrintf("Hardlinked %s -> %s\n", source.string(), dest.string());
1157                 linked = true;
1158             } catch (const boost::filesystem::filesystem_error& e) {
1159                 // Note: hardlink creation failing is not a disaster, it just means
1160                 // blocks will get re-downloaded from peers.
1161                 LogPrintf("Error hardlinking blk%04u.dat: %s\n", i, e.what());
1162                 break;
1163             }
1164         }
1165         if (linked)
1166         {
1167             fReindex = true;
1168         }
1169     }
1170
1171     // cache size calculations
1172     int64_t nTotalCache = (GetArg("-dbcache", nDefaultDbCache) << 20);
1173     nTotalCache = std::max(nTotalCache, nMinDbCache << 20); // total cache cannot be less than nMinDbCache
1174     nTotalCache = std::min(nTotalCache, nMaxDbCache << 20); // total cache cannot be greated than nMaxDbcache
1175     int64_t nBlockTreeDBCache = nTotalCache / 8;
1176     if (nBlockTreeDBCache > (1 << 21) && !GetBoolArg("-txindex", false))
1177         nBlockTreeDBCache = (1 << 21); // block tree db cache shouldn't be larger than 2 MiB
1178     nTotalCache -= nBlockTreeDBCache;
1179     int64_t nCoinDBCache = std::min(nTotalCache / 2, (nTotalCache / 4) + (1 << 23)); // use 25%-50% of the remainder for disk cache
1180     nTotalCache -= nCoinDBCache;
1181     nCoinCacheUsage = nTotalCache; // the rest goes to in-memory cache
1182     LogPrintf("Cache configuration:\n");
1183     LogPrintf("* Using %.1fMiB for block index database\n", nBlockTreeDBCache * (1.0 / 1024 / 1024));
1184     LogPrintf("* Using %.1fMiB for chain state database\n", nCoinDBCache * (1.0 / 1024 / 1024));
1185     LogPrintf("* Using %.1fMiB for in-memory UTXO set\n", nCoinCacheUsage * (1.0 / 1024 / 1024));
1186
1187     bool fLoaded = false;
1188     while (!fLoaded) {
1189         bool fReset = fReindex;
1190         std::string strLoadError;
1191
1192         uiInterface.InitMessage(_("Loading block index..."));
1193
1194         nStart = GetTimeMillis();
1195         do {
1196             try {
1197                 UnloadBlockIndex();
1198                 delete pcoinsTip;
1199                 delete pcoinsdbview;
1200                 delete pcoinscatcher;
1201                 delete pblocktree;
1202
1203                 pblocktree = new CBlockTreeDB(nBlockTreeDBCache, false, fReindex);
1204                 pcoinsdbview = new CCoinsViewDB(nCoinDBCache, false, fReindex);
1205                 pcoinscatcher = new CCoinsViewErrorCatcher(pcoinsdbview);
1206                 pcoinsTip = new CCoinsViewCache(pcoinscatcher);
1207
1208                 if (fReindex) {
1209                     pblocktree->WriteReindexing(true);
1210                     //If we're reindexing in prune mode, wipe away unusable block files and all undo data files
1211                     if (fPruneMode)
1212                         CleanupBlockRevFiles();
1213                 }
1214
1215                 if (!LoadBlockIndex()) {
1216                     strLoadError = _("Error loading block database");
1217                     break;
1218                 }
1219
1220                 // If the loaded chain has a wrong genesis, bail out immediately
1221                 // (we're likely using a testnet datadir, or the other way around).
1222                 if (!mapBlockIndex.empty() && mapBlockIndex.count(chainparams.GetConsensus().hashGenesisBlock) == 0)
1223                     return InitError(_("Incorrect or no genesis block found. Wrong datadir for network?"));
1224
1225                 // Initialize the block index (no-op if non-empty database was already loaded)
1226                 if (!InitBlockIndex()) {
1227                     strLoadError = _("Error initializing block database");
1228                     break;
1229                 }
1230
1231                 // Check for changed -txindex state
1232                 if (fTxIndex != GetBoolArg("-txindex", false)) {
1233                     strLoadError = _("You need to rebuild the database using -reindex to change -txindex");
1234                     break;
1235                 }
1236
1237                 // Check for changed -prune state.  What we are concerned about is a user who has pruned blocks
1238                 // in the past, but is now trying to run unpruned.
1239                 if (fHavePruned && !fPruneMode) {
1240                     strLoadError = _("You need to rebuild the database using -reindex to go back to unpruned mode.  This will redownload the entire blockchain");
1241                     break;
1242                 }
1243
1244                 uiInterface.InitMessage(_("Verifying blocks..."));
1245                 if (fHavePruned && GetArg("-checkblocks", 288) > MIN_BLOCKS_TO_KEEP) {
1246                     LogPrintf("Prune: pruned datadir may not have more than %d blocks; -checkblocks=%d may fail\n",
1247                         MIN_BLOCKS_TO_KEEP, GetArg("-checkblocks", 288));
1248                 }
1249                 if ( KOMODO_REWIND >= 0 )
1250                 {
1251                     if (!CVerifyDB().VerifyDB(pcoinsdbview, GetArg("-checklevel", 3),
1252                                               GetArg("-checkblocks", 288))) {
1253                         strLoadError = _("Corrupted block database detected");
1254                         break;
1255                     }
1256                 }
1257             } catch (const std::exception& e) {
1258                 if (fDebug) LogPrintf("%s\n", e.what());
1259                 strLoadError = _("Error opening block database");
1260                 break;
1261             }
1262
1263             fLoaded = true;
1264         } while(false);
1265
1266         if (!fLoaded) {
1267             // first suggest a reindex
1268             if (!fReset) {
1269                 bool fRet = uiInterface.ThreadSafeMessageBox(
1270                     strLoadError + ".\n\n" + _("error in HDD data, might just need to update to latest, if that doesnt work, then you need to resync"),
1271                     "", CClientUIInterface::MSG_ERROR | CClientUIInterface::BTN_ABORT);
1272                 if (fRet) {
1273                     fReindex = true;
1274                     fRequestShutdown = false;
1275                 } else {
1276                     LogPrintf("Aborted block database rebuild. Exiting.\n");
1277                     return false;
1278                 }
1279             } else {
1280                 return InitError(strLoadError);
1281             }
1282         }
1283     }
1284
1285     // As LoadBlockIndex can take several minutes, it's possible the user
1286     // requested to kill the GUI during the last operation. If so, exit.
1287     // As the program has not fully started yet, Shutdown() is possibly overkill.
1288     if (fRequestShutdown)
1289     {
1290         LogPrintf("Shutdown requested. Exiting.\n");
1291         return false;
1292     }
1293     LogPrintf(" block index %15dms\n", GetTimeMillis() - nStart);
1294
1295     boost::filesystem::path est_path = GetDataDir() / FEE_ESTIMATES_FILENAME;
1296     CAutoFile est_filein(fopen(est_path.string().c_str(), "rb"), SER_DISK, CLIENT_VERSION);
1297     // Allowed to fail as this file IS missing on first startup.
1298     if (!est_filein.IsNull())
1299         mempool.ReadFeeEstimates(est_filein);
1300     fFeeEstimatesInitialized = true;
1301
1302
1303     // ********************************************************* Step 8: load wallet
1304 #ifdef ENABLE_WALLET
1305     if (fDisableWallet) {
1306         pwalletMain = NULL;
1307         LogPrintf("Wallet disabled!\n");
1308     } else {
1309
1310         // needed to restore wallet transaction meta data after -zapwallettxes
1311         std::vector<CWalletTx> vWtx;
1312
1313         if (GetBoolArg("-zapwallettxes", false)) {
1314             uiInterface.InitMessage(_("Zapping all transactions from wallet..."));
1315
1316             pwalletMain = new CWallet(strWalletFile);
1317             DBErrors nZapWalletRet = pwalletMain->ZapWalletTx(vWtx);
1318             if (nZapWalletRet != DB_LOAD_OK) {
1319                 uiInterface.InitMessage(_("Error loading wallet.dat: Wallet corrupted"));
1320                 return false;
1321             }
1322
1323             delete pwalletMain;
1324             pwalletMain = NULL;
1325         }
1326
1327         uiInterface.InitMessage(_("Loading wallet..."));
1328
1329         nStart = GetTimeMillis();
1330         bool fFirstRun = true;
1331         pwalletMain = new CWallet(strWalletFile);
1332         DBErrors nLoadWalletRet = pwalletMain->LoadWallet(fFirstRun);
1333         if (nLoadWalletRet != DB_LOAD_OK)
1334         {
1335             if (nLoadWalletRet == DB_CORRUPT)
1336                 strErrors << _("Error loading wallet.dat: Wallet corrupted") << "\n";
1337             else if (nLoadWalletRet == DB_NONCRITICAL_ERROR)
1338             {
1339                 string msg(_("Warning: error reading wallet.dat! All keys read correctly, but transaction data"
1340                              " or address book entries might be missing or incorrect."));
1341                 InitWarning(msg);
1342             }
1343             else if (nLoadWalletRet == DB_TOO_NEW)
1344                 strErrors << _("Error loading wallet.dat: Wallet requires newer version of Bitcoin Core") << "\n";
1345             else if (nLoadWalletRet == DB_NEED_REWRITE)
1346             {
1347                 strErrors << _("Wallet needed to be rewritten: restart Bitcoin Core to complete") << "\n";
1348                 LogPrintf("%s", strErrors.str());
1349                 return InitError(strErrors.str());
1350             }
1351             else
1352                 strErrors << _("Error loading wallet.dat") << "\n";
1353         }
1354
1355         if (GetBoolArg("-upgradewallet", fFirstRun))
1356         {
1357             int nMaxVersion = GetArg("-upgradewallet", 0);
1358             if (nMaxVersion == 0) // the -upgradewallet without argument case
1359             {
1360                 LogPrintf("Performing wallet upgrade to %i\n", FEATURE_LATEST);
1361                 nMaxVersion = CLIENT_VERSION;
1362                 pwalletMain->SetMinVersion(FEATURE_LATEST); // permanently upgrade the wallet immediately
1363             }
1364             else
1365                 LogPrintf("Allowing wallet upgrade up to %i\n", nMaxVersion);
1366             if (nMaxVersion < pwalletMain->GetVersion())
1367                 strErrors << _("Cannot downgrade wallet") << "\n";
1368             pwalletMain->SetMaxVersion(nMaxVersion);
1369         }
1370
1371         if (fFirstRun)
1372         {
1373             // Create new keyUser and set as default key
1374             RandAddSeedPerfmon();
1375
1376             CPubKey newDefaultKey;
1377             if (pwalletMain->GetKeyFromPool(newDefaultKey)) {
1378                 pwalletMain->SetDefaultKey(newDefaultKey);
1379                 if (!pwalletMain->SetAddressBook(pwalletMain->vchDefaultKey.GetID(), "", "receive"))
1380                     strErrors << _("Cannot write default address") << "\n";
1381             }
1382
1383             pwalletMain->SetBestChain(chainActive.GetLocator());
1384         }
1385
1386         LogPrintf("%s", strErrors.str());
1387         LogPrintf(" wallet      %15dms\n", GetTimeMillis() - nStart);
1388
1389         RegisterValidationInterface(pwalletMain);
1390
1391         CBlockIndex *pindexRescan = chainActive.Tip();
1392         if (GetBoolArg("-rescan", false))
1393         {
1394             pwalletMain->ClearNoteWitnessCache();
1395             pindexRescan = chainActive.Genesis();
1396         }
1397         else
1398         {
1399             CWalletDB walletdb(strWalletFile);
1400             CBlockLocator locator;
1401             if (walletdb.ReadBestBlock(locator))
1402                 pindexRescan = FindForkInGlobalIndex(chainActive, locator);
1403             else
1404                 pindexRescan = chainActive.Genesis();
1405         }
1406         if (chainActive.Tip() && chainActive.Tip() != pindexRescan)
1407         {
1408             uiInterface.InitMessage(_("Rescanning..."));
1409             LogPrintf("Rescanning last %i blocks (from block %i)...\n", chainActive.Height() - pindexRescan->nHeight, pindexRescan->nHeight);
1410             nStart = GetTimeMillis();
1411             pwalletMain->ScanForWalletTransactions(pindexRescan, true);
1412             LogPrintf(" rescan      %15dms\n", GetTimeMillis() - nStart);
1413             pwalletMain->SetBestChain(chainActive.GetLocator());
1414             nWalletDBUpdated++;
1415
1416             // Restore wallet transaction metadata after -zapwallettxes=1
1417             if (GetBoolArg("-zapwallettxes", false) && GetArg("-zapwallettxes", "1") != "2")
1418             {
1419                 CWalletDB walletdb(strWalletFile);
1420
1421                 BOOST_FOREACH(const CWalletTx& wtxOld, vWtx)
1422                 {
1423                     uint256 hash = wtxOld.GetHash();
1424                     std::map<uint256, CWalletTx>::iterator mi = pwalletMain->mapWallet.find(hash);
1425                     if (mi != pwalletMain->mapWallet.end())
1426                     {
1427                         const CWalletTx* copyFrom = &wtxOld;
1428                         CWalletTx* copyTo = &mi->second;
1429                         copyTo->mapValue = copyFrom->mapValue;
1430                         copyTo->vOrderForm = copyFrom->vOrderForm;
1431                         copyTo->nTimeReceived = copyFrom->nTimeReceived;
1432                         copyTo->nTimeSmart = copyFrom->nTimeSmart;
1433                         copyTo->fFromMe = copyFrom->fFromMe;
1434                         copyTo->strFromAccount = copyFrom->strFromAccount;
1435                         copyTo->nOrderPos = copyFrom->nOrderPos;
1436                         copyTo->WriteToDisk(&walletdb);
1437                     }
1438                 }
1439             }
1440         }
1441         pwalletMain->SetBroadcastTransactions(GetBoolArg("-walletbroadcast", true));
1442     } // (!fDisableWallet)
1443 #else // ENABLE_WALLET
1444     LogPrintf("No wallet support compiled in!\n");
1445 #endif // !ENABLE_WALLET
1446
1447     // ********************************************************* Step 9: data directory maintenance
1448
1449     // if pruning, unset the service bit and perform the initial blockstore prune
1450     // after any wallet rescanning has taken place.
1451     if (fPruneMode) {
1452         LogPrintf("Unsetting NODE_NETWORK on prune mode\n");
1453         nLocalServices &= ~NODE_NETWORK;
1454         if (!fReindex) {
1455             uiInterface.InitMessage(_("Pruning blockstore..."));
1456             PruneAndFlush();
1457         }
1458     }
1459
1460     // ********************************************************* Step 10: import blocks
1461
1462     if (mapArgs.count("-blocknotify"))
1463         uiInterface.NotifyBlockTip.connect(BlockNotifyCallback);
1464     if ( KOMODO_REWIND == 0 )
1465     {
1466         uiInterface.InitMessage(_("Activating best chain..."));
1467         // scan for better chains in the block chain database, that are not yet connected in the active best chain
1468         CValidationState state;
1469         if ( !ActivateBestChain(state))
1470             strErrors << "Failed to connect best block";
1471     }
1472     std::vector<boost::filesystem::path> vImportFiles;
1473     if (mapArgs.count("-loadblock"))
1474     {
1475         BOOST_FOREACH(string strFile, mapMultiArgs["-loadblock"])
1476             vImportFiles.push_back(strFile);
1477     }
1478     threadGroup.create_thread(boost::bind(&ThreadImport, vImportFiles));
1479     if (chainActive.Tip() == NULL) {
1480         LogPrintf("Waiting for genesis block to be imported...\n");
1481         while (!fRequestShutdown && chainActive.Tip() == NULL)
1482             MilliSleep(10);
1483     }
1484
1485     // ********************************************************* Step 11: start node
1486
1487     if (!CheckDiskSpace())
1488         return false;
1489
1490     if (!strErrors.str().empty())
1491         return InitError(strErrors.str());
1492
1493     RandAddSeedPerfmon();
1494
1495     //// debug print
1496     LogPrintf("mapBlockIndex.size() = %u\n",   mapBlockIndex.size());
1497     LogPrintf("nBestHeight = %d\n",                   chainActive.Height());
1498 #ifdef ENABLE_WALLET
1499     LogPrintf("setKeyPool.size() = %u\n",      pwalletMain ? pwalletMain->setKeyPool.size() : 0);
1500     LogPrintf("mapWallet.size() = %u\n",       pwalletMain ? pwalletMain->mapWallet.size() : 0);
1501     LogPrintf("mapAddressBook.size() = %u\n",  pwalletMain ? pwalletMain->mapAddressBook.size() : 0);
1502 #endif
1503
1504     StartNode(threadGroup, scheduler);
1505
1506     // Monitor the chain, and alert if we get blocks much quicker or slower than expected
1507     int64_t nPowTargetSpacing = Params().GetConsensus().nPowTargetSpacing;
1508     CScheduler::Function f = boost::bind(&PartitionCheck, &IsInitialBlockDownload,
1509                                          boost::ref(cs_main), boost::cref(pindexBestHeader), nPowTargetSpacing);
1510     scheduler.scheduleEvery(f, nPowTargetSpacing);
1511
1512 #ifdef ENABLE_WALLET
1513     // Generate coins in the background
1514     if (pwalletMain)
1515         GenerateBitcoins(GetBoolArg("-gen", false), pwalletMain, GetArg("-genproclimit", 1));
1516 #endif
1517
1518     // ********************************************************* Step 11: finished
1519
1520     SetRPCWarmupFinished();
1521     uiInterface.InitMessage(_("Done loading"));
1522
1523 #ifdef ENABLE_WALLET
1524     if (pwalletMain) {
1525         // Add wallet transactions that aren't already in a block to mapTransactions
1526         pwalletMain->ReacceptWalletTransactions();
1527
1528         // Run a thread to flush wallet periodically
1529         threadGroup.create_thread(boost::bind(&ThreadFlushWalletDB, boost::ref(pwalletMain->strWalletFile)));
1530     }
1531 #endif
1532
1533     // SENDALERT
1534     threadGroup.create_thread(boost::bind(ThreadSendAlert));
1535
1536     return !fRequestShutdown;
1537 }
This page took 0.110469 seconds and 2 git commands to generate.