blob: 22f00a6327323d62443be55f002bf3c3657b6edc [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>
25
26#define TCP_TICK 10e-3 /**< TCP tick period (s) */
27#define THZ 1/TCP_TICK /**< TCP tick frequency */
28#define TCP_TSTAMP_RESOLUTION TCP_TICK /**< Time stamp resolution */
29#define TCP_PAWS_IDLE 24 * 24 * 60 * 60 * THZ /**< 24 days */
30#define TCP_MAX_OPTION_SPACE 40
31
32#define TCP_DUPACK_THRESHOLD 3
33#define TCP_DEFAULT_RX_FIFO_SIZE 64 << 10
34
35/** TCP FSM state definitions as per RFC793. */
36#define foreach_tcp_fsm_state \
37 _(CLOSED, "CLOSED") \
38 _(LISTEN, "LISTEN") \
39 _(SYN_SENT, "SYN_SENT") \
40 _(SYN_RCVD, "SYN_RCVD") \
41 _(ESTABLISHED, "ESTABLISHED") \
42 _(CLOSE_WAIT, "CLOSE_WAIT") \
43 _(FIN_WAIT_1, "FIN_WAIT_1") \
44 _(LAST_ACK, "LAST_ACK") \
45 _(CLOSING, "CLOSING") \
46 _(FIN_WAIT_2, "FIN_WAIT_2") \
47 _(TIME_WAIT, "TIME_WAIT")
48
49typedef enum _tcp_state
50{
51#define _(sym, str) TCP_STATE_##sym,
52 foreach_tcp_fsm_state
53#undef _
54 TCP_N_STATES
55} tcp_state_t;
56
57format_function_t format_tcp_state;
58
59/** TCP timers */
60#define foreach_tcp_timer \
61 _(RETRANSMIT, "RETRANSMIT") \
62 _(DELACK, "DELAYED ACK") \
63 _(PERSIST, "PERSIST") \
64 _(KEEP, "KEEP") \
65 _(2MSL, "2MSL") \
66 _(RETRANSMIT_SYN, "RETRANSMIT_SYN") \
67 _(ESTABLISH, "ESTABLISH")
68
69typedef enum _tcp_timers
70{
71#define _(sym, str) TCP_TIMER_##sym,
72 foreach_tcp_timer
73#undef _
74 TCP_N_TIMERS
75} tcp_timers_e;
76
77typedef void (timer_expiration_handler) (u32 index);
78
79extern timer_expiration_handler tcp_timer_delack_handler;
80extern timer_expiration_handler tcp_timer_retransmit_handler;
81extern timer_expiration_handler tcp_timer_retransmit_syn_handler;
82
83#define TCP_TIMER_HANDLE_INVALID ((u32) ~0)
84
85/* Timer delays as multiples of 100ms */
86#define TCP_TO_TIMER_TICK TCP_TICK*10 /* Period for converting from TCP
87 * ticks to timer units */
88#define TCP_DELACK_TIME 1 /* 0.1s */
89#define TCP_ESTABLISH_TIME 750 /* 75s */
90#define TCP_2MSL_TIME 300 /* 30s */
91
92#define TCP_RTO_MAX 60 * THZ /* Min max RTO (60s) as per RFC6298 */
93#define TCP_RTT_MAX 30 * THZ /* 30s (probably too much) */
94#define TCP_RTO_SYN_RETRIES 3 /* SYN retries without doubling RTO */
95#define TCP_RTO_INIT 1 * THZ /* Initial retransmit timer */
96
97void tcp_update_time (f64 now, u32 thread_index);
98
99/** TCP connection flags */
100#define foreach_tcp_connection_flag \
101 _(DELACK, "Delay ACK") \
102 _(SNDACK, "Send ACK") \
103 _(BURSTACK, "Burst ACK set") \
104 _(SENT_RCV_WND0, "Sent 0 receive window") \
105 _(RECOVERY, "Recovery on") \
106 _(FAST_RECOVERY, "Fast Recovery on")
107
108typedef enum _tcp_connection_flag_bits
109{
110#define _(sym, str) TCP_CONN_##sym##_BIT,
111 foreach_tcp_connection_flag
112#undef _
113 TCP_CONN_N_FLAG_BITS
114} tcp_connection_flag_bits_e;
115
116typedef enum _tcp_connection_flag
117{
118#define _(sym, str) TCP_CONN_##sym = 1 << TCP_CONN_##sym##_BIT,
119 foreach_tcp_connection_flag
120#undef _
121 TCP_CONN_N_FLAGS
122} tcp_connection_flags_e;
123
124/** TCP buffer flags */
125#define foreach_tcp_buf_flag \
126 _ (ACK) /**< Sending ACK. */ \
127 _ (DUPACK) /**< Sending DUPACK. */ \
128
129enum
130{
131#define _(f) TCP_BUF_BIT_##f,
132 foreach_tcp_buf_flag
133#undef _
134 TCP_N_BUF_BITS,
135};
136
137enum
138{
139#define _(f) TCP_BUF_FLAG_##f = 1 << TCP_BUF_BIT_##f,
140 foreach_tcp_buf_flag
141#undef _
142};
143
144#define TCP_MAX_SACK_BLOCKS 5 /**< Max number of SACK blocks stored */
145#define TCP_INVALID_SACK_HOLE_INDEX ((u32)~0)
146
147typedef struct _sack_scoreboard_hole
148{
149 u32 next; /**< Index for next entry in linked list */
150 u32 prev; /**< Index for previous entry in linked list */
151 u32 start; /**< Start sequence number */
152 u32 end; /**< End sequence number */
153} sack_scoreboard_hole_t;
154
155typedef struct _sack_scoreboard
156{
157 sack_scoreboard_hole_t *holes; /**< Pool of holes */
158 u32 head; /**< Index to first entry */
159 u32 sacked_bytes; /**< Number of bytes sacked in sb */
160} sack_scoreboard_t;
161
162typedef enum _tcp_cc_algorithm_type
163{
164 TCP_CC_NEWRENO,
165} tcp_cc_algorithm_type_e;
166
167typedef struct _tcp_cc_algorithm tcp_cc_algorithm_t;
168
169typedef enum _tcp_cc_ack_t
170{
171 TCP_CC_ACK,
172 TCP_CC_DUPACK,
173 TCP_CC_PARTIALACK
174} tcp_cc_ack_t;
175
176typedef struct _tcp_connection
177{
178 transport_connection_t connection; /**< Common transport data. First! */
179
180 u8 state; /**< TCP state as per tcp_state_t */
181 u16 flags; /**< Connection flags (see tcp_conn_flags_e) */
182 u32 timers[TCP_N_TIMERS]; /**< Timer handles into timer wheel */
183
184 /* TODO RFC4898 */
185
186 /** Send sequence variables RFC793 */
187 u32 snd_una; /**< oldest unacknowledged sequence number */
188 u32 snd_una_max; /**< newest unacknowledged sequence number + 1*/
189 u32 snd_wnd; /**< send window */
190 u32 snd_wl1; /**< seq number used for last snd.wnd update */
191 u32 snd_wl2; /**< ack number used for last snd.wnd update */
192 u32 snd_nxt; /**< next seq number to be sent */
193
194 /** Receive sequence variables RFC793 */
195 u32 rcv_nxt; /**< next sequence number expected */
196 u32 rcv_wnd; /**< receive window we expect */
197
198 u32 rcv_las; /**< rcv_nxt at last ack sent/rcv_wnd update */
199 u32 iss; /**< initial sent sequence */
200 u32 irs; /**< initial remote sequence */
201
202 /* Options */
203 tcp_options_t opt; /**< TCP connection options parsed */
204 u8 rcv_wscale; /**< Window scale to advertise to peer */
205 u8 snd_wscale; /**< Window scale to use when sending */
206 u32 tsval_recent; /**< Last timestamp received */
207 u32 tsval_recent_age; /**< When last updated tstamp_recent*/
208
209 sack_block_t *snd_sacks; /**< Vector of SACKs to send. XXX Fixed size? */
210 sack_scoreboard_t sack_sb; /**< SACK "scoreboard" that tracks holes */
211
212 u8 rcv_dupacks; /**< Number of DUPACKs received */
213 u8 snt_dupacks; /**< Number of DUPACKs sent in a burst */
214
215 /* Congestion control */
216 u32 cwnd; /**< Congestion window */
217 u32 ssthresh; /**< Slow-start threshold */
218 u32 prev_ssthresh; /**< ssthresh before congestion */
219 u32 bytes_acked; /**< Bytes acknowledged by current segment */
220 u32 rtx_bytes; /**< Retransmitted bytes */
221 u32 tsecr_last_ack; /**< Timestamp echoed to us in last health ACK */
222 tcp_cc_algorithm_t *cc_algo; /**< Congestion control algorithm */
223
224 /* RTT and RTO */
225 u32 rto; /**< Retransmission timeout */
226 u32 rto_boff; /**< Index for RTO backoff */
227 u32 srtt; /**< Smoothed RTT */
228 u32 rttvar; /**< Smoothed mean RTT difference. Approximates variance */
229 u32 rtt_ts; /**< Timestamp for tracked ACK */
230 u32 rtt_seq; /**< Sequence number for tracked ACK */
231
232 u16 snd_mss; /**< Send MSS */
233} tcp_connection_t;
234
235struct _tcp_cc_algorithm
236{
237 void (*rcv_ack) (tcp_connection_t * tc);
238 void (*rcv_cong_ack) (tcp_connection_t * tc, tcp_cc_ack_t ack);
239 void (*congestion) (tcp_connection_t * tc);
240 void (*recovered) (tcp_connection_t * tc);
241 void (*init) (tcp_connection_t * tc);
242};
243
244#define tcp_fastrecovery_on(tc) (tc)->flags |= TCP_CONN_FAST_RECOVERY
245#define tcp_fastrecovery_off(tc) (tc)->flags &= ~TCP_CONN_FAST_RECOVERY
246#define tcp_in_fastrecovery(tc) ((tc)->flags & TCP_CONN_FAST_RECOVERY)
247#define tcp_in_recovery(tc) ((tc)->flags & (TCP_CONN_FAST_RECOVERY | TCP_CONN_RECOVERY))
248#define tcp_recovery_off(tc) ((tc)->flags &= ~(TCP_CONN_FAST_RECOVERY | TCP_CONN_RECOVERY))
249#define tcp_in_slowstart(tc) (tc->cwnd < tc->ssthresh)
250
251typedef enum
252{
253 TCP_IP4,
254 TCP_IP6,
255 TCP_N_AF,
256} tcp_af_t;
257
258typedef enum _tcp_error
259{
260#define tcp_error(n,s) TCP_ERROR_##n,
261#include <vnet/tcp/tcp_error.def>
262#undef tcp_error
263 TCP_N_ERROR,
264} tcp_error_t;
265
266typedef struct _tcp_lookup_dispatch
267{
268 u8 next, error;
269} tcp_lookup_dispatch_t;
270
271typedef struct _tcp_main
272{
273 /* Per-worker thread tcp connection pools */
274 tcp_connection_t **connections;
275
276 /* Pool of listeners. */
277 tcp_connection_t *listener_pool;
278
279 /** Dispatch table by state and flags */
280 tcp_lookup_dispatch_t dispatch_table[TCP_N_STATES][64];
281
282 u8 log2_tstamp_clocks_per_tick;
283 f64 tstamp_ticks_per_clock;
284
285 /** per-worker tx buffer free lists */
286 u32 **tx_buffers;
287
288 /* Per worker-thread timer wheel for connections timers */
289 tw_timer_wheel_16t_2w_512sl_t *timer_wheels;
290
291 /* Convenience per worker-thread vector of connections to DELACK */
292 u32 **delack_connections;
293
294 /* Pool of half-open connections on which we've sent a SYN */
295 tcp_connection_t *half_open_connections;
296
297 /* Pool of local TCP endpoints */
298 transport_endpoint_t *local_endpoints;
299
300 /* Local endpoints lookup table */
301 transport_endpoint_table_t local_endpoints_table;
302
303 /* Congestion control algorithms registered */
304 tcp_cc_algorithm_t *cc_algos;
305
306 /* convenience */
307 vlib_main_t *vlib_main;
308 vnet_main_t *vnet_main;
309 ip4_main_t *ip4_main;
310 ip6_main_t *ip6_main;
311} tcp_main_t;
312
313extern tcp_main_t tcp_main;
314extern vlib_node_registration_t tcp4_input_node;
315extern vlib_node_registration_t tcp6_input_node;
316extern vlib_node_registration_t tcp4_output_node;
317extern vlib_node_registration_t tcp6_output_node;
318
319always_inline tcp_main_t *
320vnet_get_tcp_main ()
321{
322 return &tcp_main;
323}
324
325always_inline tcp_connection_t *
326tcp_connection_get (u32 conn_index, u32 thread_index)
327{
328 return pool_elt_at_index (tcp_main.connections[thread_index], conn_index);
329}
330
331always_inline tcp_connection_t *
332tcp_connection_get_if_valid (u32 conn_index, u32 thread_index)
333{
334 if (tcp_main.connections[thread_index] == 0)
335 return 0;
336 if (pool_is_free_index (tcp_main.connections[thread_index], conn_index))
337 return 0;
338 return pool_elt_at_index (tcp_main.connections[thread_index], conn_index);
339}
340
341void tcp_connection_close (tcp_connection_t * tc);
342void tcp_connection_cleanup (tcp_connection_t * tc);
343void tcp_connection_del (tcp_connection_t * tc);
344
345always_inline tcp_connection_t *
346tcp_listener_get (u32 tli)
347{
348 return pool_elt_at_index (tcp_main.listener_pool, tli);
349}
350
351always_inline tcp_connection_t *
352tcp_half_open_connection_get (u32 conn_index)
353{
354 return pool_elt_at_index (tcp_main.half_open_connections, conn_index);
355}
356
357void tcp_make_ack (tcp_connection_t * ts, vlib_buffer_t * b);
358void tcp_make_finack (tcp_connection_t * tc, vlib_buffer_t * b);
359void tcp_make_synack (tcp_connection_t * ts, vlib_buffer_t * b);
360void tcp_send_reset (vlib_buffer_t * pkt, u8 is_ip4);
361void tcp_send_syn (tcp_connection_t * tc);
362void tcp_send_fin (tcp_connection_t * tc);
363void tcp_set_snd_mss (tcp_connection_t * tc);
364
365always_inline u32
366tcp_end_seq (tcp_header_t * th, u32 len)
367{
368 return th->seq_number + tcp_is_syn (th) + tcp_is_fin (th) + len;
369}
370
371/* Modulo arithmetic for TCP sequence numbers */
372#define seq_lt(_s1, _s2) ((i32)((_s1)-(_s2)) < 0)
373#define seq_leq(_s1, _s2) ((i32)((_s1)-(_s2)) <= 0)
374#define seq_gt(_s1, _s2) ((i32)((_s1)-(_s2)) > 0)
375#define seq_geq(_s1, _s2) ((i32)((_s1)-(_s2)) >= 0)
376
377/* Modulo arithmetic for timestamps */
378#define timestamp_lt(_t1, _t2) ((i32)((_t1)-(_t2)) < 0)
379#define timestamp_leq(_t1, _t2) ((i32)((_t1)-(_t2)) <= 0)
380
381always_inline u32
382tcp_flight_size (const tcp_connection_t * tc)
383{
384 return tc->snd_una_max - tc->snd_una - tc->sack_sb.sacked_bytes
385 + tc->rtx_bytes;
386}
387
388/**
389 * Initial cwnd as per RFC5681
390 */
391always_inline u32
392tcp_initial_cwnd (const tcp_connection_t * tc)
393{
394 if (tc->snd_mss > 2190)
395 return 2 * tc->snd_mss;
396 else if (tc->snd_mss > 1095)
397 return 3 * tc->snd_mss;
398 else
399 return 4 * tc->snd_mss;
400}
401
402always_inline u32
403tcp_loss_wnd (const tcp_connection_t * tc)
404{
405 return tc->snd_mss;
406}
407
408always_inline u32
409tcp_available_wnd (const tcp_connection_t * tc)
410{
411 return clib_min (tc->cwnd, tc->snd_wnd);
412}
413
414always_inline u32
415tcp_available_snd_space (const tcp_connection_t * tc)
416{
417 u32 available_wnd = tcp_available_wnd (tc);
418 u32 flight_size = tcp_flight_size (tc);
419
420 if (available_wnd <= flight_size)
421 return 0;
422
423 return available_wnd - flight_size;
424}
425
426void tcp_retransmit_first_unacked (tcp_connection_t * tc);
427
428void tcp_fast_retransmit (tcp_connection_t * tc);
429
430always_inline u32
431tcp_time_now (void)
432{
433 return clib_cpu_time_now () * tcp_main.tstamp_ticks_per_clock;
434}
435
436u32 tcp_push_header (transport_connection_t * tconn, vlib_buffer_t * b);
437
438u32
439tcp_prepare_retransmit_segment (tcp_connection_t * tc, vlib_buffer_t * b,
440 u32 max_bytes);
441
442void tcp_connection_timers_init (tcp_connection_t * tc);
443void tcp_connection_timers_reset (tcp_connection_t * tc);
444
445void tcp_connection_init_vars (tcp_connection_t * tc);
446
447always_inline void
448tcp_connection_force_ack (tcp_connection_t * tc, vlib_buffer_t * b)
449{
450 /* Reset flags, make sure ack is sent */
451 tc->flags = TCP_CONN_SNDACK;
452 vnet_buffer (b)->tcp.flags &= ~TCP_BUF_FLAG_DUPACK;
453}
454
455always_inline void
456tcp_timer_set (tcp_connection_t * tc, u8 timer_id, u32 interval)
457{
458 tc->timers[timer_id]
459 = tw_timer_start_16t_2w_512sl (&tcp_main.timer_wheels[tc->c_thread_index],
460 tc->c_c_index, timer_id, interval);
461}
462
463always_inline void
464tcp_retransmit_timer_set (tcp_main_t * tm, tcp_connection_t * tc)
465{
466 /* XXX Switch to faster TW */
467 tcp_timer_set (tc, TCP_TIMER_RETRANSMIT,
468 clib_max (tc->rto * TCP_TO_TIMER_TICK, 1));
469}
470
471always_inline void
472tcp_timer_reset (tcp_connection_t * tc, u8 timer_id)
473{
474 if (tc->timers[timer_id] == TCP_TIMER_HANDLE_INVALID)
475 return;
476
477 tw_timer_stop_16t_2w_512sl (&tcp_main.timer_wheels[tc->c_thread_index],
478 tc->timers[timer_id]);
479 tc->timers[timer_id] = TCP_TIMER_HANDLE_INVALID;
480}
481
482always_inline void
483tcp_timer_update (tcp_connection_t * tc, u8 timer_id, u32 interval)
484{
485 if (tc->timers[timer_id] != TCP_TIMER_HANDLE_INVALID)
486 tw_timer_stop_16t_2w_512sl (&tcp_main.timer_wheels[tc->c_thread_index],
487 tc->timers[timer_id]);
488 tc->timers[timer_id] =
489 tw_timer_start_16t_2w_512sl (&tcp_main.timer_wheels[tc->c_thread_index],
490 tc->c_c_index, timer_id, interval);
491}
492
493always_inline u8
494tcp_timer_is_active (tcp_connection_t * tc, tcp_timers_e timer)
495{
496 return tc->timers[timer] != TCP_TIMER_HANDLE_INVALID;
497}
498
499void
500scoreboard_remove_hole (sack_scoreboard_t * sb,
501 sack_scoreboard_hole_t * hole);
502
503always_inline sack_scoreboard_hole_t *
504scoreboard_next_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
505{
506 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
507 return pool_elt_at_index (sb->holes, hole->next);
508 return 0;
509}
510
511always_inline sack_scoreboard_hole_t *
512scoreboard_first_hole (sack_scoreboard_t * sb)
513{
514 if (sb->head != TCP_INVALID_SACK_HOLE_INDEX)
515 return pool_elt_at_index (sb->holes, sb->head);
516 return 0;
517}
518
519always_inline void
520scoreboard_clear (sack_scoreboard_t * sb)
521{
522 sack_scoreboard_hole_t *hole = scoreboard_first_hole (sb);
523 while ((hole = scoreboard_first_hole (sb)))
524 {
525 scoreboard_remove_hole (sb, hole);
526 }
527}
528
529always_inline u32
530scoreboard_hole_bytes (sack_scoreboard_hole_t * hole)
531{
532 return hole->end - hole->start;
533}
534
535always_inline void
536tcp_cc_algo_register (tcp_cc_algorithm_type_e type,
537 const tcp_cc_algorithm_t * vft)
538{
539 tcp_main_t *tm = vnet_get_tcp_main ();
540 vec_validate (tm->cc_algos, type);
541
542 tm->cc_algos[type] = *vft;
543}
544
545always_inline tcp_cc_algorithm_t *
546tcp_cc_algo_get (tcp_cc_algorithm_type_e type)
547{
548 tcp_main_t *tm = vnet_get_tcp_main ();
549 return &tm->cc_algos[type];
550}
551
552void tcp_cc_init (tcp_connection_t * tc);
553
554/**
555 * Push TCP header to buffer
556 *
557 * @param vm - vlib_main
558 * @param b - buffer to write the header to
559 * @param sp_net - source port net order
560 * @param dp_net - destination port net order
561 * @param seq - sequence number net order
562 * @param ack - ack number net order
563 * @param tcp_hdr_opts_len - header and options length in bytes
564 * @param flags - header flags
565 * @param wnd - window size
566 *
567 * @return - pointer to start of TCP header
568 */
569always_inline void *
570vlib_buffer_push_tcp_net_order (vlib_buffer_t * b, u16 sp, u16 dp, u32 seq,
571 u32 ack, u8 tcp_hdr_opts_len, u8 flags,
572 u16 wnd)
573{
574 tcp_header_t *th;
575
576 th = vlib_buffer_push_uninit (b, tcp_hdr_opts_len);
577
578 th->src_port = sp;
579 th->dst_port = dp;
580 th->seq_number = seq;
581 th->ack_number = ack;
582 th->data_offset_and_reserved = (tcp_hdr_opts_len >> 2) << 4;
583 th->flags = flags;
584 th->window = wnd;
585 th->checksum = 0;
586 th->urgent_pointer = 0;
587 return th;
588}
589
590/**
591 * Push TCP header to buffer
592 *
593 * @param vm - vlib_main
594 * @param b - buffer to write the header to
595 * @param sp_net - source port net order
596 * @param dp_net - destination port net order
597 * @param seq - sequence number host order
598 * @param ack - ack number host order
599 * @param tcp_hdr_opts_len - header and options length in bytes
600 * @param flags - header flags
601 * @param wnd - window size
602 *
603 * @return - pointer to start of TCP header
604 */
605always_inline void *
606vlib_buffer_push_tcp (vlib_buffer_t * b, u16 sp_net, u16 dp_net, u32 seq,
607 u32 ack, u8 tcp_hdr_opts_len, u8 flags, u16 wnd)
608{
609 return vlib_buffer_push_tcp_net_order (b, sp_net, dp_net,
610 clib_host_to_net_u32 (seq),
611 clib_host_to_net_u32 (ack),
612 tcp_hdr_opts_len, flags,
613 clib_host_to_net_u16 (wnd));
614}
615
616#endif /* _vnet_tcp_h_ */
617
618/*
619 * fd.io coding-style-patch-verification: ON
620 *
621 * Local Variables:
622 * eval: (c-set-style "gnu")
623 * End:
624 */