Skip to content

Commit c0fc027

Browse files
Add validity and malleability checks.
Testing done.
1 parent 9a360e6 commit c0fc027

File tree

2 files changed

+29
-9
lines changed

2 files changed

+29
-9
lines changed

src/policy/concrete.rs

+18-9
Original file line numberDiff line numberDiff line change
@@ -228,15 +228,24 @@ impl<Pk: MiniscriptKey> Policy<Pk> {
228228
// TODO: We might require other compile errors for Taproot.
229229
#[cfg(feature = "compiler")]
230230
pub fn compile_tr(&self, unspendable_key: Option<Pk>) -> Result<Descriptor<Pk>, Error> {
231-
let (internal_key, policy) = self.clone().extract_key(unspendable_key)?;
232-
let tree = Descriptor::new_tr(
233-
internal_key,
234-
match policy {
235-
Policy::Trivial => None,
236-
policy => Some(policy.compile_tr_policy()?),
237-
},
238-
)?;
239-
Ok(tree)
231+
self.is_valid()?; // Check for validity
232+
match self.is_safe_nonmalleable() {
233+
(false, _) => Err(Error::from(CompilerError::TopLevelNonSafe)),
234+
(_, false) => Err(Error::from(
235+
CompilerError::ImpossibleNonMalleableCompilation,
236+
)),
237+
_ => {
238+
let (internal_key, policy) = self.clone().extract_key(unspendable_key)?;
239+
let tree = Descriptor::new_tr(
240+
internal_key,
241+
match policy {
242+
Policy::Trivial => None,
243+
policy => Some(policy.compile_tr_policy()?),
244+
},
245+
)?;
246+
Ok(tree)
247+
}
248+
}
240249
}
241250

242251
/// Compile the descriptor into an optimized `Miniscript` representation

src/policy/mod.rs

+11
Original file line numberDiff line numberDiff line change
@@ -406,5 +406,16 @@ mod tests {
406406
Descriptor::new_tr(unspendable_key.clone(), Some(tree)).unwrap();
407407
assert_eq!(descriptor, expected_descriptor);
408408
}
409+
410+
{
411+
// Invalid policy compilation (Duplicate PubKeys)
412+
let policy: Concrete<String> = policy_str!("or(and(pk(A),pk(B)),and(pk(A),pk(D)))");
413+
let descriptor = policy.compile_tr(Some(unspendable_key.clone()));
414+
415+
assert_eq!(
416+
descriptor.unwrap_err().to_string(),
417+
"Policy contains duplicate keys"
418+
);
419+
}
409420
}
410421
}

0 commit comments

Comments
 (0)