rgbcore/verify.rs
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
// RGB Core Library: consensus layer for RGB smart contracts.
//
// SPDX-License-Identifier: Apache-2.0
//
// Designed in 2019-2025 by Dr Maxim Orlovsky <orlovsky@lnp-bp.org>
// Written in 2024-2025 by Dr Maxim Orlovsky <orlovsky@lnp-bp.org>
//
// Copyright (C) 2019-2024 LNP/BP Standards Association, Switzerland.
// Copyright (C) 2024-2025 LNP/BP Laboratories,
// Institute for Distributed and Cognitive Systems (InDCS), Switzerland.
// Copyright (C) 2025 RGB Consortium, Switzerland.
// Copyright (C) 2019-2025 Dr Maxim Orlovsky.
// All rights under the above copyrights are 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 alloc::collections::BTreeMap;
use std::collections::BTreeSet;
use amplify::confinement::SmallVec;
use amplify::ByteArray;
use bp::seals::mmb;
use single_use_seals::{PublishedWitness, SealError, SealWitness};
use ultrasonic::{CallError, CellAddr, Codex, ContractId, LibRepo, Memory, Operation, Opid};
use crate::{RgbSeal, LIB_NAME_RGB_CORE};
// TODO: Move to amplify crate
pub enum Step<A, B> {
Next(A),
Complete(B),
}
#[derive(Clone, PartialEq, Eq, Debug)]
#[derive(StrictType, StrictDumb, StrictEncode, StrictDecode)]
#[strict_type(lib = LIB_NAME_RGB_CORE)]
#[cfg_attr(
feature = "serde",
derive(Serialize, Deserialize),
serde(
rename_all = "camelCase",
bound = "Seal: serde::Serialize + for<'d> serde::Deserialize<'d>, Seal::PubWitness: serde::Serialize + \
for<'d> serde::Deserialize<'d>, Seal::CliWitness: serde::Serialize + for<'d> serde::Deserialize<'d>"
)
)]
pub struct OperationSeals<Seal: RgbSeal> {
pub operation: Operation,
/// Operation itself contains only AuthToken's, which are a commitments to the seals. Hence, we
/// have to separately include a full seal definitions next to the operation data.
pub defined_seals: SmallVec<Seal>,
}
pub trait ReadOperation: Sized {
type Seal: RgbSeal;
type WitnessReader: ReadWitness<Seal = Self::Seal, OpReader = Self>;
fn read_operation(self) -> Option<(OperationSeals<Self::Seal>, Self::WitnessReader)>;
}
pub trait ReadWitness: Sized {
type Seal: RgbSeal;
type OpReader: ReadOperation<Seal = Self::Seal, WitnessReader = Self>;
fn read_witness(self) -> Step<(SealWitness<Self::Seal>, Self), Self::OpReader>;
}
/// API exposed by the contract required for evaluating and verifying the contract state (see
/// [`ContractVerify`]).
///
/// NB: `apply_operation` is called only after `apply_witness`.
pub trait ContractApi<Seal: RgbSeal> {
fn contract_id(&self) -> ContractId;
fn codex(&self) -> &Codex;
fn repo(&self) -> &impl LibRepo;
fn memory(&self) -> &impl Memory;
fn apply_operation(&mut self, header: OperationSeals<Seal>);
fn apply_witness(&mut self, opid: Opid, witness: SealWitness<Seal>);
}
// We use dedicated trait here in order to prevent overriding of the implementation in client
// libraries
pub trait ContractVerify<Seal: RgbSeal>: ContractApi<Seal> {
// TODO: Support multi-thread mode for parallel processing of unrelated operations
fn evaluate<R: ReadOperation<Seal = Seal>>(&mut self, mut reader: R) -> Result<(), VerificationError<Seal>> {
let contract_id = self.contract_id();
let mut first = true;
let mut seals = BTreeMap::<CellAddr, Seal>::new();
while let Some((mut header, mut witness_reader)) = reader.read_operation() {
// Genesis can't commit to the contract id since the contract doesn't exist yet; thus, we have to
// apply this little trick
if first {
if header.operation.contract_id.to_byte_array() != self.codex().codex_id().to_byte_array() {
return Err(VerificationError::NoCodexCommitment);
}
header.operation.contract_id = contract_id;
}
// First, we verify the operation
self.codex()
.verify(contract_id, &header.operation, self.memory(), self.repo())?;
// Next we verify its single-use seals
let opid = header.operation.opid();
let mut closed_seals = alloc::vec![];
for input in &header.operation.destroying {
let Some(seal) = seals.remove(&input.addr) else {
return Err(VerificationError::SealUnknown(input.addr));
};
closed_seals.push(seal);
}
let iter = header
.defined_seals
.iter()
.enumerate()
.map(|(pos, seal)| (CellAddr::new(opid, pos as u16), seal.clone()));
// We need to check that all seal definitions strictly match operation-defined destructible cells
let defined = header
.operation
.destructible
.iter()
.map(|cell| cell.auth.to_byte_array())
.collect::<BTreeSet<_>>();
let sealed = iter
.clone()
.map(|(_, seal)| seal.auth_token().to_byte_array())
.collect::<BTreeSet<_>>();
if !sealed.is_subset(&defined) {
return Err(VerificationError::SealsDefinitionMismatch(opid));
}
// This convoluted logic happens since we use a state machine which ensures the client can't lie to
// the verifier
let mut witness_count = 0usize;
loop {
match witness_reader.read_witness() {
Step::Next((witness, w)) => {
witness
.verify_seals_closing(&closed_seals, mmb::Message::from_byte_array(opid.to_byte_array()))
.map_err(|e| VerificationError::SealsNotClosed(witness.published.pub_id(), opid, e))?;
self.apply_witness(opid, witness);
witness_reader = w;
}
Step::Complete(r) => {
reader = r;
break;
}
}
witness_count += 1;
}
if !closed_seals.is_empty() && witness_count == 0 {
return Err(VerificationError::NoWitness(opid));
}
seals.extend(iter);
if first {
first = false
} else {
self.apply_operation(header);
}
}
Ok(())
}
}
impl<Seal: RgbSeal, C: ContractApi<Seal>> ContractVerify<Seal> for C {}
// TODO: Find a way to do Debug and Clone implementation
#[derive(Debug, Display, From)]
#[display(doc_comments)]
pub enum VerificationError<Seal: RgbSeal> {
/// genesis does not commit to the codex id; a wrong contract genesis is used.
NoCodexCommitment,
/// no witness known for the operation {0}.
NoWitness(Opid),
/// single-use seals are not closed properly with witness {0} for operation {1}.
///
/// Details: {2}
SealsNotClosed(<Seal::PubWitness as PublishedWitness<Seal>>::PubId, Opid, SealError<Seal>),
/// unknown seal definition for cell address {0}.
SealUnknown(CellAddr),
/// seals, reported to be defined by the operation {0}, do match the assignments in the
/// operation.
SealsDefinitionMismatch(Opid),
#[from]
#[display(inner)]
Vm(CallError),
}