a1835c903847b761916296e2d115758f98e2c12e
[novacoin.git] / src / init.cpp
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2011 The Bitcoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
5 #include "headers.h"
6 #include "db.h"
7 #include "bitcoinrpc.h"
8 #include "net.h"
9 #include "init.h"
10 #include "strlcpy.h"
11 #include <boost/filesystem.hpp>
12 #include <boost/filesystem/fstream.hpp>
13 #include <boost/interprocess/sync/file_lock.hpp>
14
15 using namespace std;
16 using namespace boost;
17
18 CWallet* pwalletMain;
19
20 //////////////////////////////////////////////////////////////////////////////
21 //
22 // Shutdown
23 //
24
25 void ExitTimeout(void* parg)
26 {
27 #ifdef __WXMSW__
28     Sleep(5000);
29     ExitProcess(0);
30 #endif
31 }
32
33 void Shutdown(void* parg)
34 {
35     static CCriticalSection cs_Shutdown;
36     static bool fTaken;
37     bool fFirstThread;
38     CRITICAL_BLOCK(cs_Shutdown)
39     {
40         fFirstThread = !fTaken;
41         fTaken = true;
42     }
43     static bool fExit;
44     if (fFirstThread)
45     {
46         fShutdown = true;
47         nTransactionsUpdated++;
48         DBFlush(false);
49         StopNode();
50         DBFlush(true);
51         boost::filesystem::remove(GetPidFile());
52         UnregisterWallet(pwalletMain);
53         delete pwalletMain;
54         CreateThread(ExitTimeout, NULL);
55         Sleep(50);
56         printf("Bitcoin exiting\n\n");
57         fExit = true;
58         exit(0);
59     }
60     else
61     {
62         while (!fExit)
63             Sleep(500);
64         Sleep(100);
65         ExitThread(0);
66     }
67 }
68
69 void HandleSIGTERM(int)
70 {
71     fRequestShutdown = true;
72 }
73
74
75
76
77
78
79 //////////////////////////////////////////////////////////////////////////////
80 //
81 // Start
82 //
83 #if !defined(QT_GUI) && !defined(GUI)
84 int main(int argc, char* argv[])
85 {
86     bool fRet = false;
87     fRet = AppInit(argc, argv);
88
89     if (fRet && fDaemon)
90         return 0;
91
92     return 1;
93 }
94 #endif
95
96 bool AppInit(int argc, char* argv[])
97 {
98     bool fRet = false;
99     try
100     {
101         fRet = AppInit2(argc, argv);
102     }
103     catch (std::exception& e) {
104         PrintException(&e, "AppInit()");
105     } catch (...) {
106         PrintException(NULL, "AppInit()");
107     }
108     if (!fRet)
109         Shutdown(NULL);
110     return fRet;
111 }
112
113 bool AppInit2(int argc, char* argv[])
114 {
115 #ifdef _MSC_VER
116     // Turn off microsoft heap dump noise
117     _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
118     _CrtSetReportFile(_CRT_WARN, CreateFileA("NUL", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0));
119 #endif
120 #if _MSC_VER >= 1400
121     // Disable confusing "helpful" text message on abort, ctrl-c
122     _set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT);
123 #endif
124 #ifndef __WXMSW__
125     umask(077);
126 #endif
127 #ifndef __WXMSW__
128     // Clean shutdown on SIGTERM
129     struct sigaction sa;
130     sa.sa_handler = HandleSIGTERM;
131     sigemptyset(&sa.sa_mask);
132     sa.sa_flags = 0;
133     sigaction(SIGTERM, &sa, NULL);
134     sigaction(SIGINT, &sa, NULL);
135     sigaction(SIGHUP, &sa, NULL);
136 #endif
137
138     //
139     // Parameters
140     //
141     ParseParameters(argc, argv);
142
143     if (mapArgs.count("-datadir"))
144     {
145         if (filesystem::is_directory(filesystem::system_complete(mapArgs["-datadir"])))
146         {
147             filesystem::path pathDataDir = filesystem::system_complete(mapArgs["-datadir"]);
148             strlcpy(pszSetDataDir, pathDataDir.string().c_str(), sizeof(pszSetDataDir));
149         }
150         else
151         {
152             fprintf(stderr, "Error: Specified directory does not exist\n");
153             Shutdown(NULL);
154         }
155     }
156
157
158     ReadConfigFile(mapArgs, mapMultiArgs); // Must be done after processing datadir
159
160     if (mapArgs.count("-?") || mapArgs.count("--help"))
161     {
162         string strUsage = string() +
163           _("Bitcoin version") + " " + FormatFullVersion() + "\n\n" +
164           _("Usage:") + "\t\t\t\t\t\t\t\t\t\t\n" +
165             "  bitcoin [options]                   \t  " + "\n" +
166             "  bitcoin [options] <command> [params]\t  " + _("Send command to -server or bitcoind\n") +
167             "  bitcoin [options] help              \t\t  " + _("List commands\n") +
168             "  bitcoin [options] help <command>    \t\t  " + _("Get help for a command\n") +
169           _("Options:\n") +
170             "  -conf=<file>     \t\t  " + _("Specify configuration file (default: bitcoin.conf)\n") +
171             "  -pid=<file>      \t\t  " + _("Specify pid file (default: bitcoind.pid)\n") +
172             "  -gen             \t\t  " + _("Generate coins\n") +
173             "  -gen=0           \t\t  " + _("Don't generate coins\n") +
174             "  -min             \t\t  " + _("Start minimized\n") +
175             "  -datadir=<dir>   \t\t  " + _("Specify data directory\n") +
176             "  -timeout=<n>     \t  "   + _("Specify connection timeout (in milliseconds)\n") +
177             "  -proxy=<ip:port> \t  "   + _("Connect through socks4 proxy\n") +
178             "  -dns             \t  "   + _("Allow DNS lookups for addnode and connect\n") +
179             "  -addnode=<ip>    \t  "   + _("Add a node to connect to\n") +
180             "  -connect=<ip>    \t\t  " + _("Connect only to the specified node\n") +
181             "  -nolisten        \t  "   + _("Don't accept connections from outside\n") +
182             "  -banscore=<n>    \t  "   + _("Threshold for disconnecting misbehaving peers (default: 100)\n") +
183             "  -bantime=<n>     \t  "   + _("Number of seconds to keep misbehaving peers from reconnecting (default: 86400)\n") +
184 #ifdef USE_UPNP
185 #if USE_UPNP
186             "  -noupnp          \t  "   + _("Don't attempt to use UPnP to map the listening port\n") +
187 #else
188             "  -upnp            \t  "   + _("Attempt to use UPnP to map the listening port\n") +
189 #endif
190 #endif
191             "  -paytxfee=<amt>  \t  "   + _("Fee per KB to add to transactions you send\n") +
192 #ifdef GUI
193             "  -server          \t\t  " + _("Accept command line and JSON-RPC commands\n") +
194 #endif
195 #ifndef __WXMSW__
196             "  -daemon          \t\t  " + _("Run in the background as a daemon and accept commands\n") +
197 #endif
198             "  -testnet         \t\t  " + _("Use the test network\n") +
199             "  -rpcuser=<user>  \t  "   + _("Username for JSON-RPC connections\n") +
200             "  -rpcpassword=<pw>\t  "   + _("Password for JSON-RPC connections\n") +
201             "  -rpcport=<port>  \t\t  " + _("Listen for JSON-RPC connections on <port> (default: 8332)\n") +
202             "  -rpcallowip=<ip> \t\t  " + _("Allow JSON-RPC connections from specified IP address\n") +
203             "  -rpcconnect=<ip> \t  "   + _("Send commands to node running on <ip> (default: 127.0.0.1)\n") +
204             "  -keypool=<n>     \t  "   + _("Set key pool size to <n> (default: 100)\n") +
205             "  -rescan          \t  "   + _("Rescan the block chain for missing wallet transactions\n");
206
207 #ifdef USE_SSL
208         strUsage += string() +
209             _("\nSSL options: (see the Bitcoin Wiki for SSL setup instructions)\n") +
210             "  -rpcssl                                \t  " + _("Use OpenSSL (https) for JSON-RPC connections\n") +
211             "  -rpcsslcertificatechainfile=<file.cert>\t  " + _("Server certificate file (default: server.cert)\n") +
212             "  -rpcsslprivatekeyfile=<file.pem>       \t  " + _("Server private key (default: server.pem)\n") +
213             "  -rpcsslciphers=<ciphers>               \t  " + _("Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH)\n");
214 #endif
215
216         strUsage += string() +
217             "  -?               \t\t  " + _("This help message\n");
218
219 #if defined(__WXMSW__) && defined(GUI)
220         // Tabs make the columns line up in the message box
221         wxMessageBox(strUsage, "Bitcoin", wxOK);
222 #else
223         // Remove tabs
224         strUsage.erase(std::remove(strUsage.begin(), strUsage.end(), '\t'), strUsage.end());
225         fprintf(stderr, "%s", strUsage.c_str());
226 #endif
227         return false;
228     }
229
230     fDebug = GetBoolArg("-debug");
231     fAllowDNS = GetBoolArg("-dns");
232
233 #ifndef __WXMSW__
234     fDaemon = GetBoolArg("-daemon");
235 #else
236     fDaemon = false;
237 #endif
238
239     if (fDaemon)
240         fServer = true;
241     else
242         fServer = GetBoolArg("-server");
243
244     /* force fServer when running without GUI */
245 #if !defined(QT_GUI) && !defined(GUI)
246     fServer = true;
247 #endif
248     fPrintToConsole = GetBoolArg("-printtoconsole");
249     fPrintToDebugger = GetBoolArg("-printtodebugger");
250
251     fTestNet = GetBoolArg("-testnet");
252     bool fTOR = (fUseProxy && addrProxy.port == htons(9050));
253     fNoListen = GetBoolArg("-nolisten") || fTOR;
254     fLogTimestamps = GetBoolArg("-logtimestamps");
255
256 #ifndef QT_GUI
257     for (int i = 1; i < argc; i++)
258         if (!IsSwitchChar(argv[i][0]))
259             fCommandLine = true;
260
261     if (fCommandLine)
262     {
263         int ret = CommandLineRPC(argc, argv);
264         exit(ret);
265     }
266 #endif
267
268 #ifndef __WXMSW__
269     if (fDaemon)
270     {
271         // Daemonize
272         pid_t pid = fork();
273         if (pid < 0)
274         {
275             fprintf(stderr, "Error: fork() returned %d errno %d\n", pid, errno);
276             return false;
277         }
278         if (pid > 0)
279         {
280             CreatePidFile(GetPidFile(), pid);
281             return true;
282         }
283
284         pid_t sid = setsid();
285         if (sid < 0)
286             fprintf(stderr, "Error: setsid() returned %d errno %d\n", sid, errno);
287     }
288 #endif
289
290     if (!fDebug && !pszSetDataDir[0])
291         ShrinkDebugFile();
292     printf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
293     printf("Bitcoin version %s\n", FormatFullVersion().c_str());
294 #ifdef GUI
295     printf("OS version %s\n", ((string)wxGetOsDescription()).c_str());
296     printf("System default language is %d %s\n", g_locale.GetSystemLanguage(), ((string)g_locale.GetSysName()).c_str());
297     printf("Language file %s (%s)\n", (string("locale/") + (string)g_locale.GetCanonicalName() + "/LC_MESSAGES/bitcoin.mo").c_str(), ((string)g_locale.GetLocale()).c_str());
298 #endif
299     printf("Default data directory %s\n", GetDefaultDataDir().c_str());
300
301     if (GetBoolArg("-loadblockindextest"))
302     {
303         CTxDB txdb("r");
304         txdb.LoadBlockIndex();
305         PrintBlockTree();
306         return false;
307     }
308
309     //
310     // Limit to single instance per user
311     // Required to protect the database files if we're going to keep deleting log.*
312     //
313 #if defined(__WXMSW__) && defined(GUI)
314     // wxSingleInstanceChecker doesn't work on Linux
315     wxString strMutexName = wxString("bitcoin_running.") + getenv("HOMEPATH");
316     for (int i = 0; i < strMutexName.size(); i++)
317         if (!isalnum(strMutexName[i]))
318             strMutexName[i] = '.';
319     wxSingleInstanceChecker* psingleinstancechecker = new wxSingleInstanceChecker(strMutexName);
320     if (psingleinstancechecker->IsAnotherRunning())
321     {
322         printf("Existing instance found\n");
323         unsigned int nStart = GetTime();
324         loop
325         {
326             // Show the previous instance and exit
327             HWND hwndPrev = FindWindowA("wxWindowClassNR", "Bitcoin");
328             if (hwndPrev)
329             {
330                 if (IsIconic(hwndPrev))
331                     ShowWindow(hwndPrev, SW_RESTORE);
332                 SetForegroundWindow(hwndPrev);
333                 return false;
334             }
335
336             if (GetTime() > nStart + 60)
337                 return false;
338
339             // Resume this instance if the other exits
340             delete psingleinstancechecker;
341             Sleep(1000);
342             psingleinstancechecker = new wxSingleInstanceChecker(strMutexName);
343             if (!psingleinstancechecker->IsAnotherRunning())
344                 break;
345         }
346     }
347 #endif
348
349     // Make sure only a single bitcoin process is using the data directory.
350     string strLockFile = GetDataDir() + "/.lock";
351     FILE* file = fopen(strLockFile.c_str(), "a"); // empty lock file; created if it doesn't exist.
352     if (file) fclose(file);
353     static boost::interprocess::file_lock lock(strLockFile.c_str());
354     if (!lock.try_lock())
355     {
356         wxMessageBox(strprintf(_("Cannot obtain a lock on data directory %s.  Bitcoin is probably already running."), GetDataDir().c_str()), "Bitcoin");
357         return false;
358     }
359
360     // Bind to the port early so we can tell if another instance is already running.
361     string strErrors;
362     if (!fNoListen)
363     {
364         if (!BindListenPort(strErrors))
365         {
366             wxMessageBox(strErrors, "Bitcoin");
367             return false;
368         }
369     }
370
371     //
372     // Load data files
373     //
374     if (fDaemon)
375         fprintf(stdout, "bitcoin server starting\n");
376     strErrors = "";
377     int64 nStart;
378
379     InitMessage(_("Loading addresses..."));
380     printf("Loading addresses...\n");
381     nStart = GetTimeMillis();
382     if (!LoadAddresses())
383         strErrors += _("Error loading addr.dat      \n");
384     printf(" addresses   %15"PRI64d"ms\n", GetTimeMillis() - nStart);
385
386     InitMessage(_("Loading block index..."));
387     printf("Loading block index...\n");
388     nStart = GetTimeMillis();
389     if (!LoadBlockIndex())
390         strErrors += _("Error loading blkindex.dat      \n");
391     printf(" block index %15"PRI64d"ms\n", GetTimeMillis() - nStart);
392
393     InitMessage(_("Loading wallet..."));
394     printf("Loading wallet...\n");
395     nStart = GetTimeMillis();
396     bool fFirstRun;
397     pwalletMain = new CWallet("wallet.dat");
398     int nLoadWalletRet = pwalletMain->LoadWallet(fFirstRun);
399     if (nLoadWalletRet != DB_LOAD_OK)
400     {
401         if (nLoadWalletRet == DB_CORRUPT)
402             strErrors += _("Error loading wallet.dat: Wallet corrupted      \n");
403         else if (nLoadWalletRet == DB_TOO_NEW)
404             strErrors += _("Error loading wallet.dat: Wallet requires newer version of Bitcoin      \n");
405         else
406             strErrors += _("Error loading wallet.dat      \n");
407     }
408     printf(" wallet      %15"PRI64d"ms\n", GetTimeMillis() - nStart);
409
410     RegisterWallet(pwalletMain);
411
412     CBlockIndex *pindexRescan = pindexBest;
413     if (GetBoolArg("-rescan"))
414         pindexRescan = pindexGenesisBlock;
415     else
416     {
417         CWalletDB walletdb("wallet.dat");
418         CBlockLocator locator;
419         if (walletdb.ReadBestBlock(locator))
420             pindexRescan = locator.GetBlockIndex();
421     }
422     if (pindexBest != pindexRescan)
423     {
424         InitMessage(_("Rescanning..."));
425         printf("Rescanning last %i blocks (from block %i)...\n", pindexBest->nHeight - pindexRescan->nHeight, pindexRescan->nHeight);
426         nStart = GetTimeMillis();
427         pwalletMain->ScanForWalletTransactions(pindexRescan, true);
428         printf(" rescan      %15"PRI64d"ms\n", GetTimeMillis() - nStart);
429     }
430
431     InitMessage(_("Done loading"));
432     printf("Done loading\n");
433
434         //// debug print
435         printf("mapBlockIndex.size() = %d\n",   mapBlockIndex.size());
436         printf("nBestHeight = %d\n",            nBestHeight);
437         printf("setKeyPool.size() = %d\n",      pwalletMain->setKeyPool.size());
438         printf("mapWallet.size() = %d\n",       pwalletMain->mapWallet.size());
439         printf("mapAddressBook.size() = %d\n",  pwalletMain->mapAddressBook.size());
440
441     if (!strErrors.empty())
442     {
443         wxMessageBox(strErrors, "Bitcoin", wxOK | wxICON_ERROR);
444         return false;
445     }
446
447     // Add wallet transactions that aren't already in a block to mapTransactions
448     pwalletMain->ReacceptWalletTransactions();
449
450     //
451     // Parameters
452     //
453     if (GetBoolArg("-printblockindex") || GetBoolArg("-printblocktree"))
454     {
455         PrintBlockTree();
456         return false;
457     }
458
459     if (mapArgs.count("-timeout"))
460     {
461         int nNewTimeout = GetArg("-timeout", 5000);
462         if (nNewTimeout > 0 && nNewTimeout < 600000)
463             nConnectTimeout = nNewTimeout;
464     }
465
466     if (mapArgs.count("-printblock"))
467     {
468         string strMatch = mapArgs["-printblock"];
469         int nFound = 0;
470         for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
471         {
472             uint256 hash = (*mi).first;
473             if (strncmp(hash.ToString().c_str(), strMatch.c_str(), strMatch.size()) == 0)
474             {
475                 CBlockIndex* pindex = (*mi).second;
476                 CBlock block;
477                 block.ReadFromDisk(pindex);
478                 block.BuildMerkleTree();
479                 block.print();
480                 printf("\n");
481                 nFound++;
482             }
483         }
484         if (nFound == 0)
485             printf("No blocks matching %s were found\n", strMatch.c_str());
486         return false;
487     }
488
489     fGenerateBitcoins = GetBoolArg("-gen");
490
491     if (mapArgs.count("-proxy"))
492     {
493         fUseProxy = true;
494         addrProxy = CAddress(mapArgs["-proxy"]);
495         if (!addrProxy.IsValid())
496         {
497             wxMessageBox(_("Invalid -proxy address"), "Bitcoin");
498             return false;
499         }
500     }
501
502     if (mapArgs.count("-addnode"))
503     {
504         BOOST_FOREACH(string strAddr, mapMultiArgs["-addnode"])
505         {
506             CAddress addr(strAddr, fAllowDNS);
507             addr.nTime = 0; // so it won't relay unless successfully connected
508             if (addr.IsValid())
509                 AddAddress(addr);
510         }
511     }
512
513     if (GetBoolArg("-nodnsseed"))
514         printf("DNS seeding disabled\n");
515     else
516         DNSAddressSeed();
517
518     if (mapArgs.count("-paytxfee"))
519     {
520         if (!ParseMoney(mapArgs["-paytxfee"], nTransactionFee))
521         {
522             wxMessageBox(_("Invalid amount for -paytxfee=<amount>"), "Bitcoin");
523             return false;
524         }
525         if (nTransactionFee > 0.25 * COIN)
526             wxMessageBox(_("Warning: -paytxfee is set very high.  This is the transaction fee you will pay if you send a transaction."), "Bitcoin", wxOK | wxICON_EXCLAMATION);
527     }
528
529     if (fHaveUPnP)
530     {
531 #if USE_UPNP
532     if (GetBoolArg("-noupnp"))
533         fUseUPnP = false;
534 #else
535     if (GetBoolArg("-upnp"))
536         fUseUPnP = true;
537 #endif
538     }
539
540     //
541     // Create the main window and start the node
542     //
543 #ifdef GUI
544     if (!fDaemon)
545         CreateMainWindow();
546 #endif
547
548     if (!CheckDiskSpace())
549         return false;
550
551     RandAddSeedPerfmon();
552
553     if (!CreateThread(StartNode, NULL))
554         wxMessageBox(_("Error: CreateThread(StartNode) failed"), "Bitcoin");
555
556     if (fServer)
557         CreateThread(ThreadRPCServer, NULL);
558
559 #if defined(__WXMSW__) && defined(GUI)
560     if (fFirstRun)
561         SetStartOnSystemStartup(true);
562 #endif
563
564 #if !defined(QT_GUI) && !defined(GUI)
565     while (1)
566         Sleep(5000);
567 #endif
568
569     return true;
570 }