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