-
Notifications
You must be signed in to change notification settings - Fork 372
/
Copy pathinstance.rs
1126 lines (981 loc) · 41.1 KB
/
instance.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
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
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
use std::cell::RefCell;
use std::collections::{HashMap, HashSet};
use std::ptr::NonNull;
use std::rc::Rc;
use std::sync::Mutex;
use wasmer::{
Exports, Function, FunctionEnv, Imports, Instance as WasmerInstance, Module, Store, Value,
};
use crate::backend::{Backend, BackendApi, Querier, Storage};
use crate::capabilities::required_capabilities_from_module;
use crate::conversion::{ref_to_u32, to_u32};
use crate::environment::Environment;
use crate::errors::{CommunicationError, VmError, VmResult};
use crate::imports::{
do_abort, do_addr_canonicalize, do_addr_humanize, do_addr_validate, do_db_read, do_db_remove,
do_db_write, do_debug, do_ed25519_batch_verify, do_ed25519_verify, do_query_chain,
do_secp256k1_recover_pubkey, do_secp256k1_verify,
};
#[cfg(feature = "iterator")]
use crate::imports::{do_db_next, do_db_scan};
use crate::memory::{read_region, write_region};
use crate::size::Size;
use crate::wasm_backend::{compile, make_store_with_engine};
pub use crate::environment::DebugInfo; // Re-exported as public via to be usable for set_debug_handler
#[derive(Copy, Clone, Debug)]
pub struct GasReport {
/// The original limit the instance was created with
pub limit: u64,
/// The remaining gas that can be spend
pub remaining: u64,
/// The amount of gas that was spend and metered externally in operations triggered by this instance
pub used_externally: u64,
/// The amount of gas that was spend and metered internally (i.e. by executing Wasm and calling
/// API methods which are not metered externally)
pub used_internally: u64,
}
#[derive(Copy, Clone, Debug)]
pub struct InstanceOptions {
/// Gas limit measured in [CosmWasm gas](https://github.com/CosmWasm/cosmwasm/blob/main/docs/GAS.md).
pub gas_limit: u64,
pub print_debug: bool,
}
pub struct Instance<A: BackendApi, S: Storage, Q: Querier> {
/// We put this instance in a box to maintain a constant memory address for the entire
/// lifetime of the instance in the cache. This is needed e.g. when linking the wasmer
/// instance to a context. See also https://github.com/CosmWasm/cosmwasm/pull/245.
///
/// This instance should only be accessed via the Environment, which provides safe access.
_inner: Box<WasmerInstance>,
fe: FunctionEnv<Environment<A, S, Q>>,
store: Store,
}
impl<A, S, Q> Instance<A, S, Q>
where
A: BackendApi + 'static, // 'static is needed here to allow copying API instances into closures
S: Storage + 'static, // 'static is needed here to allow using this in an Environment that is cloned into closures
Q: Querier + 'static, // 'static is needed here to allow using this in an Environment that is cloned into closures
{
/// This is the only Instance constructor that can be called from outside of cosmwasm-vm,
/// e.g. in test code that needs a customized variant of cosmwasm_vm::testing::mock_instance*.
pub fn from_code(
code: &[u8],
backend: Backend<A, S, Q>,
options: InstanceOptions,
memory_limit: Option<Size>,
) -> VmResult<Self> {
let (engine, module) = compile(code, &[])?;
let store = make_store_with_engine(engine, memory_limit);
Instance::from_module(
store,
&module,
backend,
options.gas_limit,
options.print_debug,
None,
None,
)
}
#[allow(clippy::too_many_arguments)]
pub(crate) fn from_module(
mut store: Store,
module: &Module,
backend: Backend<A, S, Q>,
gas_limit: u64,
print_debug: bool,
extra_imports: Option<HashMap<&str, Exports>>,
instantiation_lock: Option<&Mutex<()>>,
) -> VmResult<Self> {
let fe = FunctionEnv::new(&mut store, {
let e = Environment::new(backend.api, gas_limit);
if print_debug {
e.set_debug_handler(Some(Rc::new(RefCell::new(
|msg: &str, _gas_remaining: DebugInfo<'_>| {
eprintln!("{msg}");
},
))))
}
e
});
let mut import_obj = Imports::new();
let mut env_imports = Exports::new();
// Reads the database entry at the given key into the the value.
// Returns 0 if key does not exist and pointer to result region otherwise.
// Ownership of the key pointer is not transferred to the host.
// Ownership of the value pointer is transferred to the contract.
env_imports.insert(
"db_read",
Function::new_typed_with_env(&mut store, &fe, do_db_read),
);
// Writes the given value into the database entry at the given key.
// Ownership of both input and output pointer is not transferred to the host.
env_imports.insert(
"db_write",
Function::new_typed_with_env(&mut store, &fe, do_db_write),
);
// Removes the value at the given key. Different than writing &[] as future
// scans will not find this key.
// At the moment it is not possible to differentiate between a key that existed before and one that did not exist (https://github.com/CosmWasm/cosmwasm/issues/290).
// Ownership of both key pointer is not transferred to the host.
env_imports.insert(
"db_remove",
Function::new_typed_with_env(&mut store, &fe, do_db_remove),
);
// Reads human address from source_ptr and checks if it is valid.
// Returns 0 on if the input is valid. Returns a non-zero memory location to a Region containing an UTF-8 encoded error string for invalid inputs.
// Ownership of the input pointer is not transferred to the host.
env_imports.insert(
"addr_validate",
Function::new_typed_with_env(&mut store, &fe, do_addr_validate),
);
// Reads human address from source_ptr and writes canonicalized representation to destination_ptr.
// A prepared and sufficiently large memory Region is expected at destination_ptr that points to pre-allocated memory.
// Returns 0 on success. Returns a non-zero memory location to a Region containing an UTF-8 encoded error string for invalid inputs.
// Ownership of both input and output pointer is not transferred to the host.
env_imports.insert(
"addr_canonicalize",
Function::new_typed_with_env(&mut store, &fe, do_addr_canonicalize),
);
// Reads canonical address from source_ptr and writes humanized representation to destination_ptr.
// A prepared and sufficiently large memory Region is expected at destination_ptr that points to pre-allocated memory.
// Returns 0 on success. Returns a non-zero memory location to a Region containing an UTF-8 encoded error string for invalid inputs.
// Ownership of both input and output pointer is not transferred to the host.
env_imports.insert(
"addr_humanize",
Function::new_typed_with_env(&mut store, &fe, do_addr_humanize),
);
// Verifies message hashes against a signature with a public key, using the secp256k1 ECDSA parametrization.
// Returns 0 on verification success, 1 on verification failure, and values greater than 1 in case of error.
// Ownership of input pointers is not transferred to the host.
env_imports.insert(
"secp256k1_verify",
Function::new_typed_with_env(&mut store, &fe, do_secp256k1_verify),
);
env_imports.insert(
"secp256k1_recover_pubkey",
Function::new_typed_with_env(&mut store, &fe, do_secp256k1_recover_pubkey),
);
// Verifies a message against a signature with a public key, using the ed25519 EdDSA scheme.
// Returns 0 on verification success, 1 on verification failure, and values greater than 1 in case of error.
// Ownership of input pointers is not transferred to the host.
env_imports.insert(
"ed25519_verify",
Function::new_typed_with_env(&mut store, &fe, do_ed25519_verify),
);
// Verifies a batch of messages against a batch of signatures with a batch of public keys,
// using the ed25519 EdDSA scheme.
// Returns 0 on verification success (all batches verify correctly), 1 on verification failure, and values
// greater than 1 in case of error.
// Ownership of input pointers is not transferred to the host.
env_imports.insert(
"ed25519_batch_verify",
Function::new_typed_with_env(&mut store, &fe, do_ed25519_batch_verify),
);
// Allows the contract to emit debug logs that the host can either process or ignore.
// This is never written to chain.
// Takes a pointer argument of a memory region that must contain an UTF-8 encoded string.
// Ownership of both input and output pointer is not transferred to the host.
env_imports.insert(
"debug",
Function::new_typed_with_env(&mut store, &fe, do_debug),
);
// Aborts the contract execution with an error message provided by the contract.
// Takes a pointer argument of a memory region that must contain an UTF-8 encoded string.
// Ownership of both input and output pointer is not transferred to the host.
env_imports.insert(
"abort",
Function::new_typed_with_env(&mut store, &fe, do_abort),
);
env_imports.insert(
"query_chain",
Function::new_typed_with_env(&mut store, &fe, do_query_chain),
);
// Creates an iterator that will go from start to end.
// If start_ptr == 0, the start is unbounded.
// If end_ptr == 0, the end is unbounded.
// Order is defined in cosmwasm_std::Order and may be 1 (ascending) or 2 (descending). All other values result in an error.
// Ownership of both start and end pointer is not transferred to the host.
// Returns an iterator ID.
#[cfg(feature = "iterator")]
env_imports.insert(
"db_scan",
Function::new_typed_with_env(&mut store, &fe, do_db_scan),
);
// Get next element of iterator with ID `iterator_id`.
// Creates a region containing both key and value and returns its address.
// Ownership of the result region is transferred to the contract.
// The KV region uses the format value || key || keylen, where keylen is a fixed size big endian u32 value.
// An empty key (i.e. KV region ends with \0\0\0\0) means no more element, no matter what the value is.
#[cfg(feature = "iterator")]
env_imports.insert(
"db_next",
Function::new_typed_with_env(&mut store, &fe, do_db_next),
);
import_obj.register_namespace("env", env_imports);
if let Some(extra_imports) = extra_imports {
for (namespace, exports_obj) in extra_imports {
import_obj.register_namespace(namespace, exports_obj);
}
}
let wasmer_instance = Box::from(
{
let _lock = instantiation_lock.map(|l| l.lock().unwrap());
WasmerInstance::new(&mut store, module, &import_obj)
}
.map_err(|original| {
VmError::instantiation_err(format!("Error instantiating module: {original}"))
})?,
);
let memory = wasmer_instance
.exports
.get_memory("memory")
.map_err(|original| {
VmError::instantiation_err(format!("Could not get memory 'memory': {original}"))
})?
.clone();
let instance_ptr = NonNull::from(wasmer_instance.as_ref());
{
let mut fe_mut = fe.clone().into_mut(&mut store);
let (env, mut store) = fe_mut.data_and_store_mut();
env.memory = Some(memory);
env.set_wasmer_instance(Some(instance_ptr));
env.set_gas_left(&mut store, gas_limit);
let remaining_points = wasmer_instance
.exports
.get_global("wasmer_metering_remaining_points");
let points_exhausted = wasmer_instance
.exports
.get_global("wasmer_metering_points_exhausted");
env.set_global(
remaining_points.unwrap().clone(),
points_exhausted.unwrap().clone(),
);
env.move_in(backend.storage, backend.querier);
}
Ok(Instance {
_inner: wasmer_instance,
fe,
store,
})
}
pub fn api(&self) -> &A {
&self.fe.as_ref(&self.store).api
}
/// Decomposes this instance into its components.
/// External dependencies are returned for reuse, the rest is dropped.
pub fn recycle(self) -> Option<Backend<A, S, Q>> {
let Instance {
_inner, fe, store, ..
} = self;
let env = fe.as_ref(&store);
if let (Some(storage), Some(querier)) = env.move_out() {
let api = env.api;
Some(Backend {
api,
storage,
querier,
})
} else {
None
}
}
pub fn set_debug_handler<H>(&mut self, debug_handler: H)
where
H: for<'a, 'b> FnMut(/* msg */ &'a str, DebugInfo<'b>) + 'static,
{
self.fe
.as_ref(&self.store)
.set_debug_handler(Some(Rc::new(RefCell::new(debug_handler))));
}
pub fn unset_debug_handler(&mut self) {
self.fe.as_ref(&self.store).set_debug_handler(None);
}
/// Returns the features required by this contract.
///
/// This is not needed for production because we can do static analysis
/// on the Wasm file before instatiation to obtain this information. It's
/// only kept because it can be handy for integration testing.
pub fn required_capabilities(&self) -> HashSet<String> {
required_capabilities_from_module(self._inner.module())
}
/// Returns the size of the default memory in pages.
/// This provides a rough idea of the peak memory consumption. Note that
/// Wasm memory always grows in 64 KiB steps (pages) and can never shrink
/// (https://github.com/WebAssembly/design/issues/1300#issuecomment-573867836).
pub fn memory_pages(&mut self) -> usize {
let mut fe_mut = self.fe.clone().into_mut(&mut self.store);
let (env, mut store) = fe_mut.data_and_store_mut();
env.memory(&mut store).size().0 as _
}
/// Returns the currently remaining gas.
pub fn get_gas_left(&mut self) -> u64 {
let mut fe_mut = self.fe.clone().into_mut(&mut self.store);
let (env, mut store) = fe_mut.data_and_store_mut();
env.get_gas_left(&mut store)
}
/// Creates and returns a gas report.
/// This is a snapshot and multiple reports can be created during the lifetime of
/// an instance.
pub fn create_gas_report(&mut self) -> GasReport {
let mut fe_mut = self.fe.clone().into_mut(&mut self.store);
let (env, mut store) = fe_mut.data_and_store_mut();
let state = env.with_gas_state(|gas_state| gas_state.clone());
let gas_left = env.get_gas_left(&mut store);
GasReport {
limit: state.gas_limit,
remaining: gas_left,
used_externally: state.externally_used_gas,
// If externally_used_gas exceeds the gas limit, this will return 0.
// no matter how much gas was used internally. But then we error with out of gas
// anyways, and it does not matter much anymore where gas was spend.
used_internally: state
.gas_limit
.saturating_sub(state.externally_used_gas)
.saturating_sub(gas_left),
}
}
pub fn is_storage_readonly(&mut self) -> bool {
let mut fe_mut = self.fe.clone().into_mut(&mut self.store);
let (env, _) = fe_mut.data_and_store_mut();
env.is_storage_readonly()
}
/// Sets the readonly storage flag on this instance. Since one instance can be used
/// for multiple calls in integration tests, this should be set to the desired value
/// right before every call.
pub fn set_storage_readonly(&mut self, new_value: bool) {
let mut fe_mut = self.fe.clone().into_mut(&mut self.store);
let (env, _) = fe_mut.data_and_store_mut();
env.set_storage_readonly(new_value);
}
pub fn with_storage<F: FnOnce(&mut S) -> VmResult<T>, T>(&mut self, func: F) -> VmResult<T> {
self.fe
.as_ref(&self.store)
.with_storage_from_context::<F, T>(func)
}
pub fn with_querier<F: FnOnce(&mut Q) -> VmResult<T>, T>(&mut self, func: F) -> VmResult<T> {
self.fe
.as_ref(&self.store)
.with_querier_from_context::<F, T>(func)
}
/// Requests memory allocation by the instance and returns a pointer
/// in the Wasm address space to the created Region object.
pub(crate) fn allocate(&mut self, size: usize) -> VmResult<u32> {
let ret = self.call_function1("allocate", &[to_u32(size)?.into()])?;
let ptr = ref_to_u32(&ret)?;
if ptr == 0 {
return Err(CommunicationError::zero_address().into());
}
Ok(ptr)
}
// deallocate frees memory in the instance and that was either previously
// allocated by us, or a pointer from a return value after we copy it into rust.
// we need to clean up the wasm-side buffers to avoid memory leaks
pub(crate) fn deallocate(&mut self, ptr: u32) -> VmResult<()> {
self.call_function0("deallocate", &[ptr.into()])?;
Ok(())
}
/// Copies all data described by the Region at the given pointer from Wasm to the caller.
pub(crate) fn read_memory(&mut self, region_ptr: u32, max_length: usize) -> VmResult<Vec<u8>> {
let mut fe_mut = self.fe.clone().into_mut(&mut self.store);
let (env, mut store) = fe_mut.data_and_store_mut();
read_region(&env.memory(&mut store), region_ptr, max_length)
}
/// Copies data to the memory region that was created before using allocate.
pub(crate) fn write_memory(&mut self, region_ptr: u32, data: &[u8]) -> VmResult<()> {
let mut fe_mut = self.fe.clone().into_mut(&mut self.store);
let (env, mut store) = fe_mut.data_and_store_mut();
write_region(&env.memory(&mut store), region_ptr, data)?;
Ok(())
}
/// Calls a function exported by the instance.
/// The function is expected to return no value. Otherwise this calls errors.
pub(crate) fn call_function0(&mut self, name: &str, args: &[Value]) -> VmResult<()> {
let mut fe_mut = self.fe.clone().into_mut(&mut self.store);
let (env, mut store) = fe_mut.data_and_store_mut();
env.call_function0(&mut store, name, args)
}
/// Calls a function exported by the instance.
/// The function is expected to return one value. Otherwise this calls errors.
pub(crate) fn call_function1(&mut self, name: &str, args: &[Value]) -> VmResult<Value> {
let mut fe_mut = self.fe.clone().into_mut(&mut self.store);
let (env, mut store) = fe_mut.data_and_store_mut();
env.call_function1(&mut store, name, args)
}
}
/// This exists only to be exported through `internals` for use by crates that are
/// part of Cosmwasm.
pub fn instance_from_module<A, S, Q>(
store: Store,
module: &Module,
backend: Backend<A, S, Q>,
gas_limit: u64,
print_debug: bool,
extra_imports: Option<HashMap<&str, Exports>>,
) -> VmResult<Instance<A, S, Q>>
where
A: BackendApi + 'static, // 'static is needed here to allow copying API instances into closures
S: Storage + 'static, // 'static is needed here to allow using this in an Environment that is cloned into closures
Q: Querier + 'static,
{
Instance::from_module(
store,
module,
backend,
gas_limit,
print_debug,
extra_imports,
None,
)
}
#[cfg(test)]
mod tests {
use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::Arc;
use std::time::SystemTime;
use super::*;
use crate::backend::Storage;
use crate::calls::{call_execute, call_instantiate, call_query};
use crate::errors::VmError;
use crate::testing::{
mock_backend, mock_env, mock_info, mock_instance, mock_instance_options,
mock_instance_with_balances, mock_instance_with_failing_api, mock_instance_with_gas_limit,
mock_instance_with_options, MockInstanceOptions,
};
use cosmwasm_std::{
coin, coins, from_binary, AllBalanceResponse, BalanceResponse, BankQuery, Empty,
QueryRequest,
};
use wasmer::{FunctionEnv, FunctionEnvMut};
const KIB: usize = 1024;
const MIB: usize = 1024 * 1024;
const DEFAULT_QUERY_GAS_LIMIT: u64 = 300_000;
static CONTRACT: &[u8] = include_bytes!("../testdata/hackatom.wasm");
static CYBERPUNK: &[u8] = include_bytes!("../testdata/cyberpunk.wasm");
#[test]
fn from_code_works() {
let backend = mock_backend(&[]);
let (instance_options, memory_limit) = mock_instance_options();
let _instance =
Instance::from_code(CONTRACT, backend, instance_options, memory_limit).unwrap();
}
#[test]
fn set_debug_handler_and_unset_debug_handler_work() {
const LIMIT: u64 = 70_000_000_000_000;
let mut instance = mock_instance_with_gas_limit(CYBERPUNK, LIMIT);
// init contract
let info = mock_info("creator", &coins(1000, "earth"));
call_instantiate::<_, _, _, Empty>(&mut instance, &mock_env(), &info, br#"{}"#)
.unwrap()
.unwrap();
let info = mock_info("caller", &[]);
call_execute::<_, _, _, Empty>(&mut instance, &mock_env(), &info, br#"{"debug":{}}"#)
.unwrap()
.unwrap();
let start = SystemTime::now();
instance.set_debug_handler(move |msg, info| {
let gas = info.gas_remaining;
let runtime = SystemTime::now().duration_since(start).unwrap().as_micros();
eprintln!("{msg} (gas: {gas}, runtime: {runtime}µs)");
});
let info = mock_info("caller", &[]);
call_execute::<_, _, _, Empty>(&mut instance, &mock_env(), &info, br#"{"debug":{}}"#)
.unwrap()
.unwrap();
eprintln!("Unsetting debug handler. From here nothing is printed anymore.");
instance.unset_debug_handler();
let info = mock_info("caller", &[]);
call_execute::<_, _, _, Empty>(&mut instance, &mock_env(), &info, br#"{"debug":{}}"#)
.unwrap()
.unwrap();
}
#[test]
fn required_capabilities_works() {
let backend = mock_backend(&[]);
let (instance_options, memory_limit) = mock_instance_options();
let instance =
Instance::from_code(CONTRACT, backend, instance_options, memory_limit).unwrap();
assert_eq!(instance.required_capabilities().len(), 0);
}
#[test]
fn required_capabilities_works_for_many_exports() {
let wasm = wat::parse_str(
r#"(module
(memory 3)
(export "memory" (memory 0))
(type (func))
(func (type 0) nop)
(export "requires_water" (func 0))
(export "requires_" (func 0))
(export "requires_nutrients" (func 0))
(export "require_milk" (func 0))
(export "REQUIRES_air" (func 0))
(export "requires_sun" (func 0))
)"#,
)
.unwrap();
let backend = mock_backend(&[]);
let (instance_options, memory_limit) = mock_instance_options();
let instance = Instance::from_code(&wasm, backend, instance_options, memory_limit).unwrap();
assert_eq!(instance.required_capabilities().len(), 3);
assert!(instance.required_capabilities().contains("nutrients"));
assert!(instance.required_capabilities().contains("sun"));
assert!(instance.required_capabilities().contains("water"));
}
#[test]
fn extra_imports_get_added() {
let wasm = wat::parse_str(
r#"(module
(import "foo" "bar" (func $bar))
(memory 3)
(export "memory" (memory 0))
(func (export "main") (call $bar))
)"#,
)
.unwrap();
let backend = mock_backend(&[]);
let (instance_options, memory_limit) = mock_instance_options();
let (engine, module) = compile(&wasm, &[]).unwrap();
let mut store = make_store_with_engine(engine, memory_limit);
let called = Arc::new(AtomicBool::new(false));
#[derive(Clone)]
struct MyEnv {
// This can be mutated across threads safely. We initialize it as `false`
// and let our imported fn switch it to `true` to confirm it works.
called: Arc<AtomicBool>,
}
let fe = FunctionEnv::new(
&mut store,
MyEnv {
called: called.clone(),
},
);
let fun =
Function::new_typed_with_env(&mut store, &fe, move |fe_mut: FunctionEnvMut<MyEnv>| {
fe_mut.data().called.store(true, Ordering::Relaxed);
});
let mut exports = Exports::new();
exports.insert("bar", fun);
let mut extra_imports = HashMap::new();
extra_imports.insert("foo", exports);
let mut instance = Instance::from_module(
store,
&module,
backend,
instance_options.gas_limit,
false,
Some(extra_imports),
None,
)
.unwrap();
instance.call_function0("main", &[]).unwrap();
assert!(called.load(Ordering::Relaxed));
}
#[test]
fn call_function0_works() {
let mut instance = mock_instance(CONTRACT, &[]);
instance
.call_function0("interface_version_8", &[])
.expect("error calling function");
}
#[test]
fn call_function1_works() {
let mut instance = mock_instance(CONTRACT, &[]);
// can call function few times
let result = instance
.call_function1("allocate", &[0u32.into()])
.expect("error calling allocate");
assert_ne!(result.unwrap_i32(), 0);
let result = instance
.call_function1("allocate", &[1u32.into()])
.expect("error calling allocate");
assert_ne!(result.unwrap_i32(), 0);
let result = instance
.call_function1("allocate", &[33u32.into()])
.expect("error calling allocate");
assert_ne!(result.unwrap_i32(), 0);
}
#[test]
fn allocate_deallocate_works() {
let mut instance = mock_instance_with_options(
CONTRACT,
MockInstanceOptions {
memory_limit: Some(Size::mebi(500)),
..Default::default()
},
);
let sizes: Vec<usize> = vec![
0,
4,
40,
400,
4 * KIB,
40 * KIB,
400 * KIB,
4 * MIB,
40 * MIB,
400 * MIB,
];
for size in sizes.into_iter() {
let region_ptr = instance.allocate(size).expect("error allocating");
instance.deallocate(region_ptr).expect("error deallocating");
}
}
#[test]
fn write_and_read_memory_works() {
let mut instance = mock_instance(CONTRACT, &[]);
let sizes: Vec<usize> = vec![
0,
4,
40,
400,
4 * KIB,
40 * KIB,
400 * KIB,
4 * MIB,
// disabled for performance reasons, but pass as well
// 40 * MIB,
// 400 * MIB,
];
for size in sizes.into_iter() {
let region_ptr = instance.allocate(size).expect("error allocating");
let original = vec![170u8; size];
instance
.write_memory(region_ptr, &original)
.expect("error writing");
let data = instance
.read_memory(region_ptr, size)
.expect("error reading");
assert_eq!(data, original);
instance.deallocate(region_ptr).expect("error deallocating");
}
}
#[test]
fn errors_in_imports() {
// set up an instance that will experience an error in an import
let error_message = "Api failed intentionally";
let mut instance = mock_instance_with_failing_api(CONTRACT, &[], error_message);
let init_result = call_instantiate::<_, _, _, Empty>(
&mut instance,
&mock_env(),
&mock_info("someone", &[]),
b"{\"verifier\": \"some1\", \"beneficiary\": \"some2\"}",
);
match init_result.unwrap_err() {
VmError::RuntimeErr { msg, .. } => assert!(msg.contains(error_message)),
err => panic!("Unexpected error: {err:?}"),
}
}
#[test]
fn read_memory_errors_when_when_length_is_too_long() {
let length = 6;
let max_length = 5;
let mut instance = mock_instance(CONTRACT, &[]);
// Allocate sets length to 0. Write some data to increase length.
let region_ptr = instance.allocate(length).expect("error allocating");
let data = vec![170u8; length];
instance
.write_memory(region_ptr, &data)
.expect("error writing");
let result = instance.read_memory(region_ptr, max_length);
match result.unwrap_err() {
VmError::CommunicationErr {
source:
CommunicationError::RegionLengthTooBig {
length, max_length, ..
},
..
} => {
assert_eq!(length, 6);
assert_eq!(max_length, 5);
}
err => panic!("unexpected error: {err:?}"),
};
instance.deallocate(region_ptr).expect("error deallocating");
}
#[test]
fn memory_pages_returns_min_memory_size_by_default() {
// min: 0 pages, max: none
let wasm = wat::parse_str(
r#"(module
(memory 0)
(export "memory" (memory 0))
(type (func))
(func (type 0) nop)
(export "interface_version_8" (func 0))
(export "instantiate" (func 0))
(export "allocate" (func 0))
(export "deallocate" (func 0))
)"#,
)
.unwrap();
let mut instance = mock_instance(&wasm, &[]);
assert_eq!(instance.memory_pages(), 0);
// min: 3 pages, max: none
let wasm = wat::parse_str(
r#"(module
(memory 3)
(export "memory" (memory 0))
(type (func))
(func (type 0) nop)
(export "interface_version_8" (func 0))
(export "instantiate" (func 0))
(export "allocate" (func 0))
(export "deallocate" (func 0))
)"#,
)
.unwrap();
let mut instance = mock_instance(&wasm, &[]);
assert_eq!(instance.memory_pages(), 3);
}
#[test]
fn memory_pages_grows_with_usage() {
let mut instance = mock_instance(CONTRACT, &[]);
assert_eq!(instance.memory_pages(), 17);
// 100 KiB require two more pages
let region_ptr = instance.allocate(100 * 1024).expect("error allocating");
assert_eq!(instance.memory_pages(), 19);
// Deallocating does not shrink memory
instance.deallocate(region_ptr).expect("error deallocating");
assert_eq!(instance.memory_pages(), 19);
}
#[test]
fn get_gas_left_works() {
let mut instance = mock_instance_with_gas_limit(CONTRACT, 123321);
let orig_gas = instance.get_gas_left();
assert_eq!(orig_gas, 123321);
}
#[test]
fn create_gas_report_works() {
const LIMIT: u64 = 700_000_000_000;
let mut instance = mock_instance_with_gas_limit(CONTRACT, LIMIT);
let report1 = instance.create_gas_report();
assert_eq!(report1.used_externally, 0);
assert_eq!(report1.used_internally, 0);
assert_eq!(report1.limit, LIMIT);
assert_eq!(report1.remaining, LIMIT);
// init contract
let info = mock_info("creator", &coins(1000, "earth"));
let msg = br#"{"verifier": "verifies", "beneficiary": "benefits"}"#;
call_instantiate::<_, _, _, Empty>(&mut instance, &mock_env(), &info, msg)
.unwrap()
.unwrap();
let report2 = instance.create_gas_report();
assert_eq!(report2.used_externally, 73);
assert_eq!(report2.used_internally, 5764950198);
assert_eq!(report2.limit, LIMIT);
assert_eq!(
report2.remaining,
LIMIT - report2.used_externally - report2.used_internally
);
}
#[test]
fn set_storage_readonly_works() {
let mut instance = mock_instance(CONTRACT, &[]);
assert!(instance.is_storage_readonly());
instance.set_storage_readonly(false);
assert!(!instance.is_storage_readonly());
instance.set_storage_readonly(false);
assert!(!instance.is_storage_readonly());
instance.set_storage_readonly(true);
assert!(instance.is_storage_readonly());
}
#[test]
fn with_storage_works() {
let mut instance = mock_instance(CONTRACT, &[]);
// initial check
instance
.with_storage(|store| {
assert!(store.get(b"foo").0.unwrap().is_none());
Ok(())
})
.unwrap();
// write some data
instance
.with_storage(|store| {
store.set(b"foo", b"bar").0.unwrap();
Ok(())
})
.unwrap();
// read some data
instance
.with_storage(|store| {
assert_eq!(store.get(b"foo").0.unwrap(), Some(b"bar".to_vec()));
Ok(())
})
.unwrap();
}
#[test]
#[should_panic]
fn with_storage_safe_for_panic() {
// this should fail with the assertion, but not cause a double-free crash (issue #59)
let mut instance = mock_instance(CONTRACT, &[]);
instance
.with_storage::<_, ()>(|_store| panic!("trigger failure"))
.unwrap();
}
#[test]
fn with_querier_works_readonly() {
let rich_addr = String::from("foobar");
let rich_balance = vec![coin(10000, "gold"), coin(8000, "silver")];
let mut instance = mock_instance_with_balances(CONTRACT, &[(&rich_addr, &rich_balance)]);
// query one
instance
.with_querier(|querier| {
let response = querier
.query::<Empty>(
&QueryRequest::Bank(BankQuery::Balance {
address: rich_addr.clone(),
denom: "silver".to_string(),
}),
DEFAULT_QUERY_GAS_LIMIT,
)
.0
.unwrap()
.unwrap()
.unwrap();
let BalanceResponse { amount } = from_binary(&response).unwrap();
assert_eq!(amount.amount.u128(), 8000);
assert_eq!(amount.denom, "silver");
Ok(())
})
.unwrap();
// query all
instance
.with_querier(|querier| {
let response = querier
.query::<Empty>(
&QueryRequest::Bank(BankQuery::AllBalances {
address: rich_addr.clone(),
}),
DEFAULT_QUERY_GAS_LIMIT,
)
.0
.unwrap()
.unwrap()
.unwrap();
let AllBalanceResponse { amount } = from_binary(&response).unwrap();
assert_eq!(amount.len(), 2);
assert_eq!(amount[0].amount.u128(), 10000);
assert_eq!(amount[0].denom, "gold");
assert_eq!(amount[1].amount.u128(), 8000);
assert_eq!(amount[1].denom, "silver");
Ok(())
})
.unwrap();
}
/// This is needed for writing intagration tests in which the balance of a contract changes over time
#[test]
fn with_querier_allows_updating_balances() {
let rich_addr = String::from("foobar");
let rich_balance1 = vec![coin(10000, "gold"), coin(500, "silver")];
let rich_balance2 = vec![coin(10000, "gold"), coin(8000, "silver")];