Remove USE_SSL #define
[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 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/filesystem/convenience.hpp>
14 #include <boost/interprocess/sync/file_lock.hpp>
15
16 #ifdef WIN32
17 #define strncasecmp strnicmp
18 #endif
19
20 using namespace std;
21 using namespace boost;
22
23 CWallet* pwalletMain;
24
25 //////////////////////////////////////////////////////////////////////////////
26 //
27 // Shutdown
28 //
29
30 void ExitTimeout(void* parg)
31 {
32 #ifdef WIN32
33     Sleep(5000);
34     ExitProcess(0);
35 #endif
36 }
37
38 void Shutdown(void* parg)
39 {
40     static CCriticalSection cs_Shutdown;
41     static bool fTaken;
42     bool fFirstThread = false;
43     TRY_CRITICAL_BLOCK(cs_Shutdown)
44     {
45         fFirstThread = !fTaken;
46         fTaken = true;
47     }
48     static bool fExit;
49     if (fFirstThread)
50     {
51         fShutdown = true;
52         nTransactionsUpdated++;
53         DBFlush(false);
54         StopNode();
55         DBFlush(true);
56         boost::filesystem::remove(GetPidFile());
57         UnregisterWallet(pwalletMain);
58         delete pwalletMain;
59         CreateThread(ExitTimeout, NULL);
60         Sleep(50);
61         printf("Bitcoin exiting\n\n");
62         fExit = true;
63         exit(0);
64     }
65     else
66     {
67         while (!fExit)
68             Sleep(500);
69         Sleep(100);
70         ExitThread(0);
71     }
72 }
73
74 void HandleSIGTERM(int)
75 {
76     fRequestShutdown = true;
77 }
78
79
80
81
82
83
84 //////////////////////////////////////////////////////////////////////////////
85 //
86 // Start
87 //
88 #if !defined(QT_GUI)
89 int main(int argc, char* argv[])
90 {
91     bool fRet = false;
92     fRet = AppInit(argc, argv);
93
94     if (fRet && fDaemon)
95         return 0;
96
97     return 1;
98 }
99 #endif
100
101 bool AppInit(int argc, char* argv[])
102 {
103     bool fRet = false;
104     try
105     {
106         fRet = AppInit2(argc, argv);
107     }
108     catch (std::exception& e) {
109         PrintException(&e, "AppInit()");
110     } catch (...) {
111         PrintException(NULL, "AppInit()");
112     }
113     if (!fRet)
114         Shutdown(NULL);
115     return fRet;
116 }
117
118 bool AppInit2(int argc, char* argv[])
119 {
120 #ifdef _MSC_VER
121     // Turn off microsoft heap dump noise
122     _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
123     _CrtSetReportFile(_CRT_WARN, CreateFileA("NUL", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0));
124 #endif
125 #if _MSC_VER >= 1400
126     // Disable confusing "helpful" text message on abort, ctrl-c
127     _set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT);
128 #endif
129 #ifndef WIN32
130     umask(077);
131 #endif
132 #ifndef WIN32
133     // Clean shutdown on SIGTERM
134     struct sigaction sa;
135     sa.sa_handler = HandleSIGTERM;
136     sigemptyset(&sa.sa_mask);
137     sa.sa_flags = 0;
138     sigaction(SIGTERM, &sa, NULL);
139     sigaction(SIGINT, &sa, NULL);
140     sigaction(SIGHUP, &sa, NULL);
141 #endif
142
143     //
144     // Parameters
145     //
146     // If Qt is used, parameters/bitcoin.conf are parsed in qt/bitcoin.cpp's main()
147 #if !defined(QT_GUI)
148     ParseParameters(argc, argv);
149     if (!ReadConfigFile(mapArgs, mapMultiArgs))
150     {
151         fprintf(stderr, "Error: Specified directory does not exist\n");
152         Shutdown(NULL);
153     }
154 #endif
155
156     if (mapArgs.count("-?") || mapArgs.count("--help"))
157     {
158         string strUsage = string() +
159           _("Bitcoin version") + " " + FormatFullVersion() + "\n\n" +
160           _("Usage:") + "\t\t\t\t\t\t\t\t\t\t\n" +
161             "  bitcoind [options]                   \t  " + "\n" +
162             "  bitcoind [options] <command> [params]\t  " + _("Send command to -server or bitcoind") + "\n" +
163             "  bitcoind [options] help              \t\t  " + _("List commands") + "\n" +
164             "  bitcoind [options] help <command>    \t\t  " + _("Get help for a command") + "\n" +
165           _("Options:") + "\n" +
166             "  -conf=<file>     \t\t  " + _("Specify configuration file (default: bitcoin.conf)") + "\n" +
167             "  -pid=<file>      \t\t  " + _("Specify pid file (default: bitcoind.pid)") + "\n" +
168             "  -gen             \t\t  " + _("Generate coins") + "\n" +
169             "  -gen=0           \t\t  " + _("Don't generate coins") + "\n" +
170             "  -min             \t\t  " + _("Start minimized") + "\n" +
171             "  -splash          \t\t  " + _("Show splash screen on startup (default: 1)") + "\n" +
172             "  -datadir=<dir>   \t\t  " + _("Specify data directory") + "\n" +
173             "  -dbcache=<n>     \t\t  " + _("Set database cache size in megabytes (default: 25)") + "\n" +
174             "  -timeout=<n>     \t  "   + _("Specify connection timeout (in milliseconds)") + "\n" +
175             "  -proxy=<ip:port> \t  "   + _("Connect through socks4 proxy") + "\n" +
176             "  -dns             \t  "   + _("Allow DNS lookups for addnode and connect") + "\n" +
177             "  -port=<port>     \t\t  " + _("Listen for connections on <port> (default: 8333 or testnet: 18333)") + "\n" +
178             "  -maxconnections=<n>\t  " + _("Maintain at most <n> connections to peers (default: 125)") + "\n" +
179             "  -addnode=<ip>    \t  "   + _("Add a node to connect to and attempt to keep the connection open") + "\n" +
180             "  -connect=<ip>    \t\t  " + _("Connect only to the specified node") + "\n" +
181             "  -irc             \t  "   + _("Find peers using internet relay chat (default: 0)") + "\n" +
182             "  -listen          \t  "   + _("Accept connections from outside (default: 1)") + "\n" +
183 #ifdef QT_GUI
184             "  -lang=<lang>     \t\t  " + _("Set language, for example \"de_DE\" (default: system locale)") + "\n" +
185 #endif
186             "  -dnsseed         \t  "   + _("Find peers using DNS lookup (default: 1)") + "\n" +
187             "  -banscore=<n>    \t  "   + _("Threshold for disconnecting misbehaving peers (default: 100)") + "\n" +
188             "  -bantime=<n>     \t  "   + _("Number of seconds to keep misbehaving peers from reconnecting (default: 86400)") + "\n" +
189             "  -maxreceivebuffer=<n>\t  " + _("Maximum per-connection receive buffer, <n>*1000 bytes (default: 10000)") + "\n" +
190             "  -maxsendbuffer=<n>\t  "   + _("Maximum per-connection send buffer, <n>*1000 bytes (default: 10000)") + "\n" +
191 #ifdef USE_UPNP
192 #if USE_UPNP
193             "  -upnp            \t  "   + _("Use Universal Plug and Play to map the listening port (default: 1)") + "\n" +
194 #else
195             "  -upnp            \t  "   + _("Use Universal Plug and Play to map the listening port (default: 0)") + "\n" +
196 #endif
197 #endif
198             "  -paytxfee=<amt>  \t  "   + _("Fee per KB to add to transactions you send") + "\n" +
199 #ifdef QT_GUI
200             "  -server          \t\t  " + _("Accept command line and JSON-RPC commands") + "\n" +
201 #endif
202 #if !defined(WIN32) && !defined(QT_GUI)
203             "  -daemon          \t\t  " + _("Run in the background as a daemon and accept commands") + "\n" +
204 #endif
205             "  -testnet         \t\t  " + _("Use the test network") + "\n" +
206             "  -debug           \t\t  " + _("Output extra debugging information") + "\n" +
207             "  -logtimestamps   \t  "   + _("Prepend debug output with timestamp") + "\n" +
208             "  -printtoconsole  \t  "   + _("Send trace/debug info to console instead of debug.log file") + "\n" +
209 #ifdef WIN32
210             "  -printtodebugger \t  "   + _("Send trace/debug info to debugger") + "\n" +
211 #endif
212             "  -rpcuser=<user>  \t  "   + _("Username for JSON-RPC connections") + "\n" +
213             "  -rpcpassword=<pw>\t  "   + _("Password for JSON-RPC connections") + "\n" +
214             "  -rpcport=<port>  \t\t  " + _("Listen for JSON-RPC connections on <port> (default: 8332)") + "\n" +
215             "  -rpcallowip=<ip> \t\t  " + _("Allow JSON-RPC connections from specified IP address") + "\n" +
216             "  -rpcconnect=<ip> \t  "   + _("Send commands to node running on <ip> (default: 127.0.0.1)") + "\n" +
217             "  -blocknotify=<cmd> "     + _("Execute command when the best block changes (%s in cmd is replaced by block hash)") + "\n" +
218             "  -upgradewallet   \t  "   + _("Upgrade wallet to latest format") + "\n" +
219             "  -keypool=<n>     \t  "   + _("Set key pool size to <n> (default: 100)") + "\n" +
220             "  -rescan          \t  "   + _("Rescan the block chain for missing wallet transactions") + "\n" +
221             "  -checkblocks=<n> \t\t  " + _("How many blocks to check at startup (default: 2500, 0 = all)") + "\n" +
222             "  -checklevel=<n>  \t\t  " + _("How thorough the block verification is (0-6, default: 1)") + "\n";
223
224         strUsage += string() +
225             _("\nSSL options: (see the Bitcoin Wiki for SSL setup instructions)") + "\n" +
226             "  -rpcssl                                \t  " + _("Use OpenSSL (https) for JSON-RPC connections") + "\n" +
227             "  -rpcsslcertificatechainfile=<file.cert>\t  " + _("Server certificate file (default: server.cert)") + "\n" +
228             "  -rpcsslprivatekeyfile=<file.pem>       \t  " + _("Server private key (default: server.pem)") + "\n" +
229             "  -rpcsslciphers=<ciphers>               \t  " + _("Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH)") + "\n";
230
231         strUsage += string() +
232             "  -?               \t\t  " + _("This help message") + "\n";
233
234         // Remove tabs
235         strUsage.erase(std::remove(strUsage.begin(), strUsage.end(), '\t'), strUsage.end());
236 #if defined(QT_GUI) && defined(WIN32)
237         // On windows, show a message box, as there is no stderr
238         ThreadSafeMessageBox(strUsage, _("Usage"), wxOK | wxMODAL);
239 #else
240         fprintf(stderr, "%s", strUsage.c_str());
241 #endif
242         return false;
243     }
244
245     fTestNet = GetBoolArg("-testnet");
246     if (fTestNet)
247     {
248         SoftSetBoolArg("-irc", true);
249     }
250
251     fDebug = GetBoolArg("-debug");
252
253 #if !defined(WIN32) && !defined(QT_GUI)
254     fDaemon = GetBoolArg("-daemon");
255 #else
256     fDaemon = false;
257 #endif
258
259     if (fDaemon)
260         fServer = true;
261     else
262         fServer = GetBoolArg("-server");
263
264     /* force fServer when running without GUI */
265 #if !defined(QT_GUI)
266     fServer = true;
267 #endif
268     fPrintToConsole = GetBoolArg("-printtoconsole");
269     fPrintToDebugger = GetBoolArg("-printtodebugger");
270     fLogTimestamps = GetBoolArg("-logtimestamps");
271
272 #ifndef QT_GUI
273     for (int i = 1; i < argc; i++)
274         if (!IsSwitchChar(argv[i][0]) && !(strlen(argv[i]) > 7 && strncasecmp(argv[i], "bitcoin:", 8) == 0))
275             fCommandLine = true;
276
277     if (fCommandLine)
278     {
279         int ret = CommandLineRPC(argc, argv);
280         exit(ret);
281     }
282 #endif
283
284 #if !defined(WIN32) && !defined(QT_GUI)
285     if (fDaemon)
286     {
287         // Daemonize
288         pid_t pid = fork();
289         if (pid < 0)
290         {
291             fprintf(stderr, "Error: fork() returned %d errno %d\n", pid, errno);
292             return false;
293         }
294         if (pid > 0)
295         {
296             CreatePidFile(GetPidFile(), pid);
297             return true;
298         }
299
300         pid_t sid = setsid();
301         if (sid < 0)
302             fprintf(stderr, "Error: setsid() returned %d errno %d\n", sid, errno);
303     }
304 #endif
305
306     if (!fDebug && !pszSetDataDir[0])
307         ShrinkDebugFile();
308     printf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
309     printf("Bitcoin version %s\n", FormatFullVersion().c_str());
310     printf("Default data directory %s\n", GetDefaultDataDir().c_str());
311
312     if (GetBoolArg("-loadblockindextest"))
313     {
314         CTxDB txdb("r");
315         txdb.LoadBlockIndex();
316         PrintBlockTree();
317         return false;
318     }
319
320     // Make sure only a single bitcoin process is using the data directory.
321     string strLockFile = GetDataDir() + "/.lock";
322     FILE* file = fopen(strLockFile.c_str(), "a"); // empty lock file; created if it doesn't exist.
323     if (file) fclose(file);
324     static boost::interprocess::file_lock lock(strLockFile.c_str());
325     if (!lock.try_lock())
326     {
327         ThreadSafeMessageBox(strprintf(_("Cannot obtain a lock on data directory %s.  Bitcoin is probably already running."), GetDataDir().c_str()), _("Bitcoin"), wxOK|wxMODAL);
328         return false;
329     }
330
331     std::ostringstream strErrors;
332     //
333     // Load data files
334     //
335     if (fDaemon)
336         fprintf(stdout, "bitcoin server starting\n");
337     int64 nStart;
338
339     InitMessage(_("Loading addresses..."));
340     printf("Loading addresses...\n");
341     nStart = GetTimeMillis();
342     if (!LoadAddresses())
343         strErrors << _("Error loading addr.dat") << "\n";
344     printf(" addresses   %15"PRI64d"ms\n", GetTimeMillis() - nStart);
345
346     InitMessage(_("Loading block index..."));
347     printf("Loading block index...\n");
348     nStart = GetTimeMillis();
349     if (!LoadBlockIndex())
350         strErrors << _("Error loading blkindex.dat") << "\n";
351     printf(" block index %15"PRI64d"ms\n", GetTimeMillis() - nStart);
352
353     InitMessage(_("Loading wallet..."));
354     printf("Loading wallet...\n");
355     nStart = GetTimeMillis();
356     bool fFirstRun;
357     pwalletMain = new CWallet("wallet.dat");
358     int nLoadWalletRet = pwalletMain->LoadWallet(fFirstRun);
359     if (nLoadWalletRet != DB_LOAD_OK)
360     {
361         if (nLoadWalletRet == DB_CORRUPT)
362             strErrors << _("Error loading wallet.dat: Wallet corrupted") << "\n";
363         else if (nLoadWalletRet == DB_TOO_NEW)
364             strErrors << _("Error loading wallet.dat: Wallet requires newer version of Bitcoin") << "\n";
365         else if (nLoadWalletRet == DB_NEED_REWRITE)
366         {
367             strErrors << _("Wallet needed to be rewritten: restart Bitcoin to complete") << "\n";
368             printf("%s", strErrors.str().c_str());
369             ThreadSafeMessageBox(strErrors.str(), _("Bitcoin"), wxOK | wxICON_ERROR | wxMODAL);
370             return false;
371         }
372         else
373             strErrors << _("Error loading wallet.dat") << "\n";
374     }
375
376     if (GetBoolArg("-upgradewallet", fFirstRun))
377     {
378         int nMaxVersion = GetArg("-upgradewallet", 0);
379         if (nMaxVersion == 0) // the -walletupgrade without argument case
380         {
381             printf("Performing wallet upgrade to %i\n", FEATURE_LATEST);
382             nMaxVersion = CLIENT_VERSION;
383             pwalletMain->SetMinVersion(FEATURE_LATEST); // permanently upgrade the wallet immediately
384         }
385         else
386             printf("Allowing wallet upgrade up to %i\n", nMaxVersion);
387         if (nMaxVersion < pwalletMain->GetVersion())
388             strErrors << _("Cannot downgrade wallet") << "\n";
389         pwalletMain->SetMaxVersion(nMaxVersion);
390     }
391
392     if (fFirstRun)
393     {
394         // Create new keyUser and set as default key
395         RandAddSeedPerfmon();
396
397         std::vector<unsigned char> newDefaultKey;
398         if (!pwalletMain->GetKeyFromPool(newDefaultKey, false))
399             strErrors << _("Cannot initialize keypool") << "\n";
400         pwalletMain->SetDefaultKey(newDefaultKey);
401         if (!pwalletMain->SetAddressBookName(CBitcoinAddress(pwalletMain->vchDefaultKey), ""))
402             strErrors << _("Cannot write default address") << "\n";
403     }
404
405     printf("%s", strErrors.str().c_str());
406     printf(" wallet      %15"PRI64d"ms\n", GetTimeMillis() - nStart);
407
408     RegisterWallet(pwalletMain);
409
410     CBlockIndex *pindexRescan = pindexBest;
411     if (GetBoolArg("-rescan"))
412         pindexRescan = pindexGenesisBlock;
413     else
414     {
415         CWalletDB walletdb("wallet.dat");
416         CBlockLocator locator;
417         if (walletdb.ReadBestBlock(locator))
418             pindexRescan = locator.GetBlockIndex();
419     }
420     if (pindexBest != pindexRescan)
421     {
422         InitMessage(_("Rescanning..."));
423         printf("Rescanning last %i blocks (from block %i)...\n", pindexBest->nHeight - pindexRescan->nHeight, pindexRescan->nHeight);
424         nStart = GetTimeMillis();
425         pwalletMain->ScanForWalletTransactions(pindexRescan, true);
426         printf(" rescan      %15"PRI64d"ms\n", GetTimeMillis() - nStart);
427     }
428
429     InitMessage(_("Done loading"));
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.str().empty())
440     {
441         ThreadSafeMessageBox(strErrors.str(), _("Bitcoin"), wxOK | wxICON_ERROR | wxMODAL);
442         return false;
443     }
444
445     // Add wallet transactions that aren't already in a block to mapTransactions
446     pwalletMain->ReacceptWalletTransactions();
447
448     // Note: Bitcoin-QT stores several settings in the wallet, so we want
449     // to load the wallet BEFORE parsing command-line arguments, so
450     // the command-line/bitcoin.conf settings override GUI setting.
451
452     //
453     // Parameters
454     //
455     if (GetBoolArg("-printblockindex") || GetBoolArg("-printblocktree"))
456     {
457         PrintBlockTree();
458         return false;
459     }
460
461     if (mapArgs.count("-timeout"))
462     {
463         int nNewTimeout = GetArg("-timeout", 5000);
464         if (nNewTimeout > 0 && nNewTimeout < 600000)
465             nConnectTimeout = nNewTimeout;
466     }
467
468     if (mapArgs.count("-printblock"))
469     {
470         string strMatch = mapArgs["-printblock"];
471         int nFound = 0;
472         for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
473         {
474             uint256 hash = (*mi).first;
475             if (strncmp(hash.ToString().c_str(), strMatch.c_str(), strMatch.size()) == 0)
476             {
477                 CBlockIndex* pindex = (*mi).second;
478                 CBlock block;
479                 block.ReadFromDisk(pindex);
480                 block.BuildMerkleTree();
481                 block.print();
482                 printf("\n");
483                 nFound++;
484             }
485         }
486         if (nFound == 0)
487             printf("No blocks matching %s were found\n", strMatch.c_str());
488         return false;
489     }
490
491     if (mapArgs.count("-proxy"))
492     {
493         fUseProxy = true;
494         addrProxy = CService(mapArgs["-proxy"], 9050);
495         if (!addrProxy.IsValid())
496         {
497             ThreadSafeMessageBox(_("Invalid -proxy address"), _("Bitcoin"), wxOK | wxMODAL);
498             return false;
499         }
500     }
501
502     bool fTor = (fUseProxy && addrProxy.GetPort() == 9050);
503     if (fTor)
504     {
505         // Use SoftSetBoolArg here so user can override any of these if they wish.
506         // Note: the GetBoolArg() calls for all of these must happen later.
507         SoftSetBoolArg("-listen", false);
508         SoftSetBoolArg("-irc", false);
509         SoftSetBoolArg("-dnsseed", false);
510         SoftSetBoolArg("-upnp", false);
511         SoftSetBoolArg("-dns", false);
512     }
513
514     fAllowDNS = GetBoolArg("-dns");
515     fNoListen = !GetBoolArg("-listen", true);
516
517     // Continue to put "/P2SH/" in the coinbase to monitor
518     // BIP16 support.
519     // This can be removed eventually...
520     const char* pszP2SH = "/P2SH/";
521     COINBASE_FLAGS << std::vector<unsigned char>(pszP2SH, pszP2SH+strlen(pszP2SH));
522
523     if (!fNoListen)
524     {
525         std::string strError;
526         if (!BindListenPort(strError))
527         {
528             ThreadSafeMessageBox(strError, _("Bitcoin"), wxOK | wxMODAL);
529             return false;
530         }
531     }
532
533     if (mapArgs.count("-addnode"))
534     {
535         BOOST_FOREACH(string strAddr, mapMultiArgs["-addnode"])
536         {
537             CAddress addr(CService(strAddr, GetDefaultPort(), fAllowDNS));
538             addr.nTime = 0; // so it won't relay unless successfully connected
539             if (addr.IsValid())
540                 addrman.Add(addr, CNetAddr("127.0.0.1"));
541         }
542     }
543
544     if (mapArgs.count("-paytxfee"))
545     {
546         if (!ParseMoney(mapArgs["-paytxfee"], nTransactionFee))
547         {
548             ThreadSafeMessageBox(_("Invalid amount for -paytxfee=<amount>"), _("Bitcoin"), wxOK | wxMODAL);
549             return false;
550         }
551         if (nTransactionFee > 0.25 * COIN)
552             ThreadSafeMessageBox(_("Warning: -paytxfee is set very high.  This is the transaction fee you will pay if you send a transaction."), _("Bitcoin"), wxOK | wxICON_EXCLAMATION | wxMODAL);
553     }
554
555     //
556     // Start the node
557     //
558     if (!CheckDiskSpace())
559         return false;
560
561     RandAddSeedPerfmon();
562
563     if (!CreateThread(StartNode, NULL))
564         ThreadSafeMessageBox(_("Error: CreateThread(StartNode) failed"), _("Bitcoin"), wxOK | wxMODAL);
565
566     if (fServer)
567         CreateThread(ThreadRPCServer, NULL);
568
569 #ifdef QT_GUI
570     if(GetStartOnSystemStartup())
571         SetStartOnSystemStartup(true); // Remove startup links to bitcoin-wx
572 #endif
573
574 #if !defined(QT_GUI)
575     while (1)
576         Sleep(5000);
577 #endif
578
579     return true;
580 }
581
582 #ifdef WIN32
583 string StartupShortcutPath()
584 {
585     return MyGetSpecialFolderPath(CSIDL_STARTUP, true) + "\\Bitcoin.lnk";
586 }
587
588 bool GetStartOnSystemStartup()
589 {
590     return filesystem::exists(StartupShortcutPath().c_str());
591 }
592
593 bool SetStartOnSystemStartup(bool fAutoStart)
594 {
595     // If the shortcut exists already, remove it for updating
596     remove(StartupShortcutPath().c_str());
597
598     if (fAutoStart)
599     {
600         CoInitialize(NULL);
601
602         // Get a pointer to the IShellLink interface.
603         IShellLink* psl = NULL;
604         HRESULT hres = CoCreateInstance(CLSID_ShellLink, NULL,
605                                 CLSCTX_INPROC_SERVER, IID_IShellLink,
606                                 reinterpret_cast<void**>(&psl));
607
608         if (SUCCEEDED(hres))
609         {
610             // Get the current executable path
611             TCHAR pszExePath[MAX_PATH];
612             GetModuleFileName(NULL, pszExePath, sizeof(pszExePath));
613
614             TCHAR pszArgs[5] = TEXT("-min");
615
616             // Set the path to the shortcut target
617             psl->SetPath(pszExePath);
618             PathRemoveFileSpec(pszExePath);
619             psl->SetWorkingDirectory(pszExePath);
620             psl->SetShowCmd(SW_SHOWMINNOACTIVE);
621             psl->SetArguments(pszArgs);
622
623             // Query IShellLink for the IPersistFile interface for
624             // saving the shortcut in persistent storage.
625             IPersistFile* ppf = NULL;
626             hres = psl->QueryInterface(IID_IPersistFile,
627                                        reinterpret_cast<void**>(&ppf));
628             if (SUCCEEDED(hres))
629             {
630                 WCHAR pwsz[MAX_PATH];
631                 // Ensure that the string is ANSI.
632                 MultiByteToWideChar(CP_ACP, 0, StartupShortcutPath().c_str(), -1, pwsz, MAX_PATH);
633                 // Save the link by calling IPersistFile::Save.
634                 hres = ppf->Save(pwsz, TRUE);
635                 ppf->Release();
636                 psl->Release();
637                 CoUninitialize();
638                 return true;
639             }
640             psl->Release();
641         }
642         CoUninitialize();
643         return false;
644     }
645     return true;
646 }
647
648 #elif defined(LINUX)
649
650 // Follow the Desktop Application Autostart Spec:
651 //  http://standards.freedesktop.org/autostart-spec/autostart-spec-latest.html
652
653 boost::filesystem::path GetAutostartDir()
654 {
655     namespace fs = boost::filesystem;
656
657     char* pszConfigHome = getenv("XDG_CONFIG_HOME");
658     if (pszConfigHome) return fs::path(pszConfigHome) / fs::path("autostart");
659     char* pszHome = getenv("HOME");
660     if (pszHome) return fs::path(pszHome) / fs::path(".config/autostart");
661     return fs::path();
662 }
663
664 boost::filesystem::path GetAutostartFilePath()
665 {
666     return GetAutostartDir() / boost::filesystem::path("bitcoin.desktop");
667 }
668
669 bool GetStartOnSystemStartup()
670 {
671     boost::filesystem::ifstream optionFile(GetAutostartFilePath());
672     if (!optionFile.good())
673         return false;
674     // Scan through file for "Hidden=true":
675     string line;
676     while (!optionFile.eof())
677     {
678         getline(optionFile, line);
679         if (line.find("Hidden") != string::npos &&
680             line.find("true") != string::npos)
681             return false;
682     }
683     optionFile.close();
684
685     return true;
686 }
687
688 bool SetStartOnSystemStartup(bool fAutoStart)
689 {
690     if (!fAutoStart)
691     {
692 #if defined(BOOST_FILESYSTEM_VERSION) && BOOST_FILESYSTEM_VERSION >= 3
693         unlink(GetAutostartFilePath().string().c_str());
694 #else
695         unlink(GetAutostartFilePath().native_file_string().c_str());
696 #endif
697     }
698     else
699     {
700         char pszExePath[MAX_PATH+1];
701         memset(pszExePath, 0, sizeof(pszExePath));
702         if (readlink("/proc/self/exe", pszExePath, sizeof(pszExePath)-1) == -1)
703             return false;
704
705         boost::filesystem::create_directories(GetAutostartDir());
706
707         boost::filesystem::ofstream optionFile(GetAutostartFilePath(), ios_base::out|ios_base::trunc);
708         if (!optionFile.good())
709             return false;
710         // Write a bitcoin.desktop file to the autostart directory:
711         optionFile << "[Desktop Entry]\n";
712         optionFile << "Type=Application\n";
713         optionFile << "Name=Bitcoin\n";
714         optionFile << "Exec=" << pszExePath << " -min\n";
715         optionFile << "Terminal=false\n";
716         optionFile << "Hidden=false\n";
717         optionFile.close();
718     }
719     return true;
720 }
721 #else
722
723 // TODO: OSX startup stuff; see:
724 // http://developer.apple.com/mac/library/documentation/MacOSX/Conceptual/BPSystemStartup/Articles/CustomLogin.html
725
726 bool GetStartOnSystemStartup() { return false; }
727 bool SetStartOnSystemStartup(bool fAutoStart) { return false; }
728
729 #endif