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 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
// Copyright (C) 2019-2023 Aleo Systems Inc.
// This file is part of the snarkVM library.
// 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 super::*;
use std::collections::HashMap;
impl<N: Network, C: ConsensusStorage<N>> Ledger<N, C> {
/// Checks the given transaction is well-formed and unique.
pub fn check_transaction_basic(&self, transaction: &Transaction<N>, rejected_id: Option<Field<N>>) -> Result<()> {
let transaction_id = transaction.id();
// Ensure the ledger does not already contain the given transaction ID.
if self.contains_transaction_id(&transaction_id)? {
bail!("Transaction '{transaction_id}' already exists in the ledger")
}
// Ensure the ledger does not already contain the given transition ID.
for transition_id in transaction.transition_ids() {
if self.contains_transition_id(transition_id)? {
bail!("Transition ID '{transition_id}' already exists in the ledger")
}
}
// Ensure the mint transaction is attributed to a validator in the committee.
if transaction.is_mint() {
// Retrieve the execution.
let Some(execution) = transaction.execution() else {
bail!("Invalid mint transaction: expected an execution");
};
// Loop over the mint transitions and ensure the address is authorized.
for transition in execution.transitions().filter(|t| t.is_mint()) {
// Retrieve the address that minted.
let address = mint_address(transition)?;
// Check if the address is in the current committee.
if !self.current_committee.read().contains(address) {
bail!("Mint transaction ({transaction_id}) is from an unauthorized account ({address})")
}
}
}
/* Fee */
// TODO (raychu86): Remove the split check when batch executions are integrated.
let can_skip_fee = match transaction.execution() {
Some(execution) => (transaction.is_mint() || transaction.is_split()) && execution.len() == 1,
None => false,
};
if !can_skip_fee {
// Retrieve the transaction fee.
let fee = *transaction.fee()?;
// Retrieve the minimum cost of the transaction.
let (cost, _) = match transaction {
Transaction::Deploy(_, _, deployment, _) => deployment_cost(deployment)?,
Transaction::Execute(_, execution, _) => {
// Prepare the program lookup.
let lookup = execution
.transitions()
.map(|transition| Ok((*transition.program_id(), self.get_program(*transition.program_id())?)))
.collect::<Result<HashMap<_, _>>>()?;
// Compute the execution cost.
execution_cost(execution, lookup)?
}
// TODO (howardwu): Plug in the Rejected struct, to compute the cost.
Transaction::Fee(_, _) => (0, (0, 0)),
};
// Ensure the transaction has a sufficient fee.
if cost > fee {
bail!("Transaction '{transaction_id}' has an insufficient fee - expected at least {cost} microcredits")
}
}
/* Proof */
// Ensure the transaction is valid.
self.vm().check_transaction(transaction, rejected_id)?;
/* Program */
// If the transaction is a deployment, then perform deployment checks.
if let Transaction::Deploy(_, _, deployment, _) = &transaction {
// Ensure the edition is correct.
if deployment.edition() != N::EDITION {
bail!("Invalid program deployment: expected edition {}", N::EDITION)
}
// Ensure the program ID is not already in the ledger.
if self.contains_program_id(deployment.program_id())? {
bail!("Program ID '{}' already exists in the ledger", deployment.program_id())
}
}
/* Input */
// Ensure the ledger does not already contain the given input ID.
for input_id in transaction.input_ids() {
if self.contains_input_id(input_id)? {
bail!("Input ID '{input_id}' already exists in the ledger")
}
}
// Ensure the ledger does not already contain a given serial numbers.
for serial_number in transaction.serial_numbers() {
if self.contains_serial_number(serial_number)? {
bail!("Serial number '{serial_number}' already exists in the ledger")
}
}
// Ensure the ledger does not already contain a given tag.
for tag in transaction.tags() {
if self.contains_tag(tag)? {
bail!("Tag '{tag}' already exists in the ledger")
}
}
/* Output */
// Ensure the ledger does not already contain the given output ID.
for output_id in transaction.output_ids() {
if self.contains_output_id(output_id)? {
bail!("Output ID '{output_id}' already exists in the ledger")
}
}
// Ensure the ledger does not already contain a given commitments.
for commitment in transaction.commitments() {
if self.contains_commitment(commitment)? {
bail!("Commitment '{commitment}' already exists in the ledger")
}
}
// Ensure the ledger does not already contain a given nonces.
for nonce in transaction.nonces() {
if self.contains_nonce(nonce)? {
bail!("Nonce '{nonce}' already exists in the ledger")
}
}
/* Metadata */
// Ensure the ledger does not already contain a given transition public keys.
for tpk in transaction.transition_public_keys() {
if self.contains_tpk(tpk)? {
bail!("Transition public key '{tpk}' already exists in the ledger")
}
}
// Ensure the ledger does not already contain a given transition commitment.
for tcm in transaction.transition_commitments() {
if self.contains_tcm(tcm)? {
bail!("Transition commitment '{tcm}' already exists in the ledger")
}
}
Ok(())
}
/// Checks the given block is valid next block.
pub fn check_next_block(&self, block: &Block<N>) -> Result<()> {
// Ensure the previous block hash is correct.
if self.latest_hash() != block.previous_hash() {
bail!("The next block has an incorrect previous block hash")
}
// Ensure the block hash does not already exist.
if self.contains_block_hash(&block.hash())? {
bail!("Block hash '{}' already exists in the ledger", block.hash())
}
// Ensure the next block height is correct.
if self.latest_height() > 0 && self.latest_height() + 1 != block.height() {
bail!("The next block has an incorrect block height")
}
// Ensure the block height does not already exist.
if self.contains_block_height(block.height())? {
bail!("Block height '{}' already exists in the ledger", block.height())
}
// TODO (raychu86): Ensure the next round number includes timeouts.
// Ensure the next round is correct.
if self.latest_round() > 0 && self.latest_round() + 1 /*+ block.number_of_timeouts()*/ != block.round() {
bail!("The next block has an incorrect round number")
}
// TODO (raychu86): Ensure the next block timestamp is the median of proposed blocks.
// Ensure the next block timestamp is after the current block timestamp.
if block.height() > 0 {
let next_timestamp = block.header().timestamp();
let latest_timestamp = self.latest_block().header().timestamp();
if next_timestamp <= latest_timestamp {
bail!("The next block timestamp {next_timestamp} is before the current timestamp {latest_timestamp}")
}
}
// Ensure there are no duplicate transition IDs.
if has_duplicates(block.transition_ids()) {
bail!("Found duplicate transition in the block");
}
/* Input */
// Ensure there are no duplicate input IDs.
if has_duplicates(block.input_ids()) {
bail!("Found duplicate input IDs in the block");
}
// Ensure there are no duplicate serial numbers.
if has_duplicates(block.serial_numbers()) {
bail!("Found duplicate serial numbers in the block");
}
// Ensure there are no duplicate tags.
if has_duplicates(block.tags()) {
bail!("Found duplicate tags in the block");
}
/* Output */
// Ensure there are no duplicate output IDs.
if has_duplicates(block.output_ids()) {
bail!("Found duplicate output IDs in the block");
}
// Ensure there are no duplicate commitments.
if has_duplicates(block.commitments()) {
bail!("Found duplicate commitments in the block");
}
// Ensure there are no duplicate nonces.
if has_duplicates(block.nonces()) {
bail!("Found duplicate nonces in the block");
}
/* Metadata */
// Ensure there are no duplicate transition public keys.
if has_duplicates(block.transition_public_keys()) {
bail!("Found duplicate transition public keys in the block");
}
// Ensure there are no duplicate transition commitments.
if has_duplicates(block.transition_commitments()) {
bail!("Found duplicate transition commitments in the block");
}
/* Block Header */
// If the block is the genesis block, check that it is valid.
if block.height() == 0 && !block.is_genesis() {
bail!("Invalid genesis block");
}
// Ensure the block header is valid.
if !block.header().is_valid() {
bail!("Invalid block header: {:?}", block.header());
}
// Retrieve the latest total supply.
let latest_total_supply = self.latest_total_supply_in_microcredits();
// Compute the next total supply in microcredits.
let next_total_supply_in_microcredits = update_total_supply(latest_total_supply, block.transactions())?;
// Ensure the total supply in microcredits is correct.
if next_total_supply_in_microcredits != block.total_supply_in_microcredits() {
bail!("Invalid total supply in microcredits")
}
// Check the last coinbase members in the block.
if block.height() > 0 {
match block.coinbase() {
Some(coinbase) => {
// Ensure the last coinbase target matches the coinbase target.
if block.last_coinbase_target() != block.coinbase_target() {
bail!("The last coinbase target does not match the coinbase target")
}
// Ensure the last coinbase timestamp matches the block timestamp.
if block.last_coinbase_timestamp() != block.timestamp() {
bail!("The last coinbase timestamp does not match the block timestamp")
}
// Compute the cumulative proof target.
let cumulative_proof_target = coinbase.to_cumulative_proof_target()?;
// Ensure that the cumulative weight includes the next block's cumulative proof target.
if block.cumulative_weight()
!= self.latest_cumulative_weight().saturating_add(cumulative_proof_target)
{
bail!("The cumulative weight does not include the block cumulative proof target")
}
// Ensure that the block cumulative proof target matches the coinbase cumulative proof target.
if block.cumulative_proof_target() != cumulative_proof_target {
bail!("The blocks cumulative proof target does not match the coinbase cumulative proof target")
}
}
None => {
// Ensure the last coinbase target matches the previous block coinbase target.
if block.last_coinbase_target() != self.last_coinbase_target() {
bail!("The last coinbase target does not match the previous block coinbase target")
}
// Ensure the last coinbase timestamp matches the previous block's last coinbase timestamp.
if block.last_coinbase_timestamp() != self.last_coinbase_timestamp() {
bail!("The last coinbase timestamp does not match the previous block's last coinbase timestamp")
}
// Ensure that the cumulative weight is the same as the previous block.
if block.cumulative_weight() != self.latest_cumulative_weight() {
bail!("The cumulative weight does not match the previous block's cumulative weight")
}
// Ensure that the block cumulative proof target is zero.
if block.cumulative_proof_target() != 0 {
bail!("The cumulative proof target is not zero")
}
}
}
}
// Construct the next coinbase target.
let expected_coinbase_target = coinbase_target(
self.last_coinbase_target(),
self.last_coinbase_timestamp(),
block.timestamp(),
N::ANCHOR_TIME,
N::NUM_BLOCKS_PER_EPOCH,
N::GENESIS_COINBASE_TARGET,
)?;
if block.coinbase_target() != expected_coinbase_target {
bail!("Invalid coinbase target: expected {}, got {}", expected_coinbase_target, block.coinbase_target())
}
// Ensure the proof target is correct.
let expected_proof_target = proof_target(expected_coinbase_target, N::GENESIS_PROOF_TARGET);
if block.proof_target() != expected_proof_target {
bail!("Invalid proof target: expected {}, got {}", expected_proof_target, block.proof_target())
}
/* Block Hash */
// Compute the Merkle root of the block header.
let header_root = match block.header().to_root() {
Ok(root) => root,
Err(error) => bail!("Failed to compute the Merkle root of the block header: {error}"),
};
// Check the block hash.
match N::hash_bhp1024(&[block.previous_hash().to_bits_le(), header_root.to_bits_le()].concat()) {
Ok(candidate_hash) => {
// Ensure the block hash matches the one in the block.
if candidate_hash != *block.hash() {
bail!("Block {} ({}) has an incorrect block hash.", block.height(), block.hash());
}
}
Err(error) => {
bail!("Unable to compute block hash for block {} ({}): {error}", block.height(), block.hash())
}
};
/* Signature */
// Ensure the block is signed by a validator in the committee
let signer = block.signature().to_address();
if !self.current_committee.read().contains(&signer) {
bail!("Block {} ({}) is signed by an unauthorized account ({signer})", block.height(), block.hash());
}
// Check the signature.
if !block.signature().verify(&signer, &[*block.hash()]) {
bail!("Invalid signature for block {} ({})", block.height(), block.hash());
}
/* Transactions */
// Compute the transactions root.
match block.transactions().to_transactions_root() {
// Ensure the transactions root matches the one in the block header.
Ok(root) => {
if root != block.header().transactions_root() {
bail!(
"Block {} ({}) has an incorrect transactions root: expected {}",
block.height(),
block.hash(),
block.header().transactions_root()
);
}
}
Err(error) => bail!("Failed to compute the Merkle root of the block transactions: {error}"),
};
// Ensure the transactions list is not empty.
if block.transactions().is_empty() {
bail!("Cannot validate an empty transactions list");
}
// Ensure the number of transactions is within the allowed range.
if block.transactions().len() > Transactions::<N>::MAX_TRANSACTIONS {
bail!("Cannot validate a block with more than {} transactions", Transactions::<N>::MAX_TRANSACTIONS);
}
// Ensure each transaction is well-formed and unique.
cfg_iter!(block.transactions()).try_for_each(|transaction| {
// Construct the rejected ID.
let rejected_id = match transaction {
ConfirmedTransaction::AcceptedDeploy(..) | ConfirmedTransaction::AcceptedExecute(..) => None,
ConfirmedTransaction::RejectedDeploy(_, _, deployment) => Some(deployment.to_deployment_id()?),
ConfirmedTransaction::RejectedExecute(_, _, execution) => Some(execution.to_execution_id()?),
};
self.check_transaction_basic(transaction, rejected_id)
.map_err(|e| anyhow!("Invalid transaction found in the transactions list: {e}"))
})?;
// Construct the finalize state.
let state = FinalizeGlobalState::new::<N>(
block.round(),
block.height(),
block.cumulative_weight(),
block.cumulative_proof_target(),
block.previous_hash(),
)?;
// Ensure the transactions after speculation match.
if block.transactions() != &self.vm.speculate(state, block.transactions().iter().map(|tx| tx.deref()))? {
bail!("The transactions after speculation do not match the transactions in the block");
}
/* Finalize Root */
// Ensure that the block's finalize root matches the transactions.
let expected_finalize_root = block.transactions().to_finalize_root()?;
if block.finalize_root() != expected_finalize_root {
bail!("Invalid finalize root: expected '{expected_finalize_root}', got '{}'", block.finalize_root())
}
/* Ratifications Root */
// Compute the ratifications root of the block.
let ratifications_root = *N::merkle_tree_bhp::<RATIFICATIONS_DEPTH>(
&block
.ratifications()
.iter()
.map(|r| Ok::<_, Error>(r.to_bytes_le()?.to_bits_le()))
.collect::<Result<Vec<_>, _>>()?,
)?
.root();
// Ensure that the block's ratifications root matches the declared ratifications.
if block.ratifications_root() != ratifications_root {
bail!("Invalid ratifications root: expected '{ratifications_root}', got '{}'", block.ratifications_root())
}
/* Coinbase Proof */
// Ensure the coinbase solution is valid, if it exists.
if let Some(coinbase) = block.coinbase() {
// Ensure coinbase solutions are not accepted after the anchor block height at year 10.
if block.height() > anchor_block_height(N::ANCHOR_TIME, 10) {
bail!("Coinbase proofs are no longer accepted after the anchor block height at year 10.");
}
// Ensure the coinbase accumulator point matches in the block header.
if block.header().coinbase_accumulator_point() != coinbase.to_accumulator_point()? {
bail!("Coinbase accumulator point does not match the coinbase solution.");
}
// Ensure the number of prover solutions is within the allowed range.
if coinbase.len() > N::MAX_PROVER_SOLUTIONS {
bail!("Cannot validate a coinbase proof with more than {} prover solutions", N::MAX_PROVER_SOLUTIONS);
}
// Ensure the puzzle commitments are new.
for puzzle_commitment in coinbase.puzzle_commitments() {
if self.contains_puzzle_commitment(&puzzle_commitment)? {
bail!("Puzzle commitment {puzzle_commitment} already exists in the ledger");
}
}
// Ensure the coinbase solution is valid.
if !self.coinbase_puzzle.verify(
coinbase,
&self.latest_epoch_challenge()?,
self.latest_coinbase_target(),
self.latest_proof_target(),
)? {
bail!("Invalid coinbase solution: {:?}", coinbase);
}
} else {
// Ensure that the block header does not contain a coinbase accumulator point.
if block.header().coinbase_accumulator_point() != Field::<N>::zero() {
bail!("Coinbase accumulator point should be zero as there is no coinbase solution in the block.");
}
}
Ok(())
}
}