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