tcp: explicit use of timer wheel in timer apis
[vpp.git] / src / vnet / tcp / tcp.c
1 /*
2  * Copyright (c) 2016-2019 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 /**
17  * @file
18  * @brief TCP host stack utilities
19  */
20
21 #include <vnet/tcp/tcp.h>
22 #include <vnet/tcp/tcp_inlines.h>
23 #include <vnet/session/session.h>
24 #include <vnet/fib/fib.h>
25 #include <vnet/dpo/load_balance.h>
26 #include <math.h>
27
28 tcp_main_t tcp_main;
29
30 typedef struct
31 {
32   fib_protocol_t nh_proto;
33   vnet_link_t link_type;
34   ip46_address_t ip;
35   u32 sw_if_index;
36   u8 is_add;
37 } tcp_add_del_adj_args_t;
38
39 static void
40 tcp_add_del_adj_cb (tcp_add_del_adj_args_t * args)
41 {
42   u32 ai;
43   if (args->is_add)
44     {
45       adj_nbr_add_or_lock (args->nh_proto, args->link_type, &args->ip,
46                            args->sw_if_index);
47     }
48   else
49     {
50       ai = adj_nbr_find (FIB_PROTOCOL_IP6, VNET_LINK_IP6, &args->ip,
51                          args->sw_if_index);
52       if (ai != ADJ_INDEX_INVALID)
53         adj_unlock (ai);
54     }
55 }
56
57 static void
58 tcp_add_del_adjacency (tcp_connection_t * tc, u8 is_add)
59 {
60   tcp_add_del_adj_args_t args = {
61     .nh_proto = FIB_PROTOCOL_IP6,
62     .link_type = VNET_LINK_IP6,
63     .ip = tc->c_rmt_ip,
64     .sw_if_index = tc->sw_if_index,
65     .is_add = is_add
66   };
67   vlib_rpc_call_main_thread (tcp_add_del_adj_cb, (u8 *) & args,
68                              sizeof (args));
69 }
70
71 static void
72 tcp_cc_init (tcp_connection_t * tc)
73 {
74   tc->cc_algo->init (tc);
75 }
76
77 static void
78 tcp_cc_cleanup (tcp_connection_t * tc)
79 {
80   if (tc->cc_algo->cleanup)
81     tc->cc_algo->cleanup (tc);
82 }
83
84 void
85 tcp_cc_algo_register (tcp_cc_algorithm_type_e type,
86                       const tcp_cc_algorithm_t * vft)
87 {
88   tcp_main_t *tm = vnet_get_tcp_main ();
89   vec_validate (tm->cc_algos, type);
90
91   tm->cc_algos[type] = *vft;
92   hash_set_mem (tm->cc_algo_by_name, vft->name, type);
93 }
94
95 tcp_cc_algorithm_t *
96 tcp_cc_algo_get (tcp_cc_algorithm_type_e type)
97 {
98   tcp_main_t *tm = vnet_get_tcp_main ();
99   return &tm->cc_algos[type];
100 }
101
102 tcp_cc_algorithm_type_e
103 tcp_cc_algo_new_type (const tcp_cc_algorithm_t * vft)
104 {
105   tcp_main_t *tm = vnet_get_tcp_main ();
106   tcp_cc_algo_register (++tm->cc_last_type, vft);
107   return tm->cc_last_type;
108 }
109
110 static u32
111 tcp_connection_bind (u32 session_index, transport_endpoint_t * lcl)
112 {
113   tcp_main_t *tm = &tcp_main;
114   tcp_connection_t *listener;
115   void *iface_ip;
116
117   pool_get (tm->listener_pool, listener);
118   clib_memset (listener, 0, sizeof (*listener));
119
120   listener->c_c_index = listener - tm->listener_pool;
121   listener->c_lcl_port = lcl->port;
122
123   /* If we are provided a sw_if_index, bind using one of its ips */
124   if (ip_is_zero (&lcl->ip, 1) && lcl->sw_if_index != ENDPOINT_INVALID_INDEX)
125     {
126       if ((iface_ip = ip_interface_get_first_ip (lcl->sw_if_index,
127                                                  lcl->is_ip4)))
128         ip_set (&lcl->ip, iface_ip, lcl->is_ip4);
129     }
130   ip_copy (&listener->c_lcl_ip, &lcl->ip, lcl->is_ip4);
131   listener->c_is_ip4 = lcl->is_ip4;
132   listener->c_proto = TRANSPORT_PROTO_TCP;
133   listener->c_s_index = session_index;
134   listener->c_fib_index = lcl->fib_index;
135   listener->state = TCP_STATE_LISTEN;
136   listener->cc_algo = tcp_cc_algo_get (tcp_cfg.cc_algo);
137
138   tcp_connection_timers_init (listener);
139
140   TCP_EVT (TCP_EVT_BIND, listener);
141
142   return listener->c_c_index;
143 }
144
145 static u32
146 tcp_session_bind (u32 session_index, transport_endpoint_t * tep)
147 {
148   return tcp_connection_bind (session_index, tep);
149 }
150
151 static void
152 tcp_connection_unbind (u32 listener_index)
153 {
154   tcp_main_t *tm = vnet_get_tcp_main ();
155   tcp_connection_t *tc;
156
157   tc = pool_elt_at_index (tm->listener_pool, listener_index);
158
159   TCP_EVT (TCP_EVT_UNBIND, tc);
160
161   /* Poison the entry */
162   if (CLIB_DEBUG > 0)
163     clib_memset (tc, 0xFA, sizeof (*tc));
164
165   pool_put_index (tm->listener_pool, listener_index);
166 }
167
168 static u32
169 tcp_session_unbind (u32 listener_index)
170 {
171   tcp_connection_unbind (listener_index);
172   return 0;
173 }
174
175 static transport_connection_t *
176 tcp_session_get_listener (u32 listener_index)
177 {
178   tcp_main_t *tm = vnet_get_tcp_main ();
179   tcp_connection_t *tc;
180   tc = pool_elt_at_index (tm->listener_pool, listener_index);
181   return &tc->connection;
182 }
183
184 /**
185  * Cleanup half-open connection
186  *
187  */
188 static void
189 tcp_half_open_connection_del (tcp_connection_t * tc)
190 {
191   tcp_main_t *tm = vnet_get_tcp_main ();
192   clib_spinlock_lock_if_init (&tm->half_open_lock);
193   if (CLIB_DEBUG)
194     clib_memset (tc, 0xFA, sizeof (*tc));
195   pool_put (tm->half_open_connections, tc);
196   clib_spinlock_unlock_if_init (&tm->half_open_lock);
197 }
198
199 /**
200  * Try to cleanup half-open connection
201  *
202  * If called from a thread that doesn't own tc, the call won't have any
203  * effect.
204  *
205  * @param tc - connection to be cleaned up
206  * @return non-zero if cleanup failed.
207  */
208 int
209 tcp_half_open_connection_cleanup (tcp_connection_t * tc)
210 {
211   tcp_worker_ctx_t *wrk;
212
213   /* Make sure this is the owning thread */
214   if (tc->c_thread_index != vlib_get_thread_index ())
215     return 1;
216
217   wrk = tcp_get_worker (tc->c_thread_index);
218   tcp_timer_reset (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT_SYN);
219   tcp_half_open_connection_del (tc);
220   return 0;
221 }
222
223 static tcp_connection_t *
224 tcp_half_open_connection_new (void)
225 {
226   tcp_main_t *tm = vnet_get_tcp_main ();
227   tcp_connection_t *tc = 0;
228   ASSERT (vlib_get_thread_index () == 0);
229   pool_get (tm->half_open_connections, tc);
230   clib_memset (tc, 0, sizeof (*tc));
231   tc->c_c_index = tc - tm->half_open_connections;
232   return tc;
233 }
234
235 /**
236  * Cleans up connection state.
237  *
238  * No notifications.
239  */
240 void
241 tcp_connection_cleanup (tcp_connection_t * tc)
242 {
243   TCP_EVT (TCP_EVT_DELETE, tc);
244
245   /* Cleanup local endpoint if this was an active connect */
246   if (!(tc->cfg_flags & TCP_CFG_F_NO_ENDPOINT))
247     transport_endpoint_cleanup (TRANSPORT_PROTO_TCP, &tc->c_lcl_ip,
248                                 tc->c_lcl_port);
249
250   /* Check if connection is not yet fully established */
251   if (tc->state == TCP_STATE_SYN_SENT)
252     {
253       /* Try to remove the half-open connection. If this is not the owning
254        * thread, tc won't be removed. Retransmit or establish timers will
255        * eventually expire and call again cleanup on the right thread. */
256       if (tcp_half_open_connection_cleanup (tc))
257         tc->flags |= TCP_CONN_HALF_OPEN_DONE;
258     }
259   else
260     {
261       /* Make sure all timers are cleared */
262       tcp_connection_timers_reset (tc);
263
264       if (!tc->c_is_ip4 && ip6_address_is_link_local_unicast (&tc->c_rmt_ip6))
265         tcp_add_del_adjacency (tc, 0);
266
267       tcp_cc_cleanup (tc);
268       vec_free (tc->snd_sacks);
269       vec_free (tc->snd_sacks_fl);
270       vec_free (tc->rcv_opts.sacks);
271       pool_free (tc->sack_sb.holes);
272
273       if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
274         tcp_bt_cleanup (tc);
275
276       tcp_connection_free (tc);
277     }
278 }
279
280 /**
281  * Connection removal.
282  *
283  * This should be called only once connection enters CLOSED state. Note
284  * that it notifies the session of the removal event, so if the goal is to
285  * just remove the connection, call tcp_connection_cleanup instead.
286  */
287 void
288 tcp_connection_del (tcp_connection_t * tc)
289 {
290   session_transport_delete_notify (&tc->connection);
291   tcp_connection_cleanup (tc);
292 }
293
294 tcp_connection_t *
295 tcp_connection_alloc (u8 thread_index)
296 {
297   tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
298   tcp_connection_t *tc;
299
300   pool_get (wrk->connections, tc);
301   clib_memset (tc, 0, sizeof (*tc));
302   tc->c_c_index = tc - wrk->connections;
303   tc->c_thread_index = thread_index;
304   return tc;
305 }
306
307 tcp_connection_t *
308 tcp_connection_alloc_w_base (u8 thread_index, tcp_connection_t * base)
309 {
310   tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
311   tcp_connection_t *tc;
312
313   pool_get (wrk->connections, tc);
314   clib_memcpy_fast (tc, base, sizeof (*tc));
315   tc->c_c_index = tc - wrk->connections;
316   tc->c_thread_index = thread_index;
317   return tc;
318 }
319
320 void
321 tcp_connection_free (tcp_connection_t * tc)
322 {
323   tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
324   if (CLIB_DEBUG)
325     {
326       clib_memset (tc, 0xFA, sizeof (*tc));
327       pool_put (wrk->connections, tc);
328       return;
329     }
330   pool_put (wrk->connections, tc);
331 }
332
333 void
334 tcp_program_cleanup (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
335 {
336   tcp_cleanup_req_t *req;
337   clib_time_type_t now;
338
339   now = transport_time_now (tc->c_thread_index);
340   clib_fifo_add2 (wrk->pending_cleanups, req);
341   req->connection_index = tc->c_c_index;
342   req->free_time = now + tcp_cfg.cleanup_time;
343 }
344
345 /**
346  * Begin connection closing procedure.
347  *
348  * If at the end the connection is not in CLOSED state, it is not removed.
349  * Instead, we rely on on TCP to advance through state machine to either
350  * 1) LAST_ACK (passive close) whereby when the last ACK is received
351  * tcp_connection_del is called. This notifies session of the delete and
352  * calls cleanup.
353  * 2) TIME_WAIT (active close) whereby after 2MSL the 2MSL timer triggers
354  * and cleanup is called.
355  *
356  * N.B. Half-close connections are not supported
357  */
358 void
359 tcp_connection_close (tcp_connection_t * tc)
360 {
361   tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
362
363   TCP_EVT (TCP_EVT_CLOSE, tc);
364
365   /* Send/Program FIN if needed and switch state */
366   switch (tc->state)
367     {
368     case TCP_STATE_SYN_SENT:
369       /* Try to cleanup. If not on the right thread, mark as half-open done.
370        * Connection will be cleaned up when establish timer pops */
371       tcp_connection_cleanup (tc);
372       break;
373     case TCP_STATE_SYN_RCVD:
374       tcp_connection_timers_reset (tc);
375       tcp_send_fin (tc);
376       tcp_connection_set_state (tc, TCP_STATE_FIN_WAIT_1);
377       tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
378                         tcp_cfg.finwait1_time);
379       break;
380     case TCP_STATE_ESTABLISHED:
381       /* If closing with unread data, reset the connection */
382       if (transport_max_rx_dequeue (&tc->connection))
383         {
384           tcp_send_reset (tc);
385           tcp_connection_timers_reset (tc);
386           tcp_connection_set_state (tc, TCP_STATE_CLOSED);
387           session_transport_closed_notify (&tc->connection);
388           tcp_program_cleanup (tcp_get_worker (tc->c_thread_index), tc);
389           tcp_worker_stats_inc (wrk, rst_unread, 1);
390           break;
391         }
392       if (!transport_max_tx_dequeue (&tc->connection))
393         tcp_send_fin (tc);
394       else
395         tc->flags |= TCP_CONN_FINPNDG;
396       tcp_connection_set_state (tc, TCP_STATE_FIN_WAIT_1);
397       /* Set a timer in case the peer stops responding. Otherwise the
398        * connection will be stuck here forever. */
399       ASSERT (tc->timers[TCP_TIMER_WAITCLOSE] == TCP_TIMER_HANDLE_INVALID);
400       tcp_timer_set (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
401                      tcp_cfg.finwait1_time);
402       break;
403     case TCP_STATE_CLOSE_WAIT:
404       if (!transport_max_tx_dequeue (&tc->connection))
405         {
406           tcp_send_fin (tc);
407           tcp_connection_timers_reset (tc);
408           tcp_connection_set_state (tc, TCP_STATE_LAST_ACK);
409           tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
410                             tcp_cfg.lastack_time);
411         }
412       else
413         tc->flags |= TCP_CONN_FINPNDG;
414       break;
415     case TCP_STATE_FIN_WAIT_1:
416       tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
417                         tcp_cfg.finwait1_time);
418       break;
419     case TCP_STATE_CLOSED:
420       /* Cleanup should've been programmed already */
421       break;
422     default:
423       TCP_DBG ("state: %u", tc->state);
424     }
425 }
426
427 static void
428 tcp_session_close (u32 conn_index, u32 thread_index)
429 {
430   tcp_connection_t *tc;
431   tc = tcp_connection_get (conn_index, thread_index);
432   tcp_connection_close (tc);
433 }
434
435 static void
436 tcp_session_cleanup (u32 conn_index, u32 thread_index)
437 {
438   tcp_connection_t *tc;
439   tc = tcp_connection_get (conn_index, thread_index);
440   if (!tc)
441     return;
442   tcp_connection_set_state (tc, TCP_STATE_CLOSED);
443   tcp_connection_cleanup (tc);
444 }
445
446 static void
447 tcp_session_reset (u32 conn_index, u32 thread_index)
448 {
449   tcp_connection_t *tc;
450   tc = tcp_connection_get (conn_index, thread_index);
451   tcp_send_reset (tc);
452   tcp_connection_timers_reset (tc);
453   tcp_cong_recovery_off (tc);
454   tcp_connection_set_state (tc, TCP_STATE_CLOSED);
455   session_transport_closed_notify (&tc->connection);
456   tcp_program_cleanup (tcp_get_worker (thread_index), tc);
457 }
458
459 /**
460  * Initialize all connection timers as invalid
461  */
462 void
463 tcp_connection_timers_init (tcp_connection_t * tc)
464 {
465   int i;
466
467   /* Set all to invalid */
468   for (i = 0; i < TCP_N_TIMERS; i++)
469     {
470       tc->timers[i] = TCP_TIMER_HANDLE_INVALID;
471     }
472
473   tc->rto = TCP_RTO_INIT;
474 }
475
476 /**
477  * Stop all connection timers
478  */
479 void
480 tcp_connection_timers_reset (tcp_connection_t * tc)
481 {
482   tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
483   int i;
484
485   for (i = 0; i < TCP_N_TIMERS; i++)
486     tcp_timer_reset (&wrk->timer_wheel, tc, i);
487 }
488
489 #if 0
490 typedef struct ip4_tcp_hdr
491 {
492   ip4_header_t ip;
493   tcp_header_t tcp;
494 } ip4_tcp_hdr_t;
495
496 typedef struct ip6_tcp_hdr
497 {
498   ip6_header_t ip;
499   tcp_header_t tcp;
500 } ip6_tcp_hdr_t;
501
502 static void
503 tcp_connection_select_lb_bucket (tcp_connection_t * tc, const dpo_id_t * dpo,
504                                  dpo_id_t * result)
505 {
506   const dpo_id_t *choice;
507   load_balance_t *lb;
508   int hash;
509
510   lb = load_balance_get (dpo->dpoi_index);
511   if (tc->c_is_ip4)
512     {
513       ip4_tcp_hdr_t hdr;
514       clib_memset (&hdr, 0, sizeof (hdr));
515       hdr.ip.protocol = IP_PROTOCOL_TCP;
516       hdr.ip.address_pair.src.as_u32 = tc->c_lcl_ip.ip4.as_u32;
517       hdr.ip.address_pair.dst.as_u32 = tc->c_rmt_ip.ip4.as_u32;
518       hdr.tcp.src_port = tc->c_lcl_port;
519       hdr.tcp.dst_port = tc->c_rmt_port;
520       hash = ip4_compute_flow_hash (&hdr.ip, lb->lb_hash_config);
521     }
522   else
523     {
524       ip6_tcp_hdr_t hdr;
525       clib_memset (&hdr, 0, sizeof (hdr));
526       hdr.ip.protocol = IP_PROTOCOL_TCP;
527       clib_memcpy_fast (&hdr.ip.src_address, &tc->c_lcl_ip.ip6,
528                         sizeof (ip6_address_t));
529       clib_memcpy_fast (&hdr.ip.dst_address, &tc->c_rmt_ip.ip6,
530                         sizeof (ip6_address_t));
531       hdr.tcp.src_port = tc->c_lcl_port;
532       hdr.tcp.dst_port = tc->c_rmt_port;
533       hash = ip6_compute_flow_hash (&hdr.ip, lb->lb_hash_config);
534     }
535   choice = load_balance_get_bucket_i (lb, hash & lb->lb_n_buckets_minus_1);
536   dpo_copy (result, choice);
537 }
538
539 fib_node_index_t
540 tcp_lookup_rmt_in_fib (tcp_connection_t * tc)
541 {
542   fib_prefix_t prefix;
543   u32 fib_index;
544
545   clib_memcpy_fast (&prefix.fp_addr, &tc->c_rmt_ip, sizeof (prefix.fp_addr));
546   prefix.fp_proto = tc->c_is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
547   prefix.fp_len = tc->c_is_ip4 ? 32 : 128;
548   fib_index = fib_table_find (prefix.fp_proto, tc->c_fib_index);
549   return fib_table_lookup (fib_index, &prefix);
550 }
551
552 static int
553 tcp_connection_stack_on_fib_entry (tcp_connection_t * tc)
554 {
555   dpo_id_t choice = DPO_INVALID;
556   u32 output_node_index;
557   fib_entry_t *fe;
558
559   fe = fib_entry_get (tc->c_rmt_fei);
560   if (fe->fe_lb.dpoi_type != DPO_LOAD_BALANCE)
561     return -1;
562
563   tcp_connection_select_lb_bucket (tc, &fe->fe_lb, &choice);
564
565   output_node_index =
566     tc->c_is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
567   dpo_stack_from_node (output_node_index, &tc->c_rmt_dpo, &choice);
568   return 0;
569 }
570
571 /** Stack tcp connection on peer's fib entry.
572  *
573  * This ultimately populates the dpo the connection will use to send packets.
574  */
575 static void
576 tcp_connection_fib_attach (tcp_connection_t * tc)
577 {
578   tc->c_rmt_fei = tcp_lookup_rmt_in_fib (tc);
579
580   ASSERT (tc->c_rmt_fei != FIB_NODE_INDEX_INVALID);
581
582   tcp_connection_stack_on_fib_entry (tc);
583 }
584 #endif /* 0 */
585
586 /**
587  * Generate random iss as per rfc6528
588  */
589 static u32
590 tcp_generate_random_iss (tcp_connection_t * tc)
591 {
592   tcp_main_t *tm = &tcp_main;
593   u64 tmp;
594
595   if (tc->c_is_ip4)
596     tmp = (u64) tc->c_lcl_ip.ip4.as_u32 << 32 | (u64) tc->c_rmt_ip.ip4.as_u32;
597   else
598     tmp = tc->c_lcl_ip.ip6.as_u64[0] ^ tc->c_lcl_ip.ip6.as_u64[1]
599       ^ tc->c_rmt_ip.ip6.as_u64[0] ^ tc->c_rmt_ip.ip6.as_u64[1];
600
601   tmp ^= tm->iss_seed.first | ((u64) tc->c_lcl_port << 16 | tc->c_rmt_port);
602   tmp ^= tm->iss_seed.second;
603   tmp = clib_xxhash (tmp) + clib_cpu_time_now ();
604   return ((tmp >> 32) ^ (tmp & 0xffffffff));
605 }
606
607 /**
608  * Initialize max segment size we're able to process.
609  *
610  * The value is constrained by the output interface's MTU and by the size
611  * of the IP and TCP headers (see RFC6691). It is also what we advertise
612  * to our peer.
613  */
614 static void
615 tcp_init_rcv_mss (tcp_connection_t * tc)
616 {
617   u8 ip_hdr_len;
618
619   /* Already provided at connection init time */
620   if (tc->mss)
621     return;
622
623   ip_hdr_len = tc->c_is_ip4 ? sizeof (ip4_header_t) : sizeof (ip6_header_t);
624   tc->mss = tcp_cfg.default_mtu - sizeof (tcp_header_t) - ip_hdr_len;
625 }
626
627 static void
628 tcp_init_mss (tcp_connection_t * tc)
629 {
630   u16 default_min_mss = 536;
631
632   tcp_init_rcv_mss (tc);
633
634   /* TODO consider PMTU discovery */
635   tc->snd_mss = clib_min (tc->rcv_opts.mss, tc->mss);
636
637   if (tc->snd_mss < 45)
638     {
639       /* Assume that at least the min default mss works */
640       tc->snd_mss = default_min_mss;
641       tc->rcv_opts.mss = default_min_mss;
642     }
643
644   /* We should have enough space for 40 bytes of options */
645   ASSERT (tc->snd_mss > 45);
646
647   /* If we use timestamp option, account for it */
648   if (tcp_opts_tstamp (&tc->rcv_opts))
649     tc->snd_mss -= TCP_OPTION_LEN_TIMESTAMP;
650 }
651
652 /**
653  * Initialize connection send variables.
654  */
655 void
656 tcp_init_snd_vars (tcp_connection_t * tc)
657 {
658   /*
659    * We use the time to randomize iss and for setting up the initial
660    * timestamp. Make sure it's updated otherwise syn and ack in the
661    * handshake may make it look as if time has flown in the opposite
662    * direction for us.
663    */
664   tcp_set_time_now (tcp_get_worker (vlib_get_thread_index ()));
665
666   tcp_init_rcv_mss (tc);
667   tc->iss = tcp_generate_random_iss (tc);
668   tc->snd_una = tc->iss;
669   tc->snd_nxt = tc->iss + 1;
670   tc->snd_una_max = tc->snd_nxt;
671   tc->srtt = 100;               /* 100 ms */
672
673   if (!tcp_cfg.csum_offload)
674     tc->cfg_flags |= TCP_CFG_F_NO_CSUM_OFFLOAD;
675 }
676
677 void
678 tcp_enable_pacing (tcp_connection_t * tc)
679 {
680   u32 byte_rate;
681   byte_rate = tc->cwnd / (tc->srtt * TCP_TICK);
682   transport_connection_tx_pacer_init (&tc->connection, byte_rate, tc->cwnd);
683   tc->mrtt_us = (u32) ~ 0;
684 }
685
686 /** Initialize tcp connection variables
687  *
688  * Should be called after having received a msg from the peer, i.e., a SYN or
689  * a SYNACK, such that connection options have already been exchanged. */
690 void
691 tcp_connection_init_vars (tcp_connection_t * tc)
692 {
693   tcp_connection_timers_init (tc);
694   tcp_init_mss (tc);
695   scoreboard_init (&tc->sack_sb);
696   if (tc->state == TCP_STATE_SYN_RCVD)
697     tcp_init_snd_vars (tc);
698
699   tcp_cc_init (tc);
700
701   if (!tc->c_is_ip4 && ip6_address_is_link_local_unicast (&tc->c_rmt_ip6))
702     tcp_add_del_adjacency (tc, 1);
703
704   /*  tcp_connection_fib_attach (tc); */
705
706   if (transport_connection_is_tx_paced (&tc->connection)
707       || tcp_cfg.enable_tx_pacing)
708     tcp_enable_pacing (tc);
709
710   if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
711     tcp_bt_init (tc);
712
713   if (!tcp_cfg.allow_tso)
714     tc->cfg_flags |= TCP_CFG_F_NO_TSO;
715
716   tc->start_ts = tcp_time_now_us (tc->c_thread_index);
717 }
718
719 static int
720 tcp_alloc_custom_local_endpoint (tcp_main_t * tm, ip46_address_t * lcl_addr,
721                                  u16 * lcl_port, u8 is_ip4)
722 {
723   int index, port;
724   if (is_ip4)
725     {
726       index = tm->last_v4_addr_rotor++;
727       if (tm->last_v4_addr_rotor >= vec_len (tcp_cfg.ip4_src_addrs))
728         tm->last_v4_addr_rotor = 0;
729       lcl_addr->ip4.as_u32 = tcp_cfg.ip4_src_addrs[index].as_u32;
730     }
731   else
732     {
733       index = tm->last_v6_addr_rotor++;
734       if (tm->last_v6_addr_rotor >= vec_len (tcp_cfg.ip6_src_addrs))
735         tm->last_v6_addr_rotor = 0;
736       clib_memcpy_fast (&lcl_addr->ip6, &tcp_cfg.ip6_src_addrs[index],
737                         sizeof (ip6_address_t));
738     }
739   port = transport_alloc_local_port (TRANSPORT_PROTO_TCP, lcl_addr);
740   if (port < 1)
741     {
742       clib_warning ("Failed to allocate src port");
743       return -1;
744     }
745   *lcl_port = port;
746   return 0;
747 }
748
749 static int
750 tcp_session_open (transport_endpoint_cfg_t * rmt)
751 {
752   tcp_main_t *tm = vnet_get_tcp_main ();
753   tcp_connection_t *tc;
754   ip46_address_t lcl_addr;
755   u16 lcl_port;
756   int rv;
757
758   /*
759    * Allocate local endpoint
760    */
761   if ((rmt->is_ip4 && vec_len (tcp_cfg.ip4_src_addrs))
762       || (!rmt->is_ip4 && vec_len (tcp_cfg.ip6_src_addrs)))
763     rv = tcp_alloc_custom_local_endpoint (tm, &lcl_addr, &lcl_port,
764                                           rmt->is_ip4);
765   else
766     rv = transport_alloc_local_endpoint (TRANSPORT_PROTO_TCP,
767                                          rmt, &lcl_addr, &lcl_port);
768
769   if (rv)
770     return -1;
771
772   /*
773    * Create connection and send SYN
774    */
775   clib_spinlock_lock_if_init (&tm->half_open_lock);
776   tc = tcp_half_open_connection_new ();
777   ip_copy (&tc->c_rmt_ip, &rmt->ip, rmt->is_ip4);
778   ip_copy (&tc->c_lcl_ip, &lcl_addr, rmt->is_ip4);
779   tc->c_rmt_port = rmt->port;
780   tc->c_lcl_port = clib_host_to_net_u16 (lcl_port);
781   tc->c_is_ip4 = rmt->is_ip4;
782   tc->c_proto = TRANSPORT_PROTO_TCP;
783   tc->c_fib_index = rmt->fib_index;
784   tc->cc_algo = tcp_cc_algo_get (tcp_cfg.cc_algo);
785   /* The other connection vars will be initialized after SYN ACK */
786   tcp_connection_timers_init (tc);
787   tc->mss = rmt->mss;
788
789   TCP_EVT (TCP_EVT_OPEN, tc);
790   tc->state = TCP_STATE_SYN_SENT;
791   tcp_init_snd_vars (tc);
792   tcp_send_syn (tc);
793   clib_spinlock_unlock_if_init (&tm->half_open_lock);
794
795   return tc->c_c_index;
796 }
797
798 static u8 *
799 format_tcp_session (u8 * s, va_list * args)
800 {
801   u32 tci = va_arg (*args, u32);
802   u32 thread_index = va_arg (*args, u32);
803   u32 verbose = va_arg (*args, u32);
804   tcp_connection_t *tc;
805
806   tc = tcp_connection_get (tci, thread_index);
807   if (tc)
808     s = format (s, "%U", format_tcp_connection, tc, verbose);
809   else
810     s = format (s, "empty\n");
811   return s;
812 }
813
814 static u8 *
815 format_tcp_listener_session (u8 * s, va_list * args)
816 {
817   u32 tci = va_arg (*args, u32);
818   u32 __clib_unused thread_index = va_arg (*args, u32);
819   u32 verbose = va_arg (*args, u32);
820   tcp_connection_t *tc = tcp_listener_get (tci);
821   s = format (s, "%-50U", format_tcp_connection_id, tc);
822   if (verbose)
823     s = format (s, "%-15U", format_tcp_state, tc->state);
824   return s;
825 }
826
827 static u8 *
828 format_tcp_half_open_session (u8 * s, va_list * args)
829 {
830   u32 tci = va_arg (*args, u32);
831   u32 __clib_unused thread_index = va_arg (*args, u32);
832   tcp_connection_t *tc = tcp_half_open_connection_get (tci);
833   return format (s, "%U", format_tcp_connection_id, tc);
834 }
835
836 static transport_connection_t *
837 tcp_session_get_transport (u32 conn_index, u32 thread_index)
838 {
839   tcp_connection_t *tc = tcp_connection_get (conn_index, thread_index);
840   if (PREDICT_FALSE (!tc))
841     return 0;
842   return &tc->connection;
843 }
844
845 static transport_connection_t *
846 tcp_half_open_session_get_transport (u32 conn_index)
847 {
848   tcp_connection_t *tc = tcp_half_open_connection_get (conn_index);
849   return &tc->connection;
850 }
851
852 static u16
853 tcp_session_cal_goal_size (tcp_connection_t * tc)
854 {
855   u16 goal_size = tc->snd_mss;
856
857   goal_size = TCP_MAX_GSO_SZ - tc->snd_mss % TCP_MAX_GSO_SZ;
858   goal_size = clib_min (goal_size, tc->snd_wnd / 2);
859
860   return goal_size > tc->snd_mss ? goal_size : tc->snd_mss;
861 }
862
863 always_inline u32
864 tcp_round_snd_space (tcp_connection_t * tc, u32 snd_space)
865 {
866   if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss))
867     {
868       return tc->snd_wnd <= snd_space ? tc->snd_wnd : 0;
869     }
870
871   /* If not snd_wnd constrained and we can't write at least a segment,
872    * don't try at all */
873   if (PREDICT_FALSE (snd_space < tc->snd_mss))
874     return snd_space < tc->cwnd ? 0 : snd_space;
875
876   /* round down to mss multiple */
877   return snd_space - (snd_space % tc->snd_mss);
878 }
879
880 /**
881  * Compute tx window session is allowed to fill.
882  *
883  * Takes into account available send space, snd_mss and the congestion
884  * state of the connection. If possible, the value returned is a multiple
885  * of snd_mss.
886  *
887  * @param tc tcp connection
888  * @return number of bytes session is allowed to write
889  */
890 static inline u32
891 tcp_snd_space_inline (tcp_connection_t * tc)
892 {
893   int snd_space;
894
895   if (PREDICT_FALSE (tcp_in_fastrecovery (tc)
896                      || tc->state == TCP_STATE_CLOSED))
897     return 0;
898
899   snd_space = tcp_available_output_snd_space (tc);
900
901   /* If we got dupacks or sacked bytes but we're not yet in recovery, try
902    * to force the peer to send enough dupacks to start retransmitting as
903    * per Limited Transmit (RFC3042)
904    */
905   if (PREDICT_FALSE (tc->rcv_dupacks != 0 || tc->sack_sb.sacked_bytes))
906     {
907       if (tc->limited_transmit != tc->snd_nxt
908           && (seq_lt (tc->limited_transmit, tc->snd_nxt - 2 * tc->snd_mss)
909               || seq_gt (tc->limited_transmit, tc->snd_nxt)))
910         tc->limited_transmit = tc->snd_nxt;
911
912       ASSERT (seq_leq (tc->limited_transmit, tc->snd_nxt));
913
914       int snt_limited = tc->snd_nxt - tc->limited_transmit;
915       snd_space = clib_max ((int) 2 * tc->snd_mss - snt_limited, 0);
916     }
917   return tcp_round_snd_space (tc, snd_space);
918 }
919
920 u32
921 tcp_snd_space (tcp_connection_t * tc)
922 {
923   return tcp_snd_space_inline (tc);
924 }
925
926 static int
927 tcp_session_send_params (transport_connection_t * trans_conn,
928                          transport_send_params_t * sp)
929 {
930   tcp_connection_t *tc = (tcp_connection_t *) trans_conn;
931
932   /* Ensure snd_mss does accurately reflect the amount of data we can push
933    * in a segment. This also makes sure that options are updated according to
934    * the current state of the connection. */
935   tcp_update_burst_snd_vars (tc);
936
937   if (PREDICT_FALSE (tc->cfg_flags & TCP_CFG_F_TSO))
938     sp->snd_mss = tcp_session_cal_goal_size (tc);
939   else
940     sp->snd_mss = tc->snd_mss;
941
942   sp->snd_space = clib_min (tcp_snd_space_inline (tc),
943                             tc->snd_wnd - (tc->snd_nxt - tc->snd_una));
944
945   ASSERT (seq_geq (tc->snd_nxt, tc->snd_una));
946   /* This still works if fast retransmit is on */
947   sp->tx_offset = tc->snd_nxt - tc->snd_una;
948
949   sp->flags = sp->snd_space ? 0 : TRANSPORT_SND_F_DESCHED;
950
951   return 0;
952 }
953
954 static void
955 tcp_timer_waitclose_handler (tcp_connection_t * tc)
956 {
957   tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
958
959   switch (tc->state)
960     {
961     case TCP_STATE_CLOSE_WAIT:
962       tcp_connection_timers_reset (tc);
963       /* App never returned with a close */
964       if (!(tc->flags & TCP_CONN_FINPNDG))
965         {
966           tcp_connection_set_state (tc, TCP_STATE_CLOSED);
967           session_transport_closed_notify (&tc->connection);
968           tcp_program_cleanup (wrk, tc);
969           tcp_worker_stats_inc (wrk, to_closewait, 1);
970           break;
971         }
972
973       /* Send FIN either way and switch to LAST_ACK. */
974       tcp_cong_recovery_off (tc);
975       /* Make sure we don't try to send unsent data */
976       tc->snd_nxt = tc->snd_una;
977       tcp_send_fin (tc);
978       tcp_connection_set_state (tc, TCP_STATE_LAST_ACK);
979       session_transport_closed_notify (&tc->connection);
980
981       /* Make sure we don't wait in LAST ACK forever */
982       tcp_timer_set (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
983                      tcp_cfg.lastack_time);
984       tcp_worker_stats_inc (wrk, to_closewait2, 1);
985
986       /* Don't delete the connection yet */
987       break;
988     case TCP_STATE_FIN_WAIT_1:
989       tcp_connection_timers_reset (tc);
990       if (tc->flags & TCP_CONN_FINPNDG)
991         {
992           /* If FIN pending, we haven't sent everything, but we did try.
993            * Notify session layer that transport is closed. */
994           tcp_connection_set_state (tc, TCP_STATE_CLOSED);
995           tcp_send_reset (tc);
996           tcp_program_cleanup (wrk, tc);
997         }
998       else
999         {
1000           /* We've sent the fin but no progress. Close the connection and
1001            * to make sure everything is flushed, setup a cleanup timer */
1002           tcp_connection_set_state (tc, TCP_STATE_CLOSED);
1003           tcp_program_cleanup (wrk, tc);
1004         }
1005       session_transport_closed_notify (&tc->connection);
1006       tcp_worker_stats_inc (wrk, to_finwait1, 1);
1007       break;
1008     case TCP_STATE_LAST_ACK:
1009       tcp_connection_timers_reset (tc);
1010       tcp_connection_set_state (tc, TCP_STATE_CLOSED);
1011       session_transport_closed_notify (&tc->connection);
1012       tcp_program_cleanup (wrk, tc);
1013       tcp_worker_stats_inc (wrk, to_lastack, 1);
1014       break;
1015     case TCP_STATE_CLOSING:
1016       tcp_connection_timers_reset (tc);
1017       tcp_connection_set_state (tc, TCP_STATE_CLOSED);
1018       session_transport_closed_notify (&tc->connection);
1019       tcp_program_cleanup (wrk, tc);
1020       tcp_worker_stats_inc (wrk, to_closing, 1);
1021       break;
1022     case TCP_STATE_FIN_WAIT_2:
1023       tcp_send_reset (tc);
1024       tcp_connection_timers_reset (tc);
1025       tcp_connection_set_state (tc, TCP_STATE_CLOSED);
1026       session_transport_closed_notify (&tc->connection);
1027       tcp_program_cleanup (wrk, tc);
1028       tcp_worker_stats_inc (wrk, to_finwait2, 1);
1029       break;
1030     case TCP_STATE_TIME_WAIT:
1031       tcp_connection_set_state (tc, TCP_STATE_CLOSED);
1032       tcp_program_cleanup (wrk, tc);
1033       break;
1034     default:
1035       clib_warning ("waitclose in state: %U", format_tcp_state, tc->state);
1036       break;
1037     }
1038 }
1039
1040 /* *INDENT-OFF* */
1041 static timer_expiration_handler *timer_expiration_handlers[TCP_N_TIMERS] =
1042 {
1043     tcp_timer_retransmit_handler,
1044     tcp_timer_delack_handler,
1045     tcp_timer_persist_handler,
1046     tcp_timer_waitclose_handler,
1047     tcp_timer_retransmit_syn_handler,
1048 };
1049 /* *INDENT-ON* */
1050
1051 static void
1052 tcp_dispatch_pending_timers (tcp_worker_ctx_t * wrk)
1053 {
1054   u32 n_timers, connection_index, timer_id, thread_index, timer_handle;
1055   tcp_connection_t *tc;
1056   int i;
1057
1058   if (!(n_timers = clib_fifo_elts (wrk->pending_timers)))
1059     return;
1060
1061   thread_index = wrk->vm->thread_index;
1062   for (i = 0; i < clib_min (n_timers, wrk->max_timers_per_loop); i++)
1063     {
1064       clib_fifo_sub1 (wrk->pending_timers, timer_handle);
1065       connection_index = timer_handle & 0x0FFFFFFF;
1066       timer_id = timer_handle >> 28;
1067
1068       if (PREDICT_TRUE (timer_id != TCP_TIMER_RETRANSMIT_SYN))
1069         tc = tcp_connection_get (connection_index, thread_index);
1070       else
1071         tc = tcp_half_open_connection_get (connection_index);
1072
1073       if (PREDICT_FALSE (!tc))
1074         continue;
1075
1076       /* Skip timer if it was rearmed while pending dispatch */
1077       if (PREDICT_FALSE (tc->timers[timer_id] != TCP_TIMER_HANDLE_INVALID))
1078         continue;
1079
1080       (*timer_expiration_handlers[timer_id]) (tc);
1081     }
1082
1083   if (thread_index == 0 && clib_fifo_elts (wrk->pending_timers))
1084     session_queue_run_on_main_thread (wrk->vm);
1085 }
1086
1087 static void
1088 tcp_handle_cleanups (tcp_worker_ctx_t * wrk, clib_time_type_t now)
1089 {
1090   u32 thread_index = wrk->vm->thread_index;
1091   tcp_cleanup_req_t *req;
1092   tcp_connection_t *tc;
1093
1094   while (clib_fifo_elts (wrk->pending_cleanups))
1095     {
1096       req = clib_fifo_head (wrk->pending_cleanups);
1097       if (req->free_time > now)
1098         break;
1099       clib_fifo_sub2 (wrk->pending_cleanups, req);
1100       tc = tcp_connection_get (req->connection_index, thread_index);
1101       if (PREDICT_FALSE (!tc))
1102         continue;
1103       session_transport_delete_notify (&tc->connection);
1104       tcp_connection_cleanup (tc);
1105     }
1106 }
1107
1108 static void
1109 tcp_update_time (f64 now, u8 thread_index)
1110 {
1111   tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
1112
1113   tcp_set_time_now (wrk);
1114   tcp_handle_cleanups (wrk, now);
1115   tw_timer_expire_timers_16t_2w_512sl (&wrk->timer_wheel, now);
1116   tcp_dispatch_pending_timers (wrk);
1117 }
1118
1119 static void
1120 tcp_session_flush_data (transport_connection_t * tconn)
1121 {
1122   tcp_connection_t *tc = (tcp_connection_t *) tconn;
1123   if (tc->flags & TCP_CONN_PSH_PENDING)
1124     return;
1125   tc->flags |= TCP_CONN_PSH_PENDING;
1126   tc->psh_seq = tc->snd_una + transport_max_tx_dequeue (tconn) - 1;
1127 }
1128
1129 /* *INDENT-OFF* */
1130 const static transport_proto_vft_t tcp_proto = {
1131   .enable = vnet_tcp_enable_disable,
1132   .start_listen = tcp_session_bind,
1133   .stop_listen = tcp_session_unbind,
1134   .push_header = tcp_session_push_header,
1135   .get_connection = tcp_session_get_transport,
1136   .get_listener = tcp_session_get_listener,
1137   .get_half_open = tcp_half_open_session_get_transport,
1138   .connect = tcp_session_open,
1139   .close = tcp_session_close,
1140   .cleanup = tcp_session_cleanup,
1141   .reset = tcp_session_reset,
1142   .send_params = tcp_session_send_params,
1143   .update_time = tcp_update_time,
1144   .flush_data = tcp_session_flush_data,
1145   .custom_tx = tcp_session_custom_tx,
1146   .format_connection = format_tcp_session,
1147   .format_listener = format_tcp_listener_session,
1148   .format_half_open = format_tcp_half_open_session,
1149   .transport_options = {
1150     .name = "tcp",
1151     .short_name = "T",
1152     .tx_type = TRANSPORT_TX_PEEK,
1153     .service_type = TRANSPORT_SERVICE_VC,
1154   },
1155 };
1156 /* *INDENT-ON* */
1157
1158 void
1159 tcp_connection_tx_pacer_update (tcp_connection_t * tc)
1160 {
1161   if (!transport_connection_is_tx_paced (&tc->connection))
1162     return;
1163
1164   f64 srtt = clib_min ((f64) tc->srtt * TCP_TICK, tc->mrtt_us);
1165
1166   transport_connection_tx_pacer_update (&tc->connection,
1167                                         tcp_cc_get_pacing_rate (tc),
1168                                         srtt * CLIB_US_TIME_FREQ);
1169 }
1170
1171 void
1172 tcp_connection_tx_pacer_reset (tcp_connection_t * tc, u32 window,
1173                                u32 start_bucket)
1174 {
1175   f64 srtt = clib_min ((f64) tc->srtt * TCP_TICK, tc->mrtt_us);
1176   transport_connection_tx_pacer_reset (&tc->connection,
1177                                        tcp_cc_get_pacing_rate (tc),
1178                                        start_bucket,
1179                                        srtt * CLIB_US_TIME_FREQ);
1180 }
1181
1182 void
1183 tcp_reschedule (tcp_connection_t * tc)
1184 {
1185   if (tcp_in_cong_recovery (tc) || tcp_snd_space_inline (tc))
1186     transport_connection_reschedule (&tc->connection);
1187 }
1188
1189 static void
1190 tcp_expired_timers_dispatch (u32 * expired_timers)
1191 {
1192   u32 thread_index = vlib_get_thread_index (), n_left, max_per_loop;
1193   u32 connection_index, timer_id, n_expired, max_loops;
1194   tcp_worker_ctx_t *wrk;
1195   tcp_connection_t *tc;
1196   int i;
1197
1198   wrk = tcp_get_worker (thread_index);
1199   n_expired = vec_len (expired_timers);
1200   tcp_worker_stats_inc (wrk, timer_expirations, n_expired);
1201   n_left = clib_fifo_elts (wrk->pending_timers);
1202
1203   /*
1204    * Invalidate all timer handles before dispatching. This avoids dangling
1205    * index references to timer wheel pool entries that have been freed.
1206    */
1207   for (i = 0; i < n_expired; i++)
1208     {
1209       connection_index = expired_timers[i] & 0x0FFFFFFF;
1210       timer_id = expired_timers[i] >> 28;
1211
1212       if (timer_id != TCP_TIMER_RETRANSMIT_SYN)
1213         tc = tcp_connection_get (connection_index, thread_index);
1214       else
1215         tc = tcp_half_open_connection_get (connection_index);
1216
1217       TCP_EVT (TCP_EVT_TIMER_POP, connection_index, timer_id);
1218
1219       tc->timers[timer_id] = TCP_TIMER_HANDLE_INVALID;
1220     }
1221
1222   clib_fifo_add (wrk->pending_timers, expired_timers, n_expired);
1223
1224   max_loops = clib_max (1, 0.5 * TCP_TIMER_TICK * wrk->vm->loops_per_second);
1225   max_per_loop = clib_max ((n_left + n_expired) / max_loops, 10);
1226   max_per_loop = clib_min (max_per_loop, VLIB_FRAME_SIZE);
1227   wrk->max_timers_per_loop = clib_max (n_left ? wrk->max_timers_per_loop : 0,
1228                                        max_per_loop);
1229
1230   if (thread_index == 0)
1231     session_queue_run_on_main_thread (wrk->vm);
1232 }
1233
1234 static void
1235 tcp_initialize_timer_wheels (tcp_main_t * tm)
1236 {
1237   tw_timer_wheel_16t_2w_512sl_t *tw;
1238   /* *INDENT-OFF* */
1239   foreach_vlib_main (({
1240     tw = &tm->wrk_ctx[ii].timer_wheel;
1241     tw_timer_wheel_init_16t_2w_512sl (tw, tcp_expired_timers_dispatch,
1242                                       TCP_TIMER_TICK, ~0);
1243     tw->last_run_time = vlib_time_now (this_vlib_main);
1244   }));
1245   /* *INDENT-ON* */
1246 }
1247
1248 static void
1249 tcp_initialize_iss_seed (tcp_main_t * tm)
1250 {
1251   u32 default_seed = random_default_seed ();
1252   u64 time_now = clib_cpu_time_now ();
1253
1254   tm->iss_seed.first = (u64) random_u32 (&default_seed) << 32;
1255   tm->iss_seed.second = random_u64 (&time_now);
1256 }
1257
1258 static clib_error_t *
1259 tcp_main_enable (vlib_main_t * vm)
1260 {
1261   vlib_thread_main_t *vtm = vlib_get_thread_main ();
1262   u32 num_threads, n_workers, prealloc_conn_per_wrk;
1263   tcp_connection_t *tc __attribute__ ((unused));
1264   tcp_main_t *tm = vnet_get_tcp_main ();
1265   tcp_worker_ctx_t *wrk;
1266   clib_error_t *error = 0;
1267   int thread;
1268
1269   if ((error = vlib_call_init_function (vm, ip_main_init)))
1270     return error;
1271   if ((error = vlib_call_init_function (vm, ip4_lookup_init)))
1272     return error;
1273   if ((error = vlib_call_init_function (vm, ip6_lookup_init)))
1274     return error;
1275
1276   /*
1277    * Registrations
1278    */
1279
1280   ip4_register_protocol (IP_PROTOCOL_TCP, tcp4_input_node.index);
1281   ip6_register_protocol (IP_PROTOCOL_TCP, tcp6_input_node.index);
1282
1283   /*
1284    * Initialize data structures
1285    */
1286
1287   num_threads = 1 /* main thread */  + vtm->n_threads;
1288   vec_validate (tm->wrk_ctx, num_threads - 1);
1289   n_workers = num_threads == 1 ? 1 : vtm->n_threads;
1290   prealloc_conn_per_wrk = tcp_cfg.preallocated_connections / n_workers;
1291
1292   wrk = &tm->wrk_ctx[0];
1293   wrk->tco_next_node[0] = vlib_node_get_next (vm, session_queue_node.index,
1294                                               tcp4_output_node.index);
1295   wrk->tco_next_node[1] = vlib_node_get_next (vm, session_queue_node.index,
1296                                               tcp6_output_node.index);
1297
1298   for (thread = 0; thread < num_threads; thread++)
1299     {
1300       wrk = &tm->wrk_ctx[thread];
1301
1302       vec_validate (wrk->pending_deq_acked, 255);
1303       vec_validate (wrk->pending_disconnects, 255);
1304       vec_validate (wrk->pending_resets, 255);
1305       vec_reset_length (wrk->pending_deq_acked);
1306       vec_reset_length (wrk->pending_disconnects);
1307       vec_reset_length (wrk->pending_resets);
1308       wrk->vm = vlib_mains[thread];
1309       wrk->max_timers_per_loop = 10;
1310
1311       if (thread > 0)
1312         {
1313           wrk->tco_next_node[0] = tm->wrk_ctx[0].tco_next_node[0];
1314           wrk->tco_next_node[1] = tm->wrk_ctx[0].tco_next_node[1];
1315         }
1316
1317       /*
1318        * Preallocate connections. Assume that thread 0 won't
1319        * use preallocated threads when running multi-core
1320        */
1321       if ((thread > 0 || num_threads == 1) && prealloc_conn_per_wrk)
1322         pool_init_fixed (wrk->connections, prealloc_conn_per_wrk);
1323     }
1324
1325   /*
1326    * Use a preallocated half-open connection pool?
1327    */
1328   if (tcp_cfg.preallocated_half_open_connections)
1329     pool_init_fixed (tm->half_open_connections,
1330                      tcp_cfg.preallocated_half_open_connections);
1331
1332   /* Initialize clocks per tick for TCP timestamp. Used to compute
1333    * monotonically increasing timestamps. */
1334   tm->tstamp_ticks_per_clock = vm->clib_time.seconds_per_clock
1335     / TCP_TSTAMP_RESOLUTION;
1336
1337   if (num_threads > 1)
1338     {
1339       clib_spinlock_init (&tm->half_open_lock);
1340     }
1341
1342   tcp_initialize_timer_wheels (tm);
1343   tcp_initialize_iss_seed (tm);
1344
1345   tm->bytes_per_buffer = vlib_buffer_get_default_data_size (vm);
1346   tm->cc_last_type = TCP_CC_LAST;
1347
1348   tm->ipl_next_node[0] = vlib_node_get_next (vm, session_queue_node.index,
1349                                              ip4_lookup_node.index);
1350   tm->ipl_next_node[1] = vlib_node_get_next (vm, session_queue_node.index,
1351                                              ip6_lookup_node.index);
1352   return error;
1353 }
1354
1355 clib_error_t *
1356 vnet_tcp_enable_disable (vlib_main_t * vm, u8 is_en)
1357 {
1358   if (is_en)
1359     {
1360       if (tcp_main.is_enabled)
1361         return 0;
1362
1363       return tcp_main_enable (vm);
1364     }
1365   else
1366     {
1367       tcp_main.is_enabled = 0;
1368     }
1369
1370   return 0;
1371 }
1372
1373 void
1374 tcp_punt_unknown (vlib_main_t * vm, u8 is_ip4, u8 is_add)
1375 {
1376   tcp_main_t *tm = &tcp_main;
1377   if (is_ip4)
1378     tm->punt_unknown4 = is_add;
1379   else
1380     tm->punt_unknown6 = is_add;
1381 }
1382
1383 /**
1384  * Initialize default values for tcp parameters
1385  */
1386 static void
1387 tcp_configuration_init (void)
1388 {
1389   /* Initial wnd for SYN. Fifos are not allocated at that point so use some
1390    * predefined value. For SYN-ACK we still want the scale to be computed in
1391    * the same way */
1392   tcp_cfg.max_rx_fifo = 32 << 20;
1393   tcp_cfg.min_rx_fifo = 4 << 10;
1394
1395   tcp_cfg.default_mtu = 1500;
1396   tcp_cfg.initial_cwnd_multiplier = 0;
1397   tcp_cfg.enable_tx_pacing = 1;
1398   tcp_cfg.allow_tso = 0;
1399   tcp_cfg.csum_offload = 1;
1400   tcp_cfg.cc_algo = TCP_CC_NEWRENO;
1401   tcp_cfg.rwnd_min_update_ack = 1;
1402
1403   /* Time constants defined as timer tick (100ms) multiples */
1404   tcp_cfg.delack_time = 1;      /* 0.1s */
1405   tcp_cfg.closewait_time = 20;  /* 2s */
1406   tcp_cfg.timewait_time = 100;  /* 10s */
1407   tcp_cfg.finwait1_time = 600;  /* 60s */
1408   tcp_cfg.lastack_time = 300;   /* 30s */
1409   tcp_cfg.finwait2_time = 300;  /* 30s */
1410   tcp_cfg.closing_time = 300;   /* 30s */
1411   tcp_cfg.cleanup_time = 0.1;   /* 100ms */
1412 }
1413
1414 static clib_error_t *
1415 tcp_init (vlib_main_t * vm)
1416 {
1417   tcp_main_t *tm = vnet_get_tcp_main ();
1418   ip_main_t *im = &ip_main;
1419   ip_protocol_info_t *pi;
1420
1421   /* Session layer, and by implication tcp, are disabled by default */
1422   tm->is_enabled = 0;
1423
1424   /* Register with IP for header parsing */
1425   pi = ip_get_protocol_info (im, IP_PROTOCOL_TCP);
1426   if (pi == 0)
1427     return clib_error_return (0, "TCP protocol info AWOL");
1428   pi->format_header = format_tcp_header;
1429   pi->unformat_pg_edit = unformat_pg_tcp_header;
1430
1431   /* Register as transport with session layer */
1432   transport_register_protocol (TRANSPORT_PROTO_TCP, &tcp_proto,
1433                                FIB_PROTOCOL_IP4, tcp4_output_node.index);
1434   transport_register_protocol (TRANSPORT_PROTO_TCP, &tcp_proto,
1435                                FIB_PROTOCOL_IP6, tcp6_output_node.index);
1436
1437   tcp_configuration_init ();
1438
1439   tm->cc_algo_by_name = hash_create_string (0, sizeof (uword));
1440
1441   return 0;
1442 }
1443
1444 VLIB_INIT_FUNCTION (tcp_init);
1445
1446 /*
1447  * fd.io coding-style-patch-verification: ON
1448  *
1449  * Local Variables:
1450  * eval: (c-set-style "gnu")
1451  * End:
1452  */