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
use std::ops; use ser::Serializable; use chain::IndexedTransaction; use network::{ConsensusParams, ConsensusFork}; use deployments::BlockDeployments; use duplex_store::NoopStore; use sigops::transaction_sigops; use error::TransactionError; use constants::{MIN_COINBASE_SIZE, MAX_COINBASE_SIZE}; pub struct TransactionVerifier<'a> { pub empty: TransactionEmpty<'a>, pub null_non_coinbase: TransactionNullNonCoinbase<'a>, pub oversized_coinbase: TransactionOversizedCoinbase<'a>, } impl<'a> TransactionVerifier<'a> { pub fn new(transaction: &'a IndexedTransaction) -> Self { trace!(target: "verification", "Tx pre-verification {}", transaction.hash.to_reversed_str()); TransactionVerifier { empty: TransactionEmpty::new(transaction), null_non_coinbase: TransactionNullNonCoinbase::new(transaction), oversized_coinbase: TransactionOversizedCoinbase::new(transaction, MIN_COINBASE_SIZE..MAX_COINBASE_SIZE), } } pub fn check(&self) -> Result<(), TransactionError> { try!(self.empty.check()); try!(self.null_non_coinbase.check()); try!(self.oversized_coinbase.check()); Ok(()) } } pub struct MemoryPoolTransactionVerifier<'a> { pub empty: TransactionEmpty<'a>, pub null_non_coinbase: TransactionNullNonCoinbase<'a>, pub is_coinbase: TransactionMemoryPoolCoinbase<'a>, pub size: TransactionSize<'a>, pub premature_witness: TransactionPrematureWitness<'a>, pub sigops: TransactionSigops<'a>, } impl<'a> MemoryPoolTransactionVerifier<'a> { pub fn new(transaction: &'a IndexedTransaction, consensus: &'a ConsensusParams, deployments: &'a BlockDeployments<'a>) -> Self { trace!(target: "verification", "Mempool-Tx pre-verification {}", transaction.hash.to_reversed_str()); MemoryPoolTransactionVerifier { empty: TransactionEmpty::new(transaction), null_non_coinbase: TransactionNullNonCoinbase::new(transaction), is_coinbase: TransactionMemoryPoolCoinbase::new(transaction), size: TransactionSize::new(transaction, consensus), premature_witness: TransactionPrematureWitness::new(transaction, &deployments), sigops: TransactionSigops::new(transaction, ConsensusFork::absolute_maximum_block_sigops()), } } pub fn check(&self) -> Result<(), TransactionError> { try!(self.empty.check()); try!(self.null_non_coinbase.check()); try!(self.is_coinbase.check()); try!(self.size.check()); try!(self.premature_witness.check()); try!(self.sigops.check()); Ok(()) } } pub struct TransactionEmpty<'a> { transaction: &'a IndexedTransaction, } impl<'a> TransactionEmpty<'a> { fn new(transaction: &'a IndexedTransaction) -> Self { TransactionEmpty { transaction: transaction, } } fn check(&self) -> Result<(), TransactionError> { if self.transaction.raw.is_empty() { Err(TransactionError::Empty) } else { Ok(()) } } } pub struct TransactionNullNonCoinbase<'a> { transaction: &'a IndexedTransaction, } impl<'a> TransactionNullNonCoinbase<'a> { fn new(transaction: &'a IndexedTransaction) -> Self { TransactionNullNonCoinbase { transaction: transaction, } } fn check(&self) -> Result<(), TransactionError> { if !self.transaction.raw.is_coinbase() && self.transaction.raw.is_null() { Err(TransactionError::NullNonCoinbase) } else { Ok(()) } } } pub struct TransactionOversizedCoinbase<'a> { transaction: &'a IndexedTransaction, size_range: ops::Range<usize>, } impl<'a> TransactionOversizedCoinbase<'a> { fn new(transaction: &'a IndexedTransaction, size_range: ops::Range<usize>) -> Self { TransactionOversizedCoinbase { transaction: transaction, size_range: size_range, } } fn check(&self) -> Result<(), TransactionError> { if self.transaction.raw.is_coinbase() { let script_len = self.transaction.raw.inputs[0].script_sig.len(); if script_len < self.size_range.start || script_len > self.size_range.end { return Err(TransactionError::CoinbaseSignatureLength(script_len)); } } Ok(()) } } pub struct TransactionMemoryPoolCoinbase<'a> { transaction: &'a IndexedTransaction, } impl<'a> TransactionMemoryPoolCoinbase<'a> { fn new(transaction: &'a IndexedTransaction) -> Self { TransactionMemoryPoolCoinbase { transaction: transaction, } } fn check(&self) -> Result<(), TransactionError> { if self.transaction.raw.is_coinbase() { Err(TransactionError::MemoryPoolCoinbase) } else { Ok(()) } } } pub struct TransactionSize<'a> { transaction: &'a IndexedTransaction, consensus: &'a ConsensusParams, } impl<'a> TransactionSize<'a> { fn new(transaction: &'a IndexedTransaction, consensus: &'a ConsensusParams) -> Self { TransactionSize { transaction: transaction, consensus: consensus, } } fn check(&self) -> Result<(), TransactionError> { let size = self.transaction.raw.serialized_size(); if size > self.consensus.fork.max_transaction_size() { Err(TransactionError::MaxSize) } else { Ok(()) } } } pub struct TransactionSigops<'a> { transaction: &'a IndexedTransaction, max_sigops: usize, } impl<'a> TransactionSigops<'a> { fn new(transaction: &'a IndexedTransaction, max_sigops: usize) -> Self { TransactionSigops { transaction: transaction, max_sigops: max_sigops, } } fn check(&self) -> Result<(), TransactionError> { let sigops = transaction_sigops(&self.transaction.raw, &NoopStore, false, false); if sigops > self.max_sigops { Err(TransactionError::MaxSigops) } else { Ok(()) } } } pub struct TransactionPrematureWitness<'a> { transaction: &'a IndexedTransaction, segwit_active: bool, } impl<'a> TransactionPrematureWitness<'a> { pub fn new(transaction: &'a IndexedTransaction, deployments: &'a BlockDeployments<'a>) -> Self { let segwit_active = deployments.segwit(); TransactionPrematureWitness { transaction: transaction, segwit_active: segwit_active, } } pub fn check(&self) -> Result<(), TransactionError> { if !self.segwit_active && self.transaction.raw.has_witness() { Err(TransactionError::PrematureWitness) } else { Ok(()) } } }