Branch data Line data Source code
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 : : #include <common/args.h>
7 : :
8 : : #include <chainparamsbase.h>
9 : : #include <common/settings.h>
10 : : #include <logging.h>
11 : : #include <sync.h>
12 : : #include <tinyformat.h>
13 : : #include <univalue.h>
14 : : #include <util/chaintype.h>
15 : : #include <util/check.h>
16 : : #include <util/fs.h>
17 : : #include <util/fs_helpers.h>
18 : : #include <util/strencodings.h>
19 : : #include <util/string.h>
20 : :
21 : : #ifdef WIN32
22 : : #include <codecvt> /* for codecvt_utf8_utf16 */
23 : : #include <shellapi.h> /* for CommandLineToArgvW */
24 : : #include <shlobj.h> /* for CSIDL_APPDATA */
25 : : #endif
26 : :
27 : : #include <algorithm>
28 : : #include <cassert>
29 : : #include <cstdint>
30 : : #include <cstdlib>
31 : : #include <cstring>
32 : : #include <map>
33 : : #include <optional>
34 : : #include <stdexcept>
35 : : #include <string>
36 : : #include <utility>
37 : : #include <variant>
38 : :
39 : : const char * const BITCOIN_CONF_FILENAME = "bitcoin.conf";
40 : : const char * const BITCOIN_SETTINGS_FILENAME = "settings.json";
41 : :
42 : : ArgsManager gArgs;
43 : :
44 : : /**
45 : : * Interpret a string argument as a boolean.
46 : : *
47 : : * The definition of LocaleIndependentAtoi<int>() requires that non-numeric string values
48 : : * like "foo", return 0. This means that if a user unintentionally supplies a
49 : : * non-integer argument here, the return value is always false. This means that
50 : : * -foo=false does what the user probably expects, but -foo=true is well defined
51 : : * but does not do what they probably expected.
52 : : *
53 : : * The return value of LocaleIndependentAtoi<int>(...) is zero when given input not
54 : : * representable as an int.
55 : : *
56 : : * For a more extensive discussion of this topic (and a wide range of opinions
57 : : * on the Right Way to change this code), see PR12713.
58 : : */
59 : 299629 : static bool InterpretBool(const std::string& strValue)
60 : : {
61 [ + + ]: 299629 : if (strValue.empty())
62 : : return true;
63 : 293094 : return (LocaleIndependentAtoi<int>(strValue) != 0);
64 : : }
65 : :
66 : 1270311 : static std::string SettingName(const std::string& arg)
67 : : {
68 [ + - + + ]: 1270311 : return arg.size() > 0 && arg[0] == '-' ? arg.substr(1) : arg;
69 : : }
70 : :
71 : : /**
72 : : * Parse "name", "section.name", "noname", "section.noname" settings keys.
73 : : *
74 : : * @note Where an option was negated can be later checked using the
75 : : * IsArgNegated() method. One use case for this is to have a way to disable
76 : : * options that are not normally boolean (e.g. using -nodebuglogfile to request
77 : : * that debug log output is not sent to any file at all).
78 : : */
79 : 359191 : KeyInfo InterpretKey(std::string key)
80 : : {
81 [ + + ]: 359191 : KeyInfo result;
82 : : // Split section name from key name for keys like "testnet.foo" or "regtest.bar"
83 : 359191 : size_t option_index = key.find('.');
84 [ + + ]: 359191 : if (option_index != std::string::npos) {
85 [ + - ]: 119782 : result.section = key.substr(0, option_index);
86 [ + - ]: 119782 : key.erase(0, option_index + 1);
87 : : }
88 [ + - + + ]: 359191 : if (key.substr(0, 2) == "no") {
89 [ + - ]: 103351 : key.erase(0, 2);
90 : 103351 : result.negated = true;
91 : : }
92 [ + - ]: 359191 : result.name = key;
93 : 359191 : return result;
94 : 0 : }
95 : :
96 : : /**
97 : : * Interpret settings value based on registered flags.
98 : : *
99 : : * @param[in] key key information to know if key was negated
100 : : * @param[in] value string value of setting to be parsed
101 : : * @param[in] flags ArgsManager registered argument flags
102 : : * @param[out] error Error description if settings value is not valid
103 : : *
104 : : * @return parsed settings value if it is valid, otherwise nullopt accompanied
105 : : * by a descriptive error string
106 : : */
107 : 350705 : std::optional<common::SettingsValue> InterpretValue(const KeyInfo& key, const std::string* value,
108 : : unsigned int flags, std::string& error)
109 : : {
110 : : // Return negated settings as false values.
111 [ + + ]: 350705 : if (key.negated) {
112 [ - + ]: 103351 : if (flags & ArgsManager::DISALLOW_NEGATION) {
113 : 0 : error = strprintf("Negating of -%s is meaningless and therefore forbidden", key.name);
114 : 0 : return std::nullopt;
115 : : }
116 : : // Double negatives like -nofoo=0 are supported (but discouraged)
117 [ + + + + ]: 103351 : if (value && !InterpretBool(*value)) {
118 : 11 : LogPrintf("Warning: parsed potentially confusing double-negative -%s=%s\n", key.name, *value);
119 : 11 : return true;
120 : : }
121 : 103340 : return false;
122 : : }
123 [ + + + + ]: 247354 : if (!value && (flags & ArgsManager::DISALLOW_ELISION)) {
124 : 1 : error = strprintf("Can not set -%s with no value. Please specify value with -%s=value.", key.name, key.name);
125 : 1 : return std::nullopt;
126 : : }
127 : 494706 : return value ? *value : "";
128 : : }
129 : :
130 : : // Define default constructor and destructor that are not inline, so code instantiating this class doesn't need to
131 : : // #include class definitions for all members.
132 : : // For example, m_settings has an internal dependency on univalue.
133 : 51289 : ArgsManager::ArgsManager() = default;
134 [ + + ]: 256440 : ArgsManager::~ArgsManager() = default;
135 : :
136 : 49084 : std::set<std::string> ArgsManager::GetUnsuitableSectionOnlyArgs() const
137 : : {
138 [ + - ]: 49084 : std::set<std::string> unsuitables;
139 : :
140 [ + - ]: 49084 : LOCK(cs_args);
141 : :
142 : : // if there's no section selected, don't worry
143 [ - + ]: 49084 : if (m_network.empty()) return std::set<std::string> {};
144 : :
145 : : // if it's okay to use the default section for this network, don't worry
146 [ + - + + ]: 49084 : if (m_network == ChainTypeToString(ChainType::MAIN)) return std::set<std::string> {};
147 : :
148 [ + + ]: 63261 : for (const auto& arg : m_network_only_args) {
149 [ + - + - : 26552 : if (OnlyHasDefaultSectionSetting(m_settings, m_network, SettingName(arg))) {
+ + ]
150 [ + - ]: 1753 : unsuitables.insert(arg);
151 : : }
152 : : }
153 : 36709 : return unsuitables;
154 : 49084 : }
155 : :
156 : 1595 : std::list<SectionInfo> ArgsManager::GetUnrecognizedSections() const
157 : : {
158 : : // Section names to be recognized in the config file.
159 : 1595 : static const std::set<std::string> available_sections{
160 : : ChainTypeToString(ChainType::REGTEST),
161 : : ChainTypeToString(ChainType::SIGNET),
162 : : ChainTypeToString(ChainType::TESTNET),
163 : : ChainTypeToString(ChainType::TESTNET4),
164 : : ChainTypeToString(ChainType::MAIN),
165 [ + + + - : 8267 : };
- + + + -
- ]
166 : :
167 : 1595 : LOCK(cs_args);
168 [ + - ]: 1595 : std::list<SectionInfo> unrecognized = m_config_sections;
169 : 2603 : unrecognized.remove_if([](const SectionInfo& appeared){ return available_sections.find(appeared.m_name) != available_sections.end(); });
170 [ + - ]: 1595 : return unrecognized;
171 [ + - + - : 2707 : }
+ - + - +
- - - ]
172 : :
173 : 2635 : void ArgsManager::SelectConfigNetwork(const std::string& network)
174 : : {
175 : 2635 : LOCK(cs_args);
176 [ + - + - ]: 5270 : m_network = network;
177 : 2635 : }
178 : :
179 : 51234 : bool ArgsManager::ParseParameters(int argc, const char* const argv[], std::string& error)
180 : : {
181 : 51234 : LOCK(cs_args);
182 : 51234 : m_settings.command_line_options.clear();
183 : :
184 [ + + ]: 195058 : for (int i = 1; i < argc; i++) {
185 [ + - ]: 144992 : std::string key(argv[i]);
186 : :
187 : : #ifdef __APPLE__
188 : : // At the first time when a user gets the "App downloaded from the
189 : : // internet" warning, and clicks the Open button, macOS passes
190 : : // a unique process serial number (PSN) as -psn_... command-line
191 : : // argument, which we filter out.
192 : : if (key.substr(0, 5) == "-psn_") continue;
193 : : #endif
194 : :
195 [ + + ]: 144992 : if (key == "-") break; //bitcoin-tx using stdin
196 : 144980 : std::optional<std::string> val;
197 : 144980 : size_t is_index = key.find('=');
198 [ + + ]: 144980 : if (is_index != std::string::npos) {
199 [ + - ]: 136295 : val = key.substr(is_index + 1);
200 [ + - ]: 136295 : key.erase(is_index);
201 : : }
202 : : #ifdef WIN32
203 : : key = ToLower(key);
204 : : if (key[0] == '/')
205 : : key[0] = '-';
206 : : #endif
207 : :
208 [ + + ]: 144980 : if (key[0] != '-') {
209 [ + + + - ]: 1148 : if (!m_accept_any_command && m_command.empty()) {
210 : : // The first non-dash arg is a registered command
211 [ + - ]: 36 : std::optional<unsigned int> flags = GetArgFlags(key);
212 [ + + - + ]: 36 : if (!flags || !(*flags & ArgsManager::COMMAND)) {
213 [ + - ]: 4 : error = strprintf("Invalid command '%s'", argv[i]);
214 : 4 : return false;
215 : : }
216 : : }
217 [ + - ]: 1144 : m_command.push_back(key);
218 [ + + ]: 1804 : while (++i < argc) {
219 : : // The remaining args are command args
220 [ + - ]: 660 : m_command.emplace_back(argv[i]);
221 : : }
222 : 1144 : break;
223 : : }
224 : :
225 : : // Transform --foo to -foo
226 [ + - + + ]: 143832 : if (key.length() > 1 && key[1] == '-')
227 [ + - ]: 6 : key.erase(0, 1);
228 : :
229 : : // Transform -foo to foo
230 [ + - ]: 143832 : key.erase(0, 1);
231 [ + - + - ]: 143832 : KeyInfo keyinfo = InterpretKey(key);
232 [ + - + - ]: 143832 : std::optional<unsigned int> flags = GetArgFlags('-' + keyinfo.name);
233 : :
234 : : // Unknown command line options and command line options with dot
235 : : // characters (which are returned from InterpretKey with nonempty
236 : : // section strings) are not valid.
237 [ + + + + ]: 143832 : if (!flags || !keyinfo.section.empty()) {
238 [ + - ]: 7 : error = strprintf("Invalid parameter %s", argv[i]);
239 : 7 : return false;
240 : : }
241 : :
242 [ + + + - ]: 151437 : std::optional<common::SettingsValue> value = InterpretValue(keyinfo, val ? &*val : nullptr, *flags, error);
243 [ + + ]: 143825 : if (!value) return false;
244 : :
245 [ + - + - ]: 143824 : m_settings.command_line_options[keyinfo.name].push_back(*value);
246 : 289969 : }
247 : :
248 : : // we do not allow -includeconf from command line, only -noincludeconf
249 [ + - + + ]: 51222 : if (auto* includes = common::FindKey(m_settings.command_line_options, "includeconf")) {
250 : 5 : const common::SettingsSpan values{*includes};
251 : : // Range may be empty if -noincludeconf was passed
252 [ + - + + ]: 5 : if (!values.empty()) {
253 [ + - + - : 4 : error = "-includeconf cannot be used from commandline; -includeconf=" + values.begin()->write();
+ - ]
254 : 4 : return false; // pick first value as example
255 : : }
256 : : }
257 : : return true;
258 : 51234 : }
259 : :
260 : 391706 : std::optional<unsigned int> ArgsManager::GetArgFlags(const std::string& name) const
261 : : {
262 : 391706 : LOCK(cs_args);
263 [ + + ]: 709242 : for (const auto& arg_map : m_available_args) {
264 : 700872 : const auto search = arg_map.second.find(name);
265 [ + + ]: 700872 : if (search != arg_map.second.end()) {
266 : 383336 : return search->second.m_flags;
267 : : }
268 : : }
269 : 8370 : return std::nullopt;
270 : 391706 : }
271 : :
272 : 23539 : fs::path ArgsManager::GetPathArg(std::string arg, const fs::path& default_value) const
273 : : {
274 [ + + ]: 23539 : if (IsArgNegated(arg)) return fs::path{};
275 [ + - ]: 23534 : std::string path_str = GetArg(arg, "");
276 [ + + + - ]: 33214 : if (path_str.empty()) return default_value;
277 [ + - + - ]: 29040 : fs::path result = fs::PathFromString(path_str).lexically_normal();
278 : : // Remove trailing slash, if present.
279 [ + + + - : 29040 : return result.has_filename() ? result : result.parent_path();
+ - ]
280 : 33214 : }
281 : :
282 : 5539 : fs::path ArgsManager::GetBlocksDirPath() const
283 : : {
284 : 5539 : LOCK(cs_args);
285 : 5539 : fs::path& path = m_cached_blocks_path;
286 : :
287 : : // Cache the path to avoid calling fs::create_directories on every call of
288 : : // this function
289 [ + + + - ]: 5539 : if (!path.empty()) return path;
290 : :
291 [ + - + - : 1766 : if (IsArgSet("-blocksdir")) {
+ + ]
292 [ + - + - : 8 : path = fs::absolute(GetPathArg("-blocksdir"));
+ - ]
293 [ + - + + ]: 2 : if (!fs::is_directory(path)) {
294 [ + - ]: 1 : path = "";
295 [ + - ]: 1 : return path;
296 : : }
297 : : } else {
298 [ + - ]: 3528 : path = GetDataDirBase();
299 : : }
300 : :
301 [ + - + - ]: 3530 : path /= fs::PathFromString(BaseParams().DataDir());
302 [ + - ]: 1765 : path /= "blocks";
303 [ + - ]: 1765 : fs::create_directories(path);
304 [ + - + - ]: 5539 : return path;
305 : 5539 : }
306 : :
307 : 33661 : fs::path ArgsManager::GetDataDir(bool net_specific) const
308 : : {
309 : 33661 : LOCK(cs_args);
310 [ + + ]: 33661 : fs::path& path = net_specific ? m_cached_network_datadir_path : m_cached_datadir_path;
311 : :
312 : : // Used cached path if available
313 [ + + + - : 39217 : if (!path.empty()) return path;
+ - ]
314 : :
315 [ + - + - ]: 11112 : const fs::path datadir{GetPathArg("-datadir")};
316 [ + + ]: 5556 : if (!datadir.empty()) {
317 [ + - ]: 11102 : path = fs::absolute(datadir);
318 [ + - - + ]: 5551 : if (!fs::is_directory(path)) {
319 [ # # ]: 0 : path = "";
320 [ # # ]: 0 : return path;
321 : : }
322 : : } else {
323 [ + - ]: 15 : path = GetDefaultDataDir();
324 : : }
325 : :
326 [ + + + - : 5556 : if (net_specific && !BaseParams().DataDir().empty()) {
+ + ]
327 [ + - + - ]: 4941 : path /= fs::PathFromString(BaseParams().DataDir());
328 : : }
329 : :
330 [ + - ]: 5556 : return path;
331 : 39217 : }
332 : :
333 : 2080 : void ArgsManager::ClearPathCache()
334 : : {
335 : 2080 : LOCK(cs_args);
336 : :
337 : 2080 : m_cached_datadir_path = fs::path();
338 : 2080 : m_cached_network_datadir_path = fs::path();
339 [ + - ]: 4160 : m_cached_blocks_path = fs::path();
340 : 2080 : }
341 : :
342 : 33 : std::optional<const ArgsManager::Command> ArgsManager::GetCommand() const
343 : : {
344 [ + - ]: 33 : Command ret;
345 [ + - ]: 33 : LOCK(cs_args);
346 [ + + ]: 33 : auto it = m_command.begin();
347 [ + + ]: 33 : if (it == m_command.end()) {
348 : : // No command was passed
349 : 1 : return std::nullopt;
350 : : }
351 [ + - ]: 32 : if (!m_accept_any_command) {
352 : : // The registered command
353 [ + - ]: 32 : ret.command = *(it++);
354 : : }
355 [ + + ]: 37 : while (it != m_command.end()) {
356 : : // The unregistered command and args (if any)
357 [ + - ]: 5 : ret.args.push_back(*(it++));
358 : : }
359 : 32 : return ret;
360 : 66 : }
361 : :
362 : 143310 : std::vector<std::string> ArgsManager::GetArgs(const std::string& strArg) const
363 : : {
364 : 143310 : std::vector<std::string> result;
365 [ + - + + ]: 281444 : for (const common::SettingsValue& value : GetSettingsList(strArg)) {
366 [ - + - - : 276268 : result.push_back(value.isFalse() ? "0" : value.isTrue() ? "1" : value.get_str());
+ + + - +
- + - +
- ]
367 : 143310 : }
368 : 143310 : return result;
369 : 0 : }
370 : :
371 : 164923 : bool ArgsManager::IsArgSet(const std::string& strArg) const
372 : : {
373 : 164923 : return !GetSetting(strArg).isNull();
374 : : }
375 : :
376 : 4384 : bool ArgsManager::GetSettingsPath(fs::path* filepath, bool temp, bool backup) const
377 : : {
378 [ + - + - ]: 8768 : fs::path settings = GetPathArg("-settings", BITCOIN_SETTINGS_FILENAME);
379 [ + + ]: 4384 : if (settings.empty()) {
380 : : return false;
381 : : }
382 [ - + ]: 4381 : if (backup) {
383 [ # # ]: 0 : settings += ".bak";
384 : : }
385 [ + + ]: 4381 : if (filepath) {
386 [ + + + - : 22570 : *filepath = fsbridge::AbsPathJoin(GetDataDirNet(), temp ? settings + ".tmp" : settings);
+ - + - +
+ - - ]
387 : : }
388 : : return true;
389 : 4384 : }
390 : :
391 : 4 : static void SaveErrors(const std::vector<std::string> errors, std::vector<std::string>* error_out)
392 : : {
393 [ + + ]: 8 : for (const auto& error : errors) {
394 [ + + ]: 4 : if (error_out) {
395 : 3 : error_out->emplace_back(error);
396 : : } else {
397 : 1 : LogPrintf("%s\n", error);
398 : : }
399 : : }
400 : 4 : }
401 : :
402 : 1013 : bool ArgsManager::ReadSettingsFile(std::vector<std::string>* errors)
403 : : {
404 : 1013 : fs::path path;
405 [ + - + - ]: 1013 : if (!GetSettingsPath(&path, /* temp= */ false)) {
406 : : return true; // Do nothing if settings file disabled.
407 : : }
408 : :
409 [ + - ]: 1013 : LOCK(cs_args);
410 : 1013 : m_settings.rw_settings.clear();
411 : 1013 : std::vector<std::string> read_errors;
412 [ + - + + ]: 1013 : if (!common::ReadSettings(path, m_settings.rw_settings, read_errors)) {
413 [ + - + - ]: 3 : SaveErrors(read_errors, errors);
414 : 3 : return false;
415 : : }
416 [ + + ]: 1134 : for (const auto& setting : m_settings.rw_settings) {
417 [ + - + - ]: 124 : KeyInfo key = InterpretKey(setting.first); // Split setting key into section and argname
418 [ + - + - : 124 : if (!GetArgFlags('-' + key.name)) {
+ + ]
419 [ + - ]: 7 : LogPrintf("Ignoring unknown rw_settings value %s\n", setting.first);
420 : : }
421 : 124 : }
422 : : return true;
423 [ + - ]: 3039 : }
424 : :
425 : 1178 : bool ArgsManager::WriteSettingsFile(std::vector<std::string>* errors, bool backup) const
426 : : {
427 : 1178 : fs::path path, path_tmp;
428 [ + - + - : 1178 : if (!GetSettingsPath(&path, /*temp=*/false, backup) || !GetSettingsPath(&path_tmp, /*temp=*/true, backup)) {
+ - - + ]
429 [ # # ]: 0 : throw std::logic_error("Attempt to write settings file when dynamic settings are disabled.");
430 : : }
431 : :
432 [ + - ]: 1178 : LOCK(cs_args);
433 : 1178 : std::vector<std::string> write_errors;
434 [ + - - + ]: 1178 : if (!common::WriteSettings(path_tmp, m_settings.rw_settings, write_errors)) {
435 [ # # # # ]: 0 : SaveErrors(write_errors, errors);
436 : 0 : return false;
437 : : }
438 [ + - + - : 3534 : if (!RenameOver(path_tmp, path)) {
+ - + + ]
439 [ + - + - : 4 : SaveErrors({strprintf("Failed renaming settings file %s to %s\n", fs::PathToString(path_tmp), fs::PathToString(path))}, errors);
+ - + + -
- ]
440 : 1 : return false;
441 : : }
442 : : return true;
443 [ + - + - : 4714 : }
+ - ]
444 : :
445 : 0 : common::SettingsValue ArgsManager::GetPersistentSetting(const std::string& name) const
446 : : {
447 : 0 : LOCK(cs_args);
448 [ # # # # : 0 : return common::GetSetting(m_settings, m_network, name, !UseDefaultSection("-" + name),
# # ]
449 [ # # ]: 0 : /*ignore_nonpersistent=*/true, /*get_chain_type=*/false);
450 : 0 : }
451 : :
452 : 72640 : bool ArgsManager::IsArgNegated(const std::string& strArg) const
453 : : {
454 : 72640 : return GetSetting(strArg).isFalse();
455 : : }
456 : :
457 : 86440 : std::string ArgsManager::GetArg(const std::string& strArg, const std::string& strDefault) const
458 : : {
459 [ + - ]: 172878 : return GetArg(strArg).value_or(strDefault);
460 : : }
461 : :
462 : 137250 : std::optional<std::string> ArgsManager::GetArg(const std::string& strArg) const
463 : : {
464 : 137250 : const common::SettingsValue value = GetSetting(strArg);
465 [ + + ]: 274498 : return SettingToString(value);
466 : 137250 : }
467 : :
468 : 137250 : std::optional<std::string> SettingToString(const common::SettingsValue& value)
469 : : {
470 [ + + ]: 137250 : if (value.isNull()) return std::nullopt;
471 [ + + ]: 60799 : if (value.isFalse()) return "0";
472 [ + + ]: 49087 : if (value.isTrue()) return "1";
473 [ + + ]: 49079 : if (value.isNum()) return value.getValStr();
474 : 49076 : return value.get_str();
475 : : }
476 : :
477 : 0 : std::string SettingToString(const common::SettingsValue& value, const std::string& strDefault)
478 : : {
479 [ # # ]: 0 : return SettingToString(value).value_or(strDefault);
480 : : }
481 : :
482 : 122942 : int64_t ArgsManager::GetIntArg(const std::string& strArg, int64_t nDefault) const
483 : : {
484 [ + + ]: 122942 : return GetIntArg(strArg).value_or(nDefault);
485 : : }
486 : :
487 : 149266 : std::optional<int64_t> ArgsManager::GetIntArg(const std::string& strArg) const
488 : : {
489 : 149266 : const common::SettingsValue value = GetSetting(strArg);
490 [ + + ]: 298529 : return SettingToInt(value);
491 : 149266 : }
492 : :
493 : 149266 : std::optional<int64_t> SettingToInt(const common::SettingsValue& value)
494 : : {
495 [ + + ]: 149266 : if (value.isNull()) return std::nullopt;
496 [ + + ]: 6710 : if (value.isFalse()) return 0;
497 [ + + ]: 6705 : if (value.isTrue()) return 1;
498 [ + + ]: 6702 : if (value.isNum()) return value.getInt<int64_t>();
499 : 6699 : return LocaleIndependentAtoi<int64_t>(value.get_str());
500 : : }
501 : :
502 : 0 : int64_t SettingToInt(const common::SettingsValue& value, int64_t nDefault)
503 : : {
504 [ # # ]: 0 : return SettingToInt(value).value_or(nDefault);
505 : : }
506 : :
507 : 475036 : bool ArgsManager::GetBoolArg(const std::string& strArg, bool fDefault) const
508 : : {
509 [ + + ]: 475036 : return GetBoolArg(strArg).value_or(fDefault);
510 : : }
511 : :
512 : 494738 : std::optional<bool> ArgsManager::GetBoolArg(const std::string& strArg) const
513 : : {
514 : 494738 : const common::SettingsValue value = GetSetting(strArg);
515 [ + + ]: 989466 : return SettingToBool(value);
516 : 494738 : }
517 : :
518 : 494738 : std::optional<bool> SettingToBool(const common::SettingsValue& value)
519 : : {
520 [ + + ]: 494738 : if (value.isNull()) return std::nullopt;
521 [ + + ]: 188909 : if (value.isBool()) return value.get_bool();
522 : 188831 : return InterpretBool(value.get_str());
523 : : }
524 : :
525 : 0 : bool SettingToBool(const common::SettingsValue& value, bool fDefault)
526 : : {
527 [ # # ]: 0 : return SettingToBool(value).value_or(fDefault);
528 : : }
529 : :
530 : 51605 : bool ArgsManager::SoftSetArg(const std::string& strArg, const std::string& strValue)
531 : : {
532 : 51605 : LOCK(cs_args);
533 [ + - + + ]: 51605 : if (IsArgSet(strArg)) return false;
534 [ + - ]: 1815 : ForceSetArg(strArg, strValue);
535 : : return true;
536 : 51605 : }
537 : :
538 : 4109 : bool ArgsManager::SoftSetBoolArg(const std::string& strArg, bool fValue)
539 : : {
540 [ + + ]: 4109 : if (fValue)
541 [ + - ]: 2005 : return SoftSetArg(strArg, std::string("1"));
542 : : else
543 [ + - ]: 2104 : return SoftSetArg(strArg, std::string("0"));
544 : : }
545 : :
546 : 50519 : void ArgsManager::ForceSetArg(const std::string& strArg, const std::string& strValue)
547 : : {
548 : 50519 : LOCK(cs_args);
549 [ + - + - : 50519 : m_settings.forced_settings[SettingName(strArg)] = strValue;
+ - + - ]
550 : 50519 : }
551 : :
552 : 166 : void ArgsManager::AddCommand(const std::string& cmd, const std::string& help)
553 : : {
554 : 166 : Assert(cmd.find('=') == std::string::npos);
555 : 166 : Assert(cmd.at(0) != '-');
556 : :
557 : 166 : LOCK(cs_args);
558 : 166 : m_accept_any_command = false; // latch to false
559 [ + - ]: 166 : std::map<std::string, Arg>& arg_map = m_available_args[OptionsCategory::COMMANDS];
560 [ + - + - : 166 : auto ret = arg_map.emplace(cmd, Arg{"", help, ArgsManager::COMMAND});
+ - ]
561 [ + - ]: 166 : Assert(ret.second); // Fail on duplicate commands
562 : 166 : }
563 : :
564 : 387658 : void ArgsManager::AddArg(const std::string& name, const std::string& help, unsigned int flags, const OptionsCategory& cat)
565 : : {
566 : 387658 : Assert((flags & ArgsManager::COMMAND) == 0); // use AddCommand
567 : :
568 : : // Split arg name from its help param
569 : 387658 : size_t eq_index = name.find('=');
570 [ + + ]: 387658 : if (eq_index == std::string::npos) {
571 : 206520 : eq_index = name.size();
572 : : }
573 : 387658 : std::string arg_name = name.substr(0, eq_index);
574 : :
575 [ + - ]: 387658 : LOCK(cs_args);
576 [ + - ]: 387658 : std::map<std::string, Arg>& arg_map = m_available_args[cat];
577 [ + - + - : 387658 : auto ret = arg_map.emplace(arg_name, Arg{name.substr(eq_index, name.size() - eq_index), help, flags});
+ - ]
578 [ - + ]: 387658 : assert(ret.second); // Make sure an insertion actually happened
579 : :
580 [ + + ]: 387658 : if (flags & ArgsManager::NETWORK_ONLY) {
581 [ + - ]: 13530 : m_network_only_args.emplace(arg_name);
582 : : }
583 : 387658 : }
584 : :
585 : 5489 : void ArgsManager::AddHiddenArgs(const std::vector<std::string>& names)
586 : : {
587 [ + + ]: 29499 : for (const std::string& name : names) {
588 [ + - ]: 48020 : AddArg(name, "", ArgsManager::ALLOW_ANY, OptionsCategory::HIDDEN);
589 : : }
590 : 5489 : }
591 : :
592 : 464 : void ArgsManager::CheckMultipleCLIArgs() const
593 : : {
594 : 464 : LOCK(cs_args);
595 : 464 : std::vector<std::string> found{};
596 : 464 : auto cmds = m_available_args.find(OptionsCategory::CLI_COMMANDS);
597 [ + - ]: 464 : if (cmds != m_available_args.end()) {
598 [ + - + + ]: 2320 : for (const auto& [cmd, argspec] : cmds->second) {
599 [ + - + + ]: 1856 : if (IsArgSet(cmd)) {
600 [ + - ]: 47 : found.push_back(cmd);
601 : : }
602 : : }
603 [ + + ]: 464 : if (found.size() > 1) {
604 [ + - + - : 4 : throw std::runtime_error(strprintf("Only one of %s may be specified.", util::Join(found, ", ")));
+ - ]
605 : : }
606 : : }
607 [ + - ]: 926 : }
608 : :
609 : 1 : std::string ArgsManager::GetHelpMessage() const
610 : : {
611 [ + - ]: 1 : const bool show_debug = GetBoolArg("-help-debug", false);
612 : :
613 [ + - ]: 1 : std::string usage;
614 [ + - ]: 1 : LOCK(cs_args);
615 [ + - ]: 11 : for (const auto& arg_map : m_available_args) {
616 [ + + + + : 11 : switch(arg_map.first) {
+ + + - +
+ + - - -
- + ]
617 : 1 : case OptionsCategory::OPTIONS:
618 [ + - + - ]: 2 : usage += HelpMessageGroup("Options:");
619 : 1 : break;
620 : 1 : case OptionsCategory::CONNECTION:
621 [ + - + - ]: 2 : usage += HelpMessageGroup("Connection options:");
622 : 1 : break;
623 : 1 : case OptionsCategory::ZMQ:
624 [ + - + - ]: 2 : usage += HelpMessageGroup("ZeroMQ notification options:");
625 : 1 : break;
626 : 1 : case OptionsCategory::DEBUG_TEST:
627 [ + - + - ]: 2 : usage += HelpMessageGroup("Debugging/Testing options:");
628 : 1 : break;
629 : 1 : case OptionsCategory::NODE_RELAY:
630 [ + - + - ]: 2 : usage += HelpMessageGroup("Node relay options:");
631 : 1 : break;
632 : 1 : case OptionsCategory::BLOCK_CREATION:
633 [ + - + - ]: 2 : usage += HelpMessageGroup("Block creation options:");
634 : 1 : break;
635 : 1 : case OptionsCategory::RPC:
636 [ + - + - ]: 2 : usage += HelpMessageGroup("RPC server options:");
637 : 1 : break;
638 : 0 : case OptionsCategory::IPC:
639 [ # # # # ]: 0 : usage += HelpMessageGroup("IPC interprocess connection options:");
640 : 0 : break;
641 : 1 : case OptionsCategory::WALLET:
642 [ + - + - ]: 2 : usage += HelpMessageGroup("Wallet options:");
643 : 1 : break;
644 : 1 : case OptionsCategory::WALLET_DEBUG_TEST:
645 [ - + - - : 1 : if (show_debug) usage += HelpMessageGroup("Wallet debugging/testing options:");
- - ]
646 : : break;
647 : 1 : case OptionsCategory::CHAINPARAMS:
648 [ + - + - ]: 2 : usage += HelpMessageGroup("Chain selection options:");
649 : 1 : break;
650 : 0 : case OptionsCategory::GUI:
651 [ # # # # ]: 0 : usage += HelpMessageGroup("UI Options:");
652 : 0 : break;
653 : 0 : case OptionsCategory::COMMANDS:
654 [ # # # # ]: 0 : usage += HelpMessageGroup("Commands:");
655 : 0 : break;
656 : 0 : case OptionsCategory::REGISTER_COMMANDS:
657 [ # # # # ]: 0 : usage += HelpMessageGroup("Register Commands:");
658 : 0 : break;
659 : 0 : case OptionsCategory::CLI_COMMANDS:
660 [ # # # # ]: 0 : usage += HelpMessageGroup("CLI Commands:");
661 : 0 : break;
662 : : default:
663 : : break;
664 : : }
665 : :
666 : : // When we get to the hidden options, stop
667 [ + + ]: 11 : if (arg_map.first == OptionsCategory::HIDDEN) break;
668 : :
669 [ + + ]: 190 : for (const auto& arg : arg_map.second) {
670 [ + - + + ]: 180 : if (show_debug || !(arg.second.m_flags & ArgsManager::DEBUG_ONLY)) {
671 [ + + ]: 140 : std::string name;
672 [ + + ]: 140 : if (arg.second.m_help_param.empty()) {
673 [ + - ]: 58 : name = arg.first;
674 : : } else {
675 [ + - ]: 82 : name = arg.first + arg.second.m_help_param;
676 : : }
677 [ + - ]: 280 : usage += HelpMessageOpt(name, arg.second.m_help_text);
678 : 140 : }
679 : : }
680 : : }
681 [ + - ]: 1 : return usage;
682 : 1 : }
683 : :
684 : 1609 : bool HelpRequested(const ArgsManager& args)
685 : : {
686 [ + - + - : 8043 : return args.IsArgSet("-?") || args.IsArgSet("-h") || args.IsArgSet("-help") || args.IsArgSet("-help-debug");
+ - + - +
- + + + -
+ - + - +
- + - + -
+ + + - -
- - - -
- ]
687 : : }
688 : :
689 : 2231 : void SetupHelpOptions(ArgsManager& args)
690 : : {
691 [ + - + - ]: 4462 : args.AddArg("-help", "Print this help message and exit (also -h or -?)", ArgsManager::ALLOW_ANY, OptionsCategory::OPTIONS);
692 [ + - ]: 2231 : args.AddHiddenArgs({"-h", "-?"});
693 : 2231 : }
694 : :
695 : : static const int screenWidth = 79;
696 : : static const int optIndent = 2;
697 : : static const int msgIndent = 7;
698 : :
699 : 9 : std::string HelpMessageGroup(const std::string &message) {
700 [ + - + - ]: 18 : return std::string(message) + std::string("\n\n");
701 : : }
702 : :
703 : 140 : std::string HelpMessageOpt(const std::string &option, const std::string &message) {
704 [ + - + - ]: 560 : return std::string(optIndent,' ') + std::string(option) +
705 [ + - + - : 560 : std::string("\n") + std::string(msgIndent,' ') +
+ - ]
706 [ + - + - ]: 420 : FormatParagraph(message, screenWidth - msgIndent, msgIndent) +
707 [ + - ]: 420 : std::string("\n\n");
708 : : }
709 : :
710 : : const std::vector<std::string> TEST_OPTIONS_DOC{
711 : : "addrman (use deterministic addrman)",
712 : : "bip94 (enforce BIP94 consensus rules)",
713 : : };
714 : :
715 : 3793 : bool HasTestOption(const ArgsManager& args, const std::string& test_option)
716 : : {
717 [ + - ]: 3793 : const auto options = args.GetArgs("-test");
718 [ + - + - : 37930 : return std::any_of(options.begin(), options.end(), [test_option](const auto& option) {
+ - ]
719 [ - - - - : 22 : return option == test_option;
- - - - -
- - - +
+ ]
720 : 3793 : });
721 : 3793 : }
722 : :
723 : 991 : fs::path GetDefaultDataDir()
724 : : {
725 : : // Windows:
726 : : // old: C:\Users\Username\AppData\Roaming\Bitcoin
727 : : // new: C:\Users\Username\AppData\Local\Bitcoin
728 : : // macOS: ~/Library/Application Support/Bitcoin
729 : : // Unix-like: ~/.bitcoin
730 : : #ifdef WIN32
731 : : // Windows
732 : : // Check for existence of datadir in old location and keep it there
733 : : fs::path legacy_path = GetSpecialFolderPath(CSIDL_APPDATA) / "Bitcoin";
734 : : if (fs::exists(legacy_path)) return legacy_path;
735 : :
736 : : // Otherwise, fresh installs can start in the new, "proper" location
737 : : return GetSpecialFolderPath(CSIDL_LOCAL_APPDATA) / "Bitcoin";
738 : : #else
739 : 991 : fs::path pathRet;
740 : 991 : char* pszHome = getenv("HOME");
741 [ + - - + ]: 991 : if (pszHome == nullptr || strlen(pszHome) == 0)
742 [ # # ]: 0 : pathRet = fs::path("/");
743 : : else
744 [ + - ]: 1982 : pathRet = fs::path(pszHome);
745 : : #ifdef __APPLE__
746 : : // macOS
747 : : return pathRet / "Library/Application Support/Bitcoin";
748 : : #else
749 : : // Unix-like
750 [ + - + - ]: 2973 : return pathRet / ".bitcoin";
751 : : #endif
752 : : #endif
753 : 991 : }
754 : :
755 : 3019 : bool CheckDataDirOption(const ArgsManager& args)
756 : : {
757 [ + - + - ]: 6038 : const fs::path datadir{args.GetPathArg("-datadir")};
758 [ + + + - : 6033 : return datadir.empty() || fs::is_directory(fs::absolute(datadir));
+ - + + ]
759 : 3019 : }
760 : :
761 : 2487 : fs::path ArgsManager::GetConfigFilePath() const
762 : : {
763 : 2487 : LOCK(cs_args);
764 [ + - + - : 2487 : return *Assert(m_config_path);
+ - ]
765 : 2487 : }
766 : :
767 : 0 : void ArgsManager::SetConfigFilePath(fs::path path)
768 : : {
769 : 0 : LOCK(cs_args);
770 [ # # ]: 0 : assert(!m_config_path);
771 [ # # ]: 0 : m_config_path = path;
772 : 0 : }
773 : :
774 : 3216 : ChainType ArgsManager::GetChainType() const
775 : : {
776 : 3216 : std::variant<ChainType, std::string> arg = GetChainArg();
777 [ + - ]: 3216 : if (auto* parsed = std::get_if<ChainType>(&arg)) return *parsed;
778 [ # # # # : 0 : throw std::runtime_error(strprintf("Unknown chain %s.", std::get<std::string>(arg)));
# # ]
779 : 3216 : }
780 : :
781 : 4377 : std::string ArgsManager::GetChainTypeString() const
782 : : {
783 : 4377 : auto arg = GetChainArg();
784 [ + - + - ]: 4190 : if (auto* parsed = std::get_if<ChainType>(&arg)) return ChainTypeToString(*parsed);
785 [ # # # # ]: 0 : return std::get<std::string>(arg);
786 : 4190 : }
787 : :
788 : 7593 : std::variant<ChainType, std::string> ArgsManager::GetChainArg() const
789 : : {
790 : 37965 : auto get_net = [&](const std::string& arg) {
791 : 30372 : LOCK(cs_args);
792 [ + - + - ]: 60744 : common::SettingsValue value = common::GetSetting(m_settings, /* section= */ "", SettingName(arg),
793 : : /* ignore_default_section_config= */ false,
794 : : /*ignore_nonpersistent=*/false,
795 [ + - ]: 30372 : /* get_chain_type= */ true);
796 [ + + - + : 30372 : return value.isNull() ? false : value.isBool() ? value.get_bool() : InterpretBool(value.get_str());
- - + - +
- ]
797 [ + - ]: 60744 : };
798 : :
799 [ + - ]: 7593 : const bool fRegTest = get_net("-regtest");
800 [ + - ]: 7593 : const bool fSigNet = get_net("-signet");
801 [ + - ]: 7593 : const bool fTestNet = get_net("-testnet");
802 [ + - ]: 7593 : const bool fTestNet4 = get_net("-testnet4");
803 [ + - ]: 7593 : const auto chain_arg = GetArg("-chain");
804 : :
805 [ + + ]: 7593 : if ((int)chain_arg.has_value() + (int)fRegTest + (int)fSigNet + (int)fTestNet + (int)fTestNet4 > 1) {
806 [ + - ]: 187 : throw std::runtime_error("Invalid combination of -regtest, -signet, -testnet, -testnet4 and -chain. Can use at most one.");
807 : : }
808 [ + + ]: 7406 : if (chain_arg) {
809 [ + - + - ]: 29 : if (auto parsed = ChainTypeFromString(*chain_arg)) return *parsed;
810 : : // Not a known string, so return original string
811 [ # # ]: 0 : return *chain_arg;
812 : : }
813 [ + + ]: 7377 : if (fRegTest) return ChainType::REGTEST;
814 [ + + ]: 1678 : if (fSigNet) return ChainType::SIGNET;
815 [ + + ]: 1618 : if (fTestNet) return ChainType::TESTNET;
816 [ + + ]: 1264 : if (fTestNet4) return ChainType::TESTNET4;
817 : 1251 : return ChainType::MAIN;
818 : 7406 : }
819 : :
820 : 1162868 : bool ArgsManager::UseDefaultSection(const std::string& arg) const
821 : : {
822 [ + + + + ]: 1162868 : return m_network == ChainTypeToString(ChainType::MAIN) || m_network_only_args.count(arg) == 0;
823 : : }
824 : :
825 : 1018843 : common::SettingsValue ArgsManager::GetSetting(const std::string& arg) const
826 : : {
827 : 1018843 : LOCK(cs_args);
828 : 1018843 : return common::GetSetting(
829 [ + - + - ]: 2037686 : m_settings, m_network, SettingName(arg), !UseDefaultSection(arg),
830 [ + - + - ]: 1018843 : /*ignore_nonpersistent=*/false, /*get_chain_type=*/false);
831 : 1018843 : }
832 : :
833 : 144025 : std::vector<common::SettingsValue> ArgsManager::GetSettingsList(const std::string& arg) const
834 : : {
835 : 144025 : LOCK(cs_args);
836 [ + - + - : 288050 : return common::GetSettingsList(m_settings, m_network, SettingName(arg), !UseDefaultSection(arg));
+ - + - ]
837 : 144025 : }
838 : :
839 : 2958 : void ArgsManager::logArgsPrefix(
840 : : const std::string& prefix,
841 : : const std::string& section,
842 : : const std::map<std::string, std::vector<common::SettingsValue>>& args) const
843 : : {
844 [ + + + - ]: 3943 : std::string section_str = section.empty() ? "" : "[" + section + "] ";
845 [ + + ]: 33354 : for (const auto& arg : args) {
846 [ + + ]: 62875 : for (const auto& value : arg.second) {
847 [ + - + - ]: 32479 : std::optional<unsigned int> flags = GetArgFlags('-' + arg.first);
848 [ + - ]: 32479 : if (flags) {
849 [ + + + - : 32479 : std::string value_str = (*flags & SENSITIVE) ? "****" : value.write();
+ - ]
850 [ + - ]: 32479 : LogPrintf("%s %s%s=%s\n", prefix, section_str, arg.first, value_str);
851 : 32479 : }
852 : : }
853 : : }
854 : 2958 : }
855 : :
856 : 987 : void ArgsManager::LogArgs() const
857 : : {
858 : 987 : LOCK(cs_args);
859 [ + + ]: 2958 : for (const auto& section : m_settings.ro_config) {
860 [ + - + - ]: 3942 : logArgsPrefix("Config file arg:", section.first, section.second);
861 : : }
862 [ + + ]: 1106 : for (const auto& setting : m_settings.rw_settings) {
863 [ + - + - ]: 238 : LogPrintf("Setting file arg: %s = %s\n", setting.first, setting.second.write());
864 : : }
865 [ + - + - : 1974 : logArgsPrefix("Command-line arg:", "", m_settings.command_line_options);
+ - + - ]
866 : 987 : }
867 : :
868 : : namespace common {
869 : : #ifdef WIN32
870 : : WinCmdLineArgs::WinCmdLineArgs()
871 : : {
872 : : wchar_t** wargv = CommandLineToArgvW(GetCommandLineW(), &argc);
873 : : std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>, wchar_t> utf8_cvt;
874 : : argv = new char*[argc];
875 : : args.resize(argc);
876 : : for (int i = 0; i < argc; i++) {
877 : : args[i] = utf8_cvt.to_bytes(wargv[i]);
878 : : argv[i] = &*args[i].begin();
879 : : }
880 : : LocalFree(wargv);
881 : : }
882 : :
883 : : WinCmdLineArgs::~WinCmdLineArgs()
884 : : {
885 : : delete[] argv;
886 : : }
887 : :
888 : : std::pair<int, char**> WinCmdLineArgs::get()
889 : : {
890 : : return std::make_pair(argc, argv);
891 : : }
892 : : #endif
893 : : } // namespace common
|