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