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