Source file wasm_utils.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
open Tezos_webassembly_interpreter
open Tezos_scoru_wasm
open Tezos_lazy_containers
let parse_module code =
let def = Parse.string_to_module code in
match def.it with
| Script.Textual m -> m
| _ -> Stdlib.failwith "Failed to parse WebAssembly module"
let wat2wasm code =
let modul = parse_module code in
Encode.encode modul
let default_max_tick = 100000L
let production_max_tick = 11_000_000_000L
let default_outbox_validity_period = 10l
let default_outbox_message_limit = Z.of_int32 100l
let new_message_counter () =
let c = ref Z.zero in
fun () ->
c := Z.succ !c ;
Z.pred !c
module Kernels = struct
let unreachable_kernel = "unreachable"
end
let project_root =
match Sys.getenv_opt "DUNE_SOURCEROOT" with
| Some x -> x
| None -> (
match Sys.getenv_opt "PWD" with
| Some x -> x
| None ->
Sys.getcwd ())
let ( // ) = Filename.concat
let test_with_kernel kernel (test : string -> (unit, _) result Lwt.t) () =
let open Lwt_result_syntax in
let kernel_file =
project_root // Filename.dirname __FILE__ // "../test/wasm_kernels"
// (kernel ^ ".wasm")
in
let* () =
Lwt_io.with_file ~mode:Lwt_io.Input kernel_file (fun channel ->
let*! kernel = Lwt_io.read channel in
test kernel)
in
return_unit
let read_test_messages names =
let locate_file name =
project_root // Filename.dirname __FILE__ // "../test/messages" // name
in
List.map_s
(fun name ->
let message_file = locate_file name in
Lwt_io.with_file ~mode:Lwt_io.Input message_file Lwt_io.read)
names
(** Can be passed to be used as a host function
[compute_step_many ~write_debug:write_debug_on_stdout ...] *)
let write_debug_on_stdout =
Tezos_scoru_wasm.Builtins.Printer
(fun msg -> Lwt.return @@ Format.printf "%s\n%!" msg)
module Make (Ctx : Tezos_tree_encoding.Encodings_util.S) :
Wasm_utils_intf.S with type t = Ctx.t and type tree = Ctx.Tree.tree = struct
module Ctx = Ctx
module Tree_encoding_runner = Ctx.Tree_encoding_runner
module Wasm = Wasm_pvm.Make (Ctx.Tree)
module Wasm_fast = Tezos_scoru_wasm_fast.Pvm.Make (Ctx.Tree)
type t = Ctx.t
type tree = Ctx.Tree.tree
let initial_tree ~version ?tree ?(ticks_per_snapshot = default_max_tick)
?(max_reboots = Constants.maximum_reboots_per_input)
?(from_binary = false)
?(outbox_validity_period = default_outbox_validity_period)
?(outbox_message_limit = default_outbox_message_limit) code =
let open Lwt_syntax in
let max_tick_Z = Z.of_int64 ticks_per_snapshot in
let* tree =
match tree with None -> Ctx.empty_tree () | Some tree -> return tree
in
let* tree = Wasm.initial_state version tree in
let* boot_sector = if from_binary then Lwt.return code else wat2wasm code in
let* tree =
Wasm.install_boot_sector
~ticks_per_snapshot:max_tick_Z
~outbox_validity_period
~outbox_message_limit
boot_sector
tree
in
Wasm.Internal_for_tests.set_maximum_reboots_per_input max_reboots tree
let reveal_builtins _reveal =
Stdlib.failwith "reveals are not available out of the box in tests"
let eval_until_stuck ?(wasm_entrypoint = Constants.wasm_entrypoint)
?(reveal_builtins = reveal_builtins) ?write_debug ?(max_steps = 20000L)
tree =
let open Lwt.Syntax in
let rec go counter tree =
let* tree, _ =
Wasm.compute_step_many
~wasm_entrypoint
~reveal_builtins
?write_debug
~max_steps
tree
in
let* stuck = Wasm.Internal_for_tests.is_stuck tree in
match stuck with
| Some stuck -> Lwt_result.return (stuck, tree)
| _ ->
if counter > 0L then go (Int64.pred counter) tree
else failwith "Failed to get stuck in time"
in
go max_steps tree
let rec eval_to_snapshot ?(wasm_entrypoint = Constants.wasm_entrypoint)
?(reveal_builtins = reveal_builtins) ?write_debug
?(max_steps = Int64.max_int) tree =
let open Lwt_syntax in
let eval tree =
let* tree, _ =
Wasm.compute_step_many
~wasm_entrypoint
~reveal_builtins
?write_debug
~stop_at_snapshot:true
~max_steps
tree
in
let* state = Wasm.Internal_for_tests.get_tick_state tree in
match state with
| Snapshot | Collect -> return tree
| _ ->
eval_to_snapshot
~wasm_entrypoint
~max_steps
~reveal_builtins
?write_debug
tree
in
let* info = Wasm.get_info tree in
match info.input_request with
| No_input_required -> eval tree
| Input_required | Reveal_required _ ->
Stdlib.failwith "Cannot reach snapshot point"
(** [eval_until_input_requested tree] will either
- return tree if input is required
- or run compute_step_many to reach a point where input is required *)
let eval_until_input_requested ?(wasm_entrypoint = Constants.wasm_entrypoint)
?(reveal_builtins = Some reveal_builtins) ?write_debug ?after_fast_exec
?(fast_exec = false) ?(max_steps = Int64.max_int) tree =
let open Lwt_syntax in
let run =
if fast_exec then
Wasm_fast.Internal_for_tests.compute_step_many_with_hooks
~wasm_entrypoint
?after_fast_exec
else Wasm.compute_step_many ~wasm_entrypoint
in
let* info = Wasm.get_info tree in
match info.input_request with
| No_input_required ->
let* tree, _ = run ?reveal_builtins ?write_debug ~max_steps tree in
return tree
| Input_required | Reveal_required _ -> return tree
let eval_until_input_or_reveal_requested =
eval_until_input_requested ~reveal_builtins:None
let input_info level message_counter =
Wasm_pvm_state.
{
inbox_level =
Option.value_f ~default:(fun () -> assert false)
@@ Tezos_base.Bounded.Non_negative_int32.of_value level;
message_counter;
}
let set_sol_input level tree =
let sol_input =
Pvm_input_kind.(
Internal_for_tests.to_binary_input (Internal Start_of_level) None)
in
Wasm.set_input_step (input_info level Z.zero) sol_input tree
let set_protocol_migration_input proto level tree =
let sol_input =
Pvm_input_kind.(
Internal_for_tests.to_binary_input
(Internal (Protocol_migration proto))
None)
in
Wasm.set_input_step (input_info level Z.one) sol_input tree
let set_info_per_level_input ?(migration_block = false) level tree =
let block_hash = Block_hash.zero in
let timestamp = Time.Protocol.epoch in
let info_res =
Data_encoding.(
Binary.to_string
(tup2 Time.Protocol.encoding Block_hash.encoding)
(timestamp, block_hash))
in
match info_res with
| Ok info ->
let info_per_level_input =
Pvm_input_kind.(
Internal_for_tests.to_binary_input
(Internal Info_per_level)
(Some info))
in
Wasm.set_input_step
(input_info level (if migration_block then Z.of_int 2 else Z.one))
info_per_level_input
tree
| Error _ ->
Stdlib.failwith "Info_per_level encoding has failed, this is impossible"
let set_raw_message level counter message tree =
Wasm.set_input_step (input_info level counter) message tree
let set_internal_message level counter message tree =
let encoded_message =
Pvm_input_kind.(
Internal_for_tests.to_binary_input (Internal Transfer) (Some message))
in
Wasm.set_input_step (input_info level counter) encoded_message tree
let set_eol_input level counter tree =
let sol_input =
Pvm_input_kind.(
Internal_for_tests.to_binary_input (Internal End_of_level) None)
in
Wasm.set_input_step (input_info level counter) sol_input tree
let set_inputs_step ?migrate_to set_internal_message messages level tree =
let open Lwt_syntax in
let next_message_counter = new_message_counter () in
let (_ : Z.t) = next_message_counter () in
let* tree = set_sol_input level tree in
let* tree =
match migrate_to with
| Some proto ->
let+ tree = set_protocol_migration_input proto level tree in
let (_ : Z.t) = next_message_counter () in
tree
| None -> return tree
in
let (_ : Z.t) = next_message_counter () in
let* tree =
set_info_per_level_input
~migration_block:(Option.is_some migrate_to)
level
tree
in
let* tree =
List.fold_left_s
(fun tree message ->
set_internal_message level (next_message_counter ()) message tree)
tree
messages
in
set_eol_input level (next_message_counter ()) tree
let set_full_input_step_gen ?migrate_to set_internal_message messages level
tree =
let open Lwt_syntax in
let* tree =
set_inputs_step ?migrate_to set_internal_message messages level tree
in
eval_to_snapshot ~max_steps:Int64.max_int tree
let set_full_input_step ?migrate_to =
set_full_input_step_gen ?migrate_to set_internal_message
let set_full_raw_input_step ?migrate_to =
set_full_input_step_gen set_raw_message ?migrate_to
let set_empty_inbox_step ?migrate_to level tree =
set_full_input_step ?migrate_to [] level tree
let rec eval_until_init ?(wasm_entrypoint = Constants.wasm_entrypoint) tree =
let open Lwt_syntax in
let* state_after_first_message =
Wasm.Internal_for_tests.get_tick_state tree
in
match state_after_first_message with
| Stuck _ | Init _ -> return tree
| _ ->
let* tree = Wasm.compute_step ~wasm_entrypoint tree in
eval_until_init tree
(** [eval_to_result tree] tries to evaluates the PVM until the next `SK_Result`
or `SK_Trap`, and stops in case of reveal tick or input tick. It has the
property that the memory hasn't been flushed yet and can be inspected. *)
let eval_to_result ?(wasm_entrypoint = Constants.wasm_entrypoint) ?write_debug
?reveal_builtins tree =
let open Lwt_syntax in
let should_compute pvm_state =
let+ input_request_val = Wasm_vm.get_info pvm_state in
match (input_request_val.input_request, pvm_state.tick_state) with
| Reveal_required _, _ when reveal_builtins <> None -> true
| Reveal_required _, _ | Input_required, _ -> false
| ( No_input_required,
Eval
{
config =
{
step_kont =
Tezos_webassembly_interpreter.Eval.(
SK_Result _ | SK_Trapped _);
_;
};
_;
} ) ->
false
| No_input_required, _ -> true
in
let* pvm_state =
Tree_encoding_runner.decode Wasm_pvm.pvm_state_encoding tree
in
Wasm.Internal_for_tests.compute_step_many_until
~wasm_entrypoint
?write_debug
?reveal_builtins
~max_steps:(Z.to_int64 pvm_state.max_nb_ticks)
should_compute
tree
let set_input_step message message_counter tree =
let input_info =
Wasm_pvm_state.
{
inbox_level =
Option.value_f ~default:(fun () -> assert false)
@@ Tezos_base.Bounded.Non_negative_int32.of_value 0l;
message_counter = Z.of_int message_counter;
}
in
Wasm.set_input_step input_info message tree
let pp_interpreter_error out
Wasm_pvm_errors.{raw_exception = Truncated raw_exception; explanation} =
Format.fprintf
out
"@[<hv 2>{ raw_exception: %s; explanation: %s }@]"
raw_exception
(match explanation with
| None -> "None"
| Some (Truncated s) -> "Some: " ^ s)
let pp_fallback_cause out = function
| Wasm_pvm_errors.Decode_cause error ->
Format.fprintf
out
"@[<hv 2>Decode_cause %a@]"
pp_interpreter_error
error
| Wasm_pvm_errors.Link_cause (Truncated error) ->
Format.fprintf out "@[<hv 2>Link_cause %s@]" error
| Wasm_pvm_errors.Init_cause error ->
Format.fprintf out "@[<hv 2>Init_cause %a@]" pp_interpreter_error error
let pp_error_state out = function
| Wasm_pvm_errors.Eval_error error ->
Format.fprintf out "@[<hv 2>Eval_error %a@]" pp_interpreter_error error
| Wasm_pvm_errors.Decode_error error ->
Format.fprintf
out
"@[<hv 2>Decode_error %a@]"
pp_interpreter_error
error
| Wasm_pvm_errors.Link_error (Truncated error) ->
Format.fprintf out "@[<hv 2>Link_error %s@]" error
| Wasm_pvm_errors.Init_error error ->
Format.fprintf out "@[<hv 2>Init_error %a@]" pp_interpreter_error error
| Wasm_pvm_errors.Invalid_state (Truncated err) ->
Format.fprintf out "@[<hv 2>Invalid_state (%s)@]" err
| Wasm_pvm_errors.Unknown_error (Truncated err) ->
Format.fprintf out "@[<hv 2>Unknown_error (%s)@]" err
| Wasm_pvm_errors.Too_many_ticks ->
Format.fprintf out "@[<hv 2>Too_many_ticks@]"
| Wasm_pvm_errors.Too_many_reboots ->
Format.fprintf out "@[<hv 2>Too_many_reboots@]"
| Wasm_pvm_errors.No_fallback_kernel cause ->
Format.fprintf
out
"@[<hv 2>No_fallback_kernel (%a)@]"
pp_fallback_cause
cause
let print_error_state = Format.asprintf "%a" pp_error_state
let pp_state fmt state =
let pp_s s = Format.fprintf fmt "%s" s in
match state with
| Wasm_pvm_state.Internal_state.Snapshot -> pp_s "Snapshot"
| Decode _ -> pp_s "Decode"
| Eval
{
config =
{step_kont = Tezos_webassembly_interpreter.Eval.(SK_Result _); _};
_;
} ->
pp_s "Evaluation succeeded"
| Eval
{
config =
{step_kont = Tezos_webassembly_interpreter.Eval.(SK_Trapped msg); _};
_;
} ->
Format.fprintf fmt "Evaluation failed (%s)" msg.it
| Eval _ -> Format.fprintf fmt "Eval"
| Stuck e -> Format.fprintf fmt "Stuck (%a)" pp_error_state e
| Init _ -> pp_s "Init"
| Collect -> pp_s "Collect"
| Link _ -> pp_s "Link"
| Padding -> pp_s "Padding"
let check_error ?expected_kind ?expected_reason error =
let check_reason actual_reason =
match expected_reason with
| None -> true
| _ ->
Option.map Wasm_pvm_errors.truncate_message expected_reason
= actual_reason
in
match (expected_kind, error) with
| Some `Decode, Wasm_pvm_errors.Decode_error {explanation; _} ->
check_reason explanation
| ( Some `No_fallback_decode,
Wasm_pvm_errors.No_fallback_kernel
(Wasm_pvm_errors.Decode_cause {explanation; _}) ) ->
check_reason explanation
| Some `Init, Init_error {explanation; _} -> check_reason explanation
| ( Some `No_fallback_init,
Wasm_pvm_errors.No_fallback_kernel
(Wasm_pvm_errors.Init_cause {explanation; _}) ) ->
check_reason explanation
| Some `Link, Link_error explanation -> check_reason (Some explanation)
| ( Some `No_fallback_link,
Wasm_pvm_errors.No_fallback_kernel
(Wasm_pvm_errors.Link_cause explanation) ) ->
check_reason (Some explanation)
| Some `Eval, Eval_error {explanation; _} -> check_reason explanation
| Some `Invalid_state, Invalid_state explanation ->
check_reason (Some explanation)
| Some `Unknown, Unknown_error _ -> true
| Some `Too_many_ticks, Too_many_ticks -> true
| Some `Too_many_reboots, Too_many_reboots -> true
| Some _, _ -> false
| None, _ -> true
let is_stuck ?step ?reason = function
| Wasm_pvm_state.Internal_state.Stuck err ->
check_error ?expected_kind:step ?expected_reason:reason err
| _ -> false
let wrap_as_durable_storage tree =
let open Lwt.Syntax in
let+ tree =
Tree_encoding_runner.decode
Tezos_tree_encoding.(scope ["durable"] wrapped_tree)
tree
in
Tezos_webassembly_interpreter.Durable_storage.of_tree tree
let has_stuck_flag tree =
let open Lwt_syntax in
let* durable = wrap_as_durable_storage tree in
let durable = Durable.of_storage_exn durable in
let+ allows_stuck = Durable.(find_value durable Constants.stuck_flag_key) in
Option.is_some allows_stuck
let make_durable list_key_vals =
let open Lwt_syntax in
let* tree = Ctx.empty_tree () in
let* tree =
Tree_encoding_runner.encode
(Tezos_tree_encoding.value
["durable"; "@"; "keep_me"]
Data_encoding.bool)
true
tree
in
let* durable = wrap_as_durable_storage tree in
let+ tree =
List.fold_left
(fun acc (key, value) ->
let* tree = acc in
let key = Durable.key_of_string_exn key in
Durable.write_value_exn tree key 0L value)
(Lwt.return @@ Durable.of_storage_exn durable)
list_key_vals
in
Durable.to_storage tree
let make_module_inst ~version list_key_vals src =
let module_inst =
Tezos_webassembly_interpreter.Instance.empty_module_inst
in
let memory =
Memory.alloc (MemoryType Types.{min = 20l; max = Some 3600l})
in
let _ =
List.fold_left
(fun acc key ->
let _ = Memory.store_bytes memory acc key in
Int32.add acc @@ Int32.of_int (String.length key))
src
list_key_vals
in
let memories = Lazy_vector.Int32Vector.cons memory module_inst.memories in
let module_inst = {module_inst with memories} in
let module_reg = Instance.ModuleMap.create () in
let module_key = Instance.Module_key "test" in
Instance.update_module_ref module_reg module_key module_inst ;
(module_reg, module_key, Host_funcs.registry ~version ~write_debug:Noop)
let retrieve_memory module_reg =
let open Lwt_syntax in
let* (module_inst : Instance.module_inst) =
Instance.ModuleMap.get "test" module_reg
in
let memories = module_inst.memories in
if Lazy_vector.Int32Vector.num_elements memories = 1l then
Lazy_vector.Int32Vector.get 0l memories
else assert false
end
module In_memory_context =
Tezos_tree_encoding.Encodings_util.Make (Tezos_context_memory.Context_binary)
include Make (In_memory_context)