// SPDX-License-Identifier: CC0-1.0 //! Bitcoin scripts. //! //! *[See also the `Script` type](Script).* //! //! This module provides the structures and functions needed to support scripts. //! //!
//! What is Bitcoin script //! //! Scripts define Bitcoin's digital signature scheme: a signature is formed //! from a script (the second half of which is defined by a coin to be spent, //! and the first half provided by the spending transaction), and is valid iff //! the script leaves `TRUE` on the stack after being evaluated. Bitcoin's //! script is a stack-based assembly language similar in spirit to [Forth]. //! //! Script is represented as a sequence of bytes on the wire, each byte representing an operation, //! or data to be pushed on the stack. //! //! See [Bitcoin Wiki: Script][wiki-script] for more information. //! //! [Forth]: https://en.wikipedia.org/wiki/Forth_(programming_language) //! //! [wiki-script]: https://en.bitcoin.it/wiki/Script //!
//! //! In this library we chose to keep the byte representation in memory and decode opcodes only when //! processing the script. This is similar to Rust choosing to represent strings as UTF-8-encoded //! bytes rather than slice of `char`s. In both cases the individual items can have different sizes //! and forcing them to be larger would waste memory and, in case of Bitcoin script, even some //! performance (forcing allocations). //! //! ## `Script` vs `ScriptBuf` vs `Builder` //! //! These are the most important types in this module and they are quite similar, so it may seem //! confusing what the differences are. `Script` is an unsized type much like `str` or `Path` are //! and `ScriptBuf` is an owned counterpart to `Script` just like `String` is an owned counterpart //! to `str`. //! //! However it is common to construct an owned script and then pass it around. For this case a //! builder API is more convenient. To support this we provide `Builder` type which is very similar //! to `ScriptBuf` but its methods take `self` instead of `&mut self` and return `Self`. It also //! contains a cache that may make some modifications faster. This cache is usually not needed //! outside of creating the script. //! //! At the time of writing there's only one operation using the cache - `push_verify`, so the cache //! is minimal but we may extend it in the future if needed. mod borrowed; mod builder; mod instruction; mod owned; mod push_bytes; #[cfg(test)] mod tests; pub mod witness_program; pub mod witness_version; use alloc::rc::Rc; #[cfg(any(not(rust_v_1_60), target_has_atomic = "ptr"))] use alloc::sync::Arc; use core::cmp::Ordering; use core::fmt; use core::ops::{Deref, DerefMut}; use hashes::{hash160, sha256}; use io::{BufRead, Write}; use crate::consensus::{encode, Decodable, Encodable}; use crate::constants::{MAX_REDEEM_SCRIPT_SIZE, MAX_WITNESS_SCRIPT_SIZE}; use crate::internal_macros::impl_asref_push_bytes; use crate::opcodes::all::*; use crate::opcodes::{self, Opcode}; use crate::prelude::*; use crate::OutPoint; #[rustfmt::skip] // Keep public re-exports separate. #[doc(inline)] pub use self::{ borrowed::*, builder::*, instruction::*, owned::*, push_bytes::*, }; hashes::hash_newtype! { /// A hash of Bitcoin Script bytecode. pub struct ScriptHash(hash160::Hash); /// SegWit version of a Bitcoin Script bytecode hash. pub struct WScriptHash(sha256::Hash); } impl_asref_push_bytes!(ScriptHash, WScriptHash); impl ScriptHash { /// Creates a `ScriptHash` after first checking the script size. /// /// # 520-byte limitation on serialized script size /// /// > As a consequence of the requirement for backwards compatibility the serialized script is /// > itself subject to the same rules as any other PUSHDATA operation, including the rule that /// > no data greater than 520 bytes may be pushed to the stack. Thus it is not possible to /// > spend a P2SH output if the redemption script it refers to is >520 bytes in length. /// /// ref: [BIP-16](https://github.com/bitcoin/bips/blob/master/bip-0016.mediawiki#user-content-520byte_limitation_on_serialized_script_size) pub fn from_script(redeem_script: &Script) -> Result { if redeem_script.len() > MAX_REDEEM_SCRIPT_SIZE { return Err(RedeemScriptSizeError { size: redeem_script.len() }); } Ok(ScriptHash::hash(redeem_script.as_bytes())) } /// Creates a `ScriptHash` from any script irrespective of script size. /// /// If you hash a script that exceeds 520 bytes in size and use it to create a P2SH output /// then the output will be unspendable (see [BIP-16]). /// /// [BIP-16]: pub fn from_script_unchecked(script: &Script) -> Self { ScriptHash::hash(script.as_bytes()) } } impl WScriptHash { /// Creates a `WScriptHash` after first checking the script size. /// /// # 10,000-byte limit on the witness script /// /// > The witnessScript (≤ 10,000 bytes) is popped off the initial witness stack. SHA256 of the /// > witnessScript must match the 32-byte witness program. /// /// ref: [BIP-141](https://github.com/bitcoin/bips/blob/master/bip-0141.mediawiki) pub fn from_script(witness_script: &Script) -> Result { if witness_script.len() > MAX_WITNESS_SCRIPT_SIZE { return Err(WitnessScriptSizeError { size: witness_script.len() }); } Ok(WScriptHash::hash(witness_script.as_bytes())) } /// Creates a `WScriptHash` from any script irrespective of script size. /// /// If you hash a script that exceeds 10,000 bytes in size and use it to create a Segwit /// output then the output will be unspendable (see [BIP-141]). /// /// ref: [BIP-141](https://github.com/bitcoin/bips/blob/master/bip-0141.mediawiki) pub fn from_script_unchecked(script: &Script) -> Self { WScriptHash::hash(script.as_bytes()) } } impl TryFrom for ScriptHash { type Error = RedeemScriptSizeError; fn try_from(redeem_script: ScriptBuf) -> Result { Self::from_script(&redeem_script) } } impl TryFrom<&ScriptBuf> for ScriptHash { type Error = RedeemScriptSizeError; fn try_from(redeem_script: &ScriptBuf) -> Result { Self::from_script(redeem_script) } } impl TryFrom<&Script> for ScriptHash { type Error = RedeemScriptSizeError; fn try_from(redeem_script: &Script) -> Result { Self::from_script(redeem_script) } } impl TryFrom for WScriptHash { type Error = WitnessScriptSizeError; fn try_from(witness_script: ScriptBuf) -> Result { Self::from_script(&witness_script) } } impl TryFrom<&ScriptBuf> for WScriptHash { type Error = WitnessScriptSizeError; fn try_from(witness_script: &ScriptBuf) -> Result { Self::from_script(witness_script) } } impl TryFrom<&Script> for WScriptHash { type Error = WitnessScriptSizeError; fn try_from(witness_script: &Script) -> Result { Self::from_script(witness_script) } } /// Encodes an integer in script(minimal CScriptNum) format. /// /// Writes bytes into the buffer and returns the number of bytes written. /// /// Note that `write_scriptint`/`read_scriptint` do not roundtrip if the value written requires /// more than 4 bytes, this is in line with Bitcoin Core (see [`CScriptNum::serialize`]). /// /// [`CScriptNum::serialize`]: pub fn write_scriptint(out: &mut [u8; 8], n: i64) -> usize { let mut len = 0; if n == 0 { return len; } let neg = n < 0; let mut abs = n.unsigned_abs(); while abs > 0xFF { out[len] = (abs & 0xFF) as u8; len += 1; abs >>= 8; } // If the number's value causes the sign bit to be set, we need an extra // byte to get the correct value and correct sign bit if abs & 0x80 != 0 { out[len] = abs as u8; len += 1; out[len] = if neg { 0x80u8 } else { 0u8 }; len += 1; } // Otherwise we just set the sign bit ourselves else { abs |= if neg { 0x80 } else { 0 }; out[len] = abs as u8; len += 1; } len } /// Decodes an integer in script format without non-minimal error. /// /// The overflow error for slices over 4 bytes long is still there. /// See [`push_bytes::PushBytes::read_scriptint`] for a description of some subtleties of /// this function. pub fn read_scriptint_non_minimal(v: &[u8]) -> Result { if v.is_empty() { return Ok(0); } if v.len() > 4 { return Err(Error::NumericOverflow); } Ok(scriptint_parse(v)) } // Caller to guarantee that `v` is not empty. fn scriptint_parse(v: &[u8]) -> i64 { let (mut ret, sh) = v.iter().fold((0, 0), |(acc, sh), n| (acc + ((*n as i64) << sh), sh + 8)); if v[v.len() - 1] & 0x80 != 0 { ret &= (1 << (sh - 1)) - 1; ret = -ret; } ret } /// Decodes a boolean. /// /// This is like "`read_scriptint` then map 0 to false and everything /// else as true", except that the overflow rules don't apply. #[inline] pub fn read_scriptbool(v: &[u8]) -> bool { match v.split_last() { Some((last, rest)) => !((last & !0x80 == 0x00) && rest.iter().all(|&b| b == 0)), None => false, } } // We internally use implementation based on iterator so that it automatically advances as needed // Errors are same as above, just different type. fn read_uint_iter(data: &mut core::slice::Iter<'_, u8>, size: usize) -> Result { if data.len() < size { Err(UintError::EarlyEndOfScript) } else if size > usize::from(u16::MAX / 8) { // Casting to u32 would overflow Err(UintError::NumericOverflow) } else { let mut ret = 0; for (i, item) in data.take(size).enumerate() { ret = usize::from(*item) // Casting is safe because we checked above to not repeat the same check in a loop .checked_shl((i * 8) as u32) .ok_or(UintError::NumericOverflow)? .checked_add(ret) .ok_or(UintError::NumericOverflow)?; } Ok(ret) } } fn opcode_to_verify(opcode: Option) -> Option { opcode.and_then(|opcode| match opcode { OP_EQUAL => Some(OP_EQUALVERIFY), OP_NUMEQUAL => Some(OP_NUMEQUALVERIFY), OP_CHECKSIG => Some(OP_CHECKSIGVERIFY), OP_CHECKMULTISIG => Some(OP_CHECKMULTISIGVERIFY), _ => None, }) } // We keep all the `Script` and `ScriptBuf` impls together since its easier to see side-by-side. impl From for Box