1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2016 The Bitcoin Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
7 #include "chainparams.h"
9 #include "primitives/block.h"
10 #include "primitives/transaction.h"
11 #include "validation.h"
12 #include "httpserver.h"
13 #include "rpc/blockchain.h"
14 #include "rpc/server.h"
17 #include "txmempool.h"
18 #include "utilstrencodings.h"
21 #include <boost/algorithm/string.hpp>
25 static const size_t MAX_GETUTXOS_OUTPOINTS
= 15; //allow a max of 15 outpoints to be queried at once
48 ADD_SERIALIZE_METHODS
;
50 CCoin() : nHeight(0) {}
51 CCoin(Coin
&& in
) : nHeight(in
.nHeight
), out(std::move(in
.out
)) {}
53 template <typename Stream
, typename Operation
>
54 inline void SerializationOp(Stream
& s
, Operation ser_action
)
56 uint32_t nTxVerDummy
= 0;
57 READWRITE(nTxVerDummy
);
63 static bool RESTERR(HTTPRequest
* req
, enum HTTPStatusCode status
, std::string message
)
65 req
->WriteHeader("Content-Type", "text/plain");
66 req
->WriteReply(status
, message
+ "\r\n");
70 static enum RetFormat
ParseDataFormat(std::string
& param
, const std::string
& strReq
)
72 const std::string::size_type pos
= strReq
.rfind('.');
73 if (pos
== std::string::npos
)
76 return rf_names
[0].rf
;
79 param
= strReq
.substr(0, pos
);
80 const std::string
suff(strReq
, pos
+ 1);
82 for (unsigned int i
= 0; i
< ARRAYLEN(rf_names
); i
++)
83 if (suff
== rf_names
[i
].name
)
84 return rf_names
[i
].rf
;
86 /* If no suffix is found, return original string. */
88 return rf_names
[0].rf
;
91 static std::string
AvailableDataFormatsString()
93 std::string formats
= "";
94 for (unsigned int i
= 0; i
< ARRAYLEN(rf_names
); i
++)
95 if (strlen(rf_names
[i
].name
) > 0) {
97 formats
.append(rf_names
[i
].name
);
101 if (formats
.length() > 0)
102 return formats
.substr(0, formats
.length() - 2);
107 static bool ParseHashStr(const std::string
& strReq
, uint256
& v
)
109 if (!IsHex(strReq
) || (strReq
.size() != 64))
116 static bool CheckWarmup(HTTPRequest
* req
)
118 std::string statusmessage
;
119 if (RPCIsInWarmup(&statusmessage
))
120 return RESTERR(req
, HTTP_SERVICE_UNAVAILABLE
, "Service temporarily unavailable: " + statusmessage
);
124 static bool rest_headers(HTTPRequest
* req
,
125 const std::string
& strURIPart
)
127 if (!CheckWarmup(req
))
130 const RetFormat rf
= ParseDataFormat(param
, strURIPart
);
131 std::vector
<std::string
> path
;
132 boost::split(path
, param
, boost::is_any_of("/"));
134 if (path
.size() != 2)
135 return RESTERR(req
, HTTP_BAD_REQUEST
, "No header count specified. Use /rest/headers/<count>/<hash>.<ext>.");
137 long count
= strtol(path
[0].c_str(), NULL
, 10);
138 if (count
< 1 || count
> 2000)
139 return RESTERR(req
, HTTP_BAD_REQUEST
, "Header count out of range: " + path
[0]);
141 std::string hashStr
= path
[1];
143 if (!ParseHashStr(hashStr
, hash
))
144 return RESTERR(req
, HTTP_BAD_REQUEST
, "Invalid hash: " + hashStr
);
146 std::vector
<const CBlockIndex
*> headers
;
147 headers
.reserve(count
);
150 BlockMap::const_iterator it
= mapBlockIndex
.find(hash
);
151 const CBlockIndex
*pindex
= (it
!= mapBlockIndex
.end()) ? it
->second
: NULL
;
152 while (pindex
!= NULL
&& chainActive
.Contains(pindex
)) {
153 headers
.push_back(pindex
);
154 if (headers
.size() == (unsigned long)count
)
156 pindex
= chainActive
.Next(pindex
);
160 CDataStream
ssHeader(SER_NETWORK
, PROTOCOL_VERSION
);
161 for (const CBlockIndex
*pindex
: headers
) {
162 ssHeader
<< pindex
->GetBlockHeader();
167 std::string binaryHeader
= ssHeader
.str();
168 req
->WriteHeader("Content-Type", "application/octet-stream");
169 req
->WriteReply(HTTP_OK
, binaryHeader
);
174 std::string strHex
= HexStr(ssHeader
.begin(), ssHeader
.end()) + "\n";
175 req
->WriteHeader("Content-Type", "text/plain");
176 req
->WriteReply(HTTP_OK
, strHex
);
180 UniValue
jsonHeaders(UniValue::VARR
);
181 for (const CBlockIndex
*pindex
: headers
) {
182 jsonHeaders
.push_back(blockheaderToJSON(pindex
));
184 std::string strJSON
= jsonHeaders
.write() + "\n";
185 req
->WriteHeader("Content-Type", "application/json");
186 req
->WriteReply(HTTP_OK
, strJSON
);
190 return RESTERR(req
, HTTP_NOT_FOUND
, "output format not found (available: .bin, .hex)");
195 return true; // continue to process further HTTP reqs on this cxn
198 static bool rest_block(HTTPRequest
* req
,
199 const std::string
& strURIPart
,
202 if (!CheckWarmup(req
))
205 const RetFormat rf
= ParseDataFormat(hashStr
, strURIPart
);
208 if (!ParseHashStr(hashStr
, hash
))
209 return RESTERR(req
, HTTP_BAD_REQUEST
, "Invalid hash: " + hashStr
);
212 CBlockIndex
* pblockindex
= NULL
;
215 if (mapBlockIndex
.count(hash
) == 0)
216 return RESTERR(req
, HTTP_NOT_FOUND
, hashStr
+ " not found");
218 pblockindex
= mapBlockIndex
[hash
];
219 if (fHavePruned
&& !(pblockindex
->nStatus
& BLOCK_HAVE_DATA
) && pblockindex
->nTx
> 0)
220 return RESTERR(req
, HTTP_NOT_FOUND
, hashStr
+ " not available (pruned data)");
222 if (!ReadBlockFromDisk(block
, pblockindex
, Params().GetConsensus()))
223 return RESTERR(req
, HTTP_NOT_FOUND
, hashStr
+ " not found");
226 CDataStream
ssBlock(SER_NETWORK
, PROTOCOL_VERSION
| RPCSerializationFlags());
231 std::string binaryBlock
= ssBlock
.str();
232 req
->WriteHeader("Content-Type", "application/octet-stream");
233 req
->WriteReply(HTTP_OK
, binaryBlock
);
238 std::string strHex
= HexStr(ssBlock
.begin(), ssBlock
.end()) + "\n";
239 req
->WriteHeader("Content-Type", "text/plain");
240 req
->WriteReply(HTTP_OK
, strHex
);
245 UniValue objBlock
= blockToJSON(block
, pblockindex
, showTxDetails
);
246 std::string strJSON
= objBlock
.write() + "\n";
247 req
->WriteHeader("Content-Type", "application/json");
248 req
->WriteReply(HTTP_OK
, strJSON
);
253 return RESTERR(req
, HTTP_NOT_FOUND
, "output format not found (available: " + AvailableDataFormatsString() + ")");
258 return true; // continue to process further HTTP reqs on this cxn
261 static bool rest_block_extended(HTTPRequest
* req
, const std::string
& strURIPart
)
263 return rest_block(req
, strURIPart
, true);
266 static bool rest_block_notxdetails(HTTPRequest
* req
, const std::string
& strURIPart
)
268 return rest_block(req
, strURIPart
, false);
271 // A bit of a hack - dependency on a function defined in rpc/blockchain.cpp
272 UniValue
getblockchaininfo(const JSONRPCRequest
& request
);
274 static bool rest_chaininfo(HTTPRequest
* req
, const std::string
& strURIPart
)
276 if (!CheckWarmup(req
))
279 const RetFormat rf
= ParseDataFormat(param
, strURIPart
);
283 JSONRPCRequest jsonRequest
;
284 jsonRequest
.params
= UniValue(UniValue::VARR
);
285 UniValue chainInfoObject
= getblockchaininfo(jsonRequest
);
286 std::string strJSON
= chainInfoObject
.write() + "\n";
287 req
->WriteHeader("Content-Type", "application/json");
288 req
->WriteReply(HTTP_OK
, strJSON
);
292 return RESTERR(req
, HTTP_NOT_FOUND
, "output format not found (available: json)");
297 return true; // continue to process further HTTP reqs on this cxn
300 static bool rest_mempool_info(HTTPRequest
* req
, const std::string
& strURIPart
)
302 if (!CheckWarmup(req
))
305 const RetFormat rf
= ParseDataFormat(param
, strURIPart
);
309 UniValue mempoolInfoObject
= mempoolInfoToJSON();
311 std::string strJSON
= mempoolInfoObject
.write() + "\n";
312 req
->WriteHeader("Content-Type", "application/json");
313 req
->WriteReply(HTTP_OK
, strJSON
);
317 return RESTERR(req
, HTTP_NOT_FOUND
, "output format not found (available: json)");
322 return true; // continue to process further HTTP reqs on this cxn
325 static bool rest_mempool_contents(HTTPRequest
* req
, const std::string
& strURIPart
)
327 if (!CheckWarmup(req
))
330 const RetFormat rf
= ParseDataFormat(param
, strURIPart
);
334 UniValue mempoolObject
= mempoolToJSON(true);
336 std::string strJSON
= mempoolObject
.write() + "\n";
337 req
->WriteHeader("Content-Type", "application/json");
338 req
->WriteReply(HTTP_OK
, strJSON
);
342 return RESTERR(req
, HTTP_NOT_FOUND
, "output format not found (available: json)");
347 return true; // continue to process further HTTP reqs on this cxn
350 static bool rest_tx(HTTPRequest
* req
, const std::string
& strURIPart
)
352 if (!CheckWarmup(req
))
355 const RetFormat rf
= ParseDataFormat(hashStr
, strURIPart
);
358 if (!ParseHashStr(hashStr
, hash
))
359 return RESTERR(req
, HTTP_BAD_REQUEST
, "Invalid hash: " + hashStr
);
362 uint256 hashBlock
= uint256();
363 if (!GetTransaction(hash
, tx
, Params().GetConsensus(), hashBlock
, true))
364 return RESTERR(req
, HTTP_NOT_FOUND
, hashStr
+ " not found");
366 CDataStream
ssTx(SER_NETWORK
, PROTOCOL_VERSION
| RPCSerializationFlags());
371 std::string binaryTx
= ssTx
.str();
372 req
->WriteHeader("Content-Type", "application/octet-stream");
373 req
->WriteReply(HTTP_OK
, binaryTx
);
378 std::string strHex
= HexStr(ssTx
.begin(), ssTx
.end()) + "\n";
379 req
->WriteHeader("Content-Type", "text/plain");
380 req
->WriteReply(HTTP_OK
, strHex
);
385 UniValue
objTx(UniValue::VOBJ
);
386 TxToUniv(*tx
, hashBlock
, objTx
);
387 std::string strJSON
= objTx
.write() + "\n";
388 req
->WriteHeader("Content-Type", "application/json");
389 req
->WriteReply(HTTP_OK
, strJSON
);
394 return RESTERR(req
, HTTP_NOT_FOUND
, "output format not found (available: " + AvailableDataFormatsString() + ")");
399 return true; // continue to process further HTTP reqs on this cxn
402 static bool rest_getutxos(HTTPRequest
* req
, const std::string
& strURIPart
)
404 if (!CheckWarmup(req
))
407 const RetFormat rf
= ParseDataFormat(param
, strURIPart
);
409 std::vector
<std::string
> uriParts
;
410 if (param
.length() > 1)
412 std::string strUriParams
= param
.substr(1);
413 boost::split(uriParts
, strUriParams
, boost::is_any_of("/"));
416 // throw exception in case of an empty request
417 std::string strRequestMutable
= req
->ReadBody();
418 if (strRequestMutable
.length() == 0 && uriParts
.size() == 0)
419 return RESTERR(req
, HTTP_BAD_REQUEST
, "Error: empty request");
421 bool fInputParsed
= false;
422 bool fCheckMemPool
= false;
423 std::vector
<COutPoint
> vOutPoints
;
425 // parse/deserialize input
426 // input-format = output-format, rest/getutxos/bin requires binary input, gives binary output, ...
428 if (uriParts
.size() > 0)
431 //inputs is sent over URI scheme (/rest/getutxos/checkmempool/txid1-n/txid2-n/...)
432 if (uriParts
.size() > 0 && uriParts
[0] == "checkmempool")
433 fCheckMemPool
= true;
435 for (size_t i
= (fCheckMemPool
) ? 1 : 0; i
< uriParts
.size(); i
++)
439 std::string strTxid
= uriParts
[i
].substr(0, uriParts
[i
].find("-"));
440 std::string strOutput
= uriParts
[i
].substr(uriParts
[i
].find("-")+1);
442 if (!ParseInt32(strOutput
, &nOutput
) || !IsHex(strTxid
))
443 return RESTERR(req
, HTTP_BAD_REQUEST
, "Parse error");
445 txid
.SetHex(strTxid
);
446 vOutPoints
.push_back(COutPoint(txid
, (uint32_t)nOutput
));
449 if (vOutPoints
.size() > 0)
452 return RESTERR(req
, HTTP_BAD_REQUEST
, "Error: empty request");
457 // convert hex to bin, continue then with bin part
458 std::vector
<unsigned char> strRequestV
= ParseHex(strRequestMutable
);
459 strRequestMutable
.assign(strRequestV
.begin(), strRequestV
.end());
464 //deserialize only if user sent a request
465 if (strRequestMutable
.size() > 0)
467 if (fInputParsed
) //don't allow sending input over URI and HTTP RAW DATA
468 return RESTERR(req
, HTTP_BAD_REQUEST
, "Combination of URI scheme inputs and raw post data is not allowed");
470 CDataStream
oss(SER_NETWORK
, PROTOCOL_VERSION
);
471 oss
<< strRequestMutable
;
472 oss
>> fCheckMemPool
;
475 } catch (const std::ios_base::failure
& e
) {
476 // abort in case of unreadable binary data
477 return RESTERR(req
, HTTP_BAD_REQUEST
, "Parse error");
484 return RESTERR(req
, HTTP_BAD_REQUEST
, "Error: empty request");
488 return RESTERR(req
, HTTP_NOT_FOUND
, "output format not found (available: " + AvailableDataFormatsString() + ")");
492 // limit max outpoints
493 if (vOutPoints
.size() > MAX_GETUTXOS_OUTPOINTS
)
494 return RESTERR(req
, HTTP_BAD_REQUEST
, strprintf("Error: max outpoints exceeded (max: %d, tried: %d)", MAX_GETUTXOS_OUTPOINTS
, vOutPoints
.size()));
496 // check spentness and form a bitmap (as well as a JSON capable human-readable string representation)
497 std::vector
<unsigned char> bitmap
;
498 std::vector
<CCoin
> outs
;
499 std::string bitmapStringRepresentation
;
500 std::vector
<bool> hits
;
501 bitmap
.resize((vOutPoints
.size() + 7) / 8);
503 LOCK2(cs_main
, mempool
.cs
);
505 CCoinsView viewDummy
;
506 CCoinsViewCache
view(&viewDummy
);
508 CCoinsViewCache
& viewChain
= *pcoinsTip
;
509 CCoinsViewMemPool
viewMempool(&viewChain
, mempool
);
512 view
.SetBackend(viewMempool
); // switch cache backend to db+mempool in case user likes to query mempool
514 for (size_t i
= 0; i
< vOutPoints
.size(); i
++) {
517 if (view
.GetCoin(vOutPoints
[i
], coin
) && !mempool
.isSpent(vOutPoints
[i
])) {
519 outs
.emplace_back(std::move(coin
));
523 bitmapStringRepresentation
.append(hit
? "1" : "0"); // form a binary string representation (human-readable for json output)
524 bitmap
[i
/ 8] |= ((uint8_t)hit
) << (i
% 8);
531 // use exact same output as mentioned in Bip64
532 CDataStream
ssGetUTXOResponse(SER_NETWORK
, PROTOCOL_VERSION
);
533 ssGetUTXOResponse
<< chainActive
.Height() << chainActive
.Tip()->GetBlockHash() << bitmap
<< outs
;
534 std::string ssGetUTXOResponseString
= ssGetUTXOResponse
.str();
536 req
->WriteHeader("Content-Type", "application/octet-stream");
537 req
->WriteReply(HTTP_OK
, ssGetUTXOResponseString
);
542 CDataStream
ssGetUTXOResponse(SER_NETWORK
, PROTOCOL_VERSION
);
543 ssGetUTXOResponse
<< chainActive
.Height() << chainActive
.Tip()->GetBlockHash() << bitmap
<< outs
;
544 std::string strHex
= HexStr(ssGetUTXOResponse
.begin(), ssGetUTXOResponse
.end()) + "\n";
546 req
->WriteHeader("Content-Type", "text/plain");
547 req
->WriteReply(HTTP_OK
, strHex
);
552 UniValue
objGetUTXOResponse(UniValue::VOBJ
);
554 // pack in some essentials
555 // use more or less the same output as mentioned in Bip64
556 objGetUTXOResponse
.push_back(Pair("chainHeight", chainActive
.Height()));
557 objGetUTXOResponse
.push_back(Pair("chaintipHash", chainActive
.Tip()->GetBlockHash().GetHex()));
558 objGetUTXOResponse
.push_back(Pair("bitmap", bitmapStringRepresentation
));
560 UniValue
utxos(UniValue::VARR
);
561 for (const CCoin
& coin
: outs
) {
562 UniValue
utxo(UniValue::VOBJ
);
563 utxo
.push_back(Pair("height", (int32_t)coin
.nHeight
));
564 utxo
.push_back(Pair("value", ValueFromAmount(coin
.out
.nValue
)));
566 // include the script in a json output
567 UniValue
o(UniValue::VOBJ
);
568 ScriptPubKeyToUniv(coin
.out
.scriptPubKey
, o
, true);
569 utxo
.push_back(Pair("scriptPubKey", o
));
570 utxos
.push_back(utxo
);
572 objGetUTXOResponse
.push_back(Pair("utxos", utxos
));
574 // return json string
575 std::string strJSON
= objGetUTXOResponse
.write() + "\n";
576 req
->WriteHeader("Content-Type", "application/json");
577 req
->WriteReply(HTTP_OK
, strJSON
);
581 return RESTERR(req
, HTTP_NOT_FOUND
, "output format not found (available: " + AvailableDataFormatsString() + ")");
586 return true; // continue to process further HTTP reqs on this cxn
589 static const struct {
591 bool (*handler
)(HTTPRequest
* req
, const std::string
& strReq
);
593 {"/rest/tx/", rest_tx
},
594 {"/rest/block/notxdetails/", rest_block_notxdetails
},
595 {"/rest/block/", rest_block_extended
},
596 {"/rest/chaininfo", rest_chaininfo
},
597 {"/rest/mempool/info", rest_mempool_info
},
598 {"/rest/mempool/contents", rest_mempool_contents
},
599 {"/rest/headers/", rest_headers
},
600 {"/rest/getutxos", rest_getutxos
},
605 for (unsigned int i
= 0; i
< ARRAYLEN(uri_prefixes
); i
++)
606 RegisterHTTPHandler(uri_prefixes
[i
].prefix
, false, uri_prefixes
[i
].handler
);
616 for (unsigned int i
= 0; i
< ARRAYLEN(uri_prefixes
); i
++)
617 UnregisterHTTPHandler(uri_prefixes
[i
].prefix
, false);