Translation fixes
[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 "zerocoin/ZeroTest.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 bool fEnforceCanonical;
35 unsigned int nNodeLifespan;
36 unsigned int nDerivationMethodIndex;
37 unsigned int nMinerSleep;
38 bool fUseFastIndex;
39 bool fUseFastStakeMiner;
40 enum Checkpoints::CPMode CheckpointsMode;
41
42 //////////////////////////////////////////////////////////////////////////////
43 //
44 // Shutdown
45 //
46
47 void ExitTimeout(void* parg)
48 {
49 #ifdef WIN32
50     Sleep(5000);
51     ExitProcess(0);
52 #endif
53 }
54
55 void StartShutdown()
56 {
57 #ifdef QT_GUI
58     // ensure we leave the Qt main loop for a clean GUI exit (Shutdown() is called in bitcoin.cpp afterwards)
59     uiInterface.QueueShutdown();
60 #else
61     // Without UI, Shutdown() can simply be started in a new thread
62     NewThread(Shutdown, NULL);
63 #endif
64 }
65
66 void Shutdown(void* parg)
67 {
68     static CCriticalSection cs_Shutdown;
69     static bool fTaken;
70
71     // Make this thread recognisable as the shutdown thread
72     RenameThread("bitcoin-shutoff");
73
74     bool fFirstThread = false;
75     {
76         TRY_LOCK(cs_Shutdown, lockShutdown);
77         if (lockShutdown)
78         {
79             fFirstThread = !fTaken;
80             fTaken = true;
81         }
82     }
83     static bool fExit;
84     if (fFirstThread)
85     {
86         fShutdown = true;
87         nTransactionsUpdated++;
88 //        CTxDB().Close();
89         bitdb.Flush(false);
90         StopNode();
91         bitdb.Flush(true);
92         boost::filesystem::remove(GetPidFile());
93         UnregisterWallet(pwalletMain);
94         delete pwalletMain;
95         NewThread(ExitTimeout, NULL);
96         Sleep(50);
97         printf("NovaCoin exited\n\n");
98         fExit = true;
99 #ifndef QT_GUI
100         // ensure non-UI client gets exited here, but let Bitcoin-Qt reach 'return 0;' in bitcoin.cpp
101         exit(0);
102 #endif
103     }
104     else
105     {
106         while (!fExit)
107             Sleep(500);
108         Sleep(100);
109         ExitThread(0);
110     }
111 }
112
113 void HandleSIGTERM(int)
114 {
115     fRequestShutdown = true;
116 }
117
118 void HandleSIGHUP(int)
119 {
120     fReopenDebugLog = true;
121 }
122
123
124
125
126
127 //////////////////////////////////////////////////////////////////////////////
128 //
129 // Start
130 //
131 #if !defined(QT_GUI)
132 bool AppInit(int argc, char* argv[])
133 {
134     bool fRet = false;
135     try
136     {
137         //
138         // Parameters
139         //
140         // If Qt is used, parameters/bitcoin.conf are parsed in qt/bitcoin.cpp's main()
141         ParseParameters(argc, argv);
142         if (!boost::filesystem::is_directory(GetDataDir(false)))
143         {
144             fprintf(stderr, "Error: Specified directory does not exist\n");
145             Shutdown(NULL);
146         }
147         ReadConfigFile(mapArgs, mapMultiArgs);
148
149         if (mapArgs.count("-?") || mapArgs.count("--help"))
150         {
151             // First part of help message is specific to bitcoind / RPC client
152             std::string strUsage = _("NovaCoin version") + " " + FormatFullVersion() + "\n\n" +
153                 _("Usage:") + "\n" +
154                   "  novacoind [options]                     " + "\n" +
155                   "  novacoind [options] <command> [params]  " + _("Send command to -server or novacoind") + "\n" +
156                   "  novacoind [options] help                " + _("List commands") + "\n" +
157                   "  novacoind [options] help <command>      " + _("Get help for a command") + "\n";
158
159             strUsage += "\n" + HelpMessage();
160
161             fprintf(stdout, "%s", strUsage.c_str());
162             return false;
163         }
164
165         // Command-line RPC
166         for (int i = 1; i < argc; i++)
167             if (!IsSwitchChar(argv[i][0]) && !boost::algorithm::istarts_with(argv[i], "novacoin:"))
168                 fCommandLine = true;
169
170         if (fCommandLine)
171         {
172             int ret = CommandLineRPC(argc, argv);
173             exit(ret);
174         }
175
176         fRet = AppInit2();
177     }
178     catch (std::exception& e) {
179         PrintException(&e, "AppInit()");
180     } catch (...) {
181         PrintException(NULL, "AppInit()");
182     }
183     if (!fRet)
184         Shutdown(NULL);
185     return fRet;
186 }
187
188 extern void noui_connect();
189 int main(int argc, char* argv[])
190 {
191     bool fRet = false;
192
193     // Connect bitcoind signal handlers
194     noui_connect();
195
196     fRet = AppInit(argc, argv);
197
198     if (fRet && fDaemon)
199         return 0;
200
201     return 1;
202 }
203 #endif
204
205 bool static InitError(const std::string &str)
206 {
207     uiInterface.ThreadSafeMessageBox(str, _("NovaCoin"), CClientUIInterface::OK | CClientUIInterface::MODAL);
208     return false;
209 }
210
211 bool static InitWarning(const std::string &str)
212 {
213     uiInterface.ThreadSafeMessageBox(str, _("NovaCoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
214     return true;
215 }
216
217
218 bool static Bind(const CService &addr, bool fError = true) {
219     if (IsLimited(addr))
220         return false;
221     std::string strError;
222     if (!BindListenPort(addr, strError)) {
223         if (fError)
224             return InitError(strError);
225         return false;
226     }
227     return true;
228 }
229
230 // Core-specific options shared between UI and daemon
231 std::string HelpMessage()
232 {
233     string strUsage = _("Options:") + "\n" +
234         "  -?                     " + _("This help message") + "\n" +
235         "  -conf=<file>           " + _("Specify configuration file (default: novacoin.conf)") + "\n" +
236         "  -pid=<file>            " + _("Specify pid file (default: novacoind.pid)") + "\n" +
237         "  -datadir=<dir>         " + _("Specify data directory") + "\n" +
238         "  -wallet=<file>         " + _("Specify wallet file (within data directory)") + "\n" +
239         "  -dbcache=<n>           " + _("Set database cache size in megabytes (default: 25)") + "\n" +
240         "  -dblogsize=<n>         " + _("Set database disk log size in megabytes (default: 100)") + "\n" +
241         "  -timeout=<n>           " + _("Specify connection timeout in milliseconds (default: 5000)") + "\n" +
242         "  -proxy=<ip:port>       " + _("Connect through socks proxy") + "\n" +
243         "  -socks=<n>             " + _("Select the version of socks proxy to use (4-5, default: 5)") + "\n" +
244         "  -tor=<ip:port>         " + _("Use proxy to reach tor hidden services (default: same as -proxy)") + "\n"
245         "  -dns                   " + _("Allow DNS lookups for -addnode, -seednode and -connect") + "\n" +
246         "  -port=<port>           " + _("Listen for connections on <port> (default: 7777 or testnet: 17777)") + "\n" +
247         "  -maxconnections=<n>    " + _("Maintain at most <n> connections to peers (default: 125)") + "\n" +
248         "  -addnode=<ip>          " + _("Add a node to connect to and attempt to keep the connection open") + "\n" +
249         "  -connect=<ip>          " + _("Connect only to the specified node(s)") + "\n" +
250         "  -seednode=<ip>         " + _("Connect to a node to retrieve peer addresses, and disconnect") + "\n" +
251         "  -externalip=<ip>       " + _("Specify your own public address") + "\n" +
252         "  -onlynet=<net>         " + _("Only connect to nodes in network <net> (IPv4, IPv6 or Tor)") + "\n" +
253         "  -discover              " + _("Discover own IP address (default: 1 when listening and no -externalip)") + "\n" +
254         "  -irc                   " + _("Find peers using internet relay chat (default: 1)") + "\n" +
255         "  -listen                " + _("Accept connections from outside (default: 1 if no -proxy or -connect)") + "\n" +
256         "  -bind=<addr>           " + _("Bind to given address. Use [host]:port notation for IPv6") + "\n" +
257         "  -dnsseed               " + _("Find peers using DNS lookup (default: 1)") + "\n" +
258         "  -cppolicy              " + _("Sync checkpoints policy (default: strict)") + "\n" +
259         "  -banscore=<n>          " + _("Threshold for disconnecting misbehaving peers (default: 100)") + "\n" +
260         "  -bantime=<n>           " + _("Number of seconds to keep misbehaving peers from reconnecting (default: 86400)") + "\n" +
261         "  -maxreceivebuffer=<n>  " + _("Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000)") + "\n" +
262         "  -maxsendbuffer=<n>     " + _("Maximum per-connection send buffer, <n>*1000 bytes (default: 1000)") + "\n" +
263 #ifdef USE_UPNP
264 #if USE_UPNP
265         "  -upnp                  " + _("Use UPnP to map the listening port (default: 1 when listening)") + "\n" +
266 #else
267         "  -upnp                  " + _("Use UPnP to map the listening port (default: 0)") + "\n" +
268 #endif
269 #endif
270         "  -detachdb              " + _("Detach block and address databases. Increases shutdown time (default: 0)") + "\n" +
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         "  -confchange            " + _("Require a confirmations for change (default: 0)") + "\n" +
296         "  -enforcecanonical      " + _("Enforce transaction scripts to use canonical PUSH operators (default: 1)") + "\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         "  -salvagewallet         " + _("Attempt to recover private keys from a corrupt wallet.dat") + "\n" +
301         "  -checkblocks=<n>       " + _("How many blocks to check at startup (default: 2500, 0 = all)") + "\n" +
302         "  -checklevel=<n>        " + _("How thorough the block verification is (0-6, default: 1)") + "\n" +
303         "  -loadblock=<file>      " + _("Imports blocks from external blk000?.dat file") + "\n" +
304
305         "\n" + _("Block creation options:") + "\n" +
306         "  -blockminsize=<n>      "   + _("Set minimum block size in bytes (default: 0)") + "\n" +
307         "  -blockmaxsize=<n>      "   + _("Set maximum block size in bytes (default: 250000)") + "\n" +
308         "  -blockprioritysize=<n> "   + _("Set maximum size of high-priority/low-fee transactions in bytes (default: 27000)") + "\n" +
309
310         "\n" + _("SSL options: (see the Bitcoin Wiki for SSL setup instructions)") + "\n" +
311         "  -rpcssl                                  " + _("Use OpenSSL (https) for JSON-RPC connections") + "\n" +
312         "  -rpcsslcertificatechainfile=<file.cert>  " + _("Server certificate file (default: server.cert)") + "\n" +
313         "  -rpcsslprivatekeyfile=<file.pem>         " + _("Server private key (default: server.pem)") + "\n" +
314         "  -rpcsslciphers=<ciphers>                 " + _("Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH)") + "\n";
315
316     return strUsage;
317 }
318
319 /** Initialize bitcoin.
320  *  @pre Parameters should be parsed and config file should be read.
321  */
322 bool AppInit2()
323 {
324     // ********************************************************* Step 1: setup
325 #ifdef _MSC_VER
326     // Turn off Microsoft heap dump noise
327     _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
328     _CrtSetReportFile(_CRT_WARN, CreateFileA("NUL", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0));
329 #endif
330 #if _MSC_VER >= 1400
331     // Disable confusing "helpful" text message on abort, Ctrl-C
332     _set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT);
333 #endif
334 #ifdef WIN32
335     // Enable Data Execution Prevention (DEP)
336     // Minimum supported OS versions: WinXP SP3, WinVista >= SP1, Win Server 2008
337     // A failure is non-critical and needs no further attention!
338 #ifndef PROCESS_DEP_ENABLE
339 // We define this here, because GCCs winbase.h limits this to _WIN32_WINNT >= 0x0601 (Windows 7),
340 // which is not correct. Can be removed, when GCCs winbase.h is fixed!
341 #define PROCESS_DEP_ENABLE 0x00000001
342 #endif
343     typedef BOOL (WINAPI *PSETPROCDEPPOL)(DWORD);
344     PSETPROCDEPPOL setProcDEPPol = (PSETPROCDEPPOL)GetProcAddress(GetModuleHandleA("Kernel32.dll"), "SetProcessDEPPolicy");
345     if (setProcDEPPol != NULL) setProcDEPPol(PROCESS_DEP_ENABLE);
346 #endif
347 #ifndef WIN32
348     umask(077);
349
350     // Clean shutdown on SIGTERM
351     struct sigaction sa;
352     sa.sa_handler = HandleSIGTERM;
353     sigemptyset(&sa.sa_mask);
354     sa.sa_flags = 0;
355     sigaction(SIGTERM, &sa, NULL);
356     sigaction(SIGINT, &sa, NULL);
357
358     // Reopen debug.log on SIGHUP
359     struct sigaction sa_hup;
360     sa_hup.sa_handler = HandleSIGHUP;
361     sigemptyset(&sa_hup.sa_mask);
362     sa_hup.sa_flags = 0;
363     sigaction(SIGHUP, &sa_hup, NULL);
364 #endif
365
366     // ********************************************************* Step 2: parameter interactions
367
368     nNodeLifespan = GetArg("-addrlifespan", 7);
369     fUseFastIndex = GetBoolArg("-fastindex", true);
370     nMinerSleep = GetArg("-minersleep", 500);
371
372     CheckpointsMode = Checkpoints::STRICT;
373     std::string strCpMode = GetArg("-cppolicy", "strict");
374
375     if(strCpMode == "strict")
376         CheckpointsMode = Checkpoints::STRICT;
377
378     if(strCpMode == "advisory")
379         CheckpointsMode = Checkpoints::ADVISORY;
380
381     if(strCpMode == "permissive")
382         CheckpointsMode = Checkpoints::PERMISSIVE;
383
384     nDerivationMethodIndex = 0;
385
386     fTestNet = GetBoolArg("-testnet");
387     if (fTestNet) {
388         SoftSetBoolArg("-irc", true);
389     }
390
391     if (mapArgs.count("-bind")) {
392         // when specifying an explicit binding address, you want to listen on it
393         // even when -connect or -proxy is specified
394         SoftSetBoolArg("-listen", true);
395     }
396
397     if (mapArgs.count("-connect") && mapMultiArgs["-connect"].size() > 0) {
398         // when only connecting to trusted nodes, do not seed via DNS, or listen by default
399         SoftSetBoolArg("-dnsseed", false);
400         SoftSetBoolArg("-listen", false);
401     }
402
403     if (mapArgs.count("-proxy")) {
404         // to protect privacy, do not listen by default if a proxy server is specified
405         SoftSetBoolArg("-listen", false);
406     }
407
408     if (!GetBoolArg("-listen", true)) {
409         // do not map ports or try to retrieve public IP when not listening (pointless)
410         SoftSetBoolArg("-upnp", false);
411         SoftSetBoolArg("-discover", false);
412     }
413
414     if (mapArgs.count("-externalip")) {
415         // if an explicit public IP is specified, do not try to find others
416         SoftSetBoolArg("-discover", false);
417     }
418
419     if (GetBoolArg("-salvagewallet")) {
420         // Rewrite just private keys: rescan to find transactions
421         SoftSetBoolArg("-rescan", true);
422     }
423
424     // ********************************************************* Step 3: parameter-to-internal-flags
425
426     fDebug = GetBoolArg("-debug");
427
428     // -debug implies fDebug*
429     if (fDebug)
430         fDebugNet = true;
431     else
432         fDebugNet = GetBoolArg("-debugnet");
433
434     bitdb.SetDetach(GetBoolArg("-detachdb", false));
435
436 #if !defined(WIN32) && !defined(QT_GUI)
437     fDaemon = GetBoolArg("-daemon");
438 #else
439     fDaemon = false;
440 #endif
441
442     if (fDaemon)
443         fServer = true;
444     else
445         fServer = GetBoolArg("-server");
446
447     /* force fServer when running without GUI */
448 #if !defined(QT_GUI)
449     fServer = true;
450 #endif
451     fPrintToConsole = GetBoolArg("-printtoconsole");
452     fPrintToDebugger = GetBoolArg("-printtodebugger");
453     fLogTimestamps = GetBoolArg("-logtimestamps");
454
455     if (mapArgs.count("-timeout"))
456     {
457         int nNewTimeout = GetArg("-timeout", 5000);
458         if (nNewTimeout > 0 && nNewTimeout < 600000)
459             nConnectTimeout = nNewTimeout;
460     }
461
462     // Continue to put "/P2SH/" in the coinbase to monitor
463     // BIP16 support.
464     // This can be removed eventually...
465     const char* pszP2SH = "/P2SH/";
466     COINBASE_FLAGS << std::vector<unsigned char>(pszP2SH, pszP2SH+strlen(pszP2SH));
467
468
469     if (mapArgs.count("-paytxfee"))
470     {
471         if (!ParseMoney(mapArgs["-paytxfee"], nTransactionFee))
472             return InitError(strprintf(_("Invalid amount for -paytxfee=<amount>: '%s'"), mapArgs["-paytxfee"].c_str()));
473         if (nTransactionFee > 0.25 * COIN)
474             InitWarning(_("Warning: -paytxfee is set very high! This is the transaction fee you will pay if you send a transaction."));
475     }
476
477     fConfChange = GetBoolArg("-confchange", false);
478     fEnforceCanonical = GetBoolArg("-enforcecanonical", true);
479
480     if (mapArgs.count("-mininput"))
481     {
482         if (!ParseMoney(mapArgs["-mininput"], nMinimumInputValue))
483             return InitError(strprintf(_("Invalid amount for -mininput=<amount>: '%s'"), mapArgs["-mininput"].c_str()));
484     }
485
486     // ********************************************************* Step 4: application initialization: dir lock, daemonize, pidfile, debug log
487
488     std::string strDataDir = GetDataDir().string();
489     std::string strWalletFileName = GetArg("-wallet", "wallet.dat");
490
491     // strWalletFileName must be a plain filename without a directory
492     if (strWalletFileName != boost::filesystem::basename(strWalletFileName) + boost::filesystem::extension(strWalletFileName))
493         return InitError(strprintf(_("Wallet %s resides outside data directory %s."), strWalletFileName.c_str(), strDataDir.c_str()));
494
495     // Make sure only a single Bitcoin process is using the data directory.
496     boost::filesystem::path pathLockFile = GetDataDir() / ".lock";
497     FILE* file = fopen(pathLockFile.string().c_str(), "a"); // empty lock file; created if it doesn't exist.
498     if (file) fclose(file);
499     static boost::interprocess::file_lock lock(pathLockFile.string().c_str());
500     if (!lock.try_lock())
501         return InitError(strprintf(_("Cannot obtain a lock on data directory %s.  NovaCoin is probably already running."), strDataDir.c_str()));
502
503 #if !defined(WIN32) && !defined(QT_GUI)
504     if (fDaemon)
505     {
506         // Daemonize
507         pid_t pid = fork();
508         if (pid < 0)
509         {
510             fprintf(stderr, "Error: fork() returned %d errno %d\n", pid, errno);
511             return false;
512         }
513         if (pid > 0)
514         {
515             CreatePidFile(GetPidFile(), pid);
516             return true;
517         }
518
519         pid_t sid = setsid();
520         if (sid < 0)
521             fprintf(stderr, "Error: setsid() returned %d errno %d\n", sid, errno);
522     }
523 #endif
524
525     if (GetBoolArg("-shrinkdebugfile", !fDebug))
526         ShrinkDebugFile();
527     printf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
528     printf("NovaCoin version %s (%s)\n", FormatFullVersion().c_str(), CLIENT_DATE.c_str());
529     printf("Using OpenSSL version %s\n", SSLeay_version(SSLEAY_VERSION));
530     if (!fLogTimestamps)
531         printf("Startup time: %s\n", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
532     printf("Default data directory %s\n", GetDefaultDataDir().string().c_str());
533     printf("Used data directory %s\n", strDataDir.c_str());
534     std::ostringstream strErrors;
535
536     if (fDaemon)
537         fprintf(stdout, "NovaCoin server starting\n");
538
539     int64 nStart;
540
541     // ********************************************************* Step 5: verify database integrity
542
543     uiInterface.InitMessage(_("Verifying database integrity..."));
544
545     if (!bitdb.Open(GetDataDir()))
546     {
547         string msg = strprintf(_("Error initializing database environment %s!"
548                                  " To recover, BACKUP THAT DIRECTORY, then remove"
549                                  " everything from it except for wallet.dat."), strDataDir.c_str());
550         return InitError(msg);
551     }
552
553     if (GetBoolArg("-salvagewallet"))
554     {
555         // Recover readable keypairs:
556         if (!CWalletDB::Recover(bitdb, strWalletFileName, true))
557             return false;
558     }
559
560     if (filesystem::exists(GetDataDir() / strWalletFileName))
561     {
562         CDBEnv::VerifyResult r = bitdb.Verify(strWalletFileName, CWalletDB::Recover);
563         if (r == CDBEnv::RECOVER_OK)
564         {
565             string msg = strprintf(_("Warning: wallet.dat corrupt, data salvaged!"
566                                      " Original wallet.dat saved as wallet.{timestamp}.bak in %s; if"
567                                      " your balance or transactions are incorrect you should"
568                                      " restore from a backup."), strDataDir.c_str());
569             uiInterface.ThreadSafeMessageBox(msg, _("NovaCoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
570         }
571         if (r == CDBEnv::RECOVER_FAIL)
572             return InitError(_("wallet.dat corrupt, salvage failed"));
573     }
574
575     // ********************************************************* Step 6: network initialization
576
577     int nSocksVersion = GetArg("-socks", 5);
578
579     if (nSocksVersion != 4 && nSocksVersion != 5)
580         return InitError(strprintf(_("Unknown -socks proxy version requested: %i"), nSocksVersion));
581
582     if (mapArgs.count("-onlynet")) {
583         std::set<enum Network> nets;
584         BOOST_FOREACH(std::string snet, mapMultiArgs["-onlynet"]) {
585             enum Network net = ParseNetwork(snet);
586             if (net == NET_UNROUTABLE)
587                 return InitError(strprintf(_("Unknown network specified in -onlynet: '%s'"), snet.c_str()));
588             nets.insert(net);
589         }
590         for (int n = 0; n < NET_MAX; n++) {
591             enum Network net = (enum Network)n;
592             if (!nets.count(net))
593                 SetLimited(net);
594         }
595     }
596 #if defined(USE_IPV6)
597 #if ! USE_IPV6
598     else
599         SetLimited(NET_IPV6);
600 #endif
601 #endif
602
603     CService addrProxy;
604     bool fProxy = false;
605     if (mapArgs.count("-proxy")) {
606         addrProxy = CService(mapArgs["-proxy"], 9050);
607         if (!addrProxy.IsValid())
608             return InitError(strprintf(_("Invalid -proxy address: '%s'"), mapArgs["-proxy"].c_str()));
609
610         if (!IsLimited(NET_IPV4))
611             SetProxy(NET_IPV4, addrProxy, nSocksVersion);
612         if (nSocksVersion > 4) {
613 #ifdef USE_IPV6
614             if (!IsLimited(NET_IPV6))
615                 SetProxy(NET_IPV6, addrProxy, nSocksVersion);
616 #endif
617             SetNameProxy(addrProxy, nSocksVersion);
618         }
619         fProxy = true;
620     }
621
622     // -tor can override normal proxy, -notor disables tor entirely
623     if (!(mapArgs.count("-tor") && mapArgs["-tor"] == "0") && (fProxy || mapArgs.count("-tor"))) {
624         CService addrOnion;
625         if (!mapArgs.count("-tor"))
626             addrOnion = addrProxy;
627         else
628             addrOnion = CService(mapArgs["-tor"], 9050);
629         if (!addrOnion.IsValid())
630             return InitError(strprintf(_("Invalid -tor address: '%s'"), mapArgs["-tor"].c_str()));
631         SetProxy(NET_TOR, addrOnion, 5);
632         SetReachable(NET_TOR);
633     }
634
635     // see Step 2: parameter interactions for more information about these
636     fNoListen = !GetBoolArg("-listen", true);
637     fDiscover = GetBoolArg("-discover", true);
638     fNameLookup = GetBoolArg("-dns", true);
639 #ifdef USE_UPNP
640     fUseUPnP = GetBoolArg("-upnp", USE_UPNP);
641 #endif
642
643     bool fBound = false;
644     if (!fNoListen)
645     {
646         std::string strError;
647         if (mapArgs.count("-bind")) {
648             BOOST_FOREACH(std::string strBind, mapMultiArgs["-bind"]) {
649                 CService addrBind;
650                 if (!Lookup(strBind.c_str(), addrBind, GetListenPort(), false))
651                     return InitError(strprintf(_("Cannot resolve -bind address: '%s'"), strBind.c_str()));
652                 fBound |= Bind(addrBind);
653             }
654         } else {
655             struct in_addr inaddr_any;
656             inaddr_any.s_addr = INADDR_ANY;
657 #ifdef USE_IPV6
658             if (!IsLimited(NET_IPV6))
659                 fBound |= Bind(CService(in6addr_any, GetListenPort()), false);
660 #endif
661             if (!IsLimited(NET_IPV4))
662                 fBound |= Bind(CService(inaddr_any, GetListenPort()), !fBound);
663         }
664         if (!fBound)
665             return InitError(_("Failed to listen on any port. Use -listen=0 if you want this."));
666     }
667
668     if (mapArgs.count("-externalip"))
669     {
670         BOOST_FOREACH(string strAddr, mapMultiArgs["-externalip"]) {
671             CService addrLocal(strAddr, GetListenPort(), fNameLookup);
672             if (!addrLocal.IsValid())
673                 return InitError(strprintf(_("Cannot resolve -externalip address: '%s'"), strAddr.c_str()));
674             AddLocal(CService(strAddr, GetListenPort(), fNameLookup), LOCAL_MANUAL);
675         }
676     }
677
678     if (mapArgs.count("-reservebalance")) // ppcoin: reserve balance amount
679     {
680         int64 nReserveBalance = 0;
681         if (!ParseMoney(mapArgs["-reservebalance"], nReserveBalance))
682         {
683             InitError(_("Invalid amount for -reservebalance=<amount>"));
684             return false;
685         }
686     }
687
688     if (mapArgs.count("-checkpointkey")) // ppcoin: checkpoint master priv key
689     {
690         if (!Checkpoints::SetCheckpointPrivKey(GetArg("-checkpointkey", "")))
691             InitError(_("Unable to sign checkpoint, wrong checkpointkey?\n"));
692     }
693
694     BOOST_FOREACH(string strDest, mapMultiArgs["-seednode"])
695         AddOneShot(strDest);
696
697     // ********************************************************* Step 7: load blockchain
698
699     if (!bitdb.Open(GetDataDir()))
700     {
701         string msg = strprintf(_("Error initializing database environment %s!"
702                                  " To recover, BACKUP THAT DIRECTORY, then remove"
703                                  " everything from it except for wallet.dat."), strDataDir.c_str());
704         return InitError(msg);
705     }
706
707     if (GetBoolArg("-loadblockindextest"))
708     {
709         CTxDB txdb("r");
710         txdb.LoadBlockIndex();
711         PrintBlockTree();
712         return false;
713     }
714
715     uiInterface.InitMessage(_("Loading block index..."));
716     printf("Loading block index...\n");
717     nStart = GetTimeMillis();
718     if (!LoadBlockIndex())
719         return InitError(_("Error loading blkindex.dat"));
720
721
722     // as LoadBlockIndex can take several minutes, it's possible the user
723     // requested to kill bitcoin-qt during the last operation. If so, exit.
724     // As the program has not fully started yet, Shutdown() is possibly overkill.
725     if (fRequestShutdown)
726     {
727         printf("Shutdown requested. Exiting.\n");
728         return false;
729     }
730     printf(" block index %15"PRI64d"ms\n", GetTimeMillis() - nStart);
731
732     if (GetBoolArg("-printblockindex") || GetBoolArg("-printblocktree"))
733     {
734         PrintBlockTree();
735         return false;
736     }
737
738     if (mapArgs.count("-printblock"))
739     {
740         string strMatch = mapArgs["-printblock"];
741         int nFound = 0;
742         for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
743         {
744             uint256 hash = (*mi).first;
745             if (strncmp(hash.ToString().c_str(), strMatch.c_str(), strMatch.size()) == 0)
746             {
747                 CBlockIndex* pindex = (*mi).second;
748                 CBlock block;
749                 block.ReadFromDisk(pindex);
750                 block.BuildMerkleTree();
751                 block.print();
752                 printf("\n");
753                 nFound++;
754             }
755         }
756         if (nFound == 0)
757             printf("No blocks matching %s were found\n", strMatch.c_str());
758         return false;
759     }
760
761     // ********************************************************* Testing Zerocoin
762
763
764     if (GetBoolArg("-zerotest", false))
765     {
766         printf("\n=== ZeroCoin tests start ===\n");
767         Test_RunAllTests();
768         printf("=== ZeroCoin tests end ===\n\n");
769     }
770
771     // ********************************************************* Step 8: load wallet
772
773     uiInterface.InitMessage(_("Loading wallet..."));
774     printf("Loading wallet...\n");
775     nStart = GetTimeMillis();
776     bool fFirstRun = true;
777     pwalletMain = new CWallet(strWalletFileName);
778     DBErrors nLoadWalletRet = pwalletMain->LoadWallet(fFirstRun);
779     if (nLoadWalletRet != DB_LOAD_OK)
780     {
781         if (nLoadWalletRet == DB_CORRUPT)
782             strErrors << _("Error loading wallet.dat: Wallet corrupted") << "\n";
783         else if (nLoadWalletRet == DB_NONCRITICAL_ERROR)
784         {
785             string msg(_("Warning: error reading wallet.dat! All keys read correctly, but transaction data"
786                          " or address book entries might be missing or incorrect."));
787             uiInterface.ThreadSafeMessageBox(msg, _("NovaCoin"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
788         }
789         else if (nLoadWalletRet == DB_TOO_NEW)
790             strErrors << _("Error loading wallet.dat: Wallet requires newer version of NovaCoin") << "\n";
791         else if (nLoadWalletRet == DB_NEED_REWRITE)
792         {
793             strErrors << _("Wallet needed to be rewritten: restart NovaCoin to complete") << "\n";
794             printf("%s", strErrors.str().c_str());
795             return InitError(strErrors.str());
796         }
797         else
798             strErrors << _("Error loading wallet.dat") << "\n";
799     }
800
801     if (GetBoolArg("-upgradewallet", fFirstRun))
802     {
803         int nMaxVersion = GetArg("-upgradewallet", 0);
804         if (nMaxVersion == 0) // the -upgradewallet without argument case
805         {
806             printf("Performing wallet upgrade to %i\n", FEATURE_LATEST);
807             nMaxVersion = CLIENT_VERSION;
808             pwalletMain->SetMinVersion(FEATURE_LATEST); // permanently upgrade the wallet immediately
809         }
810         else
811             printf("Allowing wallet upgrade up to %i\n", nMaxVersion);
812         if (nMaxVersion < pwalletMain->GetVersion())
813             strErrors << _("Cannot downgrade wallet") << "\n";
814         pwalletMain->SetMaxVersion(nMaxVersion);
815     }
816
817     if (fFirstRun)
818     {
819         // Create new keyUser and set as default key
820         RandAddSeedPerfmon();
821
822         CPubKey newDefaultKey;
823         if (!pwalletMain->GetKeyFromPool(newDefaultKey, false))
824             strErrors << _("Cannot initialize keypool") << "\n";
825         pwalletMain->SetDefaultKey(newDefaultKey);
826         if (!pwalletMain->SetAddressBookName(pwalletMain->vchDefaultKey.GetID(), ""))
827             strErrors << _("Cannot write default address") << "\n";
828     }
829
830     printf("%s", strErrors.str().c_str());
831     printf(" wallet      %15"PRI64d"ms\n", GetTimeMillis() - nStart);
832
833     RegisterWallet(pwalletMain);
834
835     CBlockIndex *pindexRescan = pindexBest;
836     if (GetBoolArg("-rescan"))
837         pindexRescan = pindexGenesisBlock;
838     else
839     {
840         CWalletDB walletdb(strWalletFileName);
841         CBlockLocator locator;
842         if (walletdb.ReadBestBlock(locator))
843             pindexRescan = locator.GetBlockIndex();
844     }
845     if (pindexBest != pindexRescan && pindexBest && pindexRescan && pindexBest->nHeight > pindexRescan->nHeight)
846     {
847         uiInterface.InitMessage(_("Rescanning..."));
848         printf("Rescanning last %i blocks (from block %i)...\n", pindexBest->nHeight - pindexRescan->nHeight, pindexRescan->nHeight);
849         nStart = GetTimeMillis();
850         pwalletMain->ScanForWalletTransactions(pindexRescan, true);
851         printf(" rescan      %15"PRI64d"ms\n", GetTimeMillis() - nStart);
852     }
853
854     // ********************************************************* Step 9: import blocks
855
856     if (mapArgs.count("-loadblock"))
857     {
858         uiInterface.InitMessage(_("Importing blockchain data file."));
859
860         BOOST_FOREACH(string strFile, mapMultiArgs["-loadblock"])
861         {
862             FILE *file = fopen(strFile.c_str(), "rb");
863             if (file)
864                 LoadExternalBlockFile(file);
865         }
866         exit(0);
867     }
868
869     filesystem::path pathBootstrap = GetDataDir() / "bootstrap.dat";
870     if (filesystem::exists(pathBootstrap)) {
871         uiInterface.InitMessage(_("Importing bootstrap blockchain data file."));
872
873         FILE *file = fopen(pathBootstrap.string().c_str(), "rb");
874         if (file) {
875             filesystem::path pathBootstrapOld = GetDataDir() / "bootstrap.dat.old";
876             LoadExternalBlockFile(file);
877             RenameOver(pathBootstrap, pathBootstrapOld);
878         }
879     }
880
881     // ********************************************************* Step 10: load peers
882
883     uiInterface.InitMessage(_("Loading addresses..."));
884     printf("Loading addresses...\n");
885     nStart = GetTimeMillis();
886
887     {
888         CAddrDB adb;
889         if (!adb.Read(addrman))
890             printf("Invalid or missing peers.dat; recreating\n");
891     }
892
893     printf("Loaded %i addresses from peers.dat  %"PRI64d"ms\n",
894            addrman.size(), GetTimeMillis() - nStart);
895
896     // ********************************************************* Step 11: start node
897
898     if (!CheckDiskSpace())
899         return false;
900
901     RandAddSeedPerfmon();
902
903     //// debug print
904     printf("mapBlockIndex.size() = %"PRIszu"\n",   mapBlockIndex.size());
905     printf("nBestHeight = %d\n",            nBestHeight);
906     printf("setKeyPool.size() = %"PRIszu"\n",      pwalletMain->setKeyPool.size());
907     printf("mapWallet.size() = %"PRIszu"\n",       pwalletMain->mapWallet.size());
908     printf("mapAddressBook.size() = %"PRIszu"\n",  pwalletMain->mapAddressBook.size());
909
910     if (!NewThread(StartNode, NULL))
911         InitError(_("Error: could not start node"));
912
913     if (fServer)
914         NewThread(ThreadRPCServer, NULL);
915
916     // ********************************************************* Step 12: finished
917
918     uiInterface.InitMessage(_("Done loading"));
919     printf("Done loading\n");
920
921     if (!strErrors.str().empty())
922         return InitError(strErrors.str());
923
924      // Add wallet transactions that aren't already in a block to mapTransactions
925     pwalletMain->ReacceptWalletTransactions();
926
927 #if !defined(QT_GUI)
928     // Loop until process is exit()ed from shutdown() function,
929     // called from ThreadRPCServer thread when a "stop" command is received.
930     while (1)
931         Sleep(5000);
932 #endif
933
934     return true;
935 }