Bitcoin Core  26.1.0
P2P Digital Currency
bitcoind.cpp
Go to the documentation of this file.
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2022 The Bitcoin Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 
6 #if defined(HAVE_CONFIG_H)
8 #endif
9 
10 #include <chainparams.h>
11 #include <clientversion.h>
12 #include <common/args.h>
13 #include <common/init.h>
14 #include <common/system.h>
15 #include <common/url.h>
16 #include <compat/compat.h>
17 #include <init.h>
18 #include <interfaces/chain.h>
19 #include <interfaces/init.h>
20 #include <node/context.h>
21 #include <node/interface_ui.h>
22 #include <noui.h>
23 #include <shutdown.h>
24 #include <util/check.h>
25 #include <util/exception.h>
26 #include <util/strencodings.h>
27 #include <util/syserror.h>
28 #include <util/threadnames.h>
29 #include <util/tokenpipe.h>
30 #include <util/translation.h>
31 
32 #include <any>
33 #include <functional>
34 #include <optional>
35 
36 using node::NodeContext;
37 
38 const std::function<std::string(const char*)> G_TRANSLATION_FUN = nullptr;
40 
41 #if HAVE_DECL_FORK
42 
53 int fork_daemon(bool nochdir, bool noclose, TokenPipeEnd& endpoint)
54 {
55  // communication pipe with child process
56  std::optional<TokenPipe> umbilical = TokenPipe::Make();
57  if (!umbilical) {
58  return -1; // pipe or pipe2 failed.
59  }
60 
61  int pid = fork();
62  if (pid < 0) {
63  return -1; // fork failed.
64  }
65  if (pid != 0) {
66  // Parent process gets read end, closes write end.
67  endpoint = umbilical->TakeReadEnd();
68  umbilical->TakeWriteEnd().Close();
69 
70  int status = endpoint.TokenRead();
71  if (status != 0) { // Something went wrong while setting up child process.
72  endpoint.Close();
73  return -1;
74  }
75 
76  return pid;
77  }
78  // Child process gets write end, closes read end.
79  endpoint = umbilical->TakeWriteEnd();
80  umbilical->TakeReadEnd().Close();
81 
82 #if HAVE_DECL_SETSID
83  if (setsid() < 0) {
84  exit(1); // setsid failed.
85  }
86 #endif
87 
88  if (!nochdir) {
89  if (chdir("/") != 0) {
90  exit(1); // chdir failed.
91  }
92  }
93  if (!noclose) {
94  // Open /dev/null, and clone it into STDIN, STDOUT and STDERR to detach
95  // from terminal.
96  int fd = open("/dev/null", O_RDWR);
97  if (fd >= 0) {
98  bool err = dup2(fd, STDIN_FILENO) < 0 || dup2(fd, STDOUT_FILENO) < 0 || dup2(fd, STDERR_FILENO) < 0;
99  // Don't close if fd<=2 to try to handle the case where the program was invoked without any file descriptors open.
100  if (fd > 2) close(fd);
101  if (err) {
102  exit(1); // dup2 failed.
103  }
104  } else {
105  exit(1); // open /dev/null failed.
106  }
107  }
108  endpoint.TokenWrite(0); // Success
109  return 0;
110 }
111 
112 #endif
113 
114 static bool ParseArgs(ArgsManager& args, int argc, char* argv[])
115 {
116  // If Qt is used, parameters/bitcoin.conf are parsed in qt/bitcoin.cpp's main()
118  std::string error;
119  if (!args.ParseParameters(argc, argv, error)) {
120  return InitError(Untranslated(strprintf("Error parsing command line arguments: %s", error)));
121  }
122 
123  if (auto error = common::InitConfig(args)) {
124  return InitError(error->message, error->details);
125  }
126 
127  // Error out when loose non-argument tokens are encountered on command line
128  for (int i = 1; i < argc; i++) {
129  if (!IsSwitchChar(argv[i][0])) {
130  return InitError(Untranslated(strprintf("Command line contains unexpected token '%s', see bitcoind -h for a list of options.", argv[i])));
131  }
132  }
133  return true;
134 }
135 
137 {
138  // Process help and version before taking care about datadir
139  if (HelpRequested(args) || args.IsArgSet("-version")) {
140  std::string strUsage = PACKAGE_NAME " version " + FormatFullVersion() + "\n";
141 
142  if (args.IsArgSet("-version")) {
143  strUsage += FormatParagraph(LicenseInfo());
144  } else {
145  strUsage += "\nUsage: bitcoind [options] Start " PACKAGE_NAME "\n"
146  "\n";
147  strUsage += args.GetHelpMessage();
148  }
149 
150  tfm::format(std::cout, "%s", strUsage);
151  return true;
152  }
153 
154  return false;
155 }
156 
157 static bool AppInit(NodeContext& node)
158 {
159  bool fRet = false;
160  ArgsManager& args = *Assert(node.args);
161 
162 #if HAVE_DECL_FORK
163  // Communication with parent after daemonizing. This is used for signalling in the following ways:
164  // - a boolean token is sent when the initialization process (all the Init* functions) have finished to indicate
165  // that the parent process can quit, and whether it was successful/unsuccessful.
166  // - an unexpected shutdown of the child process creates an unexpected end of stream at the parent
167  // end, which is interpreted as failure to start.
168  TokenPipeEnd daemon_ep;
169 #endif
170  std::any context{&node};
171  try
172  {
173  // -server defaults to true for bitcoind but not for the GUI so do this here
174  args.SoftSetBoolArg("-server", true);
175  // Set this early so that parameter interactions go to console
176  InitLogging(args);
178  if (!AppInitBasicSetup(args, node.exit_status)) {
179  // InitError will have been called with detailed error, which ends up on console
180  return false;
181  }
183  // InitError will have been called with detailed error, which ends up on console
184  return false;
185  }
186 
187  node.kernel = std::make_unique<kernel::Context>();
188  if (!AppInitSanityChecks(*node.kernel))
189  {
190  // InitError will have been called with detailed error, which ends up on console
191  return false;
192  }
193 
194  if (args.GetBoolArg("-daemon", DEFAULT_DAEMON) || args.GetBoolArg("-daemonwait", DEFAULT_DAEMONWAIT)) {
195 #if HAVE_DECL_FORK
196  tfm::format(std::cout, PACKAGE_NAME " starting\n");
197 
198  // Daemonize
199  switch (fork_daemon(1, 0, daemon_ep)) { // don't chdir (1), do close FDs (0)
200  case 0: // Child: continue.
201  // If -daemonwait is not enabled, immediately send a success token the parent.
202  if (!args.GetBoolArg("-daemonwait", DEFAULT_DAEMONWAIT)) {
203  daemon_ep.TokenWrite(1);
204  daemon_ep.Close();
205  }
206  break;
207  case -1: // Error happened.
208  return InitError(Untranslated(strprintf("fork_daemon() failed: %s", SysErrorString(errno))));
209  default: { // Parent: wait and exit.
210  int token = daemon_ep.TokenRead();
211  if (token) { // Success
212  exit(EXIT_SUCCESS);
213  } else { // fRet = false or token read error (premature exit).
214  tfm::format(std::cerr, "Error during initialization - check debug.log for details\n");
215  exit(EXIT_FAILURE);
216  }
217  }
218  }
219 #else
220  return InitError(Untranslated("-daemon is not supported on this operating system"));
221 #endif // HAVE_DECL_FORK
222  }
223  // Lock data directory after daemonization
225  {
226  // If locking the data directory failed, exit immediately
227  return false;
228  }
230  }
231  catch (const std::exception& e) {
232  PrintExceptionContinue(&e, "AppInit()");
233  } catch (...) {
234  PrintExceptionContinue(nullptr, "AppInit()");
235  }
236 
237 #if HAVE_DECL_FORK
238  if (daemon_ep.IsOpen()) {
239  // Signal initialization status to parent, then close pipe.
240  daemon_ep.TokenWrite(fRet);
241  daemon_ep.Close();
242  }
243 #endif
244  return fRet;
245 }
246 
248 {
249 #ifdef WIN32
250  common::WinCmdLineArgs winArgs;
251  std::tie(argc, argv) = winArgs.get();
252 #endif
253 
256  std::unique_ptr<interfaces::Init> init = interfaces::MakeNodeInit(node, argc, argv, exit_status);
257  if (!init) {
258  return exit_status;
259  }
260 
262 
263  // Connect bitcoind signal handlers
264  noui_connect();
265 
267 
268  // Interpret command line arguments
270  if (!ParseArgs(args, argc, argv)) return EXIT_FAILURE;
271  // Process early info return commands such as -help or -version
273 
274  // Start application
275  if (AppInit(node)) {
276  WaitForShutdown();
277  } else {
278  node.exit_status = EXIT_FAILURE;
279  }
280  Interrupt(node);
281  Shutdown(node);
282 
283  return node.exit_status;
284 }
bool IsArgSet(const std::string &strArg) const
Return true if the given argument has been manually set.
Definition: args.cpp:370
return EXIT_SUCCESS
void InitLogging(const ArgsManager &args)
Initialize global loggers.
Definition: init.cpp:778
static bool ProcessInitCommands(ArgsManager &args)
Definition: bitcoind.cpp:136
void SetupServerArgs(ArgsManager &argsman)
Register all arguments with the ArgsManager.
Definition: init.cpp:412
bool SoftSetBoolArg(const std::string &strArg, bool fValue)
Set a boolean argument if it doesn&#39;t already have a value.
Definition: args.cpp:537
#define strprintf
Format arguments and return the string or write to given std::ostream (see tinyformat::format doc for...
Definition: tinyformat.h:1162
UrlDecodeFn urlDecode
Definition: url.h:11
bilingual_str Untranslated(std::string original)
Mark a bilingual_str as untranslated.
Definition: translation.h:48
void Close()
Explicit close function.
Definition: tokenpipe.cpp:78
Interrupt(node)
#define PACKAGE_NAME
One end of a token pipe.
Definition: tokenpipe.h:14
bool ParseParameters(int argc, const char *const argv[], std::string &error)
Definition: args.cpp:178
bool GetBoolArg(const std::string &strArg, bool fDefault) const
Return boolean argument or default value.
Definition: args.cpp:506
std::string LicenseInfo()
Returns licensing information (for -version)
noui_connect()
Definition: noui.cpp:59
const std::function< std::string(const char *)> G_TRANSLATION_FUN
Translate string to current locale using Qt.
Definition: bitcoind.cpp:38
void PrintExceptionContinue(const std::exception *pex, std::string_view thread_name)
Definition: exception.cpp:36
SetupEnvironment()
Definition: system.cpp:54
int TokenWrite(uint8_t token)
Write token to endpoint.
Definition: tokenpipe.cpp:40
static constexpr bool DEFAULT_DAEMON
Default value for -daemon option.
Definition: init.h:14
std::string GetHelpMessage() const
Get the help string.
Definition: args.cpp:591
bool AppInitBasicSetup(const ArgsManager &args, std::atomic< int > &exit_status)
Initialize bitcoin core: Basic context setup.
Definition: init.cpp:808
std::string SysErrorString(int err)
Return system error string from errno value.
Definition: syserror.cpp:21
NodeContext struct containing references to chain state and connection state.
Definition: context.h:48
ArgsManager & args
Definition: bitcoind.cpp:269
bool InitError(const bilingual_str &str)
Show error message.
void format(std::ostream &out, const char *fmt, const Args &... args)
Format list of arguments to the stream according to given format string.
Definition: tinyformat.h:1060
int TokenRead()
Read token from endpoint.
Definition: tokenpipe.cpp:58
MAIN_FUNCTION
Definition: bitcoind.cpp:248
bool AppInitMain(NodeContext &node, interfaces::BlockAndHeaderTipInfo *tip_info)
Bitcoin core main initialization.
Definition: init.cpp:1073
WalletContext context
std::string FormatParagraph(std::string_view in, size_t width, size_t indent)
Format a paragraph of text to a fixed width, adding spaces for indentation to any added line...
static bool AppInit(NodeContext &node)
Definition: bitcoind.cpp:157
std::string FormatFullVersion()
void ThreadSetInternalName(std::string &&)
Set the internal (in-memory) name of the current thread only.
Definition: threadnames.cpp:65
Definition: init.h:25
std::unique_ptr< Init > MakeNodeInit(node::NodeContext &node, int argc, char *argv[], int &exit_status)
Return implementation of Init interface for the node process.
Shutdown(node)
bool AppInitParameterInteraction(const ArgsManager &args)
Initialization: parameter interaction.
Definition: init.cpp:845
bool error(const char *fmt, const Args &... args)
Definition: logging.h:262
void WaitForShutdown()
Wait for StartShutdown to be called in any thread.
Definition: shutdown.cpp:36
bool HelpRequested(const ArgsManager &args)
Definition: args.cpp:660
bool AppInitSanityChecks(const kernel::Context &kernel)
Initialization sanity checks.
Definition: init.cpp:1040
static constexpr bool DEFAULT_DAEMONWAIT
Default value for -daemonwait option.
Definition: init.h:16
static std::optional< TokenPipe > Make()
Create a new pipe.
Definition: tokenpipe.cpp:84
bool AppInitInterfaces(NodeContext &node)
Initialize node and wallet interface pointers.
Definition: init.cpp:1067
bool AppInitLockDataDirectory()
Lock bitcoin core data directory.
Definition: init.cpp:1055
bool IsOpen()
Return whether endpoint is open.
Definition: tokenpipe.h:53
UrlDecodeFn *const URL_DECODE
Definition: bitcoind.cpp:39
int exit_status
Definition: bitcoind.cpp:255
std::optional< ConfigError > InitConfig(ArgsManager &args, SettingsAbortFn settings_abort_fn)
Definition: init.cpp:18
static bool ParseArgs(ArgsManager &args, int argc, char *argv[])
Definition: bitcoind.cpp:114
void InitParameterInteraction(ArgsManager &args)
Parameter interaction: change current parameters depending on various rules.
Definition: init.cpp:686
bool IsSwitchChar(char c)
Definition: args.h:43
#define Assert(val)
Identity function.
Definition: check.h:73
std::string(const std::string &url_encoded) UrlDecodeFn
Definition: url.h:10