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