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