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