Merge branch 'master' of https://github.com/bitcoin/bitcoin
[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 #ifdef USE_UPNP
183 #if USE_UPNP
184             "  -noupnp          \t  "   + _("Don't attempt to use UPnP to map the listening port\n") +
185 #else
186             "  -upnp            \t  "   + _("Attempt to use UPnP to map the listening port\n") +
187 #endif
188 #endif
189             "  -paytxfee=<amt>  \t  "   + _("Fee per KB to add to transactions you send\n") +
190 #ifdef GUI
191             "  -server          \t\t  " + _("Accept command line and JSON-RPC commands\n") +
192 #endif
193 #ifndef __WXMSW__
194             "  -daemon          \t\t  " + _("Run in the background as a daemon and accept commands\n") +
195 #endif
196             "  -testnet         \t\t  " + _("Use the test network\n") +
197             "  -rpcuser=<user>  \t  "   + _("Username for JSON-RPC connections\n") +
198             "  -rpcpassword=<pw>\t  "   + _("Password for JSON-RPC connections\n") +
199             "  -rpcport=<port>  \t\t  " + _("Listen for JSON-RPC connections on <port> (default: 8332)\n") +
200             "  -rpcallowip=<ip> \t\t  " + _("Allow JSON-RPC connections from specified IP address\n") +
201             "  -rpcconnect=<ip> \t  "   + _("Send commands to node running on <ip> (default: 127.0.0.1)\n") +
202             "  -keypool=<n>     \t  "   + _("Set key pool size to <n> (default: 100)\n") +
203             "  -rescan          \t  "   + _("Rescan the block chain for missing wallet transactions\n");
204
205 #ifdef USE_SSL
206         strUsage += string() +
207             _("\nSSL options: (see the Bitcoin Wiki for SSL setup instructions)\n") +
208             "  -rpcssl                                \t  " + _("Use OpenSSL (https) for JSON-RPC connections\n") +
209             "  -rpcsslcertificatechainfile=<file.cert>\t  " + _("Server certificate file (default: server.cert)\n") +
210             "  -rpcsslprivatekeyfile=<file.pem>       \t  " + _("Server private key (default: server.pem)\n") +
211             "  -rpcsslciphers=<ciphers>               \t  " + _("Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH)\n");
212 #endif
213
214         strUsage += string() +
215             "  -?               \t\t  " + _("This help message\n");
216
217 #if defined(__WXMSW__) && defined(GUI)
218         // Tabs make the columns line up in the message box
219         wxMessageBox(strUsage, "Bitcoin", wxOK);
220 #else
221         // Remove tabs
222         strUsage.erase(std::remove(strUsage.begin(), strUsage.end(), '\t'), strUsage.end());
223         fprintf(stderr, "%s", strUsage.c_str());
224 #endif
225         return false;
226     }
227
228     fDebug = GetBoolArg("-debug");
229     fAllowDNS = GetBoolArg("-dns");
230
231 #ifndef __WXMSW__
232     fDaemon = GetBoolArg("-daemon");
233 #else
234     fDaemon = false;
235 #endif
236
237     if (fDaemon)
238         fServer = true;
239     else
240         fServer = GetBoolArg("-server");
241
242     /* force fServer when running without GUI */
243 #if !defined(QT_GUI) && !defined(GUI)
244     fServer = true;
245 #endif
246     fPrintToConsole = GetBoolArg("-printtoconsole");
247     fPrintToDebugger = GetBoolArg("-printtodebugger");
248
249     fTestNet = GetBoolArg("-testnet");
250     bool fTOR = (fUseProxy && addrProxy.port == htons(9050));
251     fNoListen = GetBoolArg("-nolisten") || fTOR;
252     fLogTimestamps = GetBoolArg("-logtimestamps");
253
254     for (int i = 1; i < argc; i++)
255         if (!IsSwitchChar(argv[i][0]))
256             fCommandLine = true;
257
258     if (fCommandLine)
259     {
260         int ret = CommandLineRPC(argc, argv);
261         exit(ret);
262     }
263
264 #ifndef __WXMSW__
265     if (fDaemon)
266     {
267         // Daemonize
268         pid_t pid = fork();
269         if (pid < 0)
270         {
271             fprintf(stderr, "Error: fork() returned %d errno %d\n", pid, errno);
272             return false;
273         }
274         if (pid > 0)
275         {
276             CreatePidFile(GetPidFile(), pid);
277             return true;
278         }
279
280         pid_t sid = setsid();
281         if (sid < 0)
282             fprintf(stderr, "Error: setsid() returned %d errno %d\n", sid, errno);
283     }
284 #endif
285
286     if (!fDebug && !pszSetDataDir[0])
287         ShrinkDebugFile();
288     printf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
289     printf("Bitcoin version %s\n", FormatFullVersion().c_str());
290 #ifdef GUI
291     printf("OS version %s\n", ((string)wxGetOsDescription()).c_str());
292     printf("System default language is %d %s\n", g_locale.GetSystemLanguage(), ((string)g_locale.GetSysName()).c_str());
293     printf("Language file %s (%s)\n", (string("locale/") + (string)g_locale.GetCanonicalName() + "/LC_MESSAGES/bitcoin.mo").c_str(), ((string)g_locale.GetLocale()).c_str());
294 #endif
295     printf("Default data directory %s\n", GetDefaultDataDir().c_str());
296
297     if (GetBoolArg("-loadblockindextest"))
298     {
299         CTxDB txdb("r");
300         txdb.LoadBlockIndex();
301         PrintBlockTree();
302         return false;
303     }
304
305     //
306     // Limit to single instance per user
307     // Required to protect the database files if we're going to keep deleting log.*
308     //
309 #if defined(__WXMSW__) && defined(GUI)
310     // wxSingleInstanceChecker doesn't work on Linux
311     wxString strMutexName = wxString("bitcoin_running.") + getenv("HOMEPATH");
312     for (int i = 0; i < strMutexName.size(); i++)
313         if (!isalnum(strMutexName[i]))
314             strMutexName[i] = '.';
315     wxSingleInstanceChecker* psingleinstancechecker = new wxSingleInstanceChecker(strMutexName);
316     if (psingleinstancechecker->IsAnotherRunning())
317     {
318         printf("Existing instance found\n");
319         unsigned int nStart = GetTime();
320         loop
321         {
322             // Show the previous instance and exit
323             HWND hwndPrev = FindWindowA("wxWindowClassNR", "Bitcoin");
324             if (hwndPrev)
325             {
326                 if (IsIconic(hwndPrev))
327                     ShowWindow(hwndPrev, SW_RESTORE);
328                 SetForegroundWindow(hwndPrev);
329                 return false;
330             }
331
332             if (GetTime() > nStart + 60)
333                 return false;
334
335             // Resume this instance if the other exits
336             delete psingleinstancechecker;
337             Sleep(1000);
338             psingleinstancechecker = new wxSingleInstanceChecker(strMutexName);
339             if (!psingleinstancechecker->IsAnotherRunning())
340                 break;
341         }
342     }
343 #endif
344
345     // Make sure only a single bitcoin process is using the data directory.
346     string strLockFile = GetDataDir() + "/.lock";
347     FILE* file = fopen(strLockFile.c_str(), "a"); // empty lock file; created if it doesn't exist.
348     if (file) fclose(file);
349     static boost::interprocess::file_lock lock(strLockFile.c_str());
350     if (!lock.try_lock())
351     {
352         wxMessageBox(strprintf(_("Cannot obtain a lock on data directory %s.  Bitcoin is probably already running."), GetDataDir().c_str()), "Bitcoin");
353         return false;
354     }
355
356     // Bind to the port early so we can tell if another instance is already running.
357     string strErrors;
358     if (!fNoListen)
359     {
360         if (!BindListenPort(strErrors))
361         {
362             wxMessageBox(strErrors, "Bitcoin");
363             return false;
364         }
365     }
366
367     //
368     // Load data files
369     //
370     if (fDaemon)
371         fprintf(stdout, "bitcoin server starting\n");
372     strErrors = "";
373     int64 nStart;
374
375     InitMessage("Loading addresses...");
376     printf("Loading addresses...\n");
377     nStart = GetTimeMillis();
378     if (!LoadAddresses())
379         strErrors += _("Error loading addr.dat      \n");
380     printf(" addresses   %15"PRI64d"ms\n", GetTimeMillis() - nStart);
381
382     InitMessage("Loading block index...");
383     printf("Loading block index...\n");
384     nStart = GetTimeMillis();
385     if (!LoadBlockIndex())
386         strErrors += _("Error loading blkindex.dat      \n");
387     printf(" block index %15"PRI64d"ms\n", GetTimeMillis() - nStart);
388
389     InitMessage("Loading wallet...");
390     printf("Loading wallet...\n");
391     nStart = GetTimeMillis();
392     bool fFirstRun;
393     pwalletMain = new CWallet("wallet.dat");
394     int nLoadWalletRet = pwalletMain->LoadWallet(fFirstRun);
395     if (nLoadWalletRet != DB_LOAD_OK)
396     {
397         if (nLoadWalletRet == DB_CORRUPT)
398             strErrors += _("Error loading wallet.dat: Wallet corrupted      \n");
399         else if (nLoadWalletRet == DB_TOO_NEW)
400             strErrors += _("Error loading wallet.dat: Wallet requires newer version of Bitcoin      \n");
401         else
402             strErrors += _("Error loading wallet.dat      \n");
403     }
404     printf(" wallet      %15"PRI64d"ms\n", GetTimeMillis() - nStart);
405
406     RegisterWallet(pwalletMain);
407
408     CBlockIndex *pindexRescan = pindexBest;
409     if (GetBoolArg("-rescan"))
410         pindexRescan = pindexGenesisBlock;
411     else
412     {
413         CWalletDB walletdb("wallet.dat");
414         CBlockLocator locator;
415         if (walletdb.ReadBestBlock(locator))
416             pindexRescan = locator.GetBlockIndex();
417     }
418     if (pindexBest != pindexRescan)
419     {
420         InitMessage("Rescanning...");
421         printf("Rescanning last %i blocks (from block %i)...\n", pindexBest->nHeight - pindexRescan->nHeight, pindexRescan->nHeight);
422         nStart = GetTimeMillis();
423         pwalletMain->ScanForWalletTransactions(pindexRescan, true);
424         printf(" rescan      %15"PRI64d"ms\n", GetTimeMillis() - nStart);
425     }
426
427     InitMessage("Done loading");
428     printf("Done loading\n");
429
430         //// debug print
431         printf("mapBlockIndex.size() = %d\n",   mapBlockIndex.size());
432         printf("nBestHeight = %d\n",            nBestHeight);
433         printf("setKeyPool.size() = %d\n",      pwalletMain->setKeyPool.size());
434         printf("mapWallet.size() = %d\n",       pwalletMain->mapWallet.size());
435         printf("mapAddressBook.size() = %d\n",  pwalletMain->mapAddressBook.size());
436
437     if (!strErrors.empty())
438     {
439         wxMessageBox(strErrors, "Bitcoin", wxOK | wxICON_ERROR);
440         return false;
441     }
442
443     // Add wallet transactions that aren't already in a block to mapTransactions
444     pwalletMain->ReacceptWalletTransactions();
445
446     //
447     // Parameters
448     //
449     if (GetBoolArg("-printblockindex") || GetBoolArg("-printblocktree"))
450     {
451         PrintBlockTree();
452         return false;
453     }
454
455     if (mapArgs.count("-timeout"))
456     {
457         int nNewTimeout = GetArg("-timeout", 5000);
458         if (nNewTimeout > 0 && nNewTimeout < 600000)
459             nConnectTimeout = nNewTimeout;
460     }
461
462     if (mapArgs.count("-printblock"))
463     {
464         string strMatch = mapArgs["-printblock"];
465         int nFound = 0;
466         for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
467         {
468             uint256 hash = (*mi).first;
469             if (strncmp(hash.ToString().c_str(), strMatch.c_str(), strMatch.size()) == 0)
470             {
471                 CBlockIndex* pindex = (*mi).second;
472                 CBlock block;
473                 block.ReadFromDisk(pindex);
474                 block.BuildMerkleTree();
475                 block.print();
476                 printf("\n");
477                 nFound++;
478             }
479         }
480         if (nFound == 0)
481             printf("No blocks matching %s were found\n", strMatch.c_str());
482         return false;
483     }
484
485     fGenerateBitcoins = GetBoolArg("-gen");
486
487     if (mapArgs.count("-proxy"))
488     {
489         fUseProxy = true;
490         addrProxy = CAddress(mapArgs["-proxy"]);
491         if (!addrProxy.IsValid())
492         {
493             wxMessageBox(_("Invalid -proxy address"), "Bitcoin");
494             return false;
495         }
496     }
497
498     if (mapArgs.count("-addnode"))
499     {
500         BOOST_FOREACH(string strAddr, mapMultiArgs["-addnode"])
501         {
502             CAddress addr(strAddr, fAllowDNS);
503             addr.nTime = 0; // so it won't relay unless successfully connected
504             if (addr.IsValid())
505                 AddAddress(addr);
506         }
507     }
508
509     if (GetBoolArg("-nodnsseed"))
510         printf("DNS seeding disabled\n");
511     else
512         DNSAddressSeed();
513
514     if (mapArgs.count("-paytxfee"))
515     {
516         if (!ParseMoney(mapArgs["-paytxfee"], nTransactionFee))
517         {
518             wxMessageBox(_("Invalid amount for -paytxfee=<amount>"), "Bitcoin");
519             return false;
520         }
521         if (nTransactionFee > 0.25 * COIN)
522             wxMessageBox(_("Warning: -paytxfee is set very high.  This is the transaction fee you will pay if you send a transaction."), "Bitcoin", wxOK | wxICON_EXCLAMATION);
523     }
524
525     if (fHaveUPnP)
526     {
527 #if USE_UPNP
528     if (GetBoolArg("-noupnp"))
529         fUseUPnP = false;
530 #else
531     if (GetBoolArg("-upnp"))
532         fUseUPnP = true;
533 #endif
534     }
535
536     //
537     // Create the main window and start the node
538     //
539 #ifdef GUI
540     if (!fDaemon)
541         CreateMainWindow();
542 #endif
543
544     if (!CheckDiskSpace())
545         return false;
546
547     RandAddSeedPerfmon();
548
549     if (!CreateThread(StartNode, NULL))
550         wxMessageBox("Error: CreateThread(StartNode) failed", "Bitcoin");
551
552     if (fServer)
553         CreateThread(ThreadRPCServer, NULL);
554
555 #if defined(__WXMSW__) && defined(GUI)
556     if (fFirstRun)
557         SetStartOnSystemStartup(true);
558 #endif
559
560 #if !defined(QT_GUI) && !defined(GUI)
561     while (1)
562         Sleep(5000);
563 #endif
564
565     return true;
566 }