mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-09 21:57:20 +01:00
rpc: Refactor to process -rpcauth once
This commit is contained in:
parent
86bf3ae3b5
commit
d37c813a43
1 changed files with 10 additions and 9 deletions
|
@ -68,6 +68,8 @@ private:
|
||||||
static std::string strRPCUserColonPass;
|
static std::string strRPCUserColonPass;
|
||||||
/* Stored RPC timer interface (for unregistration) */
|
/* Stored RPC timer interface (for unregistration) */
|
||||||
static std::unique_ptr<HTTPRPCTimerInterface> httpRPCTimerInterface;
|
static std::unique_ptr<HTTPRPCTimerInterface> httpRPCTimerInterface;
|
||||||
|
/* List of -rpcauth values */
|
||||||
|
static std::vector<std::vector<std::string>> g_rpcauth;
|
||||||
/* RPC Auth Whitelist */
|
/* RPC Auth Whitelist */
|
||||||
static std::map<std::string, std::set<std::string>> g_rpc_whitelist;
|
static std::map<std::string, std::set<std::string>> g_rpc_whitelist;
|
||||||
static bool g_rpc_whitelist_default = false;
|
static bool g_rpc_whitelist_default = false;
|
||||||
|
@ -99,15 +101,7 @@ static bool multiUserAuthorized(std::string strUserPass)
|
||||||
std::string strUser = strUserPass.substr(0, strUserPass.find(':'));
|
std::string strUser = strUserPass.substr(0, strUserPass.find(':'));
|
||||||
std::string strPass = strUserPass.substr(strUserPass.find(':') + 1);
|
std::string strPass = strUserPass.substr(strUserPass.find(':') + 1);
|
||||||
|
|
||||||
for (const std::string& strRPCAuth : gArgs.GetArgs("-rpcauth")) {
|
for (const auto& vFields : g_rpcauth) {
|
||||||
//Search for multi-user login/pass "rpcauth" from config
|
|
||||||
std::vector<std::string> vFields;
|
|
||||||
boost::split(vFields, strRPCAuth, boost::is_any_of(":$"));
|
|
||||||
if (vFields.size() != 3) {
|
|
||||||
//Incorrect formatting in config file
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string strName = vFields[0];
|
std::string strName = vFields[0];
|
||||||
if (!TimingResistantEqual(strName, strUser)) {
|
if (!TimingResistantEqual(strName, strUser)) {
|
||||||
continue;
|
continue;
|
||||||
|
@ -259,6 +253,13 @@ static bool InitRPCAuthentication()
|
||||||
if (gArgs.GetArg("-rpcauth","") != "")
|
if (gArgs.GetArg("-rpcauth","") != "")
|
||||||
{
|
{
|
||||||
LogPrintf("Using rpcauth authentication.\n");
|
LogPrintf("Using rpcauth authentication.\n");
|
||||||
|
for (std::string rpcauth : gArgs.GetArgs("-rpcauth")) {
|
||||||
|
std::vector<std::string> fields;
|
||||||
|
boost::split(fields, rpcauth, boost::is_any_of(":$"));
|
||||||
|
if (fields.size() == 3) {
|
||||||
|
g_rpcauth.push_back(fields);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
g_rpc_whitelist_default = gArgs.GetBoolArg("-rpcwhitelistdefault", gArgs.IsArgSet("-rpcwhitelist"));
|
g_rpc_whitelist_default = gArgs.GetBoolArg("-rpcwhitelistdefault", gArgs.IsArgSet("-rpcwhitelist"));
|
||||||
|
|
Loading…
Add table
Reference in a new issue