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
open Protocol.Alpha_context
open Protocol_client_context
open Injector_common
module Tezos_blocks_cache =
Aches_lwt.Lache.Make_option
(Aches.Rache.Transfer (Aches.Rache.LRU) (Block_hash))
type rollup_info = Stores.rollup_info = {
rollup_id : Tx_rollup.t;
origination_level : int32 option;
}
type sync_levels = {processed_tezos_level : int32; known_tezos_level : int32}
type sync_info = {
mutable synchronized : bool;
on_synchronized : unit Lwt_condition.t;
mutable current_levels : sync_levels;
sync_level_input : sync_levels Lwt_watcher.input;
}
type t = {
stores : Stores.t;
cctxt : Protocol_client_context.full;
context_index : Context.index;
mutable head : L2block.t option;
rollup_info : rollup_info;
tezos_blocks_cache : Alpha_block_services.block_info Tezos_blocks_cache.t;
constants : Constants.t;
signers : Node_config.signers;
caps : Node_config.caps;
sync : sync_info;
}
let rollup_operation_index = 3
let get_head state = state.head
let fetch_tezos_block state hash =
trace (Error.Tx_rollup_cannot_fetch_tezos_block hash)
@@ fetch_tezos_block state.cctxt hash ~find_in_cache:(fun hash mk ->
Tezos_blocks_cache.bind_or_put
state.tezos_blocks_cache
hash
mk
Lwt.return)
let set_tezos_head state new_head_hash =
let open Lwt_result_syntax in
let*! old_head_hash = Stores.Tezos_head_store.read state.stores.tezos_head in
let* reorg =
match old_head_hash with
| None ->
let+ new_head = fetch_tezos_block state new_head_hash in
{old_chain = []; new_chain = [new_head]}
| Some old_head_hash ->
tezos_reorg (fetch_tezos_block state) ~old_head_hash ~new_head_hash
in
let* () =
Stores.Tezos_head_store.write state.stores.tezos_head new_head_hash
in
return reorg
let get_tezos_head state =
let open Lwt_result_syntax in
let*! block = Stores.Tezos_head_store.read state.stores.tezos_head in
match block with
| None -> return None
| Some block ->
let+ block = fetch_tezos_block state block in
Some block
let save_tezos_block_info state block l2_block ~level ~predecessor =
Stores.Tezos_block_store.add
state.stores.tezos_blocks
block
{Stores.Tezos_block_store.l2_block; level; predecessor}
let get_tezos_l2_block_hash state block =
let open Lwt_syntax in
let+ info = Stores.Tezos_block_store.find state.stores.tezos_blocks block in
Option.bind info (fun i -> i.Stores.Tezos_block_store.l2_block)
let get_block_store stores hash =
Stores.L2_block_store.read_block stores.Stores.blocks hash
let get_block state hash = get_block_store state.stores hash
let state hash =
let open Lwt_syntax in
let+ block = get_block state hash in
Option.map (fun b -> b.L2block.header) block
let save_block state block =
Stores.L2_block_store.append_block state.stores.blocks block
let get_inbox state hash =
let open Lwt_syntax in
let+ block = get_block state hash in
Option.map (fun b -> b.L2block.inbox) block
let get_tezos_l2_block state block =
let open Lwt_syntax in
let* l2_hash = get_tezos_l2_block_hash state block in
match l2_hash with
| None -> return None
| Some l2_hash -> get_block state l2_hash
let get_level state level = Stores.Level_store.find state.stores.levels level
let save_level state level hash =
Stores.Level_store.add state.stores.levels level hash
let state level =
let open Lwt_syntax in
let* l2_hash = get_level state level in
match l2_hash with
| None -> return None
| Some l2_hash -> get_header state l2_hash
let get_level_l2_block state level =
let open Lwt_syntax in
let* l2_hash = get_level state level in
match l2_hash with
| None -> return None
| Some l2_hash -> get_block state l2_hash
let save_block state (block : L2block.t) =
let open Lwt_syntax in
join [save_level state block.header.level block.hash; save_block state block]
let distance_l2_levels l1 l2 =
Int32.sub (Tx_rollup_level.to_int32 l2) (Tx_rollup_level.to_int32 l1)
let rollup_reorg state ~old_head ~new_head =
let open Lwt_syntax in
let get_pred b =
match b.L2block.header.predecessor with
| None -> Lwt.return_none
| Some b -> get_block state b
in
let rec loop old_chain new_chain old_head new_head =
match (old_head, new_head) with
| None, _ | _, None ->
return {old_chain = List.rev old_chain; new_chain = List.rev new_chain}
| Some old_head, Some new_head ->
if L2block.Hash.(old_head.L2block.hash = new_head.L2block.hash) then
return
{old_chain = List.rev old_chain; new_chain = List.rev new_chain}
else
let diff =
distance_l2_levels
old_head.L2block.header.level
new_head.L2block.header.level
in
let* old_chain, new_chain, old, new_ =
if diff = 0l then
let new_chain = new_head :: new_chain in
let old_chain = old_head :: old_chain in
let* new_head = get_pred new_head in
let+ old_head = get_pred old_head in
(old_chain, new_chain, old_head, new_head)
else if diff > 0l then
let new_chain = new_head :: new_chain in
let+ new_head = get_pred new_head in
(old_chain, new_chain, Some old_head, new_head)
else
let old_chain = old_head :: old_chain in
let+ old_head = get_pred old_head in
(old_chain, new_chain, old_head, Some new_head)
in
loop old_chain new_chain old new_
in
loop [] [] (Some old_head) (Some new_head)
let patch_l2_levels state (reorg : L2block.t reorg) =
let open Lwt_result_syntax in
let*! () =
List.iter_s
(fun old ->
Stores.Level_store.remove state.stores.levels old.L2block.header.level)
reorg.old_chain
in
List.iter_s
(fun new_ -> save_level state new_.L2block.header.level new_.L2block.hash)
reorg.new_chain
let set_head state head =
let open Lwt_result_syntax in
state.head <- Some head ;
let*! old_head = Stores.Head_store.read state.stores.head in
let hash = head.L2block.hash in
let* () = Stores.Head_store.write state.stores.head hash in
let*! l2_reorg =
match old_head with
| None -> Lwt.return no_reorg
| Some old_head_hash -> (
let*! old_head = get_block state old_head_hash in
match old_head with
| None -> Lwt.return no_reorg
| Some old_head -> rollup_reorg state ~old_head ~new_head:head)
in
let*! () = patch_l2_levels state l2_reorg in
return l2_reorg
let tezos_block_already_processed state block =
let open Lwt_syntax in
let* info = Stores.Tezos_block_store.find state.stores.tezos_blocks block in
match info with
| None -> return `Unknown
| Some {l2_block = None; _} -> return (`Known None)
| Some {l2_block = Some l2_hash; _} ->
let+ block = get_block state l2_hash in
`Known block
let get_included_commitment state commitment_hash =
let open Lwt_syntax in
let+ info =
Stores.Commitment_store.find state.stores.commitments commitment_hash
in
Option.map
(fun Stores.Commitment_store.{block; operation} ->
L2block.{block; operation})
info
let set_commitment_included state commitment_hash block operation =
Stores.Commitment_store.add
state.stores.commitments
commitment_hash
Stores.Commitment_store.{block; operation}
let unset_commitment_included state commitment_hash =
Stores.Commitment_store.remove state.stores.commitments commitment_hash
let get_finalized_level state =
Stores.Finalized_level_store.read state.stores.finalized_level
let set_finalized_level state l =
Stores.Finalized_level_store.write state.stores.finalized_level l
let delete_finalized_level state =
Stores.Finalized_level_store.delete state.stores.finalized_level
let get_block_metadata state ( : L2block.header) =
let open Lwt_syntax in
let* commitment_included = get_included_commitment state header.commitment in
let+ finalized_level = get_finalized_level state in
let finalized =
match finalized_level with
| None -> false
| Some l -> Tx_rollup_level.(header.level <= l)
in
L2block.{commitment_included; finalized}
let get_block_and_metadata state hash =
let open Lwt_syntax in
let* block = get_block state hash in
match block with
| None -> return_none
| Some block ->
let* metadata = get_block_metadata state block.header in
return_some (block, metadata)
let set_rollup_info state rollup_id ~origination_level =
let rollup_info = {rollup_id; origination_level = Some origination_level} in
Stores.Rollup_info_store.write state.stores.Stores.rollup_info rollup_info
let init_rollup_info stores ?origination_level rollup_id =
let open Lwt_result_syntax in
let*! stored_info = Stores.Rollup_info_store.read stores.Stores.rollup_info in
let* rollup_info =
match stored_info with
| Some stored when Tx_rollup.(stored.rollup_id <> rollup_id) ->
fail [Error.Tx_rollup_mismatch]
| Some stored -> return stored
| None ->
let rollup_info = {rollup_id; origination_level} in
let* () =
Stores.Rollup_info_store.write stores.rollup_info rollup_info
in
return rollup_info
in
return rollup_info
let init_context ~data_dir =
let open Lwt_result_syntax in
let*! index = Context.init (Node_data.context_dir data_dir) in
return index
let read_head (stores : Stores.t) =
let open Lwt_syntax in
let* hash = Stores.Head_store.read stores.head in
match hash with
| None -> return_none
| Some hash -> get_block_store stores hash
let retrieve_constants cctxt =
Protocol.Constants_services.all cctxt (cctxt#chain, cctxt#block)
let init (cctxt : #Protocol_client_context.full) ?(readonly = false)
configuration =
let open Lwt_result_syntax in
let {
Node_config.data_dir;
rollup_id;
origination_level;
signers;
l2_blocks_cache_size;
caps;
_;
} =
configuration
in
let*! stores =
Stores.init ~data_dir ~readonly ~blocks_cache_size:l2_blocks_cache_size
in
let* rollup_info, context_index =
both
(init_rollup_info stores ?origination_level rollup_id)
(init_context ~data_dir)
|> lwt_map_error (function [] -> [] | trace :: _ -> trace)
in
let*! head = read_head stores in
let* constants = retrieve_constants cctxt in
let tezos_blocks_cache = Tezos_blocks_cache.create 32 in
let sync =
{
synchronized = false;
on_synchronized = Lwt_condition.create ();
current_levels = {processed_tezos_level = 0l; known_tezos_level = 0l};
sync_level_input = Lwt_watcher.create_input ();
}
in
return
{
stores;
cctxt = (cctxt :> Protocol_client_context.full);
context_index;
head;
rollup_info;
tezos_blocks_cache;
constants;
signers;
caps;
sync;
}
let notify_processed_tezos_level state processed_tezos_level =
state.sync.current_levels <-
{state.sync.current_levels with processed_tezos_level} ;
Lwt_watcher.notify state.sync.sync_level_input state.sync.current_levels
let set_known_tezos_level state known_tezos_level =
state.sync.current_levels <-
{state.sync.current_levels with known_tezos_level}
let synchronized state =
if state.sync.synchronized then Lwt.return_unit
else Lwt_condition.wait state.sync.on_synchronized