]> Git Repo - VerusCoin.git/blame - rpc.cpp
Fix deadlocks in setaccount, sendfrom RPC calls
[VerusCoin.git] / rpc.cpp
CommitLineData
0a61b0df 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.
4
5#include "headers.h"
776d0f34 6#include "cryptopp/sha.h"
0a61b0df 7#undef printf
8#include <boost/asio.hpp>
ed54768f 9#include <boost/iostreams/concepts.hpp>
10#include <boost/iostreams/stream.hpp>
11#ifdef USE_SSL
12#include <boost/asio/ssl.hpp>
13typedef boost::asio::ssl::stream<boost::asio::ip::tcp::socket> SSLStream;
14#endif
0a61b0df 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.
23
ed54768f 24using namespace boost::asio;
0a61b0df 25using namespace json_spirit;
26
27void ThreadRPCServer2(void* parg);
28typedef Value(*rpcfn_type)(const Array& params, bool fHelp);
29extern map<string, rpcfn_type> mapCallTable;
30
31
d743f035 32Object JSONRPCError(int code, const string& message)
33{
34 Object error;
35 error.push_back(Pair("code", code));
36 error.push_back(Pair("message", message));
37 return error;
38}
39
0a61b0df 40
41void PrintConsole(const char* format, ...)
42{
43 char buffer[50000];
44 int limit = sizeof(buffer);
45 va_list arg_ptr;
46 va_start(arg_ptr, format);
47 int ret = _vsnprintf(buffer, limit, format, arg_ptr);
48 va_end(arg_ptr);
49 if (ret < 0 || ret >= limit)
50 {
51 ret = limit - 1;
52 buffer[limit-1] = 0;
53 }
776d0f34 54 printf("%s", buffer);
0a61b0df 55#if defined(__WXMSW__) && defined(GUI)
56 MyMessageBox(buffer, "Bitcoin", wxOK | wxICON_EXCLAMATION);
57#else
58 fprintf(stdout, "%s", buffer);
59#endif
60}
61
62
e4ff4e68 63int64 AmountFromValue(const Value& value)
64{
65 double dAmount = value.get_real();
66 if (dAmount <= 0.0 || dAmount > 21000000.0)
67 throw JSONRPCError(-3, "Invalid amount");
789259d2 68 int64 nAmount = roundint64(dAmount * COIN);
e4ff4e68 69 if (!MoneyRange(nAmount))
70 throw JSONRPCError(-3, "Invalid amount");
71 return nAmount;
72}
73
bfd471f5 74Value ValueFromAmount(int64 amount)
75{
76 return (double)amount / (double)COIN;
77}
78
79void WalletTxToJSON(const CWalletTx& wtx, Object& entry)
80{
81 entry.push_back(Pair("confirmations", wtx.GetDepthInMainChain()));
82 entry.push_back(Pair("txid", wtx.GetHash().GetHex()));
1c0bf23b 83 entry.push_back(Pair("time", (boost::int64_t)wtx.GetTxTime()));
bfd471f5 84 foreach(const PAIRTYPE(string,string)& item, wtx.mapValue)
85 entry.push_back(Pair(item.first, item.second));
86}
0a61b0df 87
809ee795 88string AccountFromValue(const Value& value)
89{
90 string strAccount = value.get_str();
91 if (strAccount == "*")
92 throw JSONRPCError(-11, "Invalid account name");
93 return strAccount;
94}
0a61b0df 95
96
97
98///
99/// Note: This interface may still be subject to change.
100///
101
102
103Value help(const Array& params, bool fHelp)
104{
105 if (fHelp || params.size() > 1)
106 throw runtime_error(
107 "help [command]\n"
108 "List commands, or get help for a command.");
109
110 string strCommand;
111 if (params.size() > 0)
112 strCommand = params[0].get_str();
113
114 string strRet;
115 set<rpcfn_type> setDone;
116 for (map<string, rpcfn_type>::iterator mi = mapCallTable.begin(); mi != mapCallTable.end(); ++mi)
117 {
118 string strMethod = (*mi).first;
119 // We already filter duplicates, but these deprecated screw up the sort order
120 if (strMethod == "getamountreceived" ||
e4ff4e68 121 strMethod == "getallreceived" ||
122 (strMethod.find("label") != string::npos))
0a61b0df 123 continue;
124 if (strCommand != "" && strMethod != strCommand)
125 continue;
126 try
127 {
128 Array params;
129 rpcfn_type pfn = (*mi).second;
130 if (setDone.insert(pfn).second)
131 (*pfn)(params, true);
132 }
133 catch (std::exception& e)
134 {
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";
141 }
142 }
143 if (strRet == "")
144 strRet = strprintf("help: unknown command: %s\n", strCommand.c_str());
145 strRet = strRet.substr(0,strRet.size()-1);
146 return strRet;
147}
148
149
150Value stop(const Array& params, bool fHelp)
151{
152 if (fHelp || params.size() != 0)
153 throw runtime_error(
154 "stop\n"
155 "Stop bitcoin server.");
156
157 // Shutdown will take long enough that the response should get back
158 CreateThread(Shutdown, NULL);
159 return "bitcoin server stopping";
160}
161
162
163Value getblockcount(const Array& params, bool fHelp)
164{
165 if (fHelp || params.size() != 0)
166 throw runtime_error(
167 "getblockcount\n"
168 "Returns the number of blocks in the longest block chain.");
169
170 return nBestHeight;
171}
172
173
174Value getblocknumber(const Array& params, bool fHelp)
175{
176 if (fHelp || params.size() != 0)
177 throw runtime_error(
178 "getblocknumber\n"
179 "Returns the block number of the latest block in the longest block chain.");
180
181 return nBestHeight;
182}
183
184
185Value getconnectioncount(const Array& params, bool fHelp)
186{
187 if (fHelp || params.size() != 0)
188 throw runtime_error(
189 "getconnectioncount\n"
190 "Returns the number of connections to other nodes.");
191
192 return (int)vNodes.size();
193}
194
195
196double GetDifficulty()
197{
198 // Floating point number that is a multiple of the minimum difficulty,
199 // minimum difficulty = 1.0.
200 if (pindexBest == NULL)
201 return 1.0;
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;
206}
207
208Value getdifficulty(const Array& params, bool fHelp)
209{
210 if (fHelp || params.size() != 0)
211 throw runtime_error(
212 "getdifficulty\n"
213 "Returns the proof-of-work difficulty as a multiple of the minimum difficulty.");
214
215 return GetDifficulty();
216}
217
218
0a61b0df 219Value getgenerate(const Array& params, bool fHelp)
220{
221 if (fHelp || params.size() != 0)
222 throw runtime_error(
223 "getgenerate\n"
224 "Returns true or false.");
225
226 return (bool)fGenerateBitcoins;
227}
228
229
230Value setgenerate(const Array& params, bool fHelp)
231{
232 if (fHelp || params.size() < 1 || params.size() > 2)
233 throw runtime_error(
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.");
237
238 bool fGenerate = true;
239 if (params.size() > 0)
240 fGenerate = params[0].get_bool();
241
242 if (params.size() > 1)
243 {
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);
59948a6e 249 if (nGenProcLimit == 0)
250 fGenerate = false;
0a61b0df 251 }
252
253 GenerateBitcoins(fGenerate);
254 return Value::null;
255}
256
257
258Value gethashespersec(const Array& params, bool fHelp)
259{
260 if (fHelp || params.size() != 0)
261 throw runtime_error(
262 "gethashespersec\n"
263 "Returns a recent hashes per second performance measurement while generating.");
264
265 if (GetTimeMillis() - nHPSTimerStart > 8000)
266 return (boost::int64_t)0;
267 return (boost::int64_t)dHashesPerSec;
268}
269
270
271Value getinfo(const Array& params, bool fHelp)
272{
273 if (fHelp || params.size() != 0)
274 throw runtime_error(
275 "getinfo\n"
276 "Returns an object containing various state info.");
277
278 Object obj;
279 obj.push_back(Pair("version", (int)VERSION));
83b9f427 280 obj.push_back(Pair("balance", ValueFromAmount(GetBalance())));
0a61b0df 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)));
c285051c 288 obj.push_back(Pair("testnet", fTestNet));
776d0f34 289 obj.push_back(Pair("keypoololdest", (boost::int64_t)GetOldestKeyPoolTime()));
83b9f427 290 obj.push_back(Pair("paytxfee", ValueFromAmount(nTransactionFee)));
0a61b0df 291 obj.push_back(Pair("errors", GetWarnings("statusbar")));
292 return obj;
293}
294
295
296Value getnewaddress(const Array& params, bool fHelp)
297{
298 if (fHelp || params.size() > 1)
299 throw runtime_error(
e4ff4e68 300 "getnewaddress [account]\n"
0a61b0df 301 "Returns a new bitcoin address for receiving payments. "
e4ff4e68 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].");
0a61b0df 304
e4ff4e68 305 // Parse the account first so we don't generate a key if there's an error
306 string strAccount;
0a61b0df 307 if (params.size() > 0)
809ee795 308 strAccount = AccountFromValue(params[0]);
0a61b0df 309
310 // Generate a new key that is added to wallet
776d0f34 311 string strAddress = PubKeyToAddress(GetKeyFromKeyPool());
0a61b0df 312
e4ff4e68 313 SetAddressBookName(strAddress, strAccount);
0a61b0df 314 return strAddress;
315}
316
317
f5f1878b 318// requires cs_main, cs_mapWallet locks
fa446a56 319string GetAccountAddress(string strAccount, bool bForceNew=false)
e4ff4e68 320{
fa446a56 321 string strAddress;
e4ff4e68 322
f5f1878b
JG
323 CWalletDB walletdb;
324 walletdb.TxnBegin();
e4ff4e68 325
f5f1878b
JG
326 CAccount account;
327 walletdb.ReadAccount(strAccount, account);
e4ff4e68 328
f5f1878b
JG
329 // Check if the current key has been used
330 if (!account.vchPubKey.empty())
331 {
332 CScript scriptPubKey;
333 scriptPubKey.SetBitcoinAddress(account.vchPubKey);
334 for (map<uint256, CWalletTx>::iterator it = mapWallet.begin();
335 it != mapWallet.end() && !account.vchPubKey.empty();
336 ++it)
e4ff4e68 337 {
f5f1878b
JG
338 const CWalletTx& wtx = (*it).second;
339 foreach(const CTxOut& txout, wtx.vout)
340 if (txout.scriptPubKey == scriptPubKey)
341 account.vchPubKey.clear();
e4ff4e68 342 }
f5f1878b 343 }
e4ff4e68 344
f5f1878b
JG
345 // Generate a new key
346 if (account.vchPubKey.empty() || bForceNew)
347 {
348 account.vchPubKey = GetKeyFromKeyPool();
349 string strAddress = PubKeyToAddress(account.vchPubKey);
350 SetAddressBookName(strAddress, strAccount);
351 walletdb.WriteAccount(strAccount, account);
e4ff4e68 352 }
f5f1878b
JG
353
354 walletdb.TxnCommit();
355 strAddress = PubKeyToAddress(account.vchPubKey);
356
fa446a56
GA
357 return strAddress;
358}
359
360Value getaccountaddress(const Array& params, bool fHelp)
361{
362 if (fHelp || params.size() != 1)
363 throw runtime_error(
364 "getaccountaddress <account>\n"
365 "Returns the current bitcoin address for receiving payments to this account.");
366
367 // Parse the account first so we don't generate a key if there's an error
368 string strAccount = AccountFromValue(params[0]);
369
f5f1878b
JG
370 Value ret;
371
372 CRITICAL_BLOCK(cs_main)
373 CRITICAL_BLOCK(cs_mapWallet)
374 {
375 ret = GetAccountAddress(strAccount);
376 }
377
378 return ret;
e4ff4e68 379}
380
381
fa446a56 382
e4ff4e68 383Value setaccount(const Array& params, bool fHelp)
0a61b0df 384{
385 if (fHelp || params.size() < 1 || params.size() > 2)
386 throw runtime_error(
e4ff4e68 387 "setaccount <bitcoinaddress> <account>\n"
388 "Sets the account associated with the given address.");
0a61b0df 389
390 string strAddress = params[0].get_str();
279ab5e6
MC
391 uint160 hash160;
392 bool isValid = AddressToHash160(strAddress, hash160);
393 if (!isValid)
c1f74f15 394 throw JSONRPCError(-5, "Invalid bitcoin address");
279ab5e6
MC
395
396
e4ff4e68 397 string strAccount;
0a61b0df 398 if (params.size() > 1)
809ee795 399 strAccount = AccountFromValue(params[1]);
0a61b0df 400
fa446a56 401 // Detect when changing the account of an address that is the 'unused current key' of another account:
f5f1878b
JG
402 CRITICAL_BLOCK(cs_main)
403 CRITICAL_BLOCK(cs_mapWallet)
fa446a56
GA
404 CRITICAL_BLOCK(cs_mapAddressBook)
405 {
406 if (mapAddressBook.count(strAddress))
407 {
408 string strOldAccount = mapAddressBook[strAddress];
409 if (strAddress == GetAccountAddress(strOldAccount))
410 GetAccountAddress(strOldAccount, true);
411 }
412 }
413
e4ff4e68 414 SetAddressBookName(strAddress, strAccount);
0a61b0df 415 return Value::null;
416}
417
418
e4ff4e68 419Value getaccount(const Array& params, bool fHelp)
0a61b0df 420{
421 if (fHelp || params.size() != 1)
422 throw runtime_error(
e4ff4e68 423 "getaccount <bitcoinaddress>\n"
424 "Returns the account associated with the given address.");
0a61b0df 425
426 string strAddress = params[0].get_str();
427
e4ff4e68 428 string strAccount;
0a61b0df 429 CRITICAL_BLOCK(cs_mapAddressBook)
430 {
431 map<string, string>::iterator mi = mapAddressBook.find(strAddress);
432 if (mi != mapAddressBook.end() && !(*mi).second.empty())
e4ff4e68 433 strAccount = (*mi).second;
0a61b0df 434 }
e4ff4e68 435 return strAccount;
0a61b0df 436}
437
438
e4ff4e68 439Value getaddressesbyaccount(const Array& params, bool fHelp)
0a61b0df 440{
441 if (fHelp || params.size() != 1)
442 throw runtime_error(
e4ff4e68 443 "getaddressesbyaccount <account>\n"
444 "Returns the list of addresses for the given account.");
0a61b0df 445
809ee795 446 string strAccount = AccountFromValue(params[0]);
0a61b0df 447
e4ff4e68 448 // Find all addresses that have the given account
0a61b0df 449 Array ret;
450 CRITICAL_BLOCK(cs_mapAddressBook)
451 {
452 foreach(const PAIRTYPE(string, string)& item, mapAddressBook)
453 {
454 const string& strAddress = item.first;
455 const string& strName = item.second;
e4ff4e68 456 if (strName == strAccount)
0a61b0df 457 {
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);
462 }
463 }
464 }
465 return ret;
466}
467
0a61b0df 468Value sendtoaddress(const Array& params, bool fHelp)
469{
470 if (fHelp || params.size() < 2 || params.size() > 4)
471 throw runtime_error(
472 "sendtoaddress <bitcoinaddress> <amount> [comment] [comment-to]\n"
473 "<amount> is a real and is rounded to the nearest 0.01");
474
475 string strAddress = params[0].get_str();
476
477 // Amount
e4ff4e68 478 int64 nAmount = AmountFromValue(params[1]);
0a61b0df 479
480 // Wallet comments
481 CWalletTx wtx;
482 if (params.size() > 2 && params[2].type() != null_type && !params[2].get_str().empty())
809ee795 483 wtx.mapValue["comment"] = params[2].get_str();
0a61b0df 484 if (params.size() > 3 && params[3].type() != null_type && !params[3].get_str().empty())
485 wtx.mapValue["to"] = params[3].get_str();
486
f5f1878b
JG
487 CRITICAL_BLOCK(cs_main)
488 {
489 string strError = SendMoneyToBitcoinAddress(strAddress, nAmount, wtx);
490 if (strError != "")
491 throw JSONRPCError(-4, strError);
492 }
493
e4ff4e68 494 return wtx.GetHash().GetHex();
0a61b0df 495}
496
497
0a61b0df 498Value getreceivedbyaddress(const Array& params, bool fHelp)
499{
500 if (fHelp || params.size() < 1 || params.size() > 2)
501 throw runtime_error(
502 "getreceivedbyaddress <bitcoinaddress> [minconf=1]\n"
503 "Returns the total amount received by <bitcoinaddress> in transactions with at least [minconf] confirmations.");
504
505 // Bitcoin address
506 string strAddress = params[0].get_str();
507 CScript scriptPubKey;
508 if (!scriptPubKey.SetBitcoinAddress(strAddress))
d743f035 509 throw JSONRPCError(-5, "Invalid bitcoin address");
0a61b0df 510 if (!IsMine(scriptPubKey))
511 return (double)0.0;
512
513 // Minimum confirmations
514 int nMinDepth = 1;
515 if (params.size() > 1)
516 nMinDepth = params[1].get_int();
517
518 // Tally
519 int64 nAmount = 0;
520 CRITICAL_BLOCK(cs_mapWallet)
521 {
522 for (map<uint256, CWalletTx>::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
523 {
524 const CWalletTx& wtx = (*it).second;
525 if (wtx.IsCoinBase() || !wtx.IsFinal())
526 continue;
527
528 foreach(const CTxOut& txout, wtx.vout)
529 if (txout.scriptPubKey == scriptPubKey)
530 if (wtx.GetDepthInMainChain() >= nMinDepth)
531 nAmount += txout.nValue;
532 }
533 }
534
83b9f427 535 return ValueFromAmount(nAmount);
0a61b0df 536}
537
538
bfd471f5 539void GetAccountPubKeys(string strAccount, set<CScript>& setPubKey)
0a61b0df 540{
0a61b0df 541 CRITICAL_BLOCK(cs_mapAddressBook)
542 {
543 foreach(const PAIRTYPE(string, string)& item, mapAddressBook)
544 {
545 const string& strAddress = item.first;
546 const string& strName = item.second;
e4ff4e68 547 if (strName == strAccount)
0a61b0df 548 {
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);
554 }
555 }
556 }
bfd471f5 557}
558
559
560Value getreceivedbyaccount(const Array& params, bool fHelp)
561{
562 if (fHelp || params.size() < 1 || params.size() > 2)
563 throw runtime_error(
564 "getreceivedbyaccount <account> [minconf=1]\n"
565 "Returns the total amount received by addresses with <account> in transactions with at least [minconf] confirmations.");
566
567 // Minimum confirmations
568 int nMinDepth = 1;
569 if (params.size() > 1)
570 nMinDepth = params[1].get_int();
571
572 // Get the set of pub keys that have the label
809ee795 573 string strAccount = AccountFromValue(params[0]);
bfd471f5 574 set<CScript> setPubKey;
575 GetAccountPubKeys(strAccount, setPubKey);
0a61b0df 576
0a61b0df 577 // Tally
578 int64 nAmount = 0;
579 CRITICAL_BLOCK(cs_mapWallet)
580 {
581 for (map<uint256, CWalletTx>::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
582 {
583 const CWalletTx& wtx = (*it).second;
584 if (wtx.IsCoinBase() || !wtx.IsFinal())
585 continue;
586
587 foreach(const CTxOut& txout, wtx.vout)
588 if (setPubKey.count(txout.scriptPubKey))
589 if (wtx.GetDepthInMainChain() >= nMinDepth)
590 nAmount += txout.nValue;
591 }
592 }
593
594 return (double)nAmount / (double)COIN;
595}
596
597
e4ff4e68 598int64 GetAccountBalance(CWalletDB& walletdb, const string& strAccount, int nMinDepth)
599{
e4ff4e68 600 int64 nBalance = 0;
601 CRITICAL_BLOCK(cs_mapWallet)
602 {
603 // Tally wallet transactions
604 for (map<uint256, CWalletTx>::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
605 {
606 const CWalletTx& wtx = (*it).second;
607 if (!wtx.IsFinal())
608 continue;
609
bfd471f5 610 int64 nGenerated, nReceived, nSent, nFee;
809ee795 611 wtx.GetAccountAmounts(strAccount, nGenerated, nReceived, nSent, nFee);
e4ff4e68 612
bfd471f5 613 if (nReceived != 0 && wtx.GetDepthInMainChain() >= nMinDepth)
614 nBalance += nReceived;
615 nBalance += nGenerated - nSent - nFee;
e4ff4e68 616 }
617
618 // Tally internal accounting entries
619 nBalance += walletdb.GetAccountCreditDebit(strAccount);
620 }
621
622 return nBalance;
623}
624
625int64 GetAccountBalance(const string& strAccount, int nMinDepth)
626{
627 CWalletDB walletdb;
628 return GetAccountBalance(walletdb, strAccount, nMinDepth);
629}
630
631
632Value getbalance(const Array& params, bool fHelp)
633{
634 if (fHelp || params.size() < 0 || params.size() > 2)
635 throw runtime_error(
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.");
639
640 if (params.size() == 0)
83b9f427 641 return ValueFromAmount(GetBalance());
e4ff4e68 642
1d23c743
GA
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.
647 int64 nBalance = 0;
d9574c2f 648 vector<string> vAccounts;
1d23c743
GA
649 for (map<uint256, CWalletTx>::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
650 {
651 const CWalletTx& wtx = (*it).second;
652 int64 allGenerated, allFee;
653 allGenerated = allFee = 0;
654 string strSentAccount;
655 list<pair<string, int64> > listReceived;
656 list<pair<string, int64> > listSent;
657 wtx.GetAmounts(allGenerated, listReceived, listSent, allFee, strSentAccount);
658 foreach(const PAIRTYPE(string,int64)& r, listReceived)
d9574c2f 659 {
1d23c743 660 nBalance += r.second;
d9574c2f
GA
661 if (!count(vAccounts.begin(), vAccounts.end(), r.first))
662 vAccounts.push_back(r.first);
663 }
1d23c743
GA
664 foreach(const PAIRTYPE(string,int64)& r, listSent)
665 nBalance -= r.second;
666 nBalance -= allFee;
667 nBalance += allGenerated;
668 }
d9574c2f 669 printf("Found %d accounts\n", vAccounts.size());
83b9f427 670 return ValueFromAmount(nBalance);
1d23c743
GA
671 }
672
809ee795 673 string strAccount = AccountFromValue(params[0]);
e4ff4e68 674 int nMinDepth = 1;
675 if (params.size() > 1)
676 nMinDepth = params[1].get_int();
677
678 int64 nBalance = GetAccountBalance(strAccount, nMinDepth);
679
83b9f427 680 return ValueFromAmount(nBalance);
e4ff4e68 681}
682
683
684Value movecmd(const Array& params, bool fHelp)
685{
686 if (fHelp || params.size() < 3 || params.size() > 5)
687 throw runtime_error(
688 "move <fromaccount> <toaccount> <amount> [minconf=1] [comment]\n"
689 "Move from one account in your wallet to another.");
690
809ee795 691 string strFrom = AccountFromValue(params[0]);
692 string strTo = AccountFromValue(params[1]);
e4ff4e68 693 int64 nAmount = AmountFromValue(params[2]);
694 int nMinDepth = 1;
695 if (params.size() > 3)
696 nMinDepth = params[3].get_int();
697 string strComment;
698 if (params.size() > 4)
699 strComment = params[4].get_str();
700
701 CRITICAL_BLOCK(cs_mapWallet)
702 {
703 CWalletDB walletdb;
704 walletdb.TxnBegin();
705
706 // Check funds
707 if (!strFrom.empty())
708 {
709 int64 nBalance = GetAccountBalance(walletdb, strFrom, nMinDepth);
710 if (nAmount > nBalance)
711 throw JSONRPCError(-6, "Account has insufficient funds");
712 }
713 else
714 {
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");
719 }
720
721 int64 nNow = GetAdjustedTime();
722
723 // Debit
724 CAccountingEntry debit;
809ee795 725 debit.strAccount = strFrom;
e4ff4e68 726 debit.nCreditDebit = -nAmount;
727 debit.nTime = nNow;
728 debit.strOtherAccount = strTo;
729 debit.strComment = strComment;
809ee795 730 walletdb.WriteAccountingEntry(debit);
e4ff4e68 731
732 // Credit
733 CAccountingEntry credit;
809ee795 734 credit.strAccount = strTo;
e4ff4e68 735 credit.nCreditDebit = nAmount;
736 credit.nTime = nNow;
737 credit.strOtherAccount = strFrom;
738 credit.strComment = strComment;
809ee795 739 walletdb.WriteAccountingEntry(credit);
e4ff4e68 740
741 walletdb.TxnCommit();
742 }
743 return true;
744}
745
746
747Value sendfrom(const Array& params, bool fHelp)
748{
749 if (fHelp || params.size() < 3 || params.size() > 6)
750 throw runtime_error(
751 "sendfrom <fromaccount> <tobitcoinaddress> <amount> [minconf=1] [comment] [comment-to]\n"
752 "<amount> is a real and is rounded to the nearest 0.01");
753
809ee795 754 string strAccount = AccountFromValue(params[0]);
e4ff4e68 755 string strAddress = params[1].get_str();
756 int64 nAmount = AmountFromValue(params[2]);
757 int nMinDepth = 1;
758 if (params.size() > 3)
759 nMinDepth = params[3].get_int();
760
761 CWalletTx wtx;
762 wtx.strFromAccount = strAccount;
763 if (params.size() > 4 && params[4].type() != null_type && !params[4].get_str().empty())
809ee795 764 wtx.mapValue["comment"] = params[4].get_str();
e4ff4e68 765 if (params.size() > 5 && params[5].type() != null_type && !params[5].get_str().empty())
766 wtx.mapValue["to"] = params[5].get_str();
767
f5f1878b 768 CRITICAL_BLOCK(cs_main)
e4ff4e68 769 CRITICAL_BLOCK(cs_mapWallet)
770 {
771 // Check funds
772 int64 nBalance = GetAccountBalance(strAccount, nMinDepth);
773 if (nAmount > nBalance)
774 throw JSONRPCError(-6, "Account has insufficient funds");
775
776 // Send
777 string strError = SendMoneyToBitcoinAddress(strAddress, nAmount, wtx);
778 if (strError != "")
779 throw JSONRPCError(-4, strError);
780 }
781
782 return wtx.GetHash().GetHex();
783}
784
b931ed85
GA
785Value sendmany(const Array& params, bool fHelp)
786{
787 if (fHelp || params.size() < 2 || params.size() > 4)
788 throw runtime_error(
789 "sendmany <fromaccount> {address:amount,...} [minconf=1] [comment]\n"
790 "amounts are double-precision floating point numbers");
791
792 string strAccount = AccountFromValue(params[0]);
793 Object sendTo = params[1].get_obj();
794 int nMinDepth = 1;
795 if (params.size() > 2)
796 nMinDepth = params[2].get_int();
797
798 CWalletTx wtx;
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();
802
803 set<string> setAddress;
804 vector<pair<CScript, int64> > vecSend;
805
806 int64 totalAmount = 0;
807 foreach(const Pair& s, sendTo)
808 {
809 uint160 hash160;
810 string strAddress = s.name_;
811
812 if (setAddress.count(strAddress))
813 throw JSONRPCError(-8, string("Invalid parameter, duplicated address: ")+strAddress);
814 setAddress.insert(strAddress);
815
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;
821
822 vecSend.push_back(make_pair(scriptPubKey, nAmount));
823 }
824
825 CRITICAL_BLOCK(cs_mapWallet)
826 {
827 // Check funds
828 int64 nBalance = GetAccountBalance(strAccount, nMinDepth);
829 if (totalAmount > nBalance)
830 throw JSONRPCError(-6, "Account has insufficient funds");
831
832 // Send
833 CReserveKey keyChange;
834 int64 nFeeRequired = 0;
835 bool fCreated = CreateTransaction(vecSend, wtx, keyChange, nFeeRequired);
836 if (!fCreated)
837 {
838 if (totalAmount + nFeeRequired > GetBalance())
839 throw JSONRPCError(-6, "Insufficient funds");
840 throw JSONRPCError(-4, "Transaction creation failed");
841 }
842 if (!CommitTransaction(wtx, keyChange))
843 throw JSONRPCError(-4, "Transaction commit failed");
844 }
845
846 return wtx.GetHash().GetHex();
847}
e4ff4e68 848
0a61b0df 849
850struct tallyitem
851{
852 int64 nAmount;
853 int nConf;
854 tallyitem()
855 {
856 nAmount = 0;
857 nConf = INT_MAX;
858 }
859};
860
e4ff4e68 861Value ListReceived(const Array& params, bool fByAccounts)
0a61b0df 862{
863 // Minimum confirmations
864 int nMinDepth = 1;
865 if (params.size() > 0)
866 nMinDepth = params[0].get_int();
867
868 // Whether to include empty accounts
869 bool fIncludeEmpty = false;
870 if (params.size() > 1)
871 fIncludeEmpty = params[1].get_bool();
872
873 // Tally
874 map<uint160, tallyitem> mapTally;
875 CRITICAL_BLOCK(cs_mapWallet)
876 {
877 for (map<uint256, CWalletTx>::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
878 {
879 const CWalletTx& wtx = (*it).second;
880 if (wtx.IsCoinBase() || !wtx.IsFinal())
881 continue;
882
883 int nDepth = wtx.GetDepthInMainChain();
884 if (nDepth < nMinDepth)
885 continue;
886
887 foreach(const CTxOut& txout, wtx.vout)
888 {
889 // Only counting our own bitcoin addresses and not ip addresses
890 uint160 hash160 = txout.scriptPubKey.GetBitcoinAddressHash160();
891 if (hash160 == 0 || !mapPubKeys.count(hash160)) // IsMine
892 continue;
893
894 tallyitem& item = mapTally[hash160];
895 item.nAmount += txout.nValue;
896 item.nConf = min(item.nConf, nDepth);
897 }
898 }
899 }
900
901 // Reply
902 Array ret;
e4ff4e68 903 map<string, tallyitem> mapAccountTally;
0a61b0df 904 CRITICAL_BLOCK(cs_mapAddressBook)
905 {
906 foreach(const PAIRTYPE(string, string)& item, mapAddressBook)
907 {
908 const string& strAddress = item.first;
e4ff4e68 909 const string& strAccount = item.second;
0a61b0df 910 uint160 hash160;
911 if (!AddressToHash160(strAddress, hash160))
912 continue;
913 map<uint160, tallyitem>::iterator it = mapTally.find(hash160);
914 if (it == mapTally.end() && !fIncludeEmpty)
915 continue;
916
917 int64 nAmount = 0;
918 int nConf = INT_MAX;
919 if (it != mapTally.end())
920 {
921 nAmount = (*it).second.nAmount;
922 nConf = (*it).second.nConf;
923 }
924
e4ff4e68 925 if (fByAccounts)
0a61b0df 926 {
e4ff4e68 927 tallyitem& item = mapAccountTally[strAccount];
0a61b0df 928 item.nAmount += nAmount;
929 item.nConf = min(item.nConf, nConf);
930 }
931 else
932 {
933 Object obj;
934 obj.push_back(Pair("address", strAddress));
e4ff4e68 935 obj.push_back(Pair("account", strAccount));
936 obj.push_back(Pair("label", strAccount)); // deprecated
83b9f427 937 obj.push_back(Pair("amount", ValueFromAmount(nAmount)));
0a61b0df 938 obj.push_back(Pair("confirmations", (nConf == INT_MAX ? 0 : nConf)));
939 ret.push_back(obj);
940 }
941 }
942 }
943
e4ff4e68 944 if (fByAccounts)
0a61b0df 945 {
e4ff4e68 946 for (map<string, tallyitem>::iterator it = mapAccountTally.begin(); it != mapAccountTally.end(); ++it)
0a61b0df 947 {
948 int64 nAmount = (*it).second.nAmount;
949 int nConf = (*it).second.nConf;
950 Object obj;
e4ff4e68 951 obj.push_back(Pair("account", (*it).first));
952 obj.push_back(Pair("label", (*it).first)); // deprecated
83b9f427 953 obj.push_back(Pair("amount", ValueFromAmount(nAmount)));
0a61b0df 954 obj.push_back(Pair("confirmations", (nConf == INT_MAX ? 0 : nConf)));
955 ret.push_back(obj);
956 }
957 }
958
959 return ret;
960}
961
962Value listreceivedbyaddress(const Array& params, bool fHelp)
963{
964 if (fHelp || params.size() > 2)
965 throw runtime_error(
966 "listreceivedbyaddress [minconf=1] [includeempty=false]\n"
967 "[minconf] is the minimum number of confirmations before payments are included.\n"
968 "[includeempty] whether to include addresses that haven't received any payments.\n"
969 "Returns an array of objects containing:\n"
970 " \"address\" : receiving address\n"
e4ff4e68 971 " \"account\" : the account of the receiving address\n"
0a61b0df 972 " \"amount\" : total amount received by the address\n"
973 " \"confirmations\" : number of confirmations of the most recent transaction included");
974
975 return ListReceived(params, false);
976}
977
e4ff4e68 978Value listreceivedbyaccount(const Array& params, bool fHelp)
0a61b0df 979{
980 if (fHelp || params.size() > 2)
981 throw runtime_error(
e4ff4e68 982 "listreceivedbyaccount [minconf=1] [includeempty=false]\n"
0a61b0df 983 "[minconf] is the minimum number of confirmations before payments are included.\n"
e4ff4e68 984 "[includeempty] whether to include accounts that haven't received any payments.\n"
0a61b0df 985 "Returns an array of objects containing:\n"
e4ff4e68 986 " \"account\" : the account of the receiving addresses\n"
987 " \"amount\" : total amount received by addresses with this account\n"
0a61b0df 988 " \"confirmations\" : number of confirmations of the most recent transaction included");
989
990 return ListReceived(params, true);
991}
992
80be6e69 993void ListTransactions(const CWalletTx& wtx, const string& strAccount, int nMinDepth, bool fLong, Array& ret)
bfd471f5 994{
ddb68ace 995 int64 nGenerated, nFee;
809ee795 996 string strSentAccount;
997 list<pair<string, int64> > listReceived;
ddb68ace
GA
998 list<pair<string, int64> > listSent;
999 wtx.GetAmounts(nGenerated, listReceived, listSent, nFee, strSentAccount);
bfd471f5 1000
809ee795 1001 bool fAllAccounts = (strAccount == string("*"));
1002
1003 // Generated blocks assigned to account ""
1004 if (nGenerated != 0 && (fAllAccounts || strAccount == ""))
bfd471f5 1005 {
809ee795 1006 Object entry;
1007 entry.push_back(Pair("account", string("")));
1008 entry.push_back(Pair("category", "generate"));
1009 entry.push_back(Pair("amount", ValueFromAmount(nGenerated)));
80be6e69
GA
1010 if (fLong)
1011 WalletTxToJSON(wtx, entry);
809ee795 1012 ret.push_back(entry);
1013 }
bfd471f5 1014
809ee795 1015 // Sent
ddb68ace 1016 if ((!listSent.empty() || nFee != 0) && (fAllAccounts || strAccount == strSentAccount))
809ee795 1017 {
ddb68ace
GA
1018 foreach(const PAIRTYPE(string, int64)& s, listSent)
1019 {
1020 Object entry;
1021 entry.push_back(Pair("account", strSentAccount));
1022 entry.push_back(Pair("address", s.first));
1023 entry.push_back(Pair("category", "send"));
1024 entry.push_back(Pair("amount", ValueFromAmount(-s.second)));
1025 entry.push_back(Pair("fee", ValueFromAmount(-nFee)));
80be6e69
GA
1026 if (fLong)
1027 WalletTxToJSON(wtx, entry);
ddb68ace
GA
1028 ret.push_back(entry);
1029 }
809ee795 1030 }
bfd471f5 1031
809ee795 1032 // Received
1033 if (listReceived.size() > 0 && wtx.GetDepthInMainChain() >= nMinDepth)
1034 CRITICAL_BLOCK(cs_mapAddressBook)
1035 {
1036 foreach(const PAIRTYPE(string, int64)& r, listReceived)
ddb68ace
GA
1037 {
1038 string account;
1039 if (mapAddressBook.count(r.first))
1040 account = mapAddressBook[r.first];
1041 if (fAllAccounts || (account == strAccount))
809ee795 1042 {
1043 Object entry;
ddb68ace
GA
1044 entry.push_back(Pair("account", account));
1045 entry.push_back(Pair("address", r.first));
809ee795 1046 entry.push_back(Pair("category", "receive"));
1047 entry.push_back(Pair("amount", ValueFromAmount(r.second)));
80be6e69
GA
1048 if (fLong)
1049 WalletTxToJSON(wtx, entry);
809ee795 1050 ret.push_back(entry);
1051 }
ddb68ace 1052 }
809ee795 1053 }
bfd471f5 1054
809ee795 1055}
bfd471f5 1056
809ee795 1057void AcentryToJSON(const CAccountingEntry& acentry, const string& strAccount, Array& ret)
1058{
1059 bool fAllAccounts = (strAccount == string("*"));
bfd471f5 1060
809ee795 1061 if (fAllAccounts || acentry.strAccount == strAccount)
1062 {
1063 Object entry;
1064 entry.push_back(Pair("account", acentry.strAccount));
1065 entry.push_back(Pair("category", "move"));
f86655fd 1066 entry.push_back(Pair("time", (boost::int64_t)acentry.nTime));
809ee795 1067 entry.push_back(Pair("amount", ValueFromAmount(acentry.nCreditDebit)));
1068 entry.push_back(Pair("otheraccount", acentry.strOtherAccount));
1069 entry.push_back(Pair("comment", acentry.strComment));
1070 ret.push_back(entry);
bfd471f5 1071 }
1072}
1073
1074Value listtransactions(const Array& params, bool fHelp)
1075{
809ee795 1076 if (fHelp || params.size() > 2)
bfd471f5 1077 throw runtime_error(
809ee795 1078 "listtransactions [account] [count=10]\n"
bfd471f5 1079 "Returns up to [count] most recent transactions for account <account>.");
1080
809ee795 1081 string strAccount = "*";
1082 if (params.size() > 0)
1083 strAccount = params[0].get_str();
bfd471f5 1084 int nCount = 10;
1085 if (params.size() > 1)
1086 nCount = params[1].get_int();
1087
809ee795 1088 Array ret;
bfd471f5 1089 CWalletDB walletdb;
bfd471f5 1090
809ee795 1091 CRITICAL_BLOCK(cs_mapWallet)
bfd471f5 1092 {
809ee795 1093 // Firs: get all CWalletTx and CAccountingEntry into a sorted-by-time multimap:
1094 typedef pair<CWalletTx*, CAccountingEntry*> TxPair;
1095 typedef multimap<int64, TxPair > TxItems;
1096 TxItems txByTime;
1097
1098 for (map<uint256, CWalletTx>::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
1099 {
1100 CWalletTx* wtx = &((*it).second);
47908a89 1101 txByTime.insert(make_pair(wtx->GetTxTime(), TxPair(wtx, (CAccountingEntry*)0)));
809ee795 1102 }
1103 list<CAccountingEntry> acentries;
1104 walletdb.ListAccountCreditDebit(strAccount, acentries);
1105 foreach(CAccountingEntry& entry, acentries)
1106 {
47908a89 1107 txByTime.insert(make_pair(entry.nTime, TxPair((CWalletTx*)0, &entry)));
809ee795 1108 }
1109
1110 // Now: iterate backwards until we have nCount items to return:
1111 for (TxItems::reverse_iterator it = txByTime.rbegin(); it != txByTime.rend(); ++it)
1112 {
1113 CWalletTx *const pwtx = (*it).second.first;
1114 if (pwtx != 0)
80be6e69 1115 ListTransactions(*pwtx, strAccount, 0, true, ret);
809ee795 1116 CAccountingEntry *const pacentry = (*it).second.second;
1117 if (pacentry != 0)
1118 AcentryToJSON(*pacentry, strAccount, ret);
1119
1120 if (ret.size() >= nCount) break;
1121 }
1122 // ret is now newest to oldest
1123 }
1124
1125 // Make sure we return only last nCount items (sends-to-self might give us an extra):
1126 if (ret.size() > nCount)
1127 {
1128 Array::iterator last = ret.begin();
1129 std::advance(last, nCount);
1130 ret.erase(last, ret.end());
bfd471f5 1131 }
809ee795 1132 std::reverse(ret.begin(), ret.end()); // oldest to newest
bfd471f5 1133
809ee795 1134 return ret;
1135}
1136
1137Value listaccounts(const Array& params, bool fHelp)
1138{
1139 if (fHelp || params.size() > 1)
1140 throw runtime_error(
1141 "listaccounts [minconf=1]\n"
1142 "Returns Object that has account names as keys, account balances as values.");
1143
1144 int nMinDepth = 1;
2eb09b66
GA
1145 if (params.size() > 0)
1146 nMinDepth = params[0].get_int();
809ee795 1147
1148 map<string, int64> mapAccountBalances;
1149 CRITICAL_BLOCK(cs_mapWallet)
1150 CRITICAL_BLOCK(cs_mapAddressBook)
1151 {
1152 foreach(const PAIRTYPE(string, string)& entry, mapAddressBook)
1153 mapAccountBalances[entry.second] = 0;
1154
1155 for (map<uint256, CWalletTx>::iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
1156 {
1157 const CWalletTx& wtx = (*it).second;
ddb68ace 1158 int64 nGenerated, nFee;
809ee795 1159 string strSentAccount;
1160 list<pair<string, int64> > listReceived;
ddb68ace
GA
1161 list<pair<string, int64> > listSent;
1162 wtx.GetAmounts(nGenerated, listReceived, listSent, nFee, strSentAccount);
1163 mapAccountBalances[strSentAccount] -= nFee;
1164 foreach(const PAIRTYPE(string, int64)& s, listSent)
1165 mapAccountBalances[strSentAccount] -= s.second;
809ee795 1166 if (wtx.GetDepthInMainChain() >= nMinDepth)
1167 {
1168 mapAccountBalances[""] += nGenerated;
1169 foreach(const PAIRTYPE(string, int64)& r, listReceived)
1170 if (mapAddressBook.count(r.first))
1171 mapAccountBalances[mapAddressBook[r.first]] += r.second;
d9574c2f
GA
1172 else
1173 mapAccountBalances[""] += r.second;
809ee795 1174 }
1175 }
1176 }
1177
1178 list<CAccountingEntry> acentries;
1179 CWalletDB().ListAccountCreditDebit("*", acentries);
1180 foreach(const CAccountingEntry& entry, acentries)
1181 mapAccountBalances[entry.strAccount] += entry.nCreditDebit;
1182
1183 Object ret;
1184 foreach(const PAIRTYPE(string, int64)& accountBalance, mapAccountBalances) {
1185 ret.push_back(Pair(accountBalance.first, ValueFromAmount(accountBalance.second)));
1186 }
bfd471f5 1187 return ret;
1188}
1189
1190Value gettransaction(const Array& params, bool fHelp)
1191{
1192 if (fHelp || params.size() != 1)
1193 throw runtime_error(
1194 "gettransaction <txid>\n"
1195 "Get detailed information about <txid>");
1196
1197 uint256 hash;
1198 hash.SetHex(params[0].get_str());
1199
1200 Object entry;
1201 CRITICAL_BLOCK(cs_mapWallet)
1202 {
1203 if (!mapWallet.count(hash))
80be6e69 1204 throw JSONRPCError(-5, "Invalid or non-wallet transaction id");
bfd471f5 1205 const CWalletTx& wtx = mapWallet[hash];
1206
1207 int64 nCredit = wtx.GetCredit();
1208 int64 nDebit = wtx.GetDebit();
1209 int64 nNet = nCredit - nDebit;
1210 int64 nFee = (wtx.IsFromMe() ? wtx.GetValueOut() - nDebit : 0);
1211
1212 entry.push_back(Pair("amount", ValueFromAmount(nNet - nFee)));
1213 if (wtx.IsFromMe())
1214 entry.push_back(Pair("fee", ValueFromAmount(nFee)));
80be6e69 1215
bfd471f5 1216 WalletTxToJSON(mapWallet[hash], entry);
80be6e69
GA
1217
1218 Array details;
1219 ListTransactions(mapWallet[hash], "*", 0, false, details);
1220 entry.push_back(Pair("details", details));
bfd471f5 1221 }
1222
1223 return entry;
1224}
1225
0a61b0df 1226
d743f035 1227Value backupwallet(const Array& params, bool fHelp)
1228{
1229 if (fHelp || params.size() != 1)
1230 throw runtime_error(
1231 "backupwallet <destination>\n"
1232 "Safely copies wallet.dat to destination, which can be a directory or a path with filename.");
1233
1234 string strDest = params[0].get_str();
1235 BackupWallet(strDest);
1236
1237 return Value::null;
1238}
1239
c891967b 1240
2ea5fa07 1241Value validateaddress(const Array& params, bool fHelp)
1242{
1243 if (fHelp || params.size() != 1)
1244 throw runtime_error(
1245 "validateaddress <bitcoinaddress>\n"
1246 "Return information about <bitcoinaddress>.");
1247
1248 string strAddress = params[0].get_str();
1249 uint160 hash160;
1250 bool isValid = AddressToHash160(strAddress, hash160);
d743f035 1251
2ea5fa07 1252 Object ret;
1253 ret.push_back(Pair("isvalid", isValid));
1254 if (isValid)
1255 {
1256 // Call Hash160ToAddress() so we always return current ADDRESSVERSION
1257 // version of the address:
e4ff4e68 1258 string currentAddress = Hash160ToAddress(hash160);
1259 ret.push_back(Pair("address", currentAddress));
2ea5fa07 1260 ret.push_back(Pair("ismine", (mapPubKeys.count(hash160) > 0)));
e4ff4e68 1261 CRITICAL_BLOCK(cs_mapAddressBook)
1262 {
1263 if (mapAddressBook.count(currentAddress))
1264 ret.push_back(Pair("account", mapAddressBook[currentAddress]));
1265 }
2ea5fa07 1266 }
1267 return ret;
1268}
0a61b0df 1269
1270
776d0f34 1271Value getwork(const Array& params, bool fHelp)
1272{
1273 if (fHelp || params.size() > 1)
1274 throw runtime_error(
1275 "getwork [data]\n"
1276 "If [data] is not specified, returns formatted hash data to work on:\n"
1277 " \"midstate\" : precomputed hash state after hashing the first half of the data\n"
1278 " \"data\" : block data\n"
1279 " \"hash1\" : formatted hash buffer for second hash\n"
1280 " \"target\" : little endian hash target\n"
1281 "If [data] is specified, tries to solve the block and returns true if it was successful.");
1282
1283 if (vNodes.empty())
1284 throw JSONRPCError(-9, "Bitcoin is not connected!");
1285
1286 if (IsInitialBlockDownload())
1287 throw JSONRPCError(-10, "Bitcoin is downloading blocks...");
1288
1289 static map<uint256, pair<CBlock*, unsigned int> > mapNewBlock;
1290 static vector<CBlock*> vNewBlock;
1291 static CReserveKey reservekey;
1292
1293 if (params.size() == 0)
1294 {
1295 // Update block
1296 static unsigned int nTransactionsUpdatedLast;
1297 static CBlockIndex* pindexPrev;
1298 static int64 nStart;
1299 static CBlock* pblock;
1300 if (pindexPrev != pindexBest ||
1301 (nTransactionsUpdated != nTransactionsUpdatedLast && GetTime() - nStart > 60))
1302 {
1303 if (pindexPrev != pindexBest)
1304 {
1305 // Deallocate old blocks since they're obsolete now
1306 mapNewBlock.clear();
1307 foreach(CBlock* pblock, vNewBlock)
1308 delete pblock;
1309 vNewBlock.clear();
1310 }
1311 nTransactionsUpdatedLast = nTransactionsUpdated;
1312 pindexPrev = pindexBest;
1313 nStart = GetTime();
1314
1315 // Create new block
1316 pblock = CreateNewBlock(reservekey);
1317 if (!pblock)
1318 throw JSONRPCError(-7, "Out of memory");
1319 vNewBlock.push_back(pblock);
1320 }
1321
1322 // Update nTime
1323 pblock->nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime());
1324 pblock->nNonce = 0;
1325
1326 // Update nExtraNonce
1327 static unsigned int nExtraNonce = 0;
1328 static int64 nPrevTime = 0;
1329 IncrementExtraNonce(pblock, pindexPrev, nExtraNonce, nPrevTime);
1330
1331 // Save
1332 mapNewBlock[pblock->hashMerkleRoot] = make_pair(pblock, nExtraNonce);
1333
1334 // Prebuild hash buffers
1335 char pmidstate[32];
1336 char pdata[128];
1337 char phash1[64];
1338 FormatHashBuffers(pblock, pmidstate, pdata, phash1);
1339
1340 uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
1341
1342 Object result;
1343 result.push_back(Pair("midstate", HexStr(BEGIN(pmidstate), END(pmidstate))));
1344 result.push_back(Pair("data", HexStr(BEGIN(pdata), END(pdata))));
1345 result.push_back(Pair("hash1", HexStr(BEGIN(phash1), END(phash1))));
1346 result.push_back(Pair("target", HexStr(BEGIN(hashTarget), END(hashTarget))));
1347 return result;
1348 }
1349 else
1350 {
1351 // Parse parameters
1352 vector<unsigned char> vchData = ParseHex(params[0].get_str());
1353 if (vchData.size() != 128)
1354 throw JSONRPCError(-8, "Invalid parameter");
1355 CBlock* pdata = (CBlock*)&vchData[0];
1356
1357 // Byte reverse
1358 for (int i = 0; i < 128/4; i++)
1359 ((unsigned int*)pdata)[i] = CryptoPP::ByteReverse(((unsigned int*)pdata)[i]);
1360
1361 // Get saved block
1362 if (!mapNewBlock.count(pdata->hashMerkleRoot))
1363 return false;
1364 CBlock* pblock = mapNewBlock[pdata->hashMerkleRoot].first;
1365 unsigned int nExtraNonce = mapNewBlock[pdata->hashMerkleRoot].second;
1366
1367 pblock->nTime = pdata->nTime;
1368 pblock->nNonce = pdata->nNonce;
1369 pblock->vtx[0].vin[0].scriptSig = CScript() << pblock->nBits << CBigNum(nExtraNonce);
1370 pblock->hashMerkleRoot = pblock->BuildMerkleTree();
1371
1372 return CheckWork(pblock, reservekey);
1373 }
1374}
1375
1376
0a61b0df 1377
1378
1379
1380
1381
1382
1383
1384
1385
1386//
1387// Call Table
1388//
1389
1390pair<string, rpcfn_type> pCallTable[] =
1391{
1392 make_pair("help", &help),
1393 make_pair("stop", &stop),
1394 make_pair("getblockcount", &getblockcount),
1395 make_pair("getblocknumber", &getblocknumber),
1396 make_pair("getconnectioncount", &getconnectioncount),
1397 make_pair("getdifficulty", &getdifficulty),
0a61b0df 1398 make_pair("getgenerate", &getgenerate),
1399 make_pair("setgenerate", &setgenerate),
1400 make_pair("gethashespersec", &gethashespersec),
1401 make_pair("getinfo", &getinfo),
1402 make_pair("getnewaddress", &getnewaddress),
e4ff4e68 1403 make_pair("getaccountaddress", &getaccountaddress),
1404 make_pair("setaccount", &setaccount),
1405 make_pair("setlabel", &setaccount), // deprecated
1406 make_pair("getaccount", &getaccount),
1407 make_pair("getlabel", &getaccount), // deprecated
1408 make_pair("getaddressesbyaccount", &getaddressesbyaccount),
1409 make_pair("getaddressesbylabel", &getaddressesbyaccount), // deprecated
0a61b0df 1410 make_pair("sendtoaddress", &sendtoaddress),
1411 make_pair("getamountreceived", &getreceivedbyaddress), // deprecated, renamed to getreceivedbyaddress
1412 make_pair("getallreceived", &listreceivedbyaddress), // deprecated, renamed to listreceivedbyaddress
1413 make_pair("getreceivedbyaddress", &getreceivedbyaddress),
e4ff4e68 1414 make_pair("getreceivedbyaccount", &getreceivedbyaccount),
1415 make_pair("getreceivedbylabel", &getreceivedbyaccount), // deprecated
0a61b0df 1416 make_pair("listreceivedbyaddress", &listreceivedbyaddress),
e4ff4e68 1417 make_pair("listreceivedbyaccount", &listreceivedbyaccount),
1418 make_pair("listreceivedbylabel", &listreceivedbyaccount), // deprecated
d743f035 1419 make_pair("backupwallet", &backupwallet),
2ea5fa07 1420 make_pair("validateaddress", &validateaddress),
e4ff4e68 1421 make_pair("getbalance", &getbalance),
1422 make_pair("move", &movecmd),
1423 make_pair("sendfrom", &sendfrom),
b931ed85 1424 make_pair("sendmany", &sendmany),
bfd471f5 1425 make_pair("gettransaction", &gettransaction),
1426 make_pair("listtransactions", &listtransactions),
776d0f34 1427 make_pair("getwork", &getwork),
809ee795 1428 make_pair("listaccounts", &listaccounts),
0a61b0df 1429};
1430map<string, rpcfn_type> mapCallTable(pCallTable, pCallTable + sizeof(pCallTable)/sizeof(pCallTable[0]));
1431
986b5e25 1432string pAllowInSafeMode[] =
1433{
1434 "help",
1435 "stop",
1436 "getblockcount",
1437 "getblocknumber",
1438 "getconnectioncount",
1439 "getdifficulty",
1440 "getgenerate",
1441 "setgenerate",
1442 "gethashespersec",
1443 "getinfo",
1444 "getnewaddress",
1445 "getaccountaddress",
1446 "setlabel",
1447 "getaccount",
1448 "getlabel", // deprecated
1449 "getaddressesbyaccount",
1450 "getaddressesbylabel", // deprecated
1451 "backupwallet",
1452 "validateaddress",
1453 "getwork",
1454};
1455set<string> setAllowInSafeMode(pAllowInSafeMode, pAllowInSafeMode + sizeof(pAllowInSafeMode)/sizeof(pAllowInSafeMode[0]));
1456
0a61b0df 1457
1458
1459
1460//
1461// HTTP protocol
1462//
1463// This ain't Apache. We're just using HTTP header for the length field
1464// and to be compatible with other JSON-RPC implementations.
1465//
1466
1467string HTTPPost(const string& strMsg, const map<string,string>& mapRequestHeaders)
1468{
1469 ostringstream s;
1470 s << "POST / HTTP/1.1\r\n"
1471 << "User-Agent: json-rpc/1.0\r\n"
1472 << "Host: 127.0.0.1\r\n"
1473 << "Content-Type: application/json\r\n"
1474 << "Content-Length: " << strMsg.size() << "\r\n"
1475 << "Accept: application/json\r\n";
d743f035 1476 foreach(const PAIRTYPE(string, string)& item, mapRequestHeaders)
1477 s << item.first << ": " << item.second << "\r\n";
0a61b0df 1478 s << "\r\n" << strMsg;
1479
1480 return s.str();
1481}
1482
c285051c 1483string rfc1123Time()
1484{
1485 char buffer[32];
1486 time_t now;
1487 time(&now);
1488 struct tm* now_gmt = gmtime(&now);
1489 strftime(buffer, sizeof(buffer), "%a, %d %b %Y %H:%M:%S %Z", now_gmt);
1490 return string(buffer);
1491}
1492
d743f035 1493string HTTPReply(int nStatus, const string& strMsg)
0a61b0df 1494{
1495 if (nStatus == 401)
c285051c 1496 return strprintf("HTTP/1.0 401 Authorization Required\r\n"
1497 "Date: %s\r\n"
1498 "Server: bitcoin-json-rpc\r\n"
0a61b0df 1499 "WWW-Authenticate: Basic realm=\"jsonrpc\"\r\n"
1500 "Content-Type: text/html\r\n"
809ee795 1501 "Content-Length: 296\r\n"
0a61b0df 1502 "\r\n"
1503 "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\r\n"
1504 "\"http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd\">\r\n"
1505 "<HTML>\r\n"
1506 "<HEAD>\r\n"
1507 "<TITLE>Error</TITLE>\r\n"
1508 "<META HTTP-EQUIV='Content-Type' CONTENT='text/html; charset=ISO-8859-1'>\r\n"
1509 "</HEAD>\r\n"
1510 "<BODY><H1>401 Unauthorized.</H1></BODY>\r\n"
c285051c 1511 "</HTML>\r\n", rfc1123Time().c_str());
0a61b0df 1512 string strStatus;
d743f035 1513 if (nStatus == 200) strStatus = "OK";
1514 else if (nStatus == 400) strStatus = "Bad Request";
1515 else if (nStatus == 404) strStatus = "Not Found";
1516 else if (nStatus == 500) strStatus = "Internal Server Error";
0a61b0df 1517 return strprintf(
1518 "HTTP/1.1 %d %s\r\n"
c285051c 1519 "Date: %s\r\n"
0a61b0df 1520 "Connection: close\r\n"
1521 "Content-Length: %d\r\n"
1522 "Content-Type: application/json\r\n"
c285051c 1523 "Server: bitcoin-json-rpc/1.0\r\n"
0a61b0df 1524 "\r\n"
1525 "%s",
1526 nStatus,
1527 strStatus.c_str(),
c285051c 1528 rfc1123Time().c_str(),
0a61b0df 1529 strMsg.size(),
1530 strMsg.c_str());
1531}
1532
ed54768f 1533int ReadHTTPStatus(std::basic_istream<char>& stream)
0a61b0df 1534{
1535 string str;
1536 getline(stream, str);
1537 vector<string> vWords;
1538 boost::split(vWords, str, boost::is_any_of(" "));
efae3da4 1539 if (vWords.size() < 2)
1540 return 500;
1541 return atoi(vWords[1].c_str());
0a61b0df 1542}
1543
ed54768f 1544int ReadHTTPHeader(std::basic_istream<char>& stream, map<string, string>& mapHeadersRet)
0a61b0df 1545{
1546 int nLen = 0;
1547 loop
1548 {
1549 string str;
1550 std::getline(stream, str);
1551 if (str.empty() || str == "\r")
1552 break;
1553 string::size_type nColon = str.find(":");
1554 if (nColon != string::npos)
1555 {
1556 string strHeader = str.substr(0, nColon);
1557 boost::trim(strHeader);
1558 string strValue = str.substr(nColon+1);
1559 boost::trim(strValue);
1560 mapHeadersRet[strHeader] = strValue;
1561 if (strHeader == "Content-Length")
1562 nLen = atoi(strValue.c_str());
1563 }
1564 }
1565 return nLen;
1566}
1567
ed54768f 1568int ReadHTTP(std::basic_istream<char>& stream, map<string, string>& mapHeadersRet, string& strMessageRet)
0a61b0df 1569{
1570 mapHeadersRet.clear();
1571 strMessageRet = "";
1572
1573 // Read status
1574 int nStatus = ReadHTTPStatus(stream);
1575
1576 // Read header
1577 int nLen = ReadHTTPHeader(stream, mapHeadersRet);
d743f035 1578 if (nLen < 0 || nLen > MAX_SIZE)
0a61b0df 1579 return 500;
1580
1581 // Read message
d743f035 1582 if (nLen > 0)
1583 {
1584 vector<char> vch(nLen);
1585 stream.read(&vch[0], nLen);
1586 strMessageRet = string(vch.begin(), vch.end());
1587 }
0a61b0df 1588
1589 return nStatus;
1590}
1591
1592string EncodeBase64(string s)
1593{
1594 BIO *b64, *bmem;
1595 BUF_MEM *bptr;
1596
1597 b64 = BIO_new(BIO_f_base64());
1598 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
1599 bmem = BIO_new(BIO_s_mem());
1600 b64 = BIO_push(b64, bmem);
1601 BIO_write(b64, s.c_str(), s.size());
1602 BIO_flush(b64);
1603 BIO_get_mem_ptr(b64, &bptr);
1604
1605 string result(bptr->data, bptr->length);
1606 BIO_free_all(b64);
1607
1608 return result;
1609}
1610
1611string DecodeBase64(string s)
1612{
1613 BIO *b64, *bmem;
1614
1615 char* buffer = static_cast<char*>(calloc(s.size(), sizeof(char)));
1616
1617 b64 = BIO_new(BIO_f_base64());
1618 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
1619 bmem = BIO_new_mem_buf(const_cast<char*>(s.c_str()), s.size());
1620 bmem = BIO_push(b64, bmem);
1621 BIO_read(bmem, buffer, s.size());
1622 BIO_free_all(bmem);
1623
1624 string result(buffer);
1625 free(buffer);
1626 return result;
1627}
1628
1629bool HTTPAuthorized(map<string, string>& mapHeaders)
1630{
1631 string strAuth = mapHeaders["Authorization"];
1632 if (strAuth.substr(0,6) != "Basic ")
1633 return false;
1634 string strUserPass64 = strAuth.substr(6); boost::trim(strUserPass64);
1635 string strUserPass = DecodeBase64(strUserPass64);
1636 string::size_type nColon = strUserPass.find(":");
1637 if (nColon == string::npos)
1638 return false;
1639 string strUser = strUserPass.substr(0, nColon);
1640 string strPassword = strUserPass.substr(nColon+1);
1641 return (strUser == mapArgs["-rpcuser"] && strPassword == mapArgs["-rpcpassword"]);
1642}
1643
1644//
d743f035 1645// JSON-RPC protocol. Bitcoin speaks version 1.0 for maximum compatibility,
1646// but uses JSON-RPC 1.1/2.0 standards for parts of the 1.0 standard that were
1647// unspecified (HTTP errors and contents of 'error').
0a61b0df 1648//
d743f035 1649// 1.0 spec: http://json-rpc.org/wiki/specification
1650// 1.2 spec: http://groups.google.com/group/json-rpc/web/json-rpc-over-http
0a61b0df 1651// http://www.codeproject.com/KB/recipes/JSON_Spirit.aspx
1652//
1653
1654string JSONRPCRequest(const string& strMethod, const Array& params, const Value& id)
1655{
1656 Object request;
1657 request.push_back(Pair("method", strMethod));
1658 request.push_back(Pair("params", params));
1659 request.push_back(Pair("id", id));
1660 return write_string(Value(request), false) + "\n";
1661}
1662
1663string JSONRPCReply(const Value& result, const Value& error, const Value& id)
1664{
1665 Object reply;
1666 if (error.type() != null_type)
1667 reply.push_back(Pair("result", Value::null));
1668 else
1669 reply.push_back(Pair("result", result));
1670 reply.push_back(Pair("error", error));
1671 reply.push_back(Pair("id", id));
1672 return write_string(Value(reply), false) + "\n";
1673}
1674
809ee795 1675void ErrorReply(std::ostream& stream, const Object& objError, const Value& id)
1676{
1677 // Send error reply from json-rpc error object
1678 int nStatus = 500;
1679 int code = find_value(objError, "code").get_int();
1680 if (code == -32600) nStatus = 400;
1681 else if (code == -32601) nStatus = 404;
1682 string strReply = JSONRPCReply(Value::null, objError, id);
1683 stream << HTTPReply(nStatus, strReply) << std::flush;
1684}
1685
efae3da4 1686bool ClientAllowed(const string& strAddress)
1687{
1688 if (strAddress == asio::ip::address_v4::loopback().to_string())
1689 return true;
1690 const vector<string>& vAllow = mapMultiArgs["-rpcallowip"];
1691 foreach(string strAllow, vAllow)
1692 if (WildcardMatch(strAddress, strAllow))
1693 return true;
1694 return false;
1695}
1696
ed54768f 1697#ifdef USE_SSL
1698//
1699// IOStream device that speaks SSL but can also speak non-SSL
1700//
1701class SSLIOStreamDevice : public iostreams::device<iostreams::bidirectional> {
1702public:
1703 SSLIOStreamDevice(SSLStream &streamIn, bool fUseSSLIn) : stream(streamIn)
1704 {
1705 fUseSSL = fUseSSLIn;
1706 fNeedHandshake = fUseSSLIn;
1707 }
0a61b0df 1708
ed54768f 1709 void handshake(ssl::stream_base::handshake_type role)
1710 {
1711 if (!fNeedHandshake) return;
1712 fNeedHandshake = false;
1713 stream.handshake(role);
1714 }
1715 std::streamsize read(char* s, std::streamsize n)
1716 {
1717 handshake(ssl::stream_base::server); // HTTPS servers read first
1718 if (fUseSSL) return stream.read_some(asio::buffer(s, n));
1719 return stream.next_layer().read_some(asio::buffer(s, n));
1720 }
1721 std::streamsize write(const char* s, std::streamsize n)
1722 {
1723 handshake(ssl::stream_base::client); // HTTPS clients write first
1724 if (fUseSSL) return asio::write(stream, asio::buffer(s, n));
1725 return asio::write(stream.next_layer(), asio::buffer(s, n));
1726 }
1727 bool connect(const std::string& server, const std::string& port)
1728 {
1729 ip::tcp::resolver resolver(stream.get_io_service());
1730 ip::tcp::resolver::query query(server.c_str(), port.c_str());
1731 ip::tcp::resolver::iterator endpoint_iterator = resolver.resolve(query);
1732 ip::tcp::resolver::iterator end;
1733 boost::system::error_code error = asio::error::host_not_found;
1734 while (error && endpoint_iterator != end)
1735 {
1736 stream.lowest_layer().close();
1737 stream.lowest_layer().connect(*endpoint_iterator++, error);
1738 }
1739 if (error)
1740 return false;
1741 return true;
1742 }
0a61b0df 1743
ed54768f 1744private:
1745 bool fNeedHandshake;
1746 bool fUseSSL;
1747 SSLStream& stream;
1748};
1749#endif
0a61b0df 1750
1751void ThreadRPCServer(void* parg)
1752{
1753 IMPLEMENT_RANDOMIZE_STACK(ThreadRPCServer(parg));
1754 try
1755 {
1756 vnThreadsRunning[4]++;
1757 ThreadRPCServer2(parg);
1758 vnThreadsRunning[4]--;
1759 }
1760 catch (std::exception& e) {
1761 vnThreadsRunning[4]--;
1762 PrintException(&e, "ThreadRPCServer()");
1763 } catch (...) {
1764 vnThreadsRunning[4]--;
1765 PrintException(NULL, "ThreadRPCServer()");
1766 }
1767 printf("ThreadRPCServer exiting\n");
1768}
1769
1770void ThreadRPCServer2(void* parg)
1771{
1772 printf("ThreadRPCServer started\n");
1773
1774 if (mapArgs["-rpcuser"] == "" && mapArgs["-rpcpassword"] == "")
1775 {
1776 string strWhatAmI = "To use bitcoind";
1777 if (mapArgs.count("-server"))
1778 strWhatAmI = strprintf(_("To use the %s option"), "\"-server\"");
1779 else if (mapArgs.count("-daemon"))
1780 strWhatAmI = strprintf(_("To use the %s option"), "\"-daemon\"");
1781 PrintConsole(
1782 _("Warning: %s, you must set rpcpassword=<password>\nin the configuration file: %s\n"
1783 "If the file does not exist, create it with owner-readable-only file permissions.\n"),
1784 strWhatAmI.c_str(),
1785 GetConfigFile().c_str());
1786 CreateThread(Shutdown, NULL);
1787 return;
1788 }
1789
bdde31d7 1790 bool fUseSSL = GetBoolArg("-rpcssl");
ed54768f 1791 asio::ip::address bindAddress = mapArgs.count("-rpcallowip") ? asio::ip::address_v4::any() : asio::ip::address_v4::loopback();
1792
1793 asio::io_service io_service;
1794 ip::tcp::endpoint endpoint(bindAddress, GetArg("-rpcport", 8332));
1795 ip::tcp::acceptor acceptor(io_service, endpoint);
1796
8fd402bf 1797 acceptor.set_option(boost::asio::ip::tcp::acceptor::reuse_address(true));
1798
ed54768f 1799#ifdef USE_SSL
1800 ssl::context context(io_service, ssl::context::sslv23);
1801 if (fUseSSL)
1802 {
1803 context.set_options(ssl::context::no_sslv2);
1804 filesystem::path certfile = GetArg("-rpcsslcertificatechainfile", "server.cert");
1805 if (!certfile.is_complete()) certfile = filesystem::path(GetDataDir()) / certfile;
1806 if (filesystem::exists(certfile)) context.use_certificate_chain_file(certfile.string().c_str());
1807 else printf("ThreadRPCServer ERROR: missing server certificate file %s\n", certfile.string().c_str());
1808 filesystem::path pkfile = GetArg("-rpcsslprivatekeyfile", "server.pem");
1809 if (!pkfile.is_complete()) pkfile = filesystem::path(GetDataDir()) / pkfile;
1810 if (filesystem::exists(pkfile)) context.use_private_key_file(pkfile.string().c_str(), ssl::context::pem);
1811 else printf("ThreadRPCServer ERROR: missing server private key file %s\n", pkfile.string().c_str());
1812
1813 string ciphers = GetArg("-rpcsslciphers",
1814 "TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH");
1815 SSL_CTX_set_cipher_list(context.impl(), ciphers.c_str());
1816 }
1817#else
1818 if (fUseSSL)
bdde31d7 1819 throw runtime_error("-rpcssl=1, but bitcoin compiled without full openssl libraries.");
ed54768f 1820#endif
0a61b0df 1821
1822 loop
1823 {
1824 // Accept connection
ed54768f 1825#ifdef USE_SSL
1826 SSLStream sslStream(io_service, context);
1827 SSLIOStreamDevice d(sslStream, fUseSSL);
1828 iostreams::stream<SSLIOStreamDevice> stream(d);
1829#else
1830 ip::tcp::iostream stream;
1831#endif
1832
1833 ip::tcp::endpoint peer;
0a61b0df 1834 vnThreadsRunning[4]--;
ed54768f 1835#ifdef USE_SSL
1836 acceptor.accept(sslStream.lowest_layer(), peer);
1837#else
0a61b0df 1838 acceptor.accept(*stream.rdbuf(), peer);
ed54768f 1839#endif
0a61b0df 1840 vnThreadsRunning[4]++;
1841 if (fShutdown)
1842 return;
1843
efae3da4 1844 // Restrict callers by IP
1845 if (!ClientAllowed(peer.address().to_string()))
0a61b0df 1846 continue;
1847
0a61b0df 1848 map<string, string> mapHeaders;
1849 string strRequest;
809ee795 1850
47908a89 1851 boost::thread api_caller(ReadHTTP, boost::ref(stream), boost::ref(mapHeaders), boost::ref(strRequest));
809ee795 1852 if (!api_caller.timed_join(boost::posix_time::seconds(GetArg("-rpctimeout", 30))))
1853 { // Timed out:
1854 acceptor.cancel();
1855 printf("ThreadRPCServer ReadHTTP timeout\n");
1856 continue;
1857 }
0a61b0df 1858
1859 // Check authorization
1860 if (mapHeaders.count("Authorization") == 0)
1861 {
d743f035 1862 stream << HTTPReply(401, "") << std::flush;
0a61b0df 1863 continue;
1864 }
1865 if (!HTTPAuthorized(mapHeaders))
1866 {
1867 // Deter brute-forcing short passwords
1868 if (mapArgs["-rpcpassword"].size() < 15)
1869 Sleep(50);
1870
d743f035 1871 stream << HTTPReply(401, "") << std::flush;
0a61b0df 1872 printf("ThreadRPCServer incorrect password attempt\n");
1873 continue;
1874 }
1875
d743f035 1876 Value id = Value::null;
1877 try
0a61b0df 1878 {
d743f035 1879 // Parse request
1880 Value valRequest;
1881 if (!read_string(strRequest, valRequest) || valRequest.type() != obj_type)
1882 throw JSONRPCError(-32700, "Parse error");
1883 const Object& request = valRequest.get_obj();
1884
1885 // Parse id now so errors from here on will have the id
1886 id = find_value(request, "id");
1887
1888 // Parse method
1889 Value valMethod = find_value(request, "method");
1890 if (valMethod.type() == null_type)
1891 throw JSONRPCError(-32600, "Missing method");
1892 if (valMethod.type() != str_type)
1893 throw JSONRPCError(-32600, "Method must be a string");
1894 string strMethod = valMethod.get_str();
776d0f34 1895 if (strMethod != "getwork")
1896 printf("ThreadRPCServer method=%s\n", strMethod.c_str());
d743f035 1897
1898 // Parse params
1899 Value valParams = find_value(request, "params");
1900 Array params;
1901 if (valParams.type() == array_type)
1902 params = valParams.get_array();
1903 else if (valParams.type() == null_type)
1904 params = Array();
1905 else
1906 throw JSONRPCError(-32600, "Params must be an array");
1907
1908 // Find method
1909 map<string, rpcfn_type>::iterator mi = mapCallTable.find(strMethod);
1910 if (mi == mapCallTable.end())
1911 throw JSONRPCError(-32601, "Method not found");
1912
986b5e25 1913 // Observe safe mode
1914 string strWarning = GetWarnings("rpc");
1915 if (strWarning != "" && !GetBoolArg("-disablesafemode") && !setAllowInSafeMode.count(strMethod))
1916 throw JSONRPCError(-2, string("Safe mode: ") + strWarning);
1917
0a61b0df 1918 try
1919 {
0a61b0df 1920 // Execute
0a61b0df 1921 Value result = (*(*mi).second)(params, false);
1922
1923 // Send reply
1924 string strReply = JSONRPCReply(result, Value::null, id);
d743f035 1925 stream << HTTPReply(200, strReply) << std::flush;
0a61b0df 1926 }
1927 catch (std::exception& e)
1928 {
809ee795 1929 ErrorReply(stream, JSONRPCError(-1, e.what()), id);
0a61b0df 1930 }
d743f035 1931 }
1932 catch (Object& objError)
1933 {
809ee795 1934 ErrorReply(stream, objError, id);
d743f035 1935 }
1936 catch (std::exception& e)
1937 {
809ee795 1938 ErrorReply(stream, JSONRPCError(-32700, e.what()), id);
0a61b0df 1939 }
1940 }
1941}
1942
1943
1944
1945
d743f035 1946Object CallRPC(const string& strMethod, const Array& params)
0a61b0df 1947{
1948 if (mapArgs["-rpcuser"] == "" && mapArgs["-rpcpassword"] == "")
1949 throw runtime_error(strprintf(
1950 _("You must set rpcpassword=<password> in the configuration file:\n%s\n"
1951 "If the file does not exist, create it with owner-readable-only file permissions."),
1952 GetConfigFile().c_str()));
1953
1954 // Connect to localhost
bdde31d7 1955 bool fUseSSL = GetBoolArg("-rpcssl");
ed54768f 1956#ifdef USE_SSL
1957 asio::io_service io_service;
1958 ssl::context context(io_service, ssl::context::sslv23);
1959 context.set_options(ssl::context::no_sslv2);
1960 SSLStream sslStream(io_service, context);
1961 SSLIOStreamDevice d(sslStream, fUseSSL);
1962 iostreams::stream<SSLIOStreamDevice> stream(d);
1963 if (!d.connect(GetArg("-rpcconnect", "127.0.0.1"), GetArg("-rpcport", "8332")))
1964 throw runtime_error("couldn't connect to server");
1965#else
1966 if (fUseSSL)
bdde31d7 1967 throw runtime_error("-rpcssl=1, but bitcoin compiled without full openssl libraries.");
ed54768f 1968
1969 ip::tcp::iostream stream(GetArg("-rpcconnect", "127.0.0.1"), GetArg("-rpcport", "8332"));
0a61b0df 1970 if (stream.fail())
1971 throw runtime_error("couldn't connect to server");
ed54768f 1972#endif
1973
0a61b0df 1974
1975 // HTTP basic authentication
1976 string strUserPass64 = EncodeBase64(mapArgs["-rpcuser"] + ":" + mapArgs["-rpcpassword"]);
1977 map<string, string> mapRequestHeaders;
1978 mapRequestHeaders["Authorization"] = string("Basic ") + strUserPass64;
1979
1980 // Send request
1981 string strRequest = JSONRPCRequest(strMethod, params, 1);
1982 string strPost = HTTPPost(strRequest, mapRequestHeaders);
1983 stream << strPost << std::flush;
1984
1985 // Receive reply
1986 map<string, string> mapHeaders;
1987 string strReply;
1988 int nStatus = ReadHTTP(stream, mapHeaders, strReply);
1989 if (nStatus == 401)
1990 throw runtime_error("incorrect rpcuser or rpcpassword (authorization failed)");
d743f035 1991 else if (nStatus >= 400 && nStatus != 400 && nStatus != 404 && nStatus != 500)
0a61b0df 1992 throw runtime_error(strprintf("server returned HTTP error %d", nStatus));
1993 else if (strReply.empty())
1994 throw runtime_error("no response from server");
1995
1996 // Parse reply
1997 Value valReply;
1998 if (!read_string(strReply, valReply))
1999 throw runtime_error("couldn't parse reply from server");
2000 const Object& reply = valReply.get_obj();
2001 if (reply.empty())
2002 throw runtime_error("expected reply to have result, error and id properties");
2003
d743f035 2004 return reply;
0a61b0df 2005}
2006
2007
2008
2009
2010template<typename T>
2011void ConvertTo(Value& value)
2012{
2013 if (value.type() == str_type)
2014 {
2015 // reinterpret string as unquoted json value
2016 Value value2;
2017 if (!read_string(value.get_str(), value2))
2018 throw runtime_error("type mismatch");
2019 value = value2.get_value<T>();
2020 }
2021 else
2022 {
2023 value = value.get_value<T>();
2024 }
2025}
2026
2027int CommandLineRPC(int argc, char *argv[])
2028{
d743f035 2029 string strPrint;
2030 int nRet = 0;
0a61b0df 2031 try
2032 {
2033 // Skip switches
2034 while (argc > 1 && IsSwitchChar(argv[1][0]))
2035 {
2036 argc--;
2037 argv++;
2038 }
2039
2040 // Method
2041 if (argc < 2)
2042 throw runtime_error("too few parameters");
2043 string strMethod = argv[1];
2044
2045 // Parameters default to strings
2046 Array params;
2047 for (int i = 2; i < argc; i++)
2048 params.push_back(argv[i]);
2049 int n = params.size();
2050
2051 //
2052 // Special case non-string parameter types
2053 //
2054 if (strMethod == "setgenerate" && n > 0) ConvertTo<bool>(params[0]);
2055 if (strMethod == "setgenerate" && n > 1) ConvertTo<boost::int64_t>(params[1]);
2056 if (strMethod == "sendtoaddress" && n > 1) ConvertTo<double>(params[1]);
0a61b0df 2057 if (strMethod == "getamountreceived" && n > 1) ConvertTo<boost::int64_t>(params[1]); // deprecated
2058 if (strMethod == "getreceivedbyaddress" && n > 1) ConvertTo<boost::int64_t>(params[1]);
e4ff4e68 2059 if (strMethod == "getreceivedbyaccount" && n > 1) ConvertTo<boost::int64_t>(params[1]);
2060 if (strMethod == "getreceivedbylabel" && n > 1) ConvertTo<boost::int64_t>(params[1]); // deprecated
0a61b0df 2061 if (strMethod == "getallreceived" && n > 0) ConvertTo<boost::int64_t>(params[0]); // deprecated
2062 if (strMethod == "getallreceived" && n > 1) ConvertTo<bool>(params[1]);
2063 if (strMethod == "listreceivedbyaddress" && n > 0) ConvertTo<boost::int64_t>(params[0]);
2064 if (strMethod == "listreceivedbyaddress" && n > 1) ConvertTo<bool>(params[1]);
e4ff4e68 2065 if (strMethod == "listreceivedbyaccount" && n > 0) ConvertTo<boost::int64_t>(params[0]);
2066 if (strMethod == "listreceivedbyaccount" && n > 1) ConvertTo<bool>(params[1]);
2067 if (strMethod == "listreceivedbylabel" && n > 0) ConvertTo<boost::int64_t>(params[0]); // deprecated
2068 if (strMethod == "listreceivedbylabel" && n > 1) ConvertTo<bool>(params[1]); // deprecated
2069 if (strMethod == "getbalance" && n > 1) ConvertTo<boost::int64_t>(params[1]);
2070 if (strMethod == "move" && n > 2) ConvertTo<double>(params[2]);
2071 if (strMethod == "move" && n > 3) ConvertTo<boost::int64_t>(params[3]);
2072 if (strMethod == "sendfrom" && n > 2) ConvertTo<double>(params[2]);
2073 if (strMethod == "sendfrom" && n > 3) ConvertTo<boost::int64_t>(params[3]);
bfd471f5 2074 if (strMethod == "listtransactions" && n > 1) ConvertTo<boost::int64_t>(params[1]);
2eb09b66 2075 if (strMethod == "listaccounts" && n > 0) ConvertTo<boost::int64_t>(params[0]);
b931ed85
GA
2076 if (strMethod == "sendmany" && n > 1)
2077 {
2078 string s = params[1].get_str();
2079 Value v;
2080 if (!read_string(s, v) || v.type() != obj_type)
2081 throw runtime_error("type mismatch");
2082 params[1] = v.get_obj();
2083 }
2084 if (strMethod == "sendmany" && n > 2) ConvertTo<boost::int64_t>(params[2]);
0a61b0df 2085
2086 // Execute
d743f035 2087 Object reply = CallRPC(strMethod, params);
2088
2089 // Parse reply
2090 const Value& result = find_value(reply, "result");
2091 const Value& error = find_value(reply, "error");
2092 const Value& id = find_value(reply, "id");
0a61b0df 2093
d743f035 2094 if (error.type() != null_type)
0a61b0df 2095 {
d743f035 2096 // Error
2097 strPrint = "error: " + write_string(error, false);
2098 int code = find_value(error.get_obj(), "code").get_int();
2099 nRet = abs(code);
2100 }
2101 else
2102 {
2103 // Result
2104 if (result.type() == null_type)
2105 strPrint = "";
2106 else if (result.type() == str_type)
2107 strPrint = result.get_str();
2108 else
2109 strPrint = write_string(result, true);
0a61b0df 2110 }
0a61b0df 2111 }
d743f035 2112 catch (std::exception& e)
2113 {
2114 strPrint = string("error: ") + e.what();
2115 nRet = 87;
2116 }
2117 catch (...)
2118 {
2119 PrintException(NULL, "CommandLineRPC()");
2120 }
2121
2122 if (strPrint != "")
2123 {
0a61b0df 2124#if defined(__WXMSW__) && defined(GUI)
d743f035 2125 // Windows GUI apps can't print to command line,
2126 // so settle for a message box yuck
2127 MyMessageBox(strPrint, "Bitcoin", wxOK);
0a61b0df 2128#else
d743f035 2129 fprintf((nRet == 0 ? stdout : stderr), "%s\n", strPrint.c_str());
0a61b0df 2130#endif
0a61b0df 2131 }
d743f035 2132 return nRet;
0a61b0df 2133}
2134
2135
2136
2137
2138#ifdef TEST
2139int main(int argc, char *argv[])
2140{
2141#ifdef _MSC_VER
2142 // Turn off microsoft heap dump noise
2143 _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
2144 _CrtSetReportFile(_CRT_WARN, CreateFile("NUL", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0));
2145#endif
2146 setbuf(stdin, NULL);
2147 setbuf(stdout, NULL);
2148 setbuf(stderr, NULL);
2149
2150 try
2151 {
2152 if (argc >= 2 && string(argv[1]) == "-server")
2153 {
2154 printf("server ready\n");
2155 ThreadRPCServer(NULL);
2156 }
2157 else
2158 {
2159 return CommandLineRPC(argc, argv);
2160 }
2161 }
2162 catch (std::exception& e) {
2163 PrintException(&e, "main()");
2164 } catch (...) {
2165 PrintException(NULL, "main()");
2166 }
2167 return 0;
2168}
2169#endif
This page took 0.308492 seconds and 4 git commands to generate.