FD.io VPP  v17.07.01-10-g3be13f0
Vector Packet Processing
tcp.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016 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 #include <vnet/tcp/tcp.h>
17 #include <vnet/session/session.h>
18 #include <vnet/fib/fib.h>
19 #include <vnet/dpo/load_balance.h>
20 #include <math.h>
21 
23 
24 static u32
25 tcp_connection_bind (u32 session_index, ip46_address_t * ip,
26  u16 port_host_byte_order, u8 is_ip4)
27 {
28  tcp_main_t *tm = &tcp_main;
29  tcp_connection_t *listener;
30 
31  pool_get (tm->listener_pool, listener);
32  memset (listener, 0, sizeof (*listener));
33 
34  listener->c_c_index = listener - tm->listener_pool;
35  listener->c_lcl_port = clib_host_to_net_u16 (port_host_byte_order);
36 
37  if (is_ip4)
38  {
39  listener->c_lcl_ip4.as_u32 = ip->ip4.as_u32;
40  listener->c_is_ip4 = 1;
41  listener->c_proto = SESSION_TYPE_IP4_TCP;
42  }
43  else
44  {
45  clib_memcpy (&listener->c_lcl_ip6, &ip->ip6, sizeof (ip6_address_t));
46  listener->c_proto = SESSION_TYPE_IP6_TCP;
47  }
48 
49  listener->c_s_index = session_index;
50  listener->state = TCP_STATE_LISTEN;
51 
52  tcp_connection_timers_init (listener);
53 
54  TCP_EVT_DBG (TCP_EVT_BIND, listener);
55 
56  return listener->c_c_index;
57 }
58 
59 u32
60 tcp_session_bind_ip4 (u32 session_index, ip46_address_t * ip,
61  u16 port_host_byte_order)
62 {
63  return tcp_connection_bind (session_index, ip, port_host_byte_order, 1);
64 }
65 
66 u32
67 tcp_session_bind_ip6 (u32 session_index, ip46_address_t * ip,
68  u16 port_host_byte_order)
69 {
70  return tcp_connection_bind (session_index, ip, port_host_byte_order, 0);
71 }
72 
73 static void
74 tcp_connection_unbind (u32 listener_index)
75 {
77  TCP_EVT_DBG (TCP_EVT_UNBIND,
78  pool_elt_at_index (tm->listener_pool, listener_index));
79  pool_put_index (tm->listener_pool, listener_index);
80 }
81 
82 u32
83 tcp_session_unbind (u32 listener_index)
84 {
85  tcp_connection_unbind (listener_index);
86  return 0;
87 }
88 
90 tcp_session_get_listener (u32 listener_index)
91 {
93  tcp_connection_t *tc;
94  tc = pool_elt_at_index (tm->listener_pool, listener_index);
95  return &tc->connection;
96 }
97 
98 /**
99  * Cleans up connection state.
100  *
101  * No notifications.
102  */
103 void
105 {
106  tcp_main_t *tm = &tcp_main;
107  u32 tepi;
109 
110  /* Cleanup local endpoint if this was an active connect */
111  tepi = transport_endpoint_lookup (&tm->local_endpoints_table, &tc->c_lcl_ip,
112  tc->c_lcl_port);
113 
114  /*XXX lock */
116  {
117  tep = pool_elt_at_index (tm->local_endpoints, tepi);
118  transport_endpoint_table_del (&tm->local_endpoints_table, tep);
119  pool_put (tm->local_endpoints, tep);
120  }
121 
122  /* Make sure all timers are cleared */
124 
125  /* Check if half-open */
126  if (tc->state == TCP_STATE_SYN_SENT)
127  pool_put (tm->half_open_connections, tc);
128  else
129  pool_put (tm->connections[tc->c_thread_index], tc);
130 }
131 
132 /**
133  * Connection removal.
134  *
135  * This should be called only once connection enters CLOSED state. Note
136  * that it notifies the session of the removal event, so if the goal is to
137  * just remove the connection, call tcp_connection_cleanup instead.
138  */
139 void
141 {
142  TCP_EVT_DBG (TCP_EVT_DELETE, tc);
143  stream_session_delete_notify (&tc->connection);
145 }
146 
147 /** Notify session that connection has been reset.
148  *
149  * Switch state to closed and wait for session to call cleanup.
150  */
151 void
153 {
154  switch (tc->state)
155  {
156  case TCP_STATE_SYN_RCVD:
157  /* Cleanup everything. App wasn't notified yet */
158  stream_session_delete_notify (&tc->connection);
160  break;
161  case TCP_STATE_SYN_SENT:
162  case TCP_STATE_ESTABLISHED:
163  case TCP_STATE_CLOSE_WAIT:
164  case TCP_STATE_FIN_WAIT_1:
165  case TCP_STATE_FIN_WAIT_2:
166  case TCP_STATE_CLOSING:
167  tc->state = TCP_STATE_CLOSED;
168 
169  /* Make sure all timers are cleared */
171 
172  stream_session_reset_notify (&tc->connection);
173  break;
174  case TCP_STATE_CLOSED:
175  return;
176  }
177 
178 }
179 
180 /**
181  * Begin connection closing procedure.
182  *
183  * If at the end the connection is not in CLOSED state, it is not removed.
184  * Instead, we rely on on TCP to advance through state machine to either
185  * 1) LAST_ACK (passive close) whereby when the last ACK is received
186  * tcp_connection_del is called. This notifies session of the delete and
187  * calls cleanup.
188  * 2) TIME_WAIT (active close) whereby after 2MSL the 2MSL timer triggers
189  * and cleanup is called.
190  *
191  * N.B. Half-close connections are not supported
192  */
193 void
195 {
196  TCP_EVT_DBG (TCP_EVT_CLOSE, tc);
197 
198  /* Send FIN if needed */
199  if (tc->state == TCP_STATE_ESTABLISHED
200  || tc->state == TCP_STATE_SYN_RCVD || tc->state == TCP_STATE_CLOSE_WAIT)
201  tcp_send_fin (tc);
202 
203  /* Switch state */
204  if (tc->state == TCP_STATE_ESTABLISHED || tc->state == TCP_STATE_SYN_RCVD)
205  tc->state = TCP_STATE_FIN_WAIT_1;
206  else if (tc->state == TCP_STATE_SYN_SENT)
207  tc->state = TCP_STATE_CLOSED;
208  else if (tc->state == TCP_STATE_CLOSE_WAIT)
209  tc->state = TCP_STATE_LAST_ACK;
210 
211  /* If in CLOSED and WAITCLOSE timer is not set, delete connection now */
212  if (tc->timers[TCP_TIMER_WAITCLOSE] == TCP_TIMER_HANDLE_INVALID
213  && tc->state == TCP_STATE_CLOSED)
214  tcp_connection_del (tc);
215 }
216 
217 void
218 tcp_session_close (u32 conn_index, u32 thread_index)
219 {
220  tcp_connection_t *tc;
221  tc = tcp_connection_get (conn_index, thread_index);
223 }
224 
225 void
226 tcp_session_cleanup (u32 conn_index, u32 thread_index)
227 {
228  tcp_connection_t *tc;
229  tc = tcp_connection_get (conn_index, thread_index);
230 
231  /* Wait for the session tx events to clear */
232  tc->state = TCP_STATE_CLOSED;
233  tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, TCP_CLEANUP_TIME);
234 }
235 
236 void *
237 ip_interface_get_first_ip (u32 sw_if_index, u8 is_ip4)
238 {
241  ip_interface_address_t *ia = 0;
242 
243  if (is_ip4)
244  {
245  /* *INDENT-OFF* */
246  foreach_ip_interface_address (lm4, ia, sw_if_index, 1 /* unnumbered */ ,
247  ({
248  return ip_interface_address_get_address (lm4, ia);
249  }));
250  /* *INDENT-ON* */
251  }
252  else
253  {
254  /* *INDENT-OFF* */
255  foreach_ip_interface_address (lm6, ia, sw_if_index, 1 /* unnumbered */ ,
256  ({
257  return ip_interface_address_get_address (lm6, ia);
258  }));
259  /* *INDENT-ON* */
260  }
261 
262  return 0;
263 }
264 
265 #define PORT_MASK ((1 << 16)- 1)
266 /**
267  * Allocate local port and add if successful add entry to local endpoint
268  * table to mark the pair as used.
269  */
270 u16
271 tcp_allocate_local_port (tcp_main_t * tm, ip46_address_t * ip)
272 {
274  u32 time_now, tei;
275  u16 min = 1024, max = 65535; /* XXX configurable ? */
276  int tries;
277 
278  tries = max - min;
279  time_now = tcp_time_now ();
280 
281  /* Start at random point or max */
282  pool_get (tm->local_endpoints, tep);
283  clib_memcpy (&tep->ip, ip, sizeof (*ip));
284 
285  /* Search for first free slot */
286  for (; tries >= 0; tries--)
287  {
288  u16 port = 0;
289 
290  /* Find a port in the specified range */
291  while (1)
292  {
293  port = random_u32 (&time_now) & PORT_MASK;
294  if (PREDICT_TRUE (port >= min && port < max))
295  break;
296  }
297 
298  tep->port = port;
299 
300  /* Look it up */
301  tei = transport_endpoint_lookup (&tm->local_endpoints_table, &tep->ip,
302  tep->port);
303  /* If not found, we're done */
305  {
306  transport_endpoint_table_add (&tm->local_endpoints_table, tep,
307  tep - tm->local_endpoints);
308  return tep->port;
309  }
310  }
311  /* No free ports */
312  pool_put (tm->local_endpoints, tep);
313  return -1;
314 }
315 
316 /**
317  * Initialize all connection timers as invalid
318  */
319 void
321 {
322  int i;
323 
324  /* Set all to invalid */
325  for (i = 0; i < TCP_N_TIMERS; i++)
326  {
327  tc->timers[i] = TCP_TIMER_HANDLE_INVALID;
328  }
329 
330  tc->rto = TCP_RTO_INIT;
331 }
332 
333 /**
334  * Stop all connection timers
335  */
336 void
338 {
339  int i;
340  for (i = 0; i < TCP_N_TIMERS; i++)
341  {
342  tcp_timer_reset (tc, i);
343  }
344 }
345 
346 typedef struct ip4_tcp_hdr
347 {
350 } ip4_tcp_hdr_t;
351 
352 typedef struct ip6_tcp_hdr
353 {
356 } ip6_tcp_hdr_t;
357 
358 static void
360  dpo_id_t * result)
361 {
362  const dpo_id_t *choice;
363  load_balance_t *lb;
364  int hash;
365 
366  lb = load_balance_get (dpo->dpoi_index);
367  if (tc->c_is_ip4)
368  {
369  ip4_tcp_hdr_t hdr;
370  memset (&hdr, 0, sizeof (hdr));
371  hdr.ip.protocol = IP_PROTOCOL_TCP;
372  hdr.ip.address_pair.src.as_u32 = tc->c_lcl_ip.ip4.as_u32;
373  hdr.ip.address_pair.dst.as_u32 = tc->c_rmt_ip.ip4.as_u32;
374  hdr.tcp.src_port = tc->c_lcl_port;
375  hdr.tcp.dst_port = tc->c_rmt_port;
376  hash = ip4_compute_flow_hash (&hdr.ip, lb->lb_hash_config);
377  }
378  else
379  {
380  ip6_tcp_hdr_t hdr;
381  memset (&hdr, 0, sizeof (hdr));
382  hdr.ip.protocol = IP_PROTOCOL_TCP;
383  clib_memcpy (&hdr.ip.src_address, &tc->c_lcl_ip.ip6,
384  sizeof (ip6_address_t));
385  clib_memcpy (&hdr.ip.dst_address, &tc->c_rmt_ip.ip6,
386  sizeof (ip6_address_t));
387  hdr.tcp.src_port = tc->c_lcl_port;
388  hdr.tcp.dst_port = tc->c_rmt_port;
389  hash = ip6_compute_flow_hash (&hdr.ip, lb->lb_hash_config);
390  }
391  choice = load_balance_get_bucket_i (lb, hash & lb->lb_n_buckets_minus_1);
392  dpo_copy (result, choice);
393 }
394 
397 {
398  fib_prefix_t prefix;
399 
400  clib_memcpy (&prefix.fp_addr, &tc->c_rmt_ip, sizeof (prefix.fp_addr));
401  prefix.fp_proto = tc->c_is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
402  prefix.fp_len = tc->c_is_ip4 ? 32 : 128;
403  return fib_table_lookup (0, &prefix);
404 }
405 
406 static int
408 {
409  dpo_id_t choice = DPO_INVALID;
410  u32 output_node_index;
411  fib_entry_t *fe;
412 
413  fe = fib_entry_get (tc->c_rmt_fei);
414  if (fe->fe_lb.dpoi_type != DPO_LOAD_BALANCE)
415  return -1;
416 
417  tcp_connection_select_lb_bucket (tc, &fe->fe_lb, &choice);
418 
419  output_node_index =
420  tc->c_is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
421  dpo_stack_from_node (output_node_index, &tc->c_rmt_dpo, &choice);
422  return 0;
423 }
424 
425 /** Stack tcp connection on peer's fib entry.
426  *
427  * This ultimately populates the dpo the connection will use to send packets.
428  */
429 static void
431 {
432  tc->c_rmt_fei = tcp_lookup_rmt_in_fib (tc);
433 
434  ASSERT (tc->c_rmt_fei != FIB_NODE_INDEX_INVALID);
435 
437 }
438 
439 /** Initialize tcp connection variables
440  *
441  * Should be called after having received a msg from the peer, i.e., a SYN or
442  * a SYNACK, such that connection options have already been exchanged. */
443 void
445 {
447  tcp_init_mss (tc);
448  scoreboard_init (&tc->sack_sb);
449  tcp_cc_init (tc);
451 }
452 
453 int
454 tcp_connection_open (ip46_address_t * rmt_addr, u16 rmt_port, u8 is_ip4)
455 {
456  tcp_main_t *tm = vnet_get_tcp_main ();
457  tcp_connection_t *tc;
458  fib_prefix_t prefix;
459  fib_node_index_t fei;
460  u32 sw_if_index;
461  ip46_address_t lcl_addr;
462  u16 lcl_port;
463 
464  /*
465  * Find the local address and allocate port
466  */
467  memset (&lcl_addr, 0, sizeof (lcl_addr));
468 
469  /* Find a FIB path to the destination */
470  clib_memcpy (&prefix.fp_addr, rmt_addr, sizeof (*rmt_addr));
471  prefix.fp_proto = is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
472  prefix.fp_len = is_ip4 ? 32 : 128;
473 
474  fei = fib_table_lookup (0, &prefix);
475 
476  /* Couldn't find route to destination. Bail out. */
477  if (fei == FIB_NODE_INDEX_INVALID)
478  return -1;
479 
480  sw_if_index = fib_entry_get_resolving_interface (fei);
481 
482  if (sw_if_index == (u32) ~ 0)
483  return -1;
484 
485  if (is_ip4)
486  {
487  ip4_address_t *ip4;
488  ip4 = ip_interface_get_first_ip (sw_if_index, 1);
489  lcl_addr.ip4.as_u32 = ip4->as_u32;
490  }
491  else
492  {
493  ip6_address_t *ip6;
494  ip6 = ip_interface_get_first_ip (sw_if_index, 0);
495  clib_memcpy (&lcl_addr.ip6, ip6, sizeof (*ip6));
496  }
497 
498  /* Allocate source port */
499  lcl_port = tcp_allocate_local_port (tm, &lcl_addr);
500  if (lcl_port < 1)
501  {
502  clib_warning ("Failed to allocate src port");
503  return -1;
504  }
505 
506  /*
507  * Create connection and send SYN
508  */
509 
510  pool_get (tm->half_open_connections, tc);
511  memset (tc, 0, sizeof (*tc));
512 
513  clib_memcpy (&tc->c_rmt_ip, rmt_addr, sizeof (ip46_address_t));
514  clib_memcpy (&tc->c_lcl_ip, &lcl_addr, sizeof (ip46_address_t));
515  tc->c_rmt_port = clib_host_to_net_u16 (rmt_port);
516  tc->c_lcl_port = clib_host_to_net_u16 (lcl_port);
517  tc->c_c_index = tc - tm->half_open_connections;
518  tc->c_is_ip4 = is_ip4;
519  tc->c_proto = is_ip4 ? SESSION_TYPE_IP4_TCP : SESSION_TYPE_IP6_TCP;
520 
521  /* The other connection vars will be initialized after SYN ACK */
523 
524  tcp_send_syn (tc);
525 
526  tc->state = TCP_STATE_SYN_SENT;
527 
528  TCP_EVT_DBG (TCP_EVT_OPEN, tc);
529 
530  return tc->c_c_index;
531 }
532 
533 int
534 tcp_session_open_ip4 (ip46_address_t * addr, u16 port)
535 {
536  return tcp_connection_open (addr, port, 1);
537 }
538 
539 int
540 tcp_session_open_ip6 (ip46_address_t * addr, u16 port)
541 {
542  return tcp_connection_open (addr, port, 0);
543 }
544 
545 const char *tcp_dbg_evt_str[] = {
546 #define _(sym, str) str,
548 #undef _
549 };
550 
551 const char *tcp_fsm_states[] = {
552 #define _(sym, str) str,
554 #undef _
555 };
556 
557 u8 *
558 format_tcp_state (u8 * s, va_list * args)
559 {
560  u32 state = va_arg (*args, u32);
561 
562  if (state < TCP_N_STATES)
563  s = format (s, "%s", tcp_fsm_states[state]);
564  else
565  s = format (s, "UNKNOWN (%d (0x%x))", state, state);
566  return s;
567 }
568 
569 const char *tcp_conn_timers[] = {
570 #define _(sym, str) str,
572 #undef _
573 };
574 
575 u8 *
576 format_tcp_timers (u8 * s, va_list * args)
577 {
578  tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
579  int i, last = -1;
580 
581  for (i = 0; i < TCP_N_TIMERS; i++)
582  if (tc->timers[i] != TCP_TIMER_HANDLE_INVALID)
583  last = i;
584 
585  s = format (s, "[");
586  for (i = 0; i < last; i++)
587  {
588  if (tc->timers[i] != TCP_TIMER_HANDLE_INVALID)
589  s = format (s, "%s,", tcp_conn_timers[i]);
590  }
591 
592  if (last >= 0)
593  s = format (s, "%s]", tcp_conn_timers[i]);
594  else
595  s = format (s, "]");
596 
597  return s;
598 }
599 
600 u8 *
601 format_tcp_congestion_status (u8 * s, va_list * args)
602 {
603  tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
604  if (tcp_in_recovery (tc))
605  s = format (s, "recovery");
606  else if (tcp_in_fastrecovery (tc))
607  s = format (s, "fastrecovery");
608  else
609  s = format (s, "none");
610  return s;
611 }
612 
613 u8 *
614 format_tcp_vars (u8 * s, va_list * args)
615 {
616  tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
617  s = format (s, " snd_una %u snd_nxt %u snd_una_max %u\n",
618  tc->snd_una - tc->iss, tc->snd_nxt - tc->iss,
619  tc->snd_una_max - tc->iss);
620  s = format (s, " rcv_nxt %u rcv_las %u\n",
621  tc->rcv_nxt - tc->irs, tc->rcv_las - tc->irs);
622  s = format (s, " snd_wnd %u rcv_wnd %u snd_wl1 %u snd_wl2 %u\n",
623  tc->snd_wnd, tc->rcv_wnd, tc->snd_wl1 - tc->irs,
624  tc->snd_wl2 - tc->iss);
625  s = format (s, " flight size %u send space %u rcv_wnd_av %d\n",
627  tcp_rcv_wnd_available (tc));
628  s = format (s, " cong %U ", format_tcp_congestion_status, tc);
629  s = format (s, "cwnd %u ssthresh %u rtx_bytes %u bytes_acked %u\n",
630  tc->cwnd, tc->ssthresh, tc->snd_rxt_bytes, tc->bytes_acked);
631  s = format (s, " prev_ssthresh %u snd_congestion %u dupack %u\n",
632  tc->prev_ssthresh, tc->snd_congestion - tc->iss,
633  tc->rcv_dupacks);
634  s = format (s, " rto %u rto_boff %u srtt %u rttvar %u rtt_ts %u ", tc->rto,
635  tc->rto_boff, tc->srtt, tc->rttvar, tc->rtt_ts);
636  s = format (s, "rtt_seq %u\n", tc->rtt_seq);
637  s = format (s, " scoreboard: %U\n", format_tcp_scoreboard, &tc->sack_sb);
638  if (vec_len (tc->snd_sacks))
639  s = format (s, " sacks tx: %U\n", format_tcp_sacks, tc);
640 
641  return s;
642 }
643 
644 u8 *
645 format_tcp_connection_id (u8 * s, va_list * args)
646 {
647  tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
648  if (!tc)
649  return s;
650  if (tc->c_is_ip4)
651  {
652  s = format (s, "[#%d][%s] %U:%d->%U:%d", tc->c_thread_index, "T",
653  format_ip4_address, &tc->c_lcl_ip4,
654  clib_net_to_host_u16 (tc->c_lcl_port), format_ip4_address,
655  &tc->c_rmt_ip4, clib_net_to_host_u16 (tc->c_rmt_port));
656  }
657  else
658  {
659  s = format (s, "[#%d][%s] %U:%d->%U:%d", tc->c_thread_index, "T",
660  format_ip6_address, &tc->c_lcl_ip6,
661  clib_net_to_host_u16 (tc->c_lcl_port), format_ip6_address,
662  &tc->c_rmt_ip6, clib_net_to_host_u16 (tc->c_rmt_port));
663  }
664 
665  return s;
666 }
667 
668 u8 *
669 format_tcp_connection (u8 * s, va_list * args)
670 {
671  tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
672  u32 verbose = va_arg (*args, u32);
673 
674  s = format (s, "%-50U", format_tcp_connection_id, tc);
675  if (verbose)
676  {
677  s = format (s, "%-15U", format_tcp_state, tc->state);
678  if (verbose > 1)
679  s = format (s, " %U\n%U", format_tcp_timers, tc, format_tcp_vars, tc);
680  }
681  return s;
682 }
683 
684 u8 *
685 format_tcp_session (u8 * s, va_list * args)
686 {
687  u32 tci = va_arg (*args, u32);
688  u32 thread_index = va_arg (*args, u32);
689  u32 verbose = va_arg (*args, u32);
690  tcp_connection_t *tc;
691 
692  tc = tcp_connection_get (tci, thread_index);
693  if (tc)
694  s = format (s, "%U", format_tcp_connection, tc, verbose);
695  else
696  s = format (s, "empty");
697  return s;
698 }
699 
700 u8 *
701 format_tcp_listener_session (u8 * s, va_list * args)
702 {
703  u32 tci = va_arg (*args, u32);
705  return format (s, "%U", format_tcp_connection_id, tc);
706 }
707 
708 u8 *
709 format_tcp_half_open_session (u8 * s, va_list * args)
710 {
711  u32 tci = va_arg (*args, u32);
713  return format (s, "%U", format_tcp_connection_id, tc);
714 }
715 
716 u8 *
717 format_tcp_sacks (u8 * s, va_list * args)
718 {
719  tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
720  sack_block_t *sacks = tc->snd_sacks;
721  sack_block_t *block;
722  vec_foreach (block, sacks)
723  {
724  s = format (s, " start %u end %u\n", block->start - tc->irs,
725  block->end - tc->irs);
726  }
727  return s;
728 }
729 
730 u8 *
731 format_tcp_sack_hole (u8 * s, va_list * args)
732 {
733  sack_scoreboard_hole_t *hole = va_arg (*args, sack_scoreboard_hole_t *);
734  s = format (s, "[%u, %u]", hole->start, hole->end);
735  return s;
736 }
737 
738 u8 *
739 format_tcp_scoreboard (u8 * s, va_list * args)
740 {
741  sack_scoreboard_t *sb = va_arg (*args, sack_scoreboard_t *);
743  s = format (s, "sacked_bytes %u last_sacked_bytes %u lost_bytes %u\n",
744  sb->sacked_bytes, sb->last_sacked_bytes, sb->lost_bytes);
745  s = format (s, " last_bytes_delivered %u high_sacked %u snd_una_adv %u\n",
746  sb->last_bytes_delivered, sb->high_sacked, sb->snd_una_adv);
747  s = format (s, " cur_rxt_hole %u high_rxt %u rescue_rxt %u",
748  sb->cur_rxt_hole, sb->high_rxt, sb->rescue_rxt);
749 
750  hole = scoreboard_first_hole (sb);
751  if (hole)
752  s = format (s, "\n head %u tail %u holes:\n", sb->head, sb->tail);
753 
754  while (hole)
755  {
756  s = format (s, "%U", format_tcp_sack_hole, hole);
757  hole = scoreboard_next_hole (sb, hole);
758  }
759  return s;
760 }
761 
763 tcp_session_get_transport (u32 conn_index, u32 thread_index)
764 {
765  tcp_connection_t *tc = tcp_connection_get (conn_index, thread_index);
766  return &tc->connection;
767 }
768 
771 {
773  return &tc->connection;
774 }
775 
776 /**
777  * Compute maximum segment size for session layer.
778  *
779  * Since the result needs to be the actual data length, it first computes
780  * the tcp options to be used in the next burst and subtracts their
781  * length from the connection's snd_mss.
782  */
783 u16
785 {
786  tcp_connection_t *tc = (tcp_connection_t *) trans_conn;
787 
788  /* Ensure snd_mss does accurately reflect the amount of data we can push
789  * in a segment. This also makes sure that options are updated according to
790  * the current state of the connection. */
791  tcp_update_snd_mss (tc);
792 
793  return tc->snd_mss;
794 }
795 
798 {
799  if (tc->snd_wnd < tc->snd_mss)
800  {
801  return tc->snd_wnd <= snd_space ? tc->snd_wnd : 0;
802  }
803 
804  /* If we can't write at least a segment, don't try at all */
805  if (snd_space < tc->snd_mss)
806  return 0;
807 
808  /* round down to mss multiple */
809  return snd_space - (snd_space % tc->snd_mss);
810 }
811 
812 /**
813  * Compute tx window session is allowed to fill.
814  *
815  * Takes into account available send space, snd_mss and the congestion
816  * state of the connection. If possible, the value returned is a multiple
817  * of snd_mss.
818  *
819  * @param tc tcp connection
820  * @return number of bytes session is allowed to write
821  */
822 u32
824 {
825  int snd_space, snt_limited;
826 
827  if (PREDICT_TRUE (tcp_in_cong_recovery (tc) == 0))
828  {
829  snd_space = tcp_available_snd_space (tc);
830 
831  /* If we haven't gotten dupacks or if we did and have gotten sacked
832  * bytes then we can still send as per Limited Transmit (RFC3042) */
833  if (PREDICT_FALSE (tc->rcv_dupacks != 0
834  && (tcp_opts_sack_permitted (tc)
835  && tc->sack_sb.last_sacked_bytes == 0)))
836  {
837  if (tc->rcv_dupacks == 1 && tc->limited_transmit != tc->snd_nxt)
838  tc->limited_transmit = tc->snd_nxt;
839  ASSERT (seq_leq (tc->limited_transmit, tc->snd_nxt));
840 
841  snt_limited = tc->snd_nxt - tc->limited_transmit;
842  snd_space = clib_max (2 * tc->snd_mss - snt_limited, 0);
843  }
844  return tcp_round_snd_space (tc, snd_space);
845  }
846 
847  if (tcp_in_recovery (tc))
848  {
849  tc->snd_nxt = tc->snd_una_max;
850  snd_space = tcp_available_wnd (tc) - tc->snd_rxt_bytes
851  - (tc->snd_una_max - tc->snd_congestion);
852  if (snd_space <= 0 || (tc->snd_una_max - tc->snd_una) >= tc->snd_wnd)
853  return 0;
854  return tcp_round_snd_space (tc, snd_space);
855  }
856 
857  /* If in fast recovery, send 1 SMSS if wnd allows */
858  if (tcp_in_fastrecovery (tc)
860  {
862  return tc->snd_mss;
863  }
864 
865  return 0;
866 }
867 
868 u32
870 {
871  tcp_connection_t *tc = (tcp_connection_t *) trans_conn;
872  return tcp_snd_space (tc);
873 }
874 
875 i32
877 {
878  return (i32) tc->rcv_wnd - (tc->rcv_nxt - tc->rcv_las);
879 }
880 
881 u32
883 {
884  tcp_connection_t *tc = (tcp_connection_t *) trans_conn;
885 
886  ASSERT (seq_geq (tc->snd_nxt, tc->snd_una));
887 
888  /* This still works if fast retransmit is on */
889  return (tc->snd_nxt - tc->snd_una);
890 }
891 
892 /* *INDENT-OFF* */
894  .bind = tcp_session_bind_ip4,
895  .unbind = tcp_session_unbind,
896  .push_header = tcp_push_header,
897  .get_connection = tcp_session_get_transport,
898  .get_listener = tcp_session_get_listener,
899  .get_half_open = tcp_half_open_session_get_transport,
900  .open = tcp_session_open_ip4,
901  .close = tcp_session_close,
902  .cleanup = tcp_session_cleanup,
903  .send_mss = tcp_session_send_mss,
904  .send_space = tcp_session_send_space,
905  .tx_fifo_offset = tcp_session_tx_fifo_offset,
906  .format_connection = format_tcp_session,
907  .format_listener = format_tcp_listener_session,
908  .format_half_open = format_tcp_half_open_session,
909 };
910 
912  .bind = tcp_session_bind_ip6,
913  .unbind = tcp_session_unbind,
914  .push_header = tcp_push_header,
915  .get_connection = tcp_session_get_transport,
916  .get_listener = tcp_session_get_listener,
917  .get_half_open = tcp_half_open_session_get_transport,
918  .open = tcp_session_open_ip6,
919  .close = tcp_session_close,
920  .cleanup = tcp_session_cleanup,
921  .send_mss = tcp_session_send_mss,
922  .send_space = tcp_session_send_space,
923  .tx_fifo_offset = tcp_session_tx_fifo_offset,
924  .format_connection = format_tcp_session,
925  .format_listener = format_tcp_listener_session,
926  .format_half_open = format_tcp_half_open_session,
927 };
928 /* *INDENT-ON* */
929 
930 void
932 {
933  u32 thread_index = vlib_get_thread_index ();
934  tcp_connection_t *tc;
935 
936  tc = tcp_connection_get (conn_index, thread_index);
937  tc->timers[TCP_TIMER_KEEP] = TCP_TIMER_HANDLE_INVALID;
938 
940 }
941 
942 void
944 {
945  tcp_connection_t *tc;
946  u8 sst;
947 
948  tc = tcp_half_open_connection_get (conn_index);
949  tc->timers[TCP_TIMER_ESTABLISH] = TCP_TIMER_HANDLE_INVALID;
950 
951  ASSERT (tc->state == TCP_STATE_SYN_SENT);
952 
953  sst = tc->c_is_ip4 ? SESSION_TYPE_IP4_TCP : SESSION_TYPE_IP6_TCP;
954  stream_session_connect_notify (&tc->connection, sst, 1 /* fail */ );
955 
957 }
958 
959 void
961 {
962  u32 thread_index = vlib_get_thread_index ();
963  tcp_connection_t *tc;
964 
965  tc = tcp_connection_get (conn_index, thread_index);
966  tc->timers[TCP_TIMER_WAITCLOSE] = TCP_TIMER_HANDLE_INVALID;
967 
968  /* Session didn't come back with a close(). Send FIN either way
969  * and switch to LAST_ACK. */
970  if (tc->state == TCP_STATE_CLOSE_WAIT)
971  {
972  if (tc->flags & TCP_CONN_FINSNT)
973  {
974  clib_warning ("FIN was sent and still in CLOSE WAIT. Weird!");
975  }
976 
977  tcp_send_fin (tc);
978  tc->state = TCP_STATE_LAST_ACK;
979 
980  /* Make sure we don't wait in LAST ACK forever */
981  tcp_timer_set (tc, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
982 
983  /* Don't delete the connection yet */
984  return;
985  }
986 
987  tcp_connection_del (tc);
988 }
989 
990 /* *INDENT-OFF* */
992 {
1000 };
1001 /* *INDENT-ON* */
1002 
1003 static void
1005 {
1006  int i;
1007  u32 connection_index, timer_id;
1008 
1009  for (i = 0; i < vec_len (expired_timers); i++)
1010  {
1011  /* Get session index and timer id */
1012  connection_index = expired_timers[i] & 0x0FFFFFFF;
1013  timer_id = expired_timers[i] >> 28;
1014 
1015  TCP_EVT_DBG (TCP_EVT_TIMER_POP, connection_index, timer_id);
1016 
1017  /* Handle expiration */
1018  (*timer_expiration_handlers[timer_id]) (connection_index);
1019  }
1020 }
1021 
1022 void
1024 {
1025  tw_timer_wheel_16t_2w_512sl_t *tw;
1026  /* *INDENT-OFF* */
1027  foreach_vlib_main (({
1028  tw = &tm->timer_wheels[ii];
1029  tw_timer_wheel_init_16t_2w_512sl (tw, tcp_expired_timers_dispatch,
1030  100e-3 /* timer period 100ms */ , ~0);
1031  tw->last_run_time = vlib_time_now (this_vlib_main);
1032  }));
1033  /* *INDENT-ON* */
1034 }
1035 
1036 clib_error_t *
1038 {
1039  tcp_main_t *tm = vnet_get_tcp_main ();
1040  ip_protocol_info_t *pi;
1041  ip_main_t *im = &ip_main;
1043  clib_error_t *error = 0;
1044  u32 num_threads;
1045 
1046  if ((error = vlib_call_init_function (vm, ip_main_init)))
1047  return error;
1048  if ((error = vlib_call_init_function (vm, ip4_lookup_init)))
1049  return error;
1050  if ((error = vlib_call_init_function (vm, ip6_lookup_init)))
1051  return error;
1052 
1053  /*
1054  * Registrations
1055  */
1056 
1057  /* Register with IP */
1058  pi = ip_get_protocol_info (im, IP_PROTOCOL_TCP);
1059  if (pi == 0)
1060  return clib_error_return (0, "TCP protocol info AWOL");
1063 
1064  ip4_register_protocol (IP_PROTOCOL_TCP, tcp4_input_node.index);
1065 
1066  /* Register as transport with URI */
1067  session_register_transport (SESSION_TYPE_IP4_TCP, &tcp4_proto);
1068  session_register_transport (SESSION_TYPE_IP6_TCP, &tcp6_proto);
1069 
1070  /*
1071  * Initialize data structures
1072  */
1073 
1074  num_threads = 1 /* main thread */ + vtm->n_threads;
1075  vec_validate (tm->connections, num_threads - 1);
1076 
1077  /* Initialize per worker thread tx buffers (used for control messages) */
1078  vec_validate (tm->tx_buffers, num_threads - 1);
1079 
1080  /* Initialize timer wheels */
1081  vec_validate (tm->timer_wheels, num_threads - 1);
1083 
1084  /* Initialize clocks per tick for TCP timestamp. Used to compute
1085  * monotonically increasing timestamps. */
1086  tm->tstamp_ticks_per_clock = vm->clib_time.seconds_per_clock
1088 
1089  clib_bihash_init_24_8 (&tm->local_endpoints_table, "local endpoint table",
1090  200000 /* $$$$ config parameter nbuckets */ ,
1091  (64 << 20) /*$$$ config parameter table size */ );
1092 
1093  return error;
1094 }
1095 
1096 clib_error_t *
1098 {
1099  if (is_en)
1100  {
1101  if (tcp_main.is_enabled)
1102  return 0;
1103 
1104  return tcp_main_enable (vm);
1105  }
1106  else
1107  {
1108  tcp_main.is_enabled = 0;
1109  }
1110 
1111  return 0;
1112 }
1113 
1114 clib_error_t *
1116 {
1117  tcp_main_t *tm = vnet_get_tcp_main ();
1118 
1119  tm->vlib_main = vm;
1120  tm->vnet_main = vnet_get_main ();
1121  tm->is_enabled = 0;
1122 
1123  return 0;
1124 }
1125 
1127 
1128 /*
1129  * fd.io coding-style-patch-verification: ON
1130  *
1131  * Local Variables:
1132  * eval: (c-set-style "gnu")
1133  * End:
1134  */
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:436
#define foreach_ip_interface_address(lm, a, sw_if_index, loop, body)
Definition: lookup.h:179
#define tcp_in_cong_recovery(tc)
Definition: tcp.h:284
void dpo_stack_from_node(u32 child_node_index, dpo_id_t *dpo, const dpo_id_t *parent)
Stack one DPO object on another, and thus establish a child parent relationship.
Definition: dpo.c:431
fib_protocol_t fp_proto
protocol type
Definition: fib_types.h:169
#define TCP_2MSL_TIME
Definition: tcp.h:98
void tcp_timer_keep_handler(u32 conn_index)
Definition: tcp.c:931
sll srl srl sll sra u16x4 i
Definition: vector_sse2.h:337
An entry in a FIB table.
Definition: fib_entry.h:380
const char * tcp_fsm_states[]
Definition: tcp.c:551
#define tcp_in_recovery(tc)
Definition: tcp.h:278
u8 * format_tcp_vars(u8 *s, va_list *args)
Definition: tcp.c:614
#define seq_leq(_s1, _s2)
Definition: tcp.h:438
static u32 tcp_available_wnd(const tcp_connection_t *tc)
Definition: tcp.h:505
struct _sack_block sack_block_t
void * ip_interface_get_first_ip(u32 sw_if_index, u8 is_ip4)
Definition: tcp.c:237
u8 * format_tcp_sacks(u8 *s, va_list *args)
Definition: tcp.c:717
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
struct _transport_connection transport_connection_t
fib_node_index_t tcp_lookup_rmt_in_fib(tcp_connection_t *tc)
Definition: tcp.c:396
vlib_node_registration_t tcp4_output_node
(constructor) VLIB_REGISTER_NODE (tcp4_output_node)
Definition: tcp_output.c:1594
u32 tcp_session_unbind(u32 listener_index)
Definition: tcp.c:83
#define PREDICT_TRUE(x)
Definition: clib.h:98
ip4_address_t dst
Definition: ip4_packet.h:77
static u32 ip4_compute_flow_hash(const ip4_header_t *ip, flow_hash_config_t flow_hash_config)
Definition: ip4.h:272
struct _sack_scoreboard sack_scoreboard_t
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:192
static tcp_connection_t * tcp_half_open_connection_get(u32 conn_index)
Definition: tcp.h:415
static void tcp_connection_fib_attach(tcp_connection_t *tc)
Stack tcp connection on peer&#39;s fib entry.
Definition: tcp.c:430
flow_hash_config_t lb_hash_config
the hash config to use when selecting a bucket.
Definition: load_balance.h:128
struct _tcp_main tcp_main_t
void tcp_connection_timers_reset(tcp_connection_t *tc)
Stop all connection timers.
Definition: tcp.c:337
vlib_node_registration_t tcp6_output_node
(constructor) VLIB_REGISTER_NODE (tcp6_output_node)
Definition: tcp_output.c:1615
void dpo_copy(dpo_id_t *dst, const dpo_id_t *src)
atomic copy a data-plane object.
Definition: dpo.c:235
timer_expiration_handler tcp_timer_retransmit_handler
static void scoreboard_init(sack_scoreboard_t *sb)
Definition: tcp.h:754
static heap_elt_t * last(heap_header_t *h)
Definition: heap.c:53
ip_lookup_main_t lookup_main
Definition: ip4.h:85
struct _tcp_connection tcp_connection_t
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:419
clib_time_t clib_time
Definition: main.h:62
Definition: ip.h:106
transport_connection_t * tcp_half_open_session_get_transport(u32 conn_index)
Definition: tcp.c:770
u16 tcp_allocate_local_port(tcp_main_t *tm, ip46_address_t *ip)
Allocate local port and add if successful add entry to local endpoint table to mark the pair as used...
Definition: tcp.c:271
void tcp_timer_establish_handler(u32 conn_index)
Definition: tcp.c:943
void ip4_register_protocol(u32 protocol, u32 node_index)
Definition: ip4_forward.c:1959
struct ip4_tcp_hdr ip4_tcp_hdr_t
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
Definition: pool.h:200
struct _tcp_header tcp_header_t
static u32 tcp_available_snd_space(const tcp_connection_t *tc)
Definition: tcp.h:511
ip6_address_t src_address
Definition: ip6_packet.h:341
struct _sack_scoreboard_hole sack_scoreboard_hole_t
u32 tcp_session_tx_fifo_offset(transport_connection_t *trans_conn)
Definition: tcp.c:882
#define TCP_RTO_INIT
Definition: tcp.h:107
format_function_t format_ip4_address
Definition: format.h:79
unformat_function_t * unformat_pg_edit
Definition: ip.h:87
u8 * format_tcp_connection_id(u8 *s, va_list *args)
Definition: tcp.c:645
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:111
#define always_inline
Definition: clib.h:84
u16 lb_n_buckets_minus_1
number of buckets in the load-balance - 1.
Definition: load_balance.h:93
void tcp_connection_timers_init(tcp_connection_t *tc)
Initialize all connection timers as invalid.
Definition: tcp.c:320
struct ip6_tcp_hdr ip6_tcp_hdr_t
tcp_main_t tcp_main
Definition: tcp.c:22
int i32
Definition: types.h:81
void transport_endpoint_table_del(transport_endpoint_table_t *ht, transport_endpoint_t *te)
Definition: transport.c:51
static void tcp_connection_unbind(u32 listener_index)
Definition: tcp.c:74
clib_error_t * tcp_main_enable(vlib_main_t *vm)
Definition: tcp.c:1037
Aggregrate type for a prefix.
Definition: fib_types.h:160
#define clib_error_return(e, args...)
Definition: error.h:99
void stream_session_delete_notify(transport_connection_t *tc)
Notification from transport that connection is being deleted.
Definition: session.c:807
timer_expiration_handler tcp_timer_retransmit_syn_handler
static u32 tcp_time_now(void)
Definition: tcp.h:540
u32 tcp_snd_space(tcp_connection_t *tc)
Compute tx window session is allowed to fill.
Definition: tcp.c:823
u16 fp_len
The mask length.
Definition: fib_types.h:164
#define vlib_call_init_function(vm, x)
Definition: init.h:162
u32 tcp_session_bind_ip4(u32 session_index, ip46_address_t *ip, u16 port_host_byte_order)
Definition: tcp.c:60
int stream_session_connect_notify(transport_connection_t *tc, u8 sst, u8 is_fail)
Definition: session.c:704
#define TCP_EVT_DBG(_evt, _args...)
Definition: tcp_debug.h:183
fib_node_index_t fib_table_lookup(u32 fib_index, const fib_prefix_t *prefix)
Perfom a longest prefix match in the non-forwarding table.
Definition: fib_table.c:66
struct _transport_proto_vft transport_proto_vft_t
#define TRANSPORT_ENDPOINT_INVALID_INDEX
Definition: transport.h:238
static void tcp_timer_set(tcp_connection_t *tc, u8 timer_id, u32 interval)
Definition: tcp.h:571
static timer_expiration_handler * timer_expiration_handlers[TCP_N_TIMERS]
Definition: tcp.c:991
The identity of a DPO is a combination of its type and its instance number/index of objects of that t...
Definition: dpo.h:152
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:397
transport_connection_t * tcp_session_get_listener(u32 listener_index)
Definition: tcp.c:90
static void tcp_connection_select_lb_bucket(tcp_connection_t *tc, const dpo_id_t *dpo, dpo_id_t *result)
Definition: tcp.c:359
timer_expiration_handler tcp_timer_persist_handler
static ip_protocol_info_t * ip_get_protocol_info(ip_main_t *im, u32 protocol)
Definition: ip.h:133
#define tcp_in_fastrecovery(tc)
Definition: tcp.h:277
ip46_address_t fp_addr
The address type is not deriveable from the fp_addr member.
Definition: fib_types.h:183
dpo_type_t dpoi_type
the type
Definition: dpo.h:156
format_function_t * format_header
Definition: ip.h:78
static const dpo_id_t * load_balance_get_bucket_i(const load_balance_t *lb, u32 bucket)
Definition: load_balance.h:202
void tcp_session_cleanup(u32 conn_index, u32 thread_index)
Definition: tcp.c:226
void tcp_send_syn(tcp_connection_t *tc)
Send SYN.
Definition: tcp_output.c:789
static const transport_proto_vft_t tcp4_proto
Definition: tcp.c:893
static sack_scoreboard_hole_t * scoreboard_next_hole(sack_scoreboard_t *sb, sack_scoreboard_hole_t *hole)
Definition: tcp.h:691
load-balancing over a choice of [un]equal cost paths
Definition: dpo.h:104
static u32 ip6_compute_flow_hash(const ip6_header_t *ip, flow_hash_config_t flow_hash_config)
Definition: ip6.h:391
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:241
static void tcp_expired_timers_dispatch(u32 *expired_timers)
Definition: tcp.c:1004
#define TCP_TIMER_HANDLE_INVALID
Definition: tcp.h:91
The FIB DPO provieds;.
Definition: load_balance.h:84
ip4_address_pair_t address_pair
Definition: ip4_packet.h:166
void tcp_timer_waitclose_handler(u32 conn_index)
Definition: tcp.c:960
#define TCP_CLEANUP_TIME
Definition: tcp.h:100
static u32 tcp_flight_size(const tcp_connection_t *tc)
Our estimate of the number of bytes in flight (pipe size)
Definition: tcp.h:463
#define PREDICT_FALSE(x)
Definition: clib.h:97
u8 * format_tcp_congestion_status(u8 *s, va_list *args)
Definition: tcp.c:601
u8 * format_tcp_scoreboard(u8 *s, va_list *args)
Definition: tcp.c:739
clib_error_t * vnet_tcp_enable_disable(vlib_main_t *vm, u8 is_en)
Definition: tcp.c:1097
f64 seconds_per_clock
Definition: time.h:57
u32 tcp_push_header(transport_connection_t *tconn, vlib_buffer_t *b)
Definition: tcp_output.c:1637
void transport_endpoint_table_add(transport_endpoint_table_t *ht, transport_endpoint_t *te, u32 value)
Definition: transport.c:37
void tcp_session_close(u32 conn_index, u32 thread_index)
Definition: tcp.c:218
void( timer_expiration_handler)(u32 index)
Definition: tcp.h:84
tcp_header_t tcp
Definition: tcp.c:349
#define foreach_vlib_main(body)
Definition: threads.h:208
static u32 tcp_connection_bind(u32 session_index, ip46_address_t *ip, u16 port_host_byte_order, u8 is_ip4)
Definition: tcp.c:25
u32 fib_entry_get_resolving_interface(fib_node_index_t entry_index)
Definition: fib_entry.c:1338
static void tcp_timer_reset(tcp_connection_t *tc, u8 timer_id)
Definition: tcp.h:579
static sack_scoreboard_hole_t * scoreboard_first_hole(sack_scoreboard_t *sb)
Definition: tcp.h:707
#define tcp_fastrecovery_sent_1_smss(tc)
Definition: tcp.h:280
u8 * format_tcp_half_open_session(u8 *s, va_list *args)
Definition: tcp.c:709
clib_error_t * ip_main_init(vlib_main_t *vm)
Definition: ip_init.c:45
static_always_inline uword vlib_get_thread_index(void)
Definition: threads.h:185
format_function_t format_ip6_address
Definition: format.h:95
void tcp_cc_init(tcp_connection_t *tc)
Definition: tcp_input.c:1138
ip_main_t ip_main
Definition: ip_init.c:42
ip4_header_t ip
Definition: tcp.c:348
void tcp_connection_close(tcp_connection_t *tc)
Begin connection closing procedure.
Definition: tcp.c:194
ip4_address_t src
Definition: ip4_packet.h:77
#define clib_warning(format, args...)
Definition: error.h:59
#define clib_memcpy(a, b, c)
Definition: string.h:69
u8 * format_tcp_session(u8 *s, va_list *args)
Definition: tcp.c:685
format_function_t format_tcp_header
Definition: format.h:102
int tcp_session_open_ip6(ip46_address_t *addr, u16 port)
Definition: tcp.c:540
const char * tcp_dbg_evt_str[]
Definition: tcp.c:545
u32 fib_node_index_t
A typedef of a node index.
Definition: fib_types.h:28
int tcp_connection_open(ip46_address_t *rmt_addr, u16 rmt_port, u8 is_ip4)
Definition: tcp.c:454
ip6_header_t ip
Definition: tcp.c:354
u16 tcp_session_send_mss(transport_connection_t *trans_conn)
Compute maximum segment size for session layer.
Definition: tcp.c:784
fib_entry_t * fib_entry_get(fib_node_index_t index)
Definition: fib_entry.c:44
static void tcp_timer_update(tcp_connection_t *tc, u8 timer_id, u32 interval)
Definition: tcp.h:590
#define pool_put_index(p, i)
Free pool element with given index.
Definition: pool.h:255
#define ASSERT(truth)
unsigned int u32
Definition: types.h:88
ip6_main_t ip6_main
Definition: ip6_forward.c:2926
ip_lookup_main_t lookup_main
Definition: ip6.h:148
unformat_function_t unformat_pg_tcp_header
Definition: format.h:104
static load_balance_t * load_balance_get(index_t lbi)
Definition: load_balance.h:193
#define seq_geq(_s1, _s2)
Definition: tcp.h:440
vhost_vring_state_t state
Definition: vhost-user.h:81
u32 transport_endpoint_lookup(transport_endpoint_table_t *ht, ip46_address_t *ip, u16 port)
Definition: transport.c:19
void stream_session_reset_notify(transport_connection_t *tc)
Notify application that connection has been reset.
Definition: session.c:824
i32 tcp_rcv_wnd_available(tcp_connection_t *tc)
Definition: tcp.c:876
clib_error_t * ip4_lookup_init(vlib_main_t *vm)
Definition: ip4_forward.c:1171
void session_register_transport(u8 type, const transport_proto_vft_t *vft)
Definition: session.c:1041
#define clib_max(x, y)
Definition: clib.h:325
u8 * format_tcp_timers(u8 *s, va_list *args)
Definition: tcp.c:576
dpo_id_t fe_lb
The load-balance used for forwarding.
Definition: fib_entry.h:406
void tcp_update_snd_mss(tcp_connection_t *tc)
Update snd_mss to reflect the effective segment size that we can send by taking into account all TCP ...
Definition: tcp_output.c:390
#define tcp_fastrecovery_1_smss_on(tc)
Definition: tcp.h:281
unsigned short u16
Definition: types.h:57
void tcp_connection_reset(tcp_connection_t *tc)
Notify session that connection has been reset.
Definition: tcp.c:152
vlib_node_registration_t tcp4_input_node
(constructor) VLIB_REGISTER_NODE (tcp4_input_node)
Definition: tcp_input.c:2823
#define PORT_MASK
Definition: tcp.c:265
index_t dpoi_index
the index of objects of that type
Definition: dpo.h:168
#define FIB_NODE_INDEX_INVALID
Definition: fib_types.h:29
int tcp_session_open_ip4(ip46_address_t *addr, u16 port)
Definition: tcp.c:534
#define foreach_tcp_fsm_state
TCP FSM state definitions as per RFC793.
Definition: tcp.h:41
void tcp_send_fin(tcp_connection_t *tc)
Send FIN.
Definition: tcp_output.c:866
#define foreach_tcp_timer
TCP timers.
Definition: tcp.h:67
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
unsigned char u8
Definition: types.h:56
static u32 tcp_round_snd_space(tcp_connection_t *tc, u32 snd_space)
Definition: tcp.c:797
struct _transport_endpoint transport_endpoint_t
void tcp_connection_init_vars(tcp_connection_t *tc)
Initialize tcp connection variables.
Definition: tcp.c:444
#define DPO_INVALID
An initialiser for DPOs declared on the stack.
Definition: dpo.h:179
const char * tcp_conn_timers[]
Definition: tcp.c:569
clib_error_t * tcp_init(vlib_main_t *vm)
Definition: tcp.c:1115
u8 * format_tcp_connection(u8 *s, va_list *args)
Definition: tcp.c:669
static tcp_connection_t * tcp_connection_get(u32 conn_index, u32 thread_index)
Definition: tcp.h:382
tcp_header_t tcp
Definition: tcp.c:355
static u32 random_u32(u32 *seed)
32-bit random number generator
Definition: random.h:69
ip4_main_t ip4_main
Global ip4 main structure.
Definition: ip4_forward.c:1168
static int tcp_connection_stack_on_fib_entry(tcp_connection_t *tc)
Definition: tcp.c:407
static vlib_thread_main_t * vlib_get_thread_main()
Definition: global_funcs.h:32
void tcp_connection_cleanup(tcp_connection_t *tc)
Cleans up connection state.
Definition: tcp.c:104
void tcp_connection_del(tcp_connection_t *tc)
Connection removal.
Definition: tcp.c:140
void tcp_init_mss(tcp_connection_t *tc)
Definition: tcp_output.c:403
#define vec_foreach(var, vec)
Vector iterator.
u8 * format_tcp_sack_hole(u8 *s, va_list *args)
Definition: tcp.c:731
#define TCP_TSTAMP_RESOLUTION
Time stamp resolution.
Definition: tcp.h:29
#define tcp_opts_sack_permitted(_to)
Definition: tcp_packet.h:160
vhost_vring_addr_t addr
Definition: vhost-user.h:82
static void * ip_interface_address_get_address(ip_lookup_main_t *lm, ip_interface_address_t *a)
Definition: lookup.h:172
static const transport_proto_vft_t tcp6_proto
Definition: tcp.c:911
u8 * format_tcp_state(u8 *s, va_list *args)
Definition: tcp.c:558
u32 tcp_session_send_space(transport_connection_t *trans_conn)
Definition: tcp.c:869
static clib_error_t * ip6_lookup_init(vlib_main_t *vm)
Definition: ip6_forward.c:2929
static tcp_main_t * vnet_get_tcp_main()
Definition: tcp.h:366
timer_expiration_handler tcp_timer_delack_handler
u32 tcp_session_bind_ip6(u32 session_index, ip46_address_t *ip, u16 port_host_byte_order)
Definition: tcp.c:67
transport_connection_t * tcp_session_get_transport(u32 conn_index, u32 thread_index)
Definition: tcp.c:763
u8 * format_tcp_listener_session(u8 *s, va_list *args)
Definition: tcp.c:701
void tcp_initialize_timer_wheels(tcp_main_t *tm)
Definition: tcp.c:1023
static tcp_connection_t * tcp_listener_get(u32 tli)
Definition: tcp.h:409
ip6_address_t dst_address
Definition: ip6_packet.h:341