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