1 // Copyright (c) 2010 Satoshi Nakamoto
2 // Distributed under the MIT/X11 software license, see the accompanying
3 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
6 #include "cryptopp/sha.h"
8 #include <boost/asio.hpp>
9 #include <boost/iostreams/concepts.hpp>
10 #include <boost/iostreams/stream.hpp>
12 #include <boost/asio/ssl.hpp>
13 typedef boost::asio::ssl::stream<boost::asio::ip::tcp::socket> SSLStream;
15 #include "json/json_spirit_reader_template.h"
16 #include "json/json_spirit_writer_template.h"
17 #include "json/json_spirit_utils.h"
18 #define printf OutputDebugStringF
19 // MinGW 3.4.5 gets "fatal error: had to relocate PCH" if the json headers are
20 // precompiled in headers.h. The problem might be when the pch file goes over
21 // a certain size around 145MB. If we need access to json_spirit outside this
22 // file, we could use the compiled json_spirit option.
24 using namespace boost::asio;
25 using namespace json_spirit;
27 void ThreadRPCServer2(void* parg);
28 typedef Value(*rpcfn_type)(const Array& params, bool fHelp);
29 extern map<string, rpcfn_type> mapCallTable;
32 Object JSONRPCError(int code, const string& message)
35 error.push_back(Pair("code", code));
36 error.push_back(Pair("message", message));
41 void PrintConsole(const char* format, ...)
44 int limit = sizeof(buffer);
46 va_start(arg_ptr, format);
47 int ret = _vsnprintf(buffer, limit, format, arg_ptr);
49 if (ret < 0 || ret >= limit)
55 #if defined(__WXMSW__) && defined(GUI)
56 MyMessageBox(buffer, "Bitcoin", wxOK | wxICON_EXCLAMATION);
58 fprintf(stdout, "%s", buffer);
63 int64 AmountFromValue(const Value& value)
65 double dAmount = value.get_real();
66 if (dAmount <= 0.0 || dAmount > 21000000.0)
67 throw JSONRPCError(-3, "Invalid amount");
68 int64 nAmount = roundint64(dAmount * COIN);
69 if (!MoneyRange(nAmount))
70 throw JSONRPCError(-3, "Invalid amount");
74 Value ValueFromAmount(int64 amount)
76 return (double)amount / (double)COIN;
79 void WalletTxToJSON(const CWalletTx& wtx, Object& entry)
81 entry.push_back(Pair("confirmations", wtx.GetDepthInMainChain()));
82 entry.push_back(Pair("txid", wtx.GetHash().GetHex()));
83 entry.push_back(Pair("time", (boost::int64_t)wtx.GetTxTime()));
84 foreach(const PAIRTYPE(string,string)& item, wtx.mapValue)
85 entry.push_back(Pair(item.first, item.second));
88 string AccountFromValue(const Value& value)
90 string strAccount = value.get_str();
91 if (strAccount == "*")
92 throw JSONRPCError(-11, "Invalid account name");
99 /// Note: This interface may still be subject to change.
103 Value help(const Array& params, bool fHelp)
105 if (fHelp || params.size() > 1)
108 "List commands, or get help for a command.");
111 if (params.size() > 0)
112 strCommand = params[0].get_str();
115 set<rpcfn_type> setDone;
116 for (map<string, rpcfn_type>::iterator mi = mapCallTable.begin(); mi != mapCallTable.end(); ++mi)
118 string strMethod = (*mi).first;
119 // We already filter duplicates, but these deprecated screw up the sort order
120 if (strMethod == "getamountreceived" ||
121 strMethod == "getallreceived" ||
122 (strMethod.find("label") != string::npos))
124 if (strCommand != "" && strMethod != strCommand)
129 rpcfn_type pfn = (*mi).second;
130 if (setDone.insert(pfn).second)
131 (*pfn)(params, true);
133 catch (std::exception& e)
135 // Help text is returned in an exception
136 string strHelp = string(e.what());
137 if (strCommand == "")
138 if (strHelp.find('\n') != -1)
139 strHelp = strHelp.substr(0, strHelp.find('\n'));
140 strRet += strHelp + "\n";
144 strRet = strprintf("help: unknown command: %s\n", strCommand.c_str());
145 strRet = strRet.substr(0,strRet.size()-1);
150 Value stop(const Array& params, bool fHelp)
152 if (fHelp || params.size() != 0)
155 "Stop bitcoin server.");
157 // Shutdown will take long enough that the response should get back
158 CreateThread(Shutdown, NULL);
159 return "bitcoin server stopping";
163 Value getblockcount(const Array& params, bool fHelp)
165 if (fHelp || params.size() != 0)
168 "Returns the number of blocks in the longest block chain.");
174 Value getblocknumber(const Array& params, bool fHelp)
176 if (fHelp || params.size() != 0)
179 "Returns the block number of the latest block in the longest block chain.");
185 Value getconnectioncount(const Array& params, bool fHelp)
187 if (fHelp || params.size() != 0)
189 "getconnectioncount\n"
190 "Returns the number of connections to other nodes.");
192 return (int)vNodes.size();
196 double GetDifficulty()
198 // Floating point number that is a multiple of the minimum difficulty,
199 // minimum difficulty = 1.0.
200 if (pindexBest == NULL)
202 int nShift = 256 - 32 - 31; // to fit in a uint
203 double dMinimum = (CBigNum().SetCompact(bnProofOfWorkLimit.GetCompact()) >> nShift).getuint();
204 double dCurrently = (CBigNum().SetCompact(pindexBest->nBits) >> nShift).getuint();
205 return dMinimum / dCurrently;
208 Value getdifficulty(const Array& params, bool fHelp)
210 if (fHelp || params.size() != 0)
213 "Returns the proof-of-work difficulty as a multiple of the minimum difficulty.");
215 return GetDifficulty();
219 Value getgenerate(const Array& params, bool fHelp)
221 if (fHelp || params.size() != 0)
224 "Returns true or false.");
226 return (bool)fGenerateBitcoins;
230 Value setgenerate(const Array& params, bool fHelp)
232 if (fHelp || params.size() < 1 || params.size() > 2)
234 "setgenerate <generate> [genproclimit]\n"
235 "<generate> is true or false to turn generation on or off.\n"
236 "Generation is limited to [genproclimit] processors, -1 is unlimited.");
238 bool fGenerate = true;
239 if (params.size() > 0)
240 fGenerate = params[0].get_bool();
242 if (params.size() > 1)
244 int nGenProcLimit = params[1].get_int();
245 fLimitProcessors = (nGenProcLimit != -1);
246 CWalletDB().WriteSetting("fLimitProcessors", fLimitProcessors);
247 if (nGenProcLimit != -1)
248 CWalletDB().WriteSetting("nLimitProcessors", nLimitProcessors = nGenProcLimit);
249 if (nGenProcLimit == 0)
253 GenerateBitcoins(fGenerate);
258 Value gethashespersec(const Array& params, bool fHelp)
260 if (fHelp || params.size() != 0)
263 "Returns a recent hashes per second performance measurement while generating.");
265 if (GetTimeMillis() - nHPSTimerStart > 8000)
266 return (boost::int64_t)0;
267 return (boost::int64_t)dHashesPerSec;
271 Value getinfo(const Array& params, bool fHelp)
273 if (fHelp || params.size() != 0)
276 "Returns an object containing various state info.");
279 obj.push_back(Pair("version", (int)VERSION));
280 obj.push_back(Pair("balance", ValueFromAmount(GetBalance())));
281 obj.push_back(Pair("blocks", (int)nBestHeight));
282 obj.push_back(Pair("connections", (int)vNodes.size()));
283 obj.push_back(Pair("proxy", (fUseProxy ? addrProxy.ToStringIPPort() : string())));
284 obj.push_back(Pair("generate", (bool)fGenerateBitcoins));
285 obj.push_back(Pair("genproclimit", (int)(fLimitProcessors ? nLimitProcessors : -1)));
286 obj.push_back(Pair("difficulty", (double)GetDifficulty()));
287 obj.push_back(Pair("hashespersec", gethashespersec(params, false)));
288 obj.push_back(Pair("testnet", fTestNet));
289 obj.push_back(Pair("keypoololdest", (boost::int64_t)GetOldestKeyPoolTime()));
290 obj.push_back(Pair("paytxfee", ValueFromAmount(nTransactionFee)));
291 obj.push_back(Pair("errors", GetWarnings("statusbar")));
296 Value getnewaddress(const Array& params, bool fHelp)
298 if (fHelp || params.size() > 1)
300 "getnewaddress [account]\n"
301 "Returns a new bitcoin address for receiving payments. "
302 "If [account] is specified (recommended), it is added to the address book "
303 "so payments received with the address will be credited to [account].");
305 // Parse the account first so we don't generate a key if there's an error
307 if (params.size() > 0)
308 strAccount = AccountFromValue(params[0]);
310 // Generate a new key that is added to wallet
311 string strAddress = PubKeyToAddress(GetKeyFromKeyPool());
313 SetAddressBookName(strAddress, strAccount);
318 // requires cs_main, cs_mapWallet locks
319 string GetAccountAddress(string strAccount, bool bForceNew=false)
327 walletdb.ReadAccount(strAccount, account);
329 // Check if the current key has been used
330 if (!account.vchPubKey.empty())
332 CScript scriptPubKey;
333 scriptPubKey.SetBitcoinAddress(account.vchPubKey);
334 for (map<uint256, CWalletTx>::iterator it = mapWallet.begin();
335 it != mapWallet.end() && !account.vchPubKey.empty();
338 const CWalletTx& wtx = (*it).second;
339 foreach(const CTxOut& txout, wtx.vout)
340 if (txout.scriptPubKey == scriptPubKey)
341 account.vchPubKey.clear();
345 // Generate a new key
346 if (account.vchPubKey.empty() || bForceNew)
348 account.vchPubKey = GetKeyFromKeyPool();
349 string strAddress = PubKeyToAddress(account.vchPubKey);
350 SetAddressBookName(strAddress, strAccount);
351 walletdb.WriteAccount(strAccount, account);
354 walletdb.TxnCommit();
355 strAddress = PubKeyToAddress(account.vchPubKey);
360 Value getaccountaddress(const Array& params, bool fHelp)
362 if (fHelp || params.size() != 1)
364 "getaccountaddress <account>\n"
365 "Returns the current bitcoin address for receiving payments to this account.");
367 // Parse the account first so we don't generate a key if there's an error
368 string strAccount = AccountFromValue(params[0]);
372 CRITICAL_BLOCK(cs_main)
373 CRITICAL_BLOCK(cs_mapWallet)
375 ret = GetAccountAddress(strAccount);
383 Value setaccount(const Array& params, bool fHelp)
385 if (fHelp || params.size() < 1 || params.size() > 2)
387 "setaccount <bitcoinaddress> <account>\n"
388 "Sets the account associated with the given address.");
390 string strAddress = params[0].get_str();
392 bool isValid = AddressToHash160(strAddress, hash160);
394 throw JSONRPCError(-5, "Invalid bitcoin address");
398 if (params.size() > 1)
399 strAccount = AccountFromValue(params[1]);
401 // Detect when changing the account of an address that is the 'unused current key' of another account:
402 CRITICAL_BLOCK(cs_main)
403 CRITICAL_BLOCK(cs_mapWallet)
404 CRITICAL_BLOCK(cs_mapAddressBook)
406 if (mapAddressBook.count(strAddress))
408 string strOldAccount = mapAddressBook[strAddress];
409 if (strAddress == GetAccountAddress(strOldAccount))
410 GetAccountAddress(strOldAccount, true);
414 SetAddressBookName(strAddress, strAccount);
419 Value getaccount(const Array& params, bool fHelp)
421 if (fHelp || params.size() != 1)
423 "getaccount <bitcoinaddress>\n"
424 "Returns the account associated with the given address.");
426 string strAddress = params[0].get_str();
429 CRITICAL_BLOCK(cs_mapAddressBook)
431 map<string, string>::iterator mi = mapAddressBook.find(strAddress);
432 if (mi != mapAddressBook.end() && !(*mi).second.empty())
433 strAccount = (*mi).second;
439 Value getaddressesbyaccount(const Array& params, bool fHelp)
441 if (fHelp || params.size() != 1)
443 "getaddressesbyaccount <account>\n"
444 "Returns the list of addresses for the given account.");
446 string strAccount = AccountFromValue(params[0]);
448 // Find all addresses that have the given account
450 CRITICAL_BLOCK(cs_mapAddressBook)
452 foreach(const PAIRTYPE(string, string)& item, mapAddressBook)
454 const string& strAddress = item.first;
455 const string& strName = item.second;
456 if (strName == strAccount)
458 // We're only adding valid bitcoin addresses and not ip addresses
459 CScript scriptPubKey;
460 if (scriptPubKey.SetBitcoinAddress(strAddress))
461 ret.push_back(strAddress);
468 Value sendtoaddress(const Array& params, bool fHelp)
470 if (fHelp || params.size() < 2 || params.size() > 4)
472 "sendtoaddress <bitcoinaddress> <amount> [comment] [comment-to]\n"
473 "<amount> is a real and is rounded to the nearest 0.01");
475 string strAddress = params[0].get_str();
478 int64 nAmount = AmountFromValue(params[1]);
482 if (params.size() > 2 && params[2].type() != null_type && !params[2].get_str().empty())
483 wtx.mapValue["comment"] = params[2].get_str();
484 if (params.size() > 3 && params[3].type() != null_type && !params[3].get_str().empty())
485 wtx.mapValue["to"] = params[3].get_str();
487 CRITICAL_BLOCK(cs_main)
489 string strError = SendMoneyToBitcoinAddress(strAddress, nAmount, wtx);
491 throw JSONRPCError(-4, strError);
494 return wtx.GetHash().GetHex();
498 Value getreceivedbyaddress(const Array& params, bool fHelp)
500 if (fHelp || params.size() < 1 || params.size() > 2)
502 "getreceivedbyaddress <bitcoinaddress> [minconf=1]\n"
503 "Returns the total amount received by <bitcoinaddress> in transactions with at least [minconf] confirmations.");
506 string strAddress = params[0].get_str();
507 CScript scriptPubKey;
508 if (!scriptPubKey.SetBitcoinAddress(strAddress))
509 throw JSONRPCError(-5, "Invalid bitcoin address");
510 if (!IsMine(scriptPubKey))
513 // Minimum confirmations
515 if (params.size() > 1)
516 nMinDepth = params[1].get_int();
520 CRITICAL_BLOCK(cs_mapWallet)
522 for (map<uint256, CWalletTx>::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
524 const CWalletTx& wtx = (*it).second;
525 if (wtx.IsCoinBase() || !wtx.IsFinal())
528 foreach(const CTxOut& txout, wtx.vout)
529 if (txout.scriptPubKey == scriptPubKey)
530 if (wtx.GetDepthInMainChain() >= nMinDepth)
531 nAmount += txout.nValue;
535 return ValueFromAmount(nAmount);
539 void GetAccountPubKeys(string strAccount, set<CScript>& setPubKey)
541 CRITICAL_BLOCK(cs_mapAddressBook)
543 foreach(const PAIRTYPE(string, string)& item, mapAddressBook)
545 const string& strAddress = item.first;
546 const string& strName = item.second;
547 if (strName == strAccount)
549 // We're only counting our own valid bitcoin addresses and not ip addresses
550 CScript scriptPubKey;
551 if (scriptPubKey.SetBitcoinAddress(strAddress))
552 if (IsMine(scriptPubKey))
553 setPubKey.insert(scriptPubKey);
560 Value getreceivedbyaccount(const Array& params, bool fHelp)
562 if (fHelp || params.size() < 1 || params.size() > 2)
564 "getreceivedbyaccount <account> [minconf=1]\n"
565 "Returns the total amount received by addresses with <account> in transactions with at least [minconf] confirmations.");
567 // Minimum confirmations
569 if (params.size() > 1)
570 nMinDepth = params[1].get_int();
572 // Get the set of pub keys that have the label
573 string strAccount = AccountFromValue(params[0]);
574 set<CScript> setPubKey;
575 GetAccountPubKeys(strAccount, setPubKey);
579 CRITICAL_BLOCK(cs_mapWallet)
581 for (map<uint256, CWalletTx>::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
583 const CWalletTx& wtx = (*it).second;
584 if (wtx.IsCoinBase() || !wtx.IsFinal())
587 foreach(const CTxOut& txout, wtx.vout)
588 if (setPubKey.count(txout.scriptPubKey))
589 if (wtx.GetDepthInMainChain() >= nMinDepth)
590 nAmount += txout.nValue;
594 return (double)nAmount / (double)COIN;
598 int64 GetAccountBalance(CWalletDB& walletdb, const string& strAccount, int nMinDepth)
601 CRITICAL_BLOCK(cs_mapWallet)
603 // Tally wallet transactions
604 for (map<uint256, CWalletTx>::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
606 const CWalletTx& wtx = (*it).second;
610 int64 nGenerated, nReceived, nSent, nFee;
611 wtx.GetAccountAmounts(strAccount, nGenerated, nReceived, nSent, nFee);
613 if (nReceived != 0 && wtx.GetDepthInMainChain() >= nMinDepth)
614 nBalance += nReceived;
615 nBalance += nGenerated - nSent - nFee;
618 // Tally internal accounting entries
619 nBalance += walletdb.GetAccountCreditDebit(strAccount);
625 int64 GetAccountBalance(const string& strAccount, int nMinDepth)
628 return GetAccountBalance(walletdb, strAccount, nMinDepth);
632 Value getbalance(const Array& params, bool fHelp)
634 if (fHelp || params.size() < 0 || params.size() > 2)
636 "getbalance [account] [minconf=1]\n"
637 "If [account] is not specified, returns the server's total available balance.\n"
638 "If [account] is specified, returns the balance in the account.");
640 if (params.size() == 0)
641 return ValueFromAmount(GetBalance());
643 if (params[0].get_str() == "*") {
644 // Calculate total balance a different way from GetBalance()
645 // (GetBalance() sums up all unspent TxOuts)
646 // getbalance and getbalance '*' should always return the same number.
648 vector<string> vAccounts;
649 for (map<uint256, CWalletTx>::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
651 const CWalletTx& wtx = (*it).second;
652 int64 allGeneratedImmature, allGeneratedMature, allFee;
653 allGeneratedImmature = allGeneratedMature = allFee = 0;
654 string strSentAccount;
655 list<pair<string, int64> > listReceived;
656 list<pair<string, int64> > listSent;
657 wtx.GetAmounts(allGeneratedImmature, allGeneratedMature, listReceived, listSent, allFee, strSentAccount);
658 foreach(const PAIRTYPE(string,int64)& r, listReceived)
660 nBalance += r.second;
661 if (!count(vAccounts.begin(), vAccounts.end(), r.first))
662 vAccounts.push_back(r.first);
664 foreach(const PAIRTYPE(string,int64)& r, listSent)
665 nBalance -= r.second;
667 nBalance += allGeneratedMature;
669 printf("Found %d accounts\n", vAccounts.size());
670 return ValueFromAmount(nBalance);
673 string strAccount = AccountFromValue(params[0]);
675 if (params.size() > 1)
676 nMinDepth = params[1].get_int();
678 int64 nBalance = GetAccountBalance(strAccount, nMinDepth);
680 return ValueFromAmount(nBalance);
684 Value movecmd(const Array& params, bool fHelp)
686 if (fHelp || params.size() < 3 || params.size() > 5)
688 "move <fromaccount> <toaccount> <amount> [minconf=1] [comment]\n"
689 "Move from one account in your wallet to another.");
691 string strFrom = AccountFromValue(params[0]);
692 string strTo = AccountFromValue(params[1]);
693 int64 nAmount = AmountFromValue(params[2]);
695 if (params.size() > 3)
696 nMinDepth = params[3].get_int();
698 if (params.size() > 4)
699 strComment = params[4].get_str();
701 CRITICAL_BLOCK(cs_mapWallet)
707 if (!strFrom.empty())
709 int64 nBalance = GetAccountBalance(walletdb, strFrom, nMinDepth);
710 if (nAmount > nBalance)
711 throw JSONRPCError(-6, "Account has insufficient funds");
715 // move from "" account special case
716 int64 nBalance = GetAccountBalance(walletdb, strTo, nMinDepth);
717 if (nAmount > GetBalance() - nBalance)
718 throw JSONRPCError(-6, "Account has insufficient funds");
721 int64 nNow = GetAdjustedTime();
724 CAccountingEntry debit;
725 debit.strAccount = strFrom;
726 debit.nCreditDebit = -nAmount;
728 debit.strOtherAccount = strTo;
729 debit.strComment = strComment;
730 walletdb.WriteAccountingEntry(debit);
733 CAccountingEntry credit;
734 credit.strAccount = strTo;
735 credit.nCreditDebit = nAmount;
737 credit.strOtherAccount = strFrom;
738 credit.strComment = strComment;
739 walletdb.WriteAccountingEntry(credit);
741 walletdb.TxnCommit();
747 Value sendfrom(const Array& params, bool fHelp)
749 if (fHelp || params.size() < 3 || params.size() > 6)
751 "sendfrom <fromaccount> <tobitcoinaddress> <amount> [minconf=1] [comment] [comment-to]\n"
752 "<amount> is a real and is rounded to the nearest 0.01");
754 string strAccount = AccountFromValue(params[0]);
755 string strAddress = params[1].get_str();
756 int64 nAmount = AmountFromValue(params[2]);
758 if (params.size() > 3)
759 nMinDepth = params[3].get_int();
762 wtx.strFromAccount = strAccount;
763 if (params.size() > 4 && params[4].type() != null_type && !params[4].get_str().empty())
764 wtx.mapValue["comment"] = params[4].get_str();
765 if (params.size() > 5 && params[5].type() != null_type && !params[5].get_str().empty())
766 wtx.mapValue["to"] = params[5].get_str();
768 CRITICAL_BLOCK(cs_main)
769 CRITICAL_BLOCK(cs_mapWallet)
772 int64 nBalance = GetAccountBalance(strAccount, nMinDepth);
773 if (nAmount > nBalance)
774 throw JSONRPCError(-6, "Account has insufficient funds");
777 string strError = SendMoneyToBitcoinAddress(strAddress, nAmount, wtx);
779 throw JSONRPCError(-4, strError);
782 return wtx.GetHash().GetHex();
785 Value sendmany(const Array& params, bool fHelp)
787 if (fHelp || params.size() < 2 || params.size() > 4)
789 "sendmany <fromaccount> {address:amount,...} [minconf=1] [comment]\n"
790 "amounts are double-precision floating point numbers");
792 string strAccount = AccountFromValue(params[0]);
793 Object sendTo = params[1].get_obj();
795 if (params.size() > 2)
796 nMinDepth = params[2].get_int();
799 wtx.strFromAccount = strAccount;
800 if (params.size() > 3 && params[3].type() != null_type && !params[3].get_str().empty())
801 wtx.mapValue["comment"] = params[3].get_str();
803 set<string> setAddress;
804 vector<pair<CScript, int64> > vecSend;
806 int64 totalAmount = 0;
807 foreach(const Pair& s, sendTo)
810 string strAddress = s.name_;
812 if (setAddress.count(strAddress))
813 throw JSONRPCError(-8, string("Invalid parameter, duplicated address: ")+strAddress);
814 setAddress.insert(strAddress);
816 CScript scriptPubKey;
817 if (!scriptPubKey.SetBitcoinAddress(strAddress))
818 throw JSONRPCError(-5, string("Invalid bitcoin address:")+strAddress);
819 int64 nAmount = AmountFromValue(s.value_);
820 totalAmount += nAmount;
822 vecSend.push_back(make_pair(scriptPubKey, nAmount));
825 CRITICAL_BLOCK(cs_main)
826 CRITICAL_BLOCK(cs_mapWallet)
829 int64 nBalance = GetAccountBalance(strAccount, nMinDepth);
830 if (totalAmount > nBalance)
831 throw JSONRPCError(-6, "Account has insufficient funds");
834 CReserveKey keyChange;
835 int64 nFeeRequired = 0;
836 bool fCreated = CreateTransaction(vecSend, wtx, keyChange, nFeeRequired);
839 if (totalAmount + nFeeRequired > GetBalance())
840 throw JSONRPCError(-6, "Insufficient funds");
841 throw JSONRPCError(-4, "Transaction creation failed");
843 if (!CommitTransaction(wtx, keyChange))
844 throw JSONRPCError(-4, "Transaction commit failed");
847 return wtx.GetHash().GetHex();
862 Value ListReceived(const Array& params, bool fByAccounts)
864 // Minimum confirmations
866 if (params.size() > 0)
867 nMinDepth = params[0].get_int();
869 // Whether to include empty accounts
870 bool fIncludeEmpty = false;
871 if (params.size() > 1)
872 fIncludeEmpty = params[1].get_bool();
875 map<uint160, tallyitem> mapTally;
876 CRITICAL_BLOCK(cs_mapWallet)
878 for (map<uint256, CWalletTx>::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
880 const CWalletTx& wtx = (*it).second;
881 if (wtx.IsCoinBase() || !wtx.IsFinal())
884 int nDepth = wtx.GetDepthInMainChain();
885 if (nDepth < nMinDepth)
888 foreach(const CTxOut& txout, wtx.vout)
890 // Only counting our own bitcoin addresses and not ip addresses
891 uint160 hash160 = txout.scriptPubKey.GetBitcoinAddressHash160();
892 if (hash160 == 0 || !mapPubKeys.count(hash160)) // IsMine
895 tallyitem& item = mapTally[hash160];
896 item.nAmount += txout.nValue;
897 item.nConf = min(item.nConf, nDepth);
904 map<string, tallyitem> mapAccountTally;
905 CRITICAL_BLOCK(cs_mapAddressBook)
907 foreach(const PAIRTYPE(string, string)& item, mapAddressBook)
909 const string& strAddress = item.first;
910 const string& strAccount = item.second;
912 if (!AddressToHash160(strAddress, hash160))
914 map<uint160, tallyitem>::iterator it = mapTally.find(hash160);
915 if (it == mapTally.end() && !fIncludeEmpty)
920 if (it != mapTally.end())
922 nAmount = (*it).second.nAmount;
923 nConf = (*it).second.nConf;
928 tallyitem& item = mapAccountTally[strAccount];
929 item.nAmount += nAmount;
930 item.nConf = min(item.nConf, nConf);
935 obj.push_back(Pair("address", strAddress));
936 obj.push_back(Pair("account", strAccount));
937 obj.push_back(Pair("label", strAccount)); // deprecated
938 obj.push_back(Pair("amount", ValueFromAmount(nAmount)));
939 obj.push_back(Pair("confirmations", (nConf == INT_MAX ? 0 : nConf)));
947 for (map<string, tallyitem>::iterator it = mapAccountTally.begin(); it != mapAccountTally.end(); ++it)
949 int64 nAmount = (*it).second.nAmount;
950 int nConf = (*it).second.nConf;
952 obj.push_back(Pair("account", (*it).first));
953 obj.push_back(Pair("label", (*it).first)); // deprecated
954 obj.push_back(Pair("amount", ValueFromAmount(nAmount)));
955 obj.push_back(Pair("confirmations", (nConf == INT_MAX ? 0 : nConf)));
963 Value listreceivedbyaddress(const Array& params, bool fHelp)
965 if (fHelp || params.size() > 2)
967 "listreceivedbyaddress [minconf=1] [includeempty=false]\n"
968 "[minconf] is the minimum number of confirmations before payments are included.\n"
969 "[includeempty] whether to include addresses that haven't received any payments.\n"
970 "Returns an array of objects containing:\n"
971 " \"address\" : receiving address\n"
972 " \"account\" : the account of the receiving address\n"
973 " \"amount\" : total amount received by the address\n"
974 " \"confirmations\" : number of confirmations of the most recent transaction included");
976 return ListReceived(params, false);
979 Value listreceivedbyaccount(const Array& params, bool fHelp)
981 if (fHelp || params.size() > 2)
983 "listreceivedbyaccount [minconf=1] [includeempty=false]\n"
984 "[minconf] is the minimum number of confirmations before payments are included.\n"
985 "[includeempty] whether to include accounts that haven't received any payments.\n"
986 "Returns an array of objects containing:\n"
987 " \"account\" : the account of the receiving addresses\n"
988 " \"amount\" : total amount received by addresses with this account\n"
989 " \"confirmations\" : number of confirmations of the most recent transaction included");
991 return ListReceived(params, true);
994 void ListTransactions(const CWalletTx& wtx, const string& strAccount, int nMinDepth, bool fLong, Array& ret)
996 int64 nGeneratedImmature, nGeneratedMature, nFee;
997 string strSentAccount;
998 list<pair<string, int64> > listReceived;
999 list<pair<string, int64> > listSent;
1000 wtx.GetAmounts(nGeneratedImmature, nGeneratedMature, listReceived, listSent, nFee, strSentAccount);
1002 bool fAllAccounts = (strAccount == string("*"));
1004 // Generated blocks assigned to account ""
1005 if ((nGeneratedMature+nGeneratedImmature) != 0 && (fAllAccounts || strAccount == ""))
1008 entry.push_back(Pair("account", string("")));
1009 if (nGeneratedImmature)
1011 entry.push_back(Pair("category", wtx.GetDepthInMainChain() ? "immature" : "orphan"));
1012 entry.push_back(Pair("amount", ValueFromAmount(nGeneratedImmature)));
1016 entry.push_back(Pair("category", "generate"));
1017 entry.push_back(Pair("amount", ValueFromAmount(nGeneratedMature)));
1020 WalletTxToJSON(wtx, entry);
1021 ret.push_back(entry);
1025 if ((!listSent.empty() || nFee != 0) && (fAllAccounts || strAccount == strSentAccount))
1027 foreach(const PAIRTYPE(string, int64)& s, listSent)
1030 entry.push_back(Pair("account", strSentAccount));
1031 entry.push_back(Pair("address", s.first));
1032 entry.push_back(Pair("category", "send"));
1033 entry.push_back(Pair("amount", ValueFromAmount(-s.second)));
1034 entry.push_back(Pair("fee", ValueFromAmount(-nFee)));
1036 WalletTxToJSON(wtx, entry);
1037 ret.push_back(entry);
1042 if (listReceived.size() > 0 && wtx.GetDepthInMainChain() >= nMinDepth)
1043 CRITICAL_BLOCK(cs_mapAddressBook)
1045 foreach(const PAIRTYPE(string, int64)& r, listReceived)
1048 if (mapAddressBook.count(r.first))
1049 account = mapAddressBook[r.first];
1050 if (fAllAccounts || (account == strAccount))
1053 entry.push_back(Pair("account", account));
1054 entry.push_back(Pair("address", r.first));
1055 entry.push_back(Pair("category", "receive"));
1056 entry.push_back(Pair("amount", ValueFromAmount(r.second)));
1058 WalletTxToJSON(wtx, entry);
1059 ret.push_back(entry);
1066 void AcentryToJSON(const CAccountingEntry& acentry, const string& strAccount, Array& ret)
1068 bool fAllAccounts = (strAccount == string("*"));
1070 if (fAllAccounts || acentry.strAccount == strAccount)
1073 entry.push_back(Pair("account", acentry.strAccount));
1074 entry.push_back(Pair("category", "move"));
1075 entry.push_back(Pair("time", (boost::int64_t)acentry.nTime));
1076 entry.push_back(Pair("amount", ValueFromAmount(acentry.nCreditDebit)));
1077 entry.push_back(Pair("otheraccount", acentry.strOtherAccount));
1078 entry.push_back(Pair("comment", acentry.strComment));
1079 ret.push_back(entry);
1083 Value listtransactions(const Array& params, bool fHelp)
1085 if (fHelp || params.size() > 2)
1086 throw runtime_error(
1087 "listtransactions [account] [count=10] [from=0]\n"
1088 "Returns up to [count] most recent transactions skipping the first [from] transactions for account [account].");
1090 string strAccount = "*";
1091 if (params.size() > 0)
1092 strAccount = params[0].get_str();
1094 if (params.size() > 1)
1095 nCount = params[1].get_int();
1097 if (params.size() > 2)
1098 nFrom = params[2].get_int();
1103 CRITICAL_BLOCK(cs_mapWallet)
1105 // Firs: get all CWalletTx and CAccountingEntry into a sorted-by-time multimap:
1106 typedef pair<CWalletTx*, CAccountingEntry*> TxPair;
1107 typedef multimap<int64, TxPair > TxItems;
1110 for (map<uint256, CWalletTx>::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
1112 CWalletTx* wtx = &((*it).second);
1113 txByTime.insert(make_pair(wtx->GetTxTime(), TxPair(wtx, (CAccountingEntry*)0)));
1115 list<CAccountingEntry> acentries;
1116 walletdb.ListAccountCreditDebit(strAccount, acentries);
1117 foreach(CAccountingEntry& entry, acentries)
1119 txByTime.insert(make_pair(entry.nTime, TxPair((CWalletTx*)0, &entry)));
1122 // Now: iterate backwards until we have nCount items to return:
1123 for (TxItems::reverse_iterator it = txByTime.rbegin(), std::advance(it, nFrom); it != txByTime.rend(); ++it)
1125 CWalletTx *const pwtx = (*it).second.first;
1127 ListTransactions(*pwtx, strAccount, 0, true, ret);
1128 CAccountingEntry *const pacentry = (*it).second.second;
1130 AcentryToJSON(*pacentry, strAccount, ret);
1132 if (ret.size() >= nCount) break;
1134 // ret is now newest to oldest
1137 // Make sure we return only last nCount items (sends-to-self might give us an extra):
1138 if (ret.size() > nCount)
1140 Array::iterator last = ret.begin();
1141 std::advance(last, nCount);
1142 ret.erase(last, ret.end());
1144 std::reverse(ret.begin(), ret.end()); // oldest to newest
1149 Value listaccounts(const Array& params, bool fHelp)
1151 if (fHelp || params.size() > 1)
1152 throw runtime_error(
1153 "listaccounts [minconf=1]\n"
1154 "Returns Object that has account names as keys, account balances as values.");
1157 if (params.size() > 0)
1158 nMinDepth = params[0].get_int();
1160 map<string, int64> mapAccountBalances;
1161 CRITICAL_BLOCK(cs_mapWallet)
1162 CRITICAL_BLOCK(cs_mapAddressBook)
1164 foreach(const PAIRTYPE(string, string)& entry, mapAddressBook) {
1166 if(AddressToHash160(entry.first, hash160) && mapPubKeys.count(hash160)) // This address belongs to me
1167 mapAccountBalances[entry.second] = 0;
1170 for (map<uint256, CWalletTx>::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
1172 const CWalletTx& wtx = (*it).second;
1173 int64 nGeneratedImmature, nGeneratedMature, nFee;
1174 string strSentAccount;
1175 list<pair<string, int64> > listReceived;
1176 list<pair<string, int64> > listSent;
1177 wtx.GetAmounts(nGeneratedImmature, nGeneratedMature, listReceived, listSent, nFee, strSentAccount);
1178 mapAccountBalances[strSentAccount] -= nFee;
1179 foreach(const PAIRTYPE(string, int64)& s, listSent)
1180 mapAccountBalances[strSentAccount] -= s.second;
1181 if (wtx.GetDepthInMainChain() >= nMinDepth)
1183 mapAccountBalances[""] += nGeneratedMature;
1184 foreach(const PAIRTYPE(string, int64)& r, listReceived)
1185 if (mapAddressBook.count(r.first))
1186 mapAccountBalances[mapAddressBook[r.first]] += r.second;
1188 mapAccountBalances[""] += r.second;
1193 list<CAccountingEntry> acentries;
1194 CWalletDB().ListAccountCreditDebit("*", acentries);
1195 foreach(const CAccountingEntry& entry, acentries)
1196 mapAccountBalances[entry.strAccount] += entry.nCreditDebit;
1199 foreach(const PAIRTYPE(string, int64)& accountBalance, mapAccountBalances) {
1200 ret.push_back(Pair(accountBalance.first, ValueFromAmount(accountBalance.second)));
1205 Value gettransaction(const Array& params, bool fHelp)
1207 if (fHelp || params.size() != 1)
1208 throw runtime_error(
1209 "gettransaction <txid>\n"
1210 "Get detailed information about <txid>");
1213 hash.SetHex(params[0].get_str());
1216 CRITICAL_BLOCK(cs_mapWallet)
1218 if (!mapWallet.count(hash))
1219 throw JSONRPCError(-5, "Invalid or non-wallet transaction id");
1220 const CWalletTx& wtx = mapWallet[hash];
1222 int64 nCredit = wtx.GetCredit();
1223 int64 nDebit = wtx.GetDebit();
1224 int64 nNet = nCredit - nDebit;
1225 int64 nFee = (wtx.IsFromMe() ? wtx.GetValueOut() - nDebit : 0);
1227 entry.push_back(Pair("amount", ValueFromAmount(nNet - nFee)));
1229 entry.push_back(Pair("fee", ValueFromAmount(nFee)));
1231 WalletTxToJSON(mapWallet[hash], entry);
1234 ListTransactions(mapWallet[hash], "*", 0, false, details);
1235 entry.push_back(Pair("details", details));
1242 Value backupwallet(const Array& params, bool fHelp)
1244 if (fHelp || params.size() != 1)
1245 throw runtime_error(
1246 "backupwallet <destination>\n"
1247 "Safely copies wallet.dat to destination, which can be a directory or a path with filename.");
1249 string strDest = params[0].get_str();
1250 BackupWallet(strDest);
1256 Value validateaddress(const Array& params, bool fHelp)
1258 if (fHelp || params.size() != 1)
1259 throw runtime_error(
1260 "validateaddress <bitcoinaddress>\n"
1261 "Return information about <bitcoinaddress>.");
1263 string strAddress = params[0].get_str();
1265 bool isValid = AddressToHash160(strAddress, hash160);
1268 ret.push_back(Pair("isvalid", isValid));
1271 // Call Hash160ToAddress() so we always return current ADDRESSVERSION
1272 // version of the address:
1273 string currentAddress = Hash160ToAddress(hash160);
1274 ret.push_back(Pair("address", currentAddress));
1275 ret.push_back(Pair("ismine", (mapPubKeys.count(hash160) > 0)));
1276 CRITICAL_BLOCK(cs_mapAddressBook)
1278 if (mapAddressBook.count(currentAddress))
1279 ret.push_back(Pair("account", mapAddressBook[currentAddress]));
1286 Value getwork(const Array& params, bool fHelp)
1288 if (fHelp || params.size() > 1)
1289 throw runtime_error(
1291 "If [data] is not specified, returns formatted hash data to work on:\n"
1292 " \"midstate\" : precomputed hash state after hashing the first half of the data\n"
1293 " \"data\" : block data\n"
1294 " \"hash1\" : formatted hash buffer for second hash\n"
1295 " \"target\" : little endian hash target\n"
1296 "If [data] is specified, tries to solve the block and returns true if it was successful.");
1299 throw JSONRPCError(-9, "Bitcoin is not connected!");
1301 if (IsInitialBlockDownload())
1302 throw JSONRPCError(-10, "Bitcoin is downloading blocks...");
1304 static map<uint256, pair<CBlock*, unsigned int> > mapNewBlock;
1305 static vector<CBlock*> vNewBlock;
1306 static CReserveKey reservekey;
1308 if (params.size() == 0)
1311 static unsigned int nTransactionsUpdatedLast;
1312 static CBlockIndex* pindexPrev;
1313 static int64 nStart;
1314 static CBlock* pblock;
1315 if (pindexPrev != pindexBest ||
1316 (nTransactionsUpdated != nTransactionsUpdatedLast && GetTime() - nStart > 60))
1318 if (pindexPrev != pindexBest)
1320 // Deallocate old blocks since they're obsolete now
1321 mapNewBlock.clear();
1322 foreach(CBlock* pblock, vNewBlock)
1326 nTransactionsUpdatedLast = nTransactionsUpdated;
1327 pindexPrev = pindexBest;
1331 pblock = CreateNewBlock(reservekey);
1333 throw JSONRPCError(-7, "Out of memory");
1334 vNewBlock.push_back(pblock);
1338 pblock->nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime());
1341 // Update nExtraNonce
1342 static unsigned int nExtraNonce = 0;
1343 static int64 nPrevTime = 0;
1344 IncrementExtraNonce(pblock, pindexPrev, nExtraNonce, nPrevTime);
1347 mapNewBlock[pblock->hashMerkleRoot] = make_pair(pblock, nExtraNonce);
1349 // Prebuild hash buffers
1353 FormatHashBuffers(pblock, pmidstate, pdata, phash1);
1355 uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
1358 result.push_back(Pair("midstate", HexStr(BEGIN(pmidstate), END(pmidstate))));
1359 result.push_back(Pair("data", HexStr(BEGIN(pdata), END(pdata))));
1360 result.push_back(Pair("hash1", HexStr(BEGIN(phash1), END(phash1))));
1361 result.push_back(Pair("target", HexStr(BEGIN(hashTarget), END(hashTarget))));
1367 vector<unsigned char> vchData = ParseHex(params[0].get_str());
1368 if (vchData.size() != 128)
1369 throw JSONRPCError(-8, "Invalid parameter");
1370 CBlock* pdata = (CBlock*)&vchData[0];
1373 for (int i = 0; i < 128/4; i++)
1374 ((unsigned int*)pdata)[i] = CryptoPP::ByteReverse(((unsigned int*)pdata)[i]);
1377 if (!mapNewBlock.count(pdata->hashMerkleRoot))
1379 CBlock* pblock = mapNewBlock[pdata->hashMerkleRoot].first;
1380 unsigned int nExtraNonce = mapNewBlock[pdata->hashMerkleRoot].second;
1382 pblock->nTime = pdata->nTime;
1383 pblock->nNonce = pdata->nNonce;
1384 pblock->vtx[0].vin[0].scriptSig = CScript() << pblock->nBits << CBigNum(nExtraNonce);
1385 pblock->hashMerkleRoot = pblock->BuildMerkleTree();
1387 return CheckWork(pblock, reservekey);
1405 pair<string, rpcfn_type> pCallTable[] =
1407 make_pair("help", &help),
1408 make_pair("stop", &stop),
1409 make_pair("getblockcount", &getblockcount),
1410 make_pair("getblocknumber", &getblocknumber),
1411 make_pair("getconnectioncount", &getconnectioncount),
1412 make_pair("getdifficulty", &getdifficulty),
1413 make_pair("getgenerate", &getgenerate),
1414 make_pair("setgenerate", &setgenerate),
1415 make_pair("gethashespersec", &gethashespersec),
1416 make_pair("getinfo", &getinfo),
1417 make_pair("getnewaddress", &getnewaddress),
1418 make_pair("getaccountaddress", &getaccountaddress),
1419 make_pair("setaccount", &setaccount),
1420 make_pair("setlabel", &setaccount), // deprecated
1421 make_pair("getaccount", &getaccount),
1422 make_pair("getlabel", &getaccount), // deprecated
1423 make_pair("getaddressesbyaccount", &getaddressesbyaccount),
1424 make_pair("getaddressesbylabel", &getaddressesbyaccount), // deprecated
1425 make_pair("sendtoaddress", &sendtoaddress),
1426 make_pair("getamountreceived", &getreceivedbyaddress), // deprecated, renamed to getreceivedbyaddress
1427 make_pair("getallreceived", &listreceivedbyaddress), // deprecated, renamed to listreceivedbyaddress
1428 make_pair("getreceivedbyaddress", &getreceivedbyaddress),
1429 make_pair("getreceivedbyaccount", &getreceivedbyaccount),
1430 make_pair("getreceivedbylabel", &getreceivedbyaccount), // deprecated
1431 make_pair("listreceivedbyaddress", &listreceivedbyaddress),
1432 make_pair("listreceivedbyaccount", &listreceivedbyaccount),
1433 make_pair("listreceivedbylabel", &listreceivedbyaccount), // deprecated
1434 make_pair("backupwallet", &backupwallet),
1435 make_pair("validateaddress", &validateaddress),
1436 make_pair("getbalance", &getbalance),
1437 make_pair("move", &movecmd),
1438 make_pair("sendfrom", &sendfrom),
1439 make_pair("sendmany", &sendmany),
1440 make_pair("gettransaction", &gettransaction),
1441 make_pair("listtransactions", &listtransactions),
1442 make_pair("getwork", &getwork),
1443 make_pair("listaccounts", &listaccounts),
1445 map<string, rpcfn_type> mapCallTable(pCallTable, pCallTable + sizeof(pCallTable)/sizeof(pCallTable[0]));
1447 string pAllowInSafeMode[] =
1453 "getconnectioncount",
1460 "getaccountaddress",
1463 "getlabel", // deprecated
1464 "getaddressesbyaccount",
1465 "getaddressesbylabel", // deprecated
1470 set<string> setAllowInSafeMode(pAllowInSafeMode, pAllowInSafeMode + sizeof(pAllowInSafeMode)/sizeof(pAllowInSafeMode[0]));
1478 // This ain't Apache. We're just using HTTP header for the length field
1479 // and to be compatible with other JSON-RPC implementations.
1482 string HTTPPost(const string& strMsg, const map<string,string>& mapRequestHeaders)
1485 s << "POST / HTTP/1.1\r\n"
1486 << "User-Agent: json-rpc/1.0\r\n"
1487 << "Host: 127.0.0.1\r\n"
1488 << "Content-Type: application/json\r\n"
1489 << "Content-Length: " << strMsg.size() << "\r\n"
1490 << "Accept: application/json\r\n";
1491 foreach(const PAIRTYPE(string, string)& item, mapRequestHeaders)
1492 s << item.first << ": " << item.second << "\r\n";
1493 s << "\r\n" << strMsg;
1498 string rfc1123Time()
1503 struct tm* now_gmt = gmtime(&now);
1504 strftime(buffer, sizeof(buffer), "%a, %d %b %Y %H:%M:%S %Z", now_gmt);
1505 return string(buffer);
1508 string HTTPReply(int nStatus, const string& strMsg)
1511 return strprintf("HTTP/1.0 401 Authorization Required\r\n"
1513 "Server: bitcoin-json-rpc\r\n"
1514 "WWW-Authenticate: Basic realm=\"jsonrpc\"\r\n"
1515 "Content-Type: text/html\r\n"
1516 "Content-Length: 296\r\n"
1518 "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\r\n"
1519 "\"http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd\">\r\n"
1522 "<TITLE>Error</TITLE>\r\n"
1523 "<META HTTP-EQUIV='Content-Type' CONTENT='text/html; charset=ISO-8859-1'>\r\n"
1525 "<BODY><H1>401 Unauthorized.</H1></BODY>\r\n"
1526 "</HTML>\r\n", rfc1123Time().c_str());
1528 if (nStatus == 200) strStatus = "OK";
1529 else if (nStatus == 400) strStatus = "Bad Request";
1530 else if (nStatus == 404) strStatus = "Not Found";
1531 else if (nStatus == 500) strStatus = "Internal Server Error";
1533 "HTTP/1.1 %d %s\r\n"
1535 "Connection: close\r\n"
1536 "Content-Length: %d\r\n"
1537 "Content-Type: application/json\r\n"
1538 "Server: bitcoin-json-rpc/1.0\r\n"
1543 rfc1123Time().c_str(),
1548 int ReadHTTPStatus(std::basic_istream<char>& stream)
1551 getline(stream, str);
1552 vector<string> vWords;
1553 boost::split(vWords, str, boost::is_any_of(" "));
1554 if (vWords.size() < 2)
1556 return atoi(vWords[1].c_str());
1559 int ReadHTTPHeader(std::basic_istream<char>& stream, map<string, string>& mapHeadersRet)
1565 std::getline(stream, str);
1566 if (str.empty() || str == "\r")
1568 string::size_type nColon = str.find(":");
1569 if (nColon != string::npos)
1571 string strHeader = str.substr(0, nColon);
1572 boost::trim(strHeader);
1573 string strValue = str.substr(nColon+1);
1574 boost::trim(strValue);
1575 mapHeadersRet[strHeader] = strValue;
1576 if (strHeader == "Content-Length")
1577 nLen = atoi(strValue.c_str());
1583 int ReadHTTP(std::basic_istream<char>& stream, map<string, string>& mapHeadersRet, string& strMessageRet)
1585 mapHeadersRet.clear();
1589 int nStatus = ReadHTTPStatus(stream);
1592 int nLen = ReadHTTPHeader(stream, mapHeadersRet);
1593 if (nLen < 0 || nLen > MAX_SIZE)
1599 vector<char> vch(nLen);
1600 stream.read(&vch[0], nLen);
1601 strMessageRet = string(vch.begin(), vch.end());
1607 string EncodeBase64(string s)
1612 b64 = BIO_new(BIO_f_base64());
1613 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
1614 bmem = BIO_new(BIO_s_mem());
1615 b64 = BIO_push(b64, bmem);
1616 BIO_write(b64, s.c_str(), s.size());
1618 BIO_get_mem_ptr(b64, &bptr);
1620 string result(bptr->data, bptr->length);
1626 string DecodeBase64(string s)
1630 char* buffer = static_cast<char*>(calloc(s.size(), sizeof(char)));
1632 b64 = BIO_new(BIO_f_base64());
1633 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
1634 bmem = BIO_new_mem_buf(const_cast<char*>(s.c_str()), s.size());
1635 bmem = BIO_push(b64, bmem);
1636 BIO_read(bmem, buffer, s.size());
1639 string result(buffer);
1644 bool HTTPAuthorized(map<string, string>& mapHeaders)
1646 string strAuth = mapHeaders["Authorization"];
1647 if (strAuth.substr(0,6) != "Basic ")
1649 string strUserPass64 = strAuth.substr(6); boost::trim(strUserPass64);
1650 string strUserPass = DecodeBase64(strUserPass64);
1651 string::size_type nColon = strUserPass.find(":");
1652 if (nColon == string::npos)
1654 string strUser = strUserPass.substr(0, nColon);
1655 string strPassword = strUserPass.substr(nColon+1);
1656 return (strUser == mapArgs["-rpcuser"] && strPassword == mapArgs["-rpcpassword"]);
1660 // JSON-RPC protocol. Bitcoin speaks version 1.0 for maximum compatibility,
1661 // but uses JSON-RPC 1.1/2.0 standards for parts of the 1.0 standard that were
1662 // unspecified (HTTP errors and contents of 'error').
1664 // 1.0 spec: http://json-rpc.org/wiki/specification
1665 // 1.2 spec: http://groups.google.com/group/json-rpc/web/json-rpc-over-http
1666 // http://www.codeproject.com/KB/recipes/JSON_Spirit.aspx
1669 string JSONRPCRequest(const string& strMethod, const Array& params, const Value& id)
1672 request.push_back(Pair("method", strMethod));
1673 request.push_back(Pair("params", params));
1674 request.push_back(Pair("id", id));
1675 return write_string(Value(request), false) + "\n";
1678 string JSONRPCReply(const Value& result, const Value& error, const Value& id)
1681 if (error.type() != null_type)
1682 reply.push_back(Pair("result", Value::null));
1684 reply.push_back(Pair("result", result));
1685 reply.push_back(Pair("error", error));
1686 reply.push_back(Pair("id", id));
1687 return write_string(Value(reply), false) + "\n";
1690 void ErrorReply(std::ostream& stream, const Object& objError, const Value& id)
1692 // Send error reply from json-rpc error object
1694 int code = find_value(objError, "code").get_int();
1695 if (code == -32600) nStatus = 400;
1696 else if (code == -32601) nStatus = 404;
1697 string strReply = JSONRPCReply(Value::null, objError, id);
1698 stream << HTTPReply(nStatus, strReply) << std::flush;
1701 bool ClientAllowed(const string& strAddress)
1703 if (strAddress == asio::ip::address_v4::loopback().to_string())
1705 const vector<string>& vAllow = mapMultiArgs["-rpcallowip"];
1706 foreach(string strAllow, vAllow)
1707 if (WildcardMatch(strAddress, strAllow))
1714 // IOStream device that speaks SSL but can also speak non-SSL
1716 class SSLIOStreamDevice : public iostreams::device<iostreams::bidirectional> {
1718 SSLIOStreamDevice(SSLStream &streamIn, bool fUseSSLIn) : stream(streamIn)
1720 fUseSSL = fUseSSLIn;
1721 fNeedHandshake = fUseSSLIn;
1724 void handshake(ssl::stream_base::handshake_type role)
1726 if (!fNeedHandshake) return;
1727 fNeedHandshake = false;
1728 stream.handshake(role);
1730 std::streamsize read(char* s, std::streamsize n)
1732 handshake(ssl::stream_base::server); // HTTPS servers read first
1733 if (fUseSSL) return stream.read_some(asio::buffer(s, n));
1734 return stream.next_layer().read_some(asio::buffer(s, n));
1736 std::streamsize write(const char* s, std::streamsize n)
1738 handshake(ssl::stream_base::client); // HTTPS clients write first
1739 if (fUseSSL) return asio::write(stream, asio::buffer(s, n));
1740 return asio::write(stream.next_layer(), asio::buffer(s, n));
1742 bool connect(const std::string& server, const std::string& port)
1744 ip::tcp::resolver resolver(stream.get_io_service());
1745 ip::tcp::resolver::query query(server.c_str(), port.c_str());
1746 ip::tcp::resolver::iterator endpoint_iterator = resolver.resolve(query);
1747 ip::tcp::resolver::iterator end;
1748 boost::system::error_code error = asio::error::host_not_found;
1749 while (error && endpoint_iterator != end)
1751 stream.lowest_layer().close();
1752 stream.lowest_layer().connect(*endpoint_iterator++, error);
1760 bool fNeedHandshake;
1766 void ThreadRPCServer(void* parg)
1768 IMPLEMENT_RANDOMIZE_STACK(ThreadRPCServer(parg));
1771 vnThreadsRunning[4]++;
1772 ThreadRPCServer2(parg);
1773 vnThreadsRunning[4]--;
1775 catch (std::exception& e) {
1776 vnThreadsRunning[4]--;
1777 PrintException(&e, "ThreadRPCServer()");
1779 vnThreadsRunning[4]--;
1780 PrintException(NULL, "ThreadRPCServer()");
1782 printf("ThreadRPCServer exiting\n");
1785 void ThreadRPCServer2(void* parg)
1787 printf("ThreadRPCServer started\n");
1789 if (mapArgs["-rpcuser"] == "" && mapArgs["-rpcpassword"] == "")
1791 string strWhatAmI = "To use bitcoind";
1792 if (mapArgs.count("-server"))
1793 strWhatAmI = strprintf(_("To use the %s option"), "\"-server\"");
1794 else if (mapArgs.count("-daemon"))
1795 strWhatAmI = strprintf(_("To use the %s option"), "\"-daemon\"");
1797 _("Warning: %s, you must set rpcpassword=<password>\nin the configuration file: %s\n"
1798 "If the file does not exist, create it with owner-readable-only file permissions.\n"),
1800 GetConfigFile().c_str());
1801 CreateThread(Shutdown, NULL);
1805 bool fUseSSL = GetBoolArg("-rpcssl");
1806 asio::ip::address bindAddress = mapArgs.count("-rpcallowip") ? asio::ip::address_v4::any() : asio::ip::address_v4::loopback();
1808 asio::io_service io_service;
1809 ip::tcp::endpoint endpoint(bindAddress, GetArg("-rpcport", 8332));
1810 ip::tcp::acceptor acceptor(io_service, endpoint);
1812 acceptor.set_option(boost::asio::ip::tcp::acceptor::reuse_address(true));
1815 ssl::context context(io_service, ssl::context::sslv23);
1818 context.set_options(ssl::context::no_sslv2);
1819 filesystem::path certfile = GetArg("-rpcsslcertificatechainfile", "server.cert");
1820 if (!certfile.is_complete()) certfile = filesystem::path(GetDataDir()) / certfile;
1821 if (filesystem::exists(certfile)) context.use_certificate_chain_file(certfile.string().c_str());
1822 else printf("ThreadRPCServer ERROR: missing server certificate file %s\n", certfile.string().c_str());
1823 filesystem::path pkfile = GetArg("-rpcsslprivatekeyfile", "server.pem");
1824 if (!pkfile.is_complete()) pkfile = filesystem::path(GetDataDir()) / pkfile;
1825 if (filesystem::exists(pkfile)) context.use_private_key_file(pkfile.string().c_str(), ssl::context::pem);
1826 else printf("ThreadRPCServer ERROR: missing server private key file %s\n", pkfile.string().c_str());
1828 string ciphers = GetArg("-rpcsslciphers",
1829 "TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH");
1830 SSL_CTX_set_cipher_list(context.impl(), ciphers.c_str());
1834 throw runtime_error("-rpcssl=1, but bitcoin compiled without full openssl libraries.");
1839 // Accept connection
1841 SSLStream sslStream(io_service, context);
1842 SSLIOStreamDevice d(sslStream, fUseSSL);
1843 iostreams::stream<SSLIOStreamDevice> stream(d);
1845 ip::tcp::iostream stream;
1848 ip::tcp::endpoint peer;
1849 vnThreadsRunning[4]--;
1851 acceptor.accept(sslStream.lowest_layer(), peer);
1853 acceptor.accept(*stream.rdbuf(), peer);
1855 vnThreadsRunning[4]++;
1859 // Restrict callers by IP
1860 if (!ClientAllowed(peer.address().to_string()))
1863 map<string, string> mapHeaders;
1866 boost::thread api_caller(ReadHTTP, boost::ref(stream), boost::ref(mapHeaders), boost::ref(strRequest));
1867 if (!api_caller.timed_join(boost::posix_time::seconds(GetArg("-rpctimeout", 30))))
1870 printf("ThreadRPCServer ReadHTTP timeout\n");
1874 // Check authorization
1875 if (mapHeaders.count("Authorization") == 0)
1877 stream << HTTPReply(401, "") << std::flush;
1880 if (!HTTPAuthorized(mapHeaders))
1882 // Deter brute-forcing short passwords
1883 if (mapArgs["-rpcpassword"].size() < 15)
1886 stream << HTTPReply(401, "") << std::flush;
1887 printf("ThreadRPCServer incorrect password attempt\n");
1891 Value id = Value::null;
1896 if (!read_string(strRequest, valRequest) || valRequest.type() != obj_type)
1897 throw JSONRPCError(-32700, "Parse error");
1898 const Object& request = valRequest.get_obj();
1900 // Parse id now so errors from here on will have the id
1901 id = find_value(request, "id");
1904 Value valMethod = find_value(request, "method");
1905 if (valMethod.type() == null_type)
1906 throw JSONRPCError(-32600, "Missing method");
1907 if (valMethod.type() != str_type)
1908 throw JSONRPCError(-32600, "Method must be a string");
1909 string strMethod = valMethod.get_str();
1910 if (strMethod != "getwork")
1911 printf("ThreadRPCServer method=%s\n", strMethod.c_str());
1914 Value valParams = find_value(request, "params");
1916 if (valParams.type() == array_type)
1917 params = valParams.get_array();
1918 else if (valParams.type() == null_type)
1921 throw JSONRPCError(-32600, "Params must be an array");
1924 map<string, rpcfn_type>::iterator mi = mapCallTable.find(strMethod);
1925 if (mi == mapCallTable.end())
1926 throw JSONRPCError(-32601, "Method not found");
1928 // Observe safe mode
1929 string strWarning = GetWarnings("rpc");
1930 if (strWarning != "" && !GetBoolArg("-disablesafemode") && !setAllowInSafeMode.count(strMethod))
1931 throw JSONRPCError(-2, string("Safe mode: ") + strWarning);
1936 Value result = (*(*mi).second)(params, false);
1939 string strReply = JSONRPCReply(result, Value::null, id);
1940 stream << HTTPReply(200, strReply) << std::flush;
1942 catch (std::exception& e)
1944 ErrorReply(stream, JSONRPCError(-1, e.what()), id);
1947 catch (Object& objError)
1949 ErrorReply(stream, objError, id);
1951 catch (std::exception& e)
1953 ErrorReply(stream, JSONRPCError(-32700, e.what()), id);
1961 Object CallRPC(const string& strMethod, const Array& params)
1963 if (mapArgs["-rpcuser"] == "" && mapArgs["-rpcpassword"] == "")
1964 throw runtime_error(strprintf(
1965 _("You must set rpcpassword=<password> in the configuration file:\n%s\n"
1966 "If the file does not exist, create it with owner-readable-only file permissions."),
1967 GetConfigFile().c_str()));
1969 // Connect to localhost
1970 bool fUseSSL = GetBoolArg("-rpcssl");
1972 asio::io_service io_service;
1973 ssl::context context(io_service, ssl::context::sslv23);
1974 context.set_options(ssl::context::no_sslv2);
1975 SSLStream sslStream(io_service, context);
1976 SSLIOStreamDevice d(sslStream, fUseSSL);
1977 iostreams::stream<SSLIOStreamDevice> stream(d);
1978 if (!d.connect(GetArg("-rpcconnect", "127.0.0.1"), GetArg("-rpcport", "8332")))
1979 throw runtime_error("couldn't connect to server");
1982 throw runtime_error("-rpcssl=1, but bitcoin compiled without full openssl libraries.");
1984 ip::tcp::iostream stream(GetArg("-rpcconnect", "127.0.0.1"), GetArg("-rpcport", "8332"));
1986 throw runtime_error("couldn't connect to server");
1990 // HTTP basic authentication
1991 string strUserPass64 = EncodeBase64(mapArgs["-rpcuser"] + ":" + mapArgs["-rpcpassword"]);
1992 map<string, string> mapRequestHeaders;
1993 mapRequestHeaders["Authorization"] = string("Basic ") + strUserPass64;
1996 string strRequest = JSONRPCRequest(strMethod, params, 1);
1997 string strPost = HTTPPost(strRequest, mapRequestHeaders);
1998 stream << strPost << std::flush;
2001 map<string, string> mapHeaders;
2003 int nStatus = ReadHTTP(stream, mapHeaders, strReply);
2005 throw runtime_error("incorrect rpcuser or rpcpassword (authorization failed)");
2006 else if (nStatus >= 400 && nStatus != 400 && nStatus != 404 && nStatus != 500)
2007 throw runtime_error(strprintf("server returned HTTP error %d", nStatus));
2008 else if (strReply.empty())
2009 throw runtime_error("no response from server");
2013 if (!read_string(strReply, valReply))
2014 throw runtime_error("couldn't parse reply from server");
2015 const Object& reply = valReply.get_obj();
2017 throw runtime_error("expected reply to have result, error and id properties");
2025 template<typename T>
2026 void ConvertTo(Value& value)
2028 if (value.type() == str_type)
2030 // reinterpret string as unquoted json value
2032 if (!read_string(value.get_str(), value2))
2033 throw runtime_error("type mismatch");
2034 value = value2.get_value<T>();
2038 value = value.get_value<T>();
2042 int CommandLineRPC(int argc, char *argv[])
2049 while (argc > 1 && IsSwitchChar(argv[1][0]))
2057 throw runtime_error("too few parameters");
2058 string strMethod = argv[1];
2060 // Parameters default to strings
2062 for (int i = 2; i < argc; i++)
2063 params.push_back(argv[i]);
2064 int n = params.size();
2067 // Special case non-string parameter types
2069 if (strMethod == "setgenerate" && n > 0) ConvertTo<bool>(params[0]);
2070 if (strMethod == "setgenerate" && n > 1) ConvertTo<boost::int64_t>(params[1]);
2071 if (strMethod == "sendtoaddress" && n > 1) ConvertTo<double>(params[1]);
2072 if (strMethod == "getamountreceived" && n > 1) ConvertTo<boost::int64_t>(params[1]); // deprecated
2073 if (strMethod == "getreceivedbyaddress" && n > 1) ConvertTo<boost::int64_t>(params[1]);
2074 if (strMethod == "getreceivedbyaccount" && n > 1) ConvertTo<boost::int64_t>(params[1]);
2075 if (strMethod == "getreceivedbylabel" && n > 1) ConvertTo<boost::int64_t>(params[1]); // deprecated
2076 if (strMethod == "getallreceived" && n > 0) ConvertTo<boost::int64_t>(params[0]); // deprecated
2077 if (strMethod == "getallreceived" && n > 1) ConvertTo<bool>(params[1]);
2078 if (strMethod == "listreceivedbyaddress" && n > 0) ConvertTo<boost::int64_t>(params[0]);
2079 if (strMethod == "listreceivedbyaddress" && n > 1) ConvertTo<bool>(params[1]);
2080 if (strMethod == "listreceivedbyaccount" && n > 0) ConvertTo<boost::int64_t>(params[0]);
2081 if (strMethod == "listreceivedbyaccount" && n > 1) ConvertTo<bool>(params[1]);
2082 if (strMethod == "listreceivedbylabel" && n > 0) ConvertTo<boost::int64_t>(params[0]); // deprecated
2083 if (strMethod == "listreceivedbylabel" && n > 1) ConvertTo<bool>(params[1]); // deprecated
2084 if (strMethod == "getbalance" && n > 1) ConvertTo<boost::int64_t>(params[1]);
2085 if (strMethod == "move" && n > 2) ConvertTo<double>(params[2]);
2086 if (strMethod == "move" && n > 3) ConvertTo<boost::int64_t>(params[3]);
2087 if (strMethod == "sendfrom" && n > 2) ConvertTo<double>(params[2]);
2088 if (strMethod == "sendfrom" && n > 3) ConvertTo<boost::int64_t>(params[3]);
2089 if (strMethod == "listtransactions" && n > 1) ConvertTo<boost::int64_t>(params[1]);
2090 if (strMethod == "listaccounts" && n > 0) ConvertTo<boost::int64_t>(params[0]);
2091 if (strMethod == "sendmany" && n > 1)
2093 string s = params[1].get_str();
2095 if (!read_string(s, v) || v.type() != obj_type)
2096 throw runtime_error("type mismatch");
2097 params[1] = v.get_obj();
2099 if (strMethod == "sendmany" && n > 2) ConvertTo<boost::int64_t>(params[2]);
2102 Object reply = CallRPC(strMethod, params);
2105 const Value& result = find_value(reply, "result");
2106 const Value& error = find_value(reply, "error");
2107 const Value& id = find_value(reply, "id");
2109 if (error.type() != null_type)
2112 strPrint = "error: " + write_string(error, false);
2113 int code = find_value(error.get_obj(), "code").get_int();
2119 if (result.type() == null_type)
2121 else if (result.type() == str_type)
2122 strPrint = result.get_str();
2124 strPrint = write_string(result, true);
2127 catch (std::exception& e)
2129 strPrint = string("error: ") + e.what();
2134 PrintException(NULL, "CommandLineRPC()");
2139 #if defined(__WXMSW__) && defined(GUI)
2140 // Windows GUI apps can't print to command line,
2141 // so settle for a message box yuck
2142 MyMessageBox(strPrint, "Bitcoin", wxOK);
2144 fprintf((nRet == 0 ? stdout : stderr), "%s\n", strPrint.c_str());
2154 int main(int argc, char *argv[])
2157 // Turn off microsoft heap dump noise
2158 _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
2159 _CrtSetReportFile(_CRT_WARN, CreateFile("NUL", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0));
2161 setbuf(stdin, NULL);
2162 setbuf(stdout, NULL);
2163 setbuf(stderr, NULL);
2167 if (argc >= 2 && string(argv[1]) == "-server")
2169 printf("server ready\n");
2170 ThreadRPCServer(NULL);
2174 return CommandLineRPC(argc, argv);
2177 catch (std::exception& e) {
2178 PrintException(&e, "main()");
2180 PrintException(NULL, "main()");