Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | |
| 16 | #include <vppinfra/sparse_vec.h> |
| 17 | #include <vnet/tcp/tcp_packet.h> |
| 18 | #include <vnet/tcp/tcp.h> |
| 19 | #include <vnet/session/session.h> |
| 20 | #include <math.h> |
| 21 | |
| 22 | static char *tcp_error_strings[] = { |
| 23 | #define tcp_error(n,s) s, |
| 24 | #include <vnet/tcp/tcp_error.def> |
| 25 | #undef tcp_error |
| 26 | }; |
| 27 | |
| 28 | /* All TCP nodes have the same outgoing arcs */ |
| 29 | #define foreach_tcp_state_next \ |
Vijayabhaskar Katamreddy | ce07412 | 2017-11-15 13:50:26 -0800 | [diff] [blame] | 30 | _ (DROP4, "ip4-drop") \ |
| 31 | _ (DROP6, "ip6-drop") \ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 32 | _ (TCP4_OUTPUT, "tcp4-output") \ |
| 33 | _ (TCP6_OUTPUT, "tcp6-output") |
| 34 | |
| 35 | typedef enum _tcp_established_next |
| 36 | { |
| 37 | #define _(s,n) TCP_ESTABLISHED_NEXT_##s, |
| 38 | foreach_tcp_state_next |
| 39 | #undef _ |
| 40 | TCP_ESTABLISHED_N_NEXT, |
| 41 | } tcp_established_next_t; |
| 42 | |
| 43 | typedef enum _tcp_rcv_process_next |
| 44 | { |
| 45 | #define _(s,n) TCP_RCV_PROCESS_NEXT_##s, |
| 46 | foreach_tcp_state_next |
| 47 | #undef _ |
| 48 | TCP_RCV_PROCESS_N_NEXT, |
| 49 | } tcp_rcv_process_next_t; |
| 50 | |
| 51 | typedef enum _tcp_syn_sent_next |
| 52 | { |
| 53 | #define _(s,n) TCP_SYN_SENT_NEXT_##s, |
| 54 | foreach_tcp_state_next |
| 55 | #undef _ |
| 56 | TCP_SYN_SENT_N_NEXT, |
| 57 | } tcp_syn_sent_next_t; |
| 58 | |
| 59 | typedef enum _tcp_listen_next |
| 60 | { |
| 61 | #define _(s,n) TCP_LISTEN_NEXT_##s, |
| 62 | foreach_tcp_state_next |
| 63 | #undef _ |
| 64 | TCP_LISTEN_N_NEXT, |
| 65 | } tcp_listen_next_t; |
| 66 | |
| 67 | /* Generic, state independent indices */ |
| 68 | typedef enum _tcp_state_next |
| 69 | { |
| 70 | #define _(s,n) TCP_NEXT_##s, |
| 71 | foreach_tcp_state_next |
| 72 | #undef _ |
| 73 | TCP_STATE_N_NEXT, |
| 74 | } tcp_state_next_t; |
| 75 | |
| 76 | #define tcp_next_output(is_ip4) (is_ip4 ? TCP_NEXT_TCP4_OUTPUT \ |
| 77 | : TCP_NEXT_TCP6_OUTPUT) |
| 78 | |
Vijayabhaskar Katamreddy | ce07412 | 2017-11-15 13:50:26 -0800 | [diff] [blame] | 79 | #define tcp_next_drop(is_ip4) (is_ip4 ? TCP_NEXT_DROP4 \ |
| 80 | : TCP_NEXT_DROP6) |
| 81 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 82 | vlib_node_registration_t tcp4_established_node; |
| 83 | vlib_node_registration_t tcp6_established_node; |
| 84 | |
| 85 | /** |
| 86 | * Validate segment sequence number. As per RFC793: |
| 87 | * |
| 88 | * Segment Receive Test |
| 89 | * Length Window |
| 90 | * ------- ------- ------------------------------------------- |
| 91 | * 0 0 SEG.SEQ = RCV.NXT |
| 92 | * 0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND |
| 93 | * >0 0 not acceptable |
| 94 | * >0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND |
| 95 | * or RCV.NXT =< SEG.SEQ+SEG.LEN-1 < RCV.NXT+RCV.WND |
| 96 | * |
| 97 | * This ultimately consists in checking if segment falls within the window. |
| 98 | * The one important difference compared to RFC793 is that we use rcv_las, |
| 99 | * or the rcv_nxt at last ack sent instead of rcv_nxt since that's the |
| 100 | * peer's reference when computing our receive window. |
| 101 | * |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 102 | * This: |
| 103 | * seq_leq (end_seq, tc->rcv_las + tc->rcv_wnd) && seq_geq (seq, tc->rcv_las) |
| 104 | * however, is too strict when we have retransmits. Instead we just check that |
| 105 | * the seq is not beyond the right edge and that the end of the segment is not |
| 106 | * less than the left edge. |
| 107 | * |
| 108 | * N.B. rcv_nxt and rcv_wnd are both updated in this node if acks are sent, so |
| 109 | * use rcv_nxt in the right edge window test instead of rcv_las. |
| 110 | * |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 111 | */ |
| 112 | always_inline u8 |
| 113 | tcp_segment_in_rcv_wnd (tcp_connection_t * tc, u32 seq, u32 end_seq) |
| 114 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 115 | return (seq_geq (end_seq, tc->rcv_las) |
| 116 | && seq_leq (seq, tc->rcv_nxt + tc->rcv_wnd)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 117 | } |
| 118 | |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 119 | /** |
| 120 | * Parse TCP header options. |
| 121 | * |
| 122 | * @param th TCP header |
| 123 | * @param to TCP options data structure to be populated |
| 124 | * @return -1 if parsing failed |
| 125 | */ |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 126 | static int |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 127 | tcp_options_parse (tcp_header_t * th, tcp_options_t * to) |
| 128 | { |
| 129 | const u8 *data; |
| 130 | u8 opt_len, opts_len, kind; |
| 131 | int j; |
| 132 | sack_block_t b; |
| 133 | |
| 134 | opts_len = (tcp_doff (th) << 2) - sizeof (tcp_header_t); |
| 135 | data = (const u8 *) (th + 1); |
| 136 | |
| 137 | /* Zero out all flags but those set in SYN */ |
Florin Coras | d6fe5bd | 2018-10-16 19:52:10 -0700 | [diff] [blame] | 138 | to->flags &= (TCP_OPTS_FLAG_SACK_PERMITTED | TCP_OPTS_FLAG_WSCALE |
| 139 | | TCP_OPTS_FLAG_SACK); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 140 | |
| 141 | for (; opts_len > 0; opts_len -= opt_len, data += opt_len) |
| 142 | { |
| 143 | kind = data[0]; |
| 144 | |
| 145 | /* Get options length */ |
| 146 | if (kind == TCP_OPTION_EOL) |
| 147 | break; |
| 148 | else if (kind == TCP_OPTION_NOOP) |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 149 | { |
| 150 | opt_len = 1; |
| 151 | continue; |
| 152 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 153 | else |
| 154 | { |
| 155 | /* broken options */ |
| 156 | if (opts_len < 2) |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 157 | return -1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 158 | opt_len = data[1]; |
| 159 | |
| 160 | /* weird option length */ |
| 161 | if (opt_len < 2 || opt_len > opts_len) |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 162 | return -1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | /* Parse options */ |
| 166 | switch (kind) |
| 167 | { |
| 168 | case TCP_OPTION_MSS: |
| 169 | if ((opt_len == TCP_OPTION_LEN_MSS) && tcp_syn (th)) |
| 170 | { |
| 171 | to->flags |= TCP_OPTS_FLAG_MSS; |
| 172 | to->mss = clib_net_to_host_u16 (*(u16 *) (data + 2)); |
| 173 | } |
| 174 | break; |
| 175 | case TCP_OPTION_WINDOW_SCALE: |
| 176 | if ((opt_len == TCP_OPTION_LEN_WINDOW_SCALE) && tcp_syn (th)) |
| 177 | { |
| 178 | to->flags |= TCP_OPTS_FLAG_WSCALE; |
| 179 | to->wscale = data[2]; |
| 180 | if (to->wscale > TCP_MAX_WND_SCALE) |
| 181 | { |
| 182 | clib_warning ("Illegal window scaling value: %d", |
| 183 | to->wscale); |
| 184 | to->wscale = TCP_MAX_WND_SCALE; |
| 185 | } |
| 186 | } |
| 187 | break; |
| 188 | case TCP_OPTION_TIMESTAMP: |
| 189 | if (opt_len == TCP_OPTION_LEN_TIMESTAMP) |
| 190 | { |
| 191 | to->flags |= TCP_OPTS_FLAG_TSTAMP; |
| 192 | to->tsval = clib_net_to_host_u32 (*(u32 *) (data + 2)); |
| 193 | to->tsecr = clib_net_to_host_u32 (*(u32 *) (data + 6)); |
| 194 | } |
| 195 | break; |
| 196 | case TCP_OPTION_SACK_PERMITTED: |
| 197 | if (opt_len == TCP_OPTION_LEN_SACK_PERMITTED && tcp_syn (th)) |
| 198 | to->flags |= TCP_OPTS_FLAG_SACK_PERMITTED; |
| 199 | break; |
| 200 | case TCP_OPTION_SACK_BLOCK: |
| 201 | /* If SACK permitted was not advertised or a SYN, break */ |
| 202 | if ((to->flags & TCP_OPTS_FLAG_SACK_PERMITTED) == 0 || tcp_syn (th)) |
| 203 | break; |
| 204 | |
| 205 | /* If too short or not correctly formatted, break */ |
| 206 | if (opt_len < 10 || ((opt_len - 2) % TCP_OPTION_LEN_SACK_BLOCK)) |
| 207 | break; |
| 208 | |
| 209 | to->flags |= TCP_OPTS_FLAG_SACK; |
| 210 | to->n_sack_blocks = (opt_len - 2) / TCP_OPTION_LEN_SACK_BLOCK; |
| 211 | vec_reset_length (to->sacks); |
| 212 | for (j = 0; j < to->n_sack_blocks; j++) |
| 213 | { |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 214 | b.start = clib_net_to_host_u32 (*(u32 *) (data + 2 + 8 * j)); |
| 215 | b.end = clib_net_to_host_u32 (*(u32 *) (data + 6 + 8 * j)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 216 | vec_add1 (to->sacks, b); |
| 217 | } |
| 218 | break; |
| 219 | default: |
| 220 | /* Nothing to see here */ |
| 221 | continue; |
| 222 | } |
| 223 | } |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 224 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 225 | } |
| 226 | |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 227 | /** |
| 228 | * RFC1323: Check against wrapped sequence numbers (PAWS). If we have |
| 229 | * timestamp to echo and it's less than tsval_recent, drop segment |
| 230 | * but still send an ACK in order to retain TCP's mechanism for detecting |
| 231 | * and recovering from half-open connections |
| 232 | * |
| 233 | * Or at least that's what the theory says. It seems that this might not work |
| 234 | * very well with packet reordering and fast retransmit. XXX |
| 235 | */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 236 | always_inline int |
| 237 | tcp_segment_check_paws (tcp_connection_t * tc) |
| 238 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 239 | return tcp_opts_tstamp (&tc->rcv_opts) && tc->tsval_recent |
| 240 | && timestamp_lt (tc->rcv_opts.tsval, tc->tsval_recent); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | /** |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 244 | * Update tsval recent |
| 245 | */ |
| 246 | always_inline void |
| 247 | tcp_update_timestamp (tcp_connection_t * tc, u32 seq, u32 seq_end) |
| 248 | { |
| 249 | /* |
| 250 | * RFC1323: If Last.ACK.sent falls within the range of sequence numbers |
| 251 | * of an incoming segment: |
| 252 | * SEG.SEQ <= Last.ACK.sent < SEG.SEQ + SEG.LEN |
| 253 | * then the TSval from the segment is copied to TS.Recent; |
| 254 | * otherwise, the TSval is ignored. |
| 255 | */ |
Florin Coras | f1762d6 | 2017-09-24 19:43:08 -0400 | [diff] [blame] | 256 | if (tcp_opts_tstamp (&tc->rcv_opts) && seq_leq (seq, tc->rcv_las) |
| 257 | && seq_leq (tc->rcv_las, seq_end)) |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 258 | { |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 259 | ASSERT (timestamp_leq (tc->tsval_recent, tc->rcv_opts.tsval)); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 260 | tc->tsval_recent = tc->rcv_opts.tsval; |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 261 | tc->tsval_recent_age = tcp_time_now_w_thread (tc->c_thread_index); |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 262 | } |
| 263 | } |
| 264 | |
| 265 | /** |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 266 | * Validate incoming segment as per RFC793 p. 69 and RFC1323 p. 19 |
| 267 | * |
| 268 | * It first verifies if segment has a wrapped sequence number (PAWS) and then |
| 269 | * does the processing associated to the first four steps (ignoring security |
| 270 | * and precedence): sequence number, rst bit and syn bit checks. |
| 271 | * |
| 272 | * @return 0 if segments passes validation. |
| 273 | */ |
| 274 | static int |
| 275 | tcp_segment_validate (vlib_main_t * vm, tcp_connection_t * tc0, |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 276 | vlib_buffer_t * b0, tcp_header_t * th0, |
| 277 | u32 * next0, u32 * error0) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 278 | { |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 279 | /* We could get a burst of RSTs interleaved with acks */ |
| 280 | if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED)) |
| 281 | { |
| 282 | tcp_send_reset (tc0); |
| 283 | *error0 = TCP_ERROR_CONNECTION_CLOSED; |
| 284 | goto drop; |
| 285 | } |
| 286 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 287 | if (PREDICT_FALSE (!tcp_ack (th0) && !tcp_rst (th0) && !tcp_syn (th0))) |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 288 | { |
| 289 | *error0 = TCP_ERROR_SEGMENT_INVALID; |
| 290 | goto drop; |
| 291 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 292 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 293 | if (PREDICT_FALSE (tcp_options_parse (th0, &tc0->rcv_opts))) |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 294 | { |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 295 | clib_warning ("options parse error"); |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 296 | *error0 = TCP_ERROR_OPTIONS; |
| 297 | goto drop; |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 298 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 299 | |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 300 | if (PREDICT_FALSE (tcp_segment_check_paws (tc0))) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 301 | { |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 302 | *error0 = TCP_ERROR_PAWS; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 303 | if (CLIB_DEBUG > 2) |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 304 | clib_warning ("paws failed\n%U", format_tcp_connection, tc0, 2); |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 305 | TCP_EVT_DBG (TCP_EVT_PAWS_FAIL, tc0, vnet_buffer (b0)->tcp.seq_number, |
| 306 | vnet_buffer (b0)->tcp.seq_end); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 307 | |
| 308 | /* If it just so happens that a segment updates tsval_recent for a |
| 309 | * segment over 24 days old, invalidate tsval_recent. */ |
| 310 | if (timestamp_lt (tc0->tsval_recent_age + TCP_PAWS_IDLE, |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 311 | tcp_time_now_w_thread (tc0->c_thread_index))) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 312 | { |
| 313 | /* Age isn't reset until we get a valid tsval (bsd inspired) */ |
| 314 | tc0->tsval_recent = 0; |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 315 | clib_warning ("paws failed - really old segment. REALLY?"); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 316 | } |
| 317 | else |
| 318 | { |
| 319 | /* Drop after ack if not rst */ |
| 320 | if (!tcp_rst (th0)) |
| 321 | { |
| 322 | tcp_make_ack (tc0, b0); |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 323 | TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp); |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 324 | goto error; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 325 | } |
| 326 | } |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 327 | goto drop; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 328 | } |
| 329 | |
| 330 | /* 1st: check sequence number */ |
| 331 | if (!tcp_segment_in_rcv_wnd (tc0, vnet_buffer (b0)->tcp.seq_number, |
| 332 | vnet_buffer (b0)->tcp.seq_end)) |
| 333 | { |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 334 | *error0 = TCP_ERROR_RCV_WND; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 335 | /* If our window is 0 and the packet is in sequence, let it pass |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 336 | * through for ack processing. It should be dropped later. */ |
| 337 | if (!(tc0->rcv_wnd == 0 |
| 338 | && tc0->rcv_nxt == vnet_buffer (b0)->tcp.seq_number)) |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 339 | { |
| 340 | /* If not RST, send dup ack */ |
| 341 | if (!tcp_rst (th0)) |
| 342 | { |
| 343 | tcp_make_ack (tc0, b0); |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 344 | TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp); |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 345 | goto error; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 346 | } |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 347 | goto drop; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 348 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 349 | } |
| 350 | |
| 351 | /* 2nd: check the RST bit */ |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 352 | if (PREDICT_FALSE (tcp_rst (th0))) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 353 | { |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 354 | tcp_connection_reset (tc0); |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 355 | *error0 = TCP_ERROR_RST_RCVD; |
| 356 | goto drop; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 357 | } |
| 358 | |
| 359 | /* 3rd: check security and precedence (skip) */ |
| 360 | |
| 361 | /* 4th: check the SYN bit */ |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 362 | if (PREDICT_FALSE (tcp_syn (th0))) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 363 | { |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 364 | /* TODO implement RFC 5961 */ |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 365 | if (tc0->state == TCP_STATE_SYN_RCVD) |
| 366 | { |
| 367 | tcp_make_synack (tc0, b0); |
| 368 | TCP_EVT_DBG (TCP_EVT_SYN_RCVD, tc0, 0); |
| 369 | } |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 370 | else |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 371 | { |
| 372 | tcp_make_ack (tc0, b0); |
| 373 | TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, tc0); |
| 374 | } |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 375 | goto error; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 376 | } |
| 377 | |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 378 | /* If segment in window, save timestamp */ |
| 379 | tcp_update_timestamp (tc0, vnet_buffer (b0)->tcp.seq_number, |
| 380 | vnet_buffer (b0)->tcp.seq_end); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 381 | return 0; |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 382 | |
| 383 | drop: |
| 384 | *next0 = tcp_next_drop (tc0->c_is_ip4); |
| 385 | return -1; |
| 386 | error: |
| 387 | *next0 = tcp_next_output (tc0->c_is_ip4); |
| 388 | return -1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 389 | } |
| 390 | |
| 391 | always_inline int |
| 392 | tcp_rcv_ack_is_acceptable (tcp_connection_t * tc0, vlib_buffer_t * tb0) |
| 393 | { |
| 394 | /* SND.UNA =< SEG.ACK =< SND.NXT */ |
| 395 | return (seq_leq (tc0->snd_una, vnet_buffer (tb0)->tcp.ack_number) |
| 396 | && seq_leq (vnet_buffer (tb0)->tcp.ack_number, tc0->snd_nxt)); |
| 397 | } |
| 398 | |
| 399 | /** |
| 400 | * Compute smoothed RTT as per VJ's '88 SIGCOMM and RFC6298 |
| 401 | * |
| 402 | * Note that although the original article, srtt and rttvar are scaled |
| 403 | * to minimize round-off errors, here we don't. Instead, we rely on |
| 404 | * better precision time measurements. |
| 405 | * |
| 406 | * TODO support us rtt resolution |
| 407 | */ |
| 408 | static void |
| 409 | tcp_estimate_rtt (tcp_connection_t * tc, u32 mrtt) |
| 410 | { |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 411 | int err, diff; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 412 | |
| 413 | if (tc->srtt != 0) |
| 414 | { |
| 415 | err = mrtt - tc->srtt; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 416 | |
| 417 | /* XXX Drop in RTT results in RTTVAR increase and bigger RTO. |
| 418 | * The increase should be bound */ |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 419 | tc->srtt = clib_max ((int) tc->srtt + (err >> 3), 1); |
| 420 | diff = (clib_abs (err) - (int) tc->rttvar) >> 2; |
| 421 | tc->rttvar = clib_max ((int) tc->rttvar + diff, 1); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 422 | } |
| 423 | else |
| 424 | { |
| 425 | /* First measurement. */ |
| 426 | tc->srtt = mrtt; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 427 | tc->rttvar = mrtt >> 1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 428 | } |
| 429 | } |
| 430 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 431 | void |
| 432 | tcp_update_rto (tcp_connection_t * tc) |
| 433 | { |
| 434 | tc->rto = clib_min (tc->srtt + (tc->rttvar << 2), TCP_RTO_MAX); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 435 | tc->rto = clib_max (tc->rto, TCP_RTO_MIN); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 436 | } |
| 437 | |
Florin Coras | f1762d6 | 2017-09-24 19:43:08 -0400 | [diff] [blame] | 438 | /** |
| 439 | * Update RTT estimate and RTO timer |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 440 | * |
| 441 | * Measure RTT: We have two sources of RTT measurements: TSOPT and ACK |
| 442 | * timing. Middle boxes are known to fiddle with TCP options so we |
| 443 | * should give higher priority to ACK timing. |
| 444 | * |
Florin Coras | f1762d6 | 2017-09-24 19:43:08 -0400 | [diff] [blame] | 445 | * This should be called only if previously sent bytes have been acked. |
| 446 | * |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 447 | * return 1 if valid rtt 0 otherwise |
| 448 | */ |
| 449 | static int |
| 450 | tcp_update_rtt (tcp_connection_t * tc, u32 ack) |
| 451 | { |
| 452 | u32 mrtt = 0; |
| 453 | |
| 454 | /* Karn's rule, part 1. Don't use retransmitted segments to estimate |
| 455 | * RTT because they're ambiguous. */ |
Florin Coras | f1762d6 | 2017-09-24 19:43:08 -0400 | [diff] [blame] | 456 | if (tcp_in_cong_recovery (tc) || tc->sack_sb.sacked_bytes) |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 457 | { |
| 458 | if (tcp_in_recovery (tc)) |
| 459 | return 0; |
| 460 | goto done; |
| 461 | } |
Florin Coras | f1762d6 | 2017-09-24 19:43:08 -0400 | [diff] [blame] | 462 | |
| 463 | if (tc->rtt_ts && seq_geq (ack, tc->rtt_seq)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 464 | { |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 465 | tc->mrtt_us = tcp_time_now_us (tc->c_thread_index) - tc->rtt_ts; |
| 466 | mrtt = clib_max ((u32) (tc->mrtt_us * THZ), 1); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 467 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 468 | /* As per RFC7323 TSecr can be used for RTTM only if the segment advances |
| 469 | * snd_una, i.e., the left side of the send window: |
Florin Coras | f1762d6 | 2017-09-24 19:43:08 -0400 | [diff] [blame] | 470 | * seq_lt (tc->snd_una, ack). This is a condition for calling update_rtt */ |
| 471 | else if (tcp_opts_tstamp (&tc->rcv_opts) && tc->rcv_opts.tsecr) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 472 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 473 | u32 now = tcp_time_now_w_thread (tc->c_thread_index); |
| 474 | mrtt = clib_max (now - tc->rcv_opts.tsecr, 1); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 475 | } |
| 476 | |
Florin Coras | f1762d6 | 2017-09-24 19:43:08 -0400 | [diff] [blame] | 477 | /* Ignore dubious measurements */ |
| 478 | if (mrtt == 0 || mrtt > TCP_RTT_MAX) |
| 479 | goto done; |
| 480 | |
| 481 | tcp_estimate_rtt (tc, mrtt); |
| 482 | |
| 483 | done: |
| 484 | |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 485 | /* Allow measuring of a new RTT */ |
| 486 | tc->rtt_ts = 0; |
| 487 | |
Florin Coras | f1762d6 | 2017-09-24 19:43:08 -0400 | [diff] [blame] | 488 | /* If we got here something must've been ACKed so make sure boff is 0, |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 489 | * even if mrtt is not valid since we update the rto lower */ |
Florin Coras | f1762d6 | 2017-09-24 19:43:08 -0400 | [diff] [blame] | 490 | tc->rto_boff = 0; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 491 | tcp_update_rto (tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 492 | |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 493 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 494 | } |
| 495 | |
| 496 | /** |
| 497 | * Dequeue bytes that have been acked and while at it update RTT estimates. |
| 498 | */ |
| 499 | static void |
| 500 | tcp_dequeue_acked (tcp_connection_t * tc, u32 ack) |
| 501 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 502 | /* Dequeue the newly ACKed add SACKed bytes */ |
| 503 | stream_session_dequeue_drop (&tc->connection, |
| 504 | tc->bytes_acked + tc->sack_sb.snd_una_adv); |
| 505 | |
| 506 | tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 507 | |
| 508 | /* Update rtt and rto */ |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 509 | tcp_update_rtt (tc, ack); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 510 | |
| 511 | /* If everything has been acked, stop retransmit timer |
| 512 | * otherwise update. */ |
| 513 | tcp_retransmit_timer_update (tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 514 | } |
| 515 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 516 | /** |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 517 | * Check if duplicate ack as per RFC5681 Sec. 2 |
| 518 | */ |
| 519 | static u8 |
| 520 | tcp_ack_is_dupack (tcp_connection_t * tc, vlib_buffer_t * b, u32 prev_snd_wnd, |
| 521 | u32 prev_snd_una) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 522 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 523 | return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 524 | && seq_gt (tc->snd_una_max, tc->snd_una) |
| 525 | && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 526 | && (prev_snd_wnd == tc->snd_wnd)); |
| 527 | } |
| 528 | |
| 529 | /** |
| 530 | * Checks if ack is a congestion control event. |
| 531 | */ |
| 532 | static u8 |
| 533 | tcp_ack_is_cc_event (tcp_connection_t * tc, vlib_buffer_t * b, |
| 534 | u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack) |
| 535 | { |
| 536 | /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are |
| 537 | * defined to be 'duplicate' */ |
| 538 | *is_dack = tc->sack_sb.last_sacked_bytes |
| 539 | || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una); |
| 540 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 541 | return ((*is_dack || tcp_in_cong_recovery (tc)) && !tcp_is_lost_fin (tc)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 542 | } |
| 543 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 544 | static u32 |
| 545 | scoreboard_hole_index (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole) |
| 546 | { |
| 547 | ASSERT (!pool_is_free_index (sb->holes, hole - sb->holes)); |
| 548 | return hole - sb->holes; |
| 549 | } |
| 550 | |
| 551 | static u32 |
| 552 | scoreboard_hole_bytes (sack_scoreboard_hole_t * hole) |
| 553 | { |
| 554 | return hole->end - hole->start; |
| 555 | } |
| 556 | |
| 557 | sack_scoreboard_hole_t * |
| 558 | scoreboard_get_hole (sack_scoreboard_t * sb, u32 index) |
| 559 | { |
| 560 | if (index != TCP_INVALID_SACK_HOLE_INDEX) |
| 561 | return pool_elt_at_index (sb->holes, index); |
| 562 | return 0; |
| 563 | } |
| 564 | |
| 565 | sack_scoreboard_hole_t * |
| 566 | scoreboard_next_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole) |
| 567 | { |
| 568 | if (hole->next != TCP_INVALID_SACK_HOLE_INDEX) |
| 569 | return pool_elt_at_index (sb->holes, hole->next); |
| 570 | return 0; |
| 571 | } |
| 572 | |
| 573 | sack_scoreboard_hole_t * |
| 574 | scoreboard_prev_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole) |
| 575 | { |
| 576 | if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX) |
| 577 | return pool_elt_at_index (sb->holes, hole->prev); |
| 578 | return 0; |
| 579 | } |
| 580 | |
| 581 | sack_scoreboard_hole_t * |
| 582 | scoreboard_first_hole (sack_scoreboard_t * sb) |
| 583 | { |
| 584 | if (sb->head != TCP_INVALID_SACK_HOLE_INDEX) |
| 585 | return pool_elt_at_index (sb->holes, sb->head); |
| 586 | return 0; |
| 587 | } |
| 588 | |
| 589 | sack_scoreboard_hole_t * |
| 590 | scoreboard_last_hole (sack_scoreboard_t * sb) |
| 591 | { |
| 592 | if (sb->tail != TCP_INVALID_SACK_HOLE_INDEX) |
| 593 | return pool_elt_at_index (sb->holes, sb->tail); |
| 594 | return 0; |
| 595 | } |
| 596 | |
| 597 | static void |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 598 | scoreboard_remove_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole) |
| 599 | { |
| 600 | sack_scoreboard_hole_t *next, *prev; |
| 601 | |
| 602 | if (hole->next != TCP_INVALID_SACK_HOLE_INDEX) |
| 603 | { |
| 604 | next = pool_elt_at_index (sb->holes, hole->next); |
| 605 | next->prev = hole->prev; |
| 606 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 607 | else |
| 608 | { |
| 609 | sb->tail = hole->prev; |
| 610 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 611 | |
| 612 | if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX) |
| 613 | { |
| 614 | prev = pool_elt_at_index (sb->holes, hole->prev); |
| 615 | prev->next = hole->next; |
| 616 | } |
| 617 | else |
| 618 | { |
| 619 | sb->head = hole->next; |
| 620 | } |
| 621 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 622 | if (scoreboard_hole_index (sb, hole) == sb->cur_rxt_hole) |
| 623 | sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX; |
| 624 | |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 625 | /* Poison the entry */ |
| 626 | if (CLIB_DEBUG > 0) |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 627 | clib_memset (hole, 0xfe, sizeof (*hole)); |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 628 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 629 | pool_put (sb->holes, hole); |
| 630 | } |
| 631 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 632 | static sack_scoreboard_hole_t * |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 633 | scoreboard_insert_hole (sack_scoreboard_t * sb, u32 prev_index, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 634 | u32 start, u32 end) |
| 635 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 636 | sack_scoreboard_hole_t *hole, *next, *prev; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 637 | u32 hole_index; |
| 638 | |
| 639 | pool_get (sb->holes, hole); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 640 | clib_memset (hole, 0, sizeof (*hole)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 641 | |
| 642 | hole->start = start; |
| 643 | hole->end = end; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 644 | hole_index = scoreboard_hole_index (sb, hole); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 645 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 646 | prev = scoreboard_get_hole (sb, prev_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 647 | if (prev) |
| 648 | { |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 649 | hole->prev = prev_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 650 | hole->next = prev->next; |
| 651 | |
| 652 | if ((next = scoreboard_next_hole (sb, hole))) |
| 653 | next->prev = hole_index; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 654 | else |
| 655 | sb->tail = hole_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 656 | |
| 657 | prev->next = hole_index; |
| 658 | } |
| 659 | else |
| 660 | { |
| 661 | sb->head = hole_index; |
| 662 | hole->prev = TCP_INVALID_SACK_HOLE_INDEX; |
| 663 | hole->next = TCP_INVALID_SACK_HOLE_INDEX; |
| 664 | } |
| 665 | |
| 666 | return hole; |
| 667 | } |
| 668 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 669 | static void |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 670 | scoreboard_update_bytes (tcp_connection_t * tc, sack_scoreboard_t * sb) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 671 | { |
Florin Coras | ecbd20b | 2018-10-17 23:34:54 -0700 | [diff] [blame] | 672 | sack_scoreboard_hole_t *left, *right; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 673 | u32 bytes = 0, blks = 0; |
| 674 | |
| 675 | sb->lost_bytes = 0; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 676 | sb->sacked_bytes = 0; |
Florin Coras | ecbd20b | 2018-10-17 23:34:54 -0700 | [diff] [blame] | 677 | left = scoreboard_last_hole (sb); |
| 678 | if (!left) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 679 | return; |
| 680 | |
Florin Coras | ecbd20b | 2018-10-17 23:34:54 -0700 | [diff] [blame] | 681 | if (seq_gt (sb->high_sacked, left->end)) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 682 | { |
Florin Coras | ecbd20b | 2018-10-17 23:34:54 -0700 | [diff] [blame] | 683 | bytes = sb->high_sacked - left->end; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 684 | blks = 1; |
| 685 | } |
| 686 | |
Florin Coras | 9f9e969 | 2018-10-19 17:49:00 -0700 | [diff] [blame] | 687 | while ((right = left) |
| 688 | && bytes < (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss |
| 689 | && blks < TCP_DUPACK_THRESHOLD |
| 690 | /* left not updated if above conditions fail */ |
| 691 | && (left = scoreboard_prev_hole (sb, right))) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 692 | { |
Florin Coras | ecbd20b | 2018-10-17 23:34:54 -0700 | [diff] [blame] | 693 | bytes += right->start - left->end; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 694 | blks++; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 695 | } |
| 696 | |
Florin Coras | 9f9e969 | 2018-10-19 17:49:00 -0700 | [diff] [blame] | 697 | /* left is first lost */ |
| 698 | if (left) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 699 | { |
Florin Coras | 9f9e969 | 2018-10-19 17:49:00 -0700 | [diff] [blame] | 700 | do |
| 701 | { |
| 702 | sb->lost_bytes += scoreboard_hole_bytes (right); |
| 703 | left->is_lost = 1; |
| 704 | left = scoreboard_prev_hole (sb, right); |
| 705 | if (left) |
| 706 | bytes += right->start - left->end; |
| 707 | } |
| 708 | while ((right = left)); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 709 | } |
Florin Coras | 9f9e969 | 2018-10-19 17:49:00 -0700 | [diff] [blame] | 710 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 711 | sb->sacked_bytes = bytes; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 712 | } |
| 713 | |
| 714 | /** |
| 715 | * Figure out the next hole to retransmit |
| 716 | * |
| 717 | * Follows logic proposed in RFC6675 Sec. 4, NextSeg() |
| 718 | */ |
| 719 | sack_scoreboard_hole_t * |
| 720 | scoreboard_next_rxt_hole (sack_scoreboard_t * sb, |
| 721 | sack_scoreboard_hole_t * start, |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame^] | 722 | u8 have_unsent, u8 * can_rescue, u8 * snd_limited) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 723 | { |
| 724 | sack_scoreboard_hole_t *hole = 0; |
| 725 | |
| 726 | hole = start ? start : scoreboard_first_hole (sb); |
| 727 | while (hole && seq_leq (hole->end, sb->high_rxt) && hole->is_lost) |
| 728 | hole = scoreboard_next_hole (sb, hole); |
| 729 | |
| 730 | /* Nothing, return */ |
| 731 | if (!hole) |
| 732 | { |
| 733 | sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX; |
| 734 | return 0; |
| 735 | } |
| 736 | |
| 737 | /* Rule (1): if higher than rxt, less than high_sacked and lost */ |
| 738 | if (hole->is_lost && seq_lt (hole->start, sb->high_sacked)) |
| 739 | { |
| 740 | sb->cur_rxt_hole = scoreboard_hole_index (sb, hole); |
| 741 | } |
| 742 | else |
| 743 | { |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame^] | 744 | /* Rule (2): available unsent data */ |
| 745 | if (have_unsent) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 746 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 747 | sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX; |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame^] | 748 | return 0; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 749 | } |
| 750 | /* Rule (3): if hole not lost */ |
| 751 | else if (seq_lt (hole->start, sb->high_sacked)) |
| 752 | { |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 753 | *snd_limited = 0; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 754 | sb->cur_rxt_hole = scoreboard_hole_index (sb, hole); |
| 755 | } |
| 756 | /* Rule (4): if hole beyond high_sacked */ |
| 757 | else |
| 758 | { |
| 759 | ASSERT (seq_geq (hole->start, sb->high_sacked)); |
| 760 | *snd_limited = 1; |
| 761 | *can_rescue = 1; |
| 762 | /* HighRxt MUST NOT be updated */ |
| 763 | return 0; |
| 764 | } |
| 765 | } |
| 766 | |
| 767 | if (hole && seq_lt (sb->high_rxt, hole->start)) |
| 768 | sb->high_rxt = hole->start; |
| 769 | |
| 770 | return hole; |
| 771 | } |
| 772 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 773 | static void |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame^] | 774 | scoreboard_init_high_rxt (sack_scoreboard_t * sb, u32 snd_una) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 775 | { |
| 776 | sack_scoreboard_hole_t *hole; |
| 777 | hole = scoreboard_first_hole (sb); |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 778 | if (hole) |
| 779 | { |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame^] | 780 | snd_una = seq_gt (snd_una, hole->start) ? snd_una : hole->start; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 781 | sb->cur_rxt_hole = sb->head; |
| 782 | } |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame^] | 783 | sb->high_rxt = snd_una; |
| 784 | sb->rescue_rxt = snd_una - 1; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 785 | } |
| 786 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 787 | void |
| 788 | scoreboard_init (sack_scoreboard_t * sb) |
| 789 | { |
| 790 | sb->head = TCP_INVALID_SACK_HOLE_INDEX; |
| 791 | sb->tail = TCP_INVALID_SACK_HOLE_INDEX; |
| 792 | sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX; |
| 793 | } |
| 794 | |
| 795 | void |
| 796 | scoreboard_clear (sack_scoreboard_t * sb) |
| 797 | { |
| 798 | sack_scoreboard_hole_t *hole; |
| 799 | while ((hole = scoreboard_first_hole (sb))) |
| 800 | { |
| 801 | scoreboard_remove_hole (sb, hole); |
| 802 | } |
| 803 | ASSERT (sb->head == sb->tail && sb->head == TCP_INVALID_SACK_HOLE_INDEX); |
| 804 | ASSERT (pool_elts (sb->holes) == 0); |
| 805 | sb->sacked_bytes = 0; |
| 806 | sb->last_sacked_bytes = 0; |
| 807 | sb->last_bytes_delivered = 0; |
| 808 | sb->snd_una_adv = 0; |
| 809 | sb->high_sacked = 0; |
| 810 | sb->high_rxt = 0; |
| 811 | sb->lost_bytes = 0; |
| 812 | sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX; |
| 813 | } |
| 814 | |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 815 | /** |
| 816 | * Test that scoreboard is sane after recovery |
| 817 | * |
| 818 | * Returns 1 if scoreboard is empty or if first hole beyond |
| 819 | * snd_una. |
| 820 | */ |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 821 | static u8 |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 822 | tcp_scoreboard_is_sane_post_recovery (tcp_connection_t * tc) |
| 823 | { |
| 824 | sack_scoreboard_hole_t *hole; |
| 825 | hole = scoreboard_first_hole (&tc->sack_sb); |
Florin Coras | ecbd20b | 2018-10-17 23:34:54 -0700 | [diff] [blame] | 826 | return (!hole || (seq_geq (hole->start, tc->snd_una) |
| 827 | && seq_lt (hole->end, tc->snd_una_max))); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 828 | } |
| 829 | |
| 830 | void |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 831 | tcp_rcv_sacks (tcp_connection_t * tc, u32 ack) |
| 832 | { |
| 833 | sack_scoreboard_t *sb = &tc->sack_sb; |
| 834 | sack_block_t *blk, tmp; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 835 | sack_scoreboard_hole_t *hole, *next_hole, *last_hole; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 836 | u32 blk_index = 0, old_sacked_bytes, hole_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 837 | int i, j; |
| 838 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 839 | sb->last_sacked_bytes = 0; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 840 | sb->last_bytes_delivered = 0; |
Florin Coras | 352c2c4 | 2018-06-26 01:22:41 -0700 | [diff] [blame] | 841 | sb->snd_una_adv = 0; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 842 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 843 | if (!tcp_opts_sack (&tc->rcv_opts) |
| 844 | && sb->head == TCP_INVALID_SACK_HOLE_INDEX) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 845 | return; |
| 846 | |
Florin Coras | 352c2c4 | 2018-06-26 01:22:41 -0700 | [diff] [blame] | 847 | old_sacked_bytes = sb->sacked_bytes; |
| 848 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 849 | /* Remove invalid blocks */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 850 | blk = tc->rcv_opts.sacks; |
| 851 | while (blk < vec_end (tc->rcv_opts.sacks)) |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 852 | { |
| 853 | if (seq_lt (blk->start, blk->end) |
| 854 | && seq_gt (blk->start, tc->snd_una) |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 855 | && seq_gt (blk->start, ack) && seq_leq (blk->end, tc->snd_una_max)) |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 856 | { |
| 857 | blk++; |
| 858 | continue; |
| 859 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 860 | vec_del1 (tc->rcv_opts.sacks, blk - tc->rcv_opts.sacks); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 861 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 862 | |
| 863 | /* Add block for cumulative ack */ |
| 864 | if (seq_gt (ack, tc->snd_una)) |
| 865 | { |
| 866 | tmp.start = tc->snd_una; |
| 867 | tmp.end = ack; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 868 | vec_add1 (tc->rcv_opts.sacks, tmp); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 869 | } |
| 870 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 871 | if (vec_len (tc->rcv_opts.sacks) == 0) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 872 | return; |
| 873 | |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 874 | tcp_scoreboard_trace_add (tc, ack); |
| 875 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 876 | /* Make sure blocks are ordered */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 877 | for (i = 0; i < vec_len (tc->rcv_opts.sacks); i++) |
| 878 | for (j = i + 1; j < vec_len (tc->rcv_opts.sacks); j++) |
| 879 | if (seq_lt (tc->rcv_opts.sacks[j].start, tc->rcv_opts.sacks[i].start)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 880 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 881 | tmp = tc->rcv_opts.sacks[i]; |
| 882 | tc->rcv_opts.sacks[i] = tc->rcv_opts.sacks[j]; |
| 883 | tc->rcv_opts.sacks[j] = tmp; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 884 | } |
| 885 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 886 | if (sb->head == TCP_INVALID_SACK_HOLE_INDEX) |
| 887 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 888 | /* If no holes, insert the first that covers all outstanding bytes */ |
| 889 | last_hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX, |
| 890 | tc->snd_una, tc->snd_una_max); |
| 891 | sb->tail = scoreboard_hole_index (sb, last_hole); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 892 | tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1]; |
| 893 | sb->high_sacked = tmp.end; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 894 | } |
| 895 | else |
| 896 | { |
| 897 | /* If we have holes but snd_una_max is beyond the last hole, update |
| 898 | * last hole end */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 899 | tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1]; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 900 | last_hole = scoreboard_last_hole (sb); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 901 | if (seq_gt (tc->snd_una_max, last_hole->end)) |
| 902 | { |
| 903 | if (seq_geq (last_hole->start, sb->high_sacked)) |
| 904 | { |
| 905 | last_hole->end = tc->snd_una_max; |
| 906 | } |
| 907 | /* New hole after high sacked block */ |
| 908 | else if (seq_lt (sb->high_sacked, tc->snd_una_max)) |
| 909 | { |
| 910 | scoreboard_insert_hole (sb, sb->tail, sb->high_sacked, |
| 911 | tc->snd_una_max); |
| 912 | } |
| 913 | } |
| 914 | /* Keep track of max byte sacked for when the last hole |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 915 | * is acked */ |
| 916 | if (seq_gt (tmp.end, sb->high_sacked)) |
| 917 | sb->high_sacked = tmp.end; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 918 | } |
| 919 | |
| 920 | /* Walk the holes with the SACK blocks */ |
| 921 | hole = pool_elt_at_index (sb->holes, sb->head); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 922 | while (hole && blk_index < vec_len (tc->rcv_opts.sacks)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 923 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 924 | blk = &tc->rcv_opts.sacks[blk_index]; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 925 | if (seq_leq (blk->start, hole->start)) |
| 926 | { |
| 927 | /* Block covers hole. Remove hole */ |
| 928 | if (seq_geq (blk->end, hole->end)) |
| 929 | { |
| 930 | next_hole = scoreboard_next_hole (sb, hole); |
| 931 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 932 | /* Byte accounting: snd_una needs to be advanced */ |
| 933 | if (blk->end == ack) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 934 | { |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 935 | if (next_hole) |
Florin Coras | 06d1101 | 2017-05-17 14:21:51 -0700 | [diff] [blame] | 936 | { |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 937 | if (seq_lt (ack, next_hole->start)) |
| 938 | sb->snd_una_adv = next_hole->start - ack; |
| 939 | sb->last_bytes_delivered += |
| 940 | next_hole->start - hole->end; |
Florin Coras | 06d1101 | 2017-05-17 14:21:51 -0700 | [diff] [blame] | 941 | } |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 942 | else |
Florin Coras | 06d1101 | 2017-05-17 14:21:51 -0700 | [diff] [blame] | 943 | { |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 944 | ASSERT (seq_geq (sb->high_sacked, ack)); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 945 | sb->snd_una_adv = sb->high_sacked - ack; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 946 | sb->last_bytes_delivered += sb->high_sacked - hole->end; |
Florin Coras | 06d1101 | 2017-05-17 14:21:51 -0700 | [diff] [blame] | 947 | } |
| 948 | } |
| 949 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 950 | scoreboard_remove_hole (sb, hole); |
| 951 | hole = next_hole; |
| 952 | } |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 953 | /* Partial 'head' overlap */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 954 | else |
| 955 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 956 | if (seq_gt (blk->end, hole->start)) |
| 957 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 958 | hole->start = blk->end; |
| 959 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 960 | blk_index++; |
| 961 | } |
| 962 | } |
| 963 | else |
| 964 | { |
| 965 | /* Hole must be split */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 966 | if (seq_lt (blk->end, hole->end)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 967 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 968 | hole_index = scoreboard_hole_index (sb, hole); |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 969 | next_hole = scoreboard_insert_hole (sb, hole_index, blk->end, |
| 970 | hole->end); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 971 | |
| 972 | /* Pool might've moved */ |
| 973 | hole = scoreboard_get_hole (sb, hole_index); |
| 974 | hole->end = blk->start; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 975 | blk_index++; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 976 | ASSERT (hole->next == scoreboard_hole_index (sb, next_hole)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 977 | } |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 978 | else if (seq_lt (blk->start, hole->end)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 979 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 980 | hole->end = blk->start; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 981 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 982 | hole = scoreboard_next_hole (sb, hole); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 983 | } |
| 984 | } |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 985 | |
Florin Coras | ecbd20b | 2018-10-17 23:34:54 -0700 | [diff] [blame] | 986 | if (pool_elts (sb->holes) == 1) |
| 987 | { |
| 988 | hole = scoreboard_first_hole (sb); |
| 989 | if (hole->start == ack + sb->snd_una_adv |
| 990 | && hole->end == tc->snd_una_max) |
| 991 | scoreboard_remove_hole (sb, hole); |
| 992 | } |
| 993 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 994 | scoreboard_update_bytes (tc, sb); |
| 995 | sb->last_sacked_bytes = sb->sacked_bytes |
| 996 | - (old_sacked_bytes - sb->last_bytes_delivered); |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 997 | ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes || tcp_in_recovery (tc)); |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 998 | ASSERT (sb->sacked_bytes == 0 || tcp_in_recovery (tc) |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 999 | || sb->sacked_bytes < tc->snd_una_max - seq_max (tc->snd_una, ack)); |
| 1000 | ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_una_max |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1001 | - seq_max (tc->snd_una, ack) || tcp_in_recovery (tc)); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1002 | ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc) |
| 1003 | || sb->holes[sb->head].start == ack + sb->snd_una_adv); |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1004 | TCP_EVT_DBG (TCP_EVT_CC_SCOREBOARD, tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1005 | } |
| 1006 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1007 | /** |
| 1008 | * Try to update snd_wnd based on feedback received from peer. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1009 | * |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1010 | * If successful, and new window is 'effectively' 0, activate persist |
| 1011 | * timer. |
| 1012 | */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1013 | static void |
| 1014 | tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd) |
| 1015 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1016 | /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set |
| 1017 | * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1018 | if (seq_lt (tc->snd_wl1, seq) |
| 1019 | || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack))) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1020 | { |
| 1021 | tc->snd_wnd = snd_wnd; |
| 1022 | tc->snd_wl1 = seq; |
| 1023 | tc->snd_wl2 = ack; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1024 | TCP_EVT_DBG (TCP_EVT_SND_WND, tc); |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1025 | |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 1026 | if (tc->snd_wnd < tc->snd_mss) |
| 1027 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1028 | /* Set persist timer if not set and we just got 0 wnd */ |
| 1029 | if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST) |
| 1030 | && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT)) |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 1031 | tcp_persist_timer_set (tc); |
| 1032 | } |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1033 | else |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1034 | { |
| 1035 | tcp_persist_timer_reset (tc); |
| 1036 | if (!tcp_in_recovery (tc) && tc->rto_boff > 0) |
| 1037 | { |
| 1038 | tc->rto_boff = 0; |
| 1039 | tcp_update_rto (tc); |
| 1040 | } |
| 1041 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1042 | } |
| 1043 | } |
| 1044 | |
Florin Coras | d2aab83 | 2018-05-22 11:39:59 -0700 | [diff] [blame] | 1045 | /** |
| 1046 | * Init loss recovery/fast recovery. |
| 1047 | * |
| 1048 | * Triggered by dup acks as opposed to timer timeout. Note that cwnd is |
| 1049 | * updated in @ref tcp_cc_handle_event after fast retransmit |
| 1050 | */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1051 | void |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1052 | tcp_cc_init_congestion (tcp_connection_t * tc) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1053 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1054 | tcp_fastrecovery_on (tc); |
| 1055 | tc->snd_congestion = tc->snd_una_max; |
Florin Coras | 6216600 | 2018-04-18 16:40:55 -0700 | [diff] [blame] | 1056 | tc->cwnd_acc_bytes = 0; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1057 | tc->snd_rxt_bytes = 0; |
| 1058 | tc->prev_ssthresh = tc->ssthresh; |
| 1059 | tc->prev_cwnd = tc->cwnd; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1060 | tc->cc_algo->congestion (tc); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1061 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 4); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1062 | } |
| 1063 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1064 | static void |
| 1065 | tcp_cc_recovery_exit (tcp_connection_t * tc) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1066 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1067 | tc->rto_boff = 0; |
Florin Coras | f1762d6 | 2017-09-24 19:43:08 -0400 | [diff] [blame] | 1068 | tcp_update_rto (tc); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1069 | tc->snd_rxt_ts = 0; |
Florin Coras | 84275e9 | 2017-09-26 12:30:40 -0400 | [diff] [blame] | 1070 | tc->snd_nxt = tc->snd_una_max; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1071 | tcp_recovery_off (tc); |
Florin Coras | f1762d6 | 2017-09-24 19:43:08 -0400 | [diff] [blame] | 1072 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1073 | } |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1074 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1075 | void |
| 1076 | tcp_cc_fastrecovery_exit (tcp_connection_t * tc) |
| 1077 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1078 | tc->cc_algo->recovered (tc); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1079 | tc->snd_rxt_bytes = 0; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1080 | tc->rcv_dupacks = 0; |
Florin Coras | 84275e9 | 2017-09-26 12:30:40 -0400 | [diff] [blame] | 1081 | tc->snd_nxt = tc->snd_una_max; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1082 | tc->snd_rxt_bytes = 0; |
| 1083 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1084 | tcp_fastrecovery_off (tc); |
| 1085 | tcp_fastrecovery_1_smss_off (tc); |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1086 | tcp_fastrecovery_first_off (tc); |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 1087 | |
Florin Coras | f1762d6 | 2017-09-24 19:43:08 -0400 | [diff] [blame] | 1088 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1089 | } |
| 1090 | |
| 1091 | static void |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1092 | tcp_cc_congestion_undo (tcp_connection_t * tc) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1093 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1094 | tc->cwnd = tc->prev_cwnd; |
| 1095 | tc->ssthresh = tc->prev_ssthresh; |
| 1096 | tc->snd_nxt = tc->snd_una_max; |
| 1097 | tc->rcv_dupacks = 0; |
| 1098 | if (tcp_in_recovery (tc)) |
| 1099 | tcp_cc_recovery_exit (tc); |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1100 | else if (tcp_in_fastrecovery (tc)) |
| 1101 | tcp_cc_fastrecovery_exit (tc); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1102 | ASSERT (tc->rto_boff == 0); |
Florin Coras | f1762d6 | 2017-09-24 19:43:08 -0400 | [diff] [blame] | 1103 | TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 5); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1104 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1105 | |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1106 | static inline u8 |
| 1107 | tcp_cc_is_spurious_timeout_rxt (tcp_connection_t * tc) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1108 | { |
Florin Coras | f1762d6 | 2017-09-24 19:43:08 -0400 | [diff] [blame] | 1109 | return (tcp_in_recovery (tc) && tc->rto_boff == 1 |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1110 | && tc->snd_rxt_ts |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1111 | && tcp_opts_tstamp (&tc->rcv_opts) |
| 1112 | && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts)); |
| 1113 | } |
| 1114 | |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1115 | static inline u8 |
| 1116 | tcp_cc_is_spurious_fast_rxt (tcp_connection_t * tc) |
| 1117 | { |
| 1118 | return (tcp_in_fastrecovery (tc) |
| 1119 | && tc->cwnd > tc->ssthresh + 3 * tc->snd_mss); |
| 1120 | } |
| 1121 | |
| 1122 | static u8 |
| 1123 | tcp_cc_is_spurious_retransmit (tcp_connection_t * tc) |
| 1124 | { |
| 1125 | return (tcp_cc_is_spurious_timeout_rxt (tc) |
| 1126 | || tcp_cc_is_spurious_fast_rxt (tc)); |
| 1127 | } |
| 1128 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1129 | static int |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1130 | tcp_cc_recover (tcp_connection_t * tc) |
| 1131 | { |
| 1132 | ASSERT (tcp_in_cong_recovery (tc)); |
| 1133 | if (tcp_cc_is_spurious_retransmit (tc)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1134 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1135 | tcp_cc_congestion_undo (tc); |
| 1136 | return 1; |
| 1137 | } |
| 1138 | |
| 1139 | if (tcp_in_recovery (tc)) |
| 1140 | tcp_cc_recovery_exit (tc); |
| 1141 | else if (tcp_in_fastrecovery (tc)) |
| 1142 | tcp_cc_fastrecovery_exit (tc); |
| 1143 | |
| 1144 | ASSERT (tc->rto_boff == 0); |
| 1145 | ASSERT (!tcp_in_cong_recovery (tc)); |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 1146 | ASSERT (tcp_scoreboard_is_sane_post_recovery (tc)); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1147 | return 0; |
| 1148 | } |
| 1149 | |
| 1150 | static void |
| 1151 | tcp_cc_update (tcp_connection_t * tc, vlib_buffer_t * b) |
| 1152 | { |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 1153 | ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc)); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1154 | |
| 1155 | /* Congestion avoidance */ |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 1156 | tcp_cc_rcv_ack (tc); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1157 | |
| 1158 | /* If a cumulative ack, make sure dupacks is 0 */ |
| 1159 | tc->rcv_dupacks = 0; |
| 1160 | |
| 1161 | /* When dupacks hits the threshold we only enter fast retransmit if |
| 1162 | * cumulative ack covers more than snd_congestion. Should snd_una |
| 1163 | * wrap this test may fail under otherwise valid circumstances. |
| 1164 | * Therefore, proactively update snd_congestion when wrap detected. */ |
| 1165 | if (PREDICT_FALSE |
| 1166 | (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked) |
| 1167 | && seq_gt (tc->snd_congestion, tc->snd_una))) |
| 1168 | tc->snd_congestion = tc->snd_una - 1; |
| 1169 | } |
| 1170 | |
| 1171 | static u8 |
| 1172 | tcp_should_fastrecover_sack (tcp_connection_t * tc) |
| 1173 | { |
| 1174 | return (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss < tc->sack_sb.sacked_bytes; |
| 1175 | } |
| 1176 | |
| 1177 | static u8 |
| 1178 | tcp_should_fastrecover (tcp_connection_t * tc) |
| 1179 | { |
| 1180 | return (tc->rcv_dupacks == TCP_DUPACK_THRESHOLD |
| 1181 | || tcp_should_fastrecover_sack (tc)); |
| 1182 | } |
| 1183 | |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1184 | void |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1185 | tcp_program_fastretransmit (tcp_worker_ctx_t * wrk, tcp_connection_t * tc) |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1186 | { |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1187 | if (!(tc->flags & TCP_CONN_FRXT_PENDING)) |
| 1188 | { |
| 1189 | vec_add1 (wrk->pending_fast_rxt, tc->c_c_index); |
| 1190 | tc->flags |= TCP_CONN_FRXT_PENDING; |
| 1191 | } |
| 1192 | } |
| 1193 | |
| 1194 | void |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1195 | tcp_do_fastretransmits (tcp_worker_ctx_t * wrk) |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1196 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1197 | u32 *ongoing_fast_rxt, burst_bytes, sent_bytes, thread_index; |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 1198 | u32 max_burst_size, burst_size, n_segs = 0, n_segs_now; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1199 | tcp_connection_t *tc; |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 1200 | u64 last_cpu_time; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1201 | int i; |
| 1202 | |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 1203 | if (vec_len (wrk->pending_fast_rxt) == 0 |
| 1204 | && vec_len (wrk->postponed_fast_rxt) == 0) |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1205 | return; |
| 1206 | |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1207 | thread_index = wrk->vm->thread_index; |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 1208 | last_cpu_time = wrk->vm->clib_time.last_cpu_time; |
| 1209 | ongoing_fast_rxt = wrk->ongoing_fast_rxt; |
| 1210 | vec_append (ongoing_fast_rxt, wrk->postponed_fast_rxt); |
| 1211 | vec_append (ongoing_fast_rxt, wrk->pending_fast_rxt); |
| 1212 | |
| 1213 | _vec_len (wrk->postponed_fast_rxt) = 0; |
| 1214 | _vec_len (wrk->pending_fast_rxt) = 0; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1215 | |
Florin Coras | 776f3d8 | 2018-11-02 08:23:58 -0700 | [diff] [blame] | 1216 | max_burst_size = VLIB_FRAME_SIZE / vec_len (ongoing_fast_rxt); |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1217 | max_burst_size = clib_max (max_burst_size, 1); |
| 1218 | |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 1219 | for (i = 0; i < vec_len (ongoing_fast_rxt); i++) |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1220 | { |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 1221 | if (n_segs >= VLIB_FRAME_SIZE) |
| 1222 | { |
| 1223 | vec_add1 (wrk->postponed_fast_rxt, ongoing_fast_rxt[i]); |
| 1224 | continue; |
| 1225 | } |
| 1226 | |
| 1227 | tc = tcp_connection_get (ongoing_fast_rxt[i], thread_index); |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1228 | tc->flags &= ~TCP_CONN_FRXT_PENDING; |
| 1229 | |
| 1230 | if (!tcp_in_fastrecovery (tc)) |
| 1231 | continue; |
| 1232 | |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 1233 | burst_size = clib_min (max_burst_size, VLIB_FRAME_SIZE - n_segs); |
| 1234 | burst_bytes = transport_connection_tx_pacer_burst (&tc->connection, |
| 1235 | last_cpu_time); |
| 1236 | burst_size = clib_min (burst_size, burst_bytes / tc->snd_mss); |
| 1237 | if (!burst_size) |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1238 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1239 | tcp_program_fastretransmit (wrk, tc); |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1240 | continue; |
| 1241 | } |
| 1242 | |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1243 | n_segs_now = tcp_fast_retransmit (wrk, tc, burst_size); |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 1244 | sent_bytes = clib_min (n_segs_now * tc->snd_mss, burst_bytes); |
| 1245 | transport_connection_tx_pacer_update_bytes (&tc->connection, |
| 1246 | sent_bytes); |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 1247 | n_segs += n_segs_now; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1248 | } |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 1249 | _vec_len (ongoing_fast_rxt) = 0; |
| 1250 | wrk->ongoing_fast_rxt = ongoing_fast_rxt; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1251 | } |
| 1252 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1253 | /** |
| 1254 | * One function to rule them all ... and in the darkness bind them |
| 1255 | */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1256 | static void |
| 1257 | tcp_cc_handle_event (tcp_connection_t * tc, u32 is_dack) |
| 1258 | { |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1259 | u32 rxt_delivered; |
| 1260 | |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1261 | if (tcp_in_fastrecovery (tc) && tcp_opts_sack_permitted (&tc->rcv_opts)) |
| 1262 | { |
| 1263 | if (tc->bytes_acked) |
| 1264 | goto partial_ack; |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1265 | tcp_program_fastretransmit (tcp_get_worker (tc->c_thread_index), tc); |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1266 | return; |
| 1267 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1268 | /* |
| 1269 | * Duplicate ACK. Check if we should enter fast recovery, or if already in |
| 1270 | * it account for the bytes that left the network. |
| 1271 | */ |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1272 | else if (is_dack && !tcp_in_recovery (tc)) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1273 | { |
Florin Coras | d2aab83 | 2018-05-22 11:39:59 -0700 | [diff] [blame] | 1274 | TCP_EVT_DBG (TCP_EVT_DUPACK_RCVD, tc, 1); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1275 | ASSERT (tc->snd_una != tc->snd_una_max |
| 1276 | || tc->sack_sb.last_sacked_bytes); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1277 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1278 | tc->rcv_dupacks++; |
| 1279 | |
Florin Coras | d2aab83 | 2018-05-22 11:39:59 -0700 | [diff] [blame] | 1280 | /* Pure duplicate ack. If some data got acked, it's handled lower */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1281 | if (tc->rcv_dupacks > TCP_DUPACK_THRESHOLD && !tc->bytes_acked) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1282 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1283 | ASSERT (tcp_in_fastrecovery (tc)); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1284 | tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK); |
| 1285 | return; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1286 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1287 | else if (tcp_should_fastrecover (tc)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1288 | { |
Florin Coras | c44a558 | 2018-11-01 16:30:54 -0700 | [diff] [blame] | 1289 | u32 pacer_wnd; |
| 1290 | |
Florin Coras | d2aab83 | 2018-05-22 11:39:59 -0700 | [diff] [blame] | 1291 | ASSERT (!tcp_in_fastrecovery (tc)); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1292 | |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1293 | /* Heuristic to catch potential late dupacks |
| 1294 | * after fast retransmit exits */ |
| 1295 | if (is_dack && tc->snd_una == tc->snd_congestion |
| 1296 | && timestamp_leq (tc->rcv_opts.tsecr, tc->tsecr_last_ack)) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1297 | { |
| 1298 | tc->rcv_dupacks = 0; |
| 1299 | return; |
| 1300 | } |
| 1301 | |
| 1302 | tcp_cc_init_congestion (tc); |
| 1303 | tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK); |
| 1304 | |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 1305 | if (tcp_opts_sack_permitted (&tc->rcv_opts)) |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 1306 | { |
| 1307 | tc->cwnd = tc->ssthresh; |
| 1308 | scoreboard_init_high_rxt (&tc->sack_sb, tc->snd_una); |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 1309 | } |
| 1310 | else |
| 1311 | { |
| 1312 | /* Post retransmit update cwnd to ssthresh and account for the |
| 1313 | * three segments that have left the network and should've been |
| 1314 | * buffered at the receiver XXX */ |
| 1315 | tc->cwnd = tc->ssthresh + 3 * tc->snd_mss; |
| 1316 | } |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1317 | |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame^] | 1318 | /* Constrain rate until we get a partial ack */ |
Florin Coras | c44a558 | 2018-11-01 16:30:54 -0700 | [diff] [blame] | 1319 | pacer_wnd = clib_max (0.1 * tc->cwnd, 2 * tc->snd_mss); |
| 1320 | tcp_connection_tx_pacer_reset (tc, pacer_wnd, |
| 1321 | 0 /* start bucket */ ); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1322 | tcp_program_fastretransmit (tcp_get_worker (tc->c_thread_index), |
| 1323 | tc); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1324 | return; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1325 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1326 | else if (!tc->bytes_acked |
| 1327 | || (tc->bytes_acked && !tcp_in_cong_recovery (tc))) |
| 1328 | { |
| 1329 | tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK); |
| 1330 | return; |
| 1331 | } |
| 1332 | else |
| 1333 | goto partial_ack; |
| 1334 | } |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1335 | /* Don't allow entry in fast recovery if still in recovery, for now */ |
| 1336 | else if (0 && is_dack && tcp_in_recovery (tc)) |
| 1337 | { |
| 1338 | /* If of of the two conditions lower hold, reset dupacks because |
| 1339 | * we're probably after timeout (RFC6582 heuristics). |
| 1340 | * If Cumulative ack does not cover more than congestion threshold, |
| 1341 | * and: |
| 1342 | * 1) The following doesn't hold: The congestion window is greater |
| 1343 | * than SMSS bytes and the difference between highest_ack |
| 1344 | * and prev_highest_ack is at most 4*SMSS bytes |
| 1345 | * 2) Echoed timestamp in the last non-dup ack does not equal the |
| 1346 | * stored timestamp |
| 1347 | */ |
| 1348 | if (seq_leq (tc->snd_una, tc->snd_congestion) |
| 1349 | && ((!(tc->cwnd > tc->snd_mss |
| 1350 | && tc->bytes_acked <= 4 * tc->snd_mss)) |
| 1351 | || (tc->rcv_opts.tsecr != tc->tsecr_last_ack))) |
| 1352 | { |
| 1353 | tc->rcv_dupacks = 0; |
| 1354 | return; |
| 1355 | } |
| 1356 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1357 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1358 | if (!tc->bytes_acked) |
| 1359 | return; |
| 1360 | |
| 1361 | partial_ack: |
Florin Coras | d2aab83 | 2018-05-22 11:39:59 -0700 | [diff] [blame] | 1362 | TCP_EVT_DBG (TCP_EVT_CC_PACK, tc); |
| 1363 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1364 | /* |
| 1365 | * Legitimate ACK. 1) See if we can exit recovery |
| 1366 | */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1367 | |
| 1368 | if (seq_geq (tc->snd_una, tc->snd_congestion)) |
| 1369 | { |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1370 | tcp_retransmit_timer_update (tc); |
| 1371 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1372 | /* If spurious return, we've already updated everything */ |
| 1373 | if (tcp_cc_recover (tc)) |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1374 | { |
| 1375 | tc->tsecr_last_ack = tc->rcv_opts.tsecr; |
| 1376 | return; |
| 1377 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1378 | |
| 1379 | tc->snd_nxt = tc->snd_una_max; |
| 1380 | |
| 1381 | /* Treat as congestion avoidance ack */ |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 1382 | tcp_cc_rcv_ack (tc); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1383 | return; |
| 1384 | } |
| 1385 | |
| 1386 | /* |
| 1387 | * Legitimate ACK. 2) If PARTIAL ACK try to retransmit |
| 1388 | */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1389 | |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame^] | 1390 | /* Update the pacing rate. For the first partial ack we move from |
| 1391 | * the artificially constrained rate to the one after congestion */ |
| 1392 | tcp_connection_tx_pacer_update (tc); |
| 1393 | |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1394 | /* XXX limit this only to first partial ack? */ |
| 1395 | tcp_retransmit_timer_force_update (tc); |
| 1396 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1397 | /* RFC6675: If the incoming ACK is a cumulative acknowledgment, |
Florin Coras | d2aab83 | 2018-05-22 11:39:59 -0700 | [diff] [blame] | 1398 | * reset dupacks to 0. Also needed if in congestion recovery */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1399 | tc->rcv_dupacks = 0; |
| 1400 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1401 | /* Post RTO timeout don't try anything fancy */ |
| 1402 | if (tcp_in_recovery (tc)) |
Florin Coras | d2aab83 | 2018-05-22 11:39:59 -0700 | [diff] [blame] | 1403 | { |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 1404 | tcp_cc_rcv_ack (tc); |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 1405 | transport_add_tx_event (&tc->connection); |
Florin Coras | d2aab83 | 2018-05-22 11:39:59 -0700 | [diff] [blame] | 1406 | return; |
| 1407 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1408 | |
| 1409 | /* Remove retransmitted bytes that have been delivered */ |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1410 | if (tcp_opts_sack_permitted (&tc->rcv_opts)) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1411 | { |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1412 | ASSERT (tc->bytes_acked + tc->sack_sb.snd_una_adv |
| 1413 | >= tc->sack_sb.last_bytes_delivered |
| 1414 | || (tc->flags & TCP_CONN_FINSNT)); |
| 1415 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1416 | /* If we have sacks and we haven't gotten an ack beyond high_rxt, |
| 1417 | * remove sacked bytes delivered */ |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1418 | if (seq_lt (tc->snd_una, tc->sack_sb.high_rxt)) |
| 1419 | { |
| 1420 | rxt_delivered = tc->bytes_acked + tc->sack_sb.snd_una_adv |
| 1421 | - tc->sack_sb.last_bytes_delivered; |
| 1422 | ASSERT (tc->snd_rxt_bytes >= rxt_delivered); |
| 1423 | tc->snd_rxt_bytes -= rxt_delivered; |
| 1424 | } |
| 1425 | else |
| 1426 | { |
| 1427 | /* Apparently all retransmitted holes have been acked */ |
| 1428 | tc->snd_rxt_bytes = 0; |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame^] | 1429 | tc->sack_sb.high_rxt = tc->snd_una; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1430 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1431 | } |
| 1432 | else |
| 1433 | { |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame^] | 1434 | tcp_fastrecovery_first_on (tc); |
| 1435 | /* Reuse last bytes delivered to track total bytes acked */ |
| 1436 | tc->sack_sb.last_bytes_delivered += tc->bytes_acked; |
Florin Coras | bf4d5ce | 2018-10-19 16:26:24 -0700 | [diff] [blame] | 1437 | if (tc->snd_rxt_bytes > tc->bytes_acked) |
| 1438 | tc->snd_rxt_bytes -= tc->bytes_acked; |
| 1439 | else |
| 1440 | tc->snd_rxt_bytes = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1441 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1442 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1443 | tc->cc_algo->rcv_cong_ack (tc, TCP_CC_PARTIALACK); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1444 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1445 | /* |
| 1446 | * Since this was a partial ack, try to retransmit some more data |
| 1447 | */ |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1448 | tcp_program_fastretransmit (tcp_get_worker (tc->c_thread_index), tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1449 | } |
| 1450 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1451 | /** |
| 1452 | * Process incoming ACK |
| 1453 | */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1454 | static int |
| 1455 | tcp_rcv_ack (tcp_connection_t * tc, vlib_buffer_t * b, |
| 1456 | tcp_header_t * th, u32 * next, u32 * error) |
| 1457 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1458 | u32 prev_snd_wnd, prev_snd_una; |
| 1459 | u8 is_dack; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1460 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1461 | TCP_EVT_DBG (TCP_EVT_CC_STAT, tc); |
| 1462 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1463 | /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1464 | if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt))) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1465 | { |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1466 | /* When we entered recovery, we reset snd_nxt to snd_una. Seems peer |
| 1467 | * still has the data so accept the ack */ |
| 1468 | if (tcp_in_recovery (tc) |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 1469 | && seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_congestion)) |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1470 | { |
Florin Coras | 3ec66b0 | 2018-08-23 16:27:05 -0700 | [diff] [blame] | 1471 | tc->snd_nxt = vnet_buffer (b)->tcp.ack_number; |
| 1472 | if (seq_gt (tc->snd_nxt, tc->snd_una_max)) |
| 1473 | tc->snd_una_max = tc->snd_nxt; |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1474 | goto process_ack; |
| 1475 | } |
| 1476 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1477 | /* If we have outstanding data and this is within the window, accept it, |
| 1478 | * probably retransmit has timed out. Otherwise ACK segment and then |
| 1479 | * drop it */ |
| 1480 | if (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max)) |
| 1481 | { |
| 1482 | tcp_make_ack (tc, b); |
| 1483 | *next = tcp_next_output (tc->c_is_ip4); |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame^] | 1484 | *error = TCP_ERROR_ACK_FUTURE; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1485 | TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 0, |
| 1486 | vnet_buffer (b)->tcp.ack_number); |
| 1487 | return -1; |
| 1488 | } |
| 1489 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1490 | TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 2, |
| 1491 | vnet_buffer (b)->tcp.ack_number); |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1492 | |
| 1493 | tc->snd_nxt = vnet_buffer (b)->tcp.ack_number; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1494 | } |
| 1495 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1496 | /* If old ACK, probably it's an old dupack */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1497 | if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1498 | { |
| 1499 | *error = TCP_ERROR_ACK_OLD; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1500 | TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 1, |
| 1501 | vnet_buffer (b)->tcp.ack_number); |
| 1502 | if (tcp_in_fastrecovery (tc) && tc->rcv_dupacks == TCP_DUPACK_THRESHOLD) |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1503 | tcp_cc_handle_event (tc, 1); |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 1504 | /* Don't drop yet */ |
| 1505 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1506 | } |
| 1507 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1508 | /* |
| 1509 | * Looks okay, process feedback |
| 1510 | */ |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1511 | process_ack: |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1512 | if (tcp_opts_sack_permitted (&tc->rcv_opts)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1513 | tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number); |
| 1514 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1515 | prev_snd_wnd = tc->snd_wnd; |
| 1516 | prev_snd_una = tc->snd_una; |
| 1517 | tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number, |
| 1518 | vnet_buffer (b)->tcp.ack_number, |
| 1519 | clib_net_to_host_u16 (th->window) << tc->snd_wscale); |
| 1520 | tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una; |
| 1521 | tc->snd_una = vnet_buffer (b)->tcp.ack_number + tc->sack_sb.snd_una_adv; |
| 1522 | tcp_validate_txf_size (tc, tc->bytes_acked); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1523 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1524 | if (tc->bytes_acked) |
| 1525 | tcp_dequeue_acked (tc, vnet_buffer (b)->tcp.ack_number); |
| 1526 | |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 1527 | TCP_EVT_DBG (TCP_EVT_ACK_RCVD, tc); |
| 1528 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1529 | /* |
| 1530 | * Check if we have congestion event |
| 1531 | */ |
| 1532 | |
| 1533 | if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1534 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1535 | tcp_cc_handle_event (tc, is_dack); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1536 | if (!tcp_in_cong_recovery (tc)) |
| 1537 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1538 | *error = TCP_ERROR_ACK_DUP; |
Florin Coras | ca09d07 | 2018-10-01 18:31:02 -0700 | [diff] [blame] | 1539 | if (vnet_buffer (b)->tcp.data_len || tcp_is_fin (th)) |
| 1540 | return 0; |
| 1541 | return -1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1542 | } |
| 1543 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1544 | /* |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1545 | * Update congestion control (slow start/congestion avoidance) |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1546 | */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1547 | tcp_cc_update (tc, b); |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 1548 | *error = TCP_ERROR_ACK_OK; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1549 | return 0; |
| 1550 | } |
| 1551 | |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 1552 | static u8 |
| 1553 | tcp_sack_vector_is_sane (sack_block_t * sacks) |
| 1554 | { |
| 1555 | int i; |
| 1556 | for (i = 1; i < vec_len (sacks); i++) |
| 1557 | { |
| 1558 | if (sacks[i - 1].end == sacks[i].start) |
| 1559 | return 0; |
| 1560 | } |
| 1561 | return 1; |
| 1562 | } |
| 1563 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1564 | /** |
| 1565 | * Build SACK list as per RFC2018. |
| 1566 | * |
| 1567 | * Makes sure the first block contains the segment that generated the current |
| 1568 | * ACK and the following ones are the ones most recently reported in SACK |
| 1569 | * blocks. |
| 1570 | * |
| 1571 | * @param tc TCP connection for which the SACK list is updated |
| 1572 | * @param start Start sequence number of the newest SACK block |
| 1573 | * @param end End sequence of the newest SACK block |
| 1574 | */ |
Florin Coras | 45d3496 | 2017-04-25 00:05:27 -0700 | [diff] [blame] | 1575 | void |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1576 | tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end) |
| 1577 | { |
Florin Coras | 45d3496 | 2017-04-25 00:05:27 -0700 | [diff] [blame] | 1578 | sack_block_t *new_list = 0, *block = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1579 | int i; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1580 | |
| 1581 | /* If the first segment is ooo add it to the list. Last write might've moved |
| 1582 | * rcv_nxt over the first segment. */ |
| 1583 | if (seq_lt (tc->rcv_nxt, start)) |
| 1584 | { |
Florin Coras | 45d3496 | 2017-04-25 00:05:27 -0700 | [diff] [blame] | 1585 | vec_add2 (new_list, block, 1); |
| 1586 | block->start = start; |
| 1587 | block->end = end; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1588 | } |
| 1589 | |
| 1590 | /* Find the blocks still worth keeping. */ |
| 1591 | for (i = 0; i < vec_len (tc->snd_sacks); i++) |
| 1592 | { |
Florin Coras | 45d3496 | 2017-04-25 00:05:27 -0700 | [diff] [blame] | 1593 | /* Discard if rcv_nxt advanced beyond current block */ |
| 1594 | if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1595 | continue; |
| 1596 | |
Florin Coras | 45d3496 | 2017-04-25 00:05:27 -0700 | [diff] [blame] | 1597 | /* Merge or drop if segment overlapped by the new segment */ |
| 1598 | if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start) |
| 1599 | && seq_leq (tc->snd_sacks[i].start, new_list[0].end))) |
| 1600 | { |
| 1601 | if (seq_lt (tc->snd_sacks[i].start, new_list[0].start)) |
| 1602 | new_list[0].start = tc->snd_sacks[i].start; |
| 1603 | if (seq_lt (new_list[0].end, tc->snd_sacks[i].end)) |
| 1604 | new_list[0].end = tc->snd_sacks[i].end; |
| 1605 | continue; |
| 1606 | } |
| 1607 | |
| 1608 | /* Save to new SACK list if we have space. */ |
| 1609 | if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS) |
| 1610 | { |
| 1611 | vec_add1 (new_list, tc->snd_sacks[i]); |
| 1612 | } |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1613 | else |
| 1614 | { |
| 1615 | clib_warning ("sack discarded"); |
| 1616 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1617 | } |
| 1618 | |
Florin Coras | 45d3496 | 2017-04-25 00:05:27 -0700 | [diff] [blame] | 1619 | ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1620 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1621 | /* Replace old vector with new one */ |
| 1622 | vec_free (tc->snd_sacks); |
| 1623 | tc->snd_sacks = new_list; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 1624 | |
| 1625 | /* Segments should not 'touch' */ |
| 1626 | ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1627 | } |
| 1628 | |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1629 | u32 |
| 1630 | tcp_sack_list_bytes (tcp_connection_t * tc) |
| 1631 | { |
| 1632 | u32 bytes = 0, i; |
| 1633 | for (i = 0; i < vec_len (tc->snd_sacks); i++) |
| 1634 | bytes += tc->snd_sacks[i].end - tc->snd_sacks[i].start; |
| 1635 | return bytes; |
| 1636 | } |
| 1637 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1638 | /** Enqueue data for delivery to application */ |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1639 | static int |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1640 | tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b, |
| 1641 | u16 data_len) |
| 1642 | { |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1643 | int written, error = TCP_ERROR_ENQUEUED; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1644 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1645 | ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt)); |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 1646 | ASSERT (data_len); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1647 | written = session_enqueue_stream_connection (&tc->connection, b, 0, |
| 1648 | 1 /* queue event */ , 1); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1649 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1650 | TCP_EVT_DBG (TCP_EVT_INPUT, tc, 0, data_len, written); |
| 1651 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1652 | /* Update rcv_nxt */ |
| 1653 | if (PREDICT_TRUE (written == data_len)) |
| 1654 | { |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1655 | tc->rcv_nxt += written; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1656 | } |
| 1657 | /* If more data written than expected, account for out-of-order bytes. */ |
| 1658 | else if (written > data_len) |
| 1659 | { |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1660 | tc->rcv_nxt += written; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1661 | |
| 1662 | /* Send ACK confirming the update */ |
| 1663 | tc->flags |= TCP_CONN_SNDACK; |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1664 | TCP_EVT_DBG (TCP_EVT_CC_INPUT, tc, data_len, written); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1665 | } |
| 1666 | else if (written > 0) |
| 1667 | { |
| 1668 | /* We've written something but FIFO is probably full now */ |
| 1669 | tc->rcv_nxt += written; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1670 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1671 | /* Depending on how fast the app is, all remaining buffers in burst will |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1672 | * not be enqueued. Inform peer */ |
| 1673 | tc->flags |= TCP_CONN_SNDACK; |
| 1674 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1675 | error = TCP_ERROR_PARTIALLY_ENQUEUED; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1676 | } |
| 1677 | else |
| 1678 | { |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1679 | tc->flags |= TCP_CONN_SNDACK; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1680 | return TCP_ERROR_FIFO_FULL; |
| 1681 | } |
| 1682 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1683 | /* Update SACK list if need be */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1684 | if (tcp_opts_sack_permitted (&tc->rcv_opts)) |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1685 | { |
| 1686 | /* Remove SACK blocks that have been delivered */ |
| 1687 | tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt); |
| 1688 | } |
| 1689 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1690 | return error; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1691 | } |
| 1692 | |
| 1693 | /** Enqueue out-of-order data */ |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1694 | static int |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1695 | tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b, |
| 1696 | u16 data_len) |
| 1697 | { |
| 1698 | stream_session_t *s0; |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 1699 | int rv, offset; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1700 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1701 | ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt)); |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 1702 | ASSERT (data_len); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1703 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1704 | /* Enqueue out-of-order data with relative offset */ |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1705 | rv = session_enqueue_stream_connection (&tc->connection, b, |
| 1706 | vnet_buffer (b)->tcp.seq_number - |
| 1707 | tc->rcv_nxt, 0 /* queue event */ , |
| 1708 | 0); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1709 | |
| 1710 | /* Nothing written */ |
| 1711 | if (rv) |
| 1712 | { |
| 1713 | TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, 0); |
| 1714 | return TCP_ERROR_FIFO_FULL; |
| 1715 | } |
| 1716 | |
| 1717 | TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, data_len); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1718 | |
| 1719 | /* Update SACK list if in use */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 1720 | if (tcp_opts_sack_permitted (&tc->rcv_opts)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1721 | { |
| 1722 | ooo_segment_t *newest; |
| 1723 | u32 start, end; |
| 1724 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1725 | s0 = session_get (tc->c_s_index, tc->c_thread_index); |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 1726 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1727 | /* Get the newest segment from the fifo */ |
| 1728 | newest = svm_fifo_newest_ooo_segment (s0->server_rx_fifo); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1729 | if (newest) |
| 1730 | { |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 1731 | offset = ooo_segment_offset (s0->server_rx_fifo, newest); |
| 1732 | ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt); |
| 1733 | start = tc->rcv_nxt + offset; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1734 | end = start + ooo_segment_length (s0->server_rx_fifo, newest); |
| 1735 | tcp_update_sack_list (tc, start, end); |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 1736 | svm_fifo_newest_ooo_segment_reset (s0->server_rx_fifo); |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1737 | TCP_EVT_DBG (TCP_EVT_CC_SACKS, tc); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1738 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1739 | } |
| 1740 | |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 1741 | return TCP_ERROR_ENQUEUED_OOO; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1742 | } |
| 1743 | |
| 1744 | /** |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1745 | * Check if ACK could be delayed. If ack can be delayed, it should return |
| 1746 | * true for a full frame. If we're always acking return 0. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1747 | */ |
| 1748 | always_inline int |
| 1749 | tcp_can_delack (tcp_connection_t * tc) |
| 1750 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1751 | /* Send ack if ... */ |
| 1752 | if (TCP_ALWAYS_ACK |
| 1753 | /* just sent a rcv wnd 0 */ |
| 1754 | || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0 |
| 1755 | /* constrained to send ack */ |
| 1756 | || (tc->flags & TCP_CONN_SNDACK) != 0 |
| 1757 | /* we're almost out of tx wnd */ |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1758 | || tcp_available_cc_snd_space (tc) < 4 * tc->snd_mss) |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1759 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1760 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1761 | return 1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1762 | } |
| 1763 | |
| 1764 | static int |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1765 | tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop) |
| 1766 | { |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1767 | u32 discard, first = b->current_length; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1768 | vlib_main_t *vm = vlib_get_main (); |
| 1769 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1770 | /* Handle multi-buffer segments */ |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1771 | if (n_bytes_to_drop > b->current_length) |
| 1772 | { |
| 1773 | if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT)) |
| 1774 | return -1; |
| 1775 | do |
| 1776 | { |
| 1777 | discard = clib_min (n_bytes_to_drop, b->current_length); |
| 1778 | vlib_buffer_advance (b, discard); |
| 1779 | b = vlib_get_buffer (vm, b->next_buffer); |
| 1780 | n_bytes_to_drop -= discard; |
| 1781 | } |
| 1782 | while (n_bytes_to_drop); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1783 | if (n_bytes_to_drop > first) |
| 1784 | b->total_length_not_including_first_buffer -= n_bytes_to_drop - first; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1785 | } |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1786 | else |
| 1787 | vlib_buffer_advance (b, n_bytes_to_drop); |
| 1788 | vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1789 | return 0; |
| 1790 | } |
| 1791 | |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 1792 | /** |
| 1793 | * Receive buffer for connection and handle acks |
| 1794 | * |
| 1795 | * It handles both in order or out-of-order data. |
| 1796 | */ |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1797 | static int |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 1798 | tcp_segment_rcv (tcp_connection_t * tc, vlib_buffer_t * b, u32 * next0) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1799 | { |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 1800 | u32 error, n_bytes_to_drop, n_data_bytes; |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 1801 | |
| 1802 | vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset); |
| 1803 | n_data_bytes = vnet_buffer (b)->tcp.data_len; |
| 1804 | ASSERT (n_data_bytes); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1805 | |
| 1806 | /* Handle out-of-order data */ |
| 1807 | if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt)) |
| 1808 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1809 | /* Old sequence numbers allowed through because they overlapped |
| 1810 | * the rx window */ |
| 1811 | if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1812 | { |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 1813 | /* Completely in the past (possible retransmit). Ack |
| 1814 | * retransmissions since we may not have any data to send */ |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1815 | if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt)) |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 1816 | { |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 1817 | tcp_make_ack (tc, b); |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 1818 | error = TCP_ERROR_SEGMENT_OLD; |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 1819 | *next0 = tcp_next_output (tc->c_is_ip4); |
| 1820 | goto done; |
| 1821 | } |
Dave Barach | 259cdae | 2017-05-15 16:27:05 -0400 | [diff] [blame] | 1822 | |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 1823 | /* Chop off the bytes in the past and see if what is left |
| 1824 | * can be enqueued in order */ |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 1825 | n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number; |
| 1826 | n_data_bytes -= n_bytes_to_drop; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1827 | vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 1828 | if (tcp_buffer_discard_bytes (b, n_bytes_to_drop)) |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 1829 | { |
| 1830 | error = TCP_ERROR_SEGMENT_OLD; |
| 1831 | *next0 = tcp_next_drop (tc->c_is_ip4); |
| 1832 | goto done; |
| 1833 | } |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 1834 | goto in_order; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1835 | } |
| 1836 | |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 1837 | /* RFC2581: Enqueue and send DUPACK for fast retransmit */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1838 | error = tcp_session_enqueue_ooo (tc, b, n_data_bytes); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1839 | *next0 = tcp_next_output (tc->c_is_ip4); |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 1840 | tcp_make_ack (tc, b); |
| 1841 | vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_DUPACK; |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 1842 | TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc, vnet_buffer (b)->tcp); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1843 | goto done; |
| 1844 | } |
| 1845 | |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 1846 | in_order: |
| 1847 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1848 | /* In order data, enqueue. Fifo figures out by itself if any out-of-order |
| 1849 | * segments can be enqueued after fifo tail offset changes. */ |
| 1850 | error = tcp_session_enqueue_data (tc, b, n_data_bytes); |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1851 | if (tcp_can_delack (tc)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1852 | { |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 1853 | *next0 = tcp_next_drop (tc->c_is_ip4); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1854 | if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK)) |
| 1855 | tcp_timer_set (tc, TCP_TIMER_DELACK, TCP_DELACK_TIME); |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1856 | goto done; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1857 | } |
| 1858 | |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 1859 | *next0 = tcp_next_output (tc->c_is_ip4); |
| 1860 | tcp_make_ack (tc, b); |
| 1861 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1862 | done: |
| 1863 | return error; |
| 1864 | } |
| 1865 | |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 1866 | typedef struct |
| 1867 | { |
| 1868 | tcp_header_t tcp_header; |
| 1869 | tcp_connection_t tcp_connection; |
| 1870 | } tcp_rx_trace_t; |
| 1871 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1872 | static u8 * |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 1873 | format_tcp_rx_trace (u8 * s, va_list * args) |
| 1874 | { |
| 1875 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 1876 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
| 1877 | tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *); |
Christophe Fontaine | d3c008d | 2017-10-02 18:10:54 +0200 | [diff] [blame] | 1878 | u32 indent = format_get_indent (s); |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 1879 | |
| 1880 | s = format (s, "%U\n%U%U", |
| 1881 | format_tcp_header, &t->tcp_header, 128, |
| 1882 | format_white_space, indent, |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 1883 | format_tcp_connection, &t->tcp_connection, 1); |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 1884 | |
| 1885 | return s; |
| 1886 | } |
| 1887 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1888 | static u8 * |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 1889 | format_tcp_rx_trace_short (u8 * s, va_list * args) |
| 1890 | { |
| 1891 | CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); |
| 1892 | CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *); |
| 1893 | tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *); |
| 1894 | |
| 1895 | s = format (s, "%d -> %d (%U)", |
Florin Coras | 4df3871 | 2018-06-20 12:44:16 -0700 | [diff] [blame] | 1896 | clib_net_to_host_u16 (t->tcp_header.dst_port), |
| 1897 | clib_net_to_host_u16 (t->tcp_header.src_port), format_tcp_state, |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 1898 | t->tcp_connection.state); |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 1899 | |
| 1900 | return s; |
| 1901 | } |
| 1902 | |
Florin Coras | 4df3871 | 2018-06-20 12:44:16 -0700 | [diff] [blame] | 1903 | static void |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 1904 | tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0, |
| 1905 | tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4) |
| 1906 | { |
| 1907 | if (tc0) |
| 1908 | { |
| 1909 | clib_memcpy (&t0->tcp_connection, tc0, sizeof (t0->tcp_connection)); |
| 1910 | } |
| 1911 | else |
| 1912 | { |
| 1913 | th0 = tcp_buffer_hdr (b0); |
| 1914 | } |
| 1915 | clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header)); |
| 1916 | } |
| 1917 | |
Florin Coras | 4df3871 | 2018-06-20 12:44:16 -0700 | [diff] [blame] | 1918 | static void |
| 1919 | tcp_established_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 1920 | vlib_frame_t * frame, u8 is_ip4) |
| 1921 | { |
| 1922 | u32 *from, n_left; |
| 1923 | |
| 1924 | n_left = frame->n_vectors; |
| 1925 | from = vlib_frame_vector_args (frame); |
| 1926 | |
| 1927 | while (n_left >= 1) |
| 1928 | { |
| 1929 | tcp_connection_t *tc0; |
| 1930 | tcp_rx_trace_t *t0; |
| 1931 | tcp_header_t *th0; |
| 1932 | vlib_buffer_t *b0; |
| 1933 | u32 bi0; |
| 1934 | |
| 1935 | bi0 = from[0]; |
| 1936 | b0 = vlib_get_buffer (vm, bi0); |
| 1937 | |
| 1938 | if (b0->flags & VLIB_BUFFER_IS_TRACED) |
| 1939 | { |
| 1940 | t0 = vlib_add_trace (vm, node, b0, sizeof (*t0)); |
| 1941 | tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index, |
| 1942 | vm->thread_index); |
| 1943 | th0 = tcp_buffer_hdr (b0); |
| 1944 | tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4); |
| 1945 | } |
| 1946 | |
| 1947 | from += 1; |
| 1948 | n_left -= 1; |
| 1949 | } |
| 1950 | } |
| 1951 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1952 | always_inline void |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 1953 | tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node, |
| 1954 | u8 is_ip4, u32 evt, u32 val) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1955 | { |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1956 | if (is_ip4) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1957 | vlib_node_increment_counter (vm, tcp4_node, evt, val); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1958 | else |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1959 | vlib_node_increment_counter (vm, tcp6_node, evt, val); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1960 | } |
| 1961 | |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 1962 | #define tcp_maybe_inc_counter(node_id, err, count) \ |
| 1963 | { \ |
| 1964 | if (next0 != tcp_next_drop (is_ip4)) \ |
| 1965 | tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \ |
| 1966 | tcp6_##node_id##_node.index, is_ip4, err, \ |
| 1967 | 1); \ |
| 1968 | } |
| 1969 | #define tcp_inc_counter(node_id, err, count) \ |
| 1970 | tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \ |
| 1971 | tcp6_##node_id##_node.index, is_ip4, \ |
| 1972 | err, count) |
| 1973 | #define tcp_maybe_inc_err_counter(cnts, err) \ |
| 1974 | { \ |
| 1975 | cnts[err] += (next0 != tcp_next_drop (is_ip4)); \ |
| 1976 | } |
| 1977 | #define tcp_inc_err_counter(cnts, err, val) \ |
| 1978 | { \ |
| 1979 | cnts[err] += val; \ |
| 1980 | } |
| 1981 | #define tcp_store_err_counters(node_id, cnts) \ |
| 1982 | { \ |
| 1983 | int i; \ |
| 1984 | for (i = 0; i < TCP_N_ERROR; i++) \ |
| 1985 | if (cnts[i]) \ |
| 1986 | tcp_inc_counter(node_id, i, cnts[i]); \ |
| 1987 | } |
| 1988 | |
| 1989 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1990 | always_inline uword |
| 1991 | tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node, |
Florin Coras | 4df3871 | 2018-06-20 12:44:16 -0700 | [diff] [blame] | 1992 | vlib_frame_t * frame, int is_ip4) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1993 | { |
Florin Coras | 4df3871 | 2018-06-20 12:44:16 -0700 | [diff] [blame] | 1994 | u32 thread_index = vm->thread_index, errors = 0; |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 1995 | u32 n_left_from, next_index, *from, *to_next; |
| 1996 | u16 err_counters[TCP_N_ERROR] = { 0 }; |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 1997 | u8 is_fin = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1998 | |
Florin Coras | 4df3871 | 2018-06-20 12:44:16 -0700 | [diff] [blame] | 1999 | if (node->flags & VLIB_NODE_FLAG_TRACE) |
| 2000 | tcp_established_trace_frame (vm, node, frame, is_ip4); |
| 2001 | |
| 2002 | from = vlib_frame_vector_args (frame); |
| 2003 | n_left_from = frame->n_vectors; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2004 | next_index = node->cached_next_index; |
| 2005 | |
| 2006 | while (n_left_from > 0) |
| 2007 | { |
| 2008 | u32 n_left_to_next; |
| 2009 | |
| 2010 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2011 | while (n_left_from > 0 && n_left_to_next > 0) |
| 2012 | { |
| 2013 | u32 bi0; |
| 2014 | vlib_buffer_t *b0; |
| 2015 | tcp_header_t *th0 = 0; |
| 2016 | tcp_connection_t *tc0; |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2017 | u32 next0 = tcp_next_drop (is_ip4), error0 = TCP_ERROR_ACK_OK; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2018 | |
Florin Coras | 81a13db | 2018-03-16 08:48:31 -0700 | [diff] [blame] | 2019 | if (n_left_from > 1) |
| 2020 | { |
| 2021 | vlib_buffer_t *pb; |
| 2022 | pb = vlib_get_buffer (vm, from[1]); |
| 2023 | vlib_prefetch_buffer_header (pb, LOAD); |
| 2024 | CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD); |
| 2025 | } |
| 2026 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2027 | bi0 = from[0]; |
| 2028 | to_next[0] = bi0; |
| 2029 | from += 1; |
| 2030 | to_next += 1; |
| 2031 | n_left_from -= 1; |
| 2032 | n_left_to_next -= 1; |
| 2033 | |
| 2034 | b0 = vlib_get_buffer (vm, bi0); |
| 2035 | tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index, |
Florin Coras | 4df3871 | 2018-06-20 12:44:16 -0700 | [diff] [blame] | 2036 | thread_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2037 | |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2038 | if (PREDICT_FALSE (tc0 == 0)) |
| 2039 | { |
| 2040 | error0 = TCP_ERROR_INVALID_CONNECTION; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 2041 | goto done; |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2042 | } |
| 2043 | |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 2044 | th0 = tcp_buffer_hdr (b0); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2045 | /* N.B. buffer is rewritten if segment is ooo. Thus, th0 becomes a |
| 2046 | * dangling reference. */ |
| 2047 | is_fin = tcp_is_fin (th0); |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 2048 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2049 | /* SYNs, FINs and data consume sequence numbers */ |
| 2050 | vnet_buffer (b0)->tcp.seq_end = vnet_buffer (b0)->tcp.seq_number |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 2051 | + tcp_is_syn (th0) + is_fin + vnet_buffer (b0)->tcp.data_len; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2052 | |
| 2053 | /* TODO header prediction fast path */ |
| 2054 | |
| 2055 | /* 1-4: check SEQ, RST, SYN */ |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2056 | if (PREDICT_FALSE (tcp_segment_validate (vm, tc0, b0, th0, &next0, |
| 2057 | &error0))) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2058 | { |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2059 | tcp_maybe_inc_err_counter (err_counters, error0); |
Florin Coras | ca1c8f3 | 2018-05-23 21:01:30 -0700 | [diff] [blame] | 2060 | TCP_EVT_DBG (TCP_EVT_SEG_INVALID, tc0, vnet_buffer (b0)->tcp); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 2061 | goto done; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2062 | } |
| 2063 | |
| 2064 | /* 5: check the ACK field */ |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2065 | if (PREDICT_FALSE (tcp_rcv_ack (tc0, b0, th0, &next0, &error0))) |
| 2066 | { |
| 2067 | tcp_maybe_inc_err_counter (err_counters, error0); |
| 2068 | goto done; |
| 2069 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2070 | |
| 2071 | /* 6: check the URG bit TODO */ |
| 2072 | |
| 2073 | /* 7: process the segment text */ |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2074 | if (vnet_buffer (b0)->tcp.data_len) |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2075 | { |
| 2076 | error0 = tcp_segment_rcv (tc0, b0, &next0); |
| 2077 | tcp_maybe_inc_err_counter (err_counters, error0); |
| 2078 | } |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 2079 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2080 | /* 8: check the FIN bit */ |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2081 | if (PREDICT_FALSE (is_fin)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2082 | { |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 2083 | /* Enter CLOSE-WAIT and notify session. To avoid lingering |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2084 | * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */ |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 2085 | /* Account for the FIN if nothing else was received */ |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 2086 | if (vnet_buffer (b0)->tcp.data_len == 0) |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 2087 | tc0->rcv_nxt += 1; |
| 2088 | tcp_make_ack (tc0, b0); |
| 2089 | next0 = tcp_next_output (tc0->c_is_ip4); |
| 2090 | tc0->state = TCP_STATE_CLOSE_WAIT; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2091 | stream_session_disconnect_notify (&tc0->connection); |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 2092 | tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 2093 | TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0); |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2094 | tcp_inc_err_counter (err_counters, TCP_ERROR_FIN_RCVD, 1); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2095 | } |
| 2096 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 2097 | done: |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2098 | b0->error = node->errors[error0]; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2099 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next, |
| 2100 | n_left_to_next, bi0, next0); |
| 2101 | } |
| 2102 | |
| 2103 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 2104 | } |
| 2105 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2106 | errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP, |
Florin Coras | 4df3871 | 2018-06-20 12:44:16 -0700 | [diff] [blame] | 2107 | thread_index); |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2108 | err_counters[TCP_ERROR_EVENT_FIFO_FULL] = errors; |
| 2109 | tcp_store_err_counters (established, err_counters); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 2110 | tcp_flush_frame_to_output (tcp_get_worker (thread_index), is_ip4); |
Florin Coras | 4df3871 | 2018-06-20 12:44:16 -0700 | [diff] [blame] | 2111 | |
| 2112 | return frame->n_vectors; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2113 | } |
| 2114 | |
| 2115 | static uword |
| 2116 | tcp4_established (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2117 | vlib_frame_t * from_frame) |
| 2118 | { |
| 2119 | return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ ); |
| 2120 | } |
| 2121 | |
| 2122 | static uword |
| 2123 | tcp6_established (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2124 | vlib_frame_t * from_frame) |
| 2125 | { |
| 2126 | return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ ); |
| 2127 | } |
| 2128 | |
| 2129 | /* *INDENT-OFF* */ |
| 2130 | VLIB_REGISTER_NODE (tcp4_established_node) = |
| 2131 | { |
| 2132 | .function = tcp4_established, |
| 2133 | .name = "tcp4-established", |
| 2134 | /* Takes a vector of packets. */ |
| 2135 | .vector_size = sizeof (u32), |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2136 | .n_errors = TCP_N_ERROR, |
| 2137 | .error_strings = tcp_error_strings, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2138 | .n_next_nodes = TCP_ESTABLISHED_N_NEXT, |
| 2139 | .next_nodes = |
| 2140 | { |
| 2141 | #define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n, |
| 2142 | foreach_tcp_state_next |
| 2143 | #undef _ |
| 2144 | }, |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2145 | .format_trace = format_tcp_rx_trace_short, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2146 | }; |
| 2147 | /* *INDENT-ON* */ |
| 2148 | |
| 2149 | VLIB_NODE_FUNCTION_MULTIARCH (tcp4_established_node, tcp4_established); |
| 2150 | |
| 2151 | /* *INDENT-OFF* */ |
| 2152 | VLIB_REGISTER_NODE (tcp6_established_node) = |
| 2153 | { |
| 2154 | .function = tcp6_established, |
| 2155 | .name = "tcp6-established", |
| 2156 | /* Takes a vector of packets. */ |
| 2157 | .vector_size = sizeof (u32), |
| 2158 | .n_errors = TCP_N_ERROR, |
| 2159 | .error_strings = tcp_error_strings, |
| 2160 | .n_next_nodes = TCP_ESTABLISHED_N_NEXT, |
| 2161 | .next_nodes = |
| 2162 | { |
| 2163 | #define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n, |
| 2164 | foreach_tcp_state_next |
| 2165 | #undef _ |
| 2166 | }, |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2167 | .format_trace = format_tcp_rx_trace_short, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2168 | }; |
| 2169 | /* *INDENT-ON* */ |
| 2170 | |
| 2171 | |
| 2172 | VLIB_NODE_FUNCTION_MULTIARCH (tcp6_established_node, tcp6_established); |
| 2173 | |
| 2174 | vlib_node_registration_t tcp4_syn_sent_node; |
| 2175 | vlib_node_registration_t tcp6_syn_sent_node; |
| 2176 | |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2177 | static u8 |
| 2178 | tcp_lookup_is_valid (tcp_connection_t * tc, tcp_header_t * hdr) |
| 2179 | { |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2180 | transport_connection_t *tmp = 0; |
| 2181 | u64 handle; |
| 2182 | |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2183 | if (!tc) |
| 2184 | return 1; |
| 2185 | |
Florin Coras | 7013113 | 2017-11-27 02:43:30 -0800 | [diff] [blame] | 2186 | /* Proxy case */ |
| 2187 | if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN) |
| 2188 | return 1; |
| 2189 | |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2190 | u8 is_valid = (tc->c_lcl_port == hdr->dst_port |
| 2191 | && (tc->state == TCP_STATE_LISTEN |
| 2192 | || tc->c_rmt_port == hdr->src_port)); |
| 2193 | |
| 2194 | if (!is_valid) |
| 2195 | { |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2196 | handle = session_lookup_half_open_handle (&tc->connection); |
| 2197 | tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF, |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2198 | tc->c_proto, tc->c_is_ip4); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2199 | |
| 2200 | if (tmp) |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2201 | { |
| 2202 | if (tmp->lcl_port == hdr->dst_port |
| 2203 | && tmp->rmt_port == hdr->src_port) |
| 2204 | { |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2205 | TCP_DBG ("half-open is valid!"); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2206 | } |
| 2207 | } |
| 2208 | } |
| 2209 | return is_valid; |
| 2210 | } |
| 2211 | |
| 2212 | /** |
| 2213 | * Lookup transport connection |
| 2214 | */ |
| 2215 | static tcp_connection_t * |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2216 | tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index, |
| 2217 | u8 is_ip4) |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2218 | { |
| 2219 | tcp_header_t *tcp; |
| 2220 | transport_connection_t *tconn; |
| 2221 | tcp_connection_t *tc; |
Florin Coras | dff48db | 2017-11-19 18:06:58 -0800 | [diff] [blame] | 2222 | u8 is_filtered = 0; |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2223 | if (is_ip4) |
| 2224 | { |
| 2225 | ip4_header_t *ip4; |
| 2226 | ip4 = vlib_buffer_get_current (b); |
| 2227 | tcp = ip4_next_header (ip4); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2228 | tconn = session_lookup_connection_wt4 (fib_index, |
| 2229 | &ip4->dst_address, |
| 2230 | &ip4->src_address, |
| 2231 | tcp->dst_port, |
| 2232 | tcp->src_port, |
| 2233 | TRANSPORT_PROTO_TCP, |
Florin Coras | dff48db | 2017-11-19 18:06:58 -0800 | [diff] [blame] | 2234 | thread_index, &is_filtered); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2235 | tc = tcp_get_connection_from_transport (tconn); |
| 2236 | ASSERT (tcp_lookup_is_valid (tc, tcp)); |
| 2237 | } |
| 2238 | else |
| 2239 | { |
| 2240 | ip6_header_t *ip6; |
| 2241 | ip6 = vlib_buffer_get_current (b); |
| 2242 | tcp = ip6_next_header (ip6); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2243 | tconn = session_lookup_connection_wt6 (fib_index, |
| 2244 | &ip6->dst_address, |
| 2245 | &ip6->src_address, |
| 2246 | tcp->dst_port, |
| 2247 | tcp->src_port, |
| 2248 | TRANSPORT_PROTO_TCP, |
Florin Coras | dff48db | 2017-11-19 18:06:58 -0800 | [diff] [blame] | 2249 | thread_index, &is_filtered); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2250 | tc = tcp_get_connection_from_transport (tconn); |
| 2251 | ASSERT (tcp_lookup_is_valid (tc, tcp)); |
| 2252 | } |
| 2253 | return tc; |
| 2254 | } |
| 2255 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2256 | always_inline uword |
| 2257 | tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2258 | vlib_frame_t * from_frame, int is_ip4) |
| 2259 | { |
| 2260 | tcp_main_t *tm = vnet_get_tcp_main (); |
| 2261 | u32 n_left_from, next_index, *from, *to_next; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2262 | u32 my_thread_index = vm->thread_index, errors = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2263 | |
| 2264 | from = vlib_frame_vector_args (from_frame); |
| 2265 | n_left_from = from_frame->n_vectors; |
| 2266 | |
| 2267 | next_index = node->cached_next_index; |
| 2268 | |
| 2269 | while (n_left_from > 0) |
| 2270 | { |
| 2271 | u32 n_left_to_next; |
| 2272 | |
| 2273 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 2274 | |
| 2275 | while (n_left_from > 0 && n_left_to_next > 0) |
| 2276 | { |
| 2277 | u32 bi0, ack0, seq0; |
| 2278 | vlib_buffer_t *b0; |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2279 | tcp_rx_trace_t *t0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2280 | tcp_header_t *tcp0 = 0; |
| 2281 | tcp_connection_t *tc0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2282 | tcp_connection_t *new_tc0; |
Vijayabhaskar Katamreddy | ce07412 | 2017-11-15 13:50:26 -0800 | [diff] [blame] | 2283 | u32 next0 = tcp_next_drop (is_ip4), error0 = TCP_ERROR_ENQUEUED; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2284 | |
| 2285 | bi0 = from[0]; |
| 2286 | to_next[0] = bi0; |
| 2287 | from += 1; |
| 2288 | to_next += 1; |
| 2289 | n_left_from -= 1; |
| 2290 | n_left_to_next -= 1; |
| 2291 | |
| 2292 | b0 = vlib_get_buffer (vm, bi0); |
| 2293 | tc0 = |
| 2294 | tcp_half_open_connection_get (vnet_buffer (b0)-> |
| 2295 | tcp.connection_index); |
Dave Barach | d84ba85 | 2017-08-22 17:56:46 -0400 | [diff] [blame] | 2296 | if (PREDICT_FALSE (tc0 == 0)) |
| 2297 | { |
| 2298 | error0 = TCP_ERROR_INVALID_CONNECTION; |
| 2299 | goto drop; |
| 2300 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2301 | |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2302 | /* Half-open completed recently but the connection was't removed |
| 2303 | * yet by the owning thread */ |
| 2304 | if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE)) |
| 2305 | { |
| 2306 | /* Make sure the connection actually exists */ |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2307 | ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0, |
| 2308 | my_thread_index, is_ip4)); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2309 | goto drop; |
| 2310 | } |
| 2311 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2312 | ack0 = vnet_buffer (b0)->tcp.ack_number; |
| 2313 | seq0 = vnet_buffer (b0)->tcp.seq_number; |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 2314 | tcp0 = tcp_buffer_hdr (b0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2315 | |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 2316 | /* Crude check to see if the connection handle does not match |
| 2317 | * the packet. Probably connection just switched to established */ |
| 2318 | if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port |
| 2319 | || tcp0->src_port != tc0->c_rmt_port)) |
| 2320 | goto drop; |
| 2321 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2322 | if (PREDICT_FALSE |
| 2323 | (!tcp_ack (tcp0) && !tcp_rst (tcp0) && !tcp_syn (tcp0))) |
| 2324 | goto drop; |
| 2325 | |
| 2326 | /* SYNs, FINs and data consume sequence numbers */ |
| 2327 | vnet_buffer (b0)->tcp.seq_end = seq0 + tcp_is_syn (tcp0) |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 2328 | + tcp_is_fin (tcp0) + vnet_buffer (b0)->tcp.data_len; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2329 | |
| 2330 | /* |
| 2331 | * 1. check the ACK bit |
| 2332 | */ |
| 2333 | |
| 2334 | /* |
| 2335 | * If the ACK bit is set |
| 2336 | * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless |
| 2337 | * the RST bit is set, if so drop the segment and return) |
| 2338 | * <SEQ=SEG.ACK><CTL=RST> |
| 2339 | * and discard the segment. Return. |
| 2340 | * If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable. |
| 2341 | */ |
| 2342 | if (tcp_ack (tcp0)) |
| 2343 | { |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2344 | if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2345 | { |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2346 | clib_warning ("ack not in rcv wnd"); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2347 | if (!tcp_rst (tcp0)) |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 2348 | tcp_send_reset_w_pkt (tc0, b0, is_ip4); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2349 | goto drop; |
| 2350 | } |
| 2351 | |
| 2352 | /* Make sure ACK is valid */ |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2353 | if (seq_gt (tc0->snd_una, ack0)) |
| 2354 | { |
| 2355 | clib_warning ("ack invalid"); |
| 2356 | goto drop; |
| 2357 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2358 | } |
| 2359 | |
| 2360 | /* |
| 2361 | * 2. check the RST bit |
| 2362 | */ |
| 2363 | |
| 2364 | if (tcp_rst (tcp0)) |
| 2365 | { |
| 2366 | /* If ACK is acceptable, signal client that peer is not |
| 2367 | * willing to accept connection and drop connection*/ |
| 2368 | if (tcp_ack (tcp0)) |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2369 | tcp_connection_reset (tc0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2370 | goto drop; |
| 2371 | } |
| 2372 | |
| 2373 | /* |
| 2374 | * 3. check the security and precedence (skipped) |
| 2375 | */ |
| 2376 | |
| 2377 | /* |
| 2378 | * 4. check the SYN bit |
| 2379 | */ |
| 2380 | |
| 2381 | /* No SYN flag. Drop. */ |
| 2382 | if (!tcp_syn (tcp0)) |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2383 | { |
| 2384 | clib_warning ("not synack"); |
| 2385 | goto drop; |
| 2386 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2387 | |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2388 | /* Parse options */ |
| 2389 | if (tcp_options_parse (tcp0, &tc0->rcv_opts)) |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2390 | { |
| 2391 | clib_warning ("options parse fail"); |
| 2392 | goto drop; |
| 2393 | } |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2394 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2395 | /* Valid SYN or SYN-ACK. Move connection from half-open pool to |
| 2396 | * current thread pool. */ |
| 2397 | pool_get (tm->connections[my_thread_index], new_tc0); |
| 2398 | clib_memcpy (new_tc0, tc0, sizeof (*new_tc0)); |
Dave Barach | 259cdae | 2017-05-15 16:27:05 -0400 | [diff] [blame] | 2399 | new_tc0->c_c_index = new_tc0 - tm->connections[my_thread_index]; |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2400 | new_tc0->c_thread_index = my_thread_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2401 | new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end; |
| 2402 | new_tc0->irs = seq0; |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 2403 | new_tc0->timers[TCP_TIMER_ESTABLISH] = TCP_TIMER_HANDLE_INVALID; |
| 2404 | new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] = |
| 2405 | TCP_TIMER_HANDLE_INVALID; |
Florin Coras | f9d0568 | 2018-04-26 08:26:52 -0700 | [diff] [blame] | 2406 | new_tc0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX]; |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 2407 | |
| 2408 | /* If this is not the owning thread, wait for syn retransmit to |
| 2409 | * expire and cleanup then */ |
| 2410 | if (tcp_half_open_connection_cleanup (tc0)) |
| 2411 | tc0->flags |= TCP_CONN_HALF_OPEN_DONE; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2412 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2413 | if (tcp_opts_tstamp (&new_tc0->rcv_opts)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2414 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2415 | new_tc0->tsval_recent = new_tc0->rcv_opts.tsval; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2416 | new_tc0->tsval_recent_age = tcp_time_now (); |
| 2417 | } |
| 2418 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2419 | if (tcp_opts_wscale (&new_tc0->rcv_opts)) |
| 2420 | new_tc0->snd_wscale = new_tc0->rcv_opts.wscale; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2421 | |
Florin Coras | 45ca73f | 2018-09-27 09:19:29 -0700 | [diff] [blame] | 2422 | new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window) |
| 2423 | << new_tc0->snd_wscale; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2424 | new_tc0->snd_wl1 = seq0; |
| 2425 | new_tc0->snd_wl2 = ack0; |
| 2426 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2427 | tcp_connection_init_vars (new_tc0); |
| 2428 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2429 | /* SYN-ACK: See if we can switch to ESTABLISHED state */ |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2430 | if (PREDICT_TRUE (tcp_ack (tcp0))) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2431 | { |
| 2432 | /* Our SYN is ACKed: we have iss < ack = snd_una */ |
| 2433 | |
| 2434 | /* TODO Dequeue acknowledged segments if we support Fast Open */ |
| 2435 | new_tc0->snd_una = ack0; |
| 2436 | new_tc0->state = TCP_STATE_ESTABLISHED; |
| 2437 | |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2438 | /* Make sure las is initialized for the wnd computation */ |
| 2439 | new_tc0->rcv_las = new_tc0->rcv_nxt; |
| 2440 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 2441 | /* Notify app that we have connection. If session layer can't |
| 2442 | * allocate session send reset */ |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2443 | if (session_stream_connect_notify (&new_tc0->connection, 0)) |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 2444 | { |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2445 | clib_warning ("connect notify fail"); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 2446 | tcp_send_reset_w_pkt (new_tc0, b0, is_ip4); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 2447 | tcp_connection_cleanup (new_tc0); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 2448 | goto drop; |
| 2449 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2450 | |
| 2451 | /* Make sure after data segment processing ACK is sent */ |
| 2452 | new_tc0->flags |= TCP_CONN_SNDACK; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 2453 | |
| 2454 | /* Update rtt with the syn-ack sample */ |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 2455 | tcp_update_rtt (new_tc0, vnet_buffer (b0)->tcp.ack_number); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2456 | TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, new_tc0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2457 | } |
| 2458 | /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */ |
| 2459 | else |
| 2460 | { |
| 2461 | new_tc0->state = TCP_STATE_SYN_RCVD; |
| 2462 | |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2463 | /* Notify app that we have connection */ |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2464 | if (session_stream_connect_notify (&new_tc0->connection, 0)) |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 2465 | { |
| 2466 | tcp_connection_cleanup (new_tc0); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 2467 | tcp_send_reset_w_pkt (tc0, b0, is_ip4); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2468 | TCP_EVT_DBG (TCP_EVT_RST_SENT, tc0); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 2469 | goto drop; |
| 2470 | } |
| 2471 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 2472 | tc0->rtt_ts = 0; |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2473 | tcp_init_snd_vars (tc0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2474 | tcp_make_synack (new_tc0, b0); |
| 2475 | next0 = tcp_next_output (is_ip4); |
| 2476 | |
| 2477 | goto drop; |
| 2478 | } |
| 2479 | |
| 2480 | /* Read data, if any */ |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2481 | if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2482 | { |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2483 | clib_warning ("rcvd data in syn-sent"); |
| 2484 | error0 = tcp_segment_rcv (new_tc0, b0, &next0); |
| 2485 | if (error0 == TCP_ERROR_ACK_OK) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2486 | error0 = TCP_ERROR_SYN_ACKS_RCVD; |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2487 | tcp_maybe_inc_counter (syn_sent, error0, 1); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2488 | } |
| 2489 | else |
| 2490 | { |
| 2491 | tcp_make_ack (new_tc0, b0); |
| 2492 | next0 = tcp_next_output (new_tc0->c_is_ip4); |
| 2493 | } |
| 2494 | |
| 2495 | drop: |
| 2496 | |
| 2497 | b0->error = error0 ? node->errors[error0] : 0; |
Chris Luke | 879ace3 | 2017-09-26 13:15:16 -0400 | [diff] [blame] | 2498 | if (PREDICT_FALSE |
| 2499 | ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2500 | { |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2501 | t0 = vlib_add_trace (vm, node, b0, sizeof (*t0)); |
| 2502 | clib_memcpy (&t0->tcp_header, tcp0, sizeof (t0->tcp_header)); |
| 2503 | clib_memcpy (&t0->tcp_connection, tc0, |
| 2504 | sizeof (t0->tcp_connection)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2505 | } |
| 2506 | |
| 2507 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next, |
| 2508 | n_left_to_next, bi0, next0); |
| 2509 | } |
| 2510 | |
| 2511 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 2512 | } |
| 2513 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2514 | errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP, |
| 2515 | my_thread_index); |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2516 | tcp_inc_counter (syn_sent, TCP_ERROR_EVENT_FIFO_FULL, errors); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2517 | return from_frame->n_vectors; |
| 2518 | } |
| 2519 | |
| 2520 | static uword |
| 2521 | tcp4_syn_sent (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2522 | vlib_frame_t * from_frame) |
| 2523 | { |
| 2524 | return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ ); |
| 2525 | } |
| 2526 | |
| 2527 | static uword |
| 2528 | tcp6_syn_sent_rcv (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2529 | vlib_frame_t * from_frame) |
| 2530 | { |
| 2531 | return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ ); |
| 2532 | } |
| 2533 | |
| 2534 | /* *INDENT-OFF* */ |
| 2535 | VLIB_REGISTER_NODE (tcp4_syn_sent_node) = |
| 2536 | { |
| 2537 | .function = tcp4_syn_sent, |
| 2538 | .name = "tcp4-syn-sent", |
| 2539 | /* Takes a vector of packets. */ |
| 2540 | .vector_size = sizeof (u32), |
| 2541 | .n_errors = TCP_N_ERROR, |
| 2542 | .error_strings = tcp_error_strings, |
| 2543 | .n_next_nodes = TCP_SYN_SENT_N_NEXT, |
| 2544 | .next_nodes = |
| 2545 | { |
| 2546 | #define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n, |
| 2547 | foreach_tcp_state_next |
| 2548 | #undef _ |
| 2549 | }, |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2550 | .format_trace = format_tcp_rx_trace_short, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2551 | }; |
| 2552 | /* *INDENT-ON* */ |
| 2553 | |
| 2554 | VLIB_NODE_FUNCTION_MULTIARCH (tcp4_syn_sent_node, tcp4_syn_sent); |
| 2555 | |
| 2556 | /* *INDENT-OFF* */ |
| 2557 | VLIB_REGISTER_NODE (tcp6_syn_sent_node) = |
| 2558 | { |
| 2559 | .function = tcp6_syn_sent_rcv, |
| 2560 | .name = "tcp6-syn-sent", |
| 2561 | /* Takes a vector of packets. */ |
| 2562 | .vector_size = sizeof (u32), |
| 2563 | .n_errors = TCP_N_ERROR, |
| 2564 | .error_strings = tcp_error_strings, |
| 2565 | .n_next_nodes = TCP_SYN_SENT_N_NEXT, |
| 2566 | .next_nodes = |
| 2567 | { |
| 2568 | #define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n, |
| 2569 | foreach_tcp_state_next |
| 2570 | #undef _ |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2571 | }, |
| 2572 | .format_trace = format_tcp_rx_trace_short, |
| 2573 | }; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2574 | /* *INDENT-ON* */ |
| 2575 | |
| 2576 | VLIB_NODE_FUNCTION_MULTIARCH (tcp6_syn_sent_node, tcp6_syn_sent_rcv); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2577 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2578 | vlib_node_registration_t tcp4_rcv_process_node; |
| 2579 | vlib_node_registration_t tcp6_rcv_process_node; |
| 2580 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2581 | /** |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2582 | * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2583 | * as per RFC793 p. 64 |
| 2584 | */ |
| 2585 | always_inline uword |
| 2586 | tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2587 | vlib_frame_t * from_frame, int is_ip4) |
| 2588 | { |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2589 | u32 n_left_from, next_index, *from, *to_next, n_fins = 0; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 2590 | u32 my_thread_index = vm->thread_index, errors = 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2591 | |
| 2592 | from = vlib_frame_vector_args (from_frame); |
| 2593 | n_left_from = from_frame->n_vectors; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2594 | next_index = node->cached_next_index; |
| 2595 | |
| 2596 | while (n_left_from > 0) |
| 2597 | { |
| 2598 | u32 n_left_to_next; |
| 2599 | |
| 2600 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 2601 | |
| 2602 | while (n_left_from > 0 && n_left_to_next > 0) |
| 2603 | { |
| 2604 | u32 bi0; |
| 2605 | vlib_buffer_t *b0; |
| 2606 | tcp_header_t *tcp0 = 0; |
| 2607 | tcp_connection_t *tc0; |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2608 | u32 next0 = tcp_next_drop (is_ip4), error0 = TCP_ERROR_NONE; |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 2609 | u8 is_fin0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2610 | |
| 2611 | bi0 = from[0]; |
| 2612 | to_next[0] = bi0; |
| 2613 | from += 1; |
| 2614 | to_next += 1; |
| 2615 | n_left_from -= 1; |
| 2616 | n_left_to_next -= 1; |
| 2617 | |
| 2618 | b0 = vlib_get_buffer (vm, bi0); |
| 2619 | tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index, |
| 2620 | my_thread_index); |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2621 | if (PREDICT_FALSE (tc0 == 0)) |
| 2622 | { |
| 2623 | error0 = TCP_ERROR_INVALID_CONNECTION; |
| 2624 | goto drop; |
| 2625 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2626 | |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 2627 | tcp0 = tcp_buffer_hdr (b0); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 2628 | is_fin0 = tcp_is_fin (tcp0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2629 | |
| 2630 | /* SYNs, FINs and data consume sequence numbers */ |
| 2631 | vnet_buffer (b0)->tcp.seq_end = vnet_buffer (b0)->tcp.seq_number |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 2632 | + tcp_is_syn (tcp0) + is_fin0 + vnet_buffer (b0)->tcp.data_len; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2633 | |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2634 | if (CLIB_DEBUG) |
| 2635 | { |
| 2636 | tcp_connection_t *tmp; |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2637 | tmp = tcp_lookup_connection (tc0->c_fib_index, b0, |
| 2638 | my_thread_index, is_ip4); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2639 | if (tmp->state != tc0->state) |
| 2640 | { |
| 2641 | clib_warning ("state changed"); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2642 | goto drop; |
| 2643 | } |
| 2644 | } |
| 2645 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2646 | /* |
| 2647 | * Special treatment for CLOSED |
| 2648 | */ |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2649 | if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2650 | { |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2651 | error0 = TCP_ERROR_CONNECTION_CLOSED; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2652 | goto drop; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2653 | } |
| 2654 | |
| 2655 | /* |
| 2656 | * For all other states (except LISTEN) |
| 2657 | */ |
| 2658 | |
| 2659 | /* 1-4: check SEQ, RST, SYN */ |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2660 | if (PREDICT_FALSE (tcp_segment_validate (vm, tc0, b0, tcp0, |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2661 | &next0, &error0))) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2662 | { |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2663 | tcp_maybe_inc_counter (rcv_process, error0, 1); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2664 | goto drop; |
| 2665 | } |
| 2666 | |
| 2667 | /* 5: check the ACK field */ |
| 2668 | switch (tc0->state) |
| 2669 | { |
| 2670 | case TCP_STATE_SYN_RCVD: |
| 2671 | /* |
| 2672 | * If the segment acknowledgment is not acceptable, form a |
| 2673 | * reset segment, |
| 2674 | * <SEQ=SEG.ACK><CTL=RST> |
| 2675 | * and send it. |
| 2676 | */ |
| 2677 | if (!tcp_rcv_ack_is_acceptable (tc0, b0)) |
| 2678 | { |
Florin Coras | a096f2d | 2017-09-28 23:49:42 -0400 | [diff] [blame] | 2679 | TCP_DBG ("connection not accepted"); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 2680 | tcp_send_reset_w_pkt (tc0, b0, is_ip4); |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2681 | error0 = TCP_ERROR_ACK_INVALID; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2682 | goto drop; |
| 2683 | } |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 2684 | |
| 2685 | /* Update rtt and rto */ |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 2686 | tcp_update_rtt (tc0, vnet_buffer (b0)->tcp.ack_number); |
| 2687 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2688 | /* Switch state to ESTABLISHED */ |
| 2689 | tc0->state = TCP_STATE_ESTABLISHED; |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 2690 | TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2691 | |
| 2692 | /* Initialize session variables */ |
| 2693 | tc0->snd_una = vnet_buffer (b0)->tcp.ack_number; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 2694 | tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2695 | << tc0->rcv_opts.wscale; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2696 | tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number; |
| 2697 | tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2698 | |
Florin Coras | ab0289a | 2017-08-14 11:25:25 -0700 | [diff] [blame] | 2699 | /* Reset SYN-ACK retransmit and SYN_RCV establish timers */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 2700 | tcp_retransmit_timer_reset (tc0); |
Florin Coras | ab0289a | 2017-08-14 11:25:25 -0700 | [diff] [blame] | 2701 | tcp_timer_reset (tc0, TCP_TIMER_ESTABLISH); |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 2702 | stream_session_accept_notify (&tc0->connection); |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2703 | error0 = TCP_ERROR_ACK_OK; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2704 | break; |
| 2705 | case TCP_STATE_ESTABLISHED: |
| 2706 | /* We can get packets in established state here because they |
| 2707 | * were enqueued before state change */ |
| 2708 | if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0)) |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2709 | { |
| 2710 | tcp_maybe_inc_counter (rcv_process, error0, 1); |
| 2711 | goto drop; |
| 2712 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2713 | |
| 2714 | break; |
| 2715 | case TCP_STATE_FIN_WAIT_1: |
| 2716 | /* In addition to the processing for the ESTABLISHED state, if |
| 2717 | * our FIN is now acknowledged then enter FIN-WAIT-2 and |
| 2718 | * continue processing in that state. */ |
| 2719 | if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0)) |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2720 | { |
| 2721 | tcp_maybe_inc_counter (rcv_process, error0, 1); |
| 2722 | goto drop; |
| 2723 | } |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2724 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 2725 | /* Still have to send the FIN */ |
| 2726 | if (tc0->flags & TCP_CONN_FINPNDG) |
| 2727 | { |
| 2728 | /* TX fifo finally drained */ |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 2729 | if (!session_tx_fifo_max_dequeue (&tc0->connection)) |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 2730 | tcp_send_fin (tc0); |
| 2731 | } |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2732 | /* If FIN is ACKed */ |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 2733 | else if (tc0->snd_una == tc0->snd_una_max) |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2734 | { |
| 2735 | tc0->state = TCP_STATE_FIN_WAIT_2; |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2736 | TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0); |
| 2737 | |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 2738 | /* Stop all retransmit timers because we have nothing more |
| 2739 | * to send. Enable waitclose though because we're willing to |
| 2740 | * wait for peer's FIN but not indefinitely. */ |
| 2741 | tcp_connection_timers_reset (tc0); |
| 2742 | tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME); |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2743 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2744 | break; |
| 2745 | case TCP_STATE_FIN_WAIT_2: |
| 2746 | /* In addition to the processing for the ESTABLISHED state, if |
| 2747 | * the retransmission queue is empty, the user's CLOSE can be |
| 2748 | * acknowledged ("ok") but do not delete the TCB. */ |
| 2749 | if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0)) |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2750 | { |
| 2751 | tcp_maybe_inc_counter (rcv_process, error0, 1); |
| 2752 | goto drop; |
| 2753 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2754 | break; |
| 2755 | case TCP_STATE_CLOSE_WAIT: |
| 2756 | /* Do the same processing as for the ESTABLISHED state. */ |
| 2757 | if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0)) |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2758 | { |
| 2759 | tcp_maybe_inc_counter (rcv_process, error0, 1); |
| 2760 | goto drop; |
| 2761 | } |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 2762 | if (tc0->flags & TCP_CONN_FINPNDG) |
| 2763 | { |
| 2764 | /* TX fifo finally drained */ |
| 2765 | if (!session_tx_fifo_max_dequeue (&tc0->connection)) |
| 2766 | { |
| 2767 | tcp_send_fin (tc0); |
| 2768 | tcp_connection_timers_reset (tc0); |
| 2769 | tc0->state = TCP_STATE_LAST_ACK; |
| 2770 | tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, |
| 2771 | TCP_2MSL_TIME); |
| 2772 | } |
| 2773 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2774 | break; |
| 2775 | case TCP_STATE_CLOSING: |
| 2776 | /* In addition to the processing for the ESTABLISHED state, if |
| 2777 | * the ACK acknowledges our FIN then enter the TIME-WAIT state, |
| 2778 | * otherwise ignore the segment. */ |
| 2779 | if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0)) |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2780 | { |
| 2781 | tcp_maybe_inc_counter (rcv_process, error0, 1); |
| 2782 | goto drop; |
| 2783 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2784 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2785 | tc0->state = TCP_STATE_TIME_WAIT; |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2786 | TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0); |
Florin Coras | a096f2d | 2017-09-28 23:49:42 -0400 | [diff] [blame] | 2787 | tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2788 | goto drop; |
| 2789 | |
| 2790 | break; |
| 2791 | case TCP_STATE_LAST_ACK: |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2792 | /* The only thing that [should] arrive in this state is an |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2793 | * acknowledgment of our FIN. If our FIN is now acknowledged, |
| 2794 | * delete the TCB, enter the CLOSED state, and return. */ |
| 2795 | |
| 2796 | if (!tcp_rcv_ack_is_acceptable (tc0, b0)) |
Florin Coras | a096f2d | 2017-09-28 23:49:42 -0400 | [diff] [blame] | 2797 | { |
| 2798 | error0 = TCP_ERROR_ACK_INVALID; |
| 2799 | goto drop; |
| 2800 | } |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2801 | error0 = TCP_ERROR_ACK_OK; |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 2802 | tc0->snd_una = vnet_buffer (b0)->tcp.ack_number; |
Florin Coras | a096f2d | 2017-09-28 23:49:42 -0400 | [diff] [blame] | 2803 | /* Apparently our ACK for the peer's FIN was lost */ |
| 2804 | if (is_fin0 && tc0->snd_una != tc0->snd_una_max) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2805 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2806 | tcp_send_fin (tc0); |
| 2807 | goto drop; |
| 2808 | } |
| 2809 | |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2810 | tc0->state = TCP_STATE_CLOSED; |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2811 | TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0); |
Florin Coras | c01d578 | 2018-10-17 14:53:11 -0700 | [diff] [blame] | 2812 | |
| 2813 | /* Don't free the connection from the data path since |
| 2814 | * we can't ensure that we have no packets already enqueued |
| 2815 | * to output. Rely instead on the waitclose timer */ |
| 2816 | tcp_connection_timers_reset (tc0); |
| 2817 | tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, 1); |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2818 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2819 | goto drop; |
| 2820 | |
| 2821 | break; |
| 2822 | case TCP_STATE_TIME_WAIT: |
| 2823 | /* The only thing that can arrive in this state is a |
| 2824 | * retransmission of the remote FIN. Acknowledge it, and restart |
| 2825 | * the 2 MSL timeout. */ |
| 2826 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2827 | if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0)) |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2828 | { |
| 2829 | tcp_maybe_inc_counter (rcv_process, error0, 1); |
| 2830 | goto drop; |
| 2831 | } |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2832 | |
| 2833 | tcp_make_ack (tc0, b0); |
Florin Coras | a096f2d | 2017-09-28 23:49:42 -0400 | [diff] [blame] | 2834 | next0 = tcp_next_output (is_ip4); |
| 2835 | tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2836 | goto drop; |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 2837 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2838 | break; |
| 2839 | default: |
| 2840 | ASSERT (0); |
| 2841 | } |
| 2842 | |
| 2843 | /* 6: check the URG bit TODO */ |
| 2844 | |
| 2845 | /* 7: process the segment text */ |
| 2846 | switch (tc0->state) |
| 2847 | { |
| 2848 | case TCP_STATE_ESTABLISHED: |
| 2849 | case TCP_STATE_FIN_WAIT_1: |
| 2850 | case TCP_STATE_FIN_WAIT_2: |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2851 | if (vnet_buffer (b0)->tcp.data_len) |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2852 | { |
| 2853 | error0 = tcp_segment_rcv (tc0, b0, &next0); |
| 2854 | tcp_maybe_inc_counter (rcv_process, error0, 1); |
| 2855 | } |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 2856 | else if (is_fin0) |
| 2857 | tc0->rcv_nxt += 1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2858 | break; |
| 2859 | case TCP_STATE_CLOSE_WAIT: |
| 2860 | case TCP_STATE_CLOSING: |
| 2861 | case TCP_STATE_LAST_ACK: |
| 2862 | case TCP_STATE_TIME_WAIT: |
| 2863 | /* This should not occur, since a FIN has been received from the |
| 2864 | * remote side. Ignore the segment text. */ |
| 2865 | break; |
| 2866 | } |
| 2867 | |
| 2868 | /* 8: check the FIN bit */ |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 2869 | if (!is_fin0) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2870 | goto drop; |
| 2871 | |
| 2872 | switch (tc0->state) |
| 2873 | { |
| 2874 | case TCP_STATE_ESTABLISHED: |
| 2875 | case TCP_STATE_SYN_RCVD: |
| 2876 | /* Send FIN-ACK notify app and enter CLOSE-WAIT */ |
| 2877 | tcp_connection_timers_reset (tc0); |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 2878 | tcp_make_fin (tc0, b0); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 2879 | tc0->snd_nxt += 1; |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 2880 | tc0->snd_una_max = tc0->snd_nxt; |
Florin Coras | c01c445 | 2018-09-20 18:36:54 -0700 | [diff] [blame] | 2881 | tcp_retransmit_timer_set (tc0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2882 | next0 = tcp_next_output (tc0->c_is_ip4); |
| 2883 | stream_session_disconnect_notify (&tc0->connection); |
| 2884 | tc0->state = TCP_STATE_CLOSE_WAIT; |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2885 | TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2886 | break; |
| 2887 | case TCP_STATE_CLOSE_WAIT: |
| 2888 | case TCP_STATE_CLOSING: |
| 2889 | case TCP_STATE_LAST_ACK: |
| 2890 | /* move along .. */ |
| 2891 | break; |
| 2892 | case TCP_STATE_FIN_WAIT_1: |
Florin Coras | ab0289a | 2017-08-14 11:25:25 -0700 | [diff] [blame] | 2893 | tc0->state = TCP_STATE_CLOSING; |
| 2894 | tcp_make_ack (tc0, b0); |
| 2895 | next0 = tcp_next_output (is_ip4); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2896 | TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0); |
Florin Coras | ab0289a | 2017-08-14 11:25:25 -0700 | [diff] [blame] | 2897 | /* Wait for ACK but not forever */ |
| 2898 | tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2899 | break; |
| 2900 | case TCP_STATE_FIN_WAIT_2: |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 2901 | /* Got FIN, send ACK! Be more aggressive with resource cleanup */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2902 | tc0->state = TCP_STATE_TIME_WAIT; |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 2903 | tcp_connection_timers_reset (tc0); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 2904 | tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2905 | tcp_make_ack (tc0, b0); |
| 2906 | next0 = tcp_next_output (is_ip4); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 2907 | TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2908 | break; |
| 2909 | case TCP_STATE_TIME_WAIT: |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 2910 | /* Remain in the TIME-WAIT state. Restart the time-wait |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2911 | * timeout. |
| 2912 | */ |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 2913 | tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2914 | break; |
| 2915 | } |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 2916 | TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0); |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2917 | n_fins += 1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2918 | |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 2919 | drop: |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2920 | b0->error = error0 ? node->errors[error0] : 0; |
| 2921 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2922 | if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED)) |
| 2923 | { |
Florin Coras | 82b13a8 | 2017-04-25 11:58:06 -0700 | [diff] [blame] | 2924 | tcp_rx_trace_t *t0 = |
| 2925 | vlib_add_trace (vm, node, b0, sizeof (*t0)); |
| 2926 | tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2927 | } |
| 2928 | |
| 2929 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next, |
| 2930 | n_left_to_next, bi0, next0); |
| 2931 | } |
| 2932 | |
| 2933 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 2934 | } |
| 2935 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 2936 | errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP, |
| 2937 | my_thread_index); |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 2938 | tcp_inc_counter (rcv_process, TCP_ERROR_EVENT_FIFO_FULL, errors); |
| 2939 | tcp_inc_counter (rcv_process, TCP_ERROR_FIN_RCVD, n_fins); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2940 | return from_frame->n_vectors; |
| 2941 | } |
| 2942 | |
| 2943 | static uword |
| 2944 | tcp4_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2945 | vlib_frame_t * from_frame) |
| 2946 | { |
| 2947 | return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ ); |
| 2948 | } |
| 2949 | |
| 2950 | static uword |
| 2951 | tcp6_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 2952 | vlib_frame_t * from_frame) |
| 2953 | { |
| 2954 | return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ ); |
| 2955 | } |
| 2956 | |
| 2957 | /* *INDENT-OFF* */ |
| 2958 | VLIB_REGISTER_NODE (tcp4_rcv_process_node) = |
| 2959 | { |
| 2960 | .function = tcp4_rcv_process, |
| 2961 | .name = "tcp4-rcv-process", |
| 2962 | /* Takes a vector of packets. */ |
| 2963 | .vector_size = sizeof (u32), |
| 2964 | .n_errors = TCP_N_ERROR, |
| 2965 | .error_strings = tcp_error_strings, |
| 2966 | .n_next_nodes = TCP_RCV_PROCESS_N_NEXT, |
| 2967 | .next_nodes = |
| 2968 | { |
| 2969 | #define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n, |
| 2970 | foreach_tcp_state_next |
| 2971 | #undef _ |
| 2972 | }, |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2973 | .format_trace = format_tcp_rx_trace_short, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2974 | }; |
| 2975 | /* *INDENT-ON* */ |
| 2976 | |
| 2977 | VLIB_NODE_FUNCTION_MULTIARCH (tcp4_rcv_process_node, tcp4_rcv_process); |
| 2978 | |
| 2979 | /* *INDENT-OFF* */ |
| 2980 | VLIB_REGISTER_NODE (tcp6_rcv_process_node) = |
| 2981 | { |
| 2982 | .function = tcp6_rcv_process, |
| 2983 | .name = "tcp6-rcv-process", |
| 2984 | /* Takes a vector of packets. */ |
| 2985 | .vector_size = sizeof (u32), |
| 2986 | .n_errors = TCP_N_ERROR, |
| 2987 | .error_strings = tcp_error_strings, |
| 2988 | .n_next_nodes = TCP_RCV_PROCESS_N_NEXT, |
| 2989 | .next_nodes = |
| 2990 | { |
| 2991 | #define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n, |
| 2992 | foreach_tcp_state_next |
| 2993 | #undef _ |
| 2994 | }, |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 2995 | .format_trace = format_tcp_rx_trace_short, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 2996 | }; |
| 2997 | /* *INDENT-ON* */ |
| 2998 | |
| 2999 | VLIB_NODE_FUNCTION_MULTIARCH (tcp6_rcv_process_node, tcp6_rcv_process); |
| 3000 | |
| 3001 | vlib_node_registration_t tcp4_listen_node; |
| 3002 | vlib_node_registration_t tcp6_listen_node; |
| 3003 | |
| 3004 | /** |
| 3005 | * LISTEN state processing as per RFC 793 p. 65 |
| 3006 | */ |
| 3007 | always_inline uword |
| 3008 | tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 3009 | vlib_frame_t * from_frame, int is_ip4) |
| 3010 | { |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 3011 | u32 n_left_from, next_index, *from, *to_next, n_syns = 0; |
Damjan Marion | 586afd7 | 2017-04-05 19:18:20 +0200 | [diff] [blame] | 3012 | u32 my_thread_index = vm->thread_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3013 | |
| 3014 | from = vlib_frame_vector_args (from_frame); |
| 3015 | n_left_from = from_frame->n_vectors; |
| 3016 | |
| 3017 | next_index = node->cached_next_index; |
| 3018 | |
| 3019 | while (n_left_from > 0) |
| 3020 | { |
| 3021 | u32 n_left_to_next; |
| 3022 | |
| 3023 | vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next); |
| 3024 | |
| 3025 | while (n_left_from > 0 && n_left_to_next > 0) |
| 3026 | { |
| 3027 | u32 bi0; |
| 3028 | vlib_buffer_t *b0; |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 3029 | tcp_rx_trace_t *t0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3030 | tcp_header_t *th0 = 0; |
| 3031 | tcp_connection_t *lc0; |
| 3032 | ip4_header_t *ip40; |
| 3033 | ip6_header_t *ip60; |
| 3034 | tcp_connection_t *child0; |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 3035 | u32 error0 = TCP_ERROR_NONE, next0 = tcp_next_drop (is_ip4); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3036 | |
| 3037 | bi0 = from[0]; |
| 3038 | to_next[0] = bi0; |
| 3039 | from += 1; |
| 3040 | to_next += 1; |
| 3041 | n_left_from -= 1; |
| 3042 | n_left_to_next -= 1; |
| 3043 | |
| 3044 | b0 = vlib_get_buffer (vm, bi0); |
| 3045 | lc0 = tcp_listener_get (vnet_buffer (b0)->tcp.connection_index); |
| 3046 | |
| 3047 | if (is_ip4) |
| 3048 | { |
| 3049 | ip40 = vlib_buffer_get_current (b0); |
| 3050 | th0 = ip4_next_header (ip40); |
| 3051 | } |
| 3052 | else |
| 3053 | { |
| 3054 | ip60 = vlib_buffer_get_current (b0); |
| 3055 | th0 = ip6_next_header (ip60); |
| 3056 | } |
| 3057 | |
| 3058 | /* Create child session. For syn-flood protection use filter */ |
| 3059 | |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 3060 | /* 1. first check for an RST: handled in dispatch */ |
| 3061 | /* if (tcp_rst (th0)) |
| 3062 | goto drop; */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3063 | |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 3064 | /* 2. second check for an ACK: handled in dispatch */ |
| 3065 | /* if (tcp_ack (th0)) |
| 3066 | { |
| 3067 | tcp_send_reset (b0, is_ip4); |
| 3068 | goto drop; |
| 3069 | } */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3070 | |
| 3071 | /* 3. check for a SYN (did that already) */ |
| 3072 | |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 3073 | /* Make sure connection wasn't just created */ |
Florin Coras | c1a448b | 2018-04-20 10:51:49 -0700 | [diff] [blame] | 3074 | child0 = tcp_lookup_connection (lc0->c_fib_index, b0, |
| 3075 | my_thread_index, is_ip4); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 3076 | if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN)) |
| 3077 | { |
| 3078 | error0 = TCP_ERROR_CREATE_EXISTS; |
| 3079 | goto drop; |
| 3080 | } |
| 3081 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3082 | /* Create child session and send SYN-ACK */ |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 3083 | child0 = tcp_connection_new (my_thread_index); |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 3084 | child0->c_lcl_port = th0->dst_port; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3085 | child0->c_rmt_port = th0->src_port; |
| 3086 | child0->c_is_ip4 = is_ip4; |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 3087 | child0->state = TCP_STATE_SYN_RCVD; |
Florin Coras | 56b39f6 | 2018-03-27 17:29:32 -0700 | [diff] [blame] | 3088 | child0->c_fib_index = lc0->c_fib_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3089 | |
| 3090 | if (is_ip4) |
| 3091 | { |
| 3092 | child0->c_lcl_ip4.as_u32 = ip40->dst_address.as_u32; |
| 3093 | child0->c_rmt_ip4.as_u32 = ip40->src_address.as_u32; |
| 3094 | } |
| 3095 | else |
| 3096 | { |
| 3097 | clib_memcpy (&child0->c_lcl_ip6, &ip60->dst_address, |
| 3098 | sizeof (ip6_address_t)); |
| 3099 | clib_memcpy (&child0->c_rmt_ip6, &ip60->src_address, |
| 3100 | sizeof (ip6_address_t)); |
| 3101 | } |
| 3102 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 3103 | if (tcp_options_parse (th0, &child0->rcv_opts)) |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 3104 | { |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 3105 | clib_warning ("options parse fail"); |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 3106 | goto drop; |
| 3107 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3108 | |
| 3109 | child0->irs = vnet_buffer (b0)->tcp.seq_number; |
| 3110 | child0->rcv_nxt = vnet_buffer (b0)->tcp.seq_number + 1; |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 3111 | child0->rcv_las = child0->rcv_nxt; |
Florin Coras | f9d0568 | 2018-04-26 08:26:52 -0700 | [diff] [blame] | 3112 | child0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX]; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3113 | |
| 3114 | /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK} |
| 3115 | * segments are used to initialize PAWS. */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 3116 | if (tcp_opts_tstamp (&child0->rcv_opts)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3117 | { |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 3118 | child0->tsval_recent = child0->rcv_opts.tsval; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3119 | child0->tsval_recent_age = tcp_time_now (); |
| 3120 | } |
| 3121 | |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 3122 | if (tcp_opts_wscale (&child0->rcv_opts)) |
| 3123 | child0->snd_wscale = child0->rcv_opts.wscale; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 3124 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 3125 | child0->snd_wnd = clib_net_to_host_u16 (th0->window) |
| 3126 | << child0->snd_wscale; |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 3127 | child0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number; |
| 3128 | child0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number; |
| 3129 | |
| 3130 | tcp_connection_init_vars (child0); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 3131 | TCP_EVT_DBG (TCP_EVT_SYN_RCVD, child0, 1); |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 3132 | |
Florin Coras | 6dfb5ac | 2017-11-09 16:26:03 -0800 | [diff] [blame] | 3133 | if (stream_session_accept (&child0->connection, lc0->c_s_index, |
| 3134 | 0 /* notify */ )) |
| 3135 | { |
| 3136 | clib_warning ("session accept fail"); |
| 3137 | tcp_connection_cleanup (child0); |
| 3138 | error0 = TCP_ERROR_CREATE_SESSION_FAIL; |
| 3139 | goto drop; |
| 3140 | } |
| 3141 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3142 | /* Reuse buffer to make syn-ack and send */ |
| 3143 | tcp_make_synack (child0, b0); |
| 3144 | next0 = tcp_next_output (is_ip4); |
Florin Coras | ab0289a | 2017-08-14 11:25:25 -0700 | [diff] [blame] | 3145 | tcp_timer_set (child0, TCP_TIMER_ESTABLISH, TCP_SYN_RCVD_TIME); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3146 | |
| 3147 | drop: |
| 3148 | if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED)) |
| 3149 | { |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 3150 | t0 = vlib_add_trace (vm, node, b0, sizeof (*t0)); |
| 3151 | clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header)); |
| 3152 | clib_memcpy (&t0->tcp_connection, lc0, |
| 3153 | sizeof (t0->tcp_connection)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3154 | } |
| 3155 | |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 3156 | n_syns += (error0 == TCP_ERROR_NONE); |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 3157 | b0->error = node->errors[error0]; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3158 | |
| 3159 | vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next, |
| 3160 | n_left_to_next, bi0, next0); |
| 3161 | } |
| 3162 | |
| 3163 | vlib_put_next_frame (vm, node, next_index, n_left_to_next); |
| 3164 | } |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 3165 | |
| 3166 | tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3167 | return from_frame->n_vectors; |
| 3168 | } |
| 3169 | |
| 3170 | static uword |
| 3171 | tcp4_listen (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 3172 | vlib_frame_t * from_frame) |
| 3173 | { |
| 3174 | return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ ); |
| 3175 | } |
| 3176 | |
| 3177 | static uword |
| 3178 | tcp6_listen (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 3179 | vlib_frame_t * from_frame) |
| 3180 | { |
| 3181 | return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ ); |
| 3182 | } |
| 3183 | |
| 3184 | /* *INDENT-OFF* */ |
| 3185 | VLIB_REGISTER_NODE (tcp4_listen_node) = |
| 3186 | { |
| 3187 | .function = tcp4_listen, |
| 3188 | .name = "tcp4-listen", |
| 3189 | /* Takes a vector of packets. */ |
| 3190 | .vector_size = sizeof (u32), |
| 3191 | .n_errors = TCP_N_ERROR, |
| 3192 | .error_strings = tcp_error_strings, |
| 3193 | .n_next_nodes = TCP_LISTEN_N_NEXT, |
| 3194 | .next_nodes = |
| 3195 | { |
| 3196 | #define _(s,n) [TCP_LISTEN_NEXT_##s] = n, |
| 3197 | foreach_tcp_state_next |
| 3198 | #undef _ |
| 3199 | }, |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 3200 | .format_trace = format_tcp_rx_trace_short, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3201 | }; |
| 3202 | /* *INDENT-ON* */ |
| 3203 | |
| 3204 | VLIB_NODE_FUNCTION_MULTIARCH (tcp4_listen_node, tcp4_listen); |
| 3205 | |
| 3206 | /* *INDENT-OFF* */ |
| 3207 | VLIB_REGISTER_NODE (tcp6_listen_node) = |
| 3208 | { |
| 3209 | .function = tcp6_listen, |
| 3210 | .name = "tcp6-listen", |
| 3211 | /* Takes a vector of packets. */ |
| 3212 | .vector_size = sizeof (u32), |
| 3213 | .n_errors = TCP_N_ERROR, |
| 3214 | .error_strings = tcp_error_strings, |
| 3215 | .n_next_nodes = TCP_LISTEN_N_NEXT, |
| 3216 | .next_nodes = |
| 3217 | { |
| 3218 | #define _(s,n) [TCP_LISTEN_NEXT_##s] = n, |
| 3219 | foreach_tcp_state_next |
| 3220 | #undef _ |
| 3221 | }, |
Clement Durand | 6cf260c | 2017-04-13 13:27:04 +0200 | [diff] [blame] | 3222 | .format_trace = format_tcp_rx_trace_short, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3223 | }; |
| 3224 | /* *INDENT-ON* */ |
| 3225 | |
| 3226 | VLIB_NODE_FUNCTION_MULTIARCH (tcp6_listen_node, tcp6_listen); |
| 3227 | |
| 3228 | vlib_node_registration_t tcp4_input_node; |
| 3229 | vlib_node_registration_t tcp6_input_node; |
| 3230 | |
| 3231 | typedef enum _tcp_input_next |
| 3232 | { |
| 3233 | TCP_INPUT_NEXT_DROP, |
| 3234 | TCP_INPUT_NEXT_LISTEN, |
| 3235 | TCP_INPUT_NEXT_RCV_PROCESS, |
| 3236 | TCP_INPUT_NEXT_SYN_SENT, |
| 3237 | TCP_INPUT_NEXT_ESTABLISHED, |
| 3238 | TCP_INPUT_NEXT_RESET, |
Pierre Pfister | 7fe51f3 | 2017-09-20 08:48:36 +0200 | [diff] [blame] | 3239 | TCP_INPUT_NEXT_PUNT, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3240 | TCP_INPUT_N_NEXT |
| 3241 | } tcp_input_next_t; |
| 3242 | |
| 3243 | #define foreach_tcp4_input_next \ |
Vijayabhaskar Katamreddy | ce07412 | 2017-11-15 13:50:26 -0800 | [diff] [blame] | 3244 | _ (DROP, "ip4-drop") \ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3245 | _ (LISTEN, "tcp4-listen") \ |
| 3246 | _ (RCV_PROCESS, "tcp4-rcv-process") \ |
| 3247 | _ (SYN_SENT, "tcp4-syn-sent") \ |
| 3248 | _ (ESTABLISHED, "tcp4-established") \ |
Pierre Pfister | 7fe51f3 | 2017-09-20 08:48:36 +0200 | [diff] [blame] | 3249 | _ (RESET, "tcp4-reset") \ |
Vijayabhaskar Katamreddy | ce07412 | 2017-11-15 13:50:26 -0800 | [diff] [blame] | 3250 | _ (PUNT, "ip4-punt") |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3251 | |
| 3252 | #define foreach_tcp6_input_next \ |
Vijayabhaskar Katamreddy | ce07412 | 2017-11-15 13:50:26 -0800 | [diff] [blame] | 3253 | _ (DROP, "ip6-drop") \ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3254 | _ (LISTEN, "tcp6-listen") \ |
| 3255 | _ (RCV_PROCESS, "tcp6-rcv-process") \ |
| 3256 | _ (SYN_SENT, "tcp6-syn-sent") \ |
| 3257 | _ (ESTABLISHED, "tcp6-established") \ |
Pierre Pfister | 7fe51f3 | 2017-09-20 08:48:36 +0200 | [diff] [blame] | 3258 | _ (RESET, "tcp6-reset") \ |
Vijayabhaskar Katamreddy | ce07412 | 2017-11-15 13:50:26 -0800 | [diff] [blame] | 3259 | _ (PUNT, "ip6-punt") |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3260 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3261 | #define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN) |
| 3262 | |
Florin Coras | 0c8a3bc | 2018-06-14 17:11:56 -0700 | [diff] [blame] | 3263 | static void |
| 3264 | tcp_input_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node, |
Florin Coras | 4df3871 | 2018-06-20 12:44:16 -0700 | [diff] [blame] | 3265 | vlib_buffer_t ** bs, u32 n_bufs, u8 is_ip4) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3266 | { |
Florin Coras | 0c8a3bc | 2018-06-14 17:11:56 -0700 | [diff] [blame] | 3267 | tcp_connection_t *tc; |
| 3268 | tcp_header_t *tcp; |
| 3269 | tcp_rx_trace_t *t; |
Florin Coras | 0c8a3bc | 2018-06-14 17:11:56 -0700 | [diff] [blame] | 3270 | int i; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3271 | |
Florin Coras | 4df3871 | 2018-06-20 12:44:16 -0700 | [diff] [blame] | 3272 | for (i = 0; i < n_bufs; i++) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3273 | { |
Florin Coras | 4df3871 | 2018-06-20 12:44:16 -0700 | [diff] [blame] | 3274 | if (bs[i]->flags & VLIB_BUFFER_IS_TRACED) |
| 3275 | { |
| 3276 | t = vlib_add_trace (vm, node, bs[i], sizeof (*t)); |
| 3277 | tc = tcp_connection_get (vnet_buffer (bs[i])->tcp.connection_index, |
| 3278 | vm->thread_index); |
| 3279 | tcp = vlib_buffer_get_current (bs[i]); |
| 3280 | tcp_set_rx_trace_data (t, tc, tcp, bs[i], is_ip4); |
| 3281 | } |
Florin Coras | 0c8a3bc | 2018-06-14 17:11:56 -0700 | [diff] [blame] | 3282 | } |
| 3283 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3284 | |
Florin Coras | 0c8a3bc | 2018-06-14 17:11:56 -0700 | [diff] [blame] | 3285 | static void |
| 3286 | tcp_input_set_error_next (tcp_main_t * tm, u16 * next, u32 * error, u8 is_ip4) |
| 3287 | { |
| 3288 | if (*error == TCP_ERROR_FILTERED) |
| 3289 | { |
| 3290 | *next = TCP_INPUT_NEXT_DROP; |
| 3291 | } |
| 3292 | else if ((is_ip4 && tm->punt_unknown4) || (!is_ip4 && tm->punt_unknown6)) |
| 3293 | { |
| 3294 | *next = TCP_INPUT_NEXT_PUNT; |
| 3295 | *error = TCP_ERROR_PUNT; |
| 3296 | } |
| 3297 | else |
| 3298 | { |
| 3299 | *next = TCP_INPUT_NEXT_RESET; |
| 3300 | *error = TCP_ERROR_NO_LISTENER; |
| 3301 | } |
| 3302 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3303 | |
Florin Coras | 0c8a3bc | 2018-06-14 17:11:56 -0700 | [diff] [blame] | 3304 | static inline tcp_connection_t * |
| 3305 | tcp_input_lookup_buffer (vlib_buffer_t * b, u8 thread_index, u32 * error, |
| 3306 | u8 is_ip4) |
| 3307 | { |
| 3308 | u32 fib_index = vnet_buffer (b)->ip.fib_index; |
| 3309 | int n_advance_bytes, n_data_bytes; |
| 3310 | transport_connection_t *tc; |
| 3311 | tcp_header_t *tcp; |
| 3312 | u8 is_filtered = 0; |
| 3313 | |
| 3314 | if (is_ip4) |
| 3315 | { |
| 3316 | ip4_header_t *ip4 = vlib_buffer_get_current (b); |
| 3317 | tcp = ip4_next_header (ip4); |
| 3318 | vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip4; |
| 3319 | n_advance_bytes = (ip4_header_bytes (ip4) + tcp_header_bytes (tcp)); |
| 3320 | n_data_bytes = clib_net_to_host_u16 (ip4->length) - n_advance_bytes; |
| 3321 | |
| 3322 | /* Length check. Checksum computed by ipx_local no need to compute again */ |
| 3323 | if (PREDICT_FALSE (n_advance_bytes < 0)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3324 | { |
Florin Coras | 0c8a3bc | 2018-06-14 17:11:56 -0700 | [diff] [blame] | 3325 | *error = TCP_ERROR_LENGTH; |
| 3326 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3327 | } |
| 3328 | |
Florin Coras | 0c8a3bc | 2018-06-14 17:11:56 -0700 | [diff] [blame] | 3329 | tc = session_lookup_connection_wt4 (fib_index, &ip4->dst_address, |
| 3330 | &ip4->src_address, tcp->dst_port, |
| 3331 | tcp->src_port, TRANSPORT_PROTO_TCP, |
| 3332 | thread_index, &is_filtered); |
| 3333 | } |
| 3334 | else |
| 3335 | { |
| 3336 | ip6_header_t *ip6 = vlib_buffer_get_current (b); |
| 3337 | tcp = ip6_next_header (ip6); |
| 3338 | vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip6; |
| 3339 | n_advance_bytes = tcp_header_bytes (tcp); |
| 3340 | n_data_bytes = clib_net_to_host_u16 (ip6->payload_length) |
| 3341 | - n_advance_bytes; |
| 3342 | n_advance_bytes += sizeof (ip6[0]); |
| 3343 | |
| 3344 | if (PREDICT_FALSE (n_advance_bytes < 0)) |
| 3345 | { |
| 3346 | *error = TCP_ERROR_LENGTH; |
| 3347 | return 0; |
| 3348 | } |
| 3349 | |
| 3350 | tc = session_lookup_connection_wt6 (fib_index, &ip6->dst_address, |
| 3351 | &ip6->src_address, tcp->dst_port, |
| 3352 | tcp->src_port, TRANSPORT_PROTO_TCP, |
| 3353 | thread_index, &is_filtered); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3354 | } |
| 3355 | |
Florin Coras | 0c8a3bc | 2018-06-14 17:11:56 -0700 | [diff] [blame] | 3356 | vnet_buffer (b)->tcp.seq_number = clib_net_to_host_u32 (tcp->seq_number); |
| 3357 | vnet_buffer (b)->tcp.ack_number = clib_net_to_host_u32 (tcp->ack_number); |
| 3358 | vnet_buffer (b)->tcp.data_offset = n_advance_bytes; |
| 3359 | vnet_buffer (b)->tcp.data_len = n_data_bytes; |
| 3360 | vnet_buffer (b)->tcp.flags = 0; |
| 3361 | |
| 3362 | *error = is_filtered ? TCP_ERROR_FILTERED : *error; |
| 3363 | |
| 3364 | return tcp_get_connection_from_transport (tc); |
| 3365 | } |
| 3366 | |
| 3367 | static inline void |
| 3368 | tcp_input_dispatch_buffer (tcp_main_t * tm, tcp_connection_t * tc, |
| 3369 | vlib_buffer_t * b, u16 * next, u32 * error) |
| 3370 | { |
| 3371 | tcp_header_t *tcp; |
| 3372 | u8 flags; |
| 3373 | |
| 3374 | tcp = tcp_buffer_hdr (b); |
| 3375 | flags = tcp->flags & filter_flags; |
| 3376 | *next = tm->dispatch_table[tc->state][flags].next; |
| 3377 | *error = tm->dispatch_table[tc->state][flags].error; |
| 3378 | |
| 3379 | if (PREDICT_FALSE (*error == TCP_ERROR_DISPATCH |
| 3380 | || *next == TCP_INPUT_NEXT_RESET)) |
| 3381 | { |
| 3382 | /* Overload tcp flags to store state */ |
| 3383 | tcp_state_t state = tc->state; |
| 3384 | vnet_buffer (b)->tcp.flags = tc->state; |
| 3385 | |
| 3386 | if (*error == TCP_ERROR_DISPATCH) |
| 3387 | clib_warning ("disp error state %U flags %U", format_tcp_state, |
| 3388 | state, format_tcp_flags, (int) flags); |
| 3389 | } |
| 3390 | } |
| 3391 | |
| 3392 | always_inline uword |
| 3393 | tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 3394 | vlib_frame_t * frame, int is_ip4) |
| 3395 | { |
| 3396 | u32 n_left_from, *from, thread_index = vm->thread_index; |
| 3397 | tcp_main_t *tm = vnet_get_tcp_main (); |
| 3398 | vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b; |
| 3399 | u16 nexts[VLIB_FRAME_SIZE], *next; |
| 3400 | |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 3401 | tcp_set_time_now (tcp_get_worker (thread_index)); |
Florin Coras | 0c8a3bc | 2018-06-14 17:11:56 -0700 | [diff] [blame] | 3402 | |
| 3403 | from = vlib_frame_vector_args (frame); |
| 3404 | n_left_from = frame->n_vectors; |
| 3405 | vlib_get_buffers (vm, from, bufs, n_left_from); |
| 3406 | |
| 3407 | b = bufs; |
| 3408 | next = nexts; |
| 3409 | |
| 3410 | while (n_left_from >= 4) |
| 3411 | { |
| 3412 | u32 error0 = TCP_ERROR_NO_LISTENER, error1 = TCP_ERROR_NO_LISTENER; |
| 3413 | tcp_connection_t *tc0, *tc1; |
| 3414 | |
| 3415 | { |
| 3416 | vlib_prefetch_buffer_header (b[2], STORE); |
| 3417 | CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD); |
| 3418 | |
| 3419 | vlib_prefetch_buffer_header (b[3], STORE); |
| 3420 | CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD); |
| 3421 | } |
| 3422 | |
| 3423 | next[0] = next[1] = TCP_INPUT_NEXT_DROP; |
| 3424 | |
| 3425 | tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4); |
| 3426 | tc1 = tcp_input_lookup_buffer (b[1], thread_index, &error1, is_ip4); |
| 3427 | |
| 3428 | if (PREDICT_TRUE (!tc0 + !tc1 == 0)) |
| 3429 | { |
| 3430 | ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0]))); |
| 3431 | ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1]))); |
| 3432 | |
| 3433 | vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index; |
| 3434 | vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index; |
| 3435 | |
| 3436 | tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0); |
| 3437 | tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1); |
| 3438 | } |
| 3439 | else |
| 3440 | { |
| 3441 | if (PREDICT_TRUE (tc0 != 0)) |
| 3442 | { |
| 3443 | ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0]))); |
| 3444 | vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index; |
| 3445 | tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0); |
| 3446 | } |
| 3447 | else |
| 3448 | tcp_input_set_error_next (tm, &next[0], &error0, is_ip4); |
| 3449 | |
| 3450 | if (PREDICT_TRUE (tc1 != 0)) |
| 3451 | { |
| 3452 | ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1]))); |
| 3453 | vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index; |
| 3454 | tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1); |
| 3455 | } |
| 3456 | else |
| 3457 | tcp_input_set_error_next (tm, &next[1], &error1, is_ip4); |
| 3458 | } |
| 3459 | |
| 3460 | b += 2; |
| 3461 | next += 2; |
| 3462 | n_left_from -= 2; |
| 3463 | } |
| 3464 | while (n_left_from > 0) |
| 3465 | { |
| 3466 | tcp_connection_t *tc0; |
| 3467 | u32 error0 = TCP_ERROR_NO_LISTENER; |
| 3468 | |
| 3469 | if (n_left_from > 1) |
| 3470 | { |
| 3471 | vlib_prefetch_buffer_header (b[1], STORE); |
| 3472 | CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD); |
| 3473 | } |
| 3474 | |
| 3475 | next[0] = TCP_INPUT_NEXT_DROP; |
| 3476 | tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4); |
| 3477 | if (PREDICT_TRUE (tc0 != 0)) |
| 3478 | { |
| 3479 | ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0]))); |
| 3480 | vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index; |
| 3481 | tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0); |
| 3482 | } |
| 3483 | else |
| 3484 | tcp_input_set_error_next (tm, &next[0], &error0, is_ip4); |
| 3485 | |
| 3486 | b += 1; |
| 3487 | next += 1; |
| 3488 | n_left_from -= 1; |
| 3489 | } |
| 3490 | |
| 3491 | if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE)) |
| 3492 | tcp_input_trace_frame (vm, node, bufs, frame->n_vectors, is_ip4); |
| 3493 | |
| 3494 | vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors); |
| 3495 | return frame->n_vectors; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3496 | } |
| 3497 | |
| 3498 | static uword |
| 3499 | tcp4_input (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 3500 | vlib_frame_t * from_frame) |
| 3501 | { |
| 3502 | return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ); |
| 3503 | } |
| 3504 | |
| 3505 | static uword |
| 3506 | tcp6_input (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 3507 | vlib_frame_t * from_frame) |
| 3508 | { |
| 3509 | return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ); |
| 3510 | } |
| 3511 | |
| 3512 | /* *INDENT-OFF* */ |
| 3513 | VLIB_REGISTER_NODE (tcp4_input_node) = |
| 3514 | { |
| 3515 | .function = tcp4_input, |
| 3516 | .name = "tcp4-input", |
| 3517 | /* Takes a vector of packets. */ |
| 3518 | .vector_size = sizeof (u32), |
| 3519 | .n_errors = TCP_N_ERROR, |
| 3520 | .error_strings = tcp_error_strings, |
| 3521 | .n_next_nodes = TCP_INPUT_N_NEXT, |
| 3522 | .next_nodes = |
| 3523 | { |
| 3524 | #define _(s,n) [TCP_INPUT_NEXT_##s] = n, |
| 3525 | foreach_tcp4_input_next |
| 3526 | #undef _ |
| 3527 | }, |
| 3528 | .format_buffer = format_tcp_header, |
| 3529 | .format_trace = format_tcp_rx_trace, |
| 3530 | }; |
| 3531 | /* *INDENT-ON* */ |
| 3532 | |
| 3533 | VLIB_NODE_FUNCTION_MULTIARCH (tcp4_input_node, tcp4_input); |
| 3534 | |
| 3535 | /* *INDENT-OFF* */ |
| 3536 | VLIB_REGISTER_NODE (tcp6_input_node) = |
| 3537 | { |
| 3538 | .function = tcp6_input, |
| 3539 | .name = "tcp6-input", |
| 3540 | /* Takes a vector of packets. */ |
| 3541 | .vector_size = sizeof (u32), |
| 3542 | .n_errors = TCP_N_ERROR, |
| 3543 | .error_strings = tcp_error_strings, |
| 3544 | .n_next_nodes = TCP_INPUT_N_NEXT, |
| 3545 | .next_nodes = |
| 3546 | { |
| 3547 | #define _(s,n) [TCP_INPUT_NEXT_##s] = n, |
| 3548 | foreach_tcp6_input_next |
| 3549 | #undef _ |
| 3550 | }, |
| 3551 | .format_buffer = format_tcp_header, |
| 3552 | .format_trace = format_tcp_rx_trace, |
| 3553 | }; |
| 3554 | /* *INDENT-ON* */ |
| 3555 | |
| 3556 | VLIB_NODE_FUNCTION_MULTIARCH (tcp6_input_node, tcp6_input); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3557 | |
| 3558 | static void |
| 3559 | tcp_dispatch_table_init (tcp_main_t * tm) |
| 3560 | { |
| 3561 | int i, j; |
| 3562 | for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++) |
| 3563 | for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++) |
| 3564 | { |
| 3565 | tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP; |
| 3566 | tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH; |
| 3567 | } |
| 3568 | |
| 3569 | #define _(t,f,n,e) \ |
| 3570 | do { \ |
| 3571 | tm->dispatch_table[TCP_STATE_##t][f].next = (n); \ |
| 3572 | tm->dispatch_table[TCP_STATE_##t][f].error = (e); \ |
| 3573 | } while (0) |
| 3574 | |
| 3575 | /* SYNs for new connections -> tcp-listen. */ |
| 3576 | _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE); |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 3577 | _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE); |
Florin Coras | 00cd22d | 2018-04-18 13:20:18 -0700 | [diff] [blame] | 3578 | _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_RST_RCVD); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 3579 | _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, |
| 3580 | TCP_ERROR_NONE); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3581 | /* ACK for for a SYN-ACK -> tcp-rcv-process. */ |
| 3582 | _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 3583 | _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Florin Coras | e8460c7 | 2018-09-24 14:40:40 -0700 | [diff] [blame] | 3584 | _(SYN_RCVD, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, |
| 3585 | TCP_ERROR_NONE); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 3586 | _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Florin Coras | c01c445 | 2018-09-20 18:36:54 -0700 | [diff] [blame] | 3587 | _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, |
| 3588 | TCP_ERROR_NONE); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3589 | /* SYN-ACK for a SYN */ |
| 3590 | _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, |
| 3591 | TCP_ERROR_NONE); |
| 3592 | _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE); |
| 3593 | _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE); |
| 3594 | _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, |
| 3595 | TCP_ERROR_NONE); |
| 3596 | /* ACK for for established connection -> tcp-established. */ |
| 3597 | _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE); |
| 3598 | /* FIN for for established connection -> tcp-established. */ |
| 3599 | _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE); |
| 3600 | _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, |
| 3601 | TCP_ERROR_NONE); |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 3602 | _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE); |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 3603 | _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, |
| 3604 | TCP_ERROR_NONE); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 3605 | _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE); |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 3606 | _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, |
| 3607 | TCP_ERROR_NONE); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3608 | /* ACK or FIN-ACK to our FIN */ |
| 3609 | _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
| 3610 | _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, |
| 3611 | TCP_ERROR_NONE); |
| 3612 | /* FIN in reply to our FIN from the other side */ |
| 3613 | _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 3614 | _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Florin Coras | 5631893 | 2018-05-23 20:44:12 -0700 | [diff] [blame] | 3615 | _(CLOSING, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3616 | /* FIN confirming that the peer (app) has closed */ |
| 3617 | _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Florin Coras | f6d68ed | 2017-05-07 19:12:02 -0700 | [diff] [blame] | 3618 | _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3619 | _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, |
| 3620 | TCP_ERROR_NONE); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 3621 | _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
| 3622 | _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, |
| 3623 | TCP_ERROR_NONE); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3624 | _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 3625 | _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
| 3626 | _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, |
| 3627 | TCP_ERROR_NONE); |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 3628 | _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Florin Coras | c01d578 | 2018-10-17 14:53:11 -0700 | [diff] [blame] | 3629 | _(LAST_ACK, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 3630 | _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
| 3631 | _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, |
| 3632 | TCP_ERROR_NONE); |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 3633 | _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Florin Coras | 5095895 | 2017-08-29 14:50:13 -0700 | [diff] [blame] | 3634 | _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 3635 | _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED); |
Florin Coras | dc629cd | 2017-05-09 00:52:37 -0700 | [diff] [blame] | 3636 | _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 3637 | _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP, |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 3638 | TCP_ERROR_CONNECTION_CLOSED); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3639 | #undef _ |
| 3640 | } |
| 3641 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 3642 | static clib_error_t * |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3643 | tcp_input_init (vlib_main_t * vm) |
| 3644 | { |
| 3645 | clib_error_t *error = 0; |
| 3646 | tcp_main_t *tm = vnet_get_tcp_main (); |
| 3647 | |
| 3648 | if ((error = vlib_call_init_function (vm, tcp_init))) |
| 3649 | return error; |
| 3650 | |
| 3651 | /* Initialize dispatch table. */ |
| 3652 | tcp_dispatch_table_init (tm); |
| 3653 | |
| 3654 | return error; |
| 3655 | } |
| 3656 | |
| 3657 | VLIB_INIT_FUNCTION (tcp_input_init); |
| 3658 | |
| 3659 | /* |
| 3660 | * fd.io coding-style-patch-verification: ON |
| 3661 | * |
| 3662 | * Local Variables: |
| 3663 | * eval: (c-set-style "gnu") |
| 3664 | * End: |
| 3665 | */ |