Add malleable keys support.
[novacoin.git] / src / bitcoinrpc.cpp
1 // Copyright (c) 2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2012 The Bitcoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6 #include "init.h"
7 #include "util.h"
8 #include "sync.h"
9 #include "ui_interface.h"
10 #include "base58.h"
11 #include "bitcoinrpc.h"
12 #include "db.h"
13
14 #undef printf
15 #include <boost/asio.hpp>
16 #include <boost/asio/ip/v6_only.hpp>
17 #include <boost/bind.hpp>
18 #include <boost/filesystem.hpp>
19 #include <boost/foreach.hpp>
20 #include <boost/iostreams/concepts.hpp>
21 #include <boost/iostreams/stream.hpp>
22 #include <boost/algorithm/string.hpp>
23 #include <boost/lexical_cast.hpp>
24 #include <boost/asio/ssl.hpp>
25 #include <boost/filesystem/fstream.hpp>
26 #include <boost/shared_ptr.hpp>
27 #include <list>
28
29 #define printf OutputDebugStringF
30
31 using namespace std;
32 using namespace boost;
33 using namespace boost::asio;
34 using namespace json_spirit;
35
36 void ThreadRPCServer2(void* parg);
37
38 static std::string strRPCUserColonPass;
39
40 const Object emptyobj;
41
42 void ThreadRPCServer3(void* parg);
43
44 static inline unsigned short GetDefaultRPCPort()
45 {
46     return GetBoolArg("-testnet", false) ? 18344 : 8344;
47 }
48
49 Object JSONRPCError(int code, const string& message)
50 {
51     Object error;
52     error.push_back(Pair("code", code));
53     error.push_back(Pair("message", message));
54     return error;
55 }
56
57 void RPCTypeCheck(const Array& params,
58                   const list<Value_type>& typesExpected,
59                   bool fAllowNull)
60 {
61     unsigned int i = 0;
62     BOOST_FOREACH(Value_type t, typesExpected)
63     {
64         if (params.size() <= i)
65             break;
66
67         const Value& v = params[i];
68         if (!((v.type() == t) || (fAllowNull && (v.type() == null_type))))
69         {
70             string err = strprintf("Expected type %s, got %s",
71                                    Value_type_name[t], Value_type_name[v.type()]);
72             throw JSONRPCError(RPC_TYPE_ERROR, err);
73         }
74         i++;
75     }
76 }
77
78 void RPCTypeCheck(const Object& o,
79                   const map<string, Value_type>& typesExpected,
80                   bool fAllowNull)
81 {
82     BOOST_FOREACH(const PAIRTYPE(string, Value_type)& t, typesExpected)
83     {
84         const Value& v = find_value(o, t.first);
85         if (!fAllowNull && v.type() == null_type)
86             throw JSONRPCError(RPC_TYPE_ERROR, strprintf("Missing %s", t.first.c_str()));
87
88         if (!((v.type() == t.second) || (fAllowNull && (v.type() == null_type))))
89         {
90             string err = strprintf("Expected type %s for %s, got %s",
91                                    Value_type_name[t.second], t.first.c_str(), Value_type_name[v.type()]);
92             throw JSONRPCError(RPC_TYPE_ERROR, err);
93         }
94     }
95 }
96
97 int64_t AmountFromValue(const Value& value)
98 {
99     double dAmount = value.get_real();
100     if (dAmount <= 0.0 || dAmount > MAX_MONEY)
101         throw JSONRPCError(RPC_TYPE_ERROR, "Invalid amount");
102     int64_t nAmount = roundint64(dAmount * COIN);
103     if (!MoneyRange(nAmount))
104         throw JSONRPCError(RPC_TYPE_ERROR, "Invalid amount");
105     return nAmount;
106 }
107
108 Value ValueFromAmount(int64_t amount)
109 {
110     return (double)amount / (double)COIN;
111 }
112
113 std::string HexBits(unsigned int nBits)
114 {
115     union {
116         int32_t nBits;
117         char cBits[4];
118     } uBits;
119     uBits.nBits = htonl((int32_t)nBits);
120     return HexStr(BEGIN(uBits.cBits), END(uBits.cBits));
121 }
122
123
124 //
125 // Utilities: convert hex-encoded Values
126 // (throws error if not hex).
127 //
128 uint256 ParseHashV(const Value& v, string strName)
129 {
130     string strHex;
131     if (v.type() == str_type)
132         strHex = v.get_str();
133     if (!IsHex(strHex)) // Note: IsHex("") is false
134         throw JSONRPCError(RPC_INVALID_PARAMETER, strName+" must be hexadecimal string (not '"+strHex+"')");
135     uint256 result;
136     result.SetHex(strHex);
137     return result;
138 }
139
140 uint256 ParseHashO(const Object& o, string strKey)
141 {
142     return ParseHashV(find_value(o, strKey), strKey);
143 }
144
145 vector<unsigned char> ParseHexV(const Value& v, string strName)
146 {
147     string strHex;
148     if (v.type() == str_type)
149         strHex = v.get_str();
150     if (!IsHex(strHex))
151         throw JSONRPCError(RPC_INVALID_PARAMETER, strName+" must be hexadecimal string (not '"+strHex+"')");
152     return ParseHex(strHex);
153 }
154
155 vector<unsigned char> ParseHexO(const Object& o, string strKey)
156 {
157     return ParseHexV(find_value(o, strKey), strKey);
158 }
159
160
161 ///
162 /// Note: This interface may still be subject to change.
163 ///
164
165 string CRPCTable::help(string strCommand) const
166 {
167     string strRet;
168     set<rpcfn_type> setDone;
169     for (map<string, const CRPCCommand*>::const_iterator mi = mapCommands.begin(); mi != mapCommands.end(); ++mi)
170     {
171         const CRPCCommand *pcmd = mi->second;
172         string strMethod = mi->first;
173         // We already filter duplicates, but these deprecated screw up the sort order
174         if (strMethod.find("label") != string::npos)
175             continue;
176         if (strCommand != "" && strMethod != strCommand)
177             continue;
178         try
179         {
180             Array params;
181             rpcfn_type pfn = pcmd->actor;
182             if (setDone.insert(pfn).second)
183                 (*pfn)(params, true);
184         }
185         catch (std::exception& e)
186         {
187             // Help text is returned in an exception
188             string strHelp = string(e.what());
189             if (strCommand == "")
190                 if (strHelp.find('\n') != string::npos)
191                     strHelp = strHelp.substr(0, strHelp.find('\n'));
192             strRet += strHelp + "\n";
193         }
194     }
195     if (strRet == "")
196         strRet = strprintf("help: unknown command: %s\n", strCommand.c_str());
197     strRet = strRet.substr(0,strRet.size()-1);
198     return strRet;
199 }
200
201 Value help(const Array& params, bool fHelp)
202 {
203     if (fHelp || params.size() > 1)
204         throw runtime_error(
205             "help [command]\n"
206             "List commands, or get help for a command.");
207
208     string strCommand;
209     if (params.size() > 0)
210         strCommand = params[0].get_str();
211
212     return tableRPC.help(strCommand);
213 }
214
215
216 Value stop(const Array& params, bool fHelp)
217 {
218     if (fHelp || params.size() > 1)
219         throw runtime_error(
220             "stop <detach>\n"
221             "<detach> is true or false to detach the database or not for this stop only\n"
222             "Stop NovaCoin server (and possibly override the detachdb config value).");
223     // Shutdown will take long enough that the response should get back
224     if (params.size() > 0)
225         bitdb.SetDetach(params[0].get_bool());
226     StartShutdown();
227     return "NovaCoin server stopping";
228 }
229
230
231
232 //
233 // Call Table
234 //
235
236
237 static const CRPCCommand vRPCCommands[] =
238 { //  name                      function                 safemd  unlocked
239   //  ------------------------  -----------------------  ------  --------
240     { "help",                   &help,                   true,   true },
241     { "stop",                   &stop,                   true,   true },
242     { "getbestblockhash",       &getbestblockhash,       true,   false },
243     { "getblockcount",          &getblockcount,          true,   false },
244     { "getconnectioncount",     &getconnectioncount,     true,   false },
245     { "getaddrmaninfo",         &getaddrmaninfo,         true,   false },
246     { "getpeerinfo",            &getpeerinfo,            true,   false },
247     { "addnode",                &addnode,                true,   true  },
248     { "getaddednodeinfo",       &getaddednodeinfo,       true,   true  },
249     { "getdifficulty",          &getdifficulty,          true,   false },
250     { "getinfo",                &getinfo,                true,   false },
251     { "getsubsidy",             &getsubsidy,             true,   false },
252     { "getmininginfo",          &getmininginfo,          true,   false },
253     { "scaninput",              &scaninput,              true,   true },
254     { "getnewaddress",          &getnewaddress,          true,   false },
255     { "getnettotals",           &getnettotals,           true,   true  },
256     { "ntptime",                &ntptime,                true,   true  },
257     { "getaccountaddress",      &getaccountaddress,      true,   false },
258     { "setaccount",             &setaccount,             true,   false },
259     { "getaccount",             &getaccount,             false,  false },
260     { "getaddressesbyaccount",  &getaddressesbyaccount,  true,   false },
261     { "sendtoaddress",          &sendtoaddress,          false,  false },
262     { "mergecoins",             &mergecoins,             false,  false },
263     { "getreceivedbyaddress",   &getreceivedbyaddress,   false,  false },
264     { "getreceivedbyaccount",   &getreceivedbyaccount,   false,  false },
265     { "listreceivedbyaddress",  &listreceivedbyaddress,  false,  false },
266     { "listreceivedbyaccount",  &listreceivedbyaccount,  false,  false },
267     { "backupwallet",           &backupwallet,           true,   false },
268     { "keypoolrefill",          &keypoolrefill,          true,   false },
269     { "keypoolreset",           &keypoolreset,           true,   false },
270     { "walletpassphrase",       &walletpassphrase,       true,   false },
271     { "walletpassphrasechange", &walletpassphrasechange, false,  false },
272     { "walletlock",             &walletlock,             true,   false },
273     { "encryptwallet",          &encryptwallet,          false,  false },
274     { "validateaddress",        &validateaddress,        true,   false },
275     { "getbalance",             &getbalance,             false,  false },
276     { "move",                   &movecmd,                false,  false },
277     { "sendfrom",               &sendfrom,               false,  false },
278     { "sendmany",               &sendmany,               false,  false },
279     { "addmultisigaddress",     &addmultisigaddress,     false,  false },
280     { "addredeemscript",        &addredeemscript,        false,  false },
281     { "getrawmempool",          &getrawmempool,          true,   false },
282     { "getblock",               &getblock,               false,  false },
283     { "getblockbynumber",       &getblockbynumber,       false,  false },
284     { "dumpblock",              &dumpblock,              false,  false },
285     { "dumpblockbynumber",      &dumpblockbynumber,      false,  false },
286     { "getblockhash",           &getblockhash,           false,  false },
287     { "gettransaction",         &gettransaction,         false,  false },
288     { "listtransactions",       &listtransactions,       false,  false },
289     { "listaddressgroupings",   &listaddressgroupings,   false,  false },
290     { "signmessage",            &signmessage,            false,  false },
291     { "verifymessage",          &verifymessage,          false,  false },
292     { "getwork",                &getwork,                true,   false },
293     { "getworkex",              &getworkex,              true,   false },
294     { "listaccounts",           &listaccounts,           false,  false },
295     { "settxfee",               &settxfee,               false,  false },
296     { "getblocktemplate",       &getblocktemplate,       true,   false },
297     { "submitblock",            &submitblock,            false,  false },
298     { "listsinceblock",         &listsinceblock,         false,  false },
299     { "dumpprivkey",            &dumpprivkey,            false,  false },
300     { "dumpwallet",             &dumpwallet,             true,   false },
301     { "importwallet",           &importwallet,           false,  false },
302     { "importprivkey",          &importprivkey,          false,  false },
303     { "importaddress",          &importaddress,          false,  true  },
304     { "removeaddress",          &removeaddress,          false,  true  },
305     { "listunspent",            &listunspent,            false,  false },
306     { "getrawtransaction",      &getrawtransaction,      false,  false },
307     { "createrawtransaction",   &createrawtransaction,   false,  false },
308     { "decoderawtransaction",   &decoderawtransaction,   false,  false },
309     { "createmultisig",         &createmultisig,         false,  false },
310     { "decodescript",           &decodescript,           false,  false },
311     { "signrawtransaction",     &signrawtransaction,     false,  false },
312     { "sendrawtransaction",     &sendrawtransaction,     false,  false },
313     { "getcheckpoint",          &getcheckpoint,          true,   false },
314     { "reservebalance",         &reservebalance,         false,  true},
315     { "checkwallet",            &checkwallet,            false,  true},
316     { "repairwallet",           &repairwallet,           false,  true},
317     { "resendtx",               &resendtx,               false,  true},
318     { "makekeypair",            &makekeypair,            false,  true},
319     { "newmalleablekey",        &newmalleablekey,        false,  false},
320     { "adjustmalleablekey",     &adjustmalleablekey,     false,  false},
321     { "adjustmalleablepubkey",  &adjustmalleablepubkey,  false,  false},
322     { "sendalert",              &sendalert,              false,  false},
323 };
324
325 CRPCTable::CRPCTable()
326 {
327     unsigned int vcidx;
328     for (vcidx = 0; vcidx < (sizeof(vRPCCommands) / sizeof(vRPCCommands[0])); vcidx++)
329     {
330         const CRPCCommand *pcmd;
331
332         pcmd = &vRPCCommands[vcidx];
333         mapCommands[pcmd->name] = pcmd;
334     }
335 }
336
337 const CRPCCommand *CRPCTable::operator[](string name) const
338 {
339     map<string, const CRPCCommand*>::const_iterator it = mapCommands.find(name);
340     if (it == mapCommands.end())
341         return NULL;
342     return (*it).second;
343 }
344
345 //
346 // HTTP protocol
347 //
348 // This ain't Apache.  We're just using HTTP header for the length field
349 // and to be compatible with other JSON-RPC implementations.
350 //
351
352 string HTTPPost(const string& strMsg, const map<string,string>& mapRequestHeaders)
353 {
354     ostringstream s;
355     s << "POST / HTTP/1.1\r\n"
356       << "User-Agent: novacoin-json-rpc/" << FormatFullVersion() << "\r\n"
357       << "Host: 127.0.0.1\r\n"
358       << "Content-Type: application/json\r\n"
359       << "Content-Length: " << strMsg.size() << "\r\n"
360       << "Connection: close\r\n"
361       << "Accept: application/json\r\n";
362     BOOST_FOREACH(const PAIRTYPE(string, string)& item, mapRequestHeaders)
363         s << item.first << ": " << item.second << "\r\n";
364     s << "\r\n" << strMsg;
365
366     return s.str();
367 }
368
369 string rfc1123Time()
370 {
371     return DateTimeStrFormat("%a, %d %b %Y %H:%M:%S +0000", GetTime());
372 }
373
374 static string HTTPReply(int nStatus, const string& strMsg, bool keepalive)
375 {
376     if (nStatus == HTTP_UNAUTHORIZED)
377         return strprintf("HTTP/1.0 401 Authorization Required\r\n"
378             "Date: %s\r\n"
379             "Server: novacoin-json-rpc/%s\r\n"
380             "WWW-Authenticate: Basic realm=\"jsonrpc\"\r\n"
381             "Content-Type: text/html\r\n"
382             "Content-Length: 296\r\n"
383             "\r\n"
384             "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\r\n"
385             "\"http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd\">\r\n"
386             "<HTML>\r\n"
387             "<HEAD>\r\n"
388             "<TITLE>Error</TITLE>\r\n"
389             "<META HTTP-EQUIV='Content-Type' CONTENT='text/html; charset=ISO-8859-1'>\r\n"
390             "</HEAD>\r\n"
391             "<BODY><H1>401 Unauthorized.</H1></BODY>\r\n"
392             "</HTML>\r\n", rfc1123Time().c_str(), FormatFullVersion().c_str());
393     const char *cStatus;
394          if (nStatus == HTTP_OK) cStatus = "OK";
395     else if (nStatus == HTTP_BAD_REQUEST) cStatus = "Bad Request";
396     else if (nStatus == HTTP_FORBIDDEN) cStatus = "Forbidden";
397     else if (nStatus == HTTP_NOT_FOUND) cStatus = "Not Found";
398     else if (nStatus == HTTP_INTERNAL_SERVER_ERROR) cStatus = "Internal Server Error";
399     else cStatus = "";
400     return strprintf(
401             "HTTP/1.1 %d %s\r\n"
402             "Date: %s\r\n"
403             "Connection: %s\r\n"
404             "Content-Length: %" PRIszu "\r\n"
405             "Content-Type: application/json\r\n"
406             "Server: novacoin-json-rpc/%s\r\n"
407             "\r\n"
408             "%s",
409         nStatus,
410         cStatus,
411         rfc1123Time().c_str(),
412         keepalive ? "keep-alive" : "close",
413         strMsg.size(),
414         FormatFullVersion().c_str(),
415         strMsg.c_str());
416 }
417
418 int ReadHTTPStatus(std::basic_istream<char>& stream, int &proto)
419 {
420     string str;
421     getline(stream, str);
422     vector<string> vWords;
423     boost::split(vWords, str, boost::is_any_of(" "));
424     if (vWords.size() < 2)
425         return HTTP_INTERNAL_SERVER_ERROR;
426     proto = 0;
427     const char *ver = strstr(str.c_str(), "HTTP/1.");
428     if (ver != NULL)
429         proto = atoi(ver+7);
430     return atoi(vWords[1].c_str());
431 }
432
433 int ReadHTTPHeader(std::basic_istream<char>& stream, map<string, string>& mapHeadersRet)
434 {
435     int nLen = 0;
436     while (true)
437     {
438         string str;
439         std::getline(stream, str);
440         if (str.empty() || str == "\r")
441             break;
442         string::size_type nColon = str.find(":");
443         if (nColon != string::npos)
444         {
445             string strHeader = str.substr(0, nColon);
446             boost::trim(strHeader);
447             boost::to_lower(strHeader);
448             string strValue = str.substr(nColon+1);
449             boost::trim(strValue);
450             mapHeadersRet[strHeader] = strValue;
451             if (strHeader == "content-length")
452                 nLen = atoi(strValue.c_str());
453         }
454     }
455     return nLen;
456 }
457
458 int ReadHTTP(std::basic_istream<char>& stream, map<string, string>& mapHeadersRet, string& strMessageRet)
459 {
460     mapHeadersRet.clear();
461     strMessageRet = "";
462
463     // Read status
464     int nProto = 0;
465     int nStatus = ReadHTTPStatus(stream, nProto);
466
467     // Read header
468     int nLen = ReadHTTPHeader(stream, mapHeadersRet);
469     if (nLen < 0 || nLen > (int)MAX_SIZE)
470         return HTTP_INTERNAL_SERVER_ERROR;
471
472     // Read message
473     if (nLen > 0)
474     {
475         vector<char> vch(nLen);
476         stream.read(&vch[0], nLen);
477         strMessageRet = string(vch.begin(), vch.end());
478     }
479
480     string sConHdr = mapHeadersRet["connection"];
481
482     if ((sConHdr != "close") && (sConHdr != "keep-alive"))
483     {
484         if (nProto >= 1)
485             mapHeadersRet["connection"] = "keep-alive";
486         else
487             mapHeadersRet["connection"] = "close";
488     }
489
490     return nStatus;
491 }
492
493 bool HTTPAuthorized(map<string, string>& mapHeaders)
494 {
495     string strAuth = mapHeaders["authorization"];
496     if (strAuth.substr(0,6) != "Basic ")
497         return false;
498     string strUserPass64 = strAuth.substr(6); boost::trim(strUserPass64);
499     string strUserPass = DecodeBase64(strUserPass64);
500     return TimingResistantEqual(strUserPass, strRPCUserColonPass);
501 }
502
503 //
504 // JSON-RPC protocol.  Bitcoin speaks version 1.0 for maximum compatibility,
505 // but uses JSON-RPC 1.1/2.0 standards for parts of the 1.0 standard that were
506 // unspecified (HTTP errors and contents of 'error').
507 //
508 // 1.0 spec: http://json-rpc.org/wiki/specification
509 // 1.2 spec: http://groups.google.com/group/json-rpc/web/json-rpc-over-http
510 // http://www.codeproject.com/KB/recipes/JSON_Spirit.aspx
511 //
512
513 string JSONRPCRequest(const string& strMethod, const Array& params, const Value& id)
514 {
515     Object request;
516     request.push_back(Pair("method", strMethod));
517     request.push_back(Pair("params", params));
518     request.push_back(Pair("id", id));
519     return write_string(Value(request), false) + "\n";
520 }
521
522 Object JSONRPCReplyObj(const Value& result, const Value& error, const Value& id)
523 {
524     Object reply;
525     if (error.type() != null_type)
526         reply.push_back(Pair("result", Value::null));
527     else
528         reply.push_back(Pair("result", result));
529     reply.push_back(Pair("error", error));
530     reply.push_back(Pair("id", id));
531     return reply;
532 }
533
534 string JSONRPCReply(const Value& result, const Value& error, const Value& id)
535 {
536     Object reply = JSONRPCReplyObj(result, error, id);
537     return write_string(Value(reply), false) + "\n";
538 }
539
540 void ErrorReply(std::ostream& stream, const Object& objError, const Value& id)
541 {
542     // Send error reply from json-rpc error object
543     int nStatus = HTTP_INTERNAL_SERVER_ERROR;
544     int code = find_value(objError, "code").get_int();
545     if (code == RPC_INVALID_REQUEST) nStatus = HTTP_BAD_REQUEST;
546     else if (code == RPC_METHOD_NOT_FOUND) nStatus = HTTP_NOT_FOUND;
547     string strReply = JSONRPCReply(Value::null, objError, id);
548     stream << HTTPReply(nStatus, strReply, false) << std::flush;
549 }
550
551 bool ClientAllowed(const boost::asio::ip::address& address)
552 {
553     // Make sure that IPv4-compatible and IPv4-mapped IPv6 addresses are treated as IPv4 addresses
554     if (address.is_v6()
555      && (address.to_v6().is_v4_compatible()
556       || address.to_v6().is_v4_mapped()))
557         return ClientAllowed(address.to_v6().to_v4());
558
559     if (address == asio::ip::address_v4::loopback()
560      || address == asio::ip::address_v6::loopback()
561      || (address.is_v4()
562          // Check whether IPv4 addresses match 127.0.0.0/8 (loopback subnet)
563       && (address.to_v4().to_ulong() & 0xff000000) == 0x7f000000))
564         return true;
565
566     const string strAddress = address.to_string();
567     const vector<string>& vAllow = mapMultiArgs["-rpcallowip"];
568     BOOST_FOREACH(string strAllow, vAllow)
569         if (WildcardMatch(strAddress, strAllow))
570             return true;
571     return false;
572 }
573
574 //
575 // IOStream device that speaks SSL but can also speak non-SSL
576 //
577 template <typename Protocol>
578 class SSLIOStreamDevice : public iostreams::device<iostreams::bidirectional> {
579 public:
580     SSLIOStreamDevice(asio::ssl::stream<typename Protocol::socket> &streamIn, bool fUseSSLIn) : stream(streamIn)
581     {
582         fUseSSL = fUseSSLIn;
583         fNeedHandshake = fUseSSLIn;
584     }
585
586     void handshake(ssl::stream_base::handshake_type role)
587     {
588         if (!fNeedHandshake) return;
589         fNeedHandshake = false;
590         stream.handshake(role);
591     }
592     std::streamsize read(char* s, std::streamsize n)
593     {
594         handshake(ssl::stream_base::server); // HTTPS servers read first
595         if (fUseSSL) return stream.read_some(asio::buffer(s, n));
596         return stream.next_layer().read_some(asio::buffer(s, n));
597     }
598     std::streamsize write(const char* s, std::streamsize n)
599     {
600         handshake(ssl::stream_base::client); // HTTPS clients write first
601         if (fUseSSL) return asio::write(stream, asio::buffer(s, n));
602         return asio::write(stream.next_layer(), asio::buffer(s, n));
603     }
604     bool connect(const std::string& server, const std::string& port)
605     {
606         ip::tcp::resolver resolver(stream.get_io_service());
607         ip::tcp::resolver::query query(server.c_str(), port.c_str());
608         ip::tcp::resolver::iterator endpoint_iterator = resolver.resolve(query);
609         ip::tcp::resolver::iterator end;
610         boost::system::error_code error = asio::error::host_not_found;
611         while (error && endpoint_iterator != end)
612         {
613             stream.lowest_layer().close();
614             stream.lowest_layer().connect(*endpoint_iterator++, error);
615         }
616         if (error)
617             return false;
618         return true;
619     }
620
621 private:
622     bool fNeedHandshake;
623     bool fUseSSL;
624     SSLIOStreamDevice& operator=(SSLIOStreamDevice const&);
625     asio::ssl::stream<typename Protocol::socket>& stream;
626 };
627
628 class AcceptedConnection
629 {
630 public:
631     virtual ~AcceptedConnection() {}
632
633     virtual std::iostream& stream() = 0;
634     virtual std::string peer_address_to_string() const = 0;
635     virtual void close() = 0;
636 };
637
638 template <typename Protocol>
639 class AcceptedConnectionImpl : public AcceptedConnection
640 {
641 public:
642     AcceptedConnectionImpl(
643             asio::io_service& io_service,
644             ssl::context &context,
645             bool fUseSSL) :
646         sslStream(io_service, context),
647         _d(sslStream, fUseSSL),
648         _stream(_d)
649     {
650     }
651
652     virtual std::iostream& stream()
653     {
654         return _stream;
655     }
656
657     virtual std::string peer_address_to_string() const
658     {
659         return peer.address().to_string();
660     }
661
662     virtual void close()
663     {
664         _stream.close();
665     }
666
667     typename Protocol::endpoint peer;
668     asio::ssl::stream<typename Protocol::socket> sslStream;
669
670 private:
671     SSLIOStreamDevice<Protocol> _d;
672     iostreams::stream< SSLIOStreamDevice<Protocol> > _stream;
673 };
674
675 void ThreadRPCServer(void* parg)
676 {
677     // Make this thread recognisable as the RPC listener
678     RenameThread("novacoin-rpclist");
679
680     try
681     {
682         vnThreadsRunning[THREAD_RPCLISTENER]++;
683         ThreadRPCServer2(parg);
684         vnThreadsRunning[THREAD_RPCLISTENER]--;
685     }
686     catch (std::exception& e) {
687         vnThreadsRunning[THREAD_RPCLISTENER]--;
688         PrintException(&e, "ThreadRPCServer()");
689     } catch (...) {
690         vnThreadsRunning[THREAD_RPCLISTENER]--;
691         PrintException(NULL, "ThreadRPCServer()");
692     }
693     printf("ThreadRPCServer exited\n");
694 }
695
696 // Forward declaration required for RPCListen
697 template <typename Protocol, typename SocketAcceptorService>
698 static void RPCAcceptHandler(boost::shared_ptr< basic_socket_acceptor<Protocol, SocketAcceptorService> > acceptor,
699                              ssl::context& context,
700                              bool fUseSSL,
701                              AcceptedConnection* conn,
702                              const boost::system::error_code& error);
703
704 /**
705  * Sets up I/O resources to accept and handle a new connection.
706  */
707 template <typename Protocol, typename SocketAcceptorService>
708 static void RPCListen(boost::shared_ptr< basic_socket_acceptor<Protocol, SocketAcceptorService> > acceptor,
709                    ssl::context& context,
710                    const bool fUseSSL)
711 {
712     // Accept connection
713     AcceptedConnectionImpl<Protocol>* conn = new AcceptedConnectionImpl<Protocol>(acceptor->get_io_service(), context, fUseSSL);
714
715     acceptor->async_accept(
716             conn->sslStream.lowest_layer(),
717             conn->peer,
718             boost::bind(&RPCAcceptHandler<Protocol, SocketAcceptorService>,
719                 acceptor,
720                 boost::ref(context),
721                 fUseSSL,
722                 conn,
723                 boost::asio::placeholders::error));
724 }
725
726 /**
727  * Accept and handle incoming connection.
728  */
729 template <typename Protocol, typename SocketAcceptorService>
730 static void RPCAcceptHandler(boost::shared_ptr< basic_socket_acceptor<Protocol, SocketAcceptorService> > acceptor,
731                              ssl::context& context,
732                              const bool fUseSSL,
733                              AcceptedConnection* conn,
734                              const boost::system::error_code& error)
735 {
736     vnThreadsRunning[THREAD_RPCLISTENER]++;
737
738     // Immediately start accepting new connections, except when we're cancelled or our socket is closed.
739     if (error != asio::error::operation_aborted
740      && acceptor->is_open())
741         RPCListen(acceptor, context, fUseSSL);
742
743     AcceptedConnectionImpl<ip::tcp>* tcp_conn = dynamic_cast< AcceptedConnectionImpl<ip::tcp>* >(conn);
744
745     // TODO: Actually handle errors
746     if (error)
747     {
748         delete conn;
749     }
750
751     // Restrict callers by IP.  It is important to
752     // do this before starting client thread, to filter out
753     // certain DoS and misbehaving clients.
754     else if (tcp_conn
755           && !ClientAllowed(tcp_conn->peer.address()))
756     {
757         // Only send a 403 if we're not using SSL to prevent a DoS during the SSL handshake.
758         if (!fUseSSL)
759             conn->stream() << HTTPReply(HTTP_FORBIDDEN, "", false) << std::flush;
760         delete conn;
761     }
762
763     // start HTTP client thread
764     else if (!NewThread(ThreadRPCServer3, conn)) {
765         printf("Failed to create RPC server client thread\n");
766         delete conn;
767     }
768
769     vnThreadsRunning[THREAD_RPCLISTENER]--;
770 }
771
772 void ThreadRPCServer2(void* parg)
773 {
774     printf("ThreadRPCServer started\n");
775
776     strRPCUserColonPass = mapArgs["-rpcuser"] + ":" + mapArgs["-rpcpassword"];
777     if (mapArgs["-rpcpassword"] == "")
778     {
779         unsigned char rand_pwd[32];
780         RAND_bytes(rand_pwd, 32);
781         string strWhatAmI = "To use novacoind";
782         if (mapArgs.count("-server"))
783             strWhatAmI = strprintf(_("To use the %s option"), "\"-server\"");
784         else if (mapArgs.count("-daemon"))
785             strWhatAmI = strprintf(_("To use the %s option"), "\"-daemon\"");
786         uiInterface.ThreadSafeMessageBox(strprintf(
787             _("%s, you must set a rpcpassword in the configuration file:\n %s\n"
788               "It is recommended you use the following random password:\n"
789               "rpcuser=novacoinrpc\n"
790               "rpcpassword=%s\n"
791               "(you do not need to remember this password)\n"
792               "If the file does not exist, create it with owner-readable-only file permissions.\n"),
793                 strWhatAmI.c_str(),
794                 GetConfigFile().string().c_str(),
795                 EncodeBase58(&rand_pwd[0],&rand_pwd[0]+32).c_str()),
796             _("Error"), CClientUIInterface::OK | CClientUIInterface::MODAL);
797         StartShutdown();
798         return;
799     }
800
801     const bool fUseSSL = GetBoolArg("-rpcssl");
802
803     asio::io_service io_service;
804
805     ssl::context context(io_service, ssl::context::sslv23);
806     if (fUseSSL)
807     {
808         context.set_options(ssl::context::no_sslv2);
809
810         filesystem::path pathCertFile(GetArg("-rpcsslcertificatechainfile", "server.cert"));
811         if (!pathCertFile.is_complete()) pathCertFile = filesystem::path(GetDataDir()) / pathCertFile;
812         if (filesystem::exists(pathCertFile)) context.use_certificate_chain_file(pathCertFile.string());
813         else printf("ThreadRPCServer ERROR: missing server certificate file %s\n", pathCertFile.string().c_str());
814
815         filesystem::path pathPKFile(GetArg("-rpcsslprivatekeyfile", "server.pem"));
816         if (!pathPKFile.is_complete()) pathPKFile = filesystem::path(GetDataDir()) / pathPKFile;
817         if (filesystem::exists(pathPKFile)) context.use_private_key_file(pathPKFile.string(), ssl::context::pem);
818         else printf("ThreadRPCServer ERROR: missing server private key file %s\n", pathPKFile.string().c_str());
819
820         string strCiphers = GetArg("-rpcsslciphers", "TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH");
821         SSL_CTX_set_cipher_list(context.impl(), strCiphers.c_str());
822     }
823
824     // Try a dual IPv6/IPv4 socket, falling back to separate IPv4 and IPv6 sockets
825     const bool loopback = !mapArgs.count("-rpcallowip");
826     asio::ip::address bindAddress = loopback ? asio::ip::address_v6::loopback() : asio::ip::address_v6::any();
827     ip::tcp::endpoint endpoint(bindAddress, GetArg("-rpcport", GetDefaultRPCPort()));
828     boost::system::error_code v6_only_error;
829     boost::shared_ptr<ip::tcp::acceptor> acceptor(new ip::tcp::acceptor(io_service));
830
831     boost::signals2::signal<void ()> StopRequests;
832
833     bool fListening = false;
834     std::string strerr;
835     try
836     {
837         acceptor->open(endpoint.protocol());
838         acceptor->set_option(boost::asio::ip::tcp::acceptor::reuse_address(true));
839
840         // Try making the socket dual IPv6/IPv4 (if listening on the "any" address)
841         acceptor->set_option(boost::asio::ip::v6_only(loopback), v6_only_error);
842
843         acceptor->bind(endpoint);
844         acceptor->listen(socket_base::max_connections);
845
846         RPCListen(acceptor, context, fUseSSL);
847         // Cancel outstanding listen-requests for this acceptor when shutting down
848         StopRequests.connect(signals2::slot<void ()>(
849                     static_cast<void (ip::tcp::acceptor::*)()>(&ip::tcp::acceptor::close), acceptor.get())
850                 .track(acceptor));
851
852         fListening = true;
853     }
854     catch(boost::system::system_error &e)
855     {
856         strerr = strprintf(_("An error occurred while setting up the RPC port %u for listening on IPv6, falling back to IPv4: %s"), endpoint.port(), e.what());
857     }
858
859     try {
860         // If dual IPv6/IPv4 failed (or we're opening loopback interfaces only), open IPv4 separately
861         if (!fListening || loopback || v6_only_error)
862         {
863             bindAddress = loopback ? asio::ip::address_v4::loopback() : asio::ip::address_v4::any();
864             endpoint.address(bindAddress);
865
866             acceptor.reset(new ip::tcp::acceptor(io_service));
867             acceptor->open(endpoint.protocol());
868             acceptor->set_option(boost::asio::ip::tcp::acceptor::reuse_address(true));
869             acceptor->bind(endpoint);
870             acceptor->listen(socket_base::max_connections);
871
872             RPCListen(acceptor, context, fUseSSL);
873             // Cancel outstanding listen-requests for this acceptor when shutting down
874             StopRequests.connect(signals2::slot<void ()>(
875                         static_cast<void (ip::tcp::acceptor::*)()>(&ip::tcp::acceptor::close), acceptor.get())
876                     .track(acceptor));
877
878             fListening = true;
879         }
880     }
881     catch(boost::system::system_error &e)
882     {
883         strerr = strprintf(_("An error occurred while setting up the RPC port %u for listening on IPv4: %s"), endpoint.port(), e.what());
884     }
885
886     if (!fListening) {
887         uiInterface.ThreadSafeMessageBox(strerr, _("Error"), CClientUIInterface::OK | CClientUIInterface::MODAL);
888         StartShutdown();
889         return;
890     }
891
892     vnThreadsRunning[THREAD_RPCLISTENER]--;
893     while (!fShutdown)
894         io_service.run_one();
895     vnThreadsRunning[THREAD_RPCLISTENER]++;
896     StopRequests();
897 }
898
899 class JSONRequest
900 {
901 public:
902     Value id;
903     string strMethod;
904     Array params;
905
906     JSONRequest() { id = Value::null; }
907     void parse(const Value& valRequest);
908 };
909
910 void JSONRequest::parse(const Value& valRequest)
911 {
912     // Parse request
913     if (valRequest.type() != obj_type)
914         throw JSONRPCError(RPC_INVALID_REQUEST, "Invalid Request object");
915     const Object& request = valRequest.get_obj();
916
917     // Parse id now so errors from here on will have the id
918     id = find_value(request, "id");
919
920     // Parse method
921     Value valMethod = find_value(request, "method");
922     if (valMethod.type() == null_type)
923         throw JSONRPCError(RPC_INVALID_REQUEST, "Missing method");
924     if (valMethod.type() != str_type)
925         throw JSONRPCError(RPC_INVALID_REQUEST, "Method must be a string");
926     strMethod = valMethod.get_str();
927     if (strMethod != "getwork" && strMethod != "getblocktemplate")
928         printf("ThreadRPCServer method=%s\n", strMethod.c_str());
929
930     // Parse params
931     Value valParams = find_value(request, "params");
932     if (valParams.type() == array_type)
933         params = valParams.get_array();
934     else if (valParams.type() == null_type)
935         params = Array();
936     else
937         throw JSONRPCError(RPC_INVALID_REQUEST, "Params must be an array");
938 }
939
940 static Object JSONRPCExecOne(const Value& req)
941 {
942     Object rpc_result;
943
944     JSONRequest jreq;
945     try {
946         jreq.parse(req);
947
948         Value result = tableRPC.execute(jreq.strMethod, jreq.params);
949         rpc_result = JSONRPCReplyObj(result, Value::null, jreq.id);
950     }
951     catch (Object& objError)
952     {
953         rpc_result = JSONRPCReplyObj(Value::null, objError, jreq.id);
954     }
955     catch (std::exception& e)
956     {
957         rpc_result = JSONRPCReplyObj(Value::null,
958                                      JSONRPCError(RPC_PARSE_ERROR, e.what()), jreq.id);
959     }
960
961     return rpc_result;
962 }
963
964 static string JSONRPCExecBatch(const Array& vReq)
965 {
966     Array ret;
967     for (unsigned int reqIdx = 0; reqIdx < vReq.size(); reqIdx++)
968         ret.push_back(JSONRPCExecOne(vReq[reqIdx]));
969
970     return write_string(Value(ret), false) + "\n";
971 }
972
973 static CCriticalSection cs_THREAD_RPCHANDLER;
974
975 void ThreadRPCServer3(void* parg)
976 {
977     // Make this thread recognisable as the RPC handler
978     RenameThread("novacoin-rpchand");
979
980     {
981         LOCK(cs_THREAD_RPCHANDLER);
982         vnThreadsRunning[THREAD_RPCHANDLER]++;
983     }
984     AcceptedConnection *conn = (AcceptedConnection *) parg;
985
986     bool fRun = true;
987     while (true)
988     {
989         if (fShutdown || !fRun)
990         {
991             conn->close();
992             delete conn;
993             {
994                 LOCK(cs_THREAD_RPCHANDLER);
995                 --vnThreadsRunning[THREAD_RPCHANDLER];
996             }
997             return;
998         }
999         map<string, string> mapHeaders;
1000         string strRequest;
1001
1002         ReadHTTP(conn->stream(), mapHeaders, strRequest);
1003
1004         // Check authorization
1005         if (mapHeaders.count("authorization") == 0)
1006         {
1007             conn->stream() << HTTPReply(HTTP_UNAUTHORIZED, "", false) << std::flush;
1008             break;
1009         }
1010         if (!HTTPAuthorized(mapHeaders))
1011         {
1012             printf("ThreadRPCServer incorrect password attempt from %s\n", conn->peer_address_to_string().c_str());
1013             /* Deter brute-forcing short passwords.
1014                If this results in a DOS the user really
1015                shouldn't have their RPC port exposed.*/
1016             if (mapArgs["-rpcpassword"].size() < 20)
1017                 Sleep(250);
1018
1019             conn->stream() << HTTPReply(HTTP_UNAUTHORIZED, "", false) << std::flush;
1020             break;
1021         }
1022         if (mapHeaders["connection"] == "close")
1023             fRun = false;
1024
1025         JSONRequest jreq;
1026         try
1027         {
1028             // Parse request
1029             Value valRequest;
1030             if (!read_string(strRequest, valRequest))
1031                 throw JSONRPCError(RPC_PARSE_ERROR, "Parse error");
1032
1033             string strReply;
1034
1035             // singleton request
1036             if (valRequest.type() == obj_type) {
1037                 jreq.parse(valRequest);
1038
1039                 Value result = tableRPC.execute(jreq.strMethod, jreq.params);
1040
1041                 // Send reply
1042                 strReply = JSONRPCReply(result, Value::null, jreq.id);
1043
1044             // array of requests
1045             } else if (valRequest.type() == array_type)
1046                 strReply = JSONRPCExecBatch(valRequest.get_array());
1047             else
1048                 throw JSONRPCError(RPC_PARSE_ERROR, "Top-level object parse error");
1049
1050             conn->stream() << HTTPReply(HTTP_OK, strReply, fRun) << std::flush;
1051         }
1052         catch (Object& objError)
1053         {
1054             ErrorReply(conn->stream(), objError, jreq.id);
1055             break;
1056         }
1057         catch (std::exception& e)
1058         {
1059             ErrorReply(conn->stream(), JSONRPCError(RPC_PARSE_ERROR, e.what()), jreq.id);
1060             break;
1061         }
1062     }
1063
1064     delete conn;
1065     {
1066         LOCK(cs_THREAD_RPCHANDLER);
1067         vnThreadsRunning[THREAD_RPCHANDLER]--;
1068     }
1069 }
1070
1071 json_spirit::Value CRPCTable::execute(const std::string &strMethod, const json_spirit::Array &params) const
1072 {
1073     // Find method
1074     const CRPCCommand *pcmd = tableRPC[strMethod];
1075     if (!pcmd)
1076         throw JSONRPCError(RPC_METHOD_NOT_FOUND, "Method not found");
1077
1078     // Observe safe mode
1079     string strWarning = GetWarnings("rpc");
1080     if (strWarning != "" && !GetBoolArg("-disablesafemode") &&
1081         !pcmd->okSafeMode)
1082         throw JSONRPCError(RPC_FORBIDDEN_BY_SAFE_MODE, string("Safe mode: ") + strWarning);
1083
1084     try
1085     {
1086         // Execute
1087         Value result;
1088         {
1089             if (pcmd->unlocked)
1090                 result = pcmd->actor(params, false);
1091             else {
1092                 LOCK2(cs_main, pwalletMain->cs_wallet);
1093                 result = pcmd->actor(params, false);
1094             }
1095         }
1096         return result;
1097     }
1098     catch (std::exception& e)
1099     {
1100         throw JSONRPCError(RPC_MISC_ERROR, e.what());
1101     }
1102 }
1103
1104
1105 Object CallRPC(const string& strMethod, const Array& params)
1106 {
1107     if (mapArgs["-rpcuser"] == "" && mapArgs["-rpcpassword"] == "")
1108         throw runtime_error(strprintf(
1109             _("You must set rpcpassword=<password> in the configuration file:\n%s\n"
1110               "If the file does not exist, create it with owner-readable-only file permissions."),
1111                 GetConfigFile().string().c_str()));
1112
1113     // Connect to localhost
1114     bool fUseSSL = GetBoolArg("-rpcssl");
1115     asio::io_service io_service;
1116     ssl::context context(io_service, ssl::context::sslv23);
1117     context.set_options(ssl::context::no_sslv2);
1118     asio::ssl::stream<asio::ip::tcp::socket> sslStream(io_service, context);
1119     SSLIOStreamDevice<asio::ip::tcp> d(sslStream, fUseSSL);
1120     iostreams::stream< SSLIOStreamDevice<asio::ip::tcp> > stream(d);
1121     if (!d.connect(GetArg("-rpcconnect", "127.0.0.1"), GetArg("-rpcport", itostr(GetDefaultRPCPort()))))
1122         throw runtime_error("couldn't connect to server");
1123
1124     // HTTP basic authentication
1125     string strUserPass64 = EncodeBase64(mapArgs["-rpcuser"] + ":" + mapArgs["-rpcpassword"]);
1126     map<string, string> mapRequestHeaders;
1127     mapRequestHeaders["Authorization"] = string("Basic ") + strUserPass64;
1128
1129     // Send request
1130     string strRequest = JSONRPCRequest(strMethod, params, 1);
1131     string strPost = HTTPPost(strRequest, mapRequestHeaders);
1132     stream << strPost << std::flush;
1133
1134     // Receive reply
1135     map<string, string> mapHeaders;
1136     string strReply;
1137     int nStatus = ReadHTTP(stream, mapHeaders, strReply);
1138     if (nStatus == HTTP_UNAUTHORIZED)
1139         throw runtime_error("incorrect rpcuser or rpcpassword (authorization failed)");
1140     else if (nStatus >= 400 && nStatus != HTTP_BAD_REQUEST && nStatus != HTTP_NOT_FOUND && nStatus != HTTP_INTERNAL_SERVER_ERROR)
1141         throw runtime_error(strprintf("server returned HTTP error %d", nStatus));
1142     else if (strReply.empty())
1143         throw runtime_error("no response from server");
1144
1145     // Parse reply
1146     Value valReply;
1147     if (!read_string(strReply, valReply))
1148         throw runtime_error("couldn't parse reply from server");
1149     const Object& reply = valReply.get_obj();
1150     if (reply.empty())
1151         throw runtime_error("expected reply to have result, error and id properties");
1152
1153     return reply;
1154 }
1155
1156
1157
1158
1159 template<typename T>
1160 void ConvertTo(Value& value, bool fAllowNull=false)
1161 {
1162     if (fAllowNull && value.type() == null_type)
1163         return;
1164     if (value.type() == str_type)
1165     {
1166         // reinterpret string as unquoted json value
1167         Value value2;
1168         string strJSON = value.get_str();
1169         if (!read_string(strJSON, value2))
1170             throw runtime_error(string("Error parsing JSON:")+strJSON);
1171         ConvertTo<T>(value2, fAllowNull);
1172         value = value2;
1173     }
1174     else
1175     {
1176         value = value.get_value<T>();
1177     }
1178 }
1179
1180 // Convert strings to command-specific RPC representation
1181 Array RPCConvertValues(const std::string &strMethod, const std::vector<std::string> &strParams)
1182 {
1183     Array params;
1184     BOOST_FOREACH(const std::string &param, strParams)
1185         params.push_back(param);
1186
1187     size_t n = params.size();
1188
1189     //
1190     // Special case non-string parameter types
1191     //
1192     if (strMethod == "stop"                   && n > 0) ConvertTo<bool>(params[0]);
1193     if (strMethod == "getaddednodeinfo"       && n > 0) ConvertTo<bool>(params[0]);
1194     if (strMethod == "sendtoaddress"          && n > 1) ConvertTo<double>(params[1]);
1195     if (strMethod == "mergecoins"            && n > 0) ConvertTo<double>(params[0]);
1196     if (strMethod == "mergecoins"            && n > 1) ConvertTo<double>(params[1]);
1197     if (strMethod == "mergecoins"            && n > 2) ConvertTo<double>(params[2]);
1198     if (strMethod == "settxfee"               && n > 0) ConvertTo<double>(params[0]);
1199     if (strMethod == "getreceivedbyaddress"   && n > 1) ConvertTo<int64_t>(params[1]);
1200     if (strMethod == "getreceivedbyaccount"   && n > 1) ConvertTo<int64_t>(params[1]);
1201     if (strMethod == "listreceivedbyaddress"  && n > 0) ConvertTo<int64_t>(params[0]);
1202     if (strMethod == "listreceivedbyaddress"  && n > 1) ConvertTo<bool>(params[1]);
1203     if (strMethod == "listreceivedbyaccount"  && n > 0) ConvertTo<int64_t>(params[0]);
1204     if (strMethod == "listreceivedbyaccount"  && n > 1) ConvertTo<bool>(params[1]);
1205     if (strMethod == "getbalance"             && n > 1) ConvertTo<int64_t>(params[1]);
1206     if (strMethod == "getblock"               && n > 1) ConvertTo<bool>(params[1]);
1207     if (strMethod == "getblockbynumber"       && n > 0) ConvertTo<int64_t>(params[0]);
1208     if (strMethod == "dumpblockbynumber"      && n > 0) ConvertTo<int64_t>(params[0]);
1209     if (strMethod == "getblockbynumber"       && n > 1) ConvertTo<bool>(params[1]);
1210     if (strMethod == "getblockhash"           && n > 0) ConvertTo<int64_t>(params[0]);
1211     if (strMethod == "move"                   && n > 2) ConvertTo<double>(params[2]);
1212     if (strMethod == "move"                   && n > 3) ConvertTo<int64_t>(params[3]);
1213     if (strMethod == "sendfrom"               && n > 2) ConvertTo<double>(params[2]);
1214     if (strMethod == "sendfrom"               && n > 3) ConvertTo<int64_t>(params[3]);
1215     if (strMethod == "listtransactions"       && n > 1) ConvertTo<int64_t>(params[1]);
1216     if (strMethod == "listtransactions"       && n > 2) ConvertTo<int64_t>(params[2]);
1217     if (strMethod == "listaccounts"           && n > 0) ConvertTo<int64_t>(params[0]);
1218     if (strMethod == "walletpassphrase"       && n > 1) ConvertTo<int64_t>(params[1]);
1219     if (strMethod == "walletpassphrase"       && n > 2) ConvertTo<bool>(params[2]);
1220     if (strMethod == "getblocktemplate"       && n > 0) ConvertTo<Object>(params[0]);
1221     if (strMethod == "listsinceblock"         && n > 1) ConvertTo<int64_t>(params[1]);
1222
1223     if (strMethod == "scaninput"              && n > 0) ConvertTo<Object>(params[0]);
1224
1225     if (strMethod == "sendalert"              && n > 2) ConvertTo<int64_t>(params[2]);
1226     if (strMethod == "sendalert"              && n > 3) ConvertTo<int64_t>(params[3]);
1227     if (strMethod == "sendalert"              && n > 4) ConvertTo<int64_t>(params[4]);
1228     if (strMethod == "sendalert"              && n > 5) ConvertTo<int64_t>(params[5]);
1229     if (strMethod == "sendalert"              && n > 6) ConvertTo<int64_t>(params[6]);
1230
1231     if (strMethod == "sendmany"               && n > 1) ConvertTo<Object>(params[1]);
1232     if (strMethod == "sendmany"               && n > 2) ConvertTo<int64_t>(params[2]);
1233     if (strMethod == "reservebalance"         && n > 0) ConvertTo<bool>(params[0]);
1234     if (strMethod == "reservebalance"         && n > 1) ConvertTo<double>(params[1]);
1235     if (strMethod == "addmultisigaddress"     && n > 0) ConvertTo<int64_t>(params[0]);
1236     if (strMethod == "addmultisigaddress"     && n > 1) ConvertTo<Array>(params[1]);
1237     if (strMethod == "listunspent"            && n > 0) ConvertTo<int64_t>(params[0]);
1238     if (strMethod == "listunspent"            && n > 1) ConvertTo<int64_t>(params[1]);
1239     if (strMethod == "listunspent"            && n > 2) ConvertTo<Array>(params[2]);
1240     if (strMethod == "getrawtransaction"      && n > 1) ConvertTo<int64_t>(params[1]);
1241     if (strMethod == "createrawtransaction"   && n > 0) ConvertTo<Array>(params[0]);
1242     if (strMethod == "createrawtransaction"   && n > 1) ConvertTo<Object>(params[1]);
1243     if (strMethod == "createmultisig"         && n > 0) ConvertTo<int64_t>(params[0]);
1244     if (strMethod == "createmultisig"         && n > 1) ConvertTo<Array>(params[1]);
1245     if (strMethod == "signrawtransaction"     && n > 1) ConvertTo<Array>(params[1], true);
1246     if (strMethod == "signrawtransaction"     && n > 2) ConvertTo<Array>(params[2], true);
1247     if (strMethod == "keypoolrefill"          && n > 0) ConvertTo<int64_t>(params[0]);
1248     if (strMethod == "keypoolreset"           && n > 0) ConvertTo<int64_t>(params[0]);
1249     if (strMethod == "importaddress"          && n > 2) ConvertTo<bool>(params[2]);
1250
1251     return params;
1252 }
1253
1254 int CommandLineRPC(int argc, char *argv[])
1255 {
1256     string strPrint;
1257     int nRet = 0;
1258     try
1259     {
1260         // Skip switches
1261         while (argc > 1 && IsSwitchChar(argv[1][0]))
1262         {
1263             argc--;
1264             argv++;
1265         }
1266
1267         // Method
1268         if (argc < 2)
1269             throw runtime_error("too few parameters");
1270         string strMethod = argv[1];
1271
1272         // Parameters default to strings
1273         std::vector<std::string> strParams(&argv[2], &argv[argc]);
1274         Array params = RPCConvertValues(strMethod, strParams);
1275
1276         // Execute
1277         Object reply = CallRPC(strMethod, params);
1278
1279         // Parse reply
1280         const Value& result = find_value(reply, "result");
1281         const Value& error  = find_value(reply, "error");
1282
1283         if (error.type() != null_type)
1284         {
1285             // Error
1286             strPrint = "error: " + write_string(error, false);
1287             int code = find_value(error.get_obj(), "code").get_int();
1288             nRet = abs(code);
1289         }
1290         else
1291         {
1292             // Result
1293             if (result.type() == null_type)
1294                 strPrint = "";
1295             else if (result.type() == str_type)
1296                 strPrint = result.get_str();
1297             else
1298                 strPrint = write_string(result, true);
1299         }
1300     }
1301     catch (std::exception& e)
1302     {
1303         strPrint = string("error: ") + e.what();
1304         nRet = 87;
1305     }
1306     catch (...)
1307     {
1308         PrintException(NULL, "CommandLineRPC()");
1309     }
1310
1311     if (strPrint != "")
1312     {
1313         fprintf((nRet == 0 ? stdout : stderr), "%s\n", strPrint.c_str());
1314     }
1315     return nRet;
1316 }
1317
1318
1319
1320
1321 #ifdef TEST
1322 int main(int argc, char *argv[])
1323 {
1324 #ifdef _MSC_VER
1325     // Turn off Microsoft heap dump noise
1326     _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
1327     _CrtSetReportFile(_CRT_WARN, CreateFile("NUL", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0));
1328 #endif
1329     setbuf(stdin, NULL);
1330     setbuf(stdout, NULL);
1331     setbuf(stderr, NULL);
1332
1333     try
1334     {
1335         if (argc >= 2 && string(argv[1]) == "-server")
1336         {
1337             printf("server ready\n");
1338             ThreadRPCServer(NULL);
1339         }
1340         else
1341         {
1342             return CommandLineRPC(argc, argv);
1343         }
1344     }
1345     catch (std::exception& e) {
1346         PrintException(&e, "main()");
1347     } catch (...) {
1348         PrintException(NULL, "main()");
1349     }
1350     return 0;
1351 }
1352 #endif
1353
1354 const CRPCTable tableRPC;