-
Notifications
You must be signed in to change notification settings - Fork 335
/
cache.rs
1165 lines (1023 loc) · 43.5 KB
/
cache.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::collections::HashSet;
use std::fs::{self, File, OpenOptions};
use std::io::{Read, Write};
use std::marker::PhantomData;
use std::path::{Path, PathBuf};
use std::sync::Mutex;
use crate::backend::{Backend, BackendApi, Querier, Storage};
use crate::capabilities::required_capabilities_from_module;
use crate::checksum::Checksum;
use crate::compatibility::check_wasm;
use crate::errors::{VmError, VmResult};
use crate::filesystem::mkdir_p;
use crate::instance::{Instance, InstanceOptions};
use crate::modules::{FileSystemCache, InMemoryCache, PinnedMemoryCache};
use crate::size::Size;
use crate::static_analysis::{deserialize_wasm, has_ibc_entry_points};
use crate::wasm_backend::{compile, make_runtime_store};
const STATE_DIR: &str = "state";
// Things related to the state of the blockchain.
const WASM_DIR: &str = "wasm";
const CACHE_DIR: &str = "cache";
// Cacheable things.
const MODULES_DIR: &str = "modules";
#[derive(Debug, Default, Clone, Copy)]
pub struct Stats {
pub hits_pinned_memory_cache: u32,
pub hits_memory_cache: u32,
pub hits_fs_cache: u32,
pub misses: u32,
}
#[derive(Debug, Clone, Copy)]
pub struct Metrics {
pub stats: Stats,
pub elements_pinned_memory_cache: usize,
pub elements_memory_cache: usize,
pub size_pinned_memory_cache: usize,
pub size_memory_cache: usize,
}
#[derive(Clone, Debug)]
pub struct CacheOptions {
/// The base directory of this cache.
///
/// If this does not exist, it will be created. Not sure if this behaviour
/// is desired but wasmd relies on it.
pub base_dir: PathBuf,
pub available_capabilities: HashSet<String>,
pub memory_cache_size: Size,
/// Memory limit for instances, in bytes. Use a value that is divisible by the Wasm page size 65536,
/// e.g. full MiBs.
pub instance_memory_limit: Size,
}
pub struct CacheInner {
/// The directory in which the Wasm blobs are stored in the file system.
wasm_path: PathBuf,
/// Instances memory limit in bytes. Use a value that is divisible by the Wasm page size 65536,
/// e.g. full MiBs.
instance_memory_limit: Size,
pinned_memory_cache: PinnedMemoryCache,
memory_cache: InMemoryCache,
fs_cache: FileSystemCache,
stats: Stats,
}
pub struct Cache<A: BackendApi, S: Storage, Q: Querier> {
/// Available capabilities are immutable for the lifetime of the cache,
/// i.e. any number of read-only references is allowed to access it concurrently.
available_capabilities: HashSet<String>,
inner: Mutex<CacheInner>,
// Those two don't store data but only fix type information
type_api: PhantomData<A>,
type_storage: PhantomData<S>,
type_querier: PhantomData<Q>,
/// To prevent concurrent access to `WasmerInstance::new`
instantiation_lock: Mutex<()>,
}
#[derive(PartialEq, Eq, Debug)]
pub struct AnalysisReport {
pub has_ibc_entry_points: bool,
pub required_capabilities: HashSet<String>,
}
impl<A, S, Q> Cache<A, S, Q>
where
A: BackendApi + 'static, // 'static is needed by `impl<…> Instance`
S: Storage + 'static, // 'static is needed by `impl<…> Instance`
Q: Querier + 'static, // 'static is needed by `impl<…> Instance`
{
/// Creates a new cache that stores data in `base_dir`.
///
/// # Safety
///
/// This function is marked unsafe due to `FileSystemCache::new`, which implicitly
/// assumes the disk contents are correct, and there's no way to ensure the artifacts
/// stored in the cache haven't been corrupted or tampered with.
pub unsafe fn new(options: CacheOptions) -> VmResult<Self> {
let CacheOptions {
base_dir,
available_capabilities,
memory_cache_size,
instance_memory_limit,
} = options;
let state_path = base_dir.join(STATE_DIR);
let cache_path = base_dir.join(CACHE_DIR);
let wasm_path = state_path.join(WASM_DIR);
// Ensure all the needed directories exist on disk.
mkdir_p(&state_path).map_err(|_e| VmError::cache_err("Error creating state directory"))?;
mkdir_p(&cache_path).map_err(|_e| VmError::cache_err("Error creating cache directory"))?;
mkdir_p(&wasm_path).map_err(|_e| VmError::cache_err("Error creating wasm directory"))?;
let fs_cache = FileSystemCache::new(cache_path.join(MODULES_DIR))
.map_err(|e| VmError::cache_err(format!("Error file system cache: {}", e)))?;
Ok(Cache {
available_capabilities,
inner: Mutex::new(CacheInner {
wasm_path,
instance_memory_limit,
pinned_memory_cache: PinnedMemoryCache::new(),
memory_cache: InMemoryCache::new(memory_cache_size),
fs_cache,
stats: Stats::default(),
}),
type_storage: PhantomData::<S>,
type_api: PhantomData::<A>,
type_querier: PhantomData::<Q>,
instantiation_lock: Mutex::new(()),
})
}
pub fn stats(&self) -> Stats {
self.inner.lock().unwrap().stats
}
pub fn metrics(&self) -> Metrics {
let cache = self.inner.lock().unwrap();
Metrics {
stats: cache.stats,
elements_pinned_memory_cache: cache.pinned_memory_cache.len(),
elements_memory_cache: cache.memory_cache.len(),
size_pinned_memory_cache: cache.pinned_memory_cache.size(),
size_memory_cache: cache.memory_cache.size(),
}
}
pub fn save_wasm(&self, wasm: &[u8]) -> VmResult<Checksum> {
check_wasm(wasm, &self.available_capabilities)?;
let module = compile(wasm, None, &[])?;
let mut cache = self.inner.lock().unwrap();
let checksum = save_wasm_to_disk(&cache.wasm_path, wasm)?;
cache.fs_cache.store(&checksum, &module)?;
Ok(checksum)
}
/// Removes the Wasm blob for the given checksum from disk and its
/// compiled module from the file system cache.
///
/// The existence of the original code is required since the caller (wasmd)
/// has to keep track of which entries we have here.
pub fn remove_wasm(&self, checksum: &Checksum) -> VmResult<()> {
let mut cache = self.inner.lock().unwrap();
// Remove compiled moduled from disk (if it exists).
// Here we could also delete from memory caches but this is not really
// necessary as they are pushed out from the LRU over time or disappear
// when the node process restarts.
cache.fs_cache.remove(checksum)?;
let path = &cache.wasm_path;
remove_wasm_from_disk(path, checksum)?;
Ok(())
}
/// Retrieves a Wasm blob that was previously stored via save_wasm.
/// When the cache is instantiated with the same base dir, this finds Wasm files on disc across multiple cache instances (i.e. node restarts).
/// This function is public to allow a checksum to Wasm lookup in the blockchain.
///
/// If the given ID is not found or the content does not match the hash (=ID), an error is returned.
pub fn load_wasm(&self, checksum: &Checksum) -> VmResult<Vec<u8>> {
self.load_wasm_with_path(&self.inner.lock().unwrap().wasm_path, checksum)
}
fn load_wasm_with_path(&self, wasm_path: &Path, checksum: &Checksum) -> VmResult<Vec<u8>> {
let code = load_wasm_from_disk(wasm_path, checksum)?;
// verify hash matches (integrity check)
if Checksum::generate(&code) != *checksum {
Err(VmError::integrity_err())
} else {
Ok(code)
}
}
/// Performs static anlyzation on this Wasm without compiling or instantiating it.
///
/// Once the contract was stored via [`save_wasm`], this can be called at any point in time.
/// It does not depend on any caching of the contract.
pub fn analyze(&self, checksum: &Checksum) -> VmResult<AnalysisReport> {
// Here we could use a streaming deserializer to slightly improve performance. However, this way it is DRYer.
let wasm = self.load_wasm(checksum)?;
let module = deserialize_wasm(&wasm)?;
Ok(AnalysisReport {
has_ibc_entry_points: has_ibc_entry_points(&module),
required_capabilities: required_capabilities_from_module(&module),
})
}
/// Pins a Module that was previously stored via save_wasm.
///
/// The module is lookup first in the memory cache, and then in the file system cache.
/// If not found, the code is loaded from the file system, compiled, and stored into the
/// pinned cache.
/// If the given ID is not found, or the content does not match the hash (=ID), an error is returned.
pub fn pin(&self, checksum: &Checksum) -> VmResult<()> {
let mut cache = self.inner.lock().unwrap();
if cache.pinned_memory_cache.has(checksum) {
return Ok(());
}
// Try to get module from the memory cache
if let Some(module) = cache.memory_cache.load(checksum)? {
cache.stats.hits_memory_cache += 1;
return cache
.pinned_memory_cache
.store(checksum, module.module, module.size);
}
// Try to get module from file system cache
let store = make_runtime_store(Some(cache.instance_memory_limit));
if let Some(module) = cache.fs_cache.load(checksum, &store)? {
cache.stats.hits_fs_cache += 1;
let module_size = loupe::size_of_val(&module);
return cache
.pinned_memory_cache
.store(checksum, module, module_size);
}
// Re-compile from original Wasm bytecode
let code = self.load_wasm_with_path(&cache.wasm_path, checksum)?;
let module = compile(&code, Some(cache.instance_memory_limit), &[])?;
// Store into the fs cache too
cache.fs_cache.store(checksum, &module)?;
let module_size = loupe::size_of_val(&module);
cache
.pinned_memory_cache
.store(checksum, module, module_size)
}
/// Unpins a Module, i.e. removes it from the pinned memory cache.
///
/// Not found IDs are silently ignored, and no integrity check (checksum validation) is done
/// on the removed value.
pub fn unpin(&self, checksum: &Checksum) -> VmResult<()> {
self.inner
.lock()
.unwrap()
.pinned_memory_cache
.remove(checksum)
}
/// Returns an Instance tied to a previously saved Wasm.
///
/// It takes a module from cache or Wasm code and instantiates it.
pub fn get_instance(
&self,
checksum: &Checksum,
backend: Backend<A, S, Q>,
options: InstanceOptions,
) -> VmResult<Instance<A, S, Q>> {
let module = self.get_module(checksum)?;
let instance = Instance::from_module(
&module,
backend,
options.gas_limit,
options.print_debug,
None,
Some(&self.instantiation_lock),
)?;
Ok(instance)
}
/// Returns a module tied to a previously saved Wasm.
/// Depending on availability, this is either generated from a memory cache, file system cache or Wasm code.
/// This is part of `get_instance` but pulled out to reduce the locking time.
fn get_module(&self, checksum: &Checksum) -> VmResult<wasmer::Module> {
let mut cache = self.inner.lock().unwrap();
// Try to get module from the pinned memory cache
if let Some(module) = cache.pinned_memory_cache.load(checksum)? {
cache.stats.hits_pinned_memory_cache += 1;
return Ok(module);
}
// Get module from memory cache
if let Some(module) = cache.memory_cache.load(checksum)? {
cache.stats.hits_memory_cache += 1;
return Ok(module.module);
}
// Get module from file system cache
let store = make_runtime_store(Some(cache.instance_memory_limit));
if let Some(module) = cache.fs_cache.load(checksum, &store)? {
cache.stats.hits_fs_cache += 1;
let module_size = loupe::size_of_val(&module);
cache
.memory_cache
.store(checksum, module.clone(), module_size)?;
return Ok(module);
}
// Re-compile module from wasm
//
// This is needed for chains that upgrade their node software in a way that changes the module
// serialization format. If you do not replay all transactions, previous calls of `save_wasm`
// stored the old module format.
let wasm = self.load_wasm_with_path(&cache.wasm_path, checksum)?;
cache.stats.misses += 1;
let module = compile(&wasm, Some(cache.instance_memory_limit), &[])?;
cache.fs_cache.store(checksum, &module)?;
let module_size = loupe::size_of_val(&module);
cache
.memory_cache
.store(checksum, module.clone(), module_size)?;
Ok(module)
}
}
unsafe impl<A, S, Q> Sync for Cache<A, S, Q>
where
A: BackendApi + 'static,
S: Storage + 'static,
Q: Querier + 'static,
{
}
unsafe impl<A, S, Q> Send for Cache<A, S, Q>
where
A: BackendApi + 'static,
S: Storage + 'static,
Q: Querier + 'static,
{
}
/// save stores the wasm code in the given directory and returns an ID for lookup.
/// It will create the directory if it doesn't exist.
/// Saving the same byte code multiple times is allowed.
fn save_wasm_to_disk(dir: impl Into<PathBuf>, wasm: &[u8]) -> VmResult<Checksum> {
// calculate filename
let checksum = Checksum::generate(wasm);
let filename = checksum.to_hex();
let filepath = dir.into().join(filename);
// write data to file
// Since the same filename (a collision resistent hash) cannot be generated from two different byte codes
// (even if a malicious actor tried), it is safe to override.
let mut file = OpenOptions::new()
.write(true)
.create(true)
.open(filepath)
.map_err(|e| VmError::cache_err(format!("Error opening Wasm file for writing: {}", e)))?;
file.write_all(wasm)
.map_err(|e| VmError::cache_err(format!("Error writing Wasm file: {}", e)))?;
Ok(checksum)
}
fn load_wasm_from_disk(dir: impl Into<PathBuf>, checksum: &Checksum) -> VmResult<Vec<u8>> {
// this requires the directory and file to exist
let path = dir.into().join(checksum.to_hex());
let mut file =
File::open(path).map_err(|_e| VmError::cache_err("Error opening Wasm file for reading"))?;
let mut wasm = Vec::<u8>::new();
file.read_to_end(&mut wasm)
.map_err(|_e| VmError::cache_err("Error reading Wasm file"))?;
Ok(wasm)
}
/// Removes the Wasm blob for the given checksum from disk.
///
/// In contrast to the file system cache, the existence of the original
/// code is required. So a non-existent file leads to an error as it
/// indicates a bug.
fn remove_wasm_from_disk(dir: impl Into<PathBuf>, checksum: &Checksum) -> VmResult<()> {
let path = dir.into().join(checksum.to_hex());
if !path.exists() {
return Err(VmError::cache_err("Wasm file does not exist"));
}
fs::remove_file(path).map_err(|_e| VmError::cache_err("Error removing Wasm file from disk"))?;
Ok(())
}
#[cfg(test)]
mod tests {
use super::*;
use crate::calls::{call_execute, call_instantiate};
use crate::capabilities::capabilities_from_csv;
use crate::errors::VmError;
use crate::testing::{mock_backend, mock_env, mock_info, MockApi, MockQuerier, MockStorage};
use cosmwasm_std::{coins, Empty};
use std::fs::{create_dir_all, OpenOptions};
use std::io::Write;
use tempfile::TempDir;
const TESTING_GAS_LIMIT: u64 = 500_000_000_000; // ~0.5ms
const TESTING_MEMORY_LIMIT: Size = Size::mebi(16);
const TESTING_OPTIONS: InstanceOptions = InstanceOptions {
gas_limit: TESTING_GAS_LIMIT,
print_debug: false,
};
const TESTING_MEMORY_CACHE_SIZE: Size = Size::mebi(200);
static CONTRACT: &[u8] = include_bytes!("../testdata/hackatom.wasm");
static IBC_CONTRACT: &[u8] = include_bytes!("../testdata/ibc_reflect.wasm");
fn default_capabilities() -> HashSet<String> {
capabilities_from_csv("iterator,staking")
}
fn make_testing_options() -> CacheOptions {
CacheOptions {
base_dir: TempDir::new().unwrap().into_path(),
available_capabilities: default_capabilities(),
memory_cache_size: TESTING_MEMORY_CACHE_SIZE,
instance_memory_limit: TESTING_MEMORY_LIMIT,
}
}
fn make_stargate_testing_options() -> CacheOptions {
let mut capabilities = default_capabilities();
capabilities.insert("stargate".into());
CacheOptions {
base_dir: TempDir::new().unwrap().into_path(),
available_capabilities: capabilities,
memory_cache_size: TESTING_MEMORY_CACHE_SIZE,
instance_memory_limit: TESTING_MEMORY_LIMIT,
}
}
#[test]
fn new_base_dir_will_be_created() {
let my_base_dir = TempDir::new()
.unwrap()
.into_path()
.join("non-existent-sub-dir");
let options = CacheOptions {
base_dir: my_base_dir.clone(),
..make_testing_options()
};
assert!(!my_base_dir.is_dir());
let _cache = unsafe { Cache::<MockApi, MockStorage, MockQuerier>::new(options).unwrap() };
assert!(my_base_dir.is_dir());
}
#[test]
fn save_wasm_works() {
let cache: Cache<MockApi, MockStorage, MockQuerier> =
unsafe { Cache::new(make_testing_options()).unwrap() };
cache.save_wasm(CONTRACT).unwrap();
}
#[test]
// This property is required when the same bytecode is uploaded multiple times
fn save_wasm_allows_saving_multiple_times() {
let cache: Cache<MockApi, MockStorage, MockQuerier> =
unsafe { Cache::new(make_testing_options()).unwrap() };
cache.save_wasm(CONTRACT).unwrap();
cache.save_wasm(CONTRACT).unwrap();
}
#[test]
fn save_wasm_rejects_invalid_contract() {
// Invalid because it doesn't contain required memory and exports
let wasm = wat::parse_str(
r#"(module
(type $t0 (func (param i32) (result i32)))
(func $add_one (export "add_one") (type $t0) (param $p0 i32) (result i32)
get_local $p0
i32.const 1
i32.add))
"#,
)
.unwrap();
let cache: Cache<MockApi, MockStorage, MockQuerier> =
unsafe { Cache::new(make_testing_options()).unwrap() };
let save_result = cache.save_wasm(&wasm);
match save_result.unwrap_err() {
VmError::StaticValidationErr { msg, .. } => {
assert_eq!(msg, "Wasm contract doesn\'t have a memory section")
}
e => panic!("Unexpected error {:?}", e),
}
}
#[test]
fn save_wasm_fills_file_system_but_not_memory_cache() {
// Who knows if and when the uploaded contract will be executed. Don't pollute
// memory cache before the init call.
let cache = unsafe { Cache::new(make_testing_options()).unwrap() };
let checksum = cache.save_wasm(CONTRACT).unwrap();
let backend = mock_backend(&[]);
let _ = cache
.get_instance(&checksum, backend, TESTING_OPTIONS)
.unwrap();
assert_eq!(cache.stats().hits_pinned_memory_cache, 0);
assert_eq!(cache.stats().hits_memory_cache, 0);
assert_eq!(cache.stats().hits_fs_cache, 1);
assert_eq!(cache.stats().misses, 0);
}
#[test]
fn load_wasm_works() {
let cache: Cache<MockApi, MockStorage, MockQuerier> =
unsafe { Cache::new(make_testing_options()).unwrap() };
let checksum = cache.save_wasm(CONTRACT).unwrap();
let restored = cache.load_wasm(&checksum).unwrap();
assert_eq!(restored, CONTRACT);
}
#[test]
fn load_wasm_works_across_multiple_cache_instances() {
let tmp_dir = TempDir::new().unwrap();
let id: Checksum;
{
let options1 = CacheOptions {
base_dir: tmp_dir.path().to_path_buf(),
available_capabilities: default_capabilities(),
memory_cache_size: TESTING_MEMORY_CACHE_SIZE,
instance_memory_limit: TESTING_MEMORY_LIMIT,
};
let cache1: Cache<MockApi, MockStorage, MockQuerier> =
unsafe { Cache::new(options1).unwrap() };
id = cache1.save_wasm(CONTRACT).unwrap();
}
{
let options2 = CacheOptions {
base_dir: tmp_dir.path().to_path_buf(),
available_capabilities: default_capabilities(),
memory_cache_size: TESTING_MEMORY_CACHE_SIZE,
instance_memory_limit: TESTING_MEMORY_LIMIT,
};
let cache2: Cache<MockApi, MockStorage, MockQuerier> =
unsafe { Cache::new(options2).unwrap() };
let restored = cache2.load_wasm(&id).unwrap();
assert_eq!(restored, CONTRACT);
}
}
#[test]
fn load_wasm_errors_for_non_existent_id() {
let cache: Cache<MockApi, MockStorage, MockQuerier> =
unsafe { Cache::new(make_testing_options()).unwrap() };
let checksum = Checksum::from([
5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5,
5, 5, 5,
]);
match cache.load_wasm(&checksum).unwrap_err() {
VmError::CacheErr { msg, .. } => {
assert_eq!(msg, "Error opening Wasm file for reading")
}
e => panic!("Unexpected error: {:?}", e),
}
}
#[test]
fn load_wasm_errors_for_corrupted_wasm() {
let tmp_dir = TempDir::new().unwrap();
let options = CacheOptions {
base_dir: tmp_dir.path().to_path_buf(),
available_capabilities: default_capabilities(),
memory_cache_size: TESTING_MEMORY_CACHE_SIZE,
instance_memory_limit: TESTING_MEMORY_LIMIT,
};
let cache: Cache<MockApi, MockStorage, MockQuerier> =
unsafe { Cache::new(options).unwrap() };
let checksum = cache.save_wasm(CONTRACT).unwrap();
// Corrupt cache file
let filepath = tmp_dir
.path()
.join(STATE_DIR)
.join(WASM_DIR)
.join(checksum.to_hex());
let mut file = OpenOptions::new().write(true).open(filepath).unwrap();
file.write_all(b"broken data").unwrap();
let res = cache.load_wasm(&checksum);
match res {
Err(VmError::IntegrityErr { .. }) => {}
Err(e) => panic!("Unexpected error: {:?}", e),
Ok(_) => panic!("This must not succeed"),
}
}
#[test]
fn remove_wasm_works() {
let cache: Cache<MockApi, MockStorage, MockQuerier> =
unsafe { Cache::new(make_testing_options()).unwrap() };
// Store
let checksum = cache.save_wasm(CONTRACT).unwrap();
// Exists
cache.load_wasm(&checksum).unwrap();
// Remove
cache.remove_wasm(&checksum).unwrap();
// Does not exist anymore
match cache.load_wasm(&checksum).unwrap_err() {
VmError::CacheErr { msg, .. } => {
assert_eq!(msg, "Error opening Wasm file for reading")
}
e => panic!("Unexpected error: {:?}", e),
}
// Removing again fails
match cache.remove_wasm(&checksum).unwrap_err() {
VmError::CacheErr { msg, .. } => {
assert_eq!(msg, "Wasm file does not exist")
}
e => panic!("Unexpected error: {:?}", e),
}
}
#[test]
fn get_instance_finds_cached_module() {
let cache = unsafe { Cache::new(make_testing_options()).unwrap() };
let checksum = cache.save_wasm(CONTRACT).unwrap();
let backend = mock_backend(&[]);
let _instance = cache
.get_instance(&checksum, backend, TESTING_OPTIONS)
.unwrap();
assert_eq!(cache.stats().hits_pinned_memory_cache, 0);
assert_eq!(cache.stats().hits_memory_cache, 0);
assert_eq!(cache.stats().hits_fs_cache, 1);
assert_eq!(cache.stats().misses, 0);
}
#[test]
fn get_instance_finds_cached_modules_and_stores_to_memory() {
let cache = unsafe { Cache::new(make_testing_options()).unwrap() };
let checksum = cache.save_wasm(CONTRACT).unwrap();
let backend1 = mock_backend(&[]);
let backend2 = mock_backend(&[]);
let backend3 = mock_backend(&[]);
let backend4 = mock_backend(&[]);
let backend5 = mock_backend(&[]);
// from file system
let _instance1 = cache
.get_instance(&checksum, backend1, TESTING_OPTIONS)
.unwrap();
assert_eq!(cache.stats().hits_pinned_memory_cache, 0);
assert_eq!(cache.stats().hits_memory_cache, 0);
assert_eq!(cache.stats().hits_fs_cache, 1);
assert_eq!(cache.stats().misses, 0);
// from memory
let _instance2 = cache
.get_instance(&checksum, backend2, TESTING_OPTIONS)
.unwrap();
assert_eq!(cache.stats().hits_pinned_memory_cache, 0);
assert_eq!(cache.stats().hits_memory_cache, 1);
assert_eq!(cache.stats().hits_fs_cache, 1);
assert_eq!(cache.stats().misses, 0);
// from memory again
let _instance3 = cache
.get_instance(&checksum, backend3, TESTING_OPTIONS)
.unwrap();
assert_eq!(cache.stats().hits_pinned_memory_cache, 0);
assert_eq!(cache.stats().hits_memory_cache, 2);
assert_eq!(cache.stats().hits_fs_cache, 1);
assert_eq!(cache.stats().misses, 0);
// pinning hits the memory cache
cache.pin(&checksum).unwrap();
assert_eq!(cache.stats().hits_pinned_memory_cache, 0);
assert_eq!(cache.stats().hits_memory_cache, 3);
assert_eq!(cache.stats().hits_fs_cache, 1);
assert_eq!(cache.stats().misses, 0);
// from pinned memory cache
let _instance4 = cache
.get_instance(&checksum, backend4, TESTING_OPTIONS)
.unwrap();
assert_eq!(cache.stats().hits_pinned_memory_cache, 1);
assert_eq!(cache.stats().hits_memory_cache, 3);
assert_eq!(cache.stats().hits_fs_cache, 1);
assert_eq!(cache.stats().misses, 0);
// from pinned memory cache again
let _instance5 = cache
.get_instance(&checksum, backend5, TESTING_OPTIONS)
.unwrap();
assert_eq!(cache.stats().hits_pinned_memory_cache, 2);
assert_eq!(cache.stats().hits_memory_cache, 3);
assert_eq!(cache.stats().hits_fs_cache, 1);
assert_eq!(cache.stats().misses, 0);
}
#[test]
fn call_instantiate_on_cached_contract() {
let cache = unsafe { Cache::new(make_testing_options()).unwrap() };
let checksum = cache.save_wasm(CONTRACT).unwrap();
// from file system
{
let mut instance = cache
.get_instance(&checksum, mock_backend(&[]), TESTING_OPTIONS)
.unwrap();
assert_eq!(cache.stats().hits_pinned_memory_cache, 0);
assert_eq!(cache.stats().hits_memory_cache, 0);
assert_eq!(cache.stats().hits_fs_cache, 1);
assert_eq!(cache.stats().misses, 0);
// init
let info = mock_info("creator", &coins(1000, "earth"));
let msg = br#"{"verifier": "verifies", "beneficiary": "benefits"}"#;
let res =
call_instantiate::<_, _, _, Empty>(&mut instance, &mock_env(), &info, msg).unwrap();
let msgs = res.unwrap().messages;
assert_eq!(msgs.len(), 0);
}
// from memory
{
let mut instance = cache
.get_instance(&checksum, mock_backend(&[]), TESTING_OPTIONS)
.unwrap();
assert_eq!(cache.stats().hits_pinned_memory_cache, 0);
assert_eq!(cache.stats().hits_memory_cache, 1);
assert_eq!(cache.stats().hits_fs_cache, 1);
assert_eq!(cache.stats().misses, 0);
// init
let info = mock_info("creator", &coins(1000, "earth"));
let msg = br#"{"verifier": "verifies", "beneficiary": "benefits"}"#;
let res =
call_instantiate::<_, _, _, Empty>(&mut instance, &mock_env(), &info, msg).unwrap();
let msgs = res.unwrap().messages;
assert_eq!(msgs.len(), 0);
}
// from pinned memory
{
cache.pin(&checksum).unwrap();
let mut instance = cache
.get_instance(&checksum, mock_backend(&[]), TESTING_OPTIONS)
.unwrap();
assert_eq!(cache.stats().hits_pinned_memory_cache, 1);
assert_eq!(cache.stats().hits_memory_cache, 2);
assert_eq!(cache.stats().hits_fs_cache, 1);
assert_eq!(cache.stats().misses, 0);
// init
let info = mock_info("creator", &coins(1000, "earth"));
let msg = br#"{"verifier": "verifies", "beneficiary": "benefits"}"#;
let res =
call_instantiate::<_, _, _, Empty>(&mut instance, &mock_env(), &info, msg).unwrap();
let msgs = res.unwrap().messages;
assert_eq!(msgs.len(), 0);
}
}
#[test]
fn call_execute_on_cached_contract() {
let cache = unsafe { Cache::new(make_testing_options()).unwrap() };
let checksum = cache.save_wasm(CONTRACT).unwrap();
// from file system
{
let mut instance = cache
.get_instance(&checksum, mock_backend(&[]), TESTING_OPTIONS)
.unwrap();
assert_eq!(cache.stats().hits_pinned_memory_cache, 0);
assert_eq!(cache.stats().hits_memory_cache, 0);
assert_eq!(cache.stats().hits_fs_cache, 1);
assert_eq!(cache.stats().misses, 0);
// init
let info = mock_info("creator", &coins(1000, "earth"));
let msg = br#"{"verifier": "verifies", "beneficiary": "benefits"}"#;
let response =
call_instantiate::<_, _, _, Empty>(&mut instance, &mock_env(), &info, msg)
.unwrap()
.unwrap();
assert_eq!(response.messages.len(), 0);
// execute
let info = mock_info("verifies", &coins(15, "earth"));
let msg = br#"{"release":{}}"#;
let response = call_execute::<_, _, _, Empty>(&mut instance, &mock_env(), &info, msg)
.unwrap()
.unwrap();
assert_eq!(response.messages.len(), 1);
}
// from memory
{
let mut instance = cache
.get_instance(&checksum, mock_backend(&[]), TESTING_OPTIONS)
.unwrap();
assert_eq!(cache.stats().hits_pinned_memory_cache, 0);
assert_eq!(cache.stats().hits_memory_cache, 1);
assert_eq!(cache.stats().hits_fs_cache, 1);
assert_eq!(cache.stats().misses, 0);
// init
let info = mock_info("creator", &coins(1000, "earth"));
let msg = br#"{"verifier": "verifies", "beneficiary": "benefits"}"#;
let response =
call_instantiate::<_, _, _, Empty>(&mut instance, &mock_env(), &info, msg)
.unwrap()
.unwrap();
assert_eq!(response.messages.len(), 0);
// execute
let info = mock_info("verifies", &coins(15, "earth"));
let msg = br#"{"release":{}}"#;
let response = call_execute::<_, _, _, Empty>(&mut instance, &mock_env(), &info, msg)
.unwrap()
.unwrap();
assert_eq!(response.messages.len(), 1);
}
// from pinned memory
{
cache.pin(&checksum).unwrap();
let mut instance = cache
.get_instance(&checksum, mock_backend(&[]), TESTING_OPTIONS)
.unwrap();
assert_eq!(cache.stats().hits_pinned_memory_cache, 1);
assert_eq!(cache.stats().hits_memory_cache, 2);
assert_eq!(cache.stats().hits_fs_cache, 1);
assert_eq!(cache.stats().misses, 0);
// init
let info = mock_info("creator", &coins(1000, "earth"));
let msg = br#"{"verifier": "verifies", "beneficiary": "benefits"}"#;
let response =
call_instantiate::<_, _, _, Empty>(&mut instance, &mock_env(), &info, msg)
.unwrap()
.unwrap();
assert_eq!(response.messages.len(), 0);
// execute
let info = mock_info("verifies", &coins(15, "earth"));
let msg = br#"{"release":{}}"#;
let response = call_execute::<_, _, _, Empty>(&mut instance, &mock_env(), &info, msg)
.unwrap()
.unwrap();
assert_eq!(response.messages.len(), 1);
}
}
#[test]
fn use_multiple_cached_instances_of_same_contract() {
let cache = unsafe { Cache::new(make_testing_options()).unwrap() };
let checksum = cache.save_wasm(CONTRACT).unwrap();
// these differentiate the two instances of the same contract
let backend1 = mock_backend(&[]);
let backend2 = mock_backend(&[]);
// init instance 1
let mut instance = cache
.get_instance(&checksum, backend1, TESTING_OPTIONS)
.unwrap();
let info = mock_info("owner1", &coins(1000, "earth"));
let msg = br#"{"verifier": "sue", "beneficiary": "mary"}"#;
let res =
call_instantiate::<_, _, _, Empty>(&mut instance, &mock_env(), &info, msg).unwrap();
let msgs = res.unwrap().messages;
assert_eq!(msgs.len(), 0);
let backend1 = instance.recycle().unwrap();
// init instance 2
let mut instance = cache
.get_instance(&checksum, backend2, TESTING_OPTIONS)
.unwrap();
let info = mock_info("owner2", &coins(500, "earth"));
let msg = br#"{"verifier": "bob", "beneficiary": "john"}"#;
let res =
call_instantiate::<_, _, _, Empty>(&mut instance, &mock_env(), &info, msg).unwrap();
let msgs = res.unwrap().messages;
assert_eq!(msgs.len(), 0);
let backend2 = instance.recycle().unwrap();
// run contract 2 - just sanity check - results validate in contract unit tests
let mut instance = cache
.get_instance(&checksum, backend2, TESTING_OPTIONS)
.unwrap();
let info = mock_info("bob", &coins(15, "earth"));
let msg = br#"{"release":{}}"#;
let res = call_execute::<_, _, _, Empty>(&mut instance, &mock_env(), &info, msg).unwrap();
let msgs = res.unwrap().messages;
assert_eq!(1, msgs.len());
// run contract 1 - just sanity check - results validate in contract unit tests
let mut instance = cache
.get_instance(&checksum, backend1, TESTING_OPTIONS)
.unwrap();
let info = mock_info("sue", &coins(15, "earth"));
let msg = br#"{"release":{}}"#;
let res = call_execute::<_, _, _, Empty>(&mut instance, &mock_env(), &info, msg).unwrap();
let msgs = res.unwrap().messages;
assert_eq!(1, msgs.len());
}
#[test]
fn resets_gas_when_reusing_instance() {
let cache = unsafe { Cache::new(make_testing_options()).unwrap() };
let checksum = cache.save_wasm(CONTRACT).unwrap();
let backend1 = mock_backend(&[]);
let backend2 = mock_backend(&[]);
// Init from module cache
let mut instance1 = cache
.get_instance(&checksum, backend1, TESTING_OPTIONS)
.unwrap();
assert_eq!(cache.stats().hits_pinned_memory_cache, 0);
assert_eq!(cache.stats().hits_memory_cache, 0);
assert_eq!(cache.stats().hits_fs_cache, 1);
assert_eq!(cache.stats().misses, 0);
let original_gas = instance1.get_gas_left();
// Consume some gas
let info = mock_info("owner1", &coins(1000, "earth"));
let msg = br#"{"verifier": "sue", "beneficiary": "mary"}"#;
call_instantiate::<_, _, _, Empty>(&mut instance1, &mock_env(), &info, msg)
.unwrap()
.unwrap();
assert!(instance1.get_gas_left() < original_gas);
// Init from memory cache
let instance2 = cache
.get_instance(&checksum, backend2, TESTING_OPTIONS)
.unwrap();
assert_eq!(cache.stats().hits_pinned_memory_cache, 0);
assert_eq!(cache.stats().hits_memory_cache, 1);
assert_eq!(cache.stats().hits_fs_cache, 1);
assert_eq!(cache.stats().misses, 0);
assert_eq!(instance2.get_gas_left(), TESTING_GAS_LIMIT);
}
#[test]
fn recovers_from_out_of_gas() {
let cache = unsafe { Cache::new(make_testing_options()).unwrap() };
let checksum = cache.save_wasm(CONTRACT).unwrap();
let backend1 = mock_backend(&[]);
let backend2 = mock_backend(&[]);
// Init from module cache
let options = InstanceOptions {
gas_limit: 10,
print_debug: false,
};
let mut instance1 = cache.get_instance(&checksum, backend1, options).unwrap();
assert_eq!(cache.stats().hits_fs_cache, 1);
assert_eq!(cache.stats().misses, 0);
// Consume some gas. This fails
let info1 = mock_info("owner1", &coins(1000, "earth"));
let msg1 = br#"{"verifier": "sue", "beneficiary": "mary"}"#;
match call_instantiate::<_, _, _, Empty>(&mut instance1, &mock_env(), &info1, msg1)
.unwrap_err()
{
VmError::GasDepletion { .. } => (), // all good, continue
e => panic!("unexpected error, {:?}", e),
}
assert_eq!(instance1.get_gas_left(), 0);
// Init from memory cache
let options = InstanceOptions {
gas_limit: TESTING_GAS_LIMIT,
print_debug: false,