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