Includes cleanup
[novacoin.git] / src / init.cpp
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2012 The Bitcoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 #include "init.h"
6 #include "wallet.h"
7 #include "base58.h"
8 #include "txdb-leveldb.h"
9 #include "walletdb.h"
10 #include "bitcoinrpc.h"
11 #include "net.h"
12 #include "random.h"
13 #include "util.h"
14 #include "ipcollector.h"
15 #include "interface.h"
16 #include "checkpoints.h"
17
18 #include <boost/filesystem/fstream.hpp>
19 #include <boost/filesystem/convenience.hpp>
20 #include <boost/interprocess/sync/file_lock.hpp>
21 #include <boost/algorithm/string/predicate.hpp>
22 #include <openssl/crypto.h>
23
24 #ifndef WIN32
25 #include <signal.h>
26 #endif
27
28
29 using namespace std;
30
31
32 CWallet* pwalletMain;
33 CClientUIInterface uiInterface;
34 std::string strWalletFileName;
35 bool fConfChange;
36 unsigned int nNodeLifespan;
37 bool fUseFastIndex;
38 bool fUseMemoryLog;
39 enum Checkpoints::CPMode CheckpointsMode;
40
41 // Ping and address broadcast intervals
42 extern int64_t nPingInterval;
43 extern int64_t nReserveBalance;
44
45 //////////////////////////////////////////////////////////////////////////////
46 //
47 // Shutdown
48 //
49
50 void ExitTimeout(void* parg)
51 {
52 #ifdef WIN32
53     Sleep(5000);
54     ExitProcess(0);
55 #endif
56 }
57
58 void StartShutdown()
59 {
60 #ifdef QT_GUI
61     // ensure we leave the Qt main loop for a clean GUI exit (Shutdown() is called in bitcoin.cpp afterwards)
62     uiInterface.QueueShutdown();
63 #else
64     // Without UI, Shutdown() can simply be started in a new thread
65     NewThread(Shutdown, NULL);
66 #endif
67 }
68
69 void Shutdown(void* parg)
70 {
71     static CCriticalSection cs_Shutdown;
72     static bool fTaken;
73
74     // Make this thread recognisable as the shutdown thread
75     RenameThread("novacoin-shutoff");
76
77     bool fFirstThread = false;
78     {
79         TRY_LOCK(cs_Shutdown, lockShutdown);
80         if (lockShutdown)
81         {
82             fFirstThread = !fTaken;
83             fTaken = true;
84         }
85     }
86     static bool fExit;
87     if (fFirstThread)
88     {
89         fShutdown = true;
90         fRequestShutdown = true;
91         nTransactionsUpdated++;
92 //        CTxDB().Close();
93         bitdb.Flush(false);
94         StopRPCServer();
95         StopNode();
96         bitdb.Flush(true);
97         boost::filesystem::remove(GetPidFile());
98         UnregisterWallet(pwalletMain);
99         delete pwalletMain;
100         NewThread(ExitTimeout, NULL);
101         Sleep(50);
102         printf("NovaCoin exited\n\n");
103         fExit = true;
104 #ifndef QT_GUI
105         // ensure non-UI client gets exited here, but let Bitcoin-Qt reach 'return 0;' in bitcoin.cpp
106         exit(0);
107 #endif
108     }
109     else
110     {
111         while (!fExit)
112             Sleep(500);
113         Sleep(100);
114         ExitThread(0);
115     }
116 }
117
118 void HandleSIGTERM(int)
119 {
120     fRequestShutdown = true;
121 }
122
123 void HandleSIGHUP(int)
124 {
125     fReopenDebugLog = true;
126 }
127
128
129
130
131
132 //////////////////////////////////////////////////////////////////////////////
133 //
134 // Start
135 //
136 #if !defined(QT_GUI)
137 bool AppInit(int argc, char* argv[])
138 {
139     bool fRet = false;
140     try
141     {
142         //
143         // Parameters
144         //
145         // If Qt is used, parameters/bitcoin.conf are parsed in qt/bitcoin.cpp's main()
146         ParseParameters(argc, argv);
147         if (!boost::filesystem::is_directory(GetDataDir(false)))
148         {
149             fprintf(stderr, "Error: Specified directory does not exist\n");
150             Shutdown(NULL);
151         }
152         ReadConfigFile(mapArgs, mapMultiArgs);
153
154         if (mapArgs.count("-?") || mapArgs.count("--help"))
155         {
156             // First part of help message is specific to bitcoind / RPC client
157             std::string strUsage = _("NovaCoin version") + " " + FormatFullVersion() + "\n\n" +
158                 _("Usage:") + "\n" +
159                   "  novacoind [options]                     " + "\n" +
160                   "  novacoind [options] <command> [params]  " + _("Send command to -server or novacoind") + "\n" +
161                   "  novacoind [options] help                " + _("List commands") + "\n" +
162                   "  novacoind [options] help <command>      " + _("Get help for a command") + "\n";
163
164             strUsage += "\n" + HelpMessage();
165
166             fprintf(stdout, "%s", strUsage.c_str());
167             return false;
168         }
169
170         // Command-line RPC
171         for (int i = 1; i < argc; i++)
172             if (!IsSwitchChar(argv[i][0]) && !boost::algorithm::istarts_with(argv[i], "novacoin:"))
173                 fCommandLine = true;
174
175         if (fCommandLine)
176         {
177             int ret = CommandLineRPC(argc, argv);
178             exit(ret);
179         }
180
181         fRet = AppInit2();
182     }
183     catch (std::exception& e) {
184         PrintException(&e, "AppInit()");
185     } catch (...) {
186         PrintException(NULL, "AppInit()");
187     }
188     if (!fRet)
189         Shutdown(NULL);
190     return fRet;
191 }
192
193 extern void noui_connect();
194 int main(int argc, char* argv[])
195 {
196
197     // Connect bitcoind signal handlers
198     noui_connect();
199
200     bool fRet = AppInit(argc, argv);
201
202     if (fRet && fDaemon)
203         return 0;
204
205     return 1;
206 }
207 #endif
208
209 bool static InitError(const std::string &str)
210 {
211     uiInterface.ThreadSafeMessageBox(str, _("NovaCoin"), CClientUIInterface::OK | CClientUIInterface::MODAL);
212     return false;
213 }
214
215 bool static InitWarning(const std::string &str)
216 {
217     uiInterface.ThreadSafeMessageBox(str, _("NovaCoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
218     return true;
219 }
220
221
222 bool static Bind(const CService &addr, bool fError = true) {
223     if (IsLimited(addr))
224         return false;
225     std::string strError;
226     if (!BindListenPort(addr, strError)) {
227         if (fError)
228             return InitError(strError);
229         return false;
230     }
231     return true;
232 }
233
234 // Core-specific options shared between UI and daemon
235 std::string HelpMessage()
236 {
237     string strUsage = _("Options:") + "\n" +
238         "  -?                     " + _("This help message") + "\n" +
239         "  -conf=<file>           " + _("Specify configuration file (default: novacoin.conf)") + "\n" +
240         "  -pid=<file>            " + _("Specify pid file (default: novacoind.pid)") + "\n" +
241         "  -datadir=<dir>         " + _("Specify data directory") + "\n" +
242         "  -wallet=<file>         " + _("Specify wallet file (within data directory)") + "\n" +
243         "  -dbcache=<n>           " + _("Set database cache size in megabytes (default: 25)") + "\n" +
244         "  -dblogsize=<n>         " + _("Set database disk log size in megabytes (default: 100)") + "\n" +
245         "  -timeout=<n>           " + _("Specify connection timeout in milliseconds (default: 5000)") + "\n" +
246         "  -proxy=<ip:port>       " + _("Connect through socks proxy") + "\n" +
247         "  -socks=<n>             " + _("Select the version of socks proxy to use (4-5, default: 5)") + "\n" +
248         "  -tor=<ip:port>         " + _("Use proxy to reach tor hidden services (default: same as -proxy)") + "\n"
249         "  -torname=<host.onion>  " + _("Send the specified hidden service name when connecting to Tor nodes (default: none)") + "\n"
250         "  -dns                   " + _("Allow DNS lookups for -addnode, -seednode and -connect") + "\n" +
251         "  -port=<port>           " + _("Listen for connections on <port> (default: 7777 or testnet: 17777)") + "\n" +
252         "  -maxconnections=<n>    " + _("Maintain at most <n> connections to peers (default: 125)") + "\n" +
253         "  -addnode=<ip>          " + _("Add a node to connect to and attempt to keep the connection open") + "\n" +
254         "  -connect=<ip>          " + _("Connect only to the specified node(s)") + "\n" +
255         "  -seednode=<ip>         " + _("Connect to a node to retrieve peer addresses, and disconnect") + "\n" +
256         "  -externalip=<ip>       " + _("Specify your own public address") + "\n" +
257         "  -onlynet=<net>         " + _("Only connect to nodes in network <net> (IPv4, IPv6 or Onion)") + "\n" +
258         "  -discover              " + _("Discover own IP address (default: 1 when listening and no -externalip)") + "\n" +
259         "  -irc                   " + _("Find peers using internet relay chat (default: 1)") + "\n" +
260         "  -listen                " + _("Accept connections from outside (default: 1 if no -proxy or -connect)") + "\n" +
261         "  -bind=<addr>           " + _("Bind to given address. Use [host]:port notation for IPv6") + "\n" +
262         "  -dnsseed               " + _("Find peers using DNS lookup (default: 1)") + "\n" +
263         "  -cppolicy              " + _("Sync checkpoints policy (default: strict)") + "\n" +
264         "  -banscore=<n>          " + _("Threshold for disconnecting misbehaving peers (default: 100)") + "\n" +
265         "  -bantime=<n>           " + _("Number of seconds to keep misbehaving peers from reconnecting (default: 86400)") + "\n" +
266         "  -maxreceivebuffer=<n>  " + _("Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000)") + "\n" +
267         "  -maxsendbuffer=<n>     " + _("Maximum per-connection send buffer, <n>*1000 bytes (default: 1000)") + "\n" +
268
269 #ifdef DB_LOG_IN_MEMORY
270         "  -memorylog             " + _("Use in-memory logging for block index database (default: 1)") + "\n" +
271 #endif
272
273         "  -paytxfee=<amt>        " + _("Fee per KB to add to transactions you send") + "\n" +
274         "  -mininput=<amt>        " + (_("When creating transactions, ignore inputs with value less than this (default: ") + FormatMoney(MIN_TXOUT_AMOUNT) + ")") + "\n" +
275 #ifdef QT_GUI
276         "  -server                " + _("Accept command line and JSON-RPC commands") + "\n" +
277 #endif
278 #if !defined(WIN32) && !defined(QT_GUI)
279         "  -daemon                " + _("Run in the background as a daemon and accept commands") + "\n" +
280 #endif
281         "  -testnet               " + _("Use the test network") + "\n" +
282         "  -debug                 " + _("Output extra debugging information. Implies all other -debug* options") + "\n" +
283         "  -debugnet              " + _("Output extra network debugging information") + "\n" +
284         "  -logtimestamps         " + _("Prepend debug output with timestamp") + "\n" +
285         "  -shrinkdebugfile       " + _("Shrink debug.log file on client startup (default: 1 when no -debug)") + "\n" +
286         "  -printtoconsole        " + _("Send trace/debug info to console instead of debug.log file") + "\n" +
287 #ifdef WIN32
288         "  -printtodebugger       " + _("Send trace/debug info to debugger") + "\n" +
289 #endif
290         "  -rpcuser=<user>        " + _("Username for JSON-RPC connections") + "\n" +
291         "  -rpcpassword=<pw>      " + _("Password for JSON-RPC connections") + "\n" +
292         "  -rpcport=<port>        " + _("Listen for JSON-RPC connections on <port> (default: 8344 or testnet: 18344)") + "\n" +
293         "  -rpcallowip=<ip>       " + _("Allow JSON-RPC connections from specified IP address") + "\n" +
294         "  -rpcconnect=<ip>       " + _("Send commands to node running on <ip> (default: 127.0.0.1)") + "\n" +
295         "  -blocknotify=<cmd>     " + _("Execute command when the best block changes (%s in cmd is replaced by block hash)") + "\n" +
296         "  -walletnotify=<cmd>    " + _("Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)") + "\n" +
297         "  -peercollector=<cmd>     " + _("Execute command to collect peer addresses") + "\n" +
298         "  -confchange            " + _("Require a confirmations for change (default: 0)") + "\n" +
299         "  -upgradewallet         " + _("Upgrade wallet to latest format") + "\n" +
300         "  -keypool=<n>           " + _("Set key pool size to <n> (default: 100)") + "\n" +
301         "  -rescan                " + _("Rescan the block chain for missing wallet transactions") + "\n" +
302         "  -zapwallettxes         " + _("Clear list of wallet transactions (diagnostic tool; implies -rescan)") + "\n" +
303         "  -salvagewallet         " + _("Attempt to recover private keys from a corrupt wallet.dat") + "\n" +
304         "  -checkblocks=<n>       " + _("How many blocks to check at startup (default: 2500, 0 = all)") + "\n" +
305         "  -checklevel=<n>        " + _("How thorough the block verification is (0-6, default: 1)") + "\n" +
306         "  -par=N                 " + _("Set the number of script verification threads (1-16, 0=auto, default: 0)") + "\n" +
307         "  -loadblock=<file>      " + _("Imports blocks from external blk000?.dat file") + "\n" +
308
309         "\n" + _("Block creation options:") + "\n" +
310         "  -blockminsize=<n>      "   + _("Set minimum block size in bytes (default: 0)") + "\n" +
311         "  -blockmaxsize=<n>      "   + _("Set maximum block size in bytes (default: 250000)") + "\n" +
312         "  -blockprioritysize=<n> "   + _("Set maximum size of high-priority/low-fee transactions in bytes (default: 27000)") + "\n";
313
314     return strUsage;
315 }
316
317 /** Initialize bitcoin.
318  *  @pre Parameters should be parsed and config file should be read.
319  */
320 bool AppInit2()
321 {
322     // ********************************************************* Step 1: setup
323 #ifdef _MSC_VER
324     // Turn off Microsoft heap dump noise
325     _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
326     _CrtSetReportFile(_CRT_WARN, CreateFileA("NUL", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0));
327 #endif
328 #if _MSC_VER >= 1400
329     // Disable confusing "helpful" text message on abort, Ctrl-C
330     _set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT);
331 #endif
332 #ifdef WIN32
333     // Enable Data Execution Prevention (DEP)
334     // Minimum supported OS versions: WinXP SP3, WinVista >= SP1, Win Server 2008
335     // A failure is non-critical and needs no further attention!
336 #ifndef PROCESS_DEP_ENABLE
337 // We define this here, because GCCs winbase.h limits this to _WIN32_WINNT >= 0x0601 (Windows 7),
338 // which is not correct. Can be removed, when GCCs winbase.h is fixed!
339 #define PROCESS_DEP_ENABLE 0x00000001
340 #endif
341     typedef BOOL (WINAPI *PSETPROCDEPPOL)(DWORD);
342     PSETPROCDEPPOL setProcDEPPol = (PSETPROCDEPPOL)GetProcAddress(GetModuleHandleA("Kernel32.dll"), "SetProcessDEPPolicy");
343     if (setProcDEPPol != NULL) setProcDEPPol(PROCESS_DEP_ENABLE);
344
345     // Initialize Windows Sockets
346     WSADATA wsadata;
347     int ret = WSAStartup(MAKEWORD(2,2), &wsadata);
348     if (ret != NO_ERROR)
349     {
350         return InitError(strprintf("Error: TCP/IP socket library failed to start (WSAStartup returned error %d)", ret));
351     }
352 #endif
353 #ifndef WIN32
354     umask(077);
355
356     // Clean shutdown on SIGTERM
357     struct sigaction sa;
358     sa.sa_handler = HandleSIGTERM;
359     sigemptyset(&sa.sa_mask);
360     sa.sa_flags = 0;
361     sigaction(SIGTERM, &sa, NULL);
362     sigaction(SIGINT, &sa, NULL);
363
364     // Reopen debug.log on SIGHUP
365     struct sigaction sa_hup;
366     sa_hup.sa_handler = HandleSIGHUP;
367     sigemptyset(&sa_hup.sa_mask);
368     sa_hup.sa_flags = 0;
369     sigaction(SIGHUP, &sa_hup, NULL);
370 #endif
371
372     // ********************************************************* Step 2: parameter interactions
373
374     nNodeLifespan = GetArgUInt("-addrlifespan", 7);
375     fUseFastIndex = GetBoolArg("-fastindex", true);
376     fUseMemoryLog = GetBoolArg("-memorylog", true);
377
378     // Ping and address broadcast intervals
379     nPingInterval = max<int64_t>(10 * 60, GetArg("-keepalive", 30 * 60));
380
381     CheckpointsMode = Checkpoints::STRICT;
382     std::string strCpMode = GetArg("-cppolicy", "strict");
383
384     if(strCpMode == "strict") {
385         CheckpointsMode = Checkpoints::STRICT;
386     }
387
388     if(strCpMode == "advisory") {
389         CheckpointsMode = Checkpoints::ADVISORY;
390     }
391
392     if(strCpMode == "permissive") {
393         CheckpointsMode = Checkpoints::PERMISSIVE;
394     }
395
396     fTestNet = GetBoolArg("-testnet");
397     if (fTestNet) {
398         SoftSetBoolArg("-irc", true);
399     }
400
401     if (mapArgs.count("-bind")) {
402         // when specifying an explicit binding address, you want to listen on it
403         // even when -connect or -proxy is specified
404         SoftSetBoolArg("-listen", true);
405     }
406
407     if (mapArgs.count("-connect") && mapMultiArgs["-connect"].size() > 0) {
408         // when only connecting to trusted nodes, do not seed via DNS, or listen by default
409         SoftSetBoolArg("-dnsseed", false);
410         SoftSetBoolArg("-listen", false);
411     }
412
413     if (mapArgs.count("-proxy")) {
414         // to protect privacy, do not listen by default if a proxy server is specified
415         SoftSetBoolArg("-listen", false);
416     }
417
418     if (!GetBoolArg("-listen", true)) {
419         // do not map ports or try to retrieve public IP when not listening (pointless)
420         SoftSetBoolArg("-discover", false);
421     }
422
423     if (mapArgs.count("-externalip")) {
424         // if an explicit public IP is specified, do not try to find others
425         SoftSetBoolArg("-discover", false);
426     }
427
428     if (GetBoolArg("-salvagewallet")) {
429         // Rewrite just private keys: rescan to find transactions
430         SoftSetBoolArg("-rescan", true);
431     }
432
433     if (GetBoolArg("-zapwallettxes", false)) {
434         // -zapwallettx implies a rescan
435         if (SoftSetBoolArg("-rescan", true))
436             printf("AppInit2 : parameter interaction: -zapwallettxes=1 -> setting -rescan=1\n");
437     }
438
439     // ********************************************************* Step 3: parameter-to-internal-flags
440
441     // -par=0 means autodetect, but nScriptCheckThreads==0 means no concurrency
442     nScriptCheckThreads = GetArgInt("-par", 0);
443     if (nScriptCheckThreads == 0)
444         nScriptCheckThreads = boost::thread::hardware_concurrency();
445     if (nScriptCheckThreads <= 1) 
446         nScriptCheckThreads = 0;
447     else if (nScriptCheckThreads > MAX_SCRIPTCHECK_THREADS)
448         nScriptCheckThreads = MAX_SCRIPTCHECK_THREADS;
449
450     fDebug = GetBoolArg("-debug");
451
452     // -debug implies fDebug*
453     if (fDebug)
454         fDebugNet = true;
455     else
456         fDebugNet = GetBoolArg("-debugnet");
457
458 #if !defined(WIN32) && !defined(QT_GUI)
459     fDaemon = GetBoolArg("-daemon");
460 #else
461     fDaemon = false;
462 #endif
463
464     if (fDaemon)
465         fServer = true;
466     else
467         fServer = GetBoolArg("-server");
468
469     /* force fServer when running without GUI */
470 #if !defined(QT_GUI)
471     fServer = true;
472 #endif
473     fPrintToConsole = GetBoolArg("-printtoconsole");
474     fPrintToDebugger = GetBoolArg("-printtodebugger");
475     fLogTimestamps = GetBoolArg("-logtimestamps");
476
477     if (mapArgs.count("-timeout"))
478     {
479         int nNewTimeout = GetArgInt("-timeout", 5000);
480         if (nNewTimeout > 0 && nNewTimeout < 600000)
481             nConnectTimeout = nNewTimeout;
482     }
483
484     // Put client version data into coinbase flags.
485     COINBASE_FLAGS << PROTOCOL_VERSION << DISPLAY_VERSION_MAJOR << DISPLAY_VERSION_MINOR << DISPLAY_VERSION_REVISION;
486
487     if (mapArgs.count("-paytxfee"))
488     {
489         if (!ParseMoney(mapArgs["-paytxfee"], nTransactionFee))
490             return InitError(strprintf(_("Invalid amount for -paytxfee=<amount>: '%s'"), mapArgs["-paytxfee"].c_str()));
491         if (nTransactionFee > 0.25 * COIN)
492             InitWarning(_("Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction."));
493     }
494
495     fConfChange = GetBoolArg("-confchange", false);
496
497     if (mapArgs.count("-mininput"))
498     {
499         if (!ParseMoney(mapArgs["-mininput"], nMinimumInputValue))
500             return InitError(strprintf(_("Invalid amount for -mininput=<amount>: '%s'"), mapArgs["-mininput"].c_str()));
501     }
502
503     // ********************************************************* Step 4: application initialization: dir lock, daemonize, pidfile, debug log
504
505     std::string strDataDir = GetDataDir().string();
506     strWalletFileName = GetArg("-wallet", "wallet.dat");
507
508     // strWalletFileName must be a plain filename without a directory
509     if (strWalletFileName != boost::filesystem::basename(strWalletFileName) + boost::filesystem::extension(strWalletFileName))
510         return InitError(strprintf(_("Wallet %s resides outside data directory %s."), strWalletFileName.c_str(), strDataDir.c_str()));
511
512     // Make sure only a single Bitcoin process is using the data directory.
513     boost::filesystem::path pathLockFile = GetDataDir() / ".lock";
514     FILE* file = fopen(pathLockFile.string().c_str(), "a"); // empty lock file; created if it doesn't exist.
515     if (file) fclose(file);
516     static boost::interprocess::file_lock lock(pathLockFile.string().c_str());
517     if (!lock.try_lock())
518         return InitError(strprintf(_("Cannot obtain a lock on data directory %s.  NovaCoin is probably already running."), strDataDir.c_str()));
519
520 #if !defined(WIN32) && !defined(QT_GUI)
521     if (fDaemon)
522     {
523         // Daemonize
524         pid_t pid = fork();
525         if (pid < 0)
526         {
527             fprintf(stderr, "Error: fork() returned %d errno %d\n", pid, errno);
528             return false;
529         }
530         if (pid > 0)
531         {
532             CreatePidFile(GetPidFile(), pid);
533             return true;
534         }
535
536         pid_t sid = setsid();
537         if (sid < 0)
538             fprintf(stderr, "Error: setsid() returned %d errno %d\n", sid, errno);
539     }
540 #endif
541
542     if (GetBoolArg("-shrinkdebugfile", !fDebug))
543         ShrinkDebugFile();
544     printf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
545     printf("NovaCoin version %s (%s)\n", FormatFullVersion().c_str(), CLIENT_DATE.c_str());
546     printf("Using OpenSSL version %s\n", SSLeay_version(SSLEAY_VERSION));
547     if (!fLogTimestamps)
548         printf("Startup time: %s\n", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
549     printf("Default data directory %s\n", GetDefaultDataDir().string().c_str());
550     printf("Used data directory %s\n", strDataDir.c_str());
551     std::ostringstream strErrors;
552
553     if (fDaemon)
554         fprintf(stdout, "NovaCoin server starting\n");
555
556     if (nScriptCheckThreads) {
557         printf("Using %u threads for script verification\n", nScriptCheckThreads);
558         for (int i=0; i<nScriptCheckThreads-1; i++)
559             NewThread(ThreadScriptCheck, NULL);
560     }
561
562     int64_t nStart;
563
564     // ********************************************************* Step 5: verify database integrity
565
566     uiInterface.InitMessage(_("Verifying database integrity..."));
567
568     if (!bitdb.Open(GetDataDir()))
569     {
570         string msg = strprintf(_("Error initializing database environment %s!"
571                                  " To recover, BACKUP THAT DIRECTORY, then remove"
572                                  " everything from it except for wallet.dat."), strDataDir.c_str());
573         return InitError(msg);
574     }
575
576     if (GetBoolArg("-salvagewallet"))
577     {
578         // Recover readable keypairs:
579         if (!CWalletDB::Recover(bitdb, strWalletFileName, true))
580             return false;
581     }
582
583     if (boost::filesystem::exists(GetDataDir() / strWalletFileName))
584     {
585         CDBEnv::VerifyResult r = bitdb.Verify(strWalletFileName, CWalletDB::Recover);
586         if (r == CDBEnv::RECOVER_OK)
587         {
588             string msg = strprintf(_("Warning: wallet.dat corrupt, data salvaged!"
589                                      " Original wallet.dat saved as wallet.{timestamp}.bak in %s; if"
590                                      " your balance or transactions are incorrect you should"
591                                      " restore from a backup."), strDataDir.c_str());
592             uiInterface.ThreadSafeMessageBox(msg, _("NovaCoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
593         }
594         if (r == CDBEnv::RECOVER_FAIL)
595             return InitError(_("wallet.dat corrupt, salvage failed"));
596     }
597
598     // ********************************************************* Step 6: network initialization
599
600     int nSocksVersion = GetArgInt("-socks", 5);
601
602     if (nSocksVersion != 4 && nSocksVersion != 5)
603         return InitError(strprintf(_("Unknown -socks proxy version requested: %i"), nSocksVersion));
604
605     if (mapArgs.count("-onlynet")) {
606         std::set<enum Network> nets;
607         for (std::string snet : mapMultiArgs["-onlynet"]) {
608             enum Network net = ParseNetwork(snet);
609             if (net == NET_UNROUTABLE)
610                 return InitError(strprintf(_("Unknown network specified in -onlynet: '%s'"), snet.c_str()));
611             nets.insert(net);
612         }
613         for (int n = 0; n < NET_MAX; n++) {
614             enum Network net = (enum Network)n;
615             if (!nets.count(net))
616                 SetLimited(net);
617         }
618     }
619 #if defined(USE_IPV6)
620 #if ! USE_IPV6
621     else
622         SetLimited(NET_IPV6);
623 #endif
624 #endif
625
626     CService addrProxy;
627     bool fProxy = false;
628     if (mapArgs.count("-proxy")) {
629         addrProxy = CService(mapArgs["-proxy"], nSocksDefault);
630         if (!addrProxy.IsValid())
631             return InitError(strprintf(_("Invalid -proxy address: '%s'"), mapArgs["-proxy"].c_str()));
632
633         if (!IsLimited(NET_IPV4))
634             SetProxy(NET_IPV4, addrProxy, nSocksVersion);
635         if (nSocksVersion > 4) {
636 #ifdef USE_IPV6
637             if (!IsLimited(NET_IPV6))
638                 SetProxy(NET_IPV6, addrProxy, nSocksVersion);
639 #endif
640             SetNameProxy(addrProxy, nSocksVersion);
641         }
642         fProxy = true;
643     }
644
645     // -tor can override normal proxy, -notor disables tor entirely
646     if (!(mapArgs.count("-tor") && mapArgs["-tor"] == "0") && (fProxy || mapArgs.count("-tor"))) {
647         CService addrOnion;
648         if (!mapArgs.count("-tor"))
649             addrOnion = addrProxy;
650         else
651             addrOnion = CService(mapArgs["-tor"], nSocksDefault);
652         if (!addrOnion.IsValid())
653             return InitError(strprintf(_("Invalid -tor address: '%s'"), mapArgs["-tor"].c_str()));
654         SetProxy(NET_TOR, addrOnion, 5);
655         SetReachable(NET_TOR);
656     }
657
658     // see Step 2: parameter interactions for more information about these
659     if (!IsLimited(NET_IPV4) || !IsLimited(NET_IPV6))
660     {
661         fNoListen = !GetBoolArg("-listen", true);
662         fDiscover = GetBoolArg("-discover", true);
663         fNameLookup = GetBoolArg("-dns", true);
664     } else {
665         // Don't listen, discover addresses or search for nodes if IPv4 and IPv6 networking is disabled.
666         fNoListen = true;
667         fDiscover = fNameLookup = false;
668         SoftSetBoolArg("-irc", false);
669         SoftSetBoolArg("-dnsseed", false);
670     }
671
672     bool fBound = false;
673     if (!fNoListen)
674     {
675         std::string strError;
676         if (mapArgs.count("-bind")) {
677             for(std::string strBind : mapMultiArgs["-bind"]) {
678                 CService addrBind;
679                 if (!Lookup(strBind.c_str(), addrBind, GetListenPort(), false))
680                     return InitError(strprintf(_("Cannot resolve -bind address: '%s'"), strBind.c_str()));
681                 fBound |= Bind(addrBind);
682             }
683         } else {
684             struct in_addr inaddr_any;
685             inaddr_any.s_addr = INADDR_ANY;
686 #ifdef USE_IPV6
687             if (!IsLimited(NET_IPV6))
688                 fBound |= Bind(CService(in6addr_any, GetListenPort()), false);
689 #endif
690             if (!IsLimited(NET_IPV4))
691                 fBound |= Bind(CService(inaddr_any, GetListenPort()), !fBound);
692
693         }
694         if (!fBound)
695             return InitError(_("Failed to listen on any port. Use -listen=0 if you want this."));
696     }
697
698     // If Tor is reachable then listen on loopback interface,
699     //    to allow allow other users reach you through the hidden service
700     if (!IsLimited(NET_TOR) && mapArgs.count("-torname")) {
701         std::string strError;
702         struct in_addr inaddr_loopback;
703         inaddr_loopback.s_addr = htonl(INADDR_LOOPBACK);
704
705 #ifdef USE_IPV6
706         if (!BindListenPort(CService(in6addr_loopback, GetListenPort()), strError))
707             return InitError(strError);
708 #endif
709         if (!BindListenPort(CService(inaddr_loopback, GetListenPort()), strError))
710             return InitError(strError);
711     }
712
713     if (mapArgs.count("-externalip"))
714     {
715         for (string strAddr : mapMultiArgs["-externalip"]) {
716             CService addrLocal(strAddr, GetListenPort(), fNameLookup);
717             if (!addrLocal.IsValid())
718                 return InitError(strprintf(_("Cannot resolve -externalip address: '%s'"), strAddr.c_str()));
719             AddLocal(CService(strAddr, GetListenPort(), fNameLookup), LOCAL_MANUAL);
720         }
721     }
722
723     if (mapArgs.count("-reservebalance")) // ppcoin: reserve balance amount
724     {
725         if (!ParseMoney(mapArgs["-reservebalance"], nReserveBalance))
726         {
727             InitError(_("Invalid amount for -reservebalance=<amount>"));
728             return false;
729         }
730     }
731
732     if (mapArgs.count("-checkpointkey")) // ppcoin: checkpoint master priv key
733     {
734         if (!Checkpoints::SetCheckpointPrivKey(GetArg("-checkpointkey", "")))
735             InitError(_("Unable to sign checkpoint, wrong checkpointkey?\n"));
736     }
737
738     for (string strDest : mapMultiArgs["-seednode"])
739         AddOneShot(strDest);
740
741     // ********************************************************* Step 7: load blockchain
742
743     if (!bitdb.Open(GetDataDir()))
744     {
745         string msg = strprintf(_("Error initializing database environment %s!"
746                                  " To recover, BACKUP THAT DIRECTORY, then remove"
747                                  " everything from it except for wallet.dat."), strDataDir.c_str());
748         return InitError(msg);
749     }
750
751     if (GetBoolArg("-loadblockindextest"))
752     {
753         CTxDB txdb("r");
754         txdb.LoadBlockIndex();
755         PrintBlockTree();
756         return false;
757     }
758
759
760     printf("Loading block index...\n");
761     bool fLoaded = false;
762     while (!fLoaded) {
763         std::string strLoadError;
764         uiInterface.InitMessage(_("Loading block index..."));
765
766         nStart = GetTimeMillis();
767         do {
768             try {
769                 UnloadBlockIndex();
770
771                 if (!LoadBlockIndex()) {
772                     strLoadError = _("Error loading block database");
773                     break;
774                 }
775             } catch(const std::exception&) {
776                 strLoadError = _("Error opening block database");
777                 break;
778             }
779
780             fLoaded = true;
781         } while(false);
782
783         if (!fLoaded) {
784             // TODO: suggest reindex here
785             return InitError(strLoadError);
786         }
787     }
788
789     // as LoadBlockIndex can take several minutes, it's possible the user
790     // requested to kill bitcoin-qt during the last operation. If so, exit.
791     // As the program has not fully started yet, Shutdown() is possibly overkill.
792     if (fRequestShutdown)
793     {
794         printf("Shutdown requested. Exiting.\n");
795         return false;
796     }
797     printf(" block index %15" PRId64 "ms\n", GetTimeMillis() - nStart);
798
799     if (GetBoolArg("-printblockindex") || GetBoolArg("-printblocktree"))
800     {
801         PrintBlockTree();
802         return false;
803     }
804
805     if (mapArgs.count("-printblock"))
806     {
807         string strMatch = mapArgs["-printblock"];
808         int nFound = 0;
809         for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
810         {
811             uint256 hash = (*mi).first;
812             if (strncmp(hash.ToString().c_str(), strMatch.c_str(), strMatch.size()) == 0)
813             {
814                 CBlockIndex* pindex = (*mi).second;
815                 CBlock block;
816                 block.ReadFromDisk(pindex);
817                 block.BuildMerkleTree();
818                 block.print();
819                 printf("\n");
820                 nFound++;
821             }
822         }
823         if (nFound == 0)
824             printf("No blocks matching %s were found\n", strMatch.c_str());
825         return false;
826     }
827
828     // ********************************************************* Step 8: load wallet
829
830     if (GetBoolArg("-zapwallettxes", false)) {
831         uiInterface.InitMessage(_("Zapping all transactions from wallet..."));
832
833         pwalletMain = new CWallet(strWalletFileName);
834         DBErrors nZapWalletRet = pwalletMain->ZapWalletTx();
835         if (nZapWalletRet != DB_LOAD_OK) {
836             uiInterface.InitMessage(_("Error loading wallet.dat: Wallet corrupted"));
837             return false;
838         }
839         delete pwalletMain;
840         pwalletMain = NULL;
841     }
842
843     uiInterface.InitMessage(_("Loading wallet..."));
844     printf("Loading wallet...\n");
845     nStart = GetTimeMillis();
846     bool fFirstRun = true;
847     pwalletMain = new CWallet(strWalletFileName);
848     DBErrors nLoadWalletRet = pwalletMain->LoadWallet(fFirstRun);
849     if (nLoadWalletRet != DB_LOAD_OK)
850     {
851         if (nLoadWalletRet == DB_CORRUPT)
852             strErrors << _("Error loading wallet.dat: Wallet corrupted") << "\n";
853         else if (nLoadWalletRet == DB_NONCRITICAL_ERROR)
854         {
855             string msg(_("Warning: error reading wallet.dat! All keys read correctly, but transaction data"
856                          " or address book entries might be missing or incorrect."));
857             uiInterface.ThreadSafeMessageBox(msg, _("NovaCoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
858         }
859         else if (nLoadWalletRet == DB_TOO_NEW)
860             strErrors << _("Error loading wallet.dat: Wallet requires newer version of NovaCoin") << "\n";
861         else if (nLoadWalletRet == DB_NEED_REWRITE)
862         {
863             strErrors << _("Wallet needed to be rewritten: restart NovaCoin to complete") << "\n";
864             printf("%s", strErrors.str().c_str());
865             return InitError(strErrors.str());
866         }
867         else
868             strErrors << _("Error loading wallet.dat") << "\n";
869     }
870
871     if (GetBoolArg("-upgradewallet", fFirstRun))
872     {
873         int nMaxVersion = GetArgInt("-upgradewallet", 0);
874         if (nMaxVersion == 0) // the -upgradewallet without argument case
875         {
876             printf("Performing wallet upgrade to %i\n", FEATURE_LATEST);
877             nMaxVersion = CLIENT_VERSION;
878             pwalletMain->SetMinVersion(FEATURE_LATEST); // permanently upgrade the wallet immediately
879         }
880         else
881             printf("Allowing wallet upgrade up to %i\n", nMaxVersion);
882         if (nMaxVersion < pwalletMain->GetVersion())
883             strErrors << _("Cannot downgrade wallet") << "\n";
884         pwalletMain->SetMaxVersion(nMaxVersion);
885     }
886
887     if (fFirstRun)
888     {
889         // Create new keyUser and set as default key
890         RandAddSeedPerfmon();
891
892         CPubKey newDefaultKey;
893         if (!pwalletMain->GetKeyFromPool(newDefaultKey, false))
894             strErrors << _("Cannot initialize keypool") << "\n";
895         pwalletMain->SetDefaultKey(newDefaultKey);
896         if (!pwalletMain->SetAddressBookName(pwalletMain->vchDefaultKey.GetID(), ""))
897             strErrors << _("Cannot write default address") << "\n";
898
899         CMalleableKeyView keyView = pwalletMain->GenerateNewMalleableKey();
900         CMalleableKey mKey;
901         if (!pwalletMain->GetMalleableKey(keyView, mKey))
902             strErrors << _("Unable to generate new malleable key");
903         if (!pwalletMain->SetAddressBookName(CBitcoinAddress(keyView.GetMalleablePubKey()), ""))
904             strErrors << _("Cannot write default address") << "\n";
905     }
906
907     printf("%s", strErrors.str().c_str());
908     printf(" wallet      %15" PRId64 "ms\n", GetTimeMillis() - nStart);
909
910     RegisterWallet(pwalletMain);
911
912     CBlockIndex *pindexRescan = pindexBest;
913     if (GetBoolArg("-rescan"))
914         pindexRescan = pindexGenesisBlock;
915     else
916     {
917         CWalletDB walletdb(strWalletFileName);
918         CBlockLocator locator;
919         if (walletdb.ReadBestBlock(locator))
920             pindexRescan = locator.GetBlockIndex();
921     }
922     if (pindexBest != pindexRescan && pindexBest && pindexRescan && pindexBest->nHeight > pindexRescan->nHeight)
923     {
924         uiInterface.InitMessage(_("Rescanning..."));
925         printf("Rescanning last %i blocks (from block %i)...\n", pindexBest->nHeight - pindexRescan->nHeight, pindexRescan->nHeight);
926         nStart = GetTimeMillis();
927         pwalletMain->ScanForWalletTransactions(pindexRescan, true);
928         printf(" rescan      %15" PRId64 "ms\n", GetTimeMillis() - nStart);
929     }
930
931     // ********************************************************* Step 9: import blocks
932
933     if (mapArgs.count("-loadblock"))
934     {
935         uiInterface.InitMessage(_("Importing blockchain data file."));
936
937         for (string strFile : mapMultiArgs["-loadblock"])
938         {
939             FILE *file = fopen(strFile.c_str(), "rb");
940             if (file)
941                 LoadExternalBlockFile(file);
942         }
943         StartShutdown();
944     }
945
946     boost::filesystem::path pathBootstrap = GetDataDir() / "bootstrap.dat";
947     if (boost::filesystem::exists(pathBootstrap)) {
948         uiInterface.InitMessage(_("Importing bootstrap blockchain data file."));
949
950         FILE *file = fopen(pathBootstrap.string().c_str(), "rb");
951         if (file) {
952             boost::filesystem::path pathBootstrapOld = GetDataDir() / "bootstrap.dat.old";
953             LoadExternalBlockFile(file);
954             RenameOver(pathBootstrap, pathBootstrapOld);
955         }
956     }
957
958     // ********************************************************* Step 10: load peers
959
960     uiInterface.InitMessage(_("Loading addresses..."));
961     printf("Loading addresses...\n");
962     nStart = GetTimeMillis();
963
964     {
965         CAddrDB::SetMessageStart(pchMessageStart);
966         CAddrDB adb;
967         if (!adb.Read(addrman))
968             printf("Invalid or missing peers.dat; recreating\n");
969     }
970
971     printf("Loaded %i addresses from peers.dat  %" PRId64 "ms\n",
972            addrman.size(), GetTimeMillis() - nStart);
973
974     // ********************************************************* Step 11: start node
975
976     if (!CheckDiskSpace())
977         return false;
978
979     RandAddSeedPerfmon();
980
981     //// debug print
982     printf("mapBlockIndex.size() = %" PRIszu "\n",   mapBlockIndex.size());
983     printf("nBestHeight = %d\n",            nBestHeight);
984     printf("setKeyPool.size() = %" PRIszu "\n",      pwalletMain->setKeyPool.size());
985     printf("mapWallet.size() = %" PRIszu "\n",       pwalletMain->mapWallet.size());
986     printf("mapAddressBook.size() = %" PRIszu "\n",  pwalletMain->mapAddressBook.size());
987
988     if (!NewThread(StartNode, NULL))
989         InitError(_("Error: could not start node"));
990
991     if (fServer)
992         StartRPCServer();
993
994     // ********************************************************* Step 13: IP collection thread
995     strCollectorCommand = GetArg("-peercollector", "");
996     if (!fTestNet && strCollectorCommand != "")
997         NewThread(ThreadIPCollector, NULL);
998     // ********************************************************* Step 14: finished
999
1000     uiInterface.InitMessage(_("Done loading"));
1001     printf("Done loading\n");
1002
1003     if (!strErrors.str().empty())
1004         return InitError(strErrors.str());
1005
1006      // Add wallet transactions that aren't already in a block to mapTransactions
1007     pwalletMain->ReacceptWalletTransactions();
1008
1009 #if !defined(QT_GUI)
1010     // Loop until process is exit()ed from shutdown() function,
1011     // called from ThreadRPCServer thread when a "stop" command is received.
1012     for ( ; ; )
1013         Sleep(5000);
1014 #endif
1015
1016     return true;
1017 }