Add ZeroTest self-testing routine
[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 enum Checkpoints::CPMode CheckpointsMode;
35
36 //////////////////////////////////////////////////////////////////////////////
37 //
38 // Shutdown
39 //
40
41 void ExitTimeout(void* parg)
42 {
43 #ifdef WIN32
44     Sleep(5000);
45     ExitProcess(0);
46 #endif
47 }
48
49 void StartShutdown()
50 {
51 #ifdef QT_GUI
52     // ensure we leave the Qt main loop for a clean GUI exit (Shutdown() is called in bitcoin.cpp afterwards)
53     uiInterface.QueueShutdown();
54 #else
55     // Without UI, Shutdown() can simply be started in a new thread
56     NewThread(Shutdown, NULL);
57 #endif
58 }
59
60 void Shutdown(void* parg)
61 {
62     static CCriticalSection cs_Shutdown;
63     static bool fTaken;
64
65     // Make this thread recognisable as the shutdown thread
66     RenameThread("bitcoin-shutoff");
67
68     bool fFirstThread = false;
69     {
70         TRY_LOCK(cs_Shutdown, lockShutdown);
71         if (lockShutdown)
72         {
73             fFirstThread = !fTaken;
74             fTaken = true;
75         }
76     }
77     static bool fExit;
78     if (fFirstThread)
79     {
80         fShutdown = true;
81         nTransactionsUpdated++;
82 //        CTxDB().Close();
83         bitdb.Flush(false);
84         StopNode();
85         bitdb.Flush(true);
86         boost::filesystem::remove(GetPidFile());
87         UnregisterWallet(pwalletMain);
88         delete pwalletMain;
89         NewThread(ExitTimeout, NULL);
90         Sleep(50);
91         printf("NovaCoin exited\n\n");
92         fExit = true;
93 #ifndef QT_GUI
94         // ensure non-UI client gets exited here, but let Bitcoin-Qt reach 'return 0;' in bitcoin.cpp
95         exit(0);
96 #endif
97     }
98     else
99     {
100         while (!fExit)
101             Sleep(500);
102         Sleep(100);
103         ExitThread(0);
104     }
105 }
106
107 void HandleSIGTERM(int)
108 {
109     fRequestShutdown = true;
110 }
111
112 void HandleSIGHUP(int)
113 {
114     fReopenDebugLog = true;
115 }
116
117
118
119
120
121 //////////////////////////////////////////////////////////////////////////////
122 //
123 // Start
124 //
125 #if !defined(QT_GUI)
126 bool AppInit(int argc, char* argv[])
127 {
128     bool fRet = false;
129     try
130     {
131         //
132         // Parameters
133         //
134         // If Qt is used, parameters/bitcoin.conf are parsed in qt/bitcoin.cpp's main()
135         ParseParameters(argc, argv);
136         if (!boost::filesystem::is_directory(GetDataDir(false)))
137         {
138             fprintf(stderr, "Error: Specified directory does not exist\n");
139             Shutdown(NULL);
140         }
141         ReadConfigFile(mapArgs, mapMultiArgs);
142
143         if (mapArgs.count("-?") || mapArgs.count("--help"))
144         {
145             // First part of help message is specific to bitcoind / RPC client
146             std::string strUsage = _("NovaCoin version") + " " + FormatFullVersion() + "\n\n" +
147                 _("Usage:") + "\n" +
148                   "  novacoind [options]                     " + "\n" +
149                   "  novacoind [options] <command> [params]  " + _("Send command to -server or novacoind") + "\n" +
150                   "  novacoind [options] help                " + _("List commands") + "\n" +
151                   "  novacoind [options] help <command>      " + _("Get help for a command") + "\n";
152
153             strUsage += "\n" + HelpMessage();
154
155             fprintf(stdout, "%s", strUsage.c_str());
156             return false;
157         }
158
159         // Command-line RPC
160         for (int i = 1; i < argc; i++)
161             if (!IsSwitchChar(argv[i][0]) && !boost::algorithm::istarts_with(argv[i], "novacoin:"))
162                 fCommandLine = true;
163
164         if (fCommandLine)
165         {
166             int ret = CommandLineRPC(argc, argv);
167             exit(ret);
168         }
169
170         fRet = AppInit2();
171     }
172     catch (std::exception& e) {
173         PrintException(&e, "AppInit()");
174     } catch (...) {
175         PrintException(NULL, "AppInit()");
176     }
177     if (!fRet)
178         Shutdown(NULL);
179     return fRet;
180 }
181
182 extern void noui_connect();
183 int main(int argc, char* argv[])
184 {
185     bool fRet = false;
186
187     // Connect bitcoind signal handlers
188     noui_connect();
189
190     fRet = AppInit(argc, argv);
191
192     if (fRet && fDaemon)
193         return 0;
194
195     return 1;
196 }
197 #endif
198
199 bool static InitError(const std::string &str)
200 {
201     uiInterface.ThreadSafeMessageBox(str, _("NovaCoin"), CClientUIInterface::OK | CClientUIInterface::MODAL);
202     return false;
203 }
204
205 bool static InitWarning(const std::string &str)
206 {
207     uiInterface.ThreadSafeMessageBox(str, _("NovaCoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
208     return true;
209 }
210
211
212 bool static Bind(const CService &addr, bool fError = true) {
213     if (IsLimited(addr))
214         return false;
215     std::string strError;
216     if (!BindListenPort(addr, strError)) {
217         if (fError)
218             return InitError(strError);
219         return false;
220     }
221     return true;
222 }
223
224 // Core-specific options shared between UI and daemon
225 std::string HelpMessage()
226 {
227     string strUsage = _("Options:") + "\n" +
228         "  -?                     " + _("This help message") + "\n" +
229         "  -conf=<file>           " + _("Specify configuration file (default: novacoin.conf)") + "\n" +
230         "  -pid=<file>            " + _("Specify pid file (default: novacoind.pid)") + "\n" +
231         "  -datadir=<dir>         " + _("Specify data directory") + "\n" +
232         "  -wallet=<dir>          " + _("Specify wallet file (within data directory)") + "\n" +
233         "  -dbcache=<n>           " + _("Set database cache size in megabytes (default: 25)") + "\n" +
234         "  -dblogsize=<n>         " + _("Set database disk log size in megabytes (default: 100)") + "\n" +
235         "  -timeout=<n>           " + _("Specify connection timeout in milliseconds (default: 5000)") + "\n" +
236         "  -proxy=<ip:port>       " + _("Connect through socks proxy") + "\n" +
237         "  -socks=<n>             " + _("Select the version of socks proxy to use (4-5, default: 5)") + "\n" +
238         "  -tor=<ip:port>         " + _("Use proxy to reach tor hidden services (default: same as -proxy)") + "\n"
239         "  -dns                   " + _("Allow DNS lookups for -addnode, -seednode and -connect") + "\n" +
240         "  -port=<port>           " + _("Listen for connections on <port> (default: 7777 or testnet: 17777)") + "\n" +
241         "  -maxconnections=<n>    " + _("Maintain at most <n> connections to peers (default: 125)") + "\n" +
242         "  -addnode=<ip>          " + _("Add a node to connect to and attempt to keep the connection open") + "\n" +
243         "  -connect=<ip>          " + _("Connect only to the specified node(s)") + "\n" +
244         "  -seednode=<ip>         " + _("Connect to a node to retrieve peer addresses, and disconnect") + "\n" +
245         "  -externalip=<ip>       " + _("Specify your own public address") + "\n" +
246         "  -onlynet=<net>         " + _("Only connect to nodes in network <net> (IPv4, IPv6 or Tor)") + "\n" +
247         "  -discover              " + _("Discover own IP address (default: 1 when listening and no -externalip)") + "\n" +
248         "  -irc                   " + _("Find peers using internet relay chat (default: 1)") + "\n" +
249         "  -listen                " + _("Accept connections from outside (default: 1 if no -proxy or -connect)") + "\n" +
250         "  -bind=<addr>           " + _("Bind to given address. Use [host]:port notation for IPv6") + "\n" +
251         "  -dnsseed               " + _("Find peers using DNS lookup (default: 1)") + "\n" +
252         "  -cppolicy              " + _("Sync checkpoints policy (default: strict)") + "\n" +
253         "  -stakepooledkeys       " + _("Use pooled pubkeys for the last coinstake output (default: 0)") + "\n" +
254         "  -derivationmethod      " + _("Which key derivation method to use by default (default: sha512)") + "\n" +
255         "  -banscore=<n>          " + _("Threshold for disconnecting misbehaving peers (default: 100)") + "\n" +
256         "  -bantime=<n>           " + _("Number of seconds to keep misbehaving peers from reconnecting (default: 86400)") + "\n" +
257         "  -maxreceivebuffer=<n>  " + _("Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000)") + "\n" +
258         "  -maxsendbuffer=<n>     " + _("Maximum per-connection send buffer, <n>*1000 bytes (default: 1000)") + "\n" +
259 #ifdef USE_UPNP
260 #if USE_UPNP
261         "  -upnp                  " + _("Use UPnP to map the listening port (default: 1 when listening)") + "\n" +
262 #else
263         "  -upnp                  " + _("Use UPnP to map the listening port (default: 0)") + "\n" +
264 #endif
265 #endif
266         "  -detachdb              " + _("Detach block and address databases. Increases shutdown time (default: 0)") + "\n" +
267         "  -paytxfee=<amt>        " + _("Fee per KB to add to transactions you send") + "\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     fStakeUsePooledKeys = GetBoolArg("-stakepooledkeys", false);
363
364     if (GetBoolArg("-zerotest", false))
365     {
366         Test_RunAllTests();
367     }
368
369     CheckpointsMode = Checkpoints::STRICT;
370     std::string strCpMode = GetArg("-cppolicy", "strict");
371
372     if(strCpMode == "strict")
373         CheckpointsMode = Checkpoints::STRICT;
374
375     if(strCpMode == "advisory")
376         CheckpointsMode = Checkpoints::ADVISORY;
377
378     if(strCpMode == "permissive")
379         CheckpointsMode = Checkpoints::PERMISSIVE;
380
381     if(GetArg("-derivationmethod", "sha512") == "scrypt+sha512")
382         nDerivationMethodIndex = 1;
383
384     fTestNet = GetBoolArg("-testnet");
385     if (fTestNet) {
386         SoftSetBoolArg("-irc", true);
387     }
388
389     if (mapArgs.count("-bind")) {
390         // when specifying an explicit binding address, you want to listen on it
391         // even when -connect or -proxy is specified
392         SoftSetBoolArg("-listen", true);
393     }
394
395     if (mapArgs.count("-connect") && mapMultiArgs["-connect"].size() > 0) {
396         // when only connecting to trusted nodes, do not seed via DNS, or listen by default
397         SoftSetBoolArg("-dnsseed", false);
398         SoftSetBoolArg("-listen", false);
399     }
400
401     if (mapArgs.count("-proxy")) {
402         // to protect privacy, do not listen by default if a proxy server is specified
403         SoftSetBoolArg("-listen", false);
404     }
405
406     if (!GetBoolArg("-listen", true)) {
407         // do not map ports or try to retrieve public IP when not listening (pointless)
408         SoftSetBoolArg("-upnp", false);
409         SoftSetBoolArg("-discover", false);
410     }
411
412     if (mapArgs.count("-externalip")) {
413         // if an explicit public IP is specified, do not try to find others
414         SoftSetBoolArg("-discover", false);
415     }
416
417     if (GetBoolArg("-salvagewallet")) {
418         // Rewrite just private keys: rescan to find transactions
419         SoftSetBoolArg("-rescan", true);
420     }
421
422     // ********************************************************* Step 3: parameter-to-internal-flags
423
424     fDebug = GetBoolArg("-debug");
425
426     // -debug implies fDebug*
427     if (fDebug)
428         fDebugNet = true;
429     else
430         fDebugNet = GetBoolArg("-debugnet");
431
432     bitdb.SetDetach(GetBoolArg("-detachdb", false));
433
434 #if !defined(WIN32) && !defined(QT_GUI)
435     fDaemon = GetBoolArg("-daemon");
436 #else
437     fDaemon = false;
438 #endif
439
440     if (fDaemon)
441         fServer = true;
442     else
443         fServer = GetBoolArg("-server");
444
445     /* force fServer when running without GUI */
446 #if !defined(QT_GUI)
447     fServer = true;
448 #endif
449     fPrintToConsole = GetBoolArg("-printtoconsole");
450     fPrintToDebugger = GetBoolArg("-printtodebugger");
451     fLogTimestamps = GetBoolArg("-logtimestamps");
452
453     if (mapArgs.count("-timeout"))
454     {
455         int nNewTimeout = GetArg("-timeout", 5000);
456         if (nNewTimeout > 0 && nNewTimeout < 600000)
457             nConnectTimeout = nNewTimeout;
458     }
459
460     // Continue to put "/P2SH/" in the coinbase to monitor
461     // BIP16 support.
462     // This can be removed eventually...
463     const char* pszP2SH = "/P2SH/";
464     COINBASE_FLAGS << std::vector<unsigned char>(pszP2SH, pszP2SH+strlen(pszP2SH));
465
466
467     if (mapArgs.count("-paytxfee"))
468     {
469         if (!ParseMoney(mapArgs["-paytxfee"], nTransactionFee))
470             return InitError(strprintf(_("Invalid amount for -paytxfee=<amount>: '%s'"), mapArgs["-paytxfee"].c_str()));
471         if (nTransactionFee > 0.25 * COIN)
472             InitWarning(_("Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction."));
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     // as LoadBlockIndex can take several minutes, it's possible the user
711     // requested to kill bitcoin-qt during the last operation. If so, exit.
712     // As the program has not fully started yet, Shutdown() is possibly overkill.
713     if (fRequestShutdown)
714     {
715         printf("Shutdown requested. Exiting.\n");
716         return false;
717     }
718     printf(" block index %15"PRI64d"ms\n", GetTimeMillis() - nStart);
719
720     if (GetBoolArg("-printblockindex") || GetBoolArg("-printblocktree"))
721     {
722         PrintBlockTree();
723         return false;
724     }
725
726     if (mapArgs.count("-printblock"))
727     {
728         string strMatch = mapArgs["-printblock"];
729         int nFound = 0;
730         for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
731         {
732             uint256 hash = (*mi).first;
733             if (strncmp(hash.ToString().c_str(), strMatch.c_str(), strMatch.size()) == 0)
734             {
735                 CBlockIndex* pindex = (*mi).second;
736                 CBlock block;
737                 block.ReadFromDisk(pindex);
738                 block.BuildMerkleTree();
739                 block.print();
740                 printf("\n");
741                 nFound++;
742             }
743         }
744         if (nFound == 0)
745             printf("No blocks matching %s were found\n", strMatch.c_str());
746         return false;
747     }
748
749     // ********************************************************* Step 8: load wallet
750
751     uiInterface.InitMessage(_("Loading wallet..."));
752     printf("Loading wallet...\n");
753     nStart = GetTimeMillis();
754     bool fFirstRun = true;
755     pwalletMain = new CWallet(strWalletFileName);
756     DBErrors nLoadWalletRet = pwalletMain->LoadWallet(fFirstRun);
757     if (nLoadWalletRet != DB_LOAD_OK)
758     {
759         if (nLoadWalletRet == DB_CORRUPT)
760             strErrors << _("Error loading wallet.dat: Wallet corrupted") << "\n";
761         else if (nLoadWalletRet == DB_NONCRITICAL_ERROR)
762         {
763             string msg(_("Warning: error reading wallet.dat! All keys read correctly, but transaction data"
764                          " or address book entries might be missing or incorrect."));
765             uiInterface.ThreadSafeMessageBox(msg, _("NovaCoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
766         }
767         else if (nLoadWalletRet == DB_TOO_NEW)
768             strErrors << _("Error loading wallet.dat: Wallet requires newer version of NovaCoin") << "\n";
769         else if (nLoadWalletRet == DB_NEED_REWRITE)
770         {
771             strErrors << _("Wallet needed to be rewritten: restart NovaCoin to complete") << "\n";
772             printf("%s", strErrors.str().c_str());
773             return InitError(strErrors.str());
774         }
775         else
776             strErrors << _("Error loading wallet.dat") << "\n";
777     }
778
779     if (GetBoolArg("-upgradewallet", fFirstRun))
780     {
781         int nMaxVersion = GetArg("-upgradewallet", 0);
782         if (nMaxVersion == 0) // the -upgradewallet without argument case
783         {
784             printf("Performing wallet upgrade to %i\n", FEATURE_LATEST);
785             nMaxVersion = CLIENT_VERSION;
786             pwalletMain->SetMinVersion(FEATURE_LATEST); // permanently upgrade the wallet immediately
787         }
788         else
789             printf("Allowing wallet upgrade up to %i\n", nMaxVersion);
790         if (nMaxVersion < pwalletMain->GetVersion())
791             strErrors << _("Cannot downgrade wallet") << "\n";
792         pwalletMain->SetMaxVersion(nMaxVersion);
793     }
794
795     if (fFirstRun)
796     {
797         // Create new keyUser and set as default key
798         RandAddSeedPerfmon();
799
800         CPubKey newDefaultKey;
801         if (!pwalletMain->GetKeyFromPool(newDefaultKey, false))
802             strErrors << _("Cannot initialize keypool") << "\n";
803         pwalletMain->SetDefaultKey(newDefaultKey);
804         if (!pwalletMain->SetAddressBookName(pwalletMain->vchDefaultKey.GetID(), ""))
805             strErrors << _("Cannot write default address") << "\n";
806     }
807
808     printf("%s", strErrors.str().c_str());
809     printf(" wallet      %15"PRI64d"ms\n", GetTimeMillis() - nStart);
810
811     RegisterWallet(pwalletMain);
812
813     CBlockIndex *pindexRescan = pindexBest;
814     if (GetBoolArg("-rescan"))
815         pindexRescan = pindexGenesisBlock;
816     else
817     {
818         CWalletDB walletdb(strWalletFileName);
819         CBlockLocator locator;
820         if (walletdb.ReadBestBlock(locator))
821             pindexRescan = locator.GetBlockIndex();
822     }
823     if (pindexBest != pindexRescan && pindexBest && pindexRescan && pindexBest->nHeight > pindexRescan->nHeight)
824     {
825         uiInterface.InitMessage(_("Rescanning..."));
826         printf("Rescanning last %i blocks (from block %i)...\n", pindexBest->nHeight - pindexRescan->nHeight, pindexRescan->nHeight);
827         nStart = GetTimeMillis();
828         pwalletMain->ScanForWalletTransactions(pindexRescan, true);
829         printf(" rescan      %15"PRI64d"ms\n", GetTimeMillis() - nStart);
830     }
831
832     // ********************************************************* Step 9: import blocks
833
834     if (mapArgs.count("-loadblock"))
835     {
836         uiInterface.InitMessage(_("Importing blockchain data file."));
837
838         BOOST_FOREACH(string strFile, mapMultiArgs["-loadblock"])
839         {
840             FILE *file = fopen(strFile.c_str(), "rb");
841             if (file)
842                 LoadExternalBlockFile(file);
843         }
844         exit(0);
845     }
846
847     filesystem::path pathBootstrap = GetDataDir() / "bootstrap.dat";
848     if (filesystem::exists(pathBootstrap)) {
849         uiInterface.InitMessage(_("Importing bootstrap blockchain data file."));
850
851         FILE *file = fopen(pathBootstrap.string().c_str(), "rb");
852         if (file) {
853             filesystem::path pathBootstrapOld = GetDataDir() / "bootstrap.dat.old";
854             LoadExternalBlockFile(file);
855             RenameOver(pathBootstrap, pathBootstrapOld);
856         }
857     }
858
859     // ********************************************************* Step 10: load peers
860
861     uiInterface.InitMessage(_("Loading addresses..."));
862     printf("Loading addresses...\n");
863     nStart = GetTimeMillis();
864
865     {
866         CAddrDB adb;
867         if (!adb.Read(addrman))
868             printf("Invalid or missing peers.dat; recreating\n");
869     }
870
871     printf("Loaded %i addresses from peers.dat  %"PRI64d"ms\n",
872            addrman.size(), GetTimeMillis() - nStart);
873
874     // ********************************************************* Step 11: start node
875
876     if (!CheckDiskSpace())
877         return false;
878
879     RandAddSeedPerfmon();
880
881     //// debug print
882     printf("mapBlockIndex.size() = %"PRIszu"\n",   mapBlockIndex.size());
883     printf("nBestHeight = %d\n",            nBestHeight);
884     printf("setKeyPool.size() = %"PRIszu"\n",      pwalletMain->setKeyPool.size());
885     printf("mapWallet.size() = %"PRIszu"\n",       pwalletMain->mapWallet.size());
886     printf("mapAddressBook.size() = %"PRIszu"\n",  pwalletMain->mapAddressBook.size());
887
888     if (!NewThread(StartNode, NULL))
889         InitError(_("Error: could not start node"));
890
891     if (fServer)
892         NewThread(ThreadRPCServer, NULL);
893
894     // ********************************************************* Step 12: finished
895
896     uiInterface.InitMessage(_("Done loading"));
897     printf("Done loading\n");
898
899     if (!strErrors.str().empty())
900         return InitError(strErrors.str());
901
902      // Add wallet transactions that aren't already in a block to mapTransactions
903     pwalletMain->ReacceptWalletTransactions();
904
905 #if !defined(QT_GUI)
906     // Loop until process is exit()ed from shutdown() function,
907     // called from ThreadRPCServer thread when a "stop" command is received.
908     while (1)
909         Sleep(5000);
910 #endif
911
912     return true;
913 }