Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

10.x backport #707

Merged
merged 5 commits into from
Jul 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 10.1.0 - July 9, 2024

- Explicitly track recursion depth in fragments [#704](https://github.com/rust-bitcoin/rust-miniscript/pull/704)

# 10.0.0 - May 24, 2023

- Works with rust-bitcoin 0.30.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "miniscript"
version = "10.0.0"
version = "10.1.0"
authors = ["Andrew Poelstra <[email protected]>, Sanket Kanjalkar <[email protected]>"]
license = "CC0-1.0"
homepage = "https://github.com/rust-bitcoin/rust-miniscript/"
Expand Down
5 changes: 2 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ mod macros;
mod pub_macros;

use internals::hex::exts::DisplayHex;
pub use pub_macros::*;

pub mod descriptor;
pub mod expression;
Expand Down Expand Up @@ -899,6 +898,7 @@ mod tests {
}
}

#[allow(unused_imports)] // this is an internal prelude module; not all imports are used with every feature combination
mod prelude {
// Mutex implementation from LDK
// https://github.com/lightningdevkit/rust-lightning/blob/9bdce47f0e0516e37c89c09f1975dfc06b5870b1/lightning-invoice/src/sync.rs
Expand Down Expand Up @@ -962,10 +962,9 @@ mod prelude {
};
#[cfg(any(feature = "std", test))]
pub use std::{
borrow::{Borrow, Cow, ToOwned},
borrow::{Borrow, ToOwned},
boxed::Box,
collections::{vec_deque::VecDeque, BTreeMap, BTreeSet, BinaryHeap, HashMap, HashSet},
rc, slice,
string::{String, ToString},
sync,
sync::Mutex,
Expand Down
22 changes: 20 additions & 2 deletions src/miniscript/mod.rs

Large diffs are not rendered by default.

32 changes: 32 additions & 0 deletions src/miniscript/types/extra_props.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,9 @@ pub struct ExtData {
/// This does **not** include initial witness elements. This element only captures
/// the additional elements that are pushed during execution.
pub exec_stack_elem_count_dissat: Option<usize>,
/// The miniscript tree depth/height of this node.
/// Used for checking the max depth of the miniscript tree to prevent stack overflow.
pub tree_height: usize,
}

impl Property for ExtData {
Expand All @@ -165,6 +168,7 @@ impl Property for ExtData {
timelock_info: TimelockInfo::default(),
exec_stack_elem_count_sat: Some(1),
exec_stack_elem_count_dissat: None,
tree_height : 0,
}
}

Expand All @@ -180,6 +184,7 @@ impl Property for ExtData {
timelock_info: TimelockInfo::default(),
exec_stack_elem_count_sat: None,
exec_stack_elem_count_dissat: Some(1),
tree_height : 0,
}
}

Expand All @@ -201,6 +206,7 @@ impl Property for ExtData {
timelock_info: TimelockInfo::default(),
exec_stack_elem_count_sat: Some(1), // pushes the pk
exec_stack_elem_count_dissat: Some(1),
tree_height: 0,
}
}

Expand All @@ -222,6 +228,7 @@ impl Property for ExtData {
timelock_info: TimelockInfo::default(),
exec_stack_elem_count_sat: Some(2), // dup and hash push
exec_stack_elem_count_dissat: Some(2),
tree_height: 0,
}
}

Expand All @@ -245,6 +252,7 @@ impl Property for ExtData {
timelock_info: TimelockInfo::default(),
exec_stack_elem_count_sat: Some(n), // n pks
exec_stack_elem_count_dissat: Some(n),
tree_height: 0,
}
}

Expand All @@ -267,6 +275,7 @@ impl Property for ExtData {
timelock_info: TimelockInfo::default(),
exec_stack_elem_count_sat: Some(2), // the two nums before num equal verify
exec_stack_elem_count_dissat: Some(2),
tree_height: 0,
}
}

Expand All @@ -287,6 +296,7 @@ impl Property for ExtData {
timelock_info: TimelockInfo::default(),
exec_stack_elem_count_sat: Some(2), // either size <32> or <hash256> <32 byte>
exec_stack_elem_count_dissat: Some(2),
tree_height: 0,
}
}

