diff --git a/soroban-env-host/src/budget/dimension.rs b/soroban-env-host/src/budget/dimension.rs index a6cd4f5d1..f7781934f 100644 --- a/soroban-env-host/src/budget/dimension.rs +++ b/soroban-env-host/src/budget/dimension.rs @@ -131,8 +131,12 @@ impl BudgetDimension { pub(crate) fn reset(&mut self, limit: u64) { self.limit = limit; - self.total_count = 0; self.shadow_limit = limit; + self.reset_count(); + } + + pub(crate) fn reset_count(&mut self) { + self.total_count = 0; self.shadow_total_count = 0; } diff --git a/soroban-env-host/src/budget/util.rs b/soroban-env-host/src/budget/util.rs index 786eee624..568fc76bf 100644 --- a/soroban-env-host/src/budget/util.rs +++ b/soroban-env-host/src/budget/util.rs @@ -69,6 +69,15 @@ impl Budget { Ok(()) } + pub fn reset(&self) -> Result<(), HostError> { + self.with_mut_budget(|mut b| { + b.cpu_insns.reset_count(); + b.mem_bytes.reset_count(); + Ok(()) + })?; + self.reset_tracker() + } + pub fn reset_cpu_limit(&self, cpu: u64) -> Result<(), HostError> { self.with_mut_budget(|mut b| { b.cpu_insns.reset(cpu); @@ -157,7 +166,7 @@ impl Budget { } } -#[cfg(any(test, feature = "recording_mode"))] +#[cfg(any(test, feature = "recording_mode", feature = "testutils"))] impl Budget { /// Variant of `with_shadow_mode`, enabled only in testing and /// non-production scenarios, that produces a `Result<>` rather than eating diff --git a/soroban-env-host/src/events/internal.rs b/soroban-env-host/src/events/internal.rs index 88e1dbdb8..9ed90bd7b 100644 --- a/soroban-env-host/src/events/internal.rs +++ b/soroban-env-host/src/events/internal.rs @@ -267,4 +267,9 @@ impl InternalEventsBuffer { Ok(Events(vec)) } + + #[cfg(any(test, feature = "testutils"))] + pub(crate) fn clear(&mut self) { + self.vec.clear(); + } } diff --git a/soroban-env-host/src/fees.rs b/soroban-env-host/src/fees.rs index b919cc3c8..1ddbd486d 100644 --- a/soroban-env-host/src/fees.rs +++ b/soroban-env-host/src/fees.rs @@ -10,8 +10,8 @@ pub const TX_BASE_RESULT_SIZE: u32 = 300; /// Estimate for any `TtlEntry` ledger entry pub const TTL_ENTRY_SIZE: u32 = 48; -const INSTRUCTIONS_INCREMENT: i64 = 10000; -const DATA_SIZE_1KB_INCREMENT: i64 = 1024; +pub const INSTRUCTIONS_INCREMENT: i64 = 10000; +pub const DATA_SIZE_1KB_INCREMENT: i64 = 1024; // minimum effective write fee per 1KB pub const MINIMUM_WRITE_FEE_PER_1KB: i64 = 1000; diff --git a/soroban-env-host/src/host.rs b/soroban-env-host/src/host.rs index c371ba460..bf6501d98 100644 --- a/soroban-env-host/src/host.rs +++ b/soroban-env-host/src/host.rs @@ -28,6 +28,8 @@ mod data_helper; mod declared_size; pub(crate) mod error; pub(crate) mod frame; +#[cfg(any(test, feature = "testutils"))] +mod invocation_metering; pub(crate) mod ledger_info_helper; pub(crate) mod lifecycle; mod mem_helper; @@ -61,6 +63,9 @@ pub(crate) use frame::Frame; #[cfg(any(test, feature = "recording_mode"))] use rand_chacha::ChaCha20Rng; +#[cfg(any(test, feature = "testutils"))] +use invocation_metering::InvocationMeter; + #[cfg(any(test, feature = "testutils"))] #[derive(Clone, Copy)] pub enum ContractInvocationEvent { @@ -166,6 +171,9 @@ struct HostImpl { #[doc(hidden)] #[cfg(any(test, feature = "recording_mode"))] need_to_build_module_cache: RefCell, + + #[cfg(any(test, feature = "testutils"))] + pub(crate) invocation_meter: RefCell, } // Host is a newtype on Rc so we can impl Env for it below. @@ -382,6 +390,8 @@ impl Host { suppress_diagnostic_events: RefCell::new(false), #[cfg(any(test, feature = "recording_mode"))] need_to_build_module_cache: RefCell::new(false), + #[cfg(any(test, feature = "testutils"))] + invocation_meter: Default::default(), })) } @@ -2330,6 +2340,9 @@ impl VmCallerEnv for Host { _vmcaller: &mut VmCaller, wasm: BytesObject, ) -> Result { + #[cfg(any(test, feature = "testutils"))] + let _invocation_meter_scope = self.maybe_meter_invocation()?; + let wasm_vec = self.visit_obj(wasm, |bytes: &ScBytes| bytes.as_vec().metered_clone(self))?; self.upload_contract_wasm(wasm_vec) @@ -2369,6 +2382,9 @@ impl VmCallerEnv for Host { func: Symbol, args: VecObject, ) -> Result { + #[cfg(any(test, feature = "testutils"))] + let _invocation_meter_scope = self.maybe_meter_invocation()?; + let argvec = self.call_args_from_obj(args)?; // this is the recommended path of calling a contract, with `reentry` // always set `ContractReentryMode::Prohibited` @@ -2396,6 +2412,9 @@ impl VmCallerEnv for Host { func: Symbol, args: VecObject, ) -> Result { + #[cfg(any(test, feature = "testutils"))] + let _invocation_meter_scope = self.maybe_meter_invocation()?; + let argvec = self.call_args_from_obj(args)?; // this is the "loosened" path of calling a contract. // TODO: A `reentry` flag will be passed from `try_call` into here. @@ -3477,6 +3496,31 @@ impl Host { ) }) } + + /// Returns the resources metered during the last logical contract invocation. + /// + /// Logical invocations include the direct `invoke_host_function` calls, + /// `call`/`try_call` functions, contract lifecycle management operations. + /// + /// Take the return value with a grain of salt. The returned resources mostly + /// correspond only to the operations that have happened during the host + /// invocation, i.e. this won't try to simulate the work that happens in + /// production scenarios (e.g. certain XDR rountrips). This also doesn't try + /// to model resources related to the transaction size. + /// + /// The returned value is as useful as the preceding setup, e.g. if a test + /// contract is used instead of a Wasm contract, all the costs related to + /// VM instantiation and execution, as well as Wasm reads/rent bumps will be + /// missed. + pub fn get_last_invocation_resources( + &self, + ) -> Option { + if let Ok(scope) = self.0.invocation_meter.try_borrow() { + scope.get_invocation_resources() + } else { + None + } + } } impl Host { diff --git a/soroban-env-host/src/host/frame.rs b/soroban-env-host/src/host/frame.rs index 8a9e8592e..5df04a596 100644 --- a/soroban-env-host/src/host/frame.rs +++ b/soroban-env-host/src/host/frame.rs @@ -643,6 +643,7 @@ impl Host { where F: FnOnce() -> Result, { + let _invocation_meter_scope = self.maybe_meter_invocation()?; self.with_frame( Frame::TestContract(self.create_test_contract_frame(id, func, vec![])?), f, @@ -1069,6 +1070,9 @@ impl Host { // Notes on metering: covered by the called components. pub fn invoke_function(&self, hf: HostFunction) -> Result { + #[cfg(any(test, feature = "testutils"))] + let _invocation_meter_scope = self.maybe_meter_invocation()?; + let rv = self.invoke_function_and_return_val(hf)?; self.from_host_val(rv) } diff --git a/soroban-env-host/src/host/invocation_metering.rs b/soroban-env-host/src/host/invocation_metering.rs new file mode 100644 index 000000000..a49e1376a --- /dev/null +++ b/soroban-env-host/src/host/invocation_metering.rs @@ -0,0 +1,748 @@ +use std::cell::RefMut; + +use soroban_env_common::Env; + +use crate::{ + e2e_invoke::encode_contract_events, + fees::{FeeConfiguration, DATA_SIZE_1KB_INCREMENT, INSTRUCTIONS_INCREMENT, TTL_ENTRY_SIZE}, + ledger_info::get_key_durability, + storage::{AccessType, Storage}, + xdr::{ContractDataDurability, ScErrorCode, ScErrorType}, +}; + +use super::{metered_xdr::metered_write_xdr, Host, HostError}; + +/// Represents the resources measured during an invocation. +/// +/// This resembles the resources necessary to build a Soroban transaction and +/// compute its fee with a few exceptions (specifically, the transaction size +/// and the return value size). +#[derive(Default, Clone, Debug, Eq, PartialEq)] +pub struct InvocationResources { + /// Number of modelled CPU instructions. + pub instructions: i64, + /// Size of modelled memory in bytes. + pub mem_bytes: i64, + /// Number of entries that need to be read from the ledger (without + /// modification, i.e. excluding the entries that need to be written). + pub read_entries: u32, + /// Number of entries that need to be written to the ledger due to + /// modification. + pub write_entries: u32, + /// Total number of bytes that need to be read from the ledger. This is + /// the total size of the 'initial' states all the storage entries accessed. + pub read_bytes: u32, + /// Total number of bytes that need to be written to the ledger. This is + /// the total size of all the entries accounted in `write_entries`. + pub write_bytes: u32, + /// Total size of the contract events emitted. + pub contract_events_size_bytes: u32, + /// Cumulative rent bump of all the persistent entries in 'ledger-bytes'. + /// 'Ledger-byte' is a rent bump of 1 byte for 1 ledger. Rent fee is + /// proportional to the total amount of 'ledger-bytes'. + pub persistent_rent_ledger_bytes: i64, + /// Number of persistent entries that had their rent bumped. + pub persistent_entry_rent_bumps: u32, + /// Cumulative rent bump of all the temporary entries in 'ledger-bytes'. + /// 'Ledger-byte' is a rent bump of 1 byte for 1 ledger. Rent fee is + /// proportional to the total amount of 'ledger-bytes'. + pub temporary_rent_ledger_bytes: i64, + /// Number of temporary entries that had their rent bumped. + pub temporary_entry_rent_bumps: u32, +} + +/// Detailed estimate of the transaction fees in stroops based on the +/// `InvocationResources`. +/// +/// Since `InvocationResources` don't account for certain metered resources, +/// these are omitted from the estimate as well. +#[derive(Default, Clone, Debug, Eq, PartialEq)] +pub struct FeeEstimate { + /// Total fee (sum of all the remaining fields). + pub total: i64, + /// Fee for instructions. + pub instructions: i64, + /// Fee for ledger entry reads. + pub read_entries: i64, + /// Fee for ledger entry writes. + pub write_entries: i64, + /// Fee for the overall size of ledger reads. + pub read_bytes: i64, + /// Fee for the overall size of ledger writes. + pub write_bytes: i64, + /// Fee for the contract events emitted. + pub contract_events: i64, + /// Rent fee for the persistent entries. + pub persistent_entry_rent: i64, + /// Rent fee for the temporary entries. + pub temporary_entry_rent: i64, +} + +impl InvocationResources { + /// Estimates the fees necesary for the current resources based on the + /// provided fee configuration. + /// + /// This is only an estimate and it can't be used for the actual transaction + /// submission (simulation using the Soroban RPC should be used instead). + /// + /// The quality of the estimate depends on the provided fee configuration, + /// so it must resemble the target network as close as possible. + pub fn estimate_fees( + &self, + fee_config: &FeeConfiguration, + persistent_rent_rate_denominator: i64, + temporary_rent_rate_denominator: i64, + ) -> FeeEstimate { + let instructions = compute_fee_per_increment( + self.instructions, + fee_config.fee_per_instruction_increment, + INSTRUCTIONS_INCREMENT, + ); + let read_entries = fee_config + .fee_per_read_entry + .saturating_mul(self.read_entries.saturating_add(self.write_entries).into()); + let write_entries = fee_config + .fee_per_write_entry + .saturating_mul(self.write_entries.into()); + let read_bytes = compute_fee_per_increment( + self.read_bytes.into(), + fee_config.fee_per_read_1kb, + DATA_SIZE_1KB_INCREMENT, + ); + let write_bytes = compute_fee_per_increment( + self.write_bytes.into(), + fee_config.fee_per_write_1kb, + DATA_SIZE_1KB_INCREMENT, + ); + let contract_events = compute_fee_per_increment( + self.contract_events_size_bytes.into(), + fee_config.fee_per_contract_event_1kb, + DATA_SIZE_1KB_INCREMENT, + ); + + let mut persistent_entry_ttl_entry_writes = fee_config + .fee_per_write_entry + .saturating_mul(self.persistent_entry_rent_bumps.into()); + persistent_entry_ttl_entry_writes = + persistent_entry_ttl_entry_writes.saturating_add(compute_fee_per_increment( + (TTL_ENTRY_SIZE as i64).saturating_mul(self.persistent_entry_rent_bumps.into()), + fee_config.fee_per_write_1kb, + DATA_SIZE_1KB_INCREMENT, + )); + let mut temp_entry_ttl_entry_writes = fee_config + .fee_per_write_entry + .saturating_mul(self.temporary_entry_rent_bumps.into()); + temp_entry_ttl_entry_writes = + temp_entry_ttl_entry_writes.saturating_add(compute_fee_per_increment( + (TTL_ENTRY_SIZE as i64).saturating_mul(self.temporary_entry_rent_bumps.into()), + fee_config.fee_per_write_1kb, + DATA_SIZE_1KB_INCREMENT, + )); + + let persistent_entry_rent = compute_fee_per_increment( + self.persistent_rent_ledger_bytes, + fee_config.fee_per_write_1kb, + DATA_SIZE_1KB_INCREMENT.saturating_mul(persistent_rent_rate_denominator), + ) + .saturating_add(persistent_entry_ttl_entry_writes); + let temporary_entry_rent = compute_fee_per_increment( + self.temporary_rent_ledger_bytes, + fee_config.fee_per_write_1kb, + DATA_SIZE_1KB_INCREMENT.saturating_mul(temporary_rent_rate_denominator), + ) + .saturating_add(temp_entry_ttl_entry_writes); + let total = instructions + .saturating_add(read_entries) + .saturating_add(write_entries) + .saturating_add(read_bytes) + .saturating_add(write_bytes) + .saturating_add(contract_events) + .saturating_add(persistent_entry_rent) + .saturating_add(temporary_entry_rent); + FeeEstimate { + total, + instructions, + read_entries, + write_entries, + read_bytes, + write_bytes, + contract_events, + persistent_entry_rent, + temporary_entry_rent, + } + } +} + +/// A helper for metering the resources only within a logical host invocation +/// without finalizing the host. +/// +/// The 'logical' invocations are the typical entry points for the unit tests, +/// such as invocations based on `HostFunction` XDR, lifecycle operations +/// (registering Wasm, creating a contract instance), direct contract calls +/// etc. +#[derive(Default, Clone)] +pub(crate) struct InvocationMeter { + active: bool, + enabled: bool, + storage_snapshot: Option, + invocation_resources: Option, +} + +/// Scope guard for `InvocationMeter` that automatically finishes the metered +/// invocation when it goes out of scope. +pub(crate) struct InvocationMeterScope<'a> { + meter: RefMut<'a, InvocationMeter>, + host: &'a Host, +} + +impl<'a> Drop for InvocationMeterScope<'a> { + fn drop(&mut self) { + self.meter.finish_invocation(self.host); + } +} + +impl InvocationMeter { + /// Gets the metered resources for the last metered invocation (if any). + pub(crate) fn get_invocation_resources(&self) -> Option { + self.invocation_resources.clone() + } + + fn start_invocation<'a>( + mut scope: RefMut<'a, InvocationMeter>, + host: &'a Host, + ) -> Result>, HostError> { + if scope.active || !scope.enabled { + return Ok(None); + } + scope.storage_snapshot = Some(host.try_borrow_storage()?.clone()); + // Reset all the state relevant to the invocation resources. Note, that + // the storage itself shouldn't be reset, as it's treated as the ledger + // state before invocation. + host.try_borrow_storage_mut()?.reset_footprint(); + host.try_borrow_events_mut()?.clear(); + host.budget_ref().reset()?; + Ok(Some(InvocationMeterScope { meter: scope, host })) + } + + fn finish_invocation(&mut self, host: &Host) -> () { + self.active = false; + let mut invocation_resources = InvocationResources::default(); + let budget = host.budget_ref(); + invocation_resources.instructions = + budget.get_cpu_insns_consumed().unwrap_or_default() as i64; + invocation_resources.mem_bytes = budget.get_mem_bytes_consumed().unwrap_or_default() as i64; + + let measure_res = budget.with_observable_shadow_mode(|| { + self.try_measure_resources(&mut invocation_resources, host) + }); + + if measure_res.is_ok() { + self.invocation_resources = Some(invocation_resources); + } else { + self.invocation_resources = None; + } + + self.storage_snapshot = None; + } + + fn try_measure_resources( + &mut self, + invocation_resources: &mut InvocationResources, + host: &Host, + ) -> Result<(), HostError> { + let prev_storage = self.storage_snapshot.as_mut().ok_or_else(|| { + host.err( + ScErrorType::Context, + ScErrorCode::InternalError, + "missing a storage snapshot in metering scope, `open` must be called before `close`", + &[], + ) + })?; + + let mut curr_storage = host.try_borrow_storage_mut()?; + let footprint = curr_storage.footprint.clone(); + let curr_ledger_seq: u32 = host.get_ledger_sequence()?.into(); + for (key, access_type) in footprint.0.iter(host.budget_ref())? { + let maybe_init_entry = prev_storage.try_get_full_with_host(key, host, None)?; + let mut init_entry_size = 0; + let mut init_live_until_ledger = curr_ledger_seq; + if let Some((init_entry, init_entry_live_until)) = maybe_init_entry { + let mut buf = Vec::::new(); + metered_write_xdr(host.budget_ref(), init_entry.as_ref(), &mut buf)?; + init_entry_size = buf.len() as u32; + invocation_resources.read_bytes += init_entry_size; + if let Some(live_until) = init_entry_live_until { + init_live_until_ledger = live_until; + } + } + let mut entry_size = 0; + let mut entry_live_until_ledger = None; + let maybe_entry = curr_storage.try_get_full_with_host(key, host, None)?; + if let Some((entry, entry_live_until)) = maybe_entry { + let mut buf = Vec::::new(); + metered_write_xdr(host.budget_ref(), entry.as_ref(), &mut buf)?; + entry_size = buf.len() as u32; + entry_live_until_ledger = entry_live_until; + } + match access_type { + AccessType::ReadOnly => { + invocation_resources.read_entries += 1; + } + AccessType::ReadWrite => { + invocation_resources.write_entries += 1; + invocation_resources.write_bytes += entry_size; + } + } + if let Some(new_live_until) = entry_live_until_ledger { + let extension_ledgers = (new_live_until - init_live_until_ledger) as i64; + let size_delta = if entry_size > init_entry_size { + (entry_size - init_entry_size) as i64 + } else { + 0 + }; + let existing_ledgers = (init_live_until_ledger - curr_ledger_seq) as i64; + let rent_ledger_bytes = + existing_ledgers * size_delta + extension_ledgers * (entry_size as i64); + if rent_ledger_bytes > 0 { + match get_key_durability(key.as_ref()) { + Some(ContractDataDurability::Temporary) => { + invocation_resources.temporary_rent_ledger_bytes += rent_ledger_bytes; + invocation_resources.temporary_entry_rent_bumps += 1; + } + Some(ContractDataDurability::Persistent) => { + invocation_resources.persistent_rent_ledger_bytes += rent_ledger_bytes; + invocation_resources.persistent_entry_rent_bumps += 1; + } + None => (), + } + } + } + } + let events = host.try_borrow_events()?.externalize(&host)?; + let encoded_contract_events = encode_contract_events(host.budget_ref(), &events)?; + for event in &encoded_contract_events { + invocation_resources.contract_events_size_bytes += event.len() as u32; + } + Ok(()) + } +} + +impl Host { + /// Tries to start a metered invocation, when invocation metering is enabled. + /// + /// The returned object has to stay alive while the invocation is active. + /// + /// If there is already an invocation active, returns `None`. + pub(crate) fn maybe_meter_invocation( + &self, + ) -> Result>, HostError> { + // Note: we're using the standard `try_borrow_mut` instead of a helper + // generated with `impl_checked_borrow_helpers` in order to not spam + // the logs with failures. It is expected for metering_scope to be + // borrowed. + if let Ok(scope) = self.0.invocation_meter.try_borrow_mut() { + InvocationMeter::start_invocation(scope, self) + } else { + Ok(None) + } + } + + /// Enables invocation metering (it's disabled by default). + pub fn enable_invocation_metering(&self) { + if let Ok(mut meter) = self.0.invocation_meter.try_borrow_mut() { + meter.enabled = true; + } + } +} + +fn compute_fee_per_increment(resource_value: i64, fee_rate: i64, increment: i64) -> i64 { + num_integer::div_ceil(resource_value.saturating_mul(fee_rate), increment.max(1)) +} + +#[cfg(test)] +mod test { + use super::*; + use crate::{Symbol, TryFromVal, TryIntoVal}; + use expect_test::expect; + use soroban_test_wasms::CONTRACT_STORAGE; + + // run `UPDATE_EXPECT=true cargo test` to update this test. + // The exact values of don't matter too much here (unless the diffs are + // produced without a protocol upgrade), but the presence/absence of certain + // resources is important (comments clarify which ones). + #[test] + fn test_invocation_resource_metering() { + let host = Host::test_host_with_recording_footprint(); + host.enable_invocation_metering(); + host.enable_debug().unwrap(); + host.with_mut_ledger_info(|li| { + li.sequence_number = 100; + li.max_entry_ttl = 10000; + li.min_persistent_entry_ttl = 1000; + li.min_temp_entry_ttl = 16; + }) + .unwrap(); + + let contract_id = host.register_test_contract_wasm(CONTRACT_STORAGE); + // We meter the whole registration procedure here (upload + create + // contract), so 2 writes/bumps are expected. + expect![[r#" + InvocationResources { + instructions: 4196698, + mem_bytes: 2863076, + read_entries: 0, + write_entries: 2, + read_bytes: 0, + write_bytes: 3132, + contract_events_size_bytes: 0, + persistent_rent_ledger_bytes: 3128868, + persistent_entry_rent_bumps: 2, + temporary_rent_ledger_bytes: 0, + temporary_entry_rent_bumps: 0, + }"#]] + .assert_eq(format!("{:#?}", host.get_last_invocation_resources().unwrap()).as_str()); + + let key = Symbol::try_from_small_str("key_1").unwrap(); + + // Has with no entries - no writes/rent bumps expected. + let _ = &host + .call( + contract_id, + Symbol::try_from_val(&host, &"has_persistent").unwrap(), + test_vec![&host, key].into(), + ) + .unwrap(); + expect![[r#" + InvocationResources { + instructions: 846137, + mem_bytes: 1215737, + read_entries: 3, + write_entries: 0, + read_bytes: 3132, + write_bytes: 0, + contract_events_size_bytes: 0, + persistent_rent_ledger_bytes: 0, + persistent_entry_rent_bumps: 0, + temporary_rent_ledger_bytes: 0, + temporary_entry_rent_bumps: 0, + }"#]] + .assert_eq(format!("{:#?}", host.get_last_invocation_resources().unwrap()).as_str()); + + // 1 persistent write together with the respective initial rent bump. + let _ = &host + .try_call( + contract_id, + Symbol::try_from_val(&host, &"put_persistent").unwrap(), + test_vec![&host, key, 1234_u64].into(), + ) + .unwrap(); + expect![[r#" + InvocationResources { + instructions: 850395, + mem_bytes: 1216336, + read_entries: 2, + write_entries: 1, + read_bytes: 3132, + write_bytes: 84, + contract_events_size_bytes: 0, + persistent_rent_ledger_bytes: 83916, + persistent_entry_rent_bumps: 1, + temporary_rent_ledger_bytes: 0, + temporary_entry_rent_bumps: 0, + }"#]] + .assert_eq(format!("{:#?}", host.get_last_invocation_resources().unwrap()).as_str()); + + // Another has check, should have more data read than the first one. + let _ = &host + .call( + contract_id, + Symbol::try_from_val(&host, &"has_persistent").unwrap(), + test_vec![&host, key].into(), + ) + .unwrap(); + expect![[r#" + InvocationResources { + instructions: 846406, + mem_bytes: 1215721, + read_entries: 3, + write_entries: 0, + read_bytes: 3216, + write_bytes: 0, + contract_events_size_bytes: 0, + persistent_rent_ledger_bytes: 0, + persistent_entry_rent_bumps: 0, + temporary_rent_ledger_bytes: 0, + temporary_entry_rent_bumps: 0, + }"#]] + .assert_eq(format!("{:#?}", host.get_last_invocation_resources().unwrap()).as_str()); + + // 1 temporary entry write with the initial rent bump. + let _ = &host + .try_call( + contract_id, + Symbol::try_from_val(&host, &"put_temporary").unwrap(), + test_vec![&host, key, 1234_u64].into(), + ) + .unwrap(); + expect![[r#" + InvocationResources { + instructions: 852007, + mem_bytes: 1216692, + read_entries: 2, + write_entries: 1, + read_bytes: 3132, + write_bytes: 84, + contract_events_size_bytes: 0, + persistent_rent_ledger_bytes: 0, + persistent_entry_rent_bumps: 0, + temporary_rent_ledger_bytes: 1260, + temporary_entry_rent_bumps: 1, + }"#]] + .assert_eq(format!("{:#?}", host.get_last_invocation_resources().unwrap()).as_str()); + + // Has check, same amount of data is read as for persistent has check. + let _ = &host + .try_call( + contract_id, + Symbol::try_from_val(&host, &"has_temporary").unwrap(), + test_vec![&host, key].into(), + ) + .unwrap(); + expect![[r#" + InvocationResources { + instructions: 846795, + mem_bytes: 1215789, + read_entries: 3, + write_entries: 0, + read_bytes: 3216, + write_bytes: 0, + contract_events_size_bytes: 0, + persistent_rent_ledger_bytes: 0, + persistent_entry_rent_bumps: 0, + temporary_rent_ledger_bytes: 0, + temporary_entry_rent_bumps: 0, + }"#]] + .assert_eq(format!("{:#?}", host.get_last_invocation_resources().unwrap()).as_str()); + + // Extend persistent entry, 1 persistent extension is expected. + let _ = &host + .call( + contract_id, + Symbol::try_from_val(&host, &"extend_persistent").unwrap(), + test_vec![&host, key, &5000_u32, &5000_u32].into(), + ) + .unwrap(); + expect![[r#" + InvocationResources { + instructions: 847840, + mem_bytes: 1216141, + read_entries: 3, + write_entries: 0, + read_bytes: 3216, + write_bytes: 0, + contract_events_size_bytes: 0, + persistent_rent_ledger_bytes: 336084, + persistent_entry_rent_bumps: 1, + temporary_rent_ledger_bytes: 0, + temporary_entry_rent_bumps: 0, + }"#]] + .assert_eq(format!("{:#?}", host.get_last_invocation_resources().unwrap()).as_str()); + + // Extend temp entry, 1 persistent extension is expected. + let _ = &host + .call( + contract_id, + Symbol::try_from_val(&host, &"extend_temporary").unwrap(), + test_vec![&host, key, &3000_u32, &3000_u32].into(), + ) + .unwrap(); + expect![[r#" + InvocationResources { + instructions: 847960, + mem_bytes: 1216141, + read_entries: 3, + write_entries: 0, + read_bytes: 3216, + write_bytes: 0, + contract_events_size_bytes: 0, + persistent_rent_ledger_bytes: 0, + persistent_entry_rent_bumps: 0, + temporary_rent_ledger_bytes: 250740, + temporary_entry_rent_bumps: 1, + }"#]] + .assert_eq(format!("{:#?}", host.get_last_invocation_resources().unwrap()).as_str()); + } + + #[test] + fn test_resource_fee_estimation() { + // No resources + assert_eq!( + InvocationResources { + instructions: 0, + mem_bytes: 100_000, + read_entries: 0, + write_entries: 0, + read_bytes: 0, + write_bytes: 0, + contract_events_size_bytes: 0, + persistent_rent_ledger_bytes: 0, + persistent_entry_rent_bumps: 0, + temporary_rent_ledger_bytes: 0, + temporary_entry_rent_bumps: 0 + } + .estimate_fees( + &FeeConfiguration { + fee_per_instruction_increment: 100, + fee_per_read_entry: 100, + fee_per_write_entry: 100, + fee_per_read_1kb: 100, + fee_per_write_1kb: 100, + fee_per_historical_1kb: 100, + fee_per_contract_event_1kb: 100, + fee_per_transaction_size_1kb: 100, + }, + 1, + 1 + ), + FeeEstimate { + total: 0, + instructions: 0, + read_entries: 0, + write_entries: 0, + read_bytes: 0, + write_bytes: 0, + contract_events: 0, + persistent_entry_rent: 0, + temporary_entry_rent: 0, + } + ); + + // Minimal resources + assert_eq!( + InvocationResources { + instructions: 1, + mem_bytes: 100_000, + read_entries: 1, + write_entries: 1, + read_bytes: 1, + write_bytes: 1, + contract_events_size_bytes: 1, + persistent_rent_ledger_bytes: 1, + persistent_entry_rent_bumps: 1, + temporary_rent_ledger_bytes: 1, + temporary_entry_rent_bumps: 1 + } + .estimate_fees( + &FeeConfiguration { + fee_per_instruction_increment: 100, + fee_per_read_entry: 100, + fee_per_write_entry: 100, + fee_per_read_1kb: 100, + fee_per_write_1kb: 100, + fee_per_historical_1kb: 100, + fee_per_contract_event_1kb: 100, + fee_per_transaction_size_1kb: 100, + }, + 1, + 1 + ), + FeeEstimate { + total: 516, + instructions: 1, + read_entries: 200, + write_entries: 100, + read_bytes: 1, + write_bytes: 1, + contract_events: 1, + persistent_entry_rent: 106, + temporary_entry_rent: 106 + } + ); + + // Different resource/fee values, based on the values from + // fees::resource_fee_computation test. + assert_eq!( + InvocationResources { + instructions: 10_123_456, + mem_bytes: 100_000, + read_entries: 30, + write_entries: 10, + read_bytes: 25_600, + write_bytes: 10_340, + contract_events_size_bytes: 321_654, + persistent_rent_ledger_bytes: 1_000_000_000, + persistent_entry_rent_bumps: 3, + temporary_rent_ledger_bytes: 4_000_000_000, + temporary_entry_rent_bumps: 6 + } + .estimate_fees( + &FeeConfiguration { + fee_per_instruction_increment: 1000, + fee_per_read_entry: 2000, + fee_per_write_entry: 4000, + fee_per_read_1kb: 1500, + fee_per_write_1kb: 3000, + fee_per_historical_1kb: 300, + fee_per_contract_event_1kb: 200, + fee_per_transaction_size_1kb: 900, + }, + 1000, + 2000 + ), + FeeEstimate { + // 1_200_139 + event fees + rent fees + total: 10_089_292, + instructions: 1_012_346, + read_entries: 80000, + write_entries: 40000, + read_bytes: 37500, + write_bytes: 30293, + contract_events: 62824, + persistent_entry_rent: 2942110, + temporary_entry_rent: 5884219 + } + ); + + // Integer limits + assert_eq!( + InvocationResources { + instructions: i64::MAX, + mem_bytes: i64::MAX, + read_entries: u32::MAX, + write_entries: u32::MAX, + read_bytes: u32::MAX, + write_bytes: u32::MAX, + contract_events_size_bytes: u32::MAX, + persistent_rent_ledger_bytes: i64::MAX, + persistent_entry_rent_bumps: u32::MAX, + temporary_rent_ledger_bytes: i64::MAX, + temporary_entry_rent_bumps: u32::MAX + } + .estimate_fees( + &FeeConfiguration { + fee_per_instruction_increment: i64::MAX, + fee_per_read_entry: i64::MAX, + fee_per_write_entry: i64::MAX, + fee_per_read_1kb: i64::MAX, + fee_per_write_1kb: i64::MAX, + fee_per_historical_1kb: i64::MAX, + fee_per_contract_event_1kb: i64::MAX, + fee_per_transaction_size_1kb: i64::MAX, + }, + i64::MAX, + i64::MAX + ), + FeeEstimate { + total: i64::MAX, + instructions: 922337203685478, + read_entries: i64::MAX, + write_entries: i64::MAX, + read_bytes: 9007199254740992, + write_bytes: 9007199254740992, + contract_events: 9007199254740992, + persistent_entry_rent: i64::MAX, + temporary_entry_rent: i64::MAX + } + ); + } +} diff --git a/soroban-env-host/src/host/lifecycle.rs b/soroban-env-host/src/host/lifecycle.rs index 1b570fe94..ce5d9c43a 100644 --- a/soroban-env-host/src/host/lifecycle.rs +++ b/soroban-env-host/src/host/lifecycle.rs @@ -319,6 +319,9 @@ impl Host { contract_address: AddressObject, contract_fns: Rc, ) -> Result<(), HostError> { + #[cfg(any(test, feature = "testutils"))] + let _invocation_meter_scope = self.maybe_meter_invocation()?; + use crate::Env; self.register_test_contract_with_constructor( contract_address, @@ -333,6 +336,9 @@ impl Host { contract_fns: Rc, constructor_args: crate::VecObject, ) -> Result<(), HostError> { + #[cfg(any(test, feature = "testutils"))] + let _invocation_meter_scope = self.maybe_meter_invocation()?; + let contract_id = self.contract_id_from_address(contract_address)?; let instance_key = self.contract_instance_ledger_key(&contract_id)?; let wasm_hash_obj = self.upload_contract_wasm(vec![])?; diff --git a/soroban-env-host/src/storage.rs b/soroban-env-host/src/storage.rs index 677e9ae70..4c9b4c0e2 100644 --- a/soroban-env-host/src/storage.rs +++ b/soroban-env-host/src/storage.rs @@ -223,7 +223,7 @@ impl Storage { } } - fn try_get_full_with_host( + pub(crate) fn try_get_full_with_host( &mut self, key: &Rc, host: &Host, @@ -595,6 +595,11 @@ impl Storage { }; Ok(()) } + + #[cfg(any(test, feature = "testutils"))] + pub(crate) fn reset_footprint(&mut self) { + self.footprint = Footprint::default(); + } } fn get_key_type_string_for_error(lk: &LedgerKey) -> &str { diff --git a/soroban-env-host/src/test/auth.rs b/soroban-env-host/src/test/auth.rs index f3497b709..9f27f1d15 100644 --- a/soroban-env-host/src/test/auth.rs +++ b/soroban-env-host/src/test/auth.rs @@ -12,7 +12,6 @@ use soroban_test_wasms::{ }; use crate::auth::RecordedAuthPayload; -use crate::budget::AsBudget; use crate::builtin_contracts::base_types::Address; use crate::builtin_contracts::testutils::{ create_account, generate_signing_key, sign_payload_for_account, signing_key_to_account_id, @@ -116,9 +115,7 @@ impl SignNode { impl AuthTest { fn setup_with_contract(signer_cnt: usize, contract_cnt: usize, contract_wasm: &[u8]) -> Self { let host = Host::test_host_with_recording_footprint(); - // TODO: remove the `reset_unlimited` and instead reset inputs wherever appropriate - // to respect the budget limit. - host.as_budget().reset_unlimited().unwrap(); + host.enable_invocation_metering(); host.enable_debug().unwrap(); host.with_mut_ledger_info(|li| { diff --git a/soroban-env-host/src/testutils.rs b/soroban-env-host/src/testutils.rs index 18f9792ab..ea33b04c0 100644 --- a/soroban-env-host/src/testutils.rs +++ b/soroban-env-host/src/testutils.rs @@ -289,6 +289,9 @@ impl Host { salt: [u8; 32], ) -> Result { let _span = tracy_span!("register_test_contract_wasm_from_source_account"); + #[cfg(any(test, feature = "testutils"))] + let _invocation_meter_scope = self.maybe_meter_invocation()?; + // Use source account-based auth in order to avoid using nonces which // won't work well with enforcing ledger footprint. let prev_source_account = self.source_account_id()?;