forked from gridcoin-community/Gridcoin-Research
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.cpp
958 lines (835 loc) · 37.6 KB
/
server.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
// Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2012 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or https://opensource.org/licenses/mit-license.php.
#include "amount.h"
#include "init.h"
#include "sync.h"
#include "ui_interface.h"
#include "base58.h"
#include "server.h"
#include "client.h"
#include "protocol.h"
#include "wallet/db.h"
#include "util.h"
#include <boost/asio.hpp>
#include <boost/asio/ip/v6_only.hpp>
#include <boost/bind.hpp>
#include <boost/iostreams/concepts.hpp>
#include <boost/iostreams/stream.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/asio/ssl.hpp>
#include <boost/shared_ptr.hpp>
#include <list>
#include <algorithm>
#include <memory>
using namespace std;
using namespace boost;
using namespace boost::asio;
void ThreadRPCServer2(void* parg);
static std::string strRPCUserColonPass;
// These are created by StartRPCThreads, destroyed in StopRPCThreads
static ioContext* rpc_io_service = nullptr;
static ssl::context* rpc_ssl_context = nullptr;
static boost::thread_group* rpc_worker_group = nullptr;
const UniValue emptyobj(UniValue::VOBJ);
int GetDefaultRPCPort()
{
return BaseParams().RPCPort();
}
void RPCTypeCheck(const UniValue& params,
const list<UniValue::VType>& typesExpected,
bool fAllowNull)
{
unsigned int i = 0;
for (UniValue::VType t : typesExpected)
{
if (params.size() <= i)
break;
const UniValue& v = params[i];
if (!((v.type() == t) || (fAllowNull && (v.isNull()))))
{
string err = strprintf("Expected type %s, got %s",
uvTypeName(t), uvTypeName(v.type()));
throw JSONRPCError(RPC_TYPE_ERROR, err);
}
i++;
}
}
void RPCTypeCheckObj(const UniValue& o,
const map<string, UniValue::VType>& typesExpected,
bool fAllowNull)
{
for (auto const& t : typesExpected)
{
const UniValue& v = find_value(o, t.first);
if (!fAllowNull && v.isNull())
throw JSONRPCError(RPC_TYPE_ERROR, strprintf("Missing %s", t.first));
if (!( v.type() == t.second || (fAllowNull && (v.isNull()))))
{
string err = strprintf("Expected type %s for %s, got %s",
uvTypeName(t.second), t.first, uvTypeName(v.type()));
throw JSONRPCError(RPC_TYPE_ERROR, err);
}
}
}
bool HTTPAuthorized(map<string, string>& mapHeaders)
{
string strAuth = mapHeaders["authorization"];
if (strAuth.substr(0,6) != "Basic ")
return false;
string strUserPass64 = strAuth.substr(6);
strUserPass64 = TrimString(strUserPass64);
string strUserPass = DecodeBase64(strUserPass64);
return TimingResistantEqual(strUserPass, strRPCUserColonPass);
}
int64_t AmountFromValue(const UniValue& value)
{
double dAmount = value.get_real();
if (dAmount <= 0.0 || dAmount > MAX_MONEY)
throw JSONRPCError(RPC_TYPE_ERROR, "Invalid amount");
int64_t nAmount = roundint64(dAmount * COIN);
if (!MoneyRange(nAmount))
throw JSONRPCError(RPC_TYPE_ERROR, "Invalid amount");
return nAmount;
}
UniValue ValueFromAmount(int64_t amount)
{
bool sign = amount < 0;
int64_t n_abs = (sign ? -amount : amount);
int64_t quotient = n_abs / COIN;
int64_t remainder = n_abs % COIN;
return UniValue(UniValue::VNUM, strprintf("%s%d.%08d", sign ? "-" : "", quotient, remainder));
}
//
// Utilities: convert hex-encoded Values
// (throws error if not hex).
//
uint256 ParseHashV(const UniValue& v, string strName)
{
string strHex;
if (v.isStr())
strHex = v.get_str();
if (!IsHex(strHex)) // Note: IsHex("") is false
throw JSONRPCError(RPC_INVALID_PARAMETER, strName+" must be hexadecimal string (not '"+strHex+"')");
uint256 result;
result.SetHex(strHex);
return result;
}
uint256 ParseHashO(const UniValue& o, string strKey)
{
return ParseHashV(find_value(o, strKey), strKey);
}
vector<unsigned char> ParseHexV(const UniValue& v, string strName)
{
string strHex;
if (v.isStr())
strHex = v.get_str();
if (!IsHex(strHex))
throw JSONRPCError(RPC_INVALID_PARAMETER, strName+" must be hexadecimal string (not '"+strHex+"')");
return ParseHex(strHex);
}
vector<unsigned char> ParseHexO(const UniValue& o, string strKey)
{
return ParseHexV(find_value(o, strKey), strKey);
}
///
/// Note: This interface may still be subject to change.
///
string CRPCTable::help(string strCommand, rpccategory category) const
{
string strRet;
set<rpcfn_type> setDone;
for (map<string, const CRPCCommand*>::const_iterator mi = mapCommands.begin(); mi != mapCommands.end(); ++mi)
{
const CRPCCommand *pcmd = mi->second;
string strMethod = mi->first;
// Refactored rules for supporting of subcategories
if (pcmd->category == cat_null)
continue;
if (strCommand.empty() && pcmd->category != category)
continue;
if (!strCommand.empty() && pcmd->name != strCommand)
continue;
try
{
UniValue params(UniValue::VARR);
rpcfn_type pfn = pcmd->actor;
if (setDone.insert(pfn).second)
(*pfn)(params, true);
}
catch (std::exception& e)
{
// Help text is returned in an exception
string strHelp = string(e.what());
if (strCommand.empty())
if (strHelp.find('\n') != string::npos)
strHelp = strHelp.substr(0, strHelp.find('\n'));
strRet += strHelp + "\n";
}
}
if (strRet.empty())
strRet = strprintf("help: unknown command: %s\n", strCommand);
strRet = strRet.substr(0,strRet.size()-1);
return strRet;
}
UniValue help(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() == 0 || params.size() > 1)
return
"help [command/category]\n"
"Returns help on a specific command or category you request\n"
"\n"
"help command --> Returns help for specified command; ex. help backupwallet\n"
"\n"
"Categories:\n"
"wallet --------> Returns help for blockchain related commands\n"
"mining --------> Returns help for staking/cpid/beacon related commands\n"
"developer -----> Returns help for developer commands\n"
"network -------> Returns help for network related commands\n"
"voting --------> Returns help for voting related commands\n"
"\n"
"You can support the development of Gridcoin by donating GRC to the\n"
"Gridcoin Foundation at this address: bc3NA8e8E3EoTL1qhRmeprbjWcmuoZ26A2\n";
// Allow to process through if params size is > 0
string strCommand;
if (params.size() > 0)
strCommand = params[0].get_str();
// Subcategory help area
// Blockchain related commands
rpccategory category;
if (strCommand == "wallet")
category = cat_wallet;
else if (strCommand == "mining")
category = cat_mining;
else if (strCommand == "developer")
category = cat_developer;
else if (strCommand == "network")
category = cat_network;
else if (strCommand == "voting")
category = cat_voting;
else
category = cat_null;
if (category != cat_null)
strCommand = "";
return tableRPC.help(strCommand, category);
}
UniValue stop(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 0)
throw runtime_error(
"stop\n"
"Stop Gridcoin server.");
// Shutdown will take long enough that the response should get back
LogPrintf("Stopping...");
StartShutdown();
return "Gridcoin server stopping";
}
//
// Call Table
//
// We no longer use the unlocked feature here.
// Bitcoin has removed this option and placed the locks inside the rpc calls to reduce the scope
// Also removes the un needed locking when the end result is a rpc run time error reply over params!
// This also has improved the performance of rpc outputs.
static const CRPCCommand vRPCCommands[] =
{ // name function category
// ------------------------ ----------------------- -----------------
{ "help", &help, cat_null },
// Wallet commands
{ "addmultisigaddress", &addmultisigaddress, cat_wallet },
{ "addredeemscript", &addredeemscript, cat_wallet },
{ "backupprivatekeys", &backupprivatekeys, cat_wallet },
{ "backupwallet", &backupwallet, cat_wallet },
{ "burn", &burn, cat_wallet },
{ "checkwallet", &checkwallet, cat_wallet },
{ "createrawtransaction", &createrawtransaction, cat_wallet },
{ "consolidatemsunspent", &consolidatemsunspent, cat_wallet },
{ "decoderawtransaction", &decoderawtransaction, cat_wallet },
{ "decodescript", &decodescript, cat_wallet },
{ "dumpprivkey", &dumpprivkey, cat_wallet },
{ "dumpwallet", &dumpwallet, cat_wallet },
{ "encryptwallet", &encryptwallet, cat_wallet },
{ "getaccount", &getaccount, cat_wallet },
{ "getaccountaddress", &getaccountaddress, cat_wallet },
{ "getaddressesbyaccount", &getaddressesbyaccount, cat_wallet },
{ "getbalance", &getbalance, cat_wallet },
{ "getbalancedetail", &getbalancedetail, cat_wallet },
{ "getnewaddress", &getnewaddress, cat_wallet },
{ "getnewpubkey", &getnewpubkey, cat_wallet },
{ "getrawtransaction", &getrawtransaction, cat_wallet },
{ "getrawwallettransaction", &getrawwallettransaction, cat_wallet },
{ "getreceivedbyaccount", &getreceivedbyaccount, cat_wallet },
{ "getreceivedbyaddress", &getreceivedbyaddress, cat_wallet },
{ "gettransaction", &gettransaction, cat_wallet },
{ "getunconfirmedbalance", &getunconfirmedbalance, cat_wallet },
{ "getwalletinfo", &getwalletinfo, cat_wallet },
{ "importprivkey", &importprivkey, cat_wallet },
{ "importwallet", &importwallet, cat_wallet },
{ "keypoolrefill", &keypoolrefill, cat_wallet },
{ "listaccounts", &listaccounts, cat_wallet },
{ "listaddressgroupings", &listaddressgroupings, cat_wallet },
{ "listreceivedbyaccount", &listreceivedbyaccount, cat_wallet },
{ "listreceivedbyaddress", &listreceivedbyaddress, cat_wallet },
{ "listsinceblock", &listsinceblock, cat_wallet },
{ "liststakes", &liststakes, cat_wallet },
{ "listtransactions", &listtransactions, cat_wallet },
{ "listunspent", &listunspent, cat_wallet },
{ "consolidateunspent", &consolidateunspent, cat_wallet },
{ "makekeypair", &makekeypair, cat_wallet },
{ "maintainbackups", &maintainbackups, cat_wallet },
{ "move", &movecmd, cat_wallet },
{ "rainbymagnitude", &rainbymagnitude, cat_wallet },
{ "repairwallet", &repairwallet, cat_wallet },
{ "resendtx", &resendtx, cat_wallet },
{ "reservebalance", &reservebalance, cat_wallet },
{ "scanforunspent", &scanforunspent, cat_wallet },
{ "sendfrom", &sendfrom, cat_wallet },
{ "sendmany", &sendmany, cat_wallet },
{ "sendrawtransaction", &sendrawtransaction, cat_wallet },
{ "sendtoaddress", &sendtoaddress, cat_wallet },
{ "setaccount", &setaccount, cat_wallet },
{ "settxfee", &settxfee, cat_wallet },
{ "signmessage", &signmessage, cat_wallet },
{ "signrawtransaction", &signrawtransaction, cat_wallet },
{ "validateaddress", &validateaddress, cat_wallet },
{ "validatepubkey", &validatepubkey, cat_wallet },
{ "verifymessage", &verifymessage, cat_wallet },
{ "walletlock", &walletlock, cat_wallet },
{ "walletpassphrase", &walletpassphrase, cat_wallet },
{ "walletpassphrasechange", &walletpassphrasechange, cat_wallet },
// Mining commands
{ "advertisebeacon", &advertisebeacon, cat_mining },
{ "beaconconvergence", &beaconconvergence, cat_mining },
{ "beaconreport", &beaconreport, cat_mining },
{ "beaconstatus", &beaconstatus, cat_mining },
{ "explainmagnitude", &explainmagnitude, cat_mining },
{ "getlaststake", &getlaststake, cat_mining },
{ "getmininginfo", &getmininginfo, cat_mining },
{ "lifetime", &lifetime, cat_mining },
{ "magnitude", &magnitude, cat_mining },
{ "pendingbeaconreport", &pendingbeaconreport, cat_mining },
{ "resetcpids", &resetcpids, cat_mining },
{ "revokebeacon", &revokebeacon, cat_mining },
{ "superblockage", &superblockage, cat_mining },
{ "superblocks", &superblocks, cat_mining },
// Developer commands
{ "auditsnapshotaccrual", &auditsnapshotaccrual, cat_developer },
{ "auditsnapshotaccruals", &auditsnapshotaccruals, cat_developer },
{ "addkey", &addkey, cat_developer },
{ "changesettings", &changesettings, cat_developer },
{ "currentcontractaverage", ¤tcontractaverage, cat_developer },
{ "debug", &debug, cat_developer },
{ "dumpcontracts", &dumpcontracts, cat_developer },
{ "exportstats1", &rpc_exportstats, cat_developer },
{ "getblockstats", &rpc_getblockstats, cat_developer },
{ "getlistof", &getlistof, cat_developer },
{ "getrecentblocks", &rpc_getrecentblocks, cat_developer },
{ "inspectaccrualsnapshot", &inspectaccrualsnapshot, cat_developer },
{ "listdata", &listdata, cat_developer },
{ "listprojects", &listprojects, cat_developer },
{ "listresearcheraccounts", &listresearcheraccounts, cat_developer },
{ "listsettings", &listsettings, cat_developer },
{ "logging", &logging, cat_developer },
{ "network", &network, cat_developer },
{ "parseaccrualsnapshotfile",&parseaccrualsnapshotfile,cat_developer },
{ "parselegacysb", &parselegacysb, cat_developer },
{ "projects", &projects, cat_developer },
{ "readdata", &readdata, cat_developer },
{ "reorganize", &rpc_reorganize, cat_developer },
{ "sendalert", &sendalert, cat_developer },
{ "sendalert2", &sendalert2, cat_developer },
{ "sendblock", &sendblock, cat_developer },
{ "superblockaverage", &superblockaverage, cat_developer },
{ "versionreport", &versionreport, cat_developer },
{ "writedata", &writedata, cat_developer },
{ "listmanifests", &listmanifests, cat_developer },
{ "getmpart", &getmpart, cat_developer },
{ "sendscraperfilemanifest", &sendscraperfilemanifest, cat_developer },
{ "savescraperfilemanifest", &savescraperfilemanifest, cat_developer },
{ "deletecscrapermanifest", &deletecscrapermanifest, cat_developer },
{ "archivelog", &archivelog, cat_developer },
{ "testnewsb", &testnewsb, cat_developer },
{ "convergencereport", &convergencereport, cat_developer },
{ "scraperreport", &scraperreport, cat_developer },
// Network commands
{ "addnode", &addnode, cat_network },
{ "askforoutstandingblocks", &askforoutstandingblocks, cat_network },
{ "getblockchaininfo", &getblockchaininfo, cat_network },
{ "getnetworkinfo", &getnetworkinfo, cat_network },
{ "clearbanned", &clearbanned, cat_network },
{ "currenttime", ¤ttime, cat_network },
{ "getaddednodeinfo", &getaddednodeinfo, cat_network },
{ "getbestblockhash", &getbestblockhash, cat_network },
{ "getblock", &getblock, cat_network },
{ "getblockbynumber", &getblockbynumber, cat_network },
{ "getblocksbatch", &getblocksbatch, cat_network },
{ "getblockcount", &getblockcount, cat_network },
{ "getblockhash", &getblockhash, cat_network },
{ "getburnreport", &getburnreport, cat_network },
{ "getcheckpoint", &getcheckpoint, cat_network },
{ "getconnectioncount", &getconnectioncount, cat_network },
{ "getdifficulty", &getdifficulty, cat_network },
{ "getinfo", &getinfo, cat_network },
{ "getnettotals", &getnettotals, cat_network },
{ "getpeerinfo", &getpeerinfo, cat_network },
{ "getrawmempool", &getrawmempool, cat_network },
{ "listbanned", &listbanned, cat_network },
{ "networktime", &networktime, cat_network },
{ "ping", &ping, cat_network },
{ "setban", &setban, cat_network },
{ "showblock", &showblock, cat_network },
{ "stop", &stop, cat_network },
// Voting commands
{ "addpoll", &addpoll, cat_voting },
{ "getpollresults", &getpollresults, cat_voting },
{ "getvotingclaim", &getvotingclaim, cat_voting },
{ "listpolls", &listpolls, cat_voting },
{ "vote", &vote, cat_voting },
{ "votebyid", &votebyid, cat_voting },
{ "votedetails", &votedetails, cat_voting },
};
static constexpr const char* DEPRECATED_RPCS[] {
"debug",
"getaccount",
"getaccountaddress",
"getaddressesbyaccount",
"getreceivedbyaccount",
"listaccounts",
"listreceivedbyaccount",
"move",
"setaccount",
"vote",
};
CRPCTable::CRPCTable()
{
for (const auto& cmd : vRPCCommands)
{
mapCommands[cmd.name] = &cmd;
}
}
const CRPCCommand* CRPCTable::operator[](string name) const
{
auto it = mapCommands.find(name);
if (it == mapCommands.end()) {
return nullptr;
}
return it->second;
}
void ErrorReply(std::ostream& stream, const UniValue& objError, const UniValue& id)
{
// Send error reply from json-rpc error object
int nStatus = HTTP_INTERNAL_SERVER_ERROR;
int code = find_value(objError, "code").get_int();
if (code == RPC_INVALID_REQUEST) nStatus = HTTP_BAD_REQUEST;
else if (code == RPC_METHOD_NOT_FOUND) nStatus = HTTP_NOT_FOUND;
string strReply = JSONRPCReply(NullUniValue, objError, id);
stream << HTTPReply(nStatus, strReply, false) << std::flush;
}
bool ClientAllowed(const boost::asio::ip::address& address)
{
// Make sure that IPv4-compatible and IPv4-mapped IPv6 addresses are treated as IPv4 addresses
if (address.is_v6()
&& (address.to_v6().is_v4_compatible()
|| address.to_v6().is_v4_mapped()))
return ClientAllowed(address.to_v6().to_v4());
if (address == asio::ip::address_v4::loopback()
|| address == asio::ip::address_v6::loopback()
|| (address.is_v4()
// Check whether IPv4 addresses match 127.0.0.0/8 (loopback subnet)
&& (address.to_v4().to_ulong() & 0xff000000) == 0x7f000000))
return true;
const string strAddress = address.to_string();
const vector<string>& vAllow = gArgs.GetArgs("-rpcallowip");
for (auto const& strAllow : vAllow)
if (WildcardMatch(strAddress, strAllow))
return true;
return false;
}
void ServiceConnection(AcceptedConnection *conn);
// Forward declaration required for RPCListen
template <typename Protocol>
static void RPCAcceptHandler(boost::shared_ptr< basic_socket_acceptor<Protocol> > acceptor,
ssl::context& context,
bool fUseSSL,
AcceptedConnection* conn,
const boost::system::error_code& error);
/**
* Sets up I/O resources to accept and handle a new connection.
*/
template <typename Protocol>
static void RPCListen(boost::shared_ptr< basic_socket_acceptor<Protocol> > acceptor,
ssl::context& context,
const bool fUseSSL)
{
// Accept connection
AcceptedConnectionImpl<Protocol>* conn = new AcceptedConnectionImpl<Protocol>(GetIOServiceFromPtr(acceptor), context, fUseSSL);
acceptor->async_accept(
conn->sslStream.lowest_layer(),
conn->peer,
boost::bind(&RPCAcceptHandler<Protocol>,
acceptor,
boost::ref(context),
fUseSSL,
conn,
boost::asio::placeholders::error));
}
/**
* Accept and handle incoming connection.
*/
template <typename Protocol>
static void RPCAcceptHandler(boost::shared_ptr< basic_socket_acceptor<Protocol> > acceptor,
ssl::context& context,
const bool fUseSSL,
AcceptedConnection* conn,
const boost::system::error_code& error)
{
// Immediately start accepting new connections, except when we're cancelled or our socket is closed.
if (error != asio::error::operation_aborted && acceptor->is_open())
RPCListen(acceptor, context, fUseSSL);
// TODO : Actually handle errors
if (!error)
{
// Restrict callers by IP. It is important to
// do this before starting client thread, to filter out
// certain DoS and misbehaving clients.
AcceptedConnectionImpl<ip::tcp>* tcp_conn = dynamic_cast< AcceptedConnectionImpl<ip::tcp>* >(conn);
if (tcp_conn && !ClientAllowed(tcp_conn->peer.address()))
{
// Only send a 403 if we're not using SSL to prevent a DoS during the SSL handshake.
if (!fUseSSL)
conn->stream() << HTTPReply(HTTP_FORBIDDEN, "", false) << std::flush;
}
else
ServiceConnection(conn);
conn->close();
}
delete conn;
}
void StartRPCThreads()
{
strRPCUserColonPass = gArgs.GetArg("-rpcuser", "") + ":" + gArgs.GetArg("-rpcpassword", "");
if ((gArgs.GetArg("-rpcpassword", "") == "" ||
(gArgs.GetArg("-rpcuser", "") == gArgs.GetArg("-rpcpassword", ""))))
{
unsigned char rand_pwd[32];
RAND_bytes(rand_pwd, 32);
string strWhatAmI = "To use gridcoind";
if (gArgs.IsArgSet("-server"))
strWhatAmI = strprintf(_("To use the %s option"), "\"-server\"");
else if (gArgs.IsArgSet("-daemon"))
strWhatAmI = strprintf(_("To use the %s option"), "\"-daemon\"");
uiInterface.ThreadSafeMessageBox(strprintf(
_("%s, you must set a rpcpassword in the configuration file:\n %s\n"
"It is recommended you use the following random password:\n"
"rpcuser=gridcoinrpc\n"
"rpcpassword=%s\n"
"(you do not need to remember this password)\n"
"The username and password MUST NOT be the same.\n"
"If the file does not exist, create it with owner-readable-only file permissions.\n"
"It is also recommended to set alertnotify so you are notified of problems;\n"
"for example: alertnotify=echo %%s | mail -s \"Gridcoin Alert\" [email protected]\n"),
strWhatAmI,
GetConfigFile().string(),
EncodeBase58(&rand_pwd[0],&rand_pwd[0]+32)),
_("Error"), CClientUIInterface::OK | CClientUIInterface::MODAL);
StartShutdown();
return;
}
const bool fUseSSL = gArgs.GetBoolArg("-rpcssl");
assert(rpc_io_service == nullptr);
rpc_io_service = new ioContext();
rpc_ssl_context = new ssl::context(ssl::context::sslv23);
if (fUseSSL)
{
rpc_ssl_context->set_options(ssl::context::no_sslv2);
fs::path pathCertFile(gArgs.GetArg("-rpcsslcertificatechainfile", "server.cert"));
if (!pathCertFile.is_absolute()) pathCertFile = fs::path(GetDataDir()) / pathCertFile;
if (fs::exists(pathCertFile)) rpc_ssl_context->use_certificate_chain_file(pathCertFile.string());
else LogPrintf("ThreadRPCServer ERROR: missing server certificate file %s\n", pathCertFile.string());
fs::path pathPKFile(gArgs.GetArg("-rpcsslprivatekeyfile", "server.pem"));
if (!pathPKFile.is_absolute()) pathPKFile = fs::path(GetDataDir()) / pathPKFile;
if (fs::exists(pathPKFile)) rpc_ssl_context->use_private_key_file(pathPKFile.string(), ssl::context::pem);
else LogPrintf("ThreadRPCServer ERROR: missing server private key file %s\n", pathPKFile.string());
string strCiphers = gArgs.GetArg("-rpcsslciphers", "TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH");
SSL_CTX_set_cipher_list(rpc_ssl_context->native_handle(), strCiphers.c_str());
}
// Try a dual IPv6/IPv4 socket, falling back to separate IPv4 and IPv6 sockets
const bool loopback = !gArgs.IsArgSet("-rpcallowip");
asio::ip::address bindAddress = loopback ? asio::ip::address_v6::loopback() : asio::ip::address_v6::any();
ip::tcp::endpoint endpoint(bindAddress, gArgs.GetArg("-rpcport", GetDefaultRPCPort()));
boost::system::error_code v6_only_error;
boost::shared_ptr<ip::tcp::acceptor> acceptor(new ip::tcp::acceptor(*rpc_io_service));
bool fListening = false;
std::string strerr;
try
{
acceptor->open(endpoint.protocol());
acceptor->set_option(boost::asio::ip::tcp::acceptor::reuse_address(true));
// Try making the socket dual IPv6/IPv4 (if listening on the "any" address)
acceptor->set_option(boost::asio::ip::v6_only(loopback), v6_only_error);
acceptor->bind(endpoint);
acceptor->listen(socket_base::max_connections);
RPCListen(acceptor, *rpc_ssl_context, fUseSSL);
fListening = true;
}
catch(boost::system::system_error &e)
{
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());
}
try
{
// If dual IPv6/IPv4 failed (or we're opening loopback interfaces only), open IPv4 separately
if (!fListening || loopback || v6_only_error)
{
bindAddress = loopback ? asio::ip::address_v4::loopback() : asio::ip::address_v4::any();
endpoint.address(bindAddress);
acceptor.reset(new ip::tcp::acceptor(*rpc_io_service));
acceptor->open(endpoint.protocol());
acceptor->set_option(boost::asio::ip::tcp::acceptor::reuse_address(true));
acceptor->bind(endpoint);
acceptor->listen(socket_base::max_connections);
RPCListen(acceptor, *rpc_ssl_context, fUseSSL);
fListening = true;
}
}
catch(boost::system::system_error &e)
{
strerr = strprintf(_("An error occurred while setting up the RPC port %u for listening on IPv4: %s"), endpoint.port(), e.what());
}
if (!fListening)
{
uiInterface.ThreadSafeMessageBox(strerr, _("Error"), CClientUIInterface::OK | CClientUIInterface::MODAL);
StartShutdown();
return;
}
rpc_worker_group = new boost::thread_group();
for (int i = 0; i < gArgs.GetArg("-rpcthreads", 4); i++)
rpc_worker_group->create_thread(boost::bind(&ioContext::run, rpc_io_service));
}
void StopRPCThreads()
{
LogPrintf("Stop RPC IO service\n");
if(!rpc_io_service)
{
LogPrintf("RPC IO server not started\n");
return;
}
rpc_io_service->stop();
if (rpc_worker_group != nullptr) {
rpc_worker_group->join_all();
}
delete rpc_worker_group;
rpc_worker_group = nullptr;
delete rpc_ssl_context;
rpc_ssl_context = nullptr;
delete rpc_io_service;
rpc_io_service = nullptr;
}
class JSONRequest
{
public:
UniValue id;
string strMethod;
UniValue params;
JSONRequest() { id = NullUniValue; }
void parse(const UniValue& valRequest);
};
void JSONRequest::parse(const UniValue& valRequest)
{
// Parse request
if (!valRequest.isObject())
throw JSONRPCError(RPC_INVALID_REQUEST, "Invalid Request object");
const UniValue& request = valRequest.get_obj();
// Parse id now so errors from here on will have the id
id = find_value(request, "id");
// Parse method
UniValue valMethod = find_value(request, "method");
if (valMethod.isNull())
throw JSONRPCError(RPC_INVALID_REQUEST, "Missing method");
if (!valMethod.isStr())
throw JSONRPCError(RPC_INVALID_REQUEST, "Method must be a string");
strMethod = valMethod.get_str();
if (strMethod != "getwork" && strMethod != "getblocktemplate")
LogPrint(BCLog::LogFlags::NOISY, "ThreadRPCServer method=%s", strMethod);
// Parse params
UniValue valParams = find_value(request, "params");
if (valParams.isArray())
params = valParams.get_array();
else if (valParams.isNull())
params = UniValue(UniValue::VARR);
else
throw JSONRPCError(RPC_INVALID_REQUEST, "Params must be an array");
}
static UniValue JSONRPCExecOne(const UniValue& req)
{
UniValue rpc_result(UniValue::VOBJ);
JSONRequest jreq;
try
{
jreq.parse(req);
UniValue result = tableRPC.execute(jreq.strMethod, jreq.params);
rpc_result = JSONRPCReplyObj(result, NullUniValue, jreq.id);
}
catch (UniValue& objError)
{
rpc_result = JSONRPCReplyObj(NullUniValue, objError, jreq.id);
}
catch (std::exception& e)
{
rpc_result = JSONRPCReplyObj(NullUniValue,
JSONRPCError(RPC_PARSE_ERROR, e.what()), jreq.id);
}
return rpc_result;
}
static string JSONRPCExecBatch(const UniValue& vReq)
{
UniValue ret(UniValue::VARR);
for (unsigned int reqIdx = 0; reqIdx < vReq.size(); reqIdx++)
ret.push_back(JSONRPCExecOne(vReq[reqIdx]));
return UniValue(ret).write() + "\n";
}
void ServiceConnection(AcceptedConnection *conn)
{
bool fRun = true;
while (fRun && !fShutdown)
{
int nProto = 0;
map<string, string> mapHeaders;
string strRequest, strMethod, strURI;
// Read HTTP request line
if (!ReadHTTPRequestLine(conn->stream(), nProto, strMethod, strURI))
break;
// Read HTTP message headers and body
ReadHTTPMessage(conn->stream(), mapHeaders, strRequest, nProto);
if (strURI != "/") {
conn->stream() << HTTPReply(HTTP_NOT_FOUND, "", false) << std::flush;
break;
}
// Check authorization
if (mapHeaders.count("authorization") == 0)
{
conn->stream() << HTTPReply(HTTP_UNAUTHORIZED, "", false) << std::flush;
break;
}
if (!HTTPAuthorized(mapHeaders))
{
LogPrintf("ThreadRPCServer incorrect password attempt from %s\n", conn->peer_address_to_string());
/* Deter brute-forcing short passwords.
If this results in a DOS the user really
shouldn't have their RPC port exposed.*/
if (gArgs.GetArgs("-rpcpassword").size() < 20)
MilliSleep(250);
conn->stream() << HTTPReply(HTTP_UNAUTHORIZED, "", false) << std::flush;
break;
}
if (mapHeaders["connection"] == "close")
fRun = false;
JSONRequest jreq;
try
{
// Parse request
UniValue valRequest(UniValue::VSTR);
if (!valRequest.read(strRequest))
throw JSONRPCError(RPC_PARSE_ERROR, "Parse error");
string strReply;
// singleton request
if (valRequest.isObject()) {
jreq.parse(valRequest);
UniValue result = tableRPC.execute(jreq.strMethod, jreq.params);
// Send reply
strReply = JSONRPCReply(result, NullUniValue, jreq.id);
// array of requests
} else if (valRequest.isArray())
strReply = JSONRPCExecBatch(valRequest.get_array());
else
throw JSONRPCError(RPC_PARSE_ERROR, "Top-level object parse error");
conn->stream() << HTTPReply(HTTP_OK, strReply, fRun) << std::flush;
}
catch (UniValue& objError)
{
ErrorReply(conn->stream(), objError, jreq.id);
break;
}
catch (std::exception& e)
{
ErrorReply(conn->stream(), JSONRPCError(RPC_PARSE_ERROR, e.what()), jreq.id);
break;
}
}
}
UniValue CRPCTable::execute(const std::string& strMethod, const UniValue& params) const
{
// Find method
const CRPCCommand *pcmd = tableRPC[strMethod];
if (!pcmd)
throw JSONRPCError(RPC_METHOD_NOT_FOUND, "Method not found");
// Let's add an optional display if BCLog::LogFlags::RPC is set to show how long it takes
// the rpc commands to be performed in milliseconds. We will do this only on successful
// calls not exceptions.
try
{
UniValue result(UniValue::VSTR);
if (LogInstance().WillLogCategory(BCLog::LogFlags::RPC))
{
int64_t nRPCtimebegin;
int64_t nRPCtimetotal;
nRPCtimebegin = GetTimeMillis();
result = pcmd->actor(params, false);
nRPCtimetotal = GetTimeMillis() - nRPCtimebegin;
LogPrintf("RPCTime : Command %s -> Totaltime %" PRId64 "ms", strMethod, nRPCtimetotal);
}
else
result = pcmd->actor(params, false);
return result;
}
catch (std::exception& e)
{
throw JSONRPCError(RPC_MISC_ERROR, e.what());
}
}
std::vector<std::string> CRPCTable::listCommands() const
{
std::vector<std::string> commandList;
typedef std::map<std::string, const CRPCCommand*> commandMap;
std::transform( mapCommands.begin(), mapCommands.end(),
std::back_inserter(commandList),
boost::bind(&commandMap::value_type::first,_1) );
// remove deprecated commands from autocomplete
for(auto &command: DEPRECATED_RPCS) {
std::remove(commandList.begin(), commandList.end(), command);
}
return commandList;
}
#ifdef TEST
int main(int argc, char *argv[])
{
#ifdef _MSC_VER
// Turn off Microsoft heap dump noise
_CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
_CrtSetReportFile(_CRT_WARN, CreateFile("NUL", GENERIC_WRITE, 0, nullptr, OPEN_EXISTING, 0, 0));
#endif
setbuf(stdin, nullptr);
setbuf(stdout, nullptr);
setbuf(stderr, nullptr);
try
{
if (argc >= 2 && string(argv[1]) == "-server")
{
LogPrintf("server ready");
ThreadRPCServer(nullptr);
}
else
{
return CommandLineRPC(argc, argv);
}
}
catch (std::exception& e) {
PrintException(&e, "main()");
} catch (...) {
PrintException(nullptr, "main()");
}
return 0;
}
#endif
const CRPCTable tableRPC;