Do some cleanup, add importmalleablekey RPC call
[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     { "listmalleableviews",     &listmalleableviews,     false,  false},
323     { "dumpmalleablekey",       &dumpmalleablekey,       false,  false},
324     { "validatemalleablepubkey",&validatemalleablepubkey,true,   false },
325     { "importmalleablekey",     &importmalleablekey,     true,   false },
326     { "encryptdata",            &encryptdata,            false,  false },
327     { "decryptdata",            &decryptdata,            false,  false },
328     { "encryptmessage",         &encryptmessage,         false,  false },
329     { "decryptmessage",         &decryptmessage,         false,  false },
330     { "sendalert",              &sendalert,              false,  false},
331 };
332
333 CRPCTable::CRPCTable()
334 {
335     unsigned int vcidx;
336     for (vcidx = 0; vcidx < (sizeof(vRPCCommands) / sizeof(vRPCCommands[0])); vcidx++)
337     {
338         const CRPCCommand *pcmd;
339
340         pcmd = &vRPCCommands[vcidx];
341         mapCommands[pcmd->name] = pcmd;
342     }
343 }
344
345 const CRPCCommand *CRPCTable::operator[](string name) const
346 {
347     map<string, const CRPCCommand*>::const_iterator it = mapCommands.find(name);
348     if (it == mapCommands.end())
349         return NULL;
350     return (*it).second;
351 }
352
353 //
354 // HTTP protocol
355 //
356 // This ain't Apache.  We're just using HTTP header for the length field
357 // and to be compatible with other JSON-RPC implementations.
358 //
359
360 string HTTPPost(const string& strMsg, const map<string,string>& mapRequestHeaders)
361 {
362     ostringstream s;
363     s << "POST / HTTP/1.1\r\n"
364       << "User-Agent: novacoin-json-rpc/" << FormatFullVersion() << "\r\n"
365       << "Host: 127.0.0.1\r\n"
366       << "Content-Type: application/json\r\n"
367       << "Content-Length: " << strMsg.size() << "\r\n"
368       << "Connection: close\r\n"
369       << "Accept: application/json\r\n";
370     BOOST_FOREACH(const PAIRTYPE(string, string)& item, mapRequestHeaders)
371         s << item.first << ": " << item.second << "\r\n";
372     s << "\r\n" << strMsg;
373
374     return s.str();
375 }
376
377 string rfc1123Time()
378 {
379     return DateTimeStrFormat("%a, %d %b %Y %H:%M:%S +0000", GetTime());
380 }
381
382 static string HTTPReply(int nStatus, const string& strMsg, bool keepalive)
383 {
384     if (nStatus == HTTP_UNAUTHORIZED)
385         return strprintf("HTTP/1.0 401 Authorization Required\r\n"
386             "Date: %s\r\n"
387             "Server: novacoin-json-rpc/%s\r\n"
388             "WWW-Authenticate: Basic realm=\"jsonrpc\"\r\n"
389             "Content-Type: text/html\r\n"
390             "Content-Length: 296\r\n"
391             "\r\n"
392             "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"\r\n"
393             "\"http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd\">\r\n"
394             "<HTML>\r\n"
395             "<HEAD>\r\n"
396             "<TITLE>Error</TITLE>\r\n"
397             "<META HTTP-EQUIV='Content-Type' CONTENT='text/html; charset=ISO-8859-1'>\r\n"
398             "</HEAD>\r\n"
399             "<BODY><H1>401 Unauthorized.</H1></BODY>\r\n"
400             "</HTML>\r\n", rfc1123Time().c_str(), FormatFullVersion().c_str());
401     const char *cStatus;
402          if (nStatus == HTTP_OK) cStatus = "OK";
403     else if (nStatus == HTTP_BAD_REQUEST) cStatus = "Bad Request";
404     else if (nStatus == HTTP_FORBIDDEN) cStatus = "Forbidden";
405     else if (nStatus == HTTP_NOT_FOUND) cStatus = "Not Found";
406     else if (nStatus == HTTP_INTERNAL_SERVER_ERROR) cStatus = "Internal Server Error";
407     else cStatus = "";
408     return strprintf(
409             "HTTP/1.1 %d %s\r\n"
410             "Date: %s\r\n"
411             "Connection: %s\r\n"
412             "Content-Length: %" PRIszu "\r\n"
413             "Content-Type: application/json\r\n"
414             "Server: novacoin-json-rpc/%s\r\n"
415             "\r\n"
416             "%s",
417         nStatus,
418         cStatus,
419         rfc1123Time().c_str(),
420         keepalive ? "keep-alive" : "close",
421         strMsg.size(),
422         FormatFullVersion().c_str(),
423         strMsg.c_str());
424 }
425
426 int ReadHTTPStatus(std::basic_istream<char>& stream, int &proto)
427 {
428     string str;
429     getline(stream, str);
430     vector<string> vWords;
431     boost::split(vWords, str, boost::is_any_of(" "));
432     if (vWords.size() < 2)
433         return HTTP_INTERNAL_SERVER_ERROR;
434     proto = 0;
435     const char *ver = strstr(str.c_str(), "HTTP/1.");
436     if (ver != NULL)
437         proto = atoi(ver+7);
438     return atoi(vWords[1].c_str());
439 }
440
441 int ReadHTTPHeader(std::basic_istream<char>& stream, map<string, string>& mapHeadersRet)
442 {
443     int nLen = 0;
444     while (true)
445     {
446         string str;
447         std::getline(stream, str);
448         if (str.empty() || str == "\r")
449             break;
450         string::size_type nColon = str.find(":");
451         if (nColon != string::npos)
452         {
453             string strHeader = str.substr(0, nColon);
454             boost::trim(strHeader);
455             boost::to_lower(strHeader);
456             string strValue = str.substr(nColon+1);
457             boost::trim(strValue);
458             mapHeadersRet[strHeader] = strValue;
459             if (strHeader == "content-length")
460                 nLen = atoi(strValue.c_str());
461         }
462     }
463     return nLen;
464 }
465
466 int ReadHTTP(std::basic_istream<char>& stream, map<string, string>& mapHeadersRet, string& strMessageRet)
467 {
468     mapHeadersRet.clear();
469     strMessageRet = "";
470
471     // Read status
472     int nProto = 0;
473     int nStatus = ReadHTTPStatus(stream, nProto);
474
475     // Read header
476     int nLen = ReadHTTPHeader(stream, mapHeadersRet);
477     if (nLen < 0 || nLen > (int)MAX_SIZE)
478         return HTTP_INTERNAL_SERVER_ERROR;
479
480     // Read message
481     if (nLen > 0)
482     {
483         vector<char> vch(nLen);
484         stream.read(&vch[0], nLen);
485         strMessageRet = string(vch.begin(), vch.end());
486     }
487
488     string sConHdr = mapHeadersRet["connection"];
489
490     if ((sConHdr != "close") && (sConHdr != "keep-alive"))
491     {
492         if (nProto >= 1)
493             mapHeadersRet["connection"] = "keep-alive";
494         else
495             mapHeadersRet["connection"] = "close";
496     }
497
498     return nStatus;
499 }
500
501 bool HTTPAuthorized(map<string, string>& mapHeaders)
502 {
503     string strAuth = mapHeaders["authorization"];
504     if (strAuth.substr(0,6) != "Basic ")
505         return false;
506     string strUserPass64 = strAuth.substr(6); boost::trim(strUserPass64);
507     string strUserPass = DecodeBase64(strUserPass64);
508     return TimingResistantEqual(strUserPass, strRPCUserColonPass);
509 }
510
511 //
512 // JSON-RPC protocol.  Bitcoin speaks version 1.0 for maximum compatibility,
513 // but uses JSON-RPC 1.1/2.0 standards for parts of the 1.0 standard that were
514 // unspecified (HTTP errors and contents of 'error').
515 //
516 // 1.0 spec: http://json-rpc.org/wiki/specification
517 // 1.2 spec: http://groups.google.com/group/json-rpc/web/json-rpc-over-http
518 // http://www.codeproject.com/KB/recipes/JSON_Spirit.aspx
519 //
520
521 string JSONRPCRequest(const string& strMethod, const Array& params, const Value& id)
522 {
523     Object request;
524     request.push_back(Pair("method", strMethod));
525     request.push_back(Pair("params", params));
526     request.push_back(Pair("id", id));
527     return write_string(Value(request), false) + "\n";
528 }
529
530 Object JSONRPCReplyObj(const Value& result, const Value& error, const Value& id)
531 {
532     Object reply;
533     if (error.type() != null_type)
534         reply.push_back(Pair("result", Value::null));
535     else
536         reply.push_back(Pair("result", result));
537     reply.push_back(Pair("error", error));
538     reply.push_back(Pair("id", id));
539     return reply;
540 }
541
542 string JSONRPCReply(const Value& result, const Value& error, const Value& id)
543 {
544     Object reply = JSONRPCReplyObj(result, error, id);
545     return write_string(Value(reply), false) + "\n";
546 }
547
548 void ErrorReply(std::ostream& stream, const Object& objError, const Value& id)
549 {
550     // Send error reply from json-rpc error object
551     int nStatus = HTTP_INTERNAL_SERVER_ERROR;
552     int code = find_value(objError, "code").get_int();
553     if (code == RPC_INVALID_REQUEST) nStatus = HTTP_BAD_REQUEST;
554     else if (code == RPC_METHOD_NOT_FOUND) nStatus = HTTP_NOT_FOUND;
555     string strReply = JSONRPCReply(Value::null, objError, id);
556     stream << HTTPReply(nStatus, strReply, false) << std::flush;
557 }
558
559 bool ClientAllowed(const boost::asio::ip::address& address)
560 {
561     // Make sure that IPv4-compatible and IPv4-mapped IPv6 addresses are treated as IPv4 addresses
562     if (address.is_v6()
563      && (address.to_v6().is_v4_compatible()
564       || address.to_v6().is_v4_mapped()))
565         return ClientAllowed(address.to_v6().to_v4());
566
567     if (address == asio::ip::address_v4::loopback()
568      || address == asio::ip::address_v6::loopback()
569      || (address.is_v4()
570          // Check whether IPv4 addresses match 127.0.0.0/8 (loopback subnet)
571       && (address.to_v4().to_ulong() & 0xff000000) == 0x7f000000))
572         return true;
573
574     const string strAddress = address.to_string();
575     const vector<string>& vAllow = mapMultiArgs["-rpcallowip"];
576     BOOST_FOREACH(string strAllow, vAllow)
577         if (WildcardMatch(strAddress, strAllow))
578             return true;
579     return false;
580 }
581
582 //
583 // IOStream device that speaks SSL but can also speak non-SSL
584 //
585 template <typename Protocol>
586 class SSLIOStreamDevice : public iostreams::device<iostreams::bidirectional> {
587 public:
588     SSLIOStreamDevice(asio::ssl::stream<typename Protocol::socket> &streamIn, bool fUseSSLIn) : stream(streamIn)
589     {
590         fUseSSL = fUseSSLIn;
591         fNeedHandshake = fUseSSLIn;
592     }
593
594     void handshake(ssl::stream_base::handshake_type role)
595     {
596         if (!fNeedHandshake) return;
597         fNeedHandshake = false;
598         stream.handshake(role);
599     }
600     std::streamsize read(char* s, std::streamsize n)
601     {
602         handshake(ssl::stream_base::server); // HTTPS servers read first
603         if (fUseSSL) return stream.read_some(asio::buffer(s, n));
604         return stream.next_layer().read_some(asio::buffer(s, n));
605     }
606     std::streamsize write(const char* s, std::streamsize n)
607     {
608         handshake(ssl::stream_base::client); // HTTPS clients write first
609         if (fUseSSL) return asio::write(stream, asio::buffer(s, n));
610         return asio::write(stream.next_layer(), asio::buffer(s, n));
611     }
612     bool connect(const std::string& server, const std::string& port)
613     {
614         ip::tcp::resolver resolver(stream.get_io_service());
615         ip::tcp::resolver::query query(server.c_str(), port.c_str());
616         ip::tcp::resolver::iterator endpoint_iterator = resolver.resolve(query);
617         ip::tcp::resolver::iterator end;
618         boost::system::error_code error = asio::error::host_not_found;
619         while (error && endpoint_iterator != end)
620         {
621             stream.lowest_layer().close();
622             stream.lowest_layer().connect(*endpoint_iterator++, error);
623         }
624         if (error)
625             return false;
626         return true;
627     }
628
629 private:
630     bool fNeedHandshake;
631     bool fUseSSL;
632     SSLIOStreamDevice& operator=(SSLIOStreamDevice const&);
633     asio::ssl::stream<typename Protocol::socket>& stream;
634 };
635
636 class AcceptedConnection
637 {
638 public:
639     virtual ~AcceptedConnection() {}
640
641     virtual std::iostream& stream() = 0;
642     virtual std::string peer_address_to_string() const = 0;
643     virtual void close() = 0;
644 };
645
646 template <typename Protocol>
647 class AcceptedConnectionImpl : public AcceptedConnection
648 {
649 public:
650     AcceptedConnectionImpl(
651             asio::io_service& io_service,
652             ssl::context &context,
653             bool fUseSSL) :
654         sslStream(io_service, context),
655         _d(sslStream, fUseSSL),
656         _stream(_d)
657     {
658     }
659
660     virtual std::iostream& stream()
661     {
662         return _stream;
663     }
664
665     virtual std::string peer_address_to_string() const
666     {
667         return peer.address().to_string();
668     }
669
670     virtual void close()
671     {
672         _stream.close();
673     }
674
675     typename Protocol::endpoint peer;
676     asio::ssl::stream<typename Protocol::socket> sslStream;
677
678 private:
679     SSLIOStreamDevice<Protocol> _d;
680     iostreams::stream< SSLIOStreamDevice<Protocol> > _stream;
681 };
682
683 void ThreadRPCServer(void* parg)
684 {
685     // Make this thread recognisable as the RPC listener
686     RenameThread("novacoin-rpclist");
687
688     try
689     {
690         vnThreadsRunning[THREAD_RPCLISTENER]++;
691         ThreadRPCServer2(parg);
692         vnThreadsRunning[THREAD_RPCLISTENER]--;
693     }
694     catch (std::exception& e) {
695         vnThreadsRunning[THREAD_RPCLISTENER]--;
696         PrintException(&e, "ThreadRPCServer()");
697     } catch (...) {
698         vnThreadsRunning[THREAD_RPCLISTENER]--;
699         PrintException(NULL, "ThreadRPCServer()");
700     }
701     printf("ThreadRPCServer exited\n");
702 }
703
704 // Forward declaration required for RPCListen
705 template <typename Protocol, typename SocketAcceptorService>
706 static void RPCAcceptHandler(boost::shared_ptr< basic_socket_acceptor<Protocol, SocketAcceptorService> > acceptor,
707                              ssl::context& context,
708                              bool fUseSSL,
709                              AcceptedConnection* conn,
710                              const boost::system::error_code& error);
711
712 /**
713  * Sets up I/O resources to accept and handle a new connection.
714  */
715 template <typename Protocol, typename SocketAcceptorService>
716 static void RPCListen(boost::shared_ptr< basic_socket_acceptor<Protocol, SocketAcceptorService> > acceptor,
717                    ssl::context& context,
718                    const bool fUseSSL)
719 {
720     // Accept connection
721     AcceptedConnectionImpl<Protocol>* conn = new AcceptedConnectionImpl<Protocol>(acceptor->get_io_service(), context, fUseSSL);
722
723     acceptor->async_accept(
724             conn->sslStream.lowest_layer(),
725             conn->peer,
726             boost::bind(&RPCAcceptHandler<Protocol, SocketAcceptorService>,
727                 acceptor,
728                 boost::ref(context),
729                 fUseSSL,
730                 conn,
731                 boost::asio::placeholders::error));
732 }
733
734 /**
735  * Accept and handle incoming connection.
736  */
737 template <typename Protocol, typename SocketAcceptorService>
738 static void RPCAcceptHandler(boost::shared_ptr< basic_socket_acceptor<Protocol, SocketAcceptorService> > acceptor,
739                              ssl::context& context,
740                              const bool fUseSSL,
741                              AcceptedConnection* conn,
742                              const boost::system::error_code& error)
743 {
744     vnThreadsRunning[THREAD_RPCLISTENER]++;
745
746     // Immediately start accepting new connections, except when we're cancelled or our socket is closed.
747     if (error != asio::error::operation_aborted
748      && acceptor->is_open())
749         RPCListen(acceptor, context, fUseSSL);
750
751     AcceptedConnectionImpl<ip::tcp>* tcp_conn = dynamic_cast< AcceptedConnectionImpl<ip::tcp>* >(conn);
752
753     // TODO: Actually handle errors
754     if (error)
755     {
756         delete conn;
757     }
758
759     // Restrict callers by IP.  It is important to
760     // do this before starting client thread, to filter out
761     // certain DoS and misbehaving clients.
762     else if (tcp_conn
763           && !ClientAllowed(tcp_conn->peer.address()))
764     {
765         // Only send a 403 if we're not using SSL to prevent a DoS during the SSL handshake.
766         if (!fUseSSL)
767             conn->stream() << HTTPReply(HTTP_FORBIDDEN, "", false) << std::flush;
768         delete conn;
769     }
770
771     // start HTTP client thread
772     else if (!NewThread(ThreadRPCServer3, conn)) {
773         printf("Failed to create RPC server client thread\n");
774         delete conn;
775     }
776
777     vnThreadsRunning[THREAD_RPCLISTENER]--;
778 }
779
780 void ThreadRPCServer2(void* parg)
781 {
782     printf("ThreadRPCServer started\n");
783
784     strRPCUserColonPass = mapArgs["-rpcuser"] + ":" + mapArgs["-rpcpassword"];
785     if (mapArgs["-rpcpassword"] == "")
786     {
787         unsigned char rand_pwd[32];
788         RAND_bytes(rand_pwd, 32);
789         string strWhatAmI = "To use novacoind";
790         if (mapArgs.count("-server"))
791             strWhatAmI = strprintf(_("To use the %s option"), "\"-server\"");
792         else if (mapArgs.count("-daemon"))
793             strWhatAmI = strprintf(_("To use the %s option"), "\"-daemon\"");
794         uiInterface.ThreadSafeMessageBox(strprintf(
795             _("%s, you must set a rpcpassword in the configuration file:\n %s\n"
796               "It is recommended you use the following random password:\n"
797               "rpcuser=novacoinrpc\n"
798               "rpcpassword=%s\n"
799               "(you do not need to remember this password)\n"
800               "If the file does not exist, create it with owner-readable-only file permissions.\n"),
801                 strWhatAmI.c_str(),
802                 GetConfigFile().string().c_str(),
803                 EncodeBase58(&rand_pwd[0],&rand_pwd[0]+32).c_str()),
804             _("Error"), CClientUIInterface::OK | CClientUIInterface::MODAL);
805         StartShutdown();
806         return;
807     }
808
809     const bool fUseSSL = GetBoolArg("-rpcssl");
810
811     asio::io_service io_service;
812
813     ssl::context context(io_service, ssl::context::sslv23);
814     if (fUseSSL)
815     {
816         context.set_options(ssl::context::no_sslv2);
817
818         filesystem::path pathCertFile(GetArg("-rpcsslcertificatechainfile", "server.cert"));
819         if (!pathCertFile.is_complete()) pathCertFile = filesystem::path(GetDataDir()) / pathCertFile;
820         if (filesystem::exists(pathCertFile)) context.use_certificate_chain_file(pathCertFile.string());
821         else printf("ThreadRPCServer ERROR: missing server certificate file %s\n", pathCertFile.string().c_str());
822
823         filesystem::path pathPKFile(GetArg("-rpcsslprivatekeyfile", "server.pem"));
824         if (!pathPKFile.is_complete()) pathPKFile = filesystem::path(GetDataDir()) / pathPKFile;
825         if (filesystem::exists(pathPKFile)) context.use_private_key_file(pathPKFile.string(), ssl::context::pem);
826         else printf("ThreadRPCServer ERROR: missing server private key file %s\n", pathPKFile.string().c_str());
827
828         string strCiphers = GetArg("-rpcsslciphers", "TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH");
829         SSL_CTX_set_cipher_list(context.impl(), strCiphers.c_str());
830     }
831
832     // Try a dual IPv6/IPv4 socket, falling back to separate IPv4 and IPv6 sockets
833     const bool loopback = !mapArgs.count("-rpcallowip");
834     asio::ip::address bindAddress = loopback ? asio::ip::address_v6::loopback() : asio::ip::address_v6::any();
835     ip::tcp::endpoint endpoint(bindAddress, GetArg("-rpcport", GetDefaultRPCPort()));
836     boost::system::error_code v6_only_error;
837     boost::shared_ptr<ip::tcp::acceptor> acceptor(new ip::tcp::acceptor(io_service));
838
839     boost::signals2::signal<void ()> StopRequests;
840
841     bool fListening = false;
842     std::string strerr;
843     try
844     {
845         acceptor->open(endpoint.protocol());
846         acceptor->set_option(boost::asio::ip::tcp::acceptor::reuse_address(true));
847
848         // Try making the socket dual IPv6/IPv4 (if listening on the "any" address)
849         acceptor->set_option(boost::asio::ip::v6_only(loopback), v6_only_error);
850
851         acceptor->bind(endpoint);
852         acceptor->listen(socket_base::max_connections);
853
854         RPCListen(acceptor, context, fUseSSL);
855         // Cancel outstanding listen-requests for this acceptor when shutting down
856         StopRequests.connect(signals2::slot<void ()>(
857                     static_cast<void (ip::tcp::acceptor::*)()>(&ip::tcp::acceptor::close), acceptor.get())
858                 .track(acceptor));
859
860         fListening = true;
861     }
862     catch(boost::system::system_error &e)
863     {
864         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());
865     }
866
867     try {
868         // If dual IPv6/IPv4 failed (or we're opening loopback interfaces only), open IPv4 separately
869         if (!fListening || loopback || v6_only_error)
870         {
871             bindAddress = loopback ? asio::ip::address_v4::loopback() : asio::ip::address_v4::any();
872             endpoint.address(bindAddress);
873
874             acceptor.reset(new ip::tcp::acceptor(io_service));
875             acceptor->open(endpoint.protocol());
876             acceptor->set_option(boost::asio::ip::tcp::acceptor::reuse_address(true));
877             acceptor->bind(endpoint);
878             acceptor->listen(socket_base::max_connections);
879
880             RPCListen(acceptor, context, fUseSSL);
881             // Cancel outstanding listen-requests for this acceptor when shutting down
882             StopRequests.connect(signals2::slot<void ()>(
883                         static_cast<void (ip::tcp::acceptor::*)()>(&ip::tcp::acceptor::close), acceptor.get())
884                     .track(acceptor));
885
886             fListening = true;
887         }
888     }
889     catch(boost::system::system_error &e)
890     {
891         strerr = strprintf(_("An error occurred while setting up the RPC port %u for listening on IPv4: %s"), endpoint.port(), e.what());
892     }
893
894     if (!fListening) {
895         uiInterface.ThreadSafeMessageBox(strerr, _("Error"), CClientUIInterface::OK | CClientUIInterface::MODAL);
896         StartShutdown();
897         return;
898     }
899
900     vnThreadsRunning[THREAD_RPCLISTENER]--;
901     while (!fShutdown)
902         io_service.run_one();
903     vnThreadsRunning[THREAD_RPCLISTENER]++;
904     StopRequests();
905 }
906
907 class JSONRequest
908 {
909 public:
910     Value id;
911     string strMethod;
912     Array params;
913
914     JSONRequest() { id = Value::null; }
915     void parse(const Value& valRequest);
916 };
917
918 void JSONRequest::parse(const Value& valRequest)
919 {
920     // Parse request
921     if (valRequest.type() != obj_type)
922         throw JSONRPCError(RPC_INVALID_REQUEST, "Invalid Request object");
923     const Object& request = valRequest.get_obj();
924
925     // Parse id now so errors from here on will have the id
926     id = find_value(request, "id");
927
928     // Parse method
929     Value valMethod = find_value(request, "method");
930     if (valMethod.type() == null_type)
931         throw JSONRPCError(RPC_INVALID_REQUEST, "Missing method");
932     if (valMethod.type() != str_type)
933         throw JSONRPCError(RPC_INVALID_REQUEST, "Method must be a string");
934     strMethod = valMethod.get_str();
935     if (strMethod != "getwork" && strMethod != "getblocktemplate")
936         printf("ThreadRPCServer method=%s\n", strMethod.c_str());
937
938     // Parse params
939     Value valParams = find_value(request, "params");
940     if (valParams.type() == array_type)
941         params = valParams.get_array();
942     else if (valParams.type() == null_type)
943         params = Array();
944     else
945         throw JSONRPCError(RPC_INVALID_REQUEST, "Params must be an array");
946 }
947
948 static Object JSONRPCExecOne(const Value& req)
949 {
950     Object rpc_result;
951
952     JSONRequest jreq;
953     try {
954         jreq.parse(req);
955
956         Value result = tableRPC.execute(jreq.strMethod, jreq.params);
957         rpc_result = JSONRPCReplyObj(result, Value::null, jreq.id);
958     }
959     catch (Object& objError)
960     {
961         rpc_result = JSONRPCReplyObj(Value::null, objError, jreq.id);
962     }
963     catch (std::exception& e)
964     {
965         rpc_result = JSONRPCReplyObj(Value::null,
966                                      JSONRPCError(RPC_PARSE_ERROR, e.what()), jreq.id);
967     }
968
969     return rpc_result;
970 }
971
972 static string JSONRPCExecBatch(const Array& vReq)
973 {
974     Array ret;
975     for (unsigned int reqIdx = 0; reqIdx < vReq.size(); reqIdx++)
976         ret.push_back(JSONRPCExecOne(vReq[reqIdx]));
977
978     return write_string(Value(ret), false) + "\n";
979 }
980
981 static CCriticalSection cs_THREAD_RPCHANDLER;
982
983 void ThreadRPCServer3(void* parg)
984 {
985     // Make this thread recognisable as the RPC handler
986     RenameThread("novacoin-rpchand");
987
988     {
989         LOCK(cs_THREAD_RPCHANDLER);
990         vnThreadsRunning[THREAD_RPCHANDLER]++;
991     }
992     AcceptedConnection *conn = (AcceptedConnection *) parg;
993
994     bool fRun = true;
995     while (true)
996     {
997         if (fShutdown || !fRun)
998         {
999             conn->close();
1000             delete conn;
1001             {
1002                 LOCK(cs_THREAD_RPCHANDLER);
1003                 --vnThreadsRunning[THREAD_RPCHANDLER];
1004             }
1005             return;
1006         }
1007         map<string, string> mapHeaders;
1008         string strRequest;
1009
1010         ReadHTTP(conn->stream(), mapHeaders, strRequest);
1011
1012         // Check authorization
1013         if (mapHeaders.count("authorization") == 0)
1014         {
1015             conn->stream() << HTTPReply(HTTP_UNAUTHORIZED, "", false) << std::flush;
1016             break;
1017         }
1018         if (!HTTPAuthorized(mapHeaders))
1019         {
1020             printf("ThreadRPCServer incorrect password attempt from %s\n", conn->peer_address_to_string().c_str());
1021             /* Deter brute-forcing short passwords.
1022                If this results in a DOS the user really
1023                shouldn't have their RPC port exposed.*/
1024             if (mapArgs["-rpcpassword"].size() < 20)
1025                 Sleep(250);
1026
1027             conn->stream() << HTTPReply(HTTP_UNAUTHORIZED, "", false) << std::flush;
1028             break;
1029         }
1030         if (mapHeaders["connection"] == "close")
1031             fRun = false;
1032
1033         JSONRequest jreq;
1034         try
1035         {
1036             // Parse request
1037             Value valRequest;
1038             if (!read_string(strRequest, valRequest))
1039                 throw JSONRPCError(RPC_PARSE_ERROR, "Parse error");
1040
1041             string strReply;
1042
1043             // singleton request
1044             if (valRequest.type() == obj_type) {
1045                 jreq.parse(valRequest);
1046
1047                 Value result = tableRPC.execute(jreq.strMethod, jreq.params);
1048
1049                 // Send reply
1050                 strReply = JSONRPCReply(result, Value::null, jreq.id);
1051
1052             // array of requests
1053             } else if (valRequest.type() == array_type)
1054                 strReply = JSONRPCExecBatch(valRequest.get_array());
1055             else
1056                 throw JSONRPCError(RPC_PARSE_ERROR, "Top-level object parse error");
1057
1058             conn->stream() << HTTPReply(HTTP_OK, strReply, fRun) << std::flush;
1059         }
1060         catch (Object& objError)
1061         {
1062             ErrorReply(conn->stream(), objError, jreq.id);
1063             break;
1064         }
1065         catch (std::exception& e)
1066         {
1067             ErrorReply(conn->stream(), JSONRPCError(RPC_PARSE_ERROR, e.what()), jreq.id);
1068             break;
1069         }
1070     }
1071
1072     delete conn;
1073     {
1074         LOCK(cs_THREAD_RPCHANDLER);
1075         vnThreadsRunning[THREAD_RPCHANDLER]--;
1076     }
1077 }
1078
1079 json_spirit::Value CRPCTable::execute(const std::string &strMethod, const json_spirit::Array &params) const
1080 {
1081     // Find method
1082     const CRPCCommand *pcmd = tableRPC[strMethod];
1083     if (!pcmd)
1084         throw JSONRPCError(RPC_METHOD_NOT_FOUND, "Method not found");
1085
1086     // Observe safe mode
1087     string strWarning = GetWarnings("rpc");
1088     if (strWarning != "" && !GetBoolArg("-disablesafemode") &&
1089         !pcmd->okSafeMode)
1090         throw JSONRPCError(RPC_FORBIDDEN_BY_SAFE_MODE, string("Safe mode: ") + strWarning);
1091
1092     try
1093     {
1094         // Execute
1095         Value result;
1096         {
1097             if (pcmd->unlocked)
1098                 result = pcmd->actor(params, false);
1099             else {
1100                 LOCK2(cs_main, pwalletMain->cs_wallet);
1101                 result = pcmd->actor(params, false);
1102             }
1103         }
1104         return result;
1105     }
1106     catch (std::exception& e)
1107     {
1108         throw JSONRPCError(RPC_MISC_ERROR, e.what());
1109     }
1110 }
1111
1112
1113 Object CallRPC(const string& strMethod, const Array& params)
1114 {
1115     if (mapArgs["-rpcuser"] == "" && mapArgs["-rpcpassword"] == "")
1116         throw runtime_error(strprintf(
1117             _("You must set rpcpassword=<password> in the configuration file:\n%s\n"
1118               "If the file does not exist, create it with owner-readable-only file permissions."),
1119                 GetConfigFile().string().c_str()));
1120
1121     // Connect to localhost
1122     bool fUseSSL = GetBoolArg("-rpcssl");
1123     asio::io_service io_service;
1124     ssl::context context(io_service, ssl::context::sslv23);
1125     context.set_options(ssl::context::no_sslv2);
1126     asio::ssl::stream<asio::ip::tcp::socket> sslStream(io_service, context);
1127     SSLIOStreamDevice<asio::ip::tcp> d(sslStream, fUseSSL);
1128     iostreams::stream< SSLIOStreamDevice<asio::ip::tcp> > stream(d);
1129     if (!d.connect(GetArg("-rpcconnect", "127.0.0.1"), GetArg("-rpcport", itostr(GetDefaultRPCPort()))))
1130         throw runtime_error("couldn't connect to server");
1131
1132     // HTTP basic authentication
1133     string strUserPass64 = EncodeBase64(mapArgs["-rpcuser"] + ":" + mapArgs["-rpcpassword"]);
1134     map<string, string> mapRequestHeaders;
1135     mapRequestHeaders["Authorization"] = string("Basic ") + strUserPass64;
1136
1137     // Send request
1138     string strRequest = JSONRPCRequest(strMethod, params, 1);
1139     string strPost = HTTPPost(strRequest, mapRequestHeaders);
1140     stream << strPost << std::flush;
1141
1142     // Receive reply
1143     map<string, string> mapHeaders;
1144     string strReply;
1145     int nStatus = ReadHTTP(stream, mapHeaders, strReply);
1146     if (nStatus == HTTP_UNAUTHORIZED)
1147         throw runtime_error("incorrect rpcuser or rpcpassword (authorization failed)");
1148     else if (nStatus >= 400 && nStatus != HTTP_BAD_REQUEST && nStatus != HTTP_NOT_FOUND && nStatus != HTTP_INTERNAL_SERVER_ERROR)
1149         throw runtime_error(strprintf("server returned HTTP error %d", nStatus));
1150     else if (strReply.empty())
1151         throw runtime_error("no response from server");
1152
1153     // Parse reply
1154     Value valReply;
1155     if (!read_string(strReply, valReply))
1156         throw runtime_error("couldn't parse reply from server");
1157     const Object& reply = valReply.get_obj();
1158     if (reply.empty())
1159         throw runtime_error("expected reply to have result, error and id properties");
1160
1161     return reply;
1162 }
1163
1164
1165
1166
1167 template<typename T>
1168 void ConvertTo(Value& value, bool fAllowNull=false)
1169 {
1170     if (fAllowNull && value.type() == null_type)
1171         return;
1172     if (value.type() == str_type)
1173     {
1174         // reinterpret string as unquoted json value
1175         Value value2;
1176         string strJSON = value.get_str();
1177         if (!read_string(strJSON, value2))
1178             throw runtime_error(string("Error parsing JSON:")+strJSON);
1179         ConvertTo<T>(value2, fAllowNull);
1180         value = value2;
1181     }
1182     else
1183     {
1184         value = value.get_value<T>();
1185     }
1186 }
1187
1188 // Convert strings to command-specific RPC representation
1189 Array RPCConvertValues(const std::string &strMethod, const std::vector<std::string> &strParams)
1190 {
1191     Array params;
1192     BOOST_FOREACH(const std::string &param, strParams)
1193         params.push_back(param);
1194
1195     size_t n = params.size();
1196
1197     //
1198     // Special case non-string parameter types
1199     //
1200     if (strMethod == "stop"                   && n > 0) ConvertTo<bool>(params[0]);
1201     if (strMethod == "getaddednodeinfo"       && n > 0) ConvertTo<bool>(params[0]);
1202     if (strMethod == "sendtoaddress"          && n > 1) ConvertTo<double>(params[1]);
1203     if (strMethod == "mergecoins"            && n > 0) ConvertTo<double>(params[0]);
1204     if (strMethod == "mergecoins"            && n > 1) ConvertTo<double>(params[1]);
1205     if (strMethod == "mergecoins"            && n > 2) ConvertTo<double>(params[2]);
1206     if (strMethod == "settxfee"               && n > 0) ConvertTo<double>(params[0]);
1207     if (strMethod == "getreceivedbyaddress"   && n > 1) ConvertTo<int64_t>(params[1]);
1208     if (strMethod == "getreceivedbyaccount"   && n > 1) ConvertTo<int64_t>(params[1]);
1209     if (strMethod == "listreceivedbyaddress"  && n > 0) ConvertTo<int64_t>(params[0]);
1210     if (strMethod == "listreceivedbyaddress"  && n > 1) ConvertTo<bool>(params[1]);
1211     if (strMethod == "listreceivedbyaccount"  && n > 0) ConvertTo<int64_t>(params[0]);
1212     if (strMethod == "listreceivedbyaccount"  && n > 1) ConvertTo<bool>(params[1]);
1213     if (strMethod == "getbalance"             && n > 1) ConvertTo<int64_t>(params[1]);
1214     if (strMethod == "getblock"               && n > 1) ConvertTo<bool>(params[1]);
1215     if (strMethod == "getblockbynumber"       && n > 0) ConvertTo<int64_t>(params[0]);
1216     if (strMethod == "dumpblockbynumber"      && n > 0) ConvertTo<int64_t>(params[0]);
1217     if (strMethod == "getblockbynumber"       && n > 1) ConvertTo<bool>(params[1]);
1218     if (strMethod == "getblockhash"           && n > 0) ConvertTo<int64_t>(params[0]);
1219     if (strMethod == "move"                   && n > 2) ConvertTo<double>(params[2]);
1220     if (strMethod == "move"                   && n > 3) ConvertTo<int64_t>(params[3]);
1221     if (strMethod == "sendfrom"               && n > 2) ConvertTo<double>(params[2]);
1222     if (strMethod == "sendfrom"               && n > 3) ConvertTo<int64_t>(params[3]);
1223     if (strMethod == "listtransactions"       && n > 1) ConvertTo<int64_t>(params[1]);
1224     if (strMethod == "listtransactions"       && n > 2) ConvertTo<int64_t>(params[2]);
1225     if (strMethod == "listaccounts"           && n > 0) ConvertTo<int64_t>(params[0]);
1226     if (strMethod == "walletpassphrase"       && n > 1) ConvertTo<int64_t>(params[1]);
1227     if (strMethod == "walletpassphrase"       && n > 2) ConvertTo<bool>(params[2]);
1228     if (strMethod == "getblocktemplate"       && n > 0) ConvertTo<Object>(params[0]);
1229     if (strMethod == "listsinceblock"         && n > 1) ConvertTo<int64_t>(params[1]);
1230
1231     if (strMethod == "scaninput"              && n > 0) ConvertTo<Object>(params[0]);
1232
1233     if (strMethod == "sendalert"              && n > 2) ConvertTo<int64_t>(params[2]);
1234     if (strMethod == "sendalert"              && n > 3) ConvertTo<int64_t>(params[3]);
1235     if (strMethod == "sendalert"              && n > 4) ConvertTo<int64_t>(params[4]);
1236     if (strMethod == "sendalert"              && n > 5) ConvertTo<int64_t>(params[5]);
1237     if (strMethod == "sendalert"              && n > 6) ConvertTo<int64_t>(params[6]);
1238
1239     if (strMethod == "sendmany"               && n > 1) ConvertTo<Object>(params[1]);
1240     if (strMethod == "sendmany"               && n > 2) ConvertTo<int64_t>(params[2]);
1241     if (strMethod == "reservebalance"         && n > 0) ConvertTo<bool>(params[0]);
1242     if (strMethod == "reservebalance"         && n > 1) ConvertTo<double>(params[1]);
1243     if (strMethod == "addmultisigaddress"     && n > 0) ConvertTo<int64_t>(params[0]);
1244     if (strMethod == "addmultisigaddress"     && n > 1) ConvertTo<Array>(params[1]);
1245     if (strMethod == "listunspent"            && n > 0) ConvertTo<int64_t>(params[0]);
1246     if (strMethod == "listunspent"            && n > 1) ConvertTo<int64_t>(params[1]);
1247     if (strMethod == "listunspent"            && n > 2) ConvertTo<Array>(params[2]);
1248     if (strMethod == "getrawtransaction"      && n > 1) ConvertTo<int64_t>(params[1]);
1249     if (strMethod == "createrawtransaction"   && n > 0) ConvertTo<Array>(params[0]);
1250     if (strMethod == "createrawtransaction"   && n > 1) ConvertTo<Object>(params[1]);
1251     if (strMethod == "createmultisig"         && n > 0) ConvertTo<int64_t>(params[0]);
1252     if (strMethod == "createmultisig"         && n > 1) ConvertTo<Array>(params[1]);
1253     if (strMethod == "signrawtransaction"     && n > 1) ConvertTo<Array>(params[1], true);
1254     if (strMethod == "signrawtransaction"     && n > 2) ConvertTo<Array>(params[2], true);
1255     if (strMethod == "keypoolrefill"          && n > 0) ConvertTo<int64_t>(params[0]);
1256     if (strMethod == "keypoolreset"           && n > 0) ConvertTo<int64_t>(params[0]);
1257     if (strMethod == "importaddress"          && n > 2) ConvertTo<bool>(params[2]);
1258
1259     return params;
1260 }
1261
1262 int CommandLineRPC(int argc, char *argv[])
1263 {
1264     string strPrint;
1265     int nRet = 0;
1266     try
1267     {
1268         // Skip switches
1269         while (argc > 1 && IsSwitchChar(argv[1][0]))
1270         {
1271             argc--;
1272             argv++;
1273         }
1274
1275         // Method
1276         if (argc < 2)
1277             throw runtime_error("too few parameters");
1278         string strMethod = argv[1];
1279
1280         // Parameters default to strings
1281         std::vector<std::string> strParams(&argv[2], &argv[argc]);
1282         Array params = RPCConvertValues(strMethod, strParams);
1283
1284         // Execute
1285         Object reply = CallRPC(strMethod, params);
1286
1287         // Parse reply
1288         const Value& result = find_value(reply, "result");
1289         const Value& error  = find_value(reply, "error");
1290
1291         if (error.type() != null_type)
1292         {
1293             // Error
1294             strPrint = "error: " + write_string(error, false);
1295             int code = find_value(error.get_obj(), "code").get_int();
1296             nRet = abs(code);
1297         }
1298         else
1299         {
1300             // Result
1301             if (result.type() == null_type)
1302                 strPrint = "";
1303             else if (result.type() == str_type)
1304                 strPrint = result.get_str();
1305             else
1306                 strPrint = write_string(result, true);
1307         }
1308     }
1309     catch (std::exception& e)
1310     {
1311         strPrint = string("error: ") + e.what();
1312         nRet = 87;
1313     }
1314     catch (...)
1315     {
1316         PrintException(NULL, "CommandLineRPC()");
1317     }
1318
1319     if (strPrint != "")
1320     {
1321         fprintf((nRet == 0 ? stdout : stderr), "%s\n", strPrint.c_str());
1322     }
1323     return nRet;
1324 }
1325
1326
1327
1328
1329 #ifdef TEST
1330 int main(int argc, char *argv[])
1331 {
1332 #ifdef _MSC_VER
1333     // Turn off Microsoft heap dump noise
1334     _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
1335     _CrtSetReportFile(_CRT_WARN, CreateFile("NUL", GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0));
1336 #endif
1337     setbuf(stdin, NULL);
1338     setbuf(stdout, NULL);
1339     setbuf(stderr, NULL);
1340
1341     try
1342     {
1343         if (argc >= 2 && string(argv[1]) == "-server")
1344         {
1345             printf("server ready\n");
1346             ThreadRPCServer(NULL);
1347         }
1348         else
1349         {
1350             return CommandLineRPC(argc, argv);
1351         }
1352     }
1353     catch (std::exception& e) {
1354         PrintException(&e, "main()");
1355     } catch (...) {
1356         PrintException(NULL, "main()");
1357     }
1358     return 0;
1359 }
1360 #endif
1361
1362 const CRPCTable tableRPC;