61 return (LocaleIndependentAtoi<int>(strValue) != 0);
66 return arg.size() > 0 && arg[0] ==
'-' ? arg.substr(1) : arg;
81 size_t option_index = key.find(
'.');
82 if (option_index != std::string::npos) {
83 result.
section = key.substr(0, option_index);
84 key.erase(0, option_index + 1);
86 if (key.starts_with(
"no")) {
106 unsigned int flags, std::string& error)
111 error =
strprintf(
"Negating of -%s is meaningless and therefore forbidden", key.
name);
116 LogWarning(
"Parsed potentially confusing double-negative -%s=%s", key.
name, *value);
122 error =
strprintf(
"Can not set -%s with no value. Please specify value with -%s=value.", key.
name, key.
name);
125 return value ? *value :
"";
136 std::set<std::string> unsuitables;
141 if (m_network.empty())
return std::set<std::string> {};
146 for (
const auto& arg : m_network_only_args) {
148 unsuitables.insert(arg);
157 static const std::set<std::string> available_sections{
166 std::list<SectionInfo> unrecognized = m_config_sections;
167 unrecognized.remove_if([](
const SectionInfo& appeared){
return available_sections.contains(appeared.
m_name); });
180 m_settings.command_line_options.clear();
182 for (
int i = 1; i < argc; i++) {
183 std::string key(argv[i]);
190 if (key.starts_with(
"-psn_"))
continue;
193 if (key ==
"-")
break;
194 std::optional<std::string> val;
195 size_t is_index = key.find(
'=');
196 if (is_index != std::string::npos) {
197 val = key.substr(is_index + 1);
207 if (!m_accept_any_command &&
m_command.empty()) {
211 error =
strprintf(
"Invalid command '%s'", argv[i]);
224 if (key.length() > 1 && key[1] ==
'-')
236 error =
strprintf(
"Invalid parameter %s", argv[i]);
240 std::optional<common::SettingsValue> value =
InterpretValue(keyinfo, val ? &*val :
nullptr, *
flags, error);
241 if (!value)
return false;
243 m_settings.command_line_options[keyinfo.
name].push_back(*value);
247 if (
auto* includes =
common::FindKey(m_settings.command_line_options,
"includeconf")) {
251 error =
"-includeconf cannot be used from commandline; -includeconf=" +
values.begin()->write();
261 for (
const auto&
arg_map : m_available_args) {
263 if (search !=
arg_map.second.end()) {
264 return search->second.m_flags;
267 return m_default_flags;
279 m_default_flags =
flags;
286 if (value.isFalse())
return {};
288 if (path_str.empty())
return default_value;
291 return result.has_filename() ? result : result.parent_path();
303 fs::path& path = m_cached_blocks_path;
307 if (!path.empty())
return path;
311 if (!fs::is_directory(path)) {
321 fs::create_directories(path);
338 fs::path& path = net_specific ? m_cached_network_datadir_path : m_cached_datadir_path;
341 if (!path.empty())
return path;
344 if (!datadir.empty()) {
346 if (!fs::is_directory(path)) {
354 if (net_specific && !
BaseParams().DataDir().empty()) {
365 m_cached_datadir_path = fs::path();
366 m_cached_network_datadir_path = fs::path();
367 m_cached_blocks_path = fs::path();
379 if (!m_accept_any_command) {
381 ret.command = *(it++);
385 ret.args.push_back(*(it++));
392 std::vector<std::string> result;
394 result.push_back(value.isFalse() ?
"0" : value.isTrue() ?
"1" : value.get_str());
407 if (settings.empty()) {
419static void SaveErrors(
const std::vector<std::string> errors, std::vector<std::string>* error_out)
421 for (
const auto& error : errors) {
423 error_out->emplace_back(error);
438 m_settings.rw_settings.clear();
439 std::vector<std::string> read_errors;
444 for (
const auto& setting : m_settings.rw_settings) {
447 LogWarning(
"Ignoring unknown rw_settings value %s", setting.first);
455 fs::path path, path_tmp;
457 throw std::logic_error(
"Attempt to write settings file when dynamic settings are disabled.");
461 std::vector<std::string> write_errors;
487 return GetArg(strArg).value_or(strDefault);
498 if (value.
isNull())
return std::nullopt;
499 if (value.
isFalse())
return "0";
500 if (value.
isTrue())
return "1";
510template <std::
integral Int>
513 return GetArg<Int>(strArg).value_or(nDefault);
516template <std::
integral Int>
520 return SettingTo<Int>(value);
523template <std::
integral Int>
526 if (value.
isNull())
return std::nullopt;
528 if (value.
isTrue())
return 1;
530 return LocaleIndependentAtoi<Int>(value.
get_str());
533template <std::
integral Int>
536 return SettingTo<Int>(value).value_or(nDefault);
552 if (value.
isNull())
return std::nullopt;
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&)
577#undef INSTANTIATE_INT_TYPE
583 m_settings.forced_settings[
SettingName(strArg)] = strValue;
598 m_settings.forced_settings[
SettingName(strArg)] = strValue;
603 Assert(
cmd.find(
'=') == std::string::npos);
607 m_accept_any_command =
false;
618 size_t eq_index =
name.find(
'=');
619 if (eq_index == std::string::npos) {
620 eq_index =
name.size();
622 std::string arg_name =
name.substr(0, eq_index);
625 std::map<std::string, Arg>&
arg_map = m_available_args[cat];
630 m_network_only_args.emplace(arg_name);
636 for (
const std::string&
name : names) {
645 m_available_args.clear();
646 m_network_only_args.clear();
647 m_config_sections.clear();
653 std::vector<std::string> found{};
655 if (cmds != m_available_args.end()) {
656 for (
const auto& [
cmd, argspec] : cmds->second) {
658 found.push_back(
cmd);
661 if (found.size() > 1) {
662 throw std::runtime_error(
strprintf(
"Only one of %s may be specified.",
util::Join(found,
", ")));
669 const bool show_debug =
GetBoolArg(
"-help-debug",
false);
673 for (
const auto&
arg_map : m_available_args) {
703 if (show_debug) usage +=
HelpMessageGroup(
"Wallet debugging/testing options:");
727 for (
const auto& arg :
arg_map.second) {
730 if (arg.second.m_help_param.empty()) {
733 name = arg.first + arg.second.m_help_param;
758 return std::string(message) + std::string(
"\n\n");
761std::string
HelpMessageOpt(
const std::string &option,
const std::string &message) {
762 return std::string(
optIndent,
' ') + std::string(option) +
763 std::string(
"\n") + std::string(
msgIndent,
' ') +
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)",
777 return std::any_of(options.begin(), options.end(), [test_option](
const auto& option) {
778 return option == test_option;
792 fs::path legacy_path = GetSpecialFolderPath(CSIDL_APPDATA) /
"Bitcoin";
793 if (
fs::exists(legacy_path))
return legacy_path;
796 return GetSpecialFolderPath(CSIDL_LOCAL_APPDATA) /
"Bitcoin";
799 char* pszHome = getenv(
"HOME");
800 if (pszHome ==
nullptr || strlen(pszHome) == 0)
801 pathRet = fs::path(
"/");
803 pathRet = fs::path(pszHome);
806 return pathRet /
"Library/Application Support/Bitcoin";
809 return pathRet /
".bitcoin";
817 return datadir.empty() || fs::is_directory(
fs::absolute(datadir));
823 return *
Assert(m_config_path);
830 m_config_path = path;
835 std::variant<ChainType, std::string> arg =
GetChainArg();
836 if (
auto* parsed = std::get_if<ChainType>(&arg))
return *parsed;
837 throw std::runtime_error(
strprintf(
"Unknown chain %s.", std::get<std::string>(arg)));
843 if (
auto* parsed = std::get_if<ChainType>(&arg))
return ChainTypeToString(*parsed);
844 return std::get<std::string>(arg);
849 auto get_net = [&](
const std::string& arg) {
858 const bool fRegTest = get_net(
"-regtest");
859 const bool fSigNet = get_net(
"-signet");
860 const bool fTestNet = get_net(
"-testnet");
861 const bool fTestNet4 = get_net(
"-testnet4");
862 const auto chain_arg =
GetArg(
"-chain");
864 if ((
int)chain_arg.has_value() + (
int)fRegTest + (
int)fSigNet + (
int)fTestNet + (
int)fTestNet4 > 1) {
865 throw std::runtime_error(
"Invalid combination of -regtest, -signet, -testnet, -testnet4 and -chain. Can use at most one.");
906 const std::string&
prefix,
907 const std::string& section,
908 const std::map<std::string, std::vector<common::SettingsValue>>&
args)
const
911 std::string section_str = section.empty() ?
"" :
"[" + section +
"] ";
912 for (
const auto& arg :
args) {
913 for (
const auto& value : arg.second) {
916 std::string value_str = (*
flags &
SENSITIVE) ?
"****" : value.write();
917 LogInfo(
"%s %s%s=%s\n",
prefix, section_str, arg.first, value_str);
926 for (
const auto& section : m_settings.ro_config) {
927 logArgsPrefix(
"Config file arg:", section.first, section.second);
929 for (
const auto& setting : m_settings.rw_settings) {
930 LogInfo(
"Setting file arg: %s = %s\n", setting.first, setting.second.write());
932 logArgsPrefix(
"Command-line arg:",
"", m_settings.command_line_options);
const std::vector< std::string > TEST_OPTIONS_DOC
#define INSTANTIATE_INT_TYPE(Type)
bool HelpRequested(const ArgsManager &args)
void SetupHelpOptions(ArgsManager &args)
Add help options to the args manager.
fs::path GetDefaultDataDir()
static const int msgIndent
static void SaveErrors(const std::vector< std::string > errors, std::vector< std::string > *error_out)
std::optional< common::SettingsValue > InterpretValue(const KeyInfo &key, const std::string *value, unsigned int flags, std::string &error)
Interpret settings value based on registered flags.
const char *const BITCOIN_SETTINGS_FILENAME
bool CheckDataDirOption(const ArgsManager &args)
std::optional< bool > SettingToBool(const common::SettingsValue &value)
std::optional< std::string > SettingToString(const common::SettingsValue &value)
static const int screenWidth
std::optional< Int > SettingTo(const common::SettingsValue &value)
bool HasTestOption(const ArgsManager &args, const std::string &test_option)
Checks if a particular test option is present in -test command-line arg options.
static std::string SettingName(const std::string &arg)
std::string HelpMessageGroup(const std::string &message)
Format a string to be used as group of options in help messages.
KeyInfo InterpretKey(std::string key)
Parse "name", "section.name", "noname", "section.noname" settings keys.
const char *const BITCOIN_CONF_FILENAME
static bool InterpretBool(const std::string &strValue)
Interpret a string argument as a boolean.
static const int optIndent
std::string HelpMessageOpt(const std::string &option, const std::string &message)
Format a string to be used as option description in help messages.
const CBaseChainParams & BaseParams()
Return the currently selected parameters.
std::optional< ChainType > ChainTypeFromString(std::string_view chain)
std::string ChainTypeToString(ChainType chain)
#define Assert(val)
Identity function.
bool ParseParameters(int argc, const char *const argv[], std::string &error) EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
std::vector< common::SettingsValue > GetSettingsList(const std::string &arg) const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Get list of setting values.
std::vector< std::string > GetArgs(const std::string &strArg) const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Return a vector of strings of the given argument.
ChainType GetChainType() const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Returns the appropriate chain type from the program arguments.
void CheckMultipleCLIArgs() const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Check CLI command args.
@ ALLOW_ANY
disable validation
@ DISALLOW_NEGATION
disallow -nofoo syntax
@ DISALLOW_ELISION
disallow -foo syntax that doesn't assign any value
std::list< SectionInfo > GetUnrecognizedSections() const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Log warnings for unrecognized section names in the config file.
common::SettingsValue GetSetting(const std::string &arg) const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Get setting value.
bool GetSettingsPath(fs::path *filepath=nullptr, bool temp=false, bool backup=false) const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Get settings file path, or return false if read-write settings were disabled with -nosettings.
fs::path GetBlocksDirPath() const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Get blocks directory path.
fs::path GetDataDirBase() const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Get data directory path.
fs::path GetConfigFilePath() const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Return config file path (read-only)
void SetDefaultFlags(std::optional< unsigned int >) EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Set default flags to return for an unknown arg.
bool SoftSetArg(const std::string &strArg, const std::string &strValue) EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Set an argument if it doesn't already have a value.
std::set< std::string > GetUnsuitableSectionOnlyArgs() const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Log warnings for options in m_section_only_args when they are specified in the default section but no...
void AddArg(const std::string &name, const std::string &help, unsigned int flags, const OptionsCategory &cat) EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Add argument.
bool WriteSettingsFile(std::vector< std::string > *errors=nullptr, bool backup=false) const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Write settings file or backup settings file.
fs::path GetPathArg_(std::string arg, const fs::path &default_value={}) const EXCLUSIVE_LOCKS_REQUIRED(cs_args)
void ClearPathCache() EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Clear cached directory paths.
void AddCommand(const std::string &cmd, const std::string &help) EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Add subcommand.
fs::path GetDataDir(bool net_specific) const EXCLUSIVE_LOCKS_REQUIRED(cs_args)
Get data directory path.
void SetConfigFilePath(fs::path) EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
common::SettingsValue GetPersistentSetting(const std::string &name) const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Get current setting from config file or read/write settings file, ignoring nonpersistent command line...
void ForceSetArg(const std::string &strArg, const std::string &strValue) EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
fs::path GetPathArg(std::string arg, const fs::path &default_value={}) const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Return path argument or default value.
void LogArgs() const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Log the config file options and the command line arguments, useful for troubleshooting.
std::string GetArg(const std::string &strArg, const std::string &strDefault) const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Return string argument or default value.
void AddHiddenArgs(const std::vector< std::string > &args) EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Add many hidden arguments.
std::variant< ChainType, std::string > GetChainArg() const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Return -regtest/-signet/-testnet/-testnet4/-chain= setting as a ChainType enum if a recognized chain ...
void logArgsPrefix(const std::string &prefix, const std::string §ion, const std::map< std::string, std::vector< common::SettingsValue > > &args) const EXCLUSIVE_LOCKS_REQUIRED(cs_args)
std::string GetChainTypeString() const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Returns the appropriate chain type string from the program arguments.
bool ReadSettingsFile(std::vector< std::string > *errors=nullptr) EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Read settings file.
void ClearArgs() EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Clear available arguments.
bool IsArgSet(const std::string &strArg) const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Return true if the given argument has been manually set.
std::optional< const Command > GetCommand() const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Get the command and command args (returns std::nullopt if no command provided)
bool SoftSetBoolArg(const std::string &strArg, bool fValue) EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Set a boolean argument if it doesn't already have a value.
fs::path GetDataDirNet() const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Get data directory path with appended network identifier.
bool IsArgNegated(const std::string &strArg) const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Return true if the argument was originally passed as a negated option, i.e.
common::SettingsValue GetSetting_(const std::string &arg) const EXCLUSIVE_LOCKS_REQUIRED(cs_args)
std::optional< unsigned int > GetArgFlags(const std::string &name) const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Return Flags for known arg.
std::optional< unsigned int > GetArgFlags_(const std::string &name) const EXCLUSIVE_LOCKS_REQUIRED(cs_args)
bool UseDefaultSection(const std::string &arg) const EXCLUSIVE_LOCKS_REQUIRED(cs_args)
Returns true if settings values from the default section should be used, depending on the current net...
bool GetBoolArg(const std::string &strArg, bool fDefault) const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Return boolean argument or default value.
void SelectConfigNetwork(const std::string &network) EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Select the network in use.
std::string GetHelpMessage() const EXCLUSIVE_LOCKS_REQUIRED(!cs_args)
Get the help string.
const std::string & get_str() const
const std::string & getValStr() const
static path absolute(const path &p)
static bool exists(const path &p)
static std::string PathToString(const path &path)
Convert path object to a byte string.
static path PathFromString(const std::string &string)
Convert byte string to path object.
bool RenameOver(fs::path src, fs::path dest)
Rename src to dest.
bool WriteSettings(const fs::path &path, const std::map< std::string, SettingsValue > &values, std::vector< std::string > &errors)
Write settings file.
bool ReadSettings(const fs::path &path, std::map< std::string, SettingsValue > &values, std::vector< std::string > &errors)
Read settings file.
SettingsValue GetSetting(const Settings &settings, const std::string §ion, const std::string &name, bool ignore_default_section_config, bool ignore_nonpersistent, bool get_chain_type)
Get settings value from combined sources: forced settings, command line arguments,...
auto FindKey(Map &&map, Key &&key) -> decltype(&map.at(key))
Map lookup helper.
std::vector< SettingsValue > GetSettingsList(const Settings &settings, const std::string §ion, const std::string &name, bool ignore_default_section_config)
Get combined setting value similar to GetSetting(), except if setting was specified multiple times,...
bool OnlyHasDefaultSectionSetting(const Settings &settings, const std::string §ion, const std::string &name)
Return true if a setting is set in the default config file section, and not overridden by a higher pr...
fs::path AbsPathJoin(const fs::path &base, const fs::path &path)
Helper function for joining two paths.
auto Join(const C &container, const S &separator, UnaryOp unary_op)
Join all container items.
static const int64_t values[]
A selection of numbers that do not trigger int64_t overflow when added/subtracted.
Accessor for list of settings that skips negated values when iterated over.
static struct ArgMap arg_map[]
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.
std::string ToLower(std::string_view str)
Returns the lowercase equivalent of the given string.