Obsolete keypool and make sure database removes log files on shutdown.
[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 "rpc.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 = false;
38     TRY_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, false);
49         StopNode();
50         DBFlush(true, 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 #ifndef 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 #ifndef GUI
244     fServer = true;
245 #endif
246
247     fPrintToConsole = GetBoolArg("-printtoconsole");
248     fPrintToDebugger = GetBoolArg("-printtodebugger");
249
250     fTestNet = GetBoolArg("-testnet");
251     bool fTOR = (fUseProxy && addrProxy.port == htons(9050));
252     fNoListen = GetBoolArg("-nolisten") || fTOR;
253     fLogTimestamps = GetBoolArg("-logtimestamps");
254
255     for (int i = 1; i < argc; i++)
256         if (!IsSwitchChar(argv[i][0]))
257             fCommandLine = true;
258
259     if (fCommandLine)
260     {
261         int ret = CommandLineRPC(argc, argv);
262         exit(ret);
263     }
264
265 #ifndef __WXMSW__
266     if (fDaemon)
267     {
268         // Daemonize
269         pid_t pid = fork();
270         if (pid < 0)
271         {
272             fprintf(stderr, "Error: fork() returned %d errno %d\n", pid, errno);
273             return false;
274         }
275         if (pid > 0)
276         {
277             CreatePidFile(GetPidFile(), pid);
278             return true;
279         }
280
281         pid_t sid = setsid();
282         if (sid < 0)
283             fprintf(stderr, "Error: setsid() returned %d errno %d\n", sid, errno);
284     }
285 #endif
286
287     if (!fDebug && !pszSetDataDir[0])
288         ShrinkDebugFile();
289     printf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
290     printf("Bitcoin version %s\n", FormatFullVersion().c_str());
291 #ifdef GUI
292     printf("OS version %s\n", ((string)wxGetOsDescription()).c_str());
293     printf("System default language is %d %s\n", g_locale.GetSystemLanguage(), ((string)g_locale.GetSysName()).c_str());
294     printf("Language file %s (%s)\n", (string("locale/") + (string)g_locale.GetCanonicalName() + "/LC_MESSAGES/bitcoin.mo").c_str(), ((string)g_locale.GetLocale()).c_str());
295 #endif
296     printf("Default data directory %s\n", GetDefaultDataDir().c_str());
297
298     if (GetBoolArg("-loadblockindextest"))
299     {
300         CTxDB txdb("r");
301         txdb.LoadBlockIndex();
302         PrintBlockTree();
303         return false;
304     }
305
306     //
307     // Limit to single instance per user
308     // Required to protect the database files if we're going to keep deleting log.*
309     //
310 #if defined(__WXMSW__) && defined(GUI)
311     // wxSingleInstanceChecker doesn't work on Linux
312     wxString strMutexName = wxString("bitcoin_running.") + getenv("HOMEPATH");
313     for (int i = 0; i < strMutexName.size(); i++)
314         if (!isalnum(strMutexName[i]))
315             strMutexName[i] = '.';
316     wxSingleInstanceChecker* psingleinstancechecker = new wxSingleInstanceChecker(strMutexName);
317     if (psingleinstancechecker->IsAnotherRunning())
318     {
319         printf("Existing instance found\n");
320         unsigned int nStart = GetTime();
321         loop
322         {
323             // Show the previous instance and exit
324             HWND hwndPrev = FindWindowA("wxWindowClassNR", "Bitcoin");
325             if (hwndPrev)
326             {
327                 if (IsIconic(hwndPrev))
328                     ShowWindow(hwndPrev, SW_RESTORE);
329                 SetForegroundWindow(hwndPrev);
330                 return false;
331             }
332
333             if (GetTime() > nStart + 60)
334                 return false;
335
336             // Resume this instance if the other exits
337             delete psingleinstancechecker;
338             Sleep(1000);
339             psingleinstancechecker = new wxSingleInstanceChecker(strMutexName);
340             if (!psingleinstancechecker->IsAnotherRunning())
341                 break;
342         }
343     }
344 #endif
345
346     // Make sure only a single bitcoin process is using the data directory.
347     string strLockFile = GetDataDir() + "/.lock";
348     FILE* file = fopen(strLockFile.c_str(), "a"); // empty lock file; created if it doesn't exist.
349     if (file) fclose(file);
350     static boost::interprocess::file_lock lock(strLockFile.c_str());
351     if (!lock.try_lock())
352     {
353         wxMessageBox(strprintf(_("Cannot obtain a lock on data directory %s.  Bitcoin is probably already running."), GetDataDir().c_str()), "Bitcoin");
354         return false;
355     }
356
357     // Bind to the port early so we can tell if another instance is already running.
358     string strErrors;
359     if (!fNoListen)
360     {
361         if (!BindListenPort(strErrors))
362         {
363             wxMessageBox(strErrors, "Bitcoin");
364             return false;
365         }
366     }
367
368     //
369     // Load data files
370     //
371     if (fDaemon)
372         fprintf(stdout, "bitcoin server starting\n");
373     strErrors = "";
374     int64 nStart;
375
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     printf("Loading block index...\n");
383     nStart = GetTimeMillis();
384     if (!LoadBlockIndex())
385         strErrors += _("Error loading blkindex.dat      \n");
386     printf(" block index %15"PRI64d"ms\n", GetTimeMillis() - nStart);
387
388     printf("Loading wallet...\n");
389     nStart = GetTimeMillis();
390     bool fFirstRun;
391     pwalletMain = new CWallet("wallet.dat");
392     int nLoadWalletRet = pwalletMain->LoadWallet(fFirstRun);
393     if (nLoadWalletRet != DB_LOAD_OK)
394     {
395         if (nLoadWalletRet == DB_CORRUPT)
396             strErrors += _("Error loading wallet.dat: Wallet corrupted      \n");
397         else if (nLoadWalletRet == DB_TOO_NEW)
398             strErrors += _("Error loading wallet.dat: Wallet requires newer version of Bitcoin      \n");
399         else if (nLoadWalletRet == DB_NEED_REWRITE)
400         {
401             strErrors += _("Wallet needed to be rewritten: restart Bitcoin to complete    \n");
402             wxMessageBox(strErrors, "Bitcoin", wxOK | wxICON_ERROR);
403             return false;
404         }
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         printf("Rescanning last %i blocks (from block %i)...\n", pindexBest->nHeight - pindexRescan->nHeight, pindexRescan->nHeight);
425         nStart = GetTimeMillis();
426         pwalletMain->ScanForWalletTransactions(pindexRescan, true);
427         printf(" rescan      %15"PRI64d"ms\n", GetTimeMillis() - nStart);
428     }
429
430     printf("Done loading\n");
431
432         //// debug print
433         printf("mapBlockIndex.size() = %d\n",   mapBlockIndex.size());
434         printf("nBestHeight = %d\n",            nBestHeight);
435         printf("setKeyPool.size() = %d\n",      pwalletMain->setKeyPool.size());
436         printf("mapWallet.size() = %d\n",       pwalletMain->mapWallet.size());
437         printf("mapAddressBook.size() = %d\n",  pwalletMain->mapAddressBook.size());
438
439     if (!strErrors.empty())
440     {
441         wxMessageBox(strErrors, "Bitcoin", wxOK | wxICON_ERROR);
442         return false;
443     }
444
445     // Add wallet transactions that aren't already in a block to mapTransactions
446     pwalletMain->ReacceptWalletTransactions();
447
448     //
449     // Parameters
450     //
451     if (GetBoolArg("-printblockindex") || GetBoolArg("-printblocktree"))
452     {
453         PrintBlockTree();
454         return false;
455     }
456
457     if (mapArgs.count("-timeout"))
458     {
459         int nNewTimeout = GetArg("-timeout", 5000);
460         if (nNewTimeout > 0 && nNewTimeout < 600000)
461             nConnectTimeout = nNewTimeout;
462     }
463
464     if (mapArgs.count("-printblock"))
465     {
466         string strMatch = mapArgs["-printblock"];
467         int nFound = 0;
468         for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
469         {
470             uint256 hash = (*mi).first;
471             if (strncmp(hash.ToString().c_str(), strMatch.c_str(), strMatch.size()) == 0)
472             {
473                 CBlockIndex* pindex = (*mi).second;
474                 CBlock block;
475                 block.ReadFromDisk(pindex);
476                 block.BuildMerkleTree();
477                 block.print();
478                 printf("\n");
479                 nFound++;
480             }
481         }
482         if (nFound == 0)
483             printf("No blocks matching %s were found\n", strMatch.c_str());
484         return false;
485     }
486
487     fGenerateBitcoins = GetBoolArg("-gen");
488
489     if (mapArgs.count("-proxy"))
490     {
491         fUseProxy = true;
492         addrProxy = CAddress(mapArgs["-proxy"]);
493         if (!addrProxy.IsValid())
494         {
495             wxMessageBox(_("Invalid -proxy address"), "Bitcoin");
496             return false;
497         }
498     }
499
500     if (mapArgs.count("-addnode"))
501     {
502         BOOST_FOREACH(string strAddr, mapMultiArgs["-addnode"])
503         {
504             CAddress addr(strAddr, fAllowDNS);
505             addr.nTime = 0; // so it won't relay unless successfully connected
506             if (addr.IsValid())
507                 AddAddress(addr);
508         }
509     }
510
511     if (GetBoolArg("-nodnsseed"))
512         printf("DNS seeding disabled\n");
513     else
514         DNSAddressSeed();
515
516     if (mapArgs.count("-paytxfee"))
517     {
518         if (!ParseMoney(mapArgs["-paytxfee"], nTransactionFee))
519         {
520             wxMessageBox(_("Invalid amount for -paytxfee=<amount>"), "Bitcoin");
521             return false;
522         }
523         if (nTransactionFee > 0.25 * COIN)
524             wxMessageBox(_("Warning: -paytxfee is set very high.  This is the transaction fee you will pay if you send a transaction."), "Bitcoin", wxOK | wxICON_EXCLAMATION);
525     }
526
527     if (fHaveUPnP)
528     {
529 #if USE_UPNP
530     if (GetBoolArg("-noupnp"))
531         fUseUPnP = false;
532 #else
533     if (GetBoolArg("-upnp"))
534         fUseUPnP = true;
535 #endif
536     }
537
538     //
539     // Create the main window and start the node
540     //
541 #ifdef GUI
542     if (!fDaemon)
543         CreateMainWindow();
544 #endif
545
546     if (!CheckDiskSpace())
547         return false;
548
549     RandAddSeedPerfmon();
550
551     if (!CreateThread(StartNode, NULL))
552         wxMessageBox("Error: CreateThread(StartNode) failed", "Bitcoin");
553
554     if (fServer)
555         CreateThread(ThreadRPCServer, NULL);
556
557 #if defined(__WXMSW__) && defined(GUI)
558     if (fFirstRun)
559         SetStartOnSystemStartup(true);
560 #endif
561
562 #ifndef GUI
563     while (1)
564         Sleep(5000);
565 #endif
566
567     return true;
568 }