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