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