Merge branch 'master' of github.com:novacoin-project/novacoin
[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     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: 2500, 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 /** Initialize bitcoin.
322  *  @pre Parameters should be parsed and config file should be read.
323  */
324 bool AppInit2()
325 {
326     // ********************************************************* Step 1: setup
327 #ifdef _MSC_VER
328     // Turn off Microsoft heap dump noise
329     _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
330     _CrtSetReportFile(_CRT_WARN, CreateFileA("NUL", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0));
331 #endif
332 #if _MSC_VER >= 1400
333     // Disable confusing "helpful" text message on abort, Ctrl-C
334     _set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT);
335 #endif
336 #ifdef WIN32
337     // Enable Data Execution Prevention (DEP)
338     // Minimum supported OS versions: WinXP SP3, WinVista >= SP1, Win Server 2008
339     // A failure is non-critical and needs no further attention!
340 #ifndef PROCESS_DEP_ENABLE
341 // We define this here, because GCCs winbase.h limits this to _WIN32_WINNT >= 0x0601 (Windows 7),
342 // which is not correct. Can be removed, when GCCs winbase.h is fixed!
343 #define PROCESS_DEP_ENABLE 0x00000001
344 #endif
345     typedef BOOL (WINAPI *PSETPROCDEPPOL)(DWORD);
346     PSETPROCDEPPOL setProcDEPPol = (PSETPROCDEPPOL)GetProcAddress(GetModuleHandleA("Kernel32.dll"), "SetProcessDEPPolicy");
347     if (setProcDEPPol != NULL) setProcDEPPol(PROCESS_DEP_ENABLE);
348
349     // Initialize Windows Sockets
350     WSADATA wsadata;
351     int ret = WSAStartup(MAKEWORD(2,2), &wsadata);
352     if (ret != NO_ERROR)
353     {
354         return InitError(strprintf("Error: TCP/IP socket library failed to start (WSAStartup returned error %d)", ret));
355     }
356 #endif
357 #ifndef WIN32
358     umask(077);
359
360     // Clean shutdown on SIGTERM
361     struct sigaction sa;
362     sa.sa_handler = HandleSIGTERM;
363     sigemptyset(&sa.sa_mask);
364     sa.sa_flags = 0;
365     sigaction(SIGTERM, &sa, NULL);
366     sigaction(SIGINT, &sa, NULL);
367
368     // Reopen debug.log on SIGHUP
369     struct sigaction sa_hup;
370     sa_hup.sa_handler = HandleSIGHUP;
371     sigemptyset(&sa_hup.sa_mask);
372     sa_hup.sa_flags = 0;
373     sigaction(SIGHUP, &sa_hup, NULL);
374 #endif
375
376     // ********************************************************* Step 2: parameter interactions
377
378     nNodeLifespan = GetArgUInt("-addrlifespan", 7);
379     fUseFastIndex = GetBoolArg("-fastindex", true);
380     fUseMemoryLog = GetBoolArg("-memorylog", true);
381
382     // Ping and address broadcast intervals
383     nPingInterval = max<int64_t>(10 * 60, GetArg("-keepalive", 30 * 60));
384
385     CheckpointsMode = Checkpoints::STRICT;
386     std::string strCpMode = GetArg("-cppolicy", "strict");
387
388     if(strCpMode == "strict") {
389         CheckpointsMode = Checkpoints::STRICT;
390     }
391
392     if(strCpMode == "advisory") {
393         CheckpointsMode = Checkpoints::ADVISORY;
394     }
395
396     if(strCpMode == "permissive") {
397         CheckpointsMode = Checkpoints::PERMISSIVE;
398     }
399
400     fTestNet = GetBoolArg("-testnet");
401     if (fTestNet) {
402         SoftSetBoolArg("-irc", true);
403     }
404
405     if (mapArgs.count("-bind")) {
406         // when specifying an explicit binding address, you want to listen on it
407         // even when -connect or -proxy is specified
408         SoftSetBoolArg("-listen", true);
409     }
410
411     if (mapArgs.count("-connect") && mapMultiArgs["-connect"].size() > 0) {
412         // when only connecting to trusted nodes, do not seed via DNS, or listen by default
413         SoftSetBoolArg("-dnsseed", false);
414         SoftSetBoolArg("-listen", false);
415     }
416
417     if (mapArgs.count("-proxy")) {
418         // to protect privacy, do not listen by default if a proxy server is specified
419         SoftSetBoolArg("-listen", false);
420     }
421
422     if (!GetBoolArg("-listen", true)) {
423         // do not map ports or try to retrieve public IP when not listening (pointless)
424         SoftSetBoolArg("-discover", false);
425     }
426
427     if (mapArgs.count("-externalip")) {
428         // if an explicit public IP is specified, do not try to find others
429         SoftSetBoolArg("-discover", false);
430     }
431
432     if (GetBoolArg("-salvagewallet")) {
433         // Rewrite just private keys: rescan to find transactions
434         SoftSetBoolArg("-rescan", true);
435     }
436
437     if (GetBoolArg("-zapwallettxes", false)) {
438         // -zapwallettx implies a rescan
439         if (SoftSetBoolArg("-rescan", true))
440             printf("AppInit2 : parameter interaction: -zapwallettxes=1 -> setting -rescan=1\n");
441     }
442
443     // ********************************************************* Step 3: parameter-to-internal-flags
444
445     // -par=0 means autodetect, but nScriptCheckThreads==0 means no concurrency
446     nScriptCheckThreads = GetArgInt("-par", 0);
447     if (nScriptCheckThreads == 0)
448         nScriptCheckThreads = boost::thread::hardware_concurrency();
449     if (nScriptCheckThreads <= 1) 
450         nScriptCheckThreads = 0;
451     else if (nScriptCheckThreads > MAX_SCRIPTCHECK_THREADS)
452         nScriptCheckThreads = MAX_SCRIPTCHECK_THREADS;
453
454     fDebug = GetBoolArg("-debug");
455
456     // -debug implies fDebug*
457     if (fDebug)
458         fDebugNet = true;
459     else
460         fDebugNet = GetBoolArg("-debugnet");
461
462     bitdb.SetDetach(GetBoolArg("-detachdb", false));
463
464 #if !defined(WIN32) && !defined(QT_GUI)
465     fDaemon = GetBoolArg("-daemon");
466 #else
467     fDaemon = false;
468 #endif
469
470     if (fDaemon)
471         fServer = true;
472     else
473         fServer = GetBoolArg("-server");
474
475     /* force fServer when running without GUI */
476 #if !defined(QT_GUI)
477     fServer = true;
478 #endif
479     fPrintToConsole = GetBoolArg("-printtoconsole");
480     fPrintToDebugger = GetBoolArg("-printtodebugger");
481     fLogTimestamps = GetBoolArg("-logtimestamps");
482
483     if (mapArgs.count("-timeout"))
484     {
485         int nNewTimeout = GetArgInt("-timeout", 5000);
486         if (nNewTimeout > 0 && nNewTimeout < 600000)
487             nConnectTimeout = nNewTimeout;
488     }
489
490     // Put client version data into coinbase flags.
491     COINBASE_FLAGS << PROTOCOL_VERSION << DISPLAY_VERSION_MAJOR << DISPLAY_VERSION_MINOR << DISPLAY_VERSION_REVISION;
492
493     if (mapArgs.count("-paytxfee"))
494     {
495         if (!ParseMoney(mapArgs["-paytxfee"], nTransactionFee))
496             return InitError(strprintf(_("Invalid amount for -paytxfee=<amount>: '%s'"), mapArgs["-paytxfee"].c_str()));
497         if (nTransactionFee > 0.25 * COIN)
498             InitWarning(_("Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction."));
499     }
500
501     fConfChange = GetBoolArg("-confchange", false);
502
503     if (mapArgs.count("-mininput"))
504     {
505         if (!ParseMoney(mapArgs["-mininput"], nMinimumInputValue))
506             return InitError(strprintf(_("Invalid amount for -mininput=<amount>: '%s'"), mapArgs["-mininput"].c_str()));
507     }
508
509     // ********************************************************* Step 4: application initialization: dir lock, daemonize, pidfile, debug log
510
511     std::string strDataDir = GetDataDir().string();
512     strWalletFileName = GetArg("-wallet", "wallet.dat");
513
514     // strWalletFileName must be a plain filename without a directory
515     if (strWalletFileName != boost::filesystem::basename(strWalletFileName) + boost::filesystem::extension(strWalletFileName))
516         return InitError(strprintf(_("Wallet %s resides outside data directory %s."), strWalletFileName.c_str(), strDataDir.c_str()));
517
518     // Make sure only a single Bitcoin process is using the data directory.
519     boost::filesystem::path pathLockFile = GetDataDir() / ".lock";
520     FILE* file = fopen(pathLockFile.string().c_str(), "a"); // empty lock file; created if it doesn't exist.
521     if (file) fclose(file);
522     static boost::interprocess::file_lock lock(pathLockFile.string().c_str());
523     if (!lock.try_lock())
524         return InitError(strprintf(_("Cannot obtain a lock on data directory %s.  NovaCoin is probably already running."), strDataDir.c_str()));
525
526 #if !defined(WIN32) && !defined(QT_GUI)
527     if (fDaemon)
528     {
529         // Daemonize
530         pid_t pid = fork();
531         if (pid < 0)
532         {
533             fprintf(stderr, "Error: fork() returned %d errno %d\n", pid, errno);
534             return false;
535         }
536         if (pid > 0)
537         {
538             CreatePidFile(GetPidFile(), pid);
539             return true;
540         }
541
542         pid_t sid = setsid();
543         if (sid < 0)
544             fprintf(stderr, "Error: setsid() returned %d errno %d\n", sid, errno);
545     }
546 #endif
547
548     if (GetBoolArg("-shrinkdebugfile", !fDebug))
549         ShrinkDebugFile();
550     printf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
551     printf("NovaCoin version %s (%s)\n", FormatFullVersion().c_str(), CLIENT_DATE.c_str());
552     printf("Using OpenSSL version %s\n", SSLeay_version(SSLEAY_VERSION));
553     if (!fLogTimestamps)
554         printf("Startup time: %s\n", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
555     printf("Default data directory %s\n", GetDefaultDataDir().string().c_str());
556     printf("Used data directory %s\n", strDataDir.c_str());
557     std::ostringstream strErrors;
558
559     if (fDaemon)
560         fprintf(stdout, "NovaCoin server starting\n");
561
562     if (nScriptCheckThreads) {
563         printf("Using %u threads for script verification\n", nScriptCheckThreads);
564         for (int i=0; i<nScriptCheckThreads-1; i++)
565             NewThread(ThreadScriptCheck, NULL);
566     }
567
568     int64_t nStart;
569
570     // ********************************************************* Step 5: verify database integrity
571
572     uiInterface.InitMessage(_("Verifying database integrity..."));
573
574     if (!bitdb.Open(GetDataDir()))
575     {
576         string msg = strprintf(_("Error initializing database environment %s!"
577                                  " To recover, BACKUP THAT DIRECTORY, then remove"
578                                  " everything from it except for wallet.dat."), strDataDir.c_str());
579         return InitError(msg);
580     }
581
582     if (GetBoolArg("-salvagewallet"))
583     {
584         // Recover readable keypairs:
585         if (!CWalletDB::Recover(bitdb, strWalletFileName, true))
586             return false;
587     }
588
589     if (filesystem::exists(GetDataDir() / strWalletFileName))
590     {
591         CDBEnv::VerifyResult r = bitdb.Verify(strWalletFileName, CWalletDB::Recover);
592         if (r == CDBEnv::RECOVER_OK)
593         {
594             string msg = strprintf(_("Warning: wallet.dat corrupt, data salvaged!"
595                                      " Original wallet.dat saved as wallet.{timestamp}.bak in %s; if"
596                                      " your balance or transactions are incorrect you should"
597                                      " restore from a backup."), strDataDir.c_str());
598             uiInterface.ThreadSafeMessageBox(msg, _("NovaCoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
599         }
600         if (r == CDBEnv::RECOVER_FAIL)
601             return InitError(_("wallet.dat corrupt, salvage failed"));
602     }
603
604     // ********************************************************* Step 6: network initialization
605
606     int nSocksVersion = GetArgInt("-socks", 5);
607
608     if (nSocksVersion != 4 && nSocksVersion != 5)
609         return InitError(strprintf(_("Unknown -socks proxy version requested: %i"), nSocksVersion));
610
611     if (mapArgs.count("-onlynet")) {
612         std::set<enum Network> nets;
613         BOOST_FOREACH(std::string snet, mapMultiArgs["-onlynet"]) {
614             enum Network net = ParseNetwork(snet);
615             if (net == NET_UNROUTABLE)
616                 return InitError(strprintf(_("Unknown network specified in -onlynet: '%s'"), snet.c_str()));
617             nets.insert(net);
618         }
619         for (int n = 0; n < NET_MAX; n++) {
620             enum Network net = (enum Network)n;
621             if (!nets.count(net))
622                 SetLimited(net);
623         }
624     }
625 #if defined(USE_IPV6)
626 #if ! USE_IPV6
627     else
628         SetLimited(NET_IPV6);
629 #endif
630 #endif
631
632     CService addrProxy;
633     bool fProxy = false;
634     if (mapArgs.count("-proxy")) {
635         addrProxy = CService(mapArgs["-proxy"], nSocksDefault);
636         if (!addrProxy.IsValid())
637             return InitError(strprintf(_("Invalid -proxy address: '%s'"), mapArgs["-proxy"].c_str()));
638
639         if (!IsLimited(NET_IPV4))
640             SetProxy(NET_IPV4, addrProxy, nSocksVersion);
641         if (nSocksVersion > 4) {
642 #ifdef USE_IPV6
643             if (!IsLimited(NET_IPV6))
644                 SetProxy(NET_IPV6, addrProxy, nSocksVersion);
645 #endif
646             SetNameProxy(addrProxy, nSocksVersion);
647         }
648         fProxy = true;
649     }
650
651     // -tor can override normal proxy, -notor disables tor entirely
652     if (!(mapArgs.count("-tor") && mapArgs["-tor"] == "0") && (fProxy || mapArgs.count("-tor"))) {
653         CService addrOnion;
654         if (!mapArgs.count("-tor"))
655             addrOnion = addrProxy;
656         else
657             addrOnion = CService(mapArgs["-tor"], nSocksDefault);
658         if (!addrOnion.IsValid())
659             return InitError(strprintf(_("Invalid -tor address: '%s'"), mapArgs["-tor"].c_str()));
660         SetProxy(NET_TOR, addrOnion, 5);
661         SetReachable(NET_TOR);
662     }
663
664     // see Step 2: parameter interactions for more information about these
665     if (!IsLimited(NET_IPV4) || !IsLimited(NET_IPV6))
666     {
667         fNoListen = !GetBoolArg("-listen", true);
668         fDiscover = GetBoolArg("-discover", true);
669         fNameLookup = GetBoolArg("-dns", true);
670     } else {
671         // Don't listen, discover addresses or search for nodes if IPv4 and IPv6 networking is disabled.
672         fNoListen = true;
673         fDiscover = fNameLookup = false;
674         SoftSetBoolArg("-irc", false);
675         SoftSetBoolArg("-dnsseed", false);
676     }
677
678     bool fBound = false;
679     if (!fNoListen)
680     {
681         std::string strError;
682         if (mapArgs.count("-bind")) {
683             BOOST_FOREACH(std::string strBind, mapMultiArgs["-bind"]) {
684                 CService addrBind;
685                 if (!Lookup(strBind.c_str(), addrBind, GetListenPort(), false))
686                     return InitError(strprintf(_("Cannot resolve -bind address: '%s'"), strBind.c_str()));
687                 fBound |= Bind(addrBind);
688             }
689         } else {
690             struct in_addr inaddr_any;
691             inaddr_any.s_addr = INADDR_ANY;
692 #ifdef USE_IPV6
693             if (!IsLimited(NET_IPV6))
694                 fBound |= Bind(CService(in6addr_any, GetListenPort()), false);
695 #endif
696             if (!IsLimited(NET_IPV4))
697                 fBound |= Bind(CService(inaddr_any, GetListenPort()), !fBound);
698
699         }
700         if (!fBound)
701             return InitError(_("Failed to listen on any port. Use -listen=0 if you want this."));
702     }
703
704     // If Tor is reachable then listen on loopback interface,
705     //    to allow allow other users reach you through the hidden service
706     if (!IsLimited(NET_TOR) && mapArgs.count("-torname")) {
707         std::string strError;
708         struct in_addr inaddr_loopback;
709         inaddr_loopback.s_addr = htonl(INADDR_LOOPBACK);
710
711 #ifdef USE_IPV6
712         if (!BindListenPort(CService(in6addr_loopback, GetListenPort()), strError))
713             return InitError(strError);
714 #endif
715         if (!BindListenPort(CService(inaddr_loopback, GetListenPort()), strError))
716             return InitError(strError);
717     }
718
719     if (mapArgs.count("-externalip"))
720     {
721         BOOST_FOREACH(string strAddr, mapMultiArgs["-externalip"]) {
722             CService addrLocal(strAddr, GetListenPort(), fNameLookup);
723             if (!addrLocal.IsValid())
724                 return InitError(strprintf(_("Cannot resolve -externalip address: '%s'"), strAddr.c_str()));
725             AddLocal(CService(strAddr, GetListenPort(), fNameLookup), LOCAL_MANUAL);
726         }
727     }
728
729     if (mapArgs.count("-reservebalance")) // ppcoin: reserve balance amount
730     {
731         if (!ParseMoney(mapArgs["-reservebalance"], nReserveBalance))
732         {
733             InitError(_("Invalid amount for -reservebalance=<amount>"));
734             return false;
735         }
736     }
737
738     if (mapArgs.count("-checkpointkey")) // ppcoin: checkpoint master priv key
739     {
740         if (!Checkpoints::SetCheckpointPrivKey(GetArg("-checkpointkey", "")))
741             InitError(_("Unable to sign checkpoint, wrong checkpointkey?\n"));
742     }
743
744     BOOST_FOREACH(string strDest, mapMultiArgs["-seednode"])
745         AddOneShot(strDest);
746
747     // ********************************************************* Step 7: load blockchain
748
749     if (!bitdb.Open(GetDataDir()))
750     {
751         string msg = strprintf(_("Error initializing database environment %s!"
752                                  " To recover, BACKUP THAT DIRECTORY, then remove"
753                                  " everything from it except for wallet.dat."), strDataDir.c_str());
754         return InitError(msg);
755     }
756
757     if (GetBoolArg("-loadblockindextest"))
758     {
759         CTxDB txdb("r");
760         txdb.LoadBlockIndex();
761         PrintBlockTree();
762         return false;
763     }
764
765
766     printf("Loading block index...\n");
767     bool fLoaded = false;
768     while (!fLoaded) {
769         std::string strLoadError;
770         uiInterface.InitMessage(_("Loading block index..."));
771
772         nStart = GetTimeMillis();
773         do {
774             try {
775                 UnloadBlockIndex();
776
777                 if (!LoadBlockIndex()) {
778                     strLoadError = _("Error loading block database");
779                     break;
780                 }
781             } catch(const std::exception&) {
782                 strLoadError = _("Error opening block database");
783                 break;
784             }
785
786             fLoaded = true;
787         } while(false);
788
789         if (!fLoaded) {
790             // TODO: suggest reindex here
791             return InitError(strLoadError);
792         }
793     }
794
795     // as LoadBlockIndex can take several minutes, it's possible the user
796     // requested to kill bitcoin-qt during the last operation. If so, exit.
797     // As the program has not fully started yet, Shutdown() is possibly overkill.
798     if (fRequestShutdown)
799     {
800         printf("Shutdown requested. Exiting.\n");
801         return false;
802     }
803     printf(" block index %15" PRId64 "ms\n", GetTimeMillis() - nStart);
804
805     if (GetBoolArg("-printblockindex") || GetBoolArg("-printblocktree"))
806     {
807         PrintBlockTree();
808         return false;
809     }
810
811     if (mapArgs.count("-printblock"))
812     {
813         string strMatch = mapArgs["-printblock"];
814         int nFound = 0;
815         for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
816         {
817             uint256 hash = (*mi).first;
818             if (strncmp(hash.ToString().c_str(), strMatch.c_str(), strMatch.size()) == 0)
819             {
820                 CBlockIndex* pindex = (*mi).second;
821                 CBlock block;
822                 block.ReadFromDisk(pindex);
823                 block.BuildMerkleTree();
824                 block.print();
825                 printf("\n");
826                 nFound++;
827             }
828         }
829         if (nFound == 0)
830             printf("No blocks matching %s were found\n", strMatch.c_str());
831         return false;
832     }
833
834     // ********************************************************* Step 8: load wallet
835
836     if (GetBoolArg("-zapwallettxes", false)) {
837         uiInterface.InitMessage(_("Zapping all transactions from wallet..."));
838
839         pwalletMain = new CWallet(strWalletFileName);
840         DBErrors nZapWalletRet = pwalletMain->ZapWalletTx();
841         if (nZapWalletRet != DB_LOAD_OK) {
842             uiInterface.InitMessage(_("Error loading wallet.dat: Wallet corrupted"));
843             return false;
844         }
845         delete pwalletMain;
846         pwalletMain = NULL;
847     }
848
849     uiInterface.InitMessage(_("Loading wallet..."));
850     printf("Loading wallet...\n");
851     nStart = GetTimeMillis();
852     bool fFirstRun = true;
853     pwalletMain = new CWallet(strWalletFileName);
854     DBErrors nLoadWalletRet = pwalletMain->LoadWallet(fFirstRun);
855     if (nLoadWalletRet != DB_LOAD_OK)
856     {
857         if (nLoadWalletRet == DB_CORRUPT)
858             strErrors << _("Error loading wallet.dat: Wallet corrupted") << "\n";
859         else if (nLoadWalletRet == DB_NONCRITICAL_ERROR)
860         {
861             string msg(_("Warning: error reading wallet.dat! All keys read correctly, but transaction data"
862                          " or address book entries might be missing or incorrect."));
863             uiInterface.ThreadSafeMessageBox(msg, _("NovaCoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
864         }
865         else if (nLoadWalletRet == DB_TOO_NEW)
866             strErrors << _("Error loading wallet.dat: Wallet requires newer version of NovaCoin") << "\n";
867         else if (nLoadWalletRet == DB_NEED_REWRITE)
868         {
869             strErrors << _("Wallet needed to be rewritten: restart NovaCoin to complete") << "\n";
870             printf("%s", strErrors.str().c_str());
871             return InitError(strErrors.str());
872         }
873         else
874             strErrors << _("Error loading wallet.dat") << "\n";
875     }
876
877     if (GetBoolArg("-upgradewallet", fFirstRun))
878     {
879         int nMaxVersion = GetArgInt("-upgradewallet", 0);
880         if (nMaxVersion == 0) // the -upgradewallet without argument case
881         {
882             printf("Performing wallet upgrade to %i\n", FEATURE_LATEST);
883             nMaxVersion = CLIENT_VERSION;
884             pwalletMain->SetMinVersion(FEATURE_LATEST); // permanently upgrade the wallet immediately
885         }
886         else
887             printf("Allowing wallet upgrade up to %i\n", nMaxVersion);
888         if (nMaxVersion < pwalletMain->GetVersion())
889             strErrors << _("Cannot downgrade wallet") << "\n";
890         pwalletMain->SetMaxVersion(nMaxVersion);
891     }
892
893     if (fFirstRun)
894     {
895         // Create new keyUser and set as default key
896         RandAddSeedPerfmon();
897
898         CPubKey newDefaultKey;
899         if (!pwalletMain->GetKeyFromPool(newDefaultKey, false))
900             strErrors << _("Cannot initialize keypool") << "\n";
901         pwalletMain->SetDefaultKey(newDefaultKey);
902         if (!pwalletMain->SetAddressBookName(pwalletMain->vchDefaultKey.GetID(), ""))
903             strErrors << _("Cannot write default address") << "\n";
904
905         CMalleableKeyView keyView = pwalletMain->GenerateNewMalleableKey();
906         CMalleableKey mKey;
907         if (!pwalletMain->GetMalleableKey(keyView, mKey))
908             strErrors << _("Unable to generate new malleable key");
909         if (!pwalletMain->SetAddressBookName(CBitcoinAddress(keyView.GetMalleablePubKey()), ""))
910             strErrors << _("Cannot write default address") << "\n";
911     }
912
913     printf("%s", strErrors.str().c_str());
914     printf(" wallet      %15" PRId64 "ms\n", GetTimeMillis() - nStart);
915
916     RegisterWallet(pwalletMain);
917
918     CBlockIndex *pindexRescan = pindexBest;
919     if (GetBoolArg("-rescan"))
920         pindexRescan = pindexGenesisBlock;
921     else
922     {
923         CWalletDB walletdb(strWalletFileName);
924         CBlockLocator locator;
925         if (walletdb.ReadBestBlock(locator))
926             pindexRescan = locator.GetBlockIndex();
927     }
928     if (pindexBest != pindexRescan && pindexBest && pindexRescan && pindexBest->nHeight > pindexRescan->nHeight)
929     {
930         uiInterface.InitMessage(_("Rescanning..."));
931         printf("Rescanning last %i blocks (from block %i)...\n", pindexBest->nHeight - pindexRescan->nHeight, pindexRescan->nHeight);
932         nStart = GetTimeMillis();
933         pwalletMain->ScanForWalletTransactions(pindexRescan, true);
934         printf(" rescan      %15" PRId64 "ms\n", GetTimeMillis() - nStart);
935     }
936
937     // ********************************************************* Step 9: import blocks
938
939     if (mapArgs.count("-loadblock"))
940     {
941         uiInterface.InitMessage(_("Importing blockchain data file."));
942
943         BOOST_FOREACH(string strFile, mapMultiArgs["-loadblock"])
944         {
945             FILE *file = fopen(strFile.c_str(), "rb");
946             if (file)
947                 LoadExternalBlockFile(file);
948         }
949         StartShutdown();
950     }
951
952     filesystem::path pathBootstrap = GetDataDir() / "bootstrap.dat";
953     if (filesystem::exists(pathBootstrap)) {
954         uiInterface.InitMessage(_("Importing bootstrap blockchain data file."));
955
956         FILE *file = fopen(pathBootstrap.string().c_str(), "rb");
957         if (file) {
958             filesystem::path pathBootstrapOld = GetDataDir() / "bootstrap.dat.old";
959             LoadExternalBlockFile(file);
960             RenameOver(pathBootstrap, pathBootstrapOld);
961         }
962     }
963
964     // ********************************************************* Step 10: load peers
965
966     uiInterface.InitMessage(_("Loading addresses..."));
967     printf("Loading addresses...\n");
968     nStart = GetTimeMillis();
969
970     {
971         CAddrDB adb;
972         if (!adb.Read(addrman))
973             printf("Invalid or missing peers.dat; recreating\n");
974     }
975
976     printf("Loaded %i addresses from peers.dat  %" PRId64 "ms\n",
977            addrman.size(), GetTimeMillis() - nStart);
978
979     // ********************************************************* Step 11: start node
980
981     if (!CheckDiskSpace())
982         return false;
983
984     RandAddSeedPerfmon();
985
986     //// debug print
987     printf("mapBlockIndex.size() = %" PRIszu "\n",   mapBlockIndex.size());
988     printf("nBestHeight = %d\n",            nBestHeight);
989     printf("setKeyPool.size() = %" PRIszu "\n",      pwalletMain->setKeyPool.size());
990     printf("mapWallet.size() = %" PRIszu "\n",       pwalletMain->mapWallet.size());
991     printf("mapAddressBook.size() = %" PRIszu "\n",  pwalletMain->mapAddressBook.size());
992
993     if (!NewThread(StartNode, NULL))
994         InitError(_("Error: could not start node"));
995
996     if (fServer)
997         NewThread(ThreadRPCServer, NULL);
998
999     // ********************************************************* Step 13: IP collection thread
1000     strCollectorCommand = GetArg("-peercollector", "");
1001     if (!fTestNet && strCollectorCommand != "")
1002         NewThread(ThreadIPCollector, NULL);
1003     // ********************************************************* Step 14: finished
1004
1005     uiInterface.InitMessage(_("Done loading"));
1006     printf("Done loading\n");
1007
1008     if (!strErrors.str().empty())
1009         return InitError(strErrors.str());
1010
1011      // Add wallet transactions that aren't already in a block to mapTransactions
1012     pwalletMain->ReacceptWalletTransactions();
1013
1014 #if !defined(QT_GUI)
1015     // Loop until process is exit()ed from shutdown() function,
1016     // called from ThreadRPCServer thread when a "stop" command is received.
1017     for ( ; ; )
1018         Sleep(5000);
1019 #endif
1020
1021     return true;
1022 }