1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
// Bitcoin protocol primitives library.
//
// SPDX-License-Identifier: Apache-2.0
//
// Written in 2019-2023 by
// Dr Maxim Orlovsky <orlovsky@lnp-bp.org>
//
// Copyright (C) 2019-2023 LNP/BP Standards Association. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
use crate::opcodes::*;
use crate::{OpCode, ScriptBytes, ScriptPubkey};
#[derive(Copy, Clone, Eq, PartialEq, Hash, Debug, Display, Error)]
#[display(doc_comments)]
pub enum SegwitError {
/// Script version must be 0 to 16 inclusive.
InvalidWitnessVersion(u8),
/// Bitcoin script opcode does not match any known witness version, the
/// script is malformed.
MalformedWitnessVersion,
/// The witness program must be between 2 and 40 bytes in length.
InvalidWitnessProgramLength(usize),
/// A v0 witness program must be either of length 20 or 32.
InvalidSegwitV0ProgramLength(usize),
/// An uncompressed pubkey was used where it is not allowed.
UncompressedPubkey,
}
/// Version of the witness program.
///
/// First byte of `scriptPubkey` in transaction output for transactions starting
/// with 0 and 0x51-0x60 (inclusive).
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug, Display)]
#[repr(u8)]
pub enum WitnessVer {
/// Initial version of witness program. Used for P2WPKH and P2WPK outputs
#[display("segwit0")]
V0 = OP_PUSHBYTES_0,
/// Version of witness program used for Taproot P2TR outputs.
#[display("segwit1")]
V1 = OP_PUSHNUM_1,
/// Future (unsupported) version of witness program.
#[display("segwit2")]
V2 = OP_PUSHNUM_2,
/// Future (unsupported) version of witness program.
#[display("segwit3")]
V3 = OP_PUSHNUM_3,
/// Future (unsupported) version of witness program.
#[display("segwit4")]
V4 = OP_PUSHNUM_4,
/// Future (unsupported) version of witness program.
#[display("segwit5")]
V5 = OP_PUSHNUM_5,
/// Future (unsupported) version of witness program.
#[display("segwit6")]
V6 = OP_PUSHNUM_6,
/// Future (unsupported) version of witness program.
#[display("segwit7")]
V7 = OP_PUSHNUM_7,
/// Future (unsupported) version of witness program.
#[display("segwit8")]
V8 = OP_PUSHNUM_8,
/// Future (unsupported) version of witness program.
#[display("segwit9")]
V9 = OP_PUSHNUM_9,
/// Future (unsupported) version of witness program.
#[display("segwit10")]
V10 = OP_PUSHNUM_10,
/// Future (unsupported) version of witness program.
#[display("segwit11")]
V11 = OP_PUSHNUM_11,
/// Future (unsupported) version of witness program.
#[display("segwit12")]
V12 = OP_PUSHNUM_12,
/// Future (unsupported) version of witness program.
#[display("segwit13")]
V13 = OP_PUSHNUM_13,
/// Future (unsupported) version of witness program.
#[display("segwit14")]
V14 = OP_PUSHNUM_14,
/// Future (unsupported) version of witness program.
#[display("segwit15")]
V15 = OP_PUSHNUM_15,
/// Future (unsupported) version of witness program.
#[display("segwit16")]
V16 = OP_PUSHNUM_16,
}
impl WitnessVer {
/// Converts bitcoin script opcode into [`WitnessVer`] variant.
///
/// # Errors
/// If the opcode does not correspond to any witness version, errors with
/// [`SegwitError::MalformedWitnessVersion`].
pub fn from_op_code(op_code: OpCode) -> Result<Self, SegwitError> {
match op_code as u8 {
0 => Ok(WitnessVer::V0),
OP_PUSHNUM_1 => Ok(WitnessVer::V1),
OP_PUSHNUM_2 => Ok(WitnessVer::V2),
OP_PUSHNUM_3 => Ok(WitnessVer::V3),
OP_PUSHNUM_4 => Ok(WitnessVer::V4),
OP_PUSHNUM_5 => Ok(WitnessVer::V5),
OP_PUSHNUM_6 => Ok(WitnessVer::V6),
OP_PUSHNUM_7 => Ok(WitnessVer::V7),
OP_PUSHNUM_8 => Ok(WitnessVer::V8),
OP_PUSHNUM_9 => Ok(WitnessVer::V9),
OP_PUSHNUM_10 => Ok(WitnessVer::V10),
OP_PUSHNUM_11 => Ok(WitnessVer::V11),
OP_PUSHNUM_12 => Ok(WitnessVer::V12),
OP_PUSHNUM_13 => Ok(WitnessVer::V13),
OP_PUSHNUM_14 => Ok(WitnessVer::V14),
OP_PUSHNUM_15 => Ok(WitnessVer::V15),
OP_PUSHNUM_16 => Ok(WitnessVer::V16),
_ => Err(SegwitError::MalformedWitnessVersion),
}
}
/// Converts witness version ordinal number into [`WitnessVer`] variant.
///
/// # Errors
/// If the witness version number exceeds 16, errors with
/// [`SegwitError::MalformedWitnessVersion`].
pub fn from_version_no(no: u8) -> Result<Self, SegwitError> {
let op = OpCode::try_from(no).map_err(|_| SegwitError::MalformedWitnessVersion)?;
Self::from_op_code(op)
}
/// Converts [`WitnessVer`] instance into corresponding Bitcoin op-code.
// TODO: Replace `try_from` with `from` since opcodes cover whole range of
// u8
pub fn op_code(self) -> OpCode {
OpCode::try_from(self as u8).expect("full range of u8 is covered")
}
/// Converts [`WitnessVer`] into ordinal version number.
pub fn version_no(self) -> u8 {
match self {
WitnessVer::V0 => 0,
WitnessVer::V1 => 1,
WitnessVer::V2 => 2,
WitnessVer::V3 => 3,
WitnessVer::V4 => 4,
WitnessVer::V5 => 5,
WitnessVer::V6 => 6,
WitnessVer::V7 => 7,
WitnessVer::V8 => 8,
WitnessVer::V9 => 9,
WitnessVer::V10 => 10,
WitnessVer::V11 => 11,
WitnessVer::V12 => 12,
WitnessVer::V13 => 13,
WitnessVer::V14 => 14,
WitnessVer::V15 => 15,
WitnessVer::V16 => 16,
}
}
}
/// Witness program as defined in BIP141.
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct WitnessProgram {
/// The witness program version.
version: WitnessVer,
/// The witness program. (Between 2 and 40 bytes)
program: Vec<u8>,
}
impl WitnessProgram {
/// Creates a new witness program.
pub fn new(version: WitnessVer, program: Vec<u8>) -> Result<Self, SegwitError> {
if program.len() < 2 || program.len() > 40 {
return Err(SegwitError::InvalidWitnessProgramLength(program.len()));
}
// Specific segwit v0 check. These addresses can never spend funds sent
// to them.
if version == WitnessVer::V0 && (program.len() != 20 && program.len() != 32) {
return Err(SegwitError::InvalidSegwitV0ProgramLength(program.len()));
}
Ok(WitnessProgram { version, program })
}
/// Returns the witness program version.
pub fn version(&self) -> WitnessVer { self.version }
/// Returns the witness program.
pub fn program(&self) -> &[u8] { &self.program }
}
impl ScriptPubkey {
pub fn p2wpkh(hash: impl Into<[u8; 20]>) -> Self {
Self::with_witness_program_unchecked(WitnessVer::V0, &hash.into())
}
pub fn p2wsh(hash: impl Into<[u8; 32]>) -> Self {
Self::with_witness_program_unchecked(WitnessVer::V0, &hash.into())
}
pub fn is_p2wpkh(&self) -> bool {
self.len() == 22 && self[0] == WitnessVer::V0.op_code() as u8 && self[1] == OP_PUSHBYTES_20
}
pub fn is_p2wsh(&self) -> bool {
self.len() == 34 && self[0] == WitnessVer::V0.op_code() as u8 && self[1] == OP_PUSHBYTES_32
}
/// Generates P2WSH-type of scriptPubkey with a given [`WitnessProgram`].
pub fn from_witness_program(witness_program: &WitnessProgram) -> Self {
Self::with_witness_program_unchecked(witness_program.version, witness_program.program())
}
/// Generates P2WSH-type of scriptPubkey with a given [`WitnessVer`] and
/// the program bytes. Does not do any checks on version or program length.
pub(crate) fn with_witness_program_unchecked(ver: WitnessVer, prog: &[u8]) -> Self {
let mut script = Self::with_capacity(ScriptBytes::len_for_slice(prog.len()) + 2);
script.push_opcode(ver.op_code());
script.push_slice(prog);
script
}
/// Checks whether a script pubkey is a Segregated Witness (segwit) program.
#[inline]
pub fn is_witness_program(&self) -> bool {
// A scriptPubKey (or redeemScript as defined in BIP16/P2SH) that consists of a
// 1-byte push opcode (for 0 to 16) followed by a data push between 2
// and 40 bytes gets a new special meaning. The value of the first push
// is called the "version byte". The following byte vector pushed is
// called the "witness program".
let script_len = self.len();
if !(4..=42).contains(&script_len) {
return false;
}
// Version 0 or PUSHNUM_1-PUSHNUM_16
let Ok(ver_opcode) = OpCode::try_from(self[0]) else {
return false;
};
let push_opbyte = self[1]; // Second byte push opcode 2-40 bytes
WitnessVer::from_op_code(ver_opcode).is_ok()
&& push_opbyte >= OP_PUSHBYTES_2
&& push_opbyte <= OP_PUSHBYTES_40
// Check that the rest of the script has the correct size
&& script_len - 2 == push_opbyte as usize
}
}