blob: 2ac6a9b8d5519b3d4acda3f831883eb24621248b [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
16#ifndef _vnet_tcp_h_
17#define _vnet_tcp_h_
18
19#include <vnet/vnet.h>
20#include <vnet/ip/ip.h>
21#include <vnet/tcp/tcp_packet.h>
22#include <vnet/tcp/tcp_timer.h>
23#include <vnet/session/transport.h>
24#include <vnet/session/session.h>
Florin Corase69f4952017-03-07 10:06:24 -080025#include <vnet/tcp/tcp_debug.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050026
27#define TCP_TICK 10e-3 /**< TCP tick period (s) */
28#define THZ 1/TCP_TICK /**< TCP tick frequency */
29#define TCP_TSTAMP_RESOLUTION TCP_TICK /**< Time stamp resolution */
30#define TCP_PAWS_IDLE 24 * 24 * 60 * 60 * THZ /**< 24 days */
31#define TCP_MAX_OPTION_SPACE 40
32
Florin Coras6792ec02017-03-13 03:49:51 -070033#define TCP_DUPACK_THRESHOLD 3
34#define TCP_MAX_RX_FIFO_SIZE 2 << 20
35#define TCP_IW_N_SEGMENTS 10
36#define TCP_ALWAYS_ACK 0 /**< If on, we always ack */
Dave Barach68b0fb02017-02-28 15:15:56 -050037
38/** TCP FSM state definitions as per RFC793. */
39#define foreach_tcp_fsm_state \
40 _(CLOSED, "CLOSED") \
41 _(LISTEN, "LISTEN") \
42 _(SYN_SENT, "SYN_SENT") \
43 _(SYN_RCVD, "SYN_RCVD") \
44 _(ESTABLISHED, "ESTABLISHED") \
45 _(CLOSE_WAIT, "CLOSE_WAIT") \
46 _(FIN_WAIT_1, "FIN_WAIT_1") \
47 _(LAST_ACK, "LAST_ACK") \
48 _(CLOSING, "CLOSING") \
49 _(FIN_WAIT_2, "FIN_WAIT_2") \
50 _(TIME_WAIT, "TIME_WAIT")
51
52typedef enum _tcp_state
53{
54#define _(sym, str) TCP_STATE_##sym,
55 foreach_tcp_fsm_state
56#undef _
57 TCP_N_STATES
58} tcp_state_t;
59
60format_function_t format_tcp_state;
Dave Barach1f75cfd2017-04-14 16:46:44 -040061format_function_t format_tcp_flags;
Dave Barach68b0fb02017-02-28 15:15:56 -050062
63/** TCP timers */
64#define foreach_tcp_timer \
65 _(RETRANSMIT, "RETRANSMIT") \
66 _(DELACK, "DELAYED ACK") \
67 _(PERSIST, "PERSIST") \
68 _(KEEP, "KEEP") \
Florin Corasd79b41e2017-03-04 05:37:52 -080069 _(WAITCLOSE, "WAIT CLOSE") \
70 _(RETRANSMIT_SYN, "RETRANSMIT SYN") \
Dave Barach68b0fb02017-02-28 15:15:56 -050071 _(ESTABLISH, "ESTABLISH")
72
73typedef enum _tcp_timers
74{
75#define _(sym, str) TCP_TIMER_##sym,
76 foreach_tcp_timer
77#undef _
78 TCP_N_TIMERS
79} tcp_timers_e;
80
81typedef void (timer_expiration_handler) (u32 index);
82
83extern timer_expiration_handler tcp_timer_delack_handler;
84extern timer_expiration_handler tcp_timer_retransmit_handler;
Florin Coras3e350af2017-03-30 02:54:28 -070085extern timer_expiration_handler tcp_timer_persist_handler;
Dave Barach68b0fb02017-02-28 15:15:56 -050086extern timer_expiration_handler tcp_timer_retransmit_syn_handler;
87
88#define TCP_TIMER_HANDLE_INVALID ((u32) ~0)
89
90/* Timer delays as multiples of 100ms */
91#define TCP_TO_TIMER_TICK TCP_TICK*10 /* Period for converting from TCP
92 * ticks to timer units */
93#define TCP_DELACK_TIME 1 /* 0.1s */
94#define TCP_ESTABLISH_TIME 750 /* 75s */
95#define TCP_2MSL_TIME 300 /* 30s */
Florin Corasd79b41e2017-03-04 05:37:52 -080096#define TCP_CLOSEWAIT_TIME 1 /* 0.1s */
97#define TCP_CLEANUP_TIME 5 /* 0.5s Time to wait before cleanup */
Florin Coras5921f982017-04-03 18:00:00 -070098#define TCP_TIMER_PERSIST_MIN 2 /* 0.2s */
Dave Barach68b0fb02017-02-28 15:15:56 -050099
100#define TCP_RTO_MAX 60 * THZ /* Min max RTO (60s) as per RFC6298 */
101#define TCP_RTT_MAX 30 * THZ /* 30s (probably too much) */
102#define TCP_RTO_SYN_RETRIES 3 /* SYN retries without doubling RTO */
103#define TCP_RTO_INIT 1 * THZ /* Initial retransmit timer */
104
Dave Barach68b0fb02017-02-28 15:15:56 -0500105/** TCP connection flags */
106#define foreach_tcp_connection_flag \
Dave Barach68b0fb02017-02-28 15:15:56 -0500107 _(SNDACK, "Send ACK") \
Florin Corasd79b41e2017-03-04 05:37:52 -0800108 _(FINSNT, "FIN sent") \
Dave Barach68b0fb02017-02-28 15:15:56 -0500109 _(SENT_RCV_WND0, "Sent 0 receive window") \
110 _(RECOVERY, "Recovery on") \
Florin Coras6792ec02017-03-13 03:49:51 -0700111 _(FAST_RECOVERY, "Fast Recovery on") \
112 _(FR_1_SMSS, "Sent 1 SMSS")
Dave Barach68b0fb02017-02-28 15:15:56 -0500113
114typedef enum _tcp_connection_flag_bits
115{
116#define _(sym, str) TCP_CONN_##sym##_BIT,
117 foreach_tcp_connection_flag
118#undef _
119 TCP_CONN_N_FLAG_BITS
120} tcp_connection_flag_bits_e;
121
122typedef enum _tcp_connection_flag
123{
124#define _(sym, str) TCP_CONN_##sym = 1 << TCP_CONN_##sym##_BIT,
125 foreach_tcp_connection_flag
126#undef _
127 TCP_CONN_N_FLAGS
128} tcp_connection_flags_e;
129
130/** TCP buffer flags */
131#define foreach_tcp_buf_flag \
132 _ (ACK) /**< Sending ACK. */ \
133 _ (DUPACK) /**< Sending DUPACK. */ \
134
135enum
136{
137#define _(f) TCP_BUF_BIT_##f,
138 foreach_tcp_buf_flag
139#undef _
140 TCP_N_BUF_BITS,
141};
142
143enum
144{
145#define _(f) TCP_BUF_FLAG_##f = 1 << TCP_BUF_BIT_##f,
146 foreach_tcp_buf_flag
147#undef _
148};
149
150#define TCP_MAX_SACK_BLOCKS 5 /**< Max number of SACK blocks stored */
151#define TCP_INVALID_SACK_HOLE_INDEX ((u32)~0)
152
153typedef struct _sack_scoreboard_hole
154{
155 u32 next; /**< Index for next entry in linked list */
156 u32 prev; /**< Index for previous entry in linked list */
157 u32 start; /**< Start sequence number */
158 u32 end; /**< End sequence number */
159} sack_scoreboard_hole_t;
160
161typedef struct _sack_scoreboard
162{
163 sack_scoreboard_hole_t *holes; /**< Pool of holes */
Florin Coras6792ec02017-03-13 03:49:51 -0700164 u32 head; /**< Index of first entry */
165 u32 tail; /**< Index of last entry */
Dave Barach68b0fb02017-02-28 15:15:56 -0500166 u32 sacked_bytes; /**< Number of bytes sacked in sb */
Florin Coras6792ec02017-03-13 03:49:51 -0700167 u32 last_sacked_bytes; /**< Number of bytes last sacked */
168 u32 snd_una_adv; /**< Bytes to add to snd_una */
169 u32 max_byte_sacked; /**< Highest byte acked */
Dave Barach68b0fb02017-02-28 15:15:56 -0500170} sack_scoreboard_t;
171
172typedef enum _tcp_cc_algorithm_type
173{
174 TCP_CC_NEWRENO,
175} tcp_cc_algorithm_type_e;
176
177typedef struct _tcp_cc_algorithm tcp_cc_algorithm_t;
178
179typedef enum _tcp_cc_ack_t
180{
181 TCP_CC_ACK,
182 TCP_CC_DUPACK,
183 TCP_CC_PARTIALACK
184} tcp_cc_ack_t;
185
186typedef struct _tcp_connection
187{
188 transport_connection_t connection; /**< Common transport data. First! */
189
190 u8 state; /**< TCP state as per tcp_state_t */
191 u16 flags; /**< Connection flags (see tcp_conn_flags_e) */
192 u32 timers[TCP_N_TIMERS]; /**< Timer handles into timer wheel */
193
194 /* TODO RFC4898 */
195
196 /** Send sequence variables RFC793 */
197 u32 snd_una; /**< oldest unacknowledged sequence number */
198 u32 snd_una_max; /**< newest unacknowledged sequence number + 1*/
199 u32 snd_wnd; /**< send window */
200 u32 snd_wl1; /**< seq number used for last snd.wnd update */
201 u32 snd_wl2; /**< ack number used for last snd.wnd update */
202 u32 snd_nxt; /**< next seq number to be sent */
203
204 /** Receive sequence variables RFC793 */
205 u32 rcv_nxt; /**< next sequence number expected */
206 u32 rcv_wnd; /**< receive window we expect */
207
208 u32 rcv_las; /**< rcv_nxt at last ack sent/rcv_wnd update */
209 u32 iss; /**< initial sent sequence */
210 u32 irs; /**< initial remote sequence */
211
212 /* Options */
213 tcp_options_t opt; /**< TCP connection options parsed */
214 u8 rcv_wscale; /**< Window scale to advertise to peer */
215 u8 snd_wscale; /**< Window scale to use when sending */
216 u32 tsval_recent; /**< Last timestamp received */
217 u32 tsval_recent_age; /**< When last updated tstamp_recent*/
218
219 sack_block_t *snd_sacks; /**< Vector of SACKs to send. XXX Fixed size? */
220 sack_scoreboard_t sack_sb; /**< SACK "scoreboard" that tracks holes */
221
Florin Coras6792ec02017-03-13 03:49:51 -0700222 u16 rcv_dupacks; /**< Number of DUPACKs received */
Dave Barach68b0fb02017-02-28 15:15:56 -0500223 u8 snt_dupacks; /**< Number of DUPACKs sent in a burst */
224
225 /* Congestion control */
226 u32 cwnd; /**< Congestion window */
227 u32 ssthresh; /**< Slow-start threshold */
228 u32 prev_ssthresh; /**< ssthresh before congestion */
229 u32 bytes_acked; /**< Bytes acknowledged by current segment */
230 u32 rtx_bytes; /**< Retransmitted bytes */
Florin Corase69f4952017-03-07 10:06:24 -0800231 u32 tsecr_last_ack; /**< Timestamp echoed to us in last healthy ACK */
Florin Coras6792ec02017-03-13 03:49:51 -0700232 u32 snd_congestion; /**< snd_una_max when congestion is detected */
Dave Barach68b0fb02017-02-28 15:15:56 -0500233 tcp_cc_algorithm_t *cc_algo; /**< Congestion control algorithm */
234
235 /* RTT and RTO */
236 u32 rto; /**< Retransmission timeout */
237 u32 rto_boff; /**< Index for RTO backoff */
238 u32 srtt; /**< Smoothed RTT */
239 u32 rttvar; /**< Smoothed mean RTT difference. Approximates variance */
240 u32 rtt_ts; /**< Timestamp for tracked ACK */
241 u32 rtt_seq; /**< Sequence number for tracked ACK */
242
243 u16 snd_mss; /**< Send MSS */
244} tcp_connection_t;
245
246struct _tcp_cc_algorithm
247{
248 void (*rcv_ack) (tcp_connection_t * tc);
249 void (*rcv_cong_ack) (tcp_connection_t * tc, tcp_cc_ack_t ack);
250 void (*congestion) (tcp_connection_t * tc);
251 void (*recovered) (tcp_connection_t * tc);
252 void (*init) (tcp_connection_t * tc);
253};
254
255#define tcp_fastrecovery_on(tc) (tc)->flags |= TCP_CONN_FAST_RECOVERY
256#define tcp_fastrecovery_off(tc) (tc)->flags &= ~TCP_CONN_FAST_RECOVERY
Florin Coras3e350af2017-03-30 02:54:28 -0700257#define tcp_recovery_on(tc) (tc)->flags |= TCP_CONN_RECOVERY
258#define tcp_recovery_off(tc) (tc)->flags &= ~TCP_CONN_RECOVERY
Dave Barach68b0fb02017-02-28 15:15:56 -0500259#define tcp_in_fastrecovery(tc) ((tc)->flags & TCP_CONN_FAST_RECOVERY)
Florin Coras3e350af2017-03-30 02:54:28 -0700260#define tcp_in_recovery(tc) ((tc)->flags & (TCP_CONN_RECOVERY))
Dave Barach68b0fb02017-02-28 15:15:56 -0500261#define tcp_in_slowstart(tc) (tc->cwnd < tc->ssthresh)
Florin Coras6792ec02017-03-13 03:49:51 -0700262#define tcp_fastrecovery_sent_1_smss(tc) ((tc)->flags & TCP_CONN_FR_1_SMSS)
263#define tcp_fastrecovery_1_smss_on(tc) ((tc)->flags |= TCP_CONN_FR_1_SMSS)
264#define tcp_fastrecovery_1_smss_off(tc) ((tc)->flags &= ~TCP_CONN_FR_1_SMSS)
Dave Barach68b0fb02017-02-28 15:15:56 -0500265
Florin Coras3e350af2017-03-30 02:54:28 -0700266#define tcp_in_cong_recovery(tc) ((tc)->flags & \
267 (TCP_CONN_FAST_RECOVERY | TCP_CONN_RECOVERY))
268
269always_inline void
270tcp_cong_recovery_off (tcp_connection_t * tc)
271{
272 tc->flags &= ~(TCP_CONN_FAST_RECOVERY | TCP_CONN_RECOVERY);
273 tcp_fastrecovery_1_smss_off (tc);
274}
275
Dave Barach68b0fb02017-02-28 15:15:56 -0500276typedef enum
277{
278 TCP_IP4,
279 TCP_IP6,
280 TCP_N_AF,
281} tcp_af_t;
282
283typedef enum _tcp_error
284{
285#define tcp_error(n,s) TCP_ERROR_##n,
286#include <vnet/tcp/tcp_error.def>
287#undef tcp_error
288 TCP_N_ERROR,
289} tcp_error_t;
290
291typedef struct _tcp_lookup_dispatch
292{
293 u8 next, error;
294} tcp_lookup_dispatch_t;
295
296typedef struct _tcp_main
297{
298 /* Per-worker thread tcp connection pools */
299 tcp_connection_t **connections;
300
301 /* Pool of listeners. */
302 tcp_connection_t *listener_pool;
303
304 /** Dispatch table by state and flags */
305 tcp_lookup_dispatch_t dispatch_table[TCP_N_STATES][64];
306
307 u8 log2_tstamp_clocks_per_tick;
308 f64 tstamp_ticks_per_clock;
309
310 /** per-worker tx buffer free lists */
311 u32 **tx_buffers;
312
313 /* Per worker-thread timer wheel for connections timers */
314 tw_timer_wheel_16t_2w_512sl_t *timer_wheels;
315
Florin Coras6792ec02017-03-13 03:49:51 -0700316// /* Convenience per worker-thread vector of connections to DELACK */
317// u32 **delack_connections;
Dave Barach68b0fb02017-02-28 15:15:56 -0500318
319 /* Pool of half-open connections on which we've sent a SYN */
320 tcp_connection_t *half_open_connections;
321
322 /* Pool of local TCP endpoints */
323 transport_endpoint_t *local_endpoints;
324
325 /* Local endpoints lookup table */
326 transport_endpoint_table_t local_endpoints_table;
327
328 /* Congestion control algorithms registered */
329 tcp_cc_algorithm_t *cc_algos;
330
Florin Corasa0b34a72017-03-07 01:20:52 -0800331 /* Flag that indicates if stack is on or off */
332 u8 is_enabled;
333
Dave Barach68b0fb02017-02-28 15:15:56 -0500334 /* convenience */
335 vlib_main_t *vlib_main;
336 vnet_main_t *vnet_main;
337 ip4_main_t *ip4_main;
338 ip6_main_t *ip6_main;
339} tcp_main_t;
340
341extern tcp_main_t tcp_main;
342extern vlib_node_registration_t tcp4_input_node;
343extern vlib_node_registration_t tcp6_input_node;
344extern vlib_node_registration_t tcp4_output_node;
345extern vlib_node_registration_t tcp6_output_node;
346
347always_inline tcp_main_t *
348vnet_get_tcp_main ()
349{
350 return &tcp_main;
351}
352
Florin Corasa0b34a72017-03-07 01:20:52 -0800353clib_error_t *vnet_tcp_enable_disable (vlib_main_t * vm, u8 is_en);
354
Dave Barach68b0fb02017-02-28 15:15:56 -0500355always_inline tcp_connection_t *
356tcp_connection_get (u32 conn_index, u32 thread_index)
357{
Florin Corasd79b41e2017-03-04 05:37:52 -0800358 if (pool_is_free_index (tcp_main.connections[thread_index], conn_index))
359 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500360 return pool_elt_at_index (tcp_main.connections[thread_index], conn_index);
361}
362
363always_inline tcp_connection_t *
364tcp_connection_get_if_valid (u32 conn_index, u32 thread_index)
365{
366 if (tcp_main.connections[thread_index] == 0)
367 return 0;
368 if (pool_is_free_index (tcp_main.connections[thread_index], conn_index))
369 return 0;
370 return pool_elt_at_index (tcp_main.connections[thread_index], conn_index);
371}
372
373void tcp_connection_close (tcp_connection_t * tc);
374void tcp_connection_cleanup (tcp_connection_t * tc);
375void tcp_connection_del (tcp_connection_t * tc);
Florin Corasd79b41e2017-03-04 05:37:52 -0800376void tcp_connection_reset (tcp_connection_t * tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500377
Florin Corase69f4952017-03-07 10:06:24 -0800378u8 *format_tcp_connection (u8 * s, va_list * args);
379u8 *format_tcp_connection_verbose (u8 * s, va_list * args);
380
Dave Barach68b0fb02017-02-28 15:15:56 -0500381always_inline tcp_connection_t *
382tcp_listener_get (u32 tli)
383{
384 return pool_elt_at_index (tcp_main.listener_pool, tli);
385}
386
387always_inline tcp_connection_t *
388tcp_half_open_connection_get (u32 conn_index)
389{
390 return pool_elt_at_index (tcp_main.half_open_connections, conn_index);
391}
392
393void tcp_make_ack (tcp_connection_t * ts, vlib_buffer_t * b);
Florin Corasd79b41e2017-03-04 05:37:52 -0800394void tcp_make_fin (tcp_connection_t * tc, vlib_buffer_t * b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500395void tcp_make_synack (tcp_connection_t * ts, vlib_buffer_t * b);
396void tcp_send_reset (vlib_buffer_t * pkt, u8 is_ip4);
397void tcp_send_syn (tcp_connection_t * tc);
398void tcp_send_fin (tcp_connection_t * tc);
399void tcp_set_snd_mss (tcp_connection_t * tc);
400
401always_inline u32
402tcp_end_seq (tcp_header_t * th, u32 len)
403{
404 return th->seq_number + tcp_is_syn (th) + tcp_is_fin (th) + len;
405}
406
407/* Modulo arithmetic for TCP sequence numbers */
408#define seq_lt(_s1, _s2) ((i32)((_s1)-(_s2)) < 0)
409#define seq_leq(_s1, _s2) ((i32)((_s1)-(_s2)) <= 0)
410#define seq_gt(_s1, _s2) ((i32)((_s1)-(_s2)) > 0)
411#define seq_geq(_s1, _s2) ((i32)((_s1)-(_s2)) >= 0)
412
413/* Modulo arithmetic for timestamps */
414#define timestamp_lt(_t1, _t2) ((i32)((_t1)-(_t2)) < 0)
415#define timestamp_leq(_t1, _t2) ((i32)((_t1)-(_t2)) <= 0)
416
417always_inline u32
418tcp_flight_size (const tcp_connection_t * tc)
419{
Florin Coras6792ec02017-03-13 03:49:51 -0700420 int flight_size;
421
422 flight_size = (int) ((tc->snd_una_max - tc->snd_una) + tc->rtx_bytes)
423 - (tc->rcv_dupacks * tc->snd_mss) /* - tc->sack_sb.sacked_bytes */ ;
424
425 /* Happens if we don't clear sacked bytes */
426 if (flight_size < 0)
427 return 0;
428
429 return flight_size;
Dave Barach68b0fb02017-02-28 15:15:56 -0500430}
431
432/**
433 * Initial cwnd as per RFC5681
434 */
435always_inline u32
436tcp_initial_cwnd (const tcp_connection_t * tc)
437{
438 if (tc->snd_mss > 2190)
439 return 2 * tc->snd_mss;
440 else if (tc->snd_mss > 1095)
441 return 3 * tc->snd_mss;
442 else
443 return 4 * tc->snd_mss;
444}
445
446always_inline u32
447tcp_loss_wnd (const tcp_connection_t * tc)
448{
449 return tc->snd_mss;
450}
451
452always_inline u32
453tcp_available_wnd (const tcp_connection_t * tc)
454{
455 return clib_min (tc->cwnd, tc->snd_wnd);
456}
457
458always_inline u32
459tcp_available_snd_space (const tcp_connection_t * tc)
460{
461 u32 available_wnd = tcp_available_wnd (tc);
462 u32 flight_size = tcp_flight_size (tc);
463
464 if (available_wnd <= flight_size)
465 return 0;
466
467 return available_wnd - flight_size;
468}
469
Florin Coras6792ec02017-03-13 03:49:51 -0700470void tcp_update_rcv_wnd (tcp_connection_t * tc);
471
Dave Barach68b0fb02017-02-28 15:15:56 -0500472void tcp_retransmit_first_unacked (tcp_connection_t * tc);
473
474void tcp_fast_retransmit (tcp_connection_t * tc);
Florin Coras6792ec02017-03-13 03:49:51 -0700475void tcp_cc_congestion (tcp_connection_t * tc);
476void tcp_cc_recover (tcp_connection_t * tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500477
478always_inline u32
479tcp_time_now (void)
480{
481 return clib_cpu_time_now () * tcp_main.tstamp_ticks_per_clock;
482}
483
Florin Coras6cf30ad2017-04-04 23:08:23 -0700484always_inline void
485tcp_update_time (f64 now, u32 thread_index)
486{
487 tw_timer_expire_timers_16t_2w_512sl (&tcp_main.timer_wheels[thread_index],
488 now);
489}
490
Dave Barach68b0fb02017-02-28 15:15:56 -0500491u32 tcp_push_header (transport_connection_t * tconn, vlib_buffer_t * b);
492
493u32
494tcp_prepare_retransmit_segment (tcp_connection_t * tc, vlib_buffer_t * b,
Florin Coras6792ec02017-03-13 03:49:51 -0700495 u32 offset, u32 max_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -0500496
497void tcp_connection_timers_init (tcp_connection_t * tc);
498void tcp_connection_timers_reset (tcp_connection_t * tc);
499
500void tcp_connection_init_vars (tcp_connection_t * tc);
501
502always_inline void
503tcp_connection_force_ack (tcp_connection_t * tc, vlib_buffer_t * b)
504{
505 /* Reset flags, make sure ack is sent */
506 tc->flags = TCP_CONN_SNDACK;
507 vnet_buffer (b)->tcp.flags &= ~TCP_BUF_FLAG_DUPACK;
508}
509
510always_inline void
511tcp_timer_set (tcp_connection_t * tc, u8 timer_id, u32 interval)
512{
513 tc->timers[timer_id]
514 = tw_timer_start_16t_2w_512sl (&tcp_main.timer_wheels[tc->c_thread_index],
515 tc->c_c_index, timer_id, interval);
516}
517
518always_inline void
Dave Barach68b0fb02017-02-28 15:15:56 -0500519tcp_timer_reset (tcp_connection_t * tc, u8 timer_id)
520{
521 if (tc->timers[timer_id] == TCP_TIMER_HANDLE_INVALID)
522 return;
523
524 tw_timer_stop_16t_2w_512sl (&tcp_main.timer_wheels[tc->c_thread_index],
525 tc->timers[timer_id]);
526 tc->timers[timer_id] = TCP_TIMER_HANDLE_INVALID;
527}
528
529always_inline void
530tcp_timer_update (tcp_connection_t * tc, u8 timer_id, u32 interval)
531{
532 if (tc->timers[timer_id] != TCP_TIMER_HANDLE_INVALID)
533 tw_timer_stop_16t_2w_512sl (&tcp_main.timer_wheels[tc->c_thread_index],
534 tc->timers[timer_id]);
535 tc->timers[timer_id] =
536 tw_timer_start_16t_2w_512sl (&tcp_main.timer_wheels[tc->c_thread_index],
537 tc->c_c_index, timer_id, interval);
538}
539
Florin Coras6792ec02017-03-13 03:49:51 -0700540/* XXX Switch retransmit to faster TW */
541always_inline void
542tcp_retransmit_timer_set (tcp_connection_t * tc)
543{
544 tcp_timer_set (tc, TCP_TIMER_RETRANSMIT,
545 clib_max (tc->rto * TCP_TO_TIMER_TICK, 1));
546}
547
548always_inline void
549tcp_retransmit_timer_update (tcp_connection_t * tc)
550{
551 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT,
552 clib_max (tc->rto * TCP_TO_TIMER_TICK, 1));
553}
554
555always_inline void
556tcp_retransmit_timer_reset (tcp_connection_t * tc)
557{
558 tcp_timer_reset (tc, TCP_TIMER_RETRANSMIT);
559}
560
Florin Coras3e350af2017-03-30 02:54:28 -0700561always_inline void
562tcp_persist_timer_set (tcp_connection_t * tc)
563{
564 /* Reuse RTO. It's backed off in handler */
565 tcp_timer_set (tc, TCP_TIMER_PERSIST,
Florin Coras5921f982017-04-03 18:00:00 -0700566 clib_max (tc->rto * TCP_TO_TIMER_TICK,
567 TCP_TIMER_PERSIST_MIN));
Florin Coras3e350af2017-03-30 02:54:28 -0700568}
569
570always_inline void
571tcp_persist_timer_update (tcp_connection_t * tc)
572{
573 tcp_timer_update (tc, TCP_TIMER_PERSIST,
Florin Coras5921f982017-04-03 18:00:00 -0700574 clib_max (tc->rto * TCP_TO_TIMER_TICK,
575 TCP_TIMER_PERSIST_MIN));
Florin Coras3e350af2017-03-30 02:54:28 -0700576}
577
578always_inline void
579tcp_persist_timer_reset (tcp_connection_t * tc)
580{
581 tcp_timer_reset (tc, TCP_TIMER_PERSIST);
582}
583
Dave Barach68b0fb02017-02-28 15:15:56 -0500584always_inline u8
585tcp_timer_is_active (tcp_connection_t * tc, tcp_timers_e timer)
586{
587 return tc->timers[timer] != TCP_TIMER_HANDLE_INVALID;
588}
589
590void
591scoreboard_remove_hole (sack_scoreboard_t * sb,
592 sack_scoreboard_hole_t * hole);
593
594always_inline sack_scoreboard_hole_t *
Florin Coras6792ec02017-03-13 03:49:51 -0700595scoreboard_get_hole (sack_scoreboard_t * sb, u32 index)
596{
597 if (index != TCP_INVALID_SACK_HOLE_INDEX)
598 return pool_elt_at_index (sb->holes, index);
599 return 0;
600}
601
602always_inline sack_scoreboard_hole_t *
Dave Barach68b0fb02017-02-28 15:15:56 -0500603scoreboard_next_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
604{
605 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
606 return pool_elt_at_index (sb->holes, hole->next);
607 return 0;
608}
609
610always_inline sack_scoreboard_hole_t *
611scoreboard_first_hole (sack_scoreboard_t * sb)
612{
613 if (sb->head != TCP_INVALID_SACK_HOLE_INDEX)
614 return pool_elt_at_index (sb->holes, sb->head);
615 return 0;
616}
617
Florin Coras6792ec02017-03-13 03:49:51 -0700618always_inline sack_scoreboard_hole_t *
619scoreboard_last_hole (sack_scoreboard_t * sb)
620{
621 if (sb->tail != TCP_INVALID_SACK_HOLE_INDEX)
622 return pool_elt_at_index (sb->holes, sb->tail);
623 return 0;
624}
625
Dave Barach68b0fb02017-02-28 15:15:56 -0500626always_inline void
627scoreboard_clear (sack_scoreboard_t * sb)
628{
629 sack_scoreboard_hole_t *hole = scoreboard_first_hole (sb);
630 while ((hole = scoreboard_first_hole (sb)))
631 {
632 scoreboard_remove_hole (sb, hole);
633 }
Florin Coras6792ec02017-03-13 03:49:51 -0700634 sb->sacked_bytes = 0;
635 sb->last_sacked_bytes = 0;
636 sb->snd_una_adv = 0;
637 sb->max_byte_sacked = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500638}
639
640always_inline u32
641scoreboard_hole_bytes (sack_scoreboard_hole_t * hole)
642{
643 return hole->end - hole->start;
644}
645
Florin Coras6792ec02017-03-13 03:49:51 -0700646always_inline u32
647scoreboard_hole_index (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
648{
649 return hole - sb->holes;
650}
651
652always_inline void
653scoreboard_init (sack_scoreboard_t * sb)
654{
655 sb->head = TCP_INVALID_SACK_HOLE_INDEX;
656 sb->tail = TCP_INVALID_SACK_HOLE_INDEX;
657}
658
659void tcp_rcv_sacks (tcp_connection_t * tc, u32 ack);
660
Dave Barach68b0fb02017-02-28 15:15:56 -0500661always_inline void
662tcp_cc_algo_register (tcp_cc_algorithm_type_e type,
663 const tcp_cc_algorithm_t * vft)
664{
665 tcp_main_t *tm = vnet_get_tcp_main ();
666 vec_validate (tm->cc_algos, type);
667
668 tm->cc_algos[type] = *vft;
669}
670
671always_inline tcp_cc_algorithm_t *
672tcp_cc_algo_get (tcp_cc_algorithm_type_e type)
673{
674 tcp_main_t *tm = vnet_get_tcp_main ();
675 return &tm->cc_algos[type];
676}
677
678void tcp_cc_init (tcp_connection_t * tc);
679
680/**
681 * Push TCP header to buffer
682 *
683 * @param vm - vlib_main
684 * @param b - buffer to write the header to
685 * @param sp_net - source port net order
686 * @param dp_net - destination port net order
687 * @param seq - sequence number net order
688 * @param ack - ack number net order
689 * @param tcp_hdr_opts_len - header and options length in bytes
690 * @param flags - header flags
691 * @param wnd - window size
692 *
693 * @return - pointer to start of TCP header
694 */
695always_inline void *
696vlib_buffer_push_tcp_net_order (vlib_buffer_t * b, u16 sp, u16 dp, u32 seq,
697 u32 ack, u8 tcp_hdr_opts_len, u8 flags,
698 u16 wnd)
699{
700 tcp_header_t *th;
701
702 th = vlib_buffer_push_uninit (b, tcp_hdr_opts_len);
703
704 th->src_port = sp;
705 th->dst_port = dp;
706 th->seq_number = seq;
707 th->ack_number = ack;
708 th->data_offset_and_reserved = (tcp_hdr_opts_len >> 2) << 4;
709 th->flags = flags;
710 th->window = wnd;
711 th->checksum = 0;
712 th->urgent_pointer = 0;
713 return th;
714}
715
716/**
717 * Push TCP header to buffer
718 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500719 * @param b - buffer to write the header to
720 * @param sp_net - source port net order
721 * @param dp_net - destination port net order
722 * @param seq - sequence number host order
723 * @param ack - ack number host order
724 * @param tcp_hdr_opts_len - header and options length in bytes
725 * @param flags - header flags
726 * @param wnd - window size
727 *
728 * @return - pointer to start of TCP header
729 */
730always_inline void *
731vlib_buffer_push_tcp (vlib_buffer_t * b, u16 sp_net, u16 dp_net, u32 seq,
732 u32 ack, u8 tcp_hdr_opts_len, u8 flags, u16 wnd)
733{
734 return vlib_buffer_push_tcp_net_order (b, sp_net, dp_net,
735 clib_host_to_net_u32 (seq),
736 clib_host_to_net_u32 (ack),
737 tcp_hdr_opts_len, flags,
738 clib_host_to_net_u16 (wnd));
739}
740
741#endif /* _vnet_tcp_h_ */
742
743/*
744 * fd.io coding-style-patch-verification: ON
745 *
746 * Local Variables:
747 * eval: (c-set-style "gnu")
748 * End:
749 */