aboutsummaryrefslogtreecommitdiff
path: root/src/rest.cpp
diff options
context:
space:
mode:
authorMatt Corallo <git@bluematt.me>2019-11-28 22:39:12 -0500
committerMatt Corallo <git@bluematt.me>2021-10-17 02:56:56 +0000
commitef7c8228fd5cf45526518ae2bd5ebdd483e65525 (patch)
tree7bb6ce58e8a924f4d68898bb95ec72c8e008bc7e /src/rest.cpp
parent810ce36d54e4a047f27a099e8295ddadfced75a9 (diff)
downloadbitcoin-ef7c8228fd5cf45526518ae2bd5ebdd483e65525.tar.xz
Expose block filters over REST.
This adds a new rest endpoint: /rest/blockfilter/filtertype/requesttype/blockhash (eg /rest/blockfilter/basic/header/000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f.hex) which exposes either the filter "header" or the filter data itself. Most of the code is cribbed from the equivalent RPC.
Diffstat (limited to 'src/rest.cpp')
-rw-r--r--src/rest.cpp215
1 files changed, 212 insertions, 3 deletions
diff --git a/src/rest.cpp b/src/rest.cpp
index f6e34c2d81..18ae350630 100644
--- a/src/rest.cpp
+++ b/src/rest.cpp
@@ -3,10 +3,12 @@
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
+#include <blockfilter.h>
#include <chain.h>
#include <chainparams.h>
#include <core_io.h>
#include <httpserver.h>
+#include <index/blockfilterindex.h>
#include <index/txindex.h>
#include <node/blockstorage.h>
#include <node/context.h>
@@ -30,6 +32,7 @@
#include <univalue.h>
static const size_t MAX_GETUTXOS_OUTPOINTS = 15; //allow a max of 15 outpoints to be queried at once
+static constexpr unsigned int MAX_REST_HEADERS_RESULTS = 2000;
enum class RetFormat {
UNDEF,
@@ -190,8 +193,8 @@ static bool rest_headers(const std::any& context,
return RESTERR(req, HTTP_BAD_REQUEST, "No header count specified. Use /rest/headers/<count>/<hash>.<ext>.");
const auto parsed_count{ToIntegral<size_t>(path[0])};
- if (!parsed_count.has_value() || *parsed_count < 1 || *parsed_count > 2000) {
- return RESTERR(req, HTTP_BAD_REQUEST, "Header count out of range: " + path[0]);
+ if (!parsed_count.has_value() || *parsed_count < 1 || *parsed_count > MAX_REST_HEADERS_RESULTS) {
+ return RESTERR(req, HTTP_BAD_REQUEST, strprintf("Header count out of acceptable range (1-%u): %s", MAX_REST_HEADERS_RESULTS, path[0]));
}
std::string hashStr = path[1];
@@ -254,7 +257,7 @@ static bool rest_headers(const std::any& context,
return true;
}
default: {
- return RESTERR(req, HTTP_NOT_FOUND, "output format not found (available: .bin, .hex, .json)");
+ return RESTERR(req, HTTP_NOT_FOUND, "output format not found (available: " + AvailableDataFormatsString() + ")");
}
}
}
@@ -337,6 +340,210 @@ static bool rest_block_notxdetails(const std::any& context, HTTPRequest* req, co
return rest_block(context, req, strURIPart, false);
}
+
+static bool rest_filter_header(const std::any& context, HTTPRequest* req, const std::string& strURIPart)
+{
+ if (!CheckWarmup(req))
+ return false;
+ std::string param;
+ const RetFormat rf = ParseDataFormat(param, strURIPart);
+
+ std::vector<std::string> uri_parts;
+ boost::split(uri_parts, param, boost::is_any_of("/"));
+ if (uri_parts.size() != 3) {
+ return RESTERR(req, HTTP_BAD_REQUEST, "Invalid URI format. Expected /rest/blockfilterheaders/<filtertype>/<count>/<blockhash>");
+ }
+
+ uint256 block_hash;
+ if (!ParseHashStr(uri_parts[2], block_hash)) {
+ return RESTERR(req, HTTP_BAD_REQUEST, "Invalid hash: " + uri_parts[2]);
+ }
+
+ BlockFilterType filtertype;
+ if (!BlockFilterTypeByName(uri_parts[0], filtertype)) {
+ return RESTERR(req, HTTP_BAD_REQUEST, "Unknown filtertype " + uri_parts[0]);
+ }
+
+ BlockFilterIndex* index = GetBlockFilterIndex(filtertype);
+ if (!index) {
+ return RESTERR(req, HTTP_BAD_REQUEST, "Index is not enabled for filtertype " + uri_parts[0]);
+ }
+
+ const auto parsed_count{ToIntegral<size_t>(uri_parts[1])};
+ if (!parsed_count.has_value() || *parsed_count < 1 || *parsed_count > MAX_REST_HEADERS_RESULTS) {
+ return RESTERR(req, HTTP_BAD_REQUEST, strprintf("Header count out of acceptable range (1-%u): %s", MAX_REST_HEADERS_RESULTS, uri_parts[1]));
+ }
+
+ std::vector<const CBlockIndex *> headers;
+ headers.reserve(*parsed_count);
+ {
+ ChainstateManager* maybe_chainman = GetChainman(context, req);
+ if (!maybe_chainman) return false;
+ ChainstateManager& chainman = *maybe_chainman;
+ LOCK(cs_main);
+ CChain& active_chain = chainman.ActiveChain();
+ const CBlockIndex* pindex = chainman.m_blockman.LookupBlockIndex(block_hash);
+ while (pindex != nullptr && active_chain.Contains(pindex)) {
+ headers.push_back(pindex);
+ if (headers.size() == *parsed_count)
+ break;
+ pindex = active_chain.Next(pindex);
+ }
+ }
+
+ bool index_ready = index->BlockUntilSyncedToCurrentChain();
+
+ std::vector<uint256> filter_headers;
+ filter_headers.reserve(*parsed_count);
+ for (const CBlockIndex *pindex : headers) {
+ uint256 filter_header;
+ if (!index->LookupFilterHeader(pindex, filter_header)) {
+ std::string errmsg = "Filter not found.";
+
+ if (!index_ready) {
+ errmsg += " Block filters are still in the process of being indexed.";
+ } else {
+ errmsg += " This error is unexpected and indicates index corruption.";
+ }
+
+ return RESTERR(req, HTTP_NOT_FOUND, errmsg);
+ }
+ filter_headers.push_back(filter_header);
+ }
+
+ switch (rf) {
+ case RetFormat::BINARY: {
+ CDataStream ssHeader(SER_NETWORK, PROTOCOL_VERSION | RPCSerializationFlags());
+ for (const uint256& header : filter_headers) {
+ ssHeader << header;
+ }
+
+ std::string binaryHeader = ssHeader.str();
+ req->WriteHeader("Content-Type", "application/octet-stream");
+ req->WriteReply(HTTP_OK, binaryHeader);
+ return true;
+ }
+ case RetFormat::HEX: {
+ CDataStream ssHeader(SER_NETWORK, PROTOCOL_VERSION | RPCSerializationFlags());
+ for (const uint256& header : filter_headers) {
+ ssHeader << header;
+ }
+
+ std::string strHex = HexStr(ssHeader) + "\n";
+ req->WriteHeader("Content-Type", "text/plain");
+ req->WriteReply(HTTP_OK, strHex);
+ return true;
+ }
+ case RetFormat::JSON: {
+ UniValue jsonHeaders(UniValue::VARR);
+ for (const uint256& header : filter_headers) {
+ jsonHeaders.push_back(header.GetHex());
+ }
+
+ std::string strJSON = jsonHeaders.write() + "\n";
+ req->WriteHeader("Content-Type", "application/json");
+ req->WriteReply(HTTP_OK, strJSON);
+ return true;
+ }
+ default: {
+ return RESTERR(req, HTTP_NOT_FOUND, "output format not found (available: " + AvailableDataFormatsString() + ")");
+ }
+ }
+}
+
+static bool rest_block_filter(const std::any& context, HTTPRequest* req, const std::string& strURIPart)
+{
+ if (!CheckWarmup(req))
+ return false;
+ std::string param;
+ const RetFormat rf = ParseDataFormat(param, strURIPart);
+
+ //request is sent over URI scheme /rest/blockfilter/filtertype/blockhash
+ std::vector<std::string> uri_parts;
+ boost::split(uri_parts, param, boost::is_any_of("/"));
+ if (uri_parts.size() != 2) {
+ return RESTERR(req, HTTP_BAD_REQUEST, "Invalid URI format. Expected /rest/blockfilter/<filtertype>/<blockhash>");
+ }
+
+ uint256 block_hash;
+ if (!ParseHashStr(uri_parts[1], block_hash)) {
+ return RESTERR(req, HTTP_BAD_REQUEST, "Invalid hash: " + uri_parts[1]);
+ }
+
+ BlockFilterType filtertype;
+ if (!BlockFilterTypeByName(uri_parts[0], filtertype)) {
+ return RESTERR(req, HTTP_BAD_REQUEST, "Unknown filtertype " + uri_parts[0]);
+ }
+
+ BlockFilterIndex* index = GetBlockFilterIndex(filtertype);
+ if (!index) {
+ return RESTERR(req, HTTP_BAD_REQUEST, "Index is not enabled for filtertype " + uri_parts[0]);
+ }
+
+ const CBlockIndex* block_index;
+ bool block_was_connected;
+ {
+ ChainstateManager* maybe_chainman = GetChainman(context, req);
+ if (!maybe_chainman) return false;
+ ChainstateManager& chainman = *maybe_chainman;
+ LOCK(cs_main);
+ block_index = chainman.m_blockman.LookupBlockIndex(block_hash);
+ if (!block_index) {
+ return RESTERR(req, HTTP_NOT_FOUND, uri_parts[1] + " not found");
+ }
+ block_was_connected = block_index->IsValid(BLOCK_VALID_SCRIPTS);
+ }
+
+ bool index_ready = index->BlockUntilSyncedToCurrentChain();
+
+ BlockFilter filter;
+ if (!index->LookupFilter(block_index, filter)) {
+ std::string errmsg = "Filter not found.";
+
+ if (!block_was_connected) {
+ errmsg += " Block was not connected to active chain.";
+ } else if (!index_ready) {
+ errmsg += " Block filters are still in the process of being indexed.";
+ } else {
+ errmsg += " This error is unexpected and indicates index corruption.";
+ }
+
+ return RESTERR(req, HTTP_NOT_FOUND, errmsg);
+ }
+
+ switch (rf) {
+ case RetFormat::BINARY: {
+ CDataStream ssResp(SER_NETWORK, PROTOCOL_VERSION | RPCSerializationFlags());
+ ssResp << filter;
+
+ std::string binaryResp = ssResp.str();
+ req->WriteHeader("Content-Type", "application/octet-stream");
+ req->WriteReply(HTTP_OK, binaryResp);
+ return true;
+ }
+ case RetFormat::HEX: {
+ CDataStream ssResp(SER_NETWORK, PROTOCOL_VERSION | RPCSerializationFlags());
+ ssResp << filter;
+
+ std::string strHex = HexStr(ssResp) + "\n";
+ req->WriteHeader("Content-Type", "text/plain");
+ req->WriteReply(HTTP_OK, strHex);
+ return true;
+ }
+ case RetFormat::JSON: {
+ UniValue ret(UniValue::VOBJ);
+ ret.pushKV("filter", HexStr(filter.GetEncodedFilter()));
+ std::string strJSON = ret.write() + "\n";
+ req->WriteHeader("Content-Type", "application/json");
+ req->WriteReply(HTTP_OK, strJSON);
+ return true;
+ }
+ default: {
+ return RESTERR(req, HTTP_NOT_FOUND, "output format not found (available: " + AvailableDataFormatsString() + ")");
+ }
+ }
+}
+
// A bit of a hack - dependency on a function defined in rpc/blockchain.cpp
RPCHelpMan getblockchaininfo();
@@ -717,6 +924,8 @@ static const struct {
{"/rest/tx/", rest_tx},
{"/rest/block/notxdetails/", rest_block_notxdetails},
{"/rest/block/", rest_block_extended},
+ {"/rest/blockfilter/", rest_block_filter},
+ {"/rest/blockfilterheaders/", rest_filter_header},
{"/rest/chaininfo", rest_chaininfo},
{"/rest/mempool/info", rest_mempool_info},
{"/rest/mempool/contents", rest_mempool_contents},