Expand All @@ -302,6 +312,7 @@ impl Property for ExtData {
timelock_info: TimelockInfo::default(),
exec_stack_elem_count_sat: Some(2), // either size <32> or <hash256> <32 byte>
exec_stack_elem_count_dissat: Some(2),
tree_height: 0,
}
}

Expand All @@ -317,6 +328,7 @@ impl Property for ExtData {
timelock_info: TimelockInfo::default(),
exec_stack_elem_count_sat: Some(2), // either size <32> or <hash256> <20 byte>
exec_stack_elem_count_dissat: Some(2),
tree_height: 0,
}
}

Expand All @@ -332,6 +344,7 @@ impl Property for ExtData {
timelock_info: TimelockInfo::default(),
exec_stack_elem_count_sat: Some(2), // either size <32> or <hash256> <20 byte>
exec_stack_elem_count_dissat: Some(2),
tree_height: 0,
}
}

Expand All @@ -357,6 +370,7 @@ impl Property for ExtData {
},
exec_stack_elem_count_sat: Some(1), // <t>
exec_stack_elem_count_dissat: None,
tree_height: 0,
}
}

Expand All @@ -378,6 +392,7 @@ impl Property for ExtData {
},
exec_stack_elem_count_sat: Some(1), // <t>
exec_stack_elem_count_dissat: None,
tree_height: 0,
}
}

Expand All @@ -393,6 +408,7 @@ impl Property for ExtData {
timelock_info: self.timelock_info,
exec_stack_elem_count_sat: self.exec_stack_elem_count_sat,
exec_stack_elem_count_dissat: self.exec_stack_elem_count_dissat,
tree_height : self.tree_height + 1,
})
}

Expand All @@ -408,6 +424,7 @@ impl Property for ExtData {
timelock_info: self.timelock_info,
exec_stack_elem_count_sat: self.exec_stack_elem_count_sat,
exec_stack_elem_count_dissat: self.exec_stack_elem_count_dissat,
tree_height : self.tree_height + 1,
})
}

Expand All @@ -423,6 +440,7 @@ impl Property for ExtData {
timelock_info: self.timelock_info,
exec_stack_elem_count_sat: self.exec_stack_elem_count_sat,
exec_stack_elem_count_dissat: self.exec_stack_elem_count_dissat,
tree_height : self.tree_height + 1,
})
}

Expand All @@ -441,6 +459,7 @@ impl Property for ExtData {
// Even all V types push something onto the stack and then remove them
exec_stack_elem_count_sat: self.exec_stack_elem_count_sat,
exec_stack_elem_count_dissat: Some(1),
tree_height : self.tree_height + 1,
})
}

Expand All @@ -457,6 +476,7 @@ impl Property for ExtData {
timelock_info: self.timelock_info,
exec_stack_elem_count_sat: self.exec_stack_elem_count_sat,
exec_stack_elem_count_dissat: None,
tree_height : self.tree_height + 1,
})
}

Expand All @@ -472,6 +492,7 @@ impl Property for ExtData {
timelock_info: self.timelock_info,
exec_stack_elem_count_sat: self.exec_stack_elem_count_sat,
exec_stack_elem_count_dissat: Some(1),
tree_height : self.tree_height + 1,
})
}

Expand All @@ -488,6 +509,7 @@ impl Property for ExtData {
// Technically max(1, self.exec_stack_elem_count_sat), same rationale as cast_dupif
exec_stack_elem_count_sat: self.exec_stack_elem_count_sat,
exec_stack_elem_count_dissat: self.exec_stack_elem_count_dissat,
tree_height : self.tree_height + 1,
})
}

Expand Down Expand Up @@ -528,6 +550,7 @@ impl Property for ExtData {
l.exec_stack_elem_count_dissat,
r.exec_stack_elem_count_dissat.map(|x| x + 1),
),
tree_height : cmp::max(l.tree_height, r.tree_height) + 1,
})
}

Expand Down Expand Up @@ -555,6 +578,7 @@ impl Property for ExtData {
r.exec_stack_elem_count_sat,
),
exec_stack_elem_count_dissat: None,
tree_height : cmp::max(l.tree_height, r.tree_height) + 1,
})
}

Expand Down Expand Up @@ -603,6 +627,7 @@ impl Property for ExtData {
l.exec_stack_elem_count_dissat,
r.exec_stack_elem_count_dissat.map(|x| x + 1),
),
tree_height : cmp::max(l.tree_height, r.tree_height) + 1,
})
}

Expand Down Expand Up @@ -640,6 +665,7 @@ impl Property for ExtData {
l.exec_stack_elem_count_dissat,
r.exec_stack_elem_count_dissat.map(|x| x + 1),
),
tree_height : cmp::max(l.tree_height, r.tree_height) + 1,
};
Ok(res)
}
Expand Down Expand Up @@ -671,6 +697,7 @@ impl Property for ExtData {
opt_max(r.exec_stack_elem_count_sat, l.exec_stack_elem_count_dissat),
),
exec_stack_elem_count_dissat: None,
tree_height : cmp::max(l.tree_height, r.tree_height) + 1,
})
}

Expand Down Expand Up @@ -717,6 +744,7 @@ impl Property for ExtData {
l.exec_stack_elem_count_dissat,
r.exec_stack_elem_count_dissat,
),
tree_height : cmp::max(l.tree_height, r.tree_height) + 1,
})
}

Expand Down Expand Up @@ -762,6 +790,7 @@ impl Property for ExtData {
a.exec_stack_elem_count_dissat,
c.exec_stack_elem_count_dissat,
),
tree_height : cmp::max(a.tree_height, cmp::max(b.tree_height, c.tree_height)) + 1,
})
}

Expand All @@ -781,6 +810,7 @@ impl Property for ExtData {
// the max element count is same as max sat element count when satisfying one element + 1
let mut exec_stack_elem_count_sat_vec = Vec::with_capacity(n);
let mut exec_stack_elem_count_dissat = Some(0);
let mut max_child_height = 0;

for i in 0..n {
let sub = sub_ck(i)?;
Expand Down Expand Up @@ -814,6 +844,7 @@ impl Property for ExtData {
exec_stack_elem_count_dissat,
sub.exec_stack_elem_count_dissat,
);
max_child_height = cmp::max(max_child_height, sub.tree_height) + 1;
}

stack_elem_count_sat_vec.sort_by(sat_minus_option_dissat);
Expand Down Expand Up @@ -885,6 +916,7 @@ impl Property for ExtData {
timelock_info: TimelockInfo::combine_threshold(k, timelocks),
exec_stack_elem_count_sat,
exec_stack_elem_count_dissat,
tree_height : max_child_height + 1,
})
}

Expand Down
4 changes: 4 additions & 0 deletions src/psbt/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1086,9 +1086,11 @@ impl PsbtFields for psbt::Input {
) -> &mut BTreeMap<bitcoin::key::XOnlyPublicKey, (Vec<TapLeafHash>, bip32::KeySource)> {
&mut self.tap_key_origins
}
#[allow(dead_code)]
fn proprietary(&mut self) -> &mut BTreeMap<psbt::raw::ProprietaryKey, Vec<u8>> {
&mut self.proprietary
}
#[allow(dead_code)]
fn unknown(&mut self) -> &mut BTreeMap<psbt::raw::Key, Vec<u8>> {
&mut self.unknown
}
Expand Down Expand Up @@ -1119,9 +1121,11 @@ impl PsbtFields for psbt::Output {
) -> &mut BTreeMap<bitcoin::key::XOnlyPublicKey, (Vec<TapLeafHash>, bip32::KeySource)> {
&mut self.tap_key_origins
}
#[allow(dead_code)]
fn proprietary(&mut self) -> &mut BTreeMap<psbt::raw::ProprietaryKey, Vec<u8>> {
&mut self.proprietary
}
#[allow(dead_code)]
fn unknown(&mut self) -> &mut BTreeMap<psbt::raw::Key, Vec<u8>> {
&mut self.unknown
}
Expand Down
Loading