LCOV - code coverage report
Current view: top level - src/rpc - util.cpp (source / functions) Coverage Total Hit
Test: test_bitcoin_coverage.info Lines: 55.1 % 844 465
Test Date: 2024-11-04 04:45:35 Functions: 60.0 % 80 48
Branches: 32.8 % 1586 521

             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                 :         459 : std::string GetAllOutputTypes()
      48                 :             : {
      49                 :         459 :     std::vector<std::string> ret;
      50                 :         459 :     using U = std::underlying_type<TxoutType>::type;
      51         [ +  + ]:        5508 :     for (U i = (U)TxoutType::NONSTANDARD; i <= (U)TxoutType::WITNESS_UNKNOWN; ++i) {
      52   [ +  -  +  - ]:       10098 :         ret.emplace_back(GetTxnOutputType(static_cast<TxoutType>(i)));
      53                 :             :     }
      54         [ +  - ]:         918 :     return Join(ret, ", ");
      55                 :         459 : }
      56                 :             : 
      57                 :           4 : void RPCTypeCheckObj(const UniValue& o,
      58                 :             :     const std::map<std::string, UniValueType>& typesExpected,
      59                 :             :     bool fAllowNull,
      60                 :             :     bool fStrict)
      61                 :             : {
      62         [ +  + ]:          14 :     for (const auto& t : typesExpected) {
      63                 :          10 :         const UniValue& v = o.find_value(t.first);
      64   [ +  +  -  + ]:          10 :         if (!fAllowNull && v.isNull())
      65   [ #  #  #  # ]:           0 :             throw JSONRPCError(RPC_TYPE_ERROR, strprintf("Missing %s", t.first));
      66                 :             : 
      67   [ +  -  +  -  :          12 :         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         [ -  + ]:           4 :     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                 :           4 : }
      83                 :             : 
      84                 :           0 : int ParseVerbosity(const UniValue& arg, int default_verbosity, bool allow_bool)
      85                 :             : {
      86         [ #  # ]:           0 :     if (!arg.isNull()) {
      87         [ #  # ]:           0 :         if (arg.isBool()) {
      88         [ #  # ]:           0 :             if (!allow_bool) {
      89   [ #  #  #  # ]:           0 :                 throw JSONRPCError(RPC_TYPE_ERROR, "Verbosity was boolean but only integer allowed");
      90                 :             :             }
      91                 :           0 :             return arg.get_bool(); // true = 1
      92                 :             :         } else {
      93                 :           0 :             return arg.getInt<int>();
      94                 :             :         }
      95                 :             :     }
      96                 :             :     return default_verbosity;
      97                 :             : }
      98                 :             : 
      99                 :         137 : CAmount AmountFromValue(const UniValue& value, int decimals)
     100                 :             : {
     101   [ +  +  -  + ]:         137 :     if (!value.isNum() && !value.isStr())
     102   [ #  #  #  # ]:           0 :         throw JSONRPCError(RPC_TYPE_ERROR, "Amount is not a number or string");
     103                 :         137 :     CAmount amount;
     104         [ +  + ]:         137 :     if (!ParseFixedPoint(value.getValStr(), decimals, &amount))
     105   [ +  -  +  - ]:          18 :         throw JSONRPCError(RPC_TYPE_ERROR, "Invalid amount");
     106         [ +  + ]:         128 :     if (!MoneyRange(amount))
     107   [ +  -  +  - ]:           2 :         throw JSONRPCError(RPC_TYPE_ERROR, "Amount out of range");
     108                 :         127 :     return amount;
     109                 :             : }
     110                 :             : 
     111                 :           0 : CFeeRate ParseFeeRate(const UniValue& json)
     112                 :             : {
     113                 :           0 :     CAmount val{AmountFromValue(json)};
     114   [ #  #  #  #  :           0 :     if (val >= COIN) throw JSONRPCError(RPC_INVALID_PARAMETER, "Fee rates larger than or equal to 1BTC/kvB are not accepted");
                   #  # ]
     115                 :           0 :     return CFeeRate{val};
     116                 :             : }
     117                 :             : 
     118                 :           9 : uint256 ParseHashV(const UniValue& v, std::string_view name)
     119                 :             : {
     120                 :           9 :     const std::string& strHex(v.get_str());
     121         [ +  + ]:           9 :     if (auto rv{uint256::FromHex(strHex)}) return *rv;
     122         [ +  - ]:           1 :     if (auto expected_len{uint256::size() * 2}; strHex.length() != expected_len) {
     123   [ +  -  +  - ]:           2 :         throw JSONRPCError(RPC_INVALID_PARAMETER, strprintf("%s must be of length %d (not %d, for '%s')", name, expected_len, strHex.length(), strHex));
     124                 :             :     }
     125   [ #  #  #  # ]:           0 :     throw JSONRPCError(RPC_INVALID_PARAMETER, strprintf("%s must be hexadecimal string (not '%s')", name, strHex));
     126                 :             : }
     127                 :           8 : uint256 ParseHashO(const UniValue& o, std::string_view strKey)
     128                 :             : {
     129                 :           8 :     return ParseHashV(o.find_value(strKey), strKey);
     130                 :             : }
     131                 :           8 : std::vector<unsigned char> ParseHexV(const UniValue& v, std::string_view name)
     132                 :             : {
     133         [ +  - ]:           8 :     std::string strHex;
     134         [ +  - ]:           8 :     if (v.isStr())
     135   [ +  -  +  - ]:           8 :         strHex = v.get_str();
     136   [ +  -  +  + ]:           8 :     if (!IsHex(strHex))
     137   [ +  -  +  - ]:           4 :         throw JSONRPCError(RPC_INVALID_PARAMETER, strprintf("%s must be hexadecimal string (not '%s')", name, strHex));
     138         [ +  - ]:           6 :     return ParseHex(strHex);
     139                 :           6 : }
     140                 :           2 : std::vector<unsigned char> ParseHexO(const UniValue& o, std::string_view strKey)
     141                 :             : {
     142                 :           2 :     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                 :          15 : std::string ShellQuote(const std::string& s)
     153                 :             : {
     154         [ +  - ]:          15 :     std::string result;
     155         [ +  - ]:          15 :     result.reserve(s.size() * 2);
     156         [ +  + ]:         361 :     for (const char ch: s) {
     157         [ +  + ]:         346 :         if (ch == '\'') {
     158         [ +  - ]:           1 :             result += "'\''";
     159                 :             :         } else {
     160         [ +  - ]:         691 :             result += ch;
     161                 :             :         }
     162                 :             :     }
     163         [ +  - ]:          30 :     return "'" + result + "'";
     164                 :          15 : }
     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                 :         100 : std::string ShellQuoteIfNeeded(const std::string& s)
     172                 :             : {
     173         [ +  + ]:         851 :     for (const char ch: s) {
     174         [ +  + ]:         766 :         if (ch == ' ' || ch == '\'' || ch == '"') {
     175                 :          15 :             return ShellQuote(s);
     176                 :             :         }
     177                 :             :     }
     178                 :             : 
     179                 :          85 :     return s;
     180                 :             : }
     181                 :             : 
     182                 :             : }
     183                 :             : 
     184                 :       12409 : std::string HelpExampleCli(const std::string& methodname, const std::string& args)
     185                 :             : {
     186   [ +  -  +  - ]:       37227 :     return "> bitcoin-cli " + methodname + " " + args + "\n";
     187                 :             : }
     188                 :             : 
     189                 :          38 : std::string HelpExampleCliNamed(const std::string& methodname, const RPCArgList& args)
     190                 :             : {
     191                 :          38 :     std::string result = "> bitcoin-cli -named " + methodname;
     192         [ +  + ]:         138 :     for (const auto& argpair: args) {
     193         [ +  + ]:         100 :         const auto& value = argpair.second.isStr()
     194   [ +  +  +  - ]:         100 :                 ? argpair.second.get_str()
     195   [ +  -  +  - ]:         100 :                 : argpair.second.write();
     196   [ +  -  +  -  :         300 :         result += " " + argpair.first + "=" + ShellQuoteIfNeeded(value);
                   +  - ]
     197                 :         100 :     }
     198         [ +  - ]:          38 :     result += "\n";
     199                 :          38 :     return result;
     200                 :           0 : }
     201                 :             : 
     202                 :        8789 : std::string HelpExampleRpc(const std::string& methodname, const std::string& args)
     203                 :             : {
     204                 :        8789 :     return "> curl --user myusername --data-binary '{\"jsonrpc\": \"2.0\", \"id\": \"curltest\", "
     205   [ +  -  +  - ]:       26367 :         "\"method\": \"" + methodname + "\", \"params\": [" + args + "]}' -H 'content-type: application/json' http://127.0.0.1:8332/\n";
     206                 :             : }
     207                 :             : 
     208                 :          35 : std::string HelpExampleRpcNamed(const std::string& methodname, const RPCArgList& args)
     209                 :             : {
     210                 :          35 :     UniValue params(UniValue::VOBJ);
     211         [ +  + ]:         132 :     for (const auto& param: args) {
     212   [ +  -  +  -  :         194 :         params.pushKV(param.first, param.second);
                   +  - ]
     213                 :             :     }
     214                 :             : 
     215                 :          35 :     return "> curl --user myusername --data-binary '{\"jsonrpc\": \"2.0\", \"id\": \"curltest\", "
     216   [ +  -  +  -  :         140 :            "\"method\": \"" + methodname + "\", \"params\": " + params.write() + "}' -H 'content-type: application/json' http://127.0.0.1:8332/\n";
                   +  - ]
     217                 :          35 : }
     218                 :             : 
     219                 :             : // Converts a hex string to a public key if possible
     220                 :           0 : CPubKey HexToPubKey(const std::string& hex_in)
     221                 :             : {
     222         [ #  # ]:           0 :     if (!IsHex(hex_in)) {
     223   [ #  #  #  # ]:           0 :         throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Pubkey \"" + hex_in + "\" must be a hex string");
     224                 :             :     }
     225   [ #  #  #  # ]:           0 :     if (hex_in.length() != 66 && hex_in.length() != 130) {
     226   [ #  #  #  # ]:           0 :         throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Pubkey \"" + hex_in + "\" must have a length of either 33 or 65 bytes");
     227                 :             :     }
     228                 :           0 :     CPubKey vchPubKey(ParseHex(hex_in));
     229         [ #  # ]:           0 :     if (!vchPubKey.IsFullyValid()) {
     230   [ #  #  #  # ]:           0 :         throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Pubkey \"" + hex_in + "\" must be cryptographically valid.");
     231                 :             :     }
     232                 :           0 :     return vchPubKey;
     233                 :             : }
     234                 :             : 
     235                 :             : // Retrieves a public key for an address from the given FillableSigningProvider
     236                 :           0 : CPubKey AddrToPubKey(const FillableSigningProvider& keystore, const std::string& addr_in)
     237                 :             : {
     238                 :           0 :     CTxDestination dest = DecodeDestination(addr_in);
     239   [ #  #  #  # ]:           0 :     if (!IsValidDestination(dest)) {
     240   [ #  #  #  # ]:           0 :         throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid address: " + addr_in);
     241                 :             :     }
     242         [ #  # ]:           0 :     CKeyID key = GetKeyForDestination(keystore, dest);
     243         [ #  # ]:           0 :     if (key.IsNull()) {
     244   [ #  #  #  # ]:           0 :         throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, strprintf("'%s' does not refer to a key", addr_in));
     245                 :             :     }
     246         [ #  # ]:           0 :     CPubKey vchPubKey;
     247   [ #  #  #  # ]:           0 :     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   [ #  #  #  # ]:           0 :     if (!vchPubKey.IsFullyValid()) {
     251   [ #  #  #  # ]:           0 :        throw JSONRPCError(RPC_INTERNAL_ERROR, "Wallet contains an invalid public key");
     252                 :             :     }
     253                 :           0 :     return vchPubKey;
     254                 :           0 : }
     255                 :             : 
     256                 :             : // Creates a multisig address from a given list of public keys, number of signatures required, and the address type
     257                 :           0 : CTxDestination AddAndGetMultisigDestination(const int required, const std::vector<CPubKey>& pubkeys, OutputType type, FlatSigningProvider& keystore, CScript& script_out)
     258                 :             : {
     259                 :             :     // Gather public keys
     260         [ #  # ]:           0 :     if (required < 1) {
     261   [ #  #  #  # ]:           0 :         throw JSONRPCError(RPC_INVALID_PARAMETER, "a multisignature address must require at least one key to redeem");
     262                 :             :     }
     263         [ #  # ]:           0 :     if ((int)pubkeys.size() < required) {
     264   [ #  #  #  # ]:           0 :         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         [ #  # ]:           0 :     if (pubkeys.size() > MAX_PUBKEYS_PER_MULTISIG) {
     267   [ #  #  #  # ]:           0 :         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                 :           0 :     script_out = GetScriptForMultisig(required, pubkeys);
     271                 :             : 
     272                 :             :     // Check if any keys are uncompressed. If so, the type is legacy
     273         [ #  # ]:           0 :     for (const CPubKey& pk : pubkeys) {
     274         [ #  # ]:           0 :         if (!pk.IsCompressed()) {
     275                 :             :             type = OutputType::LEGACY;
     276                 :             :             break;
     277                 :             :         }
     278                 :             :     }
     279                 :             : 
     280   [ #  #  #  #  :           0 :     if (type == OutputType::LEGACY && script_out.size() > MAX_SCRIPT_ELEMENT_SIZE) {
                   #  # ]
     281   [ #  #  #  #  :           0 :         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                 :           0 :     CTxDestination dest = AddAndGetDestinationForScript(keystore, script_out, type);
     286                 :             : 
     287                 :           0 :     return dest;
     288                 :             : }
     289                 :             : 
     290                 :             : class DescribeAddressVisitor
     291                 :             : {
     292                 :             : public:
     293                 :             :     explicit DescribeAddressVisitor() = default;
     294                 :             : 
     295                 :           0 :     UniValue operator()(const CNoDestination& dest) const
     296                 :             :     {
     297                 :           0 :         return UniValue(UniValue::VOBJ);
     298                 :             :     }
     299                 :             : 
     300                 :           0 :     UniValue operator()(const PubKeyDestination& dest) const
     301                 :             :     {
     302                 :           0 :         return UniValue(UniValue::VOBJ);
     303                 :             :     }
     304                 :             : 
     305                 :           0 :     UniValue operator()(const PKHash& keyID) const
     306                 :             :     {
     307                 :           0 :         UniValue obj(UniValue::VOBJ);
     308   [ #  #  #  #  :           0 :         obj.pushKV("isscript", false);
                   #  # ]
     309   [ #  #  #  #  :           0 :         obj.pushKV("iswitness", false);
                   #  # ]
     310                 :           0 :         return obj;
     311                 :           0 :     }
     312                 :             : 
     313                 :           0 :     UniValue operator()(const ScriptHash& scriptID) const
     314                 :             :     {
     315                 :           0 :         UniValue obj(UniValue::VOBJ);
     316   [ #  #  #  #  :           0 :         obj.pushKV("isscript", true);
                   #  # ]
     317   [ #  #  #  #  :           0 :         obj.pushKV("iswitness", false);
                   #  # ]
     318                 :           0 :         return obj;
     319                 :           0 :     }
     320                 :             : 
     321                 :           0 :     UniValue operator()(const WitnessV0KeyHash& id) const
     322                 :             :     {
     323                 :           0 :         UniValue obj(UniValue::VOBJ);
     324   [ #  #  #  #  :           0 :         obj.pushKV("isscript", false);
                   #  # ]
     325   [ #  #  #  #  :           0 :         obj.pushKV("iswitness", true);
                   #  # ]
     326   [ #  #  #  #  :           0 :         obj.pushKV("witness_version", 0);
                   #  # ]
     327   [ #  #  #  #  :           0 :         obj.pushKV("witness_program", HexStr(id));
             #  #  #  # ]
     328                 :           0 :         return obj;
     329                 :           0 :     }
     330                 :             : 
     331                 :           0 :     UniValue operator()(const WitnessV0ScriptHash& id) const
     332                 :             :     {
     333                 :           0 :         UniValue obj(UniValue::VOBJ);
     334   [ #  #  #  #  :           0 :         obj.pushKV("isscript", true);
                   #  # ]
     335   [ #  #  #  #  :           0 :         obj.pushKV("iswitness", true);
                   #  # ]
     336   [ #  #  #  #  :           0 :         obj.pushKV("witness_version", 0);
                   #  # ]
     337   [ #  #  #  #  :           0 :         obj.pushKV("witness_program", HexStr(id));
             #  #  #  # ]
     338                 :           0 :         return obj;
     339                 :           0 :     }
     340                 :             : 
     341                 :           0 :     UniValue operator()(const WitnessV1Taproot& tap) const
     342                 :             :     {
     343                 :           0 :         UniValue obj(UniValue::VOBJ);
     344   [ #  #  #  #  :           0 :         obj.pushKV("isscript", true);
                   #  # ]
     345   [ #  #  #  #  :           0 :         obj.pushKV("iswitness", true);
                   #  # ]
     346   [ #  #  #  #  :           0 :         obj.pushKV("witness_version", 1);
                   #  # ]
     347   [ #  #  #  #  :           0 :         obj.pushKV("witness_program", HexStr(tap));
             #  #  #  # ]
     348                 :           0 :         return obj;
     349                 :           0 :     }
     350                 :             : 
     351                 :           0 :     UniValue operator()(const PayToAnchor& anchor) const
     352                 :             :     {
     353                 :           0 :         UniValue obj(UniValue::VOBJ);
     354   [ #  #  #  #  :           0 :         obj.pushKV("isscript", true);
                   #  # ]
     355   [ #  #  #  #  :           0 :         obj.pushKV("iswitness", true);
                   #  # ]
     356                 :           0 :         return obj;
     357                 :           0 :     }
     358                 :             : 
     359                 :           0 :     UniValue operator()(const WitnessUnknown& id) const
     360                 :             :     {
     361                 :           0 :         UniValue obj(UniValue::VOBJ);
     362   [ #  #  #  #  :           0 :         obj.pushKV("iswitness", true);
                   #  # ]
     363   [ #  #  #  #  :           0 :         obj.pushKV("witness_version", id.GetWitnessVersion());
                   #  # ]
     364   [ #  #  #  #  :           0 :         obj.pushKV("witness_program", HexStr(id.GetWitnessProgram()));
             #  #  #  # ]
     365                 :           0 :         return obj;
     366                 :           0 :     }
     367                 :             : };
     368                 :             : 
     369                 :           0 : UniValue DescribeAddress(const CTxDestination& dest)
     370                 :             : {
     371                 :           0 :     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                 :           2 : int ParseSighashString(const UniValue& sighash)
     380                 :             : {
     381         [ -  + ]:           2 :     if (sighash.isNull()) {
     382                 :             :         return SIGHASH_DEFAULT;
     383                 :             :     }
     384                 :           0 :     const auto result{SighashFromStr(sighash.get_str())};
     385         [ #  # ]:           0 :     if (!result) {
     386   [ #  #  #  # ]:           0 :         throw JSONRPCError(RPC_INVALID_PARAMETER, util::ErrorString(result).original);
     387                 :             :     }
     388                 :           0 :     return result.value();
     389                 :           0 : }
     390                 :             : 
     391                 :           0 : unsigned int ParseConfirmTarget(const UniValue& value, unsigned int max_target)
     392                 :             : {
     393                 :           0 :     const int target{value.getInt<int>()};
     394                 :           0 :     const unsigned int unsigned_target{static_cast<unsigned int>(target)};
     395   [ #  #  #  # ]:           0 :     if (target < 1 || unsigned_target > max_target) {
     396   [ #  #  #  # ]:           0 :         throw JSONRPCError(RPC_INVALID_PARAMETER, strprintf("Invalid conf_target, must be between %u and %u", 1, max_target));
     397                 :             :     }
     398                 :           0 :     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                 :           0 : RPCErrorCode RPCErrorFromTransactionError(TransactionError terr)
     414                 :             : {
     415      [ #  #  # ]:           0 :     switch (terr) {
     416                 :             :         case TransactionError::MEMPOOL_REJECTED:
     417                 :             :             return RPC_TRANSACTION_REJECTED;
     418                 :           0 :         case TransactionError::ALREADY_IN_UTXO_SET:
     419                 :           0 :             return RPC_VERIFY_ALREADY_IN_UTXO_SET;
     420                 :           0 :         default: break;
     421                 :             :     }
     422                 :           0 :     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                 :           0 : UniValue JSONRPCTransactionError(TransactionError terr, const std::string& err_string)
     431                 :             : {
     432         [ #  # ]:           0 :     if (err_string.length() > 0) {
     433                 :           0 :         return JSONRPCError(RPCErrorFromTransactionError(terr), err_string);
     434                 :             :     } else {
     435   [ #  #  #  # ]:           0 :         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                 :         620 : struct Section {
     444                 :         188 :     Section(const std::string& left, const std::string& right)
     445         [ +  - ]:         188 :         : 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                 :         170 :     void PushSection(const Section& s)
     459                 :             :     {
     460         [ +  + ]:         170 :         m_max_pad = std::max(m_max_pad, s.m_left.size());
     461                 :         170 :         m_sections.push_back(s);
     462                 :         170 :     }
     463                 :             : 
     464                 :             :     /**
     465                 :             :      * Recursive helper to translate an RPCArg into sections
     466                 :             :      */
     467                 :             :     // NOLINTNEXTLINE(misc-no-recursion)
     468                 :          26 :     void Push(const RPCArg& arg, const size_t current_indent = 5, const OuterType outer_type = OuterType::NONE)
     469                 :             :     {
     470         [ +  - ]:          26 :         const auto indent = std::string(current_indent, ' ');
     471   [ +  -  +  +  :          26 :         const auto indent_next = std::string(current_indent + 2, ' ');
                   +  - ]
     472                 :          26 :         const bool push_name{outer_type == OuterType::OBJ}; // Dictionary keys must have a name
     473                 :          26 :         const bool is_top_level_arg{outer_type == OuterType::NONE}; // True on the first recursion
     474                 :             : 
     475   [ +  +  +  - ]:          26 :         switch (arg.m_type) {
     476                 :          21 :         case RPCArg::Type::STR_HEX:
     477                 :          21 :         case RPCArg::Type::STR:
     478                 :          21 :         case RPCArg::Type::NUM:
     479                 :          21 :         case RPCArg::Type::AMOUNT:
     480                 :          21 :         case RPCArg::Type::RANGE:
     481                 :          21 :         case RPCArg::Type::BOOL:
     482                 :          21 :         case RPCArg::Type::OBJ_NAMED_PARAMS: {
     483         [ +  + ]:          21 :             if (is_top_level_arg) return; // Nothing more to do for non-recursive types on first recursion
     484         [ +  - ]:           5 :             auto left = indent;
     485   [ -  +  -  - ]:           5 :             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   [ +  -  +  -  :          10 :                 left += push_name ? arg.ToStringObj(/*oneline=*/false) : arg.ToString(/*oneline=*/false);
                   -  - ]
     489                 :             :             }
     490         [ +  - ]:           5 :             left += ",";
     491   [ +  -  +  -  :          10 :             PushSection({left, arg.ToDescriptionString(/*is_named_arg=*/push_name)});
                   +  - ]
     492                 :           5 :             break;
     493                 :           5 :         }
     494                 :           3 :         case RPCArg::Type::OBJ:
     495                 :           3 :         case RPCArg::Type::OBJ_USER_KEYS: {
     496   [ -  +  -  -  :           3 :             const auto right = is_top_level_arg ? "" : arg.ToDescriptionString(/*is_named_arg=*/push_name);
                   +  - ]
     497   [ -  +  -  -  :           9 :             PushSection({indent + (push_name ? "\"" + arg.GetName() + "\": " : "") + "{", right});
          -  -  -  -  +  
          -  +  -  +  -  
          +  -  -  +  -  
             +  -  -  -  
                      - ]
     498         [ +  + ]:           8 :             for (const auto& arg_inner : arg.m_inner) {
     499         [ +  - ]:           5 :                 Push(arg_inner, current_indent + 2, OuterType::OBJ);
     500                 :             :             }
     501         [ +  + ]:           3 :             if (arg.m_type != RPCArg::Type::OBJ) {
     502   [ +  -  +  -  :           2 :                 PushSection({indent_next + "...", ""});
             +  -  +  - ]
     503                 :             :             }
     504   [ +  -  +  -  :          12 :             PushSection({indent + "}" + (is_top_level_arg ? "" : ","), ""});
          +  -  +  -  +  
                      - ]
     505                 :           3 :             break;
     506                 :           3 :         }
     507                 :           2 :         case RPCArg::Type::ARR: {
     508         [ +  - ]:           2 :             auto left = indent;
     509   [ -  +  -  -  :           4 :             left += push_name ? "\"" + arg.GetName() + "\": " : "";
          -  -  -  -  +  
          -  -  +  -  +  
             -  -  -  - ]
     510         [ +  - ]:           2 :             left += "[";
     511   [ +  -  +  -  :           2 :             const auto right = is_top_level_arg ? "" : arg.ToDescriptionString(/*is_named_arg=*/push_name);
                   -  - ]
     512   [ +  -  +  - ]:           2 :             PushSection({left, right});
     513         [ +  + ]:           5 :             for (const auto& arg_inner : arg.m_inner) {
     514         [ +  - ]:           3 :                 Push(arg_inner, current_indent + 2, OuterType::ARR);
     515                 :             :             }
     516   [ +  -  +  -  :           4 :             PushSection({indent_next + "...", ""});
             +  -  +  - ]
     517   [ -  +  +  -  :           6 :             PushSection({indent + "]" + (is_top_level_arg ? "" : ","), ""});
          +  -  +  -  +  
                      - ]
     518                 :           2 :             break;
     519                 :           2 :         }
     520                 :             :         } // no default case, so the compiler can warn about missing cases
     521                 :          26 :     }
     522                 :             : 
     523                 :             :     /**
     524                 :             :      * Concatenate all sections with proper padding
     525                 :             :      */
     526                 :          20 :     std::string ToString() const
     527                 :             :     {
     528                 :          20 :         std::string ret;
     529                 :          20 :         const size_t pad = m_max_pad + 4;
     530         [ +  + ]:         208 :         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         [ +  - ]:         188 :             CHECK_NONFATAL(s.m_left.find('\n') == std::string::npos);
     534         [ +  + ]:         188 :             if (s.m_right.empty()) {
     535         [ +  - ]:          49 :                 ret += s.m_left;
     536         [ +  - ]:          49 :                 ret += "\n";
     537                 :          49 :                 continue;
     538                 :             :             }
     539                 :             : 
     540         [ +  - ]:         139 :             std::string left = s.m_left;
     541         [ +  - ]:         139 :             left.resize(pad, ' ');
     542         [ +  - ]:         139 :             ret += left;
     543                 :             : 
     544                 :             :             // Properly pad after newlines
     545                 :         139 :             std::string right;
     546                 :         139 :             size_t begin = 0;
     547                 :         139 :             size_t new_line_pos = s.m_right.find_first_of('\n');
     548                 :         177 :             while (true) {
     549         [ +  - ]:         316 :                 right += s.m_right.substr(begin, new_line_pos - begin);
     550         [ +  + ]:         158 :                 if (new_line_pos == std::string::npos) {
     551                 :             :                     break; //No new line
     552                 :             :                 }
     553   [ +  -  +  - ]:          40 :                 right += "\n" + std::string(pad, ' ');
     554                 :          20 :                 begin = s.m_right.find_first_not_of(' ', new_line_pos + 1);
     555         [ +  + ]:          20 :                 if (begin == std::string::npos) {
     556                 :             :                     break; // Empty line
     557                 :             :                 }
     558                 :          19 :                 new_line_pos = s.m_right.find_first_of('\n', begin + 1);
     559                 :             :             }
     560         [ +  - ]:         139 :             ret += right;
     561         [ +  - ]:         139 :             ret += "\n";
     562                 :         139 :         }
     563                 :          20 :         return ret;
     564                 :           0 :     }
     565                 :             : };
     566                 :             : 
     567                 :          19 : RPCHelpMan::RPCHelpMan(std::string name, std::string description, std::vector<RPCArg> args, RPCResults results, RPCExamples examples)
     568   [ +  -  +  -  :          62 :     : RPCHelpMan{std::move(name), std::move(description), std::move(args), std::move(results), std::move(examples), nullptr} {}
                   +  + ]
     569                 :             : 
     570                 :       10379 : RPCHelpMan::RPCHelpMan(std::string name, std::string description, std::vector<RPCArg> args, RPCResults results, RPCExamples examples, RPCMethodImpl fun)
     571                 :       10387 :     : m_name{std::move(name)},
     572                 :       10387 :       m_fun{std::move(fun)},
     573                 :       10387 :       m_description{std::move(description)},
     574         [ +  - ]:       10379 :       m_args{std::move(args)},
     575         [ +  - ]:       10387 :       m_results{std::move(results)},
     576         [ +  - ]:       10387 :       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                 :       10379 :     enum ParamType { POSITIONAL = 1, NAMED = 2, NAMED_ONLY = 4 };
     582                 :       10379 :     std::map<std::string, int> param_names;
     583                 :             : 
     584         [ +  + ]:       27344 :     for (const auto& arg : m_args) {
     585         [ +  - ]:       16973 :         std::vector<std::string> names = SplitString(arg.m_names, '|');
     586                 :             :         // Should have unique named arguments
     587         [ +  + ]:       34116 :         for (const std::string& name : names) {
     588         [ +  - ]:       17145 :             auto& param_type = param_names[name];
     589         [ +  + ]:       17145 :             CHECK_NONFATAL(!(param_type & POSITIONAL));
     590         [ +  + ]:       17144 :             CHECK_NONFATAL(!(param_type & NAMED_ONLY));
     591                 :       17143 :             param_type |= POSITIONAL;
     592                 :             :         }
     593         [ +  + ]:       16971 :         if (arg.m_type == RPCArg::Type::OBJ_NAMED_PARAMS) {
     594         [ +  + ]:        1708 :             for (const auto& inner : arg.m_inner) {
     595         [ +  - ]:        1346 :                 std::vector<std::string> inner_names = SplitString(inner.m_names, '|');
     596         [ +  + ]:        2687 :                 for (const std::string& inner_name : inner_names) {
     597         [ +  - ]:        1347 :                     auto& param_type = param_names[inner_name];
     598   [ +  +  +  +  :        1349 :                     CHECK_NONFATAL(!(param_type & POSITIONAL) || inner.m_opts.also_positional);
                   +  + ]
     599         [ +  + ]:        1345 :                     CHECK_NONFATAL(!(param_type & NAMED));
     600         [ +  + ]:        1343 :                     CHECK_NONFATAL(!(param_type & NAMED_ONLY));
     601         [ +  + ]:        2572 :                     param_type |= inner.m_opts.also_positional ? NAMED : NAMED_ONLY;
     602                 :             :                 }
     603                 :        1346 :             }
     604                 :             :         }
     605                 :             :         // Default value type should match argument type only when defined
     606         [ +  + ]:       16965 :         if (arg.m_fallback.index() == 2) {
     607                 :        4392 :             const RPCArg::Type type = arg.m_type;
     608   [ -  +  +  +  :        4392 :             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                 :          20 :             case UniValue::VARR:
     613         [ +  - ]:          20 :                 CHECK_NONFATAL(type == RPCArg::Type::ARR);
     614                 :             :                 break;
     615                 :        1310 :             case UniValue::VSTR:
     616   [ +  +  -  +  :        2620 :                 CHECK_NONFATAL(type == RPCArg::Type::STR || type == RPCArg::Type::STR_HEX || type == RPCArg::Type::AMOUNT);
                      - ]
     617                 :             :                 break;
     618                 :        1437 :             case UniValue::VNUM:
     619   [ +  -  -  +  :        2874 :                 CHECK_NONFATAL(type == RPCArg::Type::NUM || type == RPCArg::Type::AMOUNT || type == RPCArg::Type::RANGE);
                      - ]
     620                 :             :                 break;
     621                 :        1625 :             case UniValue::VBOOL:
     622         [ +  - ]:        1625 :                 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                 :       16973 :     }
     633                 :       10411 : }
     634                 :             : 
     635                 :           6 : std::string RPCResults::ToDescriptionString() const
     636                 :             : {
     637                 :           6 :     std::string result;
     638         [ +  + ]:          14 :     for (const auto& r : m_results) {
     639         [ -  + ]:           8 :         if (r.m_type == RPCResult::Type::ANY) continue; // for testing only
     640         [ +  + ]:           8 :         if (r.m_cond.empty()) {
     641         [ +  - ]:           5 :             result += "\nResult:\n";
     642                 :             :         } else {
     643   [ +  -  +  - ]:           9 :             result += "\nResult (" + r.m_cond + "):\n";
     644                 :             :         }
     645                 :           8 :         Sections sections;
     646         [ +  - ]:           8 :         r.ToSections(sections);
     647         [ +  - ]:          16 :         result += sections.ToString();
     648                 :           8 :     }
     649                 :           6 :     return result;
     650                 :           0 : }
     651                 :             : 
     652                 :           6 : std::string RPCExamples::ToDescriptionString() const
     653                 :             : {
     654         [ -  + ]:           6 :     return m_examples.empty() ? m_examples : "\nExamples:\n" + m_examples;
     655                 :             : }
     656                 :             : 
     657                 :          60 : UniValue RPCHelpMan::HandleRequest(const JSONRPCRequest& request) const
     658                 :             : {
     659         [ -  + ]:          60 :     if (request.mode == JSONRPCRequest::GET_ARGS) {
     660                 :           0 :         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   [ +  -  +  + ]:          60 :     if (request.mode == JSONRPCRequest::GET_HELP || !IsValidNumArgs(request.params.size())) {
     667   [ +  -  +  - ]:          12 :         throw std::runtime_error(ToString());
     668                 :             :     }
     669                 :          54 :     UniValue arg_mismatch{UniValue::VOBJ};
     670         [ +  + ]:         183 :     for (size_t i{0}; i < m_args.size(); ++i) {
     671         [ +  - ]:         129 :         const auto& arg{m_args.at(i)};
     672   [ +  -  +  - ]:         129 :         UniValue match{arg.MatchesType(request.params[i])};
     673         [ +  + ]:         129 :         if (!match.isTrue()) {
     674   [ +  -  +  - ]:           4 :             arg_mismatch.pushKV(strprintf("Position %s (%s)", i + 1, arg.m_names), std::move(match));
     675                 :             :         }
     676                 :         129 :     }
     677         [ +  + ]:          54 :     if (!arg_mismatch.empty()) {
     678   [ +  -  +  -  :           4 :         throw JSONRPCError(RPC_TYPE_ERROR, strprintf("Wrong type passed:\n%s", arg_mismatch.write(4)));
                   +  - ]
     679                 :             :     }
     680         [ +  - ]:          52 :     CHECK_NONFATAL(m_req == nullptr);
     681                 :          52 :     m_req = &request;
     682         [ +  + ]:          52 :     UniValue ret = m_fun(*this, request);
     683                 :          41 :     m_req = nullptr;
     684   [ +  -  +  -  :          41 :     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                 :          41 :     return ret;
     707                 :          54 : }
     708                 :             : 
     709                 :             : using CheckFn = void(const RPCArg&);
     710                 :          15 : static const UniValue* DetailMaybeArg(CheckFn* check, const std::vector<RPCArg>& params, const JSONRPCRequest* req, size_t i)
     711                 :             : {
     712                 :          15 :     CHECK_NONFATAL(i < params.size());
     713                 :          15 :     const UniValue& arg{CHECK_NONFATAL(req)->params[i]};
     714                 :          15 :     const RPCArg& param{params.at(i)};
     715         [ +  + ]:          15 :     if (check) check(param);
     716                 :             : 
     717         [ +  + ]:          15 :     if (!arg.isNull()) return &arg;
     718         [ +  + ]:           5 :     if (!std::holds_alternative<RPCArg::Default>(param.m_fallback)) return nullptr;
     719                 :           3 :     return &std::get<RPCArg::Default>(param.m_fallback);
     720                 :             : }
     721                 :             : 
     722                 :          10 : static void CheckRequiredOrDefault(const RPCArg& param)
     723                 :             : {
     724                 :             :     // Must use `Arg<Type>(key)` to get the argument or its default value.
     725                 :          10 :     const bool required{
     726   [ +  +  -  + ]:          10 :         std::holds_alternative<RPCArg::Optional>(param.m_fallback) && RPCArg::Optional::NO == std::get<RPCArg::Optional>(param.m_fallback),
     727                 :          16 :     };
     728         [ +  - ]:          16 :     CHECK_NONFATAL(required || std::holds_alternative<RPCArg::Default>(param.m_fallback));
     729                 :          10 : }
     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         [ +  + ]:           2 : 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         [ +  + ]:           3 : TMPL_INST(nullptr, const std::string*, maybe_arg ? &maybe_arg->get_str() : nullptr;);
     747                 :             : 
     748                 :             : // Required arg or optional arg with default value.
     749                 :           0 : TMPL_INST(CheckRequiredOrDefault, const UniValue&, *CHECK_NONFATAL(maybe_arg););
     750                 :           2 : TMPL_INST(CheckRequiredOrDefault, bool, CHECK_NONFATAL(maybe_arg)->get_bool(););
     751                 :           2 : TMPL_INST(CheckRequiredOrDefault, int, CHECK_NONFATAL(maybe_arg)->getInt<int>(););
     752                 :           2 : TMPL_INST(CheckRequiredOrDefault, uint64_t, CHECK_NONFATAL(maybe_arg)->getInt<uint64_t>(););
     753                 :           4 : TMPL_INST(CheckRequiredOrDefault, const std::string&, CHECK_NONFATAL(maybe_arg)->get_str(););
     754                 :             : 
     755                 :          60 : bool RPCHelpMan::IsValidNumArgs(size_t num_args) const
     756                 :             : {
     757                 :          60 :     size_t num_required_args = 0;
     758         [ +  + ]:         137 :     for (size_t n = m_args.size(); n > 0; --n) {
     759         [ +  + ]:         120 :         if (!m_args.at(n - 1).IsOptional()) {
     760                 :             :             num_required_args = n;
     761                 :             :             break;
     762                 :             :         }
     763                 :             :     }
     764   [ +  +  +  + ]:          60 :     return num_required_args <= num_args && num_args <= m_args.size();
     765                 :             : }
     766                 :             : 
     767                 :        5150 : std::vector<std::pair<std::string, bool>> RPCHelpMan::GetArgNames() const
     768                 :             : {
     769                 :        5150 :     std::vector<std::pair<std::string, bool>> ret;
     770         [ +  - ]:        5150 :     ret.reserve(m_args.size());
     771         [ +  + ]:       13548 :     for (const auto& arg : m_args) {
     772         [ +  + ]:        8398 :         if (arg.m_type == RPCArg::Type::OBJ_NAMED_PARAMS) {
     773         [ +  + ]:         835 :             for (const auto& inner : arg.m_inner) {
     774         [ +  - ]:         660 :                 ret.emplace_back(inner.m_names, /*named_only=*/true);
     775                 :             :             }
     776                 :             :         }
     777         [ +  - ]:        8398 :         ret.emplace_back(arg.m_names, /*named_only=*/false);
     778                 :             :     }
     779                 :        5150 :     return ret;
     780                 :           0 : }
     781                 :             : 
     782                 :          15 : size_t RPCHelpMan::GetParamIndex(std::string_view key) const
     783                 :             : {
     784                 :          15 :     auto it{std::find_if(
     785                 :          63 :         m_args.begin(), m_args.end(), [&key](const auto& arg) { return arg.GetName() == key;}
     786                 :             :     )};
     787                 :             : 
     788                 :          15 :     CHECK_NONFATAL(it != m_args.end());  // TODO: ideally this is checked at compile time
     789                 :          15 :     return std::distance(m_args.begin(), it);
     790                 :             : }
     791                 :             : 
     792                 :           6 : std::string RPCHelpMan::ToString() const
     793                 :             : {
     794         [ +  - ]:           6 :     std::string ret;
     795                 :             : 
     796                 :             :     // Oneline summary
     797         [ +  - ]:           6 :     ret += m_name;
     798                 :           6 :     bool was_optional{false};
     799         [ +  + ]:          24 :     for (const auto& arg : m_args) {
     800         [ +  - ]:          18 :         if (arg.m_opts.hidden) break; // Any arg that follows is also hidden
     801         [ +  - ]:          18 :         const bool optional = arg.IsOptional();
     802         [ +  - ]:          18 :         ret += " ";
     803         [ +  + ]:          18 :         if (optional) {
     804   [ +  +  +  - ]:          10 :             if (!was_optional) ret += "( ";
     805                 :             :             was_optional = true;
     806                 :             :         } else {
     807   [ -  +  -  - ]:           8 :             if (was_optional) ret += ") ";
     808                 :             :             was_optional = false;
     809                 :             :         }
     810         [ +  - ]:          36 :         ret += arg.ToString(/*oneline=*/true);
     811                 :             :     }
     812   [ +  -  +  - ]:           6 :     if (was_optional) ret += " )";
     813                 :             : 
     814                 :             :     // Description
     815   [ +  -  +  -  :          18 :     ret += "\n\n" + TrimString(m_description) + "\n";
                   +  - ]
     816                 :             : 
     817                 :             :     // Arguments
     818                 :           6 :     Sections sections;
     819                 :           6 :     Sections named_only_sections;
     820         [ +  + ]:          24 :     for (size_t i{0}; i < m_args.size(); ++i) {
     821         [ +  - ]:          18 :         const auto& arg = m_args.at(i);
     822         [ +  - ]:          18 :         if (arg.m_opts.hidden) break; // Any arg that follows is also hidden
     823                 :             : 
     824                 :             :         // Push named argument name and description
     825   [ +  -  +  -  :          54 :         sections.m_sections.emplace_back(util::ToString(i + 1) + ". " + arg.GetFirstName(), arg.ToDescriptionString(/*is_named_arg=*/true));
          +  -  +  -  +  
                      - ]
     826         [ +  + ]:          18 :         sections.m_max_pad = std::max(sections.m_max_pad, sections.m_sections.back().m_left.size());
     827                 :             : 
     828                 :             :         // Recursively push nested args
     829         [ +  - ]:          18 :         sections.Push(arg);
     830                 :             : 
     831                 :             :         // Push named-only argument sections
     832         [ -  + ]:          18 :         if (arg.m_type == RPCArg::Type::OBJ_NAMED_PARAMS) {
     833         [ #  # ]:           0 :             for (const auto& arg_inner : arg.m_inner) {
     834   [ #  #  #  #  :           0 :                 named_only_sections.PushSection({arg_inner.GetFirstName(), arg_inner.ToDescriptionString(/*is_named_arg=*/true)});
             #  #  #  # ]
     835         [ #  # ]:           0 :                 named_only_sections.Push(arg_inner);
     836                 :             :             }
     837                 :             :         }
     838                 :             :     }
     839                 :             : 
     840   [ +  -  +  - ]:           6 :     if (!sections.m_sections.empty()) ret += "\nArguments:\n";
     841         [ +  - ]:          12 :     ret += sections.ToString();
     842   [ -  +  -  - ]:           6 :     if (!named_only_sections.m_sections.empty()) ret += "\nNamed Arguments:\n";
     843         [ +  - ]:          12 :     ret += named_only_sections.ToString();
     844                 :             : 
     845                 :             :     // Result
     846         [ +  - ]:          12 :     ret += m_results.ToDescriptionString();
     847                 :             : 
     848                 :             :     // Examples
     849         [ +  - ]:          12 :     ret += m_examples.ToDescriptionString();
     850                 :             : 
     851                 :           6 :     return ret;
     852                 :           6 : }
     853                 :             : 
     854                 :           0 : UniValue RPCHelpMan::GetArgMap() const
     855                 :             : {
     856                 :           0 :     UniValue arr{UniValue::VARR};
     857                 :             : 
     858                 :           0 :     auto push_back_arg_info = [&arr](const std::string& rpc_name, int pos, const std::string& arg_name, const RPCArg::Type& type) {
     859                 :           0 :         UniValue map{UniValue::VARR};
     860   [ #  #  #  # ]:           0 :         map.push_back(rpc_name);
     861   [ #  #  #  # ]:           0 :         map.push_back(pos);
     862   [ #  #  #  # ]:           0 :         map.push_back(arg_name);
     863   [ #  #  #  # ]:           0 :         map.push_back(type == RPCArg::Type::STR ||
     864                 :             :                       type == RPCArg::Type::STR_HEX);
     865         [ #  # ]:           0 :         arr.push_back(std::move(map));
     866                 :           0 :     };
     867                 :             : 
     868         [ #  # ]:           0 :     for (int i{0}; i < int(m_args.size()); ++i) {
     869         [ #  # ]:           0 :         const auto& arg = m_args.at(i);
     870         [ #  # ]:           0 :         std::vector<std::string> arg_names = SplitString(arg.m_names, '|');
     871         [ #  # ]:           0 :         for (const auto& arg_name : arg_names) {
     872         [ #  # ]:           0 :             push_back_arg_info(m_name, i, arg_name, arg.m_type);
     873         [ #  # ]:           0 :             if (arg.m_type == RPCArg::Type::OBJ_NAMED_PARAMS) {
     874         [ #  # ]:           0 :                 for (const auto& inner : arg.m_inner) {
     875         [ #  # ]:           0 :                     std::vector<std::string> inner_names = SplitString(inner.m_names, '|');
     876         [ #  # ]:           0 :                     for (const std::string& inner_name : inner_names) {
     877         [ #  # ]:           0 :                         push_back_arg_info(m_name, i, inner_name, inner.m_type);
     878                 :             :                     }
     879                 :           0 :                 }
     880                 :             :             }
     881                 :             :         }
     882                 :           0 :     }
     883                 :           0 :     return arr;
     884                 :           0 : }
     885                 :             : 
     886                 :          64 : static std::optional<UniValue::VType> ExpectedType(RPCArg::Type type)
     887                 :             : {
     888                 :          64 :     using Type = RPCArg::Type;
     889   [ +  +  -  -  :          64 :     switch (type) {
             +  -  +  - ]
     890                 :          39 :     case Type::STR_HEX:
     891                 :          39 :     case Type::STR: {
     892                 :          39 :         return UniValue::VSTR;
     893                 :             :     }
     894                 :           6 :     case Type::NUM: {
     895                 :           6 :         return UniValue::VNUM;
     896                 :             :     }
     897                 :           0 :     case Type::AMOUNT: {
     898                 :             :         // VNUM or VSTR, checked inside AmountFromValue()
     899                 :           0 :         return std::nullopt;
     900                 :             :     }
     901                 :           0 :     case Type::RANGE: {
     902                 :             :         // VNUM or VARR, checked inside ParseRange()
     903                 :           0 :         return std::nullopt;
     904                 :             :     }
     905                 :           5 :     case Type::BOOL: {
     906                 :           5 :         return UniValue::VBOOL;
     907                 :             :     }
     908                 :           0 :     case Type::OBJ:
     909                 :           0 :     case Type::OBJ_NAMED_PARAMS:
     910                 :           0 :     case Type::OBJ_USER_KEYS: {
     911                 :           0 :         return UniValue::VOBJ;
     912                 :             :     }
     913                 :          14 :     case Type::ARR: {
     914                 :          14 :         return UniValue::VARR;
     915                 :             :     }
     916                 :             :     } // no default case, so the compiler can warn about missing cases
     917         [ #  # ]:           0 :     NONFATAL_UNREACHABLE();
     918                 :             : }
     919                 :             : 
     920                 :         129 : UniValue RPCArg::MatchesType(const UniValue& request) const
     921                 :             : {
     922         [ +  + ]:         129 :     if (m_opts.skip_type_check) return true;
     923   [ +  +  +  + ]:         119 :     if (IsOptional() && request.isNull()) return true;
     924                 :          64 :     const auto exp_type{ExpectedType(m_type)};
     925         [ -  + ]:          64 :     if (!exp_type) return true; // nothing to check
     926                 :             : 
     927         [ +  + ]:          64 :     if (*exp_type != request.getType()) {
     928         [ +  - ]:           4 :         return strprintf("JSON value of type %s is not of expected type %s", uvTypeName(request.getType()), uvTypeName(*exp_type));
     929                 :             :     }
     930                 :          62 :     return true;
     931                 :             : }
     932                 :             : 
     933                 :          44 : std::string RPCArg::GetFirstName() const
     934                 :             : {
     935                 :          44 :     return m_names.substr(0, m_names.find('|'));
     936                 :             : }
     937                 :             : 
     938                 :          63 : std::string RPCArg::GetName() const
     939                 :             : {
     940                 :          63 :     CHECK_NONFATAL(std::string::npos == m_names.find('|'));
     941                 :          63 :     return m_names;
     942                 :             : }
     943                 :             : 
     944                 :         257 : bool RPCArg::IsOptional() const
     945                 :             : {
     946         [ +  + ]:         257 :     if (m_fallback.index() != 0) {
     947                 :             :         return true;
     948                 :             :     } else {
     949                 :         122 :         return RPCArg::Optional::NO != std::get<RPCArg::Optional>(m_fallback);
     950                 :             :     }
     951                 :             : }
     952                 :             : 
     953                 :          26 : std::string RPCArg::ToDescriptionString(bool is_named_arg) const
     954                 :             : {
     955         [ +  - ]:          26 :     std::string ret;
     956         [ +  - ]:          26 :     ret += "(";
     957         [ -  + ]:          26 :     if (m_opts.type_str.size() != 0) {
     958   [ #  #  #  # ]:           0 :         ret += m_opts.type_str.at(1);
     959                 :             :     } else {
     960   [ +  +  +  -  :          26 :         switch (m_type) {
             +  +  +  - ]
     961                 :           9 :         case Type::STR_HEX:
     962                 :           9 :         case Type::STR: {
     963         [ +  - ]:           9 :             ret += "string";
     964                 :             :             break;
     965                 :             :         }
     966                 :           5 :         case Type::NUM: {
     967         [ +  - ]:           5 :             ret += "numeric";
     968                 :             :             break;
     969                 :             :         }
     970                 :           3 :         case Type::AMOUNT: {
     971         [ +  - ]:           3 :             ret += "numeric or string";
     972                 :             :             break;
     973                 :             :         }
     974                 :           0 :         case Type::RANGE: {
     975         [ #  # ]:           0 :             ret += "numeric or array";
     976                 :             :             break;
     977                 :             :         }
     978                 :           4 :         case Type::BOOL: {
     979         [ +  - ]:           4 :             ret += "boolean";
     980                 :             :             break;
     981                 :             :         }
     982                 :           3 :         case Type::OBJ:
     983                 :           3 :         case Type::OBJ_NAMED_PARAMS:
     984                 :           3 :         case Type::OBJ_USER_KEYS: {
     985         [ +  - ]:           3 :             ret += "json object";
     986                 :             :             break;
     987                 :             :         }
     988                 :           2 :         case Type::ARR: {
     989   [ +  -  +  + ]:          26 :             ret += "json array";
     990                 :             :             break;
     991                 :             :         }
     992                 :             :         } // no default case, so the compiler can warn about missing cases
     993                 :             :     }
     994         [ +  + ]:          26 :     if (m_fallback.index() == 1) {
     995         [ +  - ]:           6 :         ret += ", optional, default=" + std::get<RPCArg::DefaultHint>(m_fallback);
     996         [ +  + ]:          23 :     } else if (m_fallback.index() == 2) {
     997   [ +  -  +  - ]:          14 :         ret += ", optional, default=" + std::get<RPCArg::Default>(m_fallback).write();
     998                 :             :     } else {
     999   [ -  +  +  +  :          16 :         switch (std::get<RPCArg::Optional>(m_fallback)) {
                      - ]
    1000                 :           4 :         case RPCArg::Optional::OMITTED: {
    1001   [ +  +  +  - ]:           4 :             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                 :          12 :         case RPCArg::Optional::NO: {
    1006         [ +  - ]:          12 :             ret += ", required";
    1007                 :             :             break;
    1008                 :             :         }
    1009                 :             :         } // no default case, so the compiler can warn about missing cases
    1010                 :             :     }
    1011         [ +  - ]:          26 :     ret += ")";
    1012   [ -  +  -  - ]:          26 :     if (m_type == Type::OBJ_NAMED_PARAMS) ret += " Options object that can be used to pass named arguments, listed below.";
    1013   [ +  +  +  -  :          52 :     ret += m_description.empty() ? "" : " " + m_description;
                   +  - ]
    1014                 :          26 :     return ret;
    1015                 :           0 : }
    1016                 :             : 
    1017                 :             : // NOLINTNEXTLINE(misc-no-recursion)
    1018                 :         113 : void RPCResult::ToSections(Sections& sections, const OuterType outer_type, const int current_indent) const
    1019                 :             : {
    1020                 :             :     // Indentation
    1021         [ +  - ]:         113 :     const std::string indent(current_indent, ' ');
    1022   [ +  -  +  + ]:         113 :     const std::string indent_next(current_indent + 2, ' ');
    1023                 :             : 
    1024                 :             :     // Elements in a JSON structure (dictionary or array) are separated by a comma
    1025   [ +  +  +  - ]:         121 :     const std::string maybe_separator{outer_type != OuterType::NONE ? "," : ""};
    1026                 :             : 
    1027                 :             :     // The key name if recursed into a dictionary
    1028                 :         113 :     const std::string maybe_key{
    1029         [ +  + ]:         113 :         outer_type == OuterType::OBJ ?
    1030   [ +  -  -  - ]:         190 :             "\"" + this->m_key_name + "\" : " :
    1031   [ +  -  +  - ]:         208 :             ""};
    1032                 :             : 
    1033                 :             :     // Format description with type
    1034                 :         224 :     const auto Description = [&](const std::string& type) {
    1035   [ +  +  +  -  :         418 :         return "(" + type + (this->m_optional ? ", optional" : "") + ")" +
                   +  - ]
    1036   [ +  +  +  - ]:         333 :                (this->m_description.empty() ? "" : " " + this->m_description);
    1037                 :         113 :     };
    1038                 :             : 
    1039   [ +  -  +  +  :         113 :     switch (m_type) {
          +  +  +  +  +  
                +  +  - ]
    1040                 :           2 :     case Type::ELISION: {
    1041                 :             :         // If the inner result is empty, use three dots for elision
    1042   [ +  -  +  -  :           4 :         sections.PushSection({indent + "..." + maybe_separator, m_description});
             +  -  +  - ]
    1043                 :           2 :         return;
    1044                 :             :     }
    1045                 :           0 :     case Type::ANY: {
    1046         [ #  # ]:           0 :         NONFATAL_UNREACHABLE(); // Only for testing
    1047                 :             :     }
    1048                 :           1 :     case Type::NONE: {
    1049   [ +  -  +  -  :           2 :         sections.PushSection({indent + "null" + maybe_separator, Description("json null")});
          +  -  +  -  +  
                -  +  - ]
    1050                 :           1 :         return;
    1051                 :             :     }
    1052                 :          20 :     case Type::STR: {
    1053   [ +  -  +  -  :          60 :         sections.PushSection({indent + maybe_key + "\"str\"" + maybe_separator, Description("string")});
          +  -  +  -  +  
                -  +  - ]
    1054                 :          20 :         return;
    1055                 :             :     }
    1056                 :           4 :     case Type::STR_AMOUNT: {
    1057   [ +  -  +  -  :          12 :         sections.PushSection({indent + maybe_key + "n" + maybe_separator, Description("numeric")});
          +  -  +  -  +  
                -  +  - ]
    1058                 :           4 :         return;
    1059                 :             :     }
    1060                 :          26 :     case Type::STR_HEX: {
    1061   [ +  -  +  -  :          78 :         sections.PushSection({indent + maybe_key + "\"hex\"" + maybe_separator, Description("string")});
          +  -  +  -  +  
                -  +  - ]
    1062                 :          26 :         return;
    1063                 :             :     }
    1064                 :          25 :     case Type::NUM: {
    1065   [ +  -  +  -  :          75 :         sections.PushSection({indent + maybe_key + "n" + maybe_separator, Description("numeric")});
          +  -  +  -  +  
                -  +  - ]
    1066                 :          25 :         return;
    1067                 :             :     }
    1068                 :           4 :     case Type::NUM_TIME: {
    1069   [ +  -  +  -  :          12 :         sections.PushSection({indent + maybe_key + "xxx" + maybe_separator, Description("numeric")});
          +  -  +  -  +  
                -  +  - ]
    1070                 :           4 :         return;
    1071                 :             :     }
    1072                 :           2 :     case Type::BOOL: {
    1073   [ +  -  +  -  :           6 :         sections.PushSection({indent + maybe_key + "true|false" + maybe_separator, Description("boolean")});
          +  -  +  -  +  
                -  +  - ]
    1074                 :           2 :         return;
    1075                 :             :     }
    1076                 :          10 :     case Type::ARR_FIXED:
    1077                 :          10 :     case Type::ARR: {
    1078   [ +  -  +  -  :          30 :         sections.PushSection({indent + maybe_key + "[", Description("json array")});
          +  -  +  -  +  
                      - ]
    1079         [ +  + ]:          20 :         for (const auto& i : m_inner) {
    1080         [ +  - ]:          10 :             i.ToSections(sections, OuterType::ARR, current_indent + 2);
    1081                 :             :         }
    1082         [ +  - ]:          10 :         CHECK_NONFATAL(!m_inner.empty());
    1083   [ +  -  -  + ]:          10 :         if (m_type == Type::ARR && m_inner.back().m_type != Type::ELISION) {
    1084   [ +  -  +  -  :          20 :             sections.PushSection({indent_next + "...", ""});
             +  -  +  - ]
    1085                 :             :         } else {
    1086                 :             :             // Remove final comma, which would be invalid JSON
    1087                 :           0 :             sections.m_sections.back().m_left.pop_back();
    1088                 :             :         }
    1089   [ +  -  +  -  :          20 :         sections.PushSection({indent + "]" + maybe_separator, ""});
          +  -  +  -  +  
                      - ]
    1090                 :          10 :         return;
    1091                 :             :     }
    1092                 :          19 :     case Type::OBJ_DYN:
    1093                 :          19 :     case Type::OBJ: {
    1094         [ -  + ]:          19 :         if (m_inner.empty()) {
    1095   [ #  #  #  #  :           0 :             sections.PushSection({indent + maybe_key + "{}", Description("empty JSON object")});
          #  #  #  #  #  
                      # ]
    1096                 :           0 :             return;
    1097                 :             :         }
    1098   [ +  -  +  -  :          57 :         sections.PushSection({indent + maybe_key + "{", Description("json object")});
          +  -  +  -  +  
                      - ]
    1099         [ +  + ]:         114 :         for (const auto& i : m_inner) {
    1100         [ +  - ]:          95 :             i.ToSections(sections, OuterType::OBJ, current_indent + 2);
    1101                 :             :         }
    1102   [ -  +  -  - ]:          19 :         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   [ #  #  #  #  :           0 :             sections.PushSection({indent_next + "...", ""});
             #  #  #  # ]
    1105                 :             :         } else {
    1106                 :             :             // Remove final comma, which would be invalid JSON
    1107                 :          19 :             sections.m_sections.back().m_left.pop_back();
    1108                 :             :         }
    1109   [ +  -  +  -  :          38 :         sections.PushSection({indent + "}" + maybe_separator, ""});
          +  -  +  -  +  
                      - ]
    1110                 :          19 :         return;
    1111                 :             :     }
    1112                 :             :     } // no default case, so the compiler can warn about missing cases
    1113         [ #  # ]:           0 :     NONFATAL_UNREACHABLE();
    1114                 :         113 : }
    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                 :       98648 : void RPCResult::CheckInnerDoc() const
    1220                 :             : {
    1221         [ +  + ]:       98648 :     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   [ +  +  +  + ]:       83806 :     const bool inner_needed{m_type == Type::ARR || m_type == Type::ARR_FIXED || m_type == Type::OBJ_DYN};
    1227                 :       83806 :     CHECK_NONFATAL(inner_needed != m_inner.empty());
    1228                 :             : }
    1229                 :             : 
    1230                 :             : // NOLINTNEXTLINE(misc-no-recursion)
    1231                 :          10 : std::string RPCArg::ToStringObj(const bool oneline) const
    1232                 :             : {
    1233         [ +  - ]:          10 :     std::string res;
    1234         [ +  - ]:          10 :     res += "\"";
    1235         [ +  - ]:          20 :     res += GetFirstName();
    1236         [ +  + ]:          10 :     if (oneline) {
    1237         [ +  - ]:           5 :         res += "\":";
    1238                 :             :     } else {
    1239         [ +  - ]:           5 :         res += "\": ";
    1240                 :             :     }
    1241   [ -  +  +  -  :          10 :     switch (m_type) {
             +  -  -  -  
                      - ]
    1242                 :           0 :     case Type::STR:
    1243         [ #  # ]:           0 :         return res + "\"str\"";
    1244                 :           4 :     case Type::STR_HEX:
    1245         [ +  - ]:           4 :         return res + "\"hex\"";
    1246                 :           4 :     case Type::NUM:
    1247         [ +  - ]:           4 :         return res + "n";
    1248                 :           0 :     case Type::RANGE:
    1249         [ #  # ]:           0 :         return res + "n or [n,n]";
    1250                 :           2 :     case Type::AMOUNT:
    1251         [ +  - ]:           2 :         return res + "amount";
    1252                 :           0 :     case Type::BOOL:
    1253         [ #  # ]:           0 :         return res + "bool";
    1254                 :           0 :     case Type::ARR:
    1255         [ #  # ]:           0 :         res += "[";
    1256         [ #  # ]:           0 :         for (const auto& i : m_inner) {
    1257   [ #  #  #  # ]:           0 :             res += i.ToString(oneline) + ",";
    1258                 :             :         }
    1259         [ #  # ]:           0 :         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                 :          10 : }
    1268                 :             : 
    1269                 :             : // NOLINTNEXTLINE(misc-no-recursion)
    1270                 :          21 : std::string RPCArg::ToString(const bool oneline) const
    1271                 :             : {
    1272   [ +  -  -  + ]:          21 :     if (oneline && !m_opts.oneline_description.empty()) {
    1273   [ #  #  #  #  :           0 :         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                 :           0 :         return m_opts.oneline_description;
    1280                 :             :     }
    1281                 :             : 
    1282   [ +  +  +  +  :          21 :     switch (m_type) {
                      - ]
    1283                 :           7 :     case Type::STR_HEX:
    1284                 :           7 :     case Type::STR: {
    1285         [ +  - ]:          14 :         return "\"" + GetFirstName() + "\"";
    1286                 :             :     }
    1287                 :           9 :     case Type::NUM:
    1288                 :           9 :     case Type::RANGE:
    1289                 :           9 :     case Type::AMOUNT:
    1290                 :           9 :     case Type::BOOL: {
    1291                 :           9 :         return GetFirstName();
    1292                 :             :     }
    1293                 :           3 :     case Type::OBJ:
    1294                 :           3 :     case Type::OBJ_NAMED_PARAMS:
    1295                 :           3 :     case Type::OBJ_USER_KEYS: {
    1296                 :             :         // NOLINTNEXTLINE(misc-no-recursion)
    1297         [ +  - ]:           8 :         const std::string res = Join(m_inner, ",", [&](const RPCArg& i) { return i.ToStringObj(oneline); });
    1298         [ +  + ]:           3 :         if (m_type == Type::OBJ) {
    1299         [ +  - ]:           4 :             return "{" + res + "}";
    1300                 :             :         } else {
    1301         [ +  - ]:           2 :             return "{" + res + ",...}";
    1302                 :             :         }
    1303                 :           3 :     }
    1304                 :           2 :     case Type::ARR: {
    1305                 :           2 :         std::string res;
    1306         [ +  + ]:           5 :         for (const auto& i : m_inner) {
    1307   [ +  -  +  - ]:           9 :             res += i.ToString(oneline) + ",";
    1308                 :             :         }
    1309         [ +  - ]:           4 :         return "[" + res + "...]";
    1310                 :           2 :     }
    1311                 :             :     } // no default case, so the compiler can warn about missing cases
    1312         [ #  # ]:           0 :     NONFATAL_UNREACHABLE();
    1313                 :             : }
    1314                 :             : 
    1315                 :           0 : static std::pair<int64_t, int64_t> ParseRange(const UniValue& value)
    1316                 :             : {
    1317         [ #  # ]:           0 :     if (value.isNum()) {
    1318                 :           0 :         return {0, value.getInt<int64_t>()};
    1319                 :             :     }
    1320   [ #  #  #  #  :           0 :     if (value.isArray() && value.size() == 2 && value[0].isNum() && value[1].isNum()) {
             #  #  #  # ]
    1321                 :           0 :         int64_t low = value[0].getInt<int64_t>();
    1322                 :           0 :         int64_t high = value[1].getInt<int64_t>();
    1323   [ #  #  #  #  :           0 :         if (low > high) throw JSONRPCError(RPC_INVALID_PARAMETER, "Range specified as [begin,end] must not have begin after end");
                   #  # ]
    1324                 :           0 :         return {low, high};
    1325                 :             :     }
    1326   [ #  #  #  # ]:           0 :     throw JSONRPCError(RPC_INVALID_PARAMETER, "Range must be specified as end or as [begin,end]");
    1327                 :             : }
    1328                 :             : 
    1329                 :           0 : std::pair<int64_t, int64_t> ParseDescriptorRange(const UniValue& value)
    1330                 :             : {
    1331                 :           0 :     int64_t low, high;
    1332         [ #  # ]:           0 :     std::tie(low, high) = ParseRange(value);
    1333         [ #  # ]:           0 :     if (low < 0) {
    1334   [ #  #  #  # ]:           0 :         throw JSONRPCError(RPC_INVALID_PARAMETER, "Range should be greater or equal than 0");
    1335                 :             :     }
    1336         [ #  # ]:           0 :     if ((high >> 31) != 0) {
    1337   [ #  #  #  # ]:           0 :         throw JSONRPCError(RPC_INVALID_PARAMETER, "End of range is too high");
    1338                 :             :     }
    1339         [ #  # ]:           0 :     if (high >= low + 1000000) {
    1340   [ #  #  #  # ]:           0 :         throw JSONRPCError(RPC_INVALID_PARAMETER, "Range is too large");
    1341                 :             :     }
    1342                 :           0 :     return {low, high};
    1343                 :             : }
    1344                 :             : 
    1345                 :           0 : std::vector<CScript> EvalDescriptorStringOrObject(const UniValue& scanobject, FlatSigningProvider& provider, const bool expand_priv)
    1346                 :             : {
    1347         [ #  # ]:           0 :     std::string desc_str;
    1348                 :           0 :     std::pair<int64_t, int64_t> range = {0, 1000};
    1349         [ #  # ]:           0 :     if (scanobject.isStr()) {
    1350   [ #  #  #  # ]:           0 :         desc_str = scanobject.get_str();
    1351         [ #  # ]:           0 :     } else if (scanobject.isObject()) {
    1352         [ #  # ]:           0 :         const UniValue& desc_uni{scanobject.find_value("desc")};
    1353   [ #  #  #  #  :           0 :         if (desc_uni.isNull()) throw JSONRPCError(RPC_INVALID_PARAMETER, "Descriptor needs to be provided in scan object");
                   #  # ]
    1354   [ #  #  #  # ]:           0 :         desc_str = desc_uni.get_str();
    1355         [ #  # ]:           0 :         const UniValue& range_uni{scanobject.find_value("range")};
    1356         [ #  # ]:           0 :         if (!range_uni.isNull()) {
    1357         [ #  # ]:           0 :             range = ParseDescriptorRange(range_uni);
    1358                 :             :         }
    1359                 :             :     } else {
    1360   [ #  #  #  # ]:           0 :         throw JSONRPCError(RPC_INVALID_PARAMETER, "Scan object needs to be either a string or an object");
    1361                 :             :     }
    1362                 :             : 
    1363         [ #  # ]:           0 :     std::string error;
    1364         [ #  # ]:           0 :     auto descs = Parse(desc_str, provider, error);
    1365         [ #  # ]:           0 :     if (descs.empty()) {
    1366         [ #  # ]:           0 :         throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, error);
    1367                 :             :     }
    1368   [ #  #  #  #  :           0 :     if (!descs.at(0)->IsRange()) {
                   #  # ]
    1369                 :           0 :         range.first = 0;
    1370                 :           0 :         range.second = 0;
    1371                 :             :     }
    1372                 :           0 :     std::vector<CScript> ret;
    1373         [ #  # ]:           0 :     for (int i = range.first; i <= range.second; ++i) {
    1374         [ #  # ]:           0 :         for (const auto& desc : descs) {
    1375                 :           0 :             std::vector<CScript> scripts;
    1376   [ #  #  #  # ]:           0 :             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         [ #  # ]:           0 :             if (expand_priv) {
    1380         [ #  # ]:           0 :                 desc->ExpandPrivate(/*pos=*/i, provider, /*out=*/provider);
    1381                 :             :             }
    1382         [ #  # ]:           0 :             std::move(scripts.begin(), scripts.end(), std::back_inserter(ret));
    1383                 :           0 :         }
    1384                 :             :     }
    1385                 :           0 :     return ret;
    1386                 :           0 : }
    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                 :           2 : void PushWarnings(const UniValue& warnings, UniValue& obj)
    1400                 :             : {
    1401         [ -  + ]:           2 :     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                 :             : }
        

Generated by: LCOV version 2.0-1