Branch data Line data Source code
1 : : // Copyright (c) 2009-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 <script/sign.h>
7 : :
8 : : #include <addresstype.h>
9 : : #include <coins.h>
10 : : #include <consensus/amount.h>
11 : : #include <hash.h>
12 : : #include <key.h>
13 : : #include <musig.h>
14 : : #include <policy/policy.h>
15 : : #include <prevector.h>
16 : : #include <primitives/transaction.h>
17 : : #include <script/keyorigin.h>
18 : : #include <script/miniscript.h>
19 : : #include <script/script.h>
20 : : #include <script/script_error.h>
21 : : #include <script/signingprovider.h>
22 : : #include <script/solver.h>
23 : : #include <script/verify_flags.h>
24 : : #include <serialize.h>
25 : : #include <uint256.h>
26 : : #include <util/check.h>
27 : : #include <util/translation.h>
28 : : #include <util/vector.h>
29 : :
30 : : #include <algorithm>
31 : : #include <array>
32 : : #include <cstddef>
33 : : #include <functional>
34 : : #include <iterator>
35 : : #include <span>
36 : : #include <string>
37 : :
38 : : typedef std::vector<unsigned char> valtype;
39 : :
40 : 4635 : MutableTransactionSignatureCreator::MutableTransactionSignatureCreator(const CMutableTransaction& tx, unsigned int input_idx, const CAmount& amount, const SignOptions& options)
41 : 4635 : : m_txto{tx}, nIn{input_idx}, m_options{options}, amount{amount}, checker{&m_txto, nIn, amount, MissingDataBehavior::FAIL},
42 : 4635 : m_txdata(nullptr)
43 : : {
44 : 4635 : }
45 : :
46 : 572 : MutableTransactionSignatureCreator::MutableTransactionSignatureCreator(const CMutableTransaction& tx, unsigned int input_idx, const CAmount& amount, const PrecomputedTransactionData* txdata, const SignOptions& options)
47 : 572 : : m_txto{tx}, nIn{input_idx}, m_options{options}, amount{amount},
48 [ + - ]: 572 : checker{txdata ? MutableTransactionSignatureChecker{&m_txto, nIn, amount, *txdata, MissingDataBehavior::FAIL} :
49 : : MutableTransactionSignatureChecker{&m_txto, nIn, amount, MissingDataBehavior::FAIL}},
50 [ + - ]: 572 : m_txdata(txdata)
51 : : {
52 : 572 : }
53 : :
54 : 5539 : bool MutableTransactionSignatureCreator::CreateSig(const SigningProvider& provider, std::vector<unsigned char>& vchSig, const CKeyID& address, const CScript& scriptCode, SigVersion sigversion) const
55 : : {
56 [ - + ]: 5539 : assert(sigversion == SigVersion::BASE || sigversion == SigVersion::WITNESS_V0);
57 : :
58 : 5539 : CKey key;
59 [ + - + + ]: 5539 : if (!provider.GetKey(address, key))
60 : : return false;
61 : :
62 : : // Signing with uncompressed keys is disabled in witness scripts
63 [ + + + + ]: 5406 : if (sigversion == SigVersion::WITNESS_V0 && !key.IsCompressed())
64 : : return false;
65 : :
66 : : // Signing without known amount does not work in witness scripts.
67 [ + + + - ]: 5402 : if (sigversion == SigVersion::WITNESS_V0 && !MoneyRange(amount)) return false;
68 : :
69 : : // BASE/WITNESS_V0 signatures don't support explicit SIGHASH_DEFAULT, use SIGHASH_ALL instead.
70 [ + + ]: 5402 : const int hashtype = m_options.sighash_type == SIGHASH_DEFAULT ? SIGHASH_ALL : m_options.sighash_type;
71 : :
72 [ + - ]: 5402 : uint256 hash = SignatureHash(scriptCode, m_txto, nIn, hashtype, amount, sigversion, m_txdata);
73 [ + - + - ]: 5402 : if (!key.Sign(hash, vchSig))
74 : : return false;
75 [ + - ]: 5539 : vchSig.push_back((unsigned char)hashtype);
76 : : return true;
77 : 5539 : }
78 : :
79 : 79 : std::optional<uint256> MutableTransactionSignatureCreator::ComputeSchnorrSignatureHash(const uint256* leaf_hash, SigVersion sigversion) const
80 : : {
81 [ - + ]: 79 : assert(sigversion == SigVersion::TAPROOT || sigversion == SigVersion::TAPSCRIPT);
82 : :
83 : : // BIP341/BIP342 signing needs lots of precomputed transaction data. While some
84 : : // (non-SIGHASH_DEFAULT) sighash modes exist that can work with just some subset
85 : : // of data present, for now, only support signing when everything is provided.
86 [ + - + - : 79 : if (!m_txdata || !m_txdata->m_bip341_taproot_ready || !m_txdata->m_spent_outputs_ready) return std::nullopt;
- + ]
87 : :
88 [ + + ]: 79 : ScriptExecutionData execdata;
89 : 79 : execdata.m_annex_init = true;
90 : 79 : execdata.m_annex_present = false; // Only support annex-less signing for now.
91 [ + + ]: 79 : if (sigversion == SigVersion::TAPSCRIPT) {
92 : 48 : execdata.m_codeseparator_pos_init = true;
93 : 48 : execdata.m_codeseparator_pos = 0xFFFFFFFF; // Only support non-OP_CODESEPARATOR BIP342 signing for now.
94 [ - + ]: 48 : if (!leaf_hash) return std::nullopt; // BIP342 signing needs leaf hash.
95 : 48 : execdata.m_tapleaf_hash_init = true;
96 : 48 : execdata.m_tapleaf_hash = *leaf_hash;
97 : : }
98 : 79 : uint256 hash;
99 [ - + ]: 79 : if (!SignatureHashSchnorr(hash, execdata, m_txto, nIn, m_options.sighash_type, sigversion, *m_txdata, MissingDataBehavior::FAIL)) return std::nullopt;
100 : 79 : return hash;
101 : : }
102 : :
103 : 165 : bool MutableTransactionSignatureCreator::CreateSchnorrSig(const SigningProvider& provider, std::vector<unsigned char>& sig, const XOnlyPubKey& pubkey, const uint256* leaf_hash, const uint256* merkle_root, SigVersion sigversion) const
104 : : {
105 : 165 : CKey key;
106 [ + - + + ]: 165 : if (!provider.GetKeyByXOnly(pubkey, key)) return false;
107 : :
108 [ + - ]: 79 : std::optional<uint256> hash = ComputeSchnorrSignatureHash(leaf_hash, sigversion);
109 [ + - ]: 79 : if (!hash.has_value()) return false;
110 : :
111 [ + - ]: 79 : sig.resize(64);
112 : : // Use uint256{} as aux_rnd for now.
113 [ - + + - : 79 : if (!key.SignSchnorr(*hash, sig, merkle_root, {})) return false;
+ - ]
114 [ + + + - ]: 165 : if (m_options.sighash_type) sig.push_back(m_options.sighash_type);
115 : : return true;
116 : 165 : }
117 : :
118 : 0 : std::vector<uint8_t> MutableTransactionSignatureCreator::CreateMuSig2Nonce(const SigningProvider& provider, const CPubKey& aggregate_pubkey, const CPubKey& script_pubkey, const CPubKey& part_pubkey, const uint256* leaf_hash, const uint256* merkle_root, SigVersion sigversion, const SignatureData& sigdata) const
119 : : {
120 [ # # ]: 0 : assert(sigversion == SigVersion::TAPROOT || sigversion == SigVersion::TAPSCRIPT);
121 : :
122 : : // Retrieve the private key
123 : 0 : CKey key;
124 [ # # # # : 0 : if (!provider.GetKey(part_pubkey.GetID(), key)) return {};
# # ]
125 : :
126 : : // Retrieve participant pubkeys
127 : 0 : auto it = sigdata.musig2_pubkeys.find(aggregate_pubkey);
128 [ # # ]: 0 : if (it == sigdata.musig2_pubkeys.end()) return {};
129 : 0 : const std::vector<CPubKey>& pubkeys = it->second;
130 [ # # ]: 0 : if (std::find(pubkeys.begin(), pubkeys.end(), part_pubkey) == pubkeys.end()) return {};
131 : :
132 : : // Compute sighash
133 [ # # ]: 0 : std::optional<uint256> sighash = ComputeSchnorrSignatureHash(leaf_hash, sigversion);
134 [ # # ]: 0 : if (!sighash.has_value()) return {};
135 : :
136 [ # # ]: 0 : MuSig2SecNonce secnonce;
137 [ # # ]: 0 : std::vector<uint8_t> out = ::CreateMuSig2Nonce(secnonce, *sighash, key, aggregate_pubkey, pubkeys);
138 [ # # ]: 0 : if (out.empty()) return {};
139 : :
140 : : // Store the secnonce in the SigningProvider
141 [ # # # # ]: 0 : provider.SetMuSig2SecNonce(MuSig2SessionID(script_pubkey, part_pubkey, *sighash, out), std::move(secnonce));
142 : :
143 : 0 : return out;
144 : 0 : }
145 : :
146 : 0 : bool MutableTransactionSignatureCreator::CreateMuSig2PartialSig(const SigningProvider& provider, uint256& partial_sig, const CPubKey& aggregate_pubkey, const CPubKey& script_pubkey, const CPubKey& part_pubkey, const uint256* leaf_hash, const std::vector<std::pair<uint256, bool>>& tweaks, SigVersion sigversion, const SignatureData& sigdata) const
147 : : {
148 [ # # ]: 0 : assert(sigversion == SigVersion::TAPROOT || sigversion == SigVersion::TAPSCRIPT);
149 : :
150 : : // Retrieve private key
151 : 0 : CKey key;
152 [ # # # # : 0 : if (!provider.GetKey(part_pubkey.GetID(), key)) return false;
# # ]
153 : :
154 : : // Retrieve participant pubkeys
155 : 0 : auto it = sigdata.musig2_pubkeys.find(aggregate_pubkey);
156 [ # # ]: 0 : if (it == sigdata.musig2_pubkeys.end()) return false;
157 : 0 : const std::vector<CPubKey>& pubkeys = it->second;
158 [ # # ]: 0 : if (std::find(pubkeys.begin(), pubkeys.end(), part_pubkey) == pubkeys.end()) return {};
159 : :
160 : : // Retrieve pubnonces
161 [ # # ]: 0 : auto this_leaf_aggkey = std::make_pair(script_pubkey, leaf_hash ? *leaf_hash : uint256());
162 : 0 : auto pubnonce_it = sigdata.musig2_pubnonces.find(this_leaf_aggkey);
163 [ # # ]: 0 : if (pubnonce_it == sigdata.musig2_pubnonces.end()) return false;
164 [ # # ]: 0 : const std::map<CPubKey, std::vector<uint8_t>>& pubnonces = pubnonce_it->second;
165 : :
166 : : // Check if enough pubnonces
167 [ # # # # ]: 0 : if (pubnonces.size() != pubkeys.size()) return false;
168 : :
169 : : // Compute sighash
170 [ # # ]: 0 : std::optional<uint256> sighash = ComputeSchnorrSignatureHash(leaf_hash, sigversion);
171 [ # # ]: 0 : if (!sighash.has_value()) return false;
172 : :
173 : : // Retrieve the secnonce
174 : 0 : auto part_pubnonce_it = pubnonces.find(part_pubkey);
175 [ # # ]: 0 : if (part_pubnonce_it == pubnonces.end()) return false;
176 [ # # ]: 0 : uint256 session_id = MuSig2SessionID(script_pubkey, part_pubkey, *sighash, part_pubnonce_it->second);
177 [ # # ]: 0 : std::optional<std::reference_wrapper<MuSig2SecNonce>> secnonce = provider.GetMuSig2SecNonce(session_id);
178 [ # # # # : 0 : if (!secnonce || !secnonce->get().IsValid()) return false;
# # ]
179 : :
180 : : // Compute the sig
181 [ # # ]: 0 : std::optional<uint256> sig = ::CreateMuSig2PartialSig(*sighash, key, aggregate_pubkey, pubkeys, pubnonces, *secnonce, tweaks);
182 [ # # ]: 0 : if (!sig) return false;
183 [ # # ]: 0 : partial_sig = std::move(*sig);
184 : :
185 : : // Delete the secnonce now that we're done with it
186 [ # # # # ]: 0 : assert(!secnonce->get().IsValid());
187 [ # # ]: 0 : provider.DeleteMuSig2Session(session_id);
188 : :
189 : : return true;
190 : 0 : }
191 : :
192 : 0 : bool MutableTransactionSignatureCreator::CreateMuSig2AggregateSig(const std::vector<CPubKey>& participants, std::vector<uint8_t>& sig, const CPubKey& aggregate_pubkey, const CPubKey& script_pubkey, const uint256* leaf_hash, const std::vector<std::pair<uint256, bool>>& tweaks, SigVersion sigversion, const SignatureData& sigdata) const
193 : : {
194 [ # # ]: 0 : assert(sigversion == SigVersion::TAPROOT || sigversion == SigVersion::TAPSCRIPT);
195 [ # # # # ]: 0 : if (!participants.size()) return false;
196 : :
197 : : // Retrieve pubnonces and partial sigs
198 [ # # ]: 0 : auto this_leaf_aggkey = std::make_pair(script_pubkey, leaf_hash ? *leaf_hash : uint256());
199 : 0 : auto pubnonce_it = sigdata.musig2_pubnonces.find(this_leaf_aggkey);
200 [ # # ]: 0 : if (pubnonce_it == sigdata.musig2_pubnonces.end()) return false;
201 : 0 : const std::map<CPubKey, std::vector<uint8_t>>& pubnonces = pubnonce_it->second;
202 : 0 : auto partial_sigs_it = sigdata.musig2_partial_sigs.find(this_leaf_aggkey);
203 [ # # ]: 0 : if (partial_sigs_it == sigdata.musig2_partial_sigs.end()) return false;
204 [ # # ]: 0 : const std::map<CPubKey, uint256>& partial_sigs = partial_sigs_it->second;
205 : :
206 : : // Check if enough pubnonces and partial sigs
207 [ # # # # ]: 0 : if (pubnonces.size() != participants.size()) return false;
208 [ # # ]: 0 : if (partial_sigs.size() != participants.size()) return false;
209 : :
210 : : // Compute sighash
211 : 0 : std::optional<uint256> sighash = ComputeSchnorrSignatureHash(leaf_hash, sigversion);
212 [ # # ]: 0 : if (!sighash.has_value()) return false;
213 : :
214 : 0 : std::optional<std::vector<uint8_t>> res = ::CreateMuSig2AggregateSig(participants, aggregate_pubkey, tweaks, *sighash, pubnonces, partial_sigs);
215 [ # # ]: 0 : if (!res) return false;
216 [ # # ]: 0 : sig = res.value();
217 [ # # # # ]: 0 : if (m_options.sighash_type) sig.push_back(m_options.sighash_type);
218 : :
219 : : return true;
220 : 0 : }
221 : :
222 : 241 : static bool GetCScript(const SigningProvider& provider, const SignatureData& sigdata, const CScriptID& scriptid, CScript& script)
223 : : {
224 [ + + ]: 241 : if (provider.GetCScript(scriptid, script)) {
225 : : return true;
226 : : }
227 : : // Look for scripts in SignatureData
228 [ + + ]: 8 : if (CScriptID(sigdata.redeem_script) == scriptid) {
229 : 3 : script = sigdata.redeem_script;
230 : 3 : return true;
231 [ + + ]: 5 : } else if (CScriptID(sigdata.witness_script) == scriptid) {
232 : 2 : script = sigdata.witness_script;
233 : 2 : return true;
234 : : }
235 : : return false;
236 : : }
237 : :
238 : 4750 : static bool GetPubKey(const SigningProvider& provider, const SignatureData& sigdata, const CKeyID& address, CPubKey& pubkey)
239 : : {
240 : : // Look for pubkey in all partial sigs
241 : 4750 : const auto it = sigdata.signatures.find(address);
242 [ - + ]: 4750 : if (it != sigdata.signatures.end()) {
243 : 0 : pubkey = it->second.first;
244 : 0 : return true;
245 : : }
246 : : // Look for pubkey in pubkey lists
247 : 4750 : const auto& pk_it = sigdata.misc_pubkeys.find(address);
248 [ - + ]: 4750 : if (pk_it != sigdata.misc_pubkeys.end()) {
249 : 0 : pubkey = pk_it->second.first;
250 : 0 : return true;
251 : : }
252 : 4750 : const auto& tap_pk_it = sigdata.tap_pubkeys.find(address);
253 [ - + ]: 4750 : if (tap_pk_it != sigdata.tap_pubkeys.end()) {
254 : 0 : pubkey = tap_pk_it->second.GetEvenCorrespondingCPubKey();
255 : 0 : return true;
256 : : }
257 : : // Query the underlying provider
258 : 4750 : return provider.GetPubKey(address, pubkey);
259 : : }
260 : :
261 : 5563 : static bool CreateSig(const BaseSignatureCreator& creator, SignatureData& sigdata, const SigningProvider& provider, std::vector<unsigned char>& sig_out, const CPubKey& pubkey, const CScript& scriptcode, SigVersion sigversion)
262 : : {
263 : 5563 : CKeyID keyid = pubkey.GetID();
264 : 5563 : const auto it = sigdata.signatures.find(keyid);
265 [ + + ]: 5563 : if (it != sigdata.signatures.end()) {
266 : 22 : sig_out = it->second.second;
267 : 22 : return true;
268 : : }
269 [ + - ]: 5541 : KeyOriginInfo info;
270 [ + - + + ]: 5541 : if (provider.GetKeyOrigin(keyid, info)) {
271 [ + - ]: 1322 : sigdata.misc_pubkeys.emplace(keyid, std::make_pair(pubkey, std::move(info)));
272 : : }
273 [ + - + + ]: 5541 : if (creator.CreateSig(provider, sig_out, keyid, scriptcode, sigversion)) {
274 [ + - + - ]: 10808 : auto i = sigdata.signatures.emplace(keyid, SigPair(pubkey, sig_out));
275 [ - + ]: 5404 : assert(i.second);
276 : : return true;
277 : : }
278 : : // Could not make signature or signature not found, add keyid to missing
279 [ + - ]: 137 : sigdata.missing_sigs.push_back(keyid);
280 : : return false;
281 : 5541 : }
282 : :
283 : 86 : static bool SignMuSig2(const BaseSignatureCreator& creator, SignatureData& sigdata, const SigningProvider& provider, std::vector<unsigned char>& sig_out, const XOnlyPubKey& script_pubkey, const uint256* merkle_root, const uint256* leaf_hash, SigVersion sigversion)
284 : : {
285 [ - + ]: 86 : Assert(sigversion == SigVersion::TAPROOT || sigversion == SigVersion::TAPSCRIPT);
286 : :
287 : : // Lookup derivation paths for the script pubkey
288 : 86 : KeyOriginInfo agg_info;
289 : 86 : auto misc_pk_it = sigdata.taproot_misc_pubkeys.find(script_pubkey);
290 [ + + ]: 86 : if (misc_pk_it != sigdata.taproot_misc_pubkeys.end()) {
291 [ + - ]: 48 : agg_info = misc_pk_it->second.second;
292 : : }
293 : :
294 [ - - - + ]: 86 : for (const auto& [agg_pub, part_pks] : sigdata.musig2_pubkeys) {
295 [ # # ]: 0 : if (part_pks.empty()) continue;
296 : :
297 : : // Fill participant derivation path info
298 [ # # ]: 0 : for (const auto& part_pk : part_pks) {
299 [ # # ]: 0 : KeyOriginInfo part_info;
300 [ # # # # : 0 : if (provider.GetKeyOrigin(part_pk.GetID(), part_info)) {
# # ]
301 : 0 : XOnlyPubKey xonly_part(part_pk);
302 : 0 : auto it = sigdata.taproot_misc_pubkeys.find(xonly_part);
303 [ # # ]: 0 : if (it == sigdata.taproot_misc_pubkeys.end()) {
304 [ # # # # ]: 0 : it = sigdata.taproot_misc_pubkeys.emplace(xonly_part, std::make_pair(std::set<uint256>(), part_info)).first;
305 : : }
306 [ # # # # ]: 0 : if (leaf_hash) it->second.first.insert(*leaf_hash);
307 : : }
308 : 0 : }
309 : :
310 : : // The pubkey in the script may not be the actual aggregate of the participants, but derived from it.
311 : : // Check the derivation, and compute the BIP 32 derivation tweaks
312 : 0 : std::vector<std::pair<uint256, bool>> tweaks;
313 : 0 : CPubKey plain_pub = agg_pub;
314 [ # # ]: 0 : if (XOnlyPubKey(agg_pub) != script_pubkey) {
315 [ # # ]: 0 : if (agg_info.path.empty()) continue;
316 [ # # # # ]: 0 : if (agg_info.fingerprint != agg_pub.GetID().fingerprint()) {
317 : 0 : continue;
318 : : }
319 : : // Get the BIP32 derivation tweaks
320 [ # # ]: 0 : CExtPubKey extpub = CreateMuSig2SyntheticXpub(agg_pub);
321 [ # # ]: 0 : for (const int i : agg_info.path) {
322 [ # # # # ]: 0 : auto& [t, xonly] = tweaks.emplace_back();
323 : 0 : xonly = false;
324 [ # # # # ]: 0 : if (!extpub.Derive(extpub, i, &t)) {
325 : 0 : return false;
326 : : }
327 : : }
328 [ # # ]: 0 : Assert(XOnlyPubKey(extpub.pubkey) == script_pubkey);
329 : 0 : plain_pub = extpub.pubkey;
330 : 0 : }
331 : :
332 : : // Add the merkle root tweak
333 [ # # ]: 0 : if (sigversion == SigVersion::TAPROOT && merkle_root) {
334 [ # # # # : 0 : tweaks.emplace_back(script_pubkey.ComputeTapTweakHash(merkle_root->IsNull() ? nullptr : merkle_root), true);
# # ]
335 [ # # # # ]: 0 : std::optional<std::pair<XOnlyPubKey, bool>> tweaked = script_pubkey.CreateTapTweak(merkle_root->IsNull() ? nullptr : merkle_root);
336 [ # # ]: 0 : if (!Assume(tweaked)) return false;
337 [ # # # # ]: 0 : plain_pub = tweaked->first.GetCPubKeys().at(tweaked->second ? 1 : 0);
338 : : }
339 : :
340 : : // First try to aggregate
341 [ # # # # ]: 0 : if (creator.CreateMuSig2AggregateSig(part_pks, sig_out, agg_pub, plain_pub, leaf_hash, tweaks, sigversion, sigdata)) {
342 [ # # ]: 0 : if (sigversion == SigVersion::TAPROOT) {
343 [ # # ]: 0 : sigdata.taproot_key_path_sig = sig_out;
344 : : } else {
345 [ # # ]: 0 : auto lookup_key = std::make_pair(script_pubkey, leaf_hash ? *leaf_hash : uint256());
346 [ # # # # ]: 0 : sigdata.taproot_script_sigs[lookup_key] = sig_out;
347 : : }
348 : 0 : continue;
349 : 0 : }
350 : : // Cannot aggregate, try making partial sigs for every participant
351 [ # # ]: 0 : auto pub_key_leaf_hash = std::make_pair(plain_pub, leaf_hash ? *leaf_hash : uint256());
352 [ # # ]: 0 : for (const CPubKey& part_pk : part_pks) {
353 : 0 : uint256 partial_sig;
354 [ # # # # : 0 : if (creator.CreateMuSig2PartialSig(provider, partial_sig, agg_pub, plain_pub, part_pk, leaf_hash, tweaks, sigversion, sigdata) && Assume(!partial_sig.IsNull())) {
# # ]
355 [ # # # # ]: 0 : sigdata.musig2_partial_sigs[pub_key_leaf_hash].emplace(part_pk, partial_sig);
356 : : }
357 : : }
358 : : // If there are any partial signatures, continue with next aggregate pubkey
359 : 0 : auto partial_sigs_it = sigdata.musig2_partial_sigs.find(pub_key_leaf_hash);
360 [ # # # # ]: 0 : if (partial_sigs_it != sigdata.musig2_partial_sigs.end() && !partial_sigs_it->second.empty()) {
361 : 0 : continue;
362 : : }
363 : : // No partial sigs, try to make pubnonces
364 [ # # ]: 0 : std::map<CPubKey, std::vector<uint8_t>>& pubnonces = sigdata.musig2_pubnonces[pub_key_leaf_hash];
365 [ # # ]: 0 : for (const CPubKey& part_pk : part_pks) {
366 [ # # ]: 0 : if (pubnonces.contains(part_pk)) continue;
367 [ # # ]: 0 : std::vector<uint8_t> pubnonce = creator.CreateMuSig2Nonce(provider, agg_pub, plain_pub, part_pk, leaf_hash, merkle_root, sigversion, sigdata);
368 [ # # ]: 0 : if (pubnonce.empty()) continue;
369 [ # # ]: 0 : pubnonces[part_pk] = std::move(pubnonce);
370 : 0 : }
371 : 0 : }
372 : : return true;
373 : 86 : }
374 : :
375 : 66 : static bool CreateTaprootScriptSig(const BaseSignatureCreator& creator, SignatureData& sigdata, const SigningProvider& provider, std::vector<unsigned char>& sig_out, const XOnlyPubKey& pubkey, const uint256& leaf_hash, SigVersion sigversion)
376 : : {
377 [ + - ]: 66 : KeyOriginInfo info;
378 [ + - + - ]: 66 : if (provider.GetKeyOriginByXOnly(pubkey, info)) {
379 : 66 : auto it = sigdata.taproot_misc_pubkeys.find(pubkey);
380 [ + + ]: 66 : if (it == sigdata.taproot_misc_pubkeys.end()) {
381 [ + - + - ]: 120 : sigdata.taproot_misc_pubkeys.emplace(pubkey, std::make_pair(std::set<uint256>({leaf_hash}), info));
382 : : } else {
383 [ + - ]: 6 : it->second.first.insert(leaf_hash);
384 : : }
385 : : }
386 : :
387 : 66 : auto lookup_key = std::make_pair(pubkey, leaf_hash);
388 : 66 : auto it = sigdata.taproot_script_sigs.find(lookup_key);
389 [ - + ]: 66 : if (it != sigdata.taproot_script_sigs.end()) {
390 [ # # ]: 0 : sig_out = it->second;
391 : : return true;
392 : : }
393 : :
394 [ + - + + ]: 66 : if (creator.CreateSchnorrSig(provider, sig_out, pubkey, &leaf_hash, nullptr, sigversion)) {
395 [ + - + - ]: 48 : sigdata.taproot_script_sigs[lookup_key] = sig_out;
396 [ + - + - ]: 18 : } else if (!SignMuSig2(creator, sigdata, provider, sig_out, pubkey, /*merkle_root=*/nullptr, &leaf_hash, sigversion)) {
397 : : return false;
398 : : }
399 : :
400 : 66 : return sigdata.taproot_script_sigs.contains(lookup_key);
401 : 66 : }
402 : :
403 : : template<typename M, typename K, typename V>
404 : 60 : miniscript::Availability MsLookupHelper(const M& map, const K& key, V& value)
405 : : {
406 [ + + ]: 60 : auto it = map.find(key);
407 [ + + ]: 60 : if (it != map.end()) {
408 : 30 : value = it->second;
409 : 30 : return miniscript::Availability::YES;
410 : : }
411 : : return miniscript::Availability::NO;
412 : : }
413 : :
414 : : /**
415 : : * Context for solving a Miniscript.
416 : : * If enough material (access to keys, hash preimages, ..) is given, produces a valid satisfaction.
417 : : */
418 : : template<typename Pk>
419 : : struct Satisfier {
420 : : using Key = Pk;
421 : :
422 : : const SigningProvider& m_provider;
423 : : SignatureData& m_sig_data;
424 : : const BaseSignatureCreator& m_creator;
425 : : const CScript& m_witness_script;
426 : : //! The context of the script we are satisfying (either P2WSH or Tapscript).
427 : : const miniscript::MiniscriptContext m_script_ctx;
428 : :
429 : 127 : explicit Satisfier(const SigningProvider& provider LIFETIMEBOUND, SignatureData& sig_data LIFETIMEBOUND,
430 : : const BaseSignatureCreator& creator LIFETIMEBOUND,
431 : : const CScript& witscript LIFETIMEBOUND,
432 : 127 : miniscript::MiniscriptContext script_ctx) : m_provider(provider),
433 : 127 : m_sig_data(sig_data),
434 : 127 : m_creator(creator),
435 : 127 : m_witness_script(witscript),
436 : 127 : m_script_ctx(script_ctx) {}
437 : :
438 [ + - - + : 54 : static bool KeyCompare(const Key& a, const Key& b) {
- - - - -
- - - - +
+ + + - ]
439 [ - + + - : 144 : return a < b;
- - - - -
- - - + -
- + - - -
- - - - -
- + - + +
- - + + +
+ - ]
440 : : }
441 : :
442 : : //! Get a CPubKey from a key hash. Note the key hash may be of an xonly pubkey.
443 : : template<typename I>
444 [ - + ]: 18 : std::optional<CPubKey> CPubFromPKHBytes(I first, I last) const {
445 [ - + ]: 18 : assert(last - first == 20);
446 : 18 : CPubKey pubkey;
447 : 18 : CKeyID key_id;
448 : 18 : std::copy(first, last, key_id.begin());
449 [ + - ]: 18 : if (GetPubKey(m_provider, m_sig_data, key_id, pubkey)) return pubkey;
450 : 0 : m_sig_data.missing_pubkeys.push_back(key_id);
451 : 0 : return {};
452 : : }
453 : :
454 : : //! Conversion to raw public key.
455 : 18 : std::vector<unsigned char> ToPKBytes(const Key& key) const { return {key.begin(), key.end()}; }
456 : :
457 : : //! Time lock satisfactions.
458 : 18 : bool CheckAfter(uint32_t value) const { return m_creator.Checker().CheckLockTime(CScriptNum(value)); }
459 : 42 : bool CheckOlder(uint32_t value) const { return m_creator.Checker().CheckSequence(CScriptNum(value)); }
460 : :
461 : : //! Hash preimage satisfactions.
462 : 12 : miniscript::Availability SatSHA256(const std::vector<unsigned char>& hash, std::vector<unsigned char>& preimage) const {
463 [ + - - - ]: 12 : return MsLookupHelper(m_sig_data.sha256_preimages, hash, preimage);
464 : : }
465 : 12 : miniscript::Availability SatRIPEMD160(const std::vector<unsigned char>& hash, std::vector<unsigned char>& preimage) const {
466 [ + - - - ]: 12 : return MsLookupHelper(m_sig_data.ripemd160_preimages, hash, preimage);
467 : : }
468 : 24 : miniscript::Availability SatHASH256(const std::vector<unsigned char>& hash, std::vector<unsigned char>& preimage) const {
469 [ + - + - ]: 24 : return MsLookupHelper(m_sig_data.hash256_preimages, hash, preimage);
470 : : }
471 : 12 : miniscript::Availability SatHASH160(const std::vector<unsigned char>& hash, std::vector<unsigned char>& preimage) const {
472 [ + - - - ]: 12 : return MsLookupHelper(m_sig_data.hash160_preimages, hash, preimage);
473 : : }
474 : :
475 : 895 : miniscript::MiniscriptContext MsContext() const {
476 [ - - + - : 895 : return m_script_ctx;
+ - + - +
- + - + -
+ - + - +
- + - - -
- - + - +
- + - + -
- - + - +
- - - - -
- - - - +
- + - - -
- - - - +
- + - + -
- - - - -
- + - - -
- - + - +
- + - + -
+ - + - -
- - - + -
- - - - -
- - - - -
+ - - - ]
477 : : }
478 : : };
479 : :
480 : : /** Miniscript satisfier specific to P2WSH context. */
481 : : struct WshSatisfier: Satisfier<CPubKey> {
482 : 78 : explicit WshSatisfier(const SigningProvider& provider LIFETIMEBOUND, SignatureData& sig_data LIFETIMEBOUND,
483 : : const BaseSignatureCreator& creator LIFETIMEBOUND, const CScript& witscript LIFETIMEBOUND)
484 : 78 : : Satisfier(provider, sig_data, creator, witscript, miniscript::MiniscriptContext::P2WSH) {}
485 : :
486 : : //! Conversion from a raw compressed public key.
487 : : template <typename I>
488 : 102 : std::optional<CPubKey> FromPKBytes(I first, I last) const {
489 [ + - ]: 102 : CPubKey pubkey{first, last};
490 [ + - ]: 102 : if (pubkey.IsValid()) return pubkey;
491 : 0 : return {};
492 : : }
493 : :
494 : : //! Conversion from a raw compressed public key hash.
495 : : template<typename I>
496 : 12 : std::optional<CPubKey> FromPKHBytes(I first, I last) const {
497 [ + - ]: 12 : return Satisfier::CPubFromPKHBytes(first, last);
498 : : }
499 : :
500 : : //! Satisfy an ECDSA signature check.
501 : 114 : miniscript::Availability Sign(const CPubKey& key, std::vector<unsigned char>& sig) const {
502 [ + + ]: 114 : if (CreateSig(m_creator, m_sig_data, m_provider, sig, key, m_witness_script, SigVersion::WITNESS_V0)) {
503 : 84 : return miniscript::Availability::YES;
504 : : }
505 : : return miniscript::Availability::NO;
506 : : }
507 : : };
508 : :
509 : : /** Miniscript satisfier specific to Tapscript context. */
510 : : struct TapSatisfier: Satisfier<XOnlyPubKey> {
511 : : const uint256& m_leaf_hash;
512 : :
513 : 49 : explicit TapSatisfier(const SigningProvider& provider LIFETIMEBOUND, SignatureData& sig_data LIFETIMEBOUND,
514 : : const BaseSignatureCreator& creator LIFETIMEBOUND, const CScript& script LIFETIMEBOUND,
515 : : const uint256& leaf_hash LIFETIMEBOUND)
516 : 49 : : Satisfier(provider, sig_data, creator, script, miniscript::MiniscriptContext::TAPSCRIPT),
517 : 49 : m_leaf_hash(leaf_hash) {}
518 : :
519 : : //! Conversion from a raw xonly public key.
520 : : template <typename I>
521 [ + + ]: 61 : std::optional<XOnlyPubKey> FromPKBytes(I first, I last) const {
522 [ + + ]: 61 : if (last - first != 32) return {};
523 : 60 : XOnlyPubKey pubkey;
524 : 60 : std::copy(first, last, pubkey.begin());
525 : 60 : return pubkey;
526 : : }
527 : :
528 : : //! Conversion from a raw xonly public key hash.
529 : : template<typename I>
530 : 6 : std::optional<XOnlyPubKey> FromPKHBytes(I first, I last) const {
531 [ + - ]: 6 : if (auto pubkey = Satisfier::CPubFromPKHBytes(first, last)) return XOnlyPubKey{*pubkey};
532 : 0 : return {};
533 : : }
534 : :
535 : : //! Satisfy a BIP340 signature check.
536 : 66 : miniscript::Availability Sign(const XOnlyPubKey& key, std::vector<unsigned char>& sig) const {
537 [ + + ]: 66 : if (CreateTaprootScriptSig(m_creator, m_sig_data, m_provider, sig, key, m_leaf_hash, SigVersion::TAPSCRIPT)) {
538 : 48 : return miniscript::Availability::YES;
539 : : }
540 : : return miniscript::Availability::NO;
541 : : }
542 : : };
543 : :
544 : 49 : static bool SignTaprootScript(const SigningProvider& provider, const BaseSignatureCreator& creator, SignatureData& sigdata, int leaf_version, std::span<const unsigned char> script_bytes, std::vector<valtype>& result)
545 : : {
546 : : // Only BIP342 tapscript signing is supported for now.
547 [ + - ]: 49 : if (leaf_version != TAPROOT_LEAF_TAPSCRIPT) return false;
548 : :
549 : 49 : uint256 leaf_hash = ComputeTapleafHash(leaf_version, script_bytes);
550 : 49 : CScript script = CScript(script_bytes.begin(), script_bytes.end());
551 : :
552 : 49 : TapSatisfier ms_satisfier{provider, sigdata, creator, script, leaf_hash};
553 [ + - ]: 49 : const auto ms = miniscript::FromScript(script, ms_satisfier);
554 [ + + + - : 73 : return ms && ms->Satisfy(ms_satisfier, result) == miniscript::Availability::YES;
+ + ]
555 : 49 : }
556 : :
557 : 55 : static bool SignTaproot(const SigningProvider& provider, const BaseSignatureCreator& creator, const WitnessV1Taproot& output, SignatureData& sigdata, std::vector<valtype>& result)
558 : : {
559 [ + - ]: 55 : TaprootSpendData spenddata;
560 [ + - ]: 55 : TaprootBuilder builder;
561 : :
562 : : // Gather information about this output.
563 [ + - + + ]: 55 : if (provider.GetTaprootSpendData(output, spenddata)) {
564 [ + - + - ]: 96 : sigdata.tr_spenddata.Merge(spenddata);
565 : : }
566 [ + - + + ]: 55 : if (provider.GetTaprootBuilder(output, builder)) {
567 [ + - ]: 48 : sigdata.tr_builder = builder;
568 : : }
569 [ + - - + ]: 55 : if (auto agg_keys = provider.GetAllMuSig2ParticipantPubkeys(); !agg_keys.empty()) {
570 [ - - ]: 55 : sigdata.musig2_pubkeys.insert(agg_keys.begin(), agg_keys.end());
571 : 0 : }
572 : :
573 : :
574 : : // Try key path spending.
575 : 55 : {
576 [ + - ]: 55 : KeyOriginInfo internal_key_info;
577 [ + - + + ]: 55 : if (provider.GetKeyOriginByXOnly(sigdata.tr_spenddata.internal_key, internal_key_info)) {
578 : 48 : auto it = sigdata.taproot_misc_pubkeys.find(sigdata.tr_spenddata.internal_key);
579 [ + - ]: 48 : if (it == sigdata.taproot_misc_pubkeys.end()) {
580 [ + - + - ]: 48 : sigdata.taproot_misc_pubkeys.emplace(sigdata.tr_spenddata.internal_key, std::make_pair(std::set<uint256>(), internal_key_info));
581 : : }
582 : : }
583 : :
584 [ + - ]: 55 : KeyOriginInfo output_key_info;
585 [ + - + + ]: 55 : if (provider.GetKeyOriginByXOnly(output, output_key_info)) {
586 : 6 : auto it = sigdata.taproot_misc_pubkeys.find(output);
587 [ + - ]: 6 : if (it == sigdata.taproot_misc_pubkeys.end()) {
588 [ + - + - ]: 6 : sigdata.taproot_misc_pubkeys.emplace(output, std::make_pair(std::set<uint256>(), output_key_info));
589 : : }
590 : : }
591 : :
592 : 147 : auto make_keypath_sig = [&](const XOnlyPubKey& pk, const uint256* merkle_root) {
593 : 92 : std::vector<unsigned char> sig;
594 [ + - + + ]: 92 : if (creator.CreateSchnorrSig(provider, sig, pk, nullptr, merkle_root, SigVersion::TAPROOT)) {
595 [ + - ]: 24 : sigdata.taproot_key_path_sig = sig;
596 : : } else {
597 [ + - ]: 68 : SignMuSig2(creator, sigdata, provider, sig, pk, merkle_root, /*leaf_hash=*/nullptr, SigVersion::TAPROOT);
598 : : }
599 : 92 : };
600 : :
601 : : // First try signing with internal key
602 [ - + + - ]: 55 : if (sigdata.taproot_key_path_sig.size() == 0) {
603 [ + - ]: 55 : make_keypath_sig(sigdata.tr_spenddata.internal_key, &sigdata.tr_spenddata.merkle_root);
604 : : }
605 : : // Try signing with output key if still no signature
606 [ - + + + ]: 55 : if (sigdata.taproot_key_path_sig.size() == 0) {
607 [ + - ]: 37 : make_keypath_sig(output, nullptr);
608 : : }
609 [ - + + + ]: 55 : if (sigdata.taproot_key_path_sig.size()) {
610 [ + - ]: 48 : result = Vector(sigdata.taproot_key_path_sig);
611 : 24 : return true;
612 : : }
613 : 55 : }
614 : :
615 : : // Try script path spending.
616 : 31 : std::vector<std::vector<unsigned char>> smallest_result_stack;
617 [ - + + + ]: 80 : for (const auto& [key, control_blocks] : sigdata.tr_spenddata.scripts) {
618 : 49 : const auto& [script, leaf_ver] = key;
619 : 49 : std::vector<std::vector<unsigned char>> result_stack;
620 [ - + + - : 49 : if (SignTaprootScript(provider, creator, sigdata, leaf_ver, script, result_stack)) {
+ + ]
621 [ + - ]: 24 : result_stack.emplace_back(std::begin(script), std::end(script)); // Push the script
622 [ + - ]: 24 : result_stack.push_back(*control_blocks.begin()); // Push the smallest control block
623 [ - + - + : 24 : if (smallest_result_stack.size() == 0 ||
- - ]
624 : 0 : GetSerializeSize(result_stack) < GetSerializeSize(smallest_result_stack)) {
625 : 24 : smallest_result_stack = std::move(result_stack);
626 : : }
627 : : }
628 : 49 : }
629 [ - + + + ]: 31 : if (smallest_result_stack.size() != 0) {
630 : 24 : result = std::move(smallest_result_stack);
631 : 24 : return true;
632 : : }
633 : :
634 : : return false;
635 : 86 : }
636 : :
637 : : /**
638 : : * Sign scriptPubKey using signature made with creator.
639 : : * Signatures are returned in scriptSigRet (or returns false if scriptPubKey can't be signed),
640 : : * unless whichTypeRet is TxoutType::SCRIPTHASH, in which case scriptSigRet is the redemption script.
641 : : * Returns false if scriptPubKey could not be completely satisfied.
642 : : */
643 : 9992 : static bool SignStep(const SigningProvider& provider, const BaseSignatureCreator& creator, const CScript& scriptPubKey,
644 : : std::vector<valtype>& ret, TxoutType& whichTypeRet, SigVersion sigversion, SignatureData& sigdata)
645 : : {
646 : 9992 : CScript scriptRet;
647 : 9992 : ret.clear();
648 : 9992 : std::vector<unsigned char> sig;
649 : :
650 : 9992 : std::vector<valtype> vSolutions;
651 [ + - ]: 9992 : whichTypeRet = Solver(scriptPubKey, vSolutions);
652 : :
653 [ + + + + : 9992 : switch (whichTypeRet) {
+ + + + -
+ ]
654 : : case TxoutType::NONSTANDARD:
655 : : case TxoutType::NULL_DATA:
656 : : case TxoutType::WITNESS_UNKNOWN:
657 : : return false;
658 : 250 : case TxoutType::PUBKEY:
659 [ - + + - : 250 : if (!CreateSig(creator, sigdata, provider, sig, CPubKey(vSolutions[0]), scriptPubKey, sigversion)) return false;
+ + ]
660 [ + - ]: 175 : ret.push_back(std::move(sig));
661 : : return true;
662 : 4732 : case TxoutType::PUBKEYHASH: {
663 [ - + + - ]: 4732 : CKeyID keyID = CKeyID(uint160(vSolutions[0]));
664 [ + - ]: 4732 : CPubKey pubkey;
665 [ + - + + ]: 4732 : if (!GetPubKey(provider, sigdata, keyID, pubkey)) {
666 : : // Pubkey could not be found, add to missing
667 [ + - ]: 1 : sigdata.missing_pubkeys.push_back(keyID);
668 : : return false;
669 : : }
670 [ + - + + ]: 4731 : if (!CreateSig(creator, sigdata, provider, sig, pubkey, scriptPubKey, sigversion)) return false;
671 [ + - ]: 4725 : ret.push_back(std::move(sig));
672 [ + - ]: 9450 : ret.push_back(ToByteVector(pubkey));
673 : 4725 : return true;
674 : : }
675 : 114 : case TxoutType::SCRIPTHASH: {
676 [ - + ]: 114 : uint160 h160{vSolutions[0]};
677 [ + - + + ]: 114 : if (GetCScript(provider, sigdata, CScriptID{h160}, scriptRet)) {
678 [ + + + - ]: 125 : ret.emplace_back(scriptRet.begin(), scriptRet.end());
679 : : return true;
680 : : }
681 : : // Could not find redeemScript, add to missing
682 : 3 : sigdata.missing_redeem_script = h160;
683 : 3 : return false;
684 : : }
685 : 75 : case TxoutType::MULTISIG: {
686 [ + - ]: 75 : size_t required = vSolutions.front()[0];
687 [ + - ]: 75 : ret.emplace_back(); // workaround CHECKMULTISIG bug
688 [ - + + + ]: 543 : for (size_t i = 1; i < vSolutions.size() - 1; ++i) {
689 [ - + ]: 468 : CPubKey pubkey = CPubKey(vSolutions[i]);
690 : : // We need to always call CreateSig in order to fill sigdata with all
691 : : // possible signatures that we can create. This will allow further PSBT
692 : : // processing to work as it needs all possible signature and pubkey pairs
693 [ + - + + ]: 468 : if (CreateSig(creator, sigdata, provider, sig, pubkey, scriptPubKey, sigversion)) {
694 [ - + + + ]: 442 : if (ret.size() < required + 1) {
695 [ + - ]: 468 : ret.push_back(std::move(sig));
696 : : }
697 : : }
698 : : }
699 [ - + ]: 75 : bool ok = ret.size() == required + 1;
700 [ - + + + ]: 89 : for (size_t i = 0; i + ret.size() < required + 1; ++i) {
701 [ + - ]: 14 : ret.emplace_back();
702 : : }
703 : : return ok;
704 : : }
705 : 4560 : case TxoutType::WITNESS_V0_KEYHASH:
706 [ + - ]: 4560 : ret.push_back(vSolutions[0]);
707 : : return true;
708 : :
709 : 127 : case TxoutType::WITNESS_V0_SCRIPTHASH:
710 [ - + + - : 127 : if (GetCScript(provider, sigdata, CScriptID{RIPEMD160(vSolutions[0])}, scriptRet)) {
+ - + - ]
711 [ + + + - ]: 230 : ret.emplace_back(scriptRet.begin(), scriptRet.end());
712 : : return true;
713 : : }
714 : : // Could not find witnessScript, add to missing
715 [ # # ]: 0 : sigdata.missing_witness_script = uint256(vSolutions[0]);
716 : 0 : return false;
717 : :
718 : 55 : case TxoutType::WITNESS_V1_TAPROOT:
719 [ - + + - ]: 55 : return SignTaproot(provider, creator, WitnessV1Taproot(XOnlyPubKey{vSolutions[0]}), sigdata, ret);
720 : :
721 : 1 : case TxoutType::ANCHOR:
722 : 1 : return true;
723 : : } // no default case, so the compiler can warn about missing cases
724 : 0 : assert(false);
725 : 9992 : }
726 : :
727 : 5194 : static CScript PushAll(const std::vector<valtype>& values)
728 : : {
729 : 5194 : CScript result;
730 [ + + ]: 5911 : for (const valtype& v : values) {
731 [ - + + + ]: 717 : if (v.size() == 0) {
732 [ + - ]: 59 : result << OP_0;
733 [ - + - - : 658 : } else if (v.size() == 1 && v[0] >= 1 && v[0] <= 16) {
- - ]
734 [ # # ]: 0 : result << CScript::EncodeOP_N(v[0]);
735 [ - + - - ]: 658 : } else if (v.size() == 1 && v[0] == 0x81) {
736 [ # # ]: 0 : result << OP_1NEGATE;
737 : : } else {
738 : 658 : result << v;
739 : : }
740 : : }
741 : 5194 : return result;
742 : 0 : }
743 : :
744 : 5202 : bool ProduceSignature(const SigningProvider& provider, const BaseSignatureCreator& creator, const CScript& fromPubKey, SignatureData& sigdata)
745 : : {
746 [ + + ]: 5202 : if (sigdata.complete) return true;
747 : :
748 : 5194 : std::vector<valtype> result;
749 : 5194 : TxoutType whichType;
750 [ + - ]: 5194 : bool solved = SignStep(provider, creator, fromPubKey, result, whichType, SigVersion::BASE, sigdata);
751 : 5194 : bool P2SH = false;
752 : 5194 : CScript subscript;
753 : :
754 [ + + + + ]: 5194 : if (solved && whichType == TxoutType::SCRIPTHASH)
755 : : {
756 : : // Solver returns the subscript that needs to be evaluated;
757 : : // the final scriptSig is the signatures from that
758 : : // and then the serialized subscript:
759 : 111 : subscript = CScript(result[0].begin(), result[0].end());
760 : 111 : sigdata.redeem_script = subscript;
761 [ + - + + : 111 : solved = solved && SignStep(provider, creator, subscript, result, whichType, SigVersion::BASE, sigdata) && whichType != TxoutType::SCRIPTHASH;
+ - ]
762 : : P2SH = true;
763 : : }
764 : :
765 [ + + ]: 5099 : if (solved && whichType == TxoutType::WITNESS_V0_KEYHASH)
766 : : {
767 : 4560 : CScript witnessscript;
768 [ + - + - : 9120 : witnessscript << OP_DUP << OP_HASH160 << ToByteVector(result[0]) << OP_EQUALVERIFY << OP_CHECKSIG;
+ - + - +
- ]
769 : 4560 : TxoutType subType;
770 [ + - + - : 4560 : solved = solved && SignStep(provider, creator, witnessscript, result, subType, SigVersion::WITNESS_V0, sigdata);
+ + ]
771 [ + - ]: 4560 : sigdata.scriptWitness.stack = result;
772 : 4560 : sigdata.witness = true;
773 : 4560 : result.clear();
774 : 4560 : }
775 [ + + + + ]: 629 : else if (solved && whichType == TxoutType::WITNESS_V0_SCRIPTHASH)
776 : : {
777 : 127 : CScript witnessscript(result[0].begin(), result[0].end());
778 : 127 : sigdata.witness_script = witnessscript;
779 : :
780 : 127 : TxoutType subType{TxoutType::NONSTANDARD};
781 [ + - + + : 127 : solved = solved && SignStep(provider, creator, witnessscript, result, subType, SigVersion::WITNESS_V0, sigdata) && subType != TxoutType::SCRIPTHASH && subType != TxoutType::WITNESS_V0_SCRIPTHASH && subType != TxoutType::WITNESS_V0_KEYHASH;
+ - + - -
+ ]
782 : :
783 : : // If we couldn't find a solution with the legacy satisfier, try satisfying the script using Miniscript.
784 : : // Note we need to check if the result stack is empty before, because it might be used even if the Script
785 : : // isn't fully solved. For instance the CHECKMULTISIG satisfaction in SignStep() pushes partial signatures
786 : : // and the extractor relies on this behaviour to combine witnesses.
787 [ + + ]: 83 : if (!solved && result.empty()) {
788 : 78 : WshSatisfier ms_satisfier{provider, sigdata, creator, witnessscript};
789 [ + - ]: 78 : const auto ms = miniscript::FromScript(witnessscript, ms_satisfier);
790 [ + - + - : 114 : solved = ms && ms->Satisfy(ms_satisfier, result) == miniscript::Availability::YES;
+ + ]
791 : 78 : }
792 [ + + + - ]: 230 : result.emplace_back(witnessscript.begin(), witnessscript.end());
793 : :
794 [ + - ]: 127 : sigdata.scriptWitness.stack = result;
795 : 127 : sigdata.witness = true;
796 : 127 : result.clear();
797 [ + + + - ]: 634 : } else if (whichType == TxoutType::WITNESS_V1_TAPROOT && !P2SH) {
798 : 55 : sigdata.witness = true;
799 [ + + ]: 55 : if (solved) {
800 : 48 : sigdata.scriptWitness.stack = std::move(result);
801 : : }
802 : 55 : result.clear();
803 [ + + - + ]: 452 : } else if (solved && whichType == TxoutType::WITNESS_UNKNOWN) {
804 : 0 : sigdata.witness = true;
805 : : }
806 : :
807 [ + + ]: 5194 : if (!sigdata.witness) sigdata.scriptWitness.stack.clear();
808 [ + + ]: 5194 : if (P2SH) {
809 [ + + + - ]: 125 : result.emplace_back(subscript.begin(), subscript.end());
810 : : }
811 [ + - ]: 5194 : sigdata.scriptSig = PushAll(result);
812 : :
813 : : // Test solution
814 [ + + + - : 5194 : sigdata.complete = solved && VerifyScript(sigdata.scriptSig, fromPubKey, &sigdata.scriptWitness, STANDARD_SCRIPT_VERIFY_FLAGS, creator.Checker());
+ - - + ]
815 : 5194 : return sigdata.complete;
816 : 5194 : }
817 : :
818 : : namespace {
819 : 260 : class SignatureExtractorChecker final : public DeferringSignatureChecker
820 : : {
821 : : private:
822 : : SignatureData& sigdata;
823 : :
824 : : public:
825 : 260 : SignatureExtractorChecker(SignatureData& sigdata, BaseSignatureChecker& checker) : DeferringSignatureChecker(checker), sigdata(sigdata) {}
826 : :
827 : 47 : bool CheckECDSASignature(const std::vector<unsigned char>& scriptSig, const std::vector<unsigned char>& vchPubKey, const CScript& scriptCode, SigVersion sigversion) const override
828 : : {
829 [ + + ]: 47 : if (m_checker.CheckECDSASignature(scriptSig, vchPubKey, scriptCode, sigversion)) {
830 [ - + ]: 14 : CPubKey pubkey(vchPubKey);
831 [ + - + - ]: 14 : sigdata.signatures.emplace(pubkey.GetID(), SigPair(pubkey, scriptSig));
832 : 14 : return true;
833 : : }
834 : : return false;
835 : : }
836 : : };
837 : :
838 : 260 : struct Stacks
839 : : {
840 : : std::vector<valtype> script;
841 : : std::vector<valtype> witness;
842 : :
843 : : Stacks() = delete;
844 : : Stacks(const Stacks&) = delete;
845 [ + - ]: 260 : explicit Stacks(const SignatureData& data) : witness(data.scriptWitness.stack) {
846 [ + - ]: 260 : EvalScript(script, data.scriptSig, SCRIPT_VERIFY_STRICTENC, BaseSignatureChecker(), SigVersion::BASE);
847 : 260 : }
848 : : };
849 : : }
850 : :
851 : : // Extracts signatures and scripts from incomplete scriptSigs. Please do not extend this, use PSBT instead
852 : 260 : SignatureData DataFromTransaction(const CMutableTransaction& tx, unsigned int nIn, const CTxOut& txout)
853 : : {
854 : 260 : SignatureData data;
855 [ - + - + ]: 260 : assert(tx.vin.size() > nIn);
856 : 260 : data.scriptSig = tx.vin[nIn].scriptSig;
857 [ + - ]: 260 : data.scriptWitness = tx.vin[nIn].scriptWitness;
858 [ + - ]: 260 : Stacks stack(data);
859 : :
860 : : // Get signatures
861 [ + - ]: 260 : MutableTransactionSignatureChecker tx_checker(&tx, nIn, txout.nValue, MissingDataBehavior::FAIL);
862 [ + - ]: 260 : SignatureExtractorChecker extractor_checker(data, tx_checker);
863 [ + - + + ]: 260 : if (VerifyScript(data.scriptSig, txout.scriptPubKey, &data.scriptWitness, STANDARD_SCRIPT_VERIFY_FLAGS, extractor_checker)) {
864 : 5 : data.complete = true;
865 : 5 : return data;
866 : : }
867 : :
868 : : // Get scripts
869 : 255 : std::vector<std::vector<unsigned char>> solutions;
870 [ + - ]: 255 : TxoutType script_type = Solver(txout.scriptPubKey, solutions);
871 : 255 : SigVersion sigversion = SigVersion::BASE;
872 : 255 : CScript next_script = txout.scriptPubKey;
873 : :
874 [ + + + + : 255 : if (script_type == TxoutType::SCRIPTHASH && !stack.script.empty() && !stack.script.back().empty()) {
+ - ]
875 : : // Get the redeemScript
876 : 4 : CScript redeem_script(stack.script.back().begin(), stack.script.back().end());
877 : 4 : data.redeem_script = redeem_script;
878 : 4 : next_script = std::move(redeem_script);
879 : :
880 : : // Get redeemScript type
881 [ + - ]: 4 : script_type = Solver(next_script, solutions);
882 : 4 : stack.script.pop_back();
883 : 4 : }
884 [ + + + - : 255 : if (script_type == TxoutType::WITNESS_V0_SCRIPTHASH && !stack.witness.empty() && !stack.witness.back().empty()) {
+ - ]
885 : : // Get the witnessScript
886 : 4 : CScript witness_script(stack.witness.back().begin(), stack.witness.back().end());
887 : 4 : data.witness_script = witness_script;
888 : 4 : next_script = std::move(witness_script);
889 : :
890 : : // Get witnessScript type
891 [ + - ]: 4 : script_type = Solver(next_script, solutions);
892 : 4 : stack.witness.pop_back();
893 : 4 : stack.script = std::move(stack.witness);
894 : 4 : stack.witness.clear();
895 : 4 : sigversion = SigVersion::WITNESS_V0;
896 : 4 : }
897 [ + + + - ]: 255 : if (script_type == TxoutType::MULTISIG && !stack.script.empty()) {
898 : : // Build a map of pubkey -> signature by matching sigs to pubkeys:
899 [ - + - + ]: 8 : assert(solutions.size() > 1);
900 : 8 : unsigned int num_pubkeys = solutions.size()-2;
901 : 8 : unsigned int last_success_key = 0;
902 [ + + ]: 32 : for (const valtype& sig : stack.script) {
903 [ + + ]: 48 : for (unsigned int i = last_success_key; i < num_pubkeys; ++i) {
904 [ - + ]: 32 : const valtype& pubkey = solutions[i+1];
905 : : // We either have a signature for this pubkey, or we have found a signature and it is valid
906 [ - + + - : 32 : if (data.signatures.contains(CPubKey(pubkey).GetID()) || extractor_checker.CheckECDSASignature(sig, pubkey, next_script, sigversion)) {
+ - + - +
+ ]
907 : : last_success_key = i + 1;
908 : : break;
909 : : }
910 : : }
911 : : }
912 : : }
913 : :
914 : 255 : return data;
915 : 520 : }
916 : :
917 : 4865 : void UpdateInput(CTxIn& input, const SignatureData& data)
918 : : {
919 : 4865 : input.scriptSig = data.scriptSig;
920 : 4865 : input.scriptWitness = data.scriptWitness;
921 : 4865 : }
922 : :
923 : 38 : void SignatureData::MergeSignatureData(SignatureData sigdata)
924 : : {
925 [ + + ]: 38 : if (complete) return;
926 [ + + ]: 33 : if (sigdata.complete) {
927 : 8 : *this = std::move(sigdata);
928 : 8 : return;
929 : : }
930 [ + + + + : 26 : if (redeem_script.empty() && !sigdata.redeem_script.empty()) {
- + - + ]
931 : 0 : redeem_script = sigdata.redeem_script;
932 : : }
933 [ + + + + : 27 : if (witness_script.empty() && !sigdata.witness_script.empty()) {
- + - + ]
934 : 0 : witness_script = sigdata.witness_script;
935 : : }
936 : 25 : signatures.insert(std::make_move_iterator(sigdata.signatures.begin()), std::make_move_iterator(sigdata.signatures.end()));
937 : : }
938 : :
939 : : namespace {
940 : : /** Dummy signature checker which accepts all signatures. */
941 : : class DummySignatureChecker final : public BaseSignatureChecker
942 : : {
943 : : public:
944 : : DummySignatureChecker() = default;
945 [ - + ]: 6 : bool CheckECDSASignature(const std::vector<unsigned char>& sig, const std::vector<unsigned char>& vchPubKey, const CScript& scriptCode, SigVersion sigversion) const override { return sig.size() != 0; }
946 : 0 : bool CheckSchnorrSignature(std::span<const unsigned char> sig, std::span<const unsigned char> pubkey, SigVersion sigversion, ScriptExecutionData& execdata, ScriptError* serror) const override { return sig.size() != 0; }
947 : 0 : bool CheckLockTime(const CScriptNum& nLockTime) const override { return true; }
948 : 0 : bool CheckSequence(const CScriptNum& nSequence) const override { return true; }
949 : : };
950 : : }
951 : :
952 : : const BaseSignatureChecker& DUMMY_CHECKER = DummySignatureChecker();
953 : :
954 : : namespace {
955 : : class DummySignatureCreator final : public BaseSignatureCreator {
956 : : private:
957 : : char m_r_len = 32;
958 : : char m_s_len = 32;
959 : : public:
960 : : DummySignatureCreator(char r_len, char s_len) : m_r_len(r_len), m_s_len(s_len) {}
961 : 2 : const BaseSignatureChecker& Checker() const override { return DUMMY_CHECKER; }
962 : 2 : bool CreateSig(const SigningProvider& provider, std::vector<unsigned char>& vchSig, const CKeyID& keyid, const CScript& scriptCode, SigVersion sigversion) const override
963 : : {
964 : : // Create a dummy signature that is a valid DER-encoding
965 : 2 : vchSig.assign(m_r_len + m_s_len + 7, '\000');
966 : 2 : vchSig[0] = 0x30;
967 : 2 : vchSig[1] = m_r_len + m_s_len + 4;
968 : 2 : vchSig[2] = 0x02;
969 : 2 : vchSig[3] = m_r_len;
970 : 2 : vchSig[4] = 0x01;
971 : 2 : vchSig[4 + m_r_len] = 0x02;
972 : 2 : vchSig[5 + m_r_len] = m_s_len;
973 : 2 : vchSig[6 + m_r_len] = 0x01;
974 : 2 : vchSig[6 + m_r_len + m_s_len] = SIGHASH_ALL;
975 : 2 : return true;
976 : : }
977 : 0 : bool CreateSchnorrSig(const SigningProvider& provider, std::vector<unsigned char>& sig, const XOnlyPubKey& pubkey, const uint256* leaf_hash, const uint256* tweak, SigVersion sigversion) const override
978 : : {
979 : 0 : sig.assign(64, '\000');
980 : 0 : return true;
981 : : }
982 : 0 : std::vector<uint8_t> CreateMuSig2Nonce(const SigningProvider& provider, const CPubKey& aggregate_pubkey, const CPubKey& script_pubkey, const CPubKey& part_pubkey, const uint256* leaf_hash, const uint256* merkle_root, SigVersion sigversion, const SignatureData& sigdata) const override
983 : : {
984 : 0 : std::vector<uint8_t> out;
985 [ # # ]: 0 : out.assign(MUSIG2_PUBNONCE_SIZE, '\000');
986 : 0 : return out;
987 : 0 : }
988 : 0 : bool CreateMuSig2PartialSig(const SigningProvider& provider, uint256& partial_sig, const CPubKey& aggregate_pubkey, const CPubKey& script_pubkey, const CPubKey& part_pubkey, const uint256* leaf_hash, const std::vector<std::pair<uint256, bool>>& tweaks, SigVersion sigversion, const SignatureData& sigdata) const override
989 : : {
990 : 0 : partial_sig = uint256::ONE;
991 : 0 : return true;
992 : : }
993 : 0 : bool CreateMuSig2AggregateSig(const std::vector<CPubKey>& participants, std::vector<uint8_t>& sig, const CPubKey& aggregate_pubkey, const CPubKey& script_pubkey, const uint256* leaf_hash, const std::vector<std::pair<uint256, bool>>& tweaks, SigVersion sigversion, const SignatureData& sigdata) const override
994 : : {
995 : 0 : sig.assign(64, '\000');
996 : 0 : return true;
997 : : }
998 : : };
999 : :
1000 : : }
1001 : :
1002 : : const BaseSignatureCreator& DUMMY_SIGNATURE_CREATOR = DummySignatureCreator(32, 32);
1003 : : const BaseSignatureCreator& DUMMY_MAXIMUM_SIGNATURE_CREATOR = DummySignatureCreator(33, 32);
1004 : :
1005 : 0 : bool IsSegWitOutput(const SigningProvider& provider, const CScript& script)
1006 : : {
1007 : 0 : int version;
1008 : 0 : valtype program;
1009 [ # # # # ]: 0 : if (script.IsWitnessProgram(version, program)) return true;
1010 [ # # # # ]: 0 : if (script.IsPayToScriptHash()) {
1011 : 0 : std::vector<valtype> solutions;
1012 [ # # ]: 0 : auto whichtype = Solver(script, solutions);
1013 [ # # ]: 0 : if (whichtype == TxoutType::SCRIPTHASH) {
1014 [ # # ]: 0 : auto h160 = uint160(solutions[0]);
1015 : 0 : CScript subscript;
1016 [ # # # # ]: 0 : if (provider.GetCScript(CScriptID{h160}, subscript)) {
1017 [ # # # # ]: 0 : if (subscript.IsWitnessProgram(version, program)) return true;
1018 : : }
1019 : 0 : }
1020 : 0 : }
1021 : : return false;
1022 : 0 : }
1023 : :
1024 : 222 : bool SignTransaction(CMutableTransaction& mtx, const SigningProvider* keystore, const std::map<COutPoint, Coin>& coins, const SignOptions& options, std::map<int, bilingual_str>& input_errors)
1025 : : {
1026 : 222 : bool fHashSingle = ((options.sighash_type & ~SIGHASH_ANYONECANPAY) == SIGHASH_SINGLE);
1027 : :
1028 : : // Use CTransaction for the constant parts of the
1029 : : // transaction to avoid rehashing.
1030 : 222 : const CTransaction txConst(mtx);
1031 : :
1032 : 222 : PrecomputedTransactionData txdata;
1033 : 222 : std::vector<CTxOut> spent_outputs;
1034 [ - + + + ]: 469 : for (unsigned int i = 0; i < mtx.vin.size(); ++i) {
1035 : 247 : CTxIn& txin = mtx.vin[i];
1036 : 247 : auto coin = coins.find(txin.prevout);
1037 [ + - - + ]: 247 : if (coin == coins.end() || coin->second.IsSpent()) {
1038 [ # # ]: 0 : txdata.Init(txConst, /*spent_outputs=*/{}, /*force=*/true);
1039 : 0 : break;
1040 : : } else {
1041 [ + - ]: 247 : spent_outputs.emplace_back(coin->second.out.nValue, coin->second.out.scriptPubKey);
1042 : : }
1043 : : }
1044 [ - + - + : 222 : if (spent_outputs.size() == mtx.vin.size()) {
+ - ]
1045 [ + - ]: 222 : txdata.Init(txConst, std::move(spent_outputs), true);
1046 : : }
1047 : :
1048 : : // Sign what we can:
1049 [ - + + + ]: 469 : for (unsigned int i = 0; i < mtx.vin.size(); ++i) {
1050 : 247 : CTxIn& txin = mtx.vin[i];
1051 : 247 : auto coin = coins.find(txin.prevout);
1052 [ + - + - ]: 247 : if (coin == coins.end() || coin->second.IsSpent()) {
1053 [ # # # # ]: 0 : input_errors[i] = _("Input not found or already spent");
1054 : 0 : continue;
1055 : : }
1056 [ + - ]: 247 : const CScript& prevPubKey = coin->second.out.scriptPubKey;
1057 : 247 : const CAmount& amount = coin->second.out.nValue;
1058 : :
1059 [ + - ]: 494 : SignatureData sigdata = DataFromTransaction(mtx, i, coin->second.out);
1060 : : // Only sign SIGHASH_SINGLE if there's a corresponding output:
1061 [ - + - - : 247 : if (!fHashSingle || (i < mtx.vout.size())) {
- - ]
1062 [ + - + - ]: 494 : ProduceSignature(*keystore, MutableTransactionSignatureCreator(mtx, i, amount, &txdata, options), prevPubKey, sigdata);
1063 : : }
1064 : :
1065 [ + - ]: 247 : UpdateInput(txin, sigdata);
1066 : :
1067 : : // amount must be specified for valid segwit signature
1068 [ + + + - ]: 247 : if (amount == MAX_MONEY && !txin.scriptWitness.IsNull()) {
1069 [ # # # # ]: 0 : input_errors[i] = _("Missing amount");
1070 : 0 : continue;
1071 : : }
1072 : :
1073 : 247 : ScriptError serror = SCRIPT_ERR_OK;
1074 [ + + + - : 323 : if (!sigdata.complete && !VerifyScript(txin.scriptSig, prevPubKey, &txin.scriptWitness, STANDARD_SCRIPT_VERIFY_FLAGS, TransactionSignatureChecker(&txConst, i, amount, txdata, MissingDataBehavior::FAIL), &serror)) {
+ - + + ]
1075 [ + + ]: 76 : if (serror == SCRIPT_ERR_INVALID_STACK_OPERATION) {
1076 : : // Unable to sign input and verification failed (possible attempt to partially sign).
1077 [ + - + - : 150 : input_errors[i] = Untranslated("Unable to sign input, invalid stack size (possibly missing key)");
+ - ]
1078 [ - + ]: 1 : } else if (serror == SCRIPT_ERR_SIG_NULLFAIL) {
1079 : : // Verification failed (possibly due to insufficient signatures).
1080 [ # # # # : 0 : input_errors[i] = Untranslated("CHECK(MULTI)SIG failing with non-zero signature (possibly need more signatures)");
# # ]
1081 : : } else {
1082 [ + - + - : 2 : input_errors[i] = Untranslated(ScriptErrorString(serror));
+ - ]
1083 : : }
1084 : : } else {
1085 : : // If this input succeeds, make sure there is no error set for it
1086 : 171 : input_errors.erase(i);
1087 : : }
1088 : 247 : }
1089 : 222 : return input_errors.empty();
1090 : 444 : }
|