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