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