aboutsummaryrefslogtreecommitdiff
path: root/src/psbt.h
diff options
context:
space:
mode:
authorAndrew Chow <achow101-github@achow101.com>2022-06-30 11:08:44 -0400
committerAndrew Chow <achow101-github@achow101.com>2022-06-30 11:08:44 -0400
commit76fb300b63c5c0d01d768510ec69d894820432fa (patch)
tree70dbc36fcd0f82e96a812f18b73ac8fa884ce630 /src/psbt.h
parentb6cf0f8848ed81bf487c7770754848b86e8c07ef (diff)
downloadbitcoin-76fb300b63c5c0d01d768510ec69d894820432fa.tar.xz
psbt: Check Taproot tree depth and leaf versions
Since TaprootBuilder has assertions for the depth and leaf versions, the PSBT decoder should check these values before calling TaprootBuilder::Add so that the assertions are not triggered on malformed taproot trees.
Diffstat (limited to 'src/psbt.h')
-rw-r--r--src/psbt.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/psbt.h b/src/psbt.h
index a143a99988..c390bb67d3 100644
--- a/src/psbt.h
+++ b/src/psbt.h
@@ -866,6 +866,12 @@ struct PSBTOutput
s_tree >> depth;
s_tree >> leaf_ver;
s_tree >> script;
+ if (depth > TAPROOT_CONTROL_MAX_NODE_COUNT) {
+ throw std::ios_base::failure("Output Taproot tree has as leaf greater than Taproot maximum depth");
+ }
+ if ((leaf_ver & ~TAPROOT_LEAF_MASK) != 0) {
+ throw std::ios_base::failure("Output Taproot tree has a leaf with an invalid leaf version");
+ }
m_tap_tree->Add((int)depth, script, (int)leaf_ver, true /* track */);
}
if (!m_tap_tree->IsComplete()) {