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