Move variables to a new location
[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
588     if (fDaemon)
589         fprintf(stdout, "NovaCoin server starting\n");
590
591     if (nScriptCheckThreads) {
592         printf("Using %u threads for script verification\n", nScriptCheckThreads);
593         for (int i=0; i<nScriptCheckThreads-1; i++)
594             NewThread(ThreadScriptCheck, NULL);
595     }
596
597     // ********************************************************* Step 5: verify database integrity
598
599     uiInterface.InitMessage(_("Verifying database integrity..."));
600
601     if (!bitdb.Open(GetDataDir()))
602     {
603         string msg = strprintf(_("Error initializing database environment %s!"
604                                  " To recover, BACKUP THAT DIRECTORY, then remove"
605                                  " everything from it except for wallet.dat."), strDataDir.c_str());
606         return InitError(msg);
607     }
608
609     if (GetBoolArg("-salvagewallet"))
610     {
611         // Recover readable keypairs:
612         if (!CWalletDB::Recover(bitdb, strWalletFileName, true))
613             return false;
614     }
615
616     if (filesystem::exists(GetDataDir() / strWalletFileName))
617     {
618         CDBEnv::VerifyResult r = bitdb.Verify(strWalletFileName, CWalletDB::Recover);
619         if (r == CDBEnv::RECOVER_OK)
620         {
621             string msg = strprintf(_("Warning: wallet.dat corrupt, data salvaged!"
622                                      " Original wallet.dat saved as wallet.{timestamp}.bak in %s; if"
623                                      " your balance or transactions are incorrect you should"
624                                      " restore from a backup."), strDataDir.c_str());
625             uiInterface.ThreadSafeMessageBox(msg, _("NovaCoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
626         }
627         if (r == CDBEnv::RECOVER_FAIL)
628             return InitError(_("wallet.dat corrupt, salvage failed"));
629     }
630
631     // ********************************************************* Step 6: network initialization
632
633     int nSocksVersion = GetArgInt("-socks", 5);
634
635     if (nSocksVersion != 4 && nSocksVersion != 5)
636         return InitError(strprintf(_("Unknown -socks proxy version requested: %i"), nSocksVersion));
637
638     if (mapArgs.count("-onlynet")) {
639         std::set<enum Network> nets;
640         for(std::string snet :  mapMultiArgs["-onlynet"]) {
641             enum Network net = ParseNetwork(snet);
642             if (net == NET_UNROUTABLE)
643                 return InitError(strprintf(_("Unknown network specified in -onlynet: '%s'"), snet.c_str()));
644             nets.insert(net);
645         }
646         for (int n = 0; n < NET_MAX; n++) {
647             enum Network net = (enum Network)n;
648             if (!nets.count(net))
649                 SetLimited(net);
650         }
651     }
652 #if defined(USE_IPV6)
653 #if ! USE_IPV6
654     else
655         SetLimited(NET_IPV6);
656 #endif
657 #endif
658
659     CService addrProxy;
660     bool fProxy = false;
661     if (mapArgs.count("-proxy")) {
662         addrProxy = CService(mapArgs["-proxy"], nSocksDefault);
663         if (!addrProxy.IsValid())
664             return InitError(strprintf(_("Invalid -proxy address: '%s'"), mapArgs["-proxy"].c_str()));
665
666         if (!IsLimited(NET_IPV4))
667             SetProxy(NET_IPV4, addrProxy, nSocksVersion);
668         if (nSocksVersion > 4) {
669 #ifdef USE_IPV6
670             if (!IsLimited(NET_IPV6))
671                 SetProxy(NET_IPV6, addrProxy, nSocksVersion);
672 #endif
673             SetNameProxy(addrProxy, nSocksVersion);
674         }
675         fProxy = true;
676     }
677
678     // -tor can override normal proxy, -notor disables tor entirely
679     if (!(mapArgs.count("-tor") && mapArgs["-tor"] == "0") && (fProxy || mapArgs.count("-tor"))) {
680         CService addrOnion;
681         if (!mapArgs.count("-tor"))
682             addrOnion = addrProxy;
683         else
684             addrOnion = CService(mapArgs["-tor"], nSocksDefault);
685         if (!addrOnion.IsValid())
686             return InitError(strprintf(_("Invalid -tor address: '%s'"), mapArgs["-tor"].c_str()));
687         SetProxy(NET_TOR, addrOnion, 5);
688         SetReachable(NET_TOR);
689     }
690
691     // see Step 2: parameter interactions for more information about these
692     if (!IsLimited(NET_IPV4) || !IsLimited(NET_IPV6))
693     {
694         fNoListen = !GetBoolArg("-listen", true);
695         fDiscover = GetBoolArg("-discover", true);
696         fNameLookup = GetBoolArg("-dns", true);
697     } else {
698         // Don't listen, discover addresses or search for nodes if IPv4 and IPv6 networking is disabled.
699         fNoListen = true;
700         fDiscover = fNameLookup = false;
701         SoftSetBoolArg("-irc", false);
702         SoftSetBoolArg("-dnsseed", false);
703     }
704
705     bool fBound = false;
706     if (!fNoListen)
707     {
708         if (mapArgs.count("-bind")) {
709             for(std::string strBind :  mapMultiArgs["-bind"]) {
710                 CService addrBind;
711                 if (!Lookup(strBind.c_str(), addrBind, GetListenPort(), false))
712                     return InitError(strprintf(_("Cannot resolve -bind address: '%s'"), strBind.c_str()));
713                 fBound |= Bind(addrBind);
714             }
715         } else {
716             struct in_addr inaddr_any;
717             inaddr_any.s_addr = INADDR_ANY;
718 #ifdef USE_IPV6
719             if (!IsLimited(NET_IPV6))
720                 fBound |= Bind(CService(in6addr_any, GetListenPort()), false);
721 #endif
722             if (!IsLimited(NET_IPV4))
723                 fBound |= Bind(CService(inaddr_any, GetListenPort()), !fBound);
724
725         }
726         if (!fBound)
727             return InitError(_("Failed to listen on any port. Use -listen=0 if you want this."));
728     }
729
730     // If Tor is reachable then listen on loopback interface,
731     //    to allow allow other users reach you through the hidden service
732     if (!IsLimited(NET_TOR) && mapArgs.count("-torname")) {
733         std::string strError;
734         struct in_addr inaddr_loopback;
735         inaddr_loopback.s_addr = htonl(INADDR_LOOPBACK);
736
737 #ifdef USE_IPV6
738         if (!BindListenPort(CService(in6addr_loopback, GetListenPort()), strError))
739             return InitError(strError);
740 #endif
741         if (!BindListenPort(CService(inaddr_loopback, GetListenPort()), strError))
742             return InitError(strError);
743     }
744
745     if (mapArgs.count("-externalip"))
746     {
747         for(string strAddr :  mapMultiArgs["-externalip"]) {
748             CService addrLocal(strAddr, GetListenPort(), fNameLookup);
749             if (!addrLocal.IsValid())
750                 return InitError(strprintf(_("Cannot resolve -externalip address: '%s'"), strAddr.c_str()));
751             AddLocal(CService(strAddr, GetListenPort(), fNameLookup), LOCAL_MANUAL);
752         }
753     }
754
755     if (mapArgs.count("-reservebalance")) // ppcoin: reserve balance amount
756     {
757         if (!ParseMoney(mapArgs["-reservebalance"], nReserveBalance))
758         {
759             InitError(_("Invalid amount for -reservebalance=<amount>"));
760             return false;
761         }
762     }
763
764     if (mapArgs.count("-checkpointkey")) // ppcoin: checkpoint master priv key
765     {
766         if (!Checkpoints::SetCheckpointPrivKey(GetArg("-checkpointkey", "")))
767             InitError(_("Unable to sign checkpoint, wrong checkpointkey?\n"));
768     }
769
770     for(string strDest :  mapMultiArgs["-seednode"])
771         AddOneShot(strDest);
772
773     // ********************************************************* Step 7: load blockchain
774
775     if (!bitdb.Open(GetDataDir()))
776     {
777         string msg = strprintf(_("Error initializing database environment %s!"
778                                  " To recover, BACKUP THAT DIRECTORY, then remove"
779                                  " everything from it except for wallet.dat."), strDataDir.c_str());
780         return InitError(msg);
781     }
782
783     if (GetBoolArg("-loadblockindextest"))
784     {
785         CTxDB txdb("r");
786         txdb.LoadBlockIndex();
787         PrintBlockTree();
788         return false;
789     }
790
791
792     printf("Loading block index...\n");
793     bool fLoaded = false;
794     int64_t nStart;
795     while (!fLoaded) {
796         std::string strLoadError;
797         uiInterface.InitMessage(_("Loading block index..."));
798
799         nStart = GetTimeMillis();
800         do {
801             try {
802                 UnloadBlockIndex();
803
804                 if (!LoadBlockIndex()) {
805                     strLoadError = _("Error loading block database");
806                     break;
807                 }
808             } catch(const std::exception&) {
809                 strLoadError = _("Error opening block database");
810                 break;
811             }
812
813             fLoaded = true;
814         } while(false);
815
816         if (!fLoaded) {
817             DropBlockIndex();
818             // TODO: suggest reindex here
819             return InitError(strLoadError);
820         }
821     }
822
823     // as LoadBlockIndex can take several minutes, it's possible the user
824     // requested to kill bitcoin-qt during the last operation. If so, exit.
825     // As the program has not fully started yet, Shutdown() is possibly overkill.
826     if (fRequestShutdown)
827     {
828         printf("Shutdown requested. Exiting.\n");
829         return false;
830     }
831     printf(" block index %15" PRId64 "ms\n", GetTimeMillis() - nStart);
832
833     if (GetBoolArg("-printblockindex") || GetBoolArg("-printblocktree"))
834     {
835         PrintBlockTree();
836         return false;
837     }
838
839     if (mapArgs.count("-printblock"))
840     {
841         auto strMatch = mapArgs["-printblock"];
842         int nFound = 0;
843         for (auto mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
844         {
845             auto hash = (*mi).first;
846             if (strMatch.compare(hash.ToString()) == 0)
847             {
848                 auto pindex = (*mi).second;
849                 CBlock block;
850                 block.ReadFromDisk(pindex);
851                 block.BuildMerkleTree();
852                 block.print();
853                 printf("\n");
854                 nFound++;
855             }
856         }
857         if (nFound == 0)
858             printf("No blocks matching %s were found\n", strMatch.c_str());
859         return false;
860     }
861
862     // ********************************************************* Step 8: load wallet
863
864     if (GetBoolArg("-zapwallettxes", false)) {
865         uiInterface.InitMessage(_("Zapping all transactions from wallet..."));
866
867         pwalletMain = new CWallet(strWalletFileName);
868         DBErrors nZapWalletRet = pwalletMain->ZapWalletTx();
869         if (nZapWalletRet != DB_LOAD_OK) {
870             uiInterface.InitMessage(_("Error loading wallet.dat: Wallet corrupted"));
871             return false;
872         }
873         delete pwalletMain;
874         pwalletMain = NULL;
875     }
876
877     uiInterface.InitMessage(_("Loading wallet..."));
878     printf("Loading wallet...\n");
879     nStart = GetTimeMillis();
880     std::ostringstream strErrors;
881     bool fFirstRun = true;
882     pwalletMain = new CWallet(strWalletFileName);
883     DBErrors nLoadWalletRet = pwalletMain->LoadWallet(fFirstRun);
884     if (nLoadWalletRet != DB_LOAD_OK)
885     {
886         if (nLoadWalletRet == DB_CORRUPT)
887             strErrors << _("Error loading wallet.dat: Wallet corrupted") << "\n";
888         else if (nLoadWalletRet == DB_NONCRITICAL_ERROR)
889         {
890             string msg(_("Warning: error reading wallet.dat! All keys read correctly, but transaction data"
891                          " or address book entries might be missing or incorrect."));
892             uiInterface.ThreadSafeMessageBox(msg, _("NovaCoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
893         }
894         else if (nLoadWalletRet == DB_TOO_NEW)
895             strErrors << _("Error loading wallet.dat: Wallet requires newer version of NovaCoin") << "\n";
896         else if (nLoadWalletRet == DB_NEED_REWRITE)
897         {
898             strErrors << _("Wallet needed to be rewritten: restart NovaCoin to complete") << "\n";
899             printf("%s", strErrors.str().c_str());
900             return InitError(strErrors.str());
901         }
902         else
903             strErrors << _("Error loading wallet.dat") << "\n";
904     }
905
906     if (GetBoolArg("-upgradewallet", fFirstRun))
907     {
908         int nMaxVersion = GetArgInt("-upgradewallet", 0);
909         if (nMaxVersion == 0) // the -upgradewallet without argument case
910         {
911             printf("Performing wallet upgrade to %i\n", FEATURE_LATEST);
912             nMaxVersion = CLIENT_VERSION;
913             pwalletMain->SetMinVersion(FEATURE_LATEST); // permanently upgrade the wallet immediately
914         }
915         else
916             printf("Allowing wallet upgrade up to %i\n", nMaxVersion);
917         if (nMaxVersion < pwalletMain->GetVersion())
918             strErrors << _("Cannot downgrade wallet") << "\n";
919         pwalletMain->SetMaxVersion(nMaxVersion);
920     }
921
922     if (fFirstRun)
923     {
924         // Create new keyUser and set as default key
925         RandAddSeedPerfmon();
926
927         CPubKey newDefaultKey;
928         if (!pwalletMain->GetKeyFromPool(newDefaultKey, false))
929             strErrors << _("Cannot initialize keypool") << "\n";
930         pwalletMain->SetDefaultKey(newDefaultKey);
931         if (!pwalletMain->SetAddressBookName(pwalletMain->vchDefaultKey.GetID(), ""))
932             strErrors << _("Cannot write default address") << "\n";
933
934         auto keyView = pwalletMain->GenerateNewMalleableKey();
935         CMalleableKey mKey;
936         if (!pwalletMain->GetMalleableKey(keyView, mKey))
937             strErrors << _("Unable to generate new malleable key");
938         if (!pwalletMain->SetAddressBookName(CBitcoinAddress(keyView.GetMalleablePubKey()), ""))
939             strErrors << _("Cannot write default address") << "\n";
940     }
941
942     printf("%s", strErrors.str().c_str());
943     printf(" wallet      %15" PRId64 "ms\n", GetTimeMillis() - nStart);
944
945     RegisterWallet(pwalletMain);
946
947     CBlockIndex *pindexRescan = pindexBest;
948     if (GetBoolArg("-rescan"))
949         pindexRescan = pindexGenesisBlock;
950     else
951     {
952         CWalletDB walletdb(strWalletFileName);
953         CBlockLocator locator;
954         if (walletdb.ReadBestBlock(locator))
955             pindexRescan = locator.GetBlockIndex();
956     }
957     if (pindexBest != pindexRescan && pindexBest && pindexRescan && pindexBest->nHeight > pindexRescan->nHeight)
958     {
959         uiInterface.InitMessage(_("Rescanning..."));
960         printf("Rescanning last %i blocks (from block %i)...\n", pindexBest->nHeight - pindexRescan->nHeight, pindexRescan->nHeight);
961         nStart = GetTimeMillis();
962         pwalletMain->ScanForWalletTransactions(pindexRescan, true);
963         printf(" rescan      %15" PRId64 "ms\n", GetTimeMillis() - nStart);
964     }
965
966     // ********************************************************* Step 9: import blocks
967
968     if (mapArgs.count("-loadblock"))
969     {
970         uiInterface.InitMessage(_("Importing blockchain data file."));
971
972         for(string strFile :  mapMultiArgs["-loadblock"])
973         {
974             FILE *file = fopen(strFile.c_str(), "rb");
975             if (file)
976                 LoadExternalBlockFile(file, uiInterface);
977         }
978         StartShutdown();
979     }
980
981     filesystem::path pathBootstrap = GetDataDir() / "bootstrap.dat";
982     if (filesystem::exists(pathBootstrap)) {
983         uiInterface.InitMessage(_("Importing bootstrap blockchain data file."));
984
985         FILE *file = fopen(pathBootstrap.string().c_str(), "rb");
986         if (file) {
987             filesystem::path pathBootstrapOld = GetDataDir() / "bootstrap.dat.old";
988             LoadExternalBlockFile(file, uiInterface);
989             RenameOver(pathBootstrap, pathBootstrapOld);
990         }
991     }
992
993     // ********************************************************* Step 10: load peers
994
995     uiInterface.InitMessage(_("Loading addresses..."));
996     printf("Loading addresses...\n");
997     nStart = GetTimeMillis();
998
999     {
1000         CAddrDB adb;
1001         if (!adb.Read(addrman))
1002             printf("Invalid or missing peers.dat; recreating\n");
1003     }
1004
1005     printf("Loaded %i addresses from peers.dat  %" PRId64 "ms\n",
1006            addrman.size(), GetTimeMillis() - nStart);
1007
1008     // ********************************************************* Step 11: start node
1009
1010     if (!CheckDiskSpace())
1011         return false;
1012
1013     RandAddSeedPerfmon();
1014
1015     //// debug print
1016     printf("mapBlockIndex.size() = %" PRIszu "\n",   mapBlockIndex.size());
1017     printf("nBestHeight = %d\n",            nBestHeight);
1018     printf("setKeyPool.size() = %" PRIszu "\n",      pwalletMain->setKeyPool.size());
1019     printf("mapWallet.size() = %" PRIszu "\n",       pwalletMain->mapWallet.size());
1020     printf("mapAddressBook.size() = %" PRIszu "\n",  pwalletMain->mapAddressBook.size());
1021
1022     if (!NewThread(StartNode, NULL))
1023         InitError(_("Error: could not start node"));
1024
1025     if (fServer)
1026         NewThread(ThreadRPCServer, NULL);
1027
1028     // ********************************************************* Step 13: IP collection thread
1029     strCollectorCommand = GetArg("-peercollector", "");
1030     if (!fTestNet && strCollectorCommand != "")
1031         NewThread(ThreadIPCollector, NULL);
1032     // ********************************************************* Step 14: finished
1033
1034     uiInterface.InitMessage(_("Done loading"));
1035     printf("Done loading\n");
1036
1037     if (!strErrors.str().empty())
1038         return InitError(strErrors.str());
1039
1040      // Add wallet transactions that aren't already in a block to mapTransactions
1041     pwalletMain->ReacceptWalletTransactions();
1042
1043 #if !defined(QT_GUI)
1044     // Loop until process is exit()ed from shutdown() function,
1045     // called from ThreadRPCServer thread when a "stop" command is received.
1046     for ( ; ; )
1047         Sleep(5000);
1048 #endif
1049
1050     return true;
1051 }