Source file p2p_socket.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
module Events = P2p_events.P2p_socket
module Crypto = struct
let bufsize = (1 lsl 16) - 1
let = 2
let tag_length = Crypto_box.tag_length
let = header_length + tag_length
let max_content_length = bufsize - extrabytes
type data = {
channel_key : Crypto_box.channel_key;
mutable local_nonce : Crypto_box.nonce;
mutable remote_nonce : Crypto_box.nonce;
}
let () = assert (tag_length >= header_length)
let write_chunk ?canceler fd cryptobox_data msg =
let msg_length = Bytes.length msg in
fail_unless
(msg_length <= max_content_length)
P2p_errors.Invalid_message_size
>>=? fun () ->
let encrypted_length = tag_length + msg_length in
let payload_length = header_length + encrypted_length in
let tag = Bytes.create tag_length in
let local_nonce = cryptobox_data.local_nonce in
cryptobox_data.local_nonce <- Crypto_box.increment_nonce local_nonce ;
Crypto_box.fast_box_noalloc cryptobox_data.channel_key local_nonce tag msg ;
let payload = Bytes.create payload_length in
TzEndian.set_uint16 payload 0 encrypted_length ;
Bytes.blit tag 0 payload header_length tag_length ;
Bytes.blit msg 0 payload extrabytes msg_length ;
P2p_io_scheduler.write ?canceler fd payload
let read_chunk ?canceler fd cryptobox_data =
let open P2p_buffer_reader in
let = Bytes.create header_length in
read_full ?canceler fd @@ mk_buffer_safe header_buf >>=? fun () ->
let encrypted_length = TzEndian.get_uint16 header_buf 0 in
fail_unless
(encrypted_length >= tag_length)
P2p_errors.Invalid_incoming_ciphertext_size
>>=? fun () ->
let tag = Bytes.create tag_length in
read_full ?canceler fd @@ mk_buffer_safe tag >>=? fun () ->
let msg_length = encrypted_length - tag_length in
let msg = Bytes.create msg_length in
read_full ?canceler fd @@ mk_buffer_safe msg >>=? fun () ->
let remote_nonce = cryptobox_data.remote_nonce in
cryptobox_data.remote_nonce <- Crypto_box.increment_nonce remote_nonce ;
match
Crypto_box.fast_box_open_noalloc
cryptobox_data.channel_key
remote_nonce
tag
msg
with
| false -> fail P2p_errors.Decipher_error
| true -> return msg
end
let check_binary_chunks_size size =
let value = size - Crypto.extrabytes in
fail_unless
(value > 0 && value <= Crypto.max_content_length)
(P2p_errors.Invalid_chunks_size
{value = size; min = Crypto.extrabytes + 1; max = Crypto.bufsize})
module Connection_message = struct
type t = {
port : int option;
public_key : Crypto_box.public_key;
proof_of_work_stamp : Crypto_box.nonce;
message_nonce : Crypto_box.nonce;
version : Network_version.t;
}
let encoding =
let open Data_encoding in
conv
(fun {port; public_key; proof_of_work_stamp; message_nonce; version} ->
let port = match port with None -> 0 | Some port -> port in
(port, public_key, proof_of_work_stamp, message_nonce, version))
(fun (port, public_key, proof_of_work_stamp, message_nonce, version) ->
let port = if port = 0 then None else Some port in
{port; public_key; proof_of_work_stamp; message_nonce; version})
(obj5
(req "port" uint16)
(req "pubkey" Crypto_box.public_key_encoding)
(req "proof_of_work_stamp" Crypto_box.nonce_encoding)
(req "message_nonce" Crypto_box.nonce_encoding)
(req "version" Network_version.encoding))
let write ~canceler fd message =
let encoded_message_len = Data_encoding.Binary.length encoding message in
fail_unless
(encoded_message_len < 1 lsl (Crypto.header_length * 8))
Tezos_base.Data_encoding_wrapper.Unexpected_size_of_decoded_buffer
>>=? fun () ->
let len = Crypto.header_length + encoded_message_len in
let buf = Bytes.create len in
let state =
WithExceptions.Option.get ~loc:__LOC__
@@ Data_encoding.Binary.make_writer_state
buf
~offset:Crypto.header_length
~allowed_bytes:encoded_message_len
in
match Data_encoding.Binary.write encoding message state with
| Error we -> fail (Tezos_base.Data_encoding_wrapper.Encoding_error we)
| Ok last ->
fail_unless
(last = len)
Tezos_base.Data_encoding_wrapper.Unexpected_size_of_encoded_value
>>=? fun () ->
TzEndian.set_int16 buf 0 encoded_message_len ;
P2p_io_scheduler.write ~canceler fd buf >>=? fun () ->
return buf
let read ~canceler fd =
let open P2p_buffer_reader in
let = Bytes.create Crypto.header_length in
read_full ~canceler fd @@ mk_buffer_safe header_buf >>=? fun () ->
let len = TzEndian.get_uint16 header_buf 0 in
let pos = Crypto.header_length in
let buf = Bytes.create (pos + len) in
TzEndian.set_uint16 buf 0 len ;
mk_buffer ~length_to_copy:len ~pos buf >>?= read_full ~canceler fd
>>=? fun () ->
let buf = Bytes.unsafe_to_string buf in
match Data_encoding.Binary.read encoding buf pos len with
| Error re -> fail (P2p_errors.Decoding_error re)
| Ok (next_pos, message) ->
if next_pos <> pos + len then
fail (P2p_errors.Decoding_error Data_encoding.Binary.Extra_bytes)
else return (message, buf)
end
module Metadata = struct
let write ~canceler metadata_config cryptobox_data fd message =
let encoded_message_len =
Data_encoding.Binary.length
metadata_config.P2p_params.conn_meta_encoding
message
in
let buf = Bytes.create encoded_message_len in
let state =
WithExceptions.Option.get ~loc:__LOC__
@@ Data_encoding.Binary.make_writer_state
buf
~offset:0
~allowed_bytes:encoded_message_len
in
match
Data_encoding.Binary.write
metadata_config.conn_meta_encoding
message
state
with
| Error we -> fail (Tezos_base.Data_encoding_wrapper.Encoding_error we)
| Ok last ->
fail_unless
(last = encoded_message_len)
Tezos_base.Data_encoding_wrapper.Unexpected_size_of_encoded_value
>>=? fun () -> Crypto.write_chunk ~canceler cryptobox_data fd buf
let read ~canceler metadata_config fd cryptobox_data =
Crypto.read_chunk ~canceler fd cryptobox_data >>=? fun buf ->
let buf = Bytes.unsafe_to_string buf in
let length = String.length buf in
let encoding = metadata_config.P2p_params.conn_meta_encoding in
match Data_encoding.Binary.read encoding buf 0 length with
| Error re -> fail (P2p_errors.Decoding_error re)
| Ok (read_len, message) ->
if read_len <> length then
fail (P2p_errors.Decoding_error Data_encoding.Binary.Extra_bytes)
else return message
end
module Ack = struct
type t =
| Ack
| Nack_v_0
| Nack of {
motive : P2p_rejection.t;
potential_peers_to_connect : P2p_point.Id.t list;
}
let encoding =
let open Data_encoding in
let ack_encoding = obj1 (req "ack" empty) in
let nack_v_0_encoding = obj1 (req "nack_v_0" empty) in
let nack_encoding =
obj2
(req "nack_motive" P2p_rejection.encoding)
(req
"nack_list"
(Data_encoding.list ~max_length:100 P2p_point.Id.encoding))
in
let ack_case tag =
case
tag
ack_encoding
~title:"Ack"
(function Ack -> Some () | _ -> None)
(fun () -> Ack)
in
let nack_case tag =
case
tag
nack_encoding
~title:"Nack"
(function
| Nack {motive; potential_peers_to_connect} ->
Some (motive, potential_peers_to_connect)
| _ -> None)
(fun (motive, lst) -> Nack {motive; potential_peers_to_connect = lst})
in
let nack_v_0_case tag =
case
tag
nack_v_0_encoding
~title:"Nack_v_0"
(function Nack_v_0 -> Some () | _ -> None)
(fun () -> Nack_v_0)
in
union [ack_case (Tag 0); nack_v_0_case (Tag 255); nack_case (Tag 1)]
let write ?canceler fd cryptobox_data message =
let encoded_message_len = Data_encoding.Binary.length encoding message in
let buf = Bytes.create encoded_message_len in
let state =
WithExceptions.Option.get ~loc:__LOC__
@@ Data_encoding.Binary.make_writer_state
buf
~offset:0
~allowed_bytes:encoded_message_len
in
match Data_encoding.Binary.write encoding message state with
| Error we -> fail (Tezos_base.Data_encoding_wrapper.Encoding_error we)
| Ok last ->
fail_unless
(last = encoded_message_len)
Tezos_base.Data_encoding_wrapper.Unexpected_size_of_encoded_value
>>=? fun () -> Crypto.write_chunk ?canceler fd cryptobox_data buf
let read ?canceler fd cryptobox_data =
Crypto.read_chunk ?canceler fd cryptobox_data >>=? fun buf ->
let buf = Bytes.unsafe_to_string buf in
let length = String.length buf in
match Data_encoding.Binary.read encoding buf 0 length with
| Error re -> fail (P2p_errors.Decoding_error re)
| Ok (read_len, message) ->
if read_len <> length then
fail (P2p_errors.Decoding_error Data_encoding.Binary.Extra_bytes)
else return message
end
type 'meta authenticated_connection = {
scheduled_conn : P2p_io_scheduler.connection;
info : 'meta P2p_connection.Info.t;
cryptobox_data : Crypto.data;
}
let nack {scheduled_conn; cryptobox_data; info} motive
potential_peers_to_connect =
(if
P2p_version.feature_available
P2p_version.Nack_with_list
info.announced_version.p2p_version
then
Events.(emit nack_point_with_list) (info.id_point, potential_peers_to_connect)
>>= fun () -> Lwt.return (Ack.Nack {motive; potential_peers_to_connect})
else
Events.(emit nack_point_no_point) info.id_point >>= fun () ->
Lwt.return Ack.Nack_v_0)
>>= fun nack ->
Ack.write scheduled_conn cryptobox_data nack >>= fun _ ->
P2p_io_scheduler.close scheduled_conn >>= fun _ -> Lwt.return_unit
let authenticate ~canceler ~proof_of_work_target ~incoming scheduled_conn
((remote_addr, remote_socket_port) as point) ?advertised_port identity
announced_version metadata_config =
let local_nonce_seed = Crypto_box.random_nonce () in
Events.(emit sending_authentication) point >>= fun () ->
Connection_message.write
~canceler
scheduled_conn
{
public_key = identity.P2p_identity.public_key;
proof_of_work_stamp = identity.proof_of_work_stamp;
message_nonce = local_nonce_seed;
port = advertised_port;
version = announced_version;
}
>>=? fun sent_msg ->
Connection_message.read
~canceler
(P2p_io_scheduler.to_readable scheduled_conn)
>>=? fun (msg, recv_msg) ->
let recv_msg = Bytes.of_string recv_msg in
let remote_listening_port =
if incoming then msg.port else Some remote_socket_port
in
let id_point = (remote_addr, remote_listening_port) in
let remote_peer_id = Crypto_box.hash msg.public_key in
fail_unless
(remote_peer_id <> identity.P2p_identity.peer_id)
(P2p_errors.Myself id_point)
>>=? fun () ->
fail_unless
(Crypto_box.check_proof_of_work
msg.public_key
msg.proof_of_work_stamp
proof_of_work_target)
(P2p_errors.Not_enough_proof_of_work remote_peer_id)
>>=? fun () ->
let channel_key =
Crypto_box.precompute identity.P2p_identity.secret_key msg.public_key
in
let (local_nonce, remote_nonce) =
Crypto_box.generate_nonces ~incoming ~sent_msg ~recv_msg
in
let cryptobox_data = {Crypto.channel_key; local_nonce; remote_nonce} in
let local_metadata = metadata_config.P2p_params.conn_meta_value () in
Metadata.write
~canceler
metadata_config
scheduled_conn
cryptobox_data
local_metadata
>>=? fun () ->
Metadata.read
~canceler
metadata_config
(P2p_io_scheduler.to_readable scheduled_conn)
cryptobox_data
>>=? fun remote_metadata ->
let info =
{
P2p_connection.Info.peer_id = remote_peer_id;
announced_version = msg.version;
incoming;
id_point;
remote_socket_port;
private_node = metadata_config.private_node remote_metadata;
local_metadata;
remote_metadata;
}
in
return (info, {scheduled_conn; info; cryptobox_data})
module Reader = struct
type ('msg, 'meta) t = {
canceler : Lwt_canceler.t;
conn : 'meta authenticated_connection;
encoding : 'msg Data_encoding.t;
messages : (int * 'msg) tzresult Lwt_pipe.Maybe_bounded.t;
mutable worker : unit Lwt.t;
}
let read_message st init =
let rec loop status =
Lwt.pause () >>= fun () ->
let open Data_encoding.Binary in
match status with
| Success {result; size; stream} -> return (result, size, stream)
| Error err ->
Events.(emit read_error) () >>= fun () ->
fail (P2p_errors.Decoding_error err)
| Await decode_next_buf ->
Crypto.read_chunk
~canceler:st.canceler
(P2p_io_scheduler.to_readable st.conn.scheduled_conn)
st.conn.cryptobox_data
>>=? fun buf ->
Events.(emit read_event) (Bytes.length buf, st.conn.info.peer_id)
>>= fun () -> loop (decode_next_buf buf)
in
loop (Data_encoding.Binary.read_stream ?init st.encoding)
let rec worker_loop st stream =
( read_message st stream >>=? fun (msg, size, stream) ->
protect ~canceler:st.canceler (fun () ->
Lwt_pipe.Maybe_bounded.push st.messages (Ok (size, msg)) >>= fun () ->
return_some stream) )
>>= function
| Ok (Some stream) -> worker_loop st (Some stream)
| Ok None -> Error_monad.cancel_with_exceptions st.canceler
| Error (Canceled :: _) | Error (Exn Lwt_pipe.Closed :: _) ->
Events.(emit connection_closed) st.conn.info.peer_id
| Error _ as err ->
if Lwt_pipe.Maybe_bounded.is_closed st.messages then ()
else
(ignore : bool -> unit)
@@ Lwt_pipe.Maybe_bounded.push_now st.messages err ;
Error_monad.cancel_with_exceptions st.canceler
let run ?size conn encoding canceler =
let compute_size = function
| Ok (size, _) ->
(Sys.word_size / 8 * 11) + size + Lwt_pipe.Maybe_bounded.push_overhead
| Error _ -> 0
in
let bound = Option.map (fun max -> (max, compute_size)) size in
let st =
{
canceler;
conn;
encoding;
messages = Lwt_pipe.Maybe_bounded.create ?bound ();
worker = Lwt.return_unit;
}
in
Lwt_canceler.on_cancel st.canceler (fun () ->
Lwt_pipe.Maybe_bounded.close st.messages ;
Lwt.return_unit) ;
st.worker <-
Lwt_utils.worker
"reader"
~on_event:Internal_event.Lwt_worker_event.on_event
~run:(fun () -> worker_loop st None)
~cancel:(fun () -> Error_monad.cancel_with_exceptions st.canceler) ;
st
let shutdown st = Error_monad.cancel_with_exceptions st.canceler
end
module Writer = struct
type ('msg, 'meta) t = {
canceler : Lwt_canceler.t;
conn : 'meta authenticated_connection;
encoding : 'msg Data_encoding.t;
messages :
(Bytes.t list * unit tzresult Lwt.u option) Lwt_pipe.Maybe_bounded.t;
mutable worker : unit Lwt.t;
binary_chunks_size : int;
}
let send_message st buf =
let rec loop = function
| [] -> return_unit
| buf :: l ->
Crypto.write_chunk
~canceler:st.canceler
st.conn.scheduled_conn
st.conn.cryptobox_data
buf
>>=? fun () ->
Events.(emit write_event) (Bytes.length buf, st.conn.info.peer_id)
>>= fun () -> loop l
in
loop buf
let encode_message st msg =
match Data_encoding.Binary.to_bytes st.encoding msg with
| Error we -> error (Tezos_base.Data_encoding_wrapper.Encoding_error we)
| Ok bytes -> ok (Utils.cut st.binary_chunks_size bytes)
let rec worker_loop st =
Lwt.pause () >>= fun () ->
protect ~canceler:st.canceler (fun () ->
Lwt_pipe.Maybe_bounded.pop st.messages >>= return)
>>= function
| Error (Canceled :: _) | Error (Exn Lwt_pipe.Closed :: _) ->
Events.(emit connection_closed) st.conn.info.peer_id
| Error err ->
Events.(emit write_error) (err, st.conn.info.peer_id) >>= fun () ->
Error_monad.cancel_with_exceptions st.canceler
| Ok (buf, wakener) -> (
send_message st buf >>= fun res ->
match res with
| Ok () ->
Option.iter (fun u -> Lwt.wakeup_later u res) wakener ;
worker_loop st
| Error err -> (
Option.iter
(fun u -> Lwt.wakeup_later u (error P2p_errors.Connection_closed))
wakener ;
match err with
| (Canceled | Exn Lwt_pipe.Closed) :: _ ->
Events.(emit connection_closed) st.conn.info.peer_id
| P2p_errors.Connection_closed :: _ ->
Events.(emit connection_closed) st.conn.info.peer_id
>>= fun () -> Error_monad.cancel_with_exceptions st.canceler
| err ->
Events.(emit write_error) (err, st.conn.info.peer_id)
>>= fun () -> Error_monad.cancel_with_exceptions st.canceler))
let run ?size ?binary_chunks_size conn encoding canceler =
let binary_chunks_size =
match binary_chunks_size with
| None -> Crypto.max_content_length
| Some size ->
let size = size - Crypto.extrabytes in
assert (size > 0) ;
assert (size <= Crypto.max_content_length) ;
size
in
let compute_size =
let buf_list_size =
List.fold_left
(fun sz buf -> sz + Bytes.length buf + (2 * Sys.word_size))
0
in
function
| (buf_l, None) ->
Sys.word_size + buf_list_size buf_l
+ Lwt_pipe.Maybe_bounded.push_overhead
| (buf_l, Some _) ->
(2 * Sys.word_size) + buf_list_size buf_l
+ Lwt_pipe.Maybe_bounded.push_overhead
in
let bound = Option.map (fun max -> (max, compute_size)) size in
let st =
{
canceler;
conn;
encoding;
messages = Lwt_pipe.Maybe_bounded.create ?bound ();
worker = Lwt.return_unit;
binary_chunks_size;
}
in
Lwt_canceler.on_cancel st.canceler (fun () ->
Lwt_pipe.Maybe_bounded.close st.messages ;
let rec loop () =
match Lwt_pipe.Maybe_bounded.pop_now st.messages with
| exception Lwt_pipe.Closed -> ()
| None -> ()
| Some (_, None) -> loop ()
| Some (_, Some w) ->
Lwt.wakeup_later w (error (Exn Lwt_pipe.Closed)) ;
loop ()
in
loop () ;
Lwt.return_unit) ;
st.worker <-
Lwt_utils.worker
"writer"
~on_event:Internal_event.Lwt_worker_event.on_event
~run:(fun () -> worker_loop st)
~cancel:(fun () -> Error_monad.cancel_with_exceptions st.canceler) ;
st
let shutdown st =
Error_monad.cancel_with_exceptions st.canceler >>= fun () -> st.worker
end
type ('msg, 'meta) t = {
conn : 'meta authenticated_connection;
reader : ('msg, 'meta) Reader.t;
writer : ('msg, 'meta) Writer.t;
}
let equal {conn = {scheduled_conn = conn2; _}; _}
{conn = {scheduled_conn = conn1; _}; _} =
P2p_io_scheduler.id conn1 = P2p_io_scheduler.id conn2
let pp ppf {conn; _} = P2p_connection.Info.pp (fun _ _ -> ()) ppf conn.info
let info {conn; _} = conn.info
let local_metadata {conn; _} = conn.info.local_metadata
let remote_metadata {conn; _} = conn.info.remote_metadata
let private_node {conn; _} = conn.info.private_node
let accept ?incoming_message_queue_size ?outgoing_message_queue_size
?binary_chunks_size ~canceler conn encoding =
protect
(fun () ->
Ack.write ~canceler conn.scheduled_conn conn.cryptobox_data Ack
>>=? fun () ->
Ack.read
~canceler
(P2p_io_scheduler.to_readable conn.scheduled_conn)
conn.cryptobox_data)
~on_error:(fun err ->
P2p_io_scheduler.close conn.scheduled_conn >>= fun _ ->
match err with
| [P2p_errors.Connection_closed] ->
fail P2p_errors.Rejected_socket_connection
| [P2p_errors.Decipher_error] -> fail P2p_errors.Invalid_auth
| err -> Lwt.return_error err)
>>=? function
| Ack ->
let canceler = Lwt_canceler.create () in
let reader =
Reader.run ?size:incoming_message_queue_size conn encoding canceler
and writer =
Writer.run
?size:outgoing_message_queue_size
?binary_chunks_size
conn
encoding
canceler
in
let conn = {conn; reader; writer} in
Lwt_canceler.on_cancel canceler (fun () ->
P2p_io_scheduler.close conn.conn.scheduled_conn >>= fun _ ->
Lwt.return_unit) ;
return conn
| Nack_v_0 ->
fail
(P2p_errors.Rejected_by_nack
{motive = P2p_rejection.No_motive; alternative_points = None})
| Nack {motive; potential_peers_to_connect} ->
fail
(P2p_errors.Rejected_by_nack
{motive; alternative_points = Some potential_peers_to_connect})
let catch_closed_pipe f =
Lwt.catch f (function
| Lwt_pipe.Closed -> fail P2p_errors.Connection_closed
| exn -> fail (Exn exn))
>>= function
| Error (Exn Lwt_pipe.Closed :: _) -> fail P2p_errors.Connection_closed
| (Error _ | Ok _) as v -> Lwt.return v
let write {writer; _} msg =
catch_closed_pipe (fun () ->
Lwt.return (Writer.encode_message writer msg) >>=? fun buf ->
Lwt_pipe.Maybe_bounded.push writer.messages (buf, None) >>= fun () ->
return_unit)
let write_sync {writer; _} msg =
catch_closed_pipe (fun () ->
let (waiter, wakener) = Lwt.wait () in
Lwt.return (Writer.encode_message writer msg) >>=? fun buf ->
Lwt_pipe.Maybe_bounded.push writer.messages (buf, Some wakener)
>>= fun () -> waiter)
let write_now {writer; _} msg =
Writer.encode_message writer msg >>? fun buf ->
try Ok (Lwt_pipe.Maybe_bounded.push_now writer.messages (buf, None))
with Lwt_pipe.Closed -> error P2p_errors.Connection_closed
let rec split_bytes size bytes =
if Bytes.length bytes <= size then [bytes]
else
Bytes.sub bytes 0 size
:: split_bytes size (Bytes.sub bytes size (Bytes.length bytes - size))
let raw_write_sync {writer; _} bytes =
let bytes = split_bytes writer.binary_chunks_size bytes in
catch_closed_pipe (fun () ->
let (waiter, wakener) = Lwt.wait () in
Lwt_pipe.Maybe_bounded.push writer.messages (bytes, Some wakener)
>>= fun () -> waiter)
let read {reader; _} =
catch_closed_pipe (fun () -> Lwt_pipe.Maybe_bounded.pop reader.messages)
let read_now {reader; _} =
try Lwt_pipe.Maybe_bounded.pop_now reader.messages
with Lwt_pipe.Closed -> Some (error P2p_errors.Connection_closed)
let stat {conn = {scheduled_conn; _}; _} = P2p_io_scheduler.stat scheduled_conn
let close ?(wait = false) st =
(if not wait then Lwt.return_unit
else (
Lwt_pipe.Maybe_bounded.close st.reader.messages ;
Lwt_pipe.Maybe_bounded.close st.writer.messages ;
st.writer.worker))
>>= fun () ->
Reader.shutdown st.reader >>= fun () ->
Writer.shutdown st.writer >>= fun () ->
P2p_io_scheduler.close st.conn.scheduled_conn >>= fun _ -> Lwt.return_unit
module Internal_for_tests = struct
let mock_authenticated_connection default_metadata =
let (secret_key, public_key, _pkh) = Crypto_box.random_keypair () in
let cryptobox_data =
Crypto.
{
channel_key = Crypto_box.precompute secret_key public_key;
local_nonce = Crypto_box.zero_nonce;
remote_nonce = Crypto_box.zero_nonce;
}
in
let scheduled_conn =
let f2d_t = Lwt_main.run (P2p_fd.socket PF_INET6 SOCK_STREAM 0) in
P2p_io_scheduler.register
(P2p_io_scheduler.create ~read_buffer_size:0 ())
f2d_t
in
let info = P2p_connection.Internal_for_tests.Info.mock default_metadata in
{scheduled_conn; info; cryptobox_data}
let make_crashing_encoding () : 'a Data_encoding.t =
Data_encoding.conv
(fun _ -> assert false)
(fun _ -> assert false)
Data_encoding.unit
let mock conn =
let reader =
Reader.
{
canceler = Lwt_canceler.create ();
conn;
encoding = make_crashing_encoding ();
messages = Lwt_pipe.Maybe_bounded.create ();
worker = Lwt.return_unit;
}
in
let writer =
Writer.
{
canceler = Lwt_canceler.create ();
conn;
encoding = make_crashing_encoding ();
messages = Lwt_pipe.Maybe_bounded.create ();
worker = Lwt.return_unit;
binary_chunks_size = 0;
}
in
{conn; reader; writer}
end