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
use super::{ExecutionError, Felt, ProcessState};
use crate::MemAdviceProvider;
use vm_core::{crypto::merkle::MerklePath, AdviceInjector, DebugOptions, Word};
pub(super) mod advice;
use advice::{AdviceExtractor, AdviceProvider};
mod debug;
// HOST TRAIT
// ================================================================================================
/// Defines an interface by which the VM can make requests to the host.
///
/// There are three variants of requests, these can get advice, set advice and invoke the
/// debug handler. The requests are specified by the [AdviceExtractor], [AdviceInjector] and
/// [DebugOptions] enums which target the `get_advice`, `set_advice` and `on_debug` methods
/// respectively. The host is responsible for handling the requests and returning the results to
/// the VM in the form of [HostResponse]. The host is provided with a reference to the current
/// state of the VM ([ProcessState]), which it can use to extract the data required to fulfill the
/// request.
pub trait Host {
// REQUIRED METHODS
// --------------------------------------------------------------------------------------------
/// Returns the requested advice, specified by [AdviceExtractor], from the host to the VM.
fn get_advice<S: ProcessState>(
&mut self,
process: &S,
extractor: AdviceExtractor,
) -> Result<HostResponse, ExecutionError>;
/// Sets the requested advice, specified by [AdviceInjector], on the host.
fn set_advice<S: ProcessState>(
&mut self,
process: &S,
injector: AdviceInjector,
) -> Result<HostResponse, ExecutionError>;
/// Creates a "by reference" host for this instance.
///
/// The returned adapter also implements [Host] and will simply mutably borrow this
/// instance.
fn by_ref(&mut self) -> &mut Self {
// this trait follows the same model as
// [io::Read](https://doc.rust-lang.org/std/io/trait.Read.html#method.by_ref).
//
// this approach allows the flexibility to take a host either as owned or by mutable
// reference - both equally compatible with the trait requirements as we implement
// `Host` for mutable references of any type that also implements `Host`.
self
}
// PROVIDED METHODS
// --------------------------------------------------------------------------------------------
/// Handles the debug request from the VM.
fn on_debug<S: ProcessState>(
&mut self,
process: &S,
options: &DebugOptions,
) -> Result<HostResponse, ExecutionError> {
debug::print_debug_info(process, options);
Ok(HostResponse::None)
}
/// Pops an element from the advice stack and returns it.
///
/// # Errors
/// Returns an error if the advice stack is empty.
fn pop_adv_stack<S: ProcessState>(&mut self, process: &S) -> Result<Felt, ExecutionError> {
let response = self.get_advice(process, AdviceExtractor::PopStack)?;
Ok(response.into())
}
/// Pops a word (4 elements) from the advice stack and returns it.
///
/// Note: a word is popped off the stack element-by-element. For example, a `[d, c, b, a, ...]`
/// stack (i.e., `d` is at the top of the stack) will yield `[d, c, b, a]`.
///
/// # Errors
/// Returns an error if the advice stack does not contain a full word.
fn pop_adv_stack_word<S: ProcessState>(&mut self, process: &S) -> Result<Word, ExecutionError> {
let response = self.get_advice(process, AdviceExtractor::PopStackWord)?;
Ok(response.into())
}
/// Pops a double word (8 elements) from the advice stack and returns them.
///
/// Note: words are popped off the stack element-by-element. For example, a
/// `[h, g, f, e, d, c, b, a, ...]` stack (i.e., `h` is at the top of the stack) will yield
/// two words: `[h, g, f,e ], [d, c, b, a]`.
///
/// # Errors
/// Returns an error if the advice stack does not contain two words.
fn pop_adv_stack_dword<S: ProcessState>(
&mut self,
process: &S,
) -> Result<[Word; 2], ExecutionError> {
let response = self.get_advice(process, AdviceExtractor::PopStackDWord)?;
Ok(response.into())
}
/// Returns a path to a node at the specified depth and index in a Merkle tree with the
/// specified root.
///
/// # Errors
/// Returns an error if:
/// - A Merkle tree for the specified root cannot be found in this advice provider.
/// - The specified depth is either zero or greater than the depth of the Merkle tree
/// identified by the specified root.
/// - Path to the node at the specified depth and index is not known to this advice provider.
fn get_adv_merkle_path<S: ProcessState>(
&mut self,
process: &S,
) -> Result<MerklePath, ExecutionError> {
let response = self.get_advice(process, AdviceExtractor::GetMerklePath)?;
Ok(response.into())
}
}
impl<'a, H> Host for &'a mut H
where
H: Host,
{
fn get_advice<S: ProcessState>(
&mut self,
process: &S,
extractor: AdviceExtractor,
) -> Result<HostResponse, ExecutionError> {
H::get_advice(self, process, extractor)
}
fn set_advice<S: ProcessState>(
&mut self,
process: &S,
injector: AdviceInjector,
) -> Result<HostResponse, ExecutionError> {
H::set_advice(self, process, injector)
}
}
// HOST RESPONSE
// ================================================================================================
/// Response returned by the host upon successful execution of a [HostFunction].
#[derive(Debug)]
pub enum HostResponse {
MerklePath(MerklePath),
DoubleWord([Word; 2]),
Word(Word),
Element(Felt),
None,
}
impl From<HostResponse> for MerklePath {
fn from(response: HostResponse) -> Self {
match response {
HostResponse::MerklePath(path) => path,
_ => panic!("expected MerklePath, but got {:?}", response),
}
}
}
impl From<HostResponse> for Word {
fn from(response: HostResponse) -> Self {
match response {
HostResponse::Word(word) => word,
_ => panic!("expected Word, but got {:?}", response),
}
}
}
impl From<HostResponse> for [Word; 2] {
fn from(response: HostResponse) -> Self {
match response {
HostResponse::DoubleWord(word) => word,
_ => panic!("expected DoubleWord, but got {:?}", response),
}
}
}
impl From<HostResponse> for Felt {
fn from(response: HostResponse) -> Self {
match response {
HostResponse::Element(element) => element,
_ => panic!("expected Element, but got {:?}", response),
}
}
}
// DEFAULT HOST IMPLEMENTATION
// ================================================================================================
/// TODO: add comments
pub struct DefaultHost<A> {
adv_provider: A,
}
impl Default for DefaultHost<MemAdviceProvider> {
fn default() -> Self {
Self {
adv_provider: MemAdviceProvider::default(),
}
}
}
impl<A: AdviceProvider> DefaultHost<A> {
pub fn new(adv_provider: A) -> Self {
Self { adv_provider }
}
#[cfg(any(test, feature = "internals"))]
pub fn advice_provider(&self) -> &A {
&self.adv_provider
}
#[cfg(any(test, feature = "internals"))]
pub fn advice_provider_mut(&mut self) -> &mut A {
&mut self.adv_provider
}
pub fn into_inner(self) -> A {
self.adv_provider
}
}
impl<A: AdviceProvider> Host for DefaultHost<A> {
fn get_advice<S: ProcessState>(
&mut self,
process: &S,
extractor: AdviceExtractor,
) -> Result<HostResponse, ExecutionError> {
self.adv_provider.get_advice(process, &extractor)
}
fn set_advice<S: ProcessState>(
&mut self,
process: &S,
injector: AdviceInjector,
) -> Result<HostResponse, ExecutionError> {
self.adv_provider.set_advice(process, &injector)
}
}