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 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783
use soroban_env_common::{
xdr::{ContractIdPreimage, ScAddress, ScContractInstance, ScErrorCode, ScErrorType},
AddressObject,
};
use crate::{
auth::AuthorizationManagerSnapshot,
budget::AsBudget,
err,
storage::{InstanceStorageMap, StorageMap},
xdr::{ContractCostType, ContractExecutable, Hash, HostFunction, HostFunctionType, ScVal},
Error, Host, HostError, Symbol, SymbolStr, TryFromVal, TryIntoVal, Val,
};
#[cfg(any(test, feature = "testutils"))]
use crate::host::testutils;
#[cfg(any(test, feature = "testutils"))]
use core::cell::RefCell;
#[cfg(any(test, feature = "testutils"))]
use soroban_env_common::xdr::ScMap;
use std::rc::Rc;
use crate::Vm;
use super::{
invoker_type::InvokerType,
metered_clone::{self, MeteredClone},
prng::Prng,
};
/// Determines the re-entry mode for calling a contract.
pub(crate) enum ContractReentryMode {
/// Re-entry is completely prohibited.
Prohibited,
/// Re-entry is allowed, but only directly into the same contract (i.e. it's
/// possible for a contract to do a self-call via host).
SelfAllowed,
/// Re-entry is fully allowed.
Allowed,
}
/// All the contract functions starting with double underscore are considered
/// to be reserved by the Soroban host and can't be directly called by another
/// contracts.
const RESERVED_CONTRACT_FN_PREFIX: &str = "__";
/// Saves host state (storage and objects) for rolling back a (sub-)transaction
/// on error. A helper type used by [`FrameGuard`].
// Notes on metering: `RollbackPoint` are metered under Frame operations
#[derive(Clone)]
pub(super) struct RollbackPoint {
storage: StorageMap,
events: usize,
auth: Option<AuthorizationManagerSnapshot>,
}
#[cfg(any(test, feature = "testutils"))]
pub trait ContractFunctionSet {
fn call(&self, func: &Symbol, host: &Host, args: &[Val]) -> Option<Val>;
}
#[cfg(any(test, feature = "testutils"))]
#[derive(Debug, Clone)]
pub(crate) struct TestContractFrame {
pub(crate) id: Hash,
pub(crate) func: Symbol,
pub(crate) args: Vec<Val>,
pub(crate) panic: Rc<RefCell<Option<Error>>>,
pub(crate) storage: Option<ScMap>,
}
#[cfg(any(test, feature = "testutils"))]
impl TestContractFrame {
pub fn new(id: Hash, func: Symbol, args: Vec<Val>, storage: Option<ScMap>) -> Self {
Self {
id,
func,
args,
panic: Rc::new(RefCell::new(None)),
storage,
}
}
}
/// Context pairs a variable-case [`Frame`] enum with state that's common to all
/// cases (eg. a [`Prng`]).
#[derive(Clone)]
pub(crate) struct Context {
pub(crate) frame: Frame,
prng: Option<Prng>,
pub(crate) storage: Option<InstanceStorageMap>,
}
/// Holds contextual information about a single invocation, either
/// a reference to a contract [`Vm`] or an enclosing [`HostFunction`]
/// invocation.
///
/// Frames are arranged into a stack in [`HostImpl::context`], and are pushed
/// with [`Host::push_frame`], which returns a [`FrameGuard`] that will
/// pop the frame on scope-exit.
///
/// Frames are also the units of (sub-)transactions: each frame captures
/// the host state when it is pushed, and the [`FrameGuard`] will either
/// commit or roll back that state when it pops the stack.
#[derive(Clone)]
pub(crate) enum Frame {
ContractVM(Rc<Vm>, Symbol, Vec<Val>, ScContractInstance),
HostFunction(HostFunctionType),
Token(Hash, Symbol, Vec<Val>, ScContractInstance),
#[cfg(any(test, feature = "testutils"))]
TestContract(TestContractFrame),
}
impl Host {
/// Helper function for [`Host::with_frame`] below. Pushes a new [`Frame`]
/// on the context stack, returning a [`RollbackPoint`] such that if
/// operation fails, it can be used to roll the [`Host`] back to the state
/// it had before its associated [`Frame`] was pushed.
pub(super) fn push_frame(&self, frame: Frame) -> Result<RollbackPoint, HostError> {
// This is a bit hacky, as it relies on re-borrow to occur only during
// the account contract invocations. Instead we should probably call it
// in more explicitly different fashion and check if we're calling it
// instead of a borrow check.
let mut auth_snapshot = None;
if let Ok(mut auth_manager) = self.0.authorization_manager.try_borrow_mut() {
auth_manager.push_frame(self, &frame)?;
auth_snapshot = Some(auth_manager.snapshot());
}
let ctx = Context {
frame,
prng: None,
storage: None,
};
self.0.context.borrow_mut().push(ctx);
Ok(RollbackPoint {
storage: self.0.storage.borrow().map.clone(),
events: self.0.events.borrow().vec.len(),
auth: auth_snapshot,
})
}
/// Helper function for [`Host::with_frame`] below. Pops a [`Frame`] off
/// the current context and optionally rolls back the [`Host`]'s objects
/// and storage map to the state in the provided [`RollbackPoint`].
pub(super) fn pop_frame(&self, orp: Option<RollbackPoint>) -> Result<(), HostError> {
// Instance storage is tied to the frame and only exists in-memory. So
// instead of snapshotting it and rolling it back, we jsut flush the
// changes only when rollback is not needed.
if orp.is_none() {
self.flush_instance_storage()?;
}
self.0
.context
.borrow_mut()
.pop()
.expect("unmatched host frame push/pop");
// This is a bit hacky, as it relies on re-borrow to occur only doing
// the account contract invocations. Instead we should probably call it
// in more explicitly different fashion and check if we're calling it
// instead of a borrow check.
if let Ok(mut auth_manager) = self.0.authorization_manager.try_borrow_mut() {
auth_manager.pop_frame();
}
if self.0.context.borrow().is_empty() {
// When there are no frames left, emulate authentication for the
// recording auth mode. This is a no-op for the enforcing mode.
self.0
.authorization_manager
.borrow_mut()
.maybe_emulate_authentication(self)?;
// Empty call stack in tests means that some contract function call
// has been finished and hence the authorization manager can be reset.
// In non-test scenarios, there should be no need to ever reset
// the authorization manager as the host instance shouldn't be
// shared between the contract invocations.
#[cfg(any(test, feature = "testutils"))]
{
*self.0.previous_authorization_manager.borrow_mut() =
Some(self.0.authorization_manager.borrow().clone());
self.0.authorization_manager.borrow_mut().reset();
}
}
if let Some(rp) = orp {
self.0.storage.borrow_mut().map = rp.storage;
self.0.events.borrow_mut().rollback(rp.events)?;
if let Some(auth_rp) = rp.auth {
self.0.authorization_manager.borrow_mut().rollback(auth_rp);
}
}
Ok(())
}
/// Applies a function to the top [`Frame`] of the context stack. Returns
/// [`HostError`] if the context stack is empty, otherwise returns result of
/// function call.
//
// Notes on metering: aquiring the current frame is cheap and not charged.
// Metering happens in the passed-in closure where actual work is being done.
pub(super) fn with_current_frame<F, U>(&self, f: F) -> Result<U, HostError>
where
F: FnOnce(&Frame) -> Result<U, HostError>,
{
let Ok(context_guard) = self.0.context.try_borrow() else {
return Err(self.err(ScErrorType::Context, ScErrorCode::InternalError, "context is already borrowed", &[]));
};
if let Some(context) = context_guard.last() {
f(&context.frame)
} else {
drop(context_guard);
Err(self.err(
ScErrorType::Context,
ScErrorCode::MissingValue,
"no contract running",
&[],
))
}
}
/// Applies a function to a mutable reference to the top [`Context`] of the
/// context stack. Returns [`HostError`] if the context stack is empty,
/// otherwise returns result of function call.
//
// Notes on metering: aquiring the current frame is cheap and not charged.
// Metering happens in the passed-in closure where actual work is being done.
pub(super) fn with_current_context_mut<F, U>(&self, f: F) -> Result<U, HostError>
where
F: FnOnce(&mut Context) -> Result<U, HostError>,
{
let Ok(mut context_guard) = self.0.context.try_borrow_mut() else {
return Err(self.err(ScErrorType::Context, ScErrorCode::InternalError, "context is already borrowed", &[]));
};
if let Some(context) = context_guard.last_mut() {
f(context)
} else {
drop(context_guard);
Err(self.err(
ScErrorType::Context,
ScErrorCode::MissingValue,
"no contract running",
&[],
))
}
}
/// Same as [`Self::with_current_frame`] but passes `None` when there is no current
/// frame, rather than logging an error.
pub(crate) fn with_current_frame_opt<F, U>(&self, f: F) -> Result<U, HostError>
where
F: FnOnce(Option<&Frame>) -> Result<U, HostError>,
{
let Ok(context_guard) = self.0.context.try_borrow() else {
return Err(self.err(ScErrorType::Context, ScErrorCode::InternalError, "context is already borrowed", &[]));
};
if let Some(context) = context_guard.last() {
f(Some(&context.frame))
} else {
drop(context_guard);
f(None)
}
}
pub(crate) fn with_current_prng<F, U>(&self, f: F) -> Result<U, HostError>
where
F: FnOnce(&mut Prng) -> Result<U, HostError>,
{
// We need to not hold the context borrow-guard over multiple
// error-generating calls here, since they will re-borrow the context to
// report any error. Instead we mem::take the context's PRNG into a
// local variable, and then put it back when we're done.
let mut curr_prng_opt =
self.with_current_context_mut(|ctx| Ok(std::mem::take(&mut ctx.prng)))?;
let res: Result<U, HostError>;
if let Some(p) = &mut curr_prng_opt {
res = f(p)
} else {
let mut base_guard = self.0.base_prng.borrow_mut();
if let Some(base) = base_guard.as_mut() {
match base.sub_prng(self.as_budget()) {
Ok(mut sub_prng) => {
res = f(&mut sub_prng);
curr_prng_opt = Some(sub_prng);
}
Err(e) => res = Err(e),
}
} else {
res = Err(self.err(
ScErrorType::Context,
ScErrorCode::MissingValue,
"host base PRNG was not seeded",
&[],
))
}
}
// Put the (possibly newly-initialized frame PRNG-option back)
self.with_current_context_mut(|ctx| {
ctx.prng = curr_prng_opt;
Ok(())
})?;
res
}
/// Pushes a [`Frame`], runs a closure, and then pops the frame, rolling back
/// if the closure returned an error. Returns the result that the closure
/// returned (or any error caused during the frame push/pop).
// Notes on metering: `GuardFrame` charges on the work done on protecting the `context`.
// It does not cover the cost of the actual closure call. The closure needs to be
// metered separately.
pub(crate) fn with_frame<F>(&self, frame: Frame, f: F) -> Result<Val, HostError>
where
F: FnOnce() -> Result<Val, HostError>,
{
self.charge_budget(ContractCostType::GuardFrame, None)?;
let start_depth = self.0.context.borrow().len();
let rp = self.push_frame(frame)?;
let res = f();
let res = if let Ok(v) = res {
if let Ok(err) = Error::try_from(v) {
Err(self.error(err, "escalating Ok(Error) frame-exit to Err(Error)", &[]))
} else {
Ok(v)
}
} else {
res
};
if res.is_err() {
// Pop and rollback on error.
self.pop_frame(Some(rp))?;
} else {
// Just pop on success.
self.pop_frame(None)?;
}
// Every push and pop should be matched; if not there is a bug.
let end_depth = self.0.context.borrow().len();
assert_eq!(start_depth, end_depth);
res
}
/// Returns [`Hash`] contract ID from the VM frame at the top of the context
/// stack, or a [`HostError`] if the context stack is empty or has a non-VM
/// frame at its top.
pub(crate) fn get_current_contract_id_opt_internal(&self) -> Result<Option<Hash>, HostError> {
self.with_current_frame(|frame| match frame {
Frame::ContractVM(vm, ..) => Ok(Some(vm.contract_id.metered_clone(&self.0.budget)?)),
Frame::HostFunction(_) => Ok(None),
Frame::Token(id, ..) => Ok(Some(id.metered_clone(&self.0.budget)?)),
#[cfg(any(test, feature = "testutils"))]
Frame::TestContract(tc) => Ok(Some(tc.id.clone())),
})
}
/// Returns [`Hash`] contract ID from the VM frame at the top of the context
/// stack, or a [`HostError`] if the context stack is empty or has a non-VM
/// frame at its top.
pub(crate) fn get_current_contract_id_internal(&self) -> Result<Hash, HostError> {
if let Some(id) = self.get_current_contract_id_opt_internal()? {
Ok(id)
} else {
Err(self.err(
ScErrorType::Context,
ScErrorCode::MissingValue,
"Current context has no contract ID",
&[],
))
}
}
pub(crate) fn get_invoking_contract_internal(&self) -> Result<Hash, HostError> {
let frames = self.0.context.borrow();
// the previous frame must exist and must be a contract
let hash = match frames.as_slice() {
[.., c2, _] => match &c2.frame {
Frame::ContractVM(vm, ..) => Ok(vm.contract_id.metered_clone(&self.0.budget)?),
Frame::HostFunction(_) => Err(self.err(
ScErrorType::Context,
ScErrorCode::UnexpectedType,
"invoker is not a contract",
&[],
)),
Frame::Token(id, ..) => Ok(id.clone()),
#[cfg(any(test, feature = "testutils"))]
Frame::TestContract(tc) => Ok(tc.id.clone()), // no metering
},
_ => Err(self.err(
ScErrorType::Context,
ScErrorCode::MissingValue,
"no frames to derive the invoker from",
&[],
)),
}?;
Ok(hash)
}
// Metering: mostly free or already covered by components (e.g. err_general)
pub(super) fn get_invoker_type(&self) -> Result<u64, HostError> {
let frames = self.0.context.borrow();
// If the previous frame exists and is a contract, return its ID, otherwise return
// the account invoking.
let st = match frames.as_slice() {
// There are always two frames when WASM is executed in the VM.
[.., c2, _] => match &c2.frame {
Frame::ContractVM(..) => Ok(InvokerType::Contract),
Frame::HostFunction(_) => Ok(InvokerType::Account),
Frame::Token(..) => Ok(InvokerType::Contract),
#[cfg(any(test, feature = "testutils"))]
Frame::TestContract(_) => Ok(InvokerType::Contract),
},
// In tests contracts are executed with a single frame.
// TODO: Investigate this discrepancy: https://github.com/stellar/rs-soroban-env/issues/485.
[_] => Ok(InvokerType::Account),
_ => Err(self.err(
ScErrorType::Context,
ScErrorCode::InternalError,
"no frames to derive the invoker from",
&[],
)),
}?;
Ok(st as u64)
}
/// Pushes a test contract [`Frame`], runs a closure, and then pops the
/// frame, rolling back if the closure returned an error. Returns the result
/// that the closure returned (or any error caused during the frame
/// push/pop). Used for testing.
#[cfg(any(test, feature = "testutils"))]
pub fn with_test_contract_frame<F>(
&self,
id: Hash,
func: Symbol,
f: F,
) -> Result<Val, HostError>
where
F: FnOnce() -> Result<Val, HostError>,
{
self.with_frame(
Frame::TestContract(TestContractFrame::new(id, func, vec![], None)),
f,
)
}
// Notes on metering: this is covered by the called components.
fn call_contract_fn(&self, id: &Hash, func: &Symbol, args: &[Val]) -> Result<Val, HostError> {
// Create key for storage
let storage_key = self.contract_instance_ledger_key(id)?;
let contract_instance = self.retrieve_contract_instance_from_storage(&storage_key)?;
match &contract_instance.executable {
ContractExecutable::Wasm(wasm_hash) => {
let code_entry = self.retrieve_wasm_from_storage(&wasm_hash)?;
let vm = Vm::new(
self,
id.metered_clone(&self.0.budget)?,
code_entry.as_slice(),
)?;
self.with_frame(
Frame::ContractVM(vm.clone(), *func, args.to_vec(), contract_instance),
|| vm.invoke_function_raw(self, func, args),
)
}
ContractExecutable::Token => self.with_frame(
Frame::Token(id.clone(), *func, args.to_vec(), contract_instance),
|| {
use crate::native_contract::{NativeContract, Token};
Token.call(func, self, args)
},
),
}
}
// Notes on metering: this is covered by the called components.
pub(crate) fn call_n_internal(
&self,
id: &Hash,
func: Symbol,
args: &[Val],
reentry_mode: ContractReentryMode,
internal_host_call: bool,
) -> Result<Val, HostError> {
// Internal host calls may call some special functions that otherwise
// aren't allowed to be called.
if !internal_host_call
&& SymbolStr::try_from_val(self, &func)?
.to_string()
.as_str()
.starts_with(RESERVED_CONTRACT_FN_PREFIX)
{
return Err(self.err(
ScErrorType::Context,
ScErrorCode::InvalidAction,
"can't invoke a reserved function directly",
&[func.to_val()],
));
}
if !matches!(reentry_mode, ContractReentryMode::Allowed) {
let mut is_last_non_host_frame = true;
for ctx in self.0.context.borrow().iter().rev() {
let exist_id = match &ctx.frame {
Frame::ContractVM(vm, ..) => &vm.contract_id,
Frame::Token(id, ..) => id,
#[cfg(any(test, feature = "testutils"))]
Frame::TestContract(tc) => &tc.id,
Frame::HostFunction(_) => continue,
};
if id == exist_id {
if matches!(reentry_mode, ContractReentryMode::SelfAllowed)
&& is_last_non_host_frame
{
is_last_non_host_frame = false;
continue;
}
return Err(self.err(
ScErrorType::Context,
ScErrorCode::InvalidAction,
"Contract re-entry is not allowed",
&[],
));
}
is_last_non_host_frame = false;
}
}
self.fn_call_diagnostics(id, &func, args)?;
// "testutils" is not covered by budget metering.
#[cfg(any(test, feature = "testutils"))]
{
// This looks a little un-idiomatic, but this avoids maintaining a borrow of
// self.0.contracts. Implementing it as
//
// if let Some(cfs) = self.0.contracts.borrow().get(&id).cloned() { ... }
//
// maintains a borrow of self.0.contracts, which can cause borrow errors.
let cfs_option = self.0.contracts.borrow().get(&id).cloned();
if let Some(cfs) = cfs_option {
let instance_key = self.contract_instance_ledger_key(&id)?;
let storage = self
.retrieve_contract_instance_from_storage(&instance_key)
.map_or(None, |i| i.storage);
let frame = TestContractFrame::new(id.clone(), func, args.to_vec(), storage);
let panic = frame.panic.clone();
return self.with_frame(Frame::TestContract(frame), || {
use std::any::Any;
use std::panic::AssertUnwindSafe;
type PanicVal = Box<dyn Any + Send>;
// We're directly invoking a native rust contract here,
// which we allow only in local testing scenarios, and we
// want it to behave as close to the way it would behave if
// the contract were actually compiled to WASM and running
// in a VM.
//
// In particular: if the contract function panics, if it
// were WASM it would cause the VM to trap, so we do
// something "as similar as we can" in the native case here,
// catch the native panic and attempt to continue by
// translating the panic back to an error, so that
// `with_frame` will rollback the host to its pre-call state
// (as best it can) and propagate the error to its caller
// (which might be another contract doing try_call).
//
// This is somewhat best-effort, but it's compiled-out when
// building a host for production use, so we're willing to
// be a bit forgiving.
let closure = AssertUnwindSafe(move || cfs.call(&func, self, args));
let res: Result<Option<Val>, PanicVal> =
testutils::call_with_suppressed_panic_hook(closure);
match res {
Ok(Some(rawval)) => {
self.fn_return_diagnostics(id, &func, &rawval)?;
Ok(rawval)
}
Ok(None) => Err(self.err(
ScErrorType::Context,
ScErrorCode::MissingValue,
"calling unknown contract function",
&[func.to_val()],
)),
Err(panic_payload) => {
// Return an error indicating the contract function
// panicked. If if was a panic generated by a
// Env-upgraded HostError, it had its status
// captured by VmCallerEnv::escalate_error_to_panic:
// fish the Error stored in the frame back out and
// propagate it.
let func: Val = func.into();
let mut error: Error = Error::from_type_and_code(
ScErrorType::Context,
ScErrorCode::InternalError,
);
if let Some(err) = *panic.borrow() {
error = err;
}
// If we're allowed to record dynamic strings (which happens
// when diagnostics are active), also log the panic payload into
// the Debug buffer.
else if self.is_debug() {
if let Some(str) = panic_payload.downcast_ref::<&str>() {
let msg: String = format!(
"caught panic '{}' from contract function '{:?}'",
str, func
);
let _ = self.log_diagnostics(&msg, args);
} else if let Some(str) = panic_payload.downcast_ref::<String>() {
let msg: String = format!(
"caught panic '{}' from contract function '{:?}'",
str, func
);
let _ = self.log_diagnostics(&msg, args);
}
}
Err(self.error(error, "caught error from function", &[]))
}
}
});
}
}
let res = self.call_contract_fn(id, &func, args);
match &res {
Ok(res) => self.fn_return_diagnostics(id, &func, res)?,
Err(err) => {}
}
res
}
// Notes on metering: covered by the called components.
fn invoke_function_raw(&self, hf: HostFunction) -> Result<Val, HostError> {
let hf_type = hf.discriminant();
match hf {
HostFunction::InvokeContract(args) => {
if let [ScVal::Address(ScAddress::Contract(contract_id)), ScVal::Symbol(scsym), rest @ ..] =
args.as_slice()
{
self.with_frame(Frame::HostFunction(hf_type), || {
// Metering: conversions to host objects are covered. Cost of collecting
// Vals into Vec is ignored. Since 1. Vals are cheap to clone 2. the
// max number of args is fairly limited.
let symbol: Symbol = scsym.as_slice().try_into_val(self)?;
let args = self.scvals_to_rawvals(rest)?;
// since the `HostFunction` frame must be the bottom of the call stack,
// reentry is irrelevant, we always pass in `ContractReentryMode::Prohibited`.
self.call_n_internal(
contract_id,
symbol,
&args[..],
ContractReentryMode::Prohibited,
false,
)
})
} else {
Err(err!(
self,
(ScErrorType::Context, ScErrorCode::UnexpectedSize),
"unexpected number of arguments to 'call' host function",
args.len()
))
}
}
HostFunction::CreateContract(args) => {
self.with_frame(Frame::HostFunction(hf_type), || {
let deployer: Option<AddressObject> = match &args.contract_id_preimage {
ContractIdPreimage::Address(preimage_from_addr) => Some(
self.add_host_object(
preimage_from_addr
.address
.metered_clone(self.budget_ref())?,
)?,
),
ContractIdPreimage::Asset(_) => None,
};
self.create_contract_internal(deployer, args)
.map(<Val>::from)
})
}
HostFunction::UploadContractWasm(wasm) => self
.with_frame(Frame::HostFunction(hf_type), || {
self.upload_contract_wasm(wasm.to_vec()).map(<Val>::from)
}),
}
}
// Notes on metering: covered by the called components.
pub fn invoke_function(&self, hf: HostFunction) -> Result<ScVal, HostError> {
let rv = self.invoke_function_raw(hf)?;
self.from_host_val(rv)
}
pub(crate) fn maybe_init_instance_storage(&self, ctx: &mut Context) -> Result<(), HostError> {
// Lazily initialize the storage on first access - it's not free and
// not every contract will use it.
if ctx.storage.is_some() {
return Ok(());
}
let storage_map = match &ctx.frame {
Frame::ContractVM(_, _, _, instance) => &instance.storage,
Frame::HostFunction(_) => {
return Err(self.err(
ScErrorType::Context,
ScErrorCode::InvalidAction,
"can't access instance storage from host function",
&[],
))
}
Frame::Token(_, _, _, instance) => &instance.storage,
#[cfg(any(test, feature = "testutils"))]
Frame::TestContract(t) => &t.storage,
};
ctx.storage = Some(InstanceStorageMap::from_map(
storage_map.as_ref().map_or_else(
|| Ok(vec![]),
|m| {
metered_clone::charge_heap_alloc::<(Val, Val)>(
m.len() as u64,
self.budget_ref(),
)?;
m.iter()
.map(|i| Ok((self.to_host_val(&i.key)?, self.to_host_val(&i.val)?)))
.collect::<Result<Vec<(Val, Val)>, HostError>>()
},
)?,
self,
)?);
Ok(())
}
fn flush_instance_storage(&self) -> Result<(), HostError> {
let updated_instance = self.with_current_context_mut(|ctx| {
if let Some(storage) = &ctx.storage {
if !storage.is_modified {
return Ok(None);
}
let executable = match &ctx.frame {
Frame::ContractVM(_, _, _, instance) => {
instance.executable.metered_clone(self.budget_ref())?
}
Frame::HostFunction(_) => {
return Err(self.err(
ScErrorType::Context,
ScErrorCode::InternalError,
"unexpected storage for host fn",
&[],
))
}
Frame::Token(_, _, _, instance) => {
instance.executable.metered_clone(self.budget_ref())?
}
// Mock executable for test contract 'instances'. This is
// just a placeholder - it's not used for actually calling
// the test contracts.
#[cfg(any(test, feature = "testutils"))]
Frame::TestContract(t) => ContractExecutable::Wasm(Hash(Default::default())),
};
Ok(Some(ScContractInstance {
executable,
storage: Some(self.host_map_to_scmap(&storage.map)?),
}))
} else {
Ok(None)
}
})?;
if let Some(updated_instance) = updated_instance {
let contract_id = self
.get_current_contract_id_opt_internal()?
.ok_or_else(|| {
self.err(
ScErrorType::Context,
ScErrorCode::InternalError,
"unexpected missing contract for instance storage",
&[],
)
})?;
let key = self.contract_instance_ledger_key(&contract_id)?;
self.store_contract_instance(updated_instance, contract_id, &key)?;
}
Ok(())
}
}