Branch data Line data Source code
1 : : // Copyright (c) 2017-2022 The Bitcoin Core developers
2 : : // Distributed under the MIT software license, see the accompanying
3 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 : :
5 : : #include <bitcoin-build-config.h> // IWYU pragma: keep
6 : :
7 : : #include <clientversion.h>
8 : : #include <common/args.h>
9 : : #include <common/messages.h>
10 : : #include <common/types.h>
11 : : #include <consensus/amount.h>
12 : : #include <core_io.h>
13 : : #include <key_io.h>
14 : : #include <node/types.h>
15 : : #include <outputtype.h>
16 : : #include <rpc/util.h>
17 : : #include <script/descriptor.h>
18 : : #include <script/interpreter.h>
19 : : #include <script/signingprovider.h>
20 : : #include <script/solver.h>
21 : : #include <tinyformat.h>
22 : : #include <uint256.h>
23 : : #include <univalue.h>
24 : : #include <util/check.h>
25 : : #include <util/result.h>
26 : : #include <util/strencodings.h>
27 : : #include <util/string.h>
28 : : #include <util/translation.h>
29 : :
30 : : #include <algorithm>
31 : : #include <iterator>
32 : : #include <string_view>
33 : : #include <tuple>
34 : : #include <utility>
35 : :
36 : : using common::PSBTError;
37 : : using common::PSBTErrorString;
38 : : using common::TransactionErrorString;
39 : : using node::TransactionError;
40 : : using util::Join;
41 : : using util::SplitString;
42 : : using util::TrimString;
43 : :
44 : : const std::string UNIX_EPOCH_TIME = "UNIX epoch time";
45 : : const std::string EXAMPLE_ADDRESS[2] = {"bc1q09vm5lfy0j5reeulh4x5752q25uqqvz34hufdl", "bc1q02ad21edsxd23d32dfgqqsz4vv4nmtfzuklhy3"};
46 : :
47 : 1510 : std::string GetAllOutputTypes()
48 : : {
49 : 1510 : std::vector<std::string> ret;
50 : 1510 : using U = std::underlying_type<TxoutType>::type;
51 [ + + ]: 18120 : for (U i = (U)TxoutType::NONSTANDARD; i <= (U)TxoutType::WITNESS_UNKNOWN; ++i) {
52 [ + - + - ]: 33220 : ret.emplace_back(GetTxnOutputType(static_cast<TxoutType>(i)));
53 : : }
54 [ + - ]: 3020 : return Join(ret, ", ");
55 : 1510 : }
56 : :
57 : 1 : void RPCTypeCheckObj(const UniValue& o,
58 : : const std::map<std::string, UniValueType>& typesExpected,
59 : : bool fAllowNull,
60 : : bool fStrict)
61 : : {
62 [ + - ]: 1 : for (const auto& t : typesExpected) {
63 : 1 : const UniValue& v = o.find_value(t.first);
64 [ + - + - ]: 1 : if (!fAllowNull && v.isNull())
65 [ + - + - ]: 2 : throw JSONRPCError(RPC_TYPE_ERROR, strprintf("Missing %s", t.first));
66 : :
67 [ # # # # : 0 : if (!(t.second.typeAny || v.type() == t.second.type || (fAllowNull && v.isNull())))
# # ]
68 [ # # # # : 0 : throw JSONRPCError(RPC_TYPE_ERROR, strprintf("JSON value of type %s for field %s is not of expected type %s", uvTypeName(v.type()), t.first, uvTypeName(t.second.type)));
# # # # ]
69 : : }
70 : :
71 [ # # ]: 0 : if (fStrict)
72 : : {
73 [ # # ]: 0 : for (const std::string& k : o.getKeys())
74 : : {
75 [ # # ]: 0 : if (typesExpected.count(k) == 0)
76 : : {
77 : 0 : std::string err = strprintf("Unexpected key %s", k);
78 [ # # ]: 0 : throw JSONRPCError(RPC_TYPE_ERROR, err);
79 : 0 : }
80 : : }
81 : : }
82 : 0 : }
83 : :
84 : 15 : int ParseVerbosity(const UniValue& arg, int default_verbosity, bool allow_bool)
85 : : {
86 [ + + ]: 15 : if (!arg.isNull()) {
87 [ + + ]: 13 : if (arg.isBool()) {
88 [ - + ]: 5 : if (!allow_bool) {
89 [ # # # # ]: 0 : throw JSONRPCError(RPC_TYPE_ERROR, "Verbosity was boolean but only integer allowed");
90 : : }
91 : 5 : return arg.get_bool(); // true = 1
92 : : } else {
93 : 8 : return arg.getInt<int>();
94 : : }
95 : : }
96 : : return default_verbosity;
97 : : }
98 : :
99 : 2510 : CAmount AmountFromValue(const UniValue& value, int decimals)
100 : : {
101 [ + + + + ]: 2510 : if (!value.isNum() && !value.isStr())
102 [ + - + - ]: 188 : throw JSONRPCError(RPC_TYPE_ERROR, "Amount is not a number or string");
103 : 2416 : CAmount amount;
104 [ + + ]: 2416 : if (!ParseFixedPoint(value.getValStr(), decimals, &amount))
105 [ + - + - ]: 3914 : throw JSONRPCError(RPC_TYPE_ERROR, "Invalid amount");
106 [ + + ]: 459 : if (!MoneyRange(amount))
107 [ + - + - ]: 32 : throw JSONRPCError(RPC_TYPE_ERROR, "Amount out of range");
108 : 443 : return amount;
109 : : }
110 : :
111 : 452 : CFeeRate ParseFeeRate(const UniValue& json)
112 : : {
113 : 452 : CAmount val{AmountFromValue(json)};
114 [ + + + - : 427 : if (val >= COIN) throw JSONRPCError(RPC_INVALID_PARAMETER, "Fee rates larger than or equal to 1BTC/kvB are not accepted");
+ - ]
115 : 419 : return CFeeRate{val};
116 : : }
117 : :
118 : 8257 : uint256 ParseHashV(const UniValue& v, std::string_view name)
119 : : {
120 : 8257 : const std::string& strHex(v.get_str());
121 [ + + ]: 3880 : if (auto rv{uint256::FromHex(strHex)}) return *rv;
122 [ + + ]: 3762 : if (auto expected_len{uint256::size() * 2}; strHex.length() != expected_len) {
123 [ + - + - ]: 7502 : throw JSONRPCError(RPC_INVALID_PARAMETER, strprintf("%s must be of length %d (not %d, for '%s')", name, expected_len, strHex.length(), strHex));
124 : : }
125 [ + - + - ]: 22 : throw JSONRPCError(RPC_INVALID_PARAMETER, strprintf("%s must be hexadecimal string (not '%s')", name, strHex));
126 : : }
127 : 4066 : uint256 ParseHashO(const UniValue& o, std::string_view strKey)
128 : : {
129 : 4066 : return ParseHashV(o.find_value(strKey), strKey);
130 : : }
131 : 8972 : std::vector<unsigned char> ParseHexV(const UniValue& v, std::string_view name)
132 : : {
133 [ + + ]: 8972 : std::string strHex;
134 [ + + ]: 8972 : if (v.isStr())
135 [ + - + - ]: 4597 : strHex = v.get_str();
136 [ + - + + ]: 8972 : if (!IsHex(strHex))
137 [ + - + - ]: 16242 : throw JSONRPCError(RPC_INVALID_PARAMETER, strprintf("%s must be hexadecimal string (not '%s')", name, strHex));
138 [ + - ]: 851 : return ParseHex(strHex);
139 : 851 : }
140 : 4066 : std::vector<unsigned char> ParseHexO(const UniValue& o, std::string_view strKey)
141 : : {
142 : 4066 : return ParseHexV(o.find_value(strKey), strKey);
143 : : }
144 : :
145 : : namespace {
146 : :
147 : : /**
148 : : * Quote an argument for shell.
149 : : *
150 : : * @note This is intended for help, not for security-sensitive purposes.
151 : : */
152 : 0 : std::string ShellQuote(const std::string& s)
153 : : {
154 [ # # ]: 0 : std::string result;
155 [ # # ]: 0 : result.reserve(s.size() * 2);
156 [ # # ]: 0 : for (const char ch: s) {
157 [ # # ]: 0 : if (ch == '\'') {
158 [ # # ]: 0 : result += "'\''";
159 : : } else {
160 [ # # ]: 0 : result += ch;
161 : : }
162 : : }
163 [ # # ]: 0 : return "'" + result + "'";
164 : 0 : }
165 : :
166 : : /**
167 : : * Shell-quotes the argument if it needs quoting, else returns it literally, to save typing.
168 : : *
169 : : * @note This is intended for help, not for security-sensitive purposes.
170 : : */
171 : 0 : std::string ShellQuoteIfNeeded(const std::string& s)
172 : : {
173 [ # # ]: 0 : for (const char ch: s) {
174 [ # # ]: 0 : if (ch == ' ' || ch == '\'' || ch == '"') {
175 : 0 : return ShellQuote(s);
176 : : }
177 : : }
178 : :
179 : 0 : return s;
180 : : }
181 : :
182 : : }
183 : :
184 : 17641 : std::string HelpExampleCli(const std::string& methodname, const std::string& args)
185 : : {
186 [ + - + - ]: 52923 : return "> bitcoin-cli " + methodname + " " + args + "\n";
187 : : }
188 : :
189 : 0 : std::string HelpExampleCliNamed(const std::string& methodname, const RPCArgList& args)
190 : : {
191 : 0 : std::string result = "> bitcoin-cli -named " + methodname;
192 [ # # ]: 0 : for (const auto& argpair: args) {
193 [ # # ]: 0 : const auto& value = argpair.second.isStr()
194 [ # # # # ]: 0 : ? argpair.second.get_str()
195 [ # # # # ]: 0 : : argpair.second.write();
196 [ # # # # : 0 : result += " " + argpair.first + "=" + ShellQuoteIfNeeded(value);
# # ]
197 : 0 : }
198 [ # # ]: 0 : result += "\n";
199 : 0 : return result;
200 : 0 : }
201 : :
202 : 11001 : std::string HelpExampleRpc(const std::string& methodname, const std::string& args)
203 : : {
204 : 11001 : return "> curl --user myusername --data-binary '{\"jsonrpc\": \"2.0\", \"id\": \"curltest\", "
205 [ + - + - ]: 33003 : "\"method\": \"" + methodname + "\", \"params\": [" + args + "]}' -H 'content-type: application/json' http://127.0.0.1:8332/\n";
206 : : }
207 : :
208 : 0 : std::string HelpExampleRpcNamed(const std::string& methodname, const RPCArgList& args)
209 : : {
210 : 0 : UniValue params(UniValue::VOBJ);
211 [ # # ]: 0 : for (const auto& param: args) {
212 [ # # # # : 0 : params.pushKV(param.first, param.second);
# # ]
213 : : }
214 : :
215 : 0 : return "> curl --user myusername --data-binary '{\"jsonrpc\": \"2.0\", \"id\": \"curltest\", "
216 [ # # # # : 0 : "\"method\": \"" + methodname + "\", \"params\": " + params.write() + "}' -H 'content-type: application/json' http://127.0.0.1:8332/\n";
# # ]
217 : 0 : }
218 : :
219 : : // Converts a hex string to a public key if possible
220 : 1665 : CPubKey HexToPubKey(const std::string& hex_in)
221 : : {
222 [ + + ]: 1665 : if (!IsHex(hex_in)) {
223 [ + - + - ]: 192 : throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Pubkey \"" + hex_in + "\" must be a hex string");
224 : : }
225 [ + + + + ]: 1601 : if (hex_in.length() != 66 && hex_in.length() != 130) {
226 [ + - + - ]: 687 : throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Pubkey \"" + hex_in + "\" must have a length of either 33 or 65 bytes");
227 : : }
228 : 1372 : CPubKey vchPubKey(ParseHex(hex_in));
229 [ + + ]: 1372 : if (!vchPubKey.IsFullyValid()) {
230 [ + - + - ]: 54 : throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Pubkey \"" + hex_in + "\" must be cryptographically valid.");
231 : : }
232 : 1354 : return vchPubKey;
233 : : }
234 : :
235 : : // Retrieves a public key for an address from the given FillableSigningProvider
236 : 486 : CPubKey AddrToPubKey(const FillableSigningProvider& keystore, const std::string& addr_in)
237 : : {
238 : 486 : CTxDestination dest = DecodeDestination(addr_in);
239 [ + - - + ]: 486 : if (!IsValidDestination(dest)) {
240 [ # # # # ]: 0 : throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid address: " + addr_in);
241 : : }
242 [ + - ]: 486 : CKeyID key = GetKeyForDestination(keystore, dest);
243 [ - + ]: 486 : if (key.IsNull()) {
244 [ # # # # ]: 0 : throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, strprintf("'%s' does not refer to a key", addr_in));
245 : : }
246 [ + - ]: 486 : CPubKey vchPubKey;
247 [ + - - + ]: 486 : if (!keystore.GetPubKey(key, vchPubKey)) {
248 [ # # # # ]: 0 : throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, strprintf("no full public key for address %s", addr_in));
249 : : }
250 [ + - - + ]: 486 : if (!vchPubKey.IsFullyValid()) {
251 [ # # # # ]: 0 : throw JSONRPCError(RPC_INTERNAL_ERROR, "Wallet contains an invalid public key");
252 : : }
253 : 486 : return vchPubKey;
254 : 486 : }
255 : :
256 : : // Creates a multisig address from a given list of public keys, number of signatures required, and the address type
257 : 42 : CTxDestination AddAndGetMultisigDestination(const int required, const std::vector<CPubKey>& pubkeys, OutputType type, FlatSigningProvider& keystore, CScript& script_out)
258 : : {
259 : : // Gather public keys
260 [ + + ]: 42 : if (required < 1) {
261 [ + - + - ]: 4 : throw JSONRPCError(RPC_INVALID_PARAMETER, "a multisignature address must require at least one key to redeem");
262 : : }
263 [ + + ]: 40 : if ((int)pubkeys.size() < required) {
264 [ + - + - ]: 20 : throw JSONRPCError(RPC_INVALID_PARAMETER, strprintf("not enough keys supplied (got %u keys, but need at least %d to redeem)", pubkeys.size(), required));
265 : : }
266 [ + + ]: 30 : if (pubkeys.size() > MAX_PUBKEYS_PER_MULTISIG) {
267 [ + - + - ]: 4 : throw JSONRPCError(RPC_INVALID_PARAMETER, strprintf("Number of keys involved in the multisignature address creation > %d\nReduce the number", MAX_PUBKEYS_PER_MULTISIG));
268 : : }
269 : :
270 : 28 : script_out = GetScriptForMultisig(required, pubkeys);
271 : :
272 : : // Check if any keys are uncompressed. If so, the type is legacy
273 [ + + ]: 186 : for (const CPubKey& pk : pubkeys) {
274 [ + + ]: 182 : if (!pk.IsCompressed()) {
275 : : type = OutputType::LEGACY;
276 : : break;
277 : : }
278 : : }
279 : :
280 [ + - + - : 28 : if (type == OutputType::LEGACY && script_out.size() > MAX_SCRIPT_ELEMENT_SIZE) {
+ + ]
281 [ + - + - : 18 : throw JSONRPCError(RPC_INVALID_PARAMETER, (strprintf("redeemScript exceeds size limit: %d > %d", script_out.size(), MAX_SCRIPT_ELEMENT_SIZE)));
+ - ]
282 : : }
283 : :
284 : : // Make the address
285 : 22 : CTxDestination dest = AddAndGetDestinationForScript(keystore, script_out, type);
286 : :
287 : 22 : return dest;
288 : : }
289 : :
290 : : class DescribeAddressVisitor
291 : : {
292 : : public:
293 : : explicit DescribeAddressVisitor() = default;
294 : :
295 : 1571 : UniValue operator()(const CNoDestination& dest) const
296 : : {
297 : 1571 : return UniValue(UniValue::VOBJ);
298 : : }
299 : :
300 : 29 : UniValue operator()(const PubKeyDestination& dest) const
301 : : {
302 : 29 : return UniValue(UniValue::VOBJ);
303 : : }
304 : :
305 : 20 : UniValue operator()(const PKHash& keyID) const
306 : : {
307 : 20 : UniValue obj(UniValue::VOBJ);
308 [ + - + - : 40 : obj.pushKV("isscript", false);
+ - ]
309 [ + - + - : 40 : obj.pushKV("iswitness", false);
+ - ]
310 : 20 : return obj;
311 : 0 : }
312 : :
313 : 24 : UniValue operator()(const ScriptHash& scriptID) const
314 : : {
315 : 24 : UniValue obj(UniValue::VOBJ);
316 [ + - + - : 48 : obj.pushKV("isscript", true);
+ - ]
317 [ + - + - : 48 : obj.pushKV("iswitness", false);
+ - ]
318 : 24 : return obj;
319 : 0 : }
320 : :
321 : 12 : UniValue operator()(const WitnessV0KeyHash& id) const
322 : : {
323 : 12 : UniValue obj(UniValue::VOBJ);
324 [ + - + - : 24 : obj.pushKV("isscript", false);
+ - ]
325 [ + - + - : 24 : obj.pushKV("iswitness", true);
+ - ]
326 [ + - + - : 24 : obj.pushKV("witness_version", 0);
+ - ]
327 [ + - + - : 24 : obj.pushKV("witness_program", HexStr(id));
+ - + - ]
328 : 12 : return obj;
329 : 0 : }
330 : :
331 : 13 : UniValue operator()(const WitnessV0ScriptHash& id) const
332 : : {
333 : 13 : UniValue obj(UniValue::VOBJ);
334 [ + - + - : 26 : obj.pushKV("isscript", true);
+ - ]
335 [ + - + - : 26 : obj.pushKV("iswitness", true);
+ - ]
336 [ + - + - : 26 : obj.pushKV("witness_version", 0);
+ - ]
337 [ + - + - : 26 : obj.pushKV("witness_program", HexStr(id));
+ - + - ]
338 : 13 : return obj;
339 : 0 : }
340 : :
341 : 17 : UniValue operator()(const WitnessV1Taproot& tap) const
342 : : {
343 : 17 : UniValue obj(UniValue::VOBJ);
344 [ + - + - : 34 : obj.pushKV("isscript", true);
+ - ]
345 [ + - + - : 34 : obj.pushKV("iswitness", true);
+ - ]
346 [ + - + - : 34 : obj.pushKV("witness_version", 1);
+ - ]
347 [ + - + - : 34 : obj.pushKV("witness_program", HexStr(tap));
+ - + - ]
348 : 17 : return obj;
349 : 0 : }
350 : :
351 : 19 : UniValue operator()(const PayToAnchor& anchor) const
352 : : {
353 : 19 : UniValue obj(UniValue::VOBJ);
354 [ + - + - : 38 : obj.pushKV("isscript", true);
+ - ]
355 [ + - + - : 38 : obj.pushKV("iswitness", true);
+ - ]
356 : 19 : return obj;
357 : 0 : }
358 : :
359 : 65 : UniValue operator()(const WitnessUnknown& id) const
360 : : {
361 : 65 : UniValue obj(UniValue::VOBJ);
362 [ + - + - : 130 : obj.pushKV("iswitness", true);
+ - ]
363 [ + - + - : 130 : obj.pushKV("witness_version", id.GetWitnessVersion());
+ - ]
364 [ + - + - : 130 : obj.pushKV("witness_program", HexStr(id.GetWitnessProgram()));
+ - + - ]
365 : 65 : return obj;
366 : 0 : }
367 : : };
368 : :
369 : 1770 : UniValue DescribeAddress(const CTxDestination& dest)
370 : : {
371 : 1770 : return std::visit(DescribeAddressVisitor(), dest);
372 : : }
373 : :
374 : : /**
375 : : * Returns a sighash value corresponding to the passed in argument.
376 : : *
377 : : * @pre The sighash argument should be string or null.
378 : : */
379 : 2079 : int ParseSighashString(const UniValue& sighash)
380 : : {
381 [ + + ]: 2079 : if (sighash.isNull()) {
382 : : return SIGHASH_DEFAULT;
383 : : }
384 : 1884 : const auto result{SighashFromStr(sighash.get_str())};
385 [ + + ]: 1884 : if (!result) {
386 [ + - + - ]: 3764 : throw JSONRPCError(RPC_INVALID_PARAMETER, util::ErrorString(result).original);
387 : : }
388 : 2 : return result.value();
389 : 2 : }
390 : :
391 : 2033 : unsigned int ParseConfirmTarget(const UniValue& value, unsigned int max_target)
392 : : {
393 : 2033 : const int target{value.getInt<int>()};
394 : 8 : const unsigned int unsigned_target{static_cast<unsigned int>(target)};
395 [ + + - + ]: 8 : if (target < 1 || unsigned_target > max_target) {
396 [ + - + - ]: 6 : throw JSONRPCError(RPC_INVALID_PARAMETER, strprintf("Invalid conf_target, must be between %u and %u", 1, max_target));
397 : : }
398 : 5 : return unsigned_target;
399 : : }
400 : :
401 : 0 : RPCErrorCode RPCErrorFromPSBTError(PSBTError err)
402 : : {
403 [ # # # ]: 0 : switch (err) {
404 : : case PSBTError::UNSUPPORTED:
405 : : return RPC_INVALID_PARAMETER;
406 : 0 : case PSBTError::SIGHASH_MISMATCH:
407 : 0 : return RPC_DESERIALIZATION_ERROR;
408 : 0 : default: break;
409 : : }
410 : 0 : return RPC_TRANSACTION_ERROR;
411 : : }
412 : :
413 : 262 : RPCErrorCode RPCErrorFromTransactionError(TransactionError terr)
414 : : {
415 [ + + + ]: 262 : switch (terr) {
416 : : case TransactionError::MEMPOOL_REJECTED:
417 : : return RPC_TRANSACTION_REJECTED;
418 : 18 : case TransactionError::ALREADY_IN_UTXO_SET:
419 : 18 : return RPC_VERIFY_ALREADY_IN_UTXO_SET;
420 : 151 : default: break;
421 : : }
422 : 151 : return RPC_TRANSACTION_ERROR;
423 : : }
424 : :
425 : 0 : UniValue JSONRPCPSBTError(PSBTError err)
426 : : {
427 [ # # # # ]: 0 : return JSONRPCError(RPCErrorFromPSBTError(err), PSBTErrorString(err).original);
428 : : }
429 : :
430 : 210 : UniValue JSONRPCTransactionError(TransactionError terr, const std::string& err_string)
431 : : {
432 [ + + ]: 210 : if (err_string.length() > 0) {
433 : 129 : return JSONRPCError(RPCErrorFromTransactionError(terr), err_string);
434 : : } else {
435 [ + - + - ]: 162 : return JSONRPCError(RPCErrorFromTransactionError(terr), TransactionErrorString(terr).original);
436 : : }
437 : : }
438 : :
439 : : /**
440 : : * A pair of strings that can be aligned (through padding) with other Sections
441 : : * later on
442 : : */
443 : 61340 : struct Section {
444 : 19587 : Section(const std::string& left, const std::string& right)
445 [ + - ]: 19587 : : m_left{left}, m_right{right} {}
446 : : std::string m_left;
447 : : const std::string m_right;
448 : : };
449 : :
450 : : /**
451 : : * Keeps track of RPCArgs by transforming them into sections for the purpose
452 : : * of serializing everything to a single string
453 : : */
454 : 0 : struct Sections {
455 : : std::vector<Section> m_sections;
456 : : size_t m_max_pad{0};
457 : :
458 : 18164 : void PushSection(const Section& s)
459 : : {
460 [ + + ]: 18164 : m_max_pad = std::max(m_max_pad, s.m_left.size());
461 : 18164 : m_sections.push_back(s);
462 : 18164 : }
463 : :
464 : : /**
465 : : * Recursive helper to translate an RPCArg into sections
466 : : */
467 : : // NOLINTNEXTLINE(misc-no-recursion)
468 : 2151 : void Push(const RPCArg& arg, const size_t current_indent = 5, const OuterType outer_type = OuterType::NONE)
469 : : {
470 [ + - ]: 2151 : const auto indent = std::string(current_indent, ' ');
471 [ + - + + : 2151 : const auto indent_next = std::string(current_indent + 2, ' ');
+ - ]
472 : 2151 : const bool push_name{outer_type == OuterType::OBJ}; // Dictionary keys must have a name
473 : 2151 : const bool is_top_level_arg{outer_type == OuterType::NONE}; // True on the first recursion
474 : :
475 [ + + + - ]: 2151 : switch (arg.m_type) {
476 : 1750 : case RPCArg::Type::STR_HEX:
477 : 1750 : case RPCArg::Type::STR:
478 : 1750 : case RPCArg::Type::NUM:
479 : 1750 : case RPCArg::Type::AMOUNT:
480 : 1750 : case RPCArg::Type::RANGE:
481 : 1750 : case RPCArg::Type::BOOL:
482 : 1750 : case RPCArg::Type::OBJ_NAMED_PARAMS: {
483 [ + + ]: 1750 : if (is_top_level_arg) return; // Nothing more to do for non-recursive types on first recursion
484 [ + - ]: 531 : auto left = indent;
485 [ - + - - ]: 531 : if (arg.m_opts.type_str.size() != 0 && push_name) {
486 [ # # # # : 0 : left += "\"" + arg.GetName() + "\": " + arg.m_opts.type_str.at(0);
# # # # ]
487 : : } else {
488 [ + + + - : 1062 : left += push_name ? arg.ToStringObj(/*oneline=*/false) : arg.ToString(/*oneline=*/false);
+ - ]
489 : : }
490 [ + - ]: 531 : left += ",";
491 [ + - + - : 1062 : PushSection({left, arg.ToDescriptionString(/*is_named_arg=*/push_name)});
+ - ]
492 : 531 : break;
493 : 531 : }
494 : 157 : case RPCArg::Type::OBJ:
495 : 157 : case RPCArg::Type::OBJ_USER_KEYS: {
496 [ + + + - : 157 : const auto right = is_top_level_arg ? "" : arg.ToDescriptionString(/*is_named_arg=*/push_name);
+ - ]
497 [ - + - - : 471 : PushSection({indent + (push_name ? "\"" + arg.GetName() + "\": " : "") + "{", right});
- - - - +
- + - + -
+ - - + -
+ - - -
- ]
498 [ + + ]: 522 : for (const auto& arg_inner : arg.m_inner) {
499 [ + - ]: 365 : Push(arg_inner, current_indent + 2, OuterType::OBJ);
500 : : }
501 [ + + ]: 157 : if (arg.m_type != RPCArg::Type::OBJ) {
502 [ + - + - : 56 : PushSection({indent_next + "...", ""});
+ - + - ]
503 : : }
504 [ + + + - : 619 : PushSection({indent + "}" + (is_top_level_arg ? "" : ","), ""});
+ - + - +
- ]
505 : 157 : break;
506 : 157 : }
507 : 244 : case RPCArg::Type::ARR: {
508 [ + - ]: 244 : auto left = indent;
509 [ + + + - : 524 : left += push_name ? "\"" + arg.GetName() + "\": " : "";
+ - + - +
- + + + +
- - - - ]
510 [ + - ]: 244 : left += "[";
511 [ + + + - : 244 : const auto right = is_top_level_arg ? "" : arg.ToDescriptionString(/*is_named_arg=*/push_name);
+ - ]
512 [ + - + - ]: 244 : PushSection({left, right});
513 [ + + ]: 576 : for (const auto& arg_inner : arg.m_inner) {
514 [ + - ]: 332 : Push(arg_inner, current_indent + 2, OuterType::ARR);
515 : : }
516 [ + - + - : 488 : PushSection({indent_next + "...", ""});
+ - + - ]
517 [ + + + - : 750 : PushSection({indent + "]" + (is_top_level_arg ? "" : ","), ""});
+ - + - +
- ]
518 : 244 : break;
519 : 244 : }
520 : : } // no default case, so the compiler can warn about missing cases
521 : 2151 : }
522 : :
523 : : /**
524 : : * Concatenate all sections with proper padding
525 : : */
526 : 3028 : std::string ToString() const
527 : : {
528 : 3028 : std::string ret;
529 : 3028 : const size_t pad = m_max_pad + 4;
530 [ + + ]: 22615 : for (const auto& s : m_sections) {
531 : : // The left part of a section is assumed to be a single line, usually it is the name of the JSON struct or a
532 : : // brace like {, }, [, or ]
533 [ + - ]: 19587 : CHECK_NONFATAL(s.m_left.find('\n') == std::string::npos);
534 [ + + ]: 19587 : if (s.m_right.empty()) {
535 [ + - ]: 5830 : ret += s.m_left;
536 [ + - ]: 5830 : ret += "\n";
537 : 5830 : continue;
538 : : }
539 : :
540 [ + - ]: 13757 : std::string left = s.m_left;
541 [ + - ]: 13757 : left.resize(pad, ' ');
542 [ + - ]: 13757 : ret += left;
543 : :
544 : : // Properly pad after newlines
545 : 13757 : std::string right;
546 : 13757 : size_t begin = 0;
547 : 13757 : size_t new_line_pos = s.m_right.find_first_of('\n');
548 : 16259 : while (true) {
549 [ + - ]: 30016 : right += s.m_right.substr(begin, new_line_pos - begin);
550 [ + + ]: 15008 : if (new_line_pos == std::string::npos) {
551 : : break; //No new line
552 : : }
553 [ + - + - ]: 2734 : right += "\n" + std::string(pad, ' ');
554 : 1367 : begin = s.m_right.find_first_not_of(' ', new_line_pos + 1);
555 [ + + ]: 1367 : if (begin == std::string::npos) {
556 : : break; // Empty line
557 : : }
558 : 1251 : new_line_pos = s.m_right.find_first_of('\n', begin + 1);
559 : : }
560 [ + - ]: 13757 : ret += right;
561 [ + - ]: 13757 : ret += "\n";
562 : 13757 : }
563 : 3028 : return ret;
564 : 0 : }
565 : : };
566 : :
567 : 0 : RPCHelpMan::RPCHelpMan(std::string name, std::string description, std::vector<RPCArg> args, RPCResults results, RPCExamples examples)
568 [ # # # # : 0 : : RPCHelpMan{std::move(name), std::move(description), std::move(args), std::move(results), std::move(examples), nullptr} {}
# # ]
569 : :
570 : 14614 : RPCHelpMan::RPCHelpMan(std::string name, std::string description, std::vector<RPCArg> args, RPCResults results, RPCExamples examples, RPCMethodImpl fun)
571 : 14614 : : m_name{std::move(name)},
572 : 14614 : m_fun{std::move(fun)},
573 : 14614 : m_description{std::move(description)},
574 [ + - ]: 14614 : m_args{std::move(args)},
575 [ + - ]: 14614 : m_results{std::move(results)},
576 [ + - ]: 14614 : m_examples{std::move(examples)}
577 : : {
578 : : // Map of parameter names and types just used to check whether the names are
579 : : // unique. Parameter names always need to be unique, with the exception that
580 : : // there can be pairs of POSITIONAL and NAMED parameters with the same name.
581 : 14614 : enum ParamType { POSITIONAL = 1, NAMED = 2, NAMED_ONLY = 4 };
582 : 14614 : std::map<std::string, int> param_names;
583 : :
584 [ + + ]: 37494 : for (const auto& arg : m_args) {
585 [ + - ]: 22880 : std::vector<std::string> names = SplitString(arg.m_names, '|');
586 : : // Should have unique named arguments
587 [ + + ]: 45896 : for (const std::string& name : names) {
588 [ + - ]: 23016 : auto& param_type = param_names[name];
589 [ + - ]: 23016 : CHECK_NONFATAL(!(param_type & POSITIONAL));
590 [ + - ]: 23016 : CHECK_NONFATAL(!(param_type & NAMED_ONLY));
591 : 23016 : param_type |= POSITIONAL;
592 : : }
593 [ + + ]: 22880 : if (arg.m_type == RPCArg::Type::OBJ_NAMED_PARAMS) {
594 [ + + ]: 480 : for (const auto& inner : arg.m_inner) {
595 [ + - ]: 297 : std::vector<std::string> inner_names = SplitString(inner.m_names, '|');
596 [ + + ]: 594 : for (const std::string& inner_name : inner_names) {
597 [ + - ]: 297 : auto& param_type = param_names[inner_name];
598 [ - + - - : 297 : CHECK_NONFATAL(!(param_type & POSITIONAL) || inner.m_opts.also_positional);
+ - ]
599 [ + - ]: 297 : CHECK_NONFATAL(!(param_type & NAMED));
600 [ + - ]: 297 : CHECK_NONFATAL(!(param_type & NAMED_ONLY));
601 [ + - ]: 594 : param_type |= inner.m_opts.also_positional ? NAMED : NAMED_ONLY;
602 : : }
603 : 297 : }
604 : : }
605 : : // Default value type should match argument type only when defined
606 [ + + ]: 22880 : if (arg.m_fallback.index() == 2) {
607 : 4986 : const RPCArg::Type type = arg.m_type;
608 [ - - + + : 4986 : switch (std::get<RPCArg::Default>(arg.m_fallback).getType()) {
+ - - ]
609 : 0 : case UniValue::VOBJ:
610 [ # # ]: 0 : CHECK_NONFATAL(type == RPCArg::Type::OBJ);
611 : : break;
612 : 0 : case UniValue::VARR:
613 [ # # ]: 0 : CHECK_NONFATAL(type == RPCArg::Type::ARR);
614 : : break;
615 : 2087 : case UniValue::VSTR:
616 [ + + - + : 4174 : CHECK_NONFATAL(type == RPCArg::Type::STR || type == RPCArg::Type::STR_HEX || type == RPCArg::Type::AMOUNT);
- ]
617 : : break;
618 : 1024 : case UniValue::VNUM:
619 [ + - - + : 2048 : CHECK_NONFATAL(type == RPCArg::Type::NUM || type == RPCArg::Type::AMOUNT || type == RPCArg::Type::RANGE);
- ]
620 : : break;
621 : 1875 : case UniValue::VBOOL:
622 [ + - ]: 1875 : CHECK_NONFATAL(type == RPCArg::Type::BOOL);
623 : : break;
624 : : case UniValue::VNULL:
625 : : // Null values are accepted in all arguments
626 : : break;
627 : 0 : default:
628 [ # # ]: 0 : NONFATAL_UNREACHABLE();
629 : : break;
630 : : }
631 : : }
632 : 22880 : }
633 : 14614 : }
634 : :
635 : 959 : std::string RPCResults::ToDescriptionString() const
636 : : {
637 : 959 : std::string result;
638 [ + + ]: 2084 : for (const auto& r : m_results) {
639 [ + + ]: 1125 : if (r.m_type == RPCResult::Type::ANY) continue; // for testing only
640 [ + + ]: 1110 : if (r.m_cond.empty()) {
641 [ + - ]: 830 : result += "\nResult:\n";
642 : : } else {
643 [ + - + - ]: 840 : result += "\nResult (" + r.m_cond + "):\n";
644 : : }
645 : 1110 : Sections sections;
646 [ + - ]: 1110 : r.ToSections(sections);
647 [ + - ]: 2220 : result += sections.ToString();
648 : 1110 : }
649 : 959 : return result;
650 : 0 : }
651 : :
652 : 959 : std::string RPCExamples::ToDescriptionString() const
653 : : {
654 [ + + ]: 959 : return m_examples.empty() ? m_examples : "\nExamples:\n" + m_examples;
655 : : }
656 : :
657 : 7824 : UniValue RPCHelpMan::HandleRequest(const JSONRPCRequest& request) const
658 : : {
659 [ + + ]: 7824 : if (request.mode == JSONRPCRequest::GET_ARGS) {
660 : 107 : return GetArgMap();
661 : : }
662 : : /*
663 : : * Check if the given request is valid according to this command or if
664 : : * the user is asking for help information, and throw help when appropriate.
665 : : */
666 [ + + + + ]: 7717 : if (request.mode == JSONRPCRequest::GET_HELP || !IsValidNumArgs(request.params.size())) {
667 [ + - + - ]: 1916 : throw std::runtime_error(ToString());
668 : : }
669 : 6759 : UniValue arg_mismatch{UniValue::VOBJ};
670 [ + + ]: 18056 : for (size_t i{0}; i < m_args.size(); ++i) {
671 [ + - ]: 11297 : const auto& arg{m_args.at(i)};
672 [ + - + - ]: 11297 : UniValue match{arg.MatchesType(request.params[i])};
673 [ + + ]: 11297 : if (!match.isTrue()) {
674 [ + - + - ]: 136 : arg_mismatch.pushKV(strprintf("Position %s (%s)", i + 1, arg.m_names), std::move(match));
675 : : }
676 : 11297 : }
677 [ + + ]: 6759 : if (!arg_mismatch.empty()) {
678 [ + - + - : 90 : throw JSONRPCError(RPC_TYPE_ERROR, strprintf("Wrong type passed:\n%s", arg_mismatch.write(4)));
+ - ]
679 : : }
680 [ + - ]: 6714 : CHECK_NONFATAL(m_req == nullptr);
681 : 6714 : m_req = &request;
682 [ + + ]: 6714 : UniValue ret = m_fun(*this, request);
683 : 4404 : m_req = nullptr;
684 [ + - + - : 4404 : if (gArgs.GetBoolArg("-rpcdoccheck", DEFAULT_RPC_DOC_CHECK)) {
- + ]
685 : 0 : UniValue mismatch{UniValue::VARR};
686 [ # # ]: 0 : for (const auto& res : m_results.m_results) {
687 [ # # ]: 0 : UniValue match{res.MatchesType(ret)};
688 [ # # ]: 0 : if (match.isTrue()) {
689 [ # # ]: 0 : mismatch.setNull();
690 : 0 : break;
691 : : }
692 [ # # ]: 0 : mismatch.push_back(std::move(match));
693 : 0 : }
694 [ # # ]: 0 : if (!mismatch.isNull()) {
695 [ # # ]: 0 : std::string explain{
696 [ # # ]: 0 : mismatch.empty() ? "no possible results defined" :
697 [ # # # # ]: 0 : mismatch.size() == 1 ? mismatch[0].write(4) :
698 [ # # # # : 0 : mismatch.write(4)};
# # ]
699 : 0 : throw std::runtime_error{
700 : 0 : strprintf("Internal bug detected: RPC call \"%s\" returned incorrect type:\n%s\n%s %s\nPlease report this issue here: %s\n",
701 [ # # ]: 0 : m_name, explain,
702 [ # # ]: 0 : CLIENT_NAME, FormatFullVersion(),
703 [ # # ]: 0 : CLIENT_BUGREPORT)};
704 : 0 : }
705 : 0 : }
706 : 4404 : return ret;
707 : 6759 : }
708 : :
709 : : using CheckFn = void(const RPCArg&);
710 : 693 : static const UniValue* DetailMaybeArg(CheckFn* check, const std::vector<RPCArg>& params, const JSONRPCRequest* req, size_t i)
711 : : {
712 : 693 : CHECK_NONFATAL(i < params.size());
713 : 693 : const UniValue& arg{CHECK_NONFATAL(req)->params[i]};
714 : 693 : const RPCArg& param{params.at(i)};
715 [ + + ]: 693 : if (check) check(param);
716 : :
717 [ + + ]: 693 : if (!arg.isNull()) return &arg;
718 [ + + ]: 411 : if (!std::holds_alternative<RPCArg::Default>(param.m_fallback)) return nullptr;
719 : 410 : return &std::get<RPCArg::Default>(param.m_fallback);
720 : : }
721 : :
722 : 659 : static void CheckRequiredOrDefault(const RPCArg& param)
723 : : {
724 : : // Must use `Arg<Type>(key)` to get the argument or its default value.
725 : 659 : const bool required{
726 [ + + - + ]: 659 : std::holds_alternative<RPCArg::Optional>(param.m_fallback) && RPCArg::Optional::NO == std::get<RPCArg::Optional>(param.m_fallback),
727 : 1129 : };
728 [ + - ]: 1129 : CHECK_NONFATAL(required || std::holds_alternative<RPCArg::Default>(param.m_fallback));
729 : 659 : }
730 : :
731 : : #define TMPL_INST(check_param, ret_type, return_code) \
732 : : template <> \
733 : : ret_type RPCHelpMan::ArgValue<ret_type>(size_t i) const \
734 : : { \
735 : : const UniValue* maybe_arg{ \
736 : : DetailMaybeArg(check_param, m_args, m_req, i), \
737 : : }; \
738 : : return return_code \
739 : : } \
740 : : void force_semicolon(ret_type)
741 : :
742 : : // Optional arg (without default). Can also be called on required args, if needed.
743 : 0 : TMPL_INST(nullptr, const UniValue*, maybe_arg;);
744 [ + + ]: 34 : TMPL_INST(nullptr, std::optional<double>, maybe_arg ? std::optional{maybe_arg->get_real()} : std::nullopt;);
745 [ # # ]: 0 : TMPL_INST(nullptr, std::optional<bool>, maybe_arg ? std::optional{maybe_arg->get_bool()} : std::nullopt;);
746 [ # # ]: 0 : TMPL_INST(nullptr, const std::string*, maybe_arg ? &maybe_arg->get_str() : nullptr;);
747 : :
748 : : // Required arg or optional arg with default value.
749 : 452 : TMPL_INST(CheckRequiredOrDefault, const UniValue&, *CHECK_NONFATAL(maybe_arg););
750 : 0 : TMPL_INST(CheckRequiredOrDefault, bool, CHECK_NONFATAL(maybe_arg)->get_bool(););
751 : 18 : TMPL_INST(CheckRequiredOrDefault, int, CHECK_NONFATAL(maybe_arg)->getInt<int>(););
752 : 0 : TMPL_INST(CheckRequiredOrDefault, uint64_t, CHECK_NONFATAL(maybe_arg)->getInt<uint64_t>(););
753 : 189 : TMPL_INST(CheckRequiredOrDefault, const std::string&, CHECK_NONFATAL(maybe_arg)->get_str(););
754 : :
755 : 7271 : bool RPCHelpMan::IsValidNumArgs(size_t num_args) const
756 : : {
757 : 7271 : size_t num_required_args = 0;
758 [ + + ]: 11612 : for (size_t n = m_args.size(); n > 0; --n) {
759 [ + + ]: 11063 : if (!m_args.at(n - 1).IsOptional()) {
760 : : num_required_args = n;
761 : : break;
762 : : }
763 : : }
764 [ + + + + ]: 7271 : return num_required_args <= num_args && num_args <= m_args.size();
765 : : }
766 : :
767 : 3395 : std::vector<std::pair<std::string, bool>> RPCHelpMan::GetArgNames() const
768 : : {
769 : 3395 : std::vector<std::pair<std::string, bool>> ret;
770 [ + - ]: 3395 : ret.reserve(m_args.size());
771 [ + + ]: 8380 : for (const auto& arg : m_args) {
772 [ + + ]: 4985 : if (arg.m_type == RPCArg::Type::OBJ_NAMED_PARAMS) {
773 [ + + ]: 200 : for (const auto& inner : arg.m_inner) {
774 [ + - ]: 125 : ret.emplace_back(inner.m_names, /*named_only=*/true);
775 : : }
776 : : }
777 [ + - ]: 4985 : ret.emplace_back(arg.m_names, /*named_only=*/false);
778 : : }
779 : 3395 : return ret;
780 : 0 : }
781 : :
782 : 693 : size_t RPCHelpMan::GetParamIndex(std::string_view key) const
783 : : {
784 : 693 : auto it{std::find_if(
785 : 1362 : m_args.begin(), m_args.end(), [&key](const auto& arg) { return arg.GetName() == key;}
786 : : )};
787 : :
788 : 693 : CHECK_NONFATAL(it != m_args.end()); // TODO: ideally this is checked at compile time
789 : 693 : return std::distance(m_args.begin(), it);
790 : : }
791 : :
792 : 959 : std::string RPCHelpMan::ToString() const
793 : : {
794 [ + - ]: 959 : std::string ret;
795 : :
796 : : // Oneline summary
797 [ + - ]: 959 : ret += m_name;
798 : 959 : bool was_optional{false};
799 [ + + ]: 2382 : for (const auto& arg : m_args) {
800 [ + + ]: 1428 : if (arg.m_opts.hidden) break; // Any arg that follows is also hidden
801 [ + - ]: 1423 : const bool optional = arg.IsOptional();
802 [ + - ]: 1423 : ret += " ";
803 [ + + ]: 1423 : if (optional) {
804 [ + + + - ]: 726 : if (!was_optional) ret += "( ";
805 : : was_optional = true;
806 : : } else {
807 [ + + + - ]: 697 : if (was_optional) ret += ") ";
808 : : was_optional = false;
809 : : }
810 [ + - ]: 2846 : ret += arg.ToString(/*oneline=*/true);
811 : : }
812 [ + + + - ]: 959 : if (was_optional) ret += " )";
813 : :
814 : : // Description
815 [ + - + - : 2877 : ret += "\n\n" + TrimString(m_description) + "\n";
+ - ]
816 : :
817 : : // Arguments
818 : 959 : Sections sections;
819 : 959 : Sections named_only_sections;
820 [ + + ]: 2382 : for (size_t i{0}; i < m_args.size(); ++i) {
821 [ + - ]: 1428 : const auto& arg = m_args.at(i);
822 [ + + ]: 1428 : if (arg.m_opts.hidden) break; // Any arg that follows is also hidden
823 : :
824 : : // Push named argument name and description
825 [ + - + - : 4269 : sections.m_sections.emplace_back(util::ToString(i + 1) + ". " + arg.GetFirstName(), arg.ToDescriptionString(/*is_named_arg=*/true));
+ - + - +
- ]
826 [ + + ]: 1423 : sections.m_max_pad = std::max(sections.m_max_pad, sections.m_sections.back().m_left.size());
827 : :
828 : : // Recursively push nested args
829 [ + - ]: 1423 : sections.Push(arg);
830 : :
831 : : // Push named-only argument sections
832 [ + + ]: 1423 : if (arg.m_type == RPCArg::Type::OBJ_NAMED_PARAMS) {
833 [ + + ]: 50 : for (const auto& arg_inner : arg.m_inner) {
834 [ + - + - : 62 : named_only_sections.PushSection({arg_inner.GetFirstName(), arg_inner.ToDescriptionString(/*is_named_arg=*/true)});
+ - + - ]
835 [ + - ]: 31 : named_only_sections.Push(arg_inner);
836 : : }
837 : : }
838 : : }
839 : :
840 [ + + + - ]: 959 : if (!sections.m_sections.empty()) ret += "\nArguments:\n";
841 [ + - ]: 1918 : ret += sections.ToString();
842 [ + + + - ]: 959 : if (!named_only_sections.m_sections.empty()) ret += "\nNamed Arguments:\n";
843 [ + - ]: 1918 : ret += named_only_sections.ToString();
844 : :
845 : : // Result
846 [ + - ]: 1918 : ret += m_results.ToDescriptionString();
847 : :
848 : : // Examples
849 [ + - ]: 1918 : ret += m_examples.ToDescriptionString();
850 : :
851 : 959 : return ret;
852 : 959 : }
853 : :
854 : 107 : UniValue RPCHelpMan::GetArgMap() const
855 : : {
856 : 107 : UniValue arr{UniValue::VARR};
857 : :
858 : 299 : auto push_back_arg_info = [&arr](const std::string& rpc_name, int pos, const std::string& arg_name, const RPCArg::Type& type) {
859 : 192 : UniValue map{UniValue::VARR};
860 [ + - + - ]: 192 : map.push_back(rpc_name);
861 [ + - + - ]: 192 : map.push_back(pos);
862 [ + - + - ]: 192 : map.push_back(arg_name);
863 [ + - + - ]: 192 : map.push_back(type == RPCArg::Type::STR ||
864 : : type == RPCArg::Type::STR_HEX);
865 [ + - ]: 192 : arr.push_back(std::move(map));
866 : 192 : };
867 : :
868 [ + + ]: 292 : for (int i{0}; i < int(m_args.size()); ++i) {
869 [ + - ]: 185 : const auto& arg = m_args.at(i);
870 [ + - ]: 185 : std::vector<std::string> arg_names = SplitString(arg.m_names, '|');
871 [ + + ]: 372 : for (const auto& arg_name : arg_names) {
872 [ + - ]: 187 : push_back_arg_info(m_name, i, arg_name, arg.m_type);
873 [ + + ]: 187 : if (arg.m_type == RPCArg::Type::OBJ_NAMED_PARAMS) {
874 [ + + ]: 8 : for (const auto& inner : arg.m_inner) {
875 [ + - ]: 5 : std::vector<std::string> inner_names = SplitString(inner.m_names, '|');
876 [ + + ]: 10 : for (const std::string& inner_name : inner_names) {
877 [ + - ]: 5 : push_back_arg_info(m_name, i, inner_name, inner.m_type);
878 : : }
879 : 5 : }
880 : : }
881 : : }
882 : 185 : }
883 : 107 : return arr;
884 : 0 : }
885 : :
886 : 7856 : static std::optional<UniValue::VType> ExpectedType(RPCArg::Type type)
887 : : {
888 : 7856 : using Type = RPCArg::Type;
889 [ + + + + : 7856 : switch (type) {
+ + + - ]
890 : 5195 : case Type::STR_HEX:
891 : 5195 : case Type::STR: {
892 : 5195 : return UniValue::VSTR;
893 : : }
894 : 321 : case Type::NUM: {
895 : 321 : return UniValue::VNUM;
896 : : }
897 : 91 : case Type::AMOUNT: {
898 : : // VNUM or VSTR, checked inside AmountFromValue()
899 : 91 : return std::nullopt;
900 : : }
901 : 10 : case Type::RANGE: {
902 : : // VNUM or VARR, checked inside ParseRange()
903 : 10 : return std::nullopt;
904 : : }
905 : 124 : case Type::BOOL: {
906 : 124 : return UniValue::VBOOL;
907 : : }
908 : 5 : case Type::OBJ:
909 : 5 : case Type::OBJ_NAMED_PARAMS:
910 : 5 : case Type::OBJ_USER_KEYS: {
911 : 5 : return UniValue::VOBJ;
912 : : }
913 : 2110 : case Type::ARR: {
914 : 2110 : return UniValue::VARR;
915 : : }
916 : : } // no default case, so the compiler can warn about missing cases
917 [ # # ]: 0 : NONFATAL_UNREACHABLE();
918 : : }
919 : :
920 : 11297 : UniValue RPCArg::MatchesType(const UniValue& request) const
921 : : {
922 [ + + ]: 11297 : if (m_opts.skip_type_check) return true;
923 [ + + + + ]: 10882 : if (IsOptional() && request.isNull()) return true;
924 : 7856 : const auto exp_type{ExpectedType(m_type)};
925 [ + + ]: 7856 : if (!exp_type) return true; // nothing to check
926 : :
927 [ + + ]: 7755 : if (*exp_type != request.getType()) {
928 [ + - ]: 136 : return strprintf("JSON value of type %s is not of expected type %s", uvTypeName(request.getType()), uvTypeName(*exp_type));
929 : : }
930 : 7687 : return true;
931 : : }
932 : :
933 : 3649 : std::string RPCArg::GetFirstName() const
934 : : {
935 : 3649 : return m_names.substr(0, m_names.find('|'));
936 : : }
937 : :
938 : 1380 : std::string RPCArg::GetName() const
939 : : {
940 : 1380 : CHECK_NONFATAL(std::string::npos == m_names.find('|'));
941 : 1380 : return m_names;
942 : : }
943 : :
944 : 23368 : bool RPCArg::IsOptional() const
945 : : {
946 [ + + ]: 23368 : if (m_fallback.index() != 0) {
947 : : return true;
948 : : } else {
949 : 16935 : return RPCArg::Optional::NO != std::get<RPCArg::Optional>(m_fallback);
950 : : }
951 : : }
952 : :
953 : 2151 : std::string RPCArg::ToDescriptionString(bool is_named_arg) const
954 : : {
955 [ + - ]: 2151 : std::string ret;
956 [ + - ]: 2151 : ret += "(";
957 [ + + ]: 2151 : if (m_opts.type_str.size() != 0) {
958 [ + - + - ]: 19 : ret += m_opts.type_str.at(1);
959 : : } else {
960 [ + + + + : 2132 : switch (m_type) {
+ + + - ]
961 : 1054 : case Type::STR_HEX:
962 : 1054 : case Type::STR: {
963 [ + - ]: 1054 : ret += "string";
964 : : break;
965 : : }
966 : 284 : case Type::NUM: {
967 [ + - ]: 284 : ret += "numeric";
968 : : break;
969 : : }
970 : 89 : case Type::AMOUNT: {
971 [ + - ]: 89 : ret += "numeric or string";
972 : : break;
973 : : }
974 : 56 : case Type::RANGE: {
975 [ + - ]: 56 : ret += "numeric or array";
976 : : break;
977 : : }
978 : 229 : case Type::BOOL: {
979 [ + - ]: 229 : ret += "boolean";
980 : : break;
981 : : }
982 : 176 : case Type::OBJ:
983 : 176 : case Type::OBJ_NAMED_PARAMS:
984 : 176 : case Type::OBJ_USER_KEYS: {
985 [ + - ]: 176 : ret += "json object";
986 : : break;
987 : : }
988 : 244 : case Type::ARR: {
989 [ + - + + ]: 2151 : ret += "json array";
990 : : break;
991 : : }
992 : : } // no default case, so the compiler can warn about missing cases
993 : : }
994 [ + + ]: 2151 : if (m_fallback.index() == 1) {
995 [ + - ]: 348 : ret += ", optional, default=" + std::get<RPCArg::DefaultHint>(m_fallback);
996 [ + + ]: 1977 : } else if (m_fallback.index() == 2) {
997 [ + - + - ]: 912 : ret += ", optional, default=" + std::get<RPCArg::Default>(m_fallback).write();
998 : : } else {
999 [ - + + + : 1521 : switch (std::get<RPCArg::Optional>(m_fallback)) {
- ]
1000 : 583 : case RPCArg::Optional::OMITTED: {
1001 [ + + + - ]: 583 : if (is_named_arg) ret += ", optional"; // Default value is "null" in dicts. Otherwise,
1002 : : // nothing to do. Element is treated as if not present and has no default value
1003 : : break;
1004 : : }
1005 : 938 : case RPCArg::Optional::NO: {
1006 [ + - ]: 938 : ret += ", required";
1007 : : break;
1008 : : }
1009 : : } // no default case, so the compiler can warn about missing cases
1010 : : }
1011 [ + - ]: 2151 : ret += ")";
1012 [ + + + - ]: 2151 : if (m_type == Type::OBJ_NAMED_PARAMS) ret += " Options object that can be used to pass named arguments, listed below.";
1013 [ + + + - : 4302 : ret += m_description.empty() ? "" : " " + m_description;
+ - ]
1014 : 2151 : return ret;
1015 : 0 : }
1016 : :
1017 : : // NOLINTNEXTLINE(misc-no-recursion)
1018 : 11642 : void RPCResult::ToSections(Sections& sections, const OuterType outer_type, const int current_indent) const
1019 : : {
1020 : : // Indentation
1021 [ + - ]: 11642 : const std::string indent(current_indent, ' ');
1022 [ + - + + ]: 11642 : const std::string indent_next(current_indent + 2, ' ');
1023 : :
1024 : : // Elements in a JSON structure (dictionary or array) are separated by a comma
1025 [ + + + - ]: 12752 : const std::string maybe_separator{outer_type != OuterType::NONE ? "," : ""};
1026 : :
1027 : : // The key name if recursed into a dictionary
1028 : 11642 : const std::string maybe_key{
1029 [ + + ]: 11642 : outer_type == OuterType::OBJ ?
1030 [ + - - - ]: 18550 : "\"" + this->m_key_name + "\" : " :
1031 [ + - + - ]: 20917 : ""};
1032 : :
1033 : : // Format description with type
1034 : 23170 : const auto Description = [&](const std::string& type) {
1035 [ + + + - : 43520 : return "(" + type + (this->m_optional ? ", optional" : "") + ")" +
+ - ]
1036 [ + + + - ]: 34584 : (this->m_description.empty() ? "" : " " + this->m_description);
1037 : 11642 : };
1038 : :
1039 [ + - + + : 11642 : switch (m_type) {
+ + + + +
+ + - ]
1040 : 114 : case Type::ELISION: {
1041 : : // If the inner result is empty, use three dots for elision
1042 [ + - + - : 228 : sections.PushSection({indent + "..." + maybe_separator, m_description});
+ - + - ]
1043 : 114 : return;
1044 : : }
1045 : 0 : case Type::ANY: {
1046 [ # # ]: 0 : NONFATAL_UNREACHABLE(); // Only for testing
1047 : : }
1048 : 126 : case Type::NONE: {
1049 [ + - + - : 252 : sections.PushSection({indent + "null" + maybe_separator, Description("json null")});
+ - + - +
- + - ]
1050 : 126 : return;
1051 : : }
1052 : 2369 : case Type::STR: {
1053 [ + - + - : 7107 : sections.PushSection({indent + maybe_key + "\"str\"" + maybe_separator, Description("string")});
+ - + - +
- + - ]
1054 : 2369 : return;
1055 : : }
1056 : 448 : case Type::STR_AMOUNT: {
1057 [ + - + - : 1344 : sections.PushSection({indent + maybe_key + "n" + maybe_separator, Description("numeric")});
+ - + - +
- + - ]
1058 : 448 : return;
1059 : : }
1060 : 1923 : case Type::STR_HEX: {
1061 [ + - + - : 5769 : sections.PushSection({indent + maybe_key + "\"hex\"" + maybe_separator, Description("string")});
+ - + - +
- + - ]
1062 : 1923 : return;
1063 : : }
1064 : 2436 : case Type::NUM: {
1065 [ + - + - : 7308 : sections.PushSection({indent + maybe_key + "n" + maybe_separator, Description("numeric")});
+ - + - +
- + - ]
1066 : 2436 : return;
1067 : : }
1068 : 273 : case Type::NUM_TIME: {
1069 [ + - + - : 819 : sections.PushSection({indent + maybe_key + "xxx" + maybe_separator, Description("numeric")});
+ - + - +
- + - ]
1070 : 273 : return;
1071 : : }
1072 : 653 : case Type::BOOL: {
1073 [ + - + - : 1959 : sections.PushSection({indent + maybe_key + "true|false" + maybe_separator, Description("boolean")});
+ - + - +
- + - ]
1074 : 653 : return;
1075 : : }
1076 : 1229 : case Type::ARR_FIXED:
1077 : 1229 : case Type::ARR: {
1078 [ + - + - : 3687 : sections.PushSection({indent + maybe_key + "[", Description("json array")});
+ - + - +
- ]
1079 [ + + ]: 2486 : for (const auto& i : m_inner) {
1080 [ + - ]: 1257 : i.ToSections(sections, OuterType::ARR, current_indent + 2);
1081 : : }
1082 [ + - ]: 1229 : CHECK_NONFATAL(!m_inner.empty());
1083 [ + + - + ]: 1229 : if (m_type == Type::ARR && m_inner.back().m_type != Type::ELISION) {
1084 [ + - + - : 2444 : sections.PushSection({indent_next + "...", ""});
+ - + - ]
1085 : : } else {
1086 : : // Remove final comma, which would be invalid JSON
1087 : 7 : sections.m_sections.back().m_left.pop_back();
1088 : : }
1089 [ + - + - : 2458 : sections.PushSection({indent + "]" + maybe_separator, ""});
+ - + - +
- ]
1090 : 1229 : return;
1091 : : }
1092 : 2071 : case Type::OBJ_DYN:
1093 : 2071 : case Type::OBJ: {
1094 [ + + ]: 2071 : if (m_inner.empty()) {
1095 [ + - + - : 39 : sections.PushSection({indent + maybe_key + "{}", Description("empty JSON object")});
+ - + - +
- ]
1096 : 13 : return;
1097 : : }
1098 [ + - + - : 6174 : sections.PushSection({indent + maybe_key + "{", Description("json object")});
+ - + - +
- ]
1099 [ + + ]: 11333 : for (const auto& i : m_inner) {
1100 [ + - ]: 9275 : i.ToSections(sections, OuterType::OBJ, current_indent + 2);
1101 : : }
1102 [ + + - + ]: 2058 : if (m_type == Type::OBJ_DYN && m_inner.back().m_type != Type::ELISION) {
1103 : : // If the dictionary keys are dynamic, use three dots for continuation
1104 [ + - + - : 754 : sections.PushSection({indent_next + "...", ""});
+ - + - ]
1105 : : } else {
1106 : : // Remove final comma, which would be invalid JSON
1107 : 1681 : sections.m_sections.back().m_left.pop_back();
1108 : : }
1109 [ + - + - : 4116 : sections.PushSection({indent + "}" + maybe_separator, ""});
+ - + - +
- ]
1110 : 2058 : return;
1111 : : }
1112 : : } // no default case, so the compiler can warn about missing cases
1113 [ # # ]: 0 : NONFATAL_UNREACHABLE();
1114 : 11642 : }
1115 : :
1116 : 0 : static std::optional<UniValue::VType> ExpectedType(RPCResult::Type type)
1117 : : {
1118 : 0 : using Type = RPCResult::Type;
1119 [ # # # # : 0 : switch (type) {
# # # # ]
1120 : 0 : case Type::ELISION:
1121 : 0 : case Type::ANY: {
1122 : 0 : return std::nullopt;
1123 : : }
1124 : 0 : case Type::NONE: {
1125 : 0 : return UniValue::VNULL;
1126 : : }
1127 : 0 : case Type::STR:
1128 : 0 : case Type::STR_HEX: {
1129 : 0 : return UniValue::VSTR;
1130 : : }
1131 : 0 : case Type::NUM:
1132 : 0 : case Type::STR_AMOUNT:
1133 : 0 : case Type::NUM_TIME: {
1134 : 0 : return UniValue::VNUM;
1135 : : }
1136 : 0 : case Type::BOOL: {
1137 : 0 : return UniValue::VBOOL;
1138 : : }
1139 : 0 : case Type::ARR_FIXED:
1140 : 0 : case Type::ARR: {
1141 : 0 : return UniValue::VARR;
1142 : : }
1143 : 0 : case Type::OBJ_DYN:
1144 : 0 : case Type::OBJ: {
1145 : 0 : return UniValue::VOBJ;
1146 : : }
1147 : : } // no default case, so the compiler can warn about missing cases
1148 [ # # ]: 0 : NONFATAL_UNREACHABLE();
1149 : : }
1150 : :
1151 : : // NOLINTNEXTLINE(misc-no-recursion)
1152 : 0 : UniValue RPCResult::MatchesType(const UniValue& result) const
1153 : : {
1154 [ # # ]: 0 : if (m_skip_type_check) {
1155 : 0 : return true;
1156 : : }
1157 : :
1158 : 0 : const auto exp_type = ExpectedType(m_type);
1159 [ # # ]: 0 : if (!exp_type) return true; // can be any type, so nothing to check
1160 : :
1161 [ # # ]: 0 : if (*exp_type != result.getType()) {
1162 [ # # ]: 0 : return strprintf("returned type is %s, but declared as %s in doc", uvTypeName(result.getType()), uvTypeName(*exp_type));
1163 : : }
1164 : :
1165 [ # # ]: 0 : if (UniValue::VARR == result.getType()) {
1166 : 0 : UniValue errors(UniValue::VOBJ);
1167 [ # # # # ]: 0 : for (size_t i{0}; i < result.get_array().size(); ++i) {
1168 : : // If there are more results than documented, reuse the last doc_inner.
1169 [ # # # # ]: 0 : const RPCResult& doc_inner{m_inner.at(std::min(m_inner.size() - 1, i))};
1170 [ # # # # : 0 : UniValue match{doc_inner.MatchesType(result.get_array()[i])};
# # ]
1171 [ # # # # : 0 : if (!match.isTrue()) errors.pushKV(strprintf("%d", i), std::move(match));
# # ]
1172 : 0 : }
1173 [ # # # # ]: 0 : if (errors.empty()) return true; // empty result array is valid
1174 : 0 : return errors;
1175 : 0 : }
1176 : :
1177 [ # # ]: 0 : if (UniValue::VOBJ == result.getType()) {
1178 [ # # # # ]: 0 : if (!m_inner.empty() && m_inner.at(0).m_type == Type::ELISION) return true;
1179 : 0 : UniValue errors(UniValue::VOBJ);
1180 [ # # ]: 0 : if (m_type == Type::OBJ_DYN) {
1181 [ # # ]: 0 : const RPCResult& doc_inner{m_inner.at(0)}; // Assume all types are the same, randomly pick the first
1182 [ # # # # ]: 0 : for (size_t i{0}; i < result.get_obj().size(); ++i) {
1183 [ # # # # : 0 : UniValue match{doc_inner.MatchesType(result.get_obj()[i])};
# # ]
1184 [ # # # # : 0 : if (!match.isTrue()) errors.pushKV(result.getKeys()[i], std::move(match));
# # # # ]
1185 : 0 : }
1186 [ # # # # ]: 0 : if (errors.empty()) return true; // empty result obj is valid
1187 : 0 : return errors;
1188 : : }
1189 : 0 : std::set<std::string> doc_keys;
1190 [ # # ]: 0 : for (const auto& doc_entry : m_inner) {
1191 [ # # ]: 0 : doc_keys.insert(doc_entry.m_key_name);
1192 : : }
1193 [ # # ]: 0 : std::map<std::string, UniValue> result_obj;
1194 [ # # ]: 0 : result.getObjMap(result_obj);
1195 [ # # ]: 0 : for (const auto& result_entry : result_obj) {
1196 [ # # ]: 0 : if (doc_keys.find(result_entry.first) == doc_keys.end()) {
1197 [ # # # # : 0 : errors.pushKV(result_entry.first, "key returned that was not in doc");
# # ]
1198 : : }
1199 : : }
1200 : :
1201 [ # # ]: 0 : for (const auto& doc_entry : m_inner) {
1202 : 0 : const auto result_it{result_obj.find(doc_entry.m_key_name)};
1203 [ # # ]: 0 : if (result_it == result_obj.end()) {
1204 [ # # ]: 0 : if (!doc_entry.m_optional) {
1205 [ # # # # : 0 : errors.pushKV(doc_entry.m_key_name, "key missing, despite not being optional in doc");
# # ]
1206 : : }
1207 : 0 : continue;
1208 : : }
1209 [ # # ]: 0 : UniValue match{doc_entry.MatchesType(result_it->second)};
1210 [ # # # # : 0 : if (!match.isTrue()) errors.pushKV(doc_entry.m_key_name, std::move(match));
# # ]
1211 : 0 : }
1212 [ # # # # ]: 0 : if (errors.empty()) return true;
1213 : 0 : return errors;
1214 : 0 : }
1215 : :
1216 : 0 : return true;
1217 : : }
1218 : :
1219 : 153513 : void RPCResult::CheckInnerDoc() const
1220 : : {
1221 [ + + ]: 153513 : if (m_type == Type::OBJ) {
1222 : : // May or may not be empty
1223 : : return;
1224 : : }
1225 : : // Everything else must either be empty or not
1226 [ + + + + ]: 129282 : const bool inner_needed{m_type == Type::ARR || m_type == Type::ARR_FIXED || m_type == Type::OBJ_DYN};
1227 : 129282 : CHECK_NONFATAL(inner_needed != m_inner.empty());
1228 : : }
1229 : :
1230 : : // NOLINTNEXTLINE(misc-no-recursion)
1231 : 687 : std::string RPCArg::ToStringObj(const bool oneline) const
1232 : : {
1233 [ + - ]: 687 : std::string res;
1234 [ + - ]: 687 : res += "\"";
1235 [ + - ]: 1374 : res += GetFirstName();
1236 [ + + ]: 687 : if (oneline) {
1237 [ + - ]: 340 : res += "\":";
1238 : : } else {
1239 [ + - ]: 347 : res += "\": ";
1240 : : }
1241 [ + + + + : 687 : switch (m_type) {
+ - + -
- ]
1242 : 109 : case Type::STR:
1243 [ + - ]: 109 : return res + "\"str\"";
1244 : 248 : case Type::STR_HEX:
1245 [ + - ]: 248 : return res + "\"hex\"";
1246 : 157 : case Type::NUM:
1247 [ + - ]: 157 : return res + "n";
1248 : 73 : case Type::RANGE:
1249 [ + - ]: 73 : return res + "n or [n,n]";
1250 : 82 : case Type::AMOUNT:
1251 [ + - ]: 82 : return res + "amount";
1252 : 0 : case Type::BOOL:
1253 [ # # ]: 0 : return res + "bool";
1254 : 18 : case Type::ARR:
1255 [ + - ]: 18 : res += "[";
1256 [ + + ]: 45 : for (const auto& i : m_inner) {
1257 [ + - + - ]: 81 : res += i.ToString(oneline) + ",";
1258 : : }
1259 [ + - ]: 18 : return res + "...]";
1260 : 0 : case Type::OBJ:
1261 : 0 : case Type::OBJ_NAMED_PARAMS:
1262 : 0 : case Type::OBJ_USER_KEYS:
1263 : : // Currently unused, so avoid writing dead code
1264 [ # # ]: 0 : NONFATAL_UNREACHABLE();
1265 : : } // no default case, so the compiler can warn about missing cases
1266 [ # # ]: 0 : NONFATAL_UNREACHABLE();
1267 : 687 : }
1268 : :
1269 : : // NOLINTNEXTLINE(misc-no-recursion)
1270 : 1895 : std::string RPCArg::ToString(const bool oneline) const
1271 : : {
1272 [ + + + + ]: 1895 : if (oneline && !m_opts.oneline_description.empty()) {
1273 [ - + - - : 36 : if (m_opts.oneline_description[0] == '\"' && m_type != Type::STR_HEX && m_type != Type::STR && gArgs.GetBoolArg("-rpcdoccheck", DEFAULT_RPC_DOC_CHECK)) {
- - - - -
- - + ]
1274 : 0 : throw std::runtime_error{
1275 [ # # # # ]: 0 : STR_INTERNAL_BUG(strprintf("non-string RPC arg \"%s\" quotes oneline_description:\n%s",
1276 : : m_names, m_opts.oneline_description)
1277 [ # # # # ]: 0 : )};
1278 : : }
1279 : 36 : return m_opts.oneline_description;
1280 : : }
1281 : :
1282 [ + + + + : 1859 : switch (m_type) {
- ]
1283 : 1023 : case Type::STR_HEX:
1284 : 1023 : case Type::STR: {
1285 [ + - ]: 2046 : return "\"" + GetFirstName() + "\"";
1286 : : }
1287 : 485 : case Type::NUM:
1288 : 485 : case Type::RANGE:
1289 : 485 : case Type::AMOUNT:
1290 : 485 : case Type::BOOL: {
1291 : 485 : return GetFirstName();
1292 : : }
1293 : 147 : case Type::OBJ:
1294 : 147 : case Type::OBJ_NAMED_PARAMS:
1295 : 147 : case Type::OBJ_USER_KEYS: {
1296 : : // NOLINTNEXTLINE(misc-no-recursion)
1297 [ + - ]: 487 : const std::string res = Join(m_inner, ",", [&](const RPCArg& i) { return i.ToStringObj(oneline); });
1298 [ + + ]: 147 : if (m_type == Type::OBJ) {
1299 [ + - ]: 228 : return "{" + res + "}";
1300 : : } else {
1301 [ + - ]: 66 : return "{" + res + ",...}";
1302 : : }
1303 : 147 : }
1304 : 204 : case Type::ARR: {
1305 : 204 : std::string res;
1306 [ + + ]: 465 : for (const auto& i : m_inner) {
1307 [ + - + - ]: 783 : res += i.ToString(oneline) + ",";
1308 : : }
1309 [ + - ]: 408 : return "[" + res + "...]";
1310 : 204 : }
1311 : : } // no default case, so the compiler can warn about missing cases
1312 [ # # ]: 0 : NONFATAL_UNREACHABLE();
1313 : : }
1314 : :
1315 : 2043 : static std::pair<int64_t, int64_t> ParseRange(const UniValue& value)
1316 : : {
1317 [ + + ]: 2043 : if (value.isNum()) {
1318 : 70 : return {0, value.getInt<int64_t>()};
1319 : : }
1320 [ + + + + : 1973 : if (value.isArray() && value.size() == 2 && value[0].isNum() && value[1].isNum()) {
+ + + + ]
1321 : 12 : int64_t low = value[0].getInt<int64_t>();
1322 : 10 : int64_t high = value[1].getInt<int64_t>();
1323 [ + + + - : 15 : if (low > high) throw JSONRPCError(RPC_INVALID_PARAMETER, "Range specified as [begin,end] must not have begin after end");
+ - ]
1324 : 5 : return {low, high};
1325 : : }
1326 [ + - + - ]: 3922 : throw JSONRPCError(RPC_INVALID_PARAMETER, "Range must be specified as end or as [begin,end]");
1327 : : }
1328 : :
1329 : 2043 : std::pair<int64_t, int64_t> ParseDescriptorRange(const UniValue& value)
1330 : : {
1331 : 2043 : int64_t low, high;
1332 [ + + ]: 2043 : std::tie(low, high) = ParseRange(value);
1333 [ + + ]: 24 : if (low < 0) {
1334 [ + - + - ]: 6 : throw JSONRPCError(RPC_INVALID_PARAMETER, "Range should be greater or equal than 0");
1335 : : }
1336 [ + + ]: 21 : if ((high >> 31) != 0) {
1337 [ + - + - ]: 22 : throw JSONRPCError(RPC_INVALID_PARAMETER, "End of range is too high");
1338 : : }
1339 [ + + ]: 10 : if (high >= low + 1000000) {
1340 [ + - + - ]: 8 : throw JSONRPCError(RPC_INVALID_PARAMETER, "Range is too large");
1341 : : }
1342 : 6 : return {low, high};
1343 : : }
1344 : :
1345 : 2116 : std::vector<CScript> EvalDescriptorStringOrObject(const UniValue& scanobject, FlatSigningProvider& provider, const bool expand_priv)
1346 : : {
1347 [ + + ]: 2116 : std::string desc_str;
1348 : 2116 : std::pair<int64_t, int64_t> range = {0, 1000};
1349 [ + + ]: 2116 : if (scanobject.isStr()) {
1350 [ + - + - ]: 1965 : desc_str = scanobject.get_str();
1351 [ + + ]: 151 : } else if (scanobject.isObject()) {
1352 [ + - ]: 39 : const UniValue& desc_uni{scanobject.find_value("desc")};
1353 [ + + + - : 73 : if (desc_uni.isNull()) throw JSONRPCError(RPC_INVALID_PARAMETER, "Descriptor needs to be provided in scan object");
+ - ]
1354 [ + + + - ]: 5 : desc_str = desc_uni.get_str();
1355 [ + - ]: 2 : const UniValue& range_uni{scanobject.find_value("range")};
1356 [ - + ]: 2 : if (!range_uni.isNull()) {
1357 [ # # ]: 0 : range = ParseDescriptorRange(range_uni);
1358 : : }
1359 : : } else {
1360 [ + - + - ]: 224 : throw JSONRPCError(RPC_INVALID_PARAMETER, "Scan object needs to be either a string or an object");
1361 : : }
1362 : :
1363 [ + - ]: 1967 : std::string error;
1364 [ + - ]: 1967 : auto descs = Parse(desc_str, provider, error);
1365 [ + + ]: 1967 : if (descs.empty()) {
1366 [ + - ]: 1293 : throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, error);
1367 : : }
1368 [ + - + - : 674 : if (!descs.at(0)->IsRange()) {
+ - ]
1369 : 674 : range.first = 0;
1370 : 674 : range.second = 0;
1371 : : }
1372 : 674 : std::vector<CScript> ret;
1373 [ + + ]: 1348 : for (int i = range.first; i <= range.second; ++i) {
1374 [ + + ]: 1348 : for (const auto& desc : descs) {
1375 : 674 : std::vector<CScript> scripts;
1376 [ + - - + ]: 674 : if (!desc->Expand(i, provider, scripts, provider)) {
1377 [ # # # # ]: 0 : throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, strprintf("Cannot derive script without private keys: '%s'", desc_str));
1378 : : }
1379 [ + + ]: 674 : if (expand_priv) {
1380 [ + - ]: 37 : desc->ExpandPrivate(/*pos=*/i, provider, /*out=*/provider);
1381 : : }
1382 [ + - ]: 674 : std::move(scripts.begin(), scripts.end(), std::back_inserter(ret));
1383 : 674 : }
1384 : : }
1385 : 1348 : return ret;
1386 : 3260 : }
1387 : :
1388 : : /** Convert a vector of bilingual strings to a UniValue::VARR containing their original untranslated values. */
1389 : 0 : [[nodiscard]] static UniValue BilingualStringsToUniValue(const std::vector<bilingual_str>& bilingual_strings)
1390 : : {
1391 : 0 : CHECK_NONFATAL(!bilingual_strings.empty());
1392 : 0 : UniValue result{UniValue::VARR};
1393 [ # # ]: 0 : for (const auto& s : bilingual_strings) {
1394 [ # # # # ]: 0 : result.push_back(s.original);
1395 : : }
1396 : 0 : return result;
1397 : 0 : }
1398 : :
1399 : 22 : void PushWarnings(const UniValue& warnings, UniValue& obj)
1400 : : {
1401 [ - + ]: 22 : if (warnings.empty()) return;
1402 [ # # # # ]: 0 : obj.pushKV("warnings", warnings);
1403 : : }
1404 : :
1405 : 0 : void PushWarnings(const std::vector<bilingual_str>& warnings, UniValue& obj)
1406 : : {
1407 [ # # ]: 0 : if (warnings.empty()) return;
1408 [ # # # # ]: 0 : obj.pushKV("warnings", BilingualStringsToUniValue(warnings));
1409 : : }
|