// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2022 The Limenka developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include #include #include #include #include #include #include #include #include #include #include #include #include #ifdef WIN32 #include /* for codecvt_utf8_utf16 */ #include /* for CommandLineToArgvW */ #include /* for CSIDL_APPDATA */ #endif #include #include #include #include #include #include #include #include #include #include #include #include #include const char * const LIMENKA_CONF_FILENAME = "limenka.conf"; const char * const LIMENKA_SETTINGS_FILENAME = "settings.json"; const char * const LIMENKA_RW_CONF_FILENAME = "limenka_rw.conf"; ArgsManager gArgs; /** * Interpret a string argument as a boolean. * * The definition of LocaleIndependentAtoi() requires that non-numeric string values * like "foo", return 0. This means that if a user unintentionally supplies a * non-integer argument here, the return value is always false. This means that * -foo=false does what the user probably expects, but -foo=true is well defined * but does not do what they probably expected. * * The return value of LocaleIndependentAtoi(...) is zero when given input not * representable as an int. * * For a more extensive discussion of this topic (and a wide range of opinions * on the Right Way to change this code), see PR12713. */ static bool InterpretBool(const std::string& strValue) { if (strValue.empty()) return true; return (LocaleIndependentAtoi(strValue) != 0); } static std::string SettingName(const std::string& arg) { return arg.size() > 0 && arg[0] == '-' ? arg.substr(1) : arg; } /** * Parse "name", "section.name", "noname", "section.noname" settings keys. * * @note Where an option was negated can be later checked using the * IsArgNegated() method. One use case for this is to have a way to disable * options that are not normally boolean (e.g. using -nodebuglogfile to request * that debug log output is not sent to any file at all). */ KeyInfo InterpretKey(std::string key) { KeyInfo result; // Split section name from key name for keys like "testnet.foo" or "regtest.bar" size_t option_index = key.find('.'); if (option_index != std::string::npos) { result.section = key.substr(0, option_index); key.erase(0, option_index + 1); } if (key.substr(0, 2) == "no") { key.erase(0, 2); result.negated = true; } result.name = key; return result; } /** * Interpret settings value based on registered flags. * * @param[in] key key information to know if key was negated * @param[in] value string value of setting to be parsed * @param[in] flags ArgsManager registered argument flags * @param[out] error Error description if settings value is not valid * * @return parsed settings value if it is valid, otherwise nullopt accompanied * by a descriptive error string */ std::optional InterpretValue(const KeyInfo& key, const std::string* value, unsigned int flags, std::string& error) { // Return negated settings as false values. if (key.negated) { if (flags & ArgsManager::DISALLOW_NEGATION) { error = strprintf("Negating of -%s is meaningless and therefore forbidden", key.name); return std::nullopt; } // Double negatives like -nofoo=0 are supported (but discouraged) if (value && !InterpretBool(*value)) { LogWarning("Parsed potentially confusing double-negative -%s=%s", key.name, *value); return true; } return false; } if (!value && (flags & ArgsManager::DISALLOW_ELISION)) { error = strprintf("Can not set -%s with no value. Please specify value with -%s=value.", key.name, key.name); return std::nullopt; } return value ? *value : ""; } // Define default constructor and destructor that are not inline, so code instantiating this class doesn't need to // #include class definitions for all members. // For example, m_settings has an internal dependency on univalue. ArgsManager::ArgsManager() = default; ArgsManager::~ArgsManager() = default; std::set ArgsManager::GetUnsuitableSectionOnlyArgs() const { std::set unsuitables; LOCK(cs_args); // if there's no section selected, don't worry if (m_network.empty()) return std::set {}; // if it's okay to use the default section for this network, don't worry if (m_network == ChainTypeToString(ChainType::MAIN)) return std::set {}; for (const auto& arg : m_network_only_args) { if (OnlyHasDefaultSectionSetting(m_settings, m_network, SettingName(arg))) { unsuitables.insert(arg); } } return unsuitables; } std::list ArgsManager::GetUnrecognizedSections() const { // Section names to be recognized in the config file. static const std::set available_sections{ ChainTypeToString(ChainType::REGTEST), ChainTypeToString(ChainType::SIGNET), ChainTypeToString(ChainType::TESTNET), ChainTypeToString(ChainType::TESTNET4), ChainTypeToString(ChainType::MAIN), }; LOCK(cs_args); std::list unrecognized = m_config_sections; unrecognized.remove_if([](const SectionInfo& appeared){ return available_sections.find(appeared.m_name) != available_sections.end(); }); return unrecognized; } void ArgsManager::SelectConfigNetwork(const std::string& network) { LOCK(cs_args); m_network = network; } bool ArgsManager::ParseParameters(int argc, const char* const argv[], std::string& error) { LOCK(cs_args); m_settings.command_line_options.clear(); for (int i = 1; i < argc; i++) { std::string key(argv[i]); #ifdef __APPLE__ // At the first time when a user gets the "App downloaded from the // internet" warning, and clicks the Open button, macOS passes // a unique process serial number (PSN) as -psn_... command-line // argument, which we filter out. if (key.substr(0, 5) == "-psn_") continue; #endif if (key == "-") break; //limenka-tx using stdin std::optional val; size_t is_index = key.find('='); if (is_index != std::string::npos) { val = key.substr(is_index + 1); key.erase(is_index); } #ifdef WIN32 key = ToLower(key); if (key[0] == '/') key[0] = '-'; #endif if (key[0] != '-') { if (!m_accept_any_command && m_command.empty()) { // The first non-dash arg is a registered command std::optional flags = GetArgFlags(key); if (!flags || !(*flags & ArgsManager::COMMAND)) { error = strprintf("Invalid command '%s'", argv[i]); return false; } } m_command.push_back(key); while (++i < argc) { // The remaining args are command args m_command.emplace_back(argv[i]); } break; } // Transform --foo to -foo if (key.length() > 1 && key[1] == '-') key.erase(0, 1); // Transform -foo to foo key.erase(0, 1); KeyInfo keyinfo = InterpretKey(key); std::optional flags = GetArgFlags('-' + keyinfo.name); // Unknown command line options and command line options with dot // characters (which are returned from InterpretKey with nonempty // section strings) are not valid. if (!flags || !keyinfo.section.empty()) { error = strprintf("Invalid parameter %s", argv[i]); return false; } std::optional value = InterpretValue(keyinfo, val ? &*val : nullptr, *flags, error); if (!value) return false; m_settings.command_line_options[keyinfo.name].push_back(*value); } // we do not allow -includeconf from command line, only -noincludeconf if (auto* includes = common::FindKey(m_settings.command_line_options, "includeconf")) { const common::SettingsSpan values{*includes}; // Range may be empty if -noincludeconf was passed if (!values.empty()) { error = "-includeconf cannot be used from commandline; -includeconf=" + values.begin()->write(); return false; // pick first value as example } } return true; } std::optional ArgsManager::GetArgFlags(const std::string& name) const { LOCK(cs_args); for (const auto& arg_map : m_available_args) { const auto search = arg_map.second.find(name); if (search != arg_map.second.end()) { return search->second.m_flags; } } return std::nullopt; } fs::path ArgsManager::GetPathArg(std::string arg, const fs::path& default_value) const { if (IsArgNegated(arg)) return fs::path{}; std::string path_str = GetArg(arg, ""); if (path_str.empty()) return default_value; fs::path result = fs::PathFromString(path_str).lexically_normal(); // Remove trailing slash, if present. return result.has_filename() ? result : result.parent_path(); } fs::path ArgsManager::GetBlocksDirPath() const { LOCK(cs_args); fs::path& path = m_cached_blocks_path; // Cache the path to avoid calling fs::create_directories on every call of // this function if (!path.empty()) return path; if (IsArgSet("-blocksdir")) { path = fs::absolute(GetPathArg("-blocksdir")); if (!fs::is_directory(path)) { path = ""; return path; } } else { path = GetDataDirBase(); } path /= fs::PathFromString(BaseParams().DataDir()); path /= "blocks"; fs::create_directories(path); return path; } fs::path ArgsManager::GetDataDir(bool net_specific) const { LOCK(cs_args); fs::path& path = net_specific ? m_cached_network_datadir_path : m_cached_datadir_path; // Used cached path if available if (!path.empty()) return path; const fs::path datadir{GetPathArg("-datadir")}; if (!datadir.empty()) { path = fs::absolute(datadir); if (!fs::is_directory(path)) { path = ""; return path; } } else { path = GetDefaultDataDir(); } if (net_specific && !BaseParams().DataDir().empty()) { path /= fs::PathFromString(BaseParams().DataDir()); } return path; } void ArgsManager::ClearPathCache() { LOCK(cs_args); m_cached_datadir_path = fs::path(); m_cached_network_datadir_path = fs::path(); m_cached_blocks_path = fs::path(); } std::optional ArgsManager::GetCommand() const { Command ret; LOCK(cs_args); auto it = m_command.begin(); if (it == m_command.end()) { // No command was passed return std::nullopt; } if (!m_accept_any_command) { // The registered command ret.command = *(it++); } while (it != m_command.end()) { // The unregistered command and args (if any) ret.args.push_back(*(it++)); } return ret; } std::vector ArgsManager::GetArgs(const std::string& strArg) const { std::vector result; for (const common::SettingsValue& value : GetSettingsList(strArg)) { result.push_back(value.isFalse() ? "0" : value.isTrue() ? "1" : value.get_str()); } return result; } bool ArgsManager::IsArgSet(const std::string& strArg) const { return !GetSetting(strArg).isNull(); } bool ArgsManager::GetSettingsPath(fs::path* filepath, bool temp, bool backup) const { fs::path settings = GetPathArg("-settings", LIMENKA_SETTINGS_FILENAME); if (settings.empty()) { return false; } if (backup) { settings += ".bak"; } if (filepath) { *filepath = fsbridge::AbsPathJoin(GetDataDirNet(), temp ? settings + ".tmp" : settings); } return true; } static void SaveErrors(const std::vector errors, std::vector* error_out) { for (const auto& error : errors) { if (error_out) { error_out->emplace_back(error); } else { LogWarning("%s", error); } } } bool ArgsManager::ReadSettingsFile(std::vector* errors) { fs::path path; if (!GetSettingsPath(&path, /* temp= */ false)) { return true; // Do nothing if settings file disabled. } LOCK(cs_args); m_settings.rw_settings.clear(); std::vector read_errors; if (!common::ReadSettings(path, m_settings.rw_settings, read_errors)) { SaveErrors(read_errors, errors); return false; } for (const auto& setting : m_settings.rw_settings) { KeyInfo key = InterpretKey(setting.first); // Split setting key into section and argname if (!GetArgFlags('-' + key.name)) { LogWarning("Ignoring unknown rw_settings value %s", setting.first); } } return true; } bool ArgsManager::WriteSettingsFile(std::vector* errors, bool backup) const { fs::path path, path_tmp; if (!GetSettingsPath(&path, /*temp=*/false, backup) || !GetSettingsPath(&path_tmp, /*temp=*/true, backup)) { throw std::logic_error("Attempt to write settings file when dynamic settings are disabled."); } LOCK(cs_args); std::vector write_errors; if (!common::WriteSettings(path_tmp, m_settings.rw_settings, write_errors)) { SaveErrors(write_errors, errors); return false; } if (!RenameOver(path_tmp, path)) { SaveErrors({strprintf("Failed renaming settings file %s to %s\n", fs::PathToString(path_tmp), fs::PathToString(path))}, errors); return false; } return true; } common::SettingsValue ArgsManager::GetPersistentSetting(const std::string& name) const { LOCK(cs_args); return common::GetSetting(m_settings, m_network, name, !UseDefaultSection("-" + name), /*ignore_nonpersistent=*/true, /*get_chain_type=*/false); } bool ArgsManager::IsArgNegated(const std::string& strArg) const { return GetSetting(strArg).isFalse(); } std::string ArgsManager::GetArg(const std::string& strArg, const std::string& strDefault) const { return GetArg(strArg).value_or(strDefault); } std::optional ArgsManager::GetArg(const std::string& strArg) const { const common::SettingsValue value = GetSetting(strArg); return SettingToString(value); } std::optional SettingToString(const common::SettingsValue& value) { if (value.isNull()) return std::nullopt; if (value.isFalse()) return "0"; if (value.isTrue()) return "1"; if (value.isNum()) return value.getValStr(); return value.get_str(); } std::string SettingToString(const common::SettingsValue& value, const std::string& strDefault) { return SettingToString(value).value_or(strDefault); } int64_t ArgsManager::GetIntArg(const std::string& strArg, int64_t nDefault) const { return GetIntArg(strArg).value_or(nDefault); } std::optional ArgsManager::GetIntArg(const std::string& strArg) const { const common::SettingsValue value = GetSetting(strArg); return SettingToInt(value); } std::optional SettingToInt(const common::SettingsValue& value) { if (value.isNull()) return std::nullopt; if (value.isFalse()) return 0; if (value.isTrue()) return 1; if (value.isNum()) return value.getInt(); return LocaleIndependentAtoi(value.get_str()); } int64_t SettingToInt(const common::SettingsValue& value, int64_t nDefault) { return SettingToInt(value).value_or(nDefault); } std::optional ArgsManager::GetFixedPointArg(const std::string& arg, int decimals) const { const common::SettingsValue value = GetSetting(arg); return SettingToFixedPoint(value, decimals); } std::optional SettingToFixedPoint(const common::SettingsValue& value, int decimals) { if (value.isNull()) return std::nullopt; if (value.isFalse()) return 0; if (value.isTrue()) return 1; if (!value.isNum()) value.get_str(); // throws an exception if type is wrong int64_t v; if (!ParseFixedPoint(value.getValStr(), decimals, &v)) { throw std::runtime_error(strprintf("Parse error ('%s')", value.getValStr())); } return v; } bool ArgsManager::GetBoolArg(const std::string& strArg, bool fDefault) const { return GetBoolArg(strArg).value_or(fDefault); } std::optional ArgsManager::GetBoolArg(const std::string& strArg) const { const common::SettingsValue value = GetSetting(strArg); return SettingToBool(value); } std::optional SettingToBool(const common::SettingsValue& value) { switch (value.getType()) { case UniValue::VNULL: return std::nullopt; case UniValue::VBOOL: return value.get_bool(); case UniValue::VOBJ: case UniValue::VARR: // Throws an exception value.get_str(); assert(false); case UniValue::VSTR: case UniValue::VNUM: return InterpretBool(value.getValStr()); } assert(false); } bool SettingToBool(const common::SettingsValue& value, bool fDefault) { return SettingToBool(value).value_or(fDefault); } bool ArgsManager::SoftSetArg(const std::string& strArg, const std::string& strValue) { LOCK(cs_args); if (IsArgSet(strArg)) return false; ForceSetArg(strArg, strValue); return true; } bool ArgsManager::SoftSetBoolArg(const std::string& strArg, bool fValue) { if (fValue) return SoftSetArg(strArg, std::string("1")); else return SoftSetArg(strArg, std::string("0")); } void ArgsManager::ForceSetArg(const std::string& strArg, const std::string& strValue) { ForceSetArgV(strArg, common::SettingsValue{strValue}); } void ArgsManager::ForceSetArg(const std::string& arg, const int64_t value) { ForceSetArg(arg, util::ToString(value)); } void ArgsManager::ForceSetArgV(const std::string& arg, const common::SettingsValue& value) { LOCK(cs_args); m_settings.forced_settings[SettingName(arg)] = value; } void ArgsManager::AddCommand(const std::string& cmd, const std::string& help) { Assert(cmd.find('=') == std::string::npos); Assert(cmd.at(0) != '-'); LOCK(cs_args); m_accept_any_command = false; // latch to false std::map& arg_map = m_available_args[OptionsCategory::COMMANDS]; auto ret = arg_map.emplace(cmd, Arg{"", help, ArgsManager::COMMAND}); Assert(ret.second); // Fail on duplicate commands } void ArgsManager::AddArg(const std::string& name, const std::string& help, unsigned int flags, const OptionsCategory& cat) { Assert((flags & ArgsManager::COMMAND) == 0); // use AddCommand // Split arg name from its help param size_t eq_index = name.find('='); if (eq_index == std::string::npos) { eq_index = name.size(); } std::string arg_name = name.substr(0, eq_index); LOCK(cs_args); std::map& arg_map = m_available_args[cat]; auto ret = arg_map.emplace(arg_name, Arg{name.substr(eq_index, name.size() - eq_index), help, flags}); assert(ret.second); // Make sure an insertion actually happened if (flags & ArgsManager::NETWORK_ONLY) { m_network_only_args.emplace(arg_name); } } void ArgsManager::AddHiddenArgs(const std::vector& names, unsigned int flags) { for (const std::string& name : names) { AddArg(name, "", flags, OptionsCategory::HIDDEN); } } void ArgsManager::CheckMultipleCLIArgs() const { LOCK(cs_args); std::vector found{}; auto cmds = m_available_args.find(OptionsCategory::CLI_COMMANDS); if (cmds != m_available_args.end()) { for (const auto& [cmd, argspec] : cmds->second) { if (IsArgSet(cmd)) { found.push_back(cmd); } } if (found.size() > 1) { throw std::runtime_error(strprintf("Only one of %s may be specified.", util::Join(found, ", "))); } } } std::string ArgsManager::GetHelpMessage() const { const bool show_debug = GetBoolArg("-help-debug", false); std::string usage; LOCK(cs_args); for (const auto& arg_map : m_available_args) { switch(arg_map.first) { case OptionsCategory::OPTIONS: usage += HelpMessageGroup("Options:"); break; case OptionsCategory::CONNECTION: usage += HelpMessageGroup("Connection options:"); break; case OptionsCategory::ZMQ: usage += HelpMessageGroup("ZeroMQ notification options:"); break; case OptionsCategory::DEBUG_TEST: usage += HelpMessageGroup("Debugging/Testing options:"); break; case OptionsCategory::NODE_RELAY: usage += HelpMessageGroup("Node relay options:"); break; case OptionsCategory::BLOCK_CREATION: usage += HelpMessageGroup("Block creation options:"); break; case OptionsCategory::RPC: usage += HelpMessageGroup("RPC server options:"); break; case OptionsCategory::IPC: usage += HelpMessageGroup("IPC interprocess connection options:"); break; case OptionsCategory::WALLET: usage += HelpMessageGroup("Wallet options:"); break; case OptionsCategory::WALLET_DEBUG_TEST: if (show_debug) usage += HelpMessageGroup("Wallet debugging/testing options:"); break; case OptionsCategory::CHAINPARAMS: usage += HelpMessageGroup("Chain selection options:"); break; case OptionsCategory::GUI: usage += HelpMessageGroup("UI Options:"); break; case OptionsCategory::COMMANDS: usage += HelpMessageGroup("Commands:"); break; case OptionsCategory::REGISTER_COMMANDS: usage += HelpMessageGroup("Register Commands:"); break; case OptionsCategory::CLI_COMMANDS: usage += HelpMessageGroup("CLI Commands:"); break; case OptionsCategory::STATS: usage += HelpMessageGroup("Statistic options:"); break; default: break; } // When we get to the hidden options, stop if (arg_map.first == OptionsCategory::HIDDEN) break; for (const auto& arg : arg_map.second) { if (show_debug || !(arg.second.m_flags & ArgsManager::DEBUG_ONLY)) { std::string name; if (arg.second.m_help_param.empty()) { name = arg.first; } else { name = arg.first + arg.second.m_help_param; } usage += HelpMessageOpt(name, arg.second.m_help_text); } } } return usage; } bool HelpRequested(const ArgsManager& args) { return args.IsArgSet("-?") || args.IsArgSet("-h") || args.IsArgSet("-help") || args.IsArgSet("-help-debug"); } void SetupHelpOptions(ArgsManager& args) { args.AddArg("-help", "Print this help message and exit (also -h or -?)", ArgsManager::DISALLOW_NEGATION, OptionsCategory::OPTIONS); args.AddHiddenArgs({"-h", "-?"}, ArgsManager::DISALLOW_NEGATION); } static const int screenWidth = 79; static const int optIndent = 2; static const int msgIndent = 7; std::string HelpMessageGroup(const std::string &message) { return std::string(message) + std::string("\n\n"); } std::string HelpMessageOpt(const std::string &option, const std::string &message) { return std::string(optIndent,' ') + std::string(option) + std::string("\n") + std::string(msgIndent,' ') + FormatParagraph(message, screenWidth - msgIndent, msgIndent) + std::string("\n\n"); } const std::vector TEST_OPTIONS_DOC{ "addrman (use deterministic addrman)", "reindex_after_failure_noninteractive_yes (When asked for a reindex after failure interactively, simulate as-if answered with 'yes')", "bip94 (enforce BIP94 consensus rules)", }; bool HasTestOption(const ArgsManager& args, const std::string& test_option) { const auto options = args.GetArgs("-test"); return std::any_of(options.begin(), options.end(), [test_option](const auto& option) { return option == test_option; }); } fs::path GetDefaultDataDir() { // Windows: // old: C:\Users\Username\AppData\Roaming\Limenka // new: C:\Users\Username\AppData\Local\Limenka // macOS: ~/Library/Application Support/Limenka // Unix-like: ~/.limenka #ifdef WIN32 // Windows // Check for existence of datadir in old location and keep it there fs::path legacy_path = GetSpecialFolderPath(CSIDL_APPDATA) / "Limenka"; if (fs::exists(legacy_path)) return legacy_path; // Otherwise, fresh installs can start in the new, "proper" location return GetSpecialFolderPath(CSIDL_LOCAL_APPDATA) / "Limenka"; #else fs::path pathRet; char* pszHome = getenv("HOME"); if (pszHome == nullptr || strlen(pszHome) == 0) pathRet = fs::path("/"); else pathRet = fs::path(pszHome); #ifdef __APPLE__ // macOS return pathRet / "Library/Application Support/Limenka"; #else // Unix-like return pathRet / ".limenka"; #endif #endif } bool CheckDataDirOption(const ArgsManager& args) { const fs::path datadir{args.GetPathArg("-datadir")}; return datadir.empty() || fs::is_directory(fs::absolute(datadir)); } fs::path ArgsManager::GetConfigFilePath() const { LOCK(cs_args); return *Assert(m_config_path); } void ArgsManager::SetConfigFilePath(fs::path path) { LOCK(cs_args); assert(!m_config_path); m_config_path = path; } fs::path ArgsManager::GetRWConfigFilePath() const { LOCK(cs_args); return *Assert(m_rwconf_path); } ChainType ArgsManager::GetChainType() const { std::variant arg = GetChainArg(); if (auto* parsed = std::get_if(&arg)) return *parsed; throw std::runtime_error(strprintf("Unknown chain %s.", std::get(arg))); } std::string ArgsManager::GetChainTypeString() const { auto arg = GetChainArg(); if (auto* parsed = std::get_if(&arg)) return ChainTypeToString(*parsed); return std::get(arg); } std::variant ArgsManager::GetChainArg() const { auto get_net = [&](const std::string& arg) { LOCK(cs_args); common::SettingsValue value = common::GetSetting(m_settings, /* section= */ "", SettingName(arg), /* ignore_default_section_config= */ false, /*ignore_nonpersistent=*/false, /* get_chain_type= */ true); return value.isNull() ? false : value.isBool() ? value.get_bool() : InterpretBool(value.get_str()); }; const bool fRegTest = get_net("-regtest"); const bool fSigNet = get_net("-signet"); const bool fTestNet = get_net("-testnet"); const bool fTestNet4 = get_net("-testnet4"); const bool fFork = get_net("-limenka"); const auto chain_arg = GetArg("-chain"); if ((int)chain_arg.has_value() + (int)fRegTest + (int)fSigNet + (int)fTestNet + (int)fTestNet4 + (int)fFork > 1) { throw std::runtime_error("Invalid combination of -regtest, -signet, -testnet, -testnet4, -limenka and -chain. Can use at most one."); } if (chain_arg) { if (auto parsed = ChainTypeFromString(*chain_arg)) return *parsed; return *chain_arg; } if (fRegTest) return ChainType::REGTEST; if (fSigNet) return ChainType::SIGNET; if (fTestNet) return ChainType::TESTNET; if (fTestNet4) return ChainType::TESTNET4; if (fFork) return ChainType::FORK; return ChainType::MAIN; } bool ArgsManager::UseDefaultSection(const std::string& arg) const { return m_network == ChainTypeToString(ChainType::MAIN) || m_network_only_args.count(arg) == 0; } common::SettingsValue ArgsManager::GetSetting(const std::string& arg) const { LOCK(cs_args); return common::GetSetting( m_settings, m_network, SettingName(arg), !UseDefaultSection(arg), /*ignore_nonpersistent=*/false, /*get_chain_type=*/false); } std::vector ArgsManager::GetSettingsList(const std::string& arg) const { LOCK(cs_args); return common::GetSettingsList(m_settings, m_network, SettingName(arg), !UseDefaultSection(arg)); } void ArgsManager::logArgsPrefix( const std::string& prefix, const std::string& section, const std::map>& args) const { std::string section_str = section.empty() ? "" : "[" + section + "] "; for (const auto& arg : args) { for (const auto& value : arg.second) { std::optional flags = GetArgFlags('-' + arg.first); if (flags) { std::string value_str = (*flags & SENSITIVE) ? "****" : value.write(); LogPrintf("%s %s%s=%s\n", prefix, section_str, arg.first, value_str); } } } } void ArgsManager::LogArgs() const { LOCK(cs_args); for (const auto& section : m_settings.ro_config) { logArgsPrefix("Config file arg:", section.first, section.second); } for (const auto& setting : m_settings.rw_settings) { LogPrintf("Setting file arg: %s = %s\n", setting.first, setting.second.write()); } logArgsPrefix("R/W config file arg:", "", m_settings.rw_config); logArgsPrefix("Command-line arg:", "", m_settings.command_line_options); } namespace { // Like std::getline, but includes the EOL character in the result bool getline_with_eol(std::istream& stream, std::string& result) { int current_char; current_char = stream.get(); if (current_char == std::char_traits::eof()) { return false; } result.clear(); result.push_back(char(current_char)); while (current_char != '\n') { current_char = stream.get(); if (current_char == std::char_traits::eof()) { break; } result.push_back(char(current_char)); } return true; } const char * const ModifyRWConfigFile_ws_chars = " \t\r\n"; void ModifyRWConfigFile_SanityCheck(const std::string& s) { if (s.empty()) { // Dereferencing .begin or .rbegin below is invalid unless the string has at least one character. return; } static const char * const newline_chars = "\r\n"; static std::string ws_chars(ModifyRWConfigFile_ws_chars); if (s.find_first_of(newline_chars) != std::string::npos) { throw std::invalid_argument("New-line in config name/value"); } if (ws_chars.find(*s.begin()) != std::string::npos || ws_chars.find(*s.rbegin()) != std::string::npos) { throw std::invalid_argument("Config name/value has leading/trailing whitespace"); } } void ModifyRWConfigFile_WriteRemaining(std::ostream& stream_out, const std::map& settings_to_change, std::set& setFound) { for (const auto& setting_pair : settings_to_change) { const std::string& key = setting_pair.first; const std::string& val = setting_pair.second; if (setFound.find(key) != setFound.end()) { continue; } setFound.insert(key); ModifyRWConfigFile_SanityCheck(key); ModifyRWConfigFile_SanityCheck(val); stream_out << key << "=" << val << "\n"; } } } // namespace void ModifyRWConfigStream(std::istream& stream_in, std::ostream& stream_out, const std::map& settings_to_change) { static const char * const ws_chars = ModifyRWConfigFile_ws_chars; std::set setFound; std::string s, lineend, linebegin, key; std::string::size_type n, n2; bool inside_group = false, have_eof_nl = true; std::map::const_iterator iterCS; size_t lineno = 0; while (getline_with_eol(stream_in, s)) { ++lineno; have_eof_nl = (!s.empty()) && (*s.rbegin() == '\n'); n = s.find('#'); const bool has_comment = (n != std::string::npos); if (!has_comment) { n = s.size(); } if (n > 0) { n2 = s.find_last_not_of(ws_chars, n - 1); if (n2 != std::string::npos) { n = n2 + 1; } } n2 = s.find_first_not_of(ws_chars); if (n2 == std::string::npos || n2 >= n) { // Blank or comment-only line stream_out << s; continue; } lineend = s.substr(n); linebegin = s.substr(0, n2); s = s.substr(n2, n - n2); // It is impossible for s to be empty here, due to the blank line check above if (*s.begin() == '[' && *s.rbegin() == ']') { // We don't use sections, so we could possibly just write out the rest of the file - but we need to check for unparsable lines, so we just set a flag to ignore settings from here on ModifyRWConfigFile_WriteRemaining(stream_out, settings_to_change, setFound); inside_group = true; key.clear(); stream_out << linebegin << s << lineend; continue; } n = s.find('='); if (n == std::string::npos) { // Bad line; this causes boost to throw an exception when parsing, so we comment out the entire file stream_in.seekg(0, std::ios_base::beg); stream_out.seekp(0, std::ios_base::beg); if (!(stream_in.good() && stream_out.good())) { throw std::ios_base::failure("Failed to rewind (to comment out existing file)"); } // First, write out all the settings we intend to set setFound.clear(); ModifyRWConfigFile_WriteRemaining(stream_out, settings_to_change, setFound); // We then define a category to ensure new settings get added before the invalid stuff stream_out << "[INVALID]\n"; // Then, describe the problem in a comment stream_out << "# Error parsing line " << lineno << ": " << s << "\n"; // Finally, dump the rest of the file commented out while (getline_with_eol(stream_in, s)) { stream_out << "#" << s; } return; } if (!inside_group) { // We don't support/use groups, so once we're inside key is always null to avoid setting anything n2 = s.find_last_not_of(ws_chars, n - 1); if (n2 == std::string::npos) { n2 = n - 1; } else { ++n2; } key = s.substr(0, n2); } if ((!key.empty()) && (iterCS = settings_to_change.find(key)) != settings_to_change.end() && setFound.find(key) == setFound.end()) { // This is the key we want to change const std::string& val = iterCS->second; setFound.insert(key); ModifyRWConfigFile_SanityCheck(val); if (has_comment) { // Rather than change a commented line, comment it out entirely (the existing comment may relate to the value) and replace it stream_out << key << "=" << val << "\n"; linebegin.insert(linebegin.begin(), '#'); } else { // Just modify the value in-line otherwise n2 = s.find_first_not_of(ws_chars, n + 1); if (n2 == std::string::npos) { n2 = n + 1; } s = s.substr(0, n2) + val; } } stream_out << linebegin << s << lineend; } if (setFound.size() < settings_to_change.size()) { if (!have_eof_nl) { stream_out << "\n"; } ModifyRWConfigFile_WriteRemaining(stream_out, settings_to_change, setFound); } } void ArgsManager::ModifyRWConfigFile(const std::map& settings_to_change, const bool also_settings_json) { LOCK(cs_args); fs::path rwconf_path{GetRWConfigFilePath()}; fs::path rwconf_new_path{rwconf_path}; rwconf_new_path += ".new"; try { fs::remove(rwconf_new_path); std::ofstream streamRWConfigOut(rwconf_new_path, std::ios_base::out | std::ios_base::trunc); if (fs::exists(rwconf_path)) { std::ifstream streamRWConfig(rwconf_path); ::ModifyRWConfigStream(streamRWConfig, streamRWConfigOut, settings_to_change); } else { std::istringstream streamIn; ::ModifyRWConfigStream(streamIn, streamRWConfigOut, settings_to_change); } } catch (...) { fs::remove(rwconf_new_path); throw; } if (!RenameOver(rwconf_new_path, rwconf_path)) { fs::remove(rwconf_new_path); throw std::ios_base::failure(strprintf("Failed to replace %s", fs::PathToString(rwconf_new_path))); } for (const auto& setting_change : settings_to_change) { m_settings.rw_config[setting_change.first] = {setting_change.second}; } if (also_settings_json && !IsArgNegated("-settings")) { // Also save to settings.json for Core (0.21+) compatibility for (const auto& setting_change : settings_to_change) { m_settings.rw_settings[setting_change.first] = setting_change.second; } WriteSettingsFile(); } if (settings_to_change.count("prune")) { m_rwconf_had_prune_option = true; } } void ArgsManager::ModifyRWConfigFile(const std::string& setting_to_change, const std::string& new_value, const bool also_settings_json) { std::map settings_to_change; settings_to_change[setting_to_change] = new_value; ModifyRWConfigFile(settings_to_change, also_settings_json); } void ArgsManager::EraseRWConfigFile() { LOCK(cs_args); fs::path rwconf_path{GetRWConfigFilePath()}; if (!fs::exists(rwconf_path)) { return; } fs::path rwconf_reset_path = rwconf_path; rwconf_reset_path += ".reset"; if (!RenameOver(rwconf_path, rwconf_reset_path)) { if (fs::remove(rwconf_path)) { throw std::ios_base::failure(strprintf("Failed to remove %s", fs::PathToString(rwconf_path))); } } } namespace common { #ifdef WIN32 WinCmdLineArgs::WinCmdLineArgs() { wchar_t** wargv = CommandLineToArgvW(GetCommandLineW(), &argc); std::wstring_convert, wchar_t> utf8_cvt; argv = new char*[argc]; args.resize(argc); for (int i = 0; i < argc; i++) { args[i] = utf8_cvt.to_bytes(wargv[i]); argv[i] = &*args[i].begin(); } LocalFree(wargv); } WinCmdLineArgs::~WinCmdLineArgs() { delete[] argv; } std::pair WinCmdLineArgs::get() { return std::make_pair(argc, argv); } #endif } // namespace common