37c43a50c3a2416e7f50d4fb85fbb6f475c780b4
[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("bitcoin-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         "  -loadblock=<file>      " + _("Imports blocks from external blk000?.dat file") + "\n" +
302
303         "\n" + _("Block creation options:") + "\n" +
304         "  -blockminsize=<n>      "   + _("Set minimum block size in bytes (default: 0)") + "\n" +
305         "  -blockmaxsize=<n>      "   + _("Set maximum block size in bytes (default: 250000)") + "\n" +
306         "  -blockprioritysize=<n> "   + _("Set maximum size of high-priority/low-fee transactions in bytes (default: 27000)") + "\n" +
307
308         "\n" + _("SSL options: (see the Bitcoin Wiki for SSL setup instructions)") + "\n" +
309         "  -rpcssl                                  " + _("Use OpenSSL (https) for JSON-RPC connections") + "\n" +
310         "  -rpcsslcertificatechainfile=<file.cert>  " + _("Server certificate file (default: server.cert)") + "\n" +
311         "  -rpcsslprivatekeyfile=<file.pem>         " + _("Server private key (default: server.pem)") + "\n" +
312         "  -rpcsslciphers=<ciphers>                 " + _("Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH)") + "\n";
313
314     return strUsage;
315 }
316
317 /** Initialize bitcoin.
318  *  @pre Parameters should be parsed and config file should be read.
319  */
320 bool AppInit2()
321 {
322     // ********************************************************* Step 1: setup
323 #ifdef _MSC_VER
324     // Turn off Microsoft heap dump noise
325     _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
326     _CrtSetReportFile(_CRT_WARN, CreateFileA("NUL", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0));
327 #endif
328 #if _MSC_VER >= 1400
329     // Disable confusing "helpful" text message on abort, Ctrl-C
330     _set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT);
331 #endif
332 #ifdef WIN32
333     // Enable Data Execution Prevention (DEP)
334     // Minimum supported OS versions: WinXP SP3, WinVista >= SP1, Win Server 2008
335     // A failure is non-critical and needs no further attention!
336 #ifndef PROCESS_DEP_ENABLE
337 // We define this here, because GCCs winbase.h limits this to _WIN32_WINNT >= 0x0601 (Windows 7),
338 // which is not correct. Can be removed, when GCCs winbase.h is fixed!
339 #define PROCESS_DEP_ENABLE 0x00000001
340 #endif
341     typedef BOOL (WINAPI *PSETPROCDEPPOL)(DWORD);
342     PSETPROCDEPPOL setProcDEPPol = (PSETPROCDEPPOL)GetProcAddress(GetModuleHandleA("Kernel32.dll"), "SetProcessDEPPolicy");
343     if (setProcDEPPol != NULL) setProcDEPPol(PROCESS_DEP_ENABLE);
344 #endif
345 #ifndef WIN32
346     umask(077);
347
348     // Clean shutdown on SIGTERM
349     struct sigaction sa;
350     sa.sa_handler = HandleSIGTERM;
351     sigemptyset(&sa.sa_mask);
352     sa.sa_flags = 0;
353     sigaction(SIGTERM, &sa, NULL);
354     sigaction(SIGINT, &sa, NULL);
355
356     // Reopen debug.log on SIGHUP
357     struct sigaction sa_hup;
358     sa_hup.sa_handler = HandleSIGHUP;
359     sigemptyset(&sa_hup.sa_mask);
360     sa_hup.sa_flags = 0;
361     sigaction(SIGHUP, &sa_hup, NULL);
362 #endif
363
364     // ********************************************************* Step 2: parameter interactions
365
366     nNodeLifespan = GetArg("-addrlifespan", 7);
367     fUseFastIndex = GetBoolArg("-fastindex", true);
368     nMinerSleep = GetArg("-minersleep", 500);
369
370     CheckpointsMode = Checkpoints::STRICT;
371     std::string strCpMode = GetArg("-cppolicy", "strict");
372
373     if(strCpMode == "strict")
374         CheckpointsMode = Checkpoints::STRICT;
375
376     if(strCpMode == "advisory")
377         CheckpointsMode = Checkpoints::ADVISORY;
378
379     if(strCpMode == "permissive")
380         CheckpointsMode = Checkpoints::PERMISSIVE;
381
382     nDerivationMethodIndex = 0;
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     fConfChange = GetBoolArg("-confchange", false);
476
477     if (mapArgs.count("-mininput"))
478     {
479         if (!ParseMoney(mapArgs["-mininput"], nMinimumInputValue))
480             return InitError(strprintf(_("Invalid amount for -mininput=<amount>: '%s'"), mapArgs["-mininput"].c_str()));
481     }
482
483     // ********************************************************* Step 4: application initialization: dir lock, daemonize, pidfile, debug log
484
485     std::string strDataDir = GetDataDir().string();
486     std::string strWalletFileName = GetArg("-wallet", "wallet.dat");
487
488     // strWalletFileName must be a plain filename without a directory
489     if (strWalletFileName != boost::filesystem::basename(strWalletFileName) + boost::filesystem::extension(strWalletFileName))
490         return InitError(strprintf(_("Wallet %s resides outside data directory %s."), strWalletFileName.c_str(), strDataDir.c_str()));
491
492     // Make sure only a single Bitcoin process is using the data directory.
493     boost::filesystem::path pathLockFile = GetDataDir() / ".lock";
494     FILE* file = fopen(pathLockFile.string().c_str(), "a"); // empty lock file; created if it doesn't exist.
495     if (file) fclose(file);
496     static boost::interprocess::file_lock lock(pathLockFile.string().c_str());
497     if (!lock.try_lock())
498         return InitError(strprintf(_("Cannot obtain a lock on data directory %s.  NovaCoin is probably already running."), strDataDir.c_str()));
499
500 #if !defined(WIN32) && !defined(QT_GUI)
501     if (fDaemon)
502     {
503         // Daemonize
504         pid_t pid = fork();
505         if (pid < 0)
506         {
507             fprintf(stderr, "Error: fork() returned %d errno %d\n", pid, errno);
508             return false;
509         }
510         if (pid > 0)
511         {
512             CreatePidFile(GetPidFile(), pid);
513             return true;
514         }
515
516         pid_t sid = setsid();
517         if (sid < 0)
518             fprintf(stderr, "Error: setsid() returned %d errno %d\n", sid, errno);
519     }
520 #endif
521
522     if (GetBoolArg("-shrinkdebugfile", !fDebug))
523         ShrinkDebugFile();
524     printf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
525     printf("NovaCoin version %s (%s)\n", FormatFullVersion().c_str(), CLIENT_DATE.c_str());
526     printf("Using OpenSSL version %s\n", SSLeay_version(SSLEAY_VERSION));
527     if (!fLogTimestamps)
528         printf("Startup time: %s\n", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
529     printf("Default data directory %s\n", GetDefaultDataDir().string().c_str());
530     printf("Used data directory %s\n", strDataDir.c_str());
531     std::ostringstream strErrors;
532
533     if (fDaemon)
534         fprintf(stdout, "NovaCoin server starting\n");
535
536     int64 nStart;
537
538     // ********************************************************* Step 5: verify database integrity
539
540     uiInterface.InitMessage(_("Verifying database integrity..."));
541
542     if (!bitdb.Open(GetDataDir()))
543     {
544         string msg = strprintf(_("Error initializing database environment %s!"
545                                  " To recover, BACKUP THAT DIRECTORY, then remove"
546                                  " everything from it except for wallet.dat."), strDataDir.c_str());
547         return InitError(msg);
548     }
549
550     if (GetBoolArg("-salvagewallet"))
551     {
552         // Recover readable keypairs:
553         if (!CWalletDB::Recover(bitdb, strWalletFileName, true))
554             return false;
555     }
556
557     if (filesystem::exists(GetDataDir() / strWalletFileName))
558     {
559         CDBEnv::VerifyResult r = bitdb.Verify(strWalletFileName, CWalletDB::Recover);
560         if (r == CDBEnv::RECOVER_OK)
561         {
562             string msg = strprintf(_("Warning: wallet.dat corrupt, data salvaged!"
563                                      " Original wallet.dat saved as wallet.{timestamp}.bak in %s; if"
564                                      " your balance or transactions are incorrect you should"
565                                      " restore from a backup."), strDataDir.c_str());
566             uiInterface.ThreadSafeMessageBox(msg, _("NovaCoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
567         }
568         if (r == CDBEnv::RECOVER_FAIL)
569             return InitError(_("wallet.dat corrupt, salvage failed"));
570     }
571
572     // ********************************************************* Step 6: network initialization
573
574     int nSocksVersion = GetArg("-socks", 5);
575
576     if (nSocksVersion != 4 && nSocksVersion != 5)
577         return InitError(strprintf(_("Unknown -socks proxy version requested: %i"), nSocksVersion));
578
579     if (mapArgs.count("-onlynet")) {
580         std::set<enum Network> nets;
581         BOOST_FOREACH(std::string snet, mapMultiArgs["-onlynet"]) {
582             enum Network net = ParseNetwork(snet);
583             if (net == NET_UNROUTABLE)
584                 return InitError(strprintf(_("Unknown network specified in -onlynet: '%s'"), snet.c_str()));
585             nets.insert(net);
586         }
587         for (int n = 0; n < NET_MAX; n++) {
588             enum Network net = (enum Network)n;
589             if (!nets.count(net))
590                 SetLimited(net);
591         }
592     }
593 #if defined(USE_IPV6)
594 #if ! USE_IPV6
595     else
596         SetLimited(NET_IPV6);
597 #endif
598 #endif
599
600     CService addrProxy;
601     bool fProxy = false;
602     if (mapArgs.count("-proxy")) {
603         addrProxy = CService(mapArgs["-proxy"], 9050);
604         if (!addrProxy.IsValid())
605             return InitError(strprintf(_("Invalid -proxy address: '%s'"), mapArgs["-proxy"].c_str()));
606
607         if (!IsLimited(NET_IPV4))
608             SetProxy(NET_IPV4, addrProxy, nSocksVersion);
609         if (nSocksVersion > 4) {
610 #ifdef USE_IPV6
611             if (!IsLimited(NET_IPV6))
612                 SetProxy(NET_IPV6, addrProxy, nSocksVersion);
613 #endif
614             SetNameProxy(addrProxy, nSocksVersion);
615         }
616         fProxy = true;
617     }
618
619     // -tor can override normal proxy, -notor disables tor entirely
620     if (!(mapArgs.count("-tor") && mapArgs["-tor"] == "0") && (fProxy || mapArgs.count("-tor"))) {
621         CService addrOnion;
622         if (!mapArgs.count("-tor"))
623             addrOnion = addrProxy;
624         else
625             addrOnion = CService(mapArgs["-tor"], 9050);
626         if (!addrOnion.IsValid())
627             return InitError(strprintf(_("Invalid -tor address: '%s'"), mapArgs["-tor"].c_str()));
628         SetProxy(NET_TOR, addrOnion, 5);
629         SetReachable(NET_TOR);
630     }
631
632     // see Step 2: parameter interactions for more information about these
633     fNoListen = !GetBoolArg("-listen", true);
634     fDiscover = GetBoolArg("-discover", true);
635     fNameLookup = GetBoolArg("-dns", true);
636 #ifdef USE_UPNP
637     fUseUPnP = GetBoolArg("-upnp", USE_UPNP);
638 #endif
639
640     bool fBound = false;
641     if (!fNoListen)
642     {
643         std::string strError;
644         if (mapArgs.count("-bind")) {
645             BOOST_FOREACH(std::string strBind, mapMultiArgs["-bind"]) {
646                 CService addrBind;
647                 if (!Lookup(strBind.c_str(), addrBind, GetListenPort(), false))
648                     return InitError(strprintf(_("Cannot resolve -bind address: '%s'"), strBind.c_str()));
649                 fBound |= Bind(addrBind);
650             }
651         } else {
652             struct in_addr inaddr_any;
653             inaddr_any.s_addr = INADDR_ANY;
654 #ifdef USE_IPV6
655             if (!IsLimited(NET_IPV6))
656                 fBound |= Bind(CService(in6addr_any, GetListenPort()), false);
657 #endif
658             if (!IsLimited(NET_IPV4))
659                 fBound |= Bind(CService(inaddr_any, GetListenPort()), !fBound);
660         }
661         if (!fBound)
662             return InitError(_("Failed to listen on any port. Use -listen=0 if you want this."));
663     }
664
665     if (mapArgs.count("-externalip"))
666     {
667         BOOST_FOREACH(string strAddr, mapMultiArgs["-externalip"]) {
668             CService addrLocal(strAddr, GetListenPort(), fNameLookup);
669             if (!addrLocal.IsValid())
670                 return InitError(strprintf(_("Cannot resolve -externalip address: '%s'"), strAddr.c_str()));
671             AddLocal(CService(strAddr, GetListenPort(), fNameLookup), LOCAL_MANUAL);
672         }
673     }
674
675     if (mapArgs.count("-reservebalance")) // ppcoin: reserve balance amount
676     {
677         int64 nReserveBalance = 0;
678         if (!ParseMoney(mapArgs["-reservebalance"], nReserveBalance))
679         {
680             InitError(_("Invalid amount for -reservebalance=<amount>"));
681             return false;
682         }
683     }
684
685     if (mapArgs.count("-checkpointkey")) // ppcoin: checkpoint master priv key
686     {
687         if (!Checkpoints::SetCheckpointPrivKey(GetArg("-checkpointkey", "")))
688             InitError(_("Unable to sign checkpoint, wrong checkpointkey?\n"));
689     }
690
691     BOOST_FOREACH(string strDest, mapMultiArgs["-seednode"])
692         AddOneShot(strDest);
693
694     // ********************************************************* Step 7: load blockchain
695
696     if (!bitdb.Open(GetDataDir()))
697     {
698         string msg = strprintf(_("Error initializing database environment %s!"
699                                  " To recover, BACKUP THAT DIRECTORY, then remove"
700                                  " everything from it except for wallet.dat."), strDataDir.c_str());
701         return InitError(msg);
702     }
703
704     if (GetBoolArg("-loadblockindextest"))
705     {
706         CTxDB txdb("r");
707         txdb.LoadBlockIndex();
708         PrintBlockTree();
709         return false;
710     }
711
712     uiInterface.InitMessage(_("Loading block index..."));
713     printf("Loading block index...\n");
714     nStart = GetTimeMillis();
715     if (!LoadBlockIndex())
716         return InitError(_("Error loading blkindex.dat"));
717
718
719     // as LoadBlockIndex can take several minutes, it's possible the user
720     // requested to kill bitcoin-qt during the last operation. If so, exit.
721     // As the program has not fully started yet, Shutdown() is possibly overkill.
722     if (fRequestShutdown)
723     {
724         printf("Shutdown requested. Exiting.\n");
725         return false;
726     }
727     printf(" block index %15"PRI64d"ms\n", GetTimeMillis() - nStart);
728
729     if (GetBoolArg("-printblockindex") || GetBoolArg("-printblocktree"))
730     {
731         PrintBlockTree();
732         return false;
733     }
734
735     if (mapArgs.count("-printblock"))
736     {
737         string strMatch = mapArgs["-printblock"];
738         int nFound = 0;
739         for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
740         {
741             uint256 hash = (*mi).first;
742             if (strncmp(hash.ToString().c_str(), strMatch.c_str(), strMatch.size()) == 0)
743             {
744                 CBlockIndex* pindex = (*mi).second;
745                 CBlock block;
746                 block.ReadFromDisk(pindex);
747                 block.BuildMerkleTree();
748                 block.print();
749                 printf("\n");
750                 nFound++;
751             }
752         }
753         if (nFound == 0)
754             printf("No blocks matching %s were found\n", strMatch.c_str());
755         return false;
756     }
757
758     // ********************************************************* Testing Zerocoin
759
760
761     if (GetBoolArg("-zerotest", false))
762     {
763         printf("\n=== ZeroCoin tests start ===\n");
764         Test_RunAllTests();
765         printf("=== ZeroCoin tests end ===\n\n");
766     }
767
768     // ********************************************************* Step 8: load wallet
769
770     uiInterface.InitMessage(_("Loading wallet..."));
771     printf("Loading wallet...\n");
772     nStart = GetTimeMillis();
773     bool fFirstRun = true;
774     pwalletMain = new CWallet(strWalletFileName);
775     DBErrors nLoadWalletRet = pwalletMain->LoadWallet(fFirstRun);
776     if (nLoadWalletRet != DB_LOAD_OK)
777     {
778         if (nLoadWalletRet == DB_CORRUPT)
779             strErrors << _("Error loading wallet.dat: Wallet corrupted") << "\n";
780         else if (nLoadWalletRet == DB_NONCRITICAL_ERROR)
781         {
782             string msg(_("Warning: error reading wallet.dat! All keys read correctly, but transaction data"
783                          " or address book entries might be missing or incorrect."));
784             uiInterface.ThreadSafeMessageBox(msg, _("NovaCoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
785         }
786         else if (nLoadWalletRet == DB_TOO_NEW)
787             strErrors << _("Error loading wallet.dat: Wallet requires newer version of NovaCoin") << "\n";
788         else if (nLoadWalletRet == DB_NEED_REWRITE)
789         {
790             strErrors << _("Wallet needed to be rewritten: restart NovaCoin to complete") << "\n";
791             printf("%s", strErrors.str().c_str());
792             return InitError(strErrors.str());
793         }
794         else
795             strErrors << _("Error loading wallet.dat") << "\n";
796     }
797
798     if (GetBoolArg("-upgradewallet", fFirstRun))
799     {
800         int nMaxVersion = GetArg("-upgradewallet", 0);
801         if (nMaxVersion == 0) // the -upgradewallet without argument case
802         {
803             printf("Performing wallet upgrade to %i\n", FEATURE_LATEST);
804             nMaxVersion = CLIENT_VERSION;
805             pwalletMain->SetMinVersion(FEATURE_LATEST); // permanently upgrade the wallet immediately
806         }
807         else
808             printf("Allowing wallet upgrade up to %i\n", nMaxVersion);
809         if (nMaxVersion < pwalletMain->GetVersion())
810             strErrors << _("Cannot downgrade wallet") << "\n";
811         pwalletMain->SetMaxVersion(nMaxVersion);
812     }
813
814     if (fFirstRun)
815     {
816         // Create new keyUser and set as default key
817         RandAddSeedPerfmon();
818
819         CPubKey newDefaultKey;
820         if (!pwalletMain->GetKeyFromPool(newDefaultKey, false))
821             strErrors << _("Cannot initialize keypool") << "\n";
822         pwalletMain->SetDefaultKey(newDefaultKey);
823         if (!pwalletMain->SetAddressBookName(pwalletMain->vchDefaultKey.GetID(), ""))
824             strErrors << _("Cannot write default address") << "\n";
825     }
826
827     printf("%s", strErrors.str().c_str());
828     printf(" wallet      %15"PRI64d"ms\n", GetTimeMillis() - nStart);
829
830     RegisterWallet(pwalletMain);
831
832     CBlockIndex *pindexRescan = pindexBest;
833     if (GetBoolArg("-rescan"))
834         pindexRescan = pindexGenesisBlock;
835     else
836     {
837         CWalletDB walletdb(strWalletFileName);
838         CBlockLocator locator;
839         if (walletdb.ReadBestBlock(locator))
840             pindexRescan = locator.GetBlockIndex();
841     }
842     if (pindexBest != pindexRescan && pindexBest && pindexRescan && pindexBest->nHeight > pindexRescan->nHeight)
843     {
844         uiInterface.InitMessage(_("Rescanning..."));
845         printf("Rescanning last %i blocks (from block %i)...\n", pindexBest->nHeight - pindexRescan->nHeight, pindexRescan->nHeight);
846         nStart = GetTimeMillis();
847         pwalletMain->ScanForWalletTransactions(pindexRescan, true);
848         printf(" rescan      %15"PRI64d"ms\n", GetTimeMillis() - nStart);
849     }
850
851     // ********************************************************* Step 9: import blocks
852
853     if (mapArgs.count("-loadblock"))
854     {
855         uiInterface.InitMessage(_("Importing blockchain data file."));
856
857         BOOST_FOREACH(string strFile, mapMultiArgs["-loadblock"])
858         {
859             FILE *file = fopen(strFile.c_str(), "rb");
860             if (file)
861                 LoadExternalBlockFile(file);
862         }
863         exit(0);
864     }
865
866     filesystem::path pathBootstrap = GetDataDir() / "bootstrap.dat";
867     if (filesystem::exists(pathBootstrap)) {
868         uiInterface.InitMessage(_("Importing bootstrap blockchain data file."));
869
870         FILE *file = fopen(pathBootstrap.string().c_str(), "rb");
871         if (file) {
872             filesystem::path pathBootstrapOld = GetDataDir() / "bootstrap.dat.old";
873             LoadExternalBlockFile(file);
874             RenameOver(pathBootstrap, pathBootstrapOld);
875         }
876     }
877
878     // ********************************************************* Step 10: load peers
879
880     uiInterface.InitMessage(_("Loading addresses..."));
881     printf("Loading addresses...\n");
882     nStart = GetTimeMillis();
883
884     {
885         CAddrDB adb;
886         if (!adb.Read(addrman))
887             printf("Invalid or missing peers.dat; recreating\n");
888     }
889
890     printf("Loaded %i addresses from peers.dat  %"PRI64d"ms\n",
891            addrman.size(), GetTimeMillis() - nStart);
892
893     // ********************************************************* Step 11: start node
894
895     if (!CheckDiskSpace())
896         return false;
897
898     RandAddSeedPerfmon();
899
900     //// debug print
901     printf("mapBlockIndex.size() = %"PRIszu"\n",   mapBlockIndex.size());
902     printf("nBestHeight = %d\n",            nBestHeight);
903     printf("setKeyPool.size() = %"PRIszu"\n",      pwalletMain->setKeyPool.size());
904     printf("mapWallet.size() = %"PRIszu"\n",       pwalletMain->mapWallet.size());
905     printf("mapAddressBook.size() = %"PRIszu"\n",  pwalletMain->mapAddressBook.size());
906
907     if (!NewThread(StartNode, NULL))
908         InitError(_("Error: could not start node"));
909
910     if (fServer)
911         NewThread(ThreadRPCServer, NULL);
912
913     // ********************************************************* Step 12: finished
914
915     uiInterface.InitMessage(_("Done loading"));
916     printf("Done loading\n");
917
918     if (!strErrors.str().empty())
919         return InitError(strErrors.str());
920
921      // Add wallet transactions that aren't already in a block to mapTransactions
922     pwalletMain->ReacceptWalletTransactions();
923
924 #if !defined(QT_GUI)
925     // Loop until process is exit()ed from shutdown() function,
926     // called from ThreadRPCServer thread when a "stop" command is received.
927     while (1)
928         Sleep(5000);
929 #endif
930
931     return true;
932 }