tcp: add cc cleanup function
[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/session/session.h>
23 #include <vnet/fib/fib.h>
24 #include <vnet/dpo/load_balance.h>
25 #include <vnet/dpo/receive_dpo.h>
26 #include <vnet/ip/ip6_neighbor.h>
27 #include <math.h>
28 #include <vnet/ethernet/arp.h>
29
30 tcp_main_t tcp_main;
31
32 typedef struct
33 {
34   fib_protocol_t nh_proto;
35   vnet_link_t link_type;
36   ip46_address_t ip;
37   u32 sw_if_index;
38   u8 is_add;
39 } tcp_add_del_adj_args_t;
40
41 static void
42 tcp_add_del_adj_cb (tcp_add_del_adj_args_t * args)
43 {
44   u32 ai;
45   if (args->is_add)
46     {
47       adj_nbr_add_or_lock (args->nh_proto, args->link_type, &args->ip,
48                            args->sw_if_index);
49     }
50   else
51     {
52       ai = adj_nbr_find (FIB_PROTOCOL_IP6, VNET_LINK_IP6, &args->ip,
53                          args->sw_if_index);
54       if (ai != ADJ_INDEX_INVALID)
55         adj_unlock (ai);
56     }
57 }
58
59 static void
60 tcp_add_del_adjacency (tcp_connection_t * tc, u8 is_add)
61 {
62   tcp_add_del_adj_args_t args = {
63     .nh_proto = FIB_PROTOCOL_IP6,
64     .link_type = VNET_LINK_IP6,
65     .ip = tc->c_rmt_ip,
66     .sw_if_index = tc->sw_if_index,
67     .is_add = is_add
68   };
69   vlib_rpc_call_main_thread (tcp_add_del_adj_cb, (u8 *) & args,
70                              sizeof (args));
71 }
72
73 static void
74 tcp_cc_init (tcp_connection_t * tc)
75 {
76   tc->cc_algo = tcp_cc_algo_get (tcp_main.cc_algo);
77   tc->cc_algo->init (tc);
78 }
79
80 static void
81 tcp_cc_cleanup (tcp_connection_t * tc)
82 {
83   if (tc->cc_algo->cleanup)
84     tc->cc_algo->cleanup (tc);
85 }
86
87 void
88 tcp_cc_algo_register (tcp_cc_algorithm_type_e type,
89                       const tcp_cc_algorithm_t * vft)
90 {
91   tcp_main_t *tm = vnet_get_tcp_main ();
92   vec_validate (tm->cc_algos, type);
93
94   tm->cc_algos[type] = *vft;
95   hash_set_mem (tm->cc_algo_by_name, vft->name, type);
96 }
97
98 tcp_cc_algorithm_t *
99 tcp_cc_algo_get (tcp_cc_algorithm_type_e type)
100 {
101   tcp_main_t *tm = vnet_get_tcp_main ();
102   return &tm->cc_algos[type];
103 }
104
105 static u32
106 tcp_connection_bind (u32 session_index, transport_endpoint_t * lcl)
107 {
108   tcp_main_t *tm = &tcp_main;
109   tcp_connection_t *listener;
110   void *iface_ip;
111
112   pool_get (tm->listener_pool, listener);
113   clib_memset (listener, 0, sizeof (*listener));
114
115   listener->c_c_index = listener - tm->listener_pool;
116   listener->c_lcl_port = lcl->port;
117
118   /* If we are provided a sw_if_index, bind using one of its ips */
119   if (ip_is_zero (&lcl->ip, 1) && lcl->sw_if_index != ENDPOINT_INVALID_INDEX)
120     {
121       if ((iface_ip = ip_interface_get_first_ip (lcl->sw_if_index,
122                                                  lcl->is_ip4)))
123         ip_set (&lcl->ip, iface_ip, lcl->is_ip4);
124     }
125   ip_copy (&listener->c_lcl_ip, &lcl->ip, lcl->is_ip4);
126   listener->c_is_ip4 = lcl->is_ip4;
127   listener->c_proto = TRANSPORT_PROTO_TCP;
128   listener->c_s_index = session_index;
129   listener->c_fib_index = lcl->fib_index;
130   listener->state = TCP_STATE_LISTEN;
131
132   tcp_connection_timers_init (listener);
133
134   TCP_EVT_DBG (TCP_EVT_BIND, listener);
135
136   return listener->c_c_index;
137 }
138
139 static u32
140 tcp_session_bind (u32 session_index, transport_endpoint_t * tep)
141 {
142   return tcp_connection_bind (session_index, tep);
143 }
144
145 static void
146 tcp_connection_unbind (u32 listener_index)
147 {
148   tcp_main_t *tm = vnet_get_tcp_main ();
149   tcp_connection_t *tc;
150
151   tc = pool_elt_at_index (tm->listener_pool, listener_index);
152
153   TCP_EVT_DBG (TCP_EVT_UNBIND, tc);
154
155   /* Poison the entry */
156   if (CLIB_DEBUG > 0)
157     clib_memset (tc, 0xFA, sizeof (*tc));
158
159   pool_put_index (tm->listener_pool, listener_index);
160 }
161
162 static u32
163 tcp_session_unbind (u32 listener_index)
164 {
165   tcp_connection_unbind (listener_index);
166   return 0;
167 }
168
169 static transport_connection_t *
170 tcp_session_get_listener (u32 listener_index)
171 {
172   tcp_main_t *tm = vnet_get_tcp_main ();
173   tcp_connection_t *tc;
174   tc = pool_elt_at_index (tm->listener_pool, listener_index);
175   return &tc->connection;
176 }
177
178 /**
179  * Cleanup half-open connection
180  *
181  */
182 static void
183 tcp_half_open_connection_del (tcp_connection_t * tc)
184 {
185   tcp_main_t *tm = vnet_get_tcp_main ();
186   clib_spinlock_lock_if_init (&tm->half_open_lock);
187   pool_put_index (tm->half_open_connections, tc->c_c_index);
188   if (CLIB_DEBUG)
189     clib_memset (tc, 0xFA, sizeof (*tc));
190   clib_spinlock_unlock_if_init (&tm->half_open_lock);
191 }
192
193 /**
194  * Try to cleanup half-open connection
195  *
196  * If called from a thread that doesn't own tc, the call won't have any
197  * effect.
198  *
199  * @param tc - connection to be cleaned up
200  * @return non-zero if cleanup failed.
201  */
202 int
203 tcp_half_open_connection_cleanup (tcp_connection_t * tc)
204 {
205   /* Make sure this is the owning thread */
206   if (tc->c_thread_index != vlib_get_thread_index ())
207     return 1;
208   tcp_timer_reset (tc, TCP_TIMER_ESTABLISH_AO);
209   tcp_timer_reset (tc, TCP_TIMER_RETRANSMIT_SYN);
210   tcp_half_open_connection_del (tc);
211   return 0;
212 }
213
214 static tcp_connection_t *
215 tcp_half_open_connection_new (void)
216 {
217   tcp_main_t *tm = vnet_get_tcp_main ();
218   tcp_connection_t *tc = 0;
219   ASSERT (vlib_get_thread_index () == 0);
220   pool_get (tm->half_open_connections, tc);
221   clib_memset (tc, 0, sizeof (*tc));
222   tc->c_c_index = tc - tm->half_open_connections;
223   return tc;
224 }
225
226 /**
227  * Cleans up connection state.
228  *
229  * No notifications.
230  */
231 void
232 tcp_connection_cleanup (tcp_connection_t * tc)
233 {
234   tcp_main_t *tm = &tcp_main;
235
236   TCP_EVT_DBG (TCP_EVT_DELETE, tc);
237
238   /* Cleanup local endpoint if this was an active connect */
239   transport_endpoint_cleanup (TRANSPORT_PROTO_TCP, &tc->c_lcl_ip,
240                               tc->c_lcl_port);
241
242   /* Check if connection is not yet fully established */
243   if (tc->state == TCP_STATE_SYN_SENT)
244     {
245       /* Try to remove the half-open connection. If this is not the owning
246        * thread, tc won't be removed. Retransmit or establish timers will
247        * eventually expire and call again cleanup on the right thread. */
248       if (tcp_half_open_connection_cleanup (tc))
249         tc->flags |= TCP_CONN_HALF_OPEN_DONE;
250     }
251   else
252     {
253       int thread_index = tc->c_thread_index;
254
255       /* Make sure all timers are cleared */
256       tcp_connection_timers_reset (tc);
257
258       if (!tc->c_is_ip4 && ip6_address_is_link_local_unicast (&tc->c_rmt_ip6))
259         tcp_add_del_adjacency (tc, 0);
260
261       tcp_cc_cleanup (tc);
262       vec_free (tc->snd_sacks);
263       vec_free (tc->snd_sacks_fl);
264
265       /* Poison the entry */
266       if (CLIB_DEBUG > 0)
267         clib_memset (tc, 0xFA, sizeof (*tc));
268       pool_put (tm->connections[thread_index], tc);
269     }
270 }
271
272 /**
273  * Connection removal.
274  *
275  * This should be called only once connection enters CLOSED state. Note
276  * that it notifies the session of the removal event, so if the goal is to
277  * just remove the connection, call tcp_connection_cleanup instead.
278  */
279 void
280 tcp_connection_del (tcp_connection_t * tc)
281 {
282   session_transport_delete_notify (&tc->connection);
283   tcp_connection_cleanup (tc);
284 }
285
286 tcp_connection_t *
287 tcp_connection_alloc (u8 thread_index)
288 {
289   tcp_main_t *tm = vnet_get_tcp_main ();
290   tcp_connection_t *tc;
291
292   pool_get (tm->connections[thread_index], tc);
293   clib_memset (tc, 0, sizeof (*tc));
294   tc->c_c_index = tc - tm->connections[thread_index];
295   tc->c_thread_index = thread_index;
296   return tc;
297 }
298
299 void
300 tcp_connection_free (tcp_connection_t * tc)
301 {
302   tcp_main_t *tm = &tcp_main;
303   if (CLIB_DEBUG)
304     {
305       u8 thread_index = tc->c_thread_index;
306       clib_memset (tc, 0xFA, sizeof (*tc));
307       pool_put (tm->connections[thread_index], tc);
308       return;
309     }
310   pool_put (tm->connections[tc->c_thread_index], tc);
311 }
312
313 /** Notify session that connection has been reset.
314  *
315  * Switch state to closed and wait for session to call cleanup.
316  */
317 void
318 tcp_connection_reset (tcp_connection_t * tc)
319 {
320   TCP_EVT_DBG (TCP_EVT_RST_RCVD, tc);
321   switch (tc->state)
322     {
323     case TCP_STATE_SYN_RCVD:
324       /* Cleanup everything. App wasn't notified yet */
325       session_transport_delete_notify (&tc->connection);
326       tcp_connection_cleanup (tc);
327       break;
328     case TCP_STATE_SYN_SENT:
329       session_stream_connect_notify (&tc->connection, 1 /* fail */ );
330       tcp_connection_cleanup (tc);
331       break;
332     case TCP_STATE_ESTABLISHED:
333       tcp_connection_timers_reset (tc);
334       /* Set the cleanup timer, in case the session layer/app don't
335        * cleanly close the connection */
336       tcp_timer_set (tc, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
337       session_transport_reset_notify (&tc->connection);
338       tcp_connection_set_state (tc, TCP_STATE_CLOSED);
339       break;
340     case TCP_STATE_CLOSE_WAIT:
341     case TCP_STATE_FIN_WAIT_1:
342     case TCP_STATE_FIN_WAIT_2:
343     case TCP_STATE_CLOSING:
344     case TCP_STATE_LAST_ACK:
345       tcp_connection_timers_reset (tc);
346       tcp_timer_set (tc, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
347       /* Make sure we mark the session as closed. In some states we may
348        * be still trying to send data */
349       session_transport_closed_notify (&tc->connection);
350       tcp_connection_set_state (tc, TCP_STATE_CLOSED);
351       break;
352     case TCP_STATE_CLOSED:
353     case TCP_STATE_TIME_WAIT:
354       break;
355     default:
356       TCP_DBG ("reset state: %u", tc->state);
357     }
358 }
359
360 /**
361  * Begin connection closing procedure.
362  *
363  * If at the end the connection is not in CLOSED state, it is not removed.
364  * Instead, we rely on on TCP to advance through state machine to either
365  * 1) LAST_ACK (passive close) whereby when the last ACK is received
366  * tcp_connection_del is called. This notifies session of the delete and
367  * calls cleanup.
368  * 2) TIME_WAIT (active close) whereby after 2MSL the 2MSL timer triggers
369  * and cleanup is called.
370  *
371  * N.B. Half-close connections are not supported
372  */
373 void
374 tcp_connection_close (tcp_connection_t * tc)
375 {
376   TCP_EVT_DBG (TCP_EVT_CLOSE, tc);
377
378   /* Send/Program FIN if needed and switch state */
379   switch (tc->state)
380     {
381     case TCP_STATE_SYN_SENT:
382       /* Try to cleanup. If not on the right thread, mark as half-open done.
383        * Connection will be cleaned up when establish timer pops */
384       tcp_connection_cleanup (tc);
385       break;
386     case TCP_STATE_SYN_RCVD:
387       tcp_connection_timers_reset (tc);
388       tcp_send_fin (tc);
389       tcp_connection_set_state (tc, TCP_STATE_FIN_WAIT_1);
390       tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, TCP_FINWAIT1_TIME);
391       break;
392     case TCP_STATE_ESTABLISHED:
393       /* If closing with unread data, reset the connection */
394       if (transport_max_rx_dequeue (&tc->connection))
395         {
396           tcp_send_reset (tc);
397           tcp_connection_timers_reset (tc);
398           tcp_connection_set_state (tc, TCP_STATE_CLOSED);
399           tcp_timer_set (tc, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
400           break;
401         }
402       if (!transport_max_tx_dequeue (&tc->connection))
403         tcp_send_fin (tc);
404       else
405         tc->flags |= TCP_CONN_FINPNDG;
406       tcp_connection_set_state (tc, TCP_STATE_FIN_WAIT_1);
407       /* Set a timer in case the peer stops responding. Otherwise the
408        * connection will be stuck here forever. */
409       ASSERT (tc->timers[TCP_TIMER_WAITCLOSE] == TCP_TIMER_HANDLE_INVALID);
410       tcp_timer_set (tc, TCP_TIMER_WAITCLOSE, TCP_FINWAIT1_TIME);
411       break;
412     case TCP_STATE_CLOSE_WAIT:
413       if (!transport_max_tx_dequeue (&tc->connection))
414         {
415           tcp_send_fin (tc);
416           tcp_connection_timers_reset (tc);
417           tcp_connection_set_state (tc, TCP_STATE_LAST_ACK);
418           tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
419         }
420       else
421         tc->flags |= TCP_CONN_FINPNDG;
422       break;
423     case TCP_STATE_FIN_WAIT_1:
424       tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
425       break;
426     case TCP_STATE_CLOSED:
427       tcp_connection_timers_reset (tc);
428       /* Delete connection but instead of doing it now wait until next
429        * dispatch cycle to give the session layer a chance to clear
430        * unhandled events */
431       tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, TCP_CLEANUP_TIME);
432       break;
433     default:
434       TCP_DBG ("state: %u", tc->state);
435     }
436 }
437
438 static void
439 tcp_session_close (u32 conn_index, u32 thread_index)
440 {
441   tcp_connection_t *tc;
442   tc = tcp_connection_get (conn_index, thread_index);
443   tcp_connection_close (tc);
444 }
445
446 static void
447 tcp_session_cleanup (u32 conn_index, u32 thread_index)
448 {
449   tcp_connection_t *tc;
450   tc = tcp_connection_get (conn_index, thread_index);
451   tcp_connection_set_state (tc, TCP_STATE_CLOSED);
452   tcp_connection_cleanup (tc);
453 }
454
455 /**
456  * Initialize all connection timers as invalid
457  */
458 void
459 tcp_connection_timers_init (tcp_connection_t * tc)
460 {
461   int i;
462
463   /* Set all to invalid */
464   for (i = 0; i < TCP_N_TIMERS; i++)
465     {
466       tc->timers[i] = TCP_TIMER_HANDLE_INVALID;
467     }
468
469   tc->rto = TCP_RTO_INIT;
470 }
471
472 /**
473  * Stop all connection timers
474  */
475 void
476 tcp_connection_timers_reset (tcp_connection_t * tc)
477 {
478   int i;
479   for (i = 0; i < TCP_N_TIMERS; i++)
480     {
481       tcp_timer_reset (tc, i);
482     }
483 }
484
485 #if 0
486 typedef struct ip4_tcp_hdr
487 {
488   ip4_header_t ip;
489   tcp_header_t tcp;
490 } ip4_tcp_hdr_t;
491
492 typedef struct ip6_tcp_hdr
493 {
494   ip6_header_t ip;
495   tcp_header_t tcp;
496 } ip6_tcp_hdr_t;
497
498 static void
499 tcp_connection_select_lb_bucket (tcp_connection_t * tc, const dpo_id_t * dpo,
500                                  dpo_id_t * result)
501 {
502   const dpo_id_t *choice;
503   load_balance_t *lb;
504   int hash;
505
506   lb = load_balance_get (dpo->dpoi_index);
507   if (tc->c_is_ip4)
508     {
509       ip4_tcp_hdr_t hdr;
510       clib_memset (&hdr, 0, sizeof (hdr));
511       hdr.ip.protocol = IP_PROTOCOL_TCP;
512       hdr.ip.address_pair.src.as_u32 = tc->c_lcl_ip.ip4.as_u32;
513       hdr.ip.address_pair.dst.as_u32 = tc->c_rmt_ip.ip4.as_u32;
514       hdr.tcp.src_port = tc->c_lcl_port;
515       hdr.tcp.dst_port = tc->c_rmt_port;
516       hash = ip4_compute_flow_hash (&hdr.ip, lb->lb_hash_config);
517     }
518   else
519     {
520       ip6_tcp_hdr_t hdr;
521       clib_memset (&hdr, 0, sizeof (hdr));
522       hdr.ip.protocol = IP_PROTOCOL_TCP;
523       clib_memcpy_fast (&hdr.ip.src_address, &tc->c_lcl_ip.ip6,
524                         sizeof (ip6_address_t));
525       clib_memcpy_fast (&hdr.ip.dst_address, &tc->c_rmt_ip.ip6,
526                         sizeof (ip6_address_t));
527       hdr.tcp.src_port = tc->c_lcl_port;
528       hdr.tcp.dst_port = tc->c_rmt_port;
529       hash = ip6_compute_flow_hash (&hdr.ip, lb->lb_hash_config);
530     }
531   choice = load_balance_get_bucket_i (lb, hash & lb->lb_n_buckets_minus_1);
532   dpo_copy (result, choice);
533 }
534
535 fib_node_index_t
536 tcp_lookup_rmt_in_fib (tcp_connection_t * tc)
537 {
538   fib_prefix_t prefix;
539   u32 fib_index;
540
541   clib_memcpy_fast (&prefix.fp_addr, &tc->c_rmt_ip, sizeof (prefix.fp_addr));
542   prefix.fp_proto = tc->c_is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
543   prefix.fp_len = tc->c_is_ip4 ? 32 : 128;
544   fib_index = fib_table_find (prefix.fp_proto, tc->c_fib_index);
545   return fib_table_lookup (fib_index, &prefix);
546 }
547
548 static int
549 tcp_connection_stack_on_fib_entry (tcp_connection_t * tc)
550 {
551   dpo_id_t choice = DPO_INVALID;
552   u32 output_node_index;
553   fib_entry_t *fe;
554
555   fe = fib_entry_get (tc->c_rmt_fei);
556   if (fe->fe_lb.dpoi_type != DPO_LOAD_BALANCE)
557     return -1;
558
559   tcp_connection_select_lb_bucket (tc, &fe->fe_lb, &choice);
560
561   output_node_index =
562     tc->c_is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
563   dpo_stack_from_node (output_node_index, &tc->c_rmt_dpo, &choice);
564   return 0;
565 }
566
567 /** Stack tcp connection on peer's fib entry.
568  *
569  * This ultimately populates the dpo the connection will use to send packets.
570  */
571 static void
572 tcp_connection_fib_attach (tcp_connection_t * tc)
573 {
574   tc->c_rmt_fei = tcp_lookup_rmt_in_fib (tc);
575
576   ASSERT (tc->c_rmt_fei != FIB_NODE_INDEX_INVALID);
577
578   tcp_connection_stack_on_fib_entry (tc);
579 }
580 #endif /* 0 */
581
582 /**
583  * Generate random iss as per rfc6528
584  */
585 static u32
586 tcp_generate_random_iss (tcp_connection_t * tc)
587 {
588   tcp_main_t *tm = &tcp_main;
589   u64 tmp;
590
591   if (tc->c_is_ip4)
592     tmp = (u64) tc->c_lcl_ip.ip4.as_u32 << 32 | (u64) tc->c_rmt_ip.ip4.as_u32;
593   else
594     tmp = tc->c_lcl_ip.ip6.as_u64[0] ^ tc->c_lcl_ip.ip6.as_u64[1]
595       ^ tc->c_rmt_ip.ip6.as_u64[0] ^ tc->c_rmt_ip.ip6.as_u64[1];
596
597   tmp ^= tm->iss_seed.first | ((u64) tc->c_lcl_port << 16 | tc->c_rmt_port);
598   tmp ^= tm->iss_seed.second;
599   tmp = clib_xxhash (tmp) + clib_cpu_time_now ();
600   return ((tmp >> 32) ^ (tmp & 0xffffffff));
601 }
602
603 /**
604  * Initialize connection send variables.
605  */
606 void
607 tcp_init_snd_vars (tcp_connection_t * tc)
608 {
609   /*
610    * We use the time to randomize iss and for setting up the initial
611    * timestamp. Make sure it's updated otherwise syn and ack in the
612    * handshake may make it look as if time has flown in the opposite
613    * direction for us.
614    */
615   tcp_set_time_now (tcp_get_worker (vlib_get_thread_index ()));
616
617   tc->iss = tcp_generate_random_iss (tc);
618   tc->snd_una = tc->iss;
619   tc->snd_nxt = tc->iss + 1;
620   tc->snd_una_max = tc->snd_nxt;
621   tc->srtt = 0;
622 }
623
624 void
625 tcp_enable_pacing (tcp_connection_t * tc)
626 {
627   u32 initial_bucket, byte_rate;
628   initial_bucket = 16 * tc->snd_mss;
629   byte_rate = 2 << 16;
630   transport_connection_tx_pacer_init (&tc->connection, byte_rate,
631                                       initial_bucket);
632   tc->mrtt_us = (u32) ~ 0;
633 }
634
635 /** Initialize tcp connection variables
636  *
637  * Should be called after having received a msg from the peer, i.e., a SYN or
638  * a SYNACK, such that connection options have already been exchanged. */
639 void
640 tcp_connection_init_vars (tcp_connection_t * tc)
641 {
642   tcp_connection_timers_init (tc);
643   tcp_init_mss (tc);
644   scoreboard_init (&tc->sack_sb);
645   tcp_cc_init (tc);
646   if (tc->state == TCP_STATE_SYN_RCVD)
647     tcp_init_snd_vars (tc);
648
649   if (!tc->c_is_ip4 && ip6_address_is_link_local_unicast (&tc->c_rmt_ip6))
650     tcp_add_del_adjacency (tc, 1);
651
652   /*  tcp_connection_fib_attach (tc); */
653
654   if (transport_connection_is_tx_paced (&tc->connection)
655       || tcp_main.tx_pacing)
656     tcp_enable_pacing (tc);
657 }
658
659 static int
660 tcp_alloc_custom_local_endpoint (tcp_main_t * tm, ip46_address_t * lcl_addr,
661                                  u16 * lcl_port, u8 is_ip4)
662 {
663   int index, port;
664   if (is_ip4)
665     {
666       index = tm->last_v4_address_rotor++;
667       if (tm->last_v4_address_rotor >= vec_len (tm->ip4_src_addresses))
668         tm->last_v4_address_rotor = 0;
669       lcl_addr->ip4.as_u32 = tm->ip4_src_addresses[index].as_u32;
670     }
671   else
672     {
673       index = tm->last_v6_address_rotor++;
674       if (tm->last_v6_address_rotor >= vec_len (tm->ip6_src_addresses))
675         tm->last_v6_address_rotor = 0;
676       clib_memcpy_fast (&lcl_addr->ip6, &tm->ip6_src_addresses[index],
677                         sizeof (ip6_address_t));
678     }
679   port = transport_alloc_local_port (TRANSPORT_PROTO_TCP, lcl_addr);
680   if (port < 1)
681     {
682       clib_warning ("Failed to allocate src port");
683       return -1;
684     }
685   *lcl_port = port;
686   return 0;
687 }
688
689 static int
690 tcp_session_open (transport_endpoint_cfg_t * rmt)
691 {
692   tcp_main_t *tm = vnet_get_tcp_main ();
693   tcp_connection_t *tc;
694   ip46_address_t lcl_addr;
695   u16 lcl_port;
696   int rv;
697
698   /*
699    * Allocate local endpoint
700    */
701   if ((rmt->is_ip4 && vec_len (tm->ip4_src_addresses))
702       || (!rmt->is_ip4 && vec_len (tm->ip6_src_addresses)))
703     rv = tcp_alloc_custom_local_endpoint (tm, &lcl_addr, &lcl_port,
704                                           rmt->is_ip4);
705   else
706     rv = transport_alloc_local_endpoint (TRANSPORT_PROTO_TCP,
707                                          rmt, &lcl_addr, &lcl_port);
708
709   if (rv)
710     return -1;
711
712   /*
713    * Create connection and send SYN
714    */
715   clib_spinlock_lock_if_init (&tm->half_open_lock);
716   tc = tcp_half_open_connection_new ();
717   ip_copy (&tc->c_rmt_ip, &rmt->ip, rmt->is_ip4);
718   ip_copy (&tc->c_lcl_ip, &lcl_addr, rmt->is_ip4);
719   tc->c_rmt_port = rmt->port;
720   tc->c_lcl_port = clib_host_to_net_u16 (lcl_port);
721   tc->c_is_ip4 = rmt->is_ip4;
722   tc->c_proto = TRANSPORT_PROTO_TCP;
723   tc->c_fib_index = rmt->fib_index;
724   /* The other connection vars will be initialized after SYN ACK */
725   tcp_connection_timers_init (tc);
726
727   TCP_EVT_DBG (TCP_EVT_OPEN, tc);
728   tc->state = TCP_STATE_SYN_SENT;
729   tcp_init_snd_vars (tc);
730   tcp_send_syn (tc);
731   clib_spinlock_unlock_if_init (&tm->half_open_lock);
732
733   return tc->c_c_index;
734 }
735
736 const char *tcp_dbg_evt_str[] = {
737 #define _(sym, str) str,
738   foreach_tcp_dbg_evt
739 #undef _
740 };
741
742 const char *tcp_fsm_states[] = {
743 #define _(sym, str) str,
744   foreach_tcp_fsm_state
745 #undef _
746 };
747
748 u8 *
749 format_tcp_state (u8 * s, va_list * args)
750 {
751   u32 state = va_arg (*args, u32);
752
753   if (state < TCP_N_STATES)
754     s = format (s, "%s", tcp_fsm_states[state]);
755   else
756     s = format (s, "UNKNOWN (%d (0x%x))", state, state);
757   return s;
758 }
759
760 const char *tcp_connection_flags_str[] = {
761 #define _(sym, str) str,
762   foreach_tcp_connection_flag
763 #undef _
764 };
765
766 static u8 *
767 format_tcp_connection_flags (u8 * s, va_list * args)
768 {
769   tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
770   int i, last = -1;
771
772   for (i = 0; i < TCP_CONN_N_FLAG_BITS; i++)
773     if (tc->flags & (1 << i))
774       last = i;
775   for (i = 0; i < last; i++)
776     {
777       if (tc->flags & (1 << i))
778         s = format (s, "%s, ", tcp_connection_flags_str[i]);
779     }
780   if (last >= 0)
781     s = format (s, "%s", tcp_connection_flags_str[last]);
782   return s;
783 }
784
785 const char *tcp_conn_timers[] = {
786 #define _(sym, str) str,
787   foreach_tcp_timer
788 #undef _
789 };
790
791 static u8 *
792 format_tcp_timers (u8 * s, va_list * args)
793 {
794   tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
795   int i, last = -1;
796
797   for (i = 0; i < TCP_N_TIMERS; i++)
798     if (tc->timers[i] != TCP_TIMER_HANDLE_INVALID)
799       last = i;
800
801   for (i = 0; i < last; i++)
802     {
803       if (tc->timers[i] != TCP_TIMER_HANDLE_INVALID)
804         s = format (s, "%s,", tcp_conn_timers[i]);
805     }
806
807   if (last >= 0)
808     s = format (s, "%s", tcp_conn_timers[i]);
809
810   return s;
811 }
812
813 static u8 *
814 format_tcp_congestion_status (u8 * s, va_list * args)
815 {
816   tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
817   if (tcp_in_recovery (tc))
818     s = format (s, "recovery");
819   else if (tcp_in_fastrecovery (tc))
820     s = format (s, "fastrecovery");
821   else
822     s = format (s, "none");
823   return s;
824 }
825
826 static i32
827 tcp_rcv_wnd_available (tcp_connection_t * tc)
828 {
829   return (i32) tc->rcv_wnd - (tc->rcv_nxt - tc->rcv_las);
830 }
831
832 static u8 *
833 format_tcp_congestion (u8 * s, va_list * args)
834 {
835   tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
836   u32 indent = format_get_indent (s);
837
838   s = format (s, "%U ", format_tcp_congestion_status, tc);
839   s = format (s, "algo %s cwnd %u ssthresh %u bytes_acked %u\n",
840               tc->cc_algo->name, tc->cwnd, tc->ssthresh, tc->bytes_acked);
841   s = format (s, "%Ucc space %u prev_cwnd %u prev_ssthresh %u rtx_bytes %u\n",
842               format_white_space, indent, tcp_available_cc_snd_space (tc),
843               tc->prev_cwnd, tc->prev_ssthresh, tc->snd_rxt_bytes);
844   s = format (s, "%Usnd_congestion %u dupack %u limited_transmit %u\n",
845               format_white_space, indent, tc->snd_congestion - tc->iss,
846               tc->rcv_dupacks, tc->limited_transmit - tc->iss);
847   return s;
848 }
849
850 static u8 *
851 format_tcp_vars (u8 * s, va_list * args)
852 {
853   tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
854   s = format (s, " index: %u flags: %U timers: %U\n", tc->c_c_index,
855               format_tcp_connection_flags, tc, format_tcp_timers, tc);
856   s = format (s, " snd_una %u snd_nxt %u snd_una_max %u",
857               tc->snd_una - tc->iss, tc->snd_nxt - tc->iss,
858               tc->snd_una_max - tc->iss);
859   s = format (s, " rcv_nxt %u rcv_las %u\n",
860               tc->rcv_nxt - tc->irs, tc->rcv_las - tc->irs);
861   s = format (s, " snd_wnd %u rcv_wnd %u rcv_wscale %u ",
862               tc->snd_wnd, tc->rcv_wnd, tc->rcv_wscale);
863   s = format (s, "snd_wl1 %u snd_wl2 %u\n", tc->snd_wl1 - tc->irs,
864               tc->snd_wl2 - tc->iss);
865   s = format (s, " flight size %u out space %u rcv_wnd_av %u",
866               tcp_flight_size (tc), tcp_available_output_snd_space (tc),
867               tcp_rcv_wnd_available (tc));
868   s = format (s, " tsval_recent %u\n", tc->tsval_recent);
869   s = format (s, " tsecr %u tsecr_last_ack %u tsval_recent_age %u",
870               tc->rcv_opts.tsecr, tc->tsecr_last_ack,
871               tcp_time_now () - tc->tsval_recent_age);
872   s = format (s, " snd_mss %u\n", tc->snd_mss);
873   s = format (s, " rto %u rto_boff %u srtt %u us %.3f rttvar %u rtt_ts %.4f",
874               tc->rto, tc->rto_boff, tc->srtt, tc->mrtt_us * 1000, tc->rttvar,
875               tc->rtt_ts);
876   s = format (s, " rtt_seq %u\n", tc->rtt_seq - tc->iss);
877   s = format (s, " cong:   %U", format_tcp_congestion, tc);
878
879   if (tc->state >= TCP_STATE_ESTABLISHED)
880     {
881       s = format (s, " sboard: %U\n", format_tcp_scoreboard, &tc->sack_sb,
882                   tc);
883     }
884   if (vec_len (tc->snd_sacks))
885     s = format (s, " sacks tx: %U\n", format_tcp_sacks, tc);
886
887   return s;
888 }
889
890 static u8 *
891 format_tcp_connection_id (u8 * s, va_list * args)
892 {
893   tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
894   if (!tc)
895     return s;
896   if (tc->c_is_ip4)
897     {
898       s = format (s, "[%d:%d][%s] %U:%d->%U:%d", tc->c_thread_index,
899                   tc->c_s_index, "T", format_ip4_address, &tc->c_lcl_ip4,
900                   clib_net_to_host_u16 (tc->c_lcl_port), format_ip4_address,
901                   &tc->c_rmt_ip4, clib_net_to_host_u16 (tc->c_rmt_port));
902     }
903   else
904     {
905       s = format (s, "[%d:%d][%s] %U:%d->%U:%d", tc->c_thread_index,
906                   tc->c_s_index, "T", format_ip6_address, &tc->c_lcl_ip6,
907                   clib_net_to_host_u16 (tc->c_lcl_port), format_ip6_address,
908                   &tc->c_rmt_ip6, clib_net_to_host_u16 (tc->c_rmt_port));
909     }
910
911   return s;
912 }
913
914 u8 *
915 format_tcp_connection (u8 * s, va_list * args)
916 {
917   tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
918   u32 verbose = va_arg (*args, u32);
919
920   if (!tc)
921     return s;
922   s = format (s, "%-50U", format_tcp_connection_id, tc);
923   if (verbose)
924     {
925       s = format (s, "%-15U", format_tcp_state, tc->state);
926       if (verbose > 1)
927         s = format (s, "\n%U", format_tcp_vars, tc);
928     }
929
930   return s;
931 }
932
933 static u8 *
934 format_tcp_session (u8 * s, va_list * args)
935 {
936   u32 tci = va_arg (*args, u32);
937   u32 thread_index = va_arg (*args, u32);
938   u32 verbose = va_arg (*args, u32);
939   tcp_connection_t *tc;
940
941   tc = tcp_connection_get (tci, thread_index);
942   if (tc)
943     s = format (s, "%U", format_tcp_connection, tc, verbose);
944   else
945     s = format (s, "empty\n");
946   return s;
947 }
948
949 static u8 *
950 format_tcp_listener_session (u8 * s, va_list * args)
951 {
952   u32 tci = va_arg (*args, u32);
953   u32 verbose = va_arg (*args, u32);
954   tcp_connection_t *tc = tcp_listener_get (tci);
955   s = format (s, "%-50U", format_tcp_connection_id, tc);
956   if (verbose)
957     s = format (s, "%-15U", format_tcp_state, tc->state);
958   return s;
959 }
960
961 static u8 *
962 format_tcp_half_open_session (u8 * s, va_list * args)
963 {
964   u32 tci = va_arg (*args, u32);
965   tcp_connection_t *tc = tcp_half_open_connection_get (tci);
966   return format (s, "%U", format_tcp_connection_id, tc);
967 }
968
969 u8 *
970 format_tcp_sacks (u8 * s, va_list * args)
971 {
972   tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
973   sack_block_t *sacks = tc->snd_sacks;
974   sack_block_t *block;
975   int i, len = 0;
976
977   len = vec_len (sacks);
978   for (i = 0; i < len - 1; i++)
979     {
980       block = &sacks[i];
981       s = format (s, " start %u end %u\n", block->start - tc->irs,
982                   block->end - tc->irs);
983     }
984   if (len)
985     {
986       block = &sacks[len - 1];
987       s = format (s, " start %u end %u", block->start - tc->irs,
988                   block->end - tc->irs);
989     }
990   return s;
991 }
992
993 u8 *
994 format_tcp_rcv_sacks (u8 * s, va_list * args)
995 {
996   tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
997   sack_block_t *sacks = tc->rcv_opts.sacks;
998   sack_block_t *block;
999   int i, len = 0;
1000
1001   len = vec_len (sacks);
1002   for (i = 0; i < len - 1; i++)
1003     {
1004       block = &sacks[i];
1005       s = format (s, " start %u end %u\n", block->start - tc->iss,
1006                   block->end - tc->iss);
1007     }
1008   if (len)
1009     {
1010       block = &sacks[len - 1];
1011       s = format (s, " start %u end %u", block->start - tc->iss,
1012                   block->end - tc->iss);
1013     }
1014   return s;
1015 }
1016
1017 static u8 *
1018 format_tcp_sack_hole (u8 * s, va_list * args)
1019 {
1020   sack_scoreboard_hole_t *hole = va_arg (*args, sack_scoreboard_hole_t *);
1021   tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
1022   if (tc)
1023     s = format (s, "  [%u, %u]", hole->start - tc->iss, hole->end - tc->iss);
1024   else
1025     s = format (s, "  [%u, %u]", hole->start, hole->end);
1026   return s;
1027 }
1028
1029 u8 *
1030 format_tcp_scoreboard (u8 * s, va_list * args)
1031 {
1032   sack_scoreboard_t *sb = va_arg (*args, sack_scoreboard_t *);
1033   tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
1034   sack_scoreboard_hole_t *hole;
1035   u32 indent = format_get_indent (s);
1036
1037   s = format (s, "sacked_bytes %u last_sacked_bytes %u lost_bytes %u\n",
1038               sb->sacked_bytes, sb->last_sacked_bytes, sb->lost_bytes);
1039   s = format (s, "%Ulast_bytes_delivered %u high_sacked %u snd_una_adv %u\n",
1040               format_white_space, indent, sb->last_bytes_delivered,
1041               sb->high_sacked - tc->iss, sb->snd_una_adv);
1042   s = format (s, "%Ucur_rxt_hole %u high_rxt %u rescue_rxt %u",
1043               format_white_space, indent, sb->cur_rxt_hole,
1044               sb->high_rxt - tc->iss, sb->rescue_rxt - tc->iss);
1045
1046   hole = scoreboard_first_hole (sb);
1047   if (hole)
1048     s = format (s, "\n%Uhead %u tail %u %u holes:\n%U", format_white_space,
1049                 indent, sb->head, sb->tail, pool_elts (sb->holes),
1050                 format_white_space, indent);
1051
1052   while (hole)
1053     {
1054       s = format (s, "%U", format_tcp_sack_hole, hole, tc);
1055       hole = scoreboard_next_hole (sb, hole);
1056     }
1057
1058   return s;
1059 }
1060
1061 static transport_connection_t *
1062 tcp_session_get_transport (u32 conn_index, u32 thread_index)
1063 {
1064   tcp_connection_t *tc = tcp_connection_get (conn_index, thread_index);
1065   return &tc->connection;
1066 }
1067
1068 static transport_connection_t *
1069 tcp_half_open_session_get_transport (u32 conn_index)
1070 {
1071   tcp_connection_t *tc = tcp_half_open_connection_get (conn_index);
1072   return &tc->connection;
1073 }
1074
1075 /**
1076  * Compute maximum segment size for session layer.
1077  *
1078  * Since the result needs to be the actual data length, it first computes
1079  * the tcp options to be used in the next burst and subtracts their
1080  * length from the connection's snd_mss.
1081  */
1082 static u16
1083 tcp_session_send_mss (transport_connection_t * trans_conn)
1084 {
1085   tcp_connection_t *tc = (tcp_connection_t *) trans_conn;
1086
1087   /* Ensure snd_mss does accurately reflect the amount of data we can push
1088    * in a segment. This also makes sure that options are updated according to
1089    * the current state of the connection. */
1090   tcp_update_burst_snd_vars (tc);
1091
1092   return tc->snd_mss;
1093 }
1094
1095 always_inline u32
1096 tcp_round_snd_space (tcp_connection_t * tc, u32 snd_space)
1097 {
1098   if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss))
1099     {
1100       return tc->snd_wnd <= snd_space ? tc->snd_wnd : 0;
1101     }
1102
1103   /* If not snd_wnd constrained and we can't write at least a segment,
1104    * don't try at all */
1105   if (PREDICT_FALSE (snd_space < tc->snd_mss))
1106     return snd_space < tc->cwnd ? 0 : snd_space;
1107
1108   /* round down to mss multiple */
1109   return snd_space - (snd_space % tc->snd_mss);
1110 }
1111
1112 /**
1113  * Compute tx window session is allowed to fill.
1114  *
1115  * Takes into account available send space, snd_mss and the congestion
1116  * state of the connection. If possible, the value returned is a multiple
1117  * of snd_mss.
1118  *
1119  * @param tc tcp connection
1120  * @return number of bytes session is allowed to write
1121  */
1122 static inline u32
1123 tcp_snd_space_inline (tcp_connection_t * tc)
1124 {
1125   int snd_space, snt_limited;
1126
1127   if (PREDICT_FALSE (tcp_in_fastrecovery (tc)
1128                      || tc->state == TCP_STATE_CLOSED))
1129     return 0;
1130
1131   snd_space = tcp_available_output_snd_space (tc);
1132
1133   /* If we haven't gotten dupacks or if we did and have gotten sacked
1134    * bytes then we can still send as per Limited Transmit (RFC3042) */
1135   if (PREDICT_FALSE (tc->rcv_dupacks != 0
1136                      && (tcp_opts_sack_permitted (tc)
1137                          && tc->sack_sb.last_sacked_bytes == 0)))
1138     {
1139       if (tc->rcv_dupacks == 1 && tc->limited_transmit != tc->snd_nxt)
1140         tc->limited_transmit = tc->snd_nxt;
1141       ASSERT (seq_leq (tc->limited_transmit, tc->snd_nxt));
1142
1143       snt_limited = tc->snd_nxt - tc->limited_transmit;
1144       snd_space = clib_max (2 * tc->snd_mss - snt_limited, 0);
1145     }
1146   return tcp_round_snd_space (tc, snd_space);
1147 }
1148
1149 u32
1150 tcp_snd_space (tcp_connection_t * tc)
1151 {
1152   return tcp_snd_space_inline (tc);
1153 }
1154
1155 static u32
1156 tcp_session_send_space (transport_connection_t * trans_conn)
1157 {
1158   tcp_connection_t *tc = (tcp_connection_t *) trans_conn;
1159   return clib_min (tcp_snd_space_inline (tc),
1160                    tc->snd_wnd - (tc->snd_nxt - tc->snd_una));
1161 }
1162
1163 static u32
1164 tcp_session_tx_fifo_offset (transport_connection_t * trans_conn)
1165 {
1166   tcp_connection_t *tc = (tcp_connection_t *) trans_conn;
1167
1168   ASSERT (seq_geq (tc->snd_nxt, tc->snd_una));
1169
1170   /* This still works if fast retransmit is on */
1171   return (tc->snd_nxt - tc->snd_una);
1172 }
1173
1174 static void
1175 tcp_update_time (f64 now, u8 thread_index)
1176 {
1177   tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
1178
1179   tcp_set_time_now (wrk);
1180   tw_timer_expire_timers_16t_2w_512sl (&wrk->timer_wheel, now);
1181   tcp_do_fastretransmits (wrk);
1182   tcp_send_acks (wrk);
1183   tcp_flush_frames_to_output (wrk);
1184 }
1185
1186 static void
1187 tcp_session_flush_data (transport_connection_t * tconn)
1188 {
1189   tcp_connection_t *tc = (tcp_connection_t *) tconn;
1190   if (tc->flags & TCP_CONN_PSH_PENDING)
1191     return;
1192   tc->flags |= TCP_CONN_PSH_PENDING;
1193   tc->psh_seq = tc->snd_una + transport_max_tx_dequeue (tconn) - 1;
1194 }
1195
1196 /* *INDENT-OFF* */
1197 const static transport_proto_vft_t tcp_proto = {
1198   .enable = vnet_tcp_enable_disable,
1199   .start_listen = tcp_session_bind,
1200   .stop_listen = tcp_session_unbind,
1201   .push_header = tcp_session_push_header,
1202   .get_connection = tcp_session_get_transport,
1203   .get_listener = tcp_session_get_listener,
1204   .get_half_open = tcp_half_open_session_get_transport,
1205   .connect = tcp_session_open,
1206   .close = tcp_session_close,
1207   .cleanup = tcp_session_cleanup,
1208   .send_mss = tcp_session_send_mss,
1209   .send_space = tcp_session_send_space,
1210   .update_time = tcp_update_time,
1211   .tx_fifo_offset = tcp_session_tx_fifo_offset,
1212   .flush_data = tcp_session_flush_data,
1213   .format_connection = format_tcp_session,
1214   .format_listener = format_tcp_listener_session,
1215   .format_half_open = format_tcp_half_open_session,
1216   .tx_type = TRANSPORT_TX_PEEK,
1217   .service_type = TRANSPORT_SERVICE_VC,
1218 };
1219 /* *INDENT-ON* */
1220
1221 void
1222 tcp_connection_tx_pacer_update (tcp_connection_t * tc)
1223 {
1224   f64 srtt;
1225   u64 rate;
1226
1227   if (!transport_connection_is_tx_paced (&tc->connection))
1228     return;
1229
1230   srtt = clib_min ((f64) tc->srtt * TCP_TICK, tc->mrtt_us);
1231   /* TODO should constrain to interface's max throughput but
1232    * we don't have link speeds for sw ifs ..*/
1233   rate = tc->cwnd / srtt;
1234   transport_connection_tx_pacer_update (&tc->connection, rate);
1235 }
1236
1237 void
1238 tcp_connection_tx_pacer_reset (tcp_connection_t * tc, u32 window,
1239                                u32 start_bucket)
1240 {
1241   tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
1242   u32 byte_rate = window / ((f64) TCP_TICK * tc->srtt);
1243   u64 last_time = wrk->vm->clib_time.last_cpu_time;
1244   transport_connection_tx_pacer_reset (&tc->connection, byte_rate,
1245                                        start_bucket, last_time);
1246 }
1247
1248 static void
1249 tcp_timer_keep_handler (u32 conn_index)
1250 {
1251   u32 thread_index = vlib_get_thread_index ();
1252   tcp_connection_t *tc;
1253
1254   tc = tcp_connection_get (conn_index, thread_index);
1255   tc->timers[TCP_TIMER_KEEP] = TCP_TIMER_HANDLE_INVALID;
1256
1257   tcp_connection_close (tc);
1258 }
1259
1260 static void
1261 tcp_timer_establish_handler (u32 conn_index)
1262 {
1263   tcp_connection_t *tc;
1264
1265   tc = tcp_connection_get (conn_index, vlib_get_thread_index ());
1266   /* note: the connection may have already disappeared */
1267   if (PREDICT_FALSE (tc == 0))
1268     return;
1269   ASSERT (tc->state == TCP_STATE_SYN_RCVD);
1270   tc->timers[TCP_TIMER_ESTABLISH] = TCP_TIMER_HANDLE_INVALID;
1271   tcp_connection_set_state (tc, TCP_STATE_CLOSED);
1272   tcp_connection_timers_reset (tc);
1273   /* Start cleanup. Do NOT delete the session until we do the connection
1274    * cleanup. Otherwise, we end up with a dangling session index in the
1275    * tcp connection. */
1276   tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, TCP_CLEANUP_TIME);
1277 }
1278
1279 static void
1280 tcp_timer_establish_ao_handler (u32 conn_index)
1281 {
1282   tcp_connection_t *tc;
1283
1284   tc = tcp_half_open_connection_get (conn_index);
1285   if (!tc)
1286     return;
1287
1288   ASSERT (tc->state == TCP_STATE_SYN_SENT);
1289   /* Notify app if we haven't tried to clean this up already */
1290   if (!(tc->flags & TCP_CONN_HALF_OPEN_DONE))
1291     session_stream_connect_notify (&tc->connection, 1 /* fail */ );
1292
1293   tc->timers[TCP_TIMER_ESTABLISH_AO] = TCP_TIMER_HANDLE_INVALID;
1294   tcp_connection_cleanup (tc);
1295 }
1296
1297 static void
1298 tcp_timer_waitclose_handler (u32 conn_index)
1299 {
1300   u32 thread_index = vlib_get_thread_index ();
1301   tcp_connection_t *tc;
1302
1303   tc = tcp_connection_get (conn_index, thread_index);
1304   if (!tc)
1305     return;
1306   tc->timers[TCP_TIMER_WAITCLOSE] = TCP_TIMER_HANDLE_INVALID;
1307
1308   switch (tc->state)
1309     {
1310     case TCP_STATE_CLOSE_WAIT:
1311       tcp_connection_timers_reset (tc);
1312       session_transport_closed_notify (&tc->connection);
1313
1314       if (!(tc->flags & TCP_CONN_FINPNDG))
1315         {
1316           tcp_connection_set_state (tc, TCP_STATE_CLOSED);
1317           tcp_timer_set (tc, TCP_TIMER_WAITCLOSE, TCP_CLEANUP_TIME);
1318           break;
1319         }
1320
1321       /* Session didn't come back with a close. Send FIN either way
1322        * and switch to LAST_ACK. */
1323       tcp_cong_recovery_off (tc);
1324       /* Make sure we don't try to send unsent data */
1325       tc->snd_nxt = tc->snd_una;
1326       tcp_send_fin (tc);
1327       tcp_connection_set_state (tc, TCP_STATE_LAST_ACK);
1328
1329       /* Make sure we don't wait in LAST ACK forever */
1330       tcp_timer_set (tc, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
1331
1332       /* Don't delete the connection yet */
1333       break;
1334     case TCP_STATE_FIN_WAIT_1:
1335       tcp_connection_timers_reset (tc);
1336       if (tc->flags & TCP_CONN_FINPNDG)
1337         {
1338           /* If FIN pending, we haven't sent everything, but we did try.
1339            * Notify session layer that transport is closed. */
1340           tcp_connection_set_state (tc, TCP_STATE_CLOSED);
1341           session_transport_closed_notify (&tc->connection);
1342           tcp_send_reset (tc);
1343           tcp_timer_set (tc, TCP_TIMER_WAITCLOSE, TCP_CLEANUP_TIME);
1344         }
1345       else
1346         {
1347           /* We've sent the fin but no progress. Close the connection and
1348            * to make sure everything is flushed, setup a cleanup timer */
1349           tcp_connection_set_state (tc, TCP_STATE_CLOSED);
1350           tcp_timer_set (tc, TCP_TIMER_WAITCLOSE, TCP_CLEANUP_TIME);
1351         }
1352       break;
1353     case TCP_STATE_LAST_ACK:
1354     case TCP_STATE_CLOSING:
1355       tcp_connection_timers_reset (tc);
1356       tcp_connection_set_state (tc, TCP_STATE_CLOSED);
1357       tcp_timer_set (tc, TCP_TIMER_WAITCLOSE, TCP_CLEANUP_TIME);
1358       session_transport_closed_notify (&tc->connection);
1359       break;
1360     default:
1361       tcp_connection_del (tc);
1362       break;
1363     }
1364 }
1365
1366 /* *INDENT-OFF* */
1367 static timer_expiration_handler *timer_expiration_handlers[TCP_N_TIMERS] =
1368 {
1369     tcp_timer_retransmit_handler,
1370     tcp_timer_delack_handler,
1371     tcp_timer_persist_handler,
1372     tcp_timer_keep_handler,
1373     tcp_timer_waitclose_handler,
1374     tcp_timer_retransmit_syn_handler,
1375     tcp_timer_establish_handler,
1376     tcp_timer_establish_ao_handler,
1377 };
1378 /* *INDENT-ON* */
1379
1380 static void
1381 tcp_expired_timers_dispatch (u32 * expired_timers)
1382 {
1383   int i;
1384   u32 connection_index, timer_id;
1385
1386   for (i = 0; i < vec_len (expired_timers); i++)
1387     {
1388       /* Get session index and timer id */
1389       connection_index = expired_timers[i] & 0x0FFFFFFF;
1390       timer_id = expired_timers[i] >> 28;
1391
1392       TCP_EVT_DBG (TCP_EVT_TIMER_POP, connection_index, timer_id);
1393
1394       /* Handle expiration */
1395       (*timer_expiration_handlers[timer_id]) (connection_index);
1396     }
1397 }
1398
1399 static void
1400 tcp_initialize_timer_wheels (tcp_main_t * tm)
1401 {
1402   tw_timer_wheel_16t_2w_512sl_t *tw;
1403   /* *INDENT-OFF* */
1404   foreach_vlib_main (({
1405     tw = &tm->wrk_ctx[ii].timer_wheel;
1406     tw_timer_wheel_init_16t_2w_512sl (tw, tcp_expired_timers_dispatch,
1407                                       100e-3 /* timer period 100ms */ , ~0);
1408     tw->last_run_time = vlib_time_now (this_vlib_main);
1409   }));
1410   /* *INDENT-ON* */
1411 }
1412
1413 static void
1414 tcp_initialize_iss_seed (tcp_main_t * tm)
1415 {
1416   u32 default_seed = random_default_seed ();
1417   u64 time_now = clib_cpu_time_now ();
1418
1419   tm->iss_seed.first = (u64) random_u32 (&default_seed) << 32;
1420   tm->iss_seed.second = random_u64 (&time_now);
1421 }
1422
1423 static clib_error_t *
1424 tcp_main_enable (vlib_main_t * vm)
1425 {
1426   vlib_thread_main_t *vtm = vlib_get_thread_main ();
1427   u32 num_threads, n_workers, prealloc_conn_per_wrk;
1428   tcp_connection_t *tc __attribute__ ((unused));
1429   tcp_main_t *tm = vnet_get_tcp_main ();
1430   clib_error_t *error = 0;
1431   int thread;
1432
1433   if ((error = vlib_call_init_function (vm, ip_main_init)))
1434     return error;
1435   if ((error = vlib_call_init_function (vm, ip4_lookup_init)))
1436     return error;
1437   if ((error = vlib_call_init_function (vm, ip6_lookup_init)))
1438     return error;
1439
1440   /*
1441    * Registrations
1442    */
1443
1444   ip4_register_protocol (IP_PROTOCOL_TCP, tcp4_input_node.index);
1445   ip6_register_protocol (IP_PROTOCOL_TCP, tcp6_input_node.index);
1446
1447   /*
1448    * Initialize data structures
1449    */
1450
1451   num_threads = 1 /* main thread */  + vtm->n_threads;
1452   vec_validate (tm->connections, num_threads - 1);
1453   vec_validate (tm->wrk_ctx, num_threads - 1);
1454   n_workers = num_threads == 1 ? 1 : vtm->n_threads;
1455   prealloc_conn_per_wrk = tm->preallocated_connections / n_workers;
1456
1457   for (thread = 0; thread < num_threads; thread++)
1458     {
1459       vec_validate (tm->wrk_ctx[thread].pending_fast_rxt, 255);
1460       vec_validate (tm->wrk_ctx[thread].ongoing_fast_rxt, 255);
1461       vec_validate (tm->wrk_ctx[thread].postponed_fast_rxt, 255);
1462       vec_validate (tm->wrk_ctx[thread].pending_deq_acked, 255);
1463       vec_validate (tm->wrk_ctx[thread].pending_acks, 255);
1464       vec_validate (tm->wrk_ctx[thread].pending_disconnects, 255);
1465       vec_reset_length (tm->wrk_ctx[thread].pending_fast_rxt);
1466       vec_reset_length (tm->wrk_ctx[thread].ongoing_fast_rxt);
1467       vec_reset_length (tm->wrk_ctx[thread].postponed_fast_rxt);
1468       vec_reset_length (tm->wrk_ctx[thread].pending_deq_acked);
1469       vec_reset_length (tm->wrk_ctx[thread].pending_acks);
1470       vec_reset_length (tm->wrk_ctx[thread].pending_disconnects);
1471       tm->wrk_ctx[thread].vm = vlib_mains[thread];
1472
1473       /*
1474        * Preallocate connections. Assume that thread 0 won't
1475        * use preallocated threads when running multi-core
1476        */
1477       if ((thread > 0 || num_threads == 1) && prealloc_conn_per_wrk)
1478         pool_init_fixed (tm->connections[thread], prealloc_conn_per_wrk);
1479     }
1480
1481   /*
1482    * Use a preallocated half-open connection pool?
1483    */
1484   if (tm->preallocated_half_open_connections)
1485     pool_init_fixed (tm->half_open_connections,
1486                      tm->preallocated_half_open_connections);
1487
1488   /* Initialize clocks per tick for TCP timestamp. Used to compute
1489    * monotonically increasing timestamps. */
1490   tm->tstamp_ticks_per_clock = vm->clib_time.seconds_per_clock
1491     / TCP_TSTAMP_RESOLUTION;
1492
1493   if (num_threads > 1)
1494     {
1495       clib_spinlock_init (&tm->half_open_lock);
1496     }
1497
1498   tcp_initialize_timer_wheels (tm);
1499   tcp_initialize_iss_seed (tm);
1500
1501   tm->bytes_per_buffer = vlib_buffer_get_default_data_size (vm);
1502
1503   return error;
1504 }
1505
1506 clib_error_t *
1507 vnet_tcp_enable_disable (vlib_main_t * vm, u8 is_en)
1508 {
1509   if (is_en)
1510     {
1511       if (tcp_main.is_enabled)
1512         return 0;
1513
1514       return tcp_main_enable (vm);
1515     }
1516   else
1517     {
1518       tcp_main.is_enabled = 0;
1519     }
1520
1521   return 0;
1522 }
1523
1524 void
1525 tcp_punt_unknown (vlib_main_t * vm, u8 is_ip4, u8 is_add)
1526 {
1527   tcp_main_t *tm = &tcp_main;
1528   if (is_ip4)
1529     tm->punt_unknown4 = is_add;
1530   else
1531     tm->punt_unknown6 = is_add;
1532 }
1533
1534 static clib_error_t *
1535 tcp_init (vlib_main_t * vm)
1536 {
1537   tcp_main_t *tm = vnet_get_tcp_main ();
1538   ip_main_t *im = &ip_main;
1539   ip_protocol_info_t *pi;
1540
1541   /* Session layer, and by implication tcp, are disabled by default */
1542   tm->is_enabled = 0;
1543
1544   /* Register with IP for header parsing */
1545   pi = ip_get_protocol_info (im, IP_PROTOCOL_TCP);
1546   if (pi == 0)
1547     return clib_error_return (0, "TCP protocol info AWOL");
1548   pi->format_header = format_tcp_header;
1549   pi->unformat_pg_edit = unformat_pg_tcp_header;
1550
1551   /* Register as transport with session layer */
1552   transport_register_protocol (TRANSPORT_PROTO_TCP, &tcp_proto,
1553                                FIB_PROTOCOL_IP4, tcp4_output_node.index);
1554   transport_register_protocol (TRANSPORT_PROTO_TCP, &tcp_proto,
1555                                FIB_PROTOCOL_IP6, tcp6_output_node.index);
1556
1557   tcp_api_reference ();
1558   tm->cc_algo_by_name = hash_create_string (0, sizeof (uword));
1559   tm->tx_pacing = 1;
1560   tm->cc_algo = TCP_CC_NEWRENO;
1561   tm->default_mtu = 1460;
1562   return 0;
1563 }
1564
1565 VLIB_INIT_FUNCTION (tcp_init);
1566
1567 uword
1568 unformat_tcp_cc_algo (unformat_input_t * input, va_list * va)
1569 {
1570   uword *result = va_arg (*va, uword *);
1571   tcp_main_t *tm = &tcp_main;
1572   char *cc_algo_name;
1573   u8 found = 0;
1574   uword *p;
1575
1576   if (unformat (input, "%s", &cc_algo_name)
1577       && ((p = hash_get_mem (tm->cc_algo_by_name, cc_algo_name))))
1578     {
1579       *result = *p;
1580       found = 1;
1581     }
1582
1583   vec_free (cc_algo_name);
1584   return found;
1585 }
1586
1587 uword
1588 unformat_tcp_cc_algo_cfg (unformat_input_t * input, va_list * va)
1589 {
1590   tcp_main_t *tm = vnet_get_tcp_main ();
1591   tcp_cc_algorithm_t *cc_alg;
1592   unformat_input_t sub_input;
1593   int found = 0;
1594
1595   vec_foreach (cc_alg, tm->cc_algos)
1596   {
1597     if (!unformat (input, cc_alg->name))
1598       continue;
1599
1600     if (cc_alg->unformat_cfg
1601         && unformat (input, "%U", unformat_vlib_cli_sub_input, &sub_input))
1602       {
1603         if (cc_alg->unformat_cfg (&sub_input))
1604           found = 1;
1605       }
1606   }
1607   return found;
1608 }
1609
1610 static clib_error_t *
1611 tcp_config_fn (vlib_main_t * vm, unformat_input_t * input)
1612 {
1613   tcp_main_t *tm = vnet_get_tcp_main ();
1614
1615   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1616     {
1617       if (unformat (input, "preallocated-connections %d",
1618                     &tm->preallocated_connections))
1619         ;
1620       else if (unformat (input, "preallocated-half-open-connections %d",
1621                          &tm->preallocated_half_open_connections))
1622         ;
1623       else if (unformat (input, "buffer-fail-fraction %f",
1624                          &tm->buffer_fail_fraction))
1625         ;
1626       else if (unformat (input, "max-rx-fifo %U", unformat_memory_size,
1627                          &tm->max_rx_fifo))
1628         ;
1629       else if (unformat (input, "mtu %d", &tm->default_mtu))
1630         ;
1631       else if (unformat (input, "no-tx-pacing"))
1632         tm->tx_pacing = 0;
1633       else if (unformat (input, "cc-algo %U", unformat_tcp_cc_algo,
1634                          &tm->cc_algo))
1635         ;
1636       else if (unformat (input, "%U", unformat_tcp_cc_algo_cfg))
1637         ;
1638       else
1639         return clib_error_return (0, "unknown input `%U'",
1640                                   format_unformat_error, input);
1641     }
1642   return 0;
1643 }
1644
1645 VLIB_CONFIG_FUNCTION (tcp_config_fn, "tcp");
1646
1647
1648 /**
1649  * \brief Configure an ipv4 source address range
1650  * @param vm vlib_main_t pointer
1651  * @param start first ipv4 address in the source address range
1652  * @param end last ipv4 address in the source address range
1653  * @param table_id VRF / table ID, 0 for the default FIB
1654  * @return 0 if all OK, else an error indication from api_errno.h
1655  */
1656
1657 int
1658 tcp_configure_v4_source_address_range (vlib_main_t * vm,
1659                                        ip4_address_t * start,
1660                                        ip4_address_t * end, u32 table_id)
1661 {
1662   tcp_main_t *tm = vnet_get_tcp_main ();
1663   vnet_main_t *vnm = vnet_get_main ();
1664   u32 start_host_byte_order, end_host_byte_order;
1665   fib_prefix_t prefix;
1666   fib_node_index_t fei;
1667   u32 fib_index = 0;
1668   u32 sw_if_index;
1669   int rv;
1670
1671   clib_memset (&prefix, 0, sizeof (prefix));
1672
1673   fib_index = fib_table_find (FIB_PROTOCOL_IP4, table_id);
1674
1675   if (fib_index == ~0)
1676     return VNET_API_ERROR_NO_SUCH_FIB;
1677
1678   start_host_byte_order = clib_net_to_host_u32 (start->as_u32);
1679   end_host_byte_order = clib_net_to_host_u32 (end->as_u32);
1680
1681   /* sanity check for reversed args or some such */
1682   if ((end_host_byte_order - start_host_byte_order) > (10 << 10))
1683     return VNET_API_ERROR_INVALID_ARGUMENT;
1684
1685   /* Lookup the last address, to identify the interface involved */
1686   prefix.fp_len = 32;
1687   prefix.fp_proto = FIB_PROTOCOL_IP4;
1688   memcpy (&prefix.fp_addr.ip4, end, sizeof (ip4_address_t));
1689
1690   fei = fib_table_lookup (fib_index, &prefix);
1691
1692   /* Couldn't find route to destination. Bail out. */
1693   if (fei == FIB_NODE_INDEX_INVALID)
1694     return VNET_API_ERROR_NEXT_HOP_NOT_IN_FIB;
1695
1696   sw_if_index = fib_entry_get_resolving_interface (fei);
1697
1698   /* Configure proxy arp across the range */
1699   rv = vnet_proxy_arp_add_del (start, end, fib_index, 0 /* is_del */ );
1700
1701   if (rv)
1702     return rv;
1703
1704   rv = vnet_proxy_arp_enable_disable (vnm, sw_if_index, 1);
1705
1706   if (rv)
1707     return rv;
1708
1709   do
1710     {
1711       dpo_id_t dpo = DPO_INVALID;
1712
1713       vec_add1 (tm->ip4_src_addresses, start[0]);
1714
1715       /* Add local adjacencies for the range */
1716
1717       receive_dpo_add_or_lock (DPO_PROTO_IP4, ~0 /* sw_if_index */ ,
1718                                NULL, &dpo);
1719       prefix.fp_len = 32;
1720       prefix.fp_proto = FIB_PROTOCOL_IP4;
1721       prefix.fp_addr.ip4.as_u32 = start->as_u32;
1722
1723       fib_table_entry_special_dpo_update (fib_index,
1724                                           &prefix,
1725                                           FIB_SOURCE_API,
1726                                           FIB_ENTRY_FLAG_EXCLUSIVE, &dpo);
1727       dpo_reset (&dpo);
1728
1729       start_host_byte_order++;
1730       start->as_u32 = clib_host_to_net_u32 (start_host_byte_order);
1731     }
1732   while (start_host_byte_order <= end_host_byte_order);
1733
1734   return 0;
1735 }
1736
1737 /**
1738  * \brief Configure an ipv6 source address range
1739  * @param vm vlib_main_t pointer
1740  * @param start first ipv6 address in the source address range
1741  * @param end last ipv6 address in the source address range
1742  * @param table_id VRF / table ID, 0 for the default FIB
1743  * @return 0 if all OK, else an error indication from api_errno.h
1744  */
1745
1746 int
1747 tcp_configure_v6_source_address_range (vlib_main_t * vm,
1748                                        ip6_address_t * start,
1749                                        ip6_address_t * end, u32 table_id)
1750 {
1751   tcp_main_t *tm = vnet_get_tcp_main ();
1752   fib_prefix_t prefix;
1753   u32 fib_index = 0;
1754   fib_node_index_t fei;
1755   u32 sw_if_index;
1756
1757   clib_memset (&prefix, 0, sizeof (prefix));
1758
1759   fib_index = fib_table_find (FIB_PROTOCOL_IP6, table_id);
1760
1761   if (fib_index == ~0)
1762     return VNET_API_ERROR_NO_SUCH_FIB;
1763
1764   while (1)
1765     {
1766       int i;
1767       ip6_address_t tmp;
1768       dpo_id_t dpo = DPO_INVALID;
1769
1770       /* Remember this address */
1771       vec_add1 (tm->ip6_src_addresses, start[0]);
1772
1773       /* Lookup the prefix, to identify the interface involved */
1774       prefix.fp_len = 128;
1775       prefix.fp_proto = FIB_PROTOCOL_IP6;
1776       memcpy (&prefix.fp_addr.ip6, start, sizeof (ip6_address_t));
1777
1778       fei = fib_table_lookup (fib_index, &prefix);
1779
1780       /* Couldn't find route to destination. Bail out. */
1781       if (fei == FIB_NODE_INDEX_INVALID)
1782         return VNET_API_ERROR_NEXT_HOP_NOT_IN_FIB;
1783
1784       sw_if_index = fib_entry_get_resolving_interface (fei);
1785
1786       if (sw_if_index == (u32) ~ 0)
1787         return VNET_API_ERROR_NO_MATCHING_INTERFACE;
1788
1789       /* Add a proxy neighbor discovery entry for this address */
1790       ip6_neighbor_proxy_add_del (sw_if_index, start, 0 /* is_del */ );
1791
1792       /* Add a receive adjacency for this address */
1793       receive_dpo_add_or_lock (DPO_PROTO_IP6, ~0 /* sw_if_index */ ,
1794                                NULL, &dpo);
1795
1796       fib_table_entry_special_dpo_update (fib_index,
1797                                           &prefix,
1798                                           FIB_SOURCE_API,
1799                                           FIB_ENTRY_FLAG_EXCLUSIVE, &dpo);
1800       dpo_reset (&dpo);
1801
1802       /* Done with the entire range? */
1803       if (!memcmp (start, end, sizeof (start[0])))
1804         break;
1805
1806       /* Increment the address. DGMS. */
1807       tmp = start[0];
1808       for (i = 15; i >= 0; i--)
1809         {
1810           tmp.as_u8[i] += 1;
1811           if (tmp.as_u8[i] != 0)
1812             break;
1813         }
1814       start[0] = tmp;
1815     }
1816   return 0;
1817 }
1818
1819 static clib_error_t *
1820 tcp_src_address (vlib_main_t * vm,
1821                  unformat_input_t * input, vlib_cli_command_t * cmd_arg)
1822 {
1823   ip4_address_t v4start, v4end;
1824   ip6_address_t v6start, v6end;
1825   u32 table_id = 0;
1826   int v4set = 0;
1827   int v6set = 0;
1828   int rv;
1829
1830   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1831     {
1832       if (unformat (input, "%U - %U", unformat_ip4_address, &v4start,
1833                     unformat_ip4_address, &v4end))
1834         v4set = 1;
1835       else if (unformat (input, "%U", unformat_ip4_address, &v4start))
1836         {
1837           memcpy (&v4end, &v4start, sizeof (v4start));
1838           v4set = 1;
1839         }
1840       else if (unformat (input, "%U - %U", unformat_ip6_address, &v6start,
1841                          unformat_ip6_address, &v6end))
1842         v6set = 1;
1843       else if (unformat (input, "%U", unformat_ip6_address, &v6start))
1844         {
1845           memcpy (&v6end, &v6start, sizeof (v6start));
1846           v6set = 1;
1847         }
1848       else if (unformat (input, "fib-table %d", &table_id))
1849         ;
1850       else
1851         break;
1852     }
1853
1854   if (!v4set && !v6set)
1855     return clib_error_return (0, "at least one v4 or v6 address required");
1856
1857   if (v4set)
1858     {
1859       rv = tcp_configure_v4_source_address_range (vm, &v4start, &v4end,
1860                                                   table_id);
1861       switch (rv)
1862         {
1863         case 0:
1864           break;
1865
1866         case VNET_API_ERROR_NO_SUCH_FIB:
1867           return clib_error_return (0, "Invalid table-id %d", table_id);
1868
1869         case VNET_API_ERROR_INVALID_ARGUMENT:
1870           return clib_error_return (0, "Invalid address range %U - %U",
1871                                     format_ip4_address, &v4start,
1872                                     format_ip4_address, &v4end);
1873         default:
1874           return clib_error_return (0, "error %d", rv);
1875           break;
1876         }
1877     }
1878   if (v6set)
1879     {
1880       rv = tcp_configure_v6_source_address_range (vm, &v6start, &v6end,
1881                                                   table_id);
1882       switch (rv)
1883         {
1884         case 0:
1885           break;
1886
1887         case VNET_API_ERROR_NO_SUCH_FIB:
1888           return clib_error_return (0, "Invalid table-id %d", table_id);
1889
1890         default:
1891           return clib_error_return (0, "error %d", rv);
1892           break;
1893         }
1894     }
1895   return 0;
1896 }
1897
1898 /* *INDENT-OFF* */
1899 VLIB_CLI_COMMAND (tcp_src_address_command, static) =
1900 {
1901   .path = "tcp src-address",
1902   .short_help = "tcp src-address <ip-addr> [- <ip-addr>] add src address range",
1903   .function = tcp_src_address,
1904 };
1905 /* *INDENT-ON* */
1906
1907 static u8 *
1908 tcp_scoreboard_dump_trace (u8 * s, sack_scoreboard_t * sb)
1909 {
1910 #if TCP_SCOREBOARD_TRACE
1911
1912   scoreboard_trace_elt_t *block;
1913   int i = 0;
1914
1915   if (!sb->trace)
1916     return s;
1917
1918   s = format (s, "scoreboard trace:");
1919   vec_foreach (block, sb->trace)
1920   {
1921     s = format (s, "{%u, %u, %u, %u, %u}, ", block->start, block->end,
1922                 block->ack, block->snd_una_max, block->group);
1923     if ((++i % 3) == 0)
1924       s = format (s, "\n");
1925   }
1926   return s;
1927 #else
1928   return 0;
1929 #endif
1930 }
1931
1932 static clib_error_t *
1933 tcp_show_scoreboard_trace_fn (vlib_main_t * vm, unformat_input_t * input,
1934                               vlib_cli_command_t * cmd_arg)
1935 {
1936   transport_connection_t *tconn = 0;
1937   tcp_connection_t *tc;
1938   u8 *s = 0;
1939   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1940     {
1941       if (unformat (input, "%U", unformat_transport_connection, &tconn,
1942                     TRANSPORT_PROTO_TCP))
1943         ;
1944       else
1945         return clib_error_return (0, "unknown input `%U'",
1946                                   format_unformat_error, input);
1947     }
1948
1949   if (!TCP_SCOREBOARD_TRACE)
1950     {
1951       vlib_cli_output (vm, "scoreboard tracing not enabled");
1952       return 0;
1953     }
1954
1955   tc = tcp_get_connection_from_transport (tconn);
1956   s = tcp_scoreboard_dump_trace (s, &tc->sack_sb);
1957   vlib_cli_output (vm, "%v", s);
1958   return 0;
1959 }
1960
1961 /* *INDENT-OFF* */
1962 VLIB_CLI_COMMAND (tcp_show_scoreboard_trace_command, static) =
1963 {
1964   .path = "show tcp scoreboard trace",
1965   .short_help = "show tcp scoreboard trace <connection>",
1966   .function = tcp_show_scoreboard_trace_fn,
1967 };
1968 /* *INDENT-ON* */
1969
1970 u8 *
1971 tcp_scoreboard_replay (u8 * s, tcp_connection_t * tc, u8 verbose)
1972 {
1973   int i, trace_len;
1974   scoreboard_trace_elt_t *trace;
1975   u32 next_ack, left, group, has_new_ack = 0;
1976   tcp_connection_t _dummy_tc, *dummy_tc = &_dummy_tc;
1977   sack_block_t *block;
1978
1979   if (!TCP_SCOREBOARD_TRACE)
1980     {
1981       s = format (s, "scoreboard tracing not enabled");
1982       return s;
1983     }
1984
1985   if (!tc)
1986     return s;
1987
1988   clib_memset (dummy_tc, 0, sizeof (*dummy_tc));
1989   tcp_connection_timers_init (dummy_tc);
1990   scoreboard_init (&dummy_tc->sack_sb);
1991   dummy_tc->rcv_opts.flags |= TCP_OPTS_FLAG_SACK;
1992
1993 #if TCP_SCOREBOARD_TRACE
1994   trace = tc->sack_sb.trace;
1995   trace_len = vec_len (tc->sack_sb.trace);
1996 #endif
1997
1998   for (i = 0; i < trace_len; i++)
1999     {
2000       if (trace[i].ack != 0)
2001         {
2002           dummy_tc->snd_una = trace[i].ack - 1448;
2003           dummy_tc->snd_una_max = trace[i].ack;
2004         }
2005     }
2006
2007   left = 0;
2008   while (left < trace_len)
2009     {
2010       group = trace[left].group;
2011       vec_reset_length (dummy_tc->rcv_opts.sacks);
2012       has_new_ack = 0;
2013       while (trace[left].group == group)
2014         {
2015           if (trace[left].ack != 0)
2016             {
2017               if (verbose)
2018                 s = format (s, "Adding ack %u, snd_una_max %u, segs: ",
2019                             trace[left].ack, trace[left].snd_una_max);
2020               dummy_tc->snd_una_max = trace[left].snd_una_max;
2021               next_ack = trace[left].ack;
2022               has_new_ack = 1;
2023             }
2024           else
2025             {
2026               if (verbose)
2027                 s = format (s, "[%u, %u], ", trace[left].start,
2028                             trace[left].end);
2029               vec_add2 (dummy_tc->rcv_opts.sacks, block, 1);
2030               block->start = trace[left].start;
2031               block->end = trace[left].end;
2032             }
2033           left++;
2034         }
2035
2036       /* Push segments */
2037       tcp_rcv_sacks (dummy_tc, next_ack);
2038       if (has_new_ack)
2039         dummy_tc->snd_una = next_ack + dummy_tc->sack_sb.snd_una_adv;
2040
2041       if (verbose)
2042         s = format (s, "result: %U", format_tcp_scoreboard,
2043                     &dummy_tc->sack_sb);
2044
2045     }
2046   s = format (s, "result: %U", format_tcp_scoreboard, &dummy_tc->sack_sb);
2047
2048   return s;
2049 }
2050
2051 static clib_error_t *
2052 tcp_scoreboard_trace_fn (vlib_main_t * vm, unformat_input_t * input,
2053                          vlib_cli_command_t * cmd_arg)
2054 {
2055   transport_connection_t *tconn = 0;
2056   tcp_connection_t *tc = 0;
2057   u8 *str = 0;
2058   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2059     {
2060       if (unformat (input, "%U", unformat_transport_connection, &tconn,
2061                     TRANSPORT_PROTO_TCP))
2062         ;
2063       else
2064         return clib_error_return (0, "unknown input `%U'",
2065                                   format_unformat_error, input);
2066     }
2067
2068   if (!TCP_SCOREBOARD_TRACE)
2069     {
2070       vlib_cli_output (vm, "scoreboard tracing not enabled");
2071       return 0;
2072     }
2073
2074   tc = tcp_get_connection_from_transport (tconn);
2075   if (!tc)
2076     {
2077       vlib_cli_output (vm, "connection not found");
2078       return 0;
2079     }
2080   str = tcp_scoreboard_replay (str, tc, 1);
2081   vlib_cli_output (vm, "%v", str);
2082   return 0;
2083 }
2084
2085 /* *INDENT-OFF* */
2086 VLIB_CLI_COMMAND (tcp_replay_scoreboard_command, static) =
2087 {
2088   .path = "tcp replay scoreboard",
2089   .short_help = "tcp replay scoreboard <connection>",
2090   .function = tcp_scoreboard_trace_fn,
2091 };
2092 /* *INDENT-ON* */
2093
2094 static clib_error_t *
2095 show_tcp_punt_fn (vlib_main_t * vm, unformat_input_t * input,
2096                   vlib_cli_command_t * cmd_arg)
2097 {
2098   tcp_main_t *tm = vnet_get_tcp_main ();
2099   if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2100     return clib_error_return (0, "unknown input `%U'", format_unformat_error,
2101                               input);
2102   vlib_cli_output (vm, "IPv4 TCP punt: %s",
2103                    tm->punt_unknown4 ? "enabled" : "disabled");
2104   vlib_cli_output (vm, "IPv6 TCP punt: %s",
2105                    tm->punt_unknown6 ? "enabled" : "disabled");
2106   return 0;
2107 }
2108 /* *INDENT-OFF* */
2109 VLIB_CLI_COMMAND (show_tcp_punt_command, static) =
2110 {
2111   .path = "show tcp punt",
2112   .short_help = "show tcp punt",
2113   .function = show_tcp_punt_fn,
2114 };
2115 /* *INDENT-ON* */
2116
2117 /*
2118  * fd.io coding-style-patch-verification: ON
2119  *
2120  * Local Variables:
2121  * eval: (c-set-style "gnu")
2122  * End:
2123  */