2010-07-14 17:54:31 +02:00
|
|
|
// Copyright (c) 2010 Satoshi Nakamoto
|
2014-12-17 02:47:57 +01:00
|
|
|
// Copyright (c) 2009-2014 The Bitcoin Core developers
|
2014-10-30 03:14:08 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2012-05-18 16:02:28 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2010-07-14 17:54:31 +02:00
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#ifndef BITCOIN_RPCSERVER_H
|
|
|
|
#define BITCOIN_RPCSERVER_H
|
2012-04-21 01:37:34 +02:00
|
|
|
|
2014-04-23 00:46:19 +02:00
|
|
|
#include "amount.h"
|
2013-11-20 14:18:57 +01:00
|
|
|
#include "rpcprotocol.h"
|
2014-10-31 09:36:30 +01:00
|
|
|
#include "uint256.h"
|
2013-04-13 07:13:08 +02:00
|
|
|
|
2012-06-23 00:36:42 +02:00
|
|
|
#include <list>
|
2012-04-21 01:37:34 +02:00
|
|
|
#include <map>
|
2013-04-13 07:13:08 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <string>
|
2012-08-21 17:03:38 +02:00
|
|
|
|
2014-08-20 21:15:16 +02:00
|
|
|
#include <boost/function.hpp>
|
2015-05-18 14:02:18 +02:00
|
|
|
|
|
|
|
#include "univalue/univalue.h"
|
2012-04-21 01:37:34 +02:00
|
|
|
|
2014-10-19 10:46:17 +02:00
|
|
|
class CRPCCommand;
|
|
|
|
|
|
|
|
namespace RPCServer
|
|
|
|
{
|
|
|
|
void OnStarted(boost::function<void ()> slot);
|
|
|
|
void OnStopped(boost::function<void ()> slot);
|
|
|
|
void OnPreCommand(boost::function<void (const CRPCCommand&)> slot);
|
|
|
|
void OnPostCommand(boost::function<void (const CRPCCommand&)> slot);
|
|
|
|
}
|
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
class CBlockIndex;
|
2014-04-28 15:23:29 +02:00
|
|
|
class CNetAddr;
|
2012-05-24 05:20:07 +02:00
|
|
|
|
2014-06-27 06:10:53 +02:00
|
|
|
class AcceptedConnection
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~AcceptedConnection() {}
|
|
|
|
|
|
|
|
virtual std::iostream& stream() = 0;
|
|
|
|
virtual std::string peer_address_to_string() const = 0;
|
|
|
|
virtual void close() = 0;
|
|
|
|
};
|
|
|
|
|
2014-10-30 03:14:08 +01:00
|
|
|
/** Start RPC threads */
|
2013-03-07 04:31:26 +01:00
|
|
|
void StartRPCThreads();
|
2014-10-30 03:14:08 +01:00
|
|
|
/**
|
|
|
|
* Alternative to StartRPCThreads for the GUI, when no server is
|
2014-01-17 16:32:35 +01:00
|
|
|
* used. The RPC thread in this case is only used to handle timeouts.
|
|
|
|
* If real RPC threads have already been started this is a no-op.
|
|
|
|
*/
|
|
|
|
void StartDummyRPCThread();
|
2014-11-20 03:19:29 +01:00
|
|
|
/** Stop RPC threads */
|
2013-03-07 04:31:26 +01:00
|
|
|
void StopRPCThreads();
|
2014-11-20 03:19:29 +01:00
|
|
|
/** Query whether RPC is running */
|
2012-05-13 06:43:24 +02:00
|
|
|
bool IsRPCRunning();
|
2012-04-09 21:07:25 +02:00
|
|
|
|
2015-05-31 15:36:44 +02:00
|
|
|
/**
|
2014-11-20 03:19:29 +01:00
|
|
|
* Set the RPC warmup status. When this is done, all RPC calls will error out
|
2014-10-29 18:08:31 +01:00
|
|
|
* immediately with RPC_IN_WARMUP.
|
|
|
|
*/
|
|
|
|
void SetRPCWarmupStatus(const std::string& newStatus);
|
|
|
|
/* Mark warmup as done. RPC calls will be processed from now on. */
|
|
|
|
void SetRPCWarmupFinished();
|
|
|
|
|
2014-11-26 13:51:02 +01:00
|
|
|
/* returns the current warmup state. */
|
|
|
|
bool RPCIsInWarmup(std::string *statusOut);
|
|
|
|
|
2014-10-30 03:14:08 +01:00
|
|
|
/**
|
|
|
|
* Type-check arguments; throws JSONRPCError if wrong type given. Does not check that
|
|
|
|
* the right number of arguments are passed, just that any passed are the correct type.
|
|
|
|
* Use like: RPCTypeCheck(params, boost::assign::list_of(str_type)(int_type)(obj_type));
|
|
|
|
*/
|
2015-05-13 21:29:19 +02:00
|
|
|
void RPCTypeCheck(const UniValue& params,
|
|
|
|
const std::list<UniValue::VType>& typesExpected, bool fAllowNull=false);
|
2014-08-20 21:15:16 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
Check for expected keys/value types in an Object.
|
|
|
|
Use like: RPCTypeCheckObj(object, boost::assign::map_list_of("name", str_type)("value", int_type));
|
|
|
|
*/
|
|
|
|
void RPCTypeCheckObj(const UniValue& o,
|
|
|
|
const std::map<std::string, UniValue::VType>& typesExpected, bool fAllowNull=false);
|
2012-06-23 00:36:42 +02:00
|
|
|
|
2014-10-30 03:14:08 +01:00
|
|
|
/**
|
|
|
|
* Run func nSeconds from now. Uses boost deadline timers.
|
|
|
|
* Overrides previous timer <name> (if any).
|
2013-05-07 16:47:00 +02:00
|
|
|
*/
|
2013-04-13 07:13:08 +02:00
|
|
|
void RPCRunLater(const std::string& name, boost::function<void(void)> func, int64_t nSeconds);
|
2013-05-07 16:47:00 +02:00
|
|
|
|
2014-04-28 15:23:29 +02:00
|
|
|
//! Convert boost::asio address to CNetAddr
|
|
|
|
extern CNetAddr BoostAsioToCNetAddr(boost::asio::ip::address address);
|
|
|
|
|
2015-05-13 21:29:19 +02:00
|
|
|
typedef UniValue(*rpcfn_type)(const UniValue& params, bool fHelp);
|
2012-04-21 01:37:34 +02:00
|
|
|
|
|
|
|
class CRPCCommand
|
|
|
|
{
|
|
|
|
public:
|
2014-07-15 21:38:52 +02:00
|
|
|
std::string category;
|
2012-04-21 01:37:34 +02:00
|
|
|
std::string name;
|
|
|
|
rpcfn_type actor;
|
|
|
|
bool okSafeMode;
|
|
|
|
};
|
|
|
|
|
2012-04-09 21:07:25 +02:00
|
|
|
/**
|
|
|
|
* Bitcoin RPC command dispatcher.
|
|
|
|
*/
|
2012-04-21 01:37:34 +02:00
|
|
|
class CRPCTable
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
std::map<std::string, const CRPCCommand*> mapCommands;
|
|
|
|
public:
|
|
|
|
CRPCTable();
|
2015-05-31 15:36:44 +02:00
|
|
|
const CRPCCommand* operator[](const std::string& name) const;
|
|
|
|
std::string help(const std::string& name) const;
|
2012-04-09 21:07:25 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute a method.
|
|
|
|
* @param method Method to execute
|
2015-05-13 21:29:19 +02:00
|
|
|
* @param params UniValue Array of arguments (JSON objects)
|
2012-04-09 21:07:25 +02:00
|
|
|
* @returns Result of the call.
|
2015-05-13 21:29:19 +02:00
|
|
|
* @throws an exception (UniValue) when an error happens.
|
2012-04-09 21:07:25 +02:00
|
|
|
*/
|
2015-05-13 21:29:19 +02:00
|
|
|
UniValue execute(const std::string &method, const UniValue ¶ms) const;
|
2012-04-21 01:37:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern const CRPCTable tableRPC;
|
2013-05-30 15:51:41 +02:00
|
|
|
|
2014-10-30 03:14:08 +01:00
|
|
|
/**
|
|
|
|
* Utilities: convert hex-encoded Values
|
|
|
|
* (throws error if not hex).
|
|
|
|
*/
|
2015-05-13 21:29:19 +02:00
|
|
|
extern uint256 ParseHashV(const UniValue& v, std::string strName);
|
|
|
|
extern uint256 ParseHashO(const UniValue& o, std::string strKey);
|
|
|
|
extern std::vector<unsigned char> ParseHexV(const UniValue& v, std::string strName);
|
|
|
|
extern std::vector<unsigned char> ParseHexO(const UniValue& o, std::string strKey);
|
2013-07-15 08:24:33 +02:00
|
|
|
|
2013-05-30 15:51:41 +02:00
|
|
|
extern void InitRPCMining();
|
|
|
|
extern void ShutdownRPCMining();
|
2012-04-21 01:37:34 +02:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
extern int64_t nWalletUnlockTime;
|
2015-05-13 21:29:19 +02:00
|
|
|
extern CAmount AmountFromValue(const UniValue& value);
|
|
|
|
extern UniValue ValueFromAmount(const CAmount& amount);
|
2012-08-21 17:03:38 +02:00
|
|
|
extern double GetDifficulty(const CBlockIndex* blockindex = NULL);
|
|
|
|
extern std::string HelpRequiringPassphrase();
|
2015-05-31 15:36:44 +02:00
|
|
|
extern std::string HelpExampleCli(const std::string& methodname, const std::string& args);
|
|
|
|
extern std::string HelpExampleRpc(const std::string& methodname, const std::string& args);
|
2013-10-29 12:29:44 +01:00
|
|
|
|
2012-08-21 17:03:38 +02:00
|
|
|
extern void EnsureWalletIsUnlocked();
|
2012-08-21 16:38:57 +02:00
|
|
|
|
2015-05-13 21:29:19 +02:00
|
|
|
extern UniValue getconnectioncount(const UniValue& params, bool fHelp); // in rpcnet.cpp
|
|
|
|
extern UniValue getpeerinfo(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue ping(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue addnode(const UniValue& params, bool fHelp);
|
2015-06-12 05:20:54 +02:00
|
|
|
extern UniValue disconnectnode(const UniValue& params, bool fHelp);
|
2015-05-13 21:29:19 +02:00
|
|
|
extern UniValue getaddednodeinfo(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue getnettotals(const UniValue& params, bool fHelp);
|
|
|
|
|
|
|
|
extern UniValue dumpprivkey(const UniValue& params, bool fHelp); // in rpcdump.cpp
|
|
|
|
extern UniValue importprivkey(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue importaddress(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue dumpwallet(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue importwallet(const UniValue& params, bool fHelp);
|
|
|
|
|
|
|
|
extern UniValue getgenerate(const UniValue& params, bool fHelp); // in rpcmining.cpp
|
|
|
|
extern UniValue setgenerate(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue generate(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue getnetworkhashps(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue getmininginfo(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue prioritisetransaction(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue getblocktemplate(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue submitblock(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue estimatefee(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue estimatepriority(const UniValue& params, bool fHelp);
|
|
|
|
|
|
|
|
extern UniValue getnewaddress(const UniValue& params, bool fHelp); // in rpcwallet.cpp
|
|
|
|
extern UniValue getaccountaddress(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue getrawchangeaddress(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue setaccount(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue getaccount(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue getaddressesbyaccount(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue sendtoaddress(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue signmessage(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue verifymessage(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue getreceivedbyaddress(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue getreceivedbyaccount(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue getbalance(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue getunconfirmedbalance(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue movecmd(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue sendfrom(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue sendmany(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue addmultisigaddress(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue createmultisig(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue listreceivedbyaddress(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue listreceivedbyaccount(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue listtransactions(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue listaddressgroupings(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue listaccounts(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue listsinceblock(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue gettransaction(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue backupwallet(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue keypoolrefill(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue walletpassphrase(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue walletpassphrasechange(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue walletlock(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue encryptwallet(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue validateaddress(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue getinfo(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue getwalletinfo(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue getblockchaininfo(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue getnetworkinfo(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue setmocktime(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue resendwallettransactions(const UniValue& params, bool fHelp);
|
|
|
|
|
|
|
|
extern UniValue getrawtransaction(const UniValue& params, bool fHelp); // in rcprawtransaction.cpp
|
|
|
|
extern UniValue listunspent(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue lockunspent(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue listlockunspent(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue createrawtransaction(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue decoderawtransaction(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue decodescript(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue signrawtransaction(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue sendrawtransaction(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue gettxoutproof(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue verifytxoutproof(const UniValue& params, bool fHelp);
|
|
|
|
|
|
|
|
extern UniValue getblockcount(const UniValue& params, bool fHelp); // in rpcblockchain.cpp
|
|
|
|
extern UniValue getbestblockhash(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue getdifficulty(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue settxfee(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue getmempoolinfo(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue getrawmempool(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue getblockhash(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue getblock(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue gettxoutsetinfo(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue gettxout(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue verifychain(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue getchaintips(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue invalidateblock(const UniValue& params, bool fHelp);
|
|
|
|
extern UniValue reconsiderblock(const UniValue& params, bool fHelp);
|
2012-08-21 17:03:38 +02:00
|
|
|
|
2014-11-11 10:52:43 +01:00
|
|
|
// in rest.cpp
|
|
|
|
extern bool HTTPReq_REST(AcceptedConnection *conn,
|
2014-12-16 13:45:27 +01:00
|
|
|
const std::string& strURI,
|
2014-12-01 12:38:42 +01:00
|
|
|
const std::string& strRequest,
|
2014-12-16 13:45:27 +01:00
|
|
|
const std::map<std::string, std::string>& mapHeaders,
|
2014-11-11 10:52:43 +01:00
|
|
|
bool fRun);
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#endif // BITCOIN_RPCSERVER_H
|