2013-11-20 14:18:57 +01:00
|
|
|
// Copyright (c) 2010 Satoshi Nakamoto
|
2018-01-02 18:12:05 +01:00
|
|
|
// Copyright (c) 2009-2017 The Bitcoin Core developers
|
2014-11-20 03:19:29 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-11-20 14:18:57 +01:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2017-11-10 01:57:53 +01:00
|
|
|
#include <rpc/client.h>
|
|
|
|
#include <rpc/protocol.h>
|
|
|
|
#include <util.h>
|
2013-11-20 14:18:57 +01:00
|
|
|
|
2014-09-14 12:43:56 +02:00
|
|
|
#include <set>
|
2013-11-20 14:18:57 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2014-06-27 04:12:36 +02:00
|
|
|
class CRPCConvertParam
|
2013-11-20 14:18:57 +01:00
|
|
|
{
|
2014-06-27 04:12:36 +02:00
|
|
|
public:
|
2016-04-03 11:49:36 +02:00
|
|
|
std::string methodName; //!< method whose params want conversion
|
|
|
|
int paramIdx; //!< 0-based idx of param to convert
|
2016-11-22 14:56:29 +01:00
|
|
|
std::string paramName; //!< parameter name
|
2014-06-27 04:12:36 +02:00
|
|
|
};
|
|
|
|
|
2016-11-22 14:56:29 +01:00
|
|
|
/**
|
2017-02-06 15:16:18 +01:00
|
|
|
* Specify a (method, idx, name) here if the argument is a non-string RPC
|
2016-11-22 14:56:29 +01:00
|
|
|
* argument and needs to be converted from JSON.
|
|
|
|
*
|
|
|
|
* @note Parameter indexes start from 0.
|
|
|
|
*/
|
2014-06-27 04:12:36 +02:00
|
|
|
static const CRPCConvertParam vRPCConvertParams[] =
|
|
|
|
{
|
2016-11-22 14:56:29 +01:00
|
|
|
{ "setmocktime", 0, "timestamp" },
|
|
|
|
{ "generate", 0, "nblocks" },
|
|
|
|
{ "generate", 1, "maxtries" },
|
|
|
|
{ "generatetoaddress", 0, "nblocks" },
|
|
|
|
{ "generatetoaddress", 2, "maxtries" },
|
|
|
|
{ "getnetworkhashps", 0, "nblocks" },
|
|
|
|
{ "getnetworkhashps", 1, "height" },
|
|
|
|
{ "sendtoaddress", 1, "amount" },
|
|
|
|
{ "sendtoaddress", 4, "subtractfeefromamount" },
|
2017-06-14 21:15:40 +02:00
|
|
|
{ "sendtoaddress", 5 , "replaceable" },
|
|
|
|
{ "sendtoaddress", 6 , "conf_target" },
|
2016-11-22 14:56:29 +01:00
|
|
|
{ "settxfee", 0, "amount" },
|
|
|
|
{ "getreceivedbyaddress", 1, "minconf" },
|
|
|
|
{ "getreceivedbyaccount", 1, "minconf" },
|
|
|
|
{ "listreceivedbyaddress", 0, "minconf" },
|
|
|
|
{ "listreceivedbyaddress", 1, "include_empty" },
|
|
|
|
{ "listreceivedbyaddress", 2, "include_watchonly" },
|
2017-01-09 23:17:48 +01:00
|
|
|
{ "listreceivedbyaddress", 3, "address_filter" },
|
2016-11-22 14:56:29 +01:00
|
|
|
{ "listreceivedbyaccount", 0, "minconf" },
|
|
|
|
{ "listreceivedbyaccount", 1, "include_empty" },
|
|
|
|
{ "listreceivedbyaccount", 2, "include_watchonly" },
|
|
|
|
{ "getbalance", 1, "minconf" },
|
|
|
|
{ "getbalance", 2, "include_watchonly" },
|
2016-12-09 18:06:42 +01:00
|
|
|
{ "getblockhash", 0, "height" },
|
2016-11-22 14:56:29 +01:00
|
|
|
{ "waitforblockheight", 0, "height" },
|
|
|
|
{ "waitforblockheight", 1, "timeout" },
|
|
|
|
{ "waitforblock", 1, "timeout" },
|
|
|
|
{ "waitfornewblock", 0, "timeout" },
|
|
|
|
{ "move", 2, "amount" },
|
|
|
|
{ "move", 3, "minconf" },
|
|
|
|
{ "sendfrom", 2, "amount" },
|
|
|
|
{ "sendfrom", 3, "minconf" },
|
|
|
|
{ "listtransactions", 1, "count" },
|
2016-12-09 18:06:42 +01:00
|
|
|
{ "listtransactions", 2, "skip" },
|
2016-11-22 14:56:29 +01:00
|
|
|
{ "listtransactions", 3, "include_watchonly" },
|
|
|
|
{ "listaccounts", 0, "minconf" },
|
|
|
|
{ "listaccounts", 1, "include_watchonly" },
|
|
|
|
{ "walletpassphrase", 1, "timeout" },
|
|
|
|
{ "getblocktemplate", 0, "template_request" },
|
|
|
|
{ "listsinceblock", 1, "target_confirmations" },
|
|
|
|
{ "listsinceblock", 2, "include_watchonly" },
|
2017-01-24 06:27:22 +01:00
|
|
|
{ "listsinceblock", 3, "include_removed" },
|
2016-11-22 14:56:29 +01:00
|
|
|
{ "sendmany", 1, "amounts" },
|
|
|
|
{ "sendmany", 2, "minconf" },
|
|
|
|
{ "sendmany", 4, "subtractfeefrom" },
|
2017-06-14 21:15:40 +02:00
|
|
|
{ "sendmany", 5 , "replaceable" },
|
|
|
|
{ "sendmany", 6 , "conf_target" },
|
2016-11-22 14:56:29 +01:00
|
|
|
{ "addmultisigaddress", 0, "nrequired" },
|
|
|
|
{ "addmultisigaddress", 1, "keys" },
|
|
|
|
{ "createmultisig", 0, "nrequired" },
|
|
|
|
{ "createmultisig", 1, "keys" },
|
|
|
|
{ "listunspent", 0, "minconf" },
|
|
|
|
{ "listunspent", 1, "maxconf" },
|
|
|
|
{ "listunspent", 2, "addresses" },
|
2017-06-19 04:48:57 +02:00
|
|
|
{ "listunspent", 3, "include_unsafe" },
|
2017-03-07 19:17:32 +01:00
|
|
|
{ "listunspent", 4, "query_options" },
|
2017-04-10 15:28:56 +02:00
|
|
|
{ "getblock", 1, "verbosity" },
|
2017-07-05 13:09:58 +02:00
|
|
|
{ "getblock", 1, "verbose" },
|
2016-11-22 14:56:29 +01:00
|
|
|
{ "getblockheader", 1, "verbose" },
|
2017-02-10 02:24:30 +01:00
|
|
|
{ "getchaintxstats", 0, "nblocks" },
|
2016-11-22 14:56:29 +01:00
|
|
|
{ "gettransaction", 1, "include_watchonly" },
|
|
|
|
{ "getrawtransaction", 1, "verbose" },
|
2017-03-26 12:08:44 +02:00
|
|
|
{ "createrawtransaction", 0, "inputs" },
|
2016-11-22 14:56:29 +01:00
|
|
|
{ "createrawtransaction", 1, "outputs" },
|
|
|
|
{ "createrawtransaction", 2, "locktime" },
|
2017-06-28 23:49:04 +02:00
|
|
|
{ "createrawtransaction", 3, "replaceable" },
|
2017-08-28 08:00:21 +02:00
|
|
|
{ "decoderawtransaction", 1, "iswitness" },
|
2016-11-22 14:56:29 +01:00
|
|
|
{ "signrawtransaction", 1, "prevtxs" },
|
|
|
|
{ "signrawtransaction", 2, "privkeys" },
|
2017-06-12 21:23:02 +02:00
|
|
|
{ "signrawtransactionwithkey", 1, "privkeys" },
|
|
|
|
{ "signrawtransactionwithkey", 2, "prevtxs" },
|
|
|
|
{ "signrawtransactionwithwallet", 1, "prevtxs" },
|
2016-11-22 14:56:29 +01:00
|
|
|
{ "sendrawtransaction", 1, "allowhighfees" },
|
2017-06-10 07:38:06 +02:00
|
|
|
{ "combinerawtransaction", 0, "txs" },
|
2016-11-22 14:56:29 +01:00
|
|
|
{ "fundrawtransaction", 1, "options" },
|
2017-08-28 08:00:21 +02:00
|
|
|
{ "fundrawtransaction", 2, "iswitness" },
|
2016-11-22 14:56:29 +01:00
|
|
|
{ "gettxout", 1, "n" },
|
|
|
|
{ "gettxout", 2, "include_mempool" },
|
|
|
|
{ "gettxoutproof", 0, "txids" },
|
|
|
|
{ "lockunspent", 0, "unlock" },
|
|
|
|
{ "lockunspent", 1, "transactions" },
|
|
|
|
{ "importprivkey", 2, "rescan" },
|
|
|
|
{ "importaddress", 2, "rescan" },
|
|
|
|
{ "importaddress", 3, "p2sh" },
|
|
|
|
{ "importpubkey", 2, "rescan" },
|
|
|
|
{ "importmulti", 0, "requests" },
|
|
|
|
{ "importmulti", 1, "options" },
|
|
|
|
{ "verifychain", 0, "checklevel" },
|
|
|
|
{ "verifychain", 1, "nblocks" },
|
2016-11-29 18:39:19 +01:00
|
|
|
{ "pruneblockchain", 0, "height" },
|
2016-11-22 14:56:29 +01:00
|
|
|
{ "keypoolrefill", 0, "newsize" },
|
|
|
|
{ "getrawmempool", 0, "verbose" },
|
2017-09-07 19:15:45 +02:00
|
|
|
{ "estimatesmartfee", 0, "conf_target" },
|
2017-09-07 18:16:34 +02:00
|
|
|
{ "estimaterawfee", 0, "conf_target" },
|
2017-01-24 22:30:03 +01:00
|
|
|
{ "estimaterawfee", 1, "threshold" },
|
2017-06-06 16:13:17 +02:00
|
|
|
{ "prioritisetransaction", 1, "dummy" },
|
2017-04-21 18:41:01 +02:00
|
|
|
{ "prioritisetransaction", 2, "fee_delta" },
|
2016-11-22 14:56:29 +01:00
|
|
|
{ "setban", 2, "bantime" },
|
|
|
|
{ "setban", 3, "absolute" },
|
|
|
|
{ "setnetworkactive", 0, "state" },
|
|
|
|
{ "getmempoolancestors", 1, "verbose" },
|
|
|
|
{ "getmempooldescendants", 1, "verbose" },
|
2016-12-09 19:45:27 +01:00
|
|
|
{ "bumpfee", 1, "options" },
|
2017-04-03 19:39:11 +02:00
|
|
|
{ "logging", 0, "include" },
|
|
|
|
{ "logging", 1, "exclude" },
|
2017-04-03 16:03:00 +02:00
|
|
|
{ "disconnectnode", 1, "nodeid" },
|
2017-08-26 23:52:03 +02:00
|
|
|
{ "addwitnessaddress", 1, "p2sh" },
|
2016-11-22 14:56:29 +01:00
|
|
|
// Echo with conversion (For testing only)
|
|
|
|
{ "echojson", 0, "arg0" },
|
|
|
|
{ "echojson", 1, "arg1" },
|
|
|
|
{ "echojson", 2, "arg2" },
|
|
|
|
{ "echojson", 3, "arg3" },
|
|
|
|
{ "echojson", 4, "arg4" },
|
|
|
|
{ "echojson", 5, "arg5" },
|
|
|
|
{ "echojson", 6, "arg6" },
|
|
|
|
{ "echojson", 7, "arg7" },
|
|
|
|
{ "echojson", 8, "arg8" },
|
|
|
|
{ "echojson", 9, "arg9" },
|
2015-11-19 16:05:37 +01:00
|
|
|
{ "rescanblockchain", 0, "start_height"},
|
|
|
|
{ "rescanblockchain", 1, "stop_height"},
|
2014-06-27 04:12:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class CRPCConvertTable
|
|
|
|
{
|
|
|
|
private:
|
2016-11-22 14:56:29 +01:00
|
|
|
std::set<std::pair<std::string, int>> members;
|
|
|
|
std::set<std::pair<std::string, std::string>> membersByName;
|
2014-06-27 04:12:36 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
CRPCConvertTable();
|
|
|
|
|
|
|
|
bool convert(const std::string& method, int idx) {
|
|
|
|
return (members.count(std::make_pair(method, idx)) > 0);
|
2013-11-20 14:18:57 +01:00
|
|
|
}
|
2016-11-22 14:56:29 +01:00
|
|
|
bool convert(const std::string& method, const std::string& name) {
|
|
|
|
return (membersByName.count(std::make_pair(method, name)) > 0);
|
|
|
|
}
|
2014-06-27 04:12:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
CRPCConvertTable::CRPCConvertTable()
|
|
|
|
{
|
|
|
|
const unsigned int n_elem =
|
|
|
|
(sizeof(vRPCConvertParams) / sizeof(vRPCConvertParams[0]));
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < n_elem; i++) {
|
|
|
|
members.insert(std::make_pair(vRPCConvertParams[i].methodName,
|
|
|
|
vRPCConvertParams[i].paramIdx));
|
2016-11-22 14:56:29 +01:00
|
|
|
membersByName.insert(std::make_pair(vRPCConvertParams[i].methodName,
|
|
|
|
vRPCConvertParams[i].paramName));
|
2013-11-20 14:18:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-27 04:12:36 +02:00
|
|
|
static CRPCConvertTable rpcCvtTable;
|
|
|
|
|
2015-06-04 10:31:22 +02:00
|
|
|
/** Non-RFC4627 JSON parser, accepts internal values (such as numbers, true, false, null)
|
|
|
|
* as well as objects and arrays.
|
|
|
|
*/
|
|
|
|
UniValue ParseNonRFCJSONValue(const std::string& strVal)
|
|
|
|
{
|
|
|
|
UniValue jVal;
|
|
|
|
if (!jVal.read(std::string("[")+strVal+std::string("]")) ||
|
|
|
|
!jVal.isArray() || jVal.size()!=1)
|
2017-01-04 05:22:19 +01:00
|
|
|
throw std::runtime_error(std::string("Error parsing JSON:")+strVal);
|
2015-06-04 10:31:22 +02:00
|
|
|
return jVal[0];
|
|
|
|
}
|
|
|
|
|
2015-05-13 21:29:19 +02:00
|
|
|
UniValue RPCConvertValues(const std::string &strMethod, const std::vector<std::string> &strParams)
|
2013-11-20 14:18:57 +01:00
|
|
|
{
|
2015-05-10 13:35:44 +02:00
|
|
|
UniValue params(UniValue::VARR);
|
2014-06-27 04:12:36 +02:00
|
|
|
|
|
|
|
for (unsigned int idx = 0; idx < strParams.size(); idx++) {
|
|
|
|
const std::string& strVal = strParams[idx];
|
|
|
|
|
|
|
|
if (!rpcCvtTable.convert(strMethod, idx)) {
|
2015-06-04 10:31:22 +02:00
|
|
|
// insert string value directly
|
2014-06-27 04:12:36 +02:00
|
|
|
params.push_back(strVal);
|
2015-06-04 10:31:22 +02:00
|
|
|
} else {
|
|
|
|
// parse string as JSON, insert bool/number/object/etc. value
|
|
|
|
params.push_back(ParseNonRFCJSONValue(strVal));
|
2014-06-27 04:12:36 +02:00
|
|
|
}
|
|
|
|
}
|
2013-11-20 14:18:57 +01:00
|
|
|
|
|
|
|
return params;
|
|
|
|
}
|
2016-11-22 14:56:29 +01:00
|
|
|
|
|
|
|
UniValue RPCConvertNamedValues(const std::string &strMethod, const std::vector<std::string> &strParams)
|
|
|
|
{
|
|
|
|
UniValue params(UniValue::VOBJ);
|
|
|
|
|
|
|
|
for (const std::string &s: strParams) {
|
2018-01-11 21:40:51 +01:00
|
|
|
size_t pos = s.find('=');
|
2016-11-22 14:56:29 +01:00
|
|
|
if (pos == std::string::npos) {
|
|
|
|
throw(std::runtime_error("No '=' in named argument '"+s+"', this needs to be present for every argument (even if it is empty)"));
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string name = s.substr(0, pos);
|
|
|
|
std::string value = s.substr(pos+1);
|
|
|
|
|
|
|
|
if (!rpcCvtTable.convert(strMethod, name)) {
|
|
|
|
// insert string value directly
|
|
|
|
params.pushKV(name, value);
|
|
|
|
} else {
|
|
|
|
// parse string as JSON, insert bool/number/object/etc. value
|
|
|
|
params.pushKV(name, ParseNonRFCJSONValue(value));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return params;
|
|
|
|
}
|