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
use super::{stack::StackLimits, DropKeep};
use core::{mem::size_of, num::NonZeroU64};
use wasmi_core::UntypedValue;
use wasmparser::WasmFeatures;
/// The default amount of stacks kept in the cache at most.
const DEFAULT_CACHED_STACKS: usize = 2;
/// Configuration for an [`Engine`].
///
/// [`Engine`]: [`crate::Engine`]
#[derive(Debug, Copy, Clone)]
pub struct Config {
/// The limits set on the value stack and call stack.
stack_limits: StackLimits,
/// The amount of Wasm stacks to keep in cache at most.
cached_stacks: usize,
/// Is `true` if the `mutable-global` Wasm proposal is enabled.
mutable_global: bool,
/// Is `true` if the `sign-extension` Wasm proposal is enabled.
sign_extension: bool,
/// Is `true` if the `saturating-float-to-int` Wasm proposal is enabled.
saturating_float_to_int: bool,
/// Is `true` if the [`multi-value`] Wasm proposal is enabled.
multi_value: bool,
/// Is `true` if the [`bulk-memory`] Wasm proposal is enabled.
bulk_memory: bool,
/// Is `true` if the [`reference-types`] Wasm proposal is enabled.
reference_types: bool,
/// Is `true` if the [`tail-call`] Wasm proposal is enabled.
tail_call: bool,
/// Is `true` if the [`extended-const`] Wasm proposal is enabled.
extended_const: bool,
/// Is `true` if Wasm instructions on `f32` and `f64` types are allowed.
floats: bool,
/// Is `true` if `wasmi` executions shall consume fuel.
consume_fuel: bool,
/// The fuel consumption mode of the `wasmi` [`Engine`](crate::Engine).
fuel_consumption_mode: FuelConsumptionMode,
/// The configured fuel costs of all `wasmi` bytecode instructions.
fuel_costs: FuelCosts,
}
/// The fuel consumption mode of the `wasmi` [`Engine`].
///
/// This mode affects when fuel is charged for Wasm bulk-operations.
/// Affected Wasm instructions are:
///
/// - `memory.{grow, copy, fill}`
/// - `data.init`
/// - `table.{grow, copy, fill}`
/// - `element.init`
///
/// The default fuel consumption mode is [`FuelConsumptionMode::Lazy`].
///
/// [`Engine`]: crate::Engine
#[derive(Debug, Default, Copy, Clone)]
pub enum FuelConsumptionMode {
/// Fuel consumption for bulk-operations is lazy.
///
/// Lazy fuel consumption means that fuel for bulk-operations
/// is checked before executing the instruction but only consumed
/// if the executed instruction suceeded. The reason for this is
/// that bulk-operations fail fast and therefore do not cost
/// a lot of compute power in case of failure.
///
/// # Note
///
/// Lazy fuel consumption makes sense as default mode since the
/// affected bulk-operations usually are very costly if they are
/// successful. Therefore users generally want to avoid having to
/// using more fuel than what was actually used, especially if there
/// is an underlying cost model associated to the used fuel.
#[default]
Lazy,
/// Fuel consumption for bulk-operations is eager.
///
/// Eager fuel consumption means that fuel for bulk-operations
/// is always consumed before executing the instruction independent
/// of it suceeding or failing.
///
/// # Note
///
/// A use case for when a user might prefer eager fuel consumption
/// is when the fuel **required** to perform an execution should be identical
/// to the actual fuel **consumed** by an execution. Otherwise it can be confusing
/// that the execution consumed `x` gas while it needs `x + gas_for_bulk_op` to
/// not run out of fuel.
Eager,
}
/// Type storing all kinds of fuel costs of instructions.
#[derive(Debug, Copy, Clone)]
pub struct FuelCosts {
/// The base fuel costs for all instructions.
pub base: u64,
/// The fuel cost for instruction operating on Wasm entities.
///
/// # Note
///
/// A Wasm entitiy is one of `func`, `global`, `memory` or `table`.
/// Those instructions are usually a bit more costly since they need
/// multiplie indirect accesses through the Wasm instance and store.
pub entity: u64,
/// The fuel cost offset for `memory.load` instructions.
pub load: u64,
/// The fuel cost offset for `memory.store` instructions.
pub store: u64,
/// The fuel cost offset for `call` and `call_indirect` instructions.
pub call: u64,
/// Determines how many moved stack values consume one fuel upon a branch or return instruction.
///
/// # Note
///
/// If this is zero then processing [`DropKeep`] costs nothing.
branch_kept_per_fuel: u64,
/// Determines how many function locals consume one fuel per function call.
///
/// # Note
///
/// - This is also applied to all function parameters since
/// they are translated to local variable slots.
/// - If this is zero then processing function locals costs nothing.
func_locals_per_fuel: u64,
/// How many memory bytes can be processed per fuel in a `bulk-memory` instruction.
///
/// # Note
///
/// If this is zero then processing memory bytes costs nothing.
memory_bytes_per_fuel: u64,
/// How many table elements can be processed per fuel in a `bulk-table` instruction.
///
/// # Note
///
/// If this is zero then processing table elements costs nothing.
table_elements_per_fuel: u64,
}
impl FuelCosts {
/// Returns the fuel consumption of the amount of items with costs per items.
fn costs_per(len_items: u64, items_per_fuel: u64) -> u64 {
NonZeroU64::new(items_per_fuel)
.map(|items_per_fuel| len_items / items_per_fuel)
.unwrap_or(0)
}
/// Returns the fuel consumption for branches and returns using the given [`DropKeep`].
pub fn fuel_for_drop_keep(&self, drop_keep: DropKeep) -> u64 {
if drop_keep.drop() == 0 {
return 0;
}
Self::costs_per(u64::from(drop_keep.keep()), self.branch_kept_per_fuel)
}
/// Returns the fuel consumption for calling a function with the amount of local variables.
///
/// # Note
///
/// Function parameters are also treated as local variables.
pub fn fuel_for_locals(&self, locals: u64) -> u64 {
Self::costs_per(locals, self.func_locals_per_fuel)
}
/// Returns the fuel consumption for processing the amount of memory bytes.
pub fn fuel_for_bytes(&self, bytes: u64) -> u64 {
Self::costs_per(bytes, self.memory_bytes_per_fuel)
}
/// Returns the fuel consumption for processing the amount of table elements.
pub fn fuel_for_elements(&self, elements: u64) -> u64 {
Self::costs_per(elements, self.table_elements_per_fuel)
}
}
impl Default for FuelCosts {
fn default() -> Self {
let memory_bytes_per_fuel = 64;
let bytes_per_register = size_of::<UntypedValue>() as u64;
let registers_per_fuel = memory_bytes_per_fuel / bytes_per_register;
Self {
base: 1,
entity: 1,
load: 1,
store: 1,
call: 1,
func_locals_per_fuel: registers_per_fuel,
branch_kept_per_fuel: registers_per_fuel,
memory_bytes_per_fuel,
table_elements_per_fuel: registers_per_fuel,
}
}
}
impl Default for Config {
fn default() -> Self {
Self {
stack_limits: StackLimits::default(),
cached_stacks: DEFAULT_CACHED_STACKS,
mutable_global: true,
sign_extension: true,
saturating_float_to_int: true,
multi_value: true,
bulk_memory: true,
reference_types: true,
tail_call: false,
extended_const: false,
floats: true,
consume_fuel: false,
fuel_costs: FuelCosts::default(),
fuel_consumption_mode: FuelConsumptionMode::default(),
}
}
}
impl Config {
/// Sets the [`StackLimits`] for the [`Config`].
pub fn set_stack_limits(&mut self, stack_limits: StackLimits) -> &mut Self {
self.stack_limits = stack_limits;
self
}
/// Returns the [`StackLimits`] of the [`Config`].
pub(super) fn stack_limits(&self) -> StackLimits {
self.stack_limits
}
/// Sets the maximum amount of cached stacks for reuse for the [`Config`].
///
/// # Note
///
/// Defaults to 2.
pub fn set_cached_stacks(&mut self, amount: usize) -> &mut Self {
self.cached_stacks = amount;
self
}
/// Returns the maximum amount of cached stacks for reuse of the [`Config`].
pub(super) fn cached_stacks(&self) -> usize {
self.cached_stacks
}
/// Enable or disable the [`mutable-global`] Wasm proposal for the [`Config`].
///
/// # Note
///
/// Enabled by default.
///
/// [`mutable-global`]: https://github.com/WebAssembly/mutable-global
pub fn wasm_mutable_global(&mut self, enable: bool) -> &mut Self {
self.mutable_global = enable;
self
}
/// Enable or disable the [`sign-extension`] Wasm proposal for the [`Config`].
///
/// # Note
///
/// Enabled by default.
///
/// [`sign-extension`]: https://github.com/WebAssembly/sign-extension-ops
pub fn wasm_sign_extension(&mut self, enable: bool) -> &mut Self {
self.sign_extension = enable;
self
}
/// Enable or disable the [`saturating-float-to-int`] Wasm proposal for the [`Config`].
///
/// # Note
///
/// Enabled by default.
///
/// [`saturating-float-to-int`]:
/// https://github.com/WebAssembly/nontrapping-float-to-int-conversions
pub fn wasm_saturating_float_to_int(&mut self, enable: bool) -> &mut Self {
self.saturating_float_to_int = enable;
self
}
/// Enable or disable the [`multi-value`] Wasm proposal for the [`Config`].
///
/// # Note
///
/// Enabled by default.
///
/// [`multi-value`]: https://github.com/WebAssembly/multi-value
pub fn wasm_multi_value(&mut self, enable: bool) -> &mut Self {
self.multi_value = enable;
self
}
/// Enable or disable the [`bulk-memory`] Wasm proposal for the [`Config`].
///
/// # Note
///
/// Enabled by default.
///
/// [`bulk-memory`]: https://github.com/WebAssembly/bulk-memory-operations
pub fn wasm_bulk_memory(&mut self, enable: bool) -> &mut Self {
self.bulk_memory = enable;
self
}
/// Enable or disable the [`reference-types`] Wasm proposal for the [`Config`].
///
/// # Note
///
/// Enabled by default.
///
/// [`reference-types`]: https://github.com/WebAssembly/reference-types
pub fn wasm_reference_types(&mut self, enable: bool) -> &mut Self {
self.reference_types = enable;
self
}
/// Enable or disable the [`tail-call`] Wasm proposal for the [`Config`].
///
/// # Note
///
/// Disabled by default.
///
/// [`tail-call`]: https://github.com/WebAssembly/tail-calls
pub fn wasm_tail_call(&mut self, enable: bool) -> &mut Self {
self.tail_call = enable;
self
}
/// Enable or disable the [`extended-const`] Wasm proposal for the [`Config`].
///
/// # Note
///
/// Disabled by default.
///
/// [`tail-call`]: https://github.com/WebAssembly/extended-const
pub fn wasm_extended_const(&mut self, enable: bool) -> &mut Self {
self.extended_const = enable;
self
}
/// Enable or disable Wasm floating point (`f32` and `f64`) instructions and types.
///
/// Enabled by default.
pub fn floats(&mut self, enable: bool) -> &mut Self {
self.floats = enable;
self
}
/// Configures whether `wasmi` will consume fuel during execution to either halt execution as desired.
///
/// # Note
///
/// This configuration can be used to make `wasmi` instrument its internal bytecode
/// so that it consumes fuel as it executes. Once an execution runs out of fuel
/// a [`TrapCode::OutOfFuel`](crate::core::TrapCode::OutOfFuel) trap is raised.
/// This way users can deterministically halt or yield the execution of WebAssembly code.
///
/// - Use [`Store::add_fuel`](crate::Store::add_fuel) to pour some fuel into the [`Store`] before
/// executing some code as the [`Store`] start with no fuel.
/// - Use [`Caller::consume_fuel`](crate::Caller::consume_fuel) to charge costs for executed host functions.
///
/// Disabled by default.
///
/// [`Store`]: crate::Store
/// [`Engine`]: crate::Engine
pub fn consume_fuel(&mut self, enable: bool) -> &mut Self {
self.consume_fuel = enable;
self
}
/// Returns `true` if the [`Config`] enables fuel consumption by the [`Engine`].
///
/// [`Engine`]: crate::Engine
pub(crate) fn get_consume_fuel(&self) -> bool {
self.consume_fuel
}
/// Returns the configured [`FuelCosts`].
pub(crate) fn fuel_costs(&self) -> &FuelCosts {
&self.fuel_costs
}
/// Configures the [`FuelConsumptionMode`] for the [`Engine`].
///
/// # Note
///
/// This has no effect if fuel metering is disabled for the [`Engine`].
///
/// [`Engine`]: crate::Engine
pub fn fuel_consumption_mode(&mut self, mode: FuelConsumptionMode) -> &mut Self {
self.fuel_consumption_mode = mode;
self
}
pub fn set_fuel_costs(&mut self, costs: FuelCosts) -> &mut Self {
self.fuel_costs = costs;
self
}
/// Returns the [`FuelConsumptionMode`] for the [`Engine`].
///
/// Returns `None` if fuel metering is disabled for the [`Engine`].
///
/// [`Engine`]: crate::Engine
pub(crate) fn get_fuel_consumption_mode(&self) -> Option<FuelConsumptionMode> {
self.get_consume_fuel()
.then_some(self.fuel_consumption_mode)
}
/// Returns the [`WasmFeatures`] represented by the [`Config`].
pub(crate) fn wasm_features(&self) -> WasmFeatures {
WasmFeatures {
multi_value: self.multi_value,
mutable_global: self.mutable_global,
saturating_float_to_int: self.saturating_float_to_int,
sign_extension: self.sign_extension,
bulk_memory: self.bulk_memory,
reference_types: self.reference_types,
tail_call: self.tail_call,
extended_const: self.extended_const,
floats: self.floats,
component_model: false,
simd: false,
relaxed_simd: false,
threads: false,
multi_memory: false,
exceptions: false,
memory64: false,
memory_control: false,
}
}
}