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