устранил предупреждения компилятора
[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 "ui_interface.h"
12 #include "checkpoints.h"
13 #include <boost/format.hpp>
14 #include <boost/filesystem.hpp>
15 #include <boost/filesystem/fstream.hpp>
16 #include <boost/filesystem/convenience.hpp>
17 #include <boost/interprocess/sync/file_lock.hpp>
18 #include <boost/algorithm/string/predicate.hpp>
19 #include <openssl/crypto.h>
20
21 #ifndef WIN32
22 #include <signal.h>
23 #endif
24
25
26 using namespace std;
27 using namespace boost;
28
29 CWallet* pwalletMain;
30 CClientUIInterface uiInterface;
31 std::string strWalletFileName;
32 bool fConfChange;
33 unsigned int nNodeLifespan;
34 unsigned int nMinerSleep;
35 bool fUseFastIndex;
36 bool fUseFastStakeMiner;
37 bool fUseMemoryLog;
38 enum Checkpoints::CPMode CheckpointsMode;
39
40 // Ping and address broadcast intervals
41 extern int64_t nPingInterval;
42 extern int64_t nBroadcastInterval;
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         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     bool fRet = false;
194
195     // Connect bitcoind signal handlers
196     noui_connect();
197
198     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 Tor)") + "\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 #ifdef USE_UPNP
267 #if USE_UPNP
268         "  -upnp                  " + _("Use UPnP to map the listening port (default: 1 when listening)") + "\n" +
269 #else
270         "  -upnp                  " + _("Use UPnP to map the listening port (default: 0)") + "\n" +
271 #endif
272 #endif
273         "  -detachdb              " + _("Detach block and address databases. Increases shutdown time (default: 0)") + "\n" +
274
275 #ifdef DB_LOG_IN_MEMORY
276         "  -memorylog              " + _("Use in-memory logging for block index database (default: 1)") + "\n" +
277 #endif
278
279         "  -paytxfee=<amt>        " + _("Fee per KB to add to transactions you send") + "\n" +
280         "  -mininput=<amt>        " + str(boost::format(_("When creating transactions, ignore inputs with value less than this (default: %s)")) % FormatMoney(MIN_TXOUT_AMOUNT)) + "\n" +
281 #ifdef QT_GUI
282         "  -server                " + _("Accept command line and JSON-RPC commands") + "\n" +
283 #endif
284 #if !defined(WIN32) && !defined(QT_GUI)
285         "  -daemon                " + _("Run in the background as a daemon and accept commands") + "\n" +
286 #endif
287         "  -testnet               " + _("Use the test network") + "\n" +
288         "  -debug                 " + _("Output extra debugging information. Implies all other -debug* options") + "\n" +
289         "  -debugnet              " + _("Output extra network debugging information") + "\n" +
290         "  -logtimestamps         " + _("Prepend debug output with timestamp") + "\n" +
291         "  -shrinkdebugfile       " + _("Shrink debug.log file on client startup (default: 1 when no -debug)") + "\n" +
292         "  -printtoconsole        " + _("Send trace/debug info to console instead of debug.log file") + "\n" +
293 #ifdef WIN32
294         "  -printtodebugger       " + _("Send trace/debug info to debugger") + "\n" +
295 #endif
296         "  -rpcuser=<user>        " + _("Username for JSON-RPC connections") + "\n" +
297         "  -rpcpassword=<pw>      " + _("Password for JSON-RPC connections") + "\n" +
298         "  -rpcport=<port>        " + _("Listen for JSON-RPC connections on <port> (default: 8344 or testnet: 18344)") + "\n" +
299         "  -rpcallowip=<ip>       " + _("Allow JSON-RPC connections from specified IP address") + "\n" +
300         "  -rpcconnect=<ip>       " + _("Send commands to node running on <ip> (default: 127.0.0.1)") + "\n" +
301         "  -blocknotify=<cmd>     " + _("Execute command when the best block changes (%s in cmd is replaced by block hash)") + "\n" +
302         "  -walletnotify=<cmd>    " + _("Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)") + "\n" +
303         "  -confchange            " + _("Require a confirmations for change (default: 0)") + "\n" +
304         "  -upgradewallet         " + _("Upgrade wallet to latest format") + "\n" +
305         "  -keypool=<n>           " + _("Set key pool size to <n> (default: 100)") + "\n" +
306         "  -rescan                " + _("Rescan the block chain for missing wallet transactions") + "\n" +
307         "  -salvagewallet         " + _("Attempt to recover private keys from a corrupt wallet.dat") + "\n" +
308         "  -checkblocks=<n>       " + _("How many blocks to check at startup (default: 2500, 0 = all)") + "\n" +
309         "  -checklevel=<n>        " + _("How thorough the block verification is (0-6, default: 1)") + "\n" +
310         "  -par=N                 " + _("Set the number of script verification threads (1-16, 0=auto, default: 0)") + "\n" +
311         "  -loadblock=<file>      " + _("Imports blocks from external blk000?.dat file") + "\n" +
312
313         "\n" + _("Block creation options:") + "\n" +
314         "  -blockminsize=<n>      "   + _("Set minimum block size in bytes (default: 0)") + "\n" +
315         "  -blockmaxsize=<n>      "   + _("Set maximum block size in bytes (default: 250000)") + "\n" +
316         "  -blockprioritysize=<n> "   + _("Set maximum size of high-priority/low-fee transactions in bytes (default: 27000)") + "\n" +
317
318         "\n" + _("SSL options: (see the Bitcoin Wiki for SSL setup instructions)") + "\n" +
319         "  -rpcssl                                  " + _("Use OpenSSL (https) for JSON-RPC connections") + "\n" +
320         "  -rpcsslcertificatechainfile=<file.cert>  " + _("Server certificate file (default: server.cert)") + "\n" +
321         "  -rpcsslprivatekeyfile=<file.pem>         " + _("Server private key (default: server.pem)") + "\n" +
322         "  -rpcsslciphers=<ciphers>                 " + _("Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH)") + "\n";
323
324     return strUsage;
325 }
326
327 /** Initialize bitcoin.
328  *  @pre Parameters should be parsed and config file should be read.
329  */
330 bool AppInit2()
331 {
332     // ********************************************************* Step 1: setup
333 #ifdef _MSC_VER
334     // Turn off Microsoft heap dump noise
335     _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
336     _CrtSetReportFile(_CRT_WARN, CreateFileA("NUL", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0));
337 #endif
338 #if _MSC_VER >= 1400
339     // Disable confusing "helpful" text message on abort, Ctrl-C
340     _set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT);
341 #endif
342 #ifdef WIN32
343     // Enable Data Execution Prevention (DEP)
344     // Minimum supported OS versions: WinXP SP3, WinVista >= SP1, Win Server 2008
345     // A failure is non-critical and needs no further attention!
346 #ifndef PROCESS_DEP_ENABLE
347 // We define this here, because GCCs winbase.h limits this to _WIN32_WINNT >= 0x0601 (Windows 7),
348 // which is not correct. Can be removed, when GCCs winbase.h is fixed!
349 #define PROCESS_DEP_ENABLE 0x00000001
350 #endif
351     typedef BOOL (WINAPI *PSETPROCDEPPOL)(DWORD);
352     PSETPROCDEPPOL setProcDEPPol = (PSETPROCDEPPOL)GetProcAddress(GetModuleHandleA("Kernel32.dll"), "SetProcessDEPPolicy");
353     if (setProcDEPPol != NULL) setProcDEPPol(PROCESS_DEP_ENABLE);
354 #endif
355 #ifndef WIN32
356     umask(077);
357
358     // Clean shutdown on SIGTERM
359     struct sigaction sa;
360     sa.sa_handler = HandleSIGTERM;
361     sigemptyset(&sa.sa_mask);
362     sa.sa_flags = 0;
363     sigaction(SIGTERM, &sa, NULL);
364     sigaction(SIGINT, &sa, NULL);
365
366     // Reopen debug.log on SIGHUP
367     struct sigaction sa_hup;
368     sa_hup.sa_handler = HandleSIGHUP;
369     sigemptyset(&sa_hup.sa_mask);
370     sa_hup.sa_flags = 0;
371     sigaction(SIGHUP, &sa_hup, NULL);
372 #endif
373
374     // ********************************************************* Step 2: parameter interactions
375
376     nNodeLifespan = (unsigned int)(GetArg("-addrlifespan", 7));
377     fUseFastIndex = GetBoolArg("-fastindex", true);
378     fUseMemoryLog = GetBoolArg("-memorylog", true);
379     nMinerSleep = (unsigned int)(GetArg("-minersleep", 500));
380
381     // Ping and address broadcast intervals
382     nPingInterval = max<int64_t>(10 * 60, GetArg("-keepalive", 30 * 60));
383
384     nBroadcastInterval = max<int64_t>(6 * 60 * 60, GetArg("-addrsetlifetime", 24 * 60 * 60));
385
386     CheckpointsMode = Checkpoints::STRICT;
387     std::string strCpMode = GetArg("-cppolicy", "strict");
388
389     if(strCpMode == "strict") {
390         CheckpointsMode = Checkpoints::STRICT;
391     }
392
393     if(strCpMode == "advisory") {
394         CheckpointsMode = Checkpoints::ADVISORY;
395     }
396
397     if(strCpMode == "permissive") {
398         CheckpointsMode = Checkpoints::PERMISSIVE;
399     }
400
401     fTestNet = GetBoolArg("-testnet");
402     if (fTestNet) {
403         SoftSetBoolArg("-irc", true);
404     }
405
406     if (mapArgs.count("-bind")) {
407         // when specifying an explicit binding address, you want to listen on it
408         // even when -connect or -proxy is specified
409         SoftSetBoolArg("-listen", true);
410     }
411
412     if (mapArgs.count("-connect") && mapMultiArgs["-connect"].size() > 0) {
413         // when only connecting to trusted nodes, do not seed via DNS, or listen by default
414         SoftSetBoolArg("-dnsseed", false);
415         SoftSetBoolArg("-listen", false);
416     }
417
418     if (mapArgs.count("-proxy")) {
419         // to protect privacy, do not listen by default if a proxy server is specified
420         SoftSetBoolArg("-listen", false);
421     }
422
423     if (!GetBoolArg("-listen", true)) {
424         // do not map ports or try to retrieve public IP when not listening (pointless)
425         SoftSetBoolArg("-upnp", false);
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     // ********************************************************* Step 3: parameter-to-internal-flags
440
441     // -par=0 means autodetect, but nScriptCheckThreads==0 means no concurrency
442     nScriptCheckThreads = (int)(GetArg("-par", 0));
443     if (nScriptCheckThreads == 0)
444         nScriptCheckThreads = boost::thread::hardware_concurrency();
445     if (nScriptCheckThreads <= 1) 
446         nScriptCheckThreads = 0;
447     else if (nScriptCheckThreads > MAX_SCRIPTCHECK_THREADS)
448         nScriptCheckThreads = MAX_SCRIPTCHECK_THREADS;
449
450     fDebug = GetBoolArg("-debug");
451
452     // -debug implies fDebug*
453     if (fDebug)
454         fDebugNet = true;
455     else
456         fDebugNet = GetBoolArg("-debugnet");
457
458     bitdb.SetDetach(GetBoolArg("-detachdb", false));
459
460 #if !defined(WIN32) && !defined(QT_GUI)
461     fDaemon = GetBoolArg("-daemon");
462 #else
463     fDaemon = false;
464 #endif
465
466     if (fDaemon)
467         fServer = true;
468     else
469         fServer = GetBoolArg("-server");
470
471     /* force fServer when running without GUI */
472 #if !defined(QT_GUI)
473     fServer = true;
474 #endif
475     fPrintToConsole = GetBoolArg("-printtoconsole");
476     fPrintToDebugger = GetBoolArg("-printtodebugger");
477     fLogTimestamps = GetBoolArg("-logtimestamps");
478
479     if (mapArgs.count("-timeout"))
480     {
481         int nNewTimeout = (int)(GetArg("-timeout", 5000));
482         if (nNewTimeout > 0 && nNewTimeout < 600000)
483             nConnectTimeout = nNewTimeout;
484     }
485
486     // Continue to put "/P2SH/" in the coinbase to monitor
487     // BIP16 support.
488     // This can be removed eventually...
489     const char* pszP2SH = "/P2SH/";
490     COINBASE_FLAGS << std::vector<unsigned char>(pszP2SH, pszP2SH+strlen(pszP2SH));
491
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 = (int)(GetArg("-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"], 9050);
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"], 9050);
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 #ifdef USE_UPNP
671         fUseUPnP = GetBoolArg("-upnp", USE_UPNP);
672 #endif
673     } else {
674         // Don't listen, discover addresses or search for nodes if IPv4 and IPv6 networking is disabled.
675         fNoListen = true;
676         fDiscover = fNameLookup = fUseUPnP = false;
677         SoftSetBoolArg("-irc", false);
678         SoftSetBoolArg("-dnsseed", false);
679     }
680
681     bool fBound = false;
682     if (!fNoListen)
683     {
684         std::string strError;
685         if (mapArgs.count("-bind")) {
686             BOOST_FOREACH(std::string strBind, mapMultiArgs["-bind"]) {
687                 CService addrBind;
688                 if (!Lookup(strBind.c_str(), addrBind, GetListenPort(), false))
689                     return InitError(strprintf(_("Cannot resolve -bind address: '%s'"), strBind.c_str()));
690                 fBound |= Bind(addrBind);
691             }
692         } else {
693             struct in_addr inaddr_any;
694             inaddr_any.s_addr = INADDR_ANY;
695 #ifdef USE_IPV6
696             if (!IsLimited(NET_IPV6))
697                 fBound |= Bind(CService(in6addr_any, GetListenPort()), false);
698 #endif
699             if (!IsLimited(NET_IPV4))
700                 fBound |= Bind(CService(inaddr_any, GetListenPort()), !fBound);
701
702         }
703         if (!fBound)
704             return InitError(_("Failed to listen on any port. Use -listen=0 if you want this."));
705     }
706
707     // If Tor is reachable then listen on loopback interface,
708     //    to allow allow other users reach you through the hidden service
709     if (!IsLimited(NET_TOR) && mapArgs.count("-torname")) {
710         std::string strError;
711         struct in_addr inaddr_loopback;
712         inaddr_loopback.s_addr = htonl(INADDR_LOOPBACK);
713
714 #ifdef USE_IPV6
715         if (!BindListenPort(CService(in6addr_loopback, GetListenPort()), strError))
716             return InitError(strError);
717 #endif
718         if (!BindListenPort(CService(inaddr_loopback, GetListenPort()), strError))
719             return InitError(strError);
720     }
721
722     if (mapArgs.count("-externalip"))
723     {
724         BOOST_FOREACH(string strAddr, mapMultiArgs["-externalip"]) {
725             CService addrLocal(strAddr, GetListenPort(), fNameLookup);
726             if (!addrLocal.IsValid())
727                 return InitError(strprintf(_("Cannot resolve -externalip address: '%s'"), strAddr.c_str()));
728             AddLocal(CService(strAddr, GetListenPort(), fNameLookup), LOCAL_MANUAL);
729         }
730     }
731
732     if (mapArgs.count("-reservebalance")) // ppcoin: reserve balance amount
733     {
734         int64_t nReserveBalance = 0;
735         if (!ParseMoney(mapArgs["-reservebalance"], nReserveBalance))
736         {
737             InitError(_("Invalid amount for -reservebalance=<amount>"));
738             return false;
739         }
740     }
741
742     if (mapArgs.count("-checkpointkey")) // ppcoin: checkpoint master priv key
743     {
744         if (!Checkpoints::SetCheckpointPrivKey(GetArg("-checkpointkey", "")))
745             InitError(_("Unable to sign checkpoint, wrong checkpointkey?\n"));
746     }
747
748     BOOST_FOREACH(string strDest, mapMultiArgs["-seednode"])
749         AddOneShot(strDest);
750
751     // ********************************************************* Step 7: load blockchain
752
753     if (!bitdb.Open(GetDataDir()))
754     {
755         string msg = strprintf(_("Error initializing database environment %s!"
756                                  " To recover, BACKUP THAT DIRECTORY, then remove"
757                                  " everything from it except for wallet.dat."), strDataDir.c_str());
758         return InitError(msg);
759     }
760
761     if (GetBoolArg("-loadblockindextest"))
762     {
763         CTxDB txdb("r");
764         txdb.LoadBlockIndex();
765         PrintBlockTree();
766         return false;
767     }
768
769     uiInterface.InitMessage(_("Loading block index..."));
770     printf("Loading block index...\n");
771     nStart = GetTimeMillis();
772     if (!LoadBlockIndex())
773         return InitError(_("Error loading blkindex.dat"));
774
775
776     // as LoadBlockIndex can take several minutes, it's possible the user
777     // requested to kill bitcoin-qt during the last operation. If so, exit.
778     // As the program has not fully started yet, Shutdown() is possibly overkill.
779     if (fRequestShutdown)
780     {
781         printf("Shutdown requested. Exiting.\n");
782         return false;
783     }
784     printf(" block index %15" PRId64 "ms\n", GetTimeMillis() - nStart);
785
786     if (GetBoolArg("-printblockindex") || GetBoolArg("-printblocktree"))
787     {
788         PrintBlockTree();
789         return false;
790     }
791
792     if (mapArgs.count("-printblock"))
793     {
794         string strMatch = mapArgs["-printblock"];
795         int nFound = 0;
796         for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
797         {
798             uint256 hash = (*mi).first;
799             if (strncmp(hash.ToString().c_str(), strMatch.c_str(), strMatch.size()) == 0)
800             {
801                 CBlockIndex* pindex = (*mi).second;
802                 CBlock block;
803                 block.ReadFromDisk(pindex);
804                 block.BuildMerkleTree();
805                 block.print();
806                 printf("\n");
807                 nFound++;
808             }
809         }
810         if (nFound == 0)
811             printf("No blocks matching %s were found\n", strMatch.c_str());
812         return false;
813     }
814
815     // ********************************************************* Step 8: load wallet
816
817     uiInterface.InitMessage(_("Loading wallet..."));
818     printf("Loading wallet...\n");
819     nStart = GetTimeMillis();
820     bool fFirstRun = true;
821     pwalletMain = new CWallet(strWalletFileName);
822     DBErrors nLoadWalletRet = pwalletMain->LoadWallet(fFirstRun);
823     if (nLoadWalletRet != DB_LOAD_OK)
824     {
825         if (nLoadWalletRet == DB_CORRUPT)
826             strErrors << _("Error loading wallet.dat: Wallet corrupted") << "\n";
827         else if (nLoadWalletRet == DB_NONCRITICAL_ERROR)
828         {
829             string msg(_("Warning: error reading wallet.dat! All keys read correctly, but transaction data"
830                          " or address book entries might be missing or incorrect."));
831             uiInterface.ThreadSafeMessageBox(msg, _("NovaCoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
832         }
833         else if (nLoadWalletRet == DB_TOO_NEW)
834             strErrors << _("Error loading wallet.dat: Wallet requires newer version of NovaCoin") << "\n";
835         else if (nLoadWalletRet == DB_NEED_REWRITE)
836         {
837             strErrors << _("Wallet needed to be rewritten: restart NovaCoin to complete") << "\n";
838             printf("%s", strErrors.str().c_str());
839             return InitError(strErrors.str());
840         }
841         else
842             strErrors << _("Error loading wallet.dat") << "\n";
843     }
844
845     if (GetBoolArg("-upgradewallet", fFirstRun))
846     {
847         int nMaxVersion = (int)(GetArg("-upgradewallet", 0));
848         if (nMaxVersion == 0) // the -upgradewallet without argument case
849         {
850             printf("Performing wallet upgrade to %i\n", FEATURE_LATEST);
851             nMaxVersion = CLIENT_VERSION;
852             pwalletMain->SetMinVersion(FEATURE_LATEST); // permanently upgrade the wallet immediately
853         }
854         else
855             printf("Allowing wallet upgrade up to %i\n", nMaxVersion);
856         if (nMaxVersion < pwalletMain->GetVersion())
857             strErrors << _("Cannot downgrade wallet") << "\n";
858         pwalletMain->SetMaxVersion(nMaxVersion);
859     }
860
861     if (fFirstRun)
862     {
863         // Create new keyUser and set as default key
864         RandAddSeedPerfmon();
865
866         CPubKey newDefaultKey;
867         if (!pwalletMain->GetKeyFromPool(newDefaultKey, false))
868             strErrors << _("Cannot initialize keypool") << "\n";
869         pwalletMain->SetDefaultKey(newDefaultKey);
870         if (!pwalletMain->SetAddressBookName(pwalletMain->vchDefaultKey.GetID(), ""))
871             strErrors << _("Cannot write default address") << "\n";
872     }
873
874     printf("%s", strErrors.str().c_str());
875     printf(" wallet      %15" PRId64 "ms\n", GetTimeMillis() - nStart);
876
877     RegisterWallet(pwalletMain);
878
879     CBlockIndex *pindexRescan = pindexBest;
880     if (GetBoolArg("-rescan"))
881         pindexRescan = pindexGenesisBlock;
882     else
883     {
884         CWalletDB walletdb(strWalletFileName);
885         CBlockLocator locator;
886         if (walletdb.ReadBestBlock(locator))
887             pindexRescan = locator.GetBlockIndex();
888     }
889     if (pindexBest != pindexRescan && pindexBest && pindexRescan && pindexBest->nHeight > pindexRescan->nHeight)
890     {
891         uiInterface.InitMessage(_("Rescanning..."));
892         printf("Rescanning last %i blocks (from block %i)...\n", pindexBest->nHeight - pindexRescan->nHeight, pindexRescan->nHeight);
893         nStart = GetTimeMillis();
894         pwalletMain->ScanForWalletTransactions(pindexRescan, true);
895         printf(" rescan      %15" PRId64 "ms\n", GetTimeMillis() - nStart);
896     }
897
898     // ********************************************************* Step 9: import blocks
899
900     if (mapArgs.count("-loadblock"))
901     {
902         uiInterface.InitMessage(_("Importing blockchain data file."));
903
904         BOOST_FOREACH(string strFile, mapMultiArgs["-loadblock"])
905         {
906             FILE *file = fopen(strFile.c_str(), "rb");
907             if (file)
908                 LoadExternalBlockFile(file);
909         }
910         StartShutdown();
911     }
912
913     filesystem::path pathBootstrap = GetDataDir() / "bootstrap.dat";
914     if (filesystem::exists(pathBootstrap)) {
915         uiInterface.InitMessage(_("Importing bootstrap blockchain data file."));
916
917         FILE *file = fopen(pathBootstrap.string().c_str(), "rb");
918         if (file) {
919             filesystem::path pathBootstrapOld = GetDataDir() / "bootstrap.dat.old";
920             LoadExternalBlockFile(file);
921             RenameOver(pathBootstrap, pathBootstrapOld);
922         }
923     }
924
925     // ********************************************************* Step 10: load peers
926
927     uiInterface.InitMessage(_("Loading addresses..."));
928     printf("Loading addresses...\n");
929     nStart = GetTimeMillis();
930
931     {
932         CAddrDB adb;
933         if (!adb.Read(addrman))
934             printf("Invalid or missing peers.dat; recreating\n");
935     }
936
937     printf("Loaded %i addresses from peers.dat  %" PRId64 "ms\n",
938            addrman.size(), GetTimeMillis() - nStart);
939
940     // ********************************************************* Step 11: start node
941
942     if (!CheckDiskSpace())
943         return false;
944
945     RandAddSeedPerfmon();
946
947     //// debug print
948     printf("mapBlockIndex.size() = %" PRIszu "\n",   mapBlockIndex.size());
949     printf("nBestHeight = %d\n",            nBestHeight);
950     printf("setKeyPool.size() = %" PRIszu "\n",      pwalletMain->setKeyPool.size());
951     printf("mapWallet.size() = %" PRIszu "\n",       pwalletMain->mapWallet.size());
952     printf("mapAddressBook.size() = %" PRIszu "\n",  pwalletMain->mapAddressBook.size());
953
954     if (!NewThread(StartNode, NULL))
955         InitError(_("Error: could not start node"));
956
957     if (fServer)
958         NewThread(ThreadRPCServer, NULL);
959
960     // ********************************************************* Step 12: finished
961
962     uiInterface.InitMessage(_("Done loading"));
963     printf("Done loading\n");
964
965     if (!strErrors.str().empty())
966         return InitError(strErrors.str());
967
968      // Add wallet transactions that aren't already in a block to mapTransactions
969     pwalletMain->ReacceptWalletTransactions();
970
971 #if !defined(QT_GUI)
972     // Loop until process is exit()ed from shutdown() function,
973     // called from ThreadRPCServer thread when a "stop" command is received.
974     while (1)
975         Sleep(5000);
976 #endif
977
978     return true;
979 }