Source file host_funcs.ml
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
open Tezos_webassembly_interpreter
open Instance
module Error = struct
type t =
| Store_key_too_large
| Store_invalid_key
| Store_not_a_value
| Store_invalid_access
| Store_value_size_exceeded
| Memory_invalid_access
| Input_output_too_large
| Generic_invalid_access
| Store_readonly_value
| Store_not_a_node
| Full_outbox
| Store_invalid_subkey_index
| Store_value_already_exists
(** [code error] returns the error code associated to the error. *)
let code = function
| Store_key_too_large -> -1l
| Store_invalid_key -> -2l
| Store_not_a_value -> -3l
| Store_invalid_access -> -4l
| Store_value_size_exceeded -> -5l
| Memory_invalid_access -> -6l
| Input_output_too_large -> -7l
| Generic_invalid_access -> -8l
| Store_readonly_value -> -9l
| Store_not_a_node -> -10l
| Full_outbox -> -11l
| Store_invalid_subkey_index -> -12l
| Store_value_already_exists -> -13l
end
module type Memory_access = sig
type t
(** TODO Use the same type for offsets & memory size *)
type size := int
type addr := int32
val store_bytes : t -> addr -> string -> unit Lwt.t
val load_bytes : t -> addr -> size -> string Lwt.t
val store_num : t -> addr -> addr -> Values.num -> unit Lwt.t
val bound : t -> int64
val exn_to_error : default:Error.t -> exn -> Error.t
end
module Memory_access_interpreter :
Memory_access with type t = Instance.memory_inst = struct
include Memory
let exn_to_error ~(default : Error.t) exn =
match exn with Memory.Bounds -> Error.Memory_invalid_access | _ -> default
end
exception Bad_input
exception Key_too_large of int
let check_key_length key_length = key_length > Durable.max_key_length
let return_error e = Lwt.return (Error.code e)
let = function
| Error error -> return_error error
| Ok res -> Lwt.return res
let durable = function
| Error error -> Lwt.return (durable, Error.code error)
| Ok res -> Lwt.return res
let check_memory memories =
let crash_with msg = Error (Eval.Crash (Source.no_region, msg)) in
match memories with
| Host_funcs.No_memories_during_init ->
crash_with "host functions must not access memory during initialisation"
| Host_funcs.Available_memories memories
when Vector.num_elements memories = 1l ->
Ok memories
| Host_funcs.Available_memories _ ->
crash_with "caller module must have exactly 1 memory instance"
let retrieve_memory memories =
match check_memory memories with
| Ok memories -> Vector.get 0l memories
| Error exn -> raise exn
type read_input_info = {level : int32; id : int32}
let read_input_info_encoding =
let open Data_encoding in
conv
(function {level; id} -> (level, id))
(fun (level, id) -> {level; id})
(obj2
(req "level" Data_encoding_utils.Little_endian.int32)
(req "id" Data_encoding_utils.Little_endian.int32))
module Aux = struct
module type S = sig
type memory
(** max size of intputs and outputs. *)
val input_output_max_size : int
val load_bytes :
memory:memory -> addr:int32 -> size:int32 -> (string, int32) result Lwt.t
(** [write_output ~output_buffer ~memory ~src ~num_bytes] reads
num_bytes from the memory of module_inst starting at src and writes
this to the output_buffer. It also checks that the input payload is
no larger than `max_output`. It returns 0 for Ok. *)
val write_output :
output_buffer:Output_buffer.t ->
memory:memory ->
src:int32 ->
num_bytes:int32 ->
int32 Lwt.t
(** [read_input ~input_buffer ~output_buffer ~memory ~level_offset
~id_offset ~dst ~max_bytes] reads `input_buffer` and writes its
components to the memory based on the memory addreses offsets described.
It also checks that the input payload is no larger than `max_input` and
fails with `Input_output_too_large` otherwise. It returns the size of the
payload. Note also that, if the level increases this function also updates
the level of the output buffer and resets its id to zero. *)
val read_input :
input_buffer:Input_buffer.t ->
memory:memory ->
info_addr:int32 ->
dst:int32 ->
max_bytes:int32 ->
int32 Lwt.t
val store_exists :
durable:Durable.t ->
memory:memory ->
key_offset:int32 ->
key_length:int32 ->
int32 Lwt.t
val store_has :
durable:Durable.t ->
memory:memory ->
key_offset:int32 ->
key_length:int32 ->
int32 Lwt.t
val generic_store_delete :
kind:Durable.kind ->
durable:Durable.t ->
memory:memory ->
key_offset:int32 ->
key_length:int32 ->
(Durable.t * int32) Lwt.t
val store_copy :
durable:Durable.t ->
memory:memory ->
from_key_offset:int32 ->
from_key_length:int32 ->
to_key_offset:int32 ->
to_key_length:int32 ->
(Durable.t * int32) Lwt.t
val store_move :
durable:Durable.t ->
memory:memory ->
from_key_offset:int32 ->
from_key_length:int32 ->
to_key_offset:int32 ->
to_key_length:int32 ->
(Durable.t * int32) Lwt.t
val store_create :
durable:Durable.t ->
memory:memory ->
key_offset:int32 ->
key_length:int32 ->
size:int32 ->
(Durable.t * int32) Lwt.t
val store_value_size :
durable:Durable.t ->
memory:memory ->
key_offset:int32 ->
key_length:int32 ->
int32 Lwt.t
val store_read :
durable:Durable.t ->
memory:memory ->
key_offset:int32 ->
key_length:int32 ->
value_offset:int32 ->
dest:int32 ->
max_bytes:int32 ->
int32 Lwt.t
val store_write :
durable:Durable.t ->
memory:memory ->
key_offset:int32 ->
key_length:int32 ->
value_offset:int32 ->
src:int32 ->
num_bytes:int32 ->
(Durable.t * int32) Lwt.t
val store_list_size :
durable:Durable.t ->
memory:memory ->
key_offset:int32 ->
key_length:int32 ->
(Durable.t * int64) Lwt.t
val store_get_nth_key :
durable:Durable.t ->
memory:memory ->
key_offset:int32 ->
key_length:int32 ->
index:int64 ->
dst:int32 ->
max_size:int32 ->
int32 Lwt.t
val store_get_hash :
durable:Durable.t ->
memory:memory ->
key_offset:int32 ->
key_length:int32 ->
dst:int32 ->
max_size:int32 ->
int32 Lwt.t
val reveal :
memory:memory ->
dst:int32 ->
max_bytes:int32 ->
payload:bytes ->
int32 Lwt.t
val read_mem_for_debug :
memory:memory -> src:int32 -> num_bytes:int32 -> string Lwt.t
val write_debug :
implem:Builtins.write_debug ->
memory:memory ->
src:int32 ->
num_bytes:int32 ->
unit Lwt.t
end
module Make (M : Memory_access) : S with type memory = M.t = struct
type memory = M.t
let input_output_max_size = 4096
let guard func =
let open Lwt_result_syntax in
Lwt.catch
(fun () ->
let*! res = func () in
return res)
(function
| Durable.Out_of_bounds _ -> fail Error.Store_invalid_access
| Durable.Readonly_value -> fail Error.Store_readonly_value
| Durable.Invalid_key _ -> fail Error.Store_invalid_key
| Durable.Value_not_found -> fail Error.Store_not_a_value
| Durable.Tree_not_found -> fail Error.Store_not_a_node
| Durable.IO_too_large -> fail Error.Input_output_too_large
| Durable.Index_too_large _ -> fail Error.Store_invalid_subkey_index
| Output_buffer.Full_outbox -> fail Error.Full_outbox
| exn ->
fail @@ M.exn_to_error ~default:Error.Generic_invalid_access exn)
module M = struct
include M
let load_bytes mem addr size =
guard @@ fun () -> M.load_bytes mem addr size
let store_bytes mem addr data =
guard @@ fun () -> M.store_bytes mem addr data
end
let load_bytes ~memory ~addr ~size =
let open Lwt_result_syntax in
Lwt_result.map_error Error.code
@@
let size = Int32.to_int size in
if size > input_output_max_size then fail Error.Input_output_too_large
else M.load_bytes memory addr size
let load_key_from_memory key_offset key_length memory =
let open Lwt_result_syntax in
let key_length = Int32.to_int key_length in
if check_key_length key_length then fail Error.Store_key_too_large
else
let* key = M.load_bytes memory key_offset key_length in
guard (fun () -> Lwt.return (Durable.key_of_string_exn key))
let check_address memory address length =
let open Result_syntax in
let size = M.bound memory in
let address = I64_convert.extend_i32_u address in
let* length =
if length < 0l then fail Error.Memory_invalid_access
else return (Int64.of_int32 length)
in
if Int64.add address length < size then return_unit
else fail Error.Memory_invalid_access
let read_input ~input_buffer ~memory ~info_addr ~dst ~max_bytes =
let open Lwt_result_syntax in
let*! res =
Lwt.catch
(fun () ->
let*? () =
match
Data_encoding.Binary.maximum_length read_input_info_encoding
with
| Some length ->
check_address memory info_addr (Int32.of_int length)
| None ->
Error Error.Generic_invalid_access
in
let max_bytes =
Int32.min (Int32.of_int input_output_max_size) max_bytes
in
let*? () = check_address memory dst max_bytes in
let*! {raw_level; message_counter; payload} =
Input_buffer.dequeue input_buffer
in
let input_size = Bytes.length payload in
let input_size =
if
Tezos_webassembly_interpreter.I32.le_u
max_bytes
(Int32.of_int input_size)
then Int32.to_int max_bytes
else input_size
in
let payload = Bytes.sub payload 0 input_size in
let* () = M.store_bytes memory dst (Bytes.to_string payload) in
let* () =
M.store_bytes
memory
info_addr
(Data_encoding.Binary.to_string_exn
read_input_info_encoding
{level = raw_level; id = Z.to_int32 message_counter})
in
return (Int32.of_int input_size))
(fun exn ->
match exn with
| Input_buffer.Dequeue_from_empty_queue -> return 0l
| _ -> fail Error.Generic_invalid_access)
in
extract_error_code res
let write_output ~output_buffer ~memory ~src ~num_bytes =
let open Lwt_result_syntax in
let*! res =
if num_bytes > Int32.of_int input_output_max_size then
fail Error.Input_output_too_large
else
let num_bytes = Int32.to_int num_bytes in
let* payload = M.load_bytes memory src num_bytes in
let* Output_buffer.{outbox_level = _; message_index = _} =
guard (fun () ->
Output_buffer.push_message
output_buffer
(Bytes.of_string payload))
in
return 0l
in
extract_error_code res
let store_exists ~durable ~memory ~key_offset ~key_length =
let open Lwt_result_syntax in
let*! res =
let* key = load_key_from_memory key_offset key_length memory in
let*! res = Durable.exists durable key in
return (if res then 1l else 0l)
in
extract_error_code res
let store_has_unknown_key = 0l
let store_has_value_only = 1l
let store_has_subtrees_only = 2l
let store_has_value_and_subtrees = 3l
let store_has ~durable ~memory ~key_offset ~key_length =
let open Lwt_result_syntax in
let*! res =
let* key = load_key_from_memory key_offset key_length memory in
let*! value_opt = Durable.find_value durable key in
let*! num_subtrees = Durable.count_subtrees durable key in
match (value_opt, num_subtrees) with
| None, 0 -> return store_has_unknown_key
| Some _, 1 -> return store_has_value_only
| None, _ -> return store_has_subtrees_only
| _ -> return store_has_value_and_subtrees
in
extract_error_code res
let generic_store_delete ~kind ~durable ~memory ~key_offset ~key_length =
let open Lwt_result_syntax in
let*! res =
let* key = load_key_from_memory key_offset key_length memory in
let+ durable = guard (fun () -> Durable.delete ~kind durable key) in
(durable, 0l)
in
extract_error durable res
let store_list_size ~durable ~memory ~key_offset ~key_length =
let open Lwt_result_syntax in
let*! res =
let* key = load_key_from_memory key_offset key_length memory in
let+ num_subtrees =
guard (fun () -> Durable.count_subtrees durable key)
in
(durable, I64.of_int_s num_subtrees)
in
match res with
| Error error -> Lwt.return (durable, Int64.of_int32 (Error.code error))
| Ok res -> Lwt.return res
let store_copy ~durable ~memory ~from_key_offset ~from_key_length
~to_key_offset ~to_key_length =
let open Lwt_result_syntax in
let*! res =
let* from_key =
load_key_from_memory from_key_offset from_key_length memory
in
let* to_key = load_key_from_memory to_key_offset to_key_length memory in
let+ durable =
guard (fun () -> Durable.copy_tree_exn durable from_key to_key)
in
(durable, 0l)
in
extract_error durable res
let store_move ~durable ~memory ~from_key_offset ~from_key_length
~to_key_offset ~to_key_length =
let open Lwt_result_syntax in
let*! res =
let* from_key =
load_key_from_memory from_key_offset from_key_length memory
in
let* to_key = load_key_from_memory to_key_offset to_key_length memory in
let+ durable =
guard (fun () -> Durable.move_tree_exn durable from_key to_key)
in
(durable, 0l)
in
extract_error durable res
let store_create ~durable ~memory ~key_offset ~key_length ~size =
let open Lwt_result_syntax in
let*! res =
let* key = load_key_from_memory key_offset key_length memory in
let* () =
if size < Int32.zero then fail Error.Store_value_size_exceeded
else return_unit
in
let* allocated_durable =
guard (fun () ->
Durable.create_value_exn durable key (Int64.of_int32 size))
in
match allocated_durable with
| None -> fail Error.Store_value_already_exists
| Some durable -> return (durable, 0l)
in
extract_error durable res
let store_value_size_aux ~durable ~key =
let open Lwt_result_syntax in
let* bytes = guard (fun () -> Durable.find_value durable key) in
match bytes with
| Some bytes ->
let size = Tezos_lazy_containers.Chunked_byte_vector.length bytes in
return (Int64.to_int32 size)
| None -> fail Error.Store_not_a_value
let store_value_size ~durable ~memory ~key_offset ~key_length =
let open Lwt_result_syntax in
let*! res =
let* key = load_key_from_memory key_offset key_length memory in
store_value_size_aux ~durable ~key
in
extract_error_code res
let store_read ~durable ~memory ~key_offset ~key_length ~value_offset ~dest
~max_bytes =
let open Lwt_result_syntax in
let*! res =
let* key = load_key_from_memory key_offset key_length memory in
let value_offset = Int64.of_int32 value_offset in
let max_bytes = Int64.of_int32 max_bytes in
let* value =
guard (fun () ->
Durable.read_value_exn durable key value_offset max_bytes)
in
let* () = M.store_bytes memory dest value in
return (Int32.of_int (String.length value))
in
extract_error_code res
let store_write ~durable ~memory ~key_offset ~key_length ~value_offset ~src
~num_bytes =
let open Lwt_result_syntax in
let*! res =
let* key = load_key_from_memory key_offset key_length memory in
let*! value_size_err = store_value_size_aux ~durable ~key in
let* value_size =
match value_size_err with
| Ok s -> return s
| Error Error.Store_not_a_value -> return 0l
| Error e -> fail e
in
let* () =
if value_size > Int32.add value_size num_bytes then
fail Error.Store_value_size_exceeded
else return_unit
in
let value_offset = Int64.of_int32 value_offset in
let num_bytes = Int32.to_int num_bytes in
let* payload = M.load_bytes memory src num_bytes in
let+ durable =
guard (fun () ->
Durable.write_value_exn durable key value_offset payload)
in
(durable, 0l)
in
extract_error durable res
let store_get_nth_key ~durable ~memory ~key_offset ~key_length ~index ~dst
~max_size =
let open Lwt_result_syntax in
let*! res =
let index = Int64.to_int index in
let* key = load_key_from_memory key_offset key_length memory in
let* result =
guard (fun () -> Durable.subtree_name_at durable key index)
in
let result_size = String.length result in
let max_size = Int32.to_int max_size in
let result =
if max_size < result_size then String.sub result 0 max_size
else result
in
let+ () =
if result <> "" then M.store_bytes memory dst result else return_unit
in
Int32.of_int @@ String.length result
in
extract_error_code res
let store_get_hash ~durable ~memory ~key_offset ~key_length ~dst ~max_size =
let open Lwt_result_syntax in
let*! res =
let* key = load_key_from_memory key_offset key_length memory in
let* result =
guard (fun () -> Durable.hash_exn ~kind:Directory durable key)
in
let result =
Data_encoding.Binary.to_string_exn Context_hash.encoding result
in
let result_size = String.length result in
let max_size = Int32.to_int max_size in
let result =
if max_size < result_size then String.sub result 0 max_size
else result
in
let+ () =
if result <> "" then M.store_bytes memory dst result else return_unit
in
Int32.of_int @@ String.length result
in
extract_error_code res
let reveal ~memory ~dst ~max_bytes ~payload =
let open Lwt_syntax in
let* res =
let open Lwt_result_syntax in
let payload_size = Bytes.length payload in
let revealed_bytes = min payload_size (Int32.to_int max_bytes) in
let payload = Bytes.sub payload 0 revealed_bytes in
let+ () = M.store_bytes memory dst (Bytes.to_string payload) in
Int32.of_int revealed_bytes
in
extract_error_code res
let read_mem_for_debug ~memory ~src ~num_bytes =
let open Lwt.Syntax in
let get_error_message = function
| err -> Printf.sprintf "Error code: %ld" @@ Error.code err
in
let+ result = M.load_bytes memory src (I32.to_int_u num_bytes) in
Result.fold ~ok:Fun.id ~error:get_error_message result
let write_debug_impl ~memory:_ ~src:_ ~num_bytes:_ = Lwt.return_unit
let alternate_write_debug_impl ~f ~memory ~src ~num_bytes =
let open Lwt.Syntax in
let* result = read_mem_for_debug ~memory ~src ~num_bytes in
Lwt.catch (fun () -> f result) (fun _exn -> Lwt_syntax.return_unit)
let write_debug ~implem =
match implem with
| Builtins.Noop -> write_debug_impl
| Printer f -> alternate_write_debug_impl ~f
end
include Make (Memory_access_interpreter)
end
module Tick_model = struct
include Tezos_webassembly_interpreter.Tick_model
let read_key_in_memory key_length =
of_int32_exn key_length * ticks_per_byte_read
let value_written_in_memory value_size =
of_int32_exn value_size * ticks_per_byte_written
let value_read_from_memory value_size =
of_int32_exn value_size * ticks_per_byte_read
let tree_access = one
let tree_move = one
let tree_copy = one
let tree_deletion = one
let tree_write = one
let tree_read = one
let with_error result compute_ticks =
if result < 0l then nop else compute_ticks ()
end
let value i = Values.(Num (I32 i))
let read_input_type =
let input_types =
Types.[NumType I32Type; NumType I32Type; NumType I32Type] |> Vector.of_list
in
let output_types = Types.[NumType I32Type] |> Vector.of_list in
Types.FuncType (input_types, output_types)
let read_input_name = "tezos_read_input"
let read_input_ticks input_size =
Tick_model.(
with_error input_size (fun () -> value_written_in_memory input_size) |> to_z)
let read_input =
Host_funcs.Host_func
(fun input_buffer _output_buffer durable memories inputs ->
let open Lwt.Syntax in
match inputs with
| [
Values.(Num (I32 info_addr));
Values.(Num (I32 dst));
Values.(Num (I32 max_bytes));
] ->
let* memory = retrieve_memory memories in
let* written_bytes =
Aux.read_input ~input_buffer ~memory ~info_addr ~dst ~max_bytes
in
Lwt.return
(durable, [value written_bytes], read_input_ticks written_bytes)
| _ -> raise Bad_input)
let write_output_name = "tezos_write_output"
let write_output_type =
let input_types =
Types.[NumType I32Type; NumType I32Type] |> Vector.of_list
in
let output_types = Types.[NumType I32Type] |> Vector.of_list in
Types.FuncType (input_types, output_types)
let write_output_ticks output_size =
Tick_model.(
with_error output_size (fun () -> value_read_from_memory output_size)
|> to_z)
let write_output =
Host_funcs.Host_func
(fun _input_buffer output_buffer durable memories inputs ->
let open Lwt.Syntax in
match inputs with
| [Values.(Num (I32 src)); Values.(Num (I32 num_bytes))] ->
let* memory = retrieve_memory memories in
let* read_bytes =
Aux.write_output ~output_buffer ~memory ~src ~num_bytes
in
Lwt.return (durable, [value read_bytes], write_output_ticks read_bytes)
| _ -> raise Bad_input)
let write_debug_name = "tezos_write_debug"
let write_debug_type =
let input_types =
Types.[NumType I32Type; NumType I32Type] |> Vector.of_list
in
let output_types = Vector.empty () in
Types.FuncType (input_types, output_types)
let write_debug ~implem =
let open Lwt.Syntax in
let run = Aux.write_debug ~implem in
Host_funcs.Host_func
(fun _input_buffer _output_buffer durable memories inputs ->
let* memory = retrieve_memory memories in
match inputs with
| [Values.(Num (I32 src)); Values.(Num (I32 num_bytes))] ->
let+ () = run ~memory ~src ~num_bytes in
(durable, [], Tick_model.(to_z nop))
| _ -> raise Bad_input)
let store_exists_name = "tezos_store_exists"
let store_exists_type =
let input_types =
Types.[NumType I32Type; NumType I32Type] |> Vector.of_list
in
let output_types = Types.[NumType I32Type] |> Vector.of_list in
Types.FuncType (input_types, output_types)
let store_exists_ticks key_size result =
Tick_model.(
with_error result (fun () -> read_key_in_memory key_size + tree_access)
|> to_z)
let store_exists =
Host_funcs.Host_func
(fun _input_buffer _output_buffer durable memories inputs ->
let open Lwt.Syntax in
match inputs with
| [Values.(Num (I32 key_offset)); Values.(Num (I32 key_length))] ->
let* memory = retrieve_memory memories in
let+ r =
Aux.store_exists
~durable:(Durable.of_storage_exn durable)
~memory
~key_offset
~key_length
in
(durable, [value r], store_exists_ticks key_length r)
| _ -> raise Bad_input)
let store_has_name = "tezos_store_has"
let store_has_type =
let input_types =
Types.[NumType I32Type; NumType I32Type] |> Vector.of_list
in
let output_types = Types.[NumType I32Type] |> Vector.of_list in
Types.FuncType (input_types, output_types)
let store_has_ticks key_size result =
Tick_model.(
with_error result (fun () -> read_key_in_memory key_size + tree_access)
|> to_z)
let store_has =
Host_funcs.Host_func
(fun _input_buffer _output_buffer durable memories inputs ->
let open Lwt.Syntax in
match inputs with
| [Values.(Num (I32 key_offset)); Values.(Num (I32 key_length))] ->
let* memory = retrieve_memory memories in
let+ r =
Aux.store_has
~durable:(Durable.of_storage_exn durable)
~memory
~key_offset
~key_length
in
(durable, [value r], store_has_ticks key_length r)
| _ -> raise Bad_input)
let store_delete_ticks key_size result =
Tick_model.(
with_error result (fun () -> read_key_in_memory key_size + tree_deletion)
|> to_z)
let generic_store_delete ~kind =
Host_funcs.Host_func
(fun _input_buffer _output_buffer durable memories inputs ->
match inputs with
| [Values.(Num (I32 key_offset)); Values.(Num (I32 key_length))] ->
let open Lwt.Syntax in
let* memory = retrieve_memory memories in
let+ durable, code =
Aux.generic_store_delete
~kind
~durable:(Durable.of_storage_exn durable)
~memory
~key_offset
~key_length
in
( Durable.to_storage durable,
[value code],
store_delete_ticks key_length code )
| _ -> raise Bad_input)
let store_delete_name = "tezos_store_delete"
let store_delete_type =
let input_types =
Types.[NumType I32Type; NumType I32Type] |> Vector.of_list
in
let output_types = Vector.of_list [Types.NumType I32Type] in
Types.FuncType (input_types, output_types)
let store_delete = generic_store_delete ~kind:Durable.Directory
let store_delete_value_name = "tezos_store_delete_value"
let store_delete_value_type = store_delete_type
let store_delete_value = generic_store_delete ~kind:Durable.Value
let store_create_name = "tezos_store_create"
let store_create_type =
let open Instance in
let input_types =
Types.[NumType I32Type; NumType I32Type; NumType I32Type] |> Vector.of_list
in
let output_types = Vector.of_list Types.[NumType I32Type] in
Types.FuncType (input_types, output_types)
let store_create_ticks key_size result =
Tick_model.(
with_error result (fun () -> read_key_in_memory key_size + tree_access)
|> to_z)
let store_create =
let open Lwt_syntax in
let open Values in
Host_funcs.Host_func
(fun _input _output durable memories inputs ->
match inputs with
| [Num (I32 key_offset); Num (I32 key_length); Num (I32 size)] ->
let* memory = retrieve_memory memories in
let+ durable, res =
Aux.store_create
~durable:(Durable.of_storage_exn durable)
~memory
~key_offset
~key_length
~size
in
( Durable.to_storage durable,
[value res],
store_create_ticks key_length res )
| _ -> raise Bad_input)
let store_value_size_name = "tezos_store_value_size"
let store_value_size_type =
let open Instance in
let input_types =
Types.[NumType I32Type; NumType I32Type] |> Vector.of_list
in
let output_types = Vector.of_list Types.[NumType I32Type] in
Types.FuncType (input_types, output_types)
let store_value_size_ticks key_size result =
Tick_model.(
with_error result (fun () -> read_key_in_memory key_size + tree_access)
|> to_z)
let store_value_size =
let open Lwt_syntax in
let open Values in
Host_funcs.Host_func
(fun _input _output durable memories inputs ->
match inputs with
| [Num (I32 key_offset); Num (I32 key_length)] ->
let* memory = retrieve_memory memories in
let+ res =
Aux.store_value_size
~durable:(Durable.of_storage_exn durable)
~memory
~key_offset
~key_length
in
(durable, [value res], store_value_size_ticks key_length res)
| _ -> raise Bad_input)
let store_list_size_name = "tezos_store_list_size"
let store_list_size_type =
let open Instance in
let input_types =
Types.[NumType I32Type; NumType I32Type] |> Vector.of_list
in
let output_types = Types.[NumType I64Type] |> Vector.of_list in
Types.FuncType (input_types, output_types)
let store_list_size_ticks key_size result =
Tick_model.(
with_error result (fun () -> read_key_in_memory key_size + tree_access)
|> to_z)
let store_list_size =
Host_funcs.Host_func
(fun _input_buffer _output_buffer durable memories inputs ->
let open Lwt.Syntax in
match inputs with
| [Values.(Num (I32 key_offset)); Values.(Num (I32 key_length))] ->
let* memory = retrieve_memory memories in
let+ durable, result =
Aux.store_list_size
~durable:(Durable.of_storage_exn durable)
~memory
~key_offset
~key_length
in
( Durable.to_storage durable,
[Values.(Num (I64 result))],
store_list_size_ticks key_length (Int64.to_int32 result) )
| _ -> raise Bad_input)
let store_get_nth_key_name = "tezos_store_get_nth_key_list"
let store_get_nth_key_type =
let input_types =
Types.
[
NumType I32Type;
NumType I32Type;
NumType I64Type;
NumType I32Type;
NumType I32Type;
]
|> Vector.of_list
in
let output_types = Types.[NumType I32Type] |> Vector.of_list in
Types.FuncType (input_types, output_types)
let store_get_nth_key_ticks key_size result =
Tick_model.(
with_error result (fun () -> read_key_in_memory key_size + tree_access)
|> to_z)
let store_get_nth_key =
Host_funcs.Host_func
(fun _input_buffer _output_buffer durable memories inputs ->
let open Lwt.Syntax in
match inputs with
| Values.
[
Num (I32 key_offset);
Num (I32 key_length);
Num (I64 index);
Num (I32 dst);
Num (I32 max_size);
] ->
let* memory = retrieve_memory memories in
let+ result =
Aux.store_get_nth_key
~durable:(Durable.of_storage_exn durable)
~memory
~key_offset
~key_length
~index
~dst
~max_size
in
(durable, [value result], store_get_nth_key_ticks key_length result)
| _ -> raise Bad_input)
let store_get_hash_name = "tezos_internal_store_get_hash"
let store_get_hash_type =
let input_types =
Types.[NumType I32Type; NumType I32Type; NumType I32Type; NumType I32Type]
|> Vector.of_list
in
let output_types = Types.[NumType I32Type] |> Vector.of_list in
Types.FuncType (input_types, output_types)
let store_get_hash_ticks key_size result =
Tick_model.(
with_error result (fun () -> read_key_in_memory key_size + tree_access)
|> to_z)
let store_get_hash =
Host_funcs.Host_func
(fun _input_buffer _output_buffer durable memories inputs ->
let open Lwt.Syntax in
match inputs with
| Values.
[
Num (I32 key_offset);
Num (I32 key_length);
Num (I32 dst);
Num (I32 max_size);
] ->
let* memory = retrieve_memory memories in
let+ result =
Aux.store_get_hash
~durable:(Durable.of_storage_exn durable)
~memory
~key_offset
~key_length
~dst
~max_size
in
(durable, [value result], store_get_hash_ticks key_length result)
| _ -> raise Bad_input)
let store_copy_name = "tezos_store_copy"
let store_copy_type =
let open Instance in
let input_types =
Types.[NumType I32Type; NumType I32Type; NumType I32Type; NumType I32Type]
|> Vector.of_list
in
let output_types = Vector.of_list Types.[NumType I32Type] in
Types.FuncType (input_types, output_types)
let store_copy_ticks from_key_size to_key_size result =
Tick_model.(
with_error result (fun () ->
read_key_in_memory from_key_size
+ read_key_in_memory to_key_size
+ tree_copy)
|> to_z)
let store_copy =
Host_funcs.Host_func
(fun _input_buffer _output_buffer durable memories inputs ->
match inputs with
| [
Values.(Num (I32 from_key_offset));
Values.(Num (I32 from_key_length));
Values.(Num (I32 to_key_offset));
Values.(Num (I32 to_key_length));
] ->
let open Lwt.Syntax in
let* memory = retrieve_memory memories in
let durable = Durable.of_storage_exn durable in
let+ durable, code =
Aux.store_copy
~durable
~memory
~from_key_offset
~from_key_length
~to_key_offset
~to_key_length
in
( Durable.to_storage durable,
[value code],
store_copy_ticks from_key_length to_key_length code )
| _ -> raise Bad_input)
let store_move_name = "tezos_store_move"
let store_move_type =
let open Instance in
let input_types =
Types.[NumType I32Type; NumType I32Type; NumType I32Type; NumType I32Type]
|> Vector.of_list
in
let output_types = Vector.of_list Types.[NumType I32Type] in
Types.FuncType (input_types, output_types)
let store_move_ticks from_key_size to_key_size result =
Tick_model.(
with_error result (fun () ->
read_key_in_memory from_key_size
+ read_key_in_memory to_key_size
+ tree_move)
|> to_z)
let store_move =
Host_funcs.Host_func
(fun _input_buffer _output_buffer durable memories inputs ->
match inputs with
| [
Values.(Num (I32 from_key_offset));
Values.(Num (I32 from_key_length));
Values.(Num (I32 to_key_offset));
Values.(Num (I32 to_key_length));
] ->
let open Lwt.Syntax in
let* memory = retrieve_memory memories in
let durable = Durable.of_storage_exn durable in
let+ durable, code =
Aux.store_move
~durable
~memory
~from_key_offset
~from_key_length
~to_key_offset
~to_key_length
in
( Durable.to_storage durable,
[value code],
store_move_ticks to_key_length from_key_length code )
| _ -> raise Bad_input)
let store_read_name = "tezos_store_read"
let store_read_type =
let input_types =
Types.
[
NumType I32Type;
NumType I32Type;
NumType I32Type;
NumType I32Type;
NumType I32Type;
]
|> Vector.of_list
in
let output_types = Vector.of_list Types.[NumType I32Type] in
Types.FuncType (input_types, output_types)
let store_read_ticks key_size value_size =
Tick_model.(
with_error value_size (fun () ->
read_key_in_memory key_size
+ tree_access
+ value_written_in_memory value_size)
|> to_z)
let store_read =
Host_funcs.Host_func
(fun _input_buffer _output_buffer durable memories inputs ->
match inputs with
| [
Values.(Num (I32 key_offset));
Values.(Num (I32 key_length));
Values.(Num (I32 value_offset));
Values.(Num (I32 dest));
Values.(Num (I32 max_bytes));
] ->
let open Lwt.Syntax in
let* memory = retrieve_memory memories in
let+ len =
Aux.store_read
~durable:(Durable.of_storage_exn durable)
~memory
~key_offset
~key_length
~value_offset
~dest
~max_bytes
in
(durable, [value len], store_read_ticks key_length len)
| _ -> raise Bad_input)
let reveal_preimage_name = "tezos_reveal_preimage"
let reveal_preimage_type =
let input_types =
Types.[NumType I32Type; NumType I32Type; NumType I32Type; NumType I32Type]
|> Vector.of_list
in
let output_types = Types.[NumType I32Type] |> Vector.of_list in
Types.FuncType (input_types, output_types)
let reveal_preimage_parse_args memories args =
match args with
| Values.
[
Num (I32 hash_addr);
Num (I32 hash_size);
Num (I32 base);
Num (I32 max_bytes);
] ->
let open Lwt_result_syntax in
let*! memory = retrieve_memory memories in
let* hash = Aux.load_bytes ~memory ~addr:hash_addr ~size:hash_size in
Lwt_result.return
(Wasm_pvm_state.reveal_raw_data hash, Host_funcs.{base; max_bytes})
| _ -> raise Bad_input
let reveal_preimage = Host_funcs.Reveal_func reveal_preimage_parse_args
let reveal_metadata_name = "tezos_reveal_metadata"
let reveal_metadata_type =
let input_types =
Types.[NumType I32Type; NumType I32Type] |> Vector.of_list
in
let output_types = Types.[NumType I32Type] |> Vector.of_list in
Types.FuncType (input_types, output_types)
let metadata_size = Int32.add 20l 4l
let reveal_metadata_parse_args _memories args =
match args with
| Values.[Num (I32 base); Num (I32 max_bytes)] ->
Lwt.return
(Ok (Wasm_pvm_state.reveal_metadata, Host_funcs.{base; max_bytes}))
| _ -> raise Bad_input
let reveal_metadata = Host_funcs.Reveal_func reveal_metadata_parse_args
let reveal_raw_name = "tezos_reveal"
let reveal_raw_type =
let input_types =
Types.[NumType I32Type; NumType I32Type; NumType I32Type; NumType I32Type]
|> Vector.of_list
in
let output_types = Types.[NumType I32Type] |> Vector.of_list in
Types.FuncType (input_types, output_types)
let reveal_raw_parse_args memories args =
match args with
| Values.
[
Num (I32 payload_addr);
Num (I32 payload_size);
Num (I32 destination_addr);
Num (I32 max_bytes);
] ->
let open Lwt_result_syntax in
let*! memory = retrieve_memory memories in
let* payload =
Aux.load_bytes ~memory ~addr:payload_addr ~size:payload_size
in
Lwt_result.return
( Host_funcs.(Reveal_raw payload),
Host_funcs.{base = destination_addr; max_bytes} )
| _ -> raise Bad_input
let reveal_raw = Host_funcs.Reveal_func reveal_raw_parse_args
let store_write_name = "tezos_write_read"
let store_write_type =
let input_types =
Types.
[
NumType I32Type;
NumType I32Type;
NumType I32Type;
NumType I32Type;
NumType I32Type;
]
|> Vector.of_list
in
let output_types = Vector.of_list Types.[NumType I32Type] in
Types.FuncType (input_types, output_types)
let store_write_ticks key_size value_size result =
Tick_model.(
with_error result (fun () ->
read_key_in_memory key_size
+ tree_access
+ value_read_from_memory value_size)
|> to_z)
let store_write =
Host_funcs.Host_func
(fun _input_buffer _output_buffer durable memories inputs ->
match inputs with
| [
Values.(Num (I32 key_offset));
Values.(Num (I32 key_length));
Values.(Num (I32 value_offset));
Values.(Num (I32 src));
Values.(Num (I32 num_bytes));
] ->
let open Lwt.Syntax in
let* memory = retrieve_memory memories in
let durable = Durable.of_storage_exn durable in
let+ durable, code =
Aux.store_write
~durable
~memory
~key_offset
~key_length
~value_offset
~src
~num_bytes
in
( Durable.to_storage durable,
[value code],
store_write_ticks key_length num_bytes code )
| _ -> raise Bad_input)
let lookup_opt ~version name =
let v1_and_above ty name =
match version with
| Wasm_pvm_state.V0 -> None
| V1 | V2 | V3 | V4 -> Some (ExternFunc (HostFunc (ty, name)))
in
let v2_and_above ty name =
match version with
| Wasm_pvm_state.V0 | V1 -> None
| V2 | V3 | V4 -> Some (ExternFunc (HostFunc (ty, name)))
in
let v3_and_above ty name =
match version with
| Wasm_pvm_state.V0 | V1 | V2 -> None
| V3 | V4 -> Some (ExternFunc (HostFunc (ty, name)))
in
match name with
| "read_input" ->
Some (ExternFunc (HostFunc (read_input_type, read_input_name)))
| "write_output" ->
Some (ExternFunc (HostFunc (write_output_type, write_output_name)))
| "write_debug" ->
Some (ExternFunc (HostFunc (write_debug_type, write_debug_name)))
| "store_has" -> Some (ExternFunc (HostFunc (store_has_type, store_has_name)))
| "store_list_size" ->
Some (ExternFunc (HostFunc (store_list_size_type, store_list_size_name)))
| "store_get_nth_key" ->
Some
(ExternFunc (HostFunc (store_get_nth_key_type, store_get_nth_key_name)))
| "store_delete" ->
Some (ExternFunc (HostFunc (store_delete_type, store_delete_name)))
| "store_delete_value" ->
v1_and_above store_delete_value_type store_delete_value_name
| "store_copy" ->
Some (ExternFunc (HostFunc (store_copy_type, store_copy_name)))
| "store_move" ->
Some (ExternFunc (HostFunc (store_move_type, store_move_name)))
| "store_value_size" ->
Some
(ExternFunc (HostFunc (store_value_size_type, store_value_size_name)))
| "reveal_preimage" ->
Some (ExternFunc (HostFunc (reveal_preimage_type, reveal_preimage_name)))
| "reveal_metadata" ->
Some (ExternFunc (HostFunc (reveal_metadata_type, reveal_metadata_name)))
| "store_read" ->
Some (ExternFunc (HostFunc (store_read_type, store_read_name)))
| "store_write" ->
Some (ExternFunc (HostFunc (store_write_type, store_write_name)))
| "__internal_store_get_hash" ->
v1_and_above store_get_hash_type store_get_hash_name
| "store_create" -> v1_and_above store_create_type store_create_name
| "store_exists" -> v2_and_above store_exists_type store_exists_name
| "reveal" -> v3_and_above reveal_raw_type reveal_raw_name
| _ -> None
let lookup ~version name =
match lookup_opt ~version name with Some f -> f | None -> raise Not_found
let base =
List.fold_left
(fun registry (global_name, implem) ->
Host_funcs.with_host_function ~global_name ~implem registry)
Host_funcs.empty_builder
[
(read_input_name, read_input);
(write_output_name, write_output);
(store_has_name, store_has);
(store_list_size_name, store_list_size);
(store_get_nth_key_name, store_get_nth_key);
(store_delete_name, store_delete);
(store_copy_name, store_copy);
(store_move_name, store_move);
(store_value_size_name, store_value_size);
(reveal_preimage_name, reveal_preimage);
(reveal_metadata_name, reveal_metadata);
(store_read_name, store_read);
(store_write_name, store_write);
]
let with_write_debug ~write_debug:implem builder =
Host_funcs.with_host_function
~global_name:write_debug_name
~implem:(write_debug ~implem)
builder
let registry_V0 ~write_debug =
Host_funcs.(base |> with_write_debug ~write_debug |> construct)
let registry_V0_noop = registry_V0 ~write_debug:Noop
let base_V1 =
Host_funcs.(
base
|> with_host_function
~global_name:store_get_hash_name
~implem:store_get_hash
|> with_host_function
~global_name:store_delete_value_name
~implem:store_delete_value
|> with_host_function ~global_name:store_create_name ~implem:store_create)
let registry_V1 ~write_debug =
Host_funcs.(base_V1 |> with_write_debug ~write_debug |> construct)
let registry_V1_noop = registry_V1 ~write_debug:Noop
let base_V2 =
Host_funcs.(
base_V1
|> with_host_function ~global_name:store_exists_name ~implem:store_exists)
let registry_V2 ~write_debug =
Host_funcs.(base_V2 |> with_write_debug ~write_debug |> construct)
let registry_V2_noop = registry_V2 ~write_debug:Noop
let base_V3 =
Host_funcs.(
base_V2
|> with_host_function ~global_name:reveal_raw_name ~implem:reveal_raw)
let registry_V3 ~write_debug =
Host_funcs.(base_V3 |> with_write_debug ~write_debug |> construct)
let registry_V3_noop = registry_V3 ~write_debug:Noop
let base_V4 = base_V3
let registry_V4 ~write_debug =
Host_funcs.(base_V4 |> with_write_debug ~write_debug |> construct)
let registry_V4_noop = registry_V4 ~write_debug:Noop
let registry ~version ~write_debug =
match (version, write_debug) with
| Wasm_pvm_state.V0, Builtins.Noop -> registry_V0_noop
| Wasm_pvm_state.V0, _ -> registry_V0 ~write_debug
| Wasm_pvm_state.V1, Noop -> registry_V1_noop
| Wasm_pvm_state.V1, _ -> registry_V1 ~write_debug
| Wasm_pvm_state.V2, Noop -> registry_V2_noop
| Wasm_pvm_state.V2, _ -> registry_V2 ~write_debug
| Wasm_pvm_state.V3, Noop -> registry_V3_noop
| Wasm_pvm_state.V3, _ -> registry_V3 ~write_debug
| Wasm_pvm_state.V4, Noop -> registry_V4_noop
| Wasm_pvm_state.V4, _ -> registry_V4 ~write_debug
module Internal_for_tests = struct
let metadata_size = Int32.to_int metadata_size
let write_output = Func.HostFunc (write_output_type, write_output_name)
let read_input = Func.HostFunc (read_input_type, read_input_name)
let store_has = Func.HostFunc (store_has_type, store_has_name)
let store_exists = Func.HostFunc (store_exists_type, store_exists_name)
let store_delete = Func.HostFunc (store_delete_type, store_delete_name)
let store_delete_value =
Func.HostFunc (store_delete_value_type, store_delete_value_name)
let store_copy = Func.HostFunc (store_copy_type, store_copy_name)
let store_move = Func.HostFunc (store_move_type, store_move_name)
let store_create = Func.HostFunc (store_create_type, store_create_name)
let store_read = Func.HostFunc (store_read_type, store_read_name)
let store_write = Func.HostFunc (store_write_type, store_write_name)
let store_value_size =
Func.HostFunc (store_value_size_type, store_value_size_name)
let store_list_size =
Func.HostFunc (store_list_size_type, store_list_size_name)
let store_get_nth_key =
Func.HostFunc (store_get_nth_key_type, store_get_nth_key_name)
let store_get_hash = Func.HostFunc (store_get_hash_type, store_get_hash_name)
let write_debug = Func.HostFunc (write_debug_type, write_debug_name)
end