blob: 11d61f5dc83af0f1170f99d9e826406e1fa69fb2 [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
Florin Coras3af90fc2017-05-03 21:09:42 -070027#define TCP_TICK 0.001 /**< TCP tick period (s) */
28#define THZ (u32) (1/TCP_TICK) /**< TCP tick frequency */
Dave Barach68b0fb02017-02-28 15:15:56 -050029#define TCP_TSTAMP_RESOLUTION TCP_TICK /**< Time stamp resolution */
30#define TCP_PAWS_IDLE 24 * 24 * 60 * 60 * THZ /**< 24 days */
Florin Corasf6359c82017-06-19 12:26:09 -040031#define TCP_FIB_RECHECK_PERIOD 1 * THZ /**< Recheck every 1s */
Dave Barach68b0fb02017-02-28 15:15:56 -050032#define TCP_MAX_OPTION_SPACE 40
33
Florin Coras6792ec02017-03-13 03:49:51 -070034#define TCP_DUPACK_THRESHOLD 3
Florin Corasf03a59a2017-06-09 21:07:32 -070035#define TCP_MAX_RX_FIFO_SIZE 4 << 20
Florin Coras6534b7a2017-07-18 05:38:03 -040036#define TCP_MIN_RX_FIFO_SIZE 4 << 10
Florin Coras6792ec02017-03-13 03:49:51 -070037#define TCP_IW_N_SEGMENTS 10
Florin Corasf03a59a2017-06-09 21:07:32 -070038#define TCP_ALWAYS_ACK 1 /**< On/off delayed acks */
Florin Coras93992a92017-05-24 18:03:56 -070039#define TCP_USE_SACKS 1 /**< Disable only for testing */
Dave Barach68b0fb02017-02-28 15:15:56 -050040
41/** TCP FSM state definitions as per RFC793. */
42#define foreach_tcp_fsm_state \
43 _(CLOSED, "CLOSED") \
44 _(LISTEN, "LISTEN") \
45 _(SYN_SENT, "SYN_SENT") \
46 _(SYN_RCVD, "SYN_RCVD") \
47 _(ESTABLISHED, "ESTABLISHED") \
48 _(CLOSE_WAIT, "CLOSE_WAIT") \
49 _(FIN_WAIT_1, "FIN_WAIT_1") \
50 _(LAST_ACK, "LAST_ACK") \
51 _(CLOSING, "CLOSING") \
52 _(FIN_WAIT_2, "FIN_WAIT_2") \
53 _(TIME_WAIT, "TIME_WAIT")
54
55typedef enum _tcp_state
56{
57#define _(sym, str) TCP_STATE_##sym,
58 foreach_tcp_fsm_state
59#undef _
60 TCP_N_STATES
61} tcp_state_t;
62
63format_function_t format_tcp_state;
Dave Barach1f75cfd2017-04-14 16:46:44 -040064format_function_t format_tcp_flags;
Florin Coras45d34962017-04-25 00:05:27 -070065format_function_t format_tcp_sacks;
Florin Coras3eb50622017-07-13 01:24:57 -040066format_function_t format_tcp_rcv_sacks;
Dave Barach68b0fb02017-02-28 15:15:56 -050067
68/** TCP timers */
69#define foreach_tcp_timer \
70 _(RETRANSMIT, "RETRANSMIT") \
71 _(DELACK, "DELAYED ACK") \
72 _(PERSIST, "PERSIST") \
73 _(KEEP, "KEEP") \
Florin Corasd79b41e2017-03-04 05:37:52 -080074 _(WAITCLOSE, "WAIT CLOSE") \
75 _(RETRANSMIT_SYN, "RETRANSMIT SYN") \
Dave Barach68b0fb02017-02-28 15:15:56 -050076 _(ESTABLISH, "ESTABLISH")
77
78typedef enum _tcp_timers
79{
80#define _(sym, str) TCP_TIMER_##sym,
81 foreach_tcp_timer
82#undef _
83 TCP_N_TIMERS
84} tcp_timers_e;
85
86typedef void (timer_expiration_handler) (u32 index);
87
88extern timer_expiration_handler tcp_timer_delack_handler;
89extern timer_expiration_handler tcp_timer_retransmit_handler;
Florin Coras3e350af2017-03-30 02:54:28 -070090extern timer_expiration_handler tcp_timer_persist_handler;
Dave Barach68b0fb02017-02-28 15:15:56 -050091extern timer_expiration_handler tcp_timer_retransmit_syn_handler;
92
93#define TCP_TIMER_HANDLE_INVALID ((u32) ~0)
94
95/* Timer delays as multiples of 100ms */
96#define TCP_TO_TIMER_TICK TCP_TICK*10 /* Period for converting from TCP
97 * ticks to timer units */
98#define TCP_DELACK_TIME 1 /* 0.1s */
99#define TCP_ESTABLISH_TIME 750 /* 75s */
Florin Corasab0289a2017-08-14 11:25:25 -0700100#define TCP_SYN_RCVD_TIME 100 /* 10s */
Dave Barach68b0fb02017-02-28 15:15:56 -0500101#define TCP_2MSL_TIME 300 /* 30s */
Florin Coras93992a92017-05-24 18:03:56 -0700102#define TCP_CLOSEWAIT_TIME 20 /* 0.1s */
Florin Corasd79b41e2017-03-04 05:37:52 -0800103#define TCP_CLEANUP_TIME 5 /* 0.5s Time to wait before cleanup */
Florin Coras5921f982017-04-03 18:00:00 -0700104#define TCP_TIMER_PERSIST_MIN 2 /* 0.2s */
Dave Barach68b0fb02017-02-28 15:15:56 -0500105
106#define TCP_RTO_MAX 60 * THZ /* Min max RTO (60s) as per RFC6298 */
Florin Corasf03a59a2017-06-09 21:07:32 -0700107#define TCP_RTO_MIN 0.2 * THZ /* Min RTO (200ms) - lower than standard */
Dave Barach68b0fb02017-02-28 15:15:56 -0500108#define TCP_RTT_MAX 30 * THZ /* 30s (probably too much) */
109#define TCP_RTO_SYN_RETRIES 3 /* SYN retries without doubling RTO */
110#define TCP_RTO_INIT 1 * THZ /* Initial retransmit timer */
111
Dave Barach68b0fb02017-02-28 15:15:56 -0500112/** TCP connection flags */
113#define foreach_tcp_connection_flag \
Dave Barach68b0fb02017-02-28 15:15:56 -0500114 _(SNDACK, "Send ACK") \
Florin Corasd79b41e2017-03-04 05:37:52 -0800115 _(FINSNT, "FIN sent") \
Dave Barach68b0fb02017-02-28 15:15:56 -0500116 _(SENT_RCV_WND0, "Sent 0 receive window") \
117 _(RECOVERY, "Recovery on") \
Florin Coras6792ec02017-03-13 03:49:51 -0700118 _(FAST_RECOVERY, "Fast Recovery on") \
Florin Coras68810622017-07-24 17:40:28 -0700119 _(FR_1_SMSS, "Sent 1 SMSS") \
Florin Corasb2215d62017-08-01 16:56:58 -0700120 _(HALF_OPEN_DONE, "Half-open completed") \
121 _(FINPNDG, "FIN pending")
Dave Barach68b0fb02017-02-28 15:15:56 -0500122
123typedef enum _tcp_connection_flag_bits
124{
125#define _(sym, str) TCP_CONN_##sym##_BIT,
126 foreach_tcp_connection_flag
127#undef _
128 TCP_CONN_N_FLAG_BITS
129} tcp_connection_flag_bits_e;
130
131typedef enum _tcp_connection_flag
132{
133#define _(sym, str) TCP_CONN_##sym = 1 << TCP_CONN_##sym##_BIT,
134 foreach_tcp_connection_flag
135#undef _
136 TCP_CONN_N_FLAGS
137} tcp_connection_flags_e;
138
139/** TCP buffer flags */
140#define foreach_tcp_buf_flag \
141 _ (ACK) /**< Sending ACK. */ \
142 _ (DUPACK) /**< Sending DUPACK. */ \
143
144enum
145{
146#define _(f) TCP_BUF_BIT_##f,
147 foreach_tcp_buf_flag
148#undef _
149 TCP_N_BUF_BITS,
150};
151
152enum
153{
154#define _(f) TCP_BUF_FLAG_##f = 1 << TCP_BUF_BIT_##f,
155 foreach_tcp_buf_flag
156#undef _
157};
158
Florin Coras3eb50622017-07-13 01:24:57 -0400159#define TCP_SCOREBOARD_TRACE (0)
Florin Corasf03a59a2017-06-09 21:07:32 -0700160#define TCP_MAX_SACK_BLOCKS 15 /**< Max number of SACK blocks stored */
Dave Barach68b0fb02017-02-28 15:15:56 -0500161#define TCP_INVALID_SACK_HOLE_INDEX ((u32)~0)
162
Florin Coras3eb50622017-07-13 01:24:57 -0400163typedef struct _scoreboard_trace_elt
164{
165 u32 start;
166 u32 end;
167 u32 ack;
168 u32 snd_una_max;
169 u32 group;
170} scoreboard_trace_elt_t;
171
Dave Barach68b0fb02017-02-28 15:15:56 -0500172typedef struct _sack_scoreboard_hole
173{
174 u32 next; /**< Index for next entry in linked list */
175 u32 prev; /**< Index for previous entry in linked list */
176 u32 start; /**< Start sequence number */
177 u32 end; /**< End sequence number */
Florin Coras93992a92017-05-24 18:03:56 -0700178 u8 is_lost; /**< Mark hole as lost */
Dave Barach68b0fb02017-02-28 15:15:56 -0500179} sack_scoreboard_hole_t;
180
181typedef struct _sack_scoreboard
182{
183 sack_scoreboard_hole_t *holes; /**< Pool of holes */
Florin Coras6792ec02017-03-13 03:49:51 -0700184 u32 head; /**< Index of first entry */
185 u32 tail; /**< Index of last entry */
Dave Barach68b0fb02017-02-28 15:15:56 -0500186 u32 sacked_bytes; /**< Number of bytes sacked in sb */
Florin Coras6792ec02017-03-13 03:49:51 -0700187 u32 last_sacked_bytes; /**< Number of bytes last sacked */
Florin Coras93992a92017-05-24 18:03:56 -0700188 u32 last_bytes_delivered; /**< Number of sack bytes delivered */
Florin Coras6792ec02017-03-13 03:49:51 -0700189 u32 snd_una_adv; /**< Bytes to add to snd_una */
Florin Coras93992a92017-05-24 18:03:56 -0700190 u32 high_sacked; /**< Highest byte sacked (fack) */
191 u32 high_rxt; /**< Highest retransmitted sequence */
192 u32 rescue_rxt; /**< Rescue sequence number */
193 u32 lost_bytes; /**< Bytes lost as per RFC6675 */
194 u32 cur_rxt_hole; /**< Retransmitting from this hole */
Florin Coras3eb50622017-07-13 01:24:57 -0400195
196#if TCP_SCOREBOARD_TRACE
197 scoreboard_trace_elt_t *trace;
198#endif
199
Dave Barach68b0fb02017-02-28 15:15:56 -0500200} sack_scoreboard_t;
201
Florin Coras3eb50622017-07-13 01:24:57 -0400202#if TCP_SCOREBOARD_TRACE
203#define tcp_scoreboard_trace_add(_tc, _ack) \
204{ \
205 static u64 _group = 0; \
206 sack_scoreboard_t *_sb = &_tc->sack_sb; \
207 sack_block_t *_sack, *_sacks; \
208 scoreboard_trace_elt_t *_elt; \
209 int i; \
210 _group++; \
211 _sacks = _tc->rcv_opts.sacks; \
212 for (i = 0; i < vec_len (_sacks); i++) \
213 { \
214 _sack = &_sacks[i]; \
215 vec_add2 (_sb->trace, _elt, 1); \
216 _elt->start = _sack->start; \
217 _elt->end = _sack->end; \
218 _elt->ack = _elt->end == _ack ? _ack : 0; \
219 _elt->snd_una_max = _elt->end == _ack ? _tc->snd_una_max : 0; \
220 _elt->group = _group; \
221 } \
222}
223#else
224#define tcp_scoreboard_trace_add(_tc, _ack)
225#endif
226
Dave Barach68b0fb02017-02-28 15:15:56 -0500227typedef enum _tcp_cc_algorithm_type
228{
229 TCP_CC_NEWRENO,
230} tcp_cc_algorithm_type_e;
231
232typedef struct _tcp_cc_algorithm tcp_cc_algorithm_t;
233
234typedef enum _tcp_cc_ack_t
235{
236 TCP_CC_ACK,
237 TCP_CC_DUPACK,
238 TCP_CC_PARTIALACK
239} tcp_cc_ack_t;
240
241typedef struct _tcp_connection
242{
243 transport_connection_t connection; /**< Common transport data. First! */
244
245 u8 state; /**< TCP state as per tcp_state_t */
246 u16 flags; /**< Connection flags (see tcp_conn_flags_e) */
247 u32 timers[TCP_N_TIMERS]; /**< Timer handles into timer wheel */
248
249 /* TODO RFC4898 */
250
251 /** Send sequence variables RFC793 */
252 u32 snd_una; /**< oldest unacknowledged sequence number */
253 u32 snd_una_max; /**< newest unacknowledged sequence number + 1*/
254 u32 snd_wnd; /**< send window */
255 u32 snd_wl1; /**< seq number used for last snd.wnd update */
256 u32 snd_wl2; /**< ack number used for last snd.wnd update */
257 u32 snd_nxt; /**< next seq number to be sent */
Florin Corasf03a59a2017-06-09 21:07:32 -0700258 u16 snd_mss; /**< Effective send max seg (data) size */
Dave Barach68b0fb02017-02-28 15:15:56 -0500259
260 /** Receive sequence variables RFC793 */
261 u32 rcv_nxt; /**< next sequence number expected */
262 u32 rcv_wnd; /**< receive window we expect */
263
264 u32 rcv_las; /**< rcv_nxt at last ack sent/rcv_wnd update */
265 u32 iss; /**< initial sent sequence */
266 u32 irs; /**< initial remote sequence */
267
268 /* Options */
Florin Coras93992a92017-05-24 18:03:56 -0700269 tcp_options_t rcv_opts; /**< Rx options for connection */
Florin Corasc8343412017-05-04 14:25:50 -0700270 tcp_options_t snd_opts; /**< Tx options for connection */
271 u8 snd_opts_len; /**< Tx options len */
Dave Barach68b0fb02017-02-28 15:15:56 -0500272 u8 rcv_wscale; /**< Window scale to advertise to peer */
273 u8 snd_wscale; /**< Window scale to use when sending */
274 u32 tsval_recent; /**< Last timestamp received */
275 u32 tsval_recent_age; /**< When last updated tstamp_recent*/
276
277 sack_block_t *snd_sacks; /**< Vector of SACKs to send. XXX Fixed size? */
278 sack_scoreboard_t sack_sb; /**< SACK "scoreboard" that tracks holes */
279
Florin Coras6792ec02017-03-13 03:49:51 -0700280 u16 rcv_dupacks; /**< Number of DUPACKs received */
Dave Barach68b0fb02017-02-28 15:15:56 -0500281 u8 snt_dupacks; /**< Number of DUPACKs sent in a burst */
282
283 /* Congestion control */
284 u32 cwnd; /**< Congestion window */
285 u32 ssthresh; /**< Slow-start threshold */
286 u32 prev_ssthresh; /**< ssthresh before congestion */
Florin Coras93992a92017-05-24 18:03:56 -0700287 u32 prev_cwnd; /**< ssthresh before congestion */
Dave Barach68b0fb02017-02-28 15:15:56 -0500288 u32 bytes_acked; /**< Bytes acknowledged by current segment */
Florin Coras93992a92017-05-24 18:03:56 -0700289 u32 snd_rxt_bytes; /**< Retransmitted bytes */
290 u32 snd_rxt_ts; /**< Timestamp when first packet is retransmitted */
Florin Corase69f4952017-03-07 10:06:24 -0800291 u32 tsecr_last_ack; /**< Timestamp echoed to us in last healthy ACK */
Florin Coras6792ec02017-03-13 03:49:51 -0700292 u32 snd_congestion; /**< snd_una_max when congestion is detected */
Dave Barach68b0fb02017-02-28 15:15:56 -0500293 tcp_cc_algorithm_t *cc_algo; /**< Congestion control algorithm */
294
295 /* RTT and RTO */
296 u32 rto; /**< Retransmission timeout */
297 u32 rto_boff; /**< Index for RTO backoff */
298 u32 srtt; /**< Smoothed RTT */
299 u32 rttvar; /**< Smoothed mean RTT difference. Approximates variance */
300 u32 rtt_ts; /**< Timestamp for tracked ACK */
301 u32 rtt_seq; /**< Sequence number for tracked ACK */
302
Florin Corasc8343412017-05-04 14:25:50 -0700303 u16 mss; /**< Our max seg size that includes options */
Florin Corasf03a59a2017-06-09 21:07:32 -0700304 u32 limited_transmit; /**< snd_nxt when limited transmit starts */
Florin Corasf6359c82017-06-19 12:26:09 -0400305 u32 last_fib_check; /**< Last time we checked fib route for peer */
Dave Barach68b0fb02017-02-28 15:15:56 -0500306} tcp_connection_t;
307
308struct _tcp_cc_algorithm
309{
310 void (*rcv_ack) (tcp_connection_t * tc);
311 void (*rcv_cong_ack) (tcp_connection_t * tc, tcp_cc_ack_t ack);
312 void (*congestion) (tcp_connection_t * tc);
313 void (*recovered) (tcp_connection_t * tc);
314 void (*init) (tcp_connection_t * tc);
315};
316
317#define tcp_fastrecovery_on(tc) (tc)->flags |= TCP_CONN_FAST_RECOVERY
318#define tcp_fastrecovery_off(tc) (tc)->flags &= ~TCP_CONN_FAST_RECOVERY
Florin Coras3e350af2017-03-30 02:54:28 -0700319#define tcp_recovery_on(tc) (tc)->flags |= TCP_CONN_RECOVERY
320#define tcp_recovery_off(tc) (tc)->flags &= ~TCP_CONN_RECOVERY
Dave Barach68b0fb02017-02-28 15:15:56 -0500321#define tcp_in_fastrecovery(tc) ((tc)->flags & TCP_CONN_FAST_RECOVERY)
Florin Coras3e350af2017-03-30 02:54:28 -0700322#define tcp_in_recovery(tc) ((tc)->flags & (TCP_CONN_RECOVERY))
Dave Barach68b0fb02017-02-28 15:15:56 -0500323#define tcp_in_slowstart(tc) (tc->cwnd < tc->ssthresh)
Florin Coras6792ec02017-03-13 03:49:51 -0700324#define tcp_fastrecovery_sent_1_smss(tc) ((tc)->flags & TCP_CONN_FR_1_SMSS)
325#define tcp_fastrecovery_1_smss_on(tc) ((tc)->flags |= TCP_CONN_FR_1_SMSS)
326#define tcp_fastrecovery_1_smss_off(tc) ((tc)->flags &= ~TCP_CONN_FR_1_SMSS)
Dave Barach68b0fb02017-02-28 15:15:56 -0500327
Florin Coras3e350af2017-03-30 02:54:28 -0700328#define tcp_in_cong_recovery(tc) ((tc)->flags & \
329 (TCP_CONN_FAST_RECOVERY | TCP_CONN_RECOVERY))
330
331always_inline void
332tcp_cong_recovery_off (tcp_connection_t * tc)
333{
334 tc->flags &= ~(TCP_CONN_FAST_RECOVERY | TCP_CONN_RECOVERY);
335 tcp_fastrecovery_1_smss_off (tc);
336}
337
Dave Barach68b0fb02017-02-28 15:15:56 -0500338typedef enum
339{
340 TCP_IP4,
341 TCP_IP6,
342 TCP_N_AF,
343} tcp_af_t;
344
345typedef enum _tcp_error
346{
347#define tcp_error(n,s) TCP_ERROR_##n,
348#include <vnet/tcp/tcp_error.def>
349#undef tcp_error
350 TCP_N_ERROR,
351} tcp_error_t;
352
353typedef struct _tcp_lookup_dispatch
354{
355 u8 next, error;
356} tcp_lookup_dispatch_t;
357
358typedef struct _tcp_main
359{
360 /* Per-worker thread tcp connection pools */
361 tcp_connection_t **connections;
362
363 /* Pool of listeners. */
364 tcp_connection_t *listener_pool;
365
366 /** Dispatch table by state and flags */
367 tcp_lookup_dispatch_t dispatch_table[TCP_N_STATES][64];
368
369 u8 log2_tstamp_clocks_per_tick;
370 f64 tstamp_ticks_per_clock;
Florin Coras82d3ec82017-08-14 08:10:42 -0700371 u32 *time_now;
Dave Barach68b0fb02017-02-28 15:15:56 -0500372
373 /** per-worker tx buffer free lists */
374 u32 **tx_buffers;
Florin Coras66b11312017-07-31 17:18:03 -0700375 /** per-worker tx frames to 4/6 output nodes */
376 vlib_frame_t **tx_frames[2];
Dave Barach68b0fb02017-02-28 15:15:56 -0500377
378 /* Per worker-thread timer wheel for connections timers */
379 tw_timer_wheel_16t_2w_512sl_t *timer_wheels;
380
Dave Barach68b0fb02017-02-28 15:15:56 -0500381 /* Pool of half-open connections on which we've sent a SYN */
382 tcp_connection_t *half_open_connections;
Florin Coras6534b7a2017-07-18 05:38:03 -0400383 clib_spinlock_t half_open_lock;
Dave Barach68b0fb02017-02-28 15:15:56 -0500384
385 /* Pool of local TCP endpoints */
386 transport_endpoint_t *local_endpoints;
387
388 /* Local endpoints lookup table */
389 transport_endpoint_table_t local_endpoints_table;
Florin Coras68810622017-07-24 17:40:28 -0700390 clib_spinlock_t local_endpoints_lock;
Dave Barach68b0fb02017-02-28 15:15:56 -0500391
392 /* Congestion control algorithms registered */
393 tcp_cc_algorithm_t *cc_algos;
394
Florin Corasa0b34a72017-03-07 01:20:52 -0800395 /* Flag that indicates if stack is on or off */
396 u8 is_enabled;
397
Dave Barach2c25a622017-06-26 11:35:07 -0400398 /** Number of preallocated connections */
399 u32 preallocated_connections;
400 u32 preallocated_half_open_connections;
401
Dave Barachd84ba852017-08-22 17:56:46 -0400402 /** Transport table (preallocation) size parameters */
403 u32 local_endpoints_table_memory;
404 u32 local_endpoints_table_buckets;
405
Dave Barach2c25a622017-06-26 11:35:07 -0400406 /** Vectors of src addresses. Optional unless one needs > 63K active-opens */
407 ip4_address_t *ip4_src_addresses;
408 u32 last_v4_address_rotor;
409 u32 last_v6_address_rotor;
410 ip6_address_t *ip6_src_addresses;
411
Florin Coras66b11312017-07-31 17:18:03 -0700412 /** Port allocator random number generator seed */
413 u32 port_allocator_seed;
Florin Corasb2215d62017-08-01 16:56:58 -0700414
415 /** vlib buffer size */
416 u32 bytes_per_buffer;
Dave Barach68b0fb02017-02-28 15:15:56 -0500417} tcp_main_t;
418
419extern tcp_main_t tcp_main;
420extern vlib_node_registration_t tcp4_input_node;
421extern vlib_node_registration_t tcp6_input_node;
422extern vlib_node_registration_t tcp4_output_node;
423extern vlib_node_registration_t tcp6_output_node;
424
425always_inline tcp_main_t *
426vnet_get_tcp_main ()
427{
428 return &tcp_main;
429}
430
Florin Coras82b13a82017-04-25 11:58:06 -0700431always_inline tcp_header_t *
432tcp_buffer_hdr (vlib_buffer_t * b)
433{
434 ASSERT ((signed) b->current_data >= (signed) -VLIB_BUFFER_PRE_DATA_SIZE);
435 return (tcp_header_t *) (b->data + b->current_data
436 + vnet_buffer (b)->tcp.hdr_offset);
437}
438
Florin Corasa0b34a72017-03-07 01:20:52 -0800439clib_error_t *vnet_tcp_enable_disable (vlib_main_t * vm, u8 is_en);
440
Dave Barach68b0fb02017-02-28 15:15:56 -0500441always_inline tcp_connection_t *
442tcp_connection_get (u32 conn_index, u32 thread_index)
443{
Florin Coras68810622017-07-24 17:40:28 -0700444 if (PREDICT_FALSE
445 (pool_is_free_index (tcp_main.connections[thread_index], conn_index)))
Florin Corasd79b41e2017-03-04 05:37:52 -0800446 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500447 return pool_elt_at_index (tcp_main.connections[thread_index], conn_index);
448}
449
450always_inline tcp_connection_t *
451tcp_connection_get_if_valid (u32 conn_index, u32 thread_index)
452{
453 if (tcp_main.connections[thread_index] == 0)
454 return 0;
455 if (pool_is_free_index (tcp_main.connections[thread_index], conn_index))
456 return 0;
457 return pool_elt_at_index (tcp_main.connections[thread_index], conn_index);
458}
459
Florin Coras3eb50622017-07-13 01:24:57 -0400460always_inline tcp_connection_t *
461tcp_get_connection_from_transport (transport_connection_t * tconn)
462{
463 return (tcp_connection_t *) tconn;
464}
465
Dave Barach68b0fb02017-02-28 15:15:56 -0500466void tcp_connection_close (tcp_connection_t * tc);
467void tcp_connection_cleanup (tcp_connection_t * tc);
468void tcp_connection_del (tcp_connection_t * tc);
Florin Coras68810622017-07-24 17:40:28 -0700469int tcp_half_open_connection_cleanup (tcp_connection_t * tc);
Florin Coras6534b7a2017-07-18 05:38:03 -0400470tcp_connection_t *tcp_connection_new (u8 thread_index);
Florin Corasd79b41e2017-03-04 05:37:52 -0800471void tcp_connection_reset (tcp_connection_t * tc);
Dave Barach3bbcfab2017-08-15 19:03:44 -0400472int tcp_configure_v4_source_address_range (vlib_main_t * vm,
473 ip4_address_t * start,
474 ip4_address_t * end, u32 table_id);
475int tcp_configure_v6_source_address_range (vlib_main_t * vm,
476 ip6_address_t * start,
477 ip6_address_t * end, u32 table_id);
478void tcp_api_reference (void);
Florin Corasbb292f42017-05-19 09:49:19 -0700479u8 *format_tcp_connection_id (u8 * s, va_list * args);
Florin Corase69f4952017-03-07 10:06:24 -0800480u8 *format_tcp_connection (u8 * s, va_list * args);
Florin Coras06d11012017-05-17 14:21:51 -0700481u8 *format_tcp_scoreboard (u8 * s, va_list * args);
Florin Corase69f4952017-03-07 10:06:24 -0800482
Florin Coras3eb50622017-07-13 01:24:57 -0400483u8 *tcp_scoreboard_replay (u8 * s, tcp_connection_t * tc, u8 verbose);
484
Dave Barach68b0fb02017-02-28 15:15:56 -0500485always_inline tcp_connection_t *
486tcp_listener_get (u32 tli)
487{
488 return pool_elt_at_index (tcp_main.listener_pool, tli);
489}
490
491always_inline tcp_connection_t *
492tcp_half_open_connection_get (u32 conn_index)
493{
Florin Coras68810622017-07-24 17:40:28 -0700494 tcp_connection_t *tc = 0;
495 clib_spinlock_lock_if_init (&tcp_main.half_open_lock);
496 if (!pool_is_free_index (tcp_main.half_open_connections, conn_index))
497 tc = pool_elt_at_index (tcp_main.half_open_connections, conn_index);
498 clib_spinlock_unlock_if_init (&tcp_main.half_open_lock);
499 return tc;
Dave Barach68b0fb02017-02-28 15:15:56 -0500500}
501
502void tcp_make_ack (tcp_connection_t * ts, vlib_buffer_t * b);
Florin Corasd79b41e2017-03-04 05:37:52 -0800503void tcp_make_fin (tcp_connection_t * tc, vlib_buffer_t * b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500504void tcp_make_synack (tcp_connection_t * ts, vlib_buffer_t * b);
Florin Coras1f152cd2017-08-18 19:28:03 -0700505void tcp_send_reset_w_pkt (tcp_connection_t * tc, vlib_buffer_t * pkt,
506 u8 is_ip4);
507void tcp_send_reset (tcp_connection_t * tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500508void tcp_send_syn (tcp_connection_t * tc);
509void tcp_send_fin (tcp_connection_t * tc);
Florin Corasc8343412017-05-04 14:25:50 -0700510void tcp_init_mss (tcp_connection_t * tc);
511void tcp_update_snd_mss (tcp_connection_t * tc);
Florin Coras93992a92017-05-24 18:03:56 -0700512void tcp_update_rto (tcp_connection_t * tc);
Florin Coras66b11312017-07-31 17:18:03 -0700513void tcp_flush_frame_to_output (vlib_main_t * vm, u8 thread_index, u8 is_ip4);
514void tcp_flush_frames_to_output (u8 thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500515
516always_inline u32
517tcp_end_seq (tcp_header_t * th, u32 len)
518{
519 return th->seq_number + tcp_is_syn (th) + tcp_is_fin (th) + len;
520}
521
522/* Modulo arithmetic for TCP sequence numbers */
523#define seq_lt(_s1, _s2) ((i32)((_s1)-(_s2)) < 0)
524#define seq_leq(_s1, _s2) ((i32)((_s1)-(_s2)) <= 0)
525#define seq_gt(_s1, _s2) ((i32)((_s1)-(_s2)) > 0)
526#define seq_geq(_s1, _s2) ((i32)((_s1)-(_s2)) >= 0)
Florin Corasf03a59a2017-06-09 21:07:32 -0700527#define seq_max(_s1, _s2) (seq_gt((_s1), (_s2)) ? (_s1) : (_s2))
Dave Barach68b0fb02017-02-28 15:15:56 -0500528
529/* Modulo arithmetic for timestamps */
530#define timestamp_lt(_t1, _t2) ((i32)((_t1)-(_t2)) < 0)
531#define timestamp_leq(_t1, _t2) ((i32)((_t1)-(_t2)) <= 0)
532
Florin Coras93992a92017-05-24 18:03:56 -0700533/**
534 * Our estimate of the number of bytes that have left the network
535 */
536always_inline u32
537tcp_bytes_out (const tcp_connection_t * tc)
538{
539 if (tcp_opts_sack_permitted (&tc->rcv_opts))
540 return tc->sack_sb.sacked_bytes + tc->sack_sb.lost_bytes;
541 else
542 return tc->rcv_dupacks * tc->snd_mss;
543}
544
545/**
546 * Our estimate of the number of bytes in flight (pipe size)
547 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500548always_inline u32
549tcp_flight_size (const tcp_connection_t * tc)
550{
Florin Coras6792ec02017-03-13 03:49:51 -0700551 int flight_size;
552
Florin Coras93992a92017-05-24 18:03:56 -0700553 flight_size = (int) (tc->snd_una_max - tc->snd_una) - tcp_bytes_out (tc)
554 + tc->snd_rxt_bytes;
Florin Coras6792ec02017-03-13 03:49:51 -0700555
Florin Coras6792ec02017-03-13 03:49:51 -0700556 if (flight_size < 0)
Florin Coras93992a92017-05-24 18:03:56 -0700557 {
558 if (0)
559 clib_warning
560 ("Negative: %u %u %u dupacks %u sacked bytes %u flags %d",
561 tc->snd_una_max - tc->snd_una, tcp_bytes_out (tc),
562 tc->snd_rxt_bytes, tc->rcv_dupacks, tc->sack_sb.sacked_bytes,
563 tc->rcv_opts.flags);
564 return 0;
565 }
Florin Coras6792ec02017-03-13 03:49:51 -0700566
567 return flight_size;
Dave Barach68b0fb02017-02-28 15:15:56 -0500568}
569
570/**
571 * Initial cwnd as per RFC5681
572 */
573always_inline u32
574tcp_initial_cwnd (const tcp_connection_t * tc)
575{
576 if (tc->snd_mss > 2190)
577 return 2 * tc->snd_mss;
578 else if (tc->snd_mss > 1095)
579 return 3 * tc->snd_mss;
580 else
581 return 4 * tc->snd_mss;
582}
583
584always_inline u32
585tcp_loss_wnd (const tcp_connection_t * tc)
586{
587 return tc->snd_mss;
588}
589
590always_inline u32
Florin Coras1f152cd2017-08-18 19:28:03 -0700591tcp_available_snd_wnd (const tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500592{
593 return clib_min (tc->cwnd, tc->snd_wnd);
594}
595
596always_inline u32
Florin Coras1f152cd2017-08-18 19:28:03 -0700597tcp_available_output_snd_space (const tcp_connection_t * tc)
598{
599 u32 available_wnd = tcp_available_snd_wnd (tc);
600 int flight_size = (int) (tc->snd_nxt - tc->snd_una);
601
602 if (available_wnd <= flight_size)
603 return 0;
604
605 return available_wnd - flight_size;
606}
607
608/**
609 * Estimate of how many bytes we can still push into the network
610 */
611always_inline u32
Dave Barach68b0fb02017-02-28 15:15:56 -0500612tcp_available_snd_space (const tcp_connection_t * tc)
613{
Florin Coras1f152cd2017-08-18 19:28:03 -0700614 u32 available_wnd = tcp_available_snd_wnd (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500615 u32 flight_size = tcp_flight_size (tc);
616
617 if (available_wnd <= flight_size)
618 return 0;
619
620 return available_wnd - flight_size;
621}
622
Florin Corasb2215d62017-08-01 16:56:58 -0700623always_inline u8
624tcp_is_lost_fin (tcp_connection_t * tc)
625{
626 if ((tc->flags & TCP_CONN_FINSNT) && tc->snd_una_max - tc->snd_una == 1)
627 return 1;
628 return 0;
629}
630
Florin Coras93992a92017-05-24 18:03:56 -0700631i32 tcp_rcv_wnd_available (tcp_connection_t * tc);
Florin Corasbb292f42017-05-19 09:49:19 -0700632u32 tcp_snd_space (tcp_connection_t * tc);
Florin Coras6792ec02017-03-13 03:49:51 -0700633void tcp_update_rcv_wnd (tcp_connection_t * tc);
634
Dave Barach68b0fb02017-02-28 15:15:56 -0500635void tcp_retransmit_first_unacked (tcp_connection_t * tc);
Florin Coras93992a92017-05-24 18:03:56 -0700636void tcp_fast_retransmit_no_sack (tcp_connection_t * tc);
637void tcp_fast_retransmit_sack (tcp_connection_t * tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500638void tcp_fast_retransmit (tcp_connection_t * tc);
Florin Coras93992a92017-05-24 18:03:56 -0700639void tcp_cc_init_congestion (tcp_connection_t * tc);
640int tcp_cc_recover (tcp_connection_t * tc);
641void tcp_cc_fastrecovery_exit (tcp_connection_t * tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500642
Florin Corasf6359c82017-06-19 12:26:09 -0400643fib_node_index_t tcp_lookup_rmt_in_fib (tcp_connection_t * tc);
644
Florin Coras45d34962017-04-25 00:05:27 -0700645/* Made public for unit testing only */
646void tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end);
647
Dave Barach68b0fb02017-02-28 15:15:56 -0500648always_inline u32
649tcp_time_now (void)
650{
Florin Coras82d3ec82017-08-14 08:10:42 -0700651 return tcp_main.time_now[vlib_get_thread_index ()];
652}
653
654always_inline u32
655tcp_set_time_now (u32 thread_index)
656{
657 tcp_main.time_now[thread_index] = clib_cpu_time_now ()
658 * tcp_main.tstamp_ticks_per_clock;
659 return tcp_main.time_now[thread_index];
Dave Barach68b0fb02017-02-28 15:15:56 -0500660}
661
Florin Coras6cf30ad2017-04-04 23:08:23 -0700662always_inline void
663tcp_update_time (f64 now, u32 thread_index)
664{
Florin Coras82d3ec82017-08-14 08:10:42 -0700665 tcp_set_time_now (thread_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700666 tw_timer_expire_timers_16t_2w_512sl (&tcp_main.timer_wheels[thread_index],
667 now);
Florin Coras66b11312017-07-31 17:18:03 -0700668 tcp_flush_frames_to_output (thread_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700669}
670
Dave Barach68b0fb02017-02-28 15:15:56 -0500671u32 tcp_push_header (transport_connection_t * tconn, vlib_buffer_t * b);
672
673u32
Florin Corasb2215d62017-08-01 16:56:58 -0700674tcp_prepare_retransmit_segment (tcp_connection_t * tc, u32 offset,
675 u32 max_bytes, vlib_buffer_t ** b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500676
677void tcp_connection_timers_init (tcp_connection_t * tc);
678void tcp_connection_timers_reset (tcp_connection_t * tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500679void tcp_connection_init_vars (tcp_connection_t * tc);
680
681always_inline void
682tcp_connection_force_ack (tcp_connection_t * tc, vlib_buffer_t * b)
683{
684 /* Reset flags, make sure ack is sent */
685 tc->flags = TCP_CONN_SNDACK;
686 vnet_buffer (b)->tcp.flags &= ~TCP_BUF_FLAG_DUPACK;
687}
688
689always_inline void
690tcp_timer_set (tcp_connection_t * tc, u8 timer_id, u32 interval)
691{
Dave Barach2c25a622017-06-26 11:35:07 -0400692 ASSERT (tc->c_thread_index == vlib_get_thread_index ());
Dave Barach68b0fb02017-02-28 15:15:56 -0500693 tc->timers[timer_id]
694 = tw_timer_start_16t_2w_512sl (&tcp_main.timer_wheels[tc->c_thread_index],
695 tc->c_c_index, timer_id, interval);
696}
697
698always_inline void
Dave Barach68b0fb02017-02-28 15:15:56 -0500699tcp_timer_reset (tcp_connection_t * tc, u8 timer_id)
700{
Dave Barach2c25a622017-06-26 11:35:07 -0400701 ASSERT (tc->c_thread_index == vlib_get_thread_index ());
Dave Barach68b0fb02017-02-28 15:15:56 -0500702 if (tc->timers[timer_id] == TCP_TIMER_HANDLE_INVALID)
703 return;
704
705 tw_timer_stop_16t_2w_512sl (&tcp_main.timer_wheels[tc->c_thread_index],
706 tc->timers[timer_id]);
707 tc->timers[timer_id] = TCP_TIMER_HANDLE_INVALID;
708}
709
710always_inline void
711tcp_timer_update (tcp_connection_t * tc, u8 timer_id, u32 interval)
712{
Dave Barach2c25a622017-06-26 11:35:07 -0400713 ASSERT (tc->c_thread_index == vlib_get_thread_index ());
Dave Barach68b0fb02017-02-28 15:15:56 -0500714 if (tc->timers[timer_id] != TCP_TIMER_HANDLE_INVALID)
715 tw_timer_stop_16t_2w_512sl (&tcp_main.timer_wheels[tc->c_thread_index],
716 tc->timers[timer_id]);
717 tc->timers[timer_id] =
718 tw_timer_start_16t_2w_512sl (&tcp_main.timer_wheels[tc->c_thread_index],
719 tc->c_c_index, timer_id, interval);
720}
721
Florin Coras6792ec02017-03-13 03:49:51 -0700722always_inline void
723tcp_retransmit_timer_set (tcp_connection_t * tc)
724{
725 tcp_timer_set (tc, TCP_TIMER_RETRANSMIT,
726 clib_max (tc->rto * TCP_TO_TIMER_TICK, 1));
727}
728
729always_inline void
Florin Coras6792ec02017-03-13 03:49:51 -0700730tcp_retransmit_timer_reset (tcp_connection_t * tc)
731{
732 tcp_timer_reset (tc, TCP_TIMER_RETRANSMIT);
733}
734
Florin Coras3e350af2017-03-30 02:54:28 -0700735always_inline void
Florin Coras93992a92017-05-24 18:03:56 -0700736tcp_retransmit_timer_force_update (tcp_connection_t * tc)
737{
738 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT,
739 clib_max (tc->rto * TCP_TO_TIMER_TICK, 1));
740}
741
742always_inline void
Florin Coras3e350af2017-03-30 02:54:28 -0700743tcp_persist_timer_set (tcp_connection_t * tc)
744{
745 /* Reuse RTO. It's backed off in handler */
746 tcp_timer_set (tc, TCP_TIMER_PERSIST,
Florin Coras5921f982017-04-03 18:00:00 -0700747 clib_max (tc->rto * TCP_TO_TIMER_TICK,
748 TCP_TIMER_PERSIST_MIN));
Florin Coras3e350af2017-03-30 02:54:28 -0700749}
750
751always_inline void
752tcp_persist_timer_update (tcp_connection_t * tc)
753{
754 tcp_timer_update (tc, TCP_TIMER_PERSIST,
Florin Coras5921f982017-04-03 18:00:00 -0700755 clib_max (tc->rto * TCP_TO_TIMER_TICK,
756 TCP_TIMER_PERSIST_MIN));
Florin Coras3e350af2017-03-30 02:54:28 -0700757}
758
759always_inline void
760tcp_persist_timer_reset (tcp_connection_t * tc)
761{
762 tcp_timer_reset (tc, TCP_TIMER_PERSIST);
763}
764
Florin Coras93992a92017-05-24 18:03:56 -0700765always_inline void
766tcp_retransmit_timer_update (tcp_connection_t * tc)
767{
768 if (tc->snd_una == tc->snd_una_max)
769 {
770 tcp_retransmit_timer_reset (tc);
771 if (tc->snd_wnd < tc->snd_mss)
772 tcp_persist_timer_set (tc);
773 }
774 else
775 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT,
776 clib_max (tc->rto * TCP_TO_TIMER_TICK, 1));
777}
778
Dave Barach68b0fb02017-02-28 15:15:56 -0500779always_inline u8
780tcp_timer_is_active (tcp_connection_t * tc, tcp_timers_e timer)
781{
782 return tc->timers[timer] != TCP_TIMER_HANDLE_INVALID;
783}
784
Florin Coras93992a92017-05-24 18:03:56 -0700785#define tcp_validate_txf_size(_tc, _a) \
786 ASSERT(_tc->state != TCP_STATE_ESTABLISHED \
787 || stream_session_tx_fifo_max_dequeue (&_tc->connection) >= _a)
788
Dave Barach68b0fb02017-02-28 15:15:56 -0500789void
790scoreboard_remove_hole (sack_scoreboard_t * sb,
791 sack_scoreboard_hole_t * hole);
Florin Coras93992a92017-05-24 18:03:56 -0700792void scoreboard_update_lost (tcp_connection_t * tc, sack_scoreboard_t * sb);
793sack_scoreboard_hole_t *scoreboard_insert_hole (sack_scoreboard_t * sb,
794 u32 prev_index, u32 start,
795 u32 end);
796sack_scoreboard_hole_t *scoreboard_next_rxt_hole (sack_scoreboard_t * sb,
797 sack_scoreboard_hole_t *
798 start, u8 have_sent_1_smss,
799 u8 * can_rescue,
800 u8 * snd_limited);
Florin Coras3eb50622017-07-13 01:24:57 -0400801void scoreboard_init_high_rxt (sack_scoreboard_t * sb, u32 seq);
Dave Barach68b0fb02017-02-28 15:15:56 -0500802
803always_inline sack_scoreboard_hole_t *
Florin Coras6792ec02017-03-13 03:49:51 -0700804scoreboard_get_hole (sack_scoreboard_t * sb, u32 index)
805{
806 if (index != TCP_INVALID_SACK_HOLE_INDEX)
807 return pool_elt_at_index (sb->holes, index);
808 return 0;
809}
810
811always_inline sack_scoreboard_hole_t *
Dave Barach68b0fb02017-02-28 15:15:56 -0500812scoreboard_next_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
813{
814 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
815 return pool_elt_at_index (sb->holes, hole->next);
816 return 0;
817}
818
819always_inline sack_scoreboard_hole_t *
Florin Coras93992a92017-05-24 18:03:56 -0700820scoreboard_prev_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
821{
822 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
823 return pool_elt_at_index (sb->holes, hole->prev);
824 return 0;
825}
826
827always_inline sack_scoreboard_hole_t *
Dave Barach68b0fb02017-02-28 15:15:56 -0500828scoreboard_first_hole (sack_scoreboard_t * sb)
829{
830 if (sb->head != TCP_INVALID_SACK_HOLE_INDEX)
831 return pool_elt_at_index (sb->holes, sb->head);
832 return 0;
833}
834
Florin Coras6792ec02017-03-13 03:49:51 -0700835always_inline sack_scoreboard_hole_t *
836scoreboard_last_hole (sack_scoreboard_t * sb)
837{
838 if (sb->tail != TCP_INVALID_SACK_HOLE_INDEX)
839 return pool_elt_at_index (sb->holes, sb->tail);
840 return 0;
841}
842
Dave Barach68b0fb02017-02-28 15:15:56 -0500843always_inline void
844scoreboard_clear (sack_scoreboard_t * sb)
845{
Florin Coras93992a92017-05-24 18:03:56 -0700846 sack_scoreboard_hole_t *hole;
Dave Barach68b0fb02017-02-28 15:15:56 -0500847 while ((hole = scoreboard_first_hole (sb)))
848 {
849 scoreboard_remove_hole (sb, hole);
850 }
Florin Corasf03a59a2017-06-09 21:07:32 -0700851 ASSERT (sb->head == sb->tail && sb->head == TCP_INVALID_SACK_HOLE_INDEX);
Florin Coras3eb50622017-07-13 01:24:57 -0400852 ASSERT (pool_elts (sb->holes) == 0);
Florin Coras6792ec02017-03-13 03:49:51 -0700853 sb->sacked_bytes = 0;
854 sb->last_sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700855 sb->last_bytes_delivered = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700856 sb->snd_una_adv = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700857 sb->high_sacked = 0;
858 sb->high_rxt = 0;
859 sb->lost_bytes = 0;
860 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
Dave Barach68b0fb02017-02-28 15:15:56 -0500861}
862
863always_inline u32
864scoreboard_hole_bytes (sack_scoreboard_hole_t * hole)
865{
866 return hole->end - hole->start;
867}
868
Florin Coras6792ec02017-03-13 03:49:51 -0700869always_inline u32
870scoreboard_hole_index (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
871{
Florin Coras3eb50622017-07-13 01:24:57 -0400872 ASSERT (!pool_is_free_index (sb->holes, hole - sb->holes));
Florin Coras6792ec02017-03-13 03:49:51 -0700873 return hole - sb->holes;
874}
875
876always_inline void
877scoreboard_init (sack_scoreboard_t * sb)
878{
879 sb->head = TCP_INVALID_SACK_HOLE_INDEX;
880 sb->tail = TCP_INVALID_SACK_HOLE_INDEX;
Florin Coras93992a92017-05-24 18:03:56 -0700881 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
Florin Coras6792ec02017-03-13 03:49:51 -0700882}
883
884void tcp_rcv_sacks (tcp_connection_t * tc, u32 ack);
885
Dave Barach68b0fb02017-02-28 15:15:56 -0500886always_inline void
887tcp_cc_algo_register (tcp_cc_algorithm_type_e type,
888 const tcp_cc_algorithm_t * vft)
889{
890 tcp_main_t *tm = vnet_get_tcp_main ();
891 vec_validate (tm->cc_algos, type);
892
893 tm->cc_algos[type] = *vft;
894}
895
896always_inline tcp_cc_algorithm_t *
897tcp_cc_algo_get (tcp_cc_algorithm_type_e type)
898{
899 tcp_main_t *tm = vnet_get_tcp_main ();
900 return &tm->cc_algos[type];
901}
902
903void tcp_cc_init (tcp_connection_t * tc);
904
905/**
906 * Push TCP header to buffer
907 *
908 * @param vm - vlib_main
909 * @param b - buffer to write the header to
910 * @param sp_net - source port net order
911 * @param dp_net - destination port net order
912 * @param seq - sequence number net order
913 * @param ack - ack number net order
914 * @param tcp_hdr_opts_len - header and options length in bytes
915 * @param flags - header flags
916 * @param wnd - window size
917 *
918 * @return - pointer to start of TCP header
919 */
920always_inline void *
921vlib_buffer_push_tcp_net_order (vlib_buffer_t * b, u16 sp, u16 dp, u32 seq,
922 u32 ack, u8 tcp_hdr_opts_len, u8 flags,
923 u16 wnd)
924{
925 tcp_header_t *th;
926
927 th = vlib_buffer_push_uninit (b, tcp_hdr_opts_len);
928
929 th->src_port = sp;
930 th->dst_port = dp;
931 th->seq_number = seq;
932 th->ack_number = ack;
933 th->data_offset_and_reserved = (tcp_hdr_opts_len >> 2) << 4;
934 th->flags = flags;
935 th->window = wnd;
936 th->checksum = 0;
937 th->urgent_pointer = 0;
938 return th;
939}
940
941/**
942 * Push TCP header to buffer
943 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500944 * @param b - buffer to write the header to
945 * @param sp_net - source port net order
946 * @param dp_net - destination port net order
947 * @param seq - sequence number host order
948 * @param ack - ack number host order
949 * @param tcp_hdr_opts_len - header and options length in bytes
950 * @param flags - header flags
951 * @param wnd - window size
952 *
953 * @return - pointer to start of TCP header
954 */
955always_inline void *
956vlib_buffer_push_tcp (vlib_buffer_t * b, u16 sp_net, u16 dp_net, u32 seq,
957 u32 ack, u8 tcp_hdr_opts_len, u8 flags, u16 wnd)
958{
959 return vlib_buffer_push_tcp_net_order (b, sp_net, dp_net,
960 clib_host_to_net_u32 (seq),
961 clib_host_to_net_u32 (ack),
962 tcp_hdr_opts_len, flags,
963 clib_host_to_net_u16 (wnd));
964}
965
966#endif /* _vnet_tcp_h_ */
967
968/*
969 * fd.io coding-style-patch-verification: ON
970 *
971 * Local Variables:
972 * eval: (c-set-style "gnu")
973 * End:
974 */