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