Source file flow.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
open Lwt.Infix
let src = Logs.Src.create "tcp.pcb" ~doc:"Mirage TCP PCB module"
module Log = (val Logs.src_log src : Logs.LOG)
module Make(Ip: Tcpip.Ip.S) =
struct
module ACK = Ack.Immediate
module RXS = Segment.Rx(ACK)
module TXS = Segment.Tx
module UTX = User_buffer.Tx
module WIRE = Wire.Make(Ip)
module KEEPALIVE = Keepalive
type error = [ Tcpip.Tcp.error | WIRE.error]
let pp_error ppf = function
| #Tcpip.Tcp.error as e -> Tcpip.Tcp.pp_error ppf e
| #WIRE.error as e -> WIRE.pp_error ppf e
type write_error = [Tcpip.Tcp.write_error | `Not_ready]
let pp_write_error ppf = function
| `Not_ready ->
Fmt.string ppf "attempted to send data before connection was ready"
| #Tcpip.Tcp.write_error as e -> Tcpip.Tcp.pp_write_error ppf e
type ipaddr = Ip.ipaddr
type pcb = {
id: WIRE.t;
wnd: Window.t;
rxq: RXS.t;
txq: TXS.t;
ack: ACK.t;
state: State.t;
urx: User_buffer.Rx.t;
utx: UTX.t;
keepalive: KEEPALIVE.t option;
}
type flow = pcb
type connection = flow * unit Lwt.t
type t = {
ip : Ip.t;
listeners : (int, Tcpip.Tcp.Keepalive.t option * (flow -> unit Lwt.t)) Hashtbl.t ;
mutable active : bool ;
mutable localport : int;
channels: (WIRE.t, connection) Hashtbl.t;
listens: (WIRE.t, (Sequence.t * ((flow -> unit Lwt.t) * connection)))
Hashtbl.t;
connects: (WIRE.t, ((connection, error) result Lwt.u * Sequence.t * Tcpip.Tcp.Keepalive.t option)) Hashtbl.t;
}
let num_open_channels t = Hashtbl.length t.channels
let listen t ~port ?keepalive cb =
if port < 0 || port > 65535 then
raise (Invalid_argument (Printf.sprintf "invalid port number (%d)" port))
else
Hashtbl.replace t.listeners port (keepalive, cb)
let unlisten t ~port = Hashtbl.remove t.listeners port
let _pp_pcb fmt pcb =
Format.fprintf fmt "id=[%a] state=[%a]" WIRE.pp pcb.id State.pp pcb.state
let pp_stats fmt t =
Format.fprintf fmt "[channels=%d listens=%d connects=%d]"
(Hashtbl.length t.channels)
(Hashtbl.length t.listens)
(Hashtbl.length t.connects)
let log_with_stats name t = Log.debug (fun fmt -> fmt "%s: %a" name pp_stats t)
let wscale_default = 2
module Tx = struct
let xmit_pcb ip id ~flags ~wnd ~options ~seq (datav : Cstruct.t) =
let window = Int32.to_int (Window.rx_wnd_unscaled wnd) in
let rx_ack = Some (Window.rx_nxt wnd) in
let syn = match flags with Segment.Syn -> true | _ -> false in
let fin = match flags with Segment.Fin -> true | _ -> false in
let rst = match flags with Segment.Rst -> true | _ -> false in
let psh = match flags with Segment.Psh -> true | _ -> false in
WIRE.xmit ~ip id ~syn ~fin ~rst ~psh ~rx_ack ~seq ~window ~options datav
let send_rst { ip; _ } id ~sequence ~ack_number ~syn ~fin =
let datalen = Int32.add (if syn then 1l else 0l) (if fin then 1l else 0l) in
let window = 0 in
let options = [] in
let seq = ack_number in
let rx_ack = Some Sequence.(add sequence (of_int32 datalen)) in
WIRE.xmit ~ip id ~rst:true ~rx_ack ~seq ~window ~options (Cstruct.create 0)
let send_syn { ip; _ } id ~tx_isn ~options ~window =
WIRE.xmit ~ip id ~syn:true ~rx_ack:None ~seq:tx_isn ~window ~options
(Cstruct.create 0)
let shutdown ctx pcb =
Log.debug (fun f -> f "%s connection %a" (match ctx with `Close -> "Closing" | `Shutdown -> "Shutting down") WIRE.pp pcb.id);
match State.state pcb.state with
| State.Established | State.Close_wait ->
UTX.wait_for_flushed pcb.utx >>= fun () ->
(let { wnd; _ } = pcb in
State.tick pcb.state (State.Send_fin (Window.tx_nxt wnd));
TXS.output ~flags:Segment.Fin pcb.txq Cstruct.empty
)
| State.Closed | State.Syn_rcvd _ | State.Syn_sent _ when ctx = `Close ->
State.on_close pcb.state;
Lwt.return_unit
| _ ->
Log.debug (fun fmt ->
let msg = match ctx with `Close -> "close" | `Shutdown -> "shutdown" in
fmt "TX.%s: %s requested but no action needed, state=%a" msg msg State.pp pcb.state);
Lwt.return_unit
let thread t pcb ~send_ack ~rx_ack =
let { wnd; ack; _ } = pcb in
let rec send_empty_ack () =
Lwt_mvar.take send_ack >>= fun _ ->
let ack_number = Window.rx_nxt wnd in
let flags = Segment.No_flags in
let options = [] in
let seq = Window.tx_nxt wnd in
ACK.transmit ack ack_number >>= fun () ->
xmit_pcb t.ip pcb.id ~flags ~wnd ~options ~seq (Cstruct.create 0) >>=
fun _ ->
send_empty_ack () in
let rec notify () =
Lwt_mvar.take rx_ack >>= fun ack_number ->
ACK.transmit ack ack_number >>= fun () ->
notify () in
send_empty_ack () <&> (notify ())
end
module Rx = struct
let input _t parsed (pcb,_) =
let { rxq; _ } = pcb in
begin match pcb.keepalive with
| None -> ()
| Some keepalive -> KEEPALIVE.refresh keepalive
end;
RXS.input rxq parsed
let shutdown pcb =
User_buffer.Rx.remove_all pcb.urx;
User_buffer.Rx.add_r pcb.urx None
let thread pcb ~rx_data =
let { wnd; ack; urx; _ } = pcb in
let rec rx_application_t () =
Lwt_mvar.take rx_data >>= fun (data, winadv) ->
let signal_ack = function
| None -> Lwt.return_unit
| Some winadv when Sequence.(gt winadv zero) ->
Window.rx_advance wnd winadv;
ACK.receive ack (Window.rx_nxt wnd)
| Some winadv ->
Window.rx_advance wnd winadv;
ACK.pushack ack (Window.rx_nxt wnd)
in
begin match data with
| None ->
State.tick pcb.state State.Recv_fin;
User_buffer.Rx.add_r urx None
| Some data ->
signal_ack winadv >>= fun () ->
let rec queue = function
| [] -> Lwt.return_unit
| hd::tl ->
User_buffer.Rx.add_r urx (Some hd) >>= fun () ->
queue tl
in
queue data >>= fun _ ->
rx_application_t ()
end
in
rx_application_t ()
end
module Wnd = struct
let thread ~urx:_ ~utx ~wnd:_ ~state ~tx_wnd_update =
let rec tx_window_t () =
Lwt_mvar.take tx_wnd_update >>= fun tx_wnd ->
begin match State.state state with
| State.Reset -> UTX.reset utx
| _ -> UTX.free utx tx_wnd
end >>= fun () ->
tx_window_t ()
in
tx_window_t ()
end
let with_hashtbl h k fn default =
try fn (Hashtbl.find h k) with Not_found -> default k
let hashtbl_find h k =
try Some (Hashtbl.find h k) with Not_found -> None
let clearpcb t id tx_isn =
log_with_stats "removing pcb from connection tables" t;
match hashtbl_find t.channels id with
| Some _ ->
Hashtbl.remove t.channels id;
Stats.decr_channel ();
Log.debug (fun f -> f "removed %a from active channels" WIRE.pp id);
| None ->
match hashtbl_find t.listens id with
| Some (isn, _) ->
if isn = tx_isn then (
Hashtbl.remove t.listens id;
Stats.decr_listen ();
Log.debug (fun f -> f "removed %a from incomplete listen pcbs" WIRE.pp id);
)
| None ->
Log.debug (fun f -> f "error in removing %a - no such connection" WIRE.pp id)
let pcb_allocs = ref 0
let th_allocs = ref 0
let pcb_frees = ref 0
let th_frees = ref 0
let resolve_wnd_scaling options rx_wnd_scaleoffer =
let tx_wnd_scale = List.fold_left (fun a ->
function Options.Window_size_shift m -> Some m | _ -> a
) None options in
match tx_wnd_scale with
| None -> (0, 0), []
| Some tx_f ->
(rx_wnd_scaleoffer, tx_f),
(Options.Window_size_shift rx_wnd_scaleoffer :: [])
type pcb_params =
{ tx_wnd: int;
sequence: Sequence.t;
options: Options.t list;
tx_isn: Sequence.t;
rx_wnd: int;
rx_wnd_scaleoffer: int }
let keepalive_cb t id wnd state urx = function
| `SendProbe ->
Log.debug (fun f -> f "Sending keepalive on connection %a" WIRE.pp id);
let flags = Segment.No_flags in
let options = [] in
let seq = Sequence.pred @@ Window.tx_nxt wnd in
Tx.xmit_pcb t.ip id ~flags ~wnd ~options ~seq (Cstruct.create 0) >>= fun _ ->
Lwt.return_unit
| `Close ->
Log.debug (fun f -> f "Keepalive timer expired, resetting connection %a" WIRE.pp id);
State.tick state State.Recv_rst;
User_buffer.Rx.add_r urx None >>= fun () ->
Lwt.return_unit
let emitted_keepalive_warning = ref false
let pcb_id = ref (-1)
let new_pcb t params id keepalive =
let mtu_mss = Ip.mtu t.ip ~dst:(WIRE.dst id) - Tcp_wire.sizeof_tcp in
let { tx_wnd; sequence; options; tx_isn; rx_wnd; rx_wnd_scaleoffer } =
params
in
let tx_mss = List.fold_left (fun a ->
function
| Options.MSS m -> min m mtu_mss
| _ -> a
) mtu_mss options
in
let (rx_wnd_scale, tx_wnd_scale), opts =
resolve_wnd_scaling options rx_wnd_scaleoffer
in
let rx_isn = sequence in
let wnd =
Window.t ~rx_wnd_scale ~tx_wnd_scale ~rx_wnd ~tx_wnd ~rx_isn ~tx_mss
~tx_isn
in
let rx_ack = Lwt_mvar.create_empty () in
let tx_ack = Lwt_mvar.create_empty () in
let rx_data = Lwt_mvar.create_empty () in
let send_ack = Lwt_mvar.create_empty () in
let rx_buf_size = Window.rx_wnd wnd in
let urx = User_buffer.Rx.create ~max_size:rx_buf_size ~wnd in
let tx_wnd_update = Lwt_mvar.create_empty () in
let on_close () = clearpcb t id tx_isn in
let state =
incr pcb_id;
State.t ~id:!pcb_id ~on_close
in
let txq, _tx_t =
TXS.create ~xmit:(Tx.xmit_pcb t.ip id) ~wnd ~state ~rx_ack ~tx_ack ~tx_wnd_update
in
let ack = ACK.t ~send_ack ~last:(Sequence.succ rx_isn) in
let utx = UTX.create ~wnd ~txq ~max_size:16384l in
let rxq = RXS.create ~rx_data ~ack ~wnd ~state ~tx_ack in
let keepalive = match keepalive with
| None -> None
| Some config ->
if not !emitted_keepalive_warning then begin
Log.warn (fun f -> f "using keep-alives can cause excessive memory consumption: https://github.com/mirage/mirage-tcpip/issues/367");
emitted_keepalive_warning := true
end;
Some (KEEPALIVE.create config (keepalive_cb t id wnd state urx)) in
let pcb = { state; rxq; txq; wnd; id; ack; urx; utx; keepalive } in
let tx_thread = (Tx.thread t pcb ~send_ack ~rx_ack) in
let rx_thread = (Rx.thread pcb ~rx_data) in
let wnd_thread = (Wnd.thread ~utx ~urx ~wnd ~state ~tx_wnd_update) in
let threads = [ tx_thread; rx_thread; wnd_thread ] in
let catch_and_cancel = function
| Lwt.Canceled -> ()
| ex ->
List.iter Lwt.cancel threads;
Log.err (fun f -> f "thread failure: [%s]. Terminating threads and closing connection"
(Printexc.to_string ex));
on_close ();
!Lwt.async_exception_hook ex
in
List.iter (fun t -> Lwt.on_failure t catch_and_cancel) threads;
let th = Lwt.join threads in
pcb_allocs := !pcb_allocs + 1;
th_allocs := !th_allocs + 1;
let fnpcb = fun _ -> pcb_frees := !pcb_frees + 1 in
let fnth = fun _ -> th_frees := !th_frees + 1 in
Gc.finalise fnpcb pcb;
Gc.finalise fnth th;
Lwt.return (pcb, th, opts)
let new_server_connection t params id pushf keepalive =
log_with_stats "new-server-connection" t;
new_pcb t params id keepalive >>= fun (pcb, th, opts) ->
State.tick pcb.state State.Passive_open;
State.tick pcb.state (State.Send_synack params.tx_isn);
if Hashtbl.mem t.listens id then (
Log.debug (fun f -> f "duplicate attempt to make a connection: %a .\
Removing the old state and replacing with new attempt" WIRE.pp id);
Hashtbl.remove t.listens id;
Stats.decr_listen ();
);
Hashtbl.add t.listens id (params.tx_isn, (pushf, (pcb, th)));
Stats.incr_listen ();
let options = Options.MSS (Ip.mtu t.ip ~dst:(WIRE.dst id) - Tcp_wire.sizeof_tcp) :: opts in
TXS.output ~flags:Segment.Syn ~options pcb.txq (Cstruct.create 0) >>= fun () ->
Lwt.return (pcb, th)
let new_client_connection t params id ack_number keepalive =
log_with_stats "new-client-connection" t;
let tx_isn = params.tx_isn in
let params = { params with tx_isn = Sequence.succ tx_isn } in
new_pcb t params id keepalive >>= fun (pcb, th, _) ->
State.tick pcb.state (State.Send_syn tx_isn);
Hashtbl.add t.channels id (pcb, th);
Stats.incr_channel ();
State.tick pcb.state (State.Recv_synack ack_number);
TXS.output pcb.txq (Cstruct.create 0) >>= fun () ->
Lwt.return (pcb, th)
let is_correct_ack ~tx_isn ~ack_number =
(Sequence.compare (Sequence.succ tx_isn) ack_number) = 0
let process_reset t id ~ack ~ack_number =
log_with_stats "process-reset" t;
if ack then
match hashtbl_find t.connects id with
| Some (wakener, tx_isn, _) ->
if is_correct_ack ~tx_isn ~ack_number then begin
Hashtbl.remove t.connects id;
Stats.decr_connect ();
Lwt.wakeup wakener (Error `Refused);
Lwt.return_unit
end else
Lwt.return_unit
| None ->
match hashtbl_find t.listens id with
| Some (_, (_, (pcb, th))) ->
Hashtbl.remove t.listens id;
Stats.decr_listen ();
State.tick pcb.state State.Recv_rst;
Lwt.cancel th;
Lwt.return_unit
| None ->
Lwt.return_unit
else
Lwt.return_unit
let process_synack t id ~tx_wnd ~ack_number ~sequence ~options ~syn ~fin =
log_with_stats "process-synack" t;
match hashtbl_find t.connects id with
| Some (wakener, tx_isn, keepalive) ->
if is_correct_ack ~tx_isn ~ack_number then (
Hashtbl.remove t.connects id;
Stats.decr_connect ();
let rx_wnd = 65535 in
let rx_wnd_scaleoffer = wscale_default in
new_client_connection t
{ tx_wnd; sequence; options; tx_isn; rx_wnd; rx_wnd_scaleoffer }
id ack_number keepalive
>>= fun (pcb, th) ->
Lwt.wakeup wakener (Ok (pcb, th));
Lwt.return_unit
) else
Lwt.return_unit
| None ->
Tx.send_rst t id ~sequence ~ack_number ~syn ~fin
>>= fun _ -> Lwt.return_unit
let process_syn t id ~tx_wnd ~ack_number ~sequence ~options ~syn ~fin =
log_with_stats "process-syn" t;
match Hashtbl.find_opt t.listeners (WIRE.src_port id) with
| Some (keepalive, process) ->
let tx_isn = Sequence.of_int32 (Randomconv.int32 Mirage_crypto_rng.generate) in
let rx_wnd = 65535 in
let rx_wnd_scaleoffer = wscale_default in
new_server_connection t
{ tx_wnd; sequence; options; tx_isn; rx_wnd; rx_wnd_scaleoffer }
id process keepalive
>>= fun _ ->
Lwt.return_unit
| None ->
Tx.send_rst t id ~sequence ~ack_number ~syn ~fin
>>= fun _ -> Lwt.return_unit
let process_ack t id ~pkt =
let open RXS in
log_with_stats "process-ack" t;
match hashtbl_find t.listens id with
| Some (tx_isn, (pushf, newconn)) ->
if Tcp_packet.(is_correct_ack ~tx_isn ~ack_number:pkt.header.ack_number) then begin
Hashtbl.remove t.listens id;
Stats.decr_listen ();
Hashtbl.add t.channels id newconn;
Stats.incr_channel ();
Rx.input t pkt newconn >>= fun () ->
pushf (fst newconn)
end else
Lwt.return_unit
| None ->
match hashtbl_find t.connects id with
| Some _ ->
Lwt.return_unit
| None ->
let { sequence; Tcp_packet.ack_number; syn; fin; _ } = pkt.header in
Tx.send_rst t id ~sequence ~ack_number ~syn ~fin
>>= fun _ -> Lwt.return_unit
let input_no_pcb t (parsed, payload) id =
if not t.active then
Lwt.return_unit
else
let { sequence; Tcp_packet.ack_number; window; options; syn; fin; rst; ack; _ } = parsed in
match rst, syn, ack with
| true, _, _ -> process_reset t id ~ack ~ack_number
| false, true, true ->
process_synack t id ~ack_number ~sequence ~tx_wnd:window ~options ~syn ~fin
| false, true , false -> process_syn t id ~tx_wnd:window
~ack_number ~sequence ~options ~syn ~fin
| false, false, true ->
let open RXS in
process_ack t id ~pkt:{ header = parsed; payload}
| false, false, false ->
Log.debug (fun f -> f "incoming packet matches no connection table entry and has no useful flags set; dropping it");
Lwt.return_unit
let input t ~src ~dst data =
let open Tcp_packet in
match Unmarshal.of_cstruct data with
| Error s -> Log.debug (fun f -> f "parsing TCP header failed: %s" s);
Lwt.return_unit
| Ok (pkt, payload) ->
let id =
WIRE.v ~src_port:pkt.dst_port ~dst_port:pkt.src_port ~dst:src ~src:dst
in
with_hashtbl t.channels id
(Rx.input t RXS.({header = pkt; payload}))
(input_no_pcb t (pkt, payload))
let read pcb =
User_buffer.Rx.take_l pcb.urx
>>= function
| None -> Lwt.return @@ Ok `Eof
| Some t -> Lwt.return @@ Ok (`Data t)
let write_available pcb =
min 4000 (min (Window.tx_mss pcb.wnd)
(Int32.to_int (UTX.available pcb.utx)))
let write_wait_for pcb sz =
UTX.wait_for pcb.utx (Int32.of_int sz)
let rec writefn pcb wfn data =
match State.state pcb.state with
| State.Established | State.Close_wait -> begin
let len = Cstruct.length data in
match write_available pcb with
| 0 ->
write_wait_for pcb 1 >>= fun () ->
writefn pcb wfn data
| av_len when av_len >= len ->
wfn [data] >>= fun n -> Lwt.return (Ok n)
| av_len ->
let sendable = Cstruct.sub data 0 av_len in
writefn pcb wfn sendable >>= function
| Ok () -> writefn pcb wfn @@ Cstruct.sub data av_len (len - av_len)
| Error _ as e -> Lwt.return e
end
| _ -> Lwt.return (Error `Not_ready)
let rec iter_s f = function
| [] -> Lwt.return (Ok ())
| h :: t -> f h >>= function
| Ok () -> iter_s f t
| e -> Lwt.return e
let cast x = (x :> (unit, write_error) result Lwt.t)
let write pcb data = writefn pcb (UTX.write pcb.utx) data |> cast
let writev pcb data = iter_s (write pcb) data |> cast
let write_nodelay pcb data = writefn pcb (UTX.write_nodelay pcb.utx) data |> cast
let writev_nodelay pcb data = iter_s (write_nodelay pcb) data |> cast
let close pcb = Tx.shutdown `Close pcb
let shutdown pcb mode =
let wr, rd = match mode with | `read -> false, true | `write -> true, false | `read_write -> true, true in
(if wr then Tx.shutdown `Shutdown pcb else Lwt.return_unit) >>= fun () ->
(if rd then Rx.shutdown pcb else Lwt.return_unit)
let dst pcb = WIRE.dst pcb.id, WIRE.dst_port pcb.id
let src pcb = WIRE.src pcb.id, WIRE.src_port pcb.id
let getid t dst dst_port =
let islistener _t _port =
false in
let idinuse t id =
Hashtbl.mem t.channels id ||
Hashtbl.mem t.connects id ||
Hashtbl.mem t.listens id
in
let inuse t id = islistener t (WIRE.src_port id) || idinuse t id in
let rec bumpport t =
(match t.localport with
| 65535 -> t.localport <- 10000
| _ -> t.localport <- t.localport + 1);
let id =
WIRE.v ~src:(Ip.src t.ip ~dst) ~src_port:t.localport ~dst ~dst_port
in
if inuse t id then bumpport t else id
in
bumpport t
let rec connecttimer t id tx_isn options window count =
let rxtime = match count with
| 0 -> 3 | 1 -> 6 | 2 -> 12 | 3 -> 24 | _ -> 48
in
Mirage_sleep.ns (Duration.of_sec rxtime) >>= fun () ->
match hashtbl_find t.connects id with
| None -> Lwt.return_unit
| Some (wakener, isn, _) ->
if isn = tx_isn then
if count > 3 then (
Hashtbl.remove t.connects id;
Stats.decr_connect ();
Lwt.wakeup wakener (Error `Timeout);
Lwt.return_unit
) else (
Tx.send_syn t id ~tx_isn ~options ~window >>= function
| Ok () -> connecttimer t id tx_isn options window (count + 1)
| Error (`No_route _s) ->
connecttimer t id tx_isn options window (count + 1)
| Error `Would_fragment ->
Log.err (fun m -> m "syn retransmission timer returned would fragment");
Lwt.return_unit
)
else Lwt.return_unit
let connect ?keepalive t ~dst ~dst_port =
let id = getid t dst dst_port in
let tx_isn = Sequence.of_int32 (Randomconv.int32 Mirage_crypto_rng.generate) in
let rx_wnd_scaleoffer = wscale_default in
let options =
Options.MSS (Ip.mtu t.ip ~dst - Tcp_wire.sizeof_tcp) :: Options.Window_size_shift rx_wnd_scaleoffer :: []
in
let window = 5840 in
let th, wakener = Lwt.wait () in
if Hashtbl.mem t.connects id then (
Log.debug (fun f ->
f "duplicate attempt to make a connection: [%a]. \
Removing the old state and replacing with new attempt"
WIRE.pp id);
Hashtbl.remove t.connects id;
Stats.decr_connect ();
);
Hashtbl.add t.connects id (wakener, tx_isn, keepalive);
Stats.incr_connect ();
Tx.send_syn t id ~tx_isn ~options ~window >>= function
| Ok () | Error _ ->
Lwt.async (fun () -> connecttimer t id tx_isn options window 0);
th
let log_failure daddr dport = function
| `Timeout ->
Log.debug (fun fmt ->
fmt "Timeout attempting to connect to %a:%d\n%!"
Ip.pp_ipaddr daddr dport)
| `Refused ->
Log.debug (fun fmt ->
fmt "Refused connection to %a:%d\n%!"
Ip.pp_ipaddr daddr dport)
| e ->
Log.debug (fun fmt ->
fmt "%a error connecting to %a:%d\n%!"
pp_error e Ip.pp_ipaddr daddr dport)
let create_connection ?keepalive tcp (daddr, dport) =
if not tcp.active then
Lwt.return (Error `Timeout)
else
connect ?keepalive tcp ~dst:daddr ~dst_port:dport >>= function
| Error e -> log_failure daddr dport e; Lwt.return @@ Error e
| Ok (fl, _) -> Lwt.return (Ok fl)
let connect ip =
let localport =
1024 + (Randomconv.int ~bound:(0xFFFF - 1024) Mirage_crypto_rng.generate)
in
let listens = Hashtbl.create 1 in
let connects = Hashtbl.create 1 in
let channels = Hashtbl.create 7 in
Log.info (fun f -> f "TCP layer connected on %a"
Fmt.(list ~sep:(any ", ") Ip.pp_prefix)
(Ip.configured_ips ip));
Lwt.return { ip; listeners = Hashtbl.create 7; active = true; localport; channels; listens; connects }
let disconnect t =
t.active <- false;
Log.info (fun f -> f "TCP layer disconnected on %a"
Fmt.(list ~sep:(any ", ") Ip.pp_prefix)
(Ip.configured_ips t.ip));
let conns = Hashtbl.fold (fun _ (pcb, _) acc -> pcb :: acc) t.channels [] in
Lwt_list.iter_p close conns >|= fun () ->
Hashtbl.reset t.listens;
Hashtbl.reset t.connects
end