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