23#include <event2/buffer.h>
24#include <event2/bufferevent.h>
25#include <event2/event.h>
26#include <event2/keyvalq_struct.h>
27#include <event2/thread.h>
28#include <event2/util.h>
35#include <condition_variable>
41#include <unordered_map>
61 std::unique_ptr<HTTPRequest>
req;
77 std::condition_variable
cond;
78 std::deque<std::unique_ptr<WorkItem>>
queue;
95 queue.emplace_back(std::unique_ptr<WorkItem>(item));
103 std::unique_ptr<WorkItem> i;
112 i = std::move(
queue.front());
158 mutable std::condition_variable
m_cv;
160 std::unordered_map<const evhttp_connection *, size_t>
166 if (m_tracker.empty()) {
174 const evhttp_connection *conn{
181 const evhttp_connection *conn{
184 auto it{m_tracker.find(conn)};
185 if (it != m_tracker.end() && it->second > 0) {
186 if (--(it->second) == 0) {
195 auto it{m_tracker.find(
Assert(conn))};
196 if (it != m_tracker.end()) {
208 return m_tracker.empty();
221 if (subnet.Match(netaddr)) {
239 for (
const std::string &strAllow :
gArgs.
GetArgs(
"-rpcallowip")) {
245 Untranslated(
"Invalid -rpcallowip subnet specification: "
246 "%s. Valid are a single IP (e.g. 1.2.3.4), a "
247 "network/netmask (e.g. 1.2.3.4/255.255.255.0) "
248 "or a network/CIDR (e.g. 1.2.3.4/24)."),
255 std::string strAllowed;
257 strAllowed += subnet.ToString() +
" ";
285 evhttp_connection *conn{evhttp_request_get_connection(req)};
289 evhttp_request_set_on_complete_cb(
291 [](
struct evhttp_request *req,
void *) {
295 evhttp_connection_set_closecb(
297 [](evhttp_connection *conn,
void *arg) {
304 if (event_get_version_number() >= 0x02010600 &&
305 event_get_version_number() < 0x02020001) {
307 bufferevent *bev = evhttp_connection_get_bufferevent(conn);
309 bufferevent_disable(bev, EV_READ);
313 auto hreq = std::make_unique<HTTPRequest>(req);
318 "HTTP request from %s rejected: Client network is not allowed "
320 hreq->GetPeer().ToString());
328 "HTTP request from %s rejected: Unknown HTTP request method\n",
329 hreq->GetPeer().ToString());
337 hreq->GetPeer().ToString());
340 std::string strURI = hreq->GetURI();
342 std::vector<HTTPPathHandler>::const_iterator i =
pathHandlers.begin();
343 std::vector<HTTPPathHandler>::const_iterator iend =
pathHandlers.end();
344 for (; i != iend; ++i) {
347 match = (strURI == i->prefix);
349 match = (strURI.substr(0, i->prefix.size()) == i->prefix);
352 path = strURI.substr(i->prefix.size());
359 std::unique_ptr<HTTPWorkItem> item(
360 new HTTPWorkItem(config, std::move(hreq), path, i->handler));
366 LogPrintf(
"WARNING: request rejected because http work queue depth "
367 "exceeded, it can be increased with the -rpcworkqueue= "
370 "Work queue depth exceeded");
380 evhttp_send_error(req, HTTP_SERVUNAVAIL,
nullptr);
387 event_base_dispatch(base);
390 return event_base_got_break(base) == 0;
395 uint16_t http_port{
static_cast<uint16_t
>(
397 std::vector<std::pair<std::string, uint16_t>> endpoints;
402 endpoints.push_back(std::make_pair(
"::1", http_port));
403 endpoints.push_back(std::make_pair(
"127.0.0.1", http_port));
405 LogPrintf(
"WARNING: option -rpcallowip was specified without "
406 "-rpcbind; this doesn't usually make sense\n");
409 LogPrintf(
"WARNING: option -rpcbind was ignored because "
410 "-rpcallowip was not specified, refusing to allow "
411 "everyone to connect\n");
415 for (
const std::string &strRPCBind :
gArgs.
GetArgs(
"-rpcbind")) {
416 uint16_t port{http_port};
419 endpoints.push_back(std::make_pair(host, port));
424 for (std::vector<std::pair<std::string, uint16_t>>::iterator i =
426 i != endpoints.end(); ++i) {
429 evhttp_bound_socket *bind_handle = evhttp_bind_socket_with_handle(
430 http, i->first.empty() ?
nullptr : i->first.c_str(), i->second);
433 if (i->first.empty() ||
435 LogPrintf(
"WARNING: the RPC server is not safe to expose to "
436 "untrusted networks such as the public internet\n");
440 LogPrintf(
"Binding RPC on address %s port %i failed.\n", i->first,
455#ifndef EVENT_LOG_WARN
457#define EVENT_LOG_WARN _EVENT_LOG_WARN
461 case EVENT_LOG_DEBUG:
488 evthread_use_windows_threads();
490 evthread_use_pthreads();
497 struct evhttp *http = http_ctr.get();
499 LogPrintf(
"couldn't create evhttp. Exiting.\n");
512 evhttp_set_allowed_methods(
513 http, EVHTTP_REQ_GET | EVHTTP_REQ_POST | EVHTTP_REQ_HEAD |
514 EVHTTP_REQ_PUT | EVHTTP_REQ_DELETE | EVHTTP_REQ_OPTIONS);
517 LogPrintf(
"Unable to bind any endpoint for RPC server\n");
522 int workQueueDepth = std::max(
536 event_enable_debug_logging(EVENT_DBG_ALL);
538 event_enable_debug_logging(EVENT_DBG_NONE);
547 int rpcThreads = std::max(
552 for (
int i = 0; i < rpcThreads; i++) {
582 evhttp_del_accept_socket(
eventHTTP, socket);
587 n_connections != 0) {
589 "Waiting for %d connections to stop HTTP server\n",
600 [](evutil_socket_t,
short,
void *) {
631 const std::function<
void()> &_handler)
632 : deleteWhenTriggered(_deleteWhenTriggered),
handler(_handler) {
642 event_active(
ev, 0, 0);
649 : req(_req), replySent(_replySent) {}
653 LogPrintf(
"%s: Unhandled request\n", __func__);
659std::pair<bool, std::string>
661 const struct evkeyvalq *headers = evhttp_request_get_input_headers(
req);
663 const char *val = evhttp_find_header(headers, hdr.c_str());
665 return std::make_pair(
true, val);
667 return std::make_pair(
false,
"");
672 struct evbuffer *buf = evhttp_request_get_input_buffer(
req);
676 size_t size = evbuffer_get_length(buf);
684 const char *data = (
const char *)evbuffer_pullup(buf, size);
690 std::string rv(data, size);
691 evbuffer_drain(buf, size);
696 const std::string &value) {
697 struct evkeyvalq *headers = evhttp_request_get_output_headers(
req);
699 evhttp_add_header(headers, hdr.c_str(), value.c_str());
713 struct evbuffer *evb = evhttp_request_get_output_buffer(
req);
715 evbuffer_add(evb, strReply.data(), strReply.size());
718 evhttp_send_reply(req_copy, nStatus,
nullptr,
nullptr);
721 if (event_get_version_number() >= 0x02010600 &&
722 event_get_version_number() < 0x02020001) {
723 evhttp_connection *conn = evhttp_request_get_connection(req_copy);
725 bufferevent *bev = evhttp_connection_get_bufferevent(conn);
727 bufferevent_enable(bev, EV_READ | EV_WRITE);
739 evhttp_connection *con = evhttp_request_get_connection(
req);
743 const char *address =
"";
745 evhttp_connection_get_peer(con, (
char **)&address, &port);
752 return evhttp_request_get_uri(
req);
756 switch (evhttp_request_get_command(
req)) {
759 case EVHTTP_REQ_POST:
761 case EVHTTP_REQ_HEAD:
765 case EVHTTP_REQ_OPTIONS:
780 std::vector<HTTPPathHandler>::iterator i =
pathHandlers.begin();
781 std::vector<HTTPPathHandler>::iterator iend =
pathHandlers.end();
782 for (; i != iend; ++i) {
783 if (i->prefix ==
prefix && i->exactMatch == exactMatch) {
789 "Unregistering HTTP handler for %s (exactmatch %d)\n",
prefix,
const CBaseChainParams & BaseParams()
Return the currently selected parameters.
#define Assert(val)
Identity function.
std::vector< std::string > GetArgs(const std::string &strArg) const
Return a vector of strings of the given argument.
bool IsArgSet(const std::string &strArg) const
Return true if the given argument has been manually set.
int64_t GetIntArg(const std::string &strArg, int64_t nDefault) const
Return integer argument or default value.
A combination of a network address (CNetAddr) and a (TCP) port.
virtual uint64_t GetMaxBlockSize() const =0
std::function< void()> handler
HTTPEvent(struct event_base *base, bool deleteWhenTriggered, const std::function< void()> &handler)
Create a new event.
void trigger(struct timeval *tv)
Trigger the event.
std::pair< bool, std::string > GetHeader(const std::string &hdr) const
Get the request header specified by hdr, or an empty string.
std::string GetURI() const
Get requested URI.
void WriteReply(int nStatus, const std::string &strReply="")
Write HTTP reply.
void WriteHeader(const std::string &hdr, const std::string &value)
Write output header.
struct evhttp_request * req
RequestMethod GetRequestMethod() const
Get request method.
std::string ReadBody()
Read request body.
CService GetPeer() const
Get CService (address:ip) for the origin of the http request.
HTTPRequest(struct evhttp_request *req, bool replySent=false)
Helps keep track of open evhttp_connections with active evhttp_requests
void WaitUntilEmpty() const EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Wait until there are no more connections with active requests in the tracker.
size_t CountActiveConnections() const EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
void AddRequest(evhttp_request *req) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Increase request counter for the associated connection by 1.
void RemoveConnection(const evhttp_connection *conn) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Remove a connection entirely.
std::unordered_map< const evhttp_connection *, size_t > m_tracker GUARDED_BY(m_mutex)
For each connection, keep a counter of how many requests are open.
void RemoveRequest(evhttp_request *req) EXCLUSIVE_LOCKS_REQUIRED(!m_mutex)
Decrease request counter for the associated connection by 1, remove connection if counter is 0.
std::condition_variable m_cv
void RemoveConnectionInternal(const decltype(m_tracker)::iterator it) EXCLUSIVE_LOCKS_REQUIRED(m_mutex)
void operator()() override
std::unique_ptr< HTTPRequest > req
HTTPWorkItem(Config &_config, std::unique_ptr< HTTPRequest > _req, const std::string &_path, const HTTPRequestHandler &_func)
Simple work queue for distributing work over multiple threads.
bool Enqueue(WorkItem *item) EXCLUSIVE_LOCKS_REQUIRED(!cs)
Enqueue a work item.
void Interrupt() EXCLUSIVE_LOCKS_REQUIRED(!cs)
Interrupt and exit loops.
~WorkQueue()
Precondition: worker threads have all stopped (they have all been joined)
Mutex cs
Mutex protects entire object.
std::deque< std::unique_ptr< WorkItem > > queue
WorkQueue(size_t _maxDepth)
std::condition_variable cond
void Run() EXCLUSIVE_LOCKS_REQUIRED(!cs)
Thread function.
raii_evhttp obtain_evhttp(struct event_base *base)
raii_event_base obtain_event_base()
static struct evhttp * eventHTTP
HTTP server.
void InterruptHTTPServer()
Interrupt HTTP server threads.
static void http_request_cb(struct evhttp_request *req, void *arg)
HTTP request callback.
static WorkQueue< HTTPClosure > * workQueue
Work queue for handling longer requests off the event loop thread.
static bool HTTPBindAddresses(struct evhttp *http)
Bind HTTP server to specified addresses.
static std::vector< evhttp_bound_socket * > boundSockets
Bound listening sockets.
void UnregisterHTTPHandler(const std::string &prefix, bool exactMatch)
Unregister handler for prefix.
void RegisterHTTPHandler(const std::string &prefix, bool exactMatch, const HTTPRequestHandler &handler)
Register handler for prefix.
void StartHTTPServer()
Start HTTP server.
static struct event_base * eventBase
HTTP module state.
void UpdateHTTPServerLogging(bool enable)
Change logging level for libevent.
static std::thread g_thread_http
struct event_base * EventBase()
Return evhttp event base.
static void httpevent_callback_fn(evutil_socket_t, short, void *data)
std::string RequestMethodString(HTTPRequest::RequestMethod m)
HTTP request method as string - use for logging only.
static const size_t MIN_SUPPORTED_BODY_SIZE
Maximum HTTP post body size.
static HTTPRequestTracker g_requests
Track active requests.
static void HTTPWorkQueueRun(WorkQueue< HTTPClosure > *queue, int worker_num)
Simple wrapper to set thread name and run work queue.
static bool InitHTTPAllowList()
Initialize ACL list for HTTP server.
static bool ThreadHTTP(struct event_base *base)
Event dispatcher thread.
static void libevent_log_cb(int severity, const char *msg)
libevent event log callback
static std::vector< CSubNet > rpc_allow_subnets
List of subnets to allow RPC connections from.
static bool ClientAllowed(const CNetAddr &netaddr)
Check if a network address is allowed to access the HTTP server.
static void http_reject_request_cb(struct evhttp_request *req, void *)
Callback to reject HTTP requests after shutdown.
static const size_t MAX_HEADERS_SIZE
Maximum size of http request (request line + headers)
void StopHTTPServer()
Stop HTTP server.
static std::vector< HTTPPathHandler > pathHandlers
Handlers for (sub)paths.
static std::vector< std::thread > g_thread_http_workers
bool InitHTTPServer(Config &config)
Initialize HTTP server.
static const int DEFAULT_HTTP_SERVER_TIMEOUT
static const int DEFAULT_HTTP_WORKQUEUE
static const int DEFAULT_HTTP_THREADS
std::function< bool(Config &config, HTTPRequest *req, const std::string &)> HTTPRequestHandler
Handler for requests to a certain HTTP path.
BCLog::Logger & LogInstance()
#define LogPrintLevel(category, level,...)
#define LogPrint(category,...)
#define LogPrintfCategory(category,...)
Implement std::hash so RCUPtr can be used as a key for maps or sets.
void ThreadRename(std::string &&)
Rename a thread both in terms of an internal (in-memory) name as well as its system thread name.
bool LookupSubNet(const std::string &strSubnet, CSubNet &ret, DNSLookupFn dns_lookup_function)
Parse and resolve a specified subnet string into the appropriate internal representation.
CService LookupNumeric(const std::string &name, uint16_t portDefault, DNSLookupFn dns_lookup_function)
Resolve a service string with a numeric IP to its first corresponding service.
bool LookupHost(const std::string &name, std::vector< CNetAddr > &vIP, unsigned int nMaxSolutions, bool fAllowLookup, DNSLookupFn dns_lookup_function)
Resolve a host string to its corresponding network addresses.
bool(* handler)(Config &config, const std::any &context, HTTPRequest *req, const std::string &strReq)
@ HTTP_SERVICE_UNAVAILABLE
@ HTTP_INTERNAL_SERVER_ERROR
bool ShutdownRequested()
Returns true if a shutdown is requested, false otherwise.
@ SAFE_CHARS_URI
Chars allowed in URIs (RFC 3986)
HTTPPathHandler(std::string _prefix, bool _exactMatch, HTTPRequestHandler _handler)
HTTPRequestHandler handler
#define WAIT_LOCK(cs, name)
#define WITH_LOCK(cs, code)
Run code while locking a mutex.
#define EXCLUSIVE_LOCKS_REQUIRED(...)
bilingual_str Untranslated(std::string original)
Mark a bilingual_str as untranslated.
CClientUIInterface uiInterface
void SplitHostPort(std::string_view in, uint16_t &portOut, std::string &hostOut)
std::string SanitizeString(std::string_view str, int rule)
Remove unsafe chars.