/tmp/bitcoin/src/rpc/output_script.cpp
Line | Count | Source |
1 | | // Copyright (c) 2010 Satoshi Nakamoto |
2 | | // Copyright (c) 2009-present The Bitcoin Core developers |
3 | | // Distributed under the MIT software license, see the accompanying |
4 | | // file COPYING or http://www.opensource.org/licenses/mit-license.php. |
5 | | |
6 | | #include <key_io.h> |
7 | | #include <outputtype.h> |
8 | | #include <pubkey.h> |
9 | | #include <rpc/protocol.h> |
10 | | #include <rpc/request.h> |
11 | | #include <rpc/server.h> |
12 | | #include <rpc/util.h> |
13 | | #include <script/descriptor.h> |
14 | | #include <script/script.h> |
15 | | #include <script/signingprovider.h> |
16 | | #include <tinyformat.h> |
17 | | #include <univalue.h> |
18 | | #include <util/check.h> |
19 | | #include <util/strencodings.h> |
20 | | |
21 | | #include <cstdint> |
22 | | #include <memory> |
23 | | #include <optional> |
24 | | #include <string> |
25 | | #include <string_view> |
26 | | #include <tuple> |
27 | | #include <vector> |
28 | | |
29 | | static RPCMethod validateaddress() |
30 | 2.46k | { |
31 | 2.46k | return RPCMethod{ |
32 | 2.46k | "validateaddress", |
33 | 2.46k | "Return information about the given bitcoin address.\n", |
34 | 2.46k | { |
35 | 2.46k | {"address", RPCArg::Type::STR, RPCArg::Optional::NO, "The bitcoin address to validate"}, |
36 | 2.46k | }, |
37 | 2.46k | RPCResult{ |
38 | 2.46k | RPCResult::Type::OBJ, "", "", |
39 | 2.46k | { |
40 | 2.46k | {RPCResult::Type::BOOL, "isvalid", "If the address is valid or not"}, |
41 | 2.46k | {RPCResult::Type::STR, "address", /*optional=*/true, "The bitcoin address validated"}, |
42 | 2.46k | {RPCResult::Type::STR_HEX, "scriptPubKey", /*optional=*/true, "The hex-encoded output script generated by the address"}, |
43 | 2.46k | {RPCResult::Type::BOOL, "isscript", /*optional=*/true, "If the key is a script"}, |
44 | 2.46k | {RPCResult::Type::BOOL, "iswitness", /*optional=*/true, "If the address is a witness address"}, |
45 | 2.46k | {RPCResult::Type::NUM, "witness_version", /*optional=*/true, "The version number of the witness program"}, |
46 | 2.46k | {RPCResult::Type::STR_HEX, "witness_program", /*optional=*/true, "The hex value of the witness program"}, |
47 | 2.46k | {RPCResult::Type::STR, "error", /*optional=*/true, "Error message, if any"}, |
48 | 2.46k | {RPCResult::Type::ARR, "error_locations", /*optional=*/true, "Indices of likely error locations in address, if known (e.g. Bech32 errors)", |
49 | 2.46k | { |
50 | 2.46k | {RPCResult::Type::NUM, "index", "index of a potential error"}, |
51 | 2.46k | }}, |
52 | 2.46k | } |
53 | 2.46k | }, |
54 | 2.46k | RPCExamples{ |
55 | 2.46k | HelpExampleCli("validateaddress", "\"" + EXAMPLE_ADDRESS[0] + "\"") + |
56 | 2.46k | HelpExampleRpc("validateaddress", "\"" + EXAMPLE_ADDRESS[0] + "\"") |
57 | 2.46k | }, |
58 | 2.46k | [](const RPCMethod& self, const JSONRPCRequest& request) -> UniValue |
59 | 2.46k | { |
60 | 148 | std::string error_msg; |
61 | 148 | std::vector<int> error_locations; |
62 | 148 | CTxDestination dest = DecodeDestination(request.params[0].get_str(), error_msg, &error_locations); |
63 | 148 | const bool isValid = IsValidDestination(dest); |
64 | 148 | CHECK_NONFATAL(isValid == error_msg.empty()); |
65 | | |
66 | 148 | UniValue ret(UniValue::VOBJ); |
67 | 148 | ret.pushKV("isvalid", isValid); |
68 | 148 | if (isValid) { |
69 | 102 | std::string currentAddress = EncodeDestination(dest); |
70 | 102 | ret.pushKV("address", currentAddress); |
71 | | |
72 | 102 | CScript scriptPubKey = GetScriptForDestination(dest); |
73 | 102 | ret.pushKV("scriptPubKey", HexStr(scriptPubKey)); |
74 | | |
75 | 102 | UniValue detail = DescribeAddress(dest); |
76 | 102 | ret.pushKVs(std::move(detail)); |
77 | 102 | } else { |
78 | 46 | UniValue error_indices(UniValue::VARR); |
79 | 46 | for (int i : error_locations) error_indices.push_back(i); |
80 | 46 | ret.pushKV("error_locations", std::move(error_indices)); |
81 | 46 | ret.pushKV("error", error_msg); |
82 | 46 | } |
83 | | |
84 | 148 | return ret; |
85 | 148 | }, |
86 | 2.46k | }; |
87 | 2.46k | } |
88 | | |
89 | | static RPCMethod createmultisig() |
90 | 2.39k | { |
91 | 2.39k | return RPCMethod{ |
92 | 2.39k | "createmultisig", |
93 | 2.39k | "Creates a multi-signature address with n signatures of m keys required.\n" |
94 | 2.39k | "It returns a json object with the address and redeemScript.\n", |
95 | 2.39k | { |
96 | 2.39k | {"nrequired", RPCArg::Type::NUM, RPCArg::Optional::NO, "The number of required signatures out of the m keys."}, |
97 | 2.39k | {"keys", RPCArg::Type::ARR, RPCArg::Optional::NO, "The hex-encoded public keys.", |
98 | 2.39k | { |
99 | 2.39k | {"key", RPCArg::Type::STR_HEX, RPCArg::Optional::OMITTED, "The hex-encoded public key"}, |
100 | 2.39k | }}, |
101 | 2.39k | {"address_type", RPCArg::Type::STR, RPCArg::Default{"legacy"}, "The address type to use. Options are \"legacy\", \"p2sh-segwit\", and \"bech32\"."}, |
102 | 2.39k | }, |
103 | 2.39k | RPCResult{ |
104 | 2.39k | RPCResult::Type::OBJ, "", "", |
105 | 2.39k | { |
106 | 2.39k | {RPCResult::Type::STR, "address", "The value of the new multisig address."}, |
107 | 2.39k | {RPCResult::Type::STR_HEX, "redeemScript", "The string value of the hex-encoded redemption script."}, |
108 | 2.39k | {RPCResult::Type::STR, "descriptor", "The descriptor for this multisig"}, |
109 | 2.39k | {RPCResult::Type::ARR, "warnings", /*optional=*/true, "Any warnings resulting from the creation of this multisig", |
110 | 2.39k | { |
111 | 2.39k | {RPCResult::Type::STR, "", ""}, |
112 | 2.39k | }}, |
113 | 2.39k | } |
114 | 2.39k | }, |
115 | 2.39k | RPCExamples{ |
116 | 2.39k | "\nCreate a multisig address from 2 public keys\n" |
117 | 2.39k | + HelpExampleCli("createmultisig", "2 \"[\\\"03789ed0bb717d88f7d321a368d905e7430207ebbd82bd342cf11ae157a7ace5fd\\\",\\\"03dbc6764b8884a92e871274b87583e6d5c2a58819473e17e107ef3f6aa5a61626\\\"]\"") + |
118 | 2.39k | "\nAs a JSON-RPC call\n" |
119 | 2.39k | + HelpExampleRpc("createmultisig", "2, [\"03789ed0bb717d88f7d321a368d905e7430207ebbd82bd342cf11ae157a7ace5fd\",\"03dbc6764b8884a92e871274b87583e6d5c2a58819473e17e107ef3f6aa5a61626\"]") |
120 | 2.39k | }, |
121 | 2.39k | [](const RPCMethod& self, const JSONRPCRequest& request) -> UniValue |
122 | 2.39k | { |
123 | 84 | int required = request.params[0].getInt<int>(); |
124 | | |
125 | | // Get the public keys |
126 | 84 | const UniValue& keys = request.params[1].get_array(); |
127 | 84 | std::vector<CPubKey> pubkeys; |
128 | 84 | pubkeys.reserve(keys.size()); |
129 | 644 | for (unsigned int i = 0; i < keys.size(); ++i) { |
130 | 560 | pubkeys.push_back(HexToPubKey(keys[i].get_str())); |
131 | 560 | } |
132 | | |
133 | | // Get the output type |
134 | 84 | auto address_type{self.Arg<std::string_view>("address_type")}; |
135 | 84 | auto output_type{ParseOutputType(address_type)}; |
136 | 84 | if (!output_type) { |
137 | 1 | throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, tfm::format("Unknown address type '%s'", address_type)); |
138 | 83 | } else if (output_type.value() == OutputType::BECH32M) { |
139 | 1 | throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "createmultisig cannot create bech32m multisig addresses"); |
140 | 1 | } |
141 | | |
142 | 82 | FlatSigningProvider keystore; |
143 | 82 | CScript inner; |
144 | 82 | const CTxDestination dest = AddAndGetMultisigDestination(required, pubkeys, output_type.value(), keystore, inner); |
145 | | |
146 | | // Make the descriptor |
147 | 82 | std::unique_ptr<Descriptor> descriptor = InferDescriptor(GetScriptForDestination(dest), keystore); |
148 | | |
149 | 82 | UniValue result(UniValue::VOBJ); |
150 | 82 | result.pushKV("address", EncodeDestination(dest)); |
151 | 82 | result.pushKV("redeemScript", HexStr(inner)); |
152 | 82 | result.pushKV("descriptor", descriptor->ToString()); |
153 | | |
154 | 82 | UniValue warnings(UniValue::VARR); |
155 | 82 | if (descriptor->GetOutputType() != output_type.value()) { |
156 | | // Only warns if the user has explicitly chosen an address type we cannot generate |
157 | 12 | warnings.push_back("Unable to make chosen address type, please ensure no uncompressed public keys are present."); |
158 | 12 | } |
159 | 82 | PushWarnings(warnings, result); |
160 | | |
161 | 82 | return result; |
162 | 84 | }, |
163 | 2.39k | }; |
164 | 2.39k | } |
165 | | |
166 | | static RPCMethod getdescriptorinfo() |
167 | 2.57k | { |
168 | 2.57k | const std::string EXAMPLE_DESCRIPTOR = "wpkh([d34db33f/84h/0h/0h]0279be667ef9dcbbac55a06295Ce870b07029Bfcdb2dce28d959f2815b16f81798)"; |
169 | | |
170 | 2.57k | return RPCMethod{ |
171 | 2.57k | "getdescriptorinfo", |
172 | 2.57k | "Analyses a descriptor.\n", |
173 | 2.57k | { |
174 | 2.57k | {"descriptor", RPCArg::Type::STR, RPCArg::Optional::NO, "The descriptor."}, |
175 | 2.57k | }, |
176 | 2.57k | RPCResult{ |
177 | 2.57k | RPCResult::Type::OBJ, "", "", |
178 | 2.57k | { |
179 | 2.57k | {RPCResult::Type::STR, "descriptor", "The descriptor in canonical form, without private keys. For a multipath descriptor, only the first will be returned."}, |
180 | 2.57k | {RPCResult::Type::ARR, "multipath_expansion", /*optional=*/true, "All descriptors produced by expanding multipath derivation elements. Only if the provided descriptor specifies multipath derivation elements.", |
181 | 2.57k | { |
182 | 2.57k | {RPCResult::Type::STR, "", ""}, |
183 | 2.57k | }}, |
184 | 2.57k | {RPCResult::Type::STR, "checksum", "The checksum for the input descriptor"}, |
185 | 2.57k | {RPCResult::Type::BOOL, "isrange", "Whether the descriptor is ranged"}, |
186 | 2.57k | {RPCResult::Type::BOOL, "issolvable", "Whether the descriptor is solvable"}, |
187 | 2.57k | {RPCResult::Type::BOOL, "hasprivatekeys", "Whether the input descriptor contained at least one private key"}, |
188 | 2.57k | } |
189 | 2.57k | }, |
190 | 2.57k | RPCExamples{ |
191 | 2.57k | "Analyse a descriptor\n" + |
192 | 2.57k | HelpExampleCli("getdescriptorinfo", "\"" + EXAMPLE_DESCRIPTOR + "\"") + |
193 | 2.57k | HelpExampleRpc("getdescriptorinfo", "\"" + EXAMPLE_DESCRIPTOR + "\"") |
194 | 2.57k | }, |
195 | 2.57k | [](const RPCMethod& self, const JSONRPCRequest& request) -> UniValue |
196 | 2.57k | { |
197 | 257 | FlatSigningProvider provider; |
198 | 257 | std::string error; |
199 | 257 | auto descs = Parse(self.Arg<std::string_view>("descriptor"), provider, error); |
200 | 257 | if (descs.empty()) { |
201 | 6 | throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, error); |
202 | 6 | } |
203 | | |
204 | 251 | UniValue result(UniValue::VOBJ); |
205 | 251 | result.pushKV("descriptor", descs.at(0)->ToString()); |
206 | | |
207 | 251 | if (descs.size() > 1) { |
208 | 8 | UniValue multipath_descs(UniValue::VARR); |
209 | 16 | for (const auto& d : descs) { |
210 | 16 | multipath_descs.push_back(d->ToString()); |
211 | 16 | } |
212 | 8 | result.pushKV("multipath_expansion", multipath_descs); |
213 | 8 | } |
214 | | |
215 | 251 | result.pushKV("checksum", GetDescriptorChecksum(request.params[0].get_str())); |
216 | 251 | result.pushKV("isrange", descs.at(0)->IsRange()); |
217 | 251 | result.pushKV("issolvable", descs.at(0)->IsSolvable()); |
218 | 251 | result.pushKV("hasprivatekeys", provider.keys.size() > 0); |
219 | 251 | return result; |
220 | 257 | }, |
221 | 2.57k | }; |
222 | 2.57k | } |
223 | | |
224 | | static UniValue DeriveAddresses(const Descriptor* desc, int64_t range_begin, int64_t range_end, FlatSigningProvider& key_provider) |
225 | 195 | { |
226 | 195 | UniValue addresses(UniValue::VARR); |
227 | | |
228 | 402 | for (int64_t i = range_begin; i <= range_end; ++i) { |
229 | 213 | FlatSigningProvider provider; |
230 | 213 | std::vector<CScript> scripts; |
231 | 213 | if (!desc->Expand(i, key_provider, scripts, provider)) { |
232 | 2 | throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Cannot derive script without private keys"); |
233 | 2 | } |
234 | | |
235 | 217 | for (const CScript& script : scripts) { |
236 | 217 | CTxDestination dest; |
237 | 217 | if (!ExtractDestination(script, dest)) { |
238 | | // ExtractDestination no longer returns true for P2PK since it doesn't have a corresponding address |
239 | | // However combo will output P2PK and should just ignore that script |
240 | 6 | if (scripts.size() > 1 && std::get_if<PubKeyDestination>(&dest)) { |
241 | 2 | continue; |
242 | 2 | } |
243 | 4 | throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Descriptor does not have a corresponding address"); |
244 | 6 | } |
245 | | |
246 | 211 | addresses.push_back(EncodeDestination(dest)); |
247 | 211 | } |
248 | 211 | } |
249 | | |
250 | | // This should not be possible, but an assert seems overkill: |
251 | 189 | if (addresses.empty()) { |
252 | 0 | throw JSONRPCError(RPC_MISC_ERROR, "Unexpected empty result"); |
253 | 0 | } |
254 | | |
255 | 189 | return addresses; |
256 | 189 | } |
257 | | |
258 | | static RPCMethod deriveaddresses() |
259 | 2.52k | { |
260 | 2.52k | const std::string EXAMPLE_DESCRIPTOR = "wpkh([d34db33f/84h/0h/0h]xpub6DJ2dNUysrn5Vt36jH2KLBT2i1auw1tTSSomg8PhqNiUtx8QX2SvC9nrHu81fT41fvDUnhMjEzQgXnQjKEu3oaqMSzhSrHMxyyoEAmUHQbY/0/*)#cjjspncu"; |
261 | | |
262 | 2.52k | return RPCMethod{ |
263 | 2.52k | "deriveaddresses", |
264 | 2.52k | "Derives one or more addresses corresponding to an output descriptor.\n" |
265 | 2.52k | "Examples of output descriptors are:\n" |
266 | 2.52k | " pkh(<pubkey>) P2PKH outputs for the given pubkey\n" |
267 | 2.52k | " wpkh(<pubkey>) Native segwit P2PKH outputs for the given pubkey\n" |
268 | 2.52k | " sh(multi(<n>,<pubkey>,<pubkey>,...)) P2SH-multisig outputs for the given threshold and pubkeys\n" |
269 | 2.52k | " raw(<hex script>) Outputs whose output script equals the specified hex-encoded bytes\n" |
270 | 2.52k | " tr(<pubkey>,multi_a(<n>,<pubkey>,<pubkey>,...)) P2TR-multisig outputs for the given threshold and pubkeys\n" |
271 | 2.52k | "\nIn the above, <pubkey> either refers to a fixed public key in hexadecimal notation, or to an xpub/xprv optionally followed by one\n" |
272 | 2.52k | "or more path elements separated by \"/\", where \"h\" represents a hardened child key.\n" |
273 | 2.52k | "For more information on output descriptors, see the documentation in the doc/descriptors.md file.\n", |
274 | 2.52k | { |
275 | 2.52k | {"descriptor", RPCArg::Type::STR, RPCArg::Optional::NO, "The descriptor."}, |
276 | 2.52k | {"range", RPCArg::Type::RANGE, RPCArg::Optional::OMITTED, "If a ranged descriptor is used, this specifies the end or the range (in [begin,end] notation) to derive."}, |
277 | 2.52k | }, |
278 | 2.52k | { |
279 | 2.52k | RPCResult{"for single derivation descriptors", |
280 | 2.52k | RPCResult::Type::ARR, "", "", |
281 | 2.52k | { |
282 | 2.52k | {RPCResult::Type::STR, "address", "the derived addresses"}, |
283 | 2.52k | } |
284 | 2.52k | }, |
285 | 2.52k | RPCResult{"for multipath descriptors", |
286 | 2.52k | RPCResult::Type::ARR, "", "The derived addresses for each of the multipath expansions of the descriptor, in multipath specifier order", |
287 | 2.52k | { |
288 | 2.52k | { |
289 | 2.52k | RPCResult::Type::ARR, "", "The derived addresses for a multipath descriptor expansion", |
290 | 2.52k | { |
291 | 2.52k | {RPCResult::Type::STR, "address", "the derived address"}, |
292 | 2.52k | }, |
293 | 2.52k | }, |
294 | 2.52k | }, |
295 | 2.52k | }, |
296 | 2.52k | }, |
297 | 2.52k | RPCExamples{ |
298 | 2.52k | "First three native segwit receive addresses\n" + |
299 | 2.52k | HelpExampleCli("deriveaddresses", "\"" + EXAMPLE_DESCRIPTOR + "\" \"[0,2]\"") + |
300 | 2.52k | HelpExampleRpc("deriveaddresses", "\"" + EXAMPLE_DESCRIPTOR + "\", \"[0,2]\"") |
301 | 2.52k | }, |
302 | 2.52k | [](const RPCMethod& self, const JSONRPCRequest& request) -> UniValue |
303 | 2.52k | { |
304 | 209 | auto desc_str{self.Arg<std::string_view>("descriptor")}; |
305 | | |
306 | 209 | int64_t range_begin = 0; |
307 | 209 | int64_t range_end = 0; |
308 | | |
309 | 209 | if (request.params.size() >= 2 && !request.params[1].isNull()) { |
310 | 78 | std::tie(range_begin, range_end) = ParseDescriptorRange(request.params[1]); |
311 | 78 | } |
312 | | |
313 | 209 | FlatSigningProvider key_provider; |
314 | 209 | std::string error; |
315 | 209 | auto descs = Parse(desc_str, key_provider, error, /* require_checksum = */ true); |
316 | 209 | if (descs.empty()) { |
317 | 4 | throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, error); |
318 | 4 | } |
319 | 205 | auto& desc = descs.at(0); |
320 | 205 | if (!desc->IsRange() && request.params.size() > 1) { |
321 | 2 | throw JSONRPCError(RPC_INVALID_PARAMETER, "Range should not be specified for an un-ranged descriptor"); |
322 | 2 | } |
323 | | |
324 | 203 | if (desc->IsRange() && request.params.size() == 1) { |
325 | 2 | throw JSONRPCError(RPC_INVALID_PARAMETER, "Range must be specified for a ranged descriptor"); |
326 | 2 | } |
327 | | |
328 | 201 | UniValue addresses = DeriveAddresses(desc.get(), range_begin, range_end, key_provider); |
329 | | |
330 | 201 | if (descs.size() == 1) { |
331 | 185 | return addresses; |
332 | 185 | } |
333 | | |
334 | 16 | UniValue ret(UniValue::VARR); |
335 | 16 | ret.push_back(addresses); |
336 | 18 | for (size_t i = 1; i < descs.size(); ++i) { |
337 | 2 | ret.push_back(DeriveAddresses(descs.at(i).get(), range_begin, range_end, key_provider)); |
338 | 2 | } |
339 | 16 | return ret; |
340 | 201 | }, |
341 | 2.52k | }; |
342 | 2.52k | } |
343 | | |
344 | | void RegisterOutputScriptRPCCommands(CRPCTable& t) |
345 | 1.26k | { |
346 | 1.26k | static const CRPCCommand commands[]{ |
347 | 1.26k | {"util", &validateaddress}, |
348 | 1.26k | {"util", &createmultisig}, |
349 | 1.26k | {"util", &deriveaddresses}, |
350 | 1.26k | {"util", &getdescriptorinfo}, |
351 | 1.26k | }; |
352 | 5.05k | for (const auto& c : commands) { |
353 | 5.05k | t.appendCommand(c.name, &c); |
354 | 5.05k | } |
355 | 1.26k | } |