/
githubmirror
/
bitcoin
Обзор
Документация
Войти
/
githubmirror
/
bitcoin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/psbt.cpp
893 строки
35 KB
w0xlt
psbt: preserve proprietary fields when combining PSBTs
17 май 2026, 09:57
17 май 2026, 09:57
3f5b3c7
Код
Авторство
О чём код?
// Copyright (c) 2009-present The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <psbt.h> #include <common/types.h> #include <node/types.h> #include <policy/policy.h> #include <primitives/transaction.h> #include <script/signingprovider.h> #include <util/check.h> #include <util/result.h> #include <util/strencodings.h> using common::PSBTError; PartiallySignedTransaction::PartiallySignedTransaction(const CMutableTransaction& tx, uint32_t version) : m_version(version) { assert(m_version == 0 || m_version == 2); tx_version = tx.version; fallback_locktime = tx.nLockTime; inputs.reserve(tx.vin.size()); for (const CTxIn& input : tx.vin) { inputs.emplace_back(GetVersion(), input.prevout.hash, input.prevout.n, input.nSequence); } outputs.reserve(tx.vout.size()); for (const CTxOut& output : tx.vout) { outputs.emplace_back(GetVersion(), output.nValue, output.scriptPubKey); } } bool PartiallySignedTransaction::IsNull() const { return inputs.empty() && outputs.empty() && unknown.empty(); } bool PartiallySignedTransaction::Merge(const PartiallySignedTransaction& psbt) { // Prohibited to merge two PSBTs over different transactions std::optional<Txid> this_id = GetUniqueID(); std::optional<Txid> psbt_id = psbt.GetUniqueID(); if (!this_id || !psbt_id || this_id != psbt_id) { return false; } if (GetVersion() != psbt.GetVersion()) { return false; } for (unsigned int i = 0; i < inputs.size(); ++i) { if (!inputs[i].Merge(psbt.inputs[i])) { return false; } } for (unsigned int i = 0; i < outputs.size(); ++i) { if (!outputs[i].Merge(psbt.outputs[i])) { return false; } } for (auto& xpub_pair : psbt.m_xpubs) { if (!m_xpubs.contains(xpub_pair.first)) { m_xpubs[xpub_pair.first] = xpub_pair.second; } else { m_xpubs[xpub_pair.first].insert(xpub_pair.second.begin(), xpub_pair.second.end()); } } if (fallback_locktime == std::nullopt && psbt.fallback_locktime != std::nullopt) fallback_locktime = psbt.fallback_locktime; // Set m_tx_modifiable only if either PSBT had it set if (m_tx_modifiable.has_value() || psbt.m_tx_modifiable.has_value()) { // In general, we AND the modifiable flags std::bitset<8> this_modifiable = m_tx_modifiable.value_or(0); std::bitset<8> psbt_modifiable = psbt.m_tx_modifiable.value_or(0); std::bitset<8> final_modifiable = this_modifiable & psbt_modifiable; // SIGHASH_SINGLE Modifiable (bit 2) needs to be bitwise OR'd final_modifiable.set(2, this_modifiable[2] || psbt_modifiable[2]); m_tx_modifiable = final_modifiable; } m_proprietary.insert(psbt.m_proprietary.begin(), psbt.m_proprietary.end()); unknown.insert(psbt.unknown.begin(), psbt.unknown.end()); return true; } std::optional<uint32_t> PartiallySignedTransaction::ComputeTimeLock() const { if (GetVersion() >= 2) { std::optional<uint32_t> time_lock{0}; std::optional<uint32_t> height_lock{0}; for (const PSBTInput& input : inputs) { if (input.time_locktime.has_value() && !input.height_locktime.has_value()) { height_lock.reset(); // Transaction can no longer have a height locktime if (!time_lock.has_value()) { return std::nullopt; } } else if (!input.time_locktime.has_value() && input.height_locktime.has_value()) { time_lock.reset(); // Transaction can no longer have a time locktime if (!height_lock.has_value()) { return std::nullopt; } } if (input.time_locktime && time_lock.has_value()) { time_lock = std::max(time_lock, input.time_locktime); } if (input.height_locktime && height_lock.has_value()) { height_lock = std::max(height_lock, input.height_locktime); } } if (height_lock.has_value() && *height_lock > 0) { return *height_lock; } if (time_lock.has_value() && *time_lock > 0) { return *time_lock; } } return fallback_locktime.value_or(0); } std::optional<CMutableTransaction> PartiallySignedTransaction::GetUnsignedTx() const { CMutableTransaction mtx; mtx.version = tx_version; std::optional<uint32_t> locktime = ComputeTimeLock(); if (!locktime) { return std::nullopt; } mtx.nLockTime = *locktime; uint32_t max_sequence = CTxIn::SEQUENCE_FINAL; for (const PSBTInput& input : inputs) { CTxIn txin; txin.prevout.hash = input.prev_txid; txin.prevout.n = input.prev_out; txin.nSequence = input.sequence.value_or(max_sequence); mtx.vin.push_back(txin); } for (const PSBTOutput& output : outputs) { CTxOut txout; txout.nValue = output.amount; txout.scriptPubKey = output.script; mtx.vout.push_back(txout); } return mtx; } std::optional<Txid> PartiallySignedTransaction::GetUniqueID() const { // Get the unsigned transaction std::optional<CMutableTransaction> mtx = GetUnsignedTx(); if (!mtx) { return std::nullopt; } if (GetVersion() >= 2) { for (CTxIn& txin : mtx->vin) { txin.nSequence = 0; } } return mtx->GetHash(); } bool PartiallySignedTransaction::AddInput(const PSBTInput& psbtin) { // The input being added must be for this PSBT's version if (psbtin.GetVersion() != GetVersion()) { return false; } // Prevent duplicate inputs if (std::find_if(inputs.begin(), inputs.end(), [psbtin](const PSBTInput& psbt) { return psbt.prev_txid == psbtin.prev_txid && psbt.prev_out == psbtin.prev_out; } ) != inputs.end()) { return false; } if (GetVersion() < 2) { // This is a v0 psbt, so do the v0 AddInput inputs.push_back(psbtin); inputs.back().partial_sigs.clear(); inputs.back().final_script_sig.clear(); inputs.back().final_script_witness.SetNull(); return true; } // Check inputs modifiable flag if (!m_tx_modifiable.has_value() || !m_tx_modifiable->test(0)) { return false; } // Determine if we need to iterate the inputs. // For now, we only do this if the new input has a required time lock. // BIP 370 states that we should also do this if m_tx_modifiable's bit 2 is set // (Has SIGHASH_SINGLE flag) but since we are only adding inputs at the end of the vector, // we don't care about that. bool iterate_inputs = psbtin.time_locktime != std::nullopt || psbtin.height_locktime != std::nullopt; if (iterate_inputs) { std::optional<uint32_t> old_timelock = ComputeTimeLock(); if (!old_timelock) { return false; } std::optional<uint32_t> time_lock = psbtin.time_locktime; std::optional<uint32_t> height_lock = psbtin.height_locktime; bool has_sigs = false; for (const PSBTInput& input : inputs) { if (input.time_locktime.has_value() && !input.height_locktime.has_value()) { height_lock.reset(); // Transaction can no longer have a height locktime if (time_lock == std::nullopt) { return false; } } else if (!input.time_locktime.has_value() && input.height_locktime.has_value()) { time_lock.reset(); // Transaction can no longer have a time locktime if (height_lock == std::nullopt) { return false; } } if (input.time_locktime && time_lock.has_value()) { time_lock = std::max(time_lock, input.time_locktime); } if (input.height_locktime && height_lock.has_value()) { height_lock = std::max(height_lock, input.height_locktime); } if (input.HasSignatures()) { has_sigs = true; } } uint32_t new_timelock = fallback_locktime.value_or(0); if (height_lock.has_value() && *height_lock > 0) { new_timelock = *height_lock; } else if (time_lock.has_value() && *time_lock > 0) { new_timelock = *time_lock; } if (has_sigs && *old_timelock != new_timelock) { return false; } } // Add the input to the end inputs.push_back(psbtin); return true; } bool PartiallySignedTransaction::AddOutput(const PSBTOutput& psbtout) { // The output being added must be for this PSBT's version if (psbtout.GetVersion() != GetVersion()) { return false; } if (GetVersion() < 2) { // This is a v0 psbt, do the v0 AddOutput outputs.push_back(psbtout); return true; } // No global tx, must be PSBTv2 // Check outputs are modifiable if (!m_tx_modifiable.has_value() || !m_tx_modifiable->test(1)) { return false; } outputs.push_back(psbtout); return true; } bool PSBTInput::GetUTXO(CTxOut& utxo) const { if (non_witness_utxo) { if (prev_out >= non_witness_utxo->vout.size()) { return false; } if (non_witness_utxo->GetHash() != prev_txid) { return false; } utxo = non_witness_utxo->vout[prev_out]; } else if (!witness_utxo.IsNull()) { utxo = witness_utxo; } else { return false; } return true; } COutPoint PSBTInput::GetOutPoint() const { return COutPoint(prev_txid, prev_out); } bool PSBTInput::IsNull() const { return !non_witness_utxo && witness_utxo.IsNull() && partial_sigs.empty() && unknown.empty() && hd_keypaths.empty() && redeem_script.empty() && witness_script.empty(); } void PSBTInput::FillSignatureData(SignatureData& sigdata) const { if (!final_script_sig.empty()) { sigdata.scriptSig = final_script_sig; sigdata.complete = true; } if (!final_script_witness.IsNull()) { sigdata.scriptWitness = final_script_witness; sigdata.complete = true; } if (sigdata.complete) { return; } sigdata.signatures.insert(partial_sigs.begin(), partial_sigs.end()); if (!redeem_script.empty()) { sigdata.redeem_script = redeem_script; } if (!witness_script.empty()) { sigdata.witness_script = witness_script; } for (const auto& key_pair : hd_keypaths) { sigdata.misc_pubkeys.emplace(key_pair.first.GetID(), key_pair); } if (!m_tap_key_sig.empty()) { sigdata.taproot_key_path_sig = m_tap_key_sig; } for (const auto& [pubkey_leaf, sig] : m_tap_script_sigs) { sigdata.taproot_script_sigs.emplace(pubkey_leaf, sig); } if (!m_tap_internal_key.IsNull()) { sigdata.tr_spenddata.internal_key = m_tap_internal_key; } if (!m_tap_merkle_root.IsNull()) { sigdata.tr_spenddata.merkle_root = m_tap_merkle_root; } for (const auto& [leaf_script, control_block] : m_tap_scripts) { sigdata.tr_spenddata.scripts.emplace(leaf_script, control_block); } for (const auto& [pubkey, leaf_origin] : m_tap_bip32_paths) { sigdata.taproot_misc_pubkeys.emplace(pubkey, leaf_origin); sigdata.tap_pubkeys.emplace(Hash160(pubkey), pubkey); } for (const auto& [hash, preimage] : ripemd160_preimages) { sigdata.ripemd160_preimages.emplace(std::vector<unsigned char>(hash.begin(), hash.end()), preimage); } for (const auto& [hash, preimage] : sha256_preimages) { sigdata.sha256_preimages.emplace(std::vector<unsigned char>(hash.begin(), hash.end()), preimage); } for (const auto& [hash, preimage] : hash160_preimages) { sigdata.hash160_preimages.emplace(std::vector<unsigned char>(hash.begin(), hash.end()), preimage); } for (const auto& [hash, preimage] : hash256_preimages) { sigdata.hash256_preimages.emplace(std::vector<unsigned char>(hash.begin(), hash.end()), preimage); } sigdata.musig2_pubkeys.insert(m_musig2_participants.begin(), m_musig2_participants.end()); for (const auto& [agg_key_lh, pubnonces] : m_musig2_pubnonces) { sigdata.musig2_pubnonces[agg_key_lh].insert(pubnonces.begin(), pubnonces.end()); } for (const auto& [agg_key_lh, psigs] : m_musig2_partial_sigs) { sigdata.musig2_partial_sigs[agg_key_lh].insert(psigs.begin(), psigs.end()); } } void PSBTInput::FromSignatureData(const SignatureData& sigdata) { if (sigdata.complete) { partial_sigs.clear(); hd_keypaths.clear(); redeem_script.clear(); witness_script.clear(); if (!sigdata.scriptSig.empty()) { final_script_sig = sigdata.scriptSig; } if (!sigdata.scriptWitness.IsNull()) { final_script_witness = sigdata.scriptWitness; } return; } partial_sigs.insert(sigdata.signatures.begin(), sigdata.signatures.end()); if (redeem_script.empty() && !sigdata.redeem_script.empty()) { redeem_script = sigdata.redeem_script; } if (witness_script.empty() && !sigdata.witness_script.empty()) { witness_script = sigdata.witness_script; } for (const auto& entry : sigdata.misc_pubkeys) { hd_keypaths.emplace(entry.second); } if (!sigdata.taproot_key_path_sig.empty()) { m_tap_key_sig = sigdata.taproot_key_path_sig; } for (const auto& [pubkey_leaf, sig] : sigdata.taproot_script_sigs) { m_tap_script_sigs.emplace(pubkey_leaf, sig); } if (!sigdata.tr_spenddata.internal_key.IsNull()) { m_tap_internal_key = sigdata.tr_spenddata.internal_key; } if (!sigdata.tr_spenddata.merkle_root.IsNull()) { m_tap_merkle_root = sigdata.tr_spenddata.merkle_root; } for (const auto& [leaf_script, control_block] : sigdata.tr_spenddata.scripts) { m_tap_scripts.emplace(leaf_script, control_block); } for (const auto& [pubkey, leaf_origin] : sigdata.taproot_misc_pubkeys) { m_tap_bip32_paths.emplace(pubkey, leaf_origin); } m_musig2_participants.insert(sigdata.musig2_pubkeys.begin(), sigdata.musig2_pubkeys.end()); for (const auto& [agg_key_lh, pubnonces] : sigdata.musig2_pubnonces) { m_musig2_pubnonces[agg_key_lh].insert(pubnonces.begin(), pubnonces.end()); } for (const auto& [agg_key_lh, psigs] : sigdata.musig2_partial_sigs) { m_musig2_partial_sigs[agg_key_lh].insert(psigs.begin(), psigs.end()); } for (const auto& [hash, preimage] : sigdata.ripemd160_preimages) { ripemd160_preimages.emplace(std::vector<unsigned char>(hash.begin(), hash.end()), preimage); } for (const auto& [hash, preimage] : sigdata.sha256_preimages) { sha256_preimages.emplace(std::vector<unsigned char>(hash.begin(), hash.end()), preimage); } for (const auto& [hash, preimage] : sigdata.hash160_preimages) { hash160_preimages.emplace(std::vector<unsigned char>(hash.begin(), hash.end()), preimage); } for (const auto& [hash, preimage] : sigdata.hash256_preimages) { hash256_preimages.emplace(std::vector<unsigned char>(hash.begin(), hash.end()), preimage); } } bool PSBTInput::Merge(const PSBTInput& input) { if (!non_witness_utxo && input.non_witness_utxo) non_witness_utxo = input.non_witness_utxo; if (witness_utxo.IsNull() && !input.witness_utxo.IsNull()) { witness_utxo = input.witness_utxo; } partial_sigs.insert(input.partial_sigs.begin(), input.partial_sigs.end()); ripemd160_preimages.insert(input.ripemd160_preimages.begin(), input.ripemd160_preimages.end()); sha256_preimages.insert(input.sha256_preimages.begin(), input.sha256_preimages.end()); hash160_preimages.insert(input.hash160_preimages.begin(), input.hash160_preimages.end()); hash256_preimages.insert(input.hash256_preimages.begin(), input.hash256_preimages.end()); hd_keypaths.insert(input.hd_keypaths.begin(), input.hd_keypaths.end()); m_proprietary.insert(input.m_proprietary.begin(), input.m_proprietary.end()); unknown.insert(input.unknown.begin(), input.unknown.end()); m_tap_script_sigs.insert(input.m_tap_script_sigs.begin(), input.m_tap_script_sigs.end()); m_tap_scripts.insert(input.m_tap_scripts.begin(), input.m_tap_scripts.end()); m_tap_bip32_paths.insert(input.m_tap_bip32_paths.begin(), input.m_tap_bip32_paths.end()); if (redeem_script.empty() && !input.redeem_script.empty()) redeem_script = input.redeem_script; if (witness_script.empty() && !input.witness_script.empty()) witness_script = input.witness_script; if (final_script_sig.empty() && !input.final_script_sig.empty()) final_script_sig = input.final_script_sig; if (final_script_witness.IsNull() && !input.final_script_witness.IsNull()) final_script_witness = input.final_script_witness; if (m_tap_key_sig.empty() && !input.m_tap_key_sig.empty()) m_tap_key_sig = input.m_tap_key_sig; if (m_tap_internal_key.IsNull() && !input.m_tap_internal_key.IsNull()) m_tap_internal_key = input.m_tap_internal_key; if (m_tap_merkle_root.IsNull() && !input.m_tap_merkle_root.IsNull()) m_tap_merkle_root = input.m_tap_merkle_root; m_musig2_participants.insert(input.m_musig2_participants.begin(), input.m_musig2_participants.end()); for (const auto& [agg_key_lh, pubnonces] : input.m_musig2_pubnonces) { m_musig2_pubnonces[agg_key_lh].insert(pubnonces.begin(), pubnonces.end()); } for (const auto& [agg_key_lh, psigs] : input.m_musig2_partial_sigs) { m_musig2_partial_sigs[agg_key_lh].insert(psigs.begin(), psigs.end()); } if (sequence == std::nullopt && input.sequence != std::nullopt) sequence = input.sequence; if (time_locktime == std::nullopt && input.time_locktime != std::nullopt) time_locktime = input.time_locktime; if (height_locktime == std::nullopt && input.height_locktime != std::nullopt) height_locktime = input.height_locktime; return true; } bool PSBTInput::HasSignatures() const { return !final_script_sig.empty() || !final_script_witness.IsNull() || !partial_sigs.empty() || !m_tap_key_sig.empty() || !m_tap_script_sigs.empty() || !m_musig2_partial_sigs.empty(); } void PSBTOutput::FillSignatureData(SignatureData& sigdata) const { if (!redeem_script.empty()) { sigdata.redeem_script = redeem_script; } if (!witness_script.empty()) { sigdata.witness_script = witness_script; } for (const auto& key_pair : hd_keypaths) { sigdata.misc_pubkeys.emplace(key_pair.first.GetID(), key_pair); } if (!m_tap_tree.empty() && m_tap_internal_key.IsFullyValid()) { TaprootBuilder builder; for (const auto& [depth, leaf_ver, script] : m_tap_tree) { builder.Add((int)depth, script, (int)leaf_ver, /*track=*/true); } assert(builder.IsComplete()); builder.Finalize(m_tap_internal_key); TaprootSpendData spenddata = builder.GetSpendData(); sigdata.tr_spenddata.internal_key = m_tap_internal_key; sigdata.tr_spenddata.Merge(spenddata); sigdata.tr_builder = builder; } for (const auto& [pubkey, leaf_origin] : m_tap_bip32_paths) { sigdata.taproot_misc_pubkeys.emplace(pubkey, leaf_origin); sigdata.tap_pubkeys.emplace(Hash160(pubkey), pubkey); } sigdata.musig2_pubkeys.insert(m_musig2_participants.begin(), m_musig2_participants.end()); } void PSBTOutput::FromSignatureData(const SignatureData& sigdata) { if (redeem_script.empty() && !sigdata.redeem_script.empty()) { redeem_script = sigdata.redeem_script; } if (witness_script.empty() && !sigdata.witness_script.empty()) { witness_script = sigdata.witness_script; } for (const auto& entry : sigdata.misc_pubkeys) { hd_keypaths.emplace(entry.second); } if (!sigdata.tr_spenddata.internal_key.IsNull()) { m_tap_internal_key = sigdata.tr_spenddata.internal_key; } if (sigdata.tr_builder.has_value() && sigdata.tr_builder->HasScripts()) { m_tap_tree = sigdata.tr_builder->GetTreeTuples(); } for (const auto& [pubkey, leaf_origin] : sigdata.taproot_misc_pubkeys) { m_tap_bip32_paths.emplace(pubkey, leaf_origin); } m_musig2_participants.insert(sigdata.musig2_pubkeys.begin(), sigdata.musig2_pubkeys.end()); } bool PSBTOutput::IsNull() const { return redeem_script.empty() && witness_script.empty() && hd_keypaths.empty() && unknown.empty(); } bool PSBTOutput::Merge(const PSBTOutput& output) { hd_keypaths.insert(output.hd_keypaths.begin(), output.hd_keypaths.end()); m_proprietary.insert(output.m_proprietary.begin(), output.m_proprietary.end()); unknown.insert(output.unknown.begin(), output.unknown.end()); m_tap_bip32_paths.insert(output.m_tap_bip32_paths.begin(), output.m_tap_bip32_paths.end()); if (redeem_script.empty() && !output.redeem_script.empty()) redeem_script = output.redeem_script; if (witness_script.empty() && !output.witness_script.empty()) witness_script = output.witness_script; if (m_tap_internal_key.IsNull() && !output.m_tap_internal_key.IsNull()) m_tap_internal_key = output.m_tap_internal_key; if (m_tap_tree.empty() && !output.m_tap_tree.empty()) m_tap_tree = output.m_tap_tree; m_musig2_participants.insert(output.m_musig2_participants.begin(), output.m_musig2_participants.end()); return true; } bool PSBTInputSigned(const PSBTInput& input) { return !input.final_script_sig.empty() || !input.final_script_witness.IsNull(); } bool PSBTInputSignedAndVerified(const PartiallySignedTransaction& psbt, unsigned int input_index, const PrecomputedTransactionData* txdata) { CTxOut utxo; assert(input_index < psbt.inputs.size()); const PSBTInput& input = psbt.inputs[input_index]; if (input.non_witness_utxo) { // If we're taking our information from a non-witness UTXO, verify that it matches the prevout. COutPoint prevout = input.GetOutPoint(); if (prevout.n >= input.non_witness_utxo->vout.size()) { return false; } if (input.non_witness_utxo->GetHash() != prevout.hash) { return false; } utxo = input.non_witness_utxo->vout[prevout.n]; } else if (!input.witness_utxo.IsNull()) { utxo = input.witness_utxo; } else { return false; } std::optional<CMutableTransaction> unsigned_tx = psbt.GetUnsignedTx(); if (!unsigned_tx) { return false; } const CMutableTransaction& tx = *unsigned_tx; if (txdata) { return VerifyScript(input.final_script_sig, utxo.scriptPubKey, &input.final_script_witness, STANDARD_SCRIPT_VERIFY_FLAGS, MutableTransactionSignatureChecker{&tx, input_index, utxo.nValue, *txdata, MissingDataBehavior::FAIL}); } else { return VerifyScript(input.final_script_sig, utxo.scriptPubKey, &input.final_script_witness, STANDARD_SCRIPT_VERIFY_FLAGS, MutableTransactionSignatureChecker{&tx, input_index, utxo.nValue, MissingDataBehavior::FAIL}); } } size_t CountPSBTUnsignedInputs(const PartiallySignedTransaction& psbt) { size_t count = 0; for (const auto& input : psbt.inputs) { if (!PSBTInputSigned(input)) { count++; } } return count; } void UpdatePSBTOutput(const SigningProvider& provider, PartiallySignedTransaction& psbt, int index) { std::optional<CMutableTransaction> unsigned_tx = psbt.GetUnsignedTx(); if (!unsigned_tx) { return; } CMutableTransaction& tx = *unsigned_tx; const CTxOut& out = tx.vout.at(index); PSBTOutput& psbt_out = psbt.outputs.at(index); // Fill a SignatureData with output info SignatureData sigdata; psbt_out.FillSignatureData(sigdata); // Construct a would-be spend of this output, to update sigdata with. // Note that ProduceSignature is used to fill in metadata (not actual signatures), // so provider does not need to provide any private keys (it can be a HidingSigningProvider). MutableTransactionSignatureCreator creator(tx, /*input_idx=*/0, out.nValue, {.sighash_type = SIGHASH_ALL}); ProduceSignature(provider, creator, out.scriptPubKey, sigdata); // Put redeem_script, witness_script, key paths, into PSBTOutput. psbt_out.FromSignatureData(sigdata); } std::optional<PrecomputedTransactionData> PrecomputePSBTData(const PartiallySignedTransaction& psbt) { std::optional<CMutableTransaction> unsigned_tx = psbt.GetUnsignedTx(); if (!unsigned_tx) { return std::nullopt; } const CMutableTransaction& tx = *unsigned_tx; bool have_all_spent_outputs = true; std::vector<CTxOut> utxos; for (const PSBTInput& input : psbt.inputs) { if (!input.GetUTXO(utxos.emplace_back())) have_all_spent_outputs = false; } PrecomputedTransactionData txdata; if (have_all_spent_outputs) { txdata.Init(tx, std::move(utxos), true); } else { txdata.Init(tx, {}, true); } return txdata; } PSBTError SignPSBTInput(const SigningProvider& provider, PartiallySignedTransaction& psbt, int index, const PrecomputedTransactionData* txdata, const common::PSBTFillOptions& options, SignatureData* out_sigdata) { PSBTInput& input = psbt.inputs.at(index); std::optional<CMutableTransaction> unsigned_tx = psbt.GetUnsignedTx(); if (!unsigned_tx) { return PSBTError::INVALID_TX; } const CMutableTransaction& tx = *unsigned_tx; if (PSBTInputSignedAndVerified(psbt, index, txdata)) { return PSBTError::OK; } // Fill SignatureData with input info SignatureData sigdata; input.FillSignatureData(sigdata); // Get UTXO bool require_witness_sig = false; CTxOut utxo; if (input.non_witness_utxo) { // If we're taking our information from a non-witness UTXO, verify that it matches the prevout. COutPoint prevout = input.GetOutPoint(); if (prevout.n >= input.non_witness_utxo->vout.size()) { return PSBTError::MISSING_INPUTS; } if (input.non_witness_utxo->GetHash() != prevout.hash) { return PSBTError::MISSING_INPUTS; } utxo = input.non_witness_utxo->vout[prevout.n]; } else if (!input.witness_utxo.IsNull()) { utxo = input.witness_utxo; // When we're taking our information from a witness UTXO, we can't verify it is actually data from // the output being spent. This is safe in case a witness signature is produced (which includes this // information directly in the hash), but not for non-witness signatures. Remember that we require // a witness signature in this situation. require_witness_sig = true; } else { return PSBTError::MISSING_INPUTS; } // Get the sighash type // If both the field and the parameter are provided, they must match // If only the parameter is provided, use it and add it to the PSBT if it is other than SIGHASH_DEFAULT // for all input types, and not SIGHASH_ALL for non-taproot input types. // If neither are provided, use SIGHASH_DEFAULT if it is taproot, and SIGHASH_ALL for everything else. int sighash{options.sighash_type.value_or(utxo.scriptPubKey.IsPayToTaproot() ? SIGHASH_DEFAULT : SIGHASH_ALL)}; // For user safety, the desired sighash must be provided if the PSBT wants something other than the default set in the previous line. if (input.sighash_type && input.sighash_type != sighash) { return PSBTError::SIGHASH_MISMATCH; } // Set the PSBT sighash field when sighash is not DEFAULT or ALL // DEFAULT is allowed for non-taproot inputs since DEFAULT may be passed for them (e.g. the psbt being signed also has taproot inputs) // Note that signing already aliases DEFAULT to ALL for non-taproot inputs. if (utxo.scriptPubKey.IsPayToTaproot() ? sighash != SIGHASH_DEFAULT : (sighash != SIGHASH_DEFAULT && sighash != SIGHASH_ALL)) { input.sighash_type = sighash; } // Check all existing signatures use the sighash type if (sighash == SIGHASH_DEFAULT) { if (!input.m_tap_key_sig.empty() && input.m_tap_key_sig.size() != 64) { return PSBTError::SIGHASH_MISMATCH; } for (const auto& [_, sig] : input.m_tap_script_sigs) { if (sig.size() != 64) return PSBTError::SIGHASH_MISMATCH; } } else { if (!input.m_tap_key_sig.empty() && (input.m_tap_key_sig.size() != 65 || input.m_tap_key_sig.back() != sighash)) { return PSBTError::SIGHASH_MISMATCH; } for (const auto& [_, sig] : input.m_tap_script_sigs) { if (sig.size() != 65 || sig.back() != sighash) return PSBTError::SIGHASH_MISMATCH; } for (const auto& [_, sig] : input.partial_sigs) { if (sig.second.back() != sighash) return PSBTError::SIGHASH_MISMATCH; } } sigdata.witness = false; bool sig_complete; if (txdata == nullptr) { sig_complete = ProduceSignature(provider, DUMMY_SIGNATURE_CREATOR, utxo.scriptPubKey, sigdata); } else { MutableTransactionSignatureCreator creator(tx, index, utxo.nValue, txdata, {.sighash_type = sighash}); sig_complete = ProduceSignature(provider, creator, utxo.scriptPubKey, sigdata); } // Verify that a witness signature was produced in case one was required. if (require_witness_sig && !sigdata.witness) return PSBTError::INCOMPLETE; // If we are not finalizing, set sigdata.complete to false to not set the scriptWitness if (!options.finalize && sigdata.complete) sigdata.complete = false; input.FromSignatureData(sigdata); // If we have a witness signature, put a witness UTXO. if (sigdata.witness) { input.witness_utxo = utxo; // We can remove the non_witness_utxo if and only if there are no non-segwit or segwit v0 // inputs in this transaction. Since this requires inspecting the entire transaction, this // is something for the caller to deal with (i.e. FillPSBT). } // Fill in the missing info if (out_sigdata) { out_sigdata->missing_pubkeys = sigdata.missing_pubkeys; out_sigdata->missing_sigs = sigdata.missing_sigs; out_sigdata->missing_redeem_script = sigdata.missing_redeem_script; out_sigdata->missing_witness_script = sigdata.missing_witness_script; } return sig_complete ? PSBTError::OK : PSBTError::INCOMPLETE; } void RemoveUnnecessaryTransactions(PartiallySignedTransaction& psbtx) { // Figure out if any non_witness_utxos should be dropped std::vector<unsigned int> to_drop; for (unsigned int i = 0; i < psbtx.inputs.size(); ++i) { const auto& input = psbtx.inputs.at(i); int wit_ver; std::vector<unsigned char> wit_prog; if (input.witness_utxo.IsNull() || !input.witness_utxo.scriptPubKey.IsWitnessProgram(wit_ver, wit_prog)) { // There's a non-segwit input, so we cannot drop any non_witness_utxos to_drop.clear(); break; } if (wit_ver == 0) { // Segwit v0, so we cannot drop any non_witness_utxos to_drop.clear(); break; } // non_witness_utxos cannot be dropped if the sighash type includes SIGHASH_ANYONECANPAY // Since callers should have called SignPSBTInput which updates the sighash type in the PSBT, we only // need to look at that field. If it is not present, then we can assume SIGHASH_DEFAULT or SIGHASH_ALL. if (input.sighash_type != std::nullopt && (*input.sighash_type & 0x80) == SIGHASH_ANYONECANPAY) { to_drop.clear(); break; } if (input.non_witness_utxo) { to_drop.push_back(i); } } // Drop the non_witness_utxos that we can drop for (unsigned int i : to_drop) { psbtx.inputs.at(i).non_witness_utxo = nullptr; } } bool FinalizePSBT(PartiallySignedTransaction& psbtx) { // Finalize input signatures -- in case we have partial signatures that add up to a complete // signature, but have not combined them yet (e.g. because the combiner that created this // PartiallySignedTransaction did not understand them), this will combine them into a final // script. bool complete = true; std::optional<PrecomputedTransactionData> txdata_res = PrecomputePSBTData(psbtx); if (!txdata_res) { return false; } const PrecomputedTransactionData& txdata = *txdata_res; for (unsigned int i = 0; i < psbtx.inputs.size(); ++i) { PSBTInput& input = psbtx.inputs.at(i); complete &= (SignPSBTInput(DUMMY_SIGNING_PROVIDER, psbtx, i, &txdata, {.sighash_type = input.sighash_type, .finalize = true}, /*out_sigdata=*/nullptr) == PSBTError::OK); } return complete; } bool FinalizeAndExtractPSBT(PartiallySignedTransaction& psbtx, CMutableTransaction& result) { // It's not safe to extract a PSBT that isn't finalized, and there's no easy way to check // whether a PSBT is finalized without finalizing it, so we just do this. if (!FinalizePSBT(psbtx)) { return false; } std::optional<CMutableTransaction> unsigned_tx = psbtx.GetUnsignedTx(); if (!unsigned_tx) { return false; } result = *unsigned_tx; for (unsigned int i = 0; i < result.vin.size(); ++i) { result.vin[i].scriptSig = psbtx.inputs[i].final_script_sig; result.vin[i].scriptWitness = psbtx.inputs[i].final_script_witness; } return true; } std::optional<PartiallySignedTransaction> CombinePSBTs(const std::vector<PartiallySignedTransaction>& psbtxs) { PartiallySignedTransaction out = psbtxs[0]; // Copy the first one // Merge for (auto it = std::next(psbtxs.begin()); it != psbtxs.end(); ++it) { if (!out.Merge(*it)) { return std::nullopt; } } return out; } std::string PSBTRoleName(PSBTRole role) { switch (role) { case PSBTRole::CREATOR: return "creator"; case PSBTRole::UPDATER: return "updater"; case PSBTRole::SIGNER: return "signer"; case PSBTRole::FINALIZER: return "finalizer"; case PSBTRole::EXTRACTOR: return "extractor"; } // no default case, so the compiler can warn about missing cases assert(false); } util::Result<PartiallySignedTransaction> DecodeBase64PSBT(const std::string& base64_tx) { auto tx_data = DecodeBase64(base64_tx); if (!tx_data) { return util::Error{Untranslated("invalid base64")}; } return DecodeRawPSBT(MakeByteSpan(*tx_data)); } util::Result<PartiallySignedTransaction> DecodeRawPSBT(std::span<const std::byte> tx_data) { SpanReader ss_data{tx_data}; try { PartiallySignedTransaction psbt(deserialize, ss_data); if (!ss_data.empty()) { return util::Error{Untranslated("extra data after PSBT")}; } return psbt; } catch (const std::exception& e) { return util::Error{Untranslated(e.what())}; } } uint32_t PartiallySignedTransaction::GetVersion() const { if (m_version != std::nullopt) { return *m_version; } return 0; }