blob: d43fb149855d3e393f31e20bb2f5634c531abdb5 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
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
Dave Barach3bbcfab2017-08-15 19:03:44 -040016/**
17 * @file
18 * @brief TCP host stack utilities
19 */
20
Dave Barach68b0fb02017-02-28 15:15:56 -050021#include <vnet/tcp/tcp.h>
22#include <vnet/session/session.h>
23#include <vnet/fib/fib.h>
Florin Corasf6359c82017-06-19 12:26:09 -040024#include <vnet/dpo/load_balance.h>
Dave Barach3bbcfab2017-08-15 19:03:44 -040025#include <vnet/dpo/receive_dpo.h>
26#include <vnet/ip/ip6_neighbor.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050027#include <math.h>
28
29tcp_main_t tcp_main;
30
31static u32
Florin Coras04e53442017-07-16 17:12:15 -070032tcp_connection_bind (u32 session_index, transport_endpoint_t * lcl)
Dave Barach68b0fb02017-02-28 15:15:56 -050033{
34 tcp_main_t *tm = &tcp_main;
35 tcp_connection_t *listener;
36
37 pool_get (tm->listener_pool, listener);
38 memset (listener, 0, sizeof (*listener));
39
40 listener->c_c_index = listener - tm->listener_pool;
Florin Coras04e53442017-07-16 17:12:15 -070041 listener->c_lcl_port = clib_host_to_net_u16 (lcl->port);
Dave Barach68b0fb02017-02-28 15:15:56 -050042
Florin Coras04e53442017-07-16 17:12:15 -070043 if (lcl->is_ip4)
Florin Coras6cf30ad2017-04-04 23:08:23 -070044 {
Florin Coras04e53442017-07-16 17:12:15 -070045 listener->c_lcl_ip4.as_u32 = lcl->ip.ip4.as_u32;
Florin Coras6cf30ad2017-04-04 23:08:23 -070046 listener->c_is_ip4 = 1;
Florin Coras6cf30ad2017-04-04 23:08:23 -070047 }
Dave Barach68b0fb02017-02-28 15:15:56 -050048 else
Florin Coras6cf30ad2017-04-04 23:08:23 -070049 {
Florin Coras04e53442017-07-16 17:12:15 -070050 clib_memcpy (&listener->c_lcl_ip6, &lcl->ip.ip6,
51 sizeof (ip6_address_t));
Dave Barach68b0fb02017-02-28 15:15:56 -050052
Florin Coras68810622017-07-24 17:40:28 -070053 }
54 listener->c_transport_proto = TRANSPORT_PROTO_TCP;
Dave Barach68b0fb02017-02-28 15:15:56 -050055 listener->c_s_index = session_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050056 listener->state = TCP_STATE_LISTEN;
Dave Barach68b0fb02017-02-28 15:15:56 -050057
Florin Corase69f4952017-03-07 10:06:24 -080058 tcp_connection_timers_init (listener);
59
60 TCP_EVT_DBG (TCP_EVT_BIND, listener);
61
Dave Barach68b0fb02017-02-28 15:15:56 -050062 return listener->c_c_index;
63}
64
65u32
Florin Coras04e53442017-07-16 17:12:15 -070066tcp_session_bind (u32 session_index, transport_endpoint_t * tep)
Dave Barach68b0fb02017-02-28 15:15:56 -050067{
Florin Coras04e53442017-07-16 17:12:15 -070068 return tcp_connection_bind (session_index, tep);
Dave Barach68b0fb02017-02-28 15:15:56 -050069}
70
71static void
Florin Corase69f4952017-03-07 10:06:24 -080072tcp_connection_unbind (u32 listener_index)
Dave Barach68b0fb02017-02-28 15:15:56 -050073{
74 tcp_main_t *tm = vnet_get_tcp_main ();
Dave Barach2c25a622017-06-26 11:35:07 -040075 tcp_connection_t *tc;
76
77 tc = pool_elt_at_index (tm->listener_pool, listener_index);
78
79 TCP_EVT_DBG (TCP_EVT_UNBIND, tc);
80
81 /* Poison the entry */
82 if (CLIB_DEBUG > 0)
83 memset (tc, 0xFA, sizeof (*tc));
84
Dave Barach68b0fb02017-02-28 15:15:56 -050085 pool_put_index (tm->listener_pool, listener_index);
86}
87
88u32
Florin Corase69f4952017-03-07 10:06:24 -080089tcp_session_unbind (u32 listener_index)
Dave Barach68b0fb02017-02-28 15:15:56 -050090{
Florin Corase69f4952017-03-07 10:06:24 -080091 tcp_connection_unbind (listener_index);
Dave Barach68b0fb02017-02-28 15:15:56 -050092 return 0;
93}
94
95transport_connection_t *
96tcp_session_get_listener (u32 listener_index)
97{
98 tcp_main_t *tm = vnet_get_tcp_main ();
99 tcp_connection_t *tc;
100 tc = pool_elt_at_index (tm->listener_pool, listener_index);
101 return &tc->connection;
102}
103
Florin Coras68810622017-07-24 17:40:28 -0700104always_inline void
105transport_endpoint_del (u32 tepi)
106{
107 tcp_main_t *tm = vnet_get_tcp_main ();
108 clib_spinlock_lock_if_init (&tm->local_endpoints_lock);
109 pool_put_index (tm->local_endpoints, tepi);
110 clib_spinlock_unlock_if_init (&tm->local_endpoints_lock);
111}
112
113always_inline transport_endpoint_t *
114transport_endpoint_new (void)
115{
116 tcp_main_t *tm = vnet_get_tcp_main ();
117 transport_endpoint_t *tep;
118 pool_get (tm->local_endpoints, tep);
119 return tep;
120}
121
122/**
123 * Cleanup half-open connection
124 *
125 */
126void
127tcp_half_open_connection_del (tcp_connection_t * tc)
128{
129 tcp_main_t *tm = vnet_get_tcp_main ();
130 clib_spinlock_lock_if_init (&tm->half_open_lock);
131 pool_put_index (tm->half_open_connections, tc->c_c_index);
132 if (CLIB_DEBUG)
133 memset (tc, 0xFA, sizeof (*tc));
134 clib_spinlock_unlock_if_init (&tm->half_open_lock);
135}
136
137/**
138 * Try to cleanup half-open connection
139 *
140 * If called from a thread that doesn't own tc, the call won't have any
141 * effect.
142 *
143 * @param tc - connection to be cleaned up
144 * @return non-zero if cleanup failed.
145 */
146int
147tcp_half_open_connection_cleanup (tcp_connection_t * tc)
148{
149 /* Make sure this is the owning thread */
150 if (tc->c_thread_index != vlib_get_thread_index ())
151 return 1;
152 tcp_timer_reset (tc, TCP_TIMER_ESTABLISH);
153 tcp_timer_reset (tc, TCP_TIMER_RETRANSMIT_SYN);
154 tcp_half_open_connection_del (tc);
155 return 0;
156}
157
158tcp_connection_t *
159tcp_half_open_connection_new (void)
160{
161 tcp_main_t *tm = vnet_get_tcp_main ();
162 tcp_connection_t *tc = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400163 ASSERT (vlib_get_thread_index () == 0);
Florin Coras68810622017-07-24 17:40:28 -0700164 pool_get (tm->half_open_connections, tc);
165 memset (tc, 0, sizeof (*tc));
166 tc->c_c_index = tc - tm->half_open_connections;
167 return tc;
168}
169
Dave Barach68b0fb02017-02-28 15:15:56 -0500170/**
171 * Cleans up connection state.
172 *
173 * No notifications.
174 */
175void
176tcp_connection_cleanup (tcp_connection_t * tc)
177{
178 tcp_main_t *tm = &tcp_main;
179 u32 tepi;
180 transport_endpoint_t *tep;
181
182 /* Cleanup local endpoint if this was an active connect */
183 tepi = transport_endpoint_lookup (&tm->local_endpoints_table, &tc->c_lcl_ip,
Florin Coras66b11312017-07-31 17:18:03 -0700184 clib_net_to_host_u16 (tc->c_lcl_port));
Dave Barach68b0fb02017-02-28 15:15:56 -0500185 if (tepi != TRANSPORT_ENDPOINT_INVALID_INDEX)
186 {
187 tep = pool_elt_at_index (tm->local_endpoints, tepi);
188 transport_endpoint_table_del (&tm->local_endpoints_table, tep);
Florin Coras68810622017-07-24 17:40:28 -0700189 transport_endpoint_del (tepi);
Dave Barach68b0fb02017-02-28 15:15:56 -0500190 }
191
Florin Coras68810622017-07-24 17:40:28 -0700192 /* Check if connection is not yet fully established */
Dave Barach68b0fb02017-02-28 15:15:56 -0500193 if (tc->state == TCP_STATE_SYN_SENT)
Dave Barach2c25a622017-06-26 11:35:07 -0400194 {
Florin Coras68810622017-07-24 17:40:28 -0700195 /* Try to remove the half-open connection. If this is not the owning
196 * thread, tc won't be removed. Retransmit or establish timers will
197 * eventually expire and call again cleanup on the right thread. */
198 tcp_half_open_connection_cleanup (tc);
Dave Barach2c25a622017-06-26 11:35:07 -0400199 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500200 else
Dave Barach2c25a622017-06-26 11:35:07 -0400201 {
202 int thread_index = tc->c_thread_index;
Florin Coras68810622017-07-24 17:40:28 -0700203
204 /* Make sure all timers are cleared */
205 tcp_connection_timers_reset (tc);
206
Dave Barach2c25a622017-06-26 11:35:07 -0400207 /* Poison the entry */
208 if (CLIB_DEBUG > 0)
209 memset (tc, 0xFA, sizeof (*tc));
210 pool_put (tm->connections[thread_index], tc);
211 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500212}
213
214/**
215 * Connection removal.
216 *
217 * This should be called only once connection enters CLOSED state. Note
218 * that it notifies the session of the removal event, so if the goal is to
219 * just remove the connection, call tcp_connection_cleanup instead.
220 */
221void
222tcp_connection_del (tcp_connection_t * tc)
223{
Florin Corase69f4952017-03-07 10:06:24 -0800224 TCP_EVT_DBG (TCP_EVT_DELETE, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500225 stream_session_delete_notify (&tc->connection);
226 tcp_connection_cleanup (tc);
227}
228
Florin Coras6534b7a2017-07-18 05:38:03 -0400229tcp_connection_t *
230tcp_connection_new (u8 thread_index)
231{
232 tcp_main_t *tm = vnet_get_tcp_main ();
233 tcp_connection_t *tc;
234
235 pool_get (tm->connections[thread_index], tc);
236 memset (tc, 0, sizeof (*tc));
237 tc->c_c_index = tc - tm->connections[thread_index];
238 tc->c_thread_index = thread_index;
239 return tc;
240}
241
Florin Corasd79b41e2017-03-04 05:37:52 -0800242/** Notify session that connection has been reset.
243 *
244 * Switch state to closed and wait for session to call cleanup.
245 */
246void
247tcp_connection_reset (tcp_connection_t * tc)
248{
Florin Coras6534b7a2017-07-18 05:38:03 -0400249 TCP_EVT_DBG (TCP_EVT_RST_RCVD, tc);
Florin Coras11c05492017-05-10 12:29:14 -0700250 switch (tc->state)
251 {
252 case TCP_STATE_SYN_RCVD:
253 /* Cleanup everything. App wasn't notified yet */
254 stream_session_delete_notify (&tc->connection);
255 tcp_connection_cleanup (tc);
256 break;
257 case TCP_STATE_SYN_SENT:
Florin Coras68810622017-07-24 17:40:28 -0700258 stream_session_connect_notify (&tc->connection, 1 /* fail */ );
Florin Coras6534b7a2017-07-18 05:38:03 -0400259 tcp_connection_cleanup (tc);
260 break;
Florin Coras11c05492017-05-10 12:29:14 -0700261 case TCP_STATE_ESTABLISHED:
262 case TCP_STATE_CLOSE_WAIT:
263 case TCP_STATE_FIN_WAIT_1:
264 case TCP_STATE_FIN_WAIT_2:
265 case TCP_STATE_CLOSING:
266 tc->state = TCP_STATE_CLOSED;
Florin Coras6534b7a2017-07-18 05:38:03 -0400267 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc);
Florin Corasd79b41e2017-03-04 05:37:52 -0800268
Florin Coras11c05492017-05-10 12:29:14 -0700269 /* Make sure all timers are cleared */
270 tcp_connection_timers_reset (tc);
Florin Coras11c05492017-05-10 12:29:14 -0700271 stream_session_reset_notify (&tc->connection);
Dave Barach2c25a622017-06-26 11:35:07 -0400272
273 /* Wait for cleanup from session layer but not forever */
Florin Coras68810622017-07-24 17:40:28 -0700274 tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, TCP_CLEANUP_TIME);
Florin Coras11c05492017-05-10 12:29:14 -0700275 break;
276 case TCP_STATE_CLOSED:
277 return;
278 }
Florin Corasd79b41e2017-03-04 05:37:52 -0800279}
280
Dave Barach68b0fb02017-02-28 15:15:56 -0500281/**
282 * Begin connection closing procedure.
283 *
284 * If at the end the connection is not in CLOSED state, it is not removed.
285 * Instead, we rely on on TCP to advance through state machine to either
286 * 1) LAST_ACK (passive close) whereby when the last ACK is received
287 * tcp_connection_del is called. This notifies session of the delete and
288 * calls cleanup.
289 * 2) TIME_WAIT (active close) whereby after 2MSL the 2MSL timer triggers
290 * and cleanup is called.
Florin Corasd79b41e2017-03-04 05:37:52 -0800291 *
292 * N.B. Half-close connections are not supported
Dave Barach68b0fb02017-02-28 15:15:56 -0500293 */
294void
295tcp_connection_close (tcp_connection_t * tc)
296{
Florin Corase69f4952017-03-07 10:06:24 -0800297 TCP_EVT_DBG (TCP_EVT_CLOSE, tc);
298
Florin Corasb2215d62017-08-01 16:56:58 -0700299 /* Send/Program FIN if needed and switch state */
300 switch (tc->state)
301 {
302 case TCP_STATE_SYN_SENT:
303 tc->state = TCP_STATE_CLOSED;
304 break;
305 case TCP_STATE_SYN_RCVD:
306 tcp_send_fin (tc);
307 tc->state = TCP_STATE_FIN_WAIT_1;
308 break;
309 case TCP_STATE_ESTABLISHED:
310 if (!stream_session_tx_fifo_max_dequeue (&tc->connection))
311 tcp_send_fin (tc);
312 else
313 tc->flags |= TCP_CONN_FINPNDG;
314 tc->state = TCP_STATE_FIN_WAIT_1;
315 break;
316 case TCP_STATE_CLOSE_WAIT:
317 tcp_send_fin (tc);
318 tc->state = TCP_STATE_LAST_ACK;
319 break;
Florin Corasc87c91d2017-08-16 19:55:49 -0700320 case TCP_STATE_FIN_WAIT_1:
321 break;
Florin Corasb2215d62017-08-01 16:56:58 -0700322 default:
Florin Corasc87c91d2017-08-16 19:55:49 -0700323 clib_warning ("state: %u", tc->state);
Florin Corasb2215d62017-08-01 16:56:58 -0700324 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500325
Florin Coras6534b7a2017-07-18 05:38:03 -0400326 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500327
Florin Corasd79b41e2017-03-04 05:37:52 -0800328 /* If in CLOSED and WAITCLOSE timer is not set, delete connection now */
329 if (tc->timers[TCP_TIMER_WAITCLOSE] == TCP_TIMER_HANDLE_INVALID
330 && tc->state == TCP_STATE_CLOSED)
Dave Barach68b0fb02017-02-28 15:15:56 -0500331 tcp_connection_del (tc);
332}
333
334void
335tcp_session_close (u32 conn_index, u32 thread_index)
336{
337 tcp_connection_t *tc;
338 tc = tcp_connection_get (conn_index, thread_index);
339 tcp_connection_close (tc);
340}
341
342void
343tcp_session_cleanup (u32 conn_index, u32 thread_index)
344{
345 tcp_connection_t *tc;
346 tc = tcp_connection_get (conn_index, thread_index);
Florin Corasd79b41e2017-03-04 05:37:52 -0800347
348 /* Wait for the session tx events to clear */
349 tc->state = TCP_STATE_CLOSED;
Florin Coras6534b7a2017-07-18 05:38:03 -0400350 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc);
Florin Corasd79b41e2017-03-04 05:37:52 -0800351 tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, TCP_CLEANUP_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -0500352}
353
354void *
355ip_interface_get_first_ip (u32 sw_if_index, u8 is_ip4)
356{
357 ip_lookup_main_t *lm4 = &ip4_main.lookup_main;
358 ip_lookup_main_t *lm6 = &ip6_main.lookup_main;
359 ip_interface_address_t *ia = 0;
360
361 if (is_ip4)
362 {
363 /* *INDENT-OFF* */
364 foreach_ip_interface_address (lm4, ia, sw_if_index, 1 /* unnumbered */ ,
365 ({
366 return ip_interface_address_get_address (lm4, ia);
367 }));
368 /* *INDENT-ON* */
369 }
370 else
371 {
372 /* *INDENT-OFF* */
373 foreach_ip_interface_address (lm6, ia, sw_if_index, 1 /* unnumbered */ ,
374 ({
rootc9d1c5b2017-08-15 12:58:31 -0400375 ip6_address_t *rv;
376 rv = ip_interface_address_get_address (lm6, ia);
377 /* Trying to use a link-local ip6 src address is a fool's errand */
378 if (!ip6_address_is_link_local_unicast (rv))
379 return rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500380 }));
381 /* *INDENT-ON* */
382 }
383
384 return 0;
385}
386
Florin Corase04c2992017-03-01 08:17:34 -0800387#define PORT_MASK ((1 << 16)- 1)
Dave Barach68b0fb02017-02-28 15:15:56 -0500388/**
389 * Allocate local port and add if successful add entry to local endpoint
390 * table to mark the pair as used.
391 */
Florin Coras6534b7a2017-07-18 05:38:03 -0400392int
Florin Coras68810622017-07-24 17:40:28 -0700393tcp_allocate_local_port (ip46_address_t * ip)
Dave Barach68b0fb02017-02-28 15:15:56 -0500394{
Florin Coras68810622017-07-24 17:40:28 -0700395 tcp_main_t *tm = vnet_get_tcp_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500396 transport_endpoint_t *tep;
Florin Coras66b11312017-07-31 17:18:03 -0700397 u32 tei;
Florin Corasd79b41e2017-03-04 05:37:52 -0800398 u16 min = 1024, max = 65535; /* XXX configurable ? */
Florin Coras66b11312017-07-31 17:18:03 -0700399 int tries, limit;
Dave Barach68b0fb02017-02-28 15:15:56 -0500400
Florin Coras66b11312017-07-31 17:18:03 -0700401 limit = max - min;
Dave Barach68b0fb02017-02-28 15:15:56 -0500402
Dave Barach2c25a622017-06-26 11:35:07 -0400403 /* Only support active opens from thread 0 */
404 ASSERT (vlib_get_thread_index () == 0);
405
Dave Barach68b0fb02017-02-28 15:15:56 -0500406 /* Search for first free slot */
Florin Coras66b11312017-07-31 17:18:03 -0700407 for (tries = 0; tries < limit; tries++)
Dave Barach68b0fb02017-02-28 15:15:56 -0500408 {
Florin Corase04c2992017-03-01 08:17:34 -0800409 u16 port = 0;
410
411 /* Find a port in the specified range */
412 while (1)
Dave Barach68b0fb02017-02-28 15:15:56 -0500413 {
Florin Coras66b11312017-07-31 17:18:03 -0700414 port = random_u32 (&tm->port_allocator_seed) & PORT_MASK;
Florin Corase04c2992017-03-01 08:17:34 -0800415 if (PREDICT_TRUE (port >= min && port < max))
416 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500417 }
418
Florin Corase04c2992017-03-01 08:17:34 -0800419 /* Look it up */
Florin Coras68810622017-07-24 17:40:28 -0700420 tei = transport_endpoint_lookup (&tm->local_endpoints_table, ip, port);
Florin Corase04c2992017-03-01 08:17:34 -0800421 /* If not found, we're done */
422 if (tei == TRANSPORT_ENDPOINT_INVALID_INDEX)
423 {
Florin Coras68810622017-07-24 17:40:28 -0700424 clib_spinlock_lock_if_init (&tm->local_endpoints_lock);
425 tep = transport_endpoint_new ();
426 clib_memcpy (&tep->ip, ip, sizeof (*ip));
427 tep->port = port;
Florin Corase04c2992017-03-01 08:17:34 -0800428 transport_endpoint_table_add (&tm->local_endpoints_table, tep,
429 tep - tm->local_endpoints);
Florin Coras68810622017-07-24 17:40:28 -0700430 clib_spinlock_unlock_if_init (&tm->local_endpoints_lock);
431
Florin Corase04c2992017-03-01 08:17:34 -0800432 return tep->port;
433 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500434 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500435 return -1;
436}
437
438/**
439 * Initialize all connection timers as invalid
440 */
441void
442tcp_connection_timers_init (tcp_connection_t * tc)
443{
444 int i;
445
446 /* Set all to invalid */
447 for (i = 0; i < TCP_N_TIMERS; i++)
448 {
449 tc->timers[i] = TCP_TIMER_HANDLE_INVALID;
450 }
451
452 tc->rto = TCP_RTO_INIT;
453}
454
455/**
456 * Stop all connection timers
457 */
458void
459tcp_connection_timers_reset (tcp_connection_t * tc)
460{
461 int i;
462 for (i = 0; i < TCP_N_TIMERS; i++)
463 {
464 tcp_timer_reset (tc, i);
465 }
466}
467
Dave Barach2c25a622017-06-26 11:35:07 -0400468#if 0
Florin Corasf6359c82017-06-19 12:26:09 -0400469typedef struct ip4_tcp_hdr
470{
471 ip4_header_t ip;
472 tcp_header_t tcp;
473} ip4_tcp_hdr_t;
474
475typedef struct ip6_tcp_hdr
476{
477 ip6_header_t ip;
478 tcp_header_t tcp;
479} ip6_tcp_hdr_t;
480
481static void
482tcp_connection_select_lb_bucket (tcp_connection_t * tc, const dpo_id_t * dpo,
483 dpo_id_t * result)
484{
485 const dpo_id_t *choice;
486 load_balance_t *lb;
487 int hash;
488
489 lb = load_balance_get (dpo->dpoi_index);
490 if (tc->c_is_ip4)
491 {
492 ip4_tcp_hdr_t hdr;
493 memset (&hdr, 0, sizeof (hdr));
494 hdr.ip.protocol = IP_PROTOCOL_TCP;
495 hdr.ip.address_pair.src.as_u32 = tc->c_lcl_ip.ip4.as_u32;
496 hdr.ip.address_pair.dst.as_u32 = tc->c_rmt_ip.ip4.as_u32;
497 hdr.tcp.src_port = tc->c_lcl_port;
498 hdr.tcp.dst_port = tc->c_rmt_port;
499 hash = ip4_compute_flow_hash (&hdr.ip, lb->lb_hash_config);
500 }
501 else
502 {
503 ip6_tcp_hdr_t hdr;
504 memset (&hdr, 0, sizeof (hdr));
505 hdr.ip.protocol = IP_PROTOCOL_TCP;
506 clib_memcpy (&hdr.ip.src_address, &tc->c_lcl_ip.ip6,
507 sizeof (ip6_address_t));
508 clib_memcpy (&hdr.ip.dst_address, &tc->c_rmt_ip.ip6,
509 sizeof (ip6_address_t));
510 hdr.tcp.src_port = tc->c_lcl_port;
511 hdr.tcp.dst_port = tc->c_rmt_port;
512 hash = ip6_compute_flow_hash (&hdr.ip, lb->lb_hash_config);
513 }
514 choice = load_balance_get_bucket_i (lb, hash & lb->lb_n_buckets_minus_1);
515 dpo_copy (result, choice);
516}
517
518fib_node_index_t
519tcp_lookup_rmt_in_fib (tcp_connection_t * tc)
520{
521 fib_prefix_t prefix;
Florin Coras04e53442017-07-16 17:12:15 -0700522 u32 fib_index;
Florin Corasf6359c82017-06-19 12:26:09 -0400523
524 clib_memcpy (&prefix.fp_addr, &tc->c_rmt_ip, sizeof (prefix.fp_addr));
525 prefix.fp_proto = tc->c_is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
526 prefix.fp_len = tc->c_is_ip4 ? 32 : 128;
Florin Coras04e53442017-07-16 17:12:15 -0700527 fib_index = fib_table_find (prefix.fp_proto, tc->c_vrf);
528 return fib_table_lookup (fib_index, &prefix);
Florin Corasf6359c82017-06-19 12:26:09 -0400529}
530
531static int
532tcp_connection_stack_on_fib_entry (tcp_connection_t * tc)
533{
534 dpo_id_t choice = DPO_INVALID;
535 u32 output_node_index;
536 fib_entry_t *fe;
537
538 fe = fib_entry_get (tc->c_rmt_fei);
539 if (fe->fe_lb.dpoi_type != DPO_LOAD_BALANCE)
540 return -1;
541
542 tcp_connection_select_lb_bucket (tc, &fe->fe_lb, &choice);
543
544 output_node_index =
545 tc->c_is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
546 dpo_stack_from_node (output_node_index, &tc->c_rmt_dpo, &choice);
547 return 0;
548}
549
550/** Stack tcp connection on peer's fib entry.
551 *
552 * This ultimately populates the dpo the connection will use to send packets.
553 */
554static void
555tcp_connection_fib_attach (tcp_connection_t * tc)
556{
557 tc->c_rmt_fei = tcp_lookup_rmt_in_fib (tc);
558
559 ASSERT (tc->c_rmt_fei != FIB_NODE_INDEX_INVALID);
560
561 tcp_connection_stack_on_fib_entry (tc);
562}
Dave Barach2c25a622017-06-26 11:35:07 -0400563#endif /* 0 */
Florin Corasf6359c82017-06-19 12:26:09 -0400564
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400565/**
566 * Initialize connection send variables.
567 */
568void
569tcp_init_snd_vars (tcp_connection_t * tc)
570{
571 u32 time_now;
572
573 /* Set random initial sequence */
574 time_now = tcp_time_now ();
575 tc->iss = random_u32 (&time_now);
576 tc->snd_una = tc->iss;
577 tc->snd_nxt = tc->iss + 1;
578 tc->snd_una_max = tc->snd_nxt;
579}
580
Dave Barach68b0fb02017-02-28 15:15:56 -0500581/** Initialize tcp connection variables
582 *
583 * Should be called after having received a msg from the peer, i.e., a SYN or
584 * a SYNACK, such that connection options have already been exchanged. */
585void
586tcp_connection_init_vars (tcp_connection_t * tc)
587{
588 tcp_connection_timers_init (tc);
Florin Corasc8343412017-05-04 14:25:50 -0700589 tcp_init_mss (tc);
Florin Coras6792ec02017-03-13 03:49:51 -0700590 scoreboard_init (&tc->sack_sb);
Dave Barach68b0fb02017-02-28 15:15:56 -0500591 tcp_cc_init (tc);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400592 if (tc->state == TCP_STATE_SYN_RCVD)
593 tcp_init_snd_vars (tc);
594
Dave Barach2c25a622017-06-26 11:35:07 -0400595 // tcp_connection_fib_attach (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500596}
597
598int
Florin Coras04e53442017-07-16 17:12:15 -0700599tcp_connection_open (transport_endpoint_t * rmt)
Dave Barach68b0fb02017-02-28 15:15:56 -0500600{
601 tcp_main_t *tm = vnet_get_tcp_main ();
602 tcp_connection_t *tc;
603 fib_prefix_t prefix;
Florin Corasf6359c82017-06-19 12:26:09 -0400604 fib_node_index_t fei;
Florin Coras04e53442017-07-16 17:12:15 -0700605 u32 sw_if_index, fib_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500606 ip46_address_t lcl_addr;
Florin Coras6534b7a2017-07-18 05:38:03 -0400607 int lcl_port;
Dave Barach68b0fb02017-02-28 15:15:56 -0500608
609 /*
610 * Find the local address and allocate port
611 */
612 memset (&lcl_addr, 0, sizeof (lcl_addr));
613
614 /* Find a FIB path to the destination */
Florin Coras04e53442017-07-16 17:12:15 -0700615 clib_memcpy (&prefix.fp_addr, &rmt->ip, sizeof (rmt->ip));
616 prefix.fp_proto = rmt->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
617 prefix.fp_len = rmt->is_ip4 ? 32 : 128;
Dave Barach68b0fb02017-02-28 15:15:56 -0500618
Florin Coras04e53442017-07-16 17:12:15 -0700619 fib_index = fib_table_find (prefix.fp_proto, rmt->vrf);
tjancigaffef4042017-08-24 11:57:21 +0200620 if (fib_index == (u32) ~ 0)
621 {
622 clib_warning ("no fib table");
623 return -1;
624 }
625
Florin Coras04e53442017-07-16 17:12:15 -0700626 fei = fib_table_lookup (fib_index, &prefix);
Dave Barach68b0fb02017-02-28 15:15:56 -0500627
628 /* Couldn't find route to destination. Bail out. */
629 if (fei == FIB_NODE_INDEX_INVALID)
Florin Coras6534b7a2017-07-18 05:38:03 -0400630 {
631 clib_warning ("no route to destination");
632 return -1;
633 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500634
635 sw_if_index = fib_entry_get_resolving_interface (fei);
636
637 if (sw_if_index == (u32) ~ 0)
Florin Coras6534b7a2017-07-18 05:38:03 -0400638 {
639 clib_warning ("no resolving interface for %U", format_ip46_address,
Florin Coras04e53442017-07-16 17:12:15 -0700640 &rmt->ip, IP46_TYPE_IP4);
Florin Coras6534b7a2017-07-18 05:38:03 -0400641 return -1;
642 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500643
Florin Coras04e53442017-07-16 17:12:15 -0700644 if (rmt->is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500645 {
646 ip4_address_t *ip4;
Dave Barach2c25a622017-06-26 11:35:07 -0400647 int index;
648 if (vec_len (tm->ip4_src_addresses))
649 {
650 index = tm->last_v4_address_rotor++;
651 if (tm->last_v4_address_rotor >= vec_len (tm->ip4_src_addresses))
652 tm->last_v4_address_rotor = 0;
653 lcl_addr.ip4.as_u32 = tm->ip4_src_addresses[index].as_u32;
654 }
655 else
656 {
657 ip4 = ip_interface_get_first_ip (sw_if_index, 1);
658 lcl_addr.ip4.as_u32 = ip4->as_u32;
659 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500660 }
661 else
662 {
663 ip6_address_t *ip6;
Dave Barach2c25a622017-06-26 11:35:07 -0400664 int index;
665
666 if (vec_len (tm->ip6_src_addresses))
667 {
668 index = tm->last_v6_address_rotor++;
669 if (tm->last_v6_address_rotor >= vec_len (tm->ip6_src_addresses))
670 tm->last_v6_address_rotor = 0;
671 clib_memcpy (&lcl_addr.ip6, &tm->ip6_src_addresses[index],
672 sizeof (*ip6));
673 }
674 else
675 {
676 ip6 = ip_interface_get_first_ip (sw_if_index, 0);
rootc9d1c5b2017-08-15 12:58:31 -0400677 if (ip6 == 0)
678 {
679 clib_warning ("no routable ip6 addresses on %U",
680 format_vnet_sw_if_index_name, vnet_get_main (),
681 sw_if_index);
682 return -1;
683 }
684
Dave Barach2c25a622017-06-26 11:35:07 -0400685 clib_memcpy (&lcl_addr.ip6, ip6, sizeof (*ip6));
686 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500687 }
688
689 /* Allocate source port */
Florin Coras68810622017-07-24 17:40:28 -0700690 lcl_port = tcp_allocate_local_port (&lcl_addr);
Dave Barach68b0fb02017-02-28 15:15:56 -0500691 if (lcl_port < 1)
Florin Corase04c2992017-03-01 08:17:34 -0800692 {
693 clib_warning ("Failed to allocate src port");
694 return -1;
695 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500696
697 /*
698 * Create connection and send SYN
699 */
Florin Coras68810622017-07-24 17:40:28 -0700700 clib_spinlock_lock_if_init (&tm->half_open_lock);
Florin Coras04e53442017-07-16 17:12:15 -0700701 tc = tcp_half_open_connection_new ();
Florin Coras04e53442017-07-16 17:12:15 -0700702 clib_memcpy (&tc->c_rmt_ip, &rmt->ip, sizeof (ip46_address_t));
Dave Barach68b0fb02017-02-28 15:15:56 -0500703 clib_memcpy (&tc->c_lcl_ip, &lcl_addr, sizeof (ip46_address_t));
Florin Coras04e53442017-07-16 17:12:15 -0700704 tc->c_rmt_port = clib_host_to_net_u16 (rmt->port);
Dave Barach68b0fb02017-02-28 15:15:56 -0500705 tc->c_lcl_port = clib_host_to_net_u16 (lcl_port);
Florin Coras04e53442017-07-16 17:12:15 -0700706 tc->c_is_ip4 = rmt->is_ip4;
Florin Coras68810622017-07-24 17:40:28 -0700707 tc->c_transport_proto = TRANSPORT_PROTO_TCP;
Florin Coras04e53442017-07-16 17:12:15 -0700708 tc->c_vrf = rmt->vrf;
Dave Barach68b0fb02017-02-28 15:15:56 -0500709 /* The other connection vars will be initialized after SYN ACK */
710 tcp_connection_timers_init (tc);
711
Florin Corase69f4952017-03-07 10:06:24 -0800712 TCP_EVT_DBG (TCP_EVT_OPEN, tc);
Florin Coras6534b7a2017-07-18 05:38:03 -0400713 tc->state = TCP_STATE_SYN_SENT;
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400714 tcp_init_snd_vars (tc);
Florin Coras6534b7a2017-07-18 05:38:03 -0400715 tcp_send_syn (tc);
Florin Coras68810622017-07-24 17:40:28 -0700716 clib_spinlock_unlock_if_init (&tm->half_open_lock);
Florin Corase69f4952017-03-07 10:06:24 -0800717
Dave Barach68b0fb02017-02-28 15:15:56 -0500718 return tc->c_c_index;
719}
720
721int
Florin Coras04e53442017-07-16 17:12:15 -0700722tcp_session_open (transport_endpoint_t * tep)
Dave Barach68b0fb02017-02-28 15:15:56 -0500723{
Florin Coras04e53442017-07-16 17:12:15 -0700724 return tcp_connection_open (tep);
Dave Barach68b0fb02017-02-28 15:15:56 -0500725}
726
Florin Corase69f4952017-03-07 10:06:24 -0800727const char *tcp_dbg_evt_str[] = {
728#define _(sym, str) str,
729 foreach_tcp_dbg_evt
730#undef _
731};
732
733const char *tcp_fsm_states[] = {
734#define _(sym, str) str,
735 foreach_tcp_fsm_state
736#undef _
737};
738
Dave Barach68b0fb02017-02-28 15:15:56 -0500739u8 *
Florin Corase69f4952017-03-07 10:06:24 -0800740format_tcp_state (u8 * s, va_list * args)
741{
Florin Corasbb292f42017-05-19 09:49:19 -0700742 u32 state = va_arg (*args, u32);
Florin Corase69f4952017-03-07 10:06:24 -0800743
Florin Corasbb292f42017-05-19 09:49:19 -0700744 if (state < TCP_N_STATES)
745 s = format (s, "%s", tcp_fsm_states[state]);
Florin Corase69f4952017-03-07 10:06:24 -0800746 else
Florin Corasbb292f42017-05-19 09:49:19 -0700747 s = format (s, "UNKNOWN (%d (0x%x))", state, state);
Florin Corase69f4952017-03-07 10:06:24 -0800748 return s;
749}
750
751const char *tcp_conn_timers[] = {
752#define _(sym, str) str,
753 foreach_tcp_timer
754#undef _
755};
756
757u8 *
758format_tcp_timers (u8 * s, va_list * args)
759{
760 tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
Florin Coras93992a92017-05-24 18:03:56 -0700761 int i, last = -1;
Florin Corase69f4952017-03-07 10:06:24 -0800762
763 for (i = 0; i < TCP_N_TIMERS; i++)
764 if (tc->timers[i] != TCP_TIMER_HANDLE_INVALID)
765 last = i;
766
767 s = format (s, "[");
768 for (i = 0; i < last; i++)
769 {
770 if (tc->timers[i] != TCP_TIMER_HANDLE_INVALID)
771 s = format (s, "%s,", tcp_conn_timers[i]);
772 }
773
Florin Coras93992a92017-05-24 18:03:56 -0700774 if (last >= 0)
Florin Corase69f4952017-03-07 10:06:24 -0800775 s = format (s, "%s]", tcp_conn_timers[i]);
776 else
777 s = format (s, "]");
778
779 return s;
780}
781
782u8 *
Florin Corasbb292f42017-05-19 09:49:19 -0700783format_tcp_congestion_status (u8 * s, va_list * args)
784{
785 tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
786 if (tcp_in_recovery (tc))
787 s = format (s, "recovery");
788 else if (tcp_in_fastrecovery (tc))
789 s = format (s, "fastrecovery");
790 else
791 s = format (s, "none");
792 return s;
793}
794
795u8 *
796format_tcp_vars (u8 * s, va_list * args)
797{
798 tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
Dave Barach2c25a622017-06-26 11:35:07 -0400799 s = format (s, " snd_una %u snd_nxt %u snd_una_max %u",
Florin Corasbb292f42017-05-19 09:49:19 -0700800 tc->snd_una - tc->iss, tc->snd_nxt - tc->iss,
801 tc->snd_una_max - tc->iss);
802 s = format (s, " rcv_nxt %u rcv_las %u\n",
803 tc->rcv_nxt - tc->irs, tc->rcv_las - tc->irs);
804 s = format (s, " snd_wnd %u rcv_wnd %u snd_wl1 %u snd_wl2 %u\n",
805 tc->snd_wnd, tc->rcv_wnd, tc->snd_wl1 - tc->irs,
806 tc->snd_wl2 - tc->iss);
Florin Coras93992a92017-05-24 18:03:56 -0700807 s = format (s, " flight size %u send space %u rcv_wnd_av %d\n",
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400808 tcp_flight_size (tc), tcp_available_output_snd_space (tc),
Florin Coras93992a92017-05-24 18:03:56 -0700809 tcp_rcv_wnd_available (tc));
Florin Corasbb292f42017-05-19 09:49:19 -0700810 s = format (s, " cong %U ", format_tcp_congestion_status, tc);
811 s = format (s, "cwnd %u ssthresh %u rtx_bytes %u bytes_acked %u\n",
Florin Coras93992a92017-05-24 18:03:56 -0700812 tc->cwnd, tc->ssthresh, tc->snd_rxt_bytes, tc->bytes_acked);
Dave Barach2c25a622017-06-26 11:35:07 -0400813 s = format (s, " prev_ssthresh %u snd_congestion %u dupack %u",
Florin Coras93992a92017-05-24 18:03:56 -0700814 tc->prev_ssthresh, tc->snd_congestion - tc->iss,
815 tc->rcv_dupacks);
Dave Barach2c25a622017-06-26 11:35:07 -0400816 s = format (s, " limited_transmit %u\n", tc->limited_transmit - tc->iss);
817 s = format (s, " tsecr %u tsecr_last_ack %u\n", tc->rcv_opts.tsecr,
818 tc->tsecr_last_ack);
Florin Corasbb292f42017-05-19 09:49:19 -0700819 s = format (s, " rto %u rto_boff %u srtt %u rttvar %u rtt_ts %u ", tc->rto,
820 tc->rto_boff, tc->srtt, tc->rttvar, tc->rtt_ts);
821 s = format (s, "rtt_seq %u\n", tc->rtt_seq);
Dave Barach2c25a622017-06-26 11:35:07 -0400822 s = format (s, " tsval_recent %u tsval_recent_age %u\n", tc->tsval_recent,
823 tcp_time_now () - tc->tsval_recent_age);
Florin Coras1f152cd2017-08-18 19:28:03 -0700824 s = format (s, " scoreboard: %U\n", format_tcp_scoreboard, &tc->sack_sb,
825 tc);
Florin Corasbb292f42017-05-19 09:49:19 -0700826 if (vec_len (tc->snd_sacks))
827 s = format (s, " sacks tx: %U\n", format_tcp_sacks, tc);
828
829 return s;
830}
831
832u8 *
833format_tcp_connection_id (u8 * s, va_list * args)
Florin Corase69f4952017-03-07 10:06:24 -0800834{
835 tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
Florin Corasa5464812017-04-19 13:00:05 -0700836 if (!tc)
837 return s;
Florin Corase69f4952017-03-07 10:06:24 -0800838 if (tc->c_is_ip4)
839 {
840 s = format (s, "[#%d][%s] %U:%d->%U:%d", tc->c_thread_index, "T",
841 format_ip4_address, &tc->c_lcl_ip4,
842 clib_net_to_host_u16 (tc->c_lcl_port), format_ip4_address,
843 &tc->c_rmt_ip4, clib_net_to_host_u16 (tc->c_rmt_port));
844 }
845 else
846 {
847 s = format (s, "[#%d][%s] %U:%d->%U:%d", tc->c_thread_index, "T",
848 format_ip6_address, &tc->c_lcl_ip6,
849 clib_net_to_host_u16 (tc->c_lcl_port), format_ip6_address,
850 &tc->c_rmt_ip6, clib_net_to_host_u16 (tc->c_rmt_port));
851 }
852
853 return s;
854}
855
856u8 *
Florin Corasbb292f42017-05-19 09:49:19 -0700857format_tcp_connection (u8 * s, va_list * args)
Florin Corase69f4952017-03-07 10:06:24 -0800858{
859 tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
Florin Corasbb292f42017-05-19 09:49:19 -0700860 u32 verbose = va_arg (*args, u32);
861
Florin Corasc87c91d2017-08-16 19:55:49 -0700862 if (!tc)
863 return s;
Florin Corasbb292f42017-05-19 09:49:19 -0700864 s = format (s, "%-50U", format_tcp_connection_id, tc);
865 if (verbose)
866 {
867 s = format (s, "%-15U", format_tcp_state, tc->state);
868 if (verbose > 1)
869 s = format (s, " %U\n%U", format_tcp_timers, tc, format_tcp_vars, tc);
870 }
Florin Coras3eb50622017-07-13 01:24:57 -0400871
Florin Corase69f4952017-03-07 10:06:24 -0800872 return s;
873}
874
875u8 *
876format_tcp_session (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -0500877{
878 u32 tci = va_arg (*args, u32);
879 u32 thread_index = va_arg (*args, u32);
Florin Corasbb292f42017-05-19 09:49:19 -0700880 u32 verbose = va_arg (*args, u32);
Dave Barach68b0fb02017-02-28 15:15:56 -0500881 tcp_connection_t *tc;
882
883 tc = tcp_connection_get (tci, thread_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700884 if (tc)
Florin Coras93992a92017-05-24 18:03:56 -0700885 s = format (s, "%U", format_tcp_connection, tc, verbose);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700886 else
Florin Coras1f152cd2017-08-18 19:28:03 -0700887 s = format (s, "empty\n");
Florin Coras93992a92017-05-24 18:03:56 -0700888 return s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500889}
890
891u8 *
Florin Corase69f4952017-03-07 10:06:24 -0800892format_tcp_listener_session (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -0500893{
894 u32 tci = va_arg (*args, u32);
895 tcp_connection_t *tc = tcp_listener_get (tci);
Florin Corasbb292f42017-05-19 09:49:19 -0700896 return format (s, "%U", format_tcp_connection_id, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500897}
898
899u8 *
Florin Corase69f4952017-03-07 10:06:24 -0800900format_tcp_half_open_session (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -0500901{
902 u32 tci = va_arg (*args, u32);
903 tcp_connection_t *tc = tcp_half_open_connection_get (tci);
Florin Corasbb292f42017-05-19 09:49:19 -0700904 return format (s, "%U", format_tcp_connection_id, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500905}
906
Florin Coras06d11012017-05-17 14:21:51 -0700907u8 *
908format_tcp_sacks (u8 * s, va_list * args)
909{
910 tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
911 sack_block_t *sacks = tc->snd_sacks;
912 sack_block_t *block;
Dave Barach2c25a622017-06-26 11:35:07 -0400913 int i, len = 0;
914
915 len = vec_len (sacks);
916 for (i = 0; i < len - 1; i++)
917 {
918 block = &sacks[i];
919 s = format (s, " start %u end %u\n", block->start - tc->irs,
920 block->end - tc->irs);
921 }
922 if (len)
923 {
924 block = &sacks[len - 1];
925 s = format (s, " start %u end %u", block->start - tc->irs,
926 block->end - tc->irs);
927 }
Florin Coras06d11012017-05-17 14:21:51 -0700928 return s;
929}
930
931u8 *
Florin Coras3eb50622017-07-13 01:24:57 -0400932format_tcp_rcv_sacks (u8 * s, va_list * args)
933{
934 tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
935 sack_block_t *sacks = tc->rcv_opts.sacks;
936 sack_block_t *block;
937 int i, len = 0;
938
939 len = vec_len (sacks);
940 for (i = 0; i < len - 1; i++)
941 {
942 block = &sacks[i];
943 s = format (s, " start %u end %u\n", block->start - tc->iss,
944 block->end - tc->iss);
945 }
946 if (len)
947 {
948 block = &sacks[len - 1];
949 s = format (s, " start %u end %u", block->start - tc->iss,
950 block->end - tc->iss);
951 }
952 return s;
953}
954
955u8 *
Florin Coras06d11012017-05-17 14:21:51 -0700956format_tcp_sack_hole (u8 * s, va_list * args)
957{
958 sack_scoreboard_hole_t *hole = va_arg (*args, sack_scoreboard_hole_t *);
Florin Coras1f152cd2017-08-18 19:28:03 -0700959 tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
960 if (tc)
961 s = format (s, " [%u, %u]", hole->start - tc->iss, hole->end - tc->iss);
962 else
963 s = format (s, " [%u, %u]", hole->start, hole->end);
Florin Coras06d11012017-05-17 14:21:51 -0700964 return s;
965}
966
967u8 *
968format_tcp_scoreboard (u8 * s, va_list * args)
969{
970 sack_scoreboard_t *sb = va_arg (*args, sack_scoreboard_t *);
Florin Coras1f152cd2017-08-18 19:28:03 -0700971 tcp_connection_t *tc = va_arg (*args, tcp_connection_t *);
Florin Coras06d11012017-05-17 14:21:51 -0700972 sack_scoreboard_hole_t *hole;
Florin Coras93992a92017-05-24 18:03:56 -0700973 s = format (s, "sacked_bytes %u last_sacked_bytes %u lost_bytes %u\n",
974 sb->sacked_bytes, sb->last_sacked_bytes, sb->lost_bytes);
975 s = format (s, " last_bytes_delivered %u high_sacked %u snd_una_adv %u\n",
976 sb->last_bytes_delivered, sb->high_sacked, sb->snd_una_adv);
977 s = format (s, " cur_rxt_hole %u high_rxt %u rescue_rxt %u",
978 sb->cur_rxt_hole, sb->high_rxt, sb->rescue_rxt);
979
Florin Coras06d11012017-05-17 14:21:51 -0700980 hole = scoreboard_first_hole (sb);
Florin Coras93992a92017-05-24 18:03:56 -0700981 if (hole)
982 s = format (s, "\n head %u tail %u holes:\n", sb->head, sb->tail);
983
Florin Coras06d11012017-05-17 14:21:51 -0700984 while (hole)
985 {
Florin Coras1f152cd2017-08-18 19:28:03 -0700986 s = format (s, "%U", format_tcp_sack_hole, hole, tc);
Florin Coras06d11012017-05-17 14:21:51 -0700987 hole = scoreboard_next_hole (sb, hole);
988 }
Florin Coras3eb50622017-07-13 01:24:57 -0400989
Florin Coras06d11012017-05-17 14:21:51 -0700990 return s;
991}
992
Dave Barach68b0fb02017-02-28 15:15:56 -0500993transport_connection_t *
994tcp_session_get_transport (u32 conn_index, u32 thread_index)
995{
996 tcp_connection_t *tc = tcp_connection_get (conn_index, thread_index);
997 return &tc->connection;
998}
999
1000transport_connection_t *
1001tcp_half_open_session_get_transport (u32 conn_index)
1002{
1003 tcp_connection_t *tc = tcp_half_open_connection_get (conn_index);
1004 return &tc->connection;
1005}
1006
Florin Corasc8343412017-05-04 14:25:50 -07001007/**
1008 * Compute maximum segment size for session layer.
1009 *
1010 * Since the result needs to be the actual data length, it first computes
1011 * the tcp options to be used in the next burst and subtracts their
1012 * length from the connection's snd_mss.
1013 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001014u16
1015tcp_session_send_mss (transport_connection_t * trans_conn)
1016{
1017 tcp_connection_t *tc = (tcp_connection_t *) trans_conn;
Florin Corasc8343412017-05-04 14:25:50 -07001018
1019 /* Ensure snd_mss does accurately reflect the amount of data we can push
1020 * in a segment. This also makes sure that options are updated according to
1021 * the current state of the connection. */
1022 tcp_update_snd_mss (tc);
1023
Dave Barach68b0fb02017-02-28 15:15:56 -05001024 return tc->snd_mss;
1025}
1026
Florin Coras3af90fc2017-05-03 21:09:42 -07001027always_inline u32
1028tcp_round_snd_space (tcp_connection_t * tc, u32 snd_space)
1029{
Dave Barach2c25a622017-06-26 11:35:07 -04001030 if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss))
Florin Coras3af90fc2017-05-03 21:09:42 -07001031 {
Florin Corasdb84e572017-05-09 18:54:52 -07001032 return tc->snd_wnd <= snd_space ? tc->snd_wnd : 0;
Florin Coras3af90fc2017-05-03 21:09:42 -07001033 }
1034
Florin Coras1f152cd2017-08-18 19:28:03 -07001035 /* If not snd_wnd constrained and we can't write at least a segment,
1036 * don't try at all */
Dave Barach2c25a622017-06-26 11:35:07 -04001037 if (PREDICT_FALSE (snd_space < tc->snd_mss))
Florin Coras9d063042017-09-14 03:08:00 -04001038 return snd_space < tc->cwnd ? 0 : snd_space;
Florin Coras3af90fc2017-05-03 21:09:42 -07001039
1040 /* round down to mss multiple */
1041 return snd_space - (snd_space % tc->snd_mss);
1042}
1043
Florin Coras6792ec02017-03-13 03:49:51 -07001044/**
1045 * Compute tx window session is allowed to fill.
Florin Corasbb292f42017-05-19 09:49:19 -07001046 *
1047 * Takes into account available send space, snd_mss and the congestion
1048 * state of the connection. If possible, the value returned is a multiple
1049 * of snd_mss.
1050 *
1051 * @param tc tcp connection
1052 * @return number of bytes session is allowed to write
Florin Coras6792ec02017-03-13 03:49:51 -07001053 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001054u32
Florin Corasbb292f42017-05-19 09:49:19 -07001055tcp_snd_space (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001056{
Florin Corasf03a59a2017-06-09 21:07:32 -07001057 int snd_space, snt_limited;
Florin Coras6792ec02017-03-13 03:49:51 -07001058
Florin Corasf03a59a2017-06-09 21:07:32 -07001059 if (PREDICT_TRUE (tcp_in_cong_recovery (tc) == 0))
Florin Coras6792ec02017-03-13 03:49:51 -07001060 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001061 snd_space = tcp_available_output_snd_space (tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07001062
1063 /* If we haven't gotten dupacks or if we did and have gotten sacked
1064 * bytes then we can still send as per Limited Transmit (RFC3042) */
1065 if (PREDICT_FALSE (tc->rcv_dupacks != 0
1066 && (tcp_opts_sack_permitted (tc)
1067 && tc->sack_sb.last_sacked_bytes == 0)))
1068 {
1069 if (tc->rcv_dupacks == 1 && tc->limited_transmit != tc->snd_nxt)
1070 tc->limited_transmit = tc->snd_nxt;
1071 ASSERT (seq_leq (tc->limited_transmit, tc->snd_nxt));
1072
1073 snt_limited = tc->snd_nxt - tc->limited_transmit;
1074 snd_space = clib_max (2 * tc->snd_mss - snt_limited, 0);
1075 }
Florin Coras3af90fc2017-05-03 21:09:42 -07001076 return tcp_round_snd_space (tc, snd_space);
1077 }
Florin Coras6792ec02017-03-13 03:49:51 -07001078
Florin Coras3af90fc2017-05-03 21:09:42 -07001079 if (tcp_in_recovery (tc))
1080 {
1081 tc->snd_nxt = tc->snd_una_max;
Florin Coras1f152cd2017-08-18 19:28:03 -07001082 snd_space = tcp_available_snd_wnd (tc) - tc->snd_rxt_bytes
Florin Coras3af90fc2017-05-03 21:09:42 -07001083 - (tc->snd_una_max - tc->snd_congestion);
Florin Corasc8343412017-05-04 14:25:50 -07001084 if (snd_space <= 0 || (tc->snd_una_max - tc->snd_una) >= tc->snd_wnd)
Florin Coras6792ec02017-03-13 03:49:51 -07001085 return 0;
Florin Coras3af90fc2017-05-03 21:09:42 -07001086 return tcp_round_snd_space (tc, snd_space);
Florin Coras6792ec02017-03-13 03:49:51 -07001087 }
1088
Florin Coras1f152cd2017-08-18 19:28:03 -07001089 /* RFC 5681: When previously unsent data is available and the new value of
1090 * cwnd and the receiver's advertised window allow, a TCP SHOULD send 1*SMSS
1091 * bytes of previously unsent data. */
1092 if (tcp_in_fastrecovery (tc) && !tcp_fastrecovery_sent_1_smss (tc))
Florin Coras6792ec02017-03-13 03:49:51 -07001093 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001094 if (tcp_available_output_snd_space (tc) < tc->snd_mss)
1095 return 0;
Florin Coras6792ec02017-03-13 03:49:51 -07001096 tcp_fastrecovery_1_smss_on (tc);
1097 return tc->snd_mss;
1098 }
1099
1100 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001101}
1102
1103u32
Florin Corasbb292f42017-05-19 09:49:19 -07001104tcp_session_send_space (transport_connection_t * trans_conn)
1105{
1106 tcp_connection_t *tc = (tcp_connection_t *) trans_conn;
Florin Coras1f152cd2017-08-18 19:28:03 -07001107 return clib_min (tcp_snd_space (tc),
1108 tc->snd_wnd - (tc->snd_nxt - tc->snd_una));
Florin Corasbb292f42017-05-19 09:49:19 -07001109}
1110
Florin Coras93992a92017-05-24 18:03:56 -07001111i32
1112tcp_rcv_wnd_available (tcp_connection_t * tc)
1113{
1114 return (i32) tc->rcv_wnd - (tc->rcv_nxt - tc->rcv_las);
1115}
1116
Florin Corasbb292f42017-05-19 09:49:19 -07001117u32
Florin Corasd79b41e2017-03-04 05:37:52 -08001118tcp_session_tx_fifo_offset (transport_connection_t * trans_conn)
Dave Barach68b0fb02017-02-28 15:15:56 -05001119{
1120 tcp_connection_t *tc = (tcp_connection_t *) trans_conn;
Florin Coras6792ec02017-03-13 03:49:51 -07001121
1122 ASSERT (seq_geq (tc->snd_nxt, tc->snd_una));
1123
1124 /* This still works if fast retransmit is on */
Florin Corasd79b41e2017-03-04 05:37:52 -08001125 return (tc->snd_nxt - tc->snd_una);
Dave Barach68b0fb02017-02-28 15:15:56 -05001126}
1127
1128/* *INDENT-OFF* */
Florin Coras04e53442017-07-16 17:12:15 -07001129const static transport_proto_vft_t tcp_proto = {
1130 .bind = tcp_session_bind,
Florin Corase69f4952017-03-07 10:06:24 -08001131 .unbind = tcp_session_unbind,
Dave Barach68b0fb02017-02-28 15:15:56 -05001132 .push_header = tcp_push_header,
1133 .get_connection = tcp_session_get_transport,
1134 .get_listener = tcp_session_get_listener,
1135 .get_half_open = tcp_half_open_session_get_transport,
Florin Coras04e53442017-07-16 17:12:15 -07001136 .open = tcp_session_open,
Dave Barach68b0fb02017-02-28 15:15:56 -05001137 .close = tcp_session_close,
1138 .cleanup = tcp_session_cleanup,
1139 .send_mss = tcp_session_send_mss,
1140 .send_space = tcp_session_send_space,
Florin Corasd79b41e2017-03-04 05:37:52 -08001141 .tx_fifo_offset = tcp_session_tx_fifo_offset,
Florin Corase69f4952017-03-07 10:06:24 -08001142 .format_connection = format_tcp_session,
1143 .format_listener = format_tcp_listener_session,
1144 .format_half_open = format_tcp_half_open_session,
Dave Barach68b0fb02017-02-28 15:15:56 -05001145};
1146/* *INDENT-ON* */
1147
1148void
1149tcp_timer_keep_handler (u32 conn_index)
1150{
Damjan Marion586afd72017-04-05 19:18:20 +02001151 u32 thread_index = vlib_get_thread_index ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001152 tcp_connection_t *tc;
1153
Damjan Marion586afd72017-04-05 19:18:20 +02001154 tc = tcp_connection_get (conn_index, thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001155 tc->timers[TCP_TIMER_KEEP] = TCP_TIMER_HANDLE_INVALID;
1156
1157 tcp_connection_close (tc);
1158}
1159
1160void
1161tcp_timer_establish_handler (u32 conn_index)
1162{
1163 tcp_connection_t *tc;
Dave Barach68b0fb02017-02-28 15:15:56 -05001164
1165 tc = tcp_half_open_connection_get (conn_index);
Florin Corasab0289a2017-08-14 11:25:25 -07001166 if (tc)
1167 {
1168 ASSERT (tc->state == TCP_STATE_SYN_SENT);
Florin Corasab0289a2017-08-14 11:25:25 -07001169 stream_session_connect_notify (&tc->connection, 1 /* fail */ );
Florin Coras9d063042017-09-14 03:08:00 -04001170 TCP_DBG ("establish pop: %U", format_tcp_connection, tc, 2);
Florin Corasab0289a2017-08-14 11:25:25 -07001171 }
1172 else
1173 {
1174 tc = tcp_connection_get (conn_index, vlib_get_thread_index ());
Dave Barachb7f1faa2017-08-29 11:43:37 -04001175 /* note: the connection may have already disappeared */
1176 if (PREDICT_FALSE (tc == 0))
1177 return;
Florin Coras9d063042017-09-14 03:08:00 -04001178 TCP_DBG ("establish pop: %U", format_tcp_connection, tc, 2);
Florin Corasab0289a2017-08-14 11:25:25 -07001179 ASSERT (tc->state == TCP_STATE_SYN_RCVD);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001180 /* Start cleanup. App wasn't notified yet so use delete notify as
1181 * opposed to delete to cleanup session layer state. */
1182 stream_session_delete_notify (&tc->connection);
Florin Corasab0289a2017-08-14 11:25:25 -07001183 }
rootc9d1c5b2017-08-15 12:58:31 -04001184 tc->timers[TCP_TIMER_ESTABLISH] = TCP_TIMER_HANDLE_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05001185 tcp_connection_cleanup (tc);
1186}
1187
1188void
Florin Corasd79b41e2017-03-04 05:37:52 -08001189tcp_timer_waitclose_handler (u32 conn_index)
Dave Barach68b0fb02017-02-28 15:15:56 -05001190{
Damjan Marion586afd72017-04-05 19:18:20 +02001191 u32 thread_index = vlib_get_thread_index ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001192 tcp_connection_t *tc;
1193
Damjan Marion586afd72017-04-05 19:18:20 +02001194 tc = tcp_connection_get (conn_index, thread_index);
Florin Coras68810622017-07-24 17:40:28 -07001195 if (!tc)
1196 return;
Florin Corasd79b41e2017-03-04 05:37:52 -08001197 tc->timers[TCP_TIMER_WAITCLOSE] = TCP_TIMER_HANDLE_INVALID;
1198
1199 /* Session didn't come back with a close(). Send FIN either way
1200 * and switch to LAST_ACK. */
1201 if (tc->state == TCP_STATE_CLOSE_WAIT)
1202 {
1203 if (tc->flags & TCP_CONN_FINSNT)
1204 {
1205 clib_warning ("FIN was sent and still in CLOSE WAIT. Weird!");
1206 }
1207
1208 tcp_send_fin (tc);
1209 tc->state = TCP_STATE_LAST_ACK;
1210
1211 /* Make sure we don't wait in LAST ACK forever */
1212 tcp_timer_set (tc, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
1213
1214 /* Don't delete the connection yet */
1215 return;
1216 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001217
1218 tcp_connection_del (tc);
1219}
1220
1221/* *INDENT-OFF* */
1222static timer_expiration_handler *timer_expiration_handlers[TCP_N_TIMERS] =
1223{
1224 tcp_timer_retransmit_handler,
1225 tcp_timer_delack_handler,
Florin Coras3e350af2017-03-30 02:54:28 -07001226 tcp_timer_persist_handler,
Dave Barach68b0fb02017-02-28 15:15:56 -05001227 tcp_timer_keep_handler,
Florin Corasd79b41e2017-03-04 05:37:52 -08001228 tcp_timer_waitclose_handler,
Dave Barach68b0fb02017-02-28 15:15:56 -05001229 tcp_timer_retransmit_syn_handler,
1230 tcp_timer_establish_handler
1231};
1232/* *INDENT-ON* */
1233
1234static void
1235tcp_expired_timers_dispatch (u32 * expired_timers)
1236{
1237 int i;
1238 u32 connection_index, timer_id;
1239
1240 for (i = 0; i < vec_len (expired_timers); i++)
1241 {
1242 /* Get session index and timer id */
1243 connection_index = expired_timers[i] & 0x0FFFFFFF;
1244 timer_id = expired_timers[i] >> 28;
1245
Florin Corase69f4952017-03-07 10:06:24 -08001246 TCP_EVT_DBG (TCP_EVT_TIMER_POP, connection_index, timer_id);
1247
Dave Barach68b0fb02017-02-28 15:15:56 -05001248 /* Handle expiration */
1249 (*timer_expiration_handlers[timer_id]) (connection_index);
1250 }
1251}
1252
1253void
1254tcp_initialize_timer_wheels (tcp_main_t * tm)
1255{
1256 tw_timer_wheel_16t_2w_512sl_t *tw;
Florin Corasa5464812017-04-19 13:00:05 -07001257 /* *INDENT-OFF* */
1258 foreach_vlib_main (({
1259 tw = &tm->timer_wheels[ii];
Dave Barach68b0fb02017-02-28 15:15:56 -05001260 tw_timer_wheel_init_16t_2w_512sl (tw, tcp_expired_timers_dispatch,
1261 100e-3 /* timer period 100ms */ , ~0);
Florin Corasa5464812017-04-19 13:00:05 -07001262 tw->last_run_time = vlib_time_now (this_vlib_main);
1263 }));
1264 /* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05001265}
1266
1267clib_error_t *
Florin Corasa0b34a72017-03-07 01:20:52 -08001268tcp_main_enable (vlib_main_t * vm)
Dave Barach68b0fb02017-02-28 15:15:56 -05001269{
Dave Barach68b0fb02017-02-28 15:15:56 -05001270 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Corasa0b34a72017-03-07 01:20:52 -08001271 ip_protocol_info_t *pi;
1272 ip_main_t *im = &ip_main;
Dave Barach68b0fb02017-02-28 15:15:56 -05001273 vlib_thread_main_t *vtm = vlib_get_thread_main ();
1274 clib_error_t *error = 0;
1275 u32 num_threads;
Dave Barachb7f1faa2017-08-29 11:43:37 -04001276 int thread;
Dave Barach2c25a622017-06-26 11:35:07 -04001277 tcp_connection_t *tc __attribute__ ((unused));
Florin Coras66b11312017-07-31 17:18:03 -07001278 u32 preallocated_connections_per_thread;
Dave Barach68b0fb02017-02-28 15:15:56 -05001279
Dave Barach68b0fb02017-02-28 15:15:56 -05001280 if ((error = vlib_call_init_function (vm, ip_main_init)))
1281 return error;
1282 if ((error = vlib_call_init_function (vm, ip4_lookup_init)))
1283 return error;
1284 if ((error = vlib_call_init_function (vm, ip6_lookup_init)))
1285 return error;
1286
1287 /*
1288 * Registrations
1289 */
1290
1291 /* Register with IP */
1292 pi = ip_get_protocol_info (im, IP_PROTOCOL_TCP);
1293 if (pi == 0)
1294 return clib_error_return (0, "TCP protocol info AWOL");
1295 pi->format_header = format_tcp_header;
1296 pi->unformat_pg_edit = unformat_pg_tcp_header;
1297
1298 ip4_register_protocol (IP_PROTOCOL_TCP, tcp4_input_node.index);
rootc9d1c5b2017-08-15 12:58:31 -04001299 ip6_register_protocol (IP_PROTOCOL_TCP, tcp6_input_node.index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001300
Florin Coras04e53442017-07-16 17:12:15 -07001301 /* Register as transport with session layer */
Florin Coras68810622017-07-24 17:40:28 -07001302 session_register_transport (TRANSPORT_PROTO_TCP, 1, &tcp_proto);
1303 session_register_transport (TRANSPORT_PROTO_TCP, 0, &tcp_proto);
Dave Barach68b0fb02017-02-28 15:15:56 -05001304
1305 /*
1306 * Initialize data structures
1307 */
1308
1309 num_threads = 1 /* main thread */ + vtm->n_threads;
1310 vec_validate (tm->connections, num_threads - 1);
1311
Dave Barach2c25a622017-06-26 11:35:07 -04001312 /*
Florin Coras66b11312017-07-31 17:18:03 -07001313 * Preallocate connections. Assume that thread 0 won't
1314 * use preallocated threads when running multi-core
Dave Barach2c25a622017-06-26 11:35:07 -04001315 */
Florin Coras66b11312017-07-31 17:18:03 -07001316 if (num_threads == 1)
Dave Barach2c25a622017-06-26 11:35:07 -04001317 {
Florin Coras66b11312017-07-31 17:18:03 -07001318 thread = 0;
1319 preallocated_connections_per_thread = tm->preallocated_connections;
1320 }
1321 else
1322 {
1323 thread = 1;
1324 preallocated_connections_per_thread =
1325 tm->preallocated_connections / (num_threads - 1);
1326 }
1327 for (; thread < num_threads; thread++)
1328 {
Dave Barachb7f1faa2017-08-29 11:43:37 -04001329 if (preallocated_connections_per_thread)
1330 pool_init_fixed (tm->connections[thread],
1331 preallocated_connections_per_thread);
Dave Barach2c25a622017-06-26 11:35:07 -04001332 }
1333
1334 /*
Dave Barachb7f1faa2017-08-29 11:43:37 -04001335 * Use a preallocated half-open connection pool?
Dave Barach2c25a622017-06-26 11:35:07 -04001336 */
Dave Barachb7f1faa2017-08-29 11:43:37 -04001337 if (tm->preallocated_half_open_connections)
1338 pool_init_fixed (tm->half_open_connections,
1339 tm->preallocated_half_open_connections);
Dave Barach2c25a622017-06-26 11:35:07 -04001340
Dave Barach68b0fb02017-02-28 15:15:56 -05001341 /* Initialize per worker thread tx buffers (used for control messages) */
1342 vec_validate (tm->tx_buffers, num_threads - 1);
1343
1344 /* Initialize timer wheels */
1345 vec_validate (tm->timer_wheels, num_threads - 1);
1346 tcp_initialize_timer_wheels (tm);
1347
Dave Barach68b0fb02017-02-28 15:15:56 -05001348 /* Initialize clocks per tick for TCP timestamp. Used to compute
1349 * monotonically increasing timestamps. */
1350 tm->tstamp_ticks_per_clock = vm->clib_time.seconds_per_clock
1351 / TCP_TSTAMP_RESOLUTION;
1352
Dave Barachd84ba852017-08-22 17:56:46 -04001353 if (tm->local_endpoints_table_buckets == 0)
1354 tm->local_endpoints_table_buckets = 250000;
1355 if (tm->local_endpoints_table_memory == 0)
1356 tm->local_endpoints_table_memory = 512 << 20;
1357
Dave Barach68b0fb02017-02-28 15:15:56 -05001358 clib_bihash_init_24_8 (&tm->local_endpoints_table, "local endpoint table",
Dave Barachd84ba852017-08-22 17:56:46 -04001359 tm->local_endpoints_table_buckets,
1360 tm->local_endpoints_table_memory);
Florin Coras66b11312017-07-31 17:18:03 -07001361
1362 /* Initialize [port-allocator] random number seed */
1363 tm->port_allocator_seed = (u32) clib_cpu_time_now ();
1364
Florin Coras04e53442017-07-16 17:12:15 -07001365 if (num_threads > 1)
Florin Coras68810622017-07-24 17:40:28 -07001366 {
1367 clib_spinlock_init (&tm->half_open_lock);
1368 clib_spinlock_init (&tm->local_endpoints_lock);
1369 }
Florin Coras66b11312017-07-31 17:18:03 -07001370
1371 vec_validate (tm->tx_frames[0], num_threads - 1);
1372 vec_validate (tm->tx_frames[1], num_threads - 1);
Florin Coras9d063042017-09-14 03:08:00 -04001373 vec_validate (tm->ip_lookup_tx_frames[0], num_threads - 1);
1374 vec_validate (tm->ip_lookup_tx_frames[1], num_threads - 1);
Florin Coras66b11312017-07-31 17:18:03 -07001375
Florin Corasb2215d62017-08-01 16:56:58 -07001376 tm->bytes_per_buffer = vlib_buffer_free_list_buffer_size
1377 (vm, VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX);
Florin Coras82d3ec82017-08-14 08:10:42 -07001378
1379 vec_validate (tm->time_now, num_threads - 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001380 return error;
1381}
1382
Florin Corasa0b34a72017-03-07 01:20:52 -08001383clib_error_t *
1384vnet_tcp_enable_disable (vlib_main_t * vm, u8 is_en)
1385{
1386 if (is_en)
1387 {
1388 if (tcp_main.is_enabled)
1389 return 0;
1390
1391 return tcp_main_enable (vm);
1392 }
1393 else
1394 {
1395 tcp_main.is_enabled = 0;
1396 }
1397
1398 return 0;
1399}
1400
Pierre Pfister7fe51f32017-09-20 08:48:36 +02001401void
1402tcp_punt_unknown (vlib_main_t * vm, u8 is_ip4, u8 is_add)
1403{
1404 tcp_main_t *tm = &tcp_main;
1405 if (is_ip4)
1406 tm->punt_unknown4 = is_add;
1407 else
1408 tm->punt_unknown6 = is_add;
1409}
1410
Florin Corasa0b34a72017-03-07 01:20:52 -08001411clib_error_t *
1412tcp_init (vlib_main_t * vm)
1413{
1414 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Corasa0b34a72017-03-07 01:20:52 -08001415 tm->is_enabled = 0;
Dave Barach3bbcfab2017-08-15 19:03:44 -04001416 tcp_api_reference ();
Florin Corasa0b34a72017-03-07 01:20:52 -08001417 return 0;
1418}
1419
Dave Barach68b0fb02017-02-28 15:15:56 -05001420VLIB_INIT_FUNCTION (tcp_init);
1421
Dave Barach2c25a622017-06-26 11:35:07 -04001422static clib_error_t *
1423tcp_config_fn (vlib_main_t * vm, unformat_input_t * input)
1424{
1425 tcp_main_t *tm = vnet_get_tcp_main ();
Dave Barachd84ba852017-08-22 17:56:46 -04001426 u64 tmp;
Dave Barach2c25a622017-06-26 11:35:07 -04001427
1428 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1429 {
1430 if (unformat
1431 (input, "preallocated-connections %d",
1432 &tm->preallocated_connections))
1433 ;
1434 else if (unformat (input, "preallocated-half-open-connections %d",
1435 &tm->preallocated_half_open_connections))
1436 ;
Dave Barachd84ba852017-08-22 17:56:46 -04001437 else if (unformat (input, "local-endpoints-table-memory %U",
1438 unformat_memory_size, &tmp))
1439 {
1440 if (tmp >= 0x100000000)
1441 return clib_error_return (0, "memory size %llx (%lld) too large",
1442 tmp, tmp);
1443 tm->local_endpoints_table_memory = tmp;
1444 }
1445 else if (unformat (input, "local-endpoints-table-buckets %d",
1446 &tm->local_endpoints_table_buckets))
1447 ;
1448
1449
Dave Barach2c25a622017-06-26 11:35:07 -04001450 else
1451 return clib_error_return (0, "unknown input `%U'",
1452 format_unformat_error, input);
1453 }
1454 return 0;
1455}
1456
1457VLIB_CONFIG_FUNCTION (tcp_config_fn, "tcp");
1458
Dave Barach3bbcfab2017-08-15 19:03:44 -04001459
1460/**
1461 * \brief Configure an ipv4 source address range
1462 * @param vm vlib_main_t pointer
1463 * @param start first ipv4 address in the source address range
1464 * @param end last ipv4 address in the source address range
1465 * @param table_id VRF / table ID, 0 for the default FIB
1466 * @return 0 if all OK, else an error indication from api_errno.h
1467 */
1468
1469int
1470tcp_configure_v4_source_address_range (vlib_main_t * vm,
1471 ip4_address_t * start,
1472 ip4_address_t * end, u32 table_id)
1473{
1474 tcp_main_t *tm = vnet_get_tcp_main ();
1475 vnet_main_t *vnm = vnet_get_main ();
1476 u32 start_host_byte_order, end_host_byte_order;
1477 fib_prefix_t prefix;
1478 vnet_sw_interface_t *si;
1479 fib_node_index_t fei;
1480 u32 fib_index = 0;
1481 u32 sw_if_index;
1482 int rv;
1483 int vnet_proxy_arp_add_del (ip4_address_t * lo_addr,
1484 ip4_address_t * hi_addr, u32 fib_index,
1485 int is_del);
1486
1487 memset (&prefix, 0, sizeof (prefix));
1488
1489 fib_index = fib_table_find (FIB_PROTOCOL_IP4, table_id);
1490
1491 if (fib_index == ~0)
1492 return VNET_API_ERROR_NO_SUCH_FIB;
1493
1494 start_host_byte_order = clib_net_to_host_u32 (start->as_u32);
1495 end_host_byte_order = clib_net_to_host_u32 (end->as_u32);
1496
1497 /* sanity check for reversed args or some such */
1498 if ((end_host_byte_order - start_host_byte_order) > (10 << 10))
1499 return VNET_API_ERROR_INVALID_ARGUMENT;
1500
1501 /* Lookup the last address, to identify the interface involved */
1502 prefix.fp_len = 32;
1503 prefix.fp_proto = FIB_PROTOCOL_IP4;
1504 memcpy (&prefix.fp_addr.ip4, end, sizeof (ip4_address_t));
1505
1506 fei = fib_table_lookup (fib_index, &prefix);
1507
1508 /* Couldn't find route to destination. Bail out. */
1509 if (fei == FIB_NODE_INDEX_INVALID)
1510 return VNET_API_ERROR_NEXT_HOP_NOT_IN_FIB;
1511
1512 sw_if_index = fib_entry_get_resolving_interface (fei);
1513
1514 /* Enable proxy arp on the interface */
1515 si = vnet_get_sw_interface (vnm, sw_if_index);
1516 si->flags |= VNET_SW_INTERFACE_FLAG_PROXY_ARP;
1517
1518 /* Configure proxy arp across the range */
1519 rv = vnet_proxy_arp_add_del (start, end, fib_index, 0 /* is_del */ );
1520
1521 if (rv)
1522 return rv;
1523
1524 do
1525 {
1526 dpo_id_t dpo = DPO_INVALID;
1527
1528 vec_add1 (tm->ip4_src_addresses, start[0]);
1529
1530 /* Add local adjacencies for the range */
1531
1532 receive_dpo_add_or_lock (DPO_PROTO_IP4, ~0 /* sw_if_index */ ,
1533 NULL, &dpo);
1534 prefix.fp_len = 32;
1535 prefix.fp_proto = FIB_PROTOCOL_IP4;
1536 prefix.fp_addr.ip4.as_u32 = start->as_u32;
1537
1538 fib_table_entry_special_dpo_update (fib_index,
1539 &prefix,
1540 FIB_SOURCE_API,
1541 FIB_ENTRY_FLAG_EXCLUSIVE, &dpo);
1542 dpo_reset (&dpo);
1543
1544 start_host_byte_order++;
1545 start->as_u32 = clib_host_to_net_u32 (start_host_byte_order);
1546 }
1547 while (start_host_byte_order <= end_host_byte_order);
1548
1549 return 0;
1550}
1551
1552/**
1553 * \brief Configure an ipv6 source address range
1554 * @param vm vlib_main_t pointer
1555 * @param start first ipv6 address in the source address range
1556 * @param end last ipv6 address in the source address range
1557 * @param table_id VRF / table ID, 0 for the default FIB
1558 * @return 0 if all OK, else an error indication from api_errno.h
1559 */
1560
1561int
1562tcp_configure_v6_source_address_range (vlib_main_t * vm,
1563 ip6_address_t * start,
1564 ip6_address_t * end, u32 table_id)
1565{
1566 tcp_main_t *tm = vnet_get_tcp_main ();
1567 fib_prefix_t prefix;
1568 u32 fib_index = 0;
1569 fib_node_index_t fei;
1570 u32 sw_if_index;
1571
1572 memset (&prefix, 0, sizeof (prefix));
1573
1574 fib_index = fib_table_find (FIB_PROTOCOL_IP6, table_id);
1575
1576 if (fib_index == ~0)
1577 return VNET_API_ERROR_NO_SUCH_FIB;
1578
1579 while (1)
1580 {
1581 int i;
1582 ip6_address_t tmp;
1583 dpo_id_t dpo = DPO_INVALID;
1584
1585 /* Remember this address */
1586 vec_add1 (tm->ip6_src_addresses, start[0]);
1587
1588 /* Lookup the prefix, to identify the interface involved */
1589 prefix.fp_len = 128;
1590 prefix.fp_proto = FIB_PROTOCOL_IP6;
1591 memcpy (&prefix.fp_addr.ip6, start, sizeof (ip6_address_t));
1592
1593 fei = fib_table_lookup (fib_index, &prefix);
1594
1595 /* Couldn't find route to destination. Bail out. */
1596 if (fei == FIB_NODE_INDEX_INVALID)
1597 return VNET_API_ERROR_NEXT_HOP_NOT_IN_FIB;
1598
1599 sw_if_index = fib_entry_get_resolving_interface (fei);
1600
1601 if (sw_if_index == (u32) ~ 0)
1602 return VNET_API_ERROR_NO_MATCHING_INTERFACE;
1603
1604 /* Add a proxy neighbor discovery entry for this address */
1605 ip6_neighbor_proxy_add_del (sw_if_index, start, 0 /* is_del */ );
1606
1607 /* Add a receive adjacency for this address */
1608 receive_dpo_add_or_lock (DPO_PROTO_IP6, ~0 /* sw_if_index */ ,
1609 NULL, &dpo);
1610
1611 fib_table_entry_special_dpo_update (fib_index,
1612 &prefix,
1613 FIB_SOURCE_API,
1614 FIB_ENTRY_FLAG_EXCLUSIVE, &dpo);
1615 dpo_reset (&dpo);
1616
1617 /* Done with the entire range? */
1618 if (!memcmp (start, end, sizeof (start[0])))
1619 break;
1620
1621 /* Increment the address. DGMS. */
1622 tmp = start[0];
1623 for (i = 15; i >= 0; i--)
1624 {
1625 tmp.as_u8[i] += 1;
1626 if (tmp.as_u8[i] != 0)
1627 break;
1628 }
1629 start[0] = tmp;
1630 }
1631 return 0;
1632}
1633
Dave Barach2c25a622017-06-26 11:35:07 -04001634static clib_error_t *
1635tcp_src_address (vlib_main_t * vm,
1636 unformat_input_t * input, vlib_cli_command_t * cmd_arg)
1637{
Dave Barach2c25a622017-06-26 11:35:07 -04001638 ip4_address_t v4start, v4end;
1639 ip6_address_t v6start, v6end;
Dave Barach3bbcfab2017-08-15 19:03:44 -04001640 u32 table_id = 0;
Dave Barach2c25a622017-06-26 11:35:07 -04001641 int v4set = 0;
1642 int v6set = 0;
Dave Barach3bbcfab2017-08-15 19:03:44 -04001643 int rv;
Dave Barach2c25a622017-06-26 11:35:07 -04001644
1645 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1646 {
1647 if (unformat (input, "%U - %U", unformat_ip4_address, &v4start,
1648 unformat_ip4_address, &v4end))
1649 v4set = 1;
1650 else if (unformat (input, "%U", unformat_ip4_address, &v4start))
1651 {
1652 memcpy (&v4end, &v4start, sizeof (v4start));
1653 v4set = 1;
1654 }
1655 else if (unformat (input, "%U - %U", unformat_ip6_address, &v6start,
Dave Barach3bbcfab2017-08-15 19:03:44 -04001656 unformat_ip6_address, &v6end))
Dave Barach2c25a622017-06-26 11:35:07 -04001657 v6set = 1;
1658 else if (unformat (input, "%U", unformat_ip6_address, &v6start))
1659 {
Yoann Desmouceaux6b297aa2017-09-20 10:34:22 +02001660 memcpy (&v6end, &v6start, sizeof (v6start));
Dave Barach2c25a622017-06-26 11:35:07 -04001661 v6set = 1;
1662 }
Dave Barach3bbcfab2017-08-15 19:03:44 -04001663 else if (unformat (input, "fib-table %d", &table_id))
1664 ;
Dave Barach2c25a622017-06-26 11:35:07 -04001665 else
1666 break;
1667 }
1668
1669 if (!v4set && !v6set)
1670 return clib_error_return (0, "at least one v4 or v6 address required");
1671
1672 if (v4set)
1673 {
Dave Barach3bbcfab2017-08-15 19:03:44 -04001674 rv = tcp_configure_v4_source_address_range (vm, &v4start, &v4end,
1675 table_id);
1676 switch (rv)
Dave Barach2c25a622017-06-26 11:35:07 -04001677 {
Dave Barach3bbcfab2017-08-15 19:03:44 -04001678 case 0:
1679 break;
1680
1681 case VNET_API_ERROR_NO_SUCH_FIB:
1682 return clib_error_return (0, "Invalid table-id %d", table_id);
1683
1684 case VNET_API_ERROR_INVALID_ARGUMENT:
1685 return clib_error_return (0, "Invalid address range %U - %U",
1686 format_ip4_address, &v4start,
1687 format_ip4_address, &v4end);
1688 default:
1689 return clib_error_return (0, "error %d", rv);
1690 break;
Dave Barach2c25a622017-06-26 11:35:07 -04001691 }
Dave Barach2c25a622017-06-26 11:35:07 -04001692 }
1693 if (v6set)
1694 {
Dave Barach3bbcfab2017-08-15 19:03:44 -04001695 rv = tcp_configure_v6_source_address_range (vm, &v6start, &v6end,
1696 table_id);
1697 switch (rv)
1698 {
1699 case 0:
1700 break;
1701
1702 case VNET_API_ERROR_NO_SUCH_FIB:
1703 return clib_error_return (0, "Invalid table-id %d", table_id);
1704
1705 default:
1706 return clib_error_return (0, "error %d", rv);
1707 break;
1708 }
Dave Barach2c25a622017-06-26 11:35:07 -04001709 }
1710 return 0;
1711}
1712
1713/* *INDENT-OFF* */
1714VLIB_CLI_COMMAND (tcp_src_address_command, static) =
1715{
1716 .path = "tcp src-address",
1717 .short_help = "tcp src-address <ip-addr> [- <ip-addr>] add src address range",
1718 .function = tcp_src_address,
1719};
1720/* *INDENT-ON* */
1721
Florin Coras3eb50622017-07-13 01:24:57 -04001722static u8 *
1723tcp_scoreboard_dump_trace (u8 * s, sack_scoreboard_t * sb)
1724{
1725#if TCP_SCOREBOARD_TRACE
Dave Barach2c25a622017-06-26 11:35:07 -04001726
Florin Coras3eb50622017-07-13 01:24:57 -04001727 scoreboard_trace_elt_t *block;
1728 int i = 0;
1729
1730 if (!sb->trace)
1731 return s;
1732
1733 s = format (s, "scoreboard trace:");
1734 vec_foreach (block, sb->trace)
1735 {
1736 s = format (s, "{%u, %u, %u, %u, %u}, ", block->start, block->end,
1737 block->ack, block->snd_una_max, block->group);
1738 if ((++i % 3) == 0)
1739 s = format (s, "\n");
1740 }
1741 return s;
1742#else
1743 return 0;
1744#endif
1745}
1746
1747static clib_error_t *
1748tcp_show_scoreboard_trace_fn (vlib_main_t * vm, unformat_input_t * input,
1749 vlib_cli_command_t * cmd_arg)
1750{
1751 transport_connection_t *tconn = 0;
1752 tcp_connection_t *tc;
1753 u8 *s = 0;
1754 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1755 {
1756 if (unformat (input, "%U", unformat_transport_connection, &tconn,
1757 TRANSPORT_PROTO_TCP))
1758 ;
1759 else
1760 return clib_error_return (0, "unknown input `%U'",
1761 format_unformat_error, input);
1762 }
1763
1764 if (!TCP_SCOREBOARD_TRACE)
1765 {
1766 vlib_cli_output (vm, "scoreboard tracing not enabled");
1767 return 0;
1768 }
1769
1770 tc = tcp_get_connection_from_transport (tconn);
1771 s = tcp_scoreboard_dump_trace (s, &tc->sack_sb);
1772 vlib_cli_output (vm, "%v", s);
1773 return 0;
1774}
1775
1776/* *INDENT-OFF* */
1777VLIB_CLI_COMMAND (tcp_show_scoreboard_trace_command, static) =
1778{
1779 .path = "show tcp scoreboard trace",
1780 .short_help = "show tcp scoreboard trace <connection>",
1781 .function = tcp_show_scoreboard_trace_fn,
1782};
1783/* *INDENT-ON* */
1784
1785u8 *
1786tcp_scoreboard_replay (u8 * s, tcp_connection_t * tc, u8 verbose)
1787{
1788 int i, trace_len;
1789 scoreboard_trace_elt_t *trace;
1790 u32 next_ack, left, group, has_new_ack = 0;
1791 tcp_connection_t _dummy_tc, *dummy_tc = &_dummy_tc;
1792 sack_block_t *block;
1793
1794 if (!tc)
1795 return s;
1796
1797 memset (dummy_tc, 0, sizeof (*dummy_tc));
1798 tcp_connection_timers_init (dummy_tc);
1799 scoreboard_init (&dummy_tc->sack_sb);
1800 dummy_tc->rcv_opts.flags |= TCP_OPTS_FLAG_SACK;
1801
1802#if TCP_SCOREBOARD_TRACE
1803 trace = tc->sack_sb.trace;
1804 trace_len = vec_len (tc->sack_sb.trace);
1805#else
1806 trace = 0;
1807 trace_len = 0;
1808#endif
1809
1810 for (i = 0; i < trace_len; i++)
1811 {
1812 if (trace[i].ack != 0)
1813 {
1814 dummy_tc->snd_una = trace[i].ack - 1448;
1815 dummy_tc->snd_una_max = trace[i].ack;
1816 }
1817 }
1818
1819 left = 0;
1820 while (left < trace_len)
1821 {
1822 group = trace[left].group;
1823 vec_reset_length (dummy_tc->rcv_opts.sacks);
1824 has_new_ack = 0;
1825 while (trace[left].group == group)
1826 {
1827 if (trace[left].ack != 0)
1828 {
1829 if (verbose)
1830 s = format (s, "Adding ack %u, snd_una_max %u, segs: ",
1831 trace[left].ack, trace[left].snd_una_max);
1832 dummy_tc->snd_una_max = trace[left].snd_una_max;
1833 next_ack = trace[left].ack;
1834 has_new_ack = 1;
1835 }
1836 else
1837 {
1838 if (verbose)
1839 s = format (s, "[%u, %u], ", trace[left].start,
1840 trace[left].end);
1841 vec_add2 (dummy_tc->rcv_opts.sacks, block, 1);
1842 block->start = trace[left].start;
1843 block->end = trace[left].end;
1844 }
1845 left++;
1846 }
1847
1848 /* Push segments */
1849 tcp_rcv_sacks (dummy_tc, next_ack);
1850 if (has_new_ack)
1851 dummy_tc->snd_una = next_ack + dummy_tc->sack_sb.snd_una_adv;
1852
1853 if (verbose)
1854 s = format (s, "result: %U", format_tcp_scoreboard,
1855 &dummy_tc->sack_sb);
1856
1857 }
1858 s = format (s, "result: %U", format_tcp_scoreboard, &dummy_tc->sack_sb);
1859
1860 return s;
1861}
1862
1863static clib_error_t *
1864tcp_scoreboard_trace_fn (vlib_main_t * vm, unformat_input_t * input,
1865 vlib_cli_command_t * cmd_arg)
1866{
1867 transport_connection_t *tconn = 0;
1868 tcp_connection_t *tc = 0;
1869 u8 *str = 0;
1870 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1871 {
1872 if (unformat (input, "%U", unformat_transport_connection, &tconn,
1873 TRANSPORT_PROTO_TCP))
1874 ;
1875 else
1876 return clib_error_return (0, "unknown input `%U'",
1877 format_unformat_error, input);
1878 }
1879
1880 if (!TCP_SCOREBOARD_TRACE)
1881 {
1882 vlib_cli_output (vm, "scoreboard tracing not enabled");
1883 return 0;
1884 }
1885
1886 tc = tcp_get_connection_from_transport (tconn);
1887 if (!tc)
1888 {
1889 vlib_cli_output (vm, "connection not found");
1890 return 0;
1891 }
1892 str = tcp_scoreboard_replay (str, tc, 1);
1893 vlib_cli_output (vm, "%v", str);
1894 return 0;
1895}
1896
1897/* *INDENT-OFF* */
1898VLIB_CLI_COMMAND (tcp_replay_scoreboard_command, static) =
1899{
1900 .path = "tcp replay scoreboard",
1901 .short_help = "tcp replay scoreboard <connection>",
1902 .function = tcp_scoreboard_trace_fn,
1903};
1904/* *INDENT-ON* */
Dave Barach2c25a622017-06-26 11:35:07 -04001905
Pierre Pfister7fe51f32017-09-20 08:48:36 +02001906static clib_error_t *
1907show_tcp_punt_fn (vlib_main_t * vm, unformat_input_t * input,
1908 vlib_cli_command_t * cmd_arg)
1909{
1910 tcp_main_t *tm = vnet_get_tcp_main ();
1911 if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1912 return clib_error_return (0, "unknown input `%U'", format_unformat_error,
1913 input);
1914 vlib_cli_output (vm, "IPv4 TCP punt: %s",
1915 tm->punt_unknown4 ? "enabled" : "disabled");
1916 vlib_cli_output (vm, "IPv6 TCP punt: %s",
1917 tm->punt_unknown6 ? "enabled" : "disabled");
1918 return 0;
1919}
1920/* *INDENT-OFF* */
1921VLIB_CLI_COMMAND (show_tcp_punt_command, static) =
1922{
1923 .path = "show tcp punt",
1924 .short_help = "show tcp punt",
1925 .function = show_tcp_punt_fn,
1926};
1927/* *INDENT-ON* */
1928
Dave Barach68b0fb02017-02-28 15:15:56 -05001929/*
1930 * fd.io coding-style-patch-verification: ON
1931 *
1932 * Local Variables:
1933 * eval: (c-set-style "gnu")
1934 * End:
1935 */