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