Source file interpreter.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
let get_boot_sector (module Plugin : Protocol_plugin_sig.PARTIAL) block_hash
(node_ctxt : _ Node_context.t) =
let open Lwt_result_syntax in
match node_ctxt.boot_sector_file with
| None -> Plugin.Layer1_helpers.get_boot_sector block_hash node_ctxt
| Some boot_sector_file ->
let*! boot_sector = Lwt_utils_unix.read_file boot_sector_file in
let*? boot_sector =
Option.value_e
~error:
[
Rollup_node_errors.Unparsable_boot_sector {path = boot_sector_file};
]
(Plugin.Pvm.parse_boot_sector node_ctxt.kind boot_sector)
in
return boot_sector
let genesis_state (module Plugin : Protocol_plugin_sig.PARTIAL) block_hash
node_ctxt ctxt =
let open Lwt_result_syntax in
let* boot_sector = get_boot_sector (module Plugin) block_hash node_ctxt in
let*! initial_state = Plugin.Pvm.initial_state node_ctxt.kind in
let*! genesis_state =
Plugin.Pvm.install_boot_sector node_ctxt.kind initial_state boot_sector
in
let*! ctxt = Context.PVMState.set ctxt genesis_state in
return (ctxt, genesis_state)
let state_of_head plugin node_ctxt ctxt Layer1.{hash; level} =
let open Lwt_result_syntax in
let*! state = Context.PVMState.find ctxt in
match state with
| None ->
let genesis_level = node_ctxt.Node_context.genesis_info.level in
if level = genesis_level then genesis_state plugin hash node_ctxt ctxt
else tzfail (Rollup_node_errors.Missing_PVM_state (hash, level))
| Some state -> return (ctxt, state)
(** [transition_pvm plugin node_ctxt ctxt predecessor head] runs a PVM at the
previous state from block [predecessor] by consuming as many messages as
possible from block [head]. *)
let transition_pvm (module Plugin : Protocol_plugin_sig.PARTIAL) node_ctxt ctxt
predecessor Layer1.{hash = _; _} inbox_messages =
let open Lwt_result_syntax in
let* ctxt, predecessor_state =
state_of_head (module Plugin) node_ctxt ctxt predecessor
in
let* eval_result =
Plugin.Pvm.Fueled.Free.eval_block_inbox
~fuel:(Fuel.Free.of_ticks 0L)
node_ctxt
inbox_messages
predecessor_state
in
let* {
state = {state; state_hash; inbox_level; tick; _};
num_messages;
num_ticks;
} =
Delayed_write_monad.apply node_ctxt eval_result
in
let*! ctxt = Context.PVMState.set ctxt state in
let*! initial_tick = Plugin.Pvm.get_tick node_ctxt.kind predecessor_state in
let*! () =
Interpreter_event.transitioned_pvm inbox_level state_hash tick num_messages
in
return (ctxt, num_messages, Z.to_int64 num_ticks, initial_tick)
(** [process_head plugin node_ctxt ctxt ~predecessor head inbox_and_messages] runs the PVM for the given
head. *)
let process_head plugin (node_ctxt : _ Node_context.t) ctxt
~(predecessor : Layer1.header) (head : Layer1.header) inbox_and_messages =
let open Lwt_result_syntax in
let first_inbox_level = node_ctxt.genesis_info.level |> Int32.succ in
if head.Layer1.level >= first_inbox_level then
transition_pvm
plugin
node_ctxt
ctxt
(Layer1.head_of_header predecessor)
(Layer1.head_of_header head)
inbox_and_messages
else if head.Layer1.level = node_ctxt.genesis_info.level then
let* ctxt, state = genesis_state plugin head.hash node_ctxt ctxt in
let*! ctxt = Context.PVMState.set ctxt state in
return (ctxt, 0, 0L, Z.zero)
else return (ctxt, 0, 0L, Z.zero)
(** Returns the starting evaluation before the evaluation of the block. It
contains the PVM state at the end of the execution of the previous block and
the messages the block ([remaining_messages]). *)
let start_state_of_block plugin node_ctxt (block : Sc_rollup_block.t) =
let open Lwt_result_syntax in
let pred_level = Int32.pred block.header.level in
let* ctxt =
Node_context.checkout_context node_ctxt block.header.predecessor
in
let* _ctxt, state =
state_of_head
plugin
node_ctxt
ctxt
Layer1.{hash = block.header.predecessor; level = pred_level}
in
let* inbox = Node_context.get_inbox node_ctxt block.header.inbox_hash in
let* {is_first_block; predecessor; predecessor_timestamp; messages} =
Node_context.get_messages node_ctxt block.header.inbox_witness
in
let inbox_level = Octez_smart_rollup.Inbox.inbox_level inbox in
let module Plugin = (val plugin) in
let*! tick = Plugin.Pvm.get_tick node_ctxt.kind state in
let*! state_hash = Plugin.Pvm.state_hash node_ctxt.kind state in
let messages =
Plugin.Pvm.start_of_level_serialized
::
(if is_first_block then
Option.to_list Plugin.Pvm.protocol_migration_serialized
else [])
@ Plugin.Pvm.info_per_level_serialized ~predecessor ~predecessor_timestamp
:: messages
@ [Plugin.Pvm.end_of_level_serialized]
in
return
Pvm_plugin_sig.
{
state;
state_hash;
inbox_level;
tick;
message_counter_offset = 0;
remaining_fuel = Fuel.Accounted.of_ticks 0L;
remaining_messages = messages;
}
(** [run_for_ticks plugin node_ctxt start_state tick_distance] starts the
evaluation of messages in the [start_state] for at most [tick_distance]. *)
let run_to_tick (module Plugin : Protocol_plugin_sig.PARTIAL) node_ctxt
start_state tick =
let open Delayed_write_monad.Lwt_result_syntax in
let tick_distance =
Z.sub tick start_state.Pvm_plugin_sig.tick |> Z.to_int64
in
let>+ eval_result =
Plugin.Pvm.Fueled.Accounted.eval_messages
node_ctxt
{start_state with remaining_fuel = Fuel.Accounted.of_ticks tick_distance}
in
eval_result.state
let state_of_tick_aux plugin node_ctxt ~start_state (event : Sc_rollup_block.t)
tick =
let open Lwt_result_syntax in
let* start_state =
match start_state with
| Some start_state
when start_state.Pvm_plugin_sig.inbox_level = event.header.level ->
return start_state
| _ ->
start_state_of_block plugin node_ctxt event
in
let* result_state = run_to_tick plugin node_ctxt start_state tick in
let result_state = Delayed_write_monad.ignore result_state in
return result_state
module Tick_state_cache =
Aches_lwt.Lache.Make
(Aches.Rache.Transfer
(Aches.Rache.LRU)
(struct
type t = Z.t * Block_hash.t
let equal (t1, b1) (t2, b2) = Z.equal t1 t2 && Block_hash.(b1 = b2)
let hash (tick, block) = (Z.hash tick * 13) + Block_hash.hash block
end))
let tick_state_cache = Tick_state_cache.create 64
let memo_state_of_tick_aux plugin node_ctxt ~start_state
(event : Sc_rollup_block.t) tick =
Tick_state_cache.bind_or_put
tick_state_cache
(tick, event.header.block_hash)
(fun (tick, _hash) ->
state_of_tick_aux plugin node_ctxt ~start_state event tick)
Lwt.return
(** [state_of_tick plugin node_ctxt ?start_state ~tick level] returns [Some
end_state] for [tick] if [tick] happened before
[level]. Otherwise, returns [None].*)
let state_of_tick plugin node_ctxt ?start_state ~tick level =
let open Lwt_result_syntax in
let* event = Node_context.block_with_tick node_ctxt ~max_level:level tick in
match event with
| None -> return_none
| Some event ->
assert (event.header.level <= level) ;
let* result_state =
if Node_context.is_loser node_ctxt then
state_of_tick_aux plugin node_ctxt ~start_state:None event tick
else memo_state_of_tick_aux plugin node_ctxt ~start_state event tick
in
return_some result_state