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