Bitcoin Core 22.99.0
P2P Digital Currency
httprpc.cpp
Go to the documentation of this file.
1// Copyright (c) 2015-2020 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#include <httprpc.h>
6
7#include <chainparams.h>
9#include <httpserver.h>
10#include <rpc/protocol.h>
11#include <rpc/server.h>
12#include <util/strencodings.h>
13#include <util/string.h>
14#include <util/system.h>
15#include <util/translation.h>
16#include <walletinitinterface.h>
17
18#include <algorithm>
19#include <iterator>
20#include <map>
21#include <memory>
22#include <stdio.h>
23#include <set>
24#include <string>
25
26#include <boost/algorithm/string.hpp>
27
29static const char* WWW_AUTH_HEADER_DATA = "Basic realm=\"jsonrpc\"";
30
35{
36public:
37 HTTPRPCTimer(struct event_base* eventBase, std::function<void()>& func, int64_t millis) :
38 ev(eventBase, false, func)
39 {
40 struct timeval tv;
41 tv.tv_sec = millis/1000;
42 tv.tv_usec = (millis%1000)*1000;
43 ev.trigger(&tv);
44 }
45private:
47};
48
50{
51public:
52 explicit HTTPRPCTimerInterface(struct event_base* _base) : base(_base)
53 {
54 }
55 const char* Name() override
56 {
57 return "HTTP";
58 }
59 RPCTimerBase* NewTimer(std::function<void()>& func, int64_t millis) override
60 {
61 return new HTTPRPCTimer(base, func, millis);
62 }
63private:
64 struct event_base* base;
65};
66
67
68/* Pre-base64-encoded authentication token */
69static std::string strRPCUserColonPass;
70/* Stored RPC timer interface (for unregistration) */
71static std::unique_ptr<HTTPRPCTimerInterface> httpRPCTimerInterface;
72/* List of -rpcauth values */
73static std::vector<std::vector<std::string>> g_rpcauth;
74/* RPC Auth Whitelist */
75static std::map<std::string, std::set<std::string>> g_rpc_whitelist;
76static bool g_rpc_whitelist_default = false;
77
78static void JSONErrorReply(HTTPRequest* req, const UniValue& objError, const UniValue& id)
79{
80 // Send error reply from json-rpc error object
81 int nStatus = HTTP_INTERNAL_SERVER_ERROR;
82 int code = find_value(objError, "code").get_int();
83
84 if (code == RPC_INVALID_REQUEST)
85 nStatus = HTTP_BAD_REQUEST;
86 else if (code == RPC_METHOD_NOT_FOUND)
87 nStatus = HTTP_NOT_FOUND;
88
89 std::string strReply = JSONRPCReply(NullUniValue, objError, id);
90
91 req->WriteHeader("Content-Type", "application/json");
92 req->WriteReply(nStatus, strReply);
93}
94
95//This function checks username and password against -rpcauth
96//entries from config file.
97static bool multiUserAuthorized(std::string strUserPass)
98{
99 if (strUserPass.find(':') == std::string::npos) {
100 return false;
101 }
102 std::string strUser = strUserPass.substr(0, strUserPass.find(':'));
103 std::string strPass = strUserPass.substr(strUserPass.find(':') + 1);
104
105 for (const auto& vFields : g_rpcauth) {
106 std::string strName = vFields[0];
107 if (!TimingResistantEqual(strName, strUser)) {
108 continue;
109 }
110
111 std::string strSalt = vFields[1];
112 std::string strHash = vFields[2];
113
114 static const unsigned int KEY_SIZE = 32;
115 unsigned char out[KEY_SIZE];
116
117 CHMAC_SHA256(reinterpret_cast<const unsigned char*>(strSalt.data()), strSalt.size()).Write(reinterpret_cast<const unsigned char*>(strPass.data()), strPass.size()).Finalize(out);
118 std::vector<unsigned char> hexvec(out, out+KEY_SIZE);
119 std::string strHashFromPass = HexStr(hexvec);
120
121 if (TimingResistantEqual(strHashFromPass, strHash)) {
122 return true;
123 }
124 }
125 return false;
126}
127
128static bool RPCAuthorized(const std::string& strAuth, std::string& strAuthUsernameOut)
129{
130 if (strRPCUserColonPass.empty()) // Belt-and-suspenders measure if InitRPCAuthentication was not called
131 return false;
132 if (strAuth.substr(0, 6) != "Basic ")
133 return false;
134 std::string strUserPass64 = TrimString(strAuth.substr(6));
135 std::string strUserPass = DecodeBase64(strUserPass64);
136
137 if (strUserPass.find(':') != std::string::npos)
138 strAuthUsernameOut = strUserPass.substr(0, strUserPass.find(':'));
139
140 //Check if authorized under single-user field
141 if (TimingResistantEqual(strUserPass, strRPCUserColonPass)) {
142 return true;
143 }
144 return multiUserAuthorized(strUserPass);
145}
146
147static bool HTTPReq_JSONRPC(const std::any& context, HTTPRequest* req)
148{
149 // JSONRPC handles only POST
150 if (req->GetRequestMethod() != HTTPRequest::POST) {
151 req->WriteReply(HTTP_BAD_METHOD, "JSONRPC server handles only POST requests");
152 return false;
153 }
154 // Check authorization
155 std::pair<bool, std::string> authHeader = req->GetHeader("authorization");
156 if (!authHeader.first) {
157 req->WriteHeader("WWW-Authenticate", WWW_AUTH_HEADER_DATA);
159 return false;
160 }
161
162 JSONRPCRequest jreq;
163 jreq.context = context;
164 jreq.peerAddr = req->GetPeer().ToString();
165 if (!RPCAuthorized(authHeader.second, jreq.authUser)) {
166 LogPrintf("ThreadRPCServer incorrect password attempt from %s\n", jreq.peerAddr);
167
168 /* Deter brute-forcing
169 If this results in a DoS the user really
170 shouldn't have their RPC port exposed. */
171 UninterruptibleSleep(std::chrono::milliseconds{250});
172
173 req->WriteHeader("WWW-Authenticate", WWW_AUTH_HEADER_DATA);
175 return false;
176 }
177
178 try {
179 // Parse request
180 UniValue valRequest;
181 if (!valRequest.read(req->ReadBody()))
182 throw JSONRPCError(RPC_PARSE_ERROR, "Parse error");
183
184 // Set the URI
185 jreq.URI = req->GetURI();
186
187 std::string strReply;
188 bool user_has_whitelist = g_rpc_whitelist.count(jreq.authUser);
189 if (!user_has_whitelist && g_rpc_whitelist_default) {
190 LogPrintf("RPC User %s not allowed to call any methods\n", jreq.authUser);
192 return false;
193
194 // singleton request
195 } else if (valRequest.isObject()) {
196 jreq.parse(valRequest);
197 if (user_has_whitelist && !g_rpc_whitelist[jreq.authUser].count(jreq.strMethod)) {
198 LogPrintf("RPC User %s not allowed to call method %s\n", jreq.authUser, jreq.strMethod);
200 return false;
201 }
202 UniValue result = tableRPC.execute(jreq);
203
204 // Send reply
205 strReply = JSONRPCReply(result, NullUniValue, jreq.id);
206
207 // array of requests
208 } else if (valRequest.isArray()) {
209 if (user_has_whitelist) {
210 for (unsigned int reqIdx = 0; reqIdx < valRequest.size(); reqIdx++) {
211 if (!valRequest[reqIdx].isObject()) {
212 throw JSONRPCError(RPC_INVALID_REQUEST, "Invalid Request object");
213 } else {
214 const UniValue& request = valRequest[reqIdx].get_obj();
215 // Parse method
216 std::string strMethod = find_value(request, "method").get_str();
217 if (!g_rpc_whitelist[jreq.authUser].count(strMethod)) {
218 LogPrintf("RPC User %s not allowed to call method %s\n", jreq.authUser, strMethod);
220 return false;
221 }
222 }
223 }
224 }
225 strReply = JSONRPCExecBatch(jreq, valRequest.get_array());
226 }
227 else
228 throw JSONRPCError(RPC_PARSE_ERROR, "Top-level object parse error");
229
230 req->WriteHeader("Content-Type", "application/json");
231 req->WriteReply(HTTP_OK, strReply);
232 } catch (const UniValue& objError) {
233 JSONErrorReply(req, objError, jreq.id);
234 return false;
235 } catch (const std::exception& e) {
236 JSONErrorReply(req, JSONRPCError(RPC_PARSE_ERROR, e.what()), jreq.id);
237 return false;
238 }
239 return true;
240}
241
243{
244 if (gArgs.GetArg("-rpcpassword", "") == "")
245 {
246 LogPrintf("Using random cookie authentication.\n");
248 return false;
249 }
250 } else {
251 LogPrintf("Config options rpcuser and rpcpassword will soon be deprecated. Locally-run instances may remove rpcuser to use cookie-based auth, or may be replaced with rpcauth. Please see share/rpcauth for rpcauth auth generation.\n");
252 strRPCUserColonPass = gArgs.GetArg("-rpcuser", "") + ":" + gArgs.GetArg("-rpcpassword", "");
253 }
254 if (gArgs.GetArg("-rpcauth","") != "")
255 {
256 LogPrintf("Using rpcauth authentication.\n");
257 for (const std::string& rpcauth : gArgs.GetArgs("-rpcauth")) {
258 std::vector<std::string> fields;
259 boost::split(fields, rpcauth, boost::is_any_of(":$"));
260 if (fields.size() == 3) {
261 g_rpcauth.push_back(fields);
262 } else {
263 LogPrintf("Invalid -rpcauth argument.\n");
264 return false;
265 }
266 }
267 }
268
269 g_rpc_whitelist_default = gArgs.GetBoolArg("-rpcwhitelistdefault", gArgs.IsArgSet("-rpcwhitelist"));
270 for (const std::string& strRPCWhitelist : gArgs.GetArgs("-rpcwhitelist")) {
271 auto pos = strRPCWhitelist.find(':');
272 std::string strUser = strRPCWhitelist.substr(0, pos);
273 bool intersect = g_rpc_whitelist.count(strUser);
274 std::set<std::string>& whitelist = g_rpc_whitelist[strUser];
275 if (pos != std::string::npos) {
276 std::string strWhitelist = strRPCWhitelist.substr(pos + 1);
277 std::set<std::string> new_whitelist;
278 boost::split(new_whitelist, strWhitelist, boost::is_any_of(", "));
279 if (intersect) {
280 std::set<std::string> tmp_whitelist;
281 std::set_intersection(new_whitelist.begin(), new_whitelist.end(),
282 whitelist.begin(), whitelist.end(), std::inserter(tmp_whitelist, tmp_whitelist.end()));
283 new_whitelist = std::move(tmp_whitelist);
284 }
285 whitelist = std::move(new_whitelist);
286 }
287 }
288
289 return true;
290}
291
292bool StartHTTPRPC(const std::any& context)
293{
294 LogPrint(BCLog::RPC, "Starting HTTP RPC server\n");
296 return false;
297
298 auto handle_rpc = [context](HTTPRequest* req, const std::string&) { return HTTPReq_JSONRPC(context, req); };
299 RegisterHTTPHandler("/", true, handle_rpc);
301 RegisterHTTPHandler("/wallet/", false, handle_rpc);
302 }
303 struct event_base* eventBase = EventBase();
305 httpRPCTimerInterface = std::make_unique<HTTPRPCTimerInterface>(eventBase);
307 return true;
308}
309
311{
312 LogPrint(BCLog::RPC, "Interrupting HTTP RPC server\n");
313}
314
316{
317 LogPrint(BCLog::RPC, "Stopping HTTP RPC server\n");
318 UnregisterHTTPHandler("/", true);
320 UnregisterHTTPHandler("/wallet/", false);
321 }
324 httpRPCTimerInterface.reset();
325 }
326}
std::vector< std::string > GetArgs(const std::string &strArg) const
Return a vector of strings of the given argument.
Definition: system.cpp:487
bool IsArgSet(const std::string &strArg) const
Return true if the given argument has been manually set.
Definition: system.cpp:496
std::string GetArg(const std::string &strArg, const std::string &strDefault) const
Return string argument or default value.
Definition: system.cpp:590
bool GetBoolArg(const std::string &strArg, bool fDefault) const
Return boolean argument or default value.
Definition: system.cpp:602
A hasher class for HMAC-SHA-256.
Definition: hmac_sha256.h:15
CHMAC_SHA256 & Write(const unsigned char *data, size_t len)
Definition: hmac_sha256.h:24
void Finalize(unsigned char hash[OUTPUT_SIZE])
Definition: hmac_sha256.cpp:29
UniValue execute(const JSONRPCRequest &request) const
Execute a method.
Definition: server.cpp:451
std::string ToString() const
Event class.
Definition: httpserver.h:130
void trigger(struct timeval *tv)
Trigger the event.
Definition: httpserver.cpp:498
Simple one-shot callback timer to be used by the RPC mechanism to e.g.
Definition: httprpc.cpp:35
HTTPRPCTimer(struct event_base *eventBase, std::function< void()> &func, int64_t millis)
Definition: httprpc.cpp:37
HTTPEvent ev
Definition: httprpc.cpp:46
const char * Name() override
Implementation name.
Definition: httprpc.cpp:55
RPCTimerBase * NewTimer(std::function< void()> &func, int64_t millis) override
Factory function for timers.
Definition: httprpc.cpp:59
struct event_base * base
Definition: httprpc.cpp:64
HTTPRPCTimerInterface(struct event_base *_base)
Definition: httprpc.cpp:52
In-flight HTTP request.
Definition: httpserver.h:57
std::pair< bool, std::string > GetHeader(const std::string &hdr) const
Get the request header specified by hdr, or an empty string.
Definition: httpserver.cpp:519
std::string GetURI() const
Get requested URI.
Definition: httpserver.cpp:606
void WriteReply(int nStatus, const std::string &strReply="")
Write HTTP reply.
Definition: httpserver.cpp:562
void WriteHeader(const std::string &hdr, const std::string &value)
Write output header.
Definition: httpserver.cpp:550
RequestMethod GetRequestMethod() const
Get request method.
Definition: httpserver.cpp:611
std::string ReadBody()
Read request body.
Definition: httpserver.cpp:530
CService GetPeer() const
Get CService (address:ip) for the origin of the http request.
Definition: httpserver.cpp:592
std::string strMethod
Definition: request.h:32
std::string peerAddr
Definition: request.h:37
UniValue id
Definition: request.h:31
void parse(const UniValue &valRequest)
Definition: request.cpp:153
std::string URI
Definition: request.h:35
std::string authUser
Definition: request.h:36
std::any context
Definition: request.h:38
Opaque base class for timers returned by NewTimerFunc.
Definition: server.h:51
RPC timer "driver".
Definition: server.h:60
const std::string & get_str() const
bool isArray() const
Definition: univalue.h:81
const UniValue & get_obj() const
size_t size() const
Definition: univalue.h:66
const UniValue & get_array() const
bool read(const char *raw, size_t len)
bool isObject() const
Definition: univalue.h:82
int get_int() const
virtual bool HasWalletSupport() const =0
Is the wallet component enabled.
const WalletInitInterface & g_wallet_init_interface
Definition: dummywallet.cpp:58
static const char * WWW_AUTH_HEADER_DATA
WWW-Authenticate to present with 401 Unauthorized response.
Definition: httprpc.cpp:29
void InterruptHTTPRPC()
Interrupt HTTP RPC subsystem.
Definition: httprpc.cpp:310
void StopHTTPRPC()
Stop HTTP RPC subsystem.
Definition: httprpc.cpp:315
static std::unique_ptr< HTTPRPCTimerInterface > httpRPCTimerInterface
Definition: httprpc.cpp:71
static bool multiUserAuthorized(std::string strUserPass)
Definition: httprpc.cpp:97
bool StartHTTPRPC(const std::any &context)
Start HTTP RPC subsystem.
Definition: httprpc.cpp:292
static bool g_rpc_whitelist_default
Definition: httprpc.cpp:76
static bool RPCAuthorized(const std::string &strAuth, std::string &strAuthUsernameOut)
Definition: httprpc.cpp:128
static std::vector< std::vector< std::string > > g_rpcauth
Definition: httprpc.cpp:73
static bool HTTPReq_JSONRPC(const std::any &context, HTTPRequest *req)
Definition: httprpc.cpp:147
static std::string strRPCUserColonPass
Definition: httprpc.cpp:69
static bool InitRPCAuthentication()
Definition: httprpc.cpp:242
static std::map< std::string, std::set< std::string > > g_rpc_whitelist
Definition: httprpc.cpp:75
static void JSONErrorReply(HTTPRequest *req, const UniValue &objError, const UniValue &id)
Definition: httprpc.cpp:78
void UnregisterHTTPHandler(const std::string &prefix, bool exactMatch)
Unregister handler for prefix.
Definition: httpserver.cpp:638
void RegisterHTTPHandler(const std::string &prefix, bool exactMatch, const HTTPRequestHandler &handler)
Register handler for prefix.
Definition: httpserver.cpp:632
static struct event_base * eventBase
HTTP module state.
Definition: httpserver.cpp:134
struct event_base * EventBase()
Return evhttp event base.
Definition: httpserver.cpp:474
#define LogPrint(category,...)
Definition: logging.h:191
#define LogPrintf(...)
Definition: logging.h:187
@ RPC
Definition: logging.h:45
std::string JSONRPCReply(const UniValue &result, const UniValue &error, const UniValue &id)
Definition: request.cpp:45
UniValue JSONRPCError(int code, const std::string &message)
Definition: request.cpp:51
bool GenerateAuthCookie(std::string *cookie_out)
Generate a new RPC authentication cookie and write it to disk.
Definition: request.cpp:76
@ HTTP_BAD_REQUEST
Definition: protocol.h:13
@ HTTP_BAD_METHOD
Definition: protocol.h:17
@ HTTP_OK
Definition: protocol.h:12
@ HTTP_UNAUTHORIZED
Definition: protocol.h:14
@ HTTP_NOT_FOUND
Definition: protocol.h:16
@ HTTP_FORBIDDEN
Definition: protocol.h:15
@ HTTP_INTERNAL_SERVER_ERROR
Definition: protocol.h:18
@ RPC_PARSE_ERROR
Definition: protocol.h:36
@ RPC_METHOD_NOT_FOUND
Definition: protocol.h:31
@ RPC_INVALID_REQUEST
Standard JSON-RPC 2.0 errors.
Definition: protocol.h:28
void RPCUnsetTimerInterface(RPCTimerInterface *iface)
Unset factory function for timers.
Definition: server.cpp:524
std::string JSONRPCExecBatch(const JSONRPCRequest &jreq, const UniValue &vReq)
Definition: server.cpp:382
CRPCTable tableRPC
Definition: server.cpp:548
void RPCSetTimerInterface(RPCTimerInterface *iface)
Set the factory function for timers.
Definition: server.cpp:519
std::string HexStr(const Span< const uint8_t > s)
Convert a span of bytes to a lower-case hexadecimal string.
std::vector< unsigned char > DecodeBase64(const char *p, bool *pf_invalid)
bool TimingResistantEqual(const T &a, const T &b)
Timing-attack-resistant comparison.
Definition: strencodings.h:205
std::string TrimString(const std::string &str, const std::string &pattern=" \f\n\r\t\v")
Definition: string.h:18
void UninterruptibleSleep(const std::chrono::microseconds &n)
Definition: time.cpp:22
const UniValue NullUniValue
Definition: univalue.cpp:13
const UniValue & find_value(const UniValue &obj, const std::string &name)
Definition: univalue.cpp:236
ArgsManager gArgs
Definition: system.cpp:85
assert(!tx.IsCoinBase())