Source file distributed_db.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
(** One role of this module is to export read-through [REQUESTER] services.
These services allow client code to lookup resources identified by their
hashes. Resources are protocols, operations, block_header, operation_hashes
and operations. Values are first looked up locally, in [State], or are
requested to peers.
An exported [REQUESTER] service is implemented by a [FULL_REQUESTER] and
[P2p_reader] workers working together. Resources are requested via a
[FULL_REQUESTER.fetch], which uses a callback send function.
The [P2p_reader] listen for requested values and notify the
[FULL_REQUESTER].
P2P_READER <---- receives --- ... Peers
|
notify
|
\/
REQUESTER ---fetch----> FULL_REQUESTER --- request ---> ... Peers
|
\/
STATE
*)
module Message = Distributed_db_message
module Distributed_db_event = Distributed_db_event.Distributed_db_event
type p2p = (Message.t, Peer_metadata.t, Connection_metadata.t) P2p.net
type db = {
p2p : p2p;
p2p_readers : P2p_reader.t P2p_peer.Table.t;
disk : Store.t;
active_chains : P2p_reader.chain_db Chain_id.Table.t;
protocol_db : Distributed_db_requester.Raw_protocol.t;
}
type chain_db = {global_db : db; reader_chain_db : P2p_reader.chain_db}
type t = db
let store {disk; _} = disk
let chain_store chain_db = chain_db.reader_chain_db.chain_store
let db {global_db; _} = global_db
let information {global_db; reader_chain_db} =
{
Chain_validator_worker_state.Distributed_db_state.p2p_readers_length =
P2p_peer.Table.length global_db.p2p_readers;
active_chains_length = Chain_id.Table.length global_db.active_chains;
operation_db =
Distributed_db_requester.Raw_operation.state_of_t
reader_chain_db.operation_db;
operations_db =
Distributed_db_requester.Raw_operations.state_of_t
reader_chain_db.operations_db;
block_header_db =
Distributed_db_requester.Raw_block_header.state_of_t
reader_chain_db.block_header_db;
active_connections_length =
P2p_peer.Table.length reader_chain_db.active_connections;
active_peers_length = P2p_peer.Set.cardinal !(reader_chain_db.active_peers);
}
let my_peer_id chain_db = P2p.peer_id chain_db.global_db.p2p
let get_peer_metadata chain_db = P2p.get_peer_metadata chain_db.global_db.p2p
let active_peer_ids p2p () =
List.fold_left
(fun acc conn ->
let {P2p_connection.Info.peer_id; _} = P2p.connection_info p2p conn in
P2p_peer.Set.add peer_id acc)
P2p_peer.Set.empty
(P2p.connections p2p)
let raw_try_send p2p peer_id msg =
match P2p.find_connection_by_peer_id p2p peer_id with
| None -> ()
| Some conn -> ignore (P2p.try_send p2p conn msg : bool)
let create disk p2p =
let global_request =
Distributed_db_requester.
{p2p; data = (); active = active_peer_ids p2p; send = raw_try_send p2p}
in
let protocol_db =
Distributed_db_requester.Raw_protocol.create global_request disk
in
let active_chains = Chain_id.Table.create ~random:true 17 in
let p2p_readers = P2p_peer.Table.create ~random:true 17 in
let db = {p2p; p2p_readers; disk; active_chains; protocol_db} in
db
let activate
({p2p; active_chains; protocol_db; disk; p2p_readers; _} as global_db)
chain_store callback =
let run_p2p_reader gid =
let register p2p_reader =
(match P2p_peer.Table.find p2p_readers gid with
| None -> ()
| Some old_p2p_reader ->
Distributed_db_event.(
emit__dont_wait__use_with_care multiple_p2p_reader)
gid ;
Lwt.dont_wait
(fun () -> P2p_reader.shutdown old_p2p_reader)
(fun exn ->
match exn with
| Out_of_memory | Stack_overflow -> raise exn
| _ ->
Distributed_db_event.(
emit__dont_wait__use_with_care p2p_reader_shutdown_failed)
(gid, Printexc.to_string exn))) ;
P2p_peer.Table.add p2p_readers gid p2p_reader
in
let unregister () = P2p_peer.Table.remove p2p_readers gid in
P2p_reader.run ~register ~unregister p2p disk protocol_db active_chains gid
in
P2p.on_new_connection p2p run_p2p_reader ;
P2p.iter_connections p2p run_p2p_reader ;
P2p.activate p2p ;
let chain_id = Store.Chain.chain_id chain_store in
let reader_chain_db =
match Chain_id.Table.find active_chains chain_id with
| Some local_db -> local_db
| None ->
let active_peers = ref P2p_peer.Set.empty in
let p2p_request =
Distributed_db_requester.
{
p2p;
data = ();
active = (fun () -> !active_peers);
send = raw_try_send p2p;
}
in
let operation_db =
Distributed_db_requester.Raw_operation.create p2p_request chain_store
in
let =
Distributed_db_requester.Raw_block_header.create
p2p_request
chain_store
in
let operations_db =
Distributed_db_requester.Raw_operations.create p2p_request chain_store
in
let local_db =
P2p_reader.
{
chain_store;
operation_db;
block_header_db;
operations_db;
callback;
active_peers;
active_connections = P2p_peer.Table.create ~random:true 53;
}
in
let sends =
P2p.fold_connections p2p ~init:[] ~f:(fun _peer_id conn acc ->
P2p.send p2p conn (Get_current_branch chain_id) :: acc)
in
Error_monad.dont_wait
(fun () -> Error_monad.Lwt_result_syntax.tzjoin sends)
(fun trace ->
Format.eprintf
"Uncaught error: %a\n%!"
Error_monad.pp_print_trace
trace)
(fun exc ->
Format.eprintf "Uncaught exception: %s\n%!" (Printexc.to_string exc)) ;
Chain_id.Table.add active_chains chain_id local_db ;
local_db
in
{global_db; reader_chain_db}
let deactivate chain_db =
let open Lwt_syntax in
let {active_chains; p2p; _} = chain_db.global_db in
let chain_id = Store.Chain.chain_id chain_db.reader_chain_db.chain_store in
Chain_id.Table.remove active_chains chain_id ;
let sends =
P2p_peer.Table.iter_ep
(fun gid conn ->
chain_db.reader_chain_db.callback.disconnection gid ;
chain_db.reader_chain_db.active_peers :=
P2p_peer.Set.remove gid !(chain_db.reader_chain_db.active_peers) ;
P2p_peer.Table.remove chain_db.reader_chain_db.active_connections gid ;
P2p.send p2p conn (Deactivate chain_id))
chain_db.reader_chain_db.active_connections
in
Error_monad.dont_wait
(fun () -> sends)
(fun trace ->
Format.eprintf "Uncaught error: %a\n%!" Error_monad.pp_print_trace trace)
(fun exc ->
Format.eprintf "Uncaught exception: %s\n%!" (Printexc.to_string exc)) ;
let* () =
Distributed_db_requester.Raw_operation.shutdown
chain_db.reader_chain_db.operation_db
in
Distributed_db_requester.Raw_block_header.shutdown
chain_db.reader_chain_db.block_header_db
let get_chain global_db chain_id =
let open Option_syntax in
let+ reader_chain_db = Chain_id.Table.find global_db.active_chains chain_id in
{global_db; reader_chain_db}
let greylist {global_db = {p2p; _}; _} peer_id =
Lwt.return (P2p.greylist_peer p2p peer_id)
let disconnect {global_db = {p2p; _}; _} peer_id =
match P2p.find_connection_by_peer_id p2p peer_id with
| None -> Lwt.return_unit
| Some conn -> P2p.disconnect p2p conn
let shutdown {p2p_readers; active_chains; _} =
let open Lwt_syntax in
let* () =
P2p_peer.Table.iter_p
(fun _peer_id reader -> P2p_reader.shutdown reader)
p2p_readers
in
Chain_id.Table.iter_p
(fun _ reader_chain_db ->
let* () =
Distributed_db_requester.Raw_operation.shutdown
reader_chain_db.P2p_reader.operation_db
in
Distributed_db_requester.Raw_block_header.shutdown
reader_chain_db.P2p_reader.block_header_db)
active_chains
let clear_block chain_db hash n =
Distributed_db_requester.Raw_operations.clear_all
chain_db.reader_chain_db.operations_db
hash
n ;
Distributed_db_requester.Raw_block_header.clear_or_cancel
chain_db.reader_chain_db.block_header_db
hash
let commit_block chain_db hash operations result =
let open Lwt_result_syntax in
assert (Block_hash.equal hash (Block_header.hash block_header)) ;
assert (
Compare.List_length_with.(operations = block_header.shell.validation_passes)) ;
let* res =
Store.Block.store_block
chain_db.reader_chain_db.chain_store
~block_header
~operations
result
in
clear_block chain_db hash block_header.shell.validation_passes ;
return res
let commit_invalid_block chain_db hash errors =
let open Lwt_result_syntax in
assert (Block_hash.equal hash (Block_header.hash header)) ;
let* () =
Store.Block.mark_invalid
chain_db.reader_chain_db.chain_store
hash
~level:header.shell.level
errors
in
clear_block chain_db hash header.shell.validation_passes ;
return_unit
let inject_operation chain_db h op =
assert (Operation_hash.equal h (Operation.hash op)) ;
Distributed_db_requester.Raw_operation.inject
chain_db.reader_chain_db.operation_db
h
op
let inject_prechecked_block chain_db hash operations =
Store.Block.store_validated_block
chain_db.reader_chain_db.chain_store
~hash
~block_header
~operations
let commit_protocol db h p =
let open Lwt_syntax in
let* res = Store.Protocol.store db.disk h p in
Distributed_db_requester.Raw_protocol.clear_or_cancel db.protocol_db h ;
return_ok (res <> None)
(** This functor is used to export [Requester.REQUESTER] modules outside of this
module. Thanks to the [Kind] module, requesters are accessed using
[chain_db] type, and the [Distributed_db_requester.Raw_*.t] type remains
private to this module. This also ensures that the
[Distributed_db_requester.Raw_*.t] has been properly created before it is
possible to use it *)
module Make
(Table : Requester.REQUESTER) (Kind : sig
type t
val proj : t -> Table.t
end) =
struct
type key = Table.key
type value = Table.value
let known t k = Table.known (Kind.proj t) k
type error += Missing_data = Table.Missing_data
type error += Canceled = Table.Canceled
type error += Timeout = Table.Timeout
let read t k = Table.read (Kind.proj t) k
let read_opt t k = Table.read_opt (Kind.proj t) k
let inject t k v = Table.inject (Kind.proj t) k v
let fetch t ?peer ?timeout k p = Table.fetch (Kind.proj t) ?peer ?timeout k p
let clear_or_cancel t k = Table.clear_or_cancel (Kind.proj t) k
end
module Operations =
Make
(Distributed_db_requester.Raw_operations)
(struct
type t = chain_db
let proj chain = chain.reader_chain_db.operations_db
end)
module Operation = struct
include Operation
include (
Make
(Distributed_db_requester.Raw_operation)
(struct
type t = chain_db
let proj chain = chain.reader_chain_db.operation_db
end) :
Requester.REQUESTER
with type t := chain_db
and type key := Operation_hash.t
and type value := Operation.t
and type param := unit)
end
module Protocol = struct
type t = Protocol.t
include (
Make
(Distributed_db_requester.Raw_protocol)
(struct
type t = db
let proj db = db.protocol_db
end) :
Requester.REQUESTER
with type t := db
and type key := Protocol_hash.t
and type value := Protocol.t
and type param := unit)
end
let try_send chain_db peer_id msg =
match
P2p_peer.Table.find chain_db.reader_chain_db.active_connections peer_id
with
| None -> ()
| Some conn -> ignore (P2p.try_send chain_db.global_db.p2p conn msg : bool)
module Request = struct
let current_head_from_peer chain_db peer =
let chain_id = Store.Chain.chain_id chain_db.reader_chain_db.chain_store in
let meta = P2p.get_peer_metadata chain_db.global_db.p2p peer in
Peer_metadata.incr meta (Sent_request Head) ;
try_send chain_db peer @@ Get_current_head chain_id
let current_head_from_all chain_db =
let chain_id = Store.Chain.chain_id chain_db.reader_chain_db.chain_store in
ignore
(P2p.broadcast
chain_db.reader_chain_db.active_connections
(Get_current_head chain_id))
let current_branch chain_db peer =
let chain_id = Store.Chain.chain_id chain_db.reader_chain_db.chain_store in
let meta = P2p.get_peer_metadata chain_db.global_db.p2p peer in
Peer_metadata.incr meta (Sent_request Branch) ;
try_send chain_db peer @@ Get_current_branch chain_id
end
module Advertise = struct
let current_head chain_db ?(mempool = Mempool.empty) head =
let chain_id = Store.Chain.chain_id chain_db.reader_chain_db.chain_store in
P2p.broadcast
~alt:
(let if_conn conn =
let {Connection_metadata.disable_mempool; _} =
P2p.connection_remote_metadata chain_db.global_db.p2p conn
in
disable_mempool
and then_msg =
Message.Current_head
(chain_id, Store.Block.header head, Mempool.empty)
in
(if_conn, then_msg))
chain_db.reader_chain_db.active_connections
(Message.Current_head (chain_id, Store.Block.header head, mempool))
let prechecked_head chain_db ?(mempool = Mempool.empty) =
let p2p = chain_db.global_db.p2p in
let acceptable_version conn =
let {Network_version.distributed_db_version; _} =
P2p.negotiated_version p2p conn
in
Distributed_db_version.compare
distributed_db_version
Distributed_db_version.two
>= 0
in
let chain_id = Store.Chain.chain_id chain_db.reader_chain_db.chain_store in
let msg = Message.Current_head (chain_id, header, mempool) in
P2p.broadcast
~except:(fun conn -> not (acceptable_version conn))
chain_db.reader_chain_db.active_connections
msg
let current_branch chain_db =
let open Lwt_syntax in
let chain_id = Store.Chain.chain_id chain_db.reader_chain_db.chain_store in
let chain_store = chain_store chain_db in
let sender_id = my_peer_id chain_db in
let* current_head = Store.Chain.current_head chain_store in
P2p_peer.Table.iter_p
(fun receiver_id conn ->
let seed = {Block_locator.receiver_id; sender_id} in
let* locator =
Store.Chain.compute_locator chain_store current_head seed
in
let msg = Message.Current_branch (chain_id, locator) in
ignore (P2p.try_send chain_db.global_db.p2p conn msg) ;
Lwt.return_unit)
chain_db.reader_chain_db.active_connections
